diff --git a/TODO.md b/TODO.md index 609a688..753b9eb 100644 --- a/TODO.md +++ b/TODO.md @@ -1,8 +1,8 @@ -- Jellyfin integration (?) +- Jellyfin integration + - Details page - Webhooks for transcode queue - Webhook event log - Database models - Container details - Transcode Job queue -- Transcode profile editor -- DB Models \ No newline at end of file +- Transcode profile editor \ No newline at end of file diff --git a/api.py b/api.py deleted file mode 100644 index 356b497..0000000 --- a/api.py +++ /dev/null @@ -1,649 +0,0 @@ -import requests as RQ -from requests.auth import HTTPBasicAuth -from urllib.parse import urljoin, urlparse -from fabric import Connection -import time -import json -import base64 -import io -from datetime import datetime,timedelta -from sshpubkeys import AuthorizedKeysFile -from utils import genpw,handle_config -from pprint import pprint - -"""NOTES -http://192.168.2.25:8080/sonarr/api/v3/release?seriesId=158&seasonNumber=8 -http://192.168.2.25:8080/sonarr/api/v3/release?episodeId=12272 -http://192.168.2.25:8080/radarr/api/v3/release?movieId=567 - -http://192.168.2.25:9000/api/endpoints/1/docker/containers/json?all=1&filters=%7B%22label%22:%5B%22com.docker.compose.project%3Dtvstack%22%5D%7D -""" - - -class Api(object): - def __init__(self, url, **kwargs): - self.url = url - self.session= RQ.Session() - for k, v in kwargs.items(): - setattr(self, k, v) - if hasattr(self, "login"): - self.login() - - def get(self, endpoint, **kwargs): - ret = self.session.get(urljoin(self.url, endpoint), **kwargs) - ret.raise_for_status() - return ret - - def post(self, endpoint, **kwargs): - return self.session.post(urljoin(self.url, endpoint), **kwargs) - - -class Portainer(object): - def __init__(self, url, username, passwd): - self.url = url - self.session= RQ.Session() - jwt = self.session.post( - urljoin(self.url, "api/auth"), - json={"username": passwd, "password": username}, - ).json() - self.session.headers.update({"Authorization": "Bearer {0[jwt]}".format(jwt)}) - - def containers(self, container_id=None): - if container_id is None: - res = self.session.get( - urljoin(self.url, "api/endpoints/1/docker/containers/json"), - params={ - "all": 1, - "filters": json.dumps( - {"label": ["com.docker.compose.project=tvstack"]} - ), - }, - ) - else: - res = self.session.get( - urljoin( - self.url, - "api/endpoints/1/docker/containers/{}/json".format(container_id), - ) - ) - res.raise_for_status() - res = res.json() - if container_id is None: - for container in res: - pass - # print("Gettings stats for",container['Id']) - # container['stats']=self.stats(container['Id']) - # container['top']=self.top(container['Id']) - else: - res["stats"] = self.stats(container_id) - res["top"] = self.top(container_id) - return res - - def top(self, container_id): - res = self.session.get( - urljoin( - self.url, - "api/endpoints/1/docker/containers/{}/top".format(container_id), - ) - ) - res.raise_for_status() - res = res.json() - cols = res["Titles"] - ret = [] - - return res - - def stats(self, container_id): - res = self.session.get( - urljoin( - self.url, - "api/endpoints/1/docker/containers/{}/stats".format(container_id), - ), - params={"stream": False}, - ) - res.raise_for_status() - return res.json() - - def test(self): - self.containers() - return {} - - -class Jellyfin(object): - def __init__(self, url, api_key): - self.url = url - self.session = RQ.Session() - self.session.headers.update({"X-Emby-Token": api_key}) - self.api_key = api_key - self.user_id = self.get_self()['Id'] - self.playstate_commands = sorted([ - "Stop", "Pause", "Unpause", "NextTrack", "PreviousTrack", "Seek", "Rewind", "FastForward", "PlayPause" - ]) - self.session_commands = sorted([ - "MoveUp", "MoveDown", "MoveLeft", "MoveRight", "PageUp", "PageDown", "PreviousLetter", "NextLetter", "ToggleOsd", "ToggleContextMenu", "Select", "Back", "TakeScreenshot", "SendKey", "SendString", "GoHome", "GoToSettings", "VolumeUp", "VolumeDown", "Mute", "Unmute", "ToggleMute", "SetVolume", "SetAudioStreamIndex", "SetSubtitleStreamIndex", "ToggleFullscreen", "DisplayContent", "GoToSearch", "DisplayMessage", "SetRepeatMode", "ChannelUp", "ChannelDown", "Guide", "ToggleStats", "PlayMediaSource", "PlayTrailers", "SetShuffleQueue", "PlayState", "PlayNext", "ToggleOsdMenu", "Play" - ]) - # auth = 'MediaBrowser Client="MediaDash", Device="Python", DeviceId="{}", Version="{}", Token="{}"'.format( - # self.device_id, RQ.__version__, self.api_key - # ) - # self.session.headers.update({"X-Emby-Authorization": auth}) - - def status(self): - res = self.session.get(urljoin(self.url, "System/Info")) - res.raise_for_status() - return res.json() - - def chapter_image_url(self,item_id,chapter_num,tag): - return chapter_image_url(urljoin(self.url, "Items",item_id,"Images","Chapter",chapter_num)) - - def rq(self,method,url,*args,**kwargs): - res=self.session.request(method,urljoin(self.url, url), *args, **kwargs) - res.raise_for_status() - return res - - def get(self, url, *args, **kwargs): - res=self.session.get(urljoin(self.url, url), *args, **kwargs) - res.raise_for_status() - return res - - def post(self, url, *args, **kwargs): - res=self.session.post(urljoin(self.url, url), *args, **kwargs) - res.raise_for_status() - return res - - def sessions(self): - res = self.session.get(urljoin(self.url, "Sessions")) - res.raise_for_status() - return res.json() - - def media_info(self,item_id): - res = self.session.get(urljoin(self.url, "Users",self.user_id,"Items",item_id)) - res.raise_for_status() - return res.json() - - def system_info(self): - res = self.session.get(urljoin(self.url, "System/Info")) - res.raise_for_status() - return res.json() - - def __get_child_items(self, item_id): - print(item_id) - res = self.session.get( - urljoin(self.url, "Users",self.user_id,"Items"), - params={"ParentId": item_id}, - ) - res.raise_for_status() - return res.json() - - def get_recursive(self, item_id): - for item in self.__get_child_items(item_id).get("Items", []): - yield item - yield from self.get_recursive(item["Id"]) - - def get_library(self): - res = self.session.get(urljoin(self.url, "Library/MediaFolders")) - res.raise_for_status() - for folder in res.json().get("Items", []): - for item in self.get_recursive(folder["Id"]): - pass - - def __db_fetch(self, endpoint): - ret = [] - res = self.session.get( - urljoin(self.url, endpoint), - params={"StartIndex": 0, "IncludeItemTypes": "*", "ReportColumns": ""}, - ) - res.raise_for_status() - res = res.json() - headers = [h["Name"].lower() for h in res["Headers"]] - for row in res["Rows"]: - fields = [c["Name"] for c in row["Columns"]] - ret.append(dict(zip(headers, fields))) - ret[-1]["row_type"] = row["RowType"] - return ret - - def get_self(self): - res=self.session.get(urljoin(self.url, "users","me")) - res.raise_for_status() - return res.json()[0] - - def get_users(self): - res=self.session.get(urljoin(self.url, "users")) - res.raise_for_status() - return res.json() - - def activity(self): - return self.__db_fetch("Reports/Activities") - - def report(self): - return self.__db_fetch("Reports/Items") - - def stop_session(self,session_id): - sessions=self.get("Sessions").json() - for session in sessions: - if session['Id']==session_id and "NowPlayingItem" in session: - s_id=session["Id"] - u_id=session["UserId"] - i_id=session['NowPlayingItem']['Id'] - d_id=session['DeviceId'] - self.rq("delete","Videos/ActiveEncodings",params={"deviceId":d_id,"playSessionId":s_id}) - self.rq("delete",f"Users/{u_id}/PlayingItems/{i_id}") - self.rq("post",f"Sessions/{s_id}/Playing/Stop") - - def test(self): - self.status() - return {} - - -class QBittorrent(object): - - status_map = { - "downloading": ("Downloading", "primary"), - "uploading": ("Seeding", "success"), - "forcedDL": ("Downloading [Forced]", "primary"), - "forcedUP": ("Seeding [Forced]", "success"), - "pausedDL": ("Downloading [Paused]", "secondary"), - "pausedUP": ("Seeding [Paused]", "secondary"), - "stalledDL": ("Downloading [Stalled]", "warning"), - "stalledUP": ("Seeding [Stalled]", "warning"), - "metaDL": ("Downloading metadata", "primary"), - "error": ("Error", "danger"), - "missingFiles": ("Missing Files", "danger"), - "queuedUP": ("Seeding [Queued]", "info"), - "queuedDL": ("Downloading [Queued]", "info"), - } - - tracker_status = { - 0: ("Disabled", "secondary"), - 1: ("Not contacted", "info"), - 2: ("Working", "success"), - 3: ("Updating", "warning"), - 4: ("Not working", "danger"), - } - - def __init__(self, url, username, passwd): - self.url = url - self.username = username - self.passwd = passwd - self.rid = int(time.time()) - self.session= RQ.Session() - url = urljoin(self.url, "/api/v2/auth/login") - self.session.post( - url, data={"username": self.username, "password": self.passwd} - ).raise_for_status() - - def get(self, url, **kwargs): - kwargs["rid"] = self.rid - url = urljoin(self.url, url) - res = self.session.get(url, params=kwargs) - res.raise_for_status() - try: - return res.json() - except ValueError: - return res.text - - def add(self, **kwargs): - self.rid += 1 - url = urljoin(self.url, "/api/v2/torrents/add") - ret = self.session.post(url, data=kwargs) - return ret.text, ret.status_code - - def add_trackers(self, infohash, trackers=None): - if trackers is None: - trackers = [] - for tracker_list in [ - "https://newtrackon.com/api/live", - "https://ngosang.github.io/trackerslist/trackers_best.txt", - ]: - try: - trackers_res = RQ.get(tracker_list) - trackers_res.raise_for_status() - except Exception as e: - print("Error getting tracker list:", e) - continue - trackers += trackers_res.text.split() - url = urljoin(self.url, "/api/v2/torrents/addTrackers") - data = {"hash": infohash, "urls": "\n\n".join(trackers)} - ret = self.session.post(url, data=data) - ret.raise_for_status() - return ret.text - - def poll(self, infohash=None): - if infohash: - ret = {} - res = self.get("/api/v2/torrents/info", hashes=infohash) - ret["info"] = res - for endpoint in ["properties", "trackers", "webseeds", "files"]: - url = "/api/v2/torrents/{}".format(endpoint) - res = self.get("/api/v2/torrents/{}".format(endpoint), hash=infohash) - if endpoint == "trackers": - for v in res: - if v["tier"] == "": - v["tier"] = -1 - v["status"] = self.tracker_status.get( - v["status"], ("Unknown", "light") - ) - v["total_peers"] = ( - v["num_seeds"] + v["num_leeches"] + v["num_peers"] - ) - for k in [ - "num_seeds", - "num_leeches", - "total_peers", - "num_downloaded", - "num_peers", - ]: - if v[k] < 0: - v[k] = (-1, "?") - else: - v[k] = (v[k], v[k]) - ret[endpoint] = res - ret["info"] = ret["info"][0] - ret["info"]["state"] = self.status_map.get( - ret["info"]["state"], (ret["info"]["state"], "light") - ) - for tracker in ret["trackers"]: - tracker["name"] = urlparse(tracker["url"]).netloc or tracker["url"] - tracker["has_url"] = bool(urlparse(tracker["url"]).netloc) - return ret - res = self.get("/api/v2/sync/maindata") - if "torrents" in res: - for k, v in res["torrents"].items(): - v["hash"] = k - v["speed"] = v["upspeed"] + v["dlspeed"] - dl_rate = v["downloaded"] / max(0, time.time() - v["added_on"]) - if dl_rate > 0: - v["eta"] = max(0, (v["size"] - v["downloaded"]) / dl_rate) - else: - v["eta"] = 0 - if v["time_active"]==0: - dl_rate=0 - else: - dl_rate = v["downloaded"] / v["time_active"] - if dl_rate > 0: - v["eta_act"] = max(0, (v["size"] - v["downloaded"]) / dl_rate) - else: - v["eta_act"] = 0 - res["torrents"][k] = v - res["version"] = self.get("/api/v2/app/version") - self.rid = res["rid"] - return res - - def status(self, infohash=None): - self.rid += 1 - return self.poll(infohash) - - def peer_log(self, limit=0): - return self.get("/api/v2/log/peers")[-limit:] - - def log(self, limit=0): - return self.get("/api/v2/log/main")[-limit:] - - def test(self): - self.poll() - return {} - - -class Radarr(object): - def __init__(self, url, api_key): - self.url = url - self.api_key = api_key - - def get(self, url, **kwargs): - kwargs["apikey"] = self.api_key - kwargs["_"] = str(int(time.time())) - res = RQ.get(urljoin(self.url, url), params=kwargs) - res.raise_for_status() - try: - return res.json() - except: - return res.text - - def search(self, query): - return self.get("api/v3/movie/lookup", term=query) - - def status(self): - return self.get("api/v3/system/status") - - def history(self, pageSize=500): - return self.get( - "api/v3/history", - page=1, - pageSize=500, - sortDirection="descending", - sortKey="date", - ) - - def calendar(self,days=30): - today=datetime.today() - start=today-timedelta(days=days) - end=today+timedelta(days=days) - return self.get("api/v3/calendar",unmonitored=False,start=start.isoformat(),end=end.isoformat()) - - - def movies(self): - return self.get("api/v3/movie") - - def queue(self, series_id): - return self.get("api/v3/queue") - - def log(self, limit=0): - return self.get( - "api/v3/log", - page=1, - pageSize=(limit or 1024), - sortDirection="descending", - sortKey="time", - ) - - def test(self): - self.status() - return {} - - -class Sonarr(object): - def __init__(self, url, api_key): - self.url = url - self.api_key = api_key - - def get(self, url, **kwargs): - kwargs["apikey"] = self.api_key - kwargs["_"] = str(int(time.time())) - res = RQ.get(urljoin(self.url, url), params=kwargs) - res.raise_for_status() - try: - return res.json() - except: - return res.text - - def search(self, query): - return self.get("api/v3/series/lookup", term=query) - - def status(self): - return self.get("api/v3/system/status") - - def history(self, pageSize=500): - return self.get( - "api/v3/history", - page=1, - pageSize=500, - sortDirection="descending", - sortKey="date", - ) - - def calendar(self,days=30): - today=datetime.today() - start=today-timedelta(days=days) - end=today+timedelta(days=days) - return self.get("api/v3/calendar",unmonitored=False,start=start.isoformat(),end=end.isoformat()) - - def series(self, series_id=None): - if series_id is None: - return self.get("api/v3/series") - ret = {} - - ret["episodes"] = self.get("api/v3/episode", seriesId=series_id) - ret["episodeFile"] = self.get("api/v3/episodeFile", seriesId=series_id) - ret["queue"] = self.get("api/v3/queue/details", seriesId=series_id) - return ret - - def queue(self, series_id): - return self.get("api/v3/queue") - - def episodes(self, series_id): - return self.get("api/v3/episode", seriesId=series_id) - - def log(self, limit=0): - return self.get( - "api/v3/log", - page=1, - pageSize=(limit or 1024), - sortDirection="descending", - sortKey="time", - ) - - def test(self): - self.status() - return {} - - -class Jackett(object): - def __init__(self, url, api_key): - self.url = url - self.api_key = api_key - self.session= RQ.Session() - self.session.post("http://192.168.2.25:9117/jackett/UI/Dashboard") - - def search(self, query, indexers=None): - params = {"apikey": self.api_key, "Query": query, "_": str(int(time.time()))} - if indexers: - params["Tracker[]"] = indexers - res = self.session.get( - urljoin(self.url, f"api/v2.0/indexers/all/results"), params=params - ) - res.raise_for_status() - res = res.json() - for val in res["Results"]: - for prop in ["Gain", "Seeders", "Peers", "Grabs", "Files"]: - val[prop] = val.get(prop) or 0 - return res - - def indexers(self): - return [ - (t["id"], t["name"]) - for t in self.session.get(urljoin(self.url, "api/v2.0/indexers")).json() - if t.get("configured") - ] - - def test(self): - errors = {} - for idx, name in self.indexers(): - print("Testing indexer", name) - result = self.session.post( - urljoin(self.url, "api/v2.0/indexers/{}/test".format(idx)) - ) - if result.text: - errors[name] = result.json()["error"] - return errors - -class Client(object): - def __init__(self, cfg): - self.cfg = cfg - self.jackett = Jackett(cfg["jackett_url"], cfg["jackett_api_key"]) - self.sonarr = Sonarr(cfg["sonarr_url"], cfg["sonarr_api_key"]) - self.radarr = Radarr(cfg["radarr_url"], cfg["radarr_api_key"]) - self.jellyfin = Jellyfin( - cfg["jellyfin_url"], cfg["jellyfin_api_key"] - ) - self.qbittorent = QBittorrent( - cfg["qbt_url"], cfg["qbt_username"], cfg["qbt_passwd"] - ) - self.portainer = Portainer( - cfg["portainer_url"], cfg["portainer_username"], cfg["portainer_passwd"] - ) - self.ssh = Connection('root@server') - - def _get_ssh_keys(self): - cfg = handle_config() - res=self.ssh.get("/data/.ssh/authorized_keys",io.BytesIO()) - res.local.seek(0) - ret=[] - for line in str(res.local.read(),"utf8").splitlines(): - if line.startswith("#"): - continue - else: - key_type,key,comment=line.split(None,2) - ret.append((key_type,key,comment)) - return ret - - def add_user(self,name,ssh_key): - cfg = handle_config() - user_config = cfg['jellyfin_user_config'] - user_policy = cfg['jellyfin_user_policy'] - passwd = genpw() - res=self.ssh.get("/data/.ssh/authorized_keys",io.BytesIO()) - res.local.seek(0) - keys=[l.split(None,2) for l in str(res.local.read(),"utf8").splitlines()] - key_type,key,*_=ssh_key.split() - keys.append([key_type,key,name]) - new_keys=[] - seen_keys=set() - for key_type,key,name in keys: - if key not in seen_keys: - seen_keys.add(key) - new_keys.append([key_type,key,name]) - new_keys_file="\n".join(" ".join(key) for key in new_keys) - self.ssh.put(io.BytesIO(bytes(new_keys_file,"utf8")),"/data/.ssh/authorized_keys",preserve_mode=False) - user = self.jellyfin.post("Users/New", json={"Name": name, "Password": passwd}) - user.raise_for_status() - user = user.json() - self.jellyfin.post("Users/{Id}/Configuration".format(**user), json=user_config).raise_for_status() - self.jellyfin.post("Users/{Id}/Policy".format(**user), json=user_policy).raise_for_status() - return passwd - - @staticmethod - def test(cfg=None): - cfg = cfg or self.cfg - modules = [ - ( - "Jackett", - lambda cfg: Jackett(cfg["jackett_url"], cfg["jackett_api_key"]), - ), - ("Sonarr", lambda cfg: Sonarr(cfg["sonarr_url"], cfg["sonarr_api_key"])), - ("Radarr", lambda cfg: Radarr(cfg["radarr_url"], cfg["radarr_api_key"])), - ( - "QBittorrent", - lambda cfg: QBittorrent( - cfg["qbt_url"], cfg["qbt_username"], cfg["qbt_passwd"] - ), - ), - ( - "Jellyfin", - lambda cfg: Jellyfin( - cfg["jellyfin_url"], - cfg["jellyfin_username"], - cfg["jellyfin_passwd"], - ), - ), - ( - "Portainer", - lambda cfg: Portainer( - cfg["portainer_url"], - cfg["portainer_username"], - cfg["portainer_passwd"], - ), - ), - ] - errors = {} - success = True - for mod, Module in modules: - try: - print("Testing", mod) - errors[mod] = Module(cfg).test() - if errors[mod]: - success = False - except Exception as e: - print(dir(e)) - errors[mod] = str(e) - success = False - print(errors) - return {"success": success, "errors": errors} diff --git a/api/__init__.py b/api/__init__.py new file mode 100644 index 0000000..ee88ea2 --- /dev/null +++ b/api/__init__.py @@ -0,0 +1,143 @@ +import io +from fabric import Connection + +from utils import genpw, handle_config + +from .jackett import Jackett +from .jellyfin import Jellyfin +from .portainer import Portainer +from .qbittorrent import QBittorrent +from .radarr import Radarr +from .sonarr import Sonarr + + +class Client(object): + def __init__(self, cfg=None): + if cfg is None: + cfg = handle_config() + self.cfg = cfg + self.jackett = Jackett(cfg["jackett_url"], cfg["jackett_api_key"]) + self.sonarr = Sonarr(cfg["sonarr_url"], cfg["sonarr_api_key"]) + self.radarr = Radarr(cfg["radarr_url"], cfg["radarr_api_key"]) + self.jellyfin = Jellyfin( + cfg["jellyfin_url"], cfg["jellyfin_user"], cfg["jellyfin_password"] + ) + self.qbittorent = QBittorrent( + cfg["qbt_url"], cfg["qbt_username"], cfg["qbt_passwd"] + ) + self.portainer = Portainer( + cfg["portainer_url"], + cfg["portainer_username"], + cfg["portainer_passwd"]) + self.ssh = Connection("root@server") + + def _get_ssh_keys(self): + res = self.ssh.get("/data/.ssh/authorized_keys", io.BytesIO()) + res.local.seek(0) + ret = [] + for line in str(res.local.read(), "utf8").splitlines(): + if line.startswith("#"): + continue + else: + key_type, key, comment = line.split(None, 2) + ret.append((key_type, key, comment)) + return ret + + def add_user(self, name, ssh_key): + cfg = handle_config() + user_config = cfg["jellyfin_user_config"] + user_policy = cfg["jellyfin_user_policy"] + passwd = genpw() + res = self.ssh.get("/data/.ssh/authorized_keys", io.BytesIO()) + res.local.seek(0) + keys = [ + line.split( + None, + 2) for line in str( + res.local.read(), + "utf8").splitlines()] + key_type, key, *_ = ssh_key.split() + keys.append([key_type, key, name]) + new_keys = [] + seen_keys = set() + for key_type, key, key_name in keys: + if key not in seen_keys: + seen_keys.add(key) + new_keys.append([key_type, key, key_name]) + new_keys_file = "\n".join(" ".join(key) for key in new_keys) + self.ssh.put( + io.BytesIO(bytes(new_keys_file, "utf8")), + "/data/.ssh/authorized_keys", + preserve_mode=False, + ) + user = self.jellyfin.post( + "Users/New", + json={ + "Name": name, + "Password": passwd}) + user = user.json() + self.jellyfin.post( + "Users/{Id}/Configuration".format(**user), json=user_config) + self.jellyfin.post( + "Users/{Id}/Policy".format(**user), json=user_policy) + return passwd + + def queue(self, ids=[]): + ret = [] + for item in self.sonarr.queue(): + if not ids or item.get("seriesId") in ids: + item["type"] = "sonarr" + ret.append(item) + for item in self.radarr.queue(): + item["download"] = self.qbittorent.status(item["downloadId"]) + if not ids or item.get("movieId") in ids: + item["type"] = "radarr" + ret.append(item) + return ret + + @staticmethod + def test(cls, cfg=None): + modules = [ + ( + "Jackett", + lambda cfg: Jackett(cfg["jackett_url"], cfg["jackett_api_key"]), + ), + ("Sonarr", lambda cfg: Sonarr(cfg["sonarr_url"], cfg["sonarr_api_key"])), + ("Radarr", lambda cfg: Radarr(cfg["radarr_url"], cfg["radarr_api_key"])), + ( + "QBittorrent", + lambda cfg: QBittorrent( + cfg["qbt_url"], cfg["qbt_username"], cfg["qbt_passwd"] + ), + ), + ( + "Jellyfin", + lambda cfg: Jellyfin( + cfg["jellyfin_url"], + cfg["jellyfin_username"], + cfg["jellyfin_passwd"], + ), + ), + ( + "Portainer", + lambda cfg: Portainer( + cfg["portainer_url"], + cfg["portainer_username"], + cfg["portainer_passwd"], + ), + ), + ] + errors = {} + success = True + for mod, Module in modules: + try: + print("Testing", mod) + errors[mod] = Module(cfg).test() + if errors[mod]: + success = False + except Exception as e: + print(dir(e)) + errors[mod] = str(e) + success = False + print(errors) + return {"success": success, "errors": errors} diff --git a/api/jackett.py b/api/jackett.py new file mode 100644 index 0000000..c3b5f17 --- /dev/null +++ b/api/jackett.py @@ -0,0 +1,45 @@ +import time +from urllib.parse import urljoin + +import requests as RQ + + +class Jackett(object): + def __init__(self, url, api_key): + self.url = url + self.api_key = api_key + self.session = RQ.Session() + self.session.post("http://192.168.2.25:9117/jackett/UI/Dashboard") + + def search(self, query, indexers=None): + params = {"apikey": self.api_key, + "Query": query, "_": str(int(time.time()))} + if indexers: + params["Tracker[]"] = indexers + res = self.session.get( + urljoin(self.url, "api/v2.0/indexers/all/results"), params=params + ) + res.raise_for_status() + res = res.json() + for val in res["Results"]: + for prop in ["Gain", "Seeders", "Peers", "Grabs", "Files"]: + val[prop] = val.get(prop) or 0 + return res + + def indexers(self): + return [ + (t["id"], t["name"]) + for t in self.session.get(urljoin(self.url, "api/v2.0/indexers")).json() + if t.get("configured") + ] + + def test(self): + errors = {} + for idx, name in self.indexers(): + print("Testing indexer", name) + result = self.session.post( + urljoin(self.url, "api/v2.0/indexers/{}/test".format(idx)) + ) + if result.text: + errors[name] = result.json()["error"] + return errors diff --git a/api/jellyfin.py b/api/jellyfin.py new file mode 100644 index 0000000..7d3f78f --- /dev/null +++ b/api/jellyfin.py @@ -0,0 +1,333 @@ +import time +import base64 +from urllib.parse import urljoin +from datetime import timedelta + +import requests as RQ +from dateutil.parser import parse as parse_datetime + +from utils import timed_cache + + +class Jellyfin(object): + def __init__(self, url, user, password): + self.url = url + self.session = RQ.Session() + self.device_id = str( + base64.b64encode( + "MediaDash ({})".format( + self.session.headers["User-Agent"]).encode("utf-8")), + "utf8", + ) + self.auth_headers = { + "X-Emby-Authorization": 'MediaBrowser Client="MediaDash", Device="Python", DeviceId="{}", Version="{}"'.format( + self.device_id, RQ.__version__)} + self.user = None + if user is not None: + res = self.login_user(user, password) + self.api_key = res["AccessToken"] + else: + self.api_key = password + self.auth_headers = { + "X-Emby-Authorization": 'MediaBrowser Client="MediaDash", Device="Python", DeviceId="{}", Version="{}", Token="{}"'.format( + self.device_id, RQ.__version__, self.api_key)} + # ws_url=self.url.replace("http","ws").rstrip("/")+"/?"+urlencode({"api_key":self.api_key,"deviceId":self.device_id}) + # self.ws = websocket.WebSocketApp(ws_url,on_open=print,on_error=print,on_message=print,on_close=print) + # self.ws_thread = Thread(target=self.ws.run_forever,daemon=True) + self.session.headers.update( + {**self.auth_headers, "X-Emby-Token": self.api_key}) + self.user = self.get_self() + self.user_id = self.user["Id"] + self.playstate_commands = sorted( + [ + "Stop", + "Pause", + "Unpause", + "NextTrack", + "PreviousTrack", + "Seek", + "Rewind", + "FastForward", + "PlayPause", + ] + ) + self.session_commands = sorted( + [ + "MoveUp", + "MoveDown", + "MoveLeft", + "MoveRight", + "PageUp", + "PageDown", + "PreviousLetter", + "NextLetter", + "ToggleOsd", + "ToggleContextMenu", + "Select", + "Back", + "TakeScreenshot", + "SendKey", + "SendString", + "GoHome", + "GoToSettings", + "VolumeUp", + "VolumeDown", + "Mute", + "Unmute", + "ToggleMute", + "SetVolume", + "SetAudioStreamIndex", + "SetSubtitleStreamIndex", + "ToggleFullscreen", + "DisplayContent", + "GoToSearch", + "DisplayMessage", + "SetRepeatMode", + "ChannelUp", + "ChannelDown", + "Guide", + "ToggleStats", + "PlayMediaSource", + "PlayTrailers", + "SetShuffleQueue", + "PlayState", + "PlayNext", + "ToggleOsdMenu", + "Play", + ] + ) + + def login_user(self, user, passwd): + res = self.post( + "Users/AuthenticateByName", + json={"Username": user, "Pw": passwd}, + headers=self.auth_headers, + ) + res.raise_for_status() + res = res.json() + self.session.headers.update( + {**self.auth_headers, "X-Emby-Token": res["AccessToken"]} + ) + return res + + def logout(self): + self.session.post(urljoin(self.url, "Sessions/Logout")) + + def status(self): + res = self.session.get(urljoin(self.url, "System/Info")) + res.raise_for_status() + return res.json() + + def chapter_image_url(self, item_id, chapter_num, tag): + return urljoin( + self.url, + "Items", + item_id, + "Images", + "Chapter", + chapter_num) + + def rq(self, method, url, *args, **kwargs): + res = self.session.request( + method, urljoin( + self.url, url), *args, **kwargs) + res.raise_for_status() + return res + + def get(self, url, *args, **kwargs): + res = self.session.get(urljoin(self.url, url), *args, **kwargs) + res.raise_for_status() + return res + + def post(self, url, *args, **kwargs): + res = self.session.post(urljoin(self.url, url), *args, **kwargs) + res.raise_for_status() + return res + + def sessions(self): + res = self.get("Sessions") + res.raise_for_status() + return res.json() + + @timed_cache() + def season_episodes(self, item_id, season_id): + res = self.get( + "Shows/{}/Episodes".format(item_id), + params={ + "UserId": self.user_id, + "seasonId": season_id, + "fields": "Overview,MediaStreams,MediaSources,ExternalUrls", + }, + ) + res.raise_for_status() + res = res.json()["Items"] + for episode in res: + episode["Info"] = self.media_info(episode["Id"]) + return res + + @timed_cache() + def seasons(self, item_id): + res = self.get( + "Shows/{}/Seasons".format(item_id), + params={ + "UserId": self.user_id, + "fields": "Overview,MediaStreams,MediaSources,ExternalUrls", + }, + ) + res.raise_for_status() + res = res.json()["Items"] + for season in res: + season["Episodes"] = self.season_episodes(item_id, season["Id"]) + return res + + @timed_cache() + def media_info(self, item_id): + res = self.get( + "Users/{}/Items/{}".format(self.user_id, item_id), + ) + res.raise_for_status() + res = res.json() + if res["Type"] == "Series": + res["Seasons"] = self.seasons(item_id) + return res + + def system_info(self): + res = self.get("System/Info") + res.raise_for_status() + return res.json() + + def __get_child_items(self, item_id): + print(item_id) + res = self.get( + "Users/{}/Items".format(self.user_id), + params={"ParentId": item_id}, + ) + res.raise_for_status() + return res.json() + + def get_recursive(self, item_id): + for item in self.__get_child_items(item_id).get("Items", []): + yield item + yield from self.get_recursive(item["Id"]) + + def get_counts(self): + res = self.get("Items/Counts").json() + return res + + @timed_cache(seconds=10) + def id_map(self): + res = self.get( + "Users/{}/Items".format(self.user_id), + params={ + "recursive": True, + "includeItemTypes": "Movie,Series", + "collapseBoxSetItems": False, + "fields": "ProviderIds", + }, + ) + res.raise_for_status() + res = res.json()["Items"] + id_map = {} + for item in res: + for _, prov_id in item["ProviderIds"].items(): + for prov in ["Imdb", "Tmdb", "Tvdb"]: + id_map[(prov.lower(), prov_id)] = item["Id"] + return id_map + + @timed_cache() + def get_library(self): + res = self.get( + "Users/{}/Items".format(self.user_id), + params={ + "recursive": True, + "includeItemTypes": "Movie,Series", + "collapseBoxSetItems": False, + }, + ).json() + library = {} + for item in res["Items"]: + library[item["Id"]] = item + for item in res["Items"]: + for key, value in item.copy().items(): + if key != "Id" and key.endswith("Id"): + key = key[:-2] + if value in library and key not in item: + item[key] = library[value] + return library + + def get_usage(self): + report = self.post( + "user_usage_stats/submit_custom_query", + params={"stamp": int(time.time())}, + json={ + "CustomQueryString": "SELECT * FROM PlaybackActivity", + "ReplaceUserId": True, + }, + ).json() + ret = [] + for row in report["results"]: + rec = dict(zip(report["colums"], row)) + rec["PlayDuration"] = timedelta(seconds=int(rec["PlayDuration"])) + ts = rec.pop("DateCreated") + if ts: + rec["Timestamp"] = parse_datetime(ts) + ret.append(rec) + return ret + + def __db_fetch(self, endpoint): + ret = [] + res = self.session.get( + urljoin( + self.url, + endpoint), + params={ + "StartIndex": 0, + "IncludeItemTypes": "*", + "ReportColumns": ""}, + ) + res.raise_for_status() + res = res.json() + headers = [h["Name"].lower() for h in res["Headers"]] + for row in res["Rows"]: + fields = [c["Name"] for c in row["Columns"]] + ret.append(dict(zip(headers, fields))) + ret[-1]["row_type"] = row["RowType"] + return ret + + def get_self(self): + res = self.get("Users/Me") + return res.json() + + def get_users(self, user_id=None): + if user_id: + res = self.get("Users/{}".format(user_id)) + else: + res = self.get("Users") + res.raise_for_status() + return res.json() + + def activity(self): + return self.__db_fetch("Reports/Activities") + + def report(self): + return self.__db_fetch("Reports/Items") + + def stop_session(self, session_id): + sessions = self.get("Sessions").json() + for session in sessions: + if session["Id"] == session_id and "NowPlayingItem" in session: + s_id = session["Id"] + u_id = session["UserId"] + i_id = session["NowPlayingItem"]["Id"] + d_id = session["DeviceId"] + self.rq( + "delete", + "Videos/ActiveEncodings", + params={"deviceId": d_id, "playSessionId": s_id}, + ) + self.rq("delete", f"Users/{u_id}/PlayingItems/{i_id}") + self.rq("post", f"Sessions/{s_id}/Playing/Stop") + + def test(self): + self.status() + return {} diff --git a/api/portainer.py b/api/portainer.py new file mode 100644 index 0000000..51d21f8 --- /dev/null +++ b/api/portainer.py @@ -0,0 +1,75 @@ +import json +from urllib.parse import urljoin + +import requests as RQ + + +class Portainer(object): + def __init__(self, url, username, passwd): + self.url = url + self.session = RQ.Session() + jwt = self.session.post( + urljoin(self.url, "api/auth"), + json={"username": username, "password": passwd}, + ).json() + self.session.headers.update( + {"Authorization": "Bearer {0[jwt]}".format(jwt)}) + + def containers(self, container_id=None): + if container_id is None: + res = self.session.get( + urljoin(self.url, "api/endpoints/1/docker/containers/json"), + params={ + "all": 1, + "filters": json.dumps( + {"label": ["com.docker.compose.project=tvstack"]} + ), + }, + ) + else: + res = self.session.get( + urljoin( + self.url, + "api/endpoints/1/docker/containers/{}/json".format(container_id), + )) + res.raise_for_status() + res = res.json() + if container_id is None: + for container in res: + pass + # print("Gettings stats for",container['Id']) + # container['stats']=self.stats(container['Id']) + # container['top']=self.top(container['Id']) + else: + res["stats"] = self.stats(container_id) + res["top"] = self.top(container_id) + return res + + def top(self, container_id): + res = self.session.get( + urljoin( + self.url, + "api/endpoints/1/docker/containers/{}/top".format(container_id), + )) + res.raise_for_status() + res = res.json() + cols = res["Titles"] + ret = [] + + return res + + def stats(self, container_id): + res = self.session.get( + urljoin( + self.url, + "api/endpoints/1/docker/containers/{}/stats".format(container_id), + ), + params={ + "stream": False}, + ) + res.raise_for_status() + return res.json() + + def test(self): + self.containers() + return {} diff --git a/api/qbittorrent.py b/api/qbittorrent.py new file mode 100644 index 0000000..e8220e4 --- /dev/null +++ b/api/qbittorrent.py @@ -0,0 +1,155 @@ +import time +from urllib.parse import urljoin, urlparse + +import requests as RQ + + +class QBittorrent(object): + + status_map = { + "downloading": ("Downloading", "primary"), + "uploading": ("Seeding", "success"), + "forcedDL": ("Downloading [Forced]", "primary"), + "forcedUP": ("Seeding [Forced]", "success"), + "pausedDL": ("Downloading [Paused]", "secondary"), + "pausedUP": ("Seeding [Paused]", "secondary"), + "stalledDL": ("Downloading [Stalled]", "warning"), + "stalledUP": ("Seeding [Stalled]", "warning"), + "metaDL": ("Downloading metadata", "primary"), + "error": ("Error", "danger"), + "missingFiles": ("Missing Files", "danger"), + "queuedUP": ("Seeding [Queued]", "info"), + "queuedDL": ("Downloading [Queued]", "info"), + } + + tracker_status = { + 0: ("Disabled", "secondary"), + 1: ("Not contacted", "info"), + 2: ("Working", "success"), + 3: ("Updating", "warning"), + 4: ("Not working", "danger"), + } + + def __init__(self, url, username, passwd): + self.url = url + self.username = username + self.passwd = passwd + self.rid = int(time.time()) + self.session = RQ.Session() + url = urljoin(self.url, "/api/v2/auth/login") + self.session.post( + url, data={"username": self.username, "password": self.passwd} + ).raise_for_status() + + def get(self, url, **kwargs): + kwargs["rid"] = self.rid + url = urljoin(self.url, url) + res = self.session.get(url, params=kwargs) + res.raise_for_status() + try: + return res.json() + except ValueError: + return res.text + + def add(self, **kwargs): + self.rid += 1 + url = urljoin(self.url, "/api/v2/torrents/add") + ret = self.session.post(url, data=kwargs) + return ret.text, ret.status_code + + def add_trackers(self, infohash, trackers=None): + if trackers is None: + trackers = [] + for tracker_list in [ + "https://newtrackon.com/api/live", + "https://ngosang.github.io/trackerslist/trackers_best.txt", + ]: + try: + trackers_res = RQ.get(tracker_list) + trackers_res.raise_for_status() + except Exception as e: + print("Error getting tracker list:", e) + continue + trackers += trackers_res.text.split() + url = urljoin(self.url, "/api/v2/torrents/addTrackers") + data = {"hash": infohash, "urls": "\n\n".join(trackers)} + ret = self.session.post(url, data=data) + ret.raise_for_status() + return ret.text + + def poll(self, infohash=None): + if infohash: + ret = {} + res = self.get("/api/v2/torrents/info", hashes=infohash) + ret["info"] = res + for endpoint in ["properties", "trackers", "webseeds", "files"]: + url = "/api/v2/torrents/{}".format(endpoint) + res = self.get(url, hash=infohash) + if endpoint == "trackers": + for v in res: + if v["tier"] == "": + v["tier"] = -1 + v["status"] = self.tracker_status.get( + v["status"], ("Unknown", "light") + ) + v["total_peers"] = ( + v["num_seeds"] + v["num_leeches"] + v["num_peers"] + ) + for k in [ + "num_seeds", + "num_leeches", + "total_peers", + "num_downloaded", + "num_peers", + ]: + if v[k] < 0: + v[k] = (-1, "?") + else: + v[k] = (v[k], v[k]) + ret[endpoint] = res + ret["info"] = ret["info"][0] + ret["info"]["state"] = self.status_map.get( + ret["info"]["state"], (ret["info"]["state"], "light") + ) + for tracker in ret["trackers"]: + tracker["name"] = urlparse( + tracker["url"]).netloc or tracker["url"] + tracker["has_url"] = bool(urlparse(tracker["url"]).netloc) + return ret + res = self.get("/api/v2/sync/maindata") + if "torrents" in res: + for k, v in res["torrents"].items(): + v["hash"] = k + v["speed"] = v["upspeed"] + v["dlspeed"] + dl_rate = v["downloaded"] / max(0, time.time() - v["added_on"]) + if dl_rate > 0: + v["eta"] = max(0, (v["size"] - v["downloaded"]) / dl_rate) + else: + v["eta"] = 0 + if v["time_active"] == 0: + dl_rate = 0 + else: + dl_rate = v["downloaded"] / v["time_active"] + if dl_rate > 0: + v["eta_act"] = max( + 0, (v["size"] - v["downloaded"]) / dl_rate) + else: + v["eta_act"] = 0 + res["torrents"][k] = v + res["version"] = self.get("/api/v2/app/version") + self.rid = res["rid"] + return res + + def status(self, infohash=None): + self.rid += 1 + return self.poll(infohash) + + def peer_log(self, limit=0): + return self.get("/api/v2/log/peers")[-limit:] + + def log(self, limit=0): + return self.get("/api/v2/log/main")[-limit:] + + def test(self): + self.poll() + return {} diff --git a/api/radarr.py b/api/radarr.py new file mode 100644 index 0000000..6dfaa08 --- /dev/null +++ b/api/radarr.py @@ -0,0 +1,98 @@ +import time +from datetime import datetime, timedelta +from urllib.parse import urljoin + +import requests as RQ + +from utils import timed_cache + + +class Radarr(object): + def __init__(self, url, api_key): + self.url = url + self.api_key = api_key + self.root_folder = self.get("api/v3/rootFolder")[0]["path"] + self.quality_profile = self.get("api/v3/qualityprofile")[0] + + def get(self, url, **kwargs): + kwargs["apikey"] = self.api_key + kwargs["_"] = str(int(time.time())) + res = RQ.get(urljoin(self.url, url), params=kwargs) + res.raise_for_status() + try: + return res.json() + except Exception: + return res.text + + def search(self, query): + return self.get("api/v3/movie/lookup", term=query) + + def status(self): + return self.get("api/v3/system/status") + + @timed_cache() + def history(self, pageSize=500): + return self.get( + "api/v3/history", + page=1, + pageSize=500, + sortDirection="descending", + sortKey="date", + ) + + @timed_cache() + def calendar(self, days=90): + today = datetime.today() + start = today - timedelta(days=days) + end = today + timedelta(days=days) + return self.get( + "api/v3/calendar", + unmonitored=False, + start=start.isoformat(), + end=end.isoformat(), + ) + + @timed_cache() + def movies(self, movie_id=None): + if movie_id is None: + return self.get("api/v3/movie") + return self.get("api/v3/movie/{}".format(movie_id)) + + @timed_cache(seconds=60) + def queue(self, **kwargs): + data = [] + page = 1 + while True: + res = self.get("api/v3/queue", page=page, pageSize=100, **kwargs) + data += res.get("records", []) + page += 1 + if len(data) >= res.get("totalRecords", 0): + break + return data + + def add(self, data): + data["qualityProfileId"] = self.quality_profile["id"] + data["minimumAvailability"] = 2 # InCinema + data["rootFolderPath"] = self.root_folder + data["addOptions"] = {"searchForMovie": True} + params = dict(apikey=self.api_key) + res = RQ.post( + urljoin( + self.url, + "api/v3/movie"), + json=data, + params=params) + return res.json() + + def log(self, limit=0): + return self.get( + "api/v3/log", + page=1, + pageSize=(limit or 1024), + sortDirection="descending", + sortKey="time", + ) + + def test(self): + self.status() + return {} diff --git a/api/sonarr.py b/api/sonarr.py new file mode 100644 index 0000000..afb1ecc --- /dev/null +++ b/api/sonarr.py @@ -0,0 +1,116 @@ +import time +from urllib.parse import urljoin +from datetime import datetime, timedelta +import requests as RQ + +from utils import timed_cache + + +class Sonarr(object): + def __init__(self, url, api_key): + self.url = url + self.api_key = api_key + self.root_folder = self.get("api/v3/rootFolder")[0]["path"] + self.quality_profile = self.get("api/v3/qualityprofile")[0] + self.language_profile = self.get("api/v3/languageprofile")[0] + + def get(self, url, **kwargs): + kwargs["apikey"] = self.api_key + kwargs["_"] = str(int(time.time())) + res = RQ.get(urljoin(self.url, url), params=kwargs) + res.raise_for_status() + try: + return res.json() + except Exception: + return res.text + + def search(self, query): + return self.get("api/v3/series/lookup", term=query) + + def status(self): + return self.get("api/v3/system/status") + + @timed_cache() + def history(self, pageSize=500): + return self.get( + "api/v3/history", + page=1, + pageSize=500, + sortDirection="descending", + sortKey="date", + ) + + @timed_cache() + def calendar(self, days=30): + today = datetime.today() + start = today - timedelta(days=days) + end = today + timedelta(days=days) + return self.get( + "api/v3/calendar", + unmonitored=False, + start=start.isoformat(), + end=end.isoformat(), + ) + + @timed_cache() + def series(self, series_id=None, keys=None): + if series_id is None: + return self.get("api/v3/series") + ret = {} + ret["series"] = self.get("api/v3/series/{}".format(series_id)) + ret["episodes"] = self.get("api/v3/episode", seriesId=series_id) + ret["episodeFile"] = self.get("api/v3/episodeFile", seriesId=series_id) + ret["queue"] = self.get("api/v3/queue/details", seriesId=series_id) + return ret + + @timed_cache(seconds=60) + def queue(self, **kwargs): + data = [] + page = 1 + while True: + res = self.get("api/v3/queue", page=page, pageSize=100, **kwargs) + data = res.get("records", []) + page += 1 + if len(data) >= res.get("totalRecords", 0): + break + return data + + @timed_cache() + def details(self, episode_id): + return self.get("api/v3/queue/details", episodeIds=episode_id) + + @timed_cache() + def episodes(self, series_id): + return self.get("api/v3/episode", seriesId=series_id) + + def add(self, data): + data["qualityProfileId"] = self.quality_profile["id"] + data["languageProfileId"] = self.language_profile["id"] + data["rootFolderPath"] = self.root_folder + data["addOptions"] = { + "ignoreEpisodesWithoutFiles": False, + "ignoreEpisodesWithFiles": True, + "searchForMissingEpisodes": True, + } + data["seasonFolder"] = True + params = dict(apikey=self.api_key) + res = RQ.post( + urljoin( + self.url, + "api/v3/series"), + json=data, + params=params) + return res.json() + + def log(self, limit=0): + return self.get( + "api/v3/log", + page=1, + pageSize=(limit or 1024), + sortDirection="descending", + sortKey="time", + ) + + def test(self): + self.status() + return {} diff --git a/api/user.py b/api/user.py new file mode 100644 index 0000000..d64edc9 --- /dev/null +++ b/api/user.py @@ -0,0 +1,34 @@ +from flask_login import UserMixin + +from api import Jellyfin +from utils import handle_config + + +class JellyfinUser(UserMixin): + def __init__(self, username, password): + api = Jellyfin(handle_config()["jellyfin_url"], username, password) + self.user = api.user + self.api_key = api.api_key + self.id = self.user["Id"] + api.logout() + + def __getitem__(self, key): + return self.user[key] + + @property + def is_anonymous(self): + return False + + @property + def is_admin(self): + pol = self.user["Policy"] + return pol["IsAdministrator"] + + @property + def is_authenticated(self): + return True + + @property + def is_active(self): + pol = self.user["Policy"] + return not pol["IsDisabled"] diff --git a/app.py b/app.py index 92ad3ca..d986e32 100644 --- a/app.py +++ b/app.py @@ -1,83 +1,107 @@ -import sys -from gevent import monkey -if not "--debug" in sys.argv[1:]: +import sys # isort:skip +from gevent import monkey # isort:skip + +if __name__ == "__main__" and "--debug" not in sys.argv[1:]: monkey.patch_all() + import os + import requests as RQ -import json -import re -import io -import hashlib -import base64 -import time -import threading -from webargs import fields -from webargs.flaskparser import use_args -from datetime import timedelta, datetime -from pprint import pprint -from urllib.parse import quote, urljoin, unquote_plus -import pylab as PL -from matplotlib.ticker import EngFormatter -from base64 import b64encode -from slugify import slugify -from cryptography.hazmat.primitives.serialization import load_ssh_public_key from flask import ( Flask, + abort, + flash, + redirect, render_template, - send_from_directory, request, send_file, - redirect, - flash, - url_for, + send_from_directory, session, - jsonify, - Markup + url_for, ) -from flask_nav import Nav, register_renderer -from flask_nav.elements import Navbar, View, Subgroup from flask_bootstrap import Bootstrap -from flask_wtf.csrf import CSRFProtect from flask_debugtoolbar import DebugToolbarExtension -from flask_sqlalchemy import SQLAlchemy +from flask_limiter import Limiter +from flask_limiter.util import get_remote_address +from flask_login import LoginManager, current_user +from flask_login import login_user, logout_user +from flask_nav import Nav, register_renderer +from flask_nav.elements import Navbar, Text, View +from flask_session import Session +from flask_wtf.csrf import CSRFProtect -# =================== import stats_collect -from forms import ConfigForm, SearchForm, TranscodeProfileForm, AddSSHUser -from api import Client -from models import db, TranscodeJob, Stats +from api.user import JellyfinUser + +from forms import LoginForm +from models import RequestUser, db from transcode import profiles from utils import ( BootsrapRenderer, - eval_expr, - make_tree, - make_placeholder_image, - with_application_context, handle_config, - genpw + is_safe_url, + login_required, + make_placeholder_image, + setup_template_filters, + with_application_context, ) - +from views import register_blueprints def left_nav(): + requests_badge = None + if current_user.is_authenticated: + num_notifications = RequestUser.query.filter( + (RequestUser.user_id == current_user.id) & ( + RequestUser.updated is True)).count() + if num_notifications > 0: + requests_badge = (num_notifications, "danger") links = [ - View("Home", "index"), - View("Containers", "containers", container_id=None), - View("qBittorrent", "qbittorrent", infohash=None), - View("Sonarr", "sonarr", id=None), - View("Radarr", "radarr", id=None), - View("Jellyfin", "jellyfin"), - View("Search", "search"), - View("History", "history"), - View("Transcode", "transcode"), - View("Config", "config"), - View("Remote", "remote"), - View("Log", "app_log"), + View("Home", "home.index"), + View("Requests", "requests.index", __badge=requests_badge), + View("Containers", "containers.index", container_id=None), + View("qBittorrent", "qbittorrent.index", infohash=None), + View("Sonarr", "sonarr.index"), + View("Radarr", "radarr.index"), + View("Jellyfin", "jellyfin.index"), + View("Search", "search.index"), + View("History", "history.index"), + View("Transcode", "transcode.index"), + View("Config", "config.index"), + View("Remote", "remote.index"), + View("Log", "log.index"), ] + if current_user.is_authenticated: + links.append(View("Logout", "logout")) + links[-1].classes = ["btn", "btn-danger", "my-2", "my-sm-0"] + else: + links.append(View("Login", "login")) + links[-1].classes = ["btn", "btn-success", "my-2", "my-sm-0"] + for n, link in enumerate(links): + adapter = app.url_map.bind("localhost") + name, args = adapter.match(link.get_url(), method="GET") + func = app.view_functions[name] + if getattr(func, "requires_login", False): + if not current_user.is_authenticated: + links[n] = None + if getattr(func, "requires_admin", False): + if not (current_user.is_authenticated and current_user.is_admin): + links[n] = None + links = list(filter(None, links)) return Navbar("PirateDash", *links) +def right_nav(): + if current_user.is_authenticated: + return Text(current_user["Name"]) + else: + return Text("") + + def create_app(): - templates = os.path.join(os.path.dirname(os.path.abspath(__file__)), "templates") + templates = os.path.join( + os.path.dirname( + os.path.abspath(__file__)), + "templates") app = Flask(__name__, template_folder=templates) app.config.from_pyfile("config.cfg") app.bootstrap = Bootstrap(app) @@ -90,102 +114,43 @@ def create_app(): app.jinja_env.lstrip_blocks = True register_renderer(app, "bootstrap4", BootsrapRenderer) app.nav.register_element("left_nav", left_nav) - db.init_app(app) + app.nav.register_element("right_nav", right_nav) app.db = db + app.db.init_app(app) + app.login_manager = LoginManager(app) + app.login_manager.login_view = "/login" + app.config["SESSION_SQLALCHEMY"] = app.db + app.session = Session(app) + # app.limiter = Limiter( + # app, key_func=get_remote_address, default_limits=["120 per minute"] + # ) + # for handler in app.logger.handlers: + # app.limiter.logger.addHandler(handler) return app app = create_app() +setup_template_filters(app) +register_blueprints(app) -@app.template_filter("hash") -def t_hash(s): - return hashlib.sha512(bytes(s, "utf-8")).hexdigest() +@app.errorhandler(500) +def internal_error(error): + print(error) + return "" -@app.template_filter() -def regex_replace(s, find, replace): - """A non-optimal implementation of a regex filter""" - return re.sub(find, replace, s) +@app.errorhandler(404) +def internal_error(error): + print(error) + return "" -@app.template_filter("ctime") -def timectime(s): - return time.ctime(s) - - -@app.template_filter("ago") -def timeago(s, clamp=False): - seconds = round(time.time() - s, 0) - if clamp: - seconds = max(0, seconds) - return timedelta(seconds=seconds) - - -@app.template_filter("ago_dt") -def ago_dt(s,rnd=None): - dt=datetime.today() - s - if rnd is not None: - secs = round(dt.total_seconds(),rnd) - dt=timedelta(seconds=secs) - return str(dt).rstrip("0") - -@app.template_filter("ago_dt_utc") -def ago_dt_utc(s,rnd=None): - dt=datetime.utcnow() - s - if rnd is not None: - secs = round(dt.total_seconds(),rnd) - dt=timedelta(seconds=secs) - return str(dt).rstrip("0") - -@app.template_filter("ago_dt_utc_human") -def ago_dt_utc_human(s,swap=False,rnd=None): - if not swap: - dt=datetime.utcnow() - s - else: - dt=s - datetime.utcnow() - if rnd is not None: - secs = round(dt.total_seconds(),rnd) - dt=timedelta(seconds=secs) - if dt.total_seconds()<0: - return "In "+str(-dt).rstrip("0") - else: - return str(dt).rstrip("0")+" ago" - -@app.template_filter("timedelta") -def time_timedelta(s, digits=None, clamp=False): - if clamp: - s = max(s, 0) - if digits is not None: - s = round(s,digits) - return timedelta(seconds=s) - - -@app.template_filter("fromiso") -def time_fromiso(s): - t = s.rstrip("Z").split(".")[0] - t = datetime.strptime(t, "%Y-%m-%dT%H:%M:%S") - try: - t.microsecond = int(s.rstrip("Z").split(".")[1]) - except: - pass - return t - - -app.add_template_global(urljoin, "urljoin") - -@app.template_filter("slugify") -def make_slug(s): - return slugify(s, only_ascii=True) - - -app.template_filter()(make_tree) -app.add_template_global(handle_config, "cfg") - @app.before_request def before_request(): - db.create_all() app.config["APP_CONFIG"] = handle_config() + # if request.cookies.get('magic')!="FOO": + # return "" @app.route("/static/") @@ -193,391 +158,74 @@ def send_static(path): return send_from_directory("static", path) -def populate_form(form, cfg=None): - if cfg is None: - cfg = handle_config() - for name, field in form._fields.items(): - field.default = cfg.get(name) - form.transcode_default_profile.choices = [(None, "")] - form.transcode_default_profile.choices += [ - (k, k) for k in (cfg.get("transcode_profiles", {}) or {}).keys() - ] - - -def validate_transcoding_profiles(profiles): - for name, data in profiles.items(): - for req, req_type in [("command", str), ("doc", str)]: - if req not in data: - raise ValueError( - "Profile '{}' is missing required key '{}'".format(name, req) - ) - if not isinstance(data[req], req_type): - raise ValueError( - "Key '{}' of profile '{}' should be of type '{}'".format( - req, name, req_type.__name__ - ) - ) - - -@app.route("/config", methods=["GET", "POST"]) -def config(): - form = ConfigForm() - cfg = {} - populate_form(form) - if form.validate_on_submit(): - skip = ["save", "test", "csrf_token"] - transcode_profiles = request.files.get("transcode_profiles") - if transcode_profiles: - try: - form.transcode_profiles.data = json.load(transcode_profiles) - validate_transcoding_profiles(form.transcode_profiles.data) - except ValueError as e: - form.transcode_profiles.data = None - form.transcode_profiles.errors = [ - "Invalid json data in file {}: {}".format( - transcode_profiles.filename, e - ) - ] - else: - form.transcode_profiles.data = app.config["APP_CONFIG"].get( - "transcode_profiles", {} - ) - if form.errors: - return render_template("config.html", form=form) - for name, field in form._fields.items(): - if name in skip: - continue - cfg[name] = field.data - if form.test.data: - test_res = Client.test(cfg) - populate_form(form, cfg) - return render_template("config.html", form=form, test=test_res) - handle_config(cfg) - populate_form(form) - return render_template("config.html", form=form) - form.process() - return render_template("config.html", form=form) - - -@app.route("/search/details", methods=["GET", "POST"]) -def details(): - data = { - "info": json.loads(unquote_plus(request.form["data"])), - "type": request.form["type"], - } - return render_template("search/details.html", **data) - - -@app.route("/search", methods=["GET", "POST"]) -def search(): - cfg = handle_config() - c = Client(cfg) - results = {} - params = request.args - form = SearchForm() - form.indexer.choices = c.jackett.indexers() - if form.validate_on_submit(): - query = form.query.data - if not (form.torrents.data or form.movies.data or form.tv_shows.data): - form.torrents.data = True - form.movies.data = True - form.tv_shows.data = True - - if form.torrents.data: - results["torrents"] = c.jackett.search( - query, form.indexer.data or form.indexer.choices - ) - if form.movies.data: - results["movies"] = c.radarr.search(query) - if form.tv_shows.data: - results["tv_shows"] = c.sonarr.search(query) - return render_template( - "search/index.html", - # form=form, - search_term=query, - results=results, - client=c, - group_by_tracker=form.group_by_tracker.data, - ) - for name, field in form._fields.items(): - field.default = params.get(name) - form.process() - return render_template( - "search/index.html", - form=form, - results={}, - group_by_tracker=False, - sort_by="Gain", - ) - - -@app.route("/api/add_torrent", methods=["POST"]) -def add_torrent(): - category=request.form.get("category") - cfg = handle_config() - c = Client(cfg) - hashes_1 = set(c.qbittorent.status().get("torrents", {})) - links = "" - count = 0 - for link in request.form.getlist("torrent[]"): - print(link) - links += link + "\n" - count += 1 - c.qbittorent.add(urls=links,category=category) - for _ in range(10): - status=c.qbittorent.status().get("torrents", {}) - hashes_2 = set(status) - if len(hashes_2 - hashes_1) == count: - break - time.sleep(0.5) - else: - flash("Some torrents failed to get added to QBittorrent", "waring") - new_torrents = sorted(hashes_2 - hashes_1) - session["new_torrents"] = {h: status[h] for h in new_torrents} - return redirect(url_for("search")) - - -@app.route("/history") -def history(): - cfg = handle_config() - c = Client(cfg) - sonarr = c.sonarr.history() - radarr = c.radarr.history() - return render_template("history.html", sonarr=sonarr, radarr=radarr) - - -@app.route("/sonarr", defaults={"show_id": None}) -@app.route("/sonarr/") -def sonarr(show_id): - cfg = handle_config() - c = Client(cfg) - if not show_id: - series = c.sonarr.series() - status = c.sonarr.status() - return render_template( - "sonarr/index.html", series=series, status=status, history=history - ) - return render_template("sonarr/details.html") - - -@app.route("/radarr", defaults={"movie_id": None}) -@app.route("/radarr/") -def radarr(movie_id): - cfg = handle_config() - c = Client(cfg) - if movie_id is None: - movies = c.radarr.movies() - status = c.radarr.status() - history = c.radarr.history() - return render_template( - "radarr/index.html", movies=movies, status=status, history=history - ) - return render_template("radarr/details.html") - - -@app.route("/qbittorrent") -def qbittorrent(): - cfg = handle_config() - c = Client(cfg) - qbt = c.qbittorent.status() - sort_by_choices = { - "speed": "Transfer Speed", - "eta": "Time remaining", - "state": "State", - "category": "Category", - } - return render_template( - "qbittorrent/index.html", - qbt=qbt, - status_map=c.qbittorent.status_map, - state_filter=request.args.get("state"), - sort_by=request.args.get("sort","speed"), - sort_by_choices=sort_by_choices, - ) - - -@app.route("/qbittorrent/add_trackers/") -def qbittorent_add_trackers(infohash): - cfg = handle_config() - c = Client(cfg) - c.qbittorent.add_trackers(infohash) - return redirect(url_for("qbittorrent_details",infohash=infohash)) - -@app.route("/qbittorrent/") -def qbittorrent_details(infohash): - cfg = handle_config() - c = Client(cfg) - qbt = c.qbittorent.status(infohash) - return render_template( - "qbittorrent/details.html", qbt=qbt, status_map=c.qbittorent.status_map - ) - - -from wtforms_alchemy import model_form_factory, ModelFieldList -from flask_wtf import FlaskForm -from wtforms.fields import FormField - -BaseModelForm = model_form_factory(FlaskForm) - - -class ModelForm(BaseModelForm): - @classmethod - def get_session(self): - return app.db.session - - -@app.route("/test", methods=["GET", "POST"]) -def test(): - form = TranscodeProfileForm() - if form.validate_on_submit(): - print(form.data) - return render_template("test.html", form=form) - - @app.route("/placeholder") def placeholder(): - return send_file(make_placeholder_image(**request.args), mimetype="image/png") + return send_file( + make_placeholder_image( + **request.args), + mimetype="image/png") -@app.route("/containers", defaults={"container_id": None}) -@app.route("/containers/") -def containers(container_id): - cfg = handle_config() - c = Client(cfg) - if container_id: - container = c.portainer.containers(container_id) - return render_template("containers/details.html", container=container) - containers = c.portainer.containers() - return render_template("containers/index.html", containers=containers) +@app.login_manager.user_loader +def load_user(user_id): + if "jf_user" in session: + if session["jf_user"].id == user_id: + return session["jf_user"] -def get_stats(): - if os.path.isfile("stats.lock"): - return None - try: - if os.path.isfile("stats.json"): - with open("stats.json") as fh: - return json.load(fh) - except: - return None +@app.route("/logout") +@login_required +def logout(): + del session["jf_user"] + logout_user() + return redirect("/login") -@app.route("/transcode", methods=["GET", "POST"]) -def transcode(): - return render_template("transcode/profiles.html") - - -@app.route("/log") -def app_log(): - cfg = handle_config() - c = Client(cfg) - logs = { - "radarr": c.radarr.log(), - "sonarr": c.sonarr.log(), - "qbt": c.qbittorent.log(), - "peers": c.qbittorent.peer_log(), - } - return render_template("logs.html", logs=logs) - - -def ssh_fingerprint(key): - fp=hashlib.md5(base64.b64decode(key)).hexdigest() - return ':'.join(a+b for a,b in zip(fp[::2], fp[1::2])) - -@app.route("/remote") -def remote(): - cfg = handle_config() - c = Client(cfg) - res = c.ssh.get("/data/.ssh/authorized_keys",io.BytesIO()) - res.local.seek(0) - ssh_keys=[] - for key in str(res.local.read(),"utf8").splitlines(): - disabled=False - if key.startswith("#"): - key=key.lstrip("#").lstrip() - disabled=True - try: - load_ssh_public_key(bytes(key,"utf8")) - except: - continue - key_type,key,name=key.split(None,2) - ssh_keys.append({ - 'disabled': disabled, - 'type':key_type, - 'key':key, - 'fingerprint': ssh_fingerprint(key), - 'name': name - }) - key=request.args.get("key") - enabled=request.args.get("enabled") - if not (key is None or enabled is None): - key_file=[] - for ssh_key in ssh_keys: - if ssh_key['key']==key: - ssh_key['disabled']=enabled=="False" - if ssh_key['disabled']: - key_file.append("#{type} {key} {name}".format(**ssh_key)) - else: - key_file.append("{type} {key} {name}".format(**ssh_key)) - buf=io.BytesIO(bytes("\n".join(key_file),"utf8")) - c.ssh.put(buf,"/data/.ssh/authorized_keys",preserve_mode=False) - return redirect(url_for("remote")) - jellyfin_users = c.jellyfin.get_users() - return render_template("remote/index.html",ssh=ssh_keys,jf=jellyfin_users) - -@app.route("/jellyfin/stop") -def stop_stream(): - cfg = handle_config() - c = Client(cfg) - session_id=request.args.get("session") - c.jellyfin.stop_session(session_id) - return redirect(url_for("jellyfin")) - -@app.route("/jellyfin") -def jellyfin(): - cfg = handle_config() - c = Client(cfg) - jellyfin={ - "users":c.jellyfin.get_users(), - "sessions": c.jellyfin.sessions(), - "info" : c.jellyfin.system_info() - } - return render_template("jellyfin/index.html",jellyfin=jellyfin) - -@app.route("/remote/add",methods=["GET","POST"]) -def remote_add(): - from cryptography.hazmat.primitives import serialization - form = AddSSHUser() - cfg = handle_config() - c = Client(cfg) +@app.route("/login", methods=["GET", "POST"]) +def login(): + next_url = request.args.get("next") + if current_user.is_authenticated: + if next_url and not is_safe_url(next_url): + next_url = None + return redirect(next_url or url_for("home.index")) + form = LoginForm() if form.validate_on_submit(): - key=load_ssh_public_key(bytes(form.data['ssh_key'],"utf8")) - rawKeyData = key.public_bytes( - encoding=serialization.Encoding.OpenSSH, - format=serialization.PublicFormat.OpenSSH, - ) - passwd=c.add_user(form.data['name'],str(rawKeyData,"utf8")) - flash(Markup("".join([ - f"

Name: {form.data['name']}

", - f"

PW: {passwd}

", - f"

FP: {ssh_fingerprint(rawKeyData.split()[1])}

" - ]))) - return render_template("remote/add.html",form=form) + try: + jf = JellyfinUser(form.username.data, form.password.data) + except RQ.exceptions.HTTPError as e: + if e.response.status_code != 401: + raise + flash("Invalid credentials", "error") + return render_template("login.html", form=form) + login_user(jf, remember=form.remember.data) + session["jf_user"] = jf + + next_url = request.args.get("next") + if next_url and not is_safe_url(next_url): + return abort(400) + return redirect(next_url or url_for("home.index")) + return render_template("login.html", form=form) -@app.route("/") -def index(): - return render_template("index.html", fluid=True, data=get_stats()) +@app.before_first_request +def before_first_request(): + app.db.create_all() + # stats_collect.loop(60) + + +@with_application_context(app) +def init_app(): + app.db.create_all() if __name__ == "__main__": - stats_collector = threading.Thread( - None, stats_collect.loop, "stats_collector", (10,), {}, daemon=True - ) - stats_collector.start() port = 5000 + if "--init" in sys.argv: + init_app() if "--debug" in sys.argv: - app.run(host="0.0.0.0",port=port, debug=True) + os.environ["FLASK_ENV"] = "development" + app.debug = True + app.run(host="0.0.0.0", port=port, debug=True) else: from gevent.pywsgi import WSGIServer diff --git a/config.cfg b/config.cfg index 657738d..3bbffbe 100644 --- a/config.cfg +++ b/config.cfg @@ -1,4 +1,7 @@ SECRET_KEY = b"DEADBEEF" SQLALCHEMY_DATABASE_URI = "sqlite:///Mediadash.db" SQLALCHEMY_TRACK_MODIFICATIONS = False -MAX_CONTENT_LENGTH = 1 * 1024 * 1024 #1MB \ No newline at end of file +MAX_CONTENT_LENGTH = 1 * 1024 * 1024 #1MB +SESSION_TYPE="sqlalchemy" +SESSION_USE_SIGNER = True +BOOTSTRAP_SERVE_LOCAL = True \ No newline at end of file diff --git a/forms.py b/forms/__init__.py similarity index 73% rename from forms.py rename to forms/__init__.py index 1e67e6e..51fa7ee 100644 --- a/forms.py +++ b/forms/__init__.py @@ -1,42 +1,37 @@ # -*- coding: utf-8 -*- -from flask_wtf import FlaskForm import json -import os + from cryptography.hazmat.primitives.serialization import load_ssh_public_key +from flask_wtf import FlaskForm +from flask_wtf.file import FileAllowed, FileField from wtforms import ( - StringField, - PasswordField, - FieldList, - FloatField, BooleanField, + PasswordField, + # RadioField, SelectField, - SubmitField, - validators, - Field, - FieldList, SelectMultipleField, + StringField, + SubmitField, TextAreaField, - FieldList, - FormField, ) -from flask_wtf.file import FileField, FileAllowed, FileRequired -from wtforms.ext.sqlalchemy.orm import model_form from wtforms.fields.html5 import SearchField -from wtforms.widgets.html5 import NumberInput -from wtforms.widgets import TextInput, CheckboxInput, ListWidget, PasswordInput -from wtforms.validators import ( - ValidationError, - DataRequired, - URL, - ValidationError, - Optional, -) +from wtforms.validators import URL, DataRequired, Optional +from wtforms.widgets import PasswordInput def json_prettify(file): with open(file, "r") as fh: return json.dumps(json.load(fh), indent=4) + +class RequestForm(FlaskForm): + query = SearchField("Query", validators=[DataRequired()]) + search_type = SelectField( + "Type", choices=[("sonarr", "TV Show"), ("radarr", "Movie")] + ) + search = SubmitField("Search") + + class SearchForm(FlaskForm): query = SearchField("Query", validators=[DataRequired()]) tv_shows = BooleanField("TV Shows", default=True) @@ -46,21 +41,30 @@ class SearchForm(FlaskForm): group_by_tracker = BooleanField("Group torrents by tracker") search = SubmitField("Search") + class HiddenPassword(PasswordField): widget = PasswordInput(hide_value=False) + class TranscodeProfileForm(FlaskForm): test = TextAreaField() save = SubmitField("Save") + +class LoginForm(FlaskForm): + username = StringField("Username", validators=[DataRequired()]) + password = HiddenPassword("Password", validators=[DataRequired()]) + remember = BooleanField("Remember me") + login = SubmitField("Login") + + class AddSSHUser(FlaskForm): name = StringField("Name", validators=[DataRequired()]) ssh_key = StringField("Public key", validators=[DataRequired()]) add = SubmitField("Add") - def validate_ssh_key(self,field): - key=load_ssh_public_key(bytes(field.data,"utf8")) - + def validate_ssh_key(self, field): + load_ssh_public_key(bytes(field.data, "utf8")) class ConfigForm(FlaskForm): diff --git a/models/__init__.py b/models/__init__.py index ef86525..f892ffa 100644 --- a/models/__init__.py +++ b/models/__init__.py @@ -1,4 +1,8 @@ -from flask_sqlalchemy import SQLAlchemy -db = SQLAlchemy() +from flask_sqlalchemy import SQLAlchemy # isort:skip + +db = SQLAlchemy() # isort:skip + +from .transcode import TranscodeJob from .stats import Stats -from .transcode import TranscodeJob \ No newline at end of file +from .requests import RequestItem, RequestUser +from flask_sqlalchemy import SQLAlchemy diff --git a/models/requests.py b/models/requests.py new file mode 100644 index 0000000..77907ca --- /dev/null +++ b/models/requests.py @@ -0,0 +1,74 @@ +from datetime import datetime +from uuid import uuid4 + +from sqlalchemy import Float, ForeignKey, Integer, String +from sqlalchemy.orm import relationship + +from api import Client + +from . import db + + +class RequestItem(db.Model): + id = db.Column( + db.String, + default=lambda: str( + uuid4()), + index=True, + unique=True) + item_id = db.Column(db.String, primary_key=True) + added_date = db.Column(db.DateTime) + request_type = db.Column(db.String) + data = db.Column(db.String) + approved = db.Column(db.Boolean, nullable=True) + arr_id = db.Column(db.String, nullable=True) + jellyfin_id = db.Column(db.String, nullable=True) + users = relationship("RequestUser", back_populates="requests") + + @property + def downloads(self): + yield from self._download_state() + + @property + def arr_item(self): + c = Client() + if self.request_type == "sonarr": + return c.sonarr.series(self.arr_id) + if self.request_type == "radarr": + return c.radarr.movies(self.arr_id) + + def _download_state(self): + c = Client() + if self.request_type == "sonarr": + q = c.sonarr.queue() + for item in q: + if item["seriesId"] == str(self.arr_id): + item["download"] = c.qbittorent.poll(self.download_id) + yield item + c = Client() + if self.request_type == "radarr": + q = c.radarr.queue() + for item in q: + if str(item["movieId"]) == str(self.arr_id): + if item["protocol"] == "torrent": + item["download"] = c.qbittorent.poll( + item["downloadId"]) + yield item + + +class RequestUser(db.Model): + item_id = db.Column( + db.String, + db.ForeignKey( + RequestItem.item_id), + primary_key=True) + user_id = db.Column(db.String, primary_key=True) + hidden = db.Column(db.Boolean, default=False) + updated = db.Column(db.Boolean, default=True) + user_name = db.Column(db.String) + requests = relationship("RequestItem", back_populates="users") + + @property + def details(self): + c = Client() + return c.jellyfin.get_users(self.user_id) diff --git a/models/stats.py b/models/stats.py index 2ea0348..1e68fd8 100644 --- a/models/stats.py +++ b/models/stats.py @@ -1,7 +1,9 @@ -from . import db -from sqlalchemy import String, Float, Column, Integer, DateTime from datetime import datetime +from sqlalchemy import Column, DateTime, Float, Integer, String + +from . import db + class Stats(db.Model): id = db.Column(db.Integer, primary_key=True) @@ -9,6 +11,7 @@ class Stats(db.Model): key = db.Column(db.String) value = db.Column(db.Float) + class Diagrams(db.Model): - name = db.Column(db.String,primary_key=True) - data = db.Column(db.String) \ No newline at end of file + name = db.Column(db.String, primary_key=True) + data = db.Column(db.String) diff --git a/models/transcode.py b/models/transcode.py index 39cf917..8dd9a82 100644 --- a/models/transcode.py +++ b/models/transcode.py @@ -1,13 +1,15 @@ -from . import db -from sqlalchemy import String, Float, Column, Integer, DateTime, ForeignKey -from sqlalchemy_utils import JSONType -from sqlalchemy.orm import relationship from datetime import datetime +from sqlalchemy import Column, DateTime, Float, ForeignKey, Integer, String +from sqlalchemy.orm import relationship +from sqlalchemy_utils import JSONType + +from . import db + class TranscodeJob(db.Model): id = db.Column(db.Integer, primary_key=True) created = db.Column(db.DateTime, default=datetime.today) status = db.Column(JSONType, default={}) completed = db.Column(db.DateTime, default=None) - profile = db.Column(db.String, default=None) \ No newline at end of file + profile = db.Column(db.String, default=None) diff --git a/models/users.py b/nav.py similarity index 100% rename from models/users.py rename to nav.py diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..0f57113 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[flake8] +extend_exclude = .history +ingore = E501 \ No newline at end of file diff --git a/static/icon.svg b/static/icon.svg new file mode 100644 index 0000000..6e9fde5 --- /dev/null +++ b/static/icon.svg @@ -0,0 +1,51 @@ + + + + + + + + + diff --git a/static/theme.css b/static/theme.css index 6af52a6..a7a98b4 100644 --- a/static/theme.css +++ b/static/theme.css @@ -127,3 +127,16 @@ ul.tree { .active { display: block; } + +.notification-badge { + float: right; + margin-bottom: -10px; +} + +.darken { + filter: brightness(0.95) +} + +.lighten { + filter: brightness(1.05) +} \ No newline at end of file diff --git a/stats/calendar.json b/stats/calendar.json new file mode 100644 index 0000000..071ab32 --- /dev/null +++ b/stats/calendar.json @@ -0,0 +1 @@ +{"movies":[{"title":"The Witches","originalTitle":"The Witches","alternateTitles":[{"sourceType":"tmdb","movieId":546,"title":"La maldici\u00f3n de las brujas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4654},{"sourceType":"tmdb","movieId":546,"title":"Roald Dahl's, The Witches","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4655},{"sourceType":"tmdb","movieId":546,"title":"Bosorky","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4656}],"secondaryYearSourceId":0,"sortTitle":"witches","sizeOnDisk":25351344854,"status":"inCinemas","overview":"A young boy named Luke and his grandmother go on vacation only to discover their hotel is hosting an international witch convention, where the Grand High Witch is unveiling her master plan to turn all children into mice. Will Luke fall victim to the witches' plot before he can stop them?","inCinemas":"1990-05-25T00:00:00Z","physicalRelease":"2021-10-18T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/mPYBjVkeHakkPGY7WaKyyNU4RWm.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/u8GO1SyKB1QBK7RON7eFhrdy9uX.jpg"}],"website":"","year":1990,"hasFile":true,"youTubeTrailerId":"d_ZyqaN_XNM","studio":"Lorimar Film Entertainment","path":"\/movies\/The Witches (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Witches (1990)","runtime":91,"cleanTitle":"thewitches","imdbId":"tt0100944","tmdbId":10166,"titleSlug":"10166","certification":"PG","genres":["Adventure","Fantasy","Horror"],"tags":[],"added":"2020-02-04T22:47:02Z","ratings":{"votes":901,"value":6.9},"movieFile":{"movieId":546,"relativePath":"The Witches.1990-Remux-1080p.mkv","path":"\/movies\/The Witches (1990)\/The Witches.1990-Remux-1080p.mkv","size":25351344854,"dateAdded":"2020-02-05T04:00:47Z","sceneName":"The.Witches.1990.1080p.BluRay.REMUX.AVC.DTS-HD.MA.2.0-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2015973,"audioChannels":2,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":34885274,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:31:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":652},"id":546},{"title":"Cube 2: Hypercube","originalTitle":"Cube 2: Hypercube","alternateTitles":[{"sourceType":"tmdb","movieId":317,"title":"Cube 2","sourceId":437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":454},{"sourceType":"tmdb","movieId":317,"title":"Cube\u00b2: Hypercube","sourceId":437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1283},{"sourceType":"tmdb","movieId":317,"title":"Hypercube","sourceId":437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1284},{"sourceType":"tmdb","movieId":317,"title":"El Cubo 2 Hipercub","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":3240},{"sourceType":"tmdb","movieId":317,"title":"Cube 2: Hipersze\u015bcian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6124}],"secondaryYearSourceId":0,"sortTitle":"cube 2 hypercube","sizeOnDisk":1927977506,"status":"released","overview":"The sequel to the low budget first film Cube. This time the prisoners find them selves in a more advanced cube environment that they must escape from before they are killed. A science fiction film where space and time have more than one path.","inCinemas":"2002-04-15T00:00:00Z","physicalRelease":"2013-03-07T00:00:00Z","digitalRelease":"2021-06-15T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/bEqqwtwUP7lm56VyeVONhv9JtYu.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/dFH8vmJhOC7i7jzswlM5UFR4zmv.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"2m1aCPB_Ni8","studio":"Lions Gate Films","path":"\/movies\/Cube 2 Hypercube (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Cube 2 Hypercube (2002)","runtime":94,"cleanTitle":"cube2hypercube","imdbId":"tt0285492","tmdbId":437,"titleSlug":"437","certification":"R","genres":["Thriller","Science Fiction","Mystery"],"tags":[],"added":"2018-10-27T21:36:55Z","ratings":{"votes":1028,"value":5.5},"movieFile":{"movieId":317,"relativePath":"Cube 2 Hypercube.2002-Bluray-1080p.mp4","path":"\/movies\/Cube 2 Hypercube (2002)\/Cube 2 Hypercube.2002-Bluray-1080p.mp4","size":1927977506,"dateAdded":"2018-10-27T21:52:16Z","sceneName":"Cube.2.Hypercube.2002.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:34:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":414},"collection":{"name":"Cube Collection","tmdbId":432,"images":[]},"id":317},{"title":"Evangelion: 2.0 You Can (Not) Advance","originalTitle":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248\uff1a\u7834","alternateTitles":[{"sourceType":"tmdb","movieId":88,"title":"Evangelion: 2.22 You Can (Not) Advance","sourceId":22843,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":118},{"sourceType":"tmdb","movieId":88,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1a\u7834","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2350},{"sourceType":"tmdb","movieId":88,"title":"Neon Genesis Evangelion 2.02 You Can (not) Advance","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2352},{"sourceType":"tmdb","movieId":88,"title":"Evangelion Shin Gekijouban: Ha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2353},{"sourceType":"tmdb","movieId":88,"title":"Evangelion Shin Gekij\u014dban: Ha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2354},{"sourceType":"tmdb","movieId":88,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628 : \ud30c(\u7834)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2355},{"sourceType":"tmdb","movieId":88,"title":"Evangelion: 2.0 No Puedes Avanzar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2357},{"sourceType":"tmdb","movieId":88,"title":"Evangelion: 2.22 No Puedes Avanzar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2358},{"sourceType":"tmdb","movieId":88,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 2.0 \u0422\u0438 (\u043d\u0435) \u043f\u0440\u043e\u0439\u0434\u0435\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6106}],"secondaryYearSourceId":0,"sortTitle":"evangelion 2 0 you can not advance","sizeOnDisk":2295774942,"status":"released","overview":"Under constant attack by monstrous creatures called Angels that seek to eradicate humankind, U.N. Special Agency NERV introduces two new EVA pilots to help defend the city of Tokyo-3: the mysterious Makinami Mari Illustrous and the intense Asuka Langley Shikinami. Meanwhile, Gendo Ikari and SEELE proceed with a secret project that involves both Rei and Shinji.","inCinemas":"2009-06-26T00:00:00Z","physicalRelease":"2010-11-23T00:00:00Z","digitalRelease":"2021-08-12T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/7VLYN2CfJpB6PrcuzDKKqdGSUi6.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/y7L6LQKiZPlPZYSXqFkxqfB1Te0.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/2_0\/index.html","year":2009,"hasFile":true,"youTubeTrailerId":"CUCOMe2qx0k","studio":"khara","path":"\/movies\/Evangelion - 2.0 You Can (Not) Advance (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Evangelion - 2.0 You Can (Not) Advance (2009)","runtime":112,"cleanTitle":"evangelion20youcannotadvance","imdbId":"tt0860906","tmdbId":22843,"titleSlug":"22843","certification":"NR","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":466,"value":7.9},"movieFile":{"movieId":88,"relativePath":"Evangelion 2.0 You Can (Not) Advance.2009-Bluray-1080p.mp4","path":"\/movies\/Evangelion - 2.0 You Can (Not) Advance (2009)\/Evangelion 2.0 You Can (Not) Advance.2009-Bluray-1080p.mp4","size":2295774942,"dateAdded":"2018-10-12T17:02:14Z","sceneName":"Evangelion.2.22.You.Can.Not.Advance.2009.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:52:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":234},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":88},{"title":"Evangelion: 3.0 You Can (Not) Redo","originalTitle":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248:Q","alternateTitles":[{"sourceType":"tmdb","movieId":220,"title":"Evangelion: 3.33 You Can (Not) Redo","sourceId":75629,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":281},{"sourceType":"tmdb","movieId":220,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1aQ","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2103},{"sourceType":"tmdb","movieId":220,"title":"\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1aQ","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2104},{"sourceType":"tmdb","movieId":220,"title":"Neon Genesis Evangelion 3.33 - You Can (Not) Redo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2105},{"sourceType":"tmdb","movieId":220,"title":"Evangelion Shin Gekijouban: Q","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2106},{"sourceType":"tmdb","movieId":220,"title":"Evangelion Shin Gekij\u014d-ban Q Quickening","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2107},{"sourceType":"tmdb","movieId":220,"title":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248\uff1aQ","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2108},{"sourceType":"tmdb","movieId":220,"title":"Evangelion 3.0 Q","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2109},{"sourceType":"tmdb","movieId":220,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628: Q","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2110},{"sourceType":"tmdb","movieId":220,"title":"Evangelion: 3.0 (No) Lo Puedes Reahacer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2111},{"sourceType":"tmdb","movieId":220,"title":"Evangelion: 3.33 (No) Lo Puedes Reahacer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2112},{"sourceType":"tmdb","movieId":220,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d 3.33: \u0422\u044b (\u043d\u0435) \u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0448\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2113},{"sourceType":"tmdb","movieId":220,"title":"Evangelion:3.333 You Can (Not) Redo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5577},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.33 \u0422\u0438 (\u043d\u0435) \u0432\u0438\u043f\u0440\u0430\u0432\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6107},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.0 \u0422\u0438 (\u043d\u0435) \u0432\u0438\u043f\u0440\u0430\u0432\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6108},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.33 \u0422\u0438 (\u043d\u0435) \u0437\u043c\u0456\u043d\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6109},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.0 \u0422\u0438 (\u043d\u0435) \u0437\u043c\u0456\u043d\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6110}],"secondaryYear":2013,"secondaryYearSourceId":0,"sortTitle":"evangelion 3 0 you can not redo","sizeOnDisk":1985329942,"status":"released","overview":"Fourteen years after Third Impact, Shinji Ikari awakens to a world he does not remember. He hasn't aged. Much of Earth is laid in ruins, NERV has been dismantled, and people who he once protected have turned against him. Befriending the enigmatic Kaworu Nagisa, Shinji continues the fight against the angels and realizes the fighting is far from over, even when it could be against his former allies. The characters' struggles continue amidst the battles against the angels and each other, spiraling down to what could inevitably be the end of the world.","inCinemas":"2012-11-17T00:00:00Z","physicalRelease":"2013-08-01T00:00:00Z","digitalRelease":"2021-08-12T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/7yvJ5hP9eHpdiGH0FuxmT7gkBCG.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/c5WUWudgykIpxb3TchaRnAcsu5y.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/3_0\/index.html","year":2012,"hasFile":true,"youTubeTrailerId":"pwLw2hNNz2M","studio":"khara","path":"\/movies\/Evangelion - 3.0 You Can (Not) Redo (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Evangelion - 3.0 You Can (Not) Redo (2012)","runtime":96,"cleanTitle":"evangelion30youcannotredo","imdbId":"tt0860907","tmdbId":75629,"titleSlug":"75629","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T16:22:13Z","ratings":{"votes":389,"value":7.6},"movieFile":{"movieId":220,"relativePath":"Evangelion 3.0 You Can (Not) Redo.2012-Bluray-1080p.mp4","path":"\/movies\/Evangelion - 3.0 You Can (Not) Redo (2012)\/Evangelion 3.0 You Can (Not) Redo.2012-Bluray-1080p.mp4","size":1985329942,"dateAdded":"2018-10-12T17:36:02Z","sceneName":"Evangelion.3.33.You.Can.Not.Redo.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:36:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":239},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":220},{"title":"Evangelion: 3.0+1.0 Thrice Upon a Time","originalTitle":"\u30b7\u30f3\u30fb\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248:||","alternateTitles":[{"sourceType":"tmdb","movieId":234,"title":"Rebuild of Evangelion: Final","sourceId":283566,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":302},{"sourceType":"tmdb","movieId":234,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628 \uadf9\uc7a5\ud310:\u2225","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1354},{"sourceType":"tmdb","movieId":234,"title":"Evangelion: 3.0+1.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1355},{"sourceType":"tmdb","movieId":234,"title":"\u30b7\u30f3\u30fb\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248\ud834\udd07","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5323},{"sourceType":"tmdb","movieId":234,"title":"Shin Evangelion Gekijou-ban: II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5965},{"sourceType":"tmdb","movieId":234,"title":"Evangelion 3.0+1.01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6064},{"sourceType":"tmdb","movieId":234,"title":"Evangelion: 3.0+1.01 Thrice Upon a Time","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6091},{"sourceType":"tmdb","movieId":234,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628 3.0+1.01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6182},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u00b7\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248\uff1a\u7ec8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6184},{"sourceType":"tmdb","movieId":234,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d 3.0+1.01: \u041a\u0430\u043a-\u0442\u043e \u0440\u0430\u0437","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6185},{"sourceType":"tmdb","movieId":234,"title":"Evangelion : Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6189},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u00b7\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248:\u2502\u258c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6190},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u00b7\u798f\u97f3\u6230\u58eb\u5287\u5834\u7248\uff1a\u7d42","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6191},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u30fb\u798f\u97f3\u6230\u58eb\u5287\u5834\u7248:||","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6192},{"sourceType":"tmdb","movieId":234,"title":"Shin Evangelion Gekij\u014d-ban: ||","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6196},{"sourceType":"tmdb","movieId":234,"title":"Rebuild of Evangelion 3.0+1.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6221},{"sourceType":"tmdb","movieId":234,"title":"Rebuild of Evangelion 3.0+1.0: Thrice Upon a Time","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6222}],"secondaryYearSourceId":0,"sortTitle":"evangelion 3 01 0 thrice upon time","sizeOnDisk":13679182731,"status":"released","overview":"In the aftermath of the Fourth Impact, stranded without their Evangelions, Shinji, Asuka, and Rei find refuge in one of the rare pockets of humanity that still exist on the ruined planet Earth. There, each of them live a life far different from their days as an Evangelion pilot. However, the danger to the world is far from over. A new impact is looming on the horizon\u2014one that will prove to be the true end of Evangelion.","inCinemas":"2021-03-08T00:00:00Z","digitalRelease":"2021-08-13T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/jDwZavHo99JtGsCyRzp4epeeBHx.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/1EAxNqdkVnp48a7NUuNBHGflowM.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/final.html","year":2021,"hasFile":true,"youTubeTrailerId":"GZfuWMDEJpw","studio":"khara","path":"\/movies\/Evangelion 3.0+1.0 (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Evangelion 3.0+1.0 (2020)","runtime":155,"cleanTitle":"evangelion3010thriceupontime","imdbId":"tt2458948","tmdbId":283566,"titleSlug":"283566","genres":["Animation","Action","Drama"],"tags":[],"added":"2018-10-12T21:25:22Z","ratings":{"votes":276,"value":8.7},"movieFile":{"movieId":234,"relativePath":"Evangelion 3.0+1.0 Thrice Upon a Time.2021-WEBDL-1080p.mkv","path":"\/movies\/Evangelion 3.0+1.0 (2020)\/Evangelion 3.0+1.0 Thrice Upon a Time.2021-WEBDL-1080p.mkv","size":13679182731,"dateAdded":"2021-08-12T18:38:55Z","sceneName":"Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ German \/ English \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Hindi \/ \/ Korean","audioStreamCount":11,"videoBitDepth":8,"videoBitrate":4660006,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x816","runTime":"2:35:46","scanType":"Progressive","subtitles":"English \/ Malay \/ Danish \/ German \/ Spanish \/ Spanish \/ fil \/ French \/ Indonesian \/ Italian \/ Dutch \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Finnish \/ Swedish \/ Turkish \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Thai \/ Chinese \/ "},"originalFilePath":"Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP.mkv","qualityCutoffNotMet":true,"languages":[{"id":8,"name":"Japanese"},{"id":4,"name":"German"},{"id":1,"name":"English"},{"id":3,"name":"Spanish"},{"id":2,"name":"French"},{"id":5,"name":"Italian"},{"id":18,"name":"Portuguese"},{"id":26,"name":"Hindi"},{"id":21,"name":"Korean"}],"releaseGroup":"KRP","edition":"","id":732},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":234},{"title":"Space Jam: A New Legacy","originalTitle":"Space Jam: A New Legacy","alternateTitles":[{"sourceType":"tmdb","movieId":617,"title":"Space Jam 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6127},{"sourceType":"tmdb","movieId":617,"title":"\u592a\u7a7a\u4e5f\u5165\u6a3d\uff1a\u6539\u671d\u63db\u4ee3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6128},{"sourceType":"tmdb","movieId":617,"title":"Kosmiczny mecz: Nowa era","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6129},{"sourceType":"tmdb","movieId":617,"title":"\u0421\u0432\u0435\u043c\u0438\u0440\u0441\u043a\u0438 \u0431\u0430\u0441\u043a\u0435\u0442: \u041d\u043e\u0432\u043e \u043d\u0430\u0441\u043b\u0435\u0452\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6130},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Nuevas leyendas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6131},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Um Novo Legado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6132},{"sourceType":"tmdb","movieId":617,"title":"Basket spatial : Une nouvelle \u00e8re","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6133},{"sourceType":"tmdb","movieId":617,"title":"Space Jam : Nouvelle \u00e8re","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6134},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: New Legends","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":6135},{"sourceType":"tmdb","movieId":617,"title":"\u30b9\u30da\u30fc\u30b9\u30fb\u30d7\u30ec\u30a4\u30e4\u30fc\u30ba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6136},{"sourceType":"tmdb","movieId":617,"title":"\uc2a4\ud398\uc774\uc2a4 \uc7bc: \uc0c8\ub85c\uc6b4 \uc2dc\ub300","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6137},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Una nueva era","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6138},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Uma Nova Era","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6139},{"sourceType":"tmdb","movieId":617,"title":"\u602a\u7269\u5947\u5175 \u5168\u65b0\u4e16\u4ee3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6141},{"sourceType":"tmdb","movieId":617,"title":"\u0633\u0628\u064a\u0633 \u062c\u0627\u0645: \u0625\u0631\u062b \u062c\u062f\u064a\u062f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6142},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Yeni Efsane","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":6143},{"sourceType":"tmdb","movieId":617,"title":"\u05e1\u05e4\u05d9\u05d9\u05e1 \u05d2'\u05d0\u05dd: \u05d0\u05d2\u05d3\u05d4 \u05d7\u05d3\u05e9\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6144},{"sourceType":"tmdb","movieId":617,"title":"\u0647\u0631\u062c\u200c\u0648\u0645\u0631\u062c \u0641\u0636\u0627\u06cc\u06cc \u06f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6145},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Uusi legenda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":6146},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: O nou\u0103 er\u0103","sourceId":0,"votes":0,"voteCount":0,"language":{"id":27,"name":"Romanian"},"id":6147},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: \u00daj kezdet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":6148},{"sourceType":"tmdb","movieId":617,"title":"\u7a7a\u4e2d\u5927\u704c\u7bee2\uff1a\u65b0\u4f20\u5947","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6162},{"sourceType":"tmdb","movieId":617,"title":"Space Jam 2: A New Legacy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6197}],"secondaryYearSourceId":0,"sortTitle":"space jam new legacy","sizeOnDisk":7799415218,"status":"released","overview":"When LeBron and his young son Dom are trapped in a digital space by a rogue A.I., LeBron must get them home safe by leading Bugs, Lola Bunny and the whole gang of notoriously undisciplined Looney Tunes to victory over the A.I.'s digitized champions on the court. It's Tunes versus Goons in the highest-stakes challenge of his life.","inCinemas":"2021-07-15T00:00:00Z","physicalRelease":"2021-11-04T00:00:00Z","digitalRelease":"2021-07-15T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/5bFK5d3mVTAvBCXi5NPWH0tYjKl.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/8s4h9friP6Ci3adRGahHARVd76E.jpg"}],"website":"https:\/\/www.spacejam.com","year":2021,"hasFile":true,"youTubeTrailerId":"RCsEKvz2mxs","studio":"Warner Animation Group","path":"\/movies\/Space Jam A New Legacy (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Space Jam A New Legacy (2021)","runtime":115,"cleanTitle":"spacejamnewlegacy","imdbId":"tt3554046","tmdbId":379686,"titleSlug":"379686","certification":"PG","genres":["Animation","Comedy","Family"],"tags":[],"added":"2021-07-18T19:16:14Z","ratings":{"votes":2048,"value":7.4},"movieFile":{"movieId":617,"relativePath":"Space Jam A New Legacy.2021-WEBDL-1080p.mkv","path":"\/movies\/Space Jam A New Legacy (2021)\/Space Jam A New Legacy.2021-WEBDL-1080p.mkv","size":7799415218,"dateAdded":"2021-07-18T19:35:46Z","sceneName":"Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"JOC","audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:55:28","scanType":"Progressive","subtitles":"English \/ English"},"originalFilePath":"Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM\/Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM.mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CM","edition":"","id":729},"collection":{"name":"Space Jam Collection","tmdbId":722961,"images":[]},"id":617},{"title":"Bo Burnham: Inside","originalTitle":"Bo Burnham: Inside","alternateTitles":[{"sourceType":"tmdb","movieId":620,"title":"Inside","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6212},{"sourceType":"tmdb","movieId":620,"title":"\u05d1\u05d5 \u05d1\u05e8\u05e0\u05d4\u05d0\u05dd: \u05d1\u05e4\u05e0\u05d9\u05dd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6213},{"sourceType":"tmdb","movieId":620,"title":"\u0e42\u0e1a \u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e19\u0e41\u0e2e\u0e21: \u0e2b\u0e31\u0e27\u0e40\u0e23\u0e32\u0e30\u0e02\u0e49\u0e32\u0e07\u0e43\u0e19","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":6214}],"secondaryYearSourceId":0,"sortTitle":"bo burnham inside","sizeOnDisk":1734422016,"status":"released","overview":"Stuck in COVID-19 lockdown, US comedian and musician Bo Burnham attempts to stay sane and happy by writing, shooting and performing a one-man comedy special.","inCinemas":"2021-07-22T00:00:00Z","digitalRelease":"2021-05-30T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/ku1UvTWYvhFQbSesOD6zteY7bXT.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/9sfVyE3sP2dkCwDyV7UlYP5TAAR.jpg"}],"website":"https:\/\/www.netflix.com\/title\/81289483","year":2021,"hasFile":true,"youTubeTrailerId":"","studio":"Attic Bedroom","path":"\/movies\/Bo Burnham Inside (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Bo Burnham Inside (2021)","runtime":87,"cleanTitle":"boburnhaminside","imdbId":"tt14544192","tmdbId":823754,"titleSlug":"823754","certification":"R","genres":["Comedy"],"tags":[],"added":"2021-08-21T00:38:51Z","ratings":{"votes":75,"value":8.4},"movieFile":{"movieId":620,"relativePath":"Bo Burnham Inside.2021-WEBRip-1080p.mp4","path":"\/movies\/Bo Burnham Inside (2021)\/Bo Burnham Inside.2021-WEBRip-1080p.mp4","size":1734422016,"dateAdded":"2021-08-21T00:42:17Z","sceneName":"Bo.Burnham.Inside.2021.1080p.WEBRip.x264.AAC5.1-[YTS.MX]","indexerFlags":1,"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webrip","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1072","runTime":"1:27:38","scanType":"Progressive","subtitles":""},"originalFilePath":"Bo Burnham Inside (2021) [1080p] [WEBRip] [5.1] [YTS.MX]\/Bo.Burnham.Inside.2021.1080p.WEBRip.x264.AAC5.1-[YTS.MX].mp4","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"YTS.MX","edition":"","id":733},"id":620},{"title":"Dune","originalTitle":"Dune","alternateTitles":[{"sourceType":"tmdb","movieId":586,"title":"Dune \u2013 Part One","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6215}],"secondaryYearSourceId":0,"sortTitle":"dune","sizeOnDisk":0,"status":"announced","overview":"Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.","inCinemas":"2021-09-15T00:00:00Z","digitalRelease":"2021-10-22T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/s1FhMAr91WL8D5DeHOcuBELtiHJ.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/wP0X5iQrlt7ojPmWouYPfy8AQtx.jpg"}],"website":"https:\/\/www.dunemovie.com\/","year":2021,"hasFile":false,"youTubeTrailerId":"8g18jFHCLXk","studio":"Warner Bros. Pictures","path":"\/movies\/Dune (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":false,"folderName":"\/movies\/Dune (2020)","runtime":155,"cleanTitle":"dune","imdbId":"tt1160419","tmdbId":438631,"titleSlug":"438631","certification":"PG-13","genres":["Adventure","Drama","Science Fiction"],"tags":[],"added":"2020-08-12T02:07:14Z","ratings":{"votes":0,"value":0},"collection":{"name":"Dune Collection","tmdbId":726871,"images":[]},"id":586},{"title":"No Time to Die","originalTitle":"No Time to Die","alternateTitles":[{"sourceType":"tmdb","movieId":537,"title":"B25","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1314},{"sourceType":"tmdb","movieId":537,"title":"Bond 25","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1315},{"sourceType":"tmdb","movieId":537,"title":"James Bond: No Time to DIe","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1316},{"sourceType":"tmdb","movieId":537,"title":"NTTD","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1317},{"sourceType":"tmdb","movieId":537,"title":"Mourir Peut Attendre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1357},{"sourceType":"tmdb","movieId":537,"title":"Nie czas umiera\u0107","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":1358},{"sourceType":"tmdb","movieId":537,"title":"007: \u041d\u0435 \u0447\u0430\u0441 \u043f\u043e\u043c\u0438\u0440\u0430\u0442\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5891},{"sourceType":"tmdb","movieId":537,"title":"007: \u041d\u0435 \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0438\u0440\u0430\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5892}],"secondaryYearSourceId":0,"sortTitle":"no time to die","sizeOnDisk":0,"status":"announced","overview":"Bond has left active service and is enjoying a tranquil life in Jamaica. His peace is short-lived when his old friend Felix Leiter from the CIA turns up asking for help. The mission to rescue a kidnapped scientist turns out to be far more treacherous than expected, leading Bond onto the trail of a mysterious villain armed with dangerous new technology.","inCinemas":"2021-09-30T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/mRBHuUJULS9V6KaYIHPeMzD4AEk.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/kcvKEvTWqIGMjpVJdbDVRHdIt4C.jpg"}],"website":"https:\/\/www.007.com\/no-time-to-die\/","year":2021,"hasFile":false,"youTubeTrailerId":"N_gD9-Oa0fg","studio":"Danjaq","path":"\/movies\/No Time To Die (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/No Time To Die (2020)","runtime":163,"cleanTitle":"notimetodie","imdbId":"tt2382320","tmdbId":370172,"titleSlug":"370172","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-12-04T14:58:17Z","ratings":{"votes":0,"value":0},"collection":{"name":"James Bond Collection","tmdbId":645,"images":[]},"id":537},{"title":"Ghostbusters: Afterlife","originalTitle":"Ghostbusters: Afterlife","alternateTitles":[{"sourceType":"tmdb","movieId":605,"title":"Bust City","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5704},{"sourceType":"tmdb","movieId":605,"title":"Rust City","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5705},{"sourceType":"tmdb","movieId":605,"title":"Ghostbusters 2020","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5706},{"sourceType":"tmdb","movieId":605,"title":"\u8d85\u80fd\u6562\u6b7b\u961f 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6234}],"secondaryYearSourceId":0,"sortTitle":"ghostbusters afterlife","sizeOnDisk":0,"status":"announced","overview":"When a single mom and her two kids arrive in a small town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind.","inCinemas":"2021-11-11T00:00:00Z","images":[{"coverType":"poster","url":"https:\/\/image.tmdb.org\/t\/p\/original\/fMyCgXLYehlbiQPlcu7nG98GFZU.jpg"},{"coverType":"fanart","url":"https:\/\/image.tmdb.org\/t\/p\/original\/evSN8IybGaPZrrkgNa1ID3gcch8.jpg"}],"website":"https:\/\/ghostbusters.com\/","year":2021,"hasFile":false,"youTubeTrailerId":"HR-WxNVLZhQ","studio":"The Montecito Picture Company","path":"\/movies\/Ghostbusters Afterlife (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ghostbusters Afterlife (2021)","runtime":0,"cleanTitle":"ghostbustersafterlife","imdbId":"tt4513678","tmdbId":425909,"titleSlug":"425909","certification":"PG-13","genres":["Comedy","Fantasy"],"tags":[],"added":"2021-03-19T19:51:55Z","ratings":{"votes":0,"value":0},"collection":{"name":"Ghostbusters Collection","tmdbId":2980,"images":[]},"id":605}],"episodes":[{"episode":{"seriesId":215,"episodeFileId":18832,"seasonNumber":2,"episodeNumber":10,"title":"Yesterday's Lie","airDate":"2021-08-14","airDateUtc":"2021-08-14T14:00:00Z","overview":"Luz thinks she's found a way back home, but she may not be ready for what awaits on the other side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":21556,"hasAired":true},"details":[],"series":{"title":"The Owl House","alternateTitles":[{"title":"Willkommen im Haus der Eulen","seasonNumber":-1}],"sortTitle":"owl house","status":"continuing","ended":false,"overview":"An animated fantasy-comedy series that follows Luz, a self-assured teenage girl who accidentally stumbles upon a portal to a magical world where she befriends a rebellious witch, Eda, and an adorably tiny warrior, King. Despite not having magical abilities, Luz pursues her dream of becoming a witch by serving as Eda's apprentice at the Owl House and ultimately finds a new family in an unlikely setting.","previousAiring":"2021-08-14T14:00:00Z","network":"Disney Channel","airTime":"10:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/215\/banner.jpg?lastWrite=637148183783391550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/banners\/62050528.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/215\/poster.jpg?lastWrite=637307781670563240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/posters\/62003549.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/215\/fanart.jpg?lastWrite=637297377276225640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/backgrounds\/5f041c4896063.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-08-29T14:00:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":14390005338,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-08-14T14:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":21,"sizeOnDisk":7970763080,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/The Owl House","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":349578,"tvRageId":0,"tvMazeId":35073,"firstAired":"2020-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"theowlhouse","imdbId":"tt8050756","titleSlug":"the-owl-house","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Fantasy"],"tags":[],"added":"2020-01-11T03:18:24.888281Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":48,"sizeOnDisk":22360768418,"percentOfEpisodes":100.0},"id":215}},{"episode":{"seriesId":264,"episodeFileId":18878,"seasonNumber":1,"episodeNumber":61,"title":"A Place to Return To","airDate":"2021-08-15","airDateUtc":"2021-08-15T00:00:00Z","overview":"Takeru and Patamon help Eldoradimon who was struggling to climb up a mountain. The surrounding Digimon are not supportive and only watch hopelessly. However, Takeru won\u2019t give up and attempts to send Eldoradimon home no matter what.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":20832,"hasAired":true},"details":[],"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264}},{"episode":{"seriesId":258,"episodeFileId":18837,"seasonNumber":2,"episodeNumber":10,"title":"The Flood","airDate":"2021-08-15","airDateUtc":"2021-08-16T03:30:00Z","overview":"Bertie helps Tuca with some personal ghosts when the city is under siege.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21662,"hasAired":true},"details":[],"series":{"title":"Tuca & Bertie","alternateTitles":[],"sortTitle":"tuca bertie","status":"continuing","ended":false,"overview":"Two bird women -- a carefree toucan and an anxious songbird -- live in the same apartment building and share their lives in this animated comedy.","previousAiring":"2021-08-16T03:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/258\/banner.jpg?lastWrite=637610277577974670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361005\/banners\/60e1d357e6bc7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/258\/poster.jpg?lastWrite=637367304744175530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5cb964fc39f17.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/258\/fanart.jpg?lastWrite=637590341472157760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361005\/backgrounds\/60c250a7c99e6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-04T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4089177108,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-08-16T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7187094164,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Tuca & Bertie","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":361005,"tvRageId":0,"tvMazeId":35086,"firstAired":"2019-05-03T00:00:00Z","seriesType":"standard","cleanTitle":"tucabertie","imdbId":"tt8036272","titleSlug":"tuca-and-bertie","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2020-09-26T15:21:13.345386Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":11276271272,"percentOfEpisodes":100.0},"id":258}},{"episode":{"seriesId":264,"episodeFileId":18877,"seasonNumber":1,"episodeNumber":62,"title":"The Tears of Shakkoumon","airDate":"2021-08-22","airDateUtc":"2021-08-22T00:00:00Z","overview":"Sora and Piyomon reunite with Neamon, Junkmon and the other Digimon. Together, they revive the wastelands to create a Digimon town. However, the guardian deity, Shakkoumon awakens from a long slumber and starts attacking them","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":20833,"hasAired":true},"details":[],"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264}},{"episode":{"seriesId":264,"episodeFileId":18898,"seasonNumber":1,"episodeNumber":63,"title":"The Crest of Courage","airDate":"2021-08-29","airDateUtc":"2021-08-29T00:00:00Z","overview":"After aimlessly following the arrow on the Digivice, Taichi and Agumon reach a castle. There, Taichi is separated from Agumon and is thrown into an unfamiliar world by a mysterious Digimon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":20834,"hasAired":true},"details":[],"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264}},{"episode":{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"The End of the Road","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"The Professor faces off with Sierra as Tamayo raises the stakes of the negotiations by calling the army. In the past, Berlin meets with a family member.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21572,"hasAired":true},"details":[],"series":{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283}},{"episode":{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":2,"title":"Do You Believe in Reincarnation?","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"Arturo seizes an opportunity to fight back while escalating a personal vengeance. Lisbon makes a crucial discovery.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21573,"hasAired":true},"details":[],"series":{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283}},{"episode":{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":3,"title":"Welcome to the Spectacle of Life","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"A betrayal and an emergency both catch Sierra by surprise. Palermo rallies the troops as the army closes in on the gang.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21574,"hasAired":true},"details":[],"series":{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283}},{"episode":{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":4,"title":"Your Place in Heaven","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"With Helsinki\u2019s life in danger, the thieves mount a covert counter attack. Years earlier, Berlin and his son conduct their first heist together.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21575,"hasAired":true},"details":[],"series":{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283}},{"episode":{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":5,"title":"Live Many Lives","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"While surrounded by gunfire and trapped in the kitchen, Tokyo reminisces about her first love and her initial encounter with the Professor.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21576,"hasAired":true},"details":[],"series":{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283}},{"episode":{"seriesId":264,"episodeFileId":18907,"seasonNumber":1,"episodeNumber":64,"title":"The Angels' Determination","airDate":"2021-09-05","airDateUtc":"2021-09-05T00:00:00Z","overview":"The Chosen Ones have each attained their crests and aim to reunite now. However, they receive an emergency call from Wisemon and Gerbemon that the laboratory is under attack. The Chosen Ones fight to protect the lab from a swarm of Digimon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":20835,"hasAired":true},"details":[],"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264}},{"episode":{"seriesId":2,"episodeFileId":18910,"seasonNumber":5,"episodeNumber":9,"title":"Forgetting Sarick Mortshall","airDate":"2021-09-05","airDateUtc":"2021-09-06T03:00:00Z","overview":"Rick gets new sidekicks, while Morty makes a new friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":21319,"hasAired":true},"details":[],"series":{"title":"Rick and Morty","alternateTitles":[{"title":"Rick et Morty","seasonNumber":-1},{"title":"Rick y Morty","seasonNumber":-1},{"title":"Rick \u00e9s Morty","seasonNumber":-1},{"title":"Rick es Morty","seasonNumber":-1}],"sortTitle":"rick morty","status":"continuing","ended":false,"overview":"Follows the misadventures of an alcoholic scientist Rick and his overly nervous grandson Morty, who split their time between domestic family life and intergalactic travel. Often finding themselves in a heap of trouble that more often than not is created through their own actions.","previousAiring":"2021-09-06T03:22:00Z","network":"Adult Swim","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/2\/banner.jpg?lastWrite=637103155212452720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/275274-g8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/2\/poster.jpg?lastWrite=637100124176148470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/275274-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/2\/fanart.jpg?lastWrite=637100124171428560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/275274-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":105,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-04-15T03:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":12905451040,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-10-05T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11639903508,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-10-02T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11647233435,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2020-06-01T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":21718960322,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2021-09-06T03:22:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9122501592,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/Rick and Morty","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":275274,"tvRageId":33381,"tvMazeId":216,"firstAired":"2013-12-02T00:00:00Z","seriesType":"standard","cleanTitle":"rickmorty","imdbId":"tt2861424","titleSlug":"rick-and-morty","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2017-12-02T19:22:17.1688676Z","ratings":{"votes":3660,"value":9.3},"statistics":{"seasonCount":5,"episodeFileCount":51,"episodeCount":51,"totalEpisodeCount":156,"sizeOnDisk":67034049897,"percentOfEpisodes":100.0},"id":2}},{"episode":{"seriesId":2,"episodeFileId":18911,"seasonNumber":5,"episodeNumber":10,"title":"Rickmurai Jack","airDate":"2021-09-05","airDateUtc":"2021-09-06T03:22:00Z","overview":"Rick is living his best anime life, making new friends and taking down new enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":21320,"hasAired":true},"details":[],"series":{"title":"Rick and Morty","alternateTitles":[{"title":"Rick et Morty","seasonNumber":-1},{"title":"Rick y Morty","seasonNumber":-1},{"title":"Rick \u00e9s Morty","seasonNumber":-1},{"title":"Rick es Morty","seasonNumber":-1}],"sortTitle":"rick morty","status":"continuing","ended":false,"overview":"Follows the misadventures of an alcoholic scientist Rick and his overly nervous grandson Morty, who split their time between domestic family life and intergalactic travel. Often finding themselves in a heap of trouble that more often than not is created through their own actions.","previousAiring":"2021-09-06T03:22:00Z","network":"Adult Swim","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/2\/banner.jpg?lastWrite=637103155212452720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/275274-g8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/2\/poster.jpg?lastWrite=637100124176148470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/275274-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/2\/fanart.jpg?lastWrite=637100124171428560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/275274-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":105,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-04-15T03:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":12905451040,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-10-05T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11639903508,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-10-02T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11647233435,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2020-06-01T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":21718960322,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2021-09-06T03:22:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9122501592,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/Rick and Morty","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":275274,"tvRageId":33381,"tvMazeId":216,"firstAired":"2013-12-02T00:00:00Z","seriesType":"standard","cleanTitle":"rickmorty","imdbId":"tt2861424","titleSlug":"rick-and-morty","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2017-12-02T19:22:17.1688676Z","ratings":{"votes":3660,"value":9.3},"statistics":{"seasonCount":5,"episodeFileCount":51,"episodeCount":51,"totalEpisodeCount":156,"sizeOnDisk":67034049897,"percentOfEpisodes":100.0},"id":2}},{"episode":{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":65,"title":"The Great Catastrophe, Negamon","airDate":"2021-09-12","airDateUtc":"2021-09-12T00:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":20836,"hasAired":false},"details":[],"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264}},{"episode":{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":66,"title":"TBA","airDate":"2021-09-19","airDateUtc":"2021-09-19T00:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":20837,"hasAired":false},"details":[],"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264}},{"episode":{"seriesId":45,"episodeFileId":0,"seasonNumber":12,"episodeNumber":1,"title":"TBA","airDate":"2021-09-26","airDateUtc":"2021-09-27T01:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21666,"hasAired":false},"details":[],"series":{"title":"Bob's Burgers","alternateTitles":[{"title":"Bob Burger Falodaja","seasonNumber":-1},{"title":"Bobs Burger","seasonNumber":-1}],"sortTitle":"bobs burgers","status":"continuing","ended":false,"overview":"Bob's Burgers follows a third-generation restaurateur, Bob, as he runs Bob's Burgers with the help of his wife and their three kids. Bob and his quirky family have big ideas about burgers, but fall short on service and sophistication. Despite the greasy counters, lousy location and a dearth of customers, Bob and his family are determined to make Bob's Burgers \"grand re-re-re-opening\" a success.","nextAiring":"2021-09-27T01:00:00Z","previousAiring":"2021-05-24T01:00:00Z","network":"FOX","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/45\/banner.jpg?lastWrite=637100123642678370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/194031-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/45\/poster.jpg?lastWrite=637103587741165020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/194031-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/45\/fanart.jpg?lastWrite=637100123640198420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/194031-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-05-23T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9870913310,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-05-21T01:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":7708557241,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2013-05-13T01:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":20273225498,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2014-05-19T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":4008882980,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2015-05-18T01:22:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":17966406688,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2016-05-23T01:22:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":16129777412,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2017-06-12T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":10809458788,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2018-05-21T01:22:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":10552605207,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2019-05-13T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12571202502,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2020-05-18T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12176428178,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2021-05-24T01:00:00Z","episodeFileCount":21,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12074237956,"percentOfEpisodes":95.45454545454545}},{"seasonNumber":12,"monitored":true,"statistics":{"nextAiring":"2021-09-27T01:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2011,"path":"\/tv\/Bob's Burgers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":194031,"tvRageId":24607,"tvMazeId":107,"firstAired":"2011-01-09T00:00:00Z","seriesType":"standard","cleanTitle":"bobsburgers","imdbId":"tt1561755","titleSlug":"bobs-burgers","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2017-12-02T19:56:00.3837665Z","ratings":{"votes":2616,"value":8.4},"statistics":{"seasonCount":12,"episodeFileCount":215,"episodeCount":216,"totalEpisodeCount":222,"sizeOnDisk":134141695760,"percentOfEpisodes":99.53703703703704},"id":45}},{"episode":{"seriesId":152,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"TBA","airDate":"2021-10-02","airDateUtc":"2021-10-03T00:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21664,"hasAired":false},"details":[],"series":{"title":"Amphibia","alternateTitles":[],"sortTitle":"amphibia","status":"continuing","ended":false,"overview":"After stealing a mysterious music box, 13-year-old, Anne Boonchuy is magically transported to the world of Amphibia, a wild marshland full of talking frog-people. With the help of an excitable young frog named Sprig, Anne will transform from monster to hero and discover the first true friendship of her life!","nextAiring":"2021-10-03T00:00:00Z","previousAiring":"2021-05-23T00:00:00Z","network":"Disney Channel","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/152\/banner.jpg?lastWrite=637006572940202490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c655e05499d0.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/152\/poster.jpg?lastWrite=637523561417741440","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350984\/posters\/5faaffa9d22a9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/152\/fanart.jpg?lastWrite=637102721680224360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d4d7cd8dd64e.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":17,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-19T00:00:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":19768789548,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-05-23T00:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":17486366336,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-10-03T00:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/Amphibia","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":350984,"tvRageId":0,"tvMazeId":35072,"firstAired":"2019-06-17T00:00:00Z","seriesType":"standard","cleanTitle":"amphibia","imdbId":"tt8050740","titleSlug":"amphibia","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Comedy","Family","Fantasy"],"tags":[],"added":"2019-08-06T03:01:33.130431Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":75,"episodeCount":75,"totalEpisodeCount":93,"sizeOnDisk":37255155884,"percentOfEpisodes":100.0},"id":152}}]} \ No newline at end of file diff --git a/stats/data.json b/stats/data.json new file mode 100644 index 0000000..392357b --- /dev/null +++ b/stats/data.json @@ -0,0 +1 @@ +{"sonarr":{"entries":[{"title":"Mr. Robot","alternateTitles":[],"sortTitle":"mr robot","status":"ended","ended":true,"overview":"Elliot, a young programmer who works as a cyber-security engineer by day and a vigilante hacker by night. Elliot finds himself at a crossroads when the mysterious leader of an underground hacker group recruits him to destroy the corporation.","previousAiring":"2019-12-23T03:50:00Z","network":"USA Network","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/1\/banner.jpg?lastWrite=637178511385713470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/289590-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/1\/poster.jpg?lastWrite=637100123928153070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/289590-12.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/1\/fanart.jpg?lastWrite=637100123924153150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/289590-19.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2016-09-08T02:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":3,"sizeOnDisk":1889942852,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-09-03T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":39765429387,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-09-22T02:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":19327883564,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-12-14T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":43405074924,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-12-23T03:50:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":53616367449,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Mr. Robot","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":289590,"tvRageId":42422,"tvMazeId":1871,"firstAired":"2015-06-24T00:00:00Z","seriesType":"standard","cleanTitle":"mrrobot","imdbId":"tt4158110","titleSlug":"mr-robot","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Thriller"],"tags":[],"added":"2017-12-02T19:22:01.3589634Z","ratings":{"votes":4523,"value":9.0},"statistics":{"seasonCount":4,"episodeFileCount":47,"episodeCount":47,"totalEpisodeCount":48,"sizeOnDisk":158004698176,"percentOfEpisodes":100.0},"id":1},{"title":"Rick and Morty","alternateTitles":[{"title":"Rick et Morty","seasonNumber":-1},{"title":"Rick y Morty","seasonNumber":-1},{"title":"Rick \u00e9s Morty","seasonNumber":-1},{"title":"Rick es Morty","seasonNumber":-1}],"sortTitle":"rick morty","status":"continuing","ended":false,"overview":"Follows the misadventures of an alcoholic scientist Rick and his overly nervous grandson Morty, who split their time between domestic family life and intergalactic travel. Often finding themselves in a heap of trouble that more often than not is created through their own actions.","previousAiring":"2021-09-06T03:22:00Z","network":"Adult Swim","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/2\/banner.jpg?lastWrite=637103155212452720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/275274-g8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/2\/poster.jpg?lastWrite=637100124176148470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/275274-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/2\/fanart.jpg?lastWrite=637100124171428560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/275274-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":105,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-04-15T03:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":12905451040,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-10-05T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11639903508,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-10-02T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11647233435,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2020-06-01T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":21718960322,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2021-09-06T03:22:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9122501592,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/Rick and Morty","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":275274,"tvRageId":33381,"tvMazeId":216,"firstAired":"2013-12-02T00:00:00Z","seriesType":"standard","cleanTitle":"rickmorty","imdbId":"tt2861424","titleSlug":"rick-and-morty","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2017-12-02T19:22:17.1688676Z","ratings":{"votes":3660,"value":9.3},"statistics":{"seasonCount":5,"episodeFileCount":51,"episodeCount":51,"totalEpisodeCount":156,"sizeOnDisk":67034049897,"percentOfEpisodes":100.0},"id":2},{"title":"Adventure Time","alternateTitles":[{"title":"Adventure Time With Finn and Jake","seasonNumber":-1}],"sortTitle":"adventure time","status":"ended","ended":true,"overview":"Adventure Time follows two best friends: Finn (a 12-year old boy) and Jake (a wise 28-year-old dog with magical powers), and the surreal adventures undertaken by the duo as they traverse the mystical Land of Ooo. A world built for adventure, Ooo is filled to the brim with various landscapes for the two buddies to explore and bizarre characters to assist.","previousAiring":"2021-05-20T07:00:00Z","network":"Cartoon Network","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/3\/banner.jpg?lastWrite=636747176258067520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/152831-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/3\/poster.jpg?lastWrite=637103832228442290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/152831-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/3\/fanart.jpg?lastWrite=636747176225628230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/152831-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2021-05-20T07:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":18,"sizeOnDisk":8887712303,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-09-27T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7518142674,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2011-05-09T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7107706791,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2012-02-13T08:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":5648668349,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2012-10-22T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":5325128219,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2014-03-17T07:00:00Z","episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":52,"sizeOnDisk":10742846954,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2015-06-05T07:10:00Z","episodeFileCount":43,"episodeCount":43,"totalEpisodeCount":43,"sizeOnDisk":9275069284,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2016-03-19T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":4920729422,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2017-02-02T08:10:00Z","episodeFileCount":27,"episodeCount":27,"totalEpisodeCount":27,"sizeOnDisk":4929257545,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2017-07-21T07:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":2419656497,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2018-09-03T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2798584533,"percentOfEpisodes":100.0}}],"year":2010,"path":"\/tv\/Adventure Time","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":152831,"tvRageId":23369,"tvMazeId":290,"firstAired":"2010-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"adventuretime","imdbId":"tt1305826","titleSlug":"adventure-time","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Children","Comedy","Family","Fantasy"],"tags":[],"added":"2017-12-02T23:48:16.011439Z","ratings":{"votes":3652,"value":9.7},"statistics":{"seasonCount":10,"episodeFileCount":296,"episodeCount":296,"totalEpisodeCount":297,"sizeOnDisk":69573502571,"percentOfEpisodes":100.0},"id":3},{"title":"The Amazing World of Gumball","alternateTitles":[{"title":"El Asombroso Mundo De Gumball","seasonNumber":-1},{"title":"Lo straordinario mondo di Gumball","seasonNumber":-1}],"sortTitle":"amazing world gumball","status":"ended","ended":true,"overview":"The series revolves around the life of Gumball Watterson, a 12-year old cat who attends middle school in Elmore. Accompanied by his pet, adoptive brother, and best friend Darwin Watterson, he frequently finds himself involved in various shenanigans around the city, during which he interacts with various family members: Anais, Richard, and Nicole Watterson, and other various citizens.","previousAiring":"2019-06-24T16:10:00Z","network":"Cartoon Network","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/4\/banner.jpg?lastWrite=637100123575839610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/248482-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/4\/poster.jpg?lastWrite=637267304811754060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/248482-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/4\/fanart.jpg?lastWrite=637100123573839650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/248482-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":28,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-13T16:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":6701142763,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-12-03T17:00:00Z","episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":6869501855,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2015-04-12T16:10:00Z","episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":6421469609,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2016-10-27T16:00:00Z","episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":7079646868,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2017-11-10T17:00:00Z","episodeFileCount":38,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":5786038934,"percentOfEpisodes":95.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2019-06-24T16:10:00Z","episodeFileCount":44,"episodeCount":44,"totalEpisodeCount":44,"sizeOnDisk":24429034367,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/The Amazing World of Gumball","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":248482,"tvRageId":28067,"tvMazeId":3134,"firstAired":"2011-05-03T00:00:00Z","seriesType":"standard","cleanTitle":"theamazingworldgumball","imdbId":"tt1942683","titleSlug":"the-amazing-world-of-gumball","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children","Comedy","Family"],"tags":[],"added":"2017-12-05T01:14:24.1179107Z","ratings":{"votes":696,"value":9.0},"statistics":{"seasonCount":6,"episodeFileCount":238,"episodeCount":240,"totalEpisodeCount":268,"sizeOnDisk":57286834396,"percentOfEpisodes":99.16666666666667},"id":4},{"title":"DARK","alternateTitles":[],"sortTitle":"dark","status":"ended","ended":true,"overview":"When two children go missing in a small German town, its sinful past is exposed along with the double lives and fractured relationships that exist among four families as they search for the kids. The mystery-drama series introduces an intricate puzzle filled with twists that includes a web of curious characters, all of whom have a connection to the town's troubled history -- whether they know it or not. The story includes supernatural elements that tie back to the same town in 1986.","previousAiring":"2020-06-27T04:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/5\/banner.jpg?lastWrite=637217852389467700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d0d7406d7e0e.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/5\/poster.jpg?lastWrite=637566904012355980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/334824\/posters\/5f83777697cf6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/5\/fanart.jpg?lastWrite=637392323846160820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/334824-7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":false,"statistics":{"previousAiring":"2017-12-01T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":18147813926,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":false,"statistics":{"previousAiring":"2019-06-21T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":14908466637,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":false,"statistics":{"previousAiring":"2020-06-27T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":16264152123,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Dark","qualityProfileId":7,"languageProfileId":2,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":51,"tvdbId":334824,"tvRageId":0,"tvMazeId":17861,"firstAired":"2017-12-01T00:00:00Z","seriesType":"standard","cleanTitle":"dark","imdbId":"tt5753856","titleSlug":"dark","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Mystery","Science Fiction","Thriller"],"tags":[],"added":"2017-12-05T20:48:58.1362538Z","ratings":{"votes":745,"value":9.0},"statistics":{"seasonCount":3,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":49320432686,"percentOfEpisodes":100.0},"id":5},{"title":"Code Geass: Lelouch of the Rebellion","alternateTitles":[{"title":"Code Geass: Lelouch of the Rebellion R2","sceneSeasonNumber":2},{"title":"Code Geass: Lelouch of the Rebellion","sceneSeasonNumber":1},{"title":"\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9 \u53cd\u9006\u306e\u30eb\u30eb\u30fc\u30b7\u30e5","sceneSeasonNumber":1},{"title":"\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9 \u53cd\u9006\u306e\u30eb\u30eb\u30fc\u30b7\u30e5 R2","sceneSeasonNumber":2},{"title":"Code Geass","sceneSeasonNumber":1},{"title":"Code Geass R2","sceneSeasonNumber":2}],"sortTitle":"code geass lelouch rebellion","status":"ended","ended":true,"overview":"On August 10th, 2010 the Holy Empire of Britannia began a campaign of conquest, its sights set on Japan. Deploying a humanoid weapon dubbed Knightmare Frame, Japan was quickly conquered, its rights and identity stripped away, the once proud nation now referred to as Area 11. Its citizens, Elevens, now forced to scratch out a living while the Brits live comfortably within their settlements. Pockets of resistance appear throughout Area 11, working towards independence for Japan, although without much success. \r\nHowever, the world's destiny changes as Lelouch, an exiled Imperial Prince of Britannia posing as a student, finds himself in the heart of the ongoing conflict. Through a chance meeting with a mysterious girl named C.C., Lelouch gains a mysterious power called Geass. Equipped with the power of the king, Lelouch may finally realize his dream of bringing Britannia down to its knees!","previousAiring":"2008-09-27T15:00:00Z","network":"MBS","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/6\/banner.jpg?lastWrite=636747176310866370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79525-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/6\/poster.jpg?lastWrite=637566903952356340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/79525\/posters\/609303fbd97e3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/6\/fanart.jpg?lastWrite=637103832464878000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79525-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":53,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-07-27T15:25:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":14768276382,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2008-09-27T15:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":15168426161,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Code Geass- Lelouch of the Rebellion","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":79525,"tvRageId":18378,"tvMazeId":5276,"firstAired":"2006-10-05T00:00:00Z","seriesType":"standard","cleanTitle":"codegeasslelouchrebellion","imdbId":"tt0994314","titleSlug":"code-geass-lelouch-of-the-rebellion","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Drama","Fantasy","Romance","Science Fiction","Thriller","War"],"tags":[],"added":"2017-12-05T22:10:16.6738228Z","ratings":{"votes":20419,"value":8.9},"statistics":{"seasonCount":2,"episodeFileCount":50,"episodeCount":50,"totalEpisodeCount":103,"sizeOnDisk":29936702543,"percentOfEpisodes":100.0},"id":6},{"title":"Stranger Things","alternateTitles":[],"sortTitle":"stranger things","status":"continuing","ended":false,"overview":"Tribute to the classic supernatural mysteries of the 80s, \"Stranger Things\" is the story of a boy who disappears in the small town of Hawkins, Indiana, without a trace in 1983. In his desperate search, both his friends and family and the local sheriff are involved in an extraordinary enigma: top-secret experiments, terrifying paranormal forces and a very, very rare girl ...","previousAiring":"2019-07-04T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/7\/banner.jpg?lastWrite=637100124361265030","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/305288-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/7\/poster.jpg?lastWrite=637608544747669610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d1df8d5be8c8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/7\/fanart.jpg?lastWrite=637100124359305070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/305288-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":7,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-07-15T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":28628068203,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-10-27T07:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":37470968477,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-07-04T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":23915915543,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2016,"path":"\/tv\/Stranger Things","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":51,"tvdbId":305288,"tvRageId":0,"tvMazeId":2993,"firstAired":"2016-07-15T00:00:00Z","seriesType":"standard","cleanTitle":"strangerthings","imdbId":"tt4574334","titleSlug":"stranger-things","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Adventure","Drama","Fantasy","Horror","Suspense"],"tags":[],"added":"2017-12-06T01:14:16.1712672Z","ratings":{"votes":4140,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":35,"sizeOnDisk":90014952223,"percentOfEpisodes":100.0},"id":7},{"title":"Magical Girl Lyrical Nanoha","alternateTitles":[{"title":"Magical Girl Lyrical Nanoha","sceneSeasonNumber":1},{"title":"Magical Girl Lyrical Nanoha A`s","sceneSeasonNumber":2},{"title":"Mahou Shoujo Lyrical Nanoha","sceneSeasonNumber":1},{"title":"Mahou Shoujo Lyrical Nanoha A`s","sceneSeasonNumber":2},{"title":"Magical Girl Lyrical Nanoha StrikerS","sceneSeasonNumber":3},{"title":"Mahou Shoujo Lyrical Nanoha StrikerS","sceneSeasonNumber":3},{"title":"Magical Girl Lyrical Nanoha Vivid","sceneSeasonNumber":4},{"title":"Mahou Shoujo Lyrical Nanoha Vivid","sceneSeasonNumber":4}],"sortTitle":"magical girl lyrical nanoha","status":"ended","ended":true,"overview":"Yuuno Scraia is a mage from a distant planet working to fix the problem he started when Jewel Seeds were accidentally spread around the world. In a failed attempt to seal a seed properly, he winds up on Earth in the form of a ferret. However, his battle with the seeds did not end upon reaching the Earth and he needs somebody else's help to seal the seeds for him. Takamachi Nanoha hears his telepathic cries for help and comes to his rescue. When she is given a pearl known as the Raging Heart she is able to transform into Magical Girl Lyrical Nanoha and wield a staff to fend off the evil that lies within the Seeds. In order to help Yuuno complete his mission, she needs to seal all 21 Jewel Seeds away, but Fate may be playing a hand in the matter to prevent Nanoha's goals.","previousAiring":"2016-12-16T15:00:00Z","network":"CTC (JA)","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/8\/banner.jpg?lastWrite=637100123899193610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81115-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/8\/poster.jpg?lastWrite=637308648800088900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81115-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/8\/fanart.jpg?lastWrite=637100123897393640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81115-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":18,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-12-24T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4625237992,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-12-24T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4626557048,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2007-09-23T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7796666441,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2015-06-18T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6590035262,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2016-12-16T15:00:00Z","episodeFileCount":0,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2004,"path":"\/tv\/Magical Girl Lyrical Nanoha","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":81115,"tvRageId":0,"tvMazeId":31381,"firstAired":"2004-10-02T00:00:00Z","seriesType":"standard","cleanTitle":"magicalgirllyricalnanoha","imdbId":"tt0808082","titleSlug":"magical-girl-lyrical-nanoha","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Anime"],"tags":[],"added":"2017-12-06T09:23:59.7299106Z","ratings":{"votes":257,"value":8.9},"statistics":{"seasonCount":5,"episodeFileCount":64,"episodeCount":76,"totalEpisodeCount":94,"sizeOnDisk":23638496743,"percentOfEpisodes":84.21052631578948},"id":8},{"title":"Warehouse 13","alternateTitles":[],"sortTitle":"warehouse 13","status":"ended","ended":true,"overview":"After saving the life of an international diplomat in Washington D.C., a pair of U.S. Secret Service agents are whisked away to a covert location in South Dakota that houses supernatural objects that the U.S. Government has collected over the centuries. Their new assignment: retrieve some of the missing objects and investigate reports of new ones.","previousAiring":"2014-05-20T01:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/9\/banner.jpg?lastWrite=637103833645856600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/84676-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/9\/poster.jpg?lastWrite=637103833651336500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/84676-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/9\/fanart.jpg?lastWrite=637103833643136650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/84676-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2011-07-06T07:45:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":24,"sizeOnDisk":389012834,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-09-23T01:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":45747333156,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2010-12-08T02:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45739457676,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2011-12-07T02:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":23050281620,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2013-07-09T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70369772169,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2014-05-20T01:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":21107626599,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Warehouse 13","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":84676,"tvRageId":7884,"tvMazeId":434,"firstAired":"2009-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"warehouse13","imdbId":"tt1132290","titleSlug":"warehouse-13","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Drama","Fantasy","Science Fiction","Suspense"],"tags":[],"added":"2018-04-24T20:18:03.6304352Z","ratings":{"votes":8347,"value":8.4},"statistics":{"seasonCount":5,"episodeFileCount":74,"episodeCount":74,"totalEpisodeCount":88,"sizeOnDisk":206403484054,"percentOfEpisodes":100.0},"id":9},{"title":"Star vs. the Forces of Evil","alternateTitles":[{"title":"Star gegen die Maechte des Boesen","seasonNumber":-1},{"title":"Star gegen die M\u00e4chte des B\u00f6sen","seasonNumber":-1}],"sortTitle":"star vs forces evil","status":"ended","ended":true,"overview":"After having skirmished with a number of dangerous monsters, Star Butterfly arrives on Earth to live with the Diaz family. However, rather than living a normal life, Star continues on having to battle villains both throughout the universe and in their high school, although if only to protect her extremely powerful wand, an object which she is still confused with.","previousAiring":"2019-05-19T12:00:00Z","network":"Disney Channel","airTime":"08:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/10\/banner.jpg?lastWrite=637103833473539720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/282994-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/10\/poster.jpg?lastWrite=637084968389418840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/282994-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/10\/fanart.jpg?lastWrite=637103833461819930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/282994-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-09-21T12:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":11249086748,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-02-27T13:10:00Z","episodeFileCount":41,"episodeCount":41,"totalEpisodeCount":41,"sizeOnDisk":19316648845,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-04-07T12:10:00Z","episodeFileCount":38,"episodeCount":38,"totalEpisodeCount":38,"sizeOnDisk":18915367105,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-05-19T12:00:00Z","episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":9567947181,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Star vs. the Forces of Evil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":282994,"tvRageId":47307,"tvMazeId":1551,"firstAired":"2015-01-18T00:00:00Z","seriesType":"standard","cleanTitle":"starvsforcesevil","imdbId":"tt2758770","titleSlug":"star-vs-the-forces-of-evil","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Comedy","Family","Romance"],"tags":[],"added":"2017-12-10T01:45:27.9903227Z","ratings":{"votes":503,"value":8.9},"statistics":{"seasonCount":4,"episodeFileCount":140,"episodeCount":140,"totalEpisodeCount":140,"sizeOnDisk":59049049879,"percentOfEpisodes":100.0},"id":10},{"title":"A Series of Unfortunate Events","alternateTitles":[{"title":"Lemony Snickets A Series of Unfortunate Events","seasonNumber":-1},{"title":"Una serie di sfortunati eventi","seasonNumber":-1}],"sortTitle":"series unfortunate events","status":"ended","ended":true,"overview":"The tragic tale of the Baudelaire orphans \u2013 Violet, Klaus, and Sunny \u2013 whose evil guardian Count Olaf will stop at nothing to get his hands on their inheritance. After the loss of their parents in a mysterious fire, the three extraordinary siblings must outsmart Olaf at every turn, foiling his many devious plans and disguises, in their fateful quest to unlock long-held family secrets.","previousAiring":"2019-01-01T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/11\/banner.jpg?lastWrite=637103833324502420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/306304-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/11\/poster.jpg?lastWrite=637103833327342370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/306304-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/11\/fanart.jpg?lastWrite=637103833321902470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/306304-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-01-13T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":31907003106,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-03-30T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":8694312901,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-01-01T08:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":14570411406,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/A Series of Unfortunate Events","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":306304,"tvRageId":0,"tvMazeId":3949,"firstAired":"2017-01-13T00:00:00Z","seriesType":"standard","cleanTitle":"aseriesunfortunateevents","imdbId":"tt4834206","titleSlug":"a-series-of-unfortunate-events","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Children","Comedy","Drama","Family"],"tags":[],"added":"2017-12-12T03:37:35.8122442Z","ratings":{"votes":776,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":55171727413,"percentOfEpisodes":100.0},"id":11},{"title":"The Legend of Korra","alternateTitles":[{"title":"The Last Airbender: Legend of Korra","sceneSeasonNumber":-1}],"sortTitle":"legend korra","status":"ended","ended":true,"overview":"Avatar Korra, a headstrong, rebellious, feisty young woman who continually challenges and breaks with tradition, is on her quest to become a fully realized Avatar. In this story, the Avatar struggles to find balance within herself.","previousAiring":"2014-12-19T02:25:00Z","network":"Nickelodeon","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/12\/banner.jpg?lastWrite=637103832872550620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/251085-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/12\/poster.jpg?lastWrite=636747176383744790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/251085-15.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/12\/fanart.jpg?lastWrite=636774382024261560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/251085-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":47,"sizeOnDisk":196966553,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-06-24T01:25:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":5521539740,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-11-23T02:25:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":32842794378,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2014-08-23T01:25:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":30511516141,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2014-12-19T02:25:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":30501534763,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/The Legend of Korra","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":251085,"tvRageId":26254,"tvMazeId":178,"firstAired":"2012-04-14T00:00:00Z","seriesType":"standard","cleanTitle":"thelegendkorra","imdbId":"tt1695360","titleSlug":"the-legend-of-korra","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Animation","Children","Drama","Family","Fantasy","Martial Arts","Suspense"],"tags":[],"added":"2017-12-17T15:07:25.993296Z","ratings":{"votes":2862,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":53,"episodeCount":53,"totalEpisodeCount":99,"sizeOnDisk":99574351575,"percentOfEpisodes":100.0},"id":12},{"title":"Steven Universe","alternateTitles":[{"title":"Steven Universe (2014)","seasonNumber":-1}],"sortTitle":"steven universe","status":"ended","ended":true,"overview":"The Crystal Gems are a team of magical beings who are the self-appointed guardians of the universe. Half-human, half-Gem hero Steven is the \"little brother\" of the group. The goofball is learning to save the world using the magical powers that come from his bellybutton and he goes on magical adventures with the rest of the Crystal Gems, even though he's not as powerful -- or smart -- as fellow group members Garnet, Amethyst and Pearl. Despite his shortcomings, Steven usually finds a surprising way to save the day.","previousAiring":"2019-01-22T00:30:00Z","network":"Cartoon Network","airTime":"19:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/13\/banner.jpg?lastWrite=637103833514538980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/270701-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/13\/poster.jpg?lastWrite=637103833517778920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/270701-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/13\/fanart.jpg?lastWrite=636782905911072520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/270701-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-03-12T23:40:00Z","episodeFileCount":49,"episodeCount":49,"totalEpisodeCount":49,"sizeOnDisk":5678702838,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-01-09T00:30:00Z","episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":29,"sizeOnDisk":2572385022,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2016-08-10T23:30:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":2442682626,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-05-11T23:40:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":2365643814,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2019-01-22T00:30:00Z","episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":3193391578,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/Steven Universe","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":10,"tvdbId":270701,"tvRageId":32829,"tvMazeId":1615,"firstAired":"2013-11-04T00:00:00Z","seriesType":"standard","cleanTitle":"stevenuniverse","imdbId":"tt3061046","titleSlug":"steven-universe","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Children","Comedy","Family","Science Fiction"],"tags":[],"added":"2017-12-19T23:07:16.2407861Z","ratings":{"votes":1846,"value":9.4},"statistics":{"seasonCount":5,"episodeFileCount":154,"episodeCount":154,"totalEpisodeCount":168,"sizeOnDisk":16252805878,"percentOfEpisodes":100.0},"id":13},{"title":"Akame ga Kill!","alternateTitles":[],"sortTitle":"akame ga kill","status":"ended","ended":true,"overview":"In a fantasy world, fighter Tatsumi sets out for the Capitol to earn money for his starving village, and finds a world of unimaginable corruption, all spreading from the depraved Prime Minister who controls the child Emperor's ear. After nearly becoming a victim of this corruption himself, Tatsumi is recruited by Night Raid, a group of assassins dedicated to eliminating the corruption plaguing the Capitol by mercilessly killing those responsible.","previousAiring":"2014-12-15T03:00:00Z","network":"Tokyo MX","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/14\/banner.jpg?lastWrite=636747176260467470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/280329-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/14\/poster.jpg?lastWrite=637600310298903610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/280329\/posters\/60aff11312ce8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/14\/fanart.jpg?lastWrite=637084967478235620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/280329-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":25,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-12-15T03:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":34903606693,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Akame ga Kill!","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":280329,"tvRageId":43317,"tvMazeId":0,"firstAired":"2014-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"akamegakill","imdbId":"tt3742982","titleSlug":"akame-ga-kill","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Crime","Fantasy","Horror"],"tags":[],"added":"2017-12-19T23:12:49.2387829Z","ratings":{"votes":5425,"value":8.0},"statistics":{"seasonCount":1,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":49,"sizeOnDisk":34903606693,"percentOfEpisodes":100.0},"id":14},{"title":"Black Mirror","alternateTitles":[],"sortTitle":"black mirror","status":"ended","ended":true,"overview":"A television anthology series that shows the dark side of life and technology.","previousAiring":"2019-06-05T09:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/15\/banner.jpg?lastWrite=637100123629078630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/253463-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/15\/poster.jpg?lastWrite=637100123631598580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/253463-10.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/15\/fanart.jpg?lastWrite=637100123626758670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/253463-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":true,"statistics":{"previousAiring":"2018-12-28T08:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":2,"sizeOnDisk":2307811347,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-12-18T08:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":2773710063,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-02-25T08:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":10541232748,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2016-10-21T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":29630047088,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-12-29T08:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8576000326,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2019-06-05T09:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":8150542937,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Black Mirror","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":253463,"tvRageId":30348,"tvMazeId":305,"firstAired":"2011-12-04T00:00:00Z","seriesType":"standard","cleanTitle":"blackmirror","imdbId":"tt2085059","titleSlug":"black-mirror","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2018-01-02T02:16:55.0710503Z","ratings":{"votes":5042,"value":9.0},"statistics":{"seasonCount":5,"episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":61979344509,"percentOfEpisodes":100.0},"id":15},{"title":"Devilman Crybaby","alternateTitles":[],"sortTitle":"devilman crybaby","status":"ended","ended":true,"overview":"The protagonist Akira Fudo learns from his best friend, Ryo Asuka, that an ancient race of demons has returned to take back the world from humans. Ryo tells Akira that the only way to defeat the demons is to incorporate their supernatural powers, and suggests that he unite with a demon himself. Akira succeeds in transforming into Devilman, who possesses both the powers of a demon and the soul of a human. The battle of Devilman and Akira Fudo begins.","previousAiring":"2018-01-05T05:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/16\/banner.jpg?lastWrite=636747176321306140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/338192-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/16\/poster.jpg?lastWrite=637103832563836210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/338192-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/16\/fanart.jpg?lastWrite=637103832536676700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/338192-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-01-05T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":16959304871,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Devilman Crybaby","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":338192,"tvRageId":0,"tvMazeId":30915,"firstAired":"2018-01-05T00:00:00Z","seriesType":"standard","cleanTitle":"devilmancrybaby","imdbId":"tt6660498","titleSlug":"devilman-crybaby","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Fantasy","Horror","Suspense"],"tags":[],"added":"2018-01-05T17:34:29.7735416Z","ratings":{"votes":114,"value":8.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":11,"sizeOnDisk":16959304871,"percentOfEpisodes":100.0},"id":16},{"title":"Pop Team Epic","alternateTitles":[],"sortTitle":"pop team epic","status":"ended","ended":true,"overview":"Crude, rude, and a little\u2026cute? Get ready for the larger-than-life attitude of Popuko and Pipimi, the small and tall stars of Pop Team Epic! Based off the bizarre four-panel webcomic by Bukubu Okawa comes a comedy that\u2019ll throw you off with its out-there jokes and intense absurdity. You think you\u2019re ready for these girls? Think again, F#%**er!","previousAiring":"2018-03-24T15:00:00Z","network":"BS11","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/17\/banner.jpg?lastWrite=636747176432783720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/339278-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/17\/poster.jpg?lastWrite=637487588991326820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/339278-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/17\/fanart.jpg?lastWrite=637487588993966780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/339278-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-03-24T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6905478235,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Pop Team Epic","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":339278,"tvRageId":0,"tvMazeId":33902,"firstAired":"2018-01-07T00:00:00Z","seriesType":"standard","cleanTitle":"popteamepic","imdbId":"tt7808370","titleSlug":"pop-team-epic","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy"],"tags":[],"added":"2018-01-20T23:36:13.7245012Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":18,"sizeOnDisk":6905478235,"percentOfEpisodes":100.0},"id":17},{"title":"Nichijou: My Ordinary Life","alternateTitles":[{"title":"Nichijou","sceneSeasonNumber":-1}],"sortTitle":"nichijou my ordinary life","status":"ended","ended":true,"overview":"Life in a small city needn't be boring. Not when your city is home to a host of deeply odd people. Granted some residents, like high-school buddies Mio and Yuko, are fairly normal. Yuko is a world-class space-case and Mio has an unusual mastery of wrestling and boxing, but... okay, so they're odd too. Together with fellow residents such as Nano, the frequently modified robot of five-year-old genius the Professor, talking cat Sakamoto (that's Sakamoto-san to you!), and their own friend, the poker-faced lunatic Mai, they lead provincial lives that are perfectly mundane and thoroughly bizarre.","previousAiring":"2011-09-24T15:00:00Z","network":"TV Aichi","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/18\/banner.jpg?lastWrite=636747176423823920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/text\/240291.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/18\/poster.jpg?lastWrite=636747176424663900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/240291-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/18\/fanart.jpg?lastWrite=637103833095266580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/240291-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":15,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-09-24T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":18947717733,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Nichijou - My Ordinary Life","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":240291,"tvRageId":0,"tvMazeId":7061,"firstAired":"2011-04-03T00:00:00Z","seriesType":"standard","cleanTitle":"nichijoumyordinarylife","imdbId":"tt2098308","titleSlug":"nichijou-my-ordinary-life","rootFolderPath":"\/tv\/","genres":["Anime","Comedy"],"tags":[],"added":"2018-01-23T22:05:10.7529105Z","ratings":{"votes":798,"value":8.1},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":41,"sizeOnDisk":18947717733,"percentOfEpisodes":100.0},"id":18},{"title":"Altered Carbon","alternateTitles":[{"title":"Altered Carbon Das Unsterblichkeitsprogramm","seasonNumber":-1}],"sortTitle":"altered carbon","status":"ended","ended":true,"overview":"After 250 years on ice, a prisoner returns to life in a new body with one chance to win his freedom: by solving a mind-bending murder.","previousAiring":"2020-02-27T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/19\/banner.jpg?lastWrite=637100123570239720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/332331-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/19\/poster.jpg?lastWrite=637566903685437870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/332331\/posters\/5fedd70c9a720.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/19\/fanart.jpg?lastWrite=637194969308500270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/332331-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-02-02T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":16489050721,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-02-27T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":15121081418,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Altered Carbon","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":332331,"tvRageId":0,"tvMazeId":12036,"firstAired":"2018-02-02T00:00:00Z","seriesType":"standard","cleanTitle":"alteredcarbon","imdbId":"tt2261227","titleSlug":"altered-carbon","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Drama","Science Fiction","Thriller"],"tags":[],"added":"2018-02-10T13:54:11.6917965Z","ratings":{"votes":617,"value":8.5},"statistics":{"seasonCount":2,"episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":19,"sizeOnDisk":31610132139,"percentOfEpisodes":100.0},"id":19},{"title":"Voltron: Legendary Defender","alternateTitles":[],"sortTitle":"voltron legendary defender","status":"ended","ended":true,"overview":"For millennia, the evil Galra Empire has plagued the universe by conquering planets and destroying their inhabitants. The only known threat to the empire's power and plans is the legendary \"Defender of the Universe,\" Voltron, a 100-meter-tall robot warrior composed of five lion mechas whose whereabouts are presumed to be unknown. The Galra Empire's path of conquest and search for Voltron has led them to Earth's solar system. A group of space pilots-Shiro, Keith, Lance, Pidge, and Hunk-discover the blue lion and immediately get swept up into the Galran War. They meet Princess Allura, become the next Paladins, and reunite the five lions to form Voltron and free the universe from the Galra Empire.","previousAiring":"2018-12-14T07:00:00Z","network":"Netflix","airTime":"02:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/20\/banner.jpg?lastWrite=636747176508062100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/307899-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/20\/poster.jpg?lastWrite=636881637261077590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/307899-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/20\/fanart.jpg?lastWrite=636747176505582150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/307899-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":7,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-06-10T06:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":14578481145,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-01-20T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":12217585232,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-08-04T06:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":5653713179,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-10-13T06:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":5040609652,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2018-03-02T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":5254596196,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2018-06-15T06:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":6133465010,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2018-08-10T06:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":12921697519,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2018-12-14T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":12467565045,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Voltron- Legendary Defender","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":307899,"tvRageId":0,"tvMazeId":15296,"firstAired":"2016-06-10T00:00:00Z","seriesType":"standard","cleanTitle":"voltronlegendarydefender","imdbId":"tt5580664","titleSlug":"voltron-legendary-defender","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Animation","Children","Science Fiction"],"tags":[],"added":"2018-03-13T22:01:20.4720616Z","ratings":{"votes":259,"value":7.7},"statistics":{"seasonCount":8,"episodeFileCount":76,"episodeCount":76,"totalEpisodeCount":83,"sizeOnDisk":74267712978,"percentOfEpisodes":100.0},"id":20},{"title":"Final Space","alternateTitles":[],"sortTitle":"final space","status":"continuing","ended":false,"overview":"An astronaut named Gary and his planet-destroying sidekick Mooncake embark on serialized journeys through space in order to unlock the mystery of \u201cFinal Space,\u201d the last point in the universe, if it actually does exist.","previousAiring":"2021-06-14T04:30:00Z","network":"Adult Swim","airTime":"00:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/21\/banner.jpg?lastWrite=637100123774035930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/text\/332353.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/21\/poster.jpg?lastWrite=637543499248871620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/332353-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/21\/fanart.jpg?lastWrite=637100123771915970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/332353-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":34,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-05-07T04:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":14234421556,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-09-23T04:30:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":18081710302,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-06-14T04:30:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9036092526,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Final Space","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":20,"tvdbId":332353,"tvRageId":0,"tvMazeId":23314,"firstAired":"2018-02-26T00:00:00Z","seriesType":"standard","cleanTitle":"finalspace","imdbId":"tt6317068","titleSlug":"final-space","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2018-03-20T12:55:14.0917538Z","ratings":{"votes":189,"value":9.4},"statistics":{"seasonCount":3,"episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":70,"sizeOnDisk":41352224384,"percentOfEpisodes":100.0},"id":21},{"title":"Bee and PuppyCat","alternateTitles":[],"sortTitle":"bee puppycat","status":"ended","ended":true,"overview":"Bee, a reluctant hero, becomes entangled in the adventures of a puppy (...or is he a cat?) as they travel between reality and the void of Fishbowl Space.","previousAiring":"2016-11-28T05:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/22\/banner.jpg?lastWrite=636747176279227060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/272090-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/22\/poster.jpg?lastWrite=636747176279667050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/272090-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/22\/fanart.jpg?lastWrite=637103832347040140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/272090-5.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-11-28T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":764056287,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":13,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2014,"path":"\/tv\/Bee and PuppyCat","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":272090,"tvRageId":37666,"tvMazeId":5342,"firstAired":"2014-11-06T00:00:00Z","seriesType":"standard","cleanTitle":"beepuppycat","imdbId":"tt4163486","titleSlug":"bee-and-puppycat","rootFolderPath":"\/tv\/","genres":["Action","Adventure","Animation","Comedy","Fantasy","Mini-Series","Science Fiction"],"tags":[],"added":"2018-03-21T19:45:10.3670301Z","ratings":{"votes":162,"value":7.8},"statistics":{"seasonCount":2,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":25,"sizeOnDisk":764056287,"percentOfEpisodes":100.0},"id":22},{"title":"Overlord","alternateTitles":[{"title":"Overlord II","sceneSeasonNumber":2},{"title":"Overlord S2","sceneSeasonNumber":2},{"title":"Overlord 2","sceneSeasonNumber":2},{"title":"Overlord III","sceneSeasonNumber":3},{"title":"Overlord S3","sceneSeasonNumber":3},{"title":"Overlord 3","sceneSeasonNumber":3}],"sortTitle":"overlord","status":"ended","ended":true,"overview":"In the year 2138, virtual reality gaming is booming. Yggdrasil, a popular online game is quietly shut down one day. However, one player named Momonga decides to not log out. Momonga is then transformed into the image of a skeleton as \"the most powerful wizard.\" The world continues to change, with non-player characters (NPCs) beginning to feel emotion. Having no parents, friends, or place in society, this ordinary young man Momonga then strives to take over the new world the game has become.","previousAiring":"2018-10-02T13:00:00Z","network":"AT-X","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/23\/banner.jpg?lastWrite=637100124027111230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/294002-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/23\/poster.jpg?lastWrite=637618943371492890","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b3832a5901f9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/23\/fanart.jpg?lastWrite=637354606091476200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/294002-11.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":44,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-09-29T13:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":21373434596,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-04-03T13:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11232081611,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-02T13:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":19308562533,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Overlord","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":294002,"tvRageId":49515,"tvMazeId":4270,"firstAired":"2015-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"overlord","imdbId":"tt4869896","titleSlug":"overlord","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Fantasy"],"tags":[],"added":"2018-04-08T15:10:56.202788Z","ratings":{"votes":360,"value":9.0},"statistics":{"seasonCount":3,"episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":83,"sizeOnDisk":51914078740,"percentOfEpisodes":100.0},"id":23},{"title":"Mob Psycho 100","alternateTitles":[{"title":"Mob Psycho 100 S2","sceneSeasonNumber":2},{"title":"Mob Psycho 100 II","sceneSeasonNumber":2}],"sortTitle":"mob psycho 100","status":"ended","ended":true,"overview":"Kageyama Shigeo (a.k.a. \"Mob\") is a 8th grader with psychic abilities. He could bend spoons and lift objects with his mind from a young age, but he slowly began to withhold from using his abilities in public due to the negative attention he kept receiving. Now, the only thing he wants is to become friends with a girl in his class, Tsubomi. With his psychic \"mentor\" (who has no psychic powers), he continues his daily life, attempting to realize his purpose in life.","previousAiring":"2019-04-01T14:00:00Z","network":"Tokyo MX","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/24\/banner.jpg?lastWrite=637101855949655050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/307375-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/24\/poster.jpg?lastWrite=637592941715163770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/307375\/posters\/60aa39f03e5be.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/24\/fanart.jpg?lastWrite=637337697241720120","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c33d83b55f10.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-09-27T14:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":11023578103,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-04-01T14:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":29759805934,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Mob Psycho 100","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":307375,"tvRageId":0,"tvMazeId":18260,"firstAired":"2016-07-12T00:00:00Z","seriesType":"standard","cleanTitle":"mobpsycho100","imdbId":"tt5897304","titleSlug":"mob-psycho-100","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Comedy","Fantasy"],"tags":[],"added":"2018-04-10T14:07:02.7576833Z","ratings":{"votes":202,"value":9.0},"statistics":{"seasonCount":2,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":33,"sizeOnDisk":40783384037,"percentOfEpisodes":100.0},"id":24},{"title":"FLCL","alternateTitles":[{"title":"Furi Kuri","sceneSeasonNumber":1},{"title":"Fooley Cooley","sceneSeasonNumber":1},{"title":"Fooly Cooly","sceneSeasonNumber":1},{"title":"FLCL Progressive","sceneSeasonNumber":2},{"title":"FLCL Alternative","sceneSeasonNumber":3}],"sortTitle":"flcl","status":"ended","ended":true,"overview":"Naota's life is confined to going to school and living with his father and grandfather. The usually tranquil life in Mabase is rudely interrupted by the arrival of Haruhara Haruko, who bursts on the scene by running Naota over with her Vespa scooter and hitting him on the head with a Rickenbacker 4003 bass guitar. Later, Naota is shocked to find Haruko working in his house as a live-in maid.\r\n\r\nHaruko's search for the alien being Atomsk puts her at odds with Medical Mechanica. At the same time, Naota is being watched by Commander Amarao. The Commander believes Haruko is in love with Atomsk and Medical Mechanica is out to conquer the galaxy. The fortuitous circumstances get Naota involved in a three-way battle between Haruko, Amarao and Medical Mechanica.","previousAiring":"2018-10-14T03:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/25\/banner.jpg?lastWrite=636747176339785740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78878-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/25\/poster.jpg?lastWrite=637406633701366220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78878-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/25\/fanart.jpg?lastWrite=637103832677354150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78878-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2001-03-17T04:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":12078501375,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-07-08T03:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8833828896,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-14T03:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8932434222,"percentOfEpisodes":100.0}}],"year":2000,"path":"\/tv\/FLCL","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":78878,"tvRageId":3572,"tvMazeId":2772,"firstAired":"2000-04-26T00:00:00Z","seriesType":"standard","cleanTitle":"flcl","imdbId":"tt0279077","titleSlug":"flcl","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Comedy","Science Fiction"],"tags":[],"added":"2018-04-14T23:55:25.5446658Z","ratings":{"votes":1893,"value":8.4},"statistics":{"seasonCount":3,"episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":20,"sizeOnDisk":29844764493,"percentOfEpisodes":100.0},"id":25},{"title":"Aggretsuko","alternateTitles":[],"sortTitle":"aggretsuko","status":"continuing","ended":false,"overview":"Frustrated with her thankless office job, Retsuko the Red Panda copes with her daily struggles by belting out death metal karaoke after work.","previousAiring":"2020-08-27T21:00:00Z","network":"Netflix","airTime":"17:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/27\/banner.jpg?lastWrite=636747176256307560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/346744-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/27\/poster.jpg?lastWrite=637317757375655580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b2f8532ad05c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/27\/fanart.jpg?lastWrite=637348968959082130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5ca8e3a91b1c9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-04-20T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":6889630710,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-06-14T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7069360107,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-08-27T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":12955547915,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Aggretsuko","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":15,"tvdbId":346744,"tvRageId":0,"tvMazeId":35565,"firstAired":"2018-04-20T00:00:00Z","seriesType":"standard","cleanTitle":"aggretsuko","imdbId":"tt8019444","titleSlug":"aggretsuko","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Anime","Comedy"],"tags":[],"added":"2018-04-27T23:17:33.9610932Z","ratings":{"votes":58,"value":10.0},"statistics":{"seasonCount":3,"episodeFileCount":30,"episodeCount":30,"totalEpisodeCount":31,"sizeOnDisk":26914538732,"percentOfEpisodes":100.0},"id":27},{"title":"Hellsing Ultimate","alternateTitles":[{"title":"Hellsing Ultimate OVA","sceneSeasonNumber":-1},{"title":"Hellsing (2006)","sceneSeasonNumber":-1}],"sortTitle":"hellsing ultimate","status":"ended","ended":true,"overview":"Hellsing is named after and centered around the Royal Order of Protestant Knights, originally led by Abraham Van Helsing. The mission of Hellsing is to search for and destroy the undead and other supernatural forces of evil that threaten the queen and the country. This organization is currently led by Sir Integra Fairbrook Wingates Hellsing, who inherited the leadership of Hellsing as a child after the death of her father. She witnessed his death which turned her from a once innocent and shy little girl to a tough and deadly force. She is protected by the faithful Hellsing family butler and former Hellsing \"trashman\" Walter C. Dornez, a deadly foe in his own right, and Alucard, the original and most powerful vampire that swore loyalty to the Hellsing family after being defeated by Van Helsing one hundred years before the story takes place. These formidable guardians are joined early on in the storyline by former police officer Seras Victoria, whom Alucard turned into a vampire.\r\n\r\nAs the scale and frequency of incidents involving the undead escalate in England and all around the world, Sir Integra discovers that the remnants of a neo-Nazi group called Millennium still exist and are intent on reviving the Third Reich by creating a battalion of vampires. Millennium, Hellsing, and the Vatican section XIII Iscariot clash in an apocalyptic three-sided war in London, and Millennium reveals its true objective: to destroy the vampire lord Alucard, ending a feud begun during World War II.","previousAiring":"2012-12-25T15:00:00Z","network":"Anime OAV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/28\/banner.jpg?lastWrite=636747176367465140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/263688-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/28\/poster.jpg?lastWrite=637566904295874200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/263688\/posters\/6090341a0a2cf.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/28\/fanart.jpg?lastWrite=636747176365105190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/263688-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-12-25T15:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":57065122636,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Hellsing Ultimate","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":263688,"tvRageId":29109,"tvMazeId":26,"firstAired":"2006-05-12T00:00:00Z","seriesType":"standard","cleanTitle":"hellsingultimate","imdbId":"tt0495212","titleSlug":"hellsing-ultimate","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Fantasy","Horror"],"tags":[],"added":"2018-05-01T16:07:12.2720825Z","ratings":{"votes":459,"value":8.8},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":14,"sizeOnDisk":57065122636,"percentOfEpisodes":100.0},"id":28},{"title":"Hellsing","alternateTitles":[],"sortTitle":"hellsing","status":"ended","ended":true,"overview":"Hellsing is a Japanese manga series written and illustrated by Kouta Hirano. An Anime Series was produced by Gonzo. Directed by Umanosuke Iida, and it was broadcast on Japan's Fuji Televison. \/\/ Plot: Vampires exist. It is the duty of Hellsing, an organization sponsored by the British government, to hide that frightening fact and protect the blissfully unaware populace. Along with its own personal army, Hellsing also has a few secret weapons. Alucard, an incredibly powerful vampire, has been controlled by Hellsing for years. Although he dislikes being a servant to the Hellsing family, he certainly enjoys his job as Hellsing\u2019s vampire exterminator. Seras is a fledgling vampire and a former police woman. Although reluctant to embrace her new self, she is still a valuable member of the organization. Integra Hellsing, the current leader, is usually fully capable of fulfilling her duty, but lately, vampire activity has been on the rise. Unfortunately, the cause is more alarming than anything she could have imagined...","previousAiring":"2002-01-16T03:00:00Z","network":"Fuji TV","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/29\/banner.jpg?lastWrite=636747176358665330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71278-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/29\/poster.jpg?lastWrite=637103832838751230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71278-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/29\/fanart.jpg?lastWrite=637103832813751680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71278-14.jpg"}],"seasons":[{"seasonNumber":1,"monitored":false,"statistics":{"previousAiring":"2002-01-16T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2563164125,"percentOfEpisodes":100.0}}],"year":2001,"path":"\/tv\/Hellsing","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":71278,"tvRageId":0,"tvMazeId":25,"firstAired":"2001-10-10T00:00:00Z","seriesType":"standard","cleanTitle":"hellsing","imdbId":"tt0325547","titleSlug":"hellsing","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Fantasy","Horror"],"tags":[],"added":"2018-05-01T16:07:42.7391529Z","ratings":{"votes":2007,"value":7.9},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2563164125,"percentOfEpisodes":100.0},"id":29},{"title":"Hellsing: The Dawn","alternateTitles":[],"sortTitle":"hellsing dawn","status":"ended","ended":true,"overview":"Hellsing is a Japanese manga series written and illustrated by Kouta Hirano. Hirano began publishing chapter of prequel series, Hellsing: The Dawn, in special edition of Young KIng OURs. and release as of September 2008. \/\/ Plot: In this prequel to Hellsing Ultimate (2006), Hellsing agents Alucard and young Walter, the resourceful Hellsing family butler, are sent to Nazi-occupied Europe in 1944 to stop the Nazis' attempt to create a vampire army.","previousAiring":"2012-12-25T15:00:00Z","network":"Anime OAV","airTime":"00:00","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/30\/poster.jpg?lastWrite=637644943818376740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/333548\/posters\/60fafc5cd613f.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/30\/fanart.jpg?lastWrite=636747176359025320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5baffddb351e7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-12-25T15:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":861821155,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Hellsing - The Dawn","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":333548,"tvRageId":0,"tvMazeId":0,"firstAired":"2011-07-27T00:00:00Z","seriesType":"standard","cleanTitle":"hellsingdawn","imdbId":"tt2878716","titleSlug":"hellsing-the-dawn","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Fantasy","Horror"],"tags":[],"added":"2018-05-01T16:08:01.3931332Z","ratings":{"votes":29,"value":7.0},"statistics":{"seasonCount":1,"episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":861821155,"percentOfEpisodes":100.0},"id":30},{"title":"Avatar: The Last Airbender","alternateTitles":[{"title":"Avatar","sceneSeasonNumber":-1},{"title":"Avatar \u2013 Der Herr der Elemente","sceneSeasonNumber":-1},{"title":"Avatar","seasonNumber":-1}],"sortTitle":"avatar last airbender","status":"ended","ended":true,"overview":"With the Fire Nation on the brink of global domination, a young boy reawakens after a hundred-year absence. To save his war-torn world he must accept his destiny as the Avatar before it's too late.","previousAiring":"2008-07-20T01:00:00Z","network":"Nickelodeon","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/31\/banner.jpg?lastWrite=637103832307920850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/74852-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/31\/poster.jpg?lastWrite=637103832310720800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/74852-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/31\/fanart.jpg?lastWrite=637103832305160900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/74852-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":20,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-12-03T02:25:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46964751798,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-12-02T02:25:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46964586195,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2008-07-20T01:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":49310186161,"percentOfEpisodes":100.0}}],"year":2005,"path":"\/tv\/Avatar- The Last Airbender","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":74852,"tvRageId":2680,"tvMazeId":555,"firstAired":"2005-02-21T00:00:00Z","seriesType":"standard","cleanTitle":"avatarlastairbender","imdbId":"tt0417299","titleSlug":"avatar-the-last-airbender","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children","Drama","Fantasy","Martial Arts"],"tags":[],"added":"2018-05-31T16:45:18.56614Z","ratings":{"votes":6983,"value":9.0},"statistics":{"seasonCount":3,"episodeFileCount":61,"episodeCount":61,"totalEpisodeCount":81,"sizeOnDisk":143239524154,"percentOfEpisodes":100.0},"id":31},{"title":"Made in Abyss","alternateTitles":[],"sortTitle":"made in abyss","status":"ended","ended":true,"overview":"The \u201cAbyss\u201d is the last unexplored region, an enormous and treacherous cave system filled with ancient relics and strange creatures. Only the bravest of adventurers can traverse its depths, earning them the nickname, \u201cCave Raiders.\u201d Within the depths of the Abyss, a girl named Riko stumbles upon a robot who looks like a young boy. Tantalized by the Abyss, Riko and her new friend descend into uncharted territory to unlock its mysteries, but what lies in wait for them in the darkness?","previousAiring":"2020-01-16T15:00:00Z","network":"AT-X","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/32\/banner.jpg?lastWrite=637593809147770050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/326109\/banners\/60abdc7d0adb8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/32\/poster.jpg?lastWrite=637100123891633750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/326109-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/32\/fanart.jpg?lastWrite=637401432038020280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/326109\/backgrounds\/5f7db7dacdc04.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2020-01-16T15:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":7,"sizeOnDisk":26998073648,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-09-28T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":18076901217,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Made in Abyss","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":326109,"tvRageId":0,"tvMazeId":28675,"firstAired":"2017-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"madeinabyss","imdbId":"tt7222086","titleSlug":"made-in-abyss","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Comedy","Drama","Fantasy","Mystery","Science Fiction"],"tags":[],"added":"2018-06-04T18:26:46.6695323Z","ratings":{"votes":181,"value":9.6},"statistics":{"seasonCount":2,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":21,"sizeOnDisk":45074974865,"percentOfEpisodes":100.0},"id":32},{"title":"Blue Exorcist","alternateTitles":[{"title":"Ao no Exorcist","sceneSeasonNumber":1},{"title":"Ao no Exorcist - Kyoto Fujouou-hen","sceneSeasonNumber":2},{"title":"Ao no Exorcist","seasonNumber":-1}],"sortTitle":"blue exorcist","status":"ended","ended":true,"overview":"Humans live in the world of Assiah, demons in Gehenna. The two dimensions are not meant to interfere with each other, but demons still possess creatures in Assiah in spite of this. The humans who can fight these demons are known as exorcists. Rin Okumura is a boy who bears the curse of being Satan's illegitimate son. His foster father sacrificed himself to save him from demons. To avenge his foster father's death as well as to prove himself, Rin decides to follow the path of an exorcist and defeat his own father, Satan. To hone his raw skills, Rin enters True Cross Academy to train with other exorcist candidates.","previousAiring":"2011-10-01T17:00:00Z","network":"Tokyo Broadcasting System","airTime":"02:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/33\/banner.jpg?lastWrite=636747176290946810","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/248035-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/33\/poster.jpg?lastWrite=636747176291546790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/248035-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/33\/fanart.jpg?lastWrite=637103832389319370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/248035-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-10-01T17:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":67907893304,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2011,"path":"\/tv\/Blue Exorcist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":248035,"tvRageId":28088,"tvMazeId":5896,"firstAired":"2011-04-17T00:00:00Z","seriesType":"standard","cleanTitle":"blueexorcist","imdbId":"tt1799631","titleSlug":"blue-exorcist","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Comedy","Drama","Fantasy","Horror","Mystery"],"tags":[],"added":"2018-06-06T19:38:53.6002844Z","ratings":{"votes":4507,"value":7.9},"statistics":{"seasonCount":2,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":51,"sizeOnDisk":67907893304,"percentOfEpisodes":100.0},"id":33},{"title":"Saga of Tanya the Evil","alternateTitles":[{"title":"Youjo Senki","sceneSeasonNumber":-1}],"sortTitle":"saga tanya evil","status":"ended","ended":true,"overview":"On the front lines of the war, there is a little girl. Blond hair, blue eyes, and porcelain white skin, she commands her squad with lisping voice. Her name is Tanya Degurechaff. But in reality, she is one of Japan's most elite salarymen, reborn as a little girl into a world of magical warfare after angering a mysterious being who calls himself God.\r\nTanya resolves to ascend the ranks of her country's military as it slowly plunges into world war, with only Being X proving to be the strongest obstacle in recreating the peaceful life she once knew. But her perceptive actions and combat initiative have an unintended side effect: propelling the mighty Empire into becoming one of the most powerful nations in mankind's history.","previousAiring":"2017-03-31T13:00:00Z","network":"AT-X","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/34\/banner.jpg?lastWrite=636747176452583300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/315500-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/34\/poster.jpg?lastWrite=637618943556289870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/315500\/posters\/60d1cf343f374.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/34\/fanart.jpg?lastWrite=636747176449503360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/315500-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":17,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-03-31T13:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":7646398274,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Saga of Tanya the Evil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":24,"tvdbId":315500,"tvRageId":0,"tvMazeId":22852,"firstAired":"2017-01-06T00:00:00Z","seriesType":"standard","cleanTitle":"sagatanyaevil","imdbId":"tt6455986","titleSlug":"saga-of-tanya-the-evil","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Fantasy","War"],"tags":[],"added":"2018-06-06T19:39:08.8994824Z","ratings":{"votes":161,"value":8.8},"statistics":{"seasonCount":2,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":30,"sizeOnDisk":7646398274,"percentOfEpisodes":100.0},"id":34},{"title":"Kabaneri of the Iron Fortress","alternateTitles":[{"title":"Koutetsujou no Kabaneri","sceneSeasonNumber":-1}],"sortTitle":"kabaneri iron fortress","status":"ended","ended":true,"overview":"As the world is in the middle of an industrial revolution, a monster appears that cannot be defeated unless its heart, which is protected by a layer of iron, is pierced. By infecting humans with its bite, the monster can create aggressive and undead creatures known as Kabane. On the island Hinomoto, located in the far east, people have built stations to shelter themselves from these creatures. People access the station, as well as transport wares between them, with the help of a locomotive running on steam, called Hayajiro.","previousAiring":"2016-06-30T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/35\/banner.jpg?lastWrite=637103832871390640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/305082\/banners\/62006011.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/35\/poster.jpg?lastWrite=637566904368953730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/305082\/posters\/6092f88a424d8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/35\/fanart.jpg?lastWrite=636747176373945000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/305082-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-06-30T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":5495790549,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Kabaneri of the Iron Fortress","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":305082,"tvRageId":0,"tvMazeId":13688,"firstAired":"2016-04-08T00:00:00Z","seriesType":"standard","cleanTitle":"kabaneriironfortress","imdbId":"tt5556656","titleSlug":"kabaneri-of-the-iron-fortress","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Drama","Fantasy"],"tags":[],"added":"2018-06-06T21:37:54.1135183Z","ratings":{"votes":135,"value":9.6},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":17,"sizeOnDisk":5495790549,"percentOfEpisodes":100.0},"id":35},{"title":"The Expanse","alternateTitles":[],"sortTitle":"expanse","status":"continuing","ended":false,"overview":"Two hundred years in the future, in a fully colonized solar system, police detective Josephus Miller is given the assignment to find a missing young woman, Julie Mao. Joining his task is James Holden, former first officer of an ice freighter who is involved in an incident caused by the tense relationship between Earth, Mars and the Belt. Far from their struggles in space, United Nations executive Chrisjen Avasarala works to prevent war between Earth and Mars. Soon the three find out that the missing woman is connected to a vast conspiracy that threatens all humanity.","previousAiring":"2021-02-03T05:00:00Z","network":"Amazon","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/36\/banner.jpg?lastWrite=637100123767236060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/280619-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/36\/poster.jpg?lastWrite=637542199157544780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/280619\/posters\/5fb57f092724a.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/36\/fanart.jpg?lastWrite=637305614191475090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/280619\/backgrounds\/5f109932e994a.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":35,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-02-02T05:44:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":35188358086,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-04-19T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45717898879,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-06-27T04:44:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45654591605,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-12-13T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":54842514675,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2021-02-03T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":29887562178,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/The Expanse","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":44,"tvdbId":280619,"tvRageId":0,"tvMazeId":1825,"firstAired":"2015-12-14T00:00:00Z","seriesType":"standard","cleanTitle":"theexpanse","imdbId":"tt3230854","titleSlug":"the-expanse","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-07-04T18:54:08.7961941Z","ratings":{"votes":2720,"value":8.7},"statistics":{"seasonCount":5,"episodeFileCount":56,"episodeCount":56,"totalEpisodeCount":91,"sizeOnDisk":211290925423,"percentOfEpisodes":100.0},"id":36},{"title":"DuckTales (2017)","alternateTitles":[{"title":"La bande \u00e0 Picsou (2017) ","seasonNumber":-1}],"sortTitle":"ducktales 2017","status":"ended","ended":true,"overview":"Ducktales are the adventures of billionaire Scrooge McDuck and his nephews Huey, Dewey and Louie, their famous uncle Donald Duck, pilot extraordinaire Launchpad, Mrs. Beakly, Webby and Gizmoduck. Adventures and hidden treasures are everywhere, in their hometown Duckburg and all around the world.","previousAiring":"2021-03-15T23:00:00Z","network":"Disney XD","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/37\/banner.jpg?lastWrite=637100123750236380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/330134-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/37\/poster.jpg?lastWrite=637100123752436330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/330134-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/37\/fanart.jpg?lastWrite=637100123748396410","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/330134-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":21,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-08-18T23:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":17530573238,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-09-12T23:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":20680394845,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-03-15T23:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":19243779591,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/DuckTales (2017)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":330134,"tvRageId":0,"tvMazeId":19621,"firstAired":"2017-08-12T00:00:00Z","seriesType":"standard","cleanTitle":"ducktales2017","imdbId":"tt5531466","titleSlug":"ducktales-2017","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children","Family"],"tags":[],"added":"2018-07-31T01:28:58.2807303Z","ratings":{"votes":560,"value":9.3},"statistics":{"seasonCount":3,"episodeFileCount":69,"episodeCount":69,"totalEpisodeCount":90,"sizeOnDisk":57454747674,"percentOfEpisodes":100.0},"id":37},{"title":"Disenchantment","alternateTitles":[{"title":"D\u00e9senchant\u00e9e","seasonNumber":-1},{"title":"(Des)encanto","seasonNumber":-1},{"title":"Des-encanto","seasonNumber":-1},{"title":"Disenchantment 2018","seasonNumber":-1},{"title":"(Des)Encanto","seasonNumber":-1},{"title":"Disincanto","seasonNumber":-1}],"sortTitle":"disenchantment","status":"continuing","ended":false,"overview":"Princess duties call, but she'd rather be drinking. Free-spirited Bean exasperates the king as she wreaks havoc with her demon and elf pals.","previousAiring":"2021-01-15T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/38\/banner.jpg?lastWrite=637103154812139950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/340234\/banners\/61998124.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/38\/poster.jpg?lastWrite=637103154816099880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b098c74bacc0.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/38\/fanart.jpg?lastWrite=637437288462631730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b0582cf9d47e.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-09-20T07:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":16482663765,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-01-15T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9854525699,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Disenchantment","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":29,"tvdbId":340234,"tvRageId":0,"tvMazeId":30715,"firstAired":"2018-08-17T00:00:00Z","seriesType":"standard","cleanTitle":"disenchantment","imdbId":"tt5363918","titleSlug":"disenchantment","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy","Fantasy"],"tags":[],"added":"2018-08-26T14:57:43.5471693Z","ratings":{"votes":27,"value":9.0},"statistics":{"seasonCount":2,"episodeFileCount":30,"episodeCount":30,"totalEpisodeCount":30,"sizeOnDisk":26337189464,"percentOfEpisodes":100.0},"id":38},{"title":"Bravest Warriors","alternateTitles":[],"sortTitle":"bravest warriors","status":"ended","ended":true,"overview":"Four teenage heroes-for-hire warp through the universe to save adorable aliens and their worlds using the power of their emotions.","previousAiring":"2018-02-23T05:10:00Z","network":"VRV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/39\/banner.jpg?lastWrite=637100123667157920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/263975-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/39\/poster.jpg?lastWrite=637100123669157880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/263975-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/39\/fanart.jpg?lastWrite=637100123665037960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/263975-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":39,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-07-18T04:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1499951093,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2014-06-12T04:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1400872256,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-03-07T05:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":1270814067,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":false,"statistics":{"previousAiring":"2018-02-23T05:10:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":52,"sizeOnDisk":1317889883,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Bravest Warriors","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":263975,"tvRageId":33972,"tvMazeId":5236,"firstAired":"2012-11-08T00:00:00Z","seriesType":"standard","cleanTitle":"bravestwarriors","imdbId":"tt2474952","titleSlug":"bravest-warriors","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2018-10-05T17:52:02.7061921Z","ratings":{"votes":377,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":121,"sizeOnDisk":5489527299,"percentOfEpisodes":100.0},"id":39},{"title":"Hilda","alternateTitles":[],"sortTitle":"hilda","status":"continuing","ended":false,"overview":"Fearless, free-spirited Hilda finds new friends, adventure and magical creatures when she leaves her enchanted forest home and journeys to the city.","previousAiring":"2020-12-14T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/40\/banner.jpg?lastWrite=637102721911460050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5b9e158e16ba0.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/40\/poster.jpg?lastWrite=637413570236673740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c48791cdc64c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/40\/fanart.jpg?lastWrite=637100123855674420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b34ab6384219.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-09-21T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9461679576,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-12-14T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":10052499922,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Hilda","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":24,"tvdbId":349643,"tvRageId":0,"tvMazeId":25910,"firstAired":"2018-09-21T00:00:00Z","seriesType":"standard","cleanTitle":"hilda","imdbId":"tt6385540","titleSlug":"hilda","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Family"],"tags":[],"added":"2018-10-05T18:48:05.1153896Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":19514179498,"percentOfEpisodes":100.0},"id":40},{"title":"Serial Experiments Lain","alternateTitles":[],"sortTitle":"serial experiments lain","status":"ended","ended":true,"overview":"The best description for this intelligent, erudite, confusing and chilling anime from the late 1990s is \"creepy cool seinen cyberpunk.\" Serial Experiments Lain takes an information-rich dive deep into the nature of reality and truth, and in the process leads viewers to come up with their own conclusions about the meaning of the show, the meaning of reality, and even what actually happens in both. Much of the plot development is orthogonal to the viewer, sometimes seen but often simply implied, requiring viewers to think about and draw their own conclusions about what is happening. A fair amount of information is obscured or distorted, challenging viewers to impose their own interpretation on even the most self-evident aspects of the show.","previousAiring":"1998-09-27T15:00:00Z","network":"TV Tokyo","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/41\/banner.jpg?lastWrite=636747176454303260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78814-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/41\/poster.jpg?lastWrite=636993493341204850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78814-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/41\/fanart.jpg?lastWrite=637103833329062340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78814-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1998-09-27T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5139823674,"percentOfEpisodes":100.0}}],"year":1998,"path":"\/tv\/Serial Experiments Lain","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":78814,"tvRageId":0,"tvMazeId":1938,"firstAired":"1998-07-06T00:00:00Z","seriesType":"standard","cleanTitle":"serialexperimentslain","imdbId":"tt0500092","titleSlug":"serial-experiments-lain","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Science Fiction"],"tags":[],"added":"2018-10-06T01:32:28.4411292Z","ratings":{"votes":3070,"value":8.3},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5139823674,"percentOfEpisodes":100.0},"id":41},{"title":"Gravity Falls","alternateTitles":[],"sortTitle":"gravity falls","status":"ended","ended":true,"overview":"Twin brother and sister Dipper and Mabel Pines are in for an unexpected adventure when they spend the summer helping their Great Uncle Stan run a tourist trap in the mysterious town of Gravity Falls, Oregon.","previousAiring":"2016-02-16T02:30:00Z","network":"Disney XD","airTime":"21:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/42\/banner.jpg?lastWrite=636930993180633820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/259972-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/42\/poster.jpg?lastWrite=636747176356945370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/259972-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/42\/fanart.jpg?lastWrite=637103832760192650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/259972-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":60,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-08-03T01:30:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":10285396420,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-02-16T02:30:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":10953649902,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Gravity Falls","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":259972,"tvRageId":31839,"tvMazeId":396,"firstAired":"2012-06-15T00:00:00Z","seriesType":"standard","cleanTitle":"gravityfalls","imdbId":"tt1865718","titleSlug":"gravity-falls","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Comedy","Family","Fantasy"],"tags":[],"added":"2018-10-08T02:24:30.2492462Z","ratings":{"votes":1758,"value":9.3},"statistics":{"seasonCount":2,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":100,"sizeOnDisk":21239046322,"percentOfEpisodes":100.0},"id":42},{"title":"Invader ZIM","alternateTitles":[],"sortTitle":"invader zim","status":"ended","ended":true,"overview":"Invader ZIM is an eccentric alien soldier from the planet Irk. He was banished from the Irken Empire after nearly destroying his home planet on an early mission. After begging his superiors, the Almighty Tallest Red and Purple, for another chance, they decide to get rid of him once and for all. They trick him into going on a \"secret mission\" to an obscure planet at the edge of the universe, a planet with the unlikely name of Earth, in hopes that he'll die along the way. But their trick backfires when ZIM safely reaches Earth and begins his ever-so-subtle conquest of it. He disguises himself as a schoolboy, and now the only person who can stop him is one kid - Dib, a somewhat insane paranormal researcher, who sees straight through ZIM's disguise and is intent on stopping his reign of \"terror\". The only problem is that neither of them is very good at stopping the other.","previousAiring":"2006-08-19T18:30:00Z","network":"Nickelodeon","airTime":"14:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/43\/banner.jpg?lastWrite=636747176370865070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75545-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/43\/poster.jpg?lastWrite=637103832854270950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75545-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/43\/fanart.jpg?lastWrite=637103832850191020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75545-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2000-11-12T19:30:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":5,"sizeOnDisk":248214073,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-09-28T18:30:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":4559541922,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-08-19T18:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":1651881679,"percentOfEpisodes":100.0}}],"year":2001,"path":"\/tv\/Invader Zim","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":75545,"tvRageId":3985,"tvMazeId":409,"firstAired":"2001-03-30T00:00:00Z","seriesType":"standard","cleanTitle":"invaderzim","imdbId":"tt0235923","titleSlug":"invader-zim","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children","Comedy","Horror","Science Fiction"],"tags":[],"added":"2018-10-09T00:50:29.1091764Z","ratings":{"votes":1563,"value":9.4},"statistics":{"seasonCount":2,"episodeFileCount":47,"episodeCount":47,"totalEpisodeCount":51,"sizeOnDisk":6459637674,"percentOfEpisodes":100.0},"id":43},{"title":"Bob's Burgers","alternateTitles":[{"title":"Bob Burger Falodaja","seasonNumber":-1},{"title":"Bobs Burger","seasonNumber":-1}],"sortTitle":"bobs burgers","status":"continuing","ended":false,"overview":"Bob's Burgers follows a third-generation restaurateur, Bob, as he runs Bob's Burgers with the help of his wife and their three kids. Bob and his quirky family have big ideas about burgers, but fall short on service and sophistication. Despite the greasy counters, lousy location and a dearth of customers, Bob and his family are determined to make Bob's Burgers \"grand re-re-re-opening\" a success.","nextAiring":"2021-09-27T01:00:00Z","previousAiring":"2021-05-24T01:00:00Z","network":"FOX","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/45\/banner.jpg?lastWrite=637100123642678370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/194031-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/45\/poster.jpg?lastWrite=637103587741165020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/194031-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/45\/fanart.jpg?lastWrite=637100123640198420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/194031-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-05-23T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9870913310,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-05-21T01:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":7708557241,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2013-05-13T01:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":20273225498,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2014-05-19T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":4008882980,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2015-05-18T01:22:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":17966406688,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2016-05-23T01:22:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":16129777412,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2017-06-12T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":10809458788,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2018-05-21T01:22:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":10552605207,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2019-05-13T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12571202502,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2020-05-18T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12176428178,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2021-05-24T01:00:00Z","episodeFileCount":21,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12074237956,"percentOfEpisodes":95.45454545454545}},{"seasonNumber":12,"monitored":true,"statistics":{"nextAiring":"2021-09-27T01:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2011,"path":"\/tv\/Bob's Burgers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":194031,"tvRageId":24607,"tvMazeId":107,"firstAired":"2011-01-09T00:00:00Z","seriesType":"standard","cleanTitle":"bobsburgers","imdbId":"tt1561755","titleSlug":"bobs-burgers","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2017-12-02T19:56:00.3837665Z","ratings":{"votes":2616,"value":8.4},"statistics":{"seasonCount":12,"episodeFileCount":215,"episodeCount":216,"totalEpisodeCount":222,"sizeOnDisk":134141695760,"percentOfEpisodes":99.53703703703704},"id":45},{"title":"Sherlock","alternateTitles":[],"sortTitle":"sherlock","status":"ended","ended":true,"overview":"Sherlock Holmes and his partner Dr. John Watson solve crimes in 21st century London.","previousAiring":"2017-01-15T21:00:00Z","network":"BBC One","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/47\/banner.jpg?lastWrite=637103833337902180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/176941-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/47\/poster.jpg?lastWrite=637103833340942130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/176941-17.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/47\/fanart.jpg?lastWrite=637103833335342230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/176941-41.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2013-12-24T21:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":9,"sizeOnDisk":169092304,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-08-08T20:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":21138702911,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-01-15T21:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":19955553030,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2014-01-12T21:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":21122711671,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-01-15T21:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":21125148585,"percentOfEpisodes":100.0}}],"year":2010,"path":"\/tv\/Sherlock","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":90,"tvdbId":176941,"tvRageId":23433,"tvMazeId":335,"firstAired":"2010-07-25T00:00:00Z","seriesType":"standard","cleanTitle":"sherlock","imdbId":"tt1475582","titleSlug":"sherlock","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Drama","Suspense"],"tags":[],"added":"2017-12-02T19:57:02.4261608Z","ratings":{"votes":18143,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":21,"sizeOnDisk":83511208501,"percentOfEpisodes":100.0},"id":47},{"title":"Supernatural","alternateTitles":[{"title":"Sobrenatural","seasonNumber":-1}],"sortTitle":"supernatural","status":"ended","ended":true,"overview":"Two brothers follow their father's footsteps as hunters, fighting evil supernatural beings of many kinds, including monsters, demons and gods that roam the earth.","previousAiring":"2020-11-20T01:00:00Z","network":"The CW","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/48\/banner.jpg?lastWrite=637100124371784840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78901-g31.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/48\/poster.jpg?lastWrite=637592942404993530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78901-26.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/48\/fanart.jpg?lastWrite=637144286302636820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78901-95.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2015-07-13T00:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":6,"sizeOnDisk":1546068968,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-05-05T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":33163519621,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-05-18T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":26110543433,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2008-05-16T00:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":18561706971,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2009-05-15T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":34654313645,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2010-05-14T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12071725795,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2011-05-21T00:42:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":28890559863,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2012-05-19T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":26804606053,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2013-05-16T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28913772894,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2014-05-21T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28934243605,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2015-05-21T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":30067022293,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2016-05-26T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":29192624153,"percentOfEpisodes":100.0}},{"seasonNumber":12,"monitored":true,"statistics":{"previousAiring":"2017-05-19T00:42:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28586974958,"percentOfEpisodes":100.0}},{"seasonNumber":13,"monitored":true,"statistics":{"previousAiring":"2018-05-18T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":80896608371,"percentOfEpisodes":100.0}},{"seasonNumber":14,"monitored":true,"statistics":{"previousAiring":"2019-04-26T00:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70347334862,"percentOfEpisodes":100.0}},{"seasonNumber":15,"monitored":true,"statistics":{"previousAiring":"2020-11-20T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":72607184015,"percentOfEpisodes":100.0}}],"year":2005,"path":"\/tv\/Supernatural","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":42,"tvdbId":78901,"tvRageId":5410,"tvMazeId":19,"firstAired":"2005-09-13T00:00:00Z","seriesType":"standard","cleanTitle":"supernatural","imdbId":"tt0460681","titleSlug":"supernatural","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Horror"],"tags":[],"added":"2017-12-02T19:57:09.4109555Z","ratings":{"votes":14565,"value":9.0},"statistics":{"seasonCount":15,"episodeFileCount":329,"episodeCount":329,"totalEpisodeCount":333,"sizeOnDisk":551348809500,"percentOfEpisodes":100.0},"id":48},{"title":"The Simpsons","alternateTitles":[{"title":"Die Simpsons","seasonNumber":-1},{"title":"Les Simpson","seasonNumber":-1},{"title":"Los Simpson","seasonNumber":-1},{"title":"Los Simpsons","seasonNumber":-1},{"title":"The Simpsons QC","seasonNumber":-1}],"sortTitle":"simpsons","status":"continuing","ended":false,"overview":"Set in Springfield, the average American town, the show focuses on the antics and everyday adventures of the Simpson family; Homer, Marge, Bart, Lisa and Maggie, as well as a virtual cast of thousands. Since the beginning, the series has been a pop culture icon, attracting hundreds of celebrities to guest star. The show has also made name for itself in its fearless satirical take on politics, media and American life in general.","previousAiring":"2021-05-24T00:00:00Z","network":"Disney+","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/49\/banner.jpg?lastWrite=637100124227027520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71663-g13.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/49\/poster.jpg?lastWrite=637100124229747470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71663-15.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/49\/fanart.jpg?lastWrite=637100124225387550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71663-10.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":62,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1990-05-14T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":19670734562,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1991-07-12T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":31892564977,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"1992-08-28T00:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":22923056805,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"1993-05-14T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":26575786518,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"1994-05-20T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":24341590437,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"1995-05-22T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":26334586008,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"1996-05-20T00:25:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":21367264321,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"1997-05-19T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":25786680186,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"1998-05-18T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":14902478699,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"1999-05-17T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":22062115062,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2000-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":21058726199,"percentOfEpisodes":100.0}},{"seasonNumber":12,"monitored":true,"statistics":{"previousAiring":"2001-05-21T00:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":18129560516,"percentOfEpisodes":100.0}},{"seasonNumber":13,"monitored":true,"statistics":{"previousAiring":"2002-05-23T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":25790650316,"percentOfEpisodes":100.0}},{"seasonNumber":14,"monitored":true,"statistics":{"previousAiring":"2003-05-19T00:25:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6152659738,"percentOfEpisodes":100.0}},{"seasonNumber":15,"monitored":true,"statistics":{"previousAiring":"2004-05-24T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6533091684,"percentOfEpisodes":100.0}},{"seasonNumber":16,"monitored":true,"statistics":{"previousAiring":"2005-05-16T00:25:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":5693129416,"percentOfEpisodes":100.0}},{"seasonNumber":17,"monitored":true,"statistics":{"previousAiring":"2006-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6379840508,"percentOfEpisodes":100.0}},{"seasonNumber":18,"monitored":true,"statistics":{"previousAiring":"2007-05-21T00:25:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":24448368530,"percentOfEpisodes":100.0}},{"seasonNumber":19,"monitored":true,"statistics":{"previousAiring":"2008-05-19T00:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":20855610159,"percentOfEpisodes":100.0}},{"seasonNumber":20,"monitored":true,"statistics":{"previousAiring":"2009-05-18T00:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":5820998408,"percentOfEpisodes":100.0}},{"seasonNumber":21,"monitored":true,"statistics":{"previousAiring":"2010-05-24T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":17001379966,"percentOfEpisodes":100.0}},{"seasonNumber":22,"monitored":true,"statistics":{"previousAiring":"2011-05-23T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":11612689309,"percentOfEpisodes":100.0}},{"seasonNumber":23,"monitored":true,"statistics":{"previousAiring":"2012-05-21T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":8525764462,"percentOfEpisodes":100.0}},{"seasonNumber":24,"monitored":true,"statistics":{"previousAiring":"2013-05-20T00:25:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":20512442515,"percentOfEpisodes":100.0}},{"seasonNumber":25,"monitored":true,"statistics":{"previousAiring":"2014-05-19T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6698051412,"percentOfEpisodes":100.0}},{"seasonNumber":26,"monitored":true,"statistics":{"previousAiring":"2015-05-18T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":20175875491,"percentOfEpisodes":100.0}},{"seasonNumber":27,"monitored":true,"statistics":{"previousAiring":"2016-05-23T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":19523736886,"percentOfEpisodes":100.0}},{"seasonNumber":28,"monitored":true,"statistics":{"previousAiring":"2017-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":19862761717,"percentOfEpisodes":100.0}},{"seasonNumber":29,"monitored":true,"statistics":{"previousAiring":"2018-05-21T00:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":13927315560,"percentOfEpisodes":100.0}},{"seasonNumber":30,"monitored":true,"statistics":{"previousAiring":"2019-05-13T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":14556585129,"percentOfEpisodes":100.0}},{"seasonNumber":31,"monitored":true,"statistics":{"previousAiring":"2020-05-18T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":15831478797,"percentOfEpisodes":100.0}},{"seasonNumber":32,"monitored":true,"statistics":{"previousAiring":"2021-05-24T00:00:00Z","episodeFileCount":0,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":33,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":1989,"path":"\/tv\/The Simpsons","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":false,"useSceneNumbering":false,"runtime":25,"tvdbId":71663,"tvRageId":6190,"tvMazeId":83,"firstAired":"1989-12-17T00:00:00Z","seriesType":"standard","cleanTitle":"thesimpsons","imdbId":"tt0096697","titleSlug":"the-simpsons","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Comedy"],"tags":[],"added":"2017-12-02T19:57:24.2335003Z","ratings":{"votes":24136,"value":8.9},"statistics":{"seasonCount":33,"episodeFileCount":684,"episodeCount":706,"totalEpisodeCount":771,"sizeOnDisk":544947574293,"percentOfEpisodes":96.88385269121812},"id":49},{"title":"Futurama","alternateTitles":[],"sortTitle":"futurama","status":"ended","ended":true,"overview":"A late 20th-century New York City pizza delivery boy, Philip J. Fry, after being unwittingly cryogenically frozen for one thousand years, finds employment at Planet Express, an interplanetary delivery company in the 31st century.","previousAiring":"2013-09-05T02:00:00Z","network":"Comedy Central","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/50\/banner.jpg?lastWrite=637103832712473520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/249-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/50\/poster.jpg?lastWrite=636852615441045000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73871-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/50\/fanart.jpg?lastWrite=637103832709953560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73871-21.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1999-05-19T02:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":8186389285,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2000-05-22T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":13014013176,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2001-05-14T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":10947583412,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2002-04-22T02:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":8667732734,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2003-08-11T02:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":12081016243,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2011-09-09T02:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":25840323832,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2013-09-05T02:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":17227331947,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Futurama","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":73871,"tvRageId":3628,"tvMazeId":538,"firstAired":"1999-03-28T00:00:00Z","seriesType":"standard","cleanTitle":"futurama","imdbId":"tt0149460","titleSlug":"futurama","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2017-12-09T12:35:29.8439093Z","ratings":{"votes":17994,"value":8.8},"statistics":{"seasonCount":7,"episodeFileCount":124,"episodeCount":124,"totalEpisodeCount":130,"sizeOnDisk":95964390629,"percentOfEpisodes":100.0},"id":50},{"title":"The Lost Room","alternateTitles":[],"sortTitle":"lost room","status":"ended","ended":true,"overview":"The series revolves around the titular room and some of the everyday items from that room which possess unusual powers. The show's protagonist, Joe Miller, is searching for these objects to rescue his daughter, Anna, who has disappeared inside the Room. Once a typical room at a 1960s motel along U.S. Route 66, the Lost Room exists outside of normal time and space since 1961, when what is only referred to as \"the Event\" took place.","previousAiring":"2006-12-14T02:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/52\/banner.jpg?lastWrite=636747176386504730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79637-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/52\/poster.jpg?lastWrite=637191504639409850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79637-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/52\/fanart.jpg?lastWrite=636747176385544750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79637-4.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-12-14T02:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":4244857911,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/The Lost Room","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":90,"tvdbId":79637,"tvRageId":14688,"tvMazeId":503,"firstAired":"2006-12-11T00:00:00Z","seriesType":"standard","cleanTitle":"thelostroom","imdbId":"tt0830361","titleSlug":"the-lost-room","rootFolderPath":"\/tv\/","genres":["Drama","Mini-Series","Science Fiction"],"tags":[],"added":"2018-02-14T19:46:45.2364011Z","ratings":{"votes":1954,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":4244857911,"percentOfEpisodes":100.0},"id":52},{"title":"Neon Genesis Evangelion","alternateTitles":[],"sortTitle":"neon genesis evangelion","status":"ended","ended":true,"overview":"In the year 2015, the Angels, huge, tremendously powerful, alien war machines, appear in Tokyo for the second time. The only hope for Mankind's survival lies in the Evangelion, a humanoid fighting machine developed by NERV, a special United Nations agency. Capable of withstanding anything the Angels can dish out, the Evangelion's one drawback lies in the limited number of people able to pilot them. Only a handful of teenagers, all born fourteen years ago, nine months after the Angels first appeared, are able to interface with the Evangelion. One such teenager is Shinji Ikari, whose father heads the NERV team that developed and maintains the Evangelion. Thrust into a maelstrom of battle and events that he does not understand, Shinji is forced to plumb the depths of his own inner resources for the courage and strength to not only fight, but to survive, or risk losing everything.","previousAiring":"1996-03-27T11:00:00Z","network":"TV Tokyo","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/53\/banner.jpg?lastWrite=636747176413184150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/70350-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/53\/poster.jpg?lastWrite=637466344315618710","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/70350-9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/53\/fanart.jpg?lastWrite=637103833089746680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/70350-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1996-03-27T11:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11086484212,"percentOfEpisodes":100.0}}],"year":1995,"path":"\/tv\/Neon Genesis Evangelion","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":70350,"tvRageId":0,"tvMazeId":1925,"firstAired":"1995-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"neongenesisevangelion","imdbId":"tt0112159","titleSlug":"neon-genesis-evangelion","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Drama","Science Fiction"],"tags":[],"added":"2018-02-14T19:47:10.0193755Z","ratings":{"votes":14114,"value":8.8},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":32,"sizeOnDisk":11086484212,"percentOfEpisodes":100.0},"id":53},{"title":"Fringe","alternateTitles":[],"sortTitle":"fringe","status":"ended","ended":true,"overview":"An F.B.I. agent is forced to work with an institutionalized scientist and his son in order to rationalize a brewing storm of unexplained phenomena.","previousAiring":"2013-01-19T02:43:00Z","network":"FOX","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/54\/banner.jpg?lastWrite=636747176343865650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/82066-g20.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/54\/poster.jpg?lastWrite=637406633712366020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/82066-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/54\/fanart.jpg?lastWrite=637103832687753960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/82066-13.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":15,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-05-13T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":27235276979,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2010-05-21T01:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28136929089,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2011-05-07T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":28969167183,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2012-05-12T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":29250429931,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2013-01-19T02:43:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":17598550394,"percentOfEpisodes":100.0}}],"year":2008,"path":"\/tv\/Fringe","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":82066,"tvRageId":18388,"tvMazeId":158,"firstAired":"2008-09-09T00:00:00Z","seriesType":"standard","cleanTitle":"fringe","imdbId":"tt1119644","titleSlug":"fringe","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Drama","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-02-16T19:10:48.0033201Z","ratings":{"votes":21245,"value":8.7},"statistics":{"seasonCount":5,"episodeFileCount":100,"episodeCount":100,"totalEpisodeCount":115,"sizeOnDisk":131190353576,"percentOfEpisodes":100.0},"id":54},{"title":"Stargate SG-1","alternateTitles":[],"sortTitle":"stargate sg 1","status":"ended","ended":true,"overview":"This sequel to the 1994 movie Stargate chronicles the further adventures of SGC (Stargate Command). It turned out that the Goa'uld Ra was only one of many alien System Lords who used the Stargates to conquer much of the universe. When Earth uncovers a working cartouche to decipher the coding system of their own Stargate, they find they can now travel anywhere. Earth's military sends out SG teams to explore new planets, find technology, and oppose the Goa'uld. Jack O'Neill and Daniel Jackson from the original movie are part of SG-1. They are joined by Sam Carter, a scientist, and Teal'c, a Jaffa who is convinced the Goa'uld are not gods.","previousAiring":"2007-06-23T01:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/56\/banner.jpg?lastWrite=636747176476702770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/72449-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/56\/poster.jpg?lastWrite=637103833475379690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/72449-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/56\/fanart.jpg?lastWrite=636747176475862790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/72449-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1998-03-07T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":48880210407,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1999-03-13T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":55018636429,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2000-03-11T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":56743444556,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2001-02-24T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":48471162562,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2002-05-18T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":45820655014,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2003-03-22T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":11183850112,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2004-03-20T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":10918925810,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2005-03-26T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":62013216743,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2006-03-11T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":67470998316,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2007-06-23T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":61753415554,"percentOfEpisodes":100.0}}],"year":1997,"path":"\/tv\/Stargate SG-1","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":72449,"tvRageId":5325,"tvMazeId":204,"firstAired":"1997-07-27T00:00:00Z","seriesType":"standard","cleanTitle":"stargatesg1","imdbId":"tt0118480","titleSlug":"stargate-sg-1","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Fantasy","Science Fiction"],"tags":[],"added":"2018-04-23T17:31:22.0156467Z","ratings":{"votes":11558,"value":9.3},"statistics":{"seasonCount":10,"episodeFileCount":214,"episodeCount":214,"totalEpisodeCount":222,"sizeOnDisk":468274515503,"percentOfEpisodes":100.0},"id":56},{"title":"Ugly Americans","alternateTitles":[],"sortTitle":"ugly americans","status":"ended","ended":true,"overview":"Take New York City, add every horrifying beast, science-fiction freak, and fantasy faerie, shake thoroughly, and you've got UGLY AMERICANS. This animated horror-comedy series follows one Mark Lilly, social worker at the Department of Integration, as he helps new citizens both human and \"other\" adapt to hectic life in the Big Apple.\r\n\r\nThere are easier tasks than weaning vampires off of blood, socializing land-whales, and housebreaking werewolves, but Mark is up to the challenge. Between his stressful job, a zombie roommate, and a demon ex-girlfriend, Mark's lucky if he can sneak in a few minutes of sleep. But who can sleep when there's a drop-dead gorgeous Mermaid sitting at the bar?","previousAiring":"2012-04-26T01:00:00Z","network":"Comedy Central","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/57\/banner.jpg?lastWrite=637103833624616980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/150051-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/57\/poster.jpg?lastWrite=636747176506262140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/150051-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/57\/fanart.jpg?lastWrite=636747176503102200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/150051-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":7,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-11-18T02:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":11754022893,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-04-26T01:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":14011814540,"percentOfEpisodes":100.0}}],"year":2010,"path":"\/tv\/Ugly Americans","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":150051,"tvRageId":22711,"tvMazeId":4323,"firstAired":"2010-03-17T00:00:00Z","seriesType":"standard","cleanTitle":"uglyamericans","imdbId":"tt1621748","titleSlug":"ugly-americans","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2018-04-23T17:55:55.0838598Z","ratings":{"votes":942,"value":8.7},"statistics":{"seasonCount":2,"episodeFileCount":31,"episodeCount":31,"totalEpisodeCount":38,"sizeOnDisk":25765837433,"percentOfEpisodes":100.0},"id":57},{"title":"Stargate Atlantis","alternateTitles":[],"sortTitle":"stargate atlantis","status":"ended","ended":true,"overview":"The story of Stargate Atlantis follows the cliffhanger episode on Stargate SG-1's seventh season finale \"Lost City\", where SG-1 found an outpost made by the race known as the Ancients in Antarctica. After the events of Stargate SG-1 season eight premiere \"New Order\", the Stargate Command sends an international team to investigate the outpost. Soon, Dr. Daniel Jackson discovers the location of the greatest city created by the Ancients, Atlantis. The story unfolds when the members of the expedition encounter the Wraith, the race that defeated the Ancients ten thousand years ago.","previousAiring":"2009-01-10T02:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/58\/banner.jpg?lastWrite=637103833456460030","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/70851-g9.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/58\/poster.jpg?lastWrite=637103833459419980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/70851-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/58\/fanart.jpg?lastWrite=637103833454060070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/70851-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-03-26T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70358318807,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-01-31T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46923680996,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2007-06-23T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46912362318,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2008-03-08T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46914447039,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2009-01-10T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70860729505,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/Stargate Atlantis","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":70851,"tvRageId":5324,"tvMazeId":206,"firstAired":"2004-07-16T00:00:00Z","seriesType":"standard","cleanTitle":"stargateatlantis","imdbId":"tt0374455","titleSlug":"stargate-atlantis","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-04-25T08:52:58.5172537Z","ratings":{"votes":16844,"value":8.8},"statistics":{"seasonCount":5,"episodeFileCount":100,"episodeCount":100,"totalEpisodeCount":102,"sizeOnDisk":281969538665,"percentOfEpisodes":100.0},"id":58},{"title":"Breaking Bad","alternateTitles":[],"sortTitle":"breaking bad","status":"ended","ended":true,"overview":"When Walter White, a chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of two years left to live, he chooses to enter a dangerous world of drugs and crime with the intent to secure his family's financial security.","previousAiring":"2013-09-30T01:00:00Z","network":"Netflix","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/59\/banner.jpg?lastWrite=636747176301186580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81189-g21.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/59\/poster.jpg?lastWrite=637051064039764190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81189-10.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/59\/fanart.jpg?lastWrite=636747176299106630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81189-21.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":19,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2008-03-10T01:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":25395184315,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2009-06-01T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45739566239,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2010-06-14T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45764884182,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2011-10-10T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":40535998915,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2013-09-30T01:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":8035422773,"percentOfEpisodes":100.0}}],"year":2008,"path":"\/tv\/Breaking Bad","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":81189,"tvRageId":18164,"tvMazeId":169,"firstAired":"2008-01-20T00:00:00Z","seriesType":"standard","cleanTitle":"breakingbad","imdbId":"tt0903747","titleSlug":"breaking-bad","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Suspense","Thriller"],"tags":[],"added":"2018-05-01T09:35:11.5785155Z","ratings":{"votes":31714,"value":9.4},"statistics":{"seasonCount":5,"episodeFileCount":62,"episodeCount":62,"totalEpisodeCount":81,"sizeOnDisk":165471056424,"percentOfEpisodes":100.0},"id":59},{"title":"Castlevania","alternateTitles":[{"title":"Castlevania 2018","seasonNumber":-1}],"sortTitle":"castlevania","status":"ended","ended":true,"overview":"A vampire slayer fights to save a city besieged by an army of beasts controlled by Dracula. Series inspired by the classic video game.","previousAiring":"2021-05-13T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/60\/banner.jpg?lastWrite=637100123683197620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5bce3378a3e30.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/60\/poster.jpg?lastWrite=637100123685517580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/329065-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/60\/fanart.jpg?lastWrite=637100123681157660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/329065-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-07-07T07:00:00Z","episodeFileCount":4,"episodeCount":4,"totalEpisodeCount":4,"sizeOnDisk":9752827923,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-10-26T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10918879051,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-03-05T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":10977013441,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2021-05-13T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":6874990286,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Castlevania","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":329065,"tvRageId":0,"tvMazeId":25242,"firstAired":"2017-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"castlevania","imdbId":"tt6517102","titleSlug":"castlevania","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-06-24T16:03:23.901522Z","ratings":{"votes":222,"value":9.0},"statistics":{"seasonCount":4,"episodeFileCount":32,"episodeCount":32,"totalEpisodeCount":32,"sizeOnDisk":38523710701,"percentOfEpisodes":100.0},"id":60},{"title":"Better Call Saul","alternateTitles":[],"sortTitle":"better call saul","status":"continuing","ended":false,"overview":"See the rise of Jimmy McGill, a small-time lawyer searching for his destiny, but hustling to make ends meet. Working alongside, and often against Jimmy, is \u2018fixer\u2019 Mike Erhmantraut. The series tracks Jimmy's evolution into Saul Goodman, the man who puts the word \u2018criminal\u2019 in \u2018criminal lawyer\u2019.","previousAiring":"2020-04-21T01:00:00Z","network":"AMC","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/61\/banner.jpg?lastWrite=637100123618478820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/273181-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/61\/poster.jpg?lastWrite=637100123620598780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/273181-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/61\/fanart.jpg?lastWrite=637143852150405110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/273181-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":18,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-04-07T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":18115373802,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-04-19T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":42655964911,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-06-20T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":34855138761,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2018-10-09T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":40083504001,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2020-04-21T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":59412811250,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Better Call Saul","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":273181,"tvRageId":37780,"tvMazeId":618,"firstAired":"2015-02-08T00:00:00Z","seriesType":"standard","cleanTitle":"bettercallsaul","imdbId":"tt3032476","titleSlug":"better-call-saul","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama"],"tags":[],"added":"2018-07-04T20:28:39.7348872Z","ratings":{"votes":3686,"value":8.9},"statistics":{"seasonCount":5,"episodeFileCount":50,"episodeCount":50,"totalEpisodeCount":68,"sizeOnDisk":195122792725,"percentOfEpisodes":100.0},"id":61},{"title":"The Ren & Stimpy Show","alternateTitles":[],"sortTitle":"ren stimpy show","status":"ended","ended":true,"overview":"The show revolves around the lives of an angry, insane chihuahua named Ren H\u00f6ek and his brain-dead \"eediot\" sidekick cat, Stimpy. Together the duo have lots of bizarre and outrageous adventures accompanied by George Liquor, Mr. Horse, Powdered Toast Man, Muddy Mudskipper, Mr. and Mrs. Pipe, Mrs. Buttloaf, and Sv\u00ebn H\u00f6ek.","previousAiring":"1996-10-20T04:10:00Z","network":"Spike","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/62\/banner.jpg?lastWrite=637103833190264860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/3536-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/62\/poster.jpg?lastWrite=637461574518364140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/76088-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/62\/fanart.jpg?lastWrite=637103833186344930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/76088-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"1990-08-10T04:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":42,"sizeOnDisk":183560192,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1991-12-29T05:10:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1099319296,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1993-05-23T04:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":1651042304,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"1994-06-04T04:10:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":855341056,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"1995-04-01T05:10:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":1244045804,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"1996-10-20T04:10:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":1171187724,"percentOfEpisodes":100.0}}],"year":1991,"path":"\/tv\/The Ren and Stimpy Show","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":10,"tvdbId":76088,"tvRageId":6132,"tvMazeId":6328,"firstAired":"1991-08-11T00:00:00Z","seriesType":"standard","cleanTitle":"therenstimpyshow","imdbId":"tt0101178","titleSlug":"the-ren-and-stimpy-show","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Children","Comedy"],"tags":[],"added":"2018-07-08T09:20:09.1856875Z","ratings":{"votes":1171,"value":8.6},"statistics":{"seasonCount":5,"episodeFileCount":93,"episodeCount":93,"totalEpisodeCount":134,"sizeOnDisk":6204496376,"percentOfEpisodes":100.0},"id":62},{"title":"Courage the Cowardly Dog","alternateTitles":[{"title":"Courage der feige Hund","sceneSeasonNumber":-1},{"title":"Leone il cane fifone","seasonNumber":-1}],"sortTitle":"courage cowardly dog","status":"ended","ended":true,"overview":"This show is about a dog named Courage that was found by Muriel Bagge who lives on a farm in the middle of Nowhere with her husband Eustace Bagge. Eustace dislikes Courage and calls him \"Stupid Dog\". Muriel on the other hand is different from Eustace and loves Courage. But, weird things happen in Nowhere and it's now up to Courage to save them.","previousAiring":"2002-11-22T09:11:00Z","network":"Cartoon Network","airTime":"04:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/63\/banner.jpg?lastWrite=637103832484557650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/77435-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/63\/poster.jpg?lastWrite=636987048342454210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/77435-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/63\/fanart.jpg?lastWrite=636747176315986260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/77435-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"1996-02-18T09:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":4,"sizeOnDisk":62085120,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2000-03-30T09:11:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":2382528512,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2001-11-16T09:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":2384472080,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2002-08-09T08:11:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":2303544116,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2002-11-22T09:11:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":2297622528,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Courage the Cowardly Dog","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":11,"tvdbId":77435,"tvRageId":3151,"tvMazeId":1956,"firstAired":"1999-11-12T00:00:00Z","seriesType":"standard","cleanTitle":"couragecowardlydog","imdbId":"tt0220880","titleSlug":"courage-the-cowardly-dog","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children"],"tags":[],"added":"2018-07-08T09:21:09.7706853Z","ratings":{"votes":641,"value":9.1},"statistics":{"seasonCount":4,"episodeFileCount":103,"episodeCount":103,"totalEpisodeCount":106,"sizeOnDisk":9430252356,"percentOfEpisodes":100.0},"id":63},{"title":"Elfen Lied","alternateTitles":[],"sortTitle":"elfen lied","status":"ended","ended":true,"overview":"The diclonius, otherwise known as a two-horned human, are mutants of the human species, and may well be the next step in human evolution. The diclonius have horns and strong telekinetic powers represented by \"vectors\". However with this great power, they can easily destroy the human race. Fearful of their power, humans quarantined the diclonius into secret research facilities to study. However, in a freak accident, a enraged female diclonius escaped, killing many guards in the process. While escaping, she is shot in the head, and falls into the ocean. As a result she has waves of amnesia. Later, she washes ashore. There, she meets two people named Kouta and Yuka, who name the female diclonius \"Nyuu\", after the only word she can say. They decide to watch after her, but of course, the research facility can't have this, and begin trying to retrieve her by any means necessary.","previousAiring":"2005-04-20T15:00:00Z","network":"AT-X","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/65\/banner.jpg?lastWrite=637103832641754800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75941-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/65\/poster.jpg?lastWrite=636747176329665960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75941-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/65\/fanart.jpg?lastWrite=636747176325986040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75941-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2005-04-20T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":1,"sizeOnDisk":318606611,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-10-16T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4177316166,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/Elfen Lied","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":75941,"tvRageId":3430,"tvMazeId":2061,"firstAired":"2004-07-25T00:00:00Z","seriesType":"standard","cleanTitle":"elfenlied","imdbId":"tt0480489","titleSlug":"elfen-lied","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Drama","Horror"],"tags":[],"added":"2018-10-05T17:35:59.3449227Z","ratings":{"votes":11056,"value":8.2},"statistics":{"seasonCount":1,"episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4495922777,"percentOfEpisodes":100.0},"id":65},{"title":"Eureka","alternateTitles":[],"sortTitle":"eureka","status":"ended","ended":true,"overview":"The sleepy Pacific Northwest town of Eureka is hiding a mysterious secret. The government has been relocating the world\u2019s geniuses and their families to this rustic town for years where innovation and chaos have lived hand in hand. U.S. Marshal Jack Carter (Colin Ferguson) stumbles upon this odd town after wrecking his car and becoming stranded there. When the denizens of the town unleash an unknown scientific creation, Carter jumps in to try to restore order and consequently learns of one of the country\u2019s best kept secrets.","previousAiring":"2012-07-16T16:00:00Z","network":"Syfy","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/66\/banner.jpg?lastWrite=637103832649874650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79334-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/66\/poster.jpg?lastWrite=637103832652834600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79334-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/66\/fanart.jpg?lastWrite=637103832647154700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79334-5.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":9,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-10-03T16:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":45766388384,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-10-02T16:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45765569601,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-09-18T16:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":63363060716,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2011-12-06T17:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":34359840953,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2012-07-16T16:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45767172910,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Eureka","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":79334,"tvRageId":7506,"tvMazeId":542,"firstAired":"2006-07-18T00:00:00Z","seriesType":"standard","cleanTitle":"eureka","imdbId":"tt0796264","titleSlug":"eureka","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Science Fiction"],"tags":[],"added":"2018-10-05T17:36:44.5936695Z","ratings":{"votes":9779,"value":8.6},"statistics":{"seasonCount":5,"episodeFileCount":77,"episodeCount":77,"totalEpisodeCount":86,"sizeOnDisk":235022032564,"percentOfEpisodes":100.0},"id":66},{"title":"Heroes","alternateTitles":[],"sortTitle":"heroes","status":"ended","ended":true,"overview":"Heroes is a cult serial saga about people all over the world discovering that they have superpowers and trying to deal with how this change affects their lives. Not only are they discovering what having superpowers means to them but also the larger picture of where those powers come from and what they might mean to the rest of the world.","previousAiring":"2010-02-09T01:00:00Z","network":"NBC","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/74\/banner.jpg?lastWrite=636749716110860770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79501-g15.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/74\/poster.jpg?lastWrite=636749716111420760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79501-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/74\/fanart.jpg?lastWrite=636749716108580800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79501-18.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2006-07-22T00:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":34,"sizeOnDisk":2107876328,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-05-22T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":37539976979,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-12-04T01:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":45826381196,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-04-28T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":8789220217,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2010-02-09T01:00:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":66915670387,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Heroes","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":79501,"tvRageId":8172,"tvMazeId":134,"firstAired":"2006-09-25T00:00:00Z","seriesType":"standard","cleanTitle":"heroes","imdbId":"tt0813715","titleSlug":"heroes","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Science Fiction","Thriller"],"tags":[],"added":"2018-10-12T20:06:50.295095Z","ratings":{"votes":14673,"value":8.4},"statistics":{"seasonCount":4,"episodeFileCount":79,"episodeCount":79,"totalEpisodeCount":112,"sizeOnDisk":161179125107,"percentOfEpisodes":100.0},"id":74},{"title":"The Dragon Prince","alternateTitles":[{"title":"Le Prince des Dragons","seasonNumber":-1},{"title":"Il Principe dei Draghi","seasonNumber":-1},{"title":"Der Prinz der Drachen","seasonNumber":-1}],"sortTitle":"dragon prince","status":"continuing","ended":false,"overview":"The Dragon Prince, created by Aaron Ehasz (Avatar: The Last Airbender) and Justin Richmond, tells the story of two human princes who forge an unlikely bond with the elfin assassin sent to kill them, embarking on an epic quest to bring peace to their warring lands.","previousAiring":"2019-11-22T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/76\/banner.jpg?lastWrite=637102288884633770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350123\/banners\/62006033.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/76\/poster.jpg?lastWrite=637155979182281680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b9d17185d8fb.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/76\/fanart.jpg?lastWrite=637155979179681760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b5436c9864e5.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-09-14T07:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":3460003170,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-02-15T08:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":6706028599,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-11-22T08:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":10918623672,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/The Dragon Prince","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":350123,"tvRageId":0,"tvMazeId":37675,"firstAired":"2018-09-14T00:00:00Z","seriesType":"standard","cleanTitle":"thedragonprince","imdbId":"tt8688814","titleSlug":"the-dragon-prince","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Fantasy"],"tags":[],"added":"2018-10-13T03:52:02.904059Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":27,"episodeCount":27,"totalEpisodeCount":27,"sizeOnDisk":21084655441,"percentOfEpisodes":100.0},"id":76},{"title":"Over the Garden Wall","alternateTitles":[],"sortTitle":"over garden wall","status":"ended","ended":true,"overview":"Two brothers, Wirt and Greg, find themselves lost in the Unknown; a strange forest adrift in time. With the help of a wise old Woodsman and a foul-tempered bluebird named Beatrice, Wirt and Greg must travel across this strange land, in hope of finding their way home. Join them as they encounter surprises and obstacles on their journey through the wood.","previousAiring":"2014-11-11T05:00:00Z","network":"Cartoon Network","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/78\/banner.jpg?lastWrite=636750407465335340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/281643-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/78\/poster.jpg?lastWrite=636750407468655320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/281643-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/78\/fanart.jpg?lastWrite=636750407461655370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/281643-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2014-11-11T05:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":5,"sizeOnDisk":328727097,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-11-07T05:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4512228562,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Over the Garden Wall","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":281643,"tvRageId":41271,"tvMazeId":1744,"firstAired":"2014-11-03T00:00:00Z","seriesType":"standard","cleanTitle":"overgardenwall","imdbId":"tt3718778","titleSlug":"over-the-garden-wall","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Fantasy"],"tags":[],"added":"2018-10-13T15:18:49.40753Z","ratings":{"votes":335,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":15,"sizeOnDisk":4840955659,"percentOfEpisodes":100.0},"id":78},{"title":"Coil - A Circle of Children","alternateTitles":[],"sortTitle":"coil circle children","status":"ended","ended":true,"overview":"Eleven years after the introduction of internet-connected, augmented reality eyeglasses and visors, Y\u016bko Okonogi moves with her family to Daikoku City, the technological center of the emerging half-virtual world. Y\u016bko joins her grandmother's \"investigation agency\" comprised of children equipped with virtual tools and powerful metatags. She quickly crosses paths with Y\u016bko Amasawa, an expert hacker of the virtual environment, as Amasawa relentlessly seeks to \"unlock\" the mystery of a computer virus that emerges from an inaccessible corrupted space.","previousAiring":"2007-11-30T15:00:00Z","network":"NHK","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/79\/banner.jpg?lastWrite=637103832540396640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81037-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/79\/poster.jpg?lastWrite=637354605448927330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81037-9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/79\/fanart.jpg?lastWrite=637103832527116880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81037-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-11-30T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":9315619488,"percentOfEpisodes":100.0}}],"year":2007,"path":"\/tv\/Dennou Coil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":81037,"tvRageId":15607,"tvMazeId":18398,"firstAired":"2007-05-12T00:00:00Z","seriesType":"standard","cleanTitle":"coilcirclechildren","imdbId":"tt1033796","titleSlug":"coil---a-circle-of-children","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-10-13T16:14:25.024165Z","ratings":{"votes":504,"value":8.5},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":29,"sizeOnDisk":9315619488,"percentOfEpisodes":100.0},"id":79},{"title":"Black Rock Shooter","alternateTitles":[],"sortTitle":"black rock shooter","status":"ended","ended":true,"overview":"These young girls hearts are pure, and then violent!\r\n\r\nMato Kuroi just got into junior high school, and on the first day, someone catches her eye; her classmate Yomi Takanashi. The two meet.\r\n\r\nThe innocent and naive Mato. The mature Yomi. Seemingly opposites, but the time they spend together only strengthens a growing friendship.\r\n\r\nBut as they go into their second year at the school, they get placed in separate classes, and they begin to grow apart.\r\n\r\nBut somewhere simultaneously...\r\n\r\nIn another world, a young girl, blue fire residing in her eyes, Black Rock Shooter faces another young girl; this one holding a jet-black scythe, Dead Master, and a battle to the death begins to unfold.","previousAiring":"2012-03-22T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/80\/banner.jpg?lastWrite=637103832381039520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/162711-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/80\/poster.jpg?lastWrite=637103832389399370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/162711-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/80\/fanart.jpg?lastWrite=637432652664788830","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/162711\/backgrounds\/5fc524b24d8b2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-07-23T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":4,"sizeOnDisk":1365311284,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-22T15:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10998479452,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Black Rock Shooter","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":162711,"tvRageId":30405,"tvMazeId":8202,"firstAired":"2012-02-03T00:00:00Z","seriesType":"standard","cleanTitle":"blackrockshooter","imdbId":"tt2198397","titleSlug":"black-rock-shooter","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Anime"],"tags":[],"added":"2018-10-13T16:14:37.868746Z","ratings":{"votes":880,"value":7.6},"statistics":{"seasonCount":1,"episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":12,"sizeOnDisk":12363790736,"percentOfEpisodes":100.0},"id":80},{"title":"Another","alternateTitles":[],"sortTitle":"another","status":"ended","ended":true,"overview":"When Kouichi Sakakibara transfers to his new school, he can sense something frightening in the atmosphere of his new class \u2014 a secret none of them will talk about. At the center is the beautiful girl, Mei Misaki. Kouichi is immediately drawn to her mysterious aura, but then he begins to realize that no one else in the class is aware of her presence.","previousAiring":"2012-03-26T15:00:00Z","network":"Tokyo MX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/81\/banner.jpg?lastWrite=637103832311720780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/254349-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/81\/poster.jpg?lastWrite=637461573276066250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/254349-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/81\/fanart.jpg?lastWrite=637103832298841010","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/254349-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-26T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1989316570,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Another","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":254349,"tvRageId":30417,"tvMazeId":5901,"firstAired":"2012-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"another","imdbId":"tt2176165","titleSlug":"another","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Horror","Suspense","Thriller"],"tags":[],"added":"2018-10-13T16:14:58.81959Z","ratings":{"votes":5505,"value":7.2},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":14,"sizeOnDisk":1989316570,"percentOfEpisodes":100.0},"id":81},{"title":"Ergo Proxy","alternateTitles":[],"sortTitle":"ergo proxy","status":"ended","ended":true,"overview":"In the utopian city, Romdeau, where humans and their android servants live, the landscape is broken by a series of murders. Real Mayar, a female inspector from the Citizen Information Bureau, along with her android partner Iggy, are tasked to solve the cases. Mayar is soon attacked by a creature which is neither human nor android, and learns about the mysterious phenomena called \"Awakening.\"","previousAiring":"2006-08-11T15:00:00Z","network":"WOWOW","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/82\/banner.jpg?lastWrite=636854779840841790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79228-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/82\/poster.jpg?lastWrite=637103832635634910","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79228-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/82\/fanart.jpg?lastWrite=637103832631674980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79228-5.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-08-11T15:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":57598143180,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Ergo Proxy","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":79228,"tvRageId":10924,"tvMazeId":8256,"firstAired":"2006-02-25T00:00:00Z","seriesType":"standard","cleanTitle":"ergoproxy","imdbId":"tt0791205","titleSlug":"ergo-proxy","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-10-13T16:15:05.359694Z","ratings":{"votes":4526,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":57598143180,"percentOfEpisodes":100.0},"id":82},{"title":"Deadman Wonderland","alternateTitles":[],"sortTitle":"deadman wonderland","status":"ended","ended":true,"overview":"A massive earthquake ravaged Japan's mainland and destroyed most of Tokyo, sinking three-quarters of it into the ocean. Ten years later, the story starts with Igarashi Ganta, a seemingly ordinary, unassuming middle school student attending Nagano Prefecture's middle school. An escapee, a survivor of the great earthquake, Ganta has no memories of the tragedy and has lived a simple, normal life. This all changes one day when a strange man covered in blood and crimson armour appears, floating, out of his classroom windows. Smirking madly, this Red Man massacres Ganta's entire class and, instead of killing him, embeds a red crystal shard in his chest. Within days of the massacre, Ganta is declared the sole suspect and, following a suspiciously quick trial, is sentenced to life imprisonment in Deadman Wonderland, a massive theme-park-like prison.","previousAiring":"2011-07-01T15:00:00Z","network":"tvk","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/83\/banner.jpg?lastWrite=637139521434918940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/247997-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/83\/poster.jpg?lastWrite=637241299609285150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/247997-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/83\/fanart.jpg?lastWrite=637103832510197180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/247997-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-07-01T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":2631932196,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Deadman Wonderland","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":247997,"tvRageId":28064,"tvMazeId":8254,"firstAired":"2011-04-16T00:00:00Z","seriesType":"standard","cleanTitle":"deadmanwonderland","imdbId":"tt1909447","titleSlug":"deadman-wonderland","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Drama"],"tags":[],"added":"2018-10-13T16:15:26.545739Z","ratings":{"votes":6402,"value":7.4},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":13,"sizeOnDisk":2631932196,"percentOfEpisodes":100.0},"id":83},{"title":"Eden of the East","alternateTitles":[],"sortTitle":"eden east","status":"ended","ended":true,"overview":"On November 22, 2010 ten missiles strike Japan. However, this unprecedented terrorist act, later to be called as \"Careless Monday,\" does not result in any apparent victims, and is soon forgotten by almost everyone. Then, 3 months later... Saki Morimi is a young woman currently in the United States of America on her graduation trip. But just when she is in front of the White House, Washington DC, she gets into trouble, and only the unexpected intervention of one of her fellow countrymen saves her. However, this man, who introduces himself as Akira Takizawa, is a complete mystery. He appears to have lost his memory. and he is stark naked, except for the gun he holds in one hand, and the mobile phone he's holding with the other hand. A phone that is charged with 8,200,000,000 yen in digital cash.","previousAiring":"2009-06-18T15:45:00Z","network":"Fuji TV","airTime":"00:45","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/84\/banner.jpg?lastWrite=636750444607225480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/88721-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/84\/poster.jpg?lastWrite=636750444608745460","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/88721-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/84\/fanart.jpg?lastWrite=637103832639194840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/88721-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-06-18T15:45:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":9254492480,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Eden of the East","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":88721,"tvRageId":28915,"tvMazeId":7007,"firstAired":"2009-04-09T00:00:00Z","seriesType":"standard","cleanTitle":"edeneast","imdbId":"tt1415054","titleSlug":"eden-of-the-east","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Mystery","Romance","Science Fiction","Thriller"],"tags":[],"added":"2018-10-13T16:15:39.459559Z","ratings":{"votes":2017,"value":7.9},"statistics":{"seasonCount":1,"episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":14,"sizeOnDisk":9254492480,"percentOfEpisodes":100.0},"id":84},{"title":"Aldnoah.Zero","alternateTitles":[{"title":"Aldnoah Zero","sceneSeasonNumber":-1},{"title":"Aldnoah.Zero (2015)","sceneSeasonNumber":2}],"sortTitle":"aldnoah zero","status":"ended","ended":true,"overview":"In 1972, the Apollo 17 mission discovered a hypergate to Mars on the surface of the moon. Soon, a war breaks out between Earth and Mars, and Martian soldiers begin to descend from the sky, riding steel giants, intent on exterminating humanity.","previousAiring":"2015-03-28T15:00:00Z","network":"Tokyo MX","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/85\/banner.jpg?lastWrite=636750444655784870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/279827-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/85\/poster.jpg?lastWrite=637432652489431850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/279827-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/85\/fanart.jpg?lastWrite=637432652491311820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/279827-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-03-28T15:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":19988647169,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Aldnoah.Zero","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":279827,"tvRageId":43316,"tvMazeId":1441,"firstAired":"2014-07-06T00:00:00Z","seriesType":"standard","cleanTitle":"aldnoahzero","imdbId":"tt3544556","titleSlug":"aldnoahzero","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-10-13T16:15:57.309506Z","ratings":{"votes":1168,"value":8.6},"statistics":{"seasonCount":1,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":25,"sizeOnDisk":19988647169,"percentOfEpisodes":100.0},"id":85},{"title":"Fullmetal Alchemist: Brotherhood","alternateTitles":[],"sortTitle":"fullmetal alchemist brotherhood","status":"ended","ended":true,"overview":"Edward and Alphonse Elric's reckless disregard for alchemy's fun\u00addamental laws ripped half of Ed's limbs from his body and left Al's soul clinging to a cold suit of armor. To restore what was lost, the brothers scour a war-torn land for the Philosopher's Sto\u00adne, a fabled relic which grants the ability to perform alchemy in impossible ways.\r\n\r\nThe Elrics are not alone in their search; the corrupt State Military is also eager to harness the artifact's power. So too are the strange Homunculi and their shadowy creator. The mythical gem lures exotic alchemists from distant kingdoms, scarring some deeply enough to inspire murder. As the Elrics find their course altered by these enemies and allies, their purpose remains unchanged \u2013 and their bond unbreakable.","previousAiring":"2010-07-03T15:00:00Z","network":"Tokyo Broadcasting System","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/86\/banner.jpg?lastWrite=637103832700353740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/85249-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/86\/poster.jpg?lastWrite=637084967802149660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/85249-7.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/86\/fanart.jpg?lastWrite=636750444671184670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/85249-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":21,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-07-03T15:00:00Z","episodeFileCount":64,"episodeCount":64,"totalEpisodeCount":64,"sizeOnDisk":44325504975,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Fullmetal Alchemist Brotherhood\/","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":85249,"tvRageId":21820,"tvMazeId":2071,"firstAired":"2009-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"fullmetalalchemistbrotherhood","imdbId":"tt1355642","titleSlug":"fullmetal-alchemist-brotherhood","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Drama","Fantasy"],"tags":[],"added":"2018-10-13T16:16:19.554332Z","ratings":{"votes":14905,"value":9.1},"statistics":{"seasonCount":1,"episodeFileCount":64,"episodeCount":64,"totalEpisodeCount":85,"sizeOnDisk":44325504975,"percentOfEpisodes":100.0},"id":86},{"title":"[C] The Money of Soul and Possibility Control","alternateTitles":[],"sortTitle":"c money soul possibility control","status":"ended","ended":true,"overview":"The Japanese government was rescued from the brink of financial collapse by the Sovereign Wealth Fund. For its citizens, however, life has not improved and unemployment, crime, suicide, and despair are rampant. Kimimaro, raised by his maternal aunt after the disappearance of his father and the death of his mother, is a scholarship student whose only dream is to live a stable, ordinary life. One day he meets a man who offers him a large sum of money if he will allow his \"future\" to be held as collateral. From then on his fate is radically altered as he's drawn into a mysterious realm known as the Financial District, where he must compete in weekly tournaments called \"deals\" in order to keep his money and avoid losing his future.","previousAiring":"2011-06-23T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/87\/banner.jpg?lastWrite=637103832451678240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/239951-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/87\/poster.jpg?lastWrite=637103832462758040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/239951-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/87\/fanart.jpg?lastWrite=636750444677384600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/239951-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-06-23T15:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":17910043538,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/C The Money of Soul and Possibility Control","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":239951,"tvRageId":28105,"tvMazeId":11897,"firstAired":"2011-04-15T00:00:00Z","seriesType":"standard","cleanTitle":"cmoneysoulpossibilitycontrol","imdbId":"tt1893520","titleSlug":"c-the-money-of-soul-and-possibility-control","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Anime","Fantasy","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-10-13T16:16:39.313079Z","ratings":{"votes":372,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":17910043538,"percentOfEpisodes":100.0},"id":87},{"title":"Puella Magi Madoka Magica","alternateTitles":[],"sortTitle":"puella magi madoka magica","status":"ended","ended":true,"overview":"There exist familiars who have the power to grant one wish to a chosen girl. However, that girl must then become a Puella Magi, a girl with magical powers, and fight against witches, evil creatures born from curses that are responsible for murders and suicides. A schoolgirl named Madoka Kaname and her friend Sayaka Miki are approached by a familiar named Kyubey and Puella Magi named Mami Tomoe with offers of becoming magical girls. Another Puella Magi named Homura Akemi tries to prevent Madoka from making such a deal.","previousAiring":"2011-04-21T15:25:00Z","network":"MBS","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/88\/banner.jpg?lastWrite=636750447690191290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/219181-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/88\/poster.jpg?lastWrite=637103833177705080","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/219181-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/88\/fanart.jpg?lastWrite=637103833161345380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/219181-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-04-21T15:25:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":19408200615,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Puella Magi Madoka Magica","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":219181,"tvRageId":27264,"tvMazeId":2724,"firstAired":"2011-01-07T00:00:00Z","seriesType":"standard","cleanTitle":"puellamagimadokamagica","imdbId":"tt1773185","titleSlug":"puella-magi-madoka-magica","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Anime","Drama","Fantasy","Horror","Thriller"],"tags":[],"added":"2018-10-13T16:16:56.471584Z","ratings":{"votes":17193,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":17,"sizeOnDisk":19408200615,"percentOfEpisodes":100.0},"id":88},{"title":"Texhnolyze","alternateTitles":[],"sortTitle":"texhnolyze","status":"ended","ended":true,"overview":"In an experimental city of despair and carnage, ORGAN will do anything necessary to gain power and wealth. Unfortunately for one underground boxer who was mutilated, a rogue doctor has given him what ORGAN specializes in and he despises: Texhnolyze body parts. Will these cybernetic appendages help exact his revenge upon the one who made him this way?","previousAiring":"2003-09-24T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/90\/banner.jpg?lastWrite=636750448265705760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/27070-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/90\/poster.jpg?lastWrite=637139522345783100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/74493-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/90\/fanart.jpg?lastWrite=637139522332263340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/74493-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-09-24T15:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":1492054978,"percentOfEpisodes":100.0}}],"year":2003,"path":"\/tv\/Texhnolyze","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":74493,"tvRageId":2109,"tvMazeId":8203,"firstAired":"2003-04-17T00:00:00Z","seriesType":"standard","cleanTitle":"texhnolyze","imdbId":"tt0409630","titleSlug":"texhnolyze","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Anime","Drama","Science Fiction"],"tags":[],"added":"2018-10-13T16:17:56.313334Z","ratings":{"votes":221,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":1492054978,"percentOfEpisodes":100.0},"id":90},{"title":"Guilty Crown","alternateTitles":[],"sortTitle":"guilty crown","status":"ended","ended":true,"overview":"The story takes place in Tokyo in 2039. After the outbreak of an unidentified virus Lost Christmas in 2029, Japan has been controlled by a multi-nation organization GHQ. Ouma Shuu is a 17 year old boy, who has a psychic power in his right hand. He can use the power Ability of King to extract tools or weapons from his friends. He has been avoiding making troubles for others but his life has changed when he met a girl Yuzuriha Inori, one of the members of a resistance guerrilla Undertaker. (AniDB)","previousAiring":"2012-03-22T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/91\/banner.jpg?lastWrite=636750448620142450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/252471-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/91\/poster.jpg?lastWrite=637103832820431560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/252471-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/91\/fanart.jpg?lastWrite=637103832795552010","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/252471-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":13,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-22T15:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":9403466060,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Guilty Crown","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":252471,"tvRageId":29496,"tvMazeId":8262,"firstAired":"2011-10-14T00:00:00Z","seriesType":"standard","cleanTitle":"guiltycrown","imdbId":"tt2122656","titleSlug":"guilty-crown","rootFolderPath":"\/tv\/","genres":["Action","Anime","Drama"],"tags":[],"added":"2018-10-13T16:18:19.80586Z","ratings":{"votes":7577,"value":7.7},"statistics":{"seasonCount":1,"episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":35,"sizeOnDisk":9403466060,"percentOfEpisodes":100.0},"id":91},{"title":"One-Punch Man","alternateTitles":[{"title":"One Punch Man S2","sceneSeasonNumber":2},{"title":"One Punch Man (2019)","sceneSeasonNumber":2}],"sortTitle":"one punch man","status":"continuing","ended":false,"overview":"Saitama is a superhero who has trained so hard that his hair has fallen out, and who can overcome any enemy with one punch. However, because he is so strong, he has become bored and frustrated that he wins all of his battles too easily.","previousAiring":"2019-07-02T16:30:00Z","network":"TV Tokyo","airTime":"01:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/92\/banner.jpg?lastWrite=637100124009191570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/293088-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/92\/poster.jpg?lastWrite=637569938627505110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/293088\/posters\/60a38fe89e639.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/92\/fanart.jpg?lastWrite=637100124007231600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/293088-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-12-19T16:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":24489332225,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-07-02T16:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6284356603,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/One-Punch Man","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":293088,"tvRageId":0,"tvMazeId":4201,"firstAired":"2015-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"onepunchman","imdbId":"tt4508902","titleSlug":"one-punch-man","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Comedy","Science Fiction"],"tags":[],"added":"2018-10-13T16:18:42.237382Z","ratings":{"votes":3848,"value":8.9},"statistics":{"seasonCount":2,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":38,"sizeOnDisk":30773688828,"percentOfEpisodes":100.0},"id":92},{"title":"Ghost in the Shell: Arise - Alternative Architecture","alternateTitles":[],"sortTitle":"ghost in shell arise alternative architecture","status":"ended","ended":true,"overview":"The Ghost in the Shell: Arise OVA sequence has been rebuilt into eight TV-length episodes and extended with two new broadcast exclusive episodes to create Ghost in the Shell: Arise \u00ad Alternative Architecture! In this highly anticipated prequel set in the year after the fourth World War, cyborg and hacker Motoko Kusanagi finds herself wrapped up in the investigation of a devastating bombing. But she\u00b9s not the only one looking for answers\u2039as she delves deeper into the mystery of who is behind the attack, a specialized team unlike any before begins to take shape.","previousAiring":"2015-06-07T13:30:00Z","network":"Animax","airTime":"22:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/94\/banner.jpg?lastWrite=636750448797900820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/293491-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/94\/poster.jpg?lastWrite=637103832735273100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/293491-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/94\/fanart.jpg?lastWrite=636750448785540930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/293491-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":11,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-06-07T13:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11737745902,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":293491,"tvRageId":48520,"tvMazeId":8247,"firstAired":"2015-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"ghostinshellarisealternativearchitecture","imdbId":"tt4508686","titleSlug":"ghost-in-the-shell-arise---alternative-architecture","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Science Fiction"],"tags":[],"added":"2018-10-13T16:19:44.971844Z","ratings":{"votes":251,"value":9.1},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":21,"sizeOnDisk":11737745902,"percentOfEpisodes":100.0},"id":94},{"title":"Blood Blockade Battlefront","alternateTitles":[{"title":"Kekkai Sensen & Beyond","sceneSeasonNumber":2},{"title":"Kekkai Sensen","sceneSeasonNumber":1},{"title":"Bloodline Battlefront","sceneSeasonNumber":1},{"title":"Blood Blockade Battlefront & Beyond","sceneSeasonNumber":2}],"sortTitle":"blood blockade battlefront","status":"ended","ended":true,"overview":"A breach between Earth and the netherworlds has opened up over the city of New York, trapping New Yorkers and creatures from other dimensions in an impenetrable bubble. They've lived together for years, in a world of crazy crime sci-fi sensibilities. Now someone is threatening to sever the bubble, and a group of stylish superhumans is working to keep it from happening.","previousAiring":"2017-12-23T15:00:00Z","network":"MBS","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/96\/banner.jpg?lastWrite=637103832373239660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/289886-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/96\/poster.jpg?lastWrite=637103832376679600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/289886-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/96\/fanart.jpg?lastWrite=636751293926031430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/289886-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2015-06-13T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":4,"sizeOnDisk":2004044645,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-10-03T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":5296699635,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-12-23T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6627536017,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Blood Blockade Battlefront","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":289886,"tvRageId":48051,"tvMazeId":1940,"firstAired":"2015-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"bloodblockadebattlefront","imdbId":"tt4379632","titleSlug":"blood-blockade-battlefront","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Anime","Fantasy"],"tags":[],"added":"2018-10-14T15:56:31.256679Z","ratings":{"votes":221,"value":9.1},"statistics":{"seasonCount":2,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":28,"sizeOnDisk":13928280297,"percentOfEpisodes":100.0},"id":96},{"title":"The Man in the High Castle","alternateTitles":[],"sortTitle":"man in high castle","status":"ended","ended":true,"overview":"A glimpse into an alternate history of North America: what life after WWII might have been like if the Nazis had won the war. The Man in the High Castle explores daily life in 1962, fourteen years after the end of a longer Second World War (1939\u20131948 in this history). The victorious Axis Powers - Imperial Japan, Fascist Italy, and Nazi Germany - are conducting intrigues against each other in North America, specifically in the former U.S., which surrendered to them once they had conquered Eurasia and destroyed the populaces of Africa.","previousAiring":"2019-11-15T05:00:00Z","network":"Amazon","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/97\/banner.jpg?lastWrite=637100123905273500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/295829-g8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/97\/poster.jpg?lastWrite=637100123907833450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/295829-7.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/97\/fanart.jpg?lastWrite=637100123903113540","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/295829-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":44,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-11-20T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":27550030040,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-12-16T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":51722939570,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-05T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":24143362539,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-11-15T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":61343660531,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/The Man in the High Castle","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":54,"tvdbId":295829,"tvRageId":34577,"tvMazeId":1804,"firstAired":"2015-01-15T00:00:00Z","seriesType":"standard","cleanTitle":"themaninhighcastle","imdbId":"tt1740299","titleSlug":"the-man-in-the-high-castle","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Drama","Thriller"],"tags":[],"added":"2018-10-14T16:08:48.948919Z","ratings":{"votes":1424,"value":8.1},"statistics":{"seasonCount":4,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":84,"sizeOnDisk":164759992680,"percentOfEpisodes":100.0},"id":97},{"title":"MythBusters","alternateTitles":[],"sortTitle":"mythbusters","status":"ended","ended":true,"overview":"So exactly how hard is it to find a needle in a haystack, anyway? And can water dripping on your forehead really drive you nuts? Those are the kinds of questions, myths and urban legends that are put to the test in this humorous series to find out which ones hold water (and keep it from dripping on your forehead and driving you insane).","previousAiring":"2018-02-22T02:00:00Z","network":"Discovery","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/98\/banner.jpg?lastWrite=637103832988588510","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/73388-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/98\/poster.jpg?lastWrite=636918440300654610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73388-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/98\/fanart.jpg?lastWrite=637103832985668570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73388-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-11-15T02:00:00Z","episodeFileCount":4,"episodeCount":4,"totalEpisodeCount":32,"sizeOnDisk":2845064622,"percentOfEpisodes":100.0}},{"seasonNumber":2003,"monitored":true,"statistics":{"previousAiring":"2003-12-13T02:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":11247784880,"percentOfEpisodes":100.0}},{"seasonNumber":2004,"monitored":true,"statistics":{"previousAiring":"2004-12-23T02:00:00Z","episodeFileCount":13,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":4806467852,"percentOfEpisodes":65.0}},{"seasonNumber":2005,"monitored":true,"statistics":{"previousAiring":"2005-11-17T02:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11521047883,"percentOfEpisodes":100.0}},{"seasonNumber":2006,"monitored":true,"statistics":{"previousAiring":"2006-12-14T02:00:00Z","episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":10590401164,"percentOfEpisodes":100.0}},{"seasonNumber":2007,"monitored":true,"statistics":{"previousAiring":"2007-12-13T02:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":13863485702,"percentOfEpisodes":100.0}},{"seasonNumber":2008,"monitored":true,"statistics":{"previousAiring":"2008-11-20T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":7696278608,"percentOfEpisodes":100.0}},{"seasonNumber":2009,"monitored":true,"statistics":{"previousAiring":"2009-12-29T02:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":8814859842,"percentOfEpisodes":100.0}},{"seasonNumber":2010,"monitored":true,"statistics":{"previousAiring":"2010-12-23T02:00:00Z","episodeFileCount":0,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":2011,"monitored":true,"statistics":{"previousAiring":"2011-12-01T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":8283267538,"percentOfEpisodes":100.0}},{"seasonNumber":2012,"monitored":true,"statistics":{"previousAiring":"2012-11-26T02:00:00Z","episodeFileCount":13,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":5733740132,"percentOfEpisodes":61.904761904761905}},{"seasonNumber":2013,"monitored":true,"statistics":{"previousAiring":"2013-10-18T01:00:00Z","episodeFileCount":8,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":3439742447,"percentOfEpisodes":72.72727272727273}},{"seasonNumber":2014,"monitored":true,"statistics":{"previousAiring":"2014-08-22T01:00:00Z","episodeFileCount":14,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":8879428670,"percentOfEpisodes":93.33333333333333}},{"seasonNumber":2015,"monitored":true,"statistics":{"previousAiring":"2015-09-06T01:00:00Z","episodeFileCount":13,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":9416743392,"percentOfEpisodes":92.85714285714286}},{"seasonNumber":2016,"monitored":true,"statistics":{"previousAiring":"2016-03-06T02:45:00Z","episodeFileCount":10,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":10813529399,"percentOfEpisodes":90.9090909090909}},{"seasonNumber":2017,"monitored":true,"statistics":{"previousAiring":"2017-12-21T02:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":5975828716,"percentOfEpisodes":100.0}},{"seasonNumber":2018,"monitored":true,"statistics":{"previousAiring":"2018-02-22T02:00:00Z","episodeFileCount":6,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6614582093,"percentOfEpisodes":75.0}}],"year":2003,"path":"\/tv\/MythBusters","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":45,"tvdbId":73388,"tvRageId":4605,"tvMazeId":379,"firstAired":"2003-01-23T00:00:00Z","seriesType":"standard","cleanTitle":"mythbusters","imdbId":"tt0383126","titleSlug":"mythbusters","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Documentary","Reality"],"tags":[],"added":"2018-10-15T17:28:28.646278Z","ratings":{"votes":8712,"value":9.2},"statistics":{"seasonCount":16,"episodeFileCount":242,"episodeCount":288,"totalEpisodeCount":316,"sizeOnDisk":130542252940,"percentOfEpisodes":84.02777777777777},"id":98},{"title":"Stargate Origins","alternateTitles":[],"sortTitle":"stargate origins","status":"ended","ended":true,"overview":"Young Catherine Langford embarks on an unexpected adventure to unlock the mystery of what lies beyond the Stargate in order to save the Earth from darkness.","previousAiring":"2018-03-08T21:20:00Z","airTime":"16:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/99\/banner.jpg?lastWrite=636756521626560100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/339552-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/99\/poster.jpg?lastWrite=637215249117029680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/339552-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/99\/fanart.jpg?lastWrite=637103833468219820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/339552-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-03-08T21:20:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2286010771,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Stargate Origins","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":339552,"tvRageId":0,"tvMazeId":30634,"firstAired":"2018-02-14T00:00:00Z","seriesType":"standard","cleanTitle":"stargateorigins","imdbId":"tt7161862","titleSlug":"stargate-origins","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Science Fiction"],"tags":[],"added":"2018-10-20T17:09:21.004625Z","ratings":{"votes":321,"value":5.8},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2286010771,"percentOfEpisodes":100.0},"id":99},{"title":"Lost","alternateTitles":[],"sortTitle":"lost","status":"ended","ended":true,"overview":"After their plane, Oceanic Air flight 815, tore apart whilst thousands of miles off course, the survivors find themselves on a mysterious deserted island where they soon find out they are not alone.","previousAiring":"2010-08-25T01:00:00Z","network":"ABC (US)","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/100\/banner.jpg?lastWrite=636757129544950550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/73739-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/100\/poster.jpg?lastWrite=637058983418395300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73739-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/100\/fanart.jpg?lastWrite=637103832893830230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73739-34.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-08-25T01:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":29,"sizeOnDisk":1146498291,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-05-26T01:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":33398973779,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-05-25T01:44:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":34532871486,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2007-05-24T01:44:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":34031777863,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2008-05-30T01:44:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":22544474805,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2009-05-14T01:44:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":26924679703,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2010-05-24T01:44:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":29199917293,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/Lost","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":44,"tvdbId":73739,"tvRageId":4284,"tvMazeId":123,"firstAired":"2004-09-22T00:00:00Z","seriesType":"standard","cleanTitle":"lost","imdbId":"tt0411008","titleSlug":"lost","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Drama","Science Fiction"],"tags":[],"added":"2018-10-21T10:02:32.632359Z","ratings":{"votes":21378,"value":9.1},"statistics":{"seasonCount":6,"episodeFileCount":135,"episodeCount":135,"totalEpisodeCount":149,"sizeOnDisk":181779193220,"percentOfEpisodes":100.0},"id":100},{"title":"Stargate Universe","alternateTitles":[],"sortTitle":"stargate universe","status":"ended","ended":true,"overview":"The previously unknown purpose of the ninth chevron is revealed and takes a group of refugees on a one-way trip to a millions of years old Ancient-built ship. Led by Dr. Nicolas Rush and Colonel Everett Young, the refugees are trapped on the ship, unable to change its programmed mission.","previousAiring":"2011-05-10T01:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/101\/banner.jpg?lastWrite=636757134717644330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/83237-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/101\/poster.jpg?lastWrite=637103833501979210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/83237-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/101\/fanart.jpg?lastWrite=636757134715804360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/83237-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":36,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-06-12T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":71586800879,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2011-05-10T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":35011805027,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Stargate Universe","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":83237,"tvRageId":15343,"tvMazeId":207,"firstAired":"2009-10-02T00:00:00Z","seriesType":"standard","cleanTitle":"stargateuniverse","imdbId":"tt1286039","titleSlug":"stargate-universe","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-21T10:11:11.052912Z","ratings":{"votes":9582,"value":8.4},"statistics":{"seasonCount":2,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":76,"sizeOnDisk":106598605906,"percentOfEpisodes":100.0},"id":101},{"title":"BoJack Horseman","alternateTitles":[],"sortTitle":"bojack horseman","status":"ended","ended":true,"overview":"Meet the most beloved sitcom horse of the '90s... 20 years later. He\u2019s a curmudgeon with a heart of, not quite gold, but something like gold. Copper?","previousAiring":"2020-01-31T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/102\/banner.jpg?lastWrite=637100123655078140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/282254-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/102\/poster.jpg?lastWrite=637103154749461080","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/282254-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/102\/fanart.jpg?lastWrite=637103154745501150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/282254-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-08-22T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18724561261,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-07-17T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18712968109,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2016-07-22T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3201313968,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-09-08T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3243150730,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2018-09-14T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3597945125,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2020-01-31T08:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":12405821079,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/BoJack Horseman","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":282254,"tvRageId":39470,"tvMazeId":184,"firstAired":"2014-08-22T00:00:00Z","seriesType":"standard","cleanTitle":"bojackhorseman","imdbId":"tt3398228","titleSlug":"bojack-horseman","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Drama"],"tags":[],"added":"2018-10-22T16:24:58.384768Z","ratings":{"votes":660,"value":8.9},"statistics":{"seasonCount":6,"episodeFileCount":76,"episodeCount":76,"totalEpisodeCount":81,"sizeOnDisk":59885760272,"percentOfEpisodes":100.0},"id":102},{"title":"South Park","alternateTitles":[],"sortTitle":"south park","status":"continuing","ended":false,"overview":"South Park is an animated series featuring four boys who live in the Colorado town of South Park, which is beset by frequent odd occurrences. The show grew out of a short film that Trey Parker and Matt Stone created called The Spirit of Christmas, and has become an award-winning show that is a unique blend of humor and satire.","previousAiring":"2021-03-11T03:00:00Z","network":"Comedy Central","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/104\/banner.jpg?lastWrite=637100124293946280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75897-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/104\/poster.jpg?lastWrite=637100124296066240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75897-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/104\/fanart.jpg?lastWrite=637100124291746320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75897-43.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":32,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1998-02-26T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4793214489,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1999-01-21T03:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":7106571772,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2000-01-13T03:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":5803092065,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2000-12-21T03:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":6884449911,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2001-12-13T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":5197957931,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2002-12-12T03:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":6008635319,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2003-12-18T03:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":6106066097,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2004-12-16T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4632297670,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2005-12-08T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":5046031291,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2006-11-16T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":5422203500,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2007-11-15T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":6143615410,"percentOfEpisodes":100.0}},{"seasonNumber":12,"monitored":true,"statistics":{"previousAiring":"2008-11-20T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":7527754333,"percentOfEpisodes":100.0}},{"seasonNumber":13,"monitored":true,"statistics":{"previousAiring":"2009-11-19T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4189228051,"percentOfEpisodes":100.0}},{"seasonNumber":14,"monitored":true,"statistics":{"previousAiring":"2010-11-18T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4509620422,"percentOfEpisodes":100.0}},{"seasonNumber":15,"monitored":true,"statistics":{"previousAiring":"2011-11-17T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4227153812,"percentOfEpisodes":100.0}},{"seasonNumber":16,"monitored":true,"statistics":{"previousAiring":"2012-11-08T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":16359728974,"percentOfEpisodes":100.0}},{"seasonNumber":17,"monitored":true,"statistics":{"previousAiring":"2013-12-12T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11686607635,"percentOfEpisodes":100.0}},{"seasonNumber":18,"monitored":true,"statistics":{"previousAiring":"2014-12-11T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11689025051,"percentOfEpisodes":100.0}},{"seasonNumber":19,"monitored":true,"statistics":{"previousAiring":"2015-12-10T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11635372761,"percentOfEpisodes":100.0}},{"seasonNumber":20,"monitored":true,"statistics":{"previousAiring":"2016-12-08T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2569392322,"percentOfEpisodes":100.0}},{"seasonNumber":21,"monitored":true,"statistics":{"previousAiring":"2017-12-07T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2640274102,"percentOfEpisodes":100.0}},{"seasonNumber":22,"monitored":true,"statistics":{"previousAiring":"2018-12-13T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11688605067,"percentOfEpisodes":100.0}},{"seasonNumber":23,"monitored":true,"statistics":{"previousAiring":"2019-12-12T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":23291720028,"percentOfEpisodes":100.0}},{"seasonNumber":24,"monitored":true,"statistics":{"previousAiring":"2021-03-11T03:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":2,"sizeOnDisk":1437658213,"percentOfEpisodes":100.0}}],"year":1997,"path":"\/tv\/South Park","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":75897,"tvRageId":5266,"tvMazeId":112,"firstAired":"1997-08-13T00:00:00Z","seriesType":"standard","cleanTitle":"southpark","imdbId":"tt0121955","titleSlug":"south-park","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy"],"tags":[],"added":"2018-10-23T19:51:22.076252Z","ratings":{"votes":15855,"value":8.7},"statistics":{"seasonCount":24,"episodeFileCount":309,"episodeCount":309,"totalEpisodeCount":341,"sizeOnDisk":176596276226,"percentOfEpisodes":100.0},"id":104},{"title":"Death Note","alternateTitles":[{"title":"Death Note 2015","seasonNumber":-1}],"sortTitle":"death note","status":"ended","ended":true,"overview":"Light Yagami is an ace student with great prospects, who's bored out of his mind. One day he finds the \"Death Note\": a notebook from the realm of the Death Gods, with the power to kill people in any way he desires. With the Death Note in hand, Light decides to create his perfect world, without crime or criminals. However, when criminals start dropping dead one by one, the authorites send the legendary detective L to track down the killer, and a battle of wits, deception and logic ensues...","previousAiring":"2007-06-26T16:00:00Z","network":"Nippon TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/105\/banner.jpg?lastWrite=637103832517317050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79481-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/105\/poster.jpg?lastWrite=637652310487396270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79481-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/105\/fanart.jpg?lastWrite=637103832514997100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79481-15.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-06-26T16:00:00Z","episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":51702808627,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Death Note","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":79481,"tvRageId":13555,"tvMazeId":40,"firstAired":"2006-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"deathnote","imdbId":"tt0877057","titleSlug":"death-note","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Crime","Drama","Fantasy","Suspense","Thriller"],"tags":[],"added":"2018-10-24T16:39:48.361286Z","ratings":{"votes":21749,"value":9.0},"statistics":{"seasonCount":1,"episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":39,"sizeOnDisk":51702808627,"percentOfEpisodes":100.0},"id":105},{"title":"Big Hero 6 The Series","alternateTitles":[{"title":"Opera\u00e7\u00e3o Big Hero - A S\u00e9rie","seasonNumber":-1},{"title":"Operacao Big Hero - A Serie","seasonNumber":-1},{"title":"Baymax - Robowabohu in Serie","seasonNumber":-1}],"sortTitle":"big hero 6 series","status":"ended","ended":true,"overview":"As the new prodigy at San Fransokyo Institute of Technology, Hiro now faces daunting academic challenges and the social trials of being the little man on campus. Off campus, the stakes are raised for the high-tech heroes as they must protect their city from an array of scientifically enhanced villains.","previousAiring":"2021-02-16T00:55:00Z","network":"Disney Channel","airTime":"19:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/112\/banner.jpg?lastWrite=637100123624278710","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/322241-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/112\/poster.jpg?lastWrite=637540898545983000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/322241-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/112\/fanart.jpg?lastWrite=637100123622198750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/322241-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":27,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-10-13T23:30:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":5855322492,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-02-09T00:30:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":17601199356,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-02-16T00:55:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":6404161359,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Big Hero 6- The Series","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":322241,"tvRageId":0,"tvMazeId":21142,"firstAired":"2017-11-20T00:00:00Z","seriesType":"standard","cleanTitle":"bighero6series","imdbId":"tt5515212","titleSlug":"big-hero-6-the-series","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Animation","Children","Comedy"],"tags":[],"added":"2018-11-14T03:15:11.144042Z","ratings":{"votes":29,"value":10.0},"statistics":{"seasonCount":3,"episodeFileCount":65,"episodeCount":65,"totalEpisodeCount":92,"sizeOnDisk":29860683207,"percentOfEpisodes":100.0},"id":112},{"title":"Constantine","alternateTitles":[],"sortTitle":"constantine","status":"ended","ended":true,"overview":"A man struggling with his faith who is haunted by the sins of his past is suddenly thrust into the role of defending humanity from the gathering forces of darkness.","previousAiring":"2015-02-14T01:00:00Z","network":"NBC","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/113\/banner.jpg?lastWrite=637103832462878040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/273690-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/113\/poster.jpg?lastWrite=637461573579060860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/273690\/posters\/5fedd7187a605.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/113\/fanart.jpg?lastWrite=637103832460158090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/273690-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-02-14T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":14065209042,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Constantine","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":273690,"tvRageId":38109,"tvMazeId":15,"firstAired":"2014-10-24T00:00:00Z","seriesType":"standard","cleanTitle":"constantine","imdbId":"tt3489184","titleSlug":"constantine","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Horror","Thriller"],"tags":[],"added":"2018-11-17T22:07:36.646293Z","ratings":{"votes":1473,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":14,"sizeOnDisk":14065209042,"percentOfEpisodes":100.0},"id":113},{"title":"Mind Field","alternateTitles":[],"sortTitle":"mind field","status":"ended","ended":true,"overview":"In Mind Field, host Michael Stevens brings his passion for science to his most ambitious subject yet: something we still know very little about, human behavior.\r\n\r\nUsing real subjects (including guest stars and Michael himself) Mind Field reveals some of the most mind-blowing, significant, and least-understood aspects of the human psyche.\r\n\r\nThrough expert interviews, rare footage from historical experiments, and brand-new, ground-breaking demonstrations of human nature at work, Mind Field explores the surprising things we know (and don\u2019t know) about why people are the way they are.","previousAiring":"2019-01-16T19:00:00Z","network":"YouTube Premium","airTime":"14:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/116\/banner.jpg?lastWrite=637292170699319230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/322873-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/116\/poster.jpg?lastWrite=637100123915713300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/322873-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/116\/fanart.jpg?lastWrite=637100123911633380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/322873-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":39,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-03-01T19:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6966905511,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-01-03T19:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6485034103,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-01-16T19:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":5156159008,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Mind Field","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":26,"tvdbId":322873,"tvRageId":0,"tvMazeId":24607,"firstAired":"2017-01-18T00:00:00Z","seriesType":"standard","cleanTitle":"mindfield","imdbId":"tt6439562","titleSlug":"mind-field","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Documentary"],"tags":[],"added":"2018-12-16T01:52:10.703987Z","ratings":{"votes":85,"value":8.3},"statistics":{"seasonCount":3,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":63,"sizeOnDisk":18608098622,"percentOfEpisodes":100.0},"id":116},{"title":"Outlander","alternateTitles":[],"sortTitle":"outlander","status":"continuing","ended":false,"overview":"An English combat nurse from 1945 is mysteriously swept back in time to 1743.","previousAiring":"2020-05-11T00:00:00Z","network":"Facebook Watch","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/121\/banner.jpg?lastWrite=637100124014071480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/270408-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/121\/poster.jpg?lastWrite=637102722056137350","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/270408-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/121\/fanart.jpg?lastWrite=637100124012111510","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/270408-19.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":75,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-05-31T00:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":75320075321,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-07-10T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":64533372557,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-12-11T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":21638631900,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-01-28T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":41933135776,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2020-05-11T00:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":23069279182,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2014,"path":"\/tv\/Outlander","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":270408,"tvRageId":36202,"tvMazeId":43,"firstAired":"2014-08-09T00:00:00Z","seriesType":"standard","cleanTitle":"outlander","imdbId":"tt3006802","titleSlug":"outlander","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Romance"],"tags":[],"added":"2018-12-28T22:37:47.253353Z","ratings":{"votes":2624,"value":9.0},"statistics":{"seasonCount":6,"episodeFileCount":67,"episodeCount":67,"totalEpisodeCount":150,"sizeOnDisk":226494494736,"percentOfEpisodes":100.0},"id":121},{"title":"MythBusters Jr.","alternateTitles":[],"sortTitle":"mythbusters jr","status":"ended","ended":true,"overview":"The nation's most talented kids have a chance to show off their amazing ingenuity and STEAM (Science, Technology, Engineering, Arts, and Math) skills.","previousAiring":"2019-02-07T03:30:00Z","network":"Science Channel","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/123\/banner.jpg?lastWrite=636824897818775270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c1e8cf13532e.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/123\/poster.jpg?lastWrite=637102289109829690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c69d36fcb759.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/123\/fanart.jpg?lastWrite=637102289099709880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c0f8c7cde15c.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-02-07T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":13198262105,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/MythBusters Jr","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":350679,"tvRageId":0,"tvMazeId":39702,"firstAired":"2019-01-02T00:00:00Z","seriesType":"standard","cleanTitle":"mythbustersjr","imdbId":"tt8265286","titleSlug":"mythbusters-jr","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Documentary","Family"],"tags":[],"added":"2019-01-07T20:29:40.181194Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":11,"sizeOnDisk":13198262105,"percentOfEpisodes":100.0},"id":123},{"title":"Tron: Uprising","alternateTitles":[],"sortTitle":"tron uprising","status":"ended","ended":true,"overview":"Taking place some time between 'Tron' and 'Tron: Legacy', 'Tron: Uprising' tells the story of Beck, a young program who becomes the skillful leader of a revolution inside the computer world of The Grid. His mission is to free his home and friends from the reign of the villainous Clu 2, and his henchman, General Tesler. Beck will be trained by Tron\u2014the greatest warrior the Grid has ever come to know. Tron will not only teach Beck the fighting and light cycle skills he needs to challenge this brutal military occupation, but he will be a guide and mentor to him as he grows beyond his youthful, impulsive nature into a courageous, powerful, strong leader. Destined to become the next Tron of the system, Beck adopts Tron's persona and becomes the archenemy of General Tesler and his oppressive forces.","previousAiring":"2013-01-27T17:00:00Z","network":"Disney XD","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/126\/banner.jpg?lastWrite=637103833626936940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/258480-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/126\/poster.jpg?lastWrite=637103833641976670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/258480-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/126\/fanart.jpg?lastWrite=637103833613777180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/258480-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2012-05-18T16:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":1,"sizeOnDisk":373347316,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-01-27T17:00:00Z","episodeFileCount":17,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":4399752477,"percentOfEpisodes":94.44444444444444}}],"year":2012,"path":"\/tv\/Tron- Uprising","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":258480,"tvRageId":31559,"tvMazeId":1136,"firstAired":"2012-06-07T00:00:00Z","seriesType":"standard","cleanTitle":"tronuprising","imdbId":"tt1812523","titleSlug":"tron-uprising","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Science Fiction"],"tags":[],"added":"2019-01-29T01:26:49.058447Z","ratings":{"votes":1069,"value":8.6},"statistics":{"seasonCount":1,"episodeFileCount":18,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":4773099793,"percentOfEpisodes":94.73684210526316},"id":126},{"title":"Torchwood","alternateTitles":[],"sortTitle":"torchwood","status":"ended","ended":true,"overview":"Captain Jack Harkness is a man from the 51st century trapped in the past who leads the last remnants of the Torchwood Institute, a top secret British agency outside the government whose job it is to investigate alien goings on in the world, act in mankind's best interest, and, if needed, be the Earth's last line of defense.","previousAiring":"2011-09-09T20:00:00Z","network":"BBC Three","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/128\/banner.jpg?lastWrite=636849718455143850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79511-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/128\/poster.jpg?lastWrite=637103833593137550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79511-8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/128\/fanart.jpg?lastWrite=637103833588897630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79511-15.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-01-01T21:50:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":20423253843,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2008-04-04T20:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":22661700269,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-07-10T20:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":12860494930,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2011-09-09T20:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":12736888280,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Torchwood","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":79511,"tvRageId":6993,"tvMazeId":659,"firstAired":"2006-10-22T00:00:00Z","seriesType":"standard","cleanTitle":"torchwood","imdbId":"tt0485301","titleSlug":"torchwood","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Crime","Drama","Science Fiction"],"tags":[],"added":"2019-02-05T13:57:24.322286Z","ratings":{"votes":4649,"value":8.4},"statistics":{"seasonCount":4,"episodeFileCount":41,"episodeCount":41,"totalEpisodeCount":53,"sizeOnDisk":68682337322,"percentOfEpisodes":100.0},"id":128},{"title":"Firefly","alternateTitles":[],"sortTitle":"firefly","status":"ended","ended":true,"overview":"In the far-distant future, Captain Malcolm \"Mal\" Reynolds is a renegade former brown-coat sergeant, now turned smuggler & rogue, who is the commander of a small spacecraft, with a loyal hand-picked crew made up of the first mate, Zoe Warren; the pilot Hoban \"Wash\" Washburn; the gung-ho grunt Jayne Cobb; the engineer Kaylee Frye; the fugitives Dr. Simon Tam and his psychic sister River. Together, they travel the far reaches of space in search of food, money, and anything to live on.","previousAiring":"2003-07-28T04:00:00Z","network":"FOX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/129\/banner.jpg?lastWrite=637103832671074270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/7097-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/129\/poster.jpg?lastWrite=637103832673954210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78874-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/129\/fanart.jpg?lastWrite=636850543774269330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78874-5.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-07-28T04:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":6559245703,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Firefly","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":78874,"tvRageId":3548,"tvMazeId":180,"firstAired":"2002-09-20T00:00:00Z","seriesType":"standard","cleanTitle":"firefly","imdbId":"tt0303461","titleSlug":"firefly","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-02-06T12:52:56.83879Z","ratings":{"votes":14470,"value":9.5},"statistics":{"seasonCount":1,"episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":17,"sizeOnDisk":6559245703,"percentOfEpisodes":100.0},"id":129},{"title":"The Umbrella Academy","alternateTitles":[],"sortTitle":"umbrella academy","status":"continuing","ended":false,"overview":"Reunited by their father's death, estranged siblings with extraordinary powers uncover shocking family secrets\u2014and a looming threat to humanity.","previousAiring":"2020-07-31T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/133\/banner.jpg?lastWrite=637427882712698700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c0ef353c3441.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/133\/poster.jpg?lastWrite=637294341115293940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/353764\/posters\/5efd5534a2ce9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/133\/fanart.jpg?lastWrite=637102722405930820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c960338354cf.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-02-15T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":52541993102,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-07-31T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":27609109543,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/The Umbrella Academy","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":353764,"tvRageId":0,"tvMazeId":30386,"firstAired":"2019-02-15T00:00:00Z","seriesType":"standard","cleanTitle":"theumbrellaacademy","imdbId":"tt1312171","titleSlug":"the-umbrella-academy","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Drama","Suspense"],"tags":[],"added":"2019-02-26T17:04:40.955407Z","ratings":{"votes":56,"value":7.5},"statistics":{"seasonCount":3,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":35,"sizeOnDisk":80151102645,"percentOfEpisodes":100.0},"id":133},{"title":"Grimm","alternateTitles":[],"sortTitle":"grimm","status":"ended","ended":true,"overview":"Nick Burkhardt thought he prepared himself for the realities of working as a homicide detective until he started seeing things he couldn't explain. Nick's life turns upside down when his Aunt Marie reveals they are descendants of an elite group of hunters, known as \"Grimms,\" who fight to keep humanity safe from supernatural creatures. As Nick digs deeper into her past, he realizes that he will have to shoulder the responsibility of his ancestors.","previousAiring":"2017-04-01T00:00:00Z","network":"NBC","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/134\/banner.jpg?lastWrite=637103832768392500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/248736-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/134\/poster.jpg?lastWrite=636871490067718370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/248736-13.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/134\/fanart.jpg?lastWrite=636871490045318800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/248736-14.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":20,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-05-19T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":16283381513,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":8737830949,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2014-05-17T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":7866060310,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2015-05-16T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":84481181807,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2016-05-21T00:43:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":11673816047,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2017-04-01T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45732694815,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Grimm","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":248736,"tvRageId":28352,"tvMazeId":10,"firstAired":"2011-10-28T00:00:00Z","seriesType":"standard","cleanTitle":"grimm","imdbId":"tt1830617","titleSlug":"grimm","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Horror"],"tags":[],"added":"2019-03-02T18:43:23.23828Z","ratings":{"votes":5829,"value":8.3},"statistics":{"seasonCount":6,"episodeFileCount":123,"episodeCount":123,"totalEpisodeCount":143,"sizeOnDisk":174774965441,"percentOfEpisodes":100.0},"id":134},{"title":"Love, Death & Robots","alternateTitles":[{"title":"Love Death and Robots","seasonNumber":-1}],"sortTitle":"love death robots","status":"continuing","ended":false,"overview":"A collection of animated short stories that span various genres including science fiction, fantasy, horror and comedy.","previousAiring":"2021-05-14T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/135\/banner.jpg?lastWrite=637597710407869630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/357888\/banners\/60ae54a436537.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/135\/poster.jpg?lastWrite=637545666137962570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/357888\/posters\/607da9fc6a6a1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/135\/fanart.jpg?lastWrite=637597710410189590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/357888\/backgrounds\/60a025b2b86f1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-03-15T07:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":8970760382,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-05-14T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":3927783666,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Love, Death & Robots","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":357888,"tvRageId":0,"tvMazeId":40329,"firstAired":"2019-03-15T00:00:00Z","seriesType":"standard","cleanTitle":"lovedeathrobots","imdbId":"tt9561862","titleSlug":"love-death-and-robots","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Fantasy","Science Fiction"],"tags":[],"added":"2019-03-15T18:32:01.376909Z","ratings":{"votes":22,"value":10.0},"statistics":{"seasonCount":2,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":12898544048,"percentOfEpisodes":100.0},"id":135},{"title":"Chernobyl","alternateTitles":[],"sortTitle":"chernobyl","status":"ended","ended":true,"overview":"Chernobyl dramatizes the story of the 1986 nuclear accident \u2014 one of the worst man-made catastrophes in history \u2014 and the sacrifices made to save Europe from unimaginable disaster.","previousAiring":"2019-06-04T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/140\/banner.jpg?lastWrite=636930952232903080","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5cc9f74c2ddd3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/140\/poster.jpg?lastWrite=636940946694434480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5cc12861c93e4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/140\/fanart.jpg?lastWrite=637165511533879210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/360893\/backgrounds\/62017319.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-06-04T01:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":30504903183,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Chernobyl","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":360893,"tvRageId":0,"tvMazeId":30770,"firstAired":"2019-05-06T00:00:00Z","seriesType":"standard","cleanTitle":"chernobyl","imdbId":"tt7366338","titleSlug":"chernobyl","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","History","Mini-Series"],"tags":[],"added":"2019-05-10T14:27:01.977286Z","ratings":{"votes":83,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":30504903183,"percentOfEpisodes":100.0},"id":140},{"title":"NOS4A2","alternateTitles":[],"sortTitle":"nos4a2","status":"ended","ended":true,"overview":"Based on Joe Hill's novel of the same name, NOS4A2 tells the story of Charlie Manx, a seductive immortal who feeds off the souls of children, then deposits what remains of them into Christmasland \u2013 an icy, twisted Christmas village of Manx's imagination where every day is Christmas Day and unhappiness is against the law. Manx finds his whole world threatened when a young woman in New England discovers she has a dangerous gift.","previousAiring":"2020-08-24T02:00:00Z","network":"AMC","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/141\/banner.jpg?lastWrite=637100123998271770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d7387f7a137c.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/141\/poster.jpg?lastWrite=637100124000351730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5ceba5f4965c2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/141\/fanart.jpg?lastWrite=637100123996431800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c8b9243dda0c.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-29T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":19955803697,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-08-24T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":17571982037,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/NOS4A2","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":359637,"tvRageId":0,"tvMazeId":9810,"firstAired":"2019-06-02T00:00:00Z","seriesType":"standard","cleanTitle":"nos4a2","imdbId":"tt5194792","titleSlug":"nos4a2","rootFolderPath":"\/tv\/","genres":["Drama","Horror"],"tags":[],"added":"2019-05-19T09:54:24.789357Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":37527785734,"percentOfEpisodes":100.0},"id":141},{"title":"Westworld","alternateTitles":[],"sortTitle":"westworld","status":"continuing","ended":false,"overview":"Westworld is a dark odyssey about the dawn of artificial consciousness and the evolution of sin. Set at the intersection of the near future and the reimagined past, it explores a world in which every human appetite, no matter how noble or depraved, can be indulged.","previousAiring":"2020-05-04T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/142\/banner.jpg?lastWrite=637100124434263680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/296762-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/142\/poster.jpg?lastWrite=637542633400431930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/296762\/posters\/62088687.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/142\/fanart.jpg?lastWrite=637100124431623730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/296762-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-12-05T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":51613828699,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-06-25T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":51621269741,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-05-04T01:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":9851106799,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Westworld","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":58,"tvdbId":296762,"tvRageId":0,"tvMazeId":1371,"firstAired":"2016-10-02T00:00:00Z","seriesType":"standard","cleanTitle":"westworld","imdbId":"tt0475784","titleSlug":"westworld","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Drama","Science Fiction","Western"],"tags":[],"added":"2019-05-25T12:43:28.421154Z","ratings":{"votes":3255,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":31,"sizeOnDisk":113086205239,"percentOfEpisodes":100.0},"id":142},{"title":"For All Mankind","alternateTitles":[{"title":"Para toda la humanidad","seasonNumber":-1}],"sortTitle":"for all mankind","status":"continuing","ended":false,"overview":"The depiction of an 'alternate history' of the global space race after the USSR succeeds in achieving the first manned Moon landing.","previousAiring":"2021-04-23T04:00:00Z","network":"Apple TV+","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/145\/banner.jpg?lastWrite=637493222861376220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d850474ed246.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/145\/poster.jpg?lastWrite=637541765835889440","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/356202\/posters\/600304db98362.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/145\/fanart.jpg?lastWrite=637518361360699780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/356202\/backgrounds\/6035368ae4176.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-20T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":44645341549,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-04-23T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":50326692903,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/For All Mankind","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":62,"tvdbId":356202,"tvRageId":0,"tvMazeId":41414,"firstAired":"2019-11-01T00:00:00Z","seriesType":"standard","cleanTitle":"forallmankind","imdbId":"tt7772588","titleSlug":"for-all-mankind","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-06-05T17:27:14.206959Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":94972034452,"percentOfEpisodes":100.0},"id":145},{"title":"Savage Builds","alternateTitles":[],"sortTitle":"savage builds","status":"continuing","ended":false,"overview":"Adam Savage combines his insatiable curiosity and nearly unparalleled inventiveness as he attempts to build working, innovative items. Each episode will focus on one project as Adam collaborates with notable experts in their fields, friends, colleagues and others.","previousAiring":"2019-07-27T02:45:00Z","network":"Discovery","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/146\/banner.jpg?lastWrite=637100124188148250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d0476fcc70cf.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/146\/poster.jpg?lastWrite=637103155224812490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d01784904c35.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/146\/fanart.jpg?lastWrite=637100124186068280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d0178436c700.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-27T02:45:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":9049029376,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Savage Builds","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":363058,"tvRageId":0,"tvMazeId":41927,"firstAired":"2019-06-14T00:00:00Z","seriesType":"standard","cleanTitle":"savagebuilds","imdbId":"tt10233836","titleSlug":"savage-builds","rootFolderPath":"\/tv\/","genres":["Documentary"],"tags":[],"added":"2019-06-20T07:24:43.718298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":16,"sizeOnDisk":9049029376,"percentOfEpisodes":100.0},"id":146},{"title":"Good Omens","alternateTitles":[],"sortTitle":"good omens","status":"continuing","ended":false,"overview":"The End of the World is coming, which means a fussy Angel and a loose-living Demon who've become overly fond of life on Earth are forced to form an unlikely alliance to stop Armageddon. But they have lost the Antichrist, an 11-year-old boy unaware he's meant to bring upon the end of days, forcing them to embark on an adventure to find him and save the world before it's too late.","previousAiring":"2019-05-30T16:00:00Z","network":"Amazon Prime Video","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/147\/banner.jpg?lastWrite=636968335769165980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c899cdc2b713.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/147\/poster.jpg?lastWrite=636968335770085950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c65fa5e7fa62.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/147\/fanart.jpg?lastWrite=637191504484532590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c65faebc315e.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-30T16:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":28156187676,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Good Omens","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":359569,"tvRageId":0,"tvMazeId":28717,"firstAired":"2019-05-30T00:00:00Z","seriesType":"standard","cleanTitle":"goodomens","imdbId":"tt1869454","titleSlug":"good-omens","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Fantasy","Mini-Series"],"tags":[],"added":"2019-06-22T20:52:55.427091Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":8,"sizeOnDisk":28156187676,"percentOfEpisodes":100.0},"id":147},{"title":"How to Sell Drugs Online (Fast)","alternateTitles":[{"title":"How to Sell Drugs Online Fast","seasonNumber":-1},{"title":"Como vender drogas online","seasonNumber":-1},{"title":"Come vendere droga online (in fretta)","seasonNumber":-1}],"sortTitle":"how to sell drugs online fast","status":"continuing","ended":false,"overview":"To win back his ex-girlfriend, a nerdy teen starts selling ecstasy online out of his bedroom -- and becomes one of Europe's biggest dealers.","previousAiring":"2021-07-27T13:00:00Z","network":"Netflix","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/148\/banner.jpg?lastWrite=637635843620347980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5cdf914e2633d.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/148\/poster.jpg?lastWrite=637630208398933870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361034\/posters\/60e42a0c05cdb.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/148\/fanart.jpg?lastWrite=637630208400573840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361034\/backgrounds\/60ffafaa44daf.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-31T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8983499918,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-07-21T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":9966625339,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-07-27T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8248506793,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/How to Sell Drugs Online (Fast)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":29,"tvdbId":361034,"tvRageId":0,"tvMazeId":39319,"firstAired":"2019-05-31T00:00:00Z","seriesType":"standard","cleanTitle":"howtoselldrugsonlinefast","imdbId":"tt9184994","titleSlug":"how-to-sell-drugs-online-fast","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Comedy","Crime","Drama","Romance"],"tags":[],"added":"2019-06-30T18:27:30.762239Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":27198632050,"percentOfEpisodes":100.0},"id":148},{"title":"Russian Doll","alternateTitles":[],"sortTitle":"russian doll","status":"continuing","ended":false,"overview":"Nadia keeps dying and reliving her 36th birthday party. She's trapped in a surreal time loop -- and staring down the barrel of her own mortality.","previousAiring":"2019-02-01T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/149\/banner.jpg?lastWrite=637100124182028360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c371ae47837d.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/149\/poster.jpg?lastWrite=637540899621646450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c36e4d48092b.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/149\/fanart.jpg?lastWrite=637102289259786980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c5ab01d70b31.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-02-01T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10031961383,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Russian Doll","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":356640,"tvRageId":0,"tvMazeId":39987,"firstAired":"2019-02-01T00:00:00Z","seriesType":"standard","cleanTitle":"russiandoll","imdbId":"tt7520794","titleSlug":"russian-doll","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Drama","Fantasy","Science Fiction"],"tags":[],"added":"2019-07-10T20:31:34.980196Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10031961383,"percentOfEpisodes":100.0},"id":149},{"title":"Infinity Train","alternateTitles":[],"sortTitle":"infinity train","status":"ended","ended":true,"overview":"Trapped on a mysterious train full of puzzles and perils, a headstrong 12-year-old girl must use her wits to uncover the train\u2019s many secrets \u2013 and hopefully return home. Tulip\u2019s mind-bending journey will find her forging friendships with One-One, a robot with dueling personalities, and Atticus, the canine king of Corginia. But with new surprises awaiting them in every car, will Tulip ever find a way off the train?","previousAiring":"2021-04-15T07:00:00Z","network":"HBO Max","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/150\/banner.jpg?lastWrite=637254301655619070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d4fce483c2ae.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/150\/poster.jpg?lastWrite=637329894515310690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/335425\/posters\/5f3560fd8c5f8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/150\/fanart.jpg?lastWrite=637255601503529250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d4a1c59dc9a4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2020-07-17T07:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":15,"sizeOnDisk":67674007,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-08-09T07:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4240933467,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-01-10T08:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4527894440,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-08-27T07:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7346130278,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2021-04-15T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7352665449,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Infinity Train","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":335425,"tvRageId":0,"tvMazeId":39945,"firstAired":"2019-08-05T00:00:00Z","seriesType":"standard","cleanTitle":"infinitytrain","imdbId":"tt8146754","titleSlug":"infinity-train","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Fantasy","Science Fiction"],"tags":[],"added":"2019-07-11T23:05:21.371765Z","ratings":{"votes":26,"value":9.0},"statistics":{"seasonCount":4,"episodeFileCount":42,"episodeCount":42,"totalEpisodeCount":55,"sizeOnDisk":23535297641,"percentOfEpisodes":100.0},"id":150},{"title":"Amphibia","alternateTitles":[],"sortTitle":"amphibia","status":"continuing","ended":false,"overview":"After stealing a mysterious music box, 13-year-old, Anne Boonchuy is magically transported to the world of Amphibia, a wild marshland full of talking frog-people. With the help of an excitable young frog named Sprig, Anne will transform from monster to hero and discover the first true friendship of her life!","nextAiring":"2021-10-03T00:00:00Z","previousAiring":"2021-05-23T00:00:00Z","network":"Disney Channel","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/152\/banner.jpg?lastWrite=637006572940202490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c655e05499d0.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/152\/poster.jpg?lastWrite=637523561417741440","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350984\/posters\/5faaffa9d22a9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/152\/fanart.jpg?lastWrite=637102721680224360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d4d7cd8dd64e.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":17,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-19T00:00:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":19768789548,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-05-23T00:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":17486366336,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-10-03T00:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/Amphibia","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":350984,"tvRageId":0,"tvMazeId":35072,"firstAired":"2019-06-17T00:00:00Z","seriesType":"standard","cleanTitle":"amphibia","imdbId":"tt8050740","titleSlug":"amphibia","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Comedy","Family","Fantasy"],"tags":[],"added":"2019-08-06T03:01:33.130431Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":75,"episodeCount":75,"totalEpisodeCount":93,"sizeOnDisk":37255155884,"percentOfEpisodes":100.0},"id":152},{"title":"She-Ra and the Princesses of Power","alternateTitles":[{"title":"She-Ra und die Rebellen-Prinzessinnen","seasonNumber":-1}],"sortTitle":"she ra princesses power","status":"ended","ended":true,"overview":"Soldier Adora finds a magic sword \u2014 and her identity as legendary hero She-Ra. She joins the Rebellion, but her best friend stays with the evil Horde.","previousAiring":"2020-05-15T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/153\/banner.jpg?lastWrite=637100124204867940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5beac3c155804.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/153\/poster.jpg?lastWrite=637303014843587520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350399\/posters\/5eb6da3d44e79.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/153\/fanart.jpg?lastWrite=637254735201891590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350399\/backgrounds\/5ec2bda799e58.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-11-13T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9027684586,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-04-26T07:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":5565810583,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-08-02T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":4022878194,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-11-05T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9991325107,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2020-05-15T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4660995418,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/She-Ra and the Princesses of Power","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":350399,"tvRageId":0,"tvMazeId":37089,"firstAired":"2018-11-13T00:00:00Z","seriesType":"standard","cleanTitle":"sheraprincessespower","imdbId":"tt7745956","titleSlug":"she-ra-and-the-princesses-of-power","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Action","Adventure","Animation","Children","Comedy","Family","Fantasy","Romance","Science Fiction"],"tags":[],"added":"2019-08-10T01:23:16.096319Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":5,"episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":64,"sizeOnDisk":33268693888,"percentOfEpisodes":100.0},"id":153},{"title":"Girls' Last Tour","alternateTitles":[{"title":"Shoujo Shuumatsu Ryokou","sceneSeasonNumber":-1},{"title":"Shoujo Shuumatsu Ryokou (Girls' Last Tour)","sceneSeasonNumber":-1}],"sortTitle":"girls last tour","status":"ended","ended":true,"overview":"Amid the desolate remains of a once-thriving city, only the rumbling of a motorbike breaks the cold winter silence. Its riders, Chito and Yuuri, are the last survivors in the war-torn city. Scavenging old military sites for food and parts, the two girls explore the wastelands and speculate about the old world to pass the time. Chito and Yuuri each occasionally struggle with the looming solitude, but when they have each other, sharing the weight of being two of the last humans becomes a bit more bearable. Between Yuuri's clumsy excitement and Chito's calm composure, their dark days get a little brighter with shooting practice, new books, and snowball fights on the frozen battlefield.\r\nAmong a scenery of barren landscapes and deserted buildings, it is an uplifting tale of two girls and their quest to find hope in a bleak and dying world.","previousAiring":"2017-12-23T02:30:00Z","network":"YouTube","airTime":"21:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/156\/banner.jpg?lastWrite=637015057239858840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/332983-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/156\/poster.jpg?lastWrite=637191504514332070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/332983-8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/156\/fanart.jpg?lastWrite=637191504483612610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/332983-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-12-23T02:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":13875780308,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Girls' Last Tour","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":332983,"tvRageId":0,"tvMazeId":31982,"firstAired":"2017-10-06T00:00:00Z","seriesType":"standard","cleanTitle":"girlslasttour","imdbId":"tt7474942","titleSlug":"girls-last-tour","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Adventure","Animation","Anime","Mystery","Science Fiction","War"],"tags":[],"added":"2019-08-15T22:42:02.214688Z","ratings":{"votes":139,"value":9.8},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":24,"sizeOnDisk":13875780308,"percentOfEpisodes":100.0},"id":156},{"title":"Cowboy Bebop","alternateTitles":[],"sortTitle":"cowboy bebop","status":"ended","ended":true,"overview":"In the year 2071 humanity has colonized the entire Solar System through the use of \"Phase Difference Space Gates\". A catastrophic accident occurred during the development of the Gates, damaging both the Earth and the Moon, heavily irradiating the surface, and forcing most of mankind to evacuate to other planets of the Solar System.\r\n\r\nWherever humanity goes, so goes its criminal element, and thus the need for those who hunt criminals. The newly formed solar system police reinstated the bounty scheme of the Wild West. Cowboy Bebop is the story of the four inhabitants of the spaceship Bebop, and the living they barely make at bounty hunting.","previousAiring":"2012-12-21T08:00:00Z","network":"WOWOW","airTime":"17:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/157\/banner.jpg?lastWrite=637021009029130500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/76885-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/157\/poster.jpg?lastWrite=637600310609018500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/76885-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/157\/fanart.jpg?lastWrite=637103832479157750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/76885-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2012-12-21T08:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":4,"sizeOnDisk":1119078903,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1999-04-24T08:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":19848326909,"percentOfEpisodes":100.0}}],"year":1998,"path":"\/tv\/Cowboy Bebop","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":76885,"tvRageId":3157,"tvMazeId":1121,"firstAired":"1998-04-03T00:00:00Z","seriesType":"standard","cleanTitle":"cowboybebop","imdbId":"tt0213338","titleSlug":"cowboy-bebop","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Anime","Science Fiction","Western"],"tags":[],"added":"2019-08-22T20:01:36.753409Z","ratings":{"votes":12815,"value":9.1},"statistics":{"seasonCount":1,"episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":30,"sizeOnDisk":20967405812,"percentOfEpisodes":100.0},"id":157},{"title":"Regular Show","alternateTitles":[],"sortTitle":"regular show","status":"ended","ended":true,"overview":"The daily surreal adventures of a blue jay and raccoon duo that attempt to deal with their mundane jobs as groundskeepers at the local park.","previousAiring":"2017-01-17T00:30:00Z","network":"Cartoon Network","airTime":"19:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/158\/banner.jpg?lastWrite=637103833197224730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/188401-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/158\/poster.jpg?lastWrite=637432653571333200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/188401-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/158\/fanart.jpg?lastWrite=637103833183904970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/188401-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-05-09T23:30:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":28,"sizeOnDisk":195042455,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-11-23T00:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3301495854,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2011-08-01T23:30:00Z","episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":14566630919,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2012-09-02T23:30:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":15559434345,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2013-08-12T23:30:00Z","episodeFileCount":37,"episodeCount":38,"totalEpisodeCount":38,"sizeOnDisk":24145806568,"percentOfEpisodes":97.36842105263158}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2014-08-14T23:30:00Z","episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":18349756285,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2015-06-25T23:30:00Z","episodeFileCount":27,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":3462244854,"percentOfEpisodes":96.42857142857143}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2016-06-30T23:30:00Z","episodeFileCount":35,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":17383065869,"percentOfEpisodes":97.22222222222223}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2017-01-17T00:30:00Z","episodeFileCount":27,"episodeCount":29,"totalEpisodeCount":29,"sizeOnDisk":12318560876,"percentOfEpisodes":93.10344827586206}}],"year":2010,"path":"\/tv\/Regular Show","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":10,"tvdbId":188401,"tvRageId":26426,"tvMazeId":868,"firstAired":"2010-09-06T00:00:00Z","seriesType":"standard","cleanTitle":"regularshow","imdbId":"tt1710308","titleSlug":"regular-show","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Animation","Comedy"],"tags":[],"added":"2019-08-24T22:19:25.318349Z","ratings":{"votes":1161,"value":8.9},"statistics":{"seasonCount":8,"episodeFileCount":243,"episodeCount":248,"totalEpisodeCount":275,"sizeOnDisk":109282038025,"percentOfEpisodes":97.98387096774194},"id":158},{"title":"Batman: The Animated Series","alternateTitles":[{"title":"Batman TAS","seasonNumber":-1},{"title":"Batman (1992)","seasonNumber":-1}],"sortTitle":"batman animated series","status":"ended","ended":true,"overview":"The Dark Knight battles crime in Gotham City with occasional help from Robin and Batgirl.","previousAiring":"2003-10-21T04:25:00Z","network":"FOX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/159\/banner.jpg?lastWrite=637022821284282540","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/76168-g10.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/159\/poster.jpg?lastWrite=637022821284842530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/76168-7.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/159\/fanart.jpg?lastWrite=637103832320600620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/76168-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2003-10-21T04:25:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":20,"sizeOnDisk":38467349,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1993-05-24T04:00:00Z","episodeFileCount":60,"episodeCount":60,"totalEpisodeCount":60,"sizeOnDisk":28737637631,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1994-05-23T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":30061256367,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"1994-11-26T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":28470507492,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"1995-09-15T04:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":14256184057,"percentOfEpisodes":100.0}}],"year":1992,"path":"\/tv\/Batman- The Animated Series","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":76168,"tvRageId":2721,"tvMazeId":757,"firstAired":"1992-09-05T00:00:00Z","seriesType":"standard","cleanTitle":"batmananimatedseries","imdbId":"tt0103359","titleSlug":"batman-the-animated-series","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Animation","Thriller"],"tags":[],"added":"2019-08-24T22:22:06.439274Z","ratings":{"votes":3286,"value":9.1},"statistics":{"seasonCount":4,"episodeFileCount":86,"episodeCount":86,"totalEpisodeCount":105,"sizeOnDisk":101564052896,"percentOfEpisodes":100.0},"id":159},{"title":"Batman Beyond","alternateTitles":[{"title":"Fremtidens Batman 1999","seasonNumber":-1}],"sortTitle":"batman beyond","status":"ended","ended":true,"overview":"It's been years since Batman was last seen and Bruce Wayne secludes himself away from the resurgence of crime in Gotham. After discovering Bruce's secret identity, troubled teenager Terry McGinnis dons the mantle of Batman. With Bruce supervising him, Terry battles criminals in a futuristic Gotham and brings hope to its citizens.","previousAiring":"2001-12-18T05:00:00Z","network":"The WB","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/160\/banner.jpg?lastWrite=637103832340480260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75417-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/160\/poster.jpg?lastWrite=637103832358439930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75417-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/160\/fanart.jpg?lastWrite=637022822222268610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75417-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1999-05-22T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15253314280,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2000-08-19T04:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":30506467599,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2001-12-18T05:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15255318768,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Batman Beyond","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":75417,"tvRageId":2722,"tvMazeId":504,"firstAired":"1999-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"batmanbeyond","imdbId":"tt0147746","titleSlug":"batman-beyond","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children"],"tags":[],"added":"2019-08-24T22:23:41.207055Z","ratings":{"votes":1060,"value":8.5},"statistics":{"seasonCount":3,"episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":66,"sizeOnDisk":61015100647,"percentOfEpisodes":100.0},"id":160},{"title":"The Boys","alternateTitles":[{"title":"The Boys 2019","seasonNumber":-1}],"sortTitle":"boys","status":"continuing","ended":false,"overview":"In a world where superheroes embrace the darker side of their massive celebrity and fame, a group of vigilantes known informally as \"The Boys\" set out to take down corrupt superheroes with no more than blue collar grit and a willingness to fight dirty.","previousAiring":"2020-10-09T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/162\/banner.jpg?lastWrite=637316457627854180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/355567\/banners\/5f2081dce1c5f.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/162\/poster.jpg?lastWrite=637543065747492530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/355567\/posters\/5ef647bcf3238.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/162\/fanart.jpg?lastWrite=637385820277469980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d1200d70e4fe.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-26T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":48812523626,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-10-09T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":32444638389,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/The Boys","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":355567,"tvRageId":0,"tvMazeId":15299,"firstAired":"2019-07-26T00:00:00Z","seriesType":"standard","cleanTitle":"theboys","imdbId":"tt1190634","titleSlug":"the-boys","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Comedy","Crime"],"tags":[],"added":"2019-08-29T21:07:12.467374Z","ratings":{"votes":27,"value":7.0},"statistics":{"seasonCount":3,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":23,"sizeOnDisk":81257162015,"percentOfEpisodes":100.0},"id":162},{"title":"Marvel's Daredevil","alternateTitles":[{"title":"Daredevil","seasonNumber":-1},{"title":"Marvels Daredevil","seasonNumber":-1}],"sortTitle":"marvels daredevil","status":"ended","ended":true,"overview":"Matt Murdock, with his other senses superhumanly enhanced, fights crime as a blind lawyer by day, and vigilante by night.","previousAiring":"2018-10-19T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/168\/banner.jpg?lastWrite=637103832945789290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/281662-g17.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/168\/poster.jpg?lastWrite=637139521759193310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/281662-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/168\/fanart.jpg?lastWrite=637103832942909340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/281662-7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-04-10T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":69866562504,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-03-18T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":92055263612,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-19T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":22900572714,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Marvel's Daredevil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":55,"tvdbId":281662,"tvRageId":38796,"tvMazeId":1369,"firstAired":"2015-04-10T00:00:00Z","seriesType":"standard","cleanTitle":"marvelsdaredevil","imdbId":"tt3322312","titleSlug":"marvels-daredevil","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Crime","Drama"],"tags":[],"added":"2019-09-03T16:52:43.613843Z","ratings":{"votes":17005,"value":8.8},"statistics":{"seasonCount":3,"episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":184822398830,"percentOfEpisodes":100.0},"id":168},{"title":"Bee and PuppyCat: Lazy in Space","alternateTitles":[],"sortTitle":"bee puppycat lazy in space","status":"upcoming","ended":false,"network":"Cartoon Network","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/170\/poster.jpg?lastWrite=637036748281605500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d32cdf60a798.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/170\/fanart.jpg?lastWrite=637036747997451120","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d32cd2cc94ad.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":981482353,"percentOfEpisodes":100.0}}],"year":0,"path":"\/tv\/Bee and PuppyCat- Lazy in Space","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":367111,"tvRageId":0,"tvMazeId":0,"seriesType":"standard","cleanTitle":"beepuppycatlazyinspace","titleSlug":"bee-and-puppycat-lazy-in-space","rootFolderPath":"\/tv\/","genres":["Comedy","Drama","Fantasy"],"tags":[],"added":"2019-09-10T01:13:17.891669Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":981482353,"percentOfEpisodes":100.0},"id":170},{"title":"Twin Peaks","alternateTitles":[],"sortTitle":"twin peaks","status":"ended","ended":true,"overview":"The body of a young girl is washed up on a beach near the small Washington state town of Twin Peaks. Eccentric FBI Special Agent Dale Cooper is called in to investigate her strange demise only to uncover a web of mystery that ultimately leads him deep into the heart of the surrounding woodland and his very own soul. Season 3 - also known as Twin Peaks: The Return - is set 25 years after the events of Seasons 1 and 2.","previousAiring":"2017-09-04T00:47:00Z","network":"ABC (US)","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/173\/banner.jpg?lastWrite=637103833608937270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/70533-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/173\/poster.jpg?lastWrite=637043421260953250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/70533-21.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/173\/fanart.jpg?lastWrite=637103833606537310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/70533-16.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1990-05-24T00:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6121685884,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1991-06-11T00:47:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":14718661309,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-09-04T00:47:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":35840367639,"percentOfEpisodes":100.0}}],"year":1990,"path":"\/tv\/Twin Peaks","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":70533,"tvRageId":6450,"tvMazeId":156,"firstAired":"1990-04-08T00:00:00Z","seriesType":"standard","cleanTitle":"twinpeaks","imdbId":"tt0098936","titleSlug":"twin-peaks","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Fantasy","Mystery","Thriller"],"tags":[],"added":"2019-09-17T18:35:23.938074Z","ratings":{"votes":4511,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":48,"episodeCount":48,"totalEpisodeCount":54,"sizeOnDisk":56680714832,"percentOfEpisodes":100.0},"id":173},{"title":"Snowpiercer","alternateTitles":[{"title":"Snowpiercer: Rompenieves","seasonNumber":-1},{"title":"Snowpiercer Rompenieves","seasonNumber":-1}],"sortTitle":"snowpiercer","status":"continuing","ended":false,"overview":"Earth has frozen over and the last surviving humans live on a giant train circling the globe, struggling to coexist amid the delicate balance onboard.","previousAiring":"2021-03-30T01:47:00Z","network":"TNT (US)","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/175\/banner.jpg?lastWrite=637253868625285400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364928\/banners\/5eb332cdc9eb7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/175\/poster.jpg?lastWrite=637545233243400470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364928\/posters\/600fd44c9c6cd.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/175\/fanart.jpg?lastWrite=637324692835955380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364928\/backgrounds\/5ecbc6cac556a.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-07-13T01:47:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":44763803447,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-03-30T01:47:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":16145870403,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Snowpiercer","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":364928,"tvRageId":0,"tvMazeId":23030,"firstAired":"2020-05-17T00:00:00Z","seriesType":"standard","cleanTitle":"snowpiercer","imdbId":"tt6156584","titleSlug":"snowpiercer","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2019-09-21T09:34:05.655694Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":60909673850,"percentOfEpisodes":100.0},"id":175},{"title":"The Triangle","alternateTitles":[],"sortTitle":"triangle","status":"ended","ended":true,"overview":"Billionaire Eric Benirall assembles a team of experts in many fields to investigate why many of his ships have gone missing in the Bermuda Triangle. He chooses tabloid journalist Howard Thomas, ocean resource engineer Emily Patterson, scientist\/adventurer Bruce Gellar, and psychic Stan Latham. They join forces as Benirall promises them unlimited funding for their projects and the chance for a once in a lifetime experience.","previousAiring":"2005-12-07T05:00:00Z","network":"Syfy","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/176\/banner.jpg?lastWrite=637052936257320970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/32982-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/176\/poster.jpg?lastWrite=637058983965985860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75599-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/176\/fanart.jpg?lastWrite=637052936247361160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75599-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-12-07T05:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":7668769981,"percentOfEpisodes":100.0}}],"year":2005,"path":"\/tv\/The Triangle","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":75599,"tvRageId":6768,"tvMazeId":2022,"firstAired":"2005-12-05T00:00:00Z","seriesType":"standard","cleanTitle":"thetriangle","imdbId":"tt0452573","titleSlug":"the-triangle","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Mini-Series","Science Fiction"],"tags":[],"added":"2019-09-28T18:53:43.147289Z","ratings":{"votes":285,"value":6.5},"statistics":{"seasonCount":1,"episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":4,"sizeOnDisk":7668769981,"percentOfEpisodes":100.0},"id":176},{"title":"Dan Vs.","alternateTitles":[],"sortTitle":"dan vs","status":"ended","ended":true,"overview":"Dan thinks the whole world is against him. Maybe it is, and maybe it isn't -- not even his laid-back friend Chris is totally sure. Maybe Dan's just imagining it all. But, like Chris, you can't help going along for the ride when Dan dreams up his wild plots to get even with whoever or whatever he thinks is out to get him.","previousAiring":"2013-03-10T02:00:00Z","network":"The Hub","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/177\/banner.jpg?lastWrite=637056570824611380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/219851-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/177\/poster.jpg?lastWrite=637513593083679470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/219851\/posters\/6037021072311.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/177\/fanart.jpg?lastWrite=637056570811531600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/219851-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-07-03T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":14291551089,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-06-24T01:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":11753655290,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2013-03-10T02:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9892539233,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Dan Vs","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":219851,"tvRageId":27120,"tvMazeId":5630,"firstAired":"2011-01-01T00:00:00Z","seriesType":"standard","cleanTitle":"danvs","imdbId":"tt1675276","titleSlug":"dan-vs","rootFolderPath":"\/tv\/","genres":["Animation","Comedy"],"tags":[],"added":"2019-10-02T23:51:20.159552Z","ratings":{"votes":87,"value":9.7},"statistics":{"seasonCount":3,"episodeFileCount":53,"episodeCount":53,"totalEpisodeCount":53,"sizeOnDisk":35937745612,"percentOfEpisodes":100.0},"id":177},{"title":"Junji Ito Collection","alternateTitles":[{"title":"Ito Junji: Collection","sceneSeasonNumber":-1}],"sortTitle":"junji ito collection","status":"ended","ended":true,"overview":"TV anime based on internationally acclaimed Japanese artist Junji Ito (Gyo, Uzumaki, Tomie)'s horror manga stories.","previousAiring":"2018-03-22T15:00:00Z","network":"WOWOW","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/178\/banner.jpg?lastWrite=637057074437502320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/335237-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/178\/poster.jpg?lastWrite=637057074438142310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/335237-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/178\/fanart.jpg?lastWrite=637103832873110610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/335237-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-03-22T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6812543669,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Junji Ito Collection","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":335237,"tvRageId":0,"tvMazeId":32967,"firstAired":"2018-01-05T00:00:00Z","seriesType":"standard","cleanTitle":"junjiitocollection","imdbId":"tt7814574","titleSlug":"junji-ito-collection","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Fantasy","Horror","Suspense"],"tags":[],"added":"2019-10-03T13:50:41.779696Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":14,"sizeOnDisk":6812543669,"percentOfEpisodes":100.0},"id":178},{"title":"Digimon: Digital Monsters","alternateTitles":[{"title":"Digimon Adventure","sceneSeasonNumber":1},{"title":"Digimon Adventure 02","sceneSeasonNumber":2},{"title":"Digimon Adventure Zero Two","sceneSeasonNumber":2},{"title":"Digimon Zero Two","sceneSeasonNumber":2}],"sortTitle":"digimon digital monsters","status":"ended","ended":true,"overview":"\"Digimon\" are \"Digital Monsters\". According to the stories, they are inhabitants of the \"Digital World\", a manifestation of Earth's communication network. The stories tell of a group of mostly pre-teens, the \"Chosen Children\" (DigiDestined in the English version), who accompany special Digimon born to defend their world (and ours) from various evil forces. To help them surmount the most difficult obstacles found within both realms, the Digimon have the ability to evolve (Digivolve). In this process, the Digimon change appearance and become much stronger, often changing in personality as well. The group of children who come in contact with the Digital World changes from season to season.","previousAiring":"2001-03-25T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/188\/banner.jpg?lastWrite=637064113845807580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/72241-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/188\/poster.jpg?lastWrite=637103832557796320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/72241-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/188\/fanart.jpg?lastWrite=637103832553316400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/72241-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":13,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2000-03-26T00:00:00Z","episodeFileCount":54,"episodeCount":54,"totalEpisodeCount":54,"sizeOnDisk":56318043465,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2001-03-25T00:00:00Z","episodeFileCount":50,"episodeCount":50,"totalEpisodeCount":50,"sizeOnDisk":22044987779,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Digimon - Digital Monsters","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":72241,"tvRageId":3311,"tvMazeId":1517,"firstAired":"1999-03-07T00:00:00Z","seriesType":"standard","cleanTitle":"digimondigitalmonsters","imdbId":"tt0210418","titleSlug":"digimon-digital-monsters","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Anime"],"tags":[],"added":"2019-10-11T17:23:03.019832Z","ratings":{"votes":1349,"value":7.7},"statistics":{"seasonCount":2,"episodeFileCount":104,"episodeCount":104,"totalEpisodeCount":117,"sizeOnDisk":78363031244,"percentOfEpisodes":100.0},"id":188},{"title":"Lilo & Stitch: The Series","alternateTitles":[{"title":"Lilo and Stitch","seasonNumber":-1}],"sortTitle":"lilo stitch series","status":"ended","ended":true,"overview":"Picking up where the 2002 Walt Disney movie hit left off, this animated series chronicles the further adventures of renegade scientist Dr. Jumba Jookiba's beloved Experiment 626, who is now living happily as Lilo's alien buddy Stitch. The previous 625 experiments become activated when submerged in water and, like Stitch, each experiment has its own terrible talent. Lilo and Stitch's mission is to catch Stitch's cousins before they fall into the clutches of wrongdoers and redirect them to live productively.","previousAiring":"2005-11-29T10:00:00Z","network":"Toon Disney","airTime":"05:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/192\/banner.jpg?lastWrite=637079731073852130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71624-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/192\/poster.jpg?lastWrite=637079731075612100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71624-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/192\/fanart.jpg?lastWrite=637101147524774270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71624-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-02-09T10:00:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":9350212410,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-11-29T10:00:00Z","episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2003,"path":"\/tv\/Lilo & Stitch - The Series","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":71624,"tvRageId":4247,"tvMazeId":9803,"firstAired":"2003-09-20T00:00:00Z","seriesType":"standard","cleanTitle":"lilostitchseries","imdbId":"tt0364774","titleSlug":"lilo-and-stitch-the-series","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Animation"],"tags":[],"added":"2019-10-29T19:11:45.776672Z","ratings":{"votes":317,"value":8.8},"statistics":{"seasonCount":2,"episodeFileCount":39,"episodeCount":65,"totalEpisodeCount":70,"sizeOnDisk":9350212410,"percentOfEpisodes":60.0},"id":192},{"title":"Psycho-Pass","alternateTitles":[{"title":"Psycho-Pass 2","sceneSeasonNumber":2},{"title":"PSYCHO-PASS Extended Edition","sceneSeasonNumber":0},{"title":"Psycho-Pass 3","sceneSeasonNumber":3}],"sortTitle":"psycho pass","status":"ended","ended":true,"overview":"In the near future it is possible to instantaneously measure and quantify a person's state of mind and personality. This information is recorded and processed. The standard by which a persons' mind is referred to as the \"Psycho-Pass\".","previousAiring":"2019-12-12T16:00:00Z","network":"Fuji TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/195\/banner.jpg?lastWrite=637100124038791020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/262090-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/195\/poster.jpg?lastWrite=637100124041590970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/262090-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/195\/fanart.jpg?lastWrite=637100124036671060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/262090-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":19,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-03-21T16:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":29107545536,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2014-12-17T16:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":33790356016,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-12-12T16:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":13321988993,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Psycho-Pass","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":262090,"tvRageId":32925,"tvMazeId":1939,"firstAired":"2012-10-12T00:00:00Z","seriesType":"standard","cleanTitle":"psychopass","imdbId":"tt2379308","titleSlug":"psycho-pass","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Science Fiction"],"tags":[],"added":"2019-11-02T20:51:25.721479Z","ratings":{"votes":6527,"value":8.5},"statistics":{"seasonCount":3,"episodeFileCount":41,"episodeCount":41,"totalEpisodeCount":60,"sizeOnDisk":76219890545,"percentOfEpisodes":100.0},"id":195},{"title":"Uzumaki: Spiral into Horror","alternateTitles":[],"sortTitle":"uzumaki spiral into horror","status":"upcoming","ended":false,"overview":"Kirei lives in a town that lately has odd occurrences, and each one somehow is connected to a spiral. Soon the spiral occurrences spread to infect even the bodies of people, which suddenly turns the everyday events in her life into chaos and horror.","network":"Adult Swim","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/196\/banner.jpg?lastWrite=637083955614316740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d7e6a8404342.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/196\/poster.jpg?lastWrite=637410102918491490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/369026\/posters\/5faffcf6049bf.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/196\/fanart.jpg?lastWrite=637410102920891450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/369026\/backgrounds\/5faffd13a5479.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":0,"path":"\/tv\/Uzumaki","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":369026,"tvRageId":0,"tvMazeId":46565,"seriesType":"standard","cleanTitle":"uzumakispiralintohorror","imdbId":"tt10905902","titleSlug":"uzumaki-spiral-into-horror","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Drama","Horror","Mini-Series","Romance"],"tags":[],"added":"2019-11-03T16:32:39.547235Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":196},{"title":"His Dark Materials","alternateTitles":[{"title":"La materia oscura","seasonNumber":-1},{"title":"His Dark Materials","seasonNumber":-1},{"title":"Queste oscure materie","seasonNumber":-1},{"title":"Az \u00dar s\u00f6t\u00e9t anyagai","seasonNumber":-1},{"title":"Az Ur sotet anyagai","seasonNumber":-1}],"sortTitle":"his dark materials","status":"continuing","ended":false,"overview":"In an alternative world where all humans have animal companions called d\u00e6mons, which are the manifestation of the human soul, a young orphan living with the tutors at Jordan College, Oxford discovers a dangerous secret that involves Lord Asriel and Marisa Coulter. In her search for her missing friend, she uncovers a slew of kidnappings and its link to the mysterious substance called Dust.","previousAiring":"2020-12-20T20:00:00Z","network":"BBC One","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/199\/banner.jpg?lastWrite=637138655491994430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5dbbc1f5b2b50.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/199\/poster.jpg?lastWrite=637383652608754220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/360295\/posters\/5f8490b855f99.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/199\/fanart.jpg?lastWrite=637143852514678110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5db6a5a4e552c.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-22T20:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":37534792004,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-12-20T20:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":39027011487,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/His Dark Materials","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":57,"tvdbId":360295,"tvRageId":0,"tvMazeId":7626,"firstAired":"2019-11-03T00:00:00Z","seriesType":"standard","cleanTitle":"hisdarkmaterials","imdbId":"tt5607976","titleSlug":"his-dark-materials","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Fantasy","Science Fiction"],"tags":[],"added":"2019-11-04T04:30:46.35519Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":16,"sizeOnDisk":76561803491,"percentOfEpisodes":100.0},"id":199},{"title":"The Truth About the Harry Quebert Affair","alternateTitles":[{"title":"La V\u00e9rit\u00e9 sur l'affaire Harry Quebert","seasonNumber":-1},{"title":"La verit\u00e0 sul caso Harry Quebert","seasonNumber":-1}],"sortTitle":"truth about harry quebert affair","status":"ended","ended":true,"overview":"A writer gets caught up in a murder investigation involving his mentor, an esteemed American author. Based on the book of the same name, by Jo\u00ebl Dicker. Created by Jean-Jacques Annaud.\r\nThe Truth About the Harry Quebert Affair follows Harry Quebert, a literary icon who suddenly finds himself indicted for murder after the body of a Nola Kellergan, a 15-year-old girl who has been missing for many years, is found buried on his property.","previousAiring":"2018-11-06T21:00:00Z","network":"Sky Witness","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/200\/banner.jpg?lastWrite=637103833618457090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5b7d2ea5b6a12.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/200\/poster.jpg?lastWrite=637103833621977030","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/339464-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/200\/fanart.jpg?lastWrite=637103833603697360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b7edc6172bc3.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-11-06T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":26279766879,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/The Truth About the Harry Quebert Affair","qualityProfileId":1,"languageProfileId":2,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":339464,"tvRageId":0,"tvMazeId":31183,"firstAired":"2018-09-04T00:00:00Z","seriesType":"standard","cleanTitle":"thetruthaboutharryquebertaffair","imdbId":"tt7134194","titleSlug":"the-truth-about-the-harry-quebert-affair","rootFolderPath":"\/tv\/","genres":["Crime","Drama","Mini-Series"],"tags":[],"added":"2019-11-04T10:56:49.649694Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":26279766879,"percentOfEpisodes":100.0},"id":200},{"title":"The Witcher","alternateTitles":[{"title":"The Witcher US","seasonNumber":-1}],"sortTitle":"witcher","status":"continuing","ended":false,"overview":"Geralt of Rivia, a solitary monster hunter, struggles to find his place in a world where people often prove more wicked than beasts.","nextAiring":"2021-12-17T08:00:00Z","previousAiring":"2019-12-20T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/203\/banner.jpg?lastWrite=637617210611577910","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/362696\/banners\/60eadadee81c4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/203\/poster.jpg?lastWrite=637616343949522350","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/362696\/posters\/60e8b82424027.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/203\/fanart.jpg?lastWrite=637129560201475990","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/362696\/backgrounds\/62032150.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":9,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-20T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":27720370496,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"nextAiring":"2021-12-17T08:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/The Witcher","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":362696,"tvRageId":0,"tvMazeId":28276,"firstAired":"2019-12-20T00:00:00Z","seriesType":"standard","cleanTitle":"thewitcher","imdbId":"tt5180504","titleSlug":"the-witcher","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Fantasy"],"tags":[],"added":"2019-11-18T09:38:21.616379Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":25,"sizeOnDisk":27720370496,"percentOfEpisodes":100.0},"id":203},{"title":"We Are the Wave","alternateTitles":[{"title":"Somos la Ola","seasonNumber":-1}],"sortTitle":"we are wave","status":"ended","ended":true,"overview":"Rebellious teens ignite a fast-spreading political movement that takes a terrifying turn.","previousAiring":"2019-11-01T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/204\/banner.jpg?lastWrite=637216551298658340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368386\/banners\/5e87dbe2900df.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/204\/poster.jpg?lastWrite=637147751150173230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368386\/posters\/62049837.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/204\/fanart.jpg?lastWrite=637216551286338560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5dba938b65858.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-11-01T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":11117022103,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/We Are the Wave","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":368386,"tvRageId":0,"tvMazeId":0,"firstAired":"2019-11-01T00:00:00Z","seriesType":"standard","cleanTitle":"wearewave","imdbId":"tt11053220","titleSlug":"we-are-the-wave","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama"],"tags":[],"added":"2019-11-22T16:29:32.209527Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":11117022103,"percentOfEpisodes":100.0},"id":204},{"title":"War of the Worlds (2019)","alternateTitles":[{"title":"Krieg der Welten","seasonNumber":-1},{"title":"Krieg der Welten 2019","seasonNumber":-1}],"sortTitle":"war worlds 2019","status":"continuing","ended":false,"overview":"When astronomers detect a transmission from another galaxy, it is definitive proof of intelligent extra-terrestrial life. The world\u2019s population waits for further contact with bated breath. They do not have to wait long. Within days, mankind is all but wiped out by a devastating attack; pockets of humanity are left in an eerily deserted world. As aliens hunt and kill those left alive, the survivors ask a burning question \u2013 who are these attackers and why are they hell-bent on our destruction? Emotional, cinematic and rooted in character, it is a unique marriage of human drama and the best science fiction. This is a story of ordinary people in extraordinary circumstances - but they are more than just victims in a brutal war. For, as we will come to realize, the aliens\u2019 savage attack on earth is not arbitrary: its seeds are being sown before our very eyes.","previousAiring":"2021-06-06T19:50:00Z","network":"Canal+","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/205\/banner.jpg?lastWrite=637586411572200570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/370139\/banners\/60b665ac2a804.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/205\/poster.jpg?lastWrite=637345068301148510","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/370139\/posters\/62096714.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/205\/fanart.jpg?lastWrite=637320358454440230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5da446440fda6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-11-18T20:50:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":53473147326,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-06-06T19:50:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":16720958463,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/War of the Worlds (2019)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":370139,"tvRageId":0,"tvMazeId":37808,"firstAired":"2019-10-28T00:00:00Z","seriesType":"standard","cleanTitle":"warworlds2019","imdbId":"tt9686194","titleSlug":"war-of-the-worlds-2019","rootFolderPath":"\/tv\/","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-11-22T16:31:08.932314Z","ratings":{"votes":6,"value":8.0},"statistics":{"seasonCount":2,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":70194105789,"percentOfEpisodes":100.0},"id":205},{"title":"How to Get Away with Murder","alternateTitles":[{"title":"Le Regole del Delitto Perfetto","seasonNumber":-1},{"title":"Como defender a un asesino","seasonNumber":-1}],"sortTitle":"how to get away with murder","status":"ended","ended":true,"overview":"Murder, deception, fear and guilt are the ties that bind Middelton University Professor Annalise Keating to her long-time associates Frank Delfino, Bonnie Winterbottom and her students. But as the group struggles to move on with their lives and focus on their clients, their past continues to haunt them, as Annalise and her inner circle struggle to keep their secrets from getting exposed. Relationships will be fractured, lies will spin out of control, and shocking, new mysteries upend their entire lives.","previousAiring":"2020-05-15T02:00:00Z","network":"ABC (US)","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/207\/banner.jpg?lastWrite=637104594968681400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/281620-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/207\/poster.jpg?lastWrite=637104594969761390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/281620-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/207\/fanart.jpg?lastWrite=637144285780806490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/281620-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-02-27T03:43:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":26304896520,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-03-18T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":56191867853,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-02-24T03:43:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":28545343464,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2018-03-16T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":47401397794,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2019-03-01T03:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":30498128092,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2020-05-15T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":41045163848,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/How to Get Away with Murder","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":281620,"tvRageId":37307,"tvMazeId":52,"firstAired":"2014-09-25T00:00:00Z","seriesType":"standard","cleanTitle":"howtogetawaywithmurder","imdbId":"tt3205802","titleSlug":"how-to-get-away-with-murder","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Drama","Mystery","Suspense","Thriller"],"tags":[],"added":"2019-11-27T13:51:35.495842Z","ratings":{"votes":2058,"value":9.1},"statistics":{"seasonCount":6,"episodeFileCount":90,"episodeCount":90,"totalEpisodeCount":90,"sizeOnDisk":229986797571,"percentOfEpisodes":100.0},"id":207},{"title":"Steven Universe Future","alternateTitles":[],"sortTitle":"steven universe future","status":"ended","ended":true,"overview":"After saving the universe, Steven is still at it, tying up every loose end. But as he runs out of other people's problems to solve, he'll finally have to face his own. Haunted by the past and lost in the present, Steven begins manifesting new, uncontrollable powers that the Crystal Gems have never seen from him before. What does it all mean, and what does Steven want for his future?","previousAiring":"2020-03-27T23:00:00Z","network":"Cartoon Network","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/208\/banner.jpg?lastWrite=637156412866850520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/370471\/banners\/62062627.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/208\/poster.jpg?lastWrite=637114797235642460","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/370471\/posters\/62019501.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/208\/fanart.jpg?lastWrite=637380617891091620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d97b83a53852.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-03-27T23:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":8841733544,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Steven Universe Future","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":370471,"tvRageId":0,"tvMazeId":45148,"firstAired":"2019-12-07T00:00:00Z","seriesType":"standard","cleanTitle":"stevenuniversefuture","imdbId":"tt13714610","titleSlug":"steven-universe-future","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Animation","Comedy","Fantasy","Mini-Series","Science Fiction"],"tags":[],"added":"2019-12-07T21:07:00.773369Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":21,"sizeOnDisk":8841733544,"percentOfEpisodes":100.0},"id":208},{"title":"House of Cards (US)","alternateTitles":[{"title":"House of Cards 2013","seasonNumber":-1},{"title":"House of Cards","seasonNumber":5}],"sortTitle":"house cards us","status":"ended","ended":true,"overview":"Ruthless and cunning, Congressman Francis Underwood and his wife Claire stop at nothing to conquer everything. It penetrates the shadowy world of greed, sex and corruption in modern D.C.","previousAiring":"2018-11-02T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/211\/banner.jpg?lastWrite=637128911046070550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/262980-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/211\/poster.jpg?lastWrite=637128911047470520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/262980-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/211\/fanart.jpg?lastWrite=637128911045030570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/262980-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-02-01T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":52460809994,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2014-02-14T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":51373412018,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2015-02-27T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":56329504635,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2016-03-04T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4870040836,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2017-05-30T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":55432197548,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2018-11-02T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":37541175784,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/House of Cards (US)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":52,"tvdbId":262980,"tvRageId":27822,"tvMazeId":175,"firstAired":"2013-02-01T00:00:00Z","seriesType":"standard","cleanTitle":"housecardsus","imdbId":"tt1856010","titleSlug":"house-of-cards-us","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama"],"tags":[],"added":"2019-12-25T17:18:23.817856Z","ratings":{"votes":4719,"value":8.9},"statistics":{"seasonCount":6,"episodeFileCount":73,"episodeCount":73,"totalEpisodeCount":73,"sizeOnDisk":258007140815,"percentOfEpisodes":100.0},"id":211},{"title":"Primal","alternateTitles":[{"title":"Genndy Tartakovskys Primal","seasonNumber":-1}],"sortTitle":"primal","status":"continuing","ended":false,"overview":"Primal features a caveman at the dawn of evolution. A dinosaur on the brink of extinction. Bonded by tragedy, this unlikely friendship becomes the only hope of survival in a violent, primordial world.","previousAiring":"2020-11-02T04:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/213\/banner.jpg?lastWrite=637383219187092160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364007\/banners\/5f8628b2ef5e6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/213\/poster.jpg?lastWrite=637142986534481310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d7e678d4a5ef.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/213\/fanart.jpg?lastWrite=637378449496492500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364007\/backgrounds\/5f7ebb8dce7ec.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-11-02T04:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":12182385463,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Primal","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":364007,"tvRageId":0,"tvMazeId":42184,"firstAired":"2019-10-08T00:00:00Z","seriesType":"standard","cleanTitle":"primal","imdbId":"tt10332508","titleSlug":"primal","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Animation"],"tags":[],"added":"2020-01-07T21:06:49.49271Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":12,"sizeOnDisk":12182385463,"percentOfEpisodes":100.0},"id":213},{"title":"The Owl House","alternateTitles":[{"title":"Willkommen im Haus der Eulen","seasonNumber":-1}],"sortTitle":"owl house","status":"continuing","ended":false,"overview":"An animated fantasy-comedy series that follows Luz, a self-assured teenage girl who accidentally stumbles upon a portal to a magical world where she befriends a rebellious witch, Eda, and an adorably tiny warrior, King. Despite not having magical abilities, Luz pursues her dream of becoming a witch by serving as Eda's apprentice at the Owl House and ultimately finds a new family in an unlikely setting.","previousAiring":"2021-08-14T14:00:00Z","network":"Disney Channel","airTime":"10:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/215\/banner.jpg?lastWrite=637148183783391550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/banners\/62050528.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/215\/poster.jpg?lastWrite=637307781670563240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/posters\/62003549.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/215\/fanart.jpg?lastWrite=637297377276225640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/backgrounds\/5f041c4896063.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-08-29T14:00:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":14390005338,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-08-14T14:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":21,"sizeOnDisk":7970763080,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/The Owl House","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":349578,"tvRageId":0,"tvMazeId":35073,"firstAired":"2020-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"theowlhouse","imdbId":"tt8050756","titleSlug":"the-owl-house","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Fantasy"],"tags":[],"added":"2020-01-11T03:18:24.888281Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":48,"sizeOnDisk":22360768418,"percentOfEpisodes":100.0},"id":215},{"title":"Assassination Classroom","alternateTitles":[{"title":"Ansatsu Kyoushitsu","sceneSeasonNumber":-1},{"title":"Assassination Classroom S2","sceneSeasonNumber":2},{"title":"Ansatsu Kyoushitsu S2","sceneSeasonNumber":2},{"title":"Ansatsu Kyoushitsu 2","sceneSeasonNumber":2}],"sortTitle":"assassination classroom","status":"ended","ended":true,"overview":"The students of class 3-E have a mission: kill their teacher before graduation. He has already destroyed the moon, and has promised to destroy the Earth if he can not be killed within a year. But how can this class of misfits kill a tentacled monster, capable of reaching Mach 20 speed, who may be the best teacher any of them have ever had?","previousAiring":"2016-06-30T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/216\/banner.jpg?lastWrite=637143581249489160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/283947-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/216\/poster.jpg?lastWrite=637143581255569040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/283947-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/216\/fanart.jpg?lastWrite=637143581244649250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/283947-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2014-11-08T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":11,"sizeOnDisk":63195587,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-06-19T15:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":30628993180,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-06-30T15:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":34167626042,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Assassination Classroom","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":23,"tvdbId":283947,"tvRageId":47110,"tvMazeId":4907,"firstAired":"2015-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"assassinationclassroom","imdbId":"tt3837246","titleSlug":"assassination-classroom","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Comedy"],"tags":[],"added":"2020-01-11T16:48:41.596999Z","ratings":{"votes":458,"value":8.4},"statistics":{"seasonCount":2,"episodeFileCount":48,"episodeCount":48,"totalEpisodeCount":58,"sizeOnDisk":64859814809,"percentOfEpisodes":100.0},"id":216},{"title":"Epithet Erased","alternateTitles":[],"sortTitle":"epithet erased","status":"continuing","ended":false,"overview":"An ensemble comedy show about people with superpowers based around a random word attached to their soul called an Epithet. The show follows our protagonist, Molly, who gets stuck in a museum the same time a bunch of thieves break in to steal an artifact.","previousAiring":"2019-12-20T05:00:00Z","network":"VRV","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/217\/poster.jpg?lastWrite=637144529176053190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5dbdbd386856e.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/217\/fanart.jpg?lastWrite=637144529164933390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5dbdb122bc6f8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-20T05:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":764057335,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Epithet Erased","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":371712,"tvRageId":0,"tvMazeId":0,"firstAired":"2019-11-08T00:00:00Z","seriesType":"standard","cleanTitle":"epitheterased","titleSlug":"epithet-erased","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Comedy"],"tags":[],"added":"2020-01-12T19:08:34.356047Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":9,"sizeOnDisk":764057335,"percentOfEpisodes":100.0},"id":217},{"title":"Kindred: The Embraced","alternateTitles":[],"sortTitle":"kindred embraced","status":"ended","ended":true,"overview":"Kindred: The Embraced was a prime-time drama by Aaron Spelling that revolved around the lives and loves of the clan-based vampire society of San Francisco.","previousAiring":"1996-05-08T04:00:00Z","network":"FOX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/219\/banner.jpg?lastWrite=637203987606053230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/75758\/banners\/62098397.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/219\/poster.jpg?lastWrite=637186173218225390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75758-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/219\/fanart.jpg?lastWrite=637186173215745430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75758-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1996-05-08T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":4578877307,"percentOfEpisodes":100.0}}],"year":1996,"path":"\/tv\/Kindred - The Embraced","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":75758,"tvRageId":4129,"tvMazeId":3883,"firstAired":"1996-04-02T00:00:00Z","seriesType":"standard","cleanTitle":"kindredembraced","imdbId":"tt0115232","titleSlug":"kindred-the-embraced","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy"],"tags":[],"added":"2020-02-29T23:55:20.519395Z","ratings":{"votes":27,"value":7.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":10,"sizeOnDisk":4578877307,"percentOfEpisodes":100.0},"id":219},{"title":"Danger 5","alternateTitles":[],"sortTitle":"danger 5","status":"ended","ended":true,"overview":"Set in a bizarre, 1960's inspired version of World War II, action comedy series Danger 5 follows a team of five spies on a mission to kill Adolf Hitler. \r\n\r\nDanger 5 is the finest group of special operatives the Allies have to offer; Jackson from the USA, Tucker from Australia, Ilsa from Russia, Claire from Britain and Pierre from Europe. In each episode Danger 5 unravels another of Hitler's diabolical schemes as they travel across a myriad of exotic locations.\r\n\r\nThe action and offbeat humour is relentless as Danger 5 mounts a series of thrilling missions which include discovering Josef Mengele's perverted Antarctic death circus, busting down Erwin Rommel's golden murder casino and posting as exotic dancers in an attempt to take out Hitler at his own birthday party.","previousAiring":"2015-02-15T10:30:00Z","network":"SBS (AU)","airTime":"21:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/220\/banner.jpg?lastWrite=637201613263004570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/253823-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/220\/poster.jpg?lastWrite=637201613266364520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/253823-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/220\/fanart.jpg?lastWrite=637201613251564760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/253823-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-04-02T11:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":7330125673,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-02-15T10:30:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":1501094653,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Danger 5","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":253823,"tvRageId":30245,"tvMazeId":1619,"firstAired":"2012-02-27T00:00:00Z","seriesType":"standard","cleanTitle":"danger5","imdbId":"tt1807165","titleSlug":"danger-5","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy"],"tags":[],"added":"2020-03-18T20:48:42.856494Z","ratings":{"votes":344,"value":8.4},"statistics":{"seasonCount":2,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":18,"sizeOnDisk":8831220326,"percentOfEpisodes":100.0},"id":220},{"title":"Avenue 5","alternateTitles":[],"sortTitle":"avenue 5","status":"continuing","ended":false,"overview":"40 years in the future, space captain Ryan Clark and the crew of the luxury space cruise ship Avenue 5 navigate disgruntled passengers and unexpected events after experiencing technical difficulties onboard.","previousAiring":"2020-03-16T02:00:00Z","network":"HBO","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/223\/banner.jpg?lastWrite=637206762878464620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364106\/banners\/62045492.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/223\/poster.jpg?lastWrite=637206762881064570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364106\/posters\/62083392.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/223\/fanart.jpg?lastWrite=637206762875984670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364106\/backgrounds\/62003599.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-03-16T02:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":6310559605,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/Avenue 5","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":28,"tvdbId":364106,"tvRageId":0,"tvMazeId":32263,"firstAired":"2020-01-19T00:00:00Z","seriesType":"standard","cleanTitle":"avenue5","imdbId":"tt10234362","titleSlug":"avenue-5","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Science Fiction"],"tags":[],"added":"2020-03-24T19:51:26.493182Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":10,"sizeOnDisk":6310559605,"percentOfEpisodes":100.0},"id":223},{"title":"Tales from the Loop","alternateTitles":[],"sortTitle":"tales from loop","status":"ended","ended":true,"overview":"Inspired by the wondrous paintings of Simon St\u00e5lenhag, Tales from the Loop explores the mind-bending adventures of the people who live above the Loop, a machine built to unlock and explore the mysteries of the universe - making things previously relegated to science fiction, possible.","previousAiring":"2020-04-03T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/227\/banner.jpg?lastWrite=637215397365327980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368210\/banners\/5e831698dbee8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/227\/poster.jpg?lastWrite=637215397368607920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368210\/posters\/62094780.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/227\/fanart.jpg?lastWrite=637553466980521870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368210\/backgrounds\/5e86122ddb110.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-04-03T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":23295136036,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Tales from the Loop","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":54,"tvdbId":368210,"tvRageId":0,"tvMazeId":37780,"firstAired":"2020-04-03T00:00:00Z","seriesType":"standard","cleanTitle":"talesfromloop","imdbId":"tt8741290","titleSlug":"tales-from-the-loop","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Science Fiction"],"tags":[],"added":"2020-04-03T19:42:14.518885Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":9,"sizeOnDisk":23295136036,"percentOfEpisodes":100.0},"id":227},{"title":"Devs","alternateTitles":[],"sortTitle":"devs","status":"ended","ended":true,"overview":"A young computer engineer, Lily, investigates the secretive development division of her employer, a cutting-edge tech company based in San Francisco, which she believes is behind the disappearance of her boyfriend.","previousAiring":"2020-04-16T04:00:00Z","network":"Hulu","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/228\/banner.jpg?lastWrite=637226678994223760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364149\/banners\/62101184.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/228\/poster.jpg?lastWrite=637226678996303720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364149\/posters\/62102197.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/228\/fanart.jpg?lastWrite=637226678992983790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364149\/backgrounds\/62108555.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-04-16T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10720114131,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Devs","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":364149,"tvRageId":0,"tvMazeId":35017,"firstAired":"2020-03-05T00:00:00Z","seriesType":"standard","cleanTitle":"devs","imdbId":"tt8134186","titleSlug":"devs","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Mini-Series","Science Fiction","Thriller"],"tags":[],"added":"2020-04-16T21:04:58.198888Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10720114131,"percentOfEpisodes":100.0},"id":228},{"title":"My Life as a Teenage Robot","alternateTitles":[],"sortTitle":"my life as teenage robot","status":"ended","ended":true,"overview":"While most kids think their own problems are the end of the world, there's one girl whose problems really are the end of the world. My Life as a Teenage Robot is the story of Jenny, a super-powered robot with a super-sensitive teenage heart. Her primary function is to protect the planet from certain disaster, but, like all teenagers, she has her own ideas about how she would like to live. Defending the Earth has become a mundane chore, and she would rather do more exciting things like go to high school and be allowed to drive the family car. My Life as a Teenage Robot, a spin-off from Nickelodeon's hit Oh Yeah! Cartoons (under the name My Neighbor Has A Teenage Robot), was created by Rob Renzetti and is executive produced by Renzetti and Fred Seibert. This show is the third of three spinoffs of Oh Yeah! Cartoons, the others being ChalkZone and Fairly OddParents.","previousAiring":"2009-05-02T23:25:00Z","network":"Nickelodeon","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/229\/banner.jpg?lastWrite=637228439987277160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/8939-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/229\/poster.jpg?lastWrite=637228439988997130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78444-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/229\/fanart.jpg?lastWrite=637228439977757320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78444-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-02-28T00:25:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":12318705360,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-09-09T23:50:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":10886102490,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-05-02T23:25:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":13417975192,"percentOfEpisodes":100.0}}],"year":2003,"path":"\/tv\/My Life as a Teenage Robot","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":78444,"tvRageId":0,"tvMazeId":12450,"firstAired":"2003-08-01T00:00:00Z","seriesType":"standard","cleanTitle":"mylifeasteenagerobot","imdbId":"tt0318233","titleSlug":"my-life-as-a-teenage-robot","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Animation"],"tags":[],"added":"2020-04-18T21:59:55.255413Z","ratings":{"votes":82,"value":6.4},"statistics":{"seasonCount":3,"episodeFileCount":73,"episodeCount":73,"totalEpisodeCount":77,"sizeOnDisk":36622783042,"percentOfEpisodes":100.0},"id":229},{"title":"Doodlez","alternateTitles":[],"sortTitle":"doodlez","status":"ended","ended":true,"overview":"Dood, is a generally good-natured, if somewhat short-tempered doodle drawn by an omnipotent and unknowable Hand onto a blank page. As Hand draws more and more elements into existence, Dood is led by his overpowering curiosity into a misadventure that more than likely will involve him being put through a veritable blender of cartoon torture. When he comes out the other side, Dood may be broken, but his spirit never is.\r\n\r\nFunny and fast-paced, the overall style and attitude of the show is edgy and irreverent, always playing with cartoon conventions. Like any doodle, doesn't have a purpose beyond simple entertainment, it\u2019s completely free and unpredictable. It will take you anywhere, anytime, in an animated world of undefined potential where normal rules don't apply.","previousAiring":"2004-01-23T05:00:00Z","network":"Teletoon","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/231\/banner.jpg?lastWrite=637230683201075580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/108761-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/231\/poster.jpg?lastWrite=637230683207275480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/108761-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/231\/fanart.jpg?lastWrite=637230683197195650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/108761-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-09-12T04:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":227080406,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2004-01-23T05:00:00Z","episodeFileCount":26,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":541469824,"percentOfEpisodes":66.66666666666667}}],"year":2002,"path":"\/tv\/Doodlez (2002)\/","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":2,"tvdbId":108761,"tvRageId":0,"tvMazeId":28123,"firstAired":"2002-09-06T00:00:00Z","seriesType":"standard","cleanTitle":"doodlez","imdbId":"tt0489596","titleSlug":"doodlez","rootFolderPath":"\/tv\/","genres":["Animation","Children","Comedy"],"tags":[],"added":"2020-04-21T12:18:37.723513Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":37,"episodeCount":50,"totalEpisodeCount":50,"sizeOnDisk":768550230,"percentOfEpisodes":74.0},"id":231},{"title":"The Midnight Gospel","alternateTitles":[],"sortTitle":"midnight gospel","status":"ended","ended":true,"overview":"Traversing trippy worlds inside his multiverse simulator, a space-caster explores existential questions about life, death and everything in between.","previousAiring":"2020-04-20T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/232\/banner.jpg?lastWrite=637233914271440590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/378553\/banners\/5ea12f98e7ebf.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/232\/poster.jpg?lastWrite=637266436638374490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/378553\/posters\/5e8c3165bf9ca.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/232\/fanart.jpg?lastWrite=637230923713105310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/378553\/backgrounds\/5e80cf36c8805.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-04-20T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":12029805611,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/The Midnight Gospel","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":378553,"tvRageId":0,"tvMazeId":45499,"firstAired":"2020-04-20T00:00:00Z","seriesType":"standard","cleanTitle":"themidnightgospel","imdbId":"tt11639414","titleSlug":"the-midnight-gospel","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2020-04-21T18:59:30.458849Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":12029805611,"percentOfEpisodes":100.0},"id":232},{"title":"Beastars","alternateTitles":[{"title":"Beastars 2","sceneSeasonNumber":2},{"title":"Beastars S2","sceneSeasonNumber":2}],"sortTitle":"beastars","status":"continuing","ended":false,"overview":"In a world of anthropomorphic animals, a reclusive wolf's complicated relationship with a kindly rabbit is tested by a classmate's murder, a charismatic deer's influence, and his own burgeoning predatory instincts.","previousAiring":"2021-03-24T16:00:00Z","network":"Fuji TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/233\/banner.jpg?lastWrite=637239741737669790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5da1105770587.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/233\/poster.jpg?lastWrite=637401431526589800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361013\/posters\/5fa1f659b9bbf.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/233\/fanart.jpg?lastWrite=637239741728149950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c98b9a151898.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-25T16:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":4816663233,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-03-24T16:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":9732433269,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Beastars","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":23,"tvdbId":361013,"tvRageId":0,"tvMazeId":43426,"firstAired":"2019-10-10T00:00:00Z","seriesType":"standard","cleanTitle":"beastars","imdbId":"tt11043632","titleSlug":"beastars","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Anime","Crime","Drama"],"tags":[],"added":"2020-05-01T23:56:10.727264Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":14549096502,"percentOfEpisodes":100.0},"id":233},{"title":"Kipo and the Age of Wonderbeasts","alternateTitles":[],"sortTitle":"kipo age wonderbeasts","status":"ended","ended":true,"overview":"A sheltered girl gets a crash course in survival when a mutant attack sends her to the surface, far from the safety of her underground home.","previousAiring":"2020-10-12T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/235\/banner.jpg?lastWrite=637247623146778880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/365463\/banners\/62062666.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/235\/poster.jpg?lastWrite=637247623147898860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/365463\/posters\/62042769.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/235\/fanart.jpg?lastWrite=637251268258322540","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/365463\/backgrounds\/5ebd1a5994fed.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-01-14T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3440865772,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-06-12T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":32293235311,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-10-12T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":5519699235,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Kipo and the Age of Wonderbeasts","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":365463,"tvRageId":0,"tvMazeId":42593,"firstAired":"2020-01-14T00:00:00Z","seriesType":"standard","cleanTitle":"kipoagewonderbeasts","imdbId":"tt10482560","titleSlug":"kipo-and-the-age-of-wonderbeasts","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Science Fiction"],"tags":[],"added":"2020-05-11T02:51:53.489567Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":30,"episodeCount":30,"totalEpisodeCount":30,"sizeOnDisk":41253800318,"percentOfEpisodes":100.0},"id":235},{"title":"Solar Opposites","alternateTitles":[],"sortTitle":"solar opposites","status":"continuing","ended":false,"overview":"A family of aliens move to middle America, where they debate whether life is better there or on their home planet.","previousAiring":"2021-03-26T04:00:00Z","network":"Hulu","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/236\/banner.jpg?lastWrite=637254735285650160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/375892\/banners\/5ec2dc68c67ab.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/236\/poster.jpg?lastWrite=637520962184563050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/375892\/posters\/603b6a37d9223.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/236\/fanart.jpg?lastWrite=637531367172341700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/375892\/backgrounds\/5ee1f02bb9a20.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-05-08T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":4470086006,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-03-26T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":4621690623,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/Solar Opposites","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":375892,"tvRageId":0,"tvMazeId":38432,"firstAired":"2020-05-08T00:00:00Z","seriesType":"standard","cleanTitle":"solaropposites","imdbId":"tt8910922","titleSlug":"solar-opposites","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2020-05-15T13:36:05.597494Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":20,"sizeOnDisk":9091776629,"percentOfEpisodes":100.0},"id":236},{"title":"GO! Cartoons","alternateTitles":[],"sortTitle":"go cartoons","status":"ended","ended":true,"overview":"GO! Cartoons is a series of animated shorts created by Fred Seibert and produced by Frederator Studios and Sony Pictures Animation. \r\n\r\nGO! Cartoons is Frederator Studios' sixth cartoon \"incubator\" series since 1998, featuring unique voices in short animated films, meant to introduce original characters and animation creators.","previousAiring":"2018-04-10T06:00:00Z","network":"VRV","airTime":"02:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/237\/banner.jpg?lastWrite=637251507170967000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/337964-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/237\/poster.jpg?lastWrite=637251507171886980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/337964-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/237\/fanart.jpg?lastWrite=637251507178446870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/337964-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-04-10T06:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":603498218,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/GO! Cartoons","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":5,"tvdbId":337964,"tvRageId":0,"tvMazeId":54232,"firstAired":"2017-11-07T00:00:00Z","seriesType":"standard","cleanTitle":"gocartoons","imdbId":"tt7603188","titleSlug":"go-cartoons","rootFolderPath":"\/tv\/","genres":["Animation","Comedy"],"tags":[],"added":"2020-05-15T14:45:15.581937Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":603498218,"percentOfEpisodes":100.0},"id":237},{"title":"BPS: Battle Programmer Shirase","alternateTitles":[],"sortTitle":"bps battle programmer shirase","status":"ended","ended":true,"overview":"Battle Programmer Shirase, also known as BPS, is a free programmer with super hacking abilities who doesn't work for money. What he does work for is certainly something that only people like him would appreciate. But, his demeanor certainly doesn't suit the jobs he is hired for. With the evil King of America causing trouble via the internet, Shirase is nothing but busy as each new adventure brings even more interesting people into the picture.","previousAiring":"2004-01-02T15:12:00Z","network":"tvk","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/239\/banner.jpg?lastWrite=637251659838468240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81147-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/239\/poster.jpg?lastWrite=637251659839548220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81147-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/239\/fanart.jpg?lastWrite=637251659848908070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81147-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-01-02T15:12:00Z","episodeFileCount":14,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":842071548,"percentOfEpisodes":93.33333333333333}}],"year":2003,"path":"\/tv\/Battle Programmer Shirase","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":12,"tvdbId":81147,"tvRageId":2277,"tvMazeId":12657,"firstAired":"2003-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"bpsbattleprogrammershirase","titleSlug":"bps-battle-programmer-shirase","rootFolderPath":"\/tv\/","genres":["Animation","Anime","Comedy","Science Fiction"],"tags":[],"added":"2020-05-15T18:59:42.939379Z","ratings":{"votes":167,"value":8.5},"statistics":{"seasonCount":1,"episodeFileCount":14,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":842071548,"percentOfEpisodes":93.33333333333333},"id":239},{"title":"Ghost in the Shell: Stand Alone Complex","alternateTitles":[{"title":"Ghost in the Shell: Stand Alone Complex","sceneSeasonNumber":1},{"title":"Koukaku Kidoutai Stand Alone Complex","sceneSeasonNumber":1},{"title":"\u653b\u6bbb\u6a5f\u52d5\u968a STAND ALONE COMPLEX","sceneSeasonNumber":1},{"title":"Ghost in the Shell: Stand Alone Complex 2nd GIG","sceneSeasonNumber":2},{"title":"Koukaku Kidoutai S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"\u653b\u6bbb\u6a5f\u52d5\u968a S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"Ghost in the Shell: S.A.C. 1st GIG","sceneSeasonNumber":1},{"title":"Ghost in the Shell: S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"Ghost in the Shell","sceneSeasonNumber":1},{"title":"Ghost in the Shell SAC 2nd GIG","sceneSeasonNumber":2},{"title":"G.i.t.S. S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"G.i.t.S. S.A.C.","sceneSeasonNumber":1},{"title":"Ghost in the Shell: SAC_2045","sceneSeasonNumber":3},{"title":"\u653b\u6bbb\u6a5f\u52d5\u968a SAC_2045","sceneSeasonNumber":3},{"title":"Ghost in the Shell SAC_2045","sceneSeasonNumber":3}],"sortTitle":"ghost in shell stand alone complex","status":"continuing","ended":false,"overview":"In the future when technological enhancements and robotics are a way of life, Major Motoko Kusanagi and Section 9 take care of the jobs that are too difficult for the police. Section 9 employs hackers, sharpshooters, detectives and cyborgs all in an effort to thwart cyber criminals and their plans to attack the innocent.","previousAiring":"2020-04-23T07:00:00Z","network":"Animax","airTime":"16:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/241\/banner.jpg?lastWrite=637262518728980910","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/73749-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/241\/poster.jpg?lastWrite=637262518730300890","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73749-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/241\/fanart.jpg?lastWrite=637264269610536590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73749-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":59,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-03-25T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":32022210238,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-01-08T07:25:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":35607710181,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-04-23T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":9249606742,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Ghost in the Shell - Stand Alone Complex","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":73749,"tvRageId":0,"tvMazeId":1935,"firstAired":"2002-10-01T00:00:00Z","seriesType":"standard","cleanTitle":"ghostinshellstandalonecomplex","imdbId":"tt0346314","titleSlug":"ghost-in-the-shell-stand-alone-complex","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Science Fiction"],"tags":[],"added":"2020-05-28T08:37:51.479841Z","ratings":{"votes":6847,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":64,"episodeCount":64,"totalEpisodeCount":123,"sizeOnDisk":76879527161,"percentOfEpisodes":100.0},"id":241},{"title":"Codename: Kids Next Door","alternateTitles":[],"sortTitle":"codename kids next door","status":"ended","ended":true,"overview":"Taking numbers instead of names, five extraordinary 10-year-olds form a covert team called the Kids Next Door with one dedicated mission: to free all children from the tyrannical rule of adults.","network":"Cartoon Network","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/243\/banner.jpg?lastWrite=637270651800843590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71685-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/243\/poster.jpg?lastWrite=637270651802243570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71685-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/243\/fanart.jpg?lastWrite=637270651811883400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71685-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":2,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":25,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":3,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":23,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":4,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":22,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":5,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":22,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":6,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":21,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2002,"path":"\/tv\/Codename - Kids Next Door","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":false,"useSceneNumbering":false,"runtime":25,"tvdbId":71685,"tvRageId":0,"tvMazeId":7302,"firstAired":"2002-11-01T00:00:00Z","seriesType":"standard","cleanTitle":"codenamekidsnextdoor","imdbId":"tt0312109","titleSlug":"codename-kids-next-door","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation"],"tags":[],"added":"2020-06-06T18:32:58.262934Z","ratings":{"votes":139,"value":9.6},"statistics":{"seasonCount":6,"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":142,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":243},{"title":"When They Cry - Higurashi","alternateTitles":[{"title":"Higurashi no Naku Koro ni","sceneSeasonNumber":1},{"title":"Higurashi no Naku Koro ni Kai","sceneSeasonNumber":2},{"title":"Higurashi no Naku Koro ni Rei","sceneSeasonNumber":3},{"title":"Higurashi no Naku Koro ni Kira","sceneSeasonNumber":4}],"sortTitle":"when they cry higurashi","status":"ended","ended":true,"overview":"Life couldn't be better for Keiichi Maebara. He\u2019s just moved to the rural village of Hinamizawa and befriended four classmates \u2014 his life in the little village has been peaceful. One day, when he happens upon a story about a grisly local murder, his contentment turns to uneasiness as he finds himself drawn into a disturbing web of mystery that involves his newfound friends and threatens his very life.","previousAiring":"2009-08-20T15:00:00Z","network":"Kansai TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/244\/banner.jpg?lastWrite=637271817372276550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79682-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/244\/poster.jpg?lastWrite=637271817375396500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79682-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/244\/fanart.jpg?lastWrite=637271817389516260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79682-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-09-26T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11435842864,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-12-17T15:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":13194859522,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-08-20T15:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":3429692441,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/When They Cry - Higurashi","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":79682,"tvRageId":12519,"tvMazeId":5370,"firstAired":"2006-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"whentheycryhigurashi","imdbId":"tt0845738","titleSlug":"when-they-cry---higurashi","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Horror","Suspense"],"tags":[],"added":"2020-06-08T02:55:35.417516Z","ratings":{"votes":5875,"value":8.3},"statistics":{"seasonCount":3,"episodeFileCount":55,"episodeCount":55,"totalEpisodeCount":61,"sizeOnDisk":28060394827,"percentOfEpisodes":100.0},"id":244},{"title":"Umineko: When They Cry","alternateTitles":[{"title":"Umineko When They Cry","sceneSeasonNumber":-1},{"title":"Umineko no Naku Koro ni","sceneSeasonNumber":-1}],"sortTitle":"umineko when they cry","status":"ended","ended":true,"overview":"The affluent Ushiromiya family patriarch, Kinzo, is on his deathbed, and his family has assembled at their private island to discuss the division of his estate. As they bicker over their father's immense inheritance, a typhoon closes in, trapping them on the island. They suddenly receive an eerie word of warning...and then, in the dead of night, the murders begin. \r\n\r\nOne by one, family members are discovered murdered in bizarre and inhuman ways. Some within the family turn to superstition, blaming it on a witch rumored to inhabit the island. But one of them - the young Battler Ushiromiya - refuses to accept the supernatural and vows to uncover the real killer behind the seemingly impossible slaughters. He soon finds himself confronted by the apparent witch, and enters into a life-or-death battle for the truth.","previousAiring":"2009-12-23T15:00:00Z","network":"Tokyo MX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/245\/banner.jpg?lastWrite=637271817579392970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/101981-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/245\/poster.jpg?lastWrite=637539603834282500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/101981\/posters\/60659587854cb.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/245\/fanart.jpg?lastWrite=637271817603472550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/101981-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-12-23T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11309533746,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Umineko - When They Cry","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":101981,"tvRageId":0,"tvMazeId":17896,"firstAired":"2009-07-02T00:00:00Z","seriesType":"anime","cleanTitle":"uminekowhentheycry","imdbId":"tt1450620","titleSlug":"umineko-when-they-cry","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Fantasy"],"tags":[],"added":"2020-06-08T02:55:56.515705Z","ratings":{"votes":1128,"value":7.8},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11309533746,"percentOfEpisodes":100.0},"id":245},{"title":"Lovecraft Country","alternateTitles":[{"title":"Territorio Lovecraft","seasonNumber":-1}],"sortTitle":"lovecraft country","status":"ended","ended":true,"overview":"A young African-American travels across the U.S. in the 1950s in search of his missing father.","previousAiring":"2020-10-19T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/248\/banner.jpg?lastWrite=637329894559670070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/357864\/banners\/5f359f2ed25e7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/248\/poster.jpg?lastWrite=637661843591736220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/357864\/posters\/5f10baa0a2161.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/248\/fanart.jpg?lastWrite=637310816903118970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/357864\/backgrounds\/5f17f70d8ec97.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-10-19T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":32617647538,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Lovecraft Country","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":58,"tvdbId":357864,"tvRageId":0,"tvMazeId":28893,"firstAired":"2020-08-16T00:00:00Z","seriesType":"standard","cleanTitle":"lovecraftcountry","imdbId":"tt6905686","titleSlug":"lovecraft-country","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Horror","Mystery","Science Fiction","Thriller"],"tags":[],"added":"2020-07-02T17:33:35.25675Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":11,"sizeOnDisk":32617647538,"percentOfEpisodes":100.0},"id":248},{"title":"Connections","alternateTitles":[],"sortTitle":"connections","status":"ended","ended":true,"overview":"The original ten volume series was made in 1978. The popular success of the series led to two sequels, Connections 2 (sometimes written Connections2) in 1994, and Connections 3 (or Connections3) in 1997, both produced for TLC. By turning science into a detective story James Burke creates a series that will fascinate students and adults alike. This interdisciplinary approach has never before been applied to history or science and it succeeds tremendously. Winner of the Red Ribbon in the American Film Festival, the scope of the series covers 19 countries and 150 locations, requiring over 14 months of filming. As the Sherlock Holmes of science, Burke tracks through 12,000 years of history for the clues that lead us to eight great life changing inventions-the atom bomb, telecommunications, the computer, the production line, jet aircraft, plastics, rocketry and television. Burke postulates that such changes occur in response to factors he calls \"triggers,\" some of them seemingly unrelated. These have their own triggering effects, causing change in totally unrelated fields as well. And so the connections begin...","previousAiring":"1997-12-31T00:00:00Z","network":"BBC One","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/251\/banner.jpg?lastWrite=637319987996748070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78875-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/251\/poster.jpg?lastWrite=637319987997908050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78875-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/251\/fanart.jpg?lastWrite=637319988002787970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78875-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":false,"statistics":{"previousAiring":"1978-12-19T00:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3089837537,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":false,"statistics":{"previousAiring":"1994-12-31T00:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":1607735848,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":false,"statistics":{"previousAiring":"1997-12-31T00:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":1720547770,"percentOfEpisodes":100.0}}],"year":1978,"path":"\/tv\/Connections","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":78875,"tvRageId":9591,"tvMazeId":6103,"firstAired":"1978-10-17T00:00:00Z","seriesType":"standard","cleanTitle":"connections","imdbId":"tt0078588","titleSlug":"connections","rootFolderPath":"\/tv\/","genres":["Documentary"],"tags":[],"added":"2020-08-02T20:59:58.761961Z","ratings":{"votes":289,"value":8.8},"statistics":{"seasonCount":3,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":41,"sizeOnDisk":6418121155,"percentOfEpisodes":100.0},"id":251},{"title":"The Day the Universe Changed","alternateTitles":[],"sortTitle":"day universe changed","status":"ended","ended":true,"overview":"The Day the Universe Changed (the 10-part series) is one of the best teaching tools available today for making students aware of the great ebb and flow of ideas that have gone into the development of Western thought. Host James Burke gives a stunning overview of this evolution of thought since the days of the Greeks in this ten-part series co-produced by BBC-TV and RKO Pictures.","network":"BBC","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/252\/banner.jpg?lastWrite=637319988193104770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79634-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/252\/poster.jpg?lastWrite=637319988210224490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79634-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/252\/fanart.jpg?lastWrite=637319988216144390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79634-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":1985,"path":"\/tv\/The Day the Universe Changed","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":false,"useSceneNumbering":false,"runtime":60,"tvdbId":79634,"tvRageId":0,"tvMazeId":25366,"firstAired":"1985-03-19T00:00:00Z","seriesType":"standard","cleanTitle":"thedayuniversechanged","imdbId":"tt0199208","titleSlug":"the-day-the-universe-changed","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Documentary"],"tags":[],"added":"2020-08-02T21:00:17.948454Z","ratings":{"votes":202,"value":8.3},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":252},{"title":"Biohackers","alternateTitles":[],"sortTitle":"biohackers","status":"continuing","ended":false,"overview":"Mia goes to medical school to get close to a professor she suspects had a hand in her past family tragedy and gets tangled in the world of biohacking.","previousAiring":"2021-07-09T13:00:00Z","network":"Netflix","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/254\/banner.jpg?lastWrite=637336871048760720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/381016\/banners\/5f3f2cb3cfdc8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/254\/poster.jpg?lastWrite=637613309257848140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/381016\/posters\/60b650cf73046.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/254\/fanart.jpg?lastWrite=637336871051680650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/381016\/backgrounds\/5f3ed6f4781f2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-08-20T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":17351438129,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-07-09T13:00:00Z","episodeFileCount":3,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":1606405269,"percentOfEpisodes":50.0}}],"year":2020,"path":"\/tv\/Biohackers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":381016,"tvRageId":0,"tvMazeId":41027,"firstAired":"2020-08-20T00:00:00Z","seriesType":"standard","cleanTitle":"biohackers","imdbId":"tt9849210","titleSlug":"biohackers","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2020-08-22T09:58:24.286483Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":9,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18957843398,"percentOfEpisodes":75.0},"id":254},{"title":"Clone High","alternateTitles":[],"sortTitle":"clone high","status":"ended","ended":true,"overview":"A secret government plan to dig up historical figures and clone them has worked. It is 16 years later, and the clones are now in high school. The five main characters are Abe Lincoln, an all around nice but naive guy who lusts after the school sexpot Cleopatra, who is dating the macho JFK. Also, Abe's two best friends are Joan of Arc, an angst ridden goth girl who is in love with him, and Gandhi, a non-stop party animal. Clone High bravely tackles challenging teen issues, such as sleep deprivation, catching ADD from toilet seats, the evils of litter, and having the guy you like not like you back the same way you like him. Will Abe get together with Cleo, or be thwarted by the handsome JFK? Will Joan finally get Abe to notice her? Who's to say?","previousAiring":"2003-04-13T04:00:00Z","network":"Teletoon","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/255\/banner.jpg?lastWrite=637339058532532340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78560-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/255\/poster.jpg?lastWrite=637339058533412330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78560-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/255\/fanart.jpg?lastWrite=637339058539452230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78560-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-04-13T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4612692032,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Clone High","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":78560,"tvRageId":3089,"tvMazeId":1643,"firstAired":"2002-11-02T00:00:00Z","seriesType":"standard","cleanTitle":"clonehigh","imdbId":"tt0305011","titleSlug":"clone-high","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2020-08-24T22:44:12.193742Z","ratings":{"votes":391,"value":8.5},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":18,"sizeOnDisk":4612692032,"percentOfEpisodes":100.0},"id":255},{"title":"Tuca & Bertie","alternateTitles":[],"sortTitle":"tuca bertie","status":"continuing","ended":false,"overview":"Two bird women -- a carefree toucan and an anxious songbird -- live in the same apartment building and share their lives in this animated comedy.","previousAiring":"2021-08-16T03:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/258\/banner.jpg?lastWrite=637610277577974670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361005\/banners\/60e1d357e6bc7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/258\/poster.jpg?lastWrite=637367304744175530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5cb964fc39f17.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/258\/fanart.jpg?lastWrite=637590341472157760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361005\/backgrounds\/60c250a7c99e6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-04T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4089177108,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-08-16T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7187094164,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Tuca & Bertie","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":361005,"tvRageId":0,"tvMazeId":35086,"firstAired":"2019-05-03T00:00:00Z","seriesType":"standard","cleanTitle":"tucabertie","imdbId":"tt8036272","titleSlug":"tuca-and-bertie","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2020-09-26T15:21:13.345386Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":11276271272,"percentOfEpisodes":100.0},"id":258},{"title":"The Valley","alternateTitles":[],"sortTitle":"valley","status":"ended","ended":true,"overview":"Between forests and hills, the river Ahr meanders through a mystical, foggy autumn landscape. Amidst this idyll a man awakens in the middle of a vineyard. He does not know who he is, where he is or how he came to be here. Next to him is a dead young woman lying among the vines.\r\nAs a foreigner in the secluded town in the Ahr valley he enters an archaic village community, which seems to keep a secret from him.","previousAiring":"2015-11-09T23:00:00Z","network":"TNT Serie","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/259\/banner.jpg?lastWrite=637381360253630790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/text\/301321.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/259\/poster.jpg?lastWrite=637381360254750770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/301321-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/259\/fanart.jpg?lastWrite=637381360255830750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/301321-7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-11-09T23:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":2773405935,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/The Valley","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":301321,"tvRageId":0,"tvMazeId":6825,"firstAired":"2015-10-06T00:00:00Z","seriesType":"standard","cleanTitle":"thevalley","imdbId":"tt4380968","titleSlug":"the-valley","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Drama","Mini-Series","Suspense","Thriller"],"tags":[],"added":"2020-10-12T21:47:04.440138Z","ratings":{"votes":59,"value":9.5},"statistics":{"seasonCount":1,"episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":2773405935,"percentOfEpisodes":100.0},"id":259},{"title":"Teen Titans","alternateTitles":[],"sortTitle":"teen titans","status":"ended","ended":true,"overview":"The Teen Titans are five heroes under one roof. Their names: Robin, Starfire, Raven, Cyborg, and Beast Boy They live in a large tower in the shape of a T that they call Titan Tower. No secret identities. No school. Just superheroes being superheroes. They must go up against their arch nemesis, Slade, and his evil minions. What he really plans to do is unknown but one thing's for sure... he's an evil madman.","previousAiring":"2007-04-11T01:40:00Z","network":"Cartoon Network","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/260\/banner.jpg?lastWrite=637381361955200210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/13878-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/260\/poster.jpg?lastWrite=637381361956360190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71503-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/260\/fanart.jpg?lastWrite=637381361957800170","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71503-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2007-04-11T01:40:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":12,"sizeOnDisk":378579592,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-11-12T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":7604889646,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2004-08-22T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2377947550,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2005-01-23T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11436436948,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2005-07-17T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11322863241,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2006-01-17T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11400431740,"percentOfEpisodes":100.0}}],"year":2003,"path":"\/tv\/Teen Titans","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":71503,"tvRageId":5485,"tvMazeId":765,"firstAired":"2003-07-19T00:00:00Z","seriesType":"standard","cleanTitle":"teentitans","imdbId":"tt0343314","titleSlug":"teen-titans","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children"],"tags":[],"added":"2020-10-12T21:49:54.873242Z","ratings":{"votes":635,"value":8.8},"statistics":{"seasonCount":5,"episodeFileCount":70,"episodeCount":70,"totalEpisodeCount":77,"sizeOnDisk":44521148717,"percentOfEpisodes":100.0},"id":260},{"title":"The Leftovers","alternateTitles":[],"sortTitle":"leftovers","status":"ended","ended":true,"overview":"Three years after the disappearance of two percent of the global population, a group of people in a small New York community try to continue their lives while coping with the tragedy of the unexplained nature of the event.","previousAiring":"2017-06-05T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/261\/banner.jpg?lastWrite=637397929460087110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/269689-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/261\/poster.jpg?lastWrite=637397929469166960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/269689-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/261\/fanart.jpg?lastWrite=637397929470246940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/269689-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-09-08T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":17985326593,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-12-07T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":47134370266,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-06-05T01:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":18405304615,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/The Leftovers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":56,"tvdbId":269689,"tvRageId":34506,"tvMazeId":138,"firstAired":"2014-06-29T00:00:00Z","seriesType":"standard","cleanTitle":"theleftovers","imdbId":"tt2699128","titleSlug":"the-leftovers","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Mystery"],"tags":[],"added":"2020-11-01T02:02:24.978461Z","ratings":{"votes":2939,"value":8.8},"statistics":{"seasonCount":3,"episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":29,"sizeOnDisk":83525001474,"percentOfEpisodes":100.0},"id":261},{"title":"The Venture Bros.","alternateTitles":[],"sortTitle":"venture bros","status":"ended","ended":true,"overview":"Hank and Dean Venture, with their father Doctor Venture and faithful bodyguard Brock Samson, go on wild adventures facing megalomaniacs, zombies, and suspicious ninjas, all for the glory of adventure. Or something like that.","previousAiring":"2018-10-08T16:00:00Z","network":"Adult Swim","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/263\/banner.jpg?lastWrite=637420030301027620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/17591-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/263\/poster.jpg?lastWrite=637420030301867610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/72306-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/263\/fanart.jpg?lastWrite=637420030303147590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/72306-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-10-30T16:00:00Z","episodeFileCount":2,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":1411789923,"percentOfEpisodes":15.384615384615385}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-10-15T16:00:00Z","episodeFileCount":6,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":3582272738,"percentOfEpisodes":46.15384615384615}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2008-08-24T16:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9587021271,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2010-11-21T17:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":3124712278,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2013-07-21T16:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":7960464465,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2016-03-21T16:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":9316031360,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2018-10-08T16:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":23461407640,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/The Venture Bros","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":72306,"tvRageId":6270,"tvMazeId":304,"firstAired":"2004-08-07T00:00:00Z","seriesType":"standard","cleanTitle":"theventurebros","imdbId":"tt0417373","titleSlug":"the-venture-bros","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Science Fiction","Suspense"],"tags":[],"added":"2020-11-26T15:57:08.866562Z","ratings":{"votes":2515,"value":9.1},"statistics":{"seasonCount":7,"episodeFileCount":63,"episodeCount":81,"totalEpisodeCount":93,"sizeOnDisk":58443699675,"percentOfEpisodes":77.77777777777777},"id":263},{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264},{"title":"Upload","alternateTitles":[],"sortTitle":"upload","status":"continuing","ended":false,"overview":"In 2033, people near death can be \u201cuploaded\u201d into virtual reality afterlife hotels run by 6 tech firms. Cash-strapped Nora lives in Brooklyn and works customer service for the luxurious \u201cLakeview\u201d digital afterlife. When L.A. party-boy\/coder Nathan\u2019s self-driving car crashes, his high-maintenance girlfriend uploads him permanently into Nora\u2019s VR world.","previousAiring":"2020-05-01T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/265\/banner.jpg?lastWrite=637440602045548500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368211\/banners\/5eb0e622ee0c2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/265\/poster.jpg?lastWrite=637602911424081900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368211\/posters\/5ed2cb98d3f6b.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/265\/fanart.jpg?lastWrite=637440602047988460","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368211\/backgrounds\/5eac974ab3da6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-05-01T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3064491605,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Upload","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":368211,"tvRageId":0,"tvMazeId":31732,"firstAired":"2020-05-01T00:00:00Z","seriesType":"standard","cleanTitle":"upload","imdbId":"tt7826376","titleSlug":"upload","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Romance","Science Fiction"],"tags":[],"added":"2020-12-20T11:23:23.681249Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3064491605,"percentOfEpisodes":100.0},"id":265},{"title":"Milo Murphy's Law","alternateTitles":[],"sortTitle":"milo murphys law","status":"ended","ended":true,"overview":"Milo Murphy is the personification of Murphy\u2019s Law where anything that can go wrong will go wrong. Suffering from Extreme Hereditary Murphy\u2019s Law condition (EHML), Milo always looks to make the best of the cards he\u2019s been dealt and his endless optimism and enthusiasm can turn any catastrophe into a wild adventure. Together, he and his friends will learn that it\u2019s all about a positive attitude and not to sweat the big stuff\u2026 and it\u2019s all big stuff.","previousAiring":"2019-05-18T11:00:00Z","network":"Disney Channel","airTime":"07:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/266\/banner.jpg?lastWrite=637449752478442940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/315954-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/266\/poster.jpg?lastWrite=637449752479482920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/315954-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/266\/fanart.jpg?lastWrite=637449752481802880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/315954-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-12-02T12:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":18142512490,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-05-18T11:00:00Z","episodeFileCount":2,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":467278593,"percentOfEpisodes":5.405405405405405}}],"year":2016,"path":"\/tv\/Milo Murphy's Law","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":315954,"tvRageId":0,"tvMazeId":20921,"firstAired":"2016-10-03T00:00:00Z","seriesType":"standard","cleanTitle":"milomurphyslaw","imdbId":"tt5439480","titleSlug":"milo-murphys-law","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Animation","Children","Comedy"],"tags":[],"added":"2020-12-31T01:34:06.942766Z","ratings":{"votes":80,"value":10.0},"statistics":{"seasonCount":2,"episodeFileCount":38,"episodeCount":73,"totalEpisodeCount":75,"sizeOnDisk":18609791083,"percentOfEpisodes":52.054794520547944},"id":266},{"title":"Your Honor (US)","alternateTitles":[{"title":"Your Honor","seasonNumber":-1},{"title":"Your Honor 2019","seasonNumber":-1},{"title":"Your Honor 2020","seasonNumber":-1},{"title":"Your Honor","seasonNumber":-1,"comment":"MeGusta"}],"sortTitle":"your honor us","status":"ended","ended":true,"overview":"The son of a respected New Orleans judge is involved in a hit-and-run that leads to a high-stakes game of lies, deceit and impossible choices.","previousAiring":"2021-02-15T03:00:00Z","network":"Showtime","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/268\/banner.jpg?lastWrite=637540900060999700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/359579\/banners\/605d0f4d6565d.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/268\/poster.jpg?lastWrite=637466627037949660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/359579\/posters\/5fa167c0c429f.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/268\/fanart.jpg?lastWrite=637466627039389640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/359579\/backgrounds\/5fa16751c228d.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2021-02-15T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":48202950456,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Your Honor (US)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":57,"tvdbId":359579,"tvRageId":0,"tvMazeId":32791,"firstAired":"2020-12-06T00:00:00Z","seriesType":"standard","cleanTitle":"yourhonorus","imdbId":"tt7440726","titleSlug":"your-honor-us","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Mini-Series"],"tags":[],"added":"2021-01-19T14:18:22.667528Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":48202950456,"percentOfEpisodes":100.0},"id":268},{"title":"Zentrix","alternateTitles":[],"sortTitle":"zentrix","status":"ended","ended":true,"overview":"Welcome to zentrix, the most perfect city on the planet. This is all thanks to the famous scientist Emperor Jarad, who created the Omicronpsy super-computer. The computer manages all of the city's higher and day to day functions, controlling a wide variety of machines and robots. It's paradise. Until one day, when Omicronpsy realizes that it would be a better ruler than Jarad. The computer revolts, and in the ensuing battle, Jarad and the scientist, Dr. Roark, are lost in time. His daughter Megan learns what happened, and is determined to follow her father back in time to save both him and her homeland. But due to an accident during time travel, she is now stuck in an eight-year-old body. Megan and her loyal sidekick Mango now have to reactivate the robot Zeus, find her father, and fend off attacks from the forces of Omicronpsy, who have followed them through time.","previousAiring":"2002-07-02T16:00:00Z","network":"TVB","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/271\/banner.jpg?lastWrite=637495237883419110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/253583-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/271\/poster.jpg?lastWrite=637495237884619090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/253583-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/271\/fanart.jpg?lastWrite=637495237894418930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/253583-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-07-02T16:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7513260629,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Zentrix","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":253583,"tvRageId":0,"tvMazeId":0,"firstAired":"2002-07-03T00:00:00Z","seriesType":"standard","cleanTitle":"zentrix","imdbId":"tt0876249","titleSlug":"zentrix","rootFolderPath":"\/tv\/","genres":["Action","Adventure","Animation","Science Fiction"],"tags":[],"added":"2021-02-21T17:03:06.682698Z","ratings":{"votes":29,"value":7.0},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7513260629,"percentOfEpisodes":100.0},"id":271},{"title":"Trollhunters: Tales of Arcadia","alternateTitles":[{"title":"Trolljaeger","seasonNumber":-1},{"title":"Trollhunters","seasonNumber":-1}],"sortTitle":"trollhunters tales arcadia","status":"ended","ended":true,"overview":"Trollhunters is an epic saga from master storyteller Guillermo del Toro featuring a group of friends who discover a fantastical new world wrapped beneath their home town and who will face a battle between good and bad trolls.","previousAiring":"2018-05-25T04:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/272\/banner.jpg?lastWrite=637500629095429320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/318201-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/272\/poster.jpg?lastWrite=637500629097349280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/318201-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/272\/fanart.jpg?lastWrite=637500629099189250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/318201-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-12-23T05:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":10257849631,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-12-15T05:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5787921266,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-05-25T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5808614103,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Trollhunters - Tales of Arcadia","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":318201,"tvRageId":0,"tvMazeId":21892,"firstAired":"2016-12-23T00:00:00Z","seriesType":"standard","cleanTitle":"trollhunterstalesarcadia","imdbId":"tt1734135","titleSlug":"trollhunters-tales-of-arcadia","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children","Fantasy"],"tags":[],"added":"2021-02-27T22:48:28.984752Z","ratings":{"votes":277,"value":8.7},"statistics":{"seasonCount":3,"episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":53,"sizeOnDisk":21854385000,"percentOfEpisodes":100.0},"id":272},{"title":"Samurai Jack","alternateTitles":[],"sortTitle":"samurai jack","status":"ended","ended":true,"overview":"Made by Genndy Tartakovsky, this cartoon tells the story of a great warrior displaced to the distant future by the evil shape-shifting wizard Aku. The world has become a bleak place under the rule of Aku, segregated into fantastic tribes and ruled by Aku's evil robot warlords. Jack travels this foreign landscape in search of a time portal that can return him to his home time so he can \"undo the future that is Aku!\".","previousAiring":"2017-05-21T03:00:00Z","network":"Adult Swim","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/273\/banner.jpg?lastWrite=637505944415625620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75164-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/273\/poster.jpg?lastWrite=637505944416625610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75164-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/273\/fanart.jpg?lastWrite=637505944427785430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75164-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":19,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2001-12-04T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":16130208193,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2002-10-12T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":16401731085,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2003-08-17T03:20:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15229845640,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2004-09-26T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15378199510,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2017-05-21T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9572977795,"percentOfEpisodes":100.0}}],"year":2001,"path":"\/tv\/Samurai Jack","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":20,"tvdbId":75164,"tvRageId":5094,"tvMazeId":1603,"firstAired":"2001-08-10T00:00:00Z","seriesType":"standard","cleanTitle":"samuraijack","imdbId":"tt0278238","titleSlug":"samurai-jack","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime"],"tags":[],"added":"2021-03-06T02:27:20.658936Z","ratings":{"votes":859,"value":9.1},"statistics":{"seasonCount":5,"episodeFileCount":62,"episodeCount":62,"totalEpisodeCount":81,"sizeOnDisk":72712962223,"percentOfEpisodes":100.0},"id":273},{"title":"Galaxy Angel","alternateTitles":[],"sortTitle":"galaxy angel","status":"ended","ended":true,"overview":"The astronomical adventures of the Angel Brigade, a squad of females dispatched to retrieve powerful objects scattered around the Milky Way.","previousAiring":"2004-09-29T04:15:00Z","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/277\/banner.jpg?lastWrite=637516693515830280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79289-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/277\/poster.jpg?lastWrite=637516693516870260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79289-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/277\/fanart.jpg?lastWrite=637516693531190050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79289-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":49,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-01-25T05:15:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":3247807697,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2002-03-31T05:15:00Z","episodeFileCount":0,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2003-03-30T05:15:00Z","episodeFileCount":0,"episodeCount":52,"totalEpisodeCount":52,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2004-09-29T04:15:00Z","episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2001,"path":"\/tv\/Galaxy Angel","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":15,"tvdbId":79289,"tvRageId":3638,"tvMazeId":18747,"firstAired":"2001-04-07T00:00:00Z","seriesType":"standard","cleanTitle":"galaxyangel","imdbId":"tt0833572","titleSlug":"galaxy-angel","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2021-03-18T13:02:30.024857Z","ratings":{"votes":55,"value":8.0},"statistics":{"seasonCount":4,"episodeFileCount":26,"episodeCount":122,"totalEpisodeCount":171,"sizeOnDisk":3247807697,"percentOfEpisodes":21.311475409836067},"id":277},{"title":"Galaxy Angel A","alternateTitles":[],"sortTitle":"galaxy angel","status":"ended","ended":true,"overview":"Their mission is to locate and retrieve the mysterious Lost Technology, even though these girls have never been known to stick to their mission. Milfeulle, Forte, Ranpha, Mint, and Vanilla are back for another round of hilarity. The Galaxy Angels have sworn to protect the galaxy one planet at a time. Now with some competition with the newly-formed Twin Star Brigade, they continue to find themselves in the center of chaos... though usually they're the ones at fault for its cause.","previousAiring":"2003-01-25T15:12:00Z","network":"TV Tokyo","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/278\/poster.jpg?lastWrite=637516693532150040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/83446-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/278\/fanart.jpg?lastWrite=637516693544029870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/83446-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-01-25T15:12:00Z","episodeFileCount":0,"episodeCount":34,"totalEpisodeCount":54,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2002,"path":"\/tv\/Galaxy Angel A","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":12,"tvdbId":83446,"tvRageId":0,"tvMazeId":0,"firstAired":"2002-10-06T00:00:00Z","seriesType":"standard","cleanTitle":"galaxyangela","titleSlug":"galaxy-angel-a","rootFolderPath":"\/tv\/","genres":["Animation","Comedy"],"tags":[],"added":"2021-03-18T13:02:32.608832Z","ratings":{"votes":28,"value":10.0},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":34,"totalEpisodeCount":54,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":278},{"title":"Onyx Equinox","alternateTitles":[],"sortTitle":"onyx equinox","status":"ended","ended":true,"overview":"The gods are at war for the future of humanity, and an Aztec boy named Izel finds himself caught in the middle of their dangerous game. In order to save humankind, he must complete an impossible task \u2014 closing the five gates to the underworld. Izel reluctantly agrees, but only after learning his quest will also correct a terrible tragedy. His journey to become humanity\u2019s champion will be one of hope and despair, of trust and betrayal, where Izel must confront his own darkness and decide if the human race \u2014 with all its flaws and contradictions \u2014 is worth saving.","previousAiring":"2020-12-26T21:00:00Z","network":"Crunchyroll","airTime":"16:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/282\/banner.jpg?lastWrite=637527576325610670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/377625\/banners\/5fba9c2f861c1.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/282\/poster.jpg?lastWrite=637527576326850650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/377625\/posters\/5fb9d0cd96211.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/282\/fanart.jpg?lastWrite=637527576328130630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/377625\/backgrounds\/5fb7d2d6560bf.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-12-26T21:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18084109127,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Onyx Equinox","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":377625,"tvRageId":0,"tvMazeId":48922,"firstAired":"2020-11-21T00:00:00Z","seriesType":"standard","cleanTitle":"onyxequinox","imdbId":"tt12605636","titleSlug":"onyx-equinox","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Fantasy"],"tags":[],"added":"2021-03-31T03:20:31.712861Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18084109127,"percentOfEpisodes":100.0},"id":282},{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283},{"title":"Real Drive","alternateTitles":[],"sortTitle":"real drive","status":"ended","ended":true,"overview":"The story takes place in 2061, 50 years after humanity developed the \"Net society\" that depended on information networks despite their security issues. To improve security, a new network called Meta Real Network \u2014 or \"Metal\" for short \u2014 was developed. People's personal memories are reduced to information and placed within \"protected virtual stand-alone organic cyber enclaves\" called bubble shells online. The result was a virtual \"explosion\" of creative freedom as people felt safe enough to explore instincts and desires on Metal that they would not otherwise explore in real life. This \"friction\" between the Metal's alluring lack of restrictions and rules-bound reality led to trouble and incidents that investigators known as \"cyber divers\" must handle. Masamichi Haru is one such cyber diver.","previousAiring":"2008-09-30T16:00:00Z","network":"Nippon TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/284\/banner.jpg?lastWrite=637557764469407700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81907-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/284\/poster.jpg?lastWrite=637557764470247690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81907-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/284\/fanart.jpg?lastWrite=637557764471327670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81907-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2008-09-30T16:00:00Z","episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2008,"path":"\/tv\/Real Drive","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":81907,"tvRageId":20690,"tvMazeId":19093,"firstAired":"2008-04-09T00:00:00Z","seriesType":"standard","cleanTitle":"realdrive","imdbId":"tt1213889","titleSlug":"real-drive","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Anime","Science Fiction"],"tags":[],"added":"2021-05-05T01:54:06.162628Z","ratings":{"votes":106,"value":8.2},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":284},{"title":"SpongeBob DocuPants","alternateTitles":[],"sortTitle":"spongebob docupants","status":"continuing","ended":false,"overview":"Imagine classic SpongeBob moments being told through the lens of documentary shows like E! True Hollywood Stories, Dateline, Behind the Music, etc. Each episode takes an overly dramatic look into classic Spongebob storylines.","previousAiring":"2020-05-14T04:00:00Z","airTime":"00:00","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/285\/poster.jpg?lastWrite=637558010904476350","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/398293\/posters\/606b4ed997d28.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-05-14T04:00:00Z","episodeFileCount":0,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/SpongeBob DocuPants","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":14,"tvdbId":398293,"tvRageId":0,"tvMazeId":55110,"firstAired":"2020-05-14T00:00:00Z","seriesType":"standard","cleanTitle":"spongebobdocupants","titleSlug":"spongebob-docupants","rootFolderPath":"\/tv\/","genres":["Children"],"tags":[],"added":"2021-05-05T08:44:49.710187Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":285},{"title":"Invincible (2021)","alternateTitles":[{"title":"Invencible","seasonNumber":-1},{"title":"Invincible","seasonNumber":-1},{"title":"Unbesiegbar","seasonNumber":-1}],"sortTitle":"invincible 2021","status":"continuing","ended":false,"overview":"Mark Grayson is a normal teenager, except for the fact that his father is the most powerful superhero on the planet. Shortly after his seventeenth birthday, Mark begins to develop powers of his own and enters into his father\u2019s tutelage.","previousAiring":"2021-04-30T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/286\/banner.jpg?lastWrite=637562096770414880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368207\/banners\/6035ee845aadf.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/286\/poster.jpg?lastWrite=637562096771454860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/368207\/posters\/60675364ec7d4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/286\/fanart.jpg?lastWrite=637613742902870740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368207\/backgrounds\/602de190e39bd.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2021-04-30T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":11460070607,"percentOfEpisodes":100.0}}],"year":2021,"path":"\/tv\/Invincible (2021)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":368207,"tvRageId":0,"tvMazeId":37196,"firstAired":"2021-03-26T00:00:00Z","seriesType":"standard","cleanTitle":"invincible2021","imdbId":"tt6741278","titleSlug":"invincible-2021","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2021-05-10T02:14:35.958365Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":11460070607,"percentOfEpisodes":100.0},"id":286},{"title":"Blood of Zeus","alternateTitles":[],"sortTitle":"blood zeus","status":"continuing","ended":false,"overview":"A commoner living in ancient Greece, Heron discovers his true heritage as a son of Zeus, and his purpose: to save the world from a demonic army.","previousAiring":"2020-10-27T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/287\/banner.jpg?lastWrite=637569686092096270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361140\/banners\/5f9a6d659c2c3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/287\/poster.jpg?lastWrite=637569686093296260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361140\/posters\/5f9b1a73efeed.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/287\/fanart.jpg?lastWrite=637569686095056230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361140\/backgrounds\/5fcbf7b09c424.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-10-27T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":3283502764,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Blood of Zeus","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":32,"tvdbId":361140,"tvRageId":0,"tvMazeId":50777,"firstAired":"2020-10-27T00:00:00Z","seriesType":"standard","cleanTitle":"bloodzeus","imdbId":"tt10009170","titleSlug":"blood-of-zeus","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Fantasy"],"tags":[],"added":"2021-05-18T21:03:28.432556Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":3283502764,"percentOfEpisodes":100.0},"id":287},{"title":"Raised by Wolves (2020)","alternateTitles":[{"title":"A farkas gyermekei","seasonNumber":-1}],"sortTitle":"raised by wolves 2020","status":"continuing","ended":false,"overview":"After Earth is torn apart by religious differences and the human race teeters on the edge of extinction, an atheistic android architect sends two of his creations, Mother and Father, to start a peaceful, godless colony on the planet Kepler-22b. They attempt to raise human children in this mysterious virgin land, a treacherous and difficult task that\u2019s jeopardized by the arrival of the Mithraic, a deeply devout religious order of surviving humans.","previousAiring":"2020-10-01T07:00:00Z","network":"HBO Max","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/288\/banner.jpg?lastWrite=637606584419612290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368643\/banners\/5f52b61a1336c.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/288\/poster.jpg?lastWrite=637606584420972270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368643\/posters\/5f2e8ce18c6bd.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/288\/fanart.jpg?lastWrite=637606584424532230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368643\/backgrounds\/5f50b9b176953.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-10-01T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":15853885561,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Raised by Wolves (2020)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":53,"tvdbId":368643,"tvRageId":0,"tvMazeId":39013,"firstAired":"2020-09-03T00:00:00Z","seriesType":"standard","cleanTitle":"raisedbywolves2020","imdbId":"tt9170108","titleSlug":"raised-by-wolves-2020","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Science Fiction"],"tags":[],"added":"2021-06-30T14:00:41.2001Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":15853885561,"percentOfEpisodes":100.0},"id":288},{"title":"Lifeline (2017)","alternateTitles":[{"title":"Lifeline","seasonNumber":-1}],"sortTitle":"lifeline 2017","status":"ended","ended":true,"overview":"Lifeline, set in the not-too-distant future, is a half hour series about a little known life insurance company that sends its agents forward 33 days in time to prevent the accidental deaths of its clients. The company\u2019s best agent, Conner Hooks (Gilford), has never missed a save \u2013 until he takes on the most personal case of his life. When sixteen-year-old Norah (Park) is orphaned on his watch, Conner pledges to protect her, even if that means putting his career at Lifeline \u2013 or his own life \u2013 in jeopardy.","previousAiring":"2017-11-08T17:00:00Z","network":"YouTube Premium","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/289\/banner.jpg?lastWrite=637622365506939340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/336004-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/289\/poster.jpg?lastWrite=637622365508259320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/336004-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/289\/fanart.jpg?lastWrite=637622365509499300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/336004-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-08T17:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":8698584431,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Lifeline (2017)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":336004,"tvRageId":0,"tvMazeId":22129,"firstAired":"2017-10-11T00:00:00Z","seriesType":"standard","cleanTitle":"lifeline2017","imdbId":"tt7034646","titleSlug":"lifeline-2017","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime"],"tags":[],"added":"2021-07-18T20:22:29.846408Z","ratings":{"votes":29,"value":9.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":8698584431,"percentOfEpisodes":100.0},"id":289},{"title":"Terry Pratchett's Going Postal","alternateTitles":[],"sortTitle":"terry pratchetts going postal","status":"ended","ended":true,"overview":"Moist von Lipwig is a con-man with a particular talent-- he is utterly unremarkable. When his execution is stayed in Terry Pratchett's remarkable Discworld, he must work off his debt to society as the land's head Postman. Things are not always as they seem, and soon Lipwig is delivering mail for his very life!","previousAiring":"2010-05-30T23:00:00Z","network":"Sky1","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/290\/banner.jpg?lastWrite=637651694929321490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/166091-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/290\/poster.jpg?lastWrite=637651694931041450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/166091-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/290\/fanart.jpg?lastWrite=637651694934241380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/166091-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":25,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-05-30T23:00:00Z","episodeFileCount":0,"episodeCount":2,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2010,"path":"\/tv\/Terry Pratchett's Going Postal","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":120,"tvdbId":166091,"tvRageId":25711,"tvMazeId":3888,"firstAired":"2010-05-30T00:00:00Z","seriesType":"standard","cleanTitle":"terrypratchettsgoingpostal","imdbId":"tt1219817","titleSlug":"terry-pratchetts-going-postal","rootFolderPath":"\/tv\/","genres":["Fantasy","Mini-Series","Romance","Science Fiction","Suspense"],"tags":[],"added":"2021-08-21T19:04:52.023809Z","ratings":{"votes":386,"value":8.8},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":2,"totalEpisodeCount":27,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":290}],"status":{"version":"3.0.6.1265","buildTime":"2021-06-17T12:24:53Z","isDebug":false,"isProduction":true,"isAdmin":false,"isUserInteractive":false,"startupPath":"\/app\/sonarr\/bin","appData":"\/config","osName":"ubuntu","osVersion":"18.04","isMonoRuntime":true,"isMono":true,"isLinux":true,"isOsx":false,"isWindows":false,"mode":"console","branch":"main","authentication":"none","sqliteVersion":"3.22.0","urlBase":"\/sonarr","runtimeVersion":"5.20.1.34","runtimeName":"mono","startTime":"2021-08-29T13:53:05.467674Z","packageVersion":"3.0.6.1265-ls111","packageAuthor":"[linuxserver.io](https:\/\/linuxserver.io)","packageUpdateMechanism":"docker"},"details":{"1":{"series":{"title":"Akame ga Kill!","alternateTitles":[],"sortTitle":"akame ga kill","status":"ended","ended":true,"overview":"In a fantasy world, fighter Tatsumi sets out for the Capitol to earn money for his starving village, and finds a world of unimaginable corruption, all spreading from the depraved Prime Minister who controls the child Emperor's ear. After nearly becoming a victim of this corruption himself, Tatsumi is recruited by Night Raid, a group of assassins dedicated to eliminating the corruption plaguing the Capitol by mercilessly killing those responsible.","previousAiring":"2014-12-15T03:00:00Z","network":"Tokyo MX","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/14\/banner.jpg?lastWrite=636747176260467470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/280329-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/14\/poster.jpg?lastWrite=637600310298903610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/280329\/posters\/60aff11312ce8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/14\/fanart.jpg?lastWrite=637084967478235620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/280329-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":25,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-12-15T03:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":34903606693,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Akame ga Kill!","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":280329,"tvRageId":43317,"tvMazeId":0,"firstAired":"2014-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"akamegakill","imdbId":"tt3742982","titleSlug":"akame-ga-kill","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Crime","Fantasy","Horror"],"tags":[],"added":"2017-12-19T23:12:49.2387829Z","ratings":{"votes":5425,"value":8.0},"statistics":{"seasonCount":1,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":49,"sizeOnDisk":34903606693,"percentOfEpisodes":100.0},"id":14},"episodes":[{"seriesId":14,"episodeFileId":398,"seasonNumber":1,"episodeNumber":1,"title":"Kill the Darkness","airDate":"2014-07-07","airDateUtc":"2014-07-07T03:00:00Z","overview":"Tatsumi heads for the capital despite warnings about the area's dark nature as he needs to raise money for his village. Shortly after arriving, Tatsumi is robbed by a woman and has to sleep in the streets. However, he is invited to the manor of a young rich girl named Aria. As he awaits his best friends, Sayo and Ieyasu, Tatsumi learns of an assassin group named Night Raid. One night, the group appears and starts killing Aria's family and their guards. Tatsumi faces Night Raid's Akame but their duel is interrupted by Leonne, the same woman who robbed him. Leonne reveals to Tatsumi that Aria and her family has tortured several people from the countryside including Ieyasu and Sayo, the latter already being dead. Tatsumi kills Aria just before Ieyasu dies and Leonne invites the young man to join their group.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":455},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"AkaKill! Theater #01 - Tatsumi and Leone","airDate":"2014-07-07","airDateUtc":"2014-07-07T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":479},{"seriesId":14,"episodeFileId":399,"seasonNumber":1,"episodeNumber":2,"title":"Kill the Authority","airDate":"2014-07-14","airDateUtc":"2014-07-14T03:00:00Z","overview":"Tatsumi is taken to the Night Raid's secret hideout by Leone, in which he's introduced to the rest of the members of Night Raid--Bulat, Sheele, Mine, Najenda, Lubbock, and of course Akame, the latter of which who tried to kill him the previous night--and instantly formed distinct relationships with each one of them. While he didn't think much of Bulat, Sheele, Mine, Najenda, or Lubbock either way, he still got flustered around Leone all the time, and began to dislike Akame at first, both because of her strange attitude toward him, and because she tried to kill him the previous night. Before Tatsumi could be excepted into Night Raid, he had to help them with a specific assassination to prove his skill to them. Their goal was to take out two individuals who were high up in the government. Leone and Akame successfully take out one of them, and Tatsumi, with a little bit of struggle, takes out the other one on his own, earning their trust and becoming an official member of Night Raid after Akame's inspection of seeing any bodily injuries. Tatsumi is then informed by Najenda that he will be working with Mine for now, while in the distance Mine feels a chill, questioning why she felt it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":456},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"AkaKill! Theater #02 - 1-Minute Meals with Night Raid","airDate":"2014-07-14","airDateUtc":"2014-07-14T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":480},{"seriesId":14,"episodeFileId":400,"seasonNumber":1,"episodeNumber":3,"title":"Kill the Grudge","airDate":"2014-07-21","airDateUtc":"2014-07-21T03:00:00Z","overview":"While dispatching an enemy force trying to invade their base, Tatsumi learns of Bulat's Imperial Arm, Demon Armor: Incursio. Later, he goes to wake up Mine, which leads to an embarrassing situation after he walks in on her changing. The two then go around shopping in the capital, and Tatsumi is angered to learn that was supposed to be his training. Shortly afterward, the two witness public executions, and Tatsumi learns of Mine's determination to survive. Later, Night Raid is sent on a mission to assassinate one of the prime minister's relatives and his guards. Mine snipes the main target dead despite him being surrounded by innocent people, to Tatsumi's surprise, while the rest of the group kill most of the guards. After Mine tells Tatsumi of her past, and her motivations for joining Night Raid, they are ambushed by the remaining guard. Tatsumi manages to hold the guard in place and orders Mine to shoot him, despite him being in the line of fire; she takes the shot after Tatsumi declares his belief in Mine's sniping abilities, killing the guard and barely missing Tatsumi. She prepares to acknowledge him, but takes it back after he yells at her for grazing his head. Meanwhile, an unknown figure stares at a wanted poster of Akame before declaring that the capital was perfect for supplying people to kill.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":457},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"AkaKill! Theater #03 - Leone & Sheele Report on Hidden Imperial Hot Springs to Visit Before You Die \u2665","airDate":"2014-07-21","airDateUtc":"2014-07-21T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":481},{"seriesId":14,"episodeFileId":401,"seasonNumber":1,"episodeNumber":4,"title":"Kill the Imperial Arms User","airDate":"2014-07-28","airDateUtc":"2014-07-28T03:00:00Z","overview":"The unknown figure from the previous episode kills a girl by beheading her despite her pleas. Tatsumi is informed of the crazed former executioner of the largest dungeon in the kingdom (the unknown figure), who became addicted to cutting off heads and crazed for blood. He possesses a powerful Imperial Weapon, which every member of the Night Raid possesses in one form or another, and the Executioner's is in the form of a large green eye strapped to his forehead. It is revealed that when two imperial weapon welders fight, one has to die. Night Raid is then sent on a mission to eliminate him. During the mission, Tatsumi, who is paired Akame, is led away by a vision of Sayo and severely wounded in a battle with the Executioner. The green eye is revealed to be a weapon that can foresee the future movements and attacks of the opponent and can befuddle the opponent by dazing them with the image of their most beloved one. Just when Tatsumi is about to be killed, Akame appears and battles with the Executioner. The Executioner attempts distract Akame with the vision of a beloved one, a young girl that is shown to have fought with Akame in the past through Akame's flashback. However, Akame quickly kills the Executioner and replies that because the girl is who she loves the most, she must kill her the quickest. The Executioner's earpiece, which is what drove him mad in the first place with the cries of those he killed, breaks and the Executioner dies in peace. Akame goes to Tatsumi's aid and promises to clean his wounds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":458},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"AkaKill! Theater #04 - TV Shopping, Part 1","airDate":"2014-07-28","airDateUtc":"2014-07-28T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":482},{"seriesId":14,"episodeFileId":402,"seasonNumber":1,"episodeNumber":5,"title":"Kill the Empty Dream","airDate":"2014-08-04","airDateUtc":"2014-08-04T03:00:00Z","overview":"Tatsumi is jolted awake by a dream of Sayo and Ieyasu, and is surprised to find Sheele at his side. He then learns that she is going to be mentoring him for the day. After a strenuous training session, Tatsumi learns of Sheele's history, her perceived inability to be useful, and her reason for joining Night Raid, causing him to sympathize with her. During a meeting, he tries on Zank's Spectator, recovered after the events of the previous episode, but it rejects him. After learning more about the assumed strongest Imperial Arm in existence, and that collecting Imperial Arms was a top priority of Night Raid, Tatsumi declares his intention to find an Imperial Arm that could resurrect the dead, only to be upset upon learning that such an Imperial Arm could never exist. Sheele later comforts Tatsumi at Sayo and Ieyasu's grave. The next day, Tatsumi and Leone go out patrolling in a marketplace and become separated. Tatsumi is aided by a member of the Imperial Guard, Seryu, who possesses a biological, dog-like Imperial Arm that she names Coro; she guides him back to the marketplace before running off. It is then revealed that Seryu's mentor was Captain Ogre, and she intends to seek vengeance for his death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":459},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"AkaKill! Theater #05 - Glasses","airDate":"2014-08-04","airDateUtc":"2014-08-04T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":483},{"seriesId":14,"episodeFileId":403,"seasonNumber":1,"episodeNumber":6,"title":"Kill Absolute Justice","airDate":"2014-08-11","airDateUtc":"2014-08-11T03:00:00Z","overview":"Leone and Tatsumi storm the illustrious Red Light District to assassinate a gang of drug smugglers. Infiltrating a temple where the targets reside, they find a large room full of women being held captive by the gang, who incapacitates them with their drug. Enraged at this, they assassinate the gang and their clients. Meanwhile, after assassinating their own target, Sheele and Mine are ambushed by Seryu, who had been seeking out the former. During the battle, the two seem to overwhelm Seryu and Coro, forcing Seryu to use Coro's special attack, its Berserker form. Coro transforms and attempts to crush Mine, but Sheele intervenes and rescues her. However, when she is distracted by Mine, she is shot by Seryu, then bitten in half by Coro as Mine watches in horror. When additional Imperial Guards arrive, Sheele manages to activate her Imperial Arm's special attack and orders Mine to escape. She is then devoured by Coro as she reminisces of her experiences with Night Raid and expresses her happiness in finally being useful. After informing the others of Sheele's fate, Mine swears to avenge her friend with her own hands, while Esdeath returns to the Capital by the Prime Minister's request.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":460},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"AkaKill! Theater #06 - Esdeath's Fun Class on Torture","airDate":"2014-08-11","airDateUtc":"2014-08-11T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":484},{"seriesId":14,"episodeFileId":404,"seasonNumber":1,"episodeNumber":7,"title":"Kill the Three Beasts - First Half","airDate":"2014-08-18","airDateUtc":"2014-08-18T03:00:00Z","overview":"After Sheele has passed, the group have no other option than to get on with their lives. However, Tatsumi is still greatly affected by this but admires the way that Akame is so composed (only to find out, after a midnight confrontation, that she is everything but). The group shortly thereafter are tasked with bringing down a new threat; a group of skilled fighters who -under the command of Esdeath- are killing political opponents and trying to put the blame on the Night Raiders. Leone is tasked with watching over Esdeath, Akame and Lubbock are to hunt the imposters down while Tatsumi and Bulat are to act as bodyguards to another political opponent that maybe on the kill list. Though things don't go as planned when the false Night Raiders are on the same ship as Tatsumi and Bulat. Tatsumi is confronted by one of the three and is saved by Bulat. Bulat then confronts General Liver.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":461},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"AkaKill! Theater #07 - Field Trip","airDate":"2014-08-18","airDateUtc":"2014-08-18T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":485},{"seriesId":14,"episodeFileId":405,"seasonNumber":1,"episodeNumber":8,"title":"Kill the Three Beasts - Second Half","airDate":"2014-08-25","airDateUtc":"2014-08-25T03:00:00Z","overview":"Liver and Bulat engage in a battle, while Tatsumi fights Nyau. Liver unleashes his Teigu, Black Marlin, which manipulates and controls preexisting liquid, and lands some attacks on Bulat, causing the latter's Incursio armor to gradually lose strength. Liver notices Bulat's determination despite this growing disadvantage and uses a special attack that finally wears out Incursio. Now without Incursio, Bulat decides to engage Liver in a sword fight. Liver tries recruiting Bulat to Esdeath's army, but he refuses, realizing that his former general's views have changed. The two fight, and both eventually wound each other. Mortally wounded, Liver reveals before dying that the reason he joined Esdeath is simply because he admired her. Though victorious, Bulat finds that his wounds are poisoned from a last-resort attack inflicted by Liver. He subsequently entrusts his Incursio to Tatsumi so the latter could use it against Nyau, who taunts Tatsumi and doesn't believe he will be compatible with the Imperial Arm. However, Tatsumi proves to be compatible with Bulat's Incursio, and with it, he kills Nyau. Despite Tatsumi's victory, Bulat succumbs to his wounds, and Tatsumi mourns for his mentor. Elsewhere, a girl, Kurome, is informed that she has been chosen to be a part of a new group, and she believes this could be a chance to see her sister again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":462},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"AkaKill! Theater #08 - The Tale of Estarou","airDate":"2014-08-25","airDateUtc":"2014-08-25T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":486},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Digest Recap - Episode 8.5","airDate":"2014-08-31","airDateUtc":"2014-08-31T03:00:00Z","overview":"Recap of the first eight episodes of the main series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14774},{"seriesId":14,"episodeFileId":406,"seasonNumber":1,"episodeNumber":9,"title":"Kill the Lust for Combat","airDate":"2014-09-01","airDateUtc":"2014-09-01T03:00:00Z","overview":"After taking a bath, Mine fully resolves to avenge the deaths of her comrades Sheele and Bulat. At the training grounds, Tatsumi and Lubbock are taking push-ups, with Akame and Leone respectively sitting on their backs. Najenda later tells Night Raid that she will be leaving to recruit new members and assigns Akame as temporary leader. At the Capital, Wave tries to make an impression as other Imperial Arms users, namely Kurome, Seryu, Dr. Stylish, Run, and Bols, come and introduce themselves one by one. Esdeath arrives and introduces herself to the group, called the Jaegers, then announces their intention to hunt down enemies of the Empire. At Lubbock's library, Lubbock, Tatsumi, and Leone learn that Mine is now included in the Wanted list and an upcoming tournament sponsored by Esdeath is to be held at the Capital. Tatsumi pretends to be a blacksmith and joins the tournament, where he flawlessly defeats a muscular opponent without using his Incursio. Esdeath suddenly becomes infatuated over Tatsumi's fighting prowess and approaches him. Tatsumi thinks that the reward for winning the tournament is money, but instead, he is shackled by Esdeath and taken inside the Palace. Learning of Tatsumi's capture, Akame and the others wonder whether they should rescue Tatsumi.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":463},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"AkaKill! Theater #09 - Interviews","airDate":"2014-09-01","airDateUtc":"2014-09-01T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":487},{"seriesId":14,"episodeFileId":407,"seasonNumber":1,"episodeNumber":10,"title":"Kill the Seduction","airDate":"2014-09-08","airDateUtc":"2014-09-08T03:00:00Z","overview":"Following Tatsumi's capture by Esdeath, Tatsumi is dragged along with Esdeath and the Jaegers to raid and destroy a bandit's fortress as a backup Jaeger. Esdeath forces Tatsumi to watch the destruction as part of his training. Afterwards, Esdeath tries to seduce Tatsumi in her bedroom, but Tatsumi resists the temptation and believes he can convince her to turn against the Empire. However, Esdeath slaps him and explains her motive of \"survival of the fittest\" as well as her being the one to change Tatsumi, even if it meant protecting his family. After further arguing, they both decide to end the discussion and sleep, with neither convincing each other. However, Esdeath still remains in love with Tatsumi. The next day, Tatsumi meets up with Wave and Kurome. Tatsumi notices Kurome's gluttony, to which she reveals that she is Akame's sister and wants to kill her for betraying the Capital. Later, Esdeath, Kurome, Wave, and Tatsumi go on a hunt at Mount Fake, with Tatsumi and Wave paired together. Both Tatsumi and Wave fight tree-like Danger Beasts with ease and without their Imperial Arms. Upon destroying the monsters, Tatsumi attempts to escape using Incursio and Wave follows him with his Imperial Arm, Grand Chariot. Unaware of each other's identities, Wave attacks while Tatsumi tries to escape once more. Tatsumi is defeated, but he escapes using invisibility and is rescued by Akame and Lubbock. Wave is punished by Esdeath for allowing Tatsumi to escape. Tatsumi returns back to the Night Raid base and tells them about the Jaegers. Meanwhile, Dr. Stylish and his men, Team Stylish, locate the base and prepare to attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":464},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"AkaKill! Theater #10 - DX Demon Armor Incursio","airDate":"2014-09-08","airDateUtc":"2014-09-08T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":488},{"seriesId":14,"episodeFileId":408,"seasonNumber":1,"episodeNumber":11,"title":"Kill the Mad Scientist","airDate":"2014-09-15","airDateUtc":"2014-09-15T03:00:00Z","overview":"Team Stylish carries out their attack on the Night Raid base, and multiple foot soldiers are killed during the assault, while Leone is incapacitated by a member named Trooma. One of the members, Toby, decides to duel Akame, and she is unable to fatally poison him with her Imperial Arm, Murasame, because his body is mostly machine due to it being installed with multiple weapons, but she is eventually able to kill him after he is impaled by Lubbock in an ambush. Meanwhile, Tatsumi fights Kaku, another member of Team Stylish, and is shocked to find that he has possession of Ecstasy, Sheele's old Imperial Arm. The battle is interrupted by Mine, who is also horrified to see Ecstasy, and she quickly kills Kaku, safely retrieving Ecstasy. Trooma prepares to ambush Mine, but is attacked by Leone, who had recovered, and she accidentally kills him with a single blow, to her displeasure. After Night Raid regroups, everyone but Tatsumi suddenly collapses, having been afflicted with a paralytic poison during the battle. When more foot soldiers move in, a biological Imperial Arm named Susanoo intervenes and dispatches them. Outmatched, Dr. Stylish injects himself with a liquid that turns him into a Danger Beast, and he consumes his remaining men. Tatsumi, Akame, and Susanoo fight Dr. Stylish before he is shot by Mine, allowing Akame to slash Dr. Stylish's real body contained in the Danger Beast, killing him. Najenda and a girl observe the aftermath of the battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":465},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"AkaKill! Theater #11 - Girl's Bar","airDate":"2014-09-15","airDateUtc":"2014-09-15T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":489},{"seriesId":14,"episodeFileId":409,"seasonNumber":1,"episodeNumber":12,"title":"Kill the New Recruits","airDate":"2014-09-22","airDateUtc":"2014-09-22T03:00:00Z","overview":"After Dr. Stylish's death Night Raid ventures into a Danger Beast-infested area so they can set up their new hideout. Najenda introduces Susanoo and Chelsea, the girl from the previous episode. After their introduction, Chelsea berates Night Raid for their incompetence, which she alleges led to Sheele and Bulat's deaths. Angered, Mine decides to teach Chelsea a lesson and recruits Lubbock and Tatsumi, the latter of whom uses Incursio to sneak on the hot spring where Chelsea is bathing. However, Tatsumi instead confronts Susanoo, but it is actually Chelsea using her Teigu, Gaea Foundation, which changes her physical appearance. Chelsea tells her story about her former team being massacred, leaving her as the only survivor, and she reveals that she berated Night Raid because she didn't want them to die like her former team did. Meanwhile, a depressed Esdeath learns of the loss of Dr. Stylish and comforts Seryu when she grieves his death. At the Capital, Run tells Esdeath that there are many lookalikes of Tatsumi for her to court, but Esdeath declares that there is only one Tatsumi. At the mining caves, miners are being devoured by modified Danger Beasts while watched by a hooded man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":466},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"AkaKill! Theater #12 - TV Shopping, Part 2","airDate":"2014-09-22","airDateUtc":"2014-09-22T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":490},{"seriesId":14,"episodeFileId":410,"seasonNumber":1,"episodeNumber":13,"title":"Kill the Hinderance","airDate":"2014-09-29","airDateUtc":"2014-09-29T03:00:00Z","overview":"The prime minister assigns Esdeath to track down the Danger Beasts from the previous episode and kill them. Later, the Jaegars attack some of the Danger Beasts when they attack a wagon of supplies. The next day, Wave recalls the incident and notes that the present merchants were terrified of Bols despite his kind personality because of his otherwise fearsome appearance. However, Bols tells him that despite his personality, he had killed many people in the past, which understandably earned him a lot of hate. Then, the group is visited by Bols's wife and young daughter who support his work, which surprises Wave. Meanwhile, while doing some training with Susanoo, Tatsumi tells him that he should be considered one of Night Raid, not as a tool. Later, Night Raid travels to another hideout and are given their newest mission: to kill the modified Danger Beasts, essentially helping the Capital they have been fighting. When Chelsea states her belief that the Jaegers should take care of the problem, Tatsumi counters that by aiding the Capital, they would be able to save more lives. Chelsea later confides to Najenda that she believes Tatsumi's kindness will eventually lead him to his death. Esdeath and Run express to each other their beliefs that, since the new Danger Beasts were revealed to have once been human, they were possibly the result of one of Dr. Stylish's experiments, and assume they somehow managed to escape their containment. The following night, while patrolling the mountains, Tatsumi learns about Lubbock's reasons for joining Night Raid, which involved Najenda. Later, Tatsumi travels to the summit of a mountain alone and is suddenly confronted by a wandering Esdeath, who is shocked to see him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":467},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"AkaKill! Theater #13 - A New Hideout","airDate":"2014-09-29","airDateUtc":"2014-09-29T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":491},{"seriesId":14,"episodeFileId":411,"seasonNumber":1,"episodeNumber":14,"title":"Kill the Giant Dangerous Beast","airDate":"2014-10-06","airDateUtc":"2014-10-06T03:00:00Z","overview":"Esdeath's shock at seeing Tatsumi turns to delight, but the reunion cut short when Syura (the hooded man overseeing the activities of the new Danger Beasts) appears and uses his Shambala, an Imperial Arm that is capable of teleporting objects. Esdeath and Tatsumi are teleported to a remote island, where they are confronted by a gigantic modified Danger Beast created from Dr. Stylish's experiments. After it repels Esdeath's attacks, the Danger Beast is slain by Tatsumi. As night falls, Tatsumi and Esdeath decide to tell each other their back-stories; Tatsumi fakes his, while Esdeath reveals that she hailed from a clan that hunted Danger Beasts, with her father telling her that the strongest will survive and the weak shall fall. When her clan was attacked by a rivaling tribe and all of its members killed, she was told by her dying father that the clan was weak and that she needed to live strong. As a result, Esdeath enlisted in the Imperial army and ended up becoming a skilled general. Now thinking about getting off the island, Esdeath tries to hunt a flying Danger Beast, but Syura's teleport field appears and they jump in. Although they return back to the mountains, Tatsumi flees using his Incursio. Realizing that Esdeath cannot be convinced, he vows that the next time they meet, it will be as enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":468},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"AkaKill! Theater #14 - A Serious Love","airDate":"2014-10-06","airDateUtc":"2014-10-06T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":492},{"seriesId":14,"episodeFileId":412,"seasonNumber":1,"episodeNumber":15,"title":"Kill the Religion","airDate":"2014-10-13","airDateUtc":"2014-10-13T03:00:00Z","overview":"Lubbock asks Tatsumi why he teleported Esdeath back to the mainland instead of leaving her on the island. However, Najenda responds that Esdeath would have escaped the island either way before revealing that she knows her personally. Meanwhile, Wave confronts Seryu about murdering three bandits who were suspected Night Raid members, but she brushes him off. Despite remarking that the Capital is twisted, Wave maintains his loyalty as a soldier. Later, Najenda tells Night Raid about Path of Peace, a pacifist religious organization that is inciting a religious insurrection, and that the Revolutionary Army (the rebellion force Night Raid is a part of) and an allied tribe will launch attacks against the Capital simultaneous to Path of Peace's uprising. She then assigns Night Raid to assassinate Borick, the adviser to Path of Peace's founder who is a spy for the prime minister and is drugging several of the religion's followers into obedience, also instructing them to take out the Jaegers, especially Kurome and Bols, who will undoubtedly respond. The next day, Akame begins expressing her doubts about battling Kurome, but Mine comforts her. Meanwhile, Esdeath splits the Jaegers into two teams: she will attack Najenda with Seryu and Ran, while Wave, Kurome, and Bols will pursue Akame. Wave's team arrives at a canyon, where Mine fires at Kurome, but she dodges the shot. Susanoo arrives and knocks Wave away, leaving Kurome and Bols to be confronted by the entire Night Raid team. Kurome activates her Imperial Arm, Yatsufusa, which brings forth the last eight victims of its blade as Kurome's puppets. Among those summoned is a gigantic Danger Beast, which Night Raid prepares to battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":469},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"AkaKill! Theater #15 - \"Seryu's Fun Safety Class\"","airDate":"2014-10-13","airDateUtc":"2014-10-13T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":493},{"seriesId":14,"episodeFileId":413,"seasonNumber":1,"episodeNumber":16,"title":"Kill the Dolls","airDate":"2014-10-20","airDateUtc":"2014-10-20T03:00:00Z","overview":"Night Raid engages Bols and Kurome along with her puppets. Kurome draws first attack from her puppet Destaghoul, an ultra-class Danger Beast, who shoots a powerful beam and afterwards the hand-to-hand combat begins as Akame engages Bols and the puppet bodyguard Woll after a short melee with Kurome and their deceased friend turned puppet Natala, then Tatsumi against Apeman and Hentarr, Susanoo against Destaghoul, Leone against Rokgough, and Mine against the gunslinger Doya. Leone's left arm gets amputated by Kurome while battling Rokgough and Najenda tells Leone to leave Rokgough to her because they're both Imperial generals and close friends. Najenda destroys Rokgough and quickly heads to Susanoo. Bols questions Akame in joining the Revolutionary Army and Akame responded that she chose it from her heart and thinks it is the right path. Leone joins Akame as they double-teamed against Bols, eliminating Woll in the process and Leone disables Bols' flamethrower. Tatsumi is having a hard time fighting Apeman and Hentarr but a disguised Chelsea distracts Hentarr which disables his movement by the use of a needle punctured on his head then being sliced by Tatsumi. Then Tatsumi gains the upper hand in eliminating Apeman. Mine was swallowed by a Kaiser frog, the eight puppet summoned by Kurome. However, Mine destroys the frog. Susanoo transforms into a much powerful form gained from Najenda's life force and destroys Destaghoul. In a desperate attempt, Bols throws his Rubicante upward and detonates intending to destroy Akame and Leone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":470},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"AkaKill! Theater #16 - Mom's Memories...?!","airDate":"2014-10-20","airDateUtc":"2014-10-20T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":494},{"seriesId":14,"episodeFileId":414,"seasonNumber":1,"episodeNumber":17,"title":"Kill the Curse","airDate":"2014-10-27","airDateUtc":"2014-10-27T03:00:00Z","overview":"After the massive explosion set by Bols' Rubicante, everyone from Night Raid and Jaegers manage to stay alive. As Bols walks away, he still thinks about the Jaegers as his family and he must regroup with them as soon as possible. Bols meets a wounded girl and treats the wound with a bandage, but the girl responded of how many people does he burned with his Rubicante and it reveals as the disguised Chelsea, piercing a needle on Bols' nape. Bols crawls as he accepts his fate and the only thing he can do is to get home but he succumbs. Chelsea meets Lubbock and she is requesting for reinforcements before Kurome acquires new puppets. Before trailing Kurome, Chelsea disguises herself as Bols. In the Night Raid outpost, they debrief on their skirmish with Jaegers until Lubbock arrives and asking for assisting Chelsea. Meanwhile, Kurome becomes tired and as she recuperates from their previous battle, she recalls her past with her older sister Akame where they're being tested first to become capable assassins. They passed the test but separated on which Kurome was designated on the Imperial forces and was experimented with various drugs to enhance her fighting prowess. After her recollection, Kurome is then joined by Chelsea, in disguised of Bols. Chelsea maintains patience but takes advantage when Kurome shows exhaustion, piercing a needle on her nape. Chelsea seems satisfied and recalls her past on how she wants to change the world by becoming an assassin, from her early days as an apprentice, seeing her master brutally toying people and accepting bribes, to acquiring the Imperial Relic Gaea Foundation on which she kills her master using deception. Chelsea shocks when Kurome approaches her and uses Natala and Doya to kill her. Akame and Tatsumi reaches a town and Tatsumi roams around in stealth, but shocks to see Chelsea's head placed on the top of the pole.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":471},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"AkaKill! Theater #17 - Haunted House","airDate":"2014-10-27","airDateUtc":"2014-10-27T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":495},{"seriesId":14,"episodeFileId":415,"seasonNumber":1,"episodeNumber":18,"title":"Kill the Demons","airDate":"2014-11-03","airDateUtc":"2014-11-03T03:00:00Z","overview":"Night Raid enters the city of Kyoroch, which is the headquarters for Path of Peace. The prime minister orders the Jaegers to protect Borick, who simultaneously sets the four \"Koukenji Rakshasa Demons\" on the offensive. Kurome, still recovering from her previous battle, continues on with her mission in order to not be disposed of. Lubbock, intending to meet with a spy from the city, is attacked by two of the Demons, Sten and Mez. Akame fights against another of the Demons, Ibara, whom she recognizes as being from her old assassination squad. Both Lubba and Akame succeed in killing their opponents. While searching the outskirts of town, Tatsumi and Mine encounter the leader and founder of Path of Peace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":472},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"AkaKill! Theater #18 - Flash of Lightning! Susanoo!","airDate":"2014-11-03","airDateUtc":"2014-11-03T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":496},{"seriesId":14,"episodeFileId":416,"seasonNumber":1,"episodeNumber":19,"title":"Kill Fate","airDate":"2014-11-10","airDateUtc":"2014-11-10T03:00:00Z","overview":"Night Raid plans to infiltrate the palace during Path of Peace's anniversary festival. Mine and Tatsumi are assigned as a diversion, and the two are eventually driven to the city's edge, where Seryu spots and recognizes them. She attacks the pair alongside the last member of the Four Rakshasa Demons, Suzuka. Mine manages to slice Seryu and Coro in half, but Seryu retaliates by setting off a suicide bomb implanted in her head. Exhausted, Mine struggles to escape the bomb, but is saved by Tatsumi, who had previously defeated Suzuka by crushing her with nearby ruins. Meanwhile, the rest of Night Raid storm the palace. Despite being told by Esdeath to stay put, Borick attempts to flee, but is quickly killed by Lubbock and Akame.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":473},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"AkaKill! Theater #19 - Syura's Comedy","airDate":"2014-11-10","airDateUtc":"2014-11-10T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":497},{"seriesId":14,"episodeFileId":417,"seasonNumber":1,"episodeNumber":20,"title":"Kill Pandemonium","airDate":"2014-11-17","airDateUtc":"2014-11-17T03:00:00Z","overview":"The prime minister creates an elite unit headed by his son, Syura. Despite reassuring Wave of her health, Kurome collapses and falls unconscious. Night Raid plan to invade the capital's palace to kill the prime minister; Mine and Leone investigate tunnels underneath the capital, while Najenda, Susanoo, and Akame meet with resistance spies. In order to support the Revolutionary Army's break-in from within the palace, Tatsumi and Lubbock covertly meet up with a member of the resistance, but are ambushed by Syura and his men. Syura reveals that he was the one behind the modified Danger Beasts and teleporting Esdeath and Tatsumi to the island. Commander-in-chief Budou appears and battles against Tatsumi, while Lubbock battles Syura. Lubbock manages to get the upper hand, but is stabbed in the back by a member of the resistance, who was being blackmailed by Syura. Syura then teleports Lubbock into an abyss, but Lubbock manages to drag him with him using his Imperial Arms. He then kills Syura and they are promptly teleported back, high above the palace. Lubbock's Imperial Arm breaks and he falls to his death, being impaled on spikes as Tatsumi, who has been captured, watches. Tatsumi is set to be publicly executed and Esdeath, who was away on an expedition, returns and volunteers to do the job herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":474},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"AkaKill! Theater #20 - TV Shopping, Part 3","airDate":"2014-11-17","airDateUtc":"2014-11-17T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":498},{"seriesId":14,"episodeFileId":418,"seasonNumber":1,"episodeNumber":21,"title":"Kill the Despair","airDate":"2014-11-24","airDateUtc":"2014-11-24T03:00:00Z","overview":"Esdeath implores Tatsumi to join her side but he refuses, so she resolves to execute him. Mine is about to sneak out to rescue Tatsumi on her own, but Akame, Leone and Najenda intercept her, and decide to accompany her. At the execution site, just as Esdeath is about to kill Tatsumi, the remaining members of Night Raid attack. Budo fights Leone and Mine, Najenda and Susanoo confront Esdeath, and Akame faces the Imperial Guard to retrieve Incursio. With Leone paralyzed by Budo's lightning-based Imperial Arms, Mine takes him on by herself and unleashes an overwhelmingly powerful blast enough to kill Budo, and leave Mine severely wounded. Meanwhile, Najenda uses Susanoo's trump card, Magatama Manifestation, which drains a portion of Najenda's life force each time it is used, but Esdeath overpowers him by using a spell that briefly freezes time and she destroys Susanoo's core. Najenda uses the trump card move again to restore Susanoo, who stays behind to keep Esdeath busy while the others escape with Tatsumi. Tatsumi carries the wounded Mine with him back toward the hideout, but knowing that she is too wounded to survive, Mine confesses her feelings for Tatsumi and kisses him before dying.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":475},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"AkaKill! Theater #21 - A Folk Tale: The Grateful Crane","airDate":"2014-11-24","airDateUtc":"2014-11-24T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":499},{"seriesId":14,"episodeFileId":419,"seasonNumber":1,"episodeNumber":22,"title":"Kill the Little Sister","airDate":"2014-12-01","airDateUtc":"2014-12-01T03:00:00Z","overview":"Even with Esdeath's efforts, the Revolutionary Army draws close to the capital, where the people start rebelling as well. Meanwhile, Kurome knows that she does not have much time left and sends a message to Akame, challenging her to a duel. Tatsumi attempts to dissuade her, but she leaves to confront her sister nonetheless. Once they meet, Kurome expresses all of her resentment for being left behind when Akame defected to Night Raid. Then, they begin fighting, but a giant beast interrupts their duel. After defeating the beast together, the two resume their fight. Wave appears and assists Kurome, but Tatsumi arrives to stop him, claiming that no one must interfere in their fight. Eventually, Akame defeats and kills Kurome. As Wave departs, taking Kurome's body with him, Akame mourns over the loss of her sister. Meanwhile, the Revolutionary Army surrounds the capital, and the prime minister instructs the Emperor to activate the Ultimate Imperial Arm in order to stop the revolution.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":476},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"AkaKill! Theater #22 - Akame and Kurome","airDate":"2014-12-01","airDateUtc":"2014-12-01T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":500},{"seriesId":14,"episodeFileId":420,"seasonNumber":1,"episodeNumber":23,"title":"Kill the Emperor","airDate":"2014-12-08","airDateUtc":"2014-12-08T03:00:00Z","overview":"Now with only four members left in their ranks, Night Raid decides to start their final mission to assassinate the prime minister. While Najenda leads the Revolutionary Army into the capital, Tatsumi, Akame, and Leone break into the palace, where they are confronted by Run. Leone stays behind to fight Run while Akame and Tatsumi push forward to the throne room. Refusing to listen their pleas, the Emperor activates Shwarzentazer, the Ultimate Imperial Arm, which reveals itself as a towering armored giant. Witnessing the destruction the Emperor inflicted against his own subjects, Tatsumi confronts him and is assisted by Wave while the others help the citizens evacuate the capital. After continuously striking the Imperial Arm's armor at a single point, Tatsumi manages to destroy it and defeat the Emperor once he unlocks the true power of Incursio. However, when the giant threatens to fall over the citizens, Tatsumi uses his last ounce of strength to stop it, despite being gravely wounded, and dies in Akame's arms, much to her grief and Esdeath's.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":477},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"AkaKill! Theater #23 - Setting Out on a Journey","airDate":"2014-12-08","airDateUtc":"2014-12-08T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":501},{"seriesId":14,"episodeFileId":421,"seasonNumber":1,"episodeNumber":24,"title":"Akame ga Kill!: The Final Battle","airDate":"2014-12-15","airDateUtc":"2014-12-15T03:00:00Z","overview":"With the Empire all but defeated, Esdeath still refuses to surrender and challenges Akame to a duel. With all of her attacks deflected, Akame is forced to unleash her Imperial Arm's trump-card by poisoning her own body with it, increasing her abilities and making a comeback to the point of wounding Esdeath's left arm. As a result, Esdeath cuts it off to prevent the poison from spreading through her body. With no time left to act, Akame puts all of her efforts into one final strike, forcing Esdeath to use her own Imperial Arm's trump-card to freeze time, which fails to prevent Akame from dealing her a fatal blow. With her last ounce of strength, Esdeath holds Tatsumi's body and freezes herself with it, which shatters both into pieces. Meanwhile, the prime minister is cornered by Leone and activates his own Imperial Arm to destroy hers, but even after shooting her several times, he fails to stop her from beating him to death. Knowing that her wounds are fatal, Leone bids farewell to Akame and dies alone in an alleyway after visiting her old drinking friends for one last time. The revolution finally ends with the Emperor sentenced to death, and before being executed, he asks Najenda to restore the country in his place. Meanwhile, Wave and Run pay respects to Kurome's grave and swear to help rebuild the nation as well. To soothe the public opinion, Akame accepts the blame for all of the crimes attributed to Night Raid and bids farewell to Najenda, leaving to parts unknown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":478},{"seriesId":14,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"AkaKill! Theater #24 - Wrap Party","airDate":"2014-12-15","airDateUtc":"2014-12-15T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":502}],"episodeFile":[{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Kill the Darkness-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E01.Kill the Darkness-Bluray-1080p.mkv","size":1439898589,"dateAdded":"2018-10-10T21:16:57.801887Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1476173,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6628884,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":398},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Kill the Authority-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E02.Kill the Authority-Bluray-1080p.mkv","size":1490699782,"dateAdded":"2018-10-10T21:16:58.077129Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1424031,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6966815,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":399},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Kill the Grudge-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E03.Kill the Grudge-Bluray-1080p.mkv","size":1585741032,"dateAdded":"2018-10-10T21:16:58.092703Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1474308,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7452195,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":400},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Kill the Imperial Arms User-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E04.Kill the Imperial Arms User-Bluray-1080p.mkv","size":1445041972,"dateAdded":"2018-10-10T21:16:58.108154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1460827,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6673199,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":401},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Kill the Empty Dream-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E05.Kill the Empty Dream-Bluray-1080p.mkv","size":1423872904,"dateAdded":"2018-10-10T21:16:58.123595Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1439008,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6575652,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":402},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Kill Absolute Justice-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E06.Kill Absolute Justice-Bluray-1080p.mkv","size":2106761932,"dateAdded":"2018-10-10T21:16:58.139059Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1513506,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":10347876,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":403},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Kill the Three Beasts - First Half-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E07.Kill the Three Beasts - First Half-Bluray-1080p.mkv","size":1349926911,"dateAdded":"2018-10-10T21:16:58.15561Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1448635,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6144264,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":404},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Kill the Three Beasts - Second Half-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E08.Kill the Three Beasts - Second Half-Bluray-1080p.mkv","size":1601098170,"dateAdded":"2018-10-10T21:16:58.17117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1550084,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7462521,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":405},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Kill the Lust for Combat-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E09.Kill the Lust for Combat-Bluray-1080p.mkv","size":1389054899,"dateAdded":"2018-10-10T21:16:58.18533Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1462200,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6355634,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":406},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Kill the Seduction-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E10.Kill the Seduction-Bluray-1080p.mkv","size":1397584863,"dateAdded":"2018-10-10T21:16:58.203796Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1484811,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6381835,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":407},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Kill the Mad Scientist-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E11.Kill the Mad Scientist-Bluray-1080p.mkv","size":1423494708,"dateAdded":"2018-10-10T21:16:58.217486Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1549046,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6463274,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":408},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Kill the New Recruits-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E12.Kill the New Recruits-Bluray-1080p.mkv","size":1408743020,"dateAdded":"2018-10-10T21:16:58.234502Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1450653,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6478325,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":409},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Kill the Hinderance-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E13.Kill the Hinderance-Bluray-1080p.mkv","size":1416253073,"dateAdded":"2018-10-10T21:16:58.25219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1441482,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6530591,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":410},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Kill the Giant Dangerous Beast-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E14.Kill the Giant Dangerous Beast-Bluray-1080p.mkv","size":1504959303,"dateAdded":"2018-10-10T21:16:58.272397Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1456908,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7013908,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":411},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Kill the Religion-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E15.Kill the Religion-Bluray-1080p.mkv","size":1239895955,"dateAdded":"2018-10-10T21:16:58.289236Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1441841,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5535825,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":412},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Kill the Dolls-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E16.Kill the Dolls-Bluray-1080p.mkv","size":1569889983,"dateAdded":"2018-10-10T21:16:58.306432Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1535528,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7301947,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":413},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Kill the Curse-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E17.Kill the Curse-Bluray-1080p.mkv","size":1415612737,"dateAdded":"2018-10-10T21:16:58.324008Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1418299,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6549498,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":414},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Kill the Demons-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E18.Kill the Demons-Bluray-1080p.mkv","size":1257030909,"dateAdded":"2018-10-10T21:16:58.342509Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1476904,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5597860,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":415},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Kill Fate-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E19.Kill Fate-Bluray-1080p.mkv","size":1550316516,"dateAdded":"2018-10-10T21:16:58.359644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1499573,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7227643,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":416},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Kill Pandemonium-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E20.Kill Pandemonium-Bluray-1080p.mkv","size":1388465455,"dateAdded":"2018-10-10T21:16:58.377354Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1482568,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6332843,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":417},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Kill the Despair-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E21.Kill the Despair-Bluray-1080p.mkv","size":1323544268,"dateAdded":"2018-10-10T21:16:58.394575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1522267,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5927891,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":418},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Kill the Little Sister-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E22.Kill the Little Sister-Bluray-1080p.mkv","size":1285172100,"dateAdded":"2018-10-10T21:16:58.413027Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1453145,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5780079,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":419},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Kill the Emperor-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E23.Kill the Emperor-Bluray-1080p.mkv","size":1413408179,"dateAdded":"2018-10-10T21:16:58.437857Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1539777,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6415986,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":420},{"seriesId":14,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Akame ga Kill!- The Final Battle-Bluray-1080p.mkv","path":"\/tv\/Akame ga Kill!\/Season 01\/S01E24.Akame ga Kill!- The Final Battle-Bluray-1080p.mkv","size":1477139433,"dateAdded":"2018-10-10T21:16:58.457058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1478037,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6837334,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":421}],"queue":[]},"2":{"series":{"title":"Stranger Things","alternateTitles":[],"sortTitle":"stranger things","status":"continuing","ended":false,"overview":"Tribute to the classic supernatural mysteries of the 80s, \"Stranger Things\" is the story of a boy who disappears in the small town of Hawkins, Indiana, without a trace in 1983. In his desperate search, both his friends and family and the local sheriff are involved in an extraordinary enigma: top-secret experiments, terrifying paranormal forces and a very, very rare girl ...","previousAiring":"2019-07-04T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/7\/banner.jpg?lastWrite=637100124361265030","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/305288-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/7\/poster.jpg?lastWrite=637608544747669610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d1df8d5be8c8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/7\/fanart.jpg?lastWrite=637100124359305070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/305288-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":7,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-07-15T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":28628068203,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-10-27T07:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":37470968477,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-07-04T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":23915915543,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2016,"path":"\/tv\/Stranger Things","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":51,"tvdbId":305288,"tvRageId":0,"tvMazeId":2993,"firstAired":"2016-07-15T00:00:00Z","seriesType":"standard","cleanTitle":"strangerthings","imdbId":"tt4574334","titleSlug":"stranger-things","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Adventure","Drama","Fantasy","Horror","Suspense"],"tags":[],"added":"2017-12-06T01:14:16.1712672Z","ratings":{"votes":4140,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":35,"sizeOnDisk":90014952223,"percentOfEpisodes":100.0},"id":7},"episodes":[{"seriesId":7,"episodeFileId":0,"seasonNumber":4,"episodeNumber":1,"title":"Chapter One: The Hellfire Club","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":15826},{"seriesId":7,"episodeFileId":0,"seasonNumber":4,"episodeNumber":2,"title":"Chapter Two: Tick Tock Mr. Clock","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21297},{"seriesId":7,"episodeFileId":0,"seasonNumber":4,"episodeNumber":3,"title":"Chapter Three: You Snooze You Lose","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21298},{"seriesId":7,"episodeFileId":7683,"seasonNumber":1,"episodeNumber":1,"title":"Chapter One: The Vanishing of Will Byers","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"On his way home from a friend's house, young Will sees something terrifying. Nearby, a sinister secret lurks in the depths of a government lab.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":4533},{"seriesId":7,"episodeFileId":7684,"seasonNumber":1,"episodeNumber":2,"title":"Chapter Two: The Weirdo on Maple Street","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"Lucas, Mike and Dustin try to talk to the girl they found in the woods. Hopper questions an anxious Joyce about an unsettling phone call.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":4534},{"seriesId":7,"episodeFileId":7685,"seasonNumber":1,"episodeNumber":3,"title":"Chapter Three: Holly, Jolly","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"An increasingly concerned Nancy looks for Barb and finds out what Jonathan's been up to. Joyce is convinced Will is trying to talk to her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":4535},{"seriesId":7,"episodeFileId":7686,"seasonNumber":1,"episodeNumber":4,"title":"Chapter Four: The Body","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"Refusing to believe Will is dead, Joyce tries to connect with her son. The boys give Eleven a makeover. Nancy and Jonathan form an unlikely alliance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":4536},{"seriesId":7,"episodeFileId":7687,"seasonNumber":1,"episodeNumber":5,"title":"Chapter Five: The Flea and the Acrobat","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"Hopper breaks into the lab while Nancy and Jonathan confront the force that took Will. The boys ask Mr. Clarke how to travel to another dimension.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":4537},{"seriesId":7,"episodeFileId":7688,"seasonNumber":1,"episodeNumber":6,"title":"Chapter Six: The Monster","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"A frantic Jonathan looks for Nancy in the darkness, but Steve's looking for her, too. Hopper and Joyce uncover the truth about the lab's experiments.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":4538},{"seriesId":7,"episodeFileId":7689,"seasonNumber":1,"episodeNumber":7,"title":"Chapter Seven: The Bathtub","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"Eleven struggles to reach Will, while Lucas warns that \"the bad men are coming.\" Nancy and Jonathan show the police what Jonathan caught on camera.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":4539},{"seriesId":7,"episodeFileId":7690,"seasonNumber":1,"episodeNumber":8,"title":"Chapter Eight: The Upside Down","airDate":"2016-07-15","airDateUtc":"2016-07-15T07:00:00Z","overview":"Dr. Brenner holds Hopper and Joyce for questioning while the boys wait with Eleven in the gym. Back at Will's, Nancy and Jonathan prepare for battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":4540},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Beyond Stranger Things: Mind Blown","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"Millie Bobby Brown, Finn Wolfhard, Shawn Levy and the Duffer Brothers sit down to discuss new characters and the season's most important themes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4526},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Beyond Stranger Things: Mad for Max","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:51:00Z","overview":"Shawn Levy and the Duffer Brothers stick around to talk 1980s tech and teenage love triangles with Caleb McLaughlin, Gaten Matarazzo and Sadie Sink.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4527},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Beyond Stranger Things: Unlikely Allies","airDate":"2017-10-27","airDateUtc":"2017-10-27T08:42:00Z","overview":"Joe Keery joins Shawn Levy, Gaten Matarazzo and the Duffer Brothers to shed light on Steve's evolution -- and the season's most surprising partnership.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4528},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Beyond Stranger Things: Truth in Hawkins","airDate":"2017-10-27","airDateUtc":"2017-10-27T09:33:00Z","overview":"Natalia Dyer, Charlie Heaton, Joe Keery and Brett Gelman dissect a major new development, with insight from David Harbour and Shannon Purser.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4529},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Beyond Stranger Things: The AV Club","airDate":"2017-10-27","airDateUtc":"2017-10-27T10:24:00Z","overview":"Caleb McLaughlin, Gaten Matarazzo, Noah Schnapp and Randy Havens discuss Mr. Clarke's influence. \"Science Guy\" Bill Nye and Sean Astin weigh in.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4530},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Beyond Stranger Things: The New Class","airDate":"2017-10-27","airDateUtc":"2017-10-27T11:15:00Z","overview":"Sadie Sink, Brett Gelman, Dacre Montgomery and Linnea Berthelsen share their experiences creating new characters on a show with a huge fan following.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4531},{"seriesId":7,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Beyond Stranger Things: Closing the Gate","airDate":"2017-10-27","airDateUtc":"2017-10-27T12:06:00Z","overview":"Jim Rash steers the cast and crew through a deep-dive discussion of the season's conclusion and what it means for the future of Hawkins.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4532},{"seriesId":7,"episodeFileId":7691,"seasonNumber":2,"episodeNumber":1,"title":"Chapter One: MADMAX","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"As the town preps for Halloween, a high-scoring rival shakes things up at the arcade, and a skeptical Hopper inspects a field of rotting pumpkins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":4541},{"seriesId":7,"episodeFileId":7692,"seasonNumber":2,"episodeNumber":2,"title":"Chapter Two: Trick or Treat, Freak","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"After Will sees something terrible on trick-or-treat night, Mike wonders whether Eleven's still out there. Nancy wrestles with the truth about Barb.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":4542},{"seriesId":7,"episodeFileId":7693,"seasonNumber":2,"episodeNumber":3,"title":"Chapter Three: The Pollywog","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"Dustin adopts a strange new pet, and Eleven grows increasingly impatient. A well-meaning Bob urges Will to stand up to his fears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":4543},{"seriesId":7,"episodeFileId":7694,"seasonNumber":2,"episodeNumber":4,"title":"Chapter Four: Will the Wise","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"An ailing Will opens up to Joyce - with disturbing results. While Hopper digs for the truth, Eleven unearths a surprising discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":4544},{"seriesId":7,"episodeFileId":7695,"seasonNumber":2,"episodeNumber":5,"title":"Chapter Five: Dig Dug","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"Nancy and Jonathan swap conspiracy theories with a new ally as Eleven searches for someone from her past. \u201cBob the Brain\u201d tackles a difficult problem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":4545},{"seriesId":7,"episodeFileId":7696,"seasonNumber":2,"episodeNumber":6,"title":"Chapter Six: The Spy","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"Will's connection to a shadowy evil grows stronger, but no one's quite sure how to stop it. Elsewhere, Dustin and Steve forge an unlikely bond.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":4546},{"seriesId":7,"episodeFileId":7697,"seasonNumber":2,"episodeNumber":7,"title":"Chapter Seven: The Lost Sister","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"Psychic visions draw Eleven to a band of violent outcasts and an angry girl with a shadowy past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":4547},{"seriesId":7,"episodeFileId":7698,"seasonNumber":2,"episodeNumber":8,"title":"Chapter Eight: The Mind Flayer","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"An unlikely hero steps forward when a deadly development puts the Hawkins Lab on lockdown, trapping Will and several others inside.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":4548},{"seriesId":7,"episodeFileId":7699,"seasonNumber":2,"episodeNumber":9,"title":"Chapter Nine: The Gate","airDate":"2017-10-27","airDateUtc":"2017-10-27T07:00:00Z","overview":"Eleven makes plans to finish what she started while the survivors turn up the heat on the monstrous force that's holding Will hostage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":4549},{"seriesId":7,"episodeFileId":7660,"seasonNumber":3,"episodeNumber":1,"title":"Chapter One: Suzie, Do You Copy?","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"Summer brings new jobs and budding romance. But the mood shifts when Dustin's radio picks up a Russian broadcast, and Will senses something is wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":9416},{"seriesId":7,"episodeFileId":7658,"seasonNumber":3,"episodeNumber":2,"title":"Chapter Two: The Mall Rats","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"Nancy and Jonathan follow a lead, Steve and Robin sign on to a secret mission, and Max and Eleven go shopping. A rattled Billy has troubling visions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":9417},{"seriesId":7,"episodeFileId":7663,"seasonNumber":3,"episodeNumber":3,"title":"Chapter Three: The Case of the Missing Lifeguard","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"With El and Max looking for Billy, Will declares a day without girls. Steve and Dustin go on a stakeout, and Joyce and Hopper return to Hawkins Lab.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":9418},{"seriesId":7,"episodeFileId":7661,"seasonNumber":3,"episodeNumber":4,"title":"Chapter Four: The Sauna Test","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"A code red brings the gang back together to face a frighteningly familiar evil. Karen urges Nancy to keep digging, and Robin finds a useful map.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":9419},{"seriesId":7,"episodeFileId":7659,"seasonNumber":3,"episodeNumber":5,"title":"Chapter Five: The Flayed","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"Strange surprises lurk inside an old farmhouse and deep beneath the Starcourt Mall. Meanwhile, the Mind Flayer is gathering strength.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":9420},{"seriesId":7,"episodeFileId":7662,"seasonNumber":3,"episodeNumber":6,"title":"Chapter Six: E Pluribus Unum","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"Dr. Alexei reveals what the Russians have been building, and Eleven sees where Billy has been. Dustin and Erica stage a daring rescue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":9421},{"seriesId":7,"episodeFileId":7664,"seasonNumber":3,"episodeNumber":7,"title":"Chapter Seven: The Bite","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"With time running out -- and an assassin close behind -- Hopper's crew races back to Hawkins, where El and the kids are preparing for war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":9422},{"seriesId":7,"episodeFileId":7665,"seasonNumber":3,"episodeNumber":8,"title":"Chapter Eight: The Battle of Starcourt","airDate":"2019-07-04","airDateUtc":"2019-07-04T07:00:00Z","overview":"Terror reigns in the food court when the Mind Flayer comes to collect. But down below, in the dark, the future of the world is at stake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":9423}],"episodeFile":[{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Chapter Two- The Mall Rats-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E02.Chapter Two- The Mall Rats-WEBDL-1080p.mkv","size":2350070405,"dateAdded":"2019-07-04T07:39:36.354698Z","sceneName":"Stranger.Things.S03E02.INTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7658},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Chapter Five- The Flayed-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E05.Chapter Five- The Flayed-WEBDL-1080p.mkv","size":2420117484,"dateAdded":"2019-07-04T07:44:36.695656Z","sceneName":"Stranger.Things.S03E05.INTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:00","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7659},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Chapter One- Suzie, Do You Copy-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E01.Chapter One- Suzie, Do You Copy-WEBDL-1080p.mkv","size":2976357891,"dateAdded":"2019-07-04T07:57:14.859981Z","sceneName":"Stranger.Things.S03E01.iNTERNAL.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:33","scanType":"Progressive","subtitles":"Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Indonesian \/ Italian \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Turkish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7660},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Chapter Four- The Sauna Test-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E04.Chapter Four- The Sauna Test-WEBDL-1080p.mkv","size":3018747847,"dateAdded":"2019-07-04T08:21:39.039865Z","sceneName":"Stranger.Things.S03E04.INTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6992445,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7661},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Chapter Six- E Pluribus Unum-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E06.Chapter Six- E Pluribus Unum-WEBDL-1080p.mkv","size":3527312995,"dateAdded":"2019-07-04T08:22:05.429472Z","sceneName":"Stranger.Things.S03E06.iNTERNAL.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:38","scanType":"Progressive","subtitles":"Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Indonesian \/ Italian \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Turkish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7662},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Chapter Three- The Case of the Missing Lifeguard-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E03.Chapter Three- The Case of the Missing Lifeguard-WEBDL-1080p.mkv","size":2900556605,"dateAdded":"2019-07-04T08:25:38.432414Z","sceneName":"Stranger.Things.S03E03.iNTERNAL.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6982279,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:43","scanType":"Progressive","subtitles":"Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Indonesian \/ Italian \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Turkish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7663},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Chapter Seven- The Bite-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E07.Chapter Seven- The Bite-WEBDL-1080p.mkv","size":2827883296,"dateAdded":"2019-07-04T08:30:38.544686Z","sceneName":"Stranger.Things.S03E07.iNTERNAL.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:06","scanType":"Progressive","subtitles":"Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Indonesian \/ Italian \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Turkish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7664},{"seriesId":7,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Chapter Eight- The Battle of Starcourt-WEBDL-1080p.mkv","path":"\/tv\/Stranger Things\/Season 03\/S03E08.Chapter Eight- The Battle of Starcourt-WEBDL-1080p.mkv","size":3894869020,"dateAdded":"2019-07-04T08:34:08.602061Z","sceneName":"Stranger.Things.S03E08.INTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6190000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:17:39","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7665},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Chapter One- The Vanishing of Will Byers-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E01.Chapter One- The Vanishing of Will Byers-Bluray-1080p.mkv","size":3517596113,"dateAdded":"2019-07-05T16:26:53.005886Z","sceneName":"Stranger.Things.S01E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9225000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"47:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7683},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Chapter Two- The Weirdo on Maple Street-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E02.Chapter Two- The Weirdo on Maple Street-Bluray-1080p.mkv","size":4690044418,"dateAdded":"2019-07-05T16:27:18.709606Z","sceneName":"Stranger.Things.S01E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10861000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"54:24","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7684},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Chapter Three- Holly, Jolly-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E03.Chapter Three- Holly, Jolly-Bluray-1080p.mkv","size":3515326336,"dateAdded":"2019-07-05T16:27:53.257986Z","sceneName":"Stranger.Things.S01E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8584000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"50:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7685},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Chapter Four- The Body-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E04.Chapter Four- The Body-Bluray-1080p.mkv","size":3517284953,"dateAdded":"2019-07-05T16:28:22.06289Z","sceneName":"Stranger.Things.S01E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8846000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:27","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7686},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Chapter Five- The Flea and the Acrobat-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E05.Chapter Five- The Flea and the Acrobat-Bluray-1080p.mkv","size":3516260337,"dateAdded":"2019-07-05T16:28:51.698737Z","sceneName":"Stranger.Things.S01E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8375000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7687},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Chapter Six- The Monster-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E06.Chapter Six- The Monster-Bluray-1080p.mkv","size":3517508670,"dateAdded":"2019-07-05T16:29:21.982248Z","sceneName":"Stranger.Things.S01E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9605000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"45:47","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7688},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Chapter Seven- The Bathtub-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E07.Chapter Seven- The Bathtub-Bluray-1080p.mkv","size":2836988839,"dateAdded":"2019-07-05T16:29:47.807959Z","sceneName":"Stranger.Things.S01E07.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8576000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"41:05","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7689},{"seriesId":7,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Chapter Eight- The Upside Down-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 01\/S01E08.Chapter Eight- The Upside Down-Bluray-1080p.mkv","size":3517058537,"dateAdded":"2019-07-05T16:30:12.934619Z","sceneName":"Stranger.Things.S01E08.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8079000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:48","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7690},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Chapter One- MADMAX-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E01.Chapter One- MADMAX-Bluray-1080p.mkv","size":3510943255,"dateAdded":"2019-07-05T16:36:49.917968Z","sceneName":"Stranger.Things.S02E01.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8468000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"46:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7691},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Chapter Two- Trick or Treat, Freak-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E02.Chapter Two- Trick or Treat, Freak-Bluray-1080p.mkv","size":4685269670,"dateAdded":"2019-07-05T16:37:14.818568Z","sceneName":"Stranger.Things.S02E02.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9895000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"54:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7692},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Chapter Three- The Pollywog-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E03.Chapter Three- The Pollywog-Bluray-1080p.mkv","size":4685884100,"dateAdded":"2019-07-05T16:37:55.190639Z","sceneName":"Stranger.Things.S02E03.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11050000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7693},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Chapter Four- Will the Wise-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E04.Chapter Four- Will the Wise-Bluray-1080p.mkv","size":3511031249,"dateAdded":"2019-07-05T16:38:27.33484Z","sceneName":"Stranger.Things.S02E04.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8874000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"45:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7694},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Chapter Five- Dig Dug-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E05.Chapter Five- Dig Dug-Bluray-1080p.mkv","size":4685229767,"dateAdded":"2019-07-05T16:38:53.20131Z","sceneName":"Stranger.Things.S02E05.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9479000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"56:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7695},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Chapter Six- The Spy-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E06.Chapter Six- The Spy-Bluray-1080p.mkv","size":4685878328,"dateAdded":"2019-07-05T16:39:26.479879Z","sceneName":"Stranger.Things.S02E06.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10835000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"50:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7696},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Chapter Seven- The Lost Sister-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E07.Chapter Seven- The Lost Sister-Bluray-1080p.mkv","size":3510475948,"dateAdded":"2019-07-05T16:40:04.232668Z","sceneName":"Stranger.Things.S02E07.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9039000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"44:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7697},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Chapter Eight- The Mind Flayer-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E08.Chapter Eight- The Mind Flayer-Bluray-1080p.mkv","size":3510747407,"dateAdded":"2019-07-05T16:40:32.148848Z","sceneName":"Stranger.Things.S02E08.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8537000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"46:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7698},{"seriesId":7,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Chapter Nine- The Gate-Bluray-1080p.mkv","path":"\/tv\/Stranger Things\/Season 02\/S02E09.Chapter Nine- The Gate-Bluray-1080p.mkv","size":4685508753,"dateAdded":"2019-07-05T16:40:51.629026Z","sceneName":"Stranger.Things.S02E09.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8749000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"1:00:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7699}],"queue":[]},"3":{"series":{"title":"Code Geass: Lelouch of the Rebellion","alternateTitles":[{"title":"Code Geass: Lelouch of the Rebellion R2","sceneSeasonNumber":2},{"title":"Code Geass: Lelouch of the Rebellion","sceneSeasonNumber":1},{"title":"\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9 \u53cd\u9006\u306e\u30eb\u30eb\u30fc\u30b7\u30e5","sceneSeasonNumber":1},{"title":"\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9 \u53cd\u9006\u306e\u30eb\u30eb\u30fc\u30b7\u30e5 R2","sceneSeasonNumber":2},{"title":"Code Geass","sceneSeasonNumber":1},{"title":"Code Geass R2","sceneSeasonNumber":2}],"sortTitle":"code geass lelouch rebellion","status":"ended","ended":true,"overview":"On August 10th, 2010 the Holy Empire of Britannia began a campaign of conquest, its sights set on Japan. Deploying a humanoid weapon dubbed Knightmare Frame, Japan was quickly conquered, its rights and identity stripped away, the once proud nation now referred to as Area 11. Its citizens, Elevens, now forced to scratch out a living while the Brits live comfortably within their settlements. Pockets of resistance appear throughout Area 11, working towards independence for Japan, although without much success. \r\nHowever, the world's destiny changes as Lelouch, an exiled Imperial Prince of Britannia posing as a student, finds himself in the heart of the ongoing conflict. Through a chance meeting with a mysterious girl named C.C., Lelouch gains a mysterious power called Geass. Equipped with the power of the king, Lelouch may finally realize his dream of bringing Britannia down to its knees!","previousAiring":"2008-09-27T15:00:00Z","network":"MBS","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/6\/banner.jpg?lastWrite=636747176310866370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79525-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/6\/poster.jpg?lastWrite=637566903952356340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/79525\/posters\/609303fbd97e3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/6\/fanart.jpg?lastWrite=637103832464878000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79525-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":53,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-07-27T15:25:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":14768276382,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2008-09-27T15:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":15168426161,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Code Geass- Lelouch of the Rebellion","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":79525,"tvRageId":18378,"tvMazeId":5276,"firstAired":"2006-10-05T00:00:00Z","seriesType":"standard","cleanTitle":"codegeasslelouchrebellion","imdbId":"tt0994314","titleSlug":"code-geass-lelouch-of-the-rebellion","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Drama","Fantasy","Romance","Science Fiction","Thriller","War"],"tags":[],"added":"2017-12-05T22:10:16.6738228Z","ratings":{"votes":20419,"value":8.9},"statistics":{"seasonCount":2,"episodeFileCount":50,"episodeCount":50,"totalEpisodeCount":103,"sizeOnDisk":29936702543,"percentOfEpisodes":100.0},"id":6},"episodes":[{"seriesId":6,"episodeFileId":1055,"seasonNumber":1,"episodeNumber":1,"title":"The Day a New Demon Was Born","airDate":"2006-10-05","airDateUtc":"2006-10-04T15:00:00Z","overview":"On August 10, 2010, a.t.b., Japan was conquered by the Holy Empire of Britannia. Seven years later, teenage student Lelouch Lamperouge finds himself pulled into a battle between anti-government terrorists and the Britannian Army in the Shinjuku Ghetto. In the midst of the conflict, a mysterious, green-haired girl saves him from death by granting him \"the power of the king\", which allows him to compel others to do his bidding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1432},{"seriesId":6,"episodeFileId":1056,"seasonNumber":1,"episodeNumber":2,"title":"The White Knight Awakens","airDate":"2006-10-12","airDateUtc":"2006-10-11T15:00:00Z","overview":"Using his newfound power, Lelouch hijacks an enemy Sutherland and leads the rebels in a counterattack against the Britannian army, forcing Viceroy Clovis la Britannia to call for the release of an experimental Knightmare Frame, the Lancelot, piloted by Suzaku Kururugi. The Lancelot proves to be far superior to the previous Knightmare Frame models and Lelouch is forced to change his plans. Just as the Britannian Army corners the terrorists, Prince Clovis orders an immediate cease-fire, as he is being held at gunpoint by Lelouch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1433},{"seriesId":6,"episodeFileId":1058,"seasonNumber":1,"episodeNumber":3,"title":"The False Classmate","airDate":"2006-10-19","airDateUtc":"2006-10-18T15:00:00Z","overview":"Lelouch confronts Clovis about the murder of his mother, Marianne vi Britannia, before killing him. When he returns to Ashford Academy, he discovers that Kallen K\u014dzuki, one of the terrorists he helped in Shinjuku, attends the same school. The limitations to his newfound power are also revealed to him when he attempts to question her then erase her memory, so he creates a cunning deception to ease her suspicions of his identity. When the death of Prince Clovis is announced in the media, it is Suzaku Kururugi who is accused of the murder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1434},{"seriesId":6,"episodeFileId":1061,"seasonNumber":1,"episodeNumber":4,"title":"His Name Is Zero","airDate":"2006-10-26","airDateUtc":"2006-10-25T15:00:00Z","overview":"The Purist faction within the Britannian Army scapegoats Suzaku for Clovis' death, planning to use him as an excuse to rid the army of Honorary Britannians. Lelouch concocts a plan to save his childhood friend, with some help from Kallen and Kaname Ohgi, leader of Kallen's resistance group. Announcing himself publicly as Zero, Lelouch declares it was he who killed Clovis, and uses his power on Jeremiah Gottwald to force him to assist in Suzaku's rescue. In private, Lelouch offers Suzaku the opportunity to turn against Britannia for falsely accusing him, but Suzaku refuses, wishing to change the Empire from within.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1435},{"seriesId":6,"episodeFileId":1063,"seasonNumber":1,"episodeNumber":5,"title":"The Princess and the Witch","airDate":"2006-11-02","airDateUtc":"2006-11-01T15:00:00Z","overview":"To Lelouch's surprise, C.C., the girl who gave him his power, is alive and now living in his residence. Suzaku, having been acquitted of all charges, accidentally meets Third Princess Euphemia li Britannia and ends up intervening in an internal Purist faction struggle. Meanwhile, Second Princess Cornelia li Britannia endeavors to take charge of Area 11 as Viceroy and bring Zero, now the Empire's number one enemy and most wanted man, to justice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1436},{"seriesId":6,"episodeFileId":1065,"seasonNumber":1,"episodeNumber":6,"title":"The Stolen Mask","airDate":"2006-11-09","airDateUtc":"2006-11-08T15:00:00Z","overview":"Suzaku transfers into Ashford Academy and faces the scorn of the Britannian students. Cornelia continues her hunt for Zero, destroying several rebel strongholds but finding no clues to his whereabouts. A stray cat slips into the Lamperouge residence on campus and takes off with Lelouch's Zero mask and a massive, comedic chase involving the entire student body follow. The Emperor of Britannia makes a speech during Prince Clovis' funeral on the virtues of inequality and the social battle for evolution and betterment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1437},{"seriesId":6,"episodeFileId":1066,"seasonNumber":1,"episodeNumber":7,"title":"Attack Cornelia","airDate":"2006-11-16","airDateUtc":"2006-11-15T15:00:00Z","overview":"Cornelia sets a trap for Zero at the Saitama Ghetto as she begins to clear another resistance cell. Despite C.C. trying to stop him, Lelouch takes the bait and goes to the aid of the Saitama resistance. His plan falls apart from a combination of Cornelia's superior tactics and the resistance cell's dissimilar motivations. Lelouch is cornered and nearly discovered, but C.C. dons his Zero costume and distracts the Britannian Army, allowing Lelouch to escape. Lelouch blames his defeat on the undisciplined rebels and resolves to build something better than a mere resistance unit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1438},{"seriesId":6,"episodeFileId":1068,"seasonNumber":1,"episodeNumber":8,"title":"The Black Knights","airDate":"2006-11-23","airDateUtc":"2006-11-22T15:00:00Z","overview":"A group from the Japan Liberation Front takes a hotel and its occupants hostage, including most of the Ashford Student council and a disguised Princess Euphemia. As such, Princess Cornelia cannot make a move against the hostage takers, which Lelouch realizes and takes advantage of. He mounts a rescue with Ohgi's resistance, using his knowledge of Euphemia to barter his way past Cornelia's blockade. As Lelouch speaks with the hostage takers, Suzaku sinks the floating hotel using the Lancelot. Using explosives set up by the resistance fighters, Lelouch derails any rescue efforts by the army so he can take credit for their rescue. Broadcasting publicly to the nation, he announces the creation and purpose of his Order of the Black Knights, \"allies of justice\" who will judge the world and protect the weak from \"those with power\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1439},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Stage 8.5: The Mask's Tracks","airDate":"2006-12-01","airDateUtc":"2006-11-30T15:00:00Z","overview":"Recap of the previous episodes.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1482},{"seriesId":6,"episodeFileId":1070,"seasonNumber":1,"episodeNumber":9,"title":"Refrain","airDate":"2006-12-07","airDateUtc":"2006-12-06T15:00:00Z","overview":"Told mostly from Kallen's perspective, her rocky relationship with her biological mother is revealed. The Black Knights are sent on a mission to take out the drug \"Refrain\", and find themselves to be popular among the Elevens. Kallen's mother is found among the Refrain users, and is arrested following the Black Knights' destruction of the drug stockpiles. Kallen promises to have changed the world by the time she is released.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1440},{"seriesId":6,"episodeFileId":1072,"seasonNumber":1,"episodeNumber":10,"title":"Guren Dances","airDate":"2006-12-14","airDateUtc":"2006-12-13T15:00:00Z","overview":"Cornelia and the Britannian Army heads to Narita, hoping to destroy the remnants of the Japan Liberation Front. Lelouch has his Knights follow her in the hope of capturing her alive so he can question her about his mother's death. As the Britannian forces close in on the Front's headquarters, Kallen utilizes her new Knightmare Frame, the Guren Mk-II, to cause a massive landslide that takes out much of the Britannian forces.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1441},{"seriesId":6,"episodeFileId":1074,"seasonNumber":1,"episodeNumber":11,"title":"Battle for Narita","airDate":"2006-12-21","airDateUtc":"2006-12-20T15:00:00Z","overview":"The Black Knights' assault on the Britannian Army in Narita proves successful, and Cornelia is cornered by Kallen and Lelouch. The army is pinned down by the Japan Liberation Front when they attempt to assist her. At Euphemia's request, Suzaku rushes onto the battlefield in the Lancelot to rescue Cornelia. He saves Cornelia and manages to corner Lelouch. C.C. comes to Lelouch's rescue by mentally traumatizing Suzaku, but is injured when Suzaku begins firing wildly. As he takes care of her, Lelouch inadvertently learns her real name. The Black Knights retreat from the conflict in victory, leaving the Japan Liberation Front and the Britannian Army to fight amongst themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1442},{"seriesId":6,"episodeFileId":1077,"seasonNumber":1,"episodeNumber":12,"title":"The Messenger from Kyoto","airDate":"2007-01-04","airDateUtc":"2007-01-03T15:00:00Z","overview":"Zero and the core members of the Black Knights meet with Taiz\u014d Kirihara, one of the most powerful people in the Japanese underground and an acquaintance of Lelouch from his younger days at the Kururugi Shrine. Lelouch deftly displays his tactical prowess and wit before Taiz\u014d and reveals his true identity to the man to gain his trust and support. When Lelouch returns to Tokyo, Shirley informs him of her father's death, indirectly caused by Zero during the Battle of Narita.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1443},{"seriesId":6,"episodeFileId":1078,"seasonNumber":1,"episodeNumber":13,"title":"Shirley at Gunpoint","airDate":"2007-01-11","airDateUtc":"2007-01-10T15:00:00Z","overview":"Kallen and Lelouch separately reflect upon the deaths of innocents in the Narita campaign. Shirley secretly follows Lelouch and witnesses the battle between the Japan Liberation Front and the Britannian Army, which Lelouch ends by detonating the Japan Liberation Front freighter as the Britannian Knightmares begin to board it, killing all personnel on board and giving the Black Knights the element of surprise. Suzaku attacks Lelouch, easily overpowering his weaker Burai with the Lancelot, forcing him to eject. He crash-lands near Shirley and is knocked unconscious. Shirley prepares to kill him to avenge her father, but hesitates when his mask falls off, revealing to her that Zero is Lelouch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1444},{"seriesId":6,"episodeFileId":1080,"seasonNumber":1,"episodeNumber":14,"title":"Geass vs. Geass","airDate":"2007-01-18","airDateUtc":"2007-01-17T15:00:00Z","overview":"Lelouch believes Shirley may have discovered his identity as Zero, so he and C.C. pursue her to Narita. Ohgi explores the battlefield of the previous night, discovering the wounded Villetta Nu left for dead out of sight. Lelouch encounters Mao, a young man who also has the power of Geass. Mao uses his mind-reading power to play on Shirley's insecurities, manipulating her into shooting Lelouch, but she falters at the last moment and C.C. sends Mao away temporarily. Since Shirley is being torn apart by grief and guilt, Lelouch uses his Geass to erase her memories of him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1445},{"seriesId":6,"episodeFileId":1083,"seasonNumber":1,"episodeNumber":15,"title":"Cheering Mao","airDate":"2007-01-25","airDateUtc":"2007-01-24T15:00:00Z","overview":"C.C. explains her history with Mao, and how his inability to turn his Geass off drove him insane. An injured Villetta wakes up in Ohgi's apartment and he discovers she has selective amnesia. C.C. leaves Lelouch to take care of Mao herself, but Mao gains the upper hand when he incapacitates her. Lelouch utilizes his intellect to fool Mao and rescue C.C. from him, using the Britannian Police to surround and shoot Mao. Safe on a rooftop away from the scene, Lelouch affirms his contract with her, promising to not fall victim to his power as Mao did.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1446},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Picture Drama - Stage 0.515","airDate":"2007-01-26","airDateUtc":"2007-01-25T15:00:00Z","overview":"Back in Imperial Calendar Year 2009, Lelouch carried Nunnally up a long set of stairs to the Kururugi Shrine. He had to explain to his sister that Japan was still under a system that elected a prime minister instead of having a king. Despite being only nine years old, he carried her all the way up because he didn\u2019t want the Japanese to touch her. The two of them had been given a small storehouse to live in on the shrine grounds, and when Lelouch first saw it, he had been at a loss for words. Inside, Nunnally had asked him what kind of place it was, and Lelouch lied to her by describing it as somewhere wonderful. He had suddenly noticed that someone was there and demanded that this person show himself. It had turned out to be Suzaku, and he had told Lelouch not to talk with such a superior tone since this place belonged to him originally. Suzaku had seen Britannians as impudent for wanting to make Japan into a colony, but Lelouch pointed out that Japan also controlled underdeveloped nations through their economies, so they aren\u2019t that different. Lelouch had heard all this from Suzaku\u2019s father, but that doesn\u2019t stop Suzaku from calling him a liar and revealing that he lied to Nunnally about what the room looked like. The two ended up fighting and Lelouch lost badly. Suzaku only stopped hitting Lelouch when Nunnally spoke up and he realized that she was blind. He apologized and ran out, and Nunnally proceeded to check if her brother was ok. Lelouch claimed to be fine and had figured out by this point that Suzaku was the son of Prime Minister Kururugi. Speaking in a retrospective tone, he explains that this is the first time that he met Suzaku. For Lelouch, who had up until then been surrounded by nothing but rivals and vassals, Suzaku was his first friend - and became his worst enemy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19992},{"seriesId":6,"episodeFileId":1084,"seasonNumber":1,"episodeNumber":16,"title":"Nunnally Held Hostage","airDate":"2007-02-01","airDateUtc":"2007-01-31T15:00:00Z","overview":"C.C. departs as a messenger to the Chinese Federation and Milly has a marriage interview with Lloyd Asplund, creator of the Lancelot. Mao returns to kidnap Lelouch's sister, Nunnally, and holds her hostage in the Ashford Academy sewers. Lelouch and Suzaku work together to rescue her, with Suzaku's physical adeptness and the clever use of Lelouch's Geass proving to be beyond Mao's planning. Before he can be arrested, Mao reveals that Suzaku killed his own father, and in return Lelouch silences him with his power. C.C. returns to the campus and finally ends Mao's life as Suzaku crumbles to the ground, confronted with his actions after years of secrecy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1447},{"seriesId":6,"episodeFileId":1087,"seasonNumber":1,"episodeNumber":17,"title":"Knight","airDate":"2007-02-08","airDateUtc":"2007-02-07T15:00:00Z","overview":"An inauguration ceremony of Clovis' memorial art museum is being held, with Euphemia judging the art works. Lelouch agrees to help Kyoshiro Tohdoh's comrades rescue their leader and Shirley finds an old crumpled letter detailing her previous knowledge of Zero's identity. During the rescue mission, Lelouch convinces Tohdoh to join the Black Knights. The Lancelot appears and attempts to stop them, but Lelouch is able to predict its movements and plan a counterattack. When Tohdoh slices open the cockpit, revealing Suzaku within, Lelouch is shocked, having originally planned for Suzaku to become Nunnally's knight. He orders an immediate retreat as reinforcements arrive. Seeing Suzaku's bravery and creed, Euphemia announces to the media that he will be her knight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1448},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Stage 17.5: Truth Behind the Mask","airDate":"2007-02-16","airDateUtc":"2007-02-15T15:00:00Z","overview":"Recap of the previous episodes.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":19993},{"seriesId":6,"episodeFileId":1089,"seasonNumber":1,"episodeNumber":18,"title":"I Order You, Suzaku Kururugi","airDate":"2007-02-22","airDateUtc":"2007-02-21T15:00:00Z","overview":"As Euphemia knights Suzaku, Lelouch establishes the hierarchy of the Black Knights. Diethard Reid suggests assassinating Suzaku, but Lelouch has other plans for him. He launches a plan to disable and capture Suzaku and the Lancelot at a Britannia military base on Shikinejima. The plan almost succeeds, but Second Prince Schneizel el Britannia appears and orders his floating battleship, the Avalon, to bombard the island.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1449},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Picture Drama - Stage 3.25","airDate":"2007-02-23","airDateUtc":"2007-02-22T15:00:00Z","overview":"Directly following the announcement of Clovis\u2019 death, the girls of the student council head to the bath. Kallen wonders why they\u2019re taking a bath and why she in particular is there since she just took a shower a little earlier. Milly claims that this is part of a social gathering: socializing with friends in the nude. After being teased by Milly about Lelouch, Shirley mentions how he was acting strange after seeing the news, and Milly noticed it in Nunnally too. Kallen feels that Lelouch treats Nunnally with a different attitude than he treats her, which Milly attributes to Lelouch\u2019s love for his little sister. The girls then get to talking about their bodies, and Kallen mentions that Nina looks different without her glasses. Milly says that she\u2019s been trying to get Nina to wear contacts for a long time, which implies that they\u2019ve known each other for a while. Indeed, as Nina explains, they are childhood friends, and her grandfather worked in Milly\u2019s grandfather\u2019s company developing Knightmare frames. Since she\u2019s knowledgeable about this kind of thing, Kallen connects the Ashford name with the experimental Io and Ganymede types. When Milly reveals that the company went bankrupt because of the research costs, Nina feels that it was her grandfather\u2019s fault. Milly, however, says that it was because of her own grandfather\u2019s extravagance in throwing parties. In the end, he came over to Japan and survived by running this school thanks to personal connections. Milly then asks Kallen if she\u2019s free the day after tomorrow, but Kallen remembers that she has an appointment at the Tokyo Tower. Since Kallen won\u2019t be available, Milly decides to ask her now what her three sizes are so that she can have clothes made for parties and events. Kallen doesn\u2019t want to say, Milly has Shirley hold her back while she finds out herself.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19994},{"seriesId":6,"episodeFileId":1091,"seasonNumber":1,"episodeNumber":19,"title":"Island of the Gods","airDate":"2007-03-01","airDateUtc":"2007-02-28T15:00:00Z","overview":"The aftermath of the Avalon's arrival inexplicably leaves Lelouch, Euphemia, Kallen, and Suzaku on the island of Kaminejima. Suzaku encounters Kallen while Euphemia is found by Zero. Suzaku learns Kallen is a Black Knight and pilot of the Guren Mk-II, and in turn tells her about how he killed his father. Euphemia confirms her suspicions that Lelouch is Zero. Schneizel, Lloyd, and C\u00e9cile Croomy survey the island's ancient ruins. When Lelouch, Kallen, Suzaku, and Euphemia suddenly fall into the ruins, Lelouch and Kallen steal the prototype Knightmare Frame Gawain to escape. Elsewhere, the exiled Japanese government from seven years ago launches a full-scale assault on Ky\u016bsh\u016b with the help of the Chinese Federation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1450},{"seriesId":6,"episodeFileId":1093,"seasonNumber":1,"episodeNumber":20,"title":"Battle for Kyushu","airDate":"2007-03-08","airDateUtc":"2007-03-07T15:00:00Z","overview":"The Britannian Army fights back against the Ky\u016bsh\u016b invaders with the Lancelot. Meanwhile, Nina meets Princess Euphemia and inadvertently gives Euphemia peace of mind about her feelings for Suzaku. As Suzaku becomes cornered when his Lancelot's battery runs out, Euphemia encourages Suzaku to fight on and live. Zero and C.C. fly into the battlefield in the Gawain to recharge the Lancelot, and the two Knightmares end the Ky\u016bsh\u016b campaign together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1451},{"seriesId":6,"episodeFileId":1095,"seasonNumber":1,"episodeNumber":21,"title":"The School Festival Declaration","airDate":"2007-03-15","airDateUtc":"2007-03-14T15:00:00Z","overview":"The Ashford Academy holds their annual school festival. Ohgi, Villeta, Euphemia, and Kallen all make their separate ways to the event. A series of close encounters risks the revealing of hidden identities, but all those involved escape. Suzaku pilots the Ganymede for the festival's main event: making a giant pizza, slated to be the world's largest. When Euphemia's presence is revealed, mass panic ensues. On live television, she declares the Mount Fuji area to be the \"Specially Administrated Zone of Japan\", where Elevens can be referred to as \"Japanese\" again. She believes this will bring back the happy days with Lelouch and Nunnally, but Lelouch thinks otherwise, knowing she is being naive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1452},{"seriesId":6,"episodeFileId":1097,"seasonNumber":1,"episodeNumber":22,"title":"Bloodstained Euphy","airDate":"2007-03-22","airDateUtc":"2007-03-21T15:00:00Z","overview":"During the commemoration ceremony for the Specially Administrated Zone, Lelouch and Euphemia privately discuss Japan's future. She convinces him, and Lelouch summarily halts his rebellion, until he suddenly loses control of his Geass while jokingly telling her to kill all the Japanese. The Geass-influenced Euphemia orders a bloody massacre of the people attending the ceremony. Blaming himself, a resolute Lelouch decides to salvage the situation by declaring Euphemia's Specially Administrated Zone a trap to lure out the Black Knights, and commands his troops to defeat the Britannian forces, protect the Japanese, and stop Euphemia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1453},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Picture Drama - Stage 4.33","airDate":"2007-03-23","airDateUtc":"2007-03-22T15:00:00Z","overview":"In the time prior to Suzaku\u2019s planned execution, Jeremiah had been deputy consul and had been talking to Villetta about making her into a baroness so that her descendants can be true nobles, unlike the title of knight which only lasts one generation. For now, he has entrusted the parade route for Suzaku\u2019s execution to her, and she\u2019s made all the necessary preparations. Jeremiah doesn\u2019t want to be humiliated any more because he\u2019s now allowed two members of the royal family to be killed in front of him. Villetta doesn\u2019t know what the first time he\u2019s referring to is, so Jeremiah explains that he used to be a guard in the Aries palace as his first military duty eight years ago. The Aries palace was where Empress Marianne was, and on that one night, orders came from above to reduce the number of guards to a minimum. Because of that, the guards weren\u2019t able to defend against the enemy intrusion, and this incident became Jeremiah\u2019s first setback. He then took up a new post in Area 11 where Marianne\u2019s orphans Lelouch and Nunnally had died, but now Clovis is dead too. When Jeremiah starts crying because of the memories of both Clovis and Marianne, Villetta asks him to wipe his tears because he\u2019s not acting very lord-like. Realizing that she\u2019s right, Jeremiah admits that his little sister Lilicia would laugh if she saw him like this, and as part of the distinguished Gottwald family, he vows to avenge Clovis and vindicate his honor. Unfortunately, Jeremiah\u2019s dreams and aspirations go down in flames when, under the influence of Lelouch\u2019s GEASS, he orders his forces to let the enemy escape.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19995},{"seriesId":6,"episodeFileId":1099,"seasonNumber":1,"episodeNumber":23,"title":"At Least with Sorrow","airDate":"2007-03-29","airDateUtc":"2007-03-28T15:00:00Z","overview":"Left with no choice, Lelouch shoots and mortally wounds Euphemia in front of Suzaku. Suzaku returns to the Avalon with her battered body as the Black Knights continue to contain the violence. She succumbs to her injuries as Lelouch announces his plan for the creation of the United State of Japan. Alone, Lelouch grieves over his actions as C.C. comforts him, reminding him that she will stay alongside him, as per their contract. Soon, the entirety of Area 11 revolts against the Britannian Empire. Advancing with his massive army, Lelouch ignites the conflict by initiating the collapse of the Tokyo Settlement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1454},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Picture Drama - Stage 6.75","airDate":"2007-04-25","airDateUtc":"2007-04-24T15:00:00Z","overview":"As he works on his bike, Rivalz finds out that Suzaku got to know Lelouch a long time ago when Lelouch visited for a summer. Rivalz remarks that this is his first time with someone who knew Lelouch in his childhood since Lelouch doesn\u2019t personally talk about it. Suzaku then recognizes Rivalz\u2019s bike and recalls that he met someone with one when he was working in maintenance and washing cars before he joined the military. Rivalz figures out that it was a female and guesses that it was Suzaku\u2019s sister or mother, but Suzaku explains that he doesn\u2019t have a family and that this person he was indebted to has also\u2026 When Rivalz realizes that he hit on a bad subject, Suzaku tells him not to worry. Rivalz then asks about Suzaku\u2019s home, so Suzaku reveals that he has none and is renting a room nearby courtesy of the military unit he works with. Hearing this, Rivalz suggests the school dormitory and offers his own room because he doesn\u2019t have a roommate. Suzaku, however, cites his work and says that he chose to enter the army. Still, he thanks Rivalz.\r\n\r\nInside the Lancelot\u2019s hanger, Lloyd is hard at work while humming to himself when Cecile comes to tell him of some documents he has to get together. Lloyd thinks that she should know his way of doing things after they\u2019ve been together for so long since their university laboratory days. He gets her flustered by saying that she really likes research, but that is because she initially misinterprets his phrase to mean that she really likes him. Suzaku then shows up and reports for duty, but Cecile feels that he should say taidaima when he comes in. She insists that rank and nobility should be disregarded here, and since Lloyd doesn\u2019t disapprove, she tells Suzaku to say it as if he were coming home because this place is like their home. Suzaku then says taidaima like he thinks she wants him to, but Cecile instructs him to say it louder and with more feeling, so he says it again. Cecile tries to respond with a welco","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19996},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Picture Drama - Stage 8.75","airDate":"2007-05-25","airDateUtc":"2007-05-24T15:00:00Z","overview":"For the opening ceremony of Clovisland\u2019s pool, Euphemia wants her older sister to put on a black bikini, but Cornelia worries that it exposes too much. Euphemia knows that this is the most acceptable out of the swimsuits that Clovis designed, and she hurries her sister to put it on. Guarding the outside of their dressing room are Darlton and Guilford, and Darlton comments on how his sons won\u2019t be happy to hear about Cornelia\u2019s swimsuit. Guilford realizes that Darlton is talking about the Glaston Knights who he had raised from orphans into knights, but he feels that Darlton is speaking a little imprudently. Darlton responds by calling Guilford stiff, which reminds Guilford to point out that Darlton hiding a gun in his swimsuit is unreasonable. With both men now staring in the direction of Darlton\u2019s swimwear, Darlton decides that it does stand out and gives up on the idea.\r\n\r\nSuzaku and Cecile are meanwhile already outside, supposedly here on guard duty, though Cecile is simply relaxing by the water. She isn\u2019t too worried because no one will expect Cornelia to be here as a surprise guest, and Lloyd didn\u2019t even come since Knightmares weren\u2019t needed. This causes Suzaku to comment on how it\u2019s regrettable that they all couldn\u2019t come together, but that\u2019s not what Cecile had meant when she mentioned Lloyd. When Suzaku then compliments Cecile on her swimsuit, she gets embarrassed because she thinks that he\u2019s teasing her about it. To Suzaku\u2019s surprise, the entire student council group shows up, including Nunnally and Lelouch. Nunnally in particular is here because she wants to swim in the pool that Clovis designed - although she can\u2019t move her feet, she feels that it means she\u2019ll have all the more freedom in the water. Nunnally then invites Suzaku to swim with her, but he tells her that he\u2019s on the job.\r\n\r\nWhen Cornelia makes her speech to commemorate the opening of the pool, Lelouch can\u2019t help but glare at her. Shirley notices this and points","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19997},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Picture Drama - Stage 9.33","airDate":"2007-06-22","airDateUtc":"2007-06-21T15:00:00Z","overview":"The Ashford Academy student council is having a male and female reversal festival where all the girls have dressed up as guys and all the guys have dressed up as girls. Nunnally is having a lot of fun like this, but Kallen isn\u2019t so sure that the guys are managing so well, and Milly goes to check on them. Although Suzaku, Rivalz, and Lelouch have all finished getting dressed, Lelouch doesn\u2019t want the girls to see him yet because he needs to prepare his heart. Suzaku meanwhile isn\u2019t embarrassed and after telling Lelouch that he\u2019s really beautiful, Suzaku starts lifting his skirt up and down to give himself some air. Lelouch tells him to stop doing that because it\u2019s vulgar, but Suzaku feels that it\u2019s okay because he\u2019s a guy. Milly and the other girls then barge into the room and are astonished by how good Lelouch looks in his dress. When Nunnally gets disappointed that she\u2019s the only one unable to see a beautiful Lelouch, an awkward mood sets over everyone and Milly has to snap them out of it.\r\n\r\nMilly then remembers that for a true reversal festival, they have to change not only their appearances, but also how they are on the inside as well. Thus, she starts speaking in a deep voice as if she was a guy, and the others follow suit. Kallen comments on how Suzaku is used to doing this, so he explains that he had to do it as an entertainment act in the military. When Sayako then starts calling Lelouch \u201cLuluko,\u201d she has to explain to him that there are a lot of girl names in Japan that end with \u201cko.\u201d Using this name, Milly claims that she\u2019s liked Luluko for a long time, and Shirley says that she has too. After Shirley interprets Kallen\u2019s snide remark about Luluko being popular as a sign that Kallen wants him too, Milly tells him that he\u2019ll have to set things straight today about which of the three of them he likes. With all of this reverse gender craziness around him and with even Suzaku saying that three-timing isn\u2019t good, Lelouch finally l","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19998},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Picture Drama - Stage 9.75","airDate":"2007-07-27","airDateUtc":"2007-07-26T15:00:00Z","overview":"Lelouch and Nunnally are enjoying a delicious dinner that Lelouch cooked when Nunnally reminds Lelouch of their past with Suzaku. After Lelouch recalls how that was the only fun time when everything else was sad, Nunnally notes that he hasn\u2019t come over recently. Lelouch tells her that Suzaku has been busy with his military work, but it turns out that Nunnally was actually talking about C.C. Surprised, Lelouch tells his sister that C.C. isn\u2019t his girlfriend, but he panics when trying to think of what to call her instead. He can\u2019t say that she\u2019s an accomplice, but he can\u2019t call her a friend either because a girl who visits alone that late at night can\u2019t be just a friend. Lelouch then thinks about calling her his teacher, but he can\u2019t do that when C.C. had told Nunnally earlier that they were connected by a promise of the future. He finally considers calling her a boy who hasn\u2019t matured to a deep voice yet since Nunnally hasn\u2019t actually seen C.C.\u2019s appearance. Luckily for Lelouch, Sayoko returns home and interrupts this conversation. Since Sayoko is employed by the Ashford family and just came from there, Nunnally asks about Milly\u2019s marriage interview. Sayoko explains that, as always, Milly ruined it herself, and although Milly doesn\u2019t show it, she\u2019s surprisingly shy. The maid then gives Nunnally a package containing the second of the Thousand Origami Cranes Series. It seems that Nunnally had heard that there was another charm that granted wishes. Lelouch is shocked, however, to see that Sayoko has brought back a straw doll and several long metal nails.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19999},{"seriesId":6,"episodeFileId":1101,"seasonNumber":1,"episodeNumber":24,"title":"The Collapsing Stage","airDate":"2007-07-28","airDateUtc":"2007-07-27T15:00:00Z","overview":"Lelouch's strategies give the Black Knights and their allies the upper hand in their battle against the Britannian Army. As riots break out through the country, the Black Knights take over the Ashford Academy as their headquarters, and the students are spared on Lelouch's orders. An enraged Suzaku, now informed of Zero's identity by a mysterious young boy named V.V., pursues Lelouch for revenge, which Cornelia also covets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1455},{"seriesId":6,"episodeFileId":1102,"seasonNumber":1,"episodeNumber":25,"title":"Zero","airDate":"2007-07-28","airDateUtc":"2007-07-27T15:25:00Z","overview":"After managing to capture Cornelia, Lelouch forces her to reveal what little information she knows of Marianne's murder, but the answers do not please him one bit. V.V. takes Nunnally to Kaminejima, and Lelouch abandons the Black Knights to rescue his sister. Without Lelouch, the Black Knights begin to lose ground to the Britannian Army. Suzaku follows Lelouch, leading to a final confrontation between the former friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1456},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Picture Drama - Stage 22.25","airDate":"2007-08-24","airDateUtc":"2007-08-23T15:00:00Z","overview":"Listening to the radio broadcast of the ceremony commemorating the establishment of Japan\u2019s Special Administrative Zone, Nunnally hears the announcer say that Euphemia has been meeting with Zero for 30 minutes now. As the announcer talks about opening a new page in history, Nunnally remembers a scene from her past when she and her brother had been sleeping over at Euphemia\u2019s house. At the time, Lelouch had been chasing her around to get her to go to bed because he knew that otherwise she wouldn\u2019t be able to get up in the morning. Nunnally, however, claimed that she wasn\u2019t sleepy and that she wanted to play more since they finally got to stay over at Euphemia\u2019s place. Euphemia herself didn\u2019t mind, but Lelouch had made a promise to his mother, and he finally caught his sister. Nunnally then noticed a plate in Euphemia\u2019s room that Lelouch recognized to be in commemoration of Marianne\u2019s knighting, and Euphemia revealed that she got it from Cornelia. Since Nunnally had wanted one too, Lelouch had said that it was impossible and made it clear that this was Euphemia\u2019s property.\r\n\r\nWhen he tried to take it back from her, Nunnally resisted and accused him of always being nice to only Euphemia, and during their struggle, they accidentally drop the plate. To Lelouch\u2019s surprise though, Euphemia was actually glad that the plate had been broken into two pieces because now both she and Nunnally could have it. Nunnally had been so happy with this that she said she loved Euphemia and kissed her on the cheek, and the three of them had slept soundly that night together. In retrospect, Nunnally thinks about how that was a period of happiness and how that had been the last time she and her brother had been kids. It would only be a short while after this that she and Lelouch would realize that the world isn\u2019t gentle. However, Nunnally thinks that Euphemia still believes and is trying to create a gentle world, and she feels that if it\u2019s Euphemia, she\u2019ll surely do","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20000},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Picture Drama - Stage 23.95","airDate":"2007-09-25","airDateUtc":"2007-09-24T15:00:00Z","overview":"As he gets dressed to go off into battle on the Lancelot, Suzaku wonders why he fights and realizes that he has no choice but to. He thinks back to a time when he had learned that Lelouch and Nunnally were officially dead in order to deceive Britannia. The year was 2010, and the two had been going to live with the Ashfords. Lelouch thought that Suzaku was going with his teacher Toudou, but it turns out that Suzaku couldn\u2019t contact him, and he was instead going to Britannia headquarters. Before they had parted ways, Nunnally had asked him not to forget that there are always people who would extend a helping hand - that\u2019s something she learned from her mother. The two had hoped to see each other again, but Suzaku had felt that a nuisance like him wouldn\u2019t get to meet them again. He had known that their peaceful time as children was over, and he suspected that Lelouch knew that too.\r\n\r\nOn that summer day, they had left something important in themselves and tried to mark the end, but Suzaku felt guilty because he had created that end by killing his father. He had wanted to talk with Lelouch about what he did, but the words didn\u2019t come out, and he was relieved when Lelouch spoke first and vowed to destroy Britannia. Suzaku hadn\u2019t been able to reply to that and had felt that Lelouch that was trying to kill his father, but he thought that this was probably the wrong answer. He believed that he and only he understood, however ever since that time, the time inside of him has stopped. He now thinks that if he had been able to talk with Lelouch back then, their futures might have been a bit different, and they could have looked for a little happiness. Things didn\u2019t turn out that way, and, as he now finishes suiting up, Suzaku sees Lelouch as both his first enemy and man who became the worst friend.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20001},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Special Edition Black Rebellion","airDate":"2008-02-22","airDateUtc":"2008-02-21T15:00:00Z","overview":"An OVA summarizing all 25 episodes of season 1 from Lelouch's viewpoint.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20002},{"seriesId":6,"episodeFileId":1054,"seasonNumber":2,"episodeNumber":1,"title":"The Day a Demon Awakens","airDate":"2008-04-06","airDateUtc":"2008-04-05T15:00:00Z","overview":"One year after the Black Rebellion, Lelouch Lamperouge has resumed his normal school life with no apparent memories of the year before. After skipping remedial gym class, he sets off with younger brother Rolo to gamble at Babel Tower. Led by C.C., the Order of the Black Knights launches an attack on the complex to retrieve Lelouch. C.C. reawakens Lelouch's memories, and he resumes his identity as Zero. Suzaku Kururugi declares to the Emperor that he will personally kill Zero.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1457},{"seriesId":6,"episodeFileId":1057,"seasonNumber":2,"episodeNumber":2,"title":"Plan for Independent Japan","airDate":"2008-04-13","airDateUtc":"2008-04-12T15:00:00Z","overview":"Lelouch directs the Black Knights in a counterattack against the Britannian forces and recalls how he came to forget his past: after Suzaku arrested him and brought him back to Britannia a year ago, the Emperor used his Geass to implant false memories in Lelouch's mind. The new Knightmare Frame prototype Vincent arrives and wreaks havoc on the Black Knights. They collapse Babel Tower to retreat, simultaneously dropping it on Viceroy Carares and creating a road straight to the Chinese Federation Consulate, where the Black Knights escape to. Zero broadcasts his plan to recreate the United State of Japan. The Britannian military retreats, but the pilot of the Vincent, Rolo, is not so easily swayed. After arriving at the consul grounds, he confronts Li Xingke, revealing that he too possesses the power of Geass.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1458},{"seriesId":6,"episodeFileId":1059,"seasonNumber":2,"episodeNumber":3,"title":"Imprisoned in Campus","airDate":"2008-04-20","airDateUtc":"2008-04-19T15:00:00Z","overview":"Lelouch returns to the Ashford Academy during the broadcast, causing Villeta Nu's Special Division to have doubts he was the Zero on television. Needing information on his sister's whereabouts, Lelouch sets a trap to turn Rolo into his pawn. Gilbert G.P. Guilford, Cornelia li Britannia's knight and acting Viceroy of Area 11, presents an ultimatum to Zero: reveal himself or let the incarcerated Black Knights face execution. Elsewhere, Suzaku leads the Britannian frontlines in the Lancelot in the war against the Euro Universe. Lelouch confronts Rolo, but Rolo's unique abilities allow him to gain the upper hand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1459},{"seriesId":6,"episodeFileId":1060,"seasonNumber":2,"episodeNumber":4,"title":"Counterattack at the Gallows","airDate":"2008-04-27","airDateUtc":"2008-04-26T15:00:00Z","overview":"Lelouch deduces the nature of Rolo's Geass and convinces Rolo to spare him; in return, he will hand over C.C. Li Xingke confronts the Eunuch Gao Hai and kills him to take command of the consulate. As the deadline approaches, Guilford prepares to execute the captured Black Knights, until Zero appears, challenging him to a duel. Using the same strategy from the Black Rebellion, he collapses the portion of the settlement they are standing on, causing confusion amongst the Britannian military as they are dumped into Chinese territory. While Kallen and the Black Knights rescue the prisoners, Rolo appears in the Vincent to kill Lelouch for his betrayal. However, Lelouch takes a bullet meant for Rolo, giving the youth pause. Lelouch plays on his insecurities about his future and sibling relationship, convincing him to join his cause.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1460},{"seriesId":6,"episodeFileId":1062,"seasonNumber":2,"episodeNumber":5,"title":"Knights of the Round","airDate":"2008-05-04","airDateUtc":"2008-05-03T15:00:00Z","overview":"Suzaku returns to Ashford Academy to investigate Lelouch. With the Black Knights reassembled, Lelouch plans to lead the resistance while maintaining his fa\u00e7ade as a student. A welcoming party is held for Suzaku at the academy, and C.C.'s love of pizza threatens to reveal Lelouch's secret; Kallen arrives to retrieve her but is seen by Villeta. She tells Lelouch how she came with Kaname Ohgi the previous year, and Lelouch uses this information to blackmail her. Alone, Suzaku reveals to Lelouch his goal of becoming the Knight of One, which would allow him complete governing authority over Area 11. To test Lelouch, he allows him to speak with the new Viceroy of Area 11: Nunnally vi Britannia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1461},{"seriesId":6,"episodeFileId":1064,"seasonNumber":2,"episodeNumber":6,"title":"Surprise Attack Over the Pacific","airDate":"2008-05-11","airDateUtc":"2008-05-10T15:00:00Z","overview":"Rolo uses his Geass to buy Lelouch time to say words of caution to Nunnally without revealing his reawakened memories to Suzaku. Unwilling to fight against Nunnally, Lelouch orders the Black Knights to capture her as she is transported to Area 11 by airship. Successfully boarding the vessel, Zero meets with her and tries to convince that Britannia is using her. Nunnally reveals she volunteered for the position, and states she wishes to continue Euphemia's Specially Administrated Zone of Japan, requesting a bewildered Zero to join her. Britannian reinforcements hinder the Black Knights' assault, and as the airship crashes into the sea, Suzaku manages to save Nunnally, taking her away from Lelouch a second time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1462},{"seriesId":6,"episodeFileId":1067,"seasonNumber":2,"episodeNumber":7,"title":"The Abandoned Mask","airDate":"2008-05-18","airDateUtc":"2008-05-17T15:00:00Z","overview":"Nunnally is sworn in as the new Viceroy of Area 11, and reveals her intention to restore the Specially Administrated Zone of Japan. Knowing he cannot go against his sister's wishes, Lelouch slips into a state of depression. Before he relinquishes himself to Refrain, Kallen steps in, reminding him his duty as Zero to realize the dream he gave to the Japanese. An evesdropping Rolo emerges, attempting to persuade Lelouch to abandon his identity as Zero and return to being a high school student. Meanwhile, the Black Knights are under attack by a Britannian naval fleet, led by Suzaku. A glimmer of hope is revealed to Lelouch after he sees fireworks setting off at Ashford Academy. Rushing to the battlefield, he successfully leads the Black Knights to defeat the entire naval fleet and surprise Suzaku by appearing as Zero, announcing his intention to accept Nunnally's offer to join the Specially Administrated Zone of Japan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1463},{"seriesId":6,"episodeFileId":1069,"seasonNumber":2,"episodeNumber":8,"title":"One Million Miracles","airDate":"2008-05-25","airDateUtc":"2008-05-24T15:00:00Z","overview":"The Black Knights question Lelouch's decision, and the Britannian Army remains wary of his intentions. In a private conversation with Suzaku, Gino Weinberg, Anya Alstreim, Lloyd Apslund, C\u00e9cile Croomy, and Miss Romeyer, Zero requests he be exiled from Area 11 in exchange for delivering one million participants. The Britannians think he is abandoning them to ensure his own safety, and accept. At the opening ceremony, Zero asks Suzaku what it means to be Japanese, to which the Knight of Seven replies it is a shared heart. When every participating Eleven dresses as Zero on cue, Suzaku has no choice but to exile all one million \"Zeroes\", unwilling to start another massacre in the face of their peaceful resistance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1464},{"seriesId":6,"episodeFileId":1071,"seasonNumber":2,"episodeNumber":9,"title":"A Bride in the Vermillion Forbidden City","airDate":"2008-06-08","airDateUtc":"2008-06-07T15:00:00Z","overview":"Lelouch learns that the Chinese Empress Tianzi is being forced into a political marriage to First Prince Odysseus u Britannia. The wedding is orchestrated by the High Eunuchs, who will become nobility in Britannia in exchange for turning over half their land to Second Prince Schneizel el Britannia. As the wedding begins, Li Xingke initiates a coup-d'\u00e9tat to overthrow the Eunuchs, but before he can free the Empress, Lelouch appears and takes her hostage. Elsewhere, V.V. prepares to unleash Jeremiah Gottwald against Lelouch and C.C.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1465},{"seriesId":6,"episodeFileId":1073,"seasonNumber":2,"episodeNumber":10,"title":"When Shen Hu Wins Glory","airDate":"2008-06-15","airDateUtc":"2008-06-14T15:00:00Z","overview":"Lelouch successfully escapes with Empress Tianzi and the Black Knights attempt to unite with their Indian allies. Desperate to recover the Empress, the Eunuchs agree to forgive Li Xingke if he rescues her. To that end, he is granted use of the powerful Shenhu. Kallen intercepts him with the Guren Flight-Enabled Version, but its power runs out and she is taken hostage. Lelouch swears to rescue her, despite Diethard Reid's suggestion to retreat. Xingke demonstrates his skill as a strategist, forcing the Black Knights to retreat to a mountainside monument constructed as the tomb for the former Tianzi, hoping the Federation would be hesitant to attack. The Eunuchs turn on Xingke and his troops, having enlisted the aid of the Britannian forces. Meanwhile, another Lelouch is present at the Ashford Academy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1466},{"seriesId":6,"episodeFileId":1075,"seasonNumber":2,"episodeNumber":11,"title":"Power of Passion","airDate":"2008-06-22","airDateUtc":"2008-06-21T15:00:00Z","overview":"Back at Ashford Academy, Sayoko Shinozaki is posing as Lelouch. Realizing the Eunuchs are not interested in saving Tianzi, Li Xingke rebels. As the Black Knights hold their ground against the Chinese Federation and Britannian forces, Zero tries to reason with the Eunuchs, who openly admit their treachery. When Xingke tries to shield Tianzi from the fighting, Zero personally enters into the field with his new Shinkir\u014d Knightmare Frame. Diethard hacks into the Chinese media network and replays the Eunuchs' deceit, igniting riots across China. Faced with open rebellion, Schneizel orders a Britannian retreat and Xingke eliminates the Eunuchs and rescues his comrades. However, Kallen and the Guren have been handed over to Britannia. With the Eunuchs dead, Zero forges an alliance with Xingke and Tianzi. Lelouch returns to Ashford Academy, and is surprised to find Anya and Gino enrolled as students.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1467},{"seriesId":6,"episodeFileId":1076,"seasonNumber":2,"episodeNumber":12,"title":"Love Attack!","airDate":"2008-06-29","airDateUtc":"2008-06-28T15:00:00Z","overview":"Lelouch is shocked that Sayoko has made him into a playboy. As he tries to work out a way to undo the damage, Milly declares Cupid Day, where any girl can become a boy's girlfriend by stealing his hat. Rolo and Sayoko help Lelouch avoid the female students trying to catch him. Alone, Lelouch and Shirley discuss recent events and trade hats. Elsewhere, Knight of One Bismark Waldstein informs the Emperor of a meeting between the princes and princesses about waging war against the Chinese Federation, where Schneizel decides threats and negotiation will work better than open war. Cornelia, determined to reveal the existence of Geass in order to clear Euphemia's name, confronts General Bartley, who begs her to help them, saying the Emperor's recent actions may destroy the world. While Suzaku and Lloyd discuss on the Guren, Nunnally visits Kallen in prison. Jeremiah arrives in Area 11 and uses his newly-acquired Geass Canceller on Shirley, restoring her memories of Zero's identity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1468},{"seriesId":6,"episodeFileId":1079,"seasonNumber":2,"episodeNumber":13,"title":"Assassin from the Past","airDate":"2008-07-06","airDateUtc":"2008-07-05T15:00:00Z","overview":"Having recovered her memories, Shirley questions her perception of reality. Lelouch heads to the train station to check on the delivery of a G Train, a network of Gefjun Disturber-equipped trains that will black out all of Tokyo once active. Meanwhile, Jeremiah makes his move on Ashford Academy, overwhelming Sayoko and Rolo in his search for Lelouch. Villetta willingly reveals Lelouch's location and Jeremiah corners him, but is paralyzed by the G Train. Struggling, Jeremiah asks why Lelouch betrayed the Emperor, to which the former prince reveals his motivation to avenge his mother. Having greatly admired Marianne, Jeremiah joins Lelouch's cause. Shirley finally reconciles her restored memories, asking Suzaku to forgive Lelouch as she has. Before she can reach Lelouch, she runs into Rolo, who uses his Geass once she reveals knowledge of Nunnally. As Lelouch leaves, he discovers Shirley mortally wounded, who confesses her feelings for him as he desperately commands her to live.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1469},{"seriesId":6,"episodeFileId":1081,"seasonNumber":2,"episodeNumber":14,"title":"Geass Hunt","airDate":"2008-07-13","airDateUtc":"2008-07-12T15:00:00Z","overview":"Rolo admits to causing Shirley's death; rather than blame Rolo, Lelouch blames the existence of Geass itself. In retaliation, he mounts an assault on the Geass Directorate, slaughtering every man, woman, and child within the stronghold. V.V. pilots the Siegfried in an effort to stop the Black Knights, but is defeated by both Lelouch and Cornelia. He escapes to the Thought Elevator, where Charles awaits, and when Lelouch follows he is transported to the Sword of Akasha. Meanwhile, Kallen and Nunnally discuss Lelouch. They are interupted by Suzaku, who, despite having been told that Shirley's death was a suicide, decides to interrogate Kallen using Refrain, in order to confirm his suspicion that Lelouch has become Zero again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1470},{"seriesId":6,"episodeFileId":1082,"seasonNumber":2,"episodeNumber":15,"title":"The C's World","airDate":"2008-07-20","airDateUtc":"2008-07-19T15:00:00Z","overview":"Suzaku realizes he cannot stoop to Lelouch's level to achieve his goals and decides not to use Refrain on Kallen. Instead, he heads to Ashford, where he discovers the Intelligence Agency is under Lelouch's control. Ohgi and Villetta meet in the woods, where Villetta intends to kill him, but Ohgi confesses that he has fallen in love with her. Sayoko interrupts and attempts to dispatch Villetta, and Ohgi is injured in the struggle. He tumbles off a cliff and Villetta jumps after him. Nina and the In Vogue staff make their first successful nuclear bomb test. Lelouch confronts the Emperor atop the Sword of Akasha. He learns the Emperor has taken V.V.'s \"Code,\" which has made him immortal. C.C. appears and reveals to Lelouch her wish is to die, then transports him to \"C's World\" to ensure his safety, where he witnesses her past. Upon realizing her true wish, Lelouch returns to reality, proclaiming he shall be the only one to grant her wish. He attacks the Sword of Akasha with the Shinkir\u014d and rescues C.C., only to find she has lost all her memories except those before receiving the power of Geass.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1471},{"seriesId":6,"episodeFileId":1085,"seasonNumber":2,"episodeNumber":16,"title":"United Federation of Nations Resolution Number One","airDate":"2008-07-27","airDateUtc":"2008-07-26T15:00:00Z","overview":"Forty-seven countries rally under the banner of the new United Federation of Nations, and their first declaration is to declare war on Britannia to liberate Japan. In anticipation, the Knights of Rounds and the bulk of Britannia's military force are transferred to Japan. Nina also asks to have the Lancelot equipped with her newly-developed F.L.E.I.J.A. (Field Limitary Effective Implosion Armament) bomb. The Emperor interrupts the Federation's announcement to challenge Zero to a battle for the world itself, since they are the only remaining powers in the world. Fearing for Nunnally's safety, Lelouch calls Suzaku and admits he's Zero, then begs Suzaku to rescue her. Suzaku agrees, but only on the condition that Lelouch meet him alone at the Kururugi Shrine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1472},{"seriesId":6,"episodeFileId":1086,"seasonNumber":2,"episodeNumber":17,"title":"The Taste of Humiliation","airDate":"2008-08-03","airDateUtc":"2008-08-02T15:00:00Z","overview":"The battle for Japan gets underway, and it does not start out well for the Black Knights. Luciano and Bismark decimate their ranks, with only Li Xingke to keep them at bay. Suzaku and Lelouch meet to discuss Nunnally. After some initial animosity, Lelouch manages to win Suzaku over. However, Schneizel has his personal guard arrest Lelouch, making Lelouch believe Suzaku has betrayed him. Schneizel and Lelouch have a private chat, and Lelouch is rescued by none other than Guilford, having used his Geass on Guilford beforehand to make him believe he is Cornelia. Using the Gefjun Disturber train network, Lelouch shuts down the Tokyo Settlement. At the same time, his reinforcements emerge from the ocean, ready to take advantage of the opportunity. Meanwhile, the Emperor is preparing for Ragnar\u00f6k.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1473},{"seriesId":6,"episodeFileId":1088,"seasonNumber":2,"episodeNumber":18,"title":"Final Battle Tokyo II","airDate":"2008-08-10","airDateUtc":"2008-08-09T15:00:00Z","overview":"With the power disrupted, the Black Knights begin their assault on the Tokyo Settlement. Suzaku threatens to use the F.L.E.I.J.A. bomb, but Lelouch, having completely lost his trust in Suzaku, calls his bluff. Jeremiah and Guilford engage Suzaku, but Gino and Anya join the fray to even the odds. Sayoko frees Kallen while Rolo attempts to locate Nunnally, secretly intending to kill her. Lelouch is nearly killed by Luciano and his Valkyrie Squadron, until Kallen arrives in the upgraded Guren Seiten Eight Elements-Type. Meanwhile, the Emperor enters Area 11, and Cornelia escapes confinement. Using the new Knightmare's overwhelming speed and power, Kallen kills Luciano and severely cripples the Lancelot. On the verge of death, Suzaku's Geass command activates and compels him to fire the F.L.E.I.J.A. Unfortunately, the bomb detonates over the government complex, obliterating a massive section of the settlement. Lelouch has a nervous breakdown when Rolo tells him Nunnally is killed in the explosion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1474},{"seriesId":6,"episodeFileId":1090,"seasonNumber":2,"episodeNumber":19,"title":"Betrayal","airDate":"2008-08-17","airDateUtc":"2008-08-16T15:00:00Z","overview":"A ceasefire is called so Schneizel can meet with the leaders of the Black Knights, but Lelouch is too devastated to attend. Schenizel reveals the truth about Lelouch and his Geass, as well as the many people he has used it on; a recording from Lelouch's meeting with Suzaku solidifies the evidence. In exchange for Japan's independence, the Black Knights agree to betray Lelouch. Unable to escape, Lelouch tells Kallen he was using her all along to keep her from sharing his fate, but whispers that she should live on within earshot. Lelouch is prepared to accept death, until Rolo, piloting the Shinkir\u014d, rescues Lelouch and escapes the combined forces of the Black Knights and the Britannians. However, the excessive use of his Geass required to do so overtaxes his heart and dies after flying Lelouch to safety. Lelouch resolves to not waste the life given to him by Rolo, declaring he will kill the Emperor by his own hand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1475},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Picture Drama - Turn 0.923","airDate":"2008-08-22","airDateUtc":"2008-08-21T15:00:00Z","overview":"Set shortly before episode 1, C.C. and Kallen discuss the upcoming mission to retrieve Lelouch.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20003},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Nunnally Diary - Episode 1","airDate":"2008-08-22","airDateUtc":"2008-08-21T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21723},{"seriesId":6,"episodeFileId":1092,"seasonNumber":2,"episodeNumber":20,"title":"Emperor Dismissed","airDate":"2008-08-24","airDateUtc":"2008-08-23T15:00:00Z","overview":"As the Emperor prepares to begin Ragnarok, Lelouch and Suzaku head to Kaminejima to face him. No longer restrained by his notions of wrong methods being meaningless, Suzaku strikes a deal with Schneizel to become the Knight of One, in exchange for assassinating the Emperor. Lelouch, using his Geass to its full potential, compels much of the Britannian military on the island to follow his commands. Meanwhile, the leaders of the Black Knights decide to declare Zero dead, as the truth will be far more difficult to swallow, but their story is doubted by others. Anya's mind is taken over by Marianne, who restores C.C.'s memories. The two begin to put their own plans into motion. At Kaminejima, Suzaku is held at bay by Bismarck, while Lelouch marches into the Sword of Akasha, through the Thought Elevator, unopposed. Knowing he cannot kill his father, Lelouch destroys the entrance, planning to seal them both inside for eternity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1476},{"seriesId":6,"episodeFileId":1094,"seasonNumber":2,"episodeNumber":21,"title":"The Ragnar\u00f6k Connection","airDate":"2008-08-31","airDateUtc":"2008-08-30T15:00:00Z","overview":"Within the Sword of Akasha, Lelouch learns the truth about his mother's death from the Emperor and Marianne herself. The two reveal their intention to create a gentle world without lies, and begin Ragnarok. Lelouch almost reconciles with them, but changes his mind when he realizes that the world the Emperor desires has no future. Evolving his Geass to its next level, Lelouch defeats the Emperor with the help of the collective unconscious mind of every human, the personification of the \"gods\" the Emperor sought to defeat, dissolving both him and Marianne into dust. With Ragnarok ended, Lelouch takes up the throne as the new Emperor, using his Geass to make all the dissenters in the court acknowledge him as such. Suzaku is appointed as his new \"Knight of Zero,\" while C.C. looks on from the shadows.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1477},{"seriesId":6,"episodeFileId":1096,"seasonNumber":2,"episodeNumber":22,"title":"Emperor Lelouch","airDate":"2008-09-07","airDateUtc":"2008-09-06T15:00:00Z","overview":"Lelouch begins his reformation of Britannia, abolishing the aristocracy and Area system. The Knights of Rounds attempt to remove Lelouch from power, but Suzaku, piloting the Lancelot Albion, easily obliterates their ranks, killing Bismarck Waldstein and two other Rounds members while only disabling Gino's Knightmare. His position secure, Lelouch announces his intention to join the U.F.N. On the way to the meeting, he and Kallen bid each other farewell after she kisses him, Kallen having been unable to get Lelouch to answer any of her questions. When the UFN demands that he accept a limit to his voting power to prevent Britannia from attaining an automatic majority, Lelouch forces their hand by having Suzaku take the U.F.N. leaders hostage and Britannia's military surround Japan. During the commotion, the Britannian capital is obliterated by Schenizel, who is aboard his new flying fortress, the Damocles. He reveals to Lelouch that Nunnally is alive, and she declares herself to be Lelouch and Suzaku's enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1478},{"seriesId":6,"episodeFileId":1098,"seasonNumber":2,"episodeNumber":23,"title":"Schneizel's Guise","airDate":"2008-09-14","airDateUtc":"2008-09-13T15:00:00Z","overview":"Schneizel unveils his plan to position the Damocles in such a way as to strike every warring nation in the world, thus enforcing peace through the threat of annihilation. Cornelia objects, but is gunned down. Lelouch declares Nunnally his enemy during their conversation, but in private has trouble with the thought of fighting her. With some harsh words from Suzaku and C.C.'s comfort, Lelouch comes to his senses and focuses on his original task. Nunnally, frustrated that she cannot fight or protect anyone, decides to shoulder the sin of launching F.L.E.I.J.A. herself. Schneizel, backed by the Black Knights and the remaining Knights of Rounds, clashes with Lelouch in the sky above Mount Fuji. Though Lelouch is able to destroy a fair portion of the Black Knights by detonating the sakuradite mines in Mount Fuji, the Damocles remains unassailable and its payload of F.L.E.I.J.A. warheads still looms over him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1479},{"seriesId":6,"episodeFileId":1100,"seasonNumber":2,"episodeNumber":24,"title":"The Grip of Damocles","airDate":"2008-09-21","airDateUtc":"2008-09-20T15:00:00Z","overview":"The Black Knights manage to board the Avalon. Lelouch escapes in the Shinkir\u014d while C.C. holds Kallen at bay long enough for Lelouch to escape. Using Nina's F.L.E.I.J.A. Eliminator, Lelouch and Suzaku successfully break into the Damocles. Believing Lelouch to be trapped, Schneizel sets the Damocles' self-destruct sequence and attempts to leave. However, Lelouch manages to outsmart Schneizel, using his Geass to force him into obedience. Suzaku and Gino battle outside the fortress, with Gino unable to hold out against Suzaku. Using his last attack, Gino takes out the Damocles shields, allowing Kallen to take over. Meanwhile, Lelouch goes to confront Nunnally, who has regained her sight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1480},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Picture Drama - Turn 0.56","airDate":"2008-09-26","airDateUtc":"2008-09-25T15:00:00Z","overview":"Suzaku, Gino, and Anya find a little girl among the rubble in the latest area they've helped to conquer. This picture drama is also set before episode 1.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20004},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Nunnally Diary - Episode 2","airDate":"2008-09-26","airDateUtc":"2008-09-25T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21724},{"seriesId":6,"episodeFileId":1103,"seasonNumber":2,"episodeNumber":25,"title":"Re;","airDate":"2008-09-28","airDateUtc":"2008-09-27T15:00:00Z","overview":"Lelouch and Suzaku fight for the sake of their promise, the Zero Requiem. Suzaku battles Kallen, while Lelouch confronts Nunnally, his biggest and dearest enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1481},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Picture Drama - Turn 7.19","airDate":"2008-10-24","airDateUtc":"2008-10-23T15:00:00Z","overview":"Lelouch has a flashback about Ashford's Handmade Dress Party. Lelouch's narration is set after Turn 7, while the flashback itself takes place in the first season.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20005},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Nunnally Diary - Episode 3","airDate":"2008-10-24","airDateUtc":"2008-10-23T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21725},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Picture Drama - Turn 9.34","airDate":"2008-11-21","airDateUtc":"2008-11-20T15:00:00Z","overview":"C.C., Kallen, and Lelouch sneak into the Chinese Federation by dressing as belly dancers.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20006},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"Nunnally Diary - Episode 4","airDate":"2008-11-21","airDateUtc":"2008-11-20T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21726},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Picture Drama - Turn 12.59","airDate":"2008-12-19","airDateUtc":"2008-12-18T15:00:00Z","overview":"Empress Tianzi hosts a pajama party together with Kaguya, C.C., Rakshata, Chiba and Xianglin and they are discussing men and love.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20007},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"Nunnally Diary - Episode 5","airDate":"2008-12-19","airDateUtc":"2008-12-18T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21727},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Picture Drama - Turn 12.31","airDate":"2009-01-23","airDateUtc":"2009-01-22T15:00:00Z","overview":"Nunnally and Schneizel take some time off after the Chinese Federation's coup d'\u00e9tat at a newly opened casino designed by Clovis. Also attending the opening are Suzaku, Gino, Anya, Cecile, Lloyd, Guilford, and Kanon.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20008},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":50,"title":"Nunnally Diary - Episode 6","airDate":"2009-01-23","airDateUtc":"2009-01-22T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21728},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Picture Drama - Turn 19.02","airDate":"2009-02-20","airDateUtc":"2009-02-19T15:00:00Z","overview":"Rolo thinks back to how he first met Lelouch.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20009},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":51,"title":"Nunnally Diary - Episode 7","airDate":"2009-02-20","airDateUtc":"2009-02-19T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21729},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Picture Drama - Turn 22.05","airDate":"2009-03-27","airDateUtc":"2009-03-26T15:00:00Z","overview":"Before Zero Requiem, C.C. and Cecile exchange their respective thoughts about Lelouch and Suzaku.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20010},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":52,"title":"Nunnally Diary - Episode 8","airDate":"2009-03-27","airDateUtc":"2009-03-26T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21730},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Picture Drama - Turn 25.01","airDate":"2009-04-24","airDateUtc":"2009-04-23T15:00:00Z","overview":"The remaining Student Council members gather at a rebuilt Ashford after the events of the series, where they are visited by Nunnally.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20011},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":53,"title":"Nunnally Diary - Episode 9","airDate":"2009-04-24","airDateUtc":"2009-04-23T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21731},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Special Edition Zero Requiem","airDate":"2009-07-24","airDateUtc":"2009-07-23T15:00:00Z","overview":"An OVA summarizing all 25 episodes of season 2.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20012},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Kiseki Birthday Picture Drama","airDate":"2010-04-23","airDateUtc":"2010-04-22T15:00:00Z","overview":"Milly left the student council to focus in her career as a newscaster. Rivalz was asked to take her place as the student council president but it shows that Lelouch is the best fit for the position. Rivalz made a school festival on Lelouch's birthday, December 5. No one of them know about it. While planning for it, the Chinese Federation attack Ashford Acaademy and they are forced to stay inside the Clubhouse. Lelouch thought up a plan to defeat them. Lelouch's plan works at first but during the execution of the plan, Suzaku and Kallen's souls are taken in the 'Thousands-man vase' by the Chinese Federation leader. The other student council members hurried to the chapel and they saw the Chinese Federation leader. Nunnally and C.C.'s souls are also taken. Lelouch asked him to call his name, not as Lelouch but as Zero. When the leader is about to say his name, Rolo uses his Geass. Lelouch then uses his Geass to command everyone to wear Zero's mask and say 'Yes, your Majesty!' if Zero's name is said. All went as planned, but the vase can't handle many souls, the vase broke apart and the souls returned to it's own bodies. The student council members are left in the chapel, while Rolo, Shirley and C.C. vanished before their eyes. But Lelouch says farewell and thank you to everyone. Nunnally opened her eyes and saw her big brother and remembered, today is his big brother's birthday.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20013},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Code Geass: The Miraculous Birthday Omake Flash","airDate":"2010-04-23","airDateUtc":"2010-04-22T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20014},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Akito the Exiled 1 : The Wyvern Arrives","airDate":"2012-07-16","airDateUtc":"2012-07-15T15:00:00Z","overview":"The new side story is set in a.t.b.2017. A Knightmare unit made of boys and girls from Zone Eleven are thrown into a military operation with a 5% chance of survival. They must rescue an allied unit left behind on the European warfront.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20015},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Nunnally in Wonderland","airDate":"2012-07-27","airDateUtc":"2012-07-26T15:00:00Z","overview":"Lelouch makes the ultimate use of his Geass power for his little sister Nunnally, who loves Alice in Wonderland.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20016},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Code Geass: Oz the Reflection Picture Drama","airDate":"2013-01-10","airDateUtc":"2013-01-09T15:00:00Z","overview":"Code Geass: Soubou no Oz Picture Drama following the lives of two characters from opposite sides of the barricades: Orpheus Zevon\u2014young theorist from KMF searching for the killer of his mistress and Oldrin Zevon\u2014protiteristick\u00e9 member unit of the British Empire \"Glindyni knights.\" Drama quite obviously inspired by the classic story of The Wizard of Oz.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20017},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Akito the Exiled 2 : The Wyvern Divided","airDate":"2013-09-14","airDateUtc":"2013-09-13T15:00:00Z","overview":"2017 a.t.b. (Revolutionary Year 228), the war between Euro Britannia and the European Union (E.U.) continues. At a disadvantage, the E.U. army founded a special team consisting of Elevens - exiled Japanese who had their country occupied by Britannia - known as the W-0 Unit. And then, new orders are given to the W-0 Unit. Their cruel contents order them to land in the middle of the enemy as a diversion. The pilots of the W-0 Unit consist only of the commanding officer, Leila, the only surviving Japanese from their last battle, Akito, and the three rebels: Ryou, Yukiya, and Ayano. With everyone holding their respective expectations, the operation moves forward. On the other side in Euro Britannia, Shin, who made his benefactor commit suicide with the mysterious power of \u201cGeass\u201d, is appointed the leader of the Knights of St. Michael. As Shin steadily advances for the sake of his own ambition, he and his subordinates in the Ashura squad are given orders to deploy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20018},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Picture Drama - Stage 0.97","airDate":"2013-09-25","airDateUtc":"2013-09-24T15:00:00Z","overview":"A special included with the Blu-Ray release of the main series. Lelouch monologues on his dissatisfaction with Britannia's rule and the need to hide his and Nunnally's connection to the Britannian throne.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20019},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":54,"title":"Akito the Exiled: The Torn Wyvern - Picture Drama","airDate":"2013-12-25","airDateUtc":"2013-12-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21732},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Picture Drama - Turn 12.06","airDate":"2014-03-26","airDateUtc":"2014-03-25T15:00:00Z","overview":"A picture drama special included with the Blu-Ray release of the main series. Lelouch and friends attend Milly's graduation party.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20021},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Akito the Exiled 3 : The Brightness Falls","airDate":"2015-05-02","airDateUtc":"2015-05-01T15:00:00Z","overview":"After their military credentials are revoked, the W-O division find themselves living with a group of gypsies. Here, they are inspired by the elderly gypsies way of life and how they can smile through hardships. \r\nLeila decides to take action against the terrorist movement known as 'Ark Fleet', and learns a secret about herself in the process. \r\nMeanwhile, Shin attempts to regain control of Euro Britannia, and is willing to do anything possible!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20022},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":55,"title":"Akito the Exiled: The Brightness Falls - Picture Drama","airDate":"2015-06-25","airDateUtc":"2015-06-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21733},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Akito the Exiled 4 : Memories of Hatred","airDate":"2015-07-04","airDateUtc":"2015-07-03T15:00:00Z","overview":"Akito, Leila, and the rest of the Wyvern & W-O unit must once again undertake a dangerous mission, a mission they have no choice but to accept. While Leila tries to calm down the riots in Paris caused by Julius Kingsley, Akito's brother, Shin, invades headquarters. Family ties are cast asides as a bloody battle of vengeance and world domination begins...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20024},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"Akito the Exiled: Memories of Hatred - Picture Drama","airDate":"2015-10-28","airDateUtc":"2015-10-27T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21734},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Akito the Exiled 5 : To Beloved Ones","airDate":"2016-02-06","airDateUtc":"2016-02-05T15:00:00Z","overview":"The Ark Fleet has been destroyed, and a significant number of the enemy's troops have been wiped out due to its crash landing. As the remaining forces of the Holy Order of Michael regroup in order to launch a final assault on Weiswolf Castle, the wZERO unit, along with their new ally Ashley Ashra, stand ready to intercept them. \r\n\r\nMeanwhile, with his Geass out of control, Shin moves to erase his younger brother's existence once and for all. But Akito, having promised Leila that he will come back alive, refuses to accept such a fate, and the two clash in their final battle.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20026},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":57,"title":"Akito the Exiled: To Those Who are Precious - Picture Drama","airDate":"2016-04-22","airDateUtc":"2016-04-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21735},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Kiseki Anniversary Picture Drama","airDate":"2017-10-21","airDateUtc":"2017-10-20T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20028},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Code Geass: Lelouch of the Rebellion 1 - Initiation","airDate":"2017-10-21","airDateUtc":"2017-10-20T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20029},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Code Geass: Lelouch of the Rebellion 2 - Transgression","airDate":"2018-02-10","airDateUtc":"2018-02-09T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20030},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Code Geass: Lelouch of the Rebellion 3 - Glorification","airDate":"2018-05-26","airDateUtc":"2018-05-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20031},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Code Geass: Lelouch of the Re;surrection","airDate":"2019-02-09","airDateUtc":"2019-02-08T15:00:00Z","overview":"The story takes place several years after Lelouch's \"Zero Requiem\" plan.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20032},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Picture Drama Re;f 1.05 - Talking in a Hammam","airDate":"2019-12-05","airDateUtc":"2019-12-04T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20033},{"seriesId":6,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Picture Drama: Re;f 103.00 - Fragment of the Deep Sea","airDate":"2019-12-05","airDateUtc":"2019-12-04T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20034}],"episodeFile":[{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Day a Demon Awakens-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E01.The Day a Demon Awakens-Bluray-1080p.mkv","size":697430970,"dateAdded":"2018-10-10T21:33:35.327438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1054},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Day a New Demon was Born-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E01.The Day a New Demon was Born-Bluray-1080p.mkv","size":695537707,"dateAdded":"2018-10-10T21:33:35.35383Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:40","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1055},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The White Knight Awakens-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E02.The White Knight Awakens-Bluray-1080p.mkv","size":695520903,"dateAdded":"2018-10-10T21:33:35.382319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1056},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Plan For Independent Japan-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E02.Plan For Independent Japan-Bluray-1080p.mkv","size":637481785,"dateAdded":"2018-10-10T21:33:35.408441Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1057},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The False Classmate-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E03.The False Classmate-Bluray-1080p.mkv","size":589514174,"dateAdded":"2018-10-10T21:33:35.434788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1058},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Imprisoned in Campus-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E03.Imprisoned in Campus-Bluray-1080p.mkv","size":531798205,"dateAdded":"2018-10-10T21:33:35.461348Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1059},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Counterattack at the Gallows-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E04.Counterattack at the Gallows-Bluray-1080p.mkv","size":568807941,"dateAdded":"2018-10-10T21:33:35.487801Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1060},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E04.His Name Is Zero-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E04.His Name Is Zero-Bluray-1080p.mkv","size":563700610,"dateAdded":"2018-10-10T21:33:35.514263Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1061},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Knights of the Round-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E05.Knights of the Round-Bluray-1080p.mkv","size":562687125,"dateAdded":"2018-10-10T21:33:35.540611Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1062},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Princess and the Witch-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E05.The Princess and the Witch-Bluray-1080p.mkv","size":542076856,"dateAdded":"2018-10-10T21:33:35.568422Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1063},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Surprise Attack over the Pacific-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E06.Surprise Attack over the Pacific-Bluray-1080p.mkv","size":715978184,"dateAdded":"2018-10-10T21:33:35.594915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1064},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Stolen Mask-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E06.The Stolen Mask-Bluray-1080p.mkv","size":546684043,"dateAdded":"2018-10-10T21:33:35.621333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1065},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Attack Cornelia-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E07.Attack Cornelia-Bluray-1080p.mkv","size":556753160,"dateAdded":"2018-10-10T21:33:35.647645Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1066},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Abandoned Mask-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E07.The Abandoned Mask-Bluray-1080p.mkv","size":543849508,"dateAdded":"2018-10-10T21:33:35.674589Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1067},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Order of the Black Knights-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E08.The Order of the Black Knights-Bluray-1080p.mkv","size":583565875,"dateAdded":"2018-10-10T21:33:35.700985Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1068},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E08.One Million Miracles-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E08.One Million Miracles-Bluray-1080p.mkv","size":531436251,"dateAdded":"2018-10-10T21:33:35.727302Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1069},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Refrain-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E09.Refrain-Bluray-1080p.mkv","size":571747000,"dateAdded":"2018-10-10T21:33:35.753741Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1070},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E09.A Bride in the Vermillion Forbidden City-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E09.A Bride in the Vermillion Forbidden City-Bluray-1080p.mkv","size":475063628,"dateAdded":"2018-10-10T21:33:35.781882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1071},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Guren Dances-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E10.Guren Dances-Bluray-1080p.mkv","size":695177469,"dateAdded":"2018-10-10T21:33:35.825478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1072},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E10.When Shen Hu Wins Glory-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E10.When Shen Hu Wins Glory-Bluray-1080p.mkv","size":609539740,"dateAdded":"2018-10-10T21:33:35.85276Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1073},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Battle for Narita-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E11.Battle for Narita-Bluray-1080p.mkv","size":742278678,"dateAdded":"2018-10-10T21:33:35.879662Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1074},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Power of Passion-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E11.Power of Passion-Bluray-1080p.mkv","size":707234242,"dateAdded":"2018-10-10T21:33:35.90623Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1075},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Love Attack!-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E12.Love Attack!-Bluray-1080p.mkv","size":569509468,"dateAdded":"2018-10-10T21:33:35.93284Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1076},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Messenger from Kyoto-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E12.The Messenger from Kyoto-Bluray-1080p.mkv","size":545911185,"dateAdded":"2018-10-10T21:33:35.959501Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1077},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Shirley at Gunpoint-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E13.Shirley at Gunpoint-Bluray-1080p.mkv","size":641369085,"dateAdded":"2018-10-10T21:33:35.987411Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1078},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Assassin from the Past-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E13.Assassin from the Past-Bluray-1080p.mkv","size":558635220,"dateAdded":"2018-10-10T21:33:36.013675Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1079},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Geass vs. Geass-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E14.Geass vs. Geass-Bluray-1080p.mkv","size":646575602,"dateAdded":"2018-10-10T21:33:36.040338Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1080},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Geass Hunt-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E14.Geass Hunt-Bluray-1080p.mkv","size":581128577,"dateAdded":"2018-10-10T21:33:36.066908Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1081},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The C's World-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E15.The C's World-Bluray-1080p.mkv","size":819877910,"dateAdded":"2018-10-10T21:33:36.093487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1082},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Cheering Mao-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E15.Cheering Mao-Bluray-1080p.mkv","size":609327012,"dateAdded":"2018-10-10T21:33:36.120071Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1083},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Nunnally Held Hostage-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E16.Nunnally Held Hostage-Bluray-1080p.mkv","size":689748325,"dateAdded":"2018-10-10T21:33:36.146384Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1084},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E16.United Federation of Nations Resolution Number One-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E16.United Federation of Nations Resolution Number One-Bluray-1080p.mkv","size":517066769,"dateAdded":"2018-10-10T21:33:36.173878Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1085},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E17.The Taste of Humiliation-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E17.The Taste of Humiliation-Bluray-1080p.mkv","size":592480776,"dateAdded":"2018-10-10T21:33:36.200292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1086},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Knight-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E17.Knight-Bluray-1080p.mkv","size":516155597,"dateAdded":"2018-10-10T21:33:36.226832Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1087},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Final Battle Tokyo II-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E18.Final Battle Tokyo II-Bluray-1080p.mkv","size":730531585,"dateAdded":"2018-10-10T21:33:36.253309Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1088},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E18.I Order You, Suzaku Kururugi-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E18.I Order You, Suzaku Kururugi-Bluray-1080p.mkv","size":493822557,"dateAdded":"2018-10-10T21:33:36.279826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1089},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Betrayal-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E19.Betrayal-Bluray-1080p.mkv","size":522296371,"dateAdded":"2018-10-10T21:33:36.306132Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1090},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Island of the Gods-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E19.Island of the Gods-Bluray-1080p.mkv","size":514673618,"dateAdded":"2018-10-10T21:33:36.332565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1091},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Emperor Dismissed-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E20.Emperor Dismissed-Bluray-1080p.mkv","size":570725955,"dateAdded":"2018-10-10T21:33:36.35918Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1092},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Battle for Kyushu-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E20.Battle for Kyushu-Bluray-1080p.mkv","size":560319581,"dateAdded":"2018-10-10T21:33:36.386961Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1093},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E21.The Ragnarok Connection-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E21.The Ragnarok Connection-Bluray-1080p.mkv","size":644354597,"dateAdded":"2018-10-10T21:33:36.41319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1094},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The School Festival Declaration-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E21.The School Festival Declaration-Bluray-1080p.mkv","size":453658846,"dateAdded":"2018-10-10T21:33:36.439492Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1095},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Emperor Lelouch-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E22.Emperor Lelouch-Bluray-1080p.mkv","size":569350058,"dateAdded":"2018-10-10T21:33:36.465507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1096},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Bloodstained Euphy-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E22.Bloodstained Euphy-Bluray-1080p.mkv","size":492537405,"dateAdded":"2018-10-10T21:33:36.491067Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1088","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1097},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Schneizel's Guise-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E23.Schneizel's Guise-Bluray-1080p.mkv","size":586400972,"dateAdded":"2018-10-10T21:33:36.516764Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1098},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E23.At Least with Sorrow-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E23.At Least with Sorrow-Bluray-1080p.mkv","size":557393803,"dateAdded":"2018-10-10T21:33:36.542785Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:09","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1099},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E24.The Grip of Damocles-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E24.The Grip of Damocles-Bluray-1080p.mkv","size":705388444,"dateAdded":"2018-10-10T21:33:36.569811Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1100},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E24.The Collapsing Stage-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E24.The Collapsing Stage-Bluray-1080p.mkv","size":634477601,"dateAdded":"2018-10-10T21:33:36.595348Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1101},{"seriesId":6,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Zero-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 01\/S01E25.Zero-Bluray-1080p.mkv","size":629749690,"dateAdded":"2018-10-10T21:33:36.620934Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1102},{"seriesId":6,"seasonNumber":2,"relativePath":"Season 02\/S02E25.Re;-Bluray-1080p.mkv","path":"\/tv\/Code Geass- Lelouch of the Rebellion\/Season 02\/S02E25.Re;-Bluray-1080p.mkv","size":619371880,"dateAdded":"2018-10-10T21:33:36.646964Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:58","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1103}],"queue":[]},"4":{"series":{"title":"Rick and Morty","alternateTitles":[{"title":"Rick et Morty","seasonNumber":-1},{"title":"Rick y Morty","seasonNumber":-1},{"title":"Rick \u00e9s Morty","seasonNumber":-1},{"title":"Rick es Morty","seasonNumber":-1}],"sortTitle":"rick morty","status":"continuing","ended":false,"overview":"Follows the misadventures of an alcoholic scientist Rick and his overly nervous grandson Morty, who split their time between domestic family life and intergalactic travel. Often finding themselves in a heap of trouble that more often than not is created through their own actions.","previousAiring":"2021-09-06T03:22:00Z","network":"Adult Swim","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/2\/banner.jpg?lastWrite=637103155212452720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/275274-g8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/2\/poster.jpg?lastWrite=637100124176148470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/275274-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/2\/fanart.jpg?lastWrite=637100124171428560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/275274-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":105,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-04-15T03:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":12905451040,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-10-05T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11639903508,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-10-02T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11647233435,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2020-06-01T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":21718960322,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2021-09-06T03:22:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9122501592,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/Rick and Morty","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":275274,"tvRageId":33381,"tvMazeId":216,"firstAired":"2013-12-02T00:00:00Z","seriesType":"standard","cleanTitle":"rickmorty","imdbId":"tt2861424","titleSlug":"rick-and-morty","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2017-12-02T19:22:17.1688676Z","ratings":{"votes":3660,"value":9.3},"statistics":{"seasonCount":5,"episodeFileCount":51,"episodeCount":51,"totalEpisodeCount":156,"sizeOnDisk":67034049897,"percentOfEpisodes":100.0},"id":2},"episodes":[{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Freedom of Channel 101","airDate":"2006-12-03","airDateUtc":"2006-12-04T04:00:00Z","overview":"Doc and Mharti return, as Comic Sacrifice details the creative freedom of Channel101.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3047},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Gatorade Commercial #4","airDate":"2008-01-15","airDateUtc":"2008-01-16T04:00:00Z","overview":"For the Channel 101 2007 Channy Awards, sponsored by Gatorade, a Gatorade commercial made by Justin Roiland (House of Cosbys, Mr. Sprinkles) featuring DOC and MHARTI! Animation by Kelsy Abbott","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3045},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Real Animated Adventures of Doc and Mharti","airDate":"2012-09-19","airDateUtc":"2012-09-20T03:00:00Z","overview":"Justin actually made this as a way to poke fun at the idea of getting cease and desist letters. \r\n\r\nAt the time (October 2006) he had nothing to lose and his original intention was to call this \"back to the future: the new official universal studios cartoon featuring the new Doc Brown and Marty McFly\" and then just sit back and wait for a letter from their lawyers to arrive. That's actually why it's so filthy. He was just looking to \"troll\" a big studio.\r\n\r\n7 years later, hit new animated TV show on adult swim.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3044},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"SCUD VLOG #12","airDate":"2012-09-20","airDateUtc":"2012-09-21T03:00:00Z","overview":"A delightful VLOG made for the deserved promotion of the the issues of SCUD: The Disposable Assassin. \r\nBy Justin Roiland and Kelsy Abbott","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3046},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Rick and Morty Panel SDCC 2013","airDate":"2013-07-29","airDateUtc":"2013-07-30T03:00:00Z","overview":"Six months before the show premieres Dan Harmon, Justin Roiland, Chris Parnell, Spencer Grammer, Kari Wahlgren, and Ryan Ridley try to explain what Rick and Morty is all about to a bunch of confused strangers at San Diego Comic-Con 2013.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3048},{"seriesId":2,"episodeFileId":9891,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2013-12-02","airDateUtc":"2013-12-03T04:00:00Z","overview":"Rick moves in with his daughter's family and establishes himself as a bad influence on his grandson, Morty.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":3116},{"seriesId":2,"episodeFileId":9892,"seasonNumber":1,"episodeNumber":2,"title":"Lawnmower Dog","airDate":"2013-12-09","airDateUtc":"2013-12-10T04:00:00Z","overview":"Rick and Morty try to incept Morty's math teacher into giving Morty an 'A'. Meanwhile, Rick gives Jerry a device to train their dog, Snuffles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":3117},{"seriesId":2,"episodeFileId":9893,"seasonNumber":1,"episodeNumber":3,"title":"Anatomy Park","airDate":"2013-12-16","airDateUtc":"2013-12-17T04:00:00Z","overview":"Christmas day, Rick's friend, Reuben, comes over for his annual medical checkup. Meanwhile Jerry learns his parents have a new friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":3118},{"seriesId":2,"episodeFileId":9894,"seasonNumber":1,"episodeNumber":4,"title":"M. Night Shaym-Aliens!","airDate":"2014-01-13","airDateUtc":"2014-01-14T04:00:00Z","overview":"Rick and Morty try to get to the bottom of a mystery in this M. Night Shyamalan style twistaroony of an episode!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":3119},{"seriesId":2,"episodeFileId":9895,"seasonNumber":1,"episodeNumber":5,"title":"Meeseeks and Destroy","airDate":"2014-01-20","airDateUtc":"2014-01-21T04:00:00Z","overview":"When Morty thinks Rick's adventures are too dangerous, he challenges Rick to let him lead one instead. Before heading out on Morty's quest, Rick caves to pleas from the rest of the Smith family to help them solve mundane tasks and leaves with them the Meeseeks Box, a gadget that will instantaneously summon helpers named Mr. Meeseeks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":3120},{"seriesId":2,"episodeFileId":9896,"seasonNumber":1,"episodeNumber":6,"title":"Rick Potion #9","airDate":"2014-01-27","airDateUtc":"2014-01-28T04:00:00Z","overview":"Rick provides Morty with a love potion to get his dream girl, only for the serum to backfire and create a living Cronenberg nightmare.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":3121},{"seriesId":2,"episodeFileId":9897,"seasonNumber":1,"episodeNumber":7,"title":"Raising Gazorpazorp","airDate":"2014-03-10","airDateUtc":"2014-03-11T03:00:00Z","overview":"Morty convinces Rick to buy him a sexy robot. Later Rick and Summer spend some quality time together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":3122},{"seriesId":2,"episodeFileId":9898,"seasonNumber":1,"episodeNumber":8,"title":"Rixty Minutes","airDate":"2014-03-17","airDateUtc":"2014-03-18T03:00:00Z","overview":"Rick hacks the cable box, but the family are distracted by another one of his inventions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":3123},{"seriesId":2,"episodeFileId":9899,"seasonNumber":1,"episodeNumber":9,"title":"Something Ricked This Way Comes","airDate":"2014-03-24","airDateUtc":"2014-03-25T03:00:00Z","overview":"Rick battles the devil and upsets Summer. Meanwhile, Jerry and Morty hang out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":3124},{"seriesId":2,"episodeFileId":9900,"seasonNumber":1,"episodeNumber":10,"title":"Close Rick-Counters of the Rick Kind","airDate":"2014-04-07","airDateUtc":"2014-04-08T03:00:00Z","overview":"Rick and Morty have a falling out when Rick is approached by some familiar associates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":3125},{"seriesId":2,"episodeFileId":9901,"seasonNumber":1,"episodeNumber":11,"title":"Ricksy Business","airDate":"2014-04-14","airDateUtc":"2014-04-15T03:00:00Z","overview":"Beth and Jerry go away on a trip, so Rick decides to throw a party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":3126},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Rick and Morty Panel SDCC 2014","airDate":"2014-07-31","airDateUtc":"2014-08-01T03:00:00Z","overview":"Showrunners, Birdperson, Gazorpazorpfield, Chip Chompers and Pizza McLizza sit down at Sand Diego Comic-Con 2014 to tell us more about the upcoming second season.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3051},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Rick and Morty Summon Mr. Meeseeks for a Very Important Task","airDate":"2014-09-23","airDateUtc":"2014-09-24T03:00:00Z","overview":"Rick and Morty enlist the help of Mr Meeseeks to shill the first season of their hit series on DVD.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3052},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Behind the Scenes","airDate":"2014-10-07","airDateUtc":"2014-10-08T03:00:00Z","overview":"Behind the Scenes of Season 1","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3049},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Rick and Morty Panel NYCC 2014","airDate":"2014-10-15","airDateUtc":"2014-10-16T03:00:00Z","overview":"The shows creators Justin Roiland and Dan Harmon are joined by Sarah Chalke, Chris Parnell and moderator Steve Brandano to discuss the world of Rick and Morty at New York Comic-Con 2014.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3053},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Rick and Morty Presents Jerry's Game from Adult Swim Games","airDate":"2014-12-11","airDateUtc":"2014-12-12T04:00:00Z","overview":"From Adult Swim's Rick and Morty comes Jerry's Game, the pinnacle of mobile gaming! Step into the shoes of Morty's Dad, Jerry Smith, and invest your free time in our balloon-popping simulator for accomplished, respected individuals. Need encouragement for performing infant-level motor functions? Do you wish bubble wrap came with achievements? Jerry's Game has all of this and more! Download it and get poppin\u2019!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3066},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Rick and Morty Panel SDCC 2015","airDate":"2015-07-13","airDateUtc":"2015-07-14T03:00:00Z","overview":"Co-creators Dan Harmon and Justin Roiland are joined by Ryan Ridley and moderator Brian Quinn to discuss all things Rick and Morty at San Diego Comic-Con 2015.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3055},{"seriesId":2,"episodeFileId":2167,"seasonNumber":2,"episodeNumber":1,"title":"A Rickle in Time","airDate":"2015-07-26","airDateUtc":"2015-07-27T03:00:00Z","overview":"Rick, Morty, and Summer get into trouble when time is fractured by a feedback loop of uncertainty that split reality into more than one equally possible impossibilities. Meanwhile, Beth and Jerry go to extreme lengths to save a deer struck by their vehicle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":3127},{"seriesId":2,"episodeFileId":2170,"seasonNumber":2,"episodeNumber":2,"title":"Mortynight Run","airDate":"2015-08-02","airDateUtc":"2015-08-03T03:00:00Z","overview":"Rick teaches Morty to drive while leaving Jerry at a popular day care made just for him. Morty's conscience has him hunt down an assassin rather than spending the day at an alien arcade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":3128},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":139,"title":"Moonmen Music Video (Complete) feat. Fart and Morty","airDate":"2015-08-07","airDateUtc":"2015-08-08T03:00:00Z","overview":"Goodbye Moonmen Music Video (Complete) feat. Fart and Morty","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11533},{"seriesId":2,"episodeFileId":2173,"seasonNumber":2,"episodeNumber":3,"title":"Auto Erotic Assimilation","airDate":"2015-08-09","airDateUtc":"2015-08-10T03:00:00Z","overview":"Rick gets emotionally invested when meeting an old friend, while Beth and Jerry have a falling out after making a discovery under the garage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":3129},{"seriesId":2,"episodeFileId":2176,"seasonNumber":2,"episodeNumber":4,"title":"Total Rickall","airDate":"2015-08-16","airDateUtc":"2015-08-17T03:00:00Z","overview":"Trapped inside the house with an ever-increasing number of parasitic alien shape-shifters capable of altering memories, an uncertain Rick and the Smiths search for a way to determine which of them are real.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":3130},{"seriesId":2,"episodeFileId":2179,"seasonNumber":2,"episodeNumber":5,"title":"Get Schwifty","airDate":"2015-08-23","airDateUtc":"2015-08-24T03:00:00Z","overview":"When a massive head descends into Earth's atmosphere, Rick and Morty must save the planet by coming up with a new hit song. Meanwhile, Jerry, Beth, and Summer become part of a new religion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":3131},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":146,"title":"Get Schwifty Music Video","airDate":"2015-08-29","airDateUtc":"2015-08-30T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11540},{"seriesId":2,"episodeFileId":2182,"seasonNumber":2,"episodeNumber":6,"title":"The Ricks Must Be Crazy","airDate":"2015-08-30","airDateUtc":"2015-08-31T03:00:00Z","overview":"Rick and Morty travel inside the car's battery, where Morty discovers Rick has created a universe containing sentient life solely to produce power for him. Meanwhile, Summer must deal with being locked in the car with Rick's overzealous security system.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":3132},{"seriesId":2,"episodeFileId":2185,"seasonNumber":2,"episodeNumber":7,"title":"Big Trouble in Little Sanchez","airDate":"2015-09-13","airDateUtc":"2015-09-14T03:00:00Z","overview":"Rick undergoes a transformation to combat a local vampire situation. Meanwhile, Beth and Jerry attempt to sort out their relationship through marriage counseling.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":3133},{"seriesId":2,"episodeFileId":2188,"seasonNumber":2,"episodeNumber":8,"title":"Interdimensional Cable 2: Tempting Fate","airDate":"2015-09-20","airDateUtc":"2015-09-21T03:00:00Z","overview":"As Jerry decides between keeping his manhood or saving an alien leader from imminent death, the rest of the family take a look at what interdimensional television has to offer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":3134},{"seriesId":2,"episodeFileId":2191,"seasonNumber":2,"episodeNumber":9,"title":"Look Who's Purging Now","airDate":"2015-09-27","airDateUtc":"2015-09-28T03:00:00Z","overview":"Rick and Morty find themselves on a planet where the sentient inhabitants practice a \"purge for peace\" way of life. Jerry and Summer work on their father-daughter relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":3135},{"seriesId":2,"episodeFileId":2194,"seasonNumber":2,"episodeNumber":10,"title":"The Wedding Squanchers","airDate":"2015-10-04","airDateUtc":"2015-10-05T03:00:00Z","overview":"The whole family goes to the planet Squanch to attend the wedding of Rick's close friend, Bird Person.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":3136},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Misadventures of Rick and Morty","airDate":"2015-11-11","airDateUtc":"2015-11-12T04:00:00Z","overview":"A stop motion short film featuring Rick and Morty getting into trouble.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3056},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Carl's Jr and Hardee's Commercial","airDate":"2015-11-30","airDateUtc":"2015-12-01T04:00:00Z","overview":"Rick informs Morty that they are in a commercial for Carl\u2019s Jr and Hardee\u2019s and introduces him to a range of over-excited burgers.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3057},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"State of Georgia Vs. Denver Fenton Allen","airDate":"2016-08-04","airDateUtc":"2016-08-05T03:00:00Z","overview":"Judge Morty presides over this real life case as a court transcript is recreated word-for-word.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3050},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Rick and Morty Panel SDCC 2016","airDate":"2016-08-07","airDateUtc":"2016-08-08T03:00:00Z","overview":"Brian Quinn attempts to moderate a panel made up of Dan Harmon, Justin Roiland, Ryan Ridley, Spencer Grammer, Sarah Chalke, and Chris Parnell as they answer questions and question answers at San Diego Comic-Con 2016.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3064},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":143,"title":"A Rick and Morty Opera: The Terrible Cobs","airDate":"2016-09-14","airDateUtc":"2016-09-15T03:00:00Z","overview":"An opera based upon an answer given by Rick and Morty's Justin Roiland, Ryan Ridley, Dan Harmon, and Spencer Grammer at San Diego Comic-Con 2016.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11537},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":75,"title":"Judge Morty: State of Georgia Vs. Rick Allen","airDate":"2016-10-05","airDateUtc":"2016-10-06T03:00:00Z","overview":"Full color animated version of State of Georgia Vs. Rick Allen. Fan animated by tiarawhy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8830},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Rick and Morty: The Non-Canonical Adventures #1 - The Thing","airDate":"2016-10-26","airDateUtc":"2016-10-27T03:00:00Z","overview":"A claymation recreation of a classic scene from \u2018The Thing\u2019.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3058},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Rick and Morty: The Non-Canonical Adventures #2 - The Fly","airDate":"2016-10-26","airDateUtc":"2016-10-27T03:22:00Z","overview":"A claymation recreation of a classic scene from \u2018The Fly\u2019.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3059},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Rick and Morty: The Non-Canonical Adventures #3 - Honey, I Shrunk The Kids","airDate":"2016-10-26","airDateUtc":"2016-10-27T03:44:00Z","overview":"A claymation recreation of a classic scene from \u2018Honey, I Shrunk the Kids\u2019.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3060},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Rick and Morty: The Non-Canonical Adventures #4 - Ex Machina","airDate":"2016-10-27","airDateUtc":"2016-10-28T03:00:00Z","overview":"A claymation recreation of a classic scene from \u2018Ex Machina\u2019.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3061},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Rick and Morty: The Non-Canonical Adventures #5 - Halloween","airDate":"2016-11-03","airDateUtc":"2016-11-04T03:00:00Z","overview":"A claymation recreation of a classic scene from \u2018Halloween\u2019.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3062},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Rick and Morty 8-Bit Intro","airDate":"2017-01-11","airDateUtc":"2017-01-12T04:00:00Z","overview":"The show intro for interdimensional duo Rick and Morty is given a retro twist.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3063},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Jerry & Beth's 8-Bit Virtual Vision","airDate":"2017-01-29","airDateUtc":"2017-01-30T04:00:00Z","overview":"Perception is reality. Created by Paul Robertson.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3068},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"GlorpDieBlorp plays \u201cTen Tuesdays at Tinkles\u201d","airDate":"2017-03-05","airDateUtc":"2017-03-06T04:00:00Z","overview":"GET YOUR BLORBS OUT! GlorpDieBlorp streams the interdimensional smash hit \u201cTen Tuesdays at Tinkles\u201d EXCLUSIVELY on Blurtfeed. Watch more at http:\/\/galacticfederation.com","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3067},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Rick TV","airDate":"2017-04-01","airDateUtc":"2017-04-02T03:00:00Z","overview":"Created by Paul Robertson for Adult Swim.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3069},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Meeseeks Battle","airDate":"2017-04-01","airDateUtc":"2017-04-02T03:22:00Z","overview":"Existence is pain, indeed. Created by Paul Robertson for Adult Swim.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3070},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Beth in the Garage","airDate":"2017-04-01","airDateUtc":"2017-04-02T03:44:00Z","overview":"Every family shares a secret. Created by Cat Solen \/ Artery for Adult swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3072},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Buttworld","airDate":"2017-04-01","airDateUtc":"2017-04-02T04:06:00Z","overview":"Created by Cat Solen \/ Artery for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3073},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Poopy the Gymnast","airDate":"2017-04-01","airDateUtc":"2017-04-02T04:28:00Z","overview":"Almost nothing is impossible. Created by Cat Solen \/ Artery for Adult Swim.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3074},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Summer in the Bathroom","airDate":"2017-04-01","airDateUtc":"2017-04-02T04:50:00Z","overview":"Created by Cat Solen \/ Artery fro Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3075},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Unity Connections","airDate":"2017-04-01","airDateUtc":"2017-04-02T05:12:00Z","overview":"Fake dating app commercial promo from Rick and Morty.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3076},{"seriesId":2,"episodeFileId":2166,"seasonNumber":3,"episodeNumber":1,"title":"The Rickshank Rickdemption","airDate":"2017-04-01","airDateUtc":"2017-04-02T03:00:00Z","overview":"The Smith family tries to cope without Rick, which is painful enough on its own without taking into consideration the stifling rules put into place by the Federation. Meanwhile Rick's past is finally revealed as he attempts to get out of his prison.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":3137},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Gear Head","airDate":"2017-05-01","airDateUtc":"2017-05-02T03:00:00Z","overview":"Created by Production IG\/DEEN for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3071},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":76,"title":"Alien: Covenant Rick and Morty","airDate":"2017-05-13","airDateUtc":"2017-05-14T03:00:00Z","overview":"Rick and Morty receive a distress signal. Rick wants to ignore it but Morty persuades him to help those people. They board the ship that sent the signal.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8864},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Drunk Rick Method Acting","airDate":"2017-06-02","airDateUtc":"2017-06-03T03:00:00Z","overview":"Justin Roiland offers a rare glimpse of his craft and boozing skills.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3077},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"The Search For Meaning","airDate":"2017-06-23","airDateUtc":"2017-06-24T03:00:00Z","overview":"Dan Harmon muses the philosophy guiding Rick and Morty's multiverse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3078},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Eyehole Man","airDate":"2017-07-06","airDateUtc":"2017-07-07T03:00:00Z","overview":"Eyeholes. Get 'em today. All-new episodes begin July 30th at 11:30p ET.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3079},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Rick and Morty: The Non-Canonical Adventures #6 - 2001: A Space Odyssey","airDate":"2017-07-08","airDateUtc":"2017-07-09T03:00:00Z","overview":"In space no one can hear you whine.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3080},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Gearagra","airDate":"2017-07-09","airDateUtc":"2017-07-10T03:00:00Z","overview":"Seek immediate medical help for a gearection lasting more than four hours.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3081},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Rick and Morty: The Non-Canonical Adventures #7 - Blade Runner","airDate":"2017-07-11","airDateUtc":"2017-07-12T03:00:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3082},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Rick and Morty: The Non-Canonical Adventures #8 - Poltergeist","airDate":"2017-07-11","airDateUtc":"2017-07-12T03:22:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3083},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Rick and Morty: The Non-Canonical Adventures #9 - Re-Animator","airDate":"2017-07-11","airDateUtc":"2017-07-12T03:44:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3084},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Rick and Morty: The Non-Canonical Adventures #10 - Aliens","airDate":"2017-07-11","airDateUtc":"2017-07-12T04:06:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3085},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Rick and Morty: The Non-Canonical Adventures #11 - E.T. the Extra-Terrestrial","airDate":"2017-07-11","airDateUtc":"2017-07-12T04:28:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3087},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Rick and Morty: The Non-Canonical Adventures #12 - Gremlins","airDate":"2017-07-11","airDateUtc":"2017-07-12T04:50:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3089},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":179,"title":"Exquisite Corpse","airDate":"2017-07-16","airDateUtc":"2017-07-17T03:00:00Z","overview":"Take a trip through the Rick and Morty multiverse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21684},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Rick and Morty Design Sneak Peek: Wasteland","airDate":"2017-07-22","airDateUtc":"2017-07-23T03:00:00Z","overview":"Sponsored content by Snickers. Learn more about the apocalyptic design and kinky fashions of \"Rickmancing the Stone\" S03E02.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3086},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Inside 'The Rickshank Redemption'","airDate":"2017-07-24","airDateUtc":"2017-07-25T03:00:00Z","overview":"Why do we not know Rick's backstory? The answer might surprise you.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3088},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"Rick and Morty: The Non-Canonical Adventures #13 - A Clockwork Orange","airDate":"2017-07-27","airDateUtc":"2017-07-28T03:00:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3090},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"Rick and Morty: The Non-Canonical Adventures #14 - Invasion of the Body Snatchers","airDate":"2017-07-27","airDateUtc":"2017-07-28T03:22:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3091},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":50,"title":"The Art of 'Alts'","airDate":"2017-07-28","airDateUtc":"2017-07-29T03:00:00Z","overview":"Justin Roiland shares alternate lines that didn't quite make the cut.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3092},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":51,"title":"Rick and Morty: The Non-Canonical Adventures #15 - The Matrix","airDate":"2017-07-28","airDateUtc":"2017-07-29T03:22:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3093},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":52,"title":"Rick and Morty: The Non-Canonical Adventures #16 - Ghostbusters","airDate":"2017-07-30","airDateUtc":"2017-07-31T03:00:00Z","overview":"Stop-motion created by Lee Hardcastle for Adult Swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3094},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":53,"title":"Justin Roiland's RC Interview Stunt Rally Extravaganza Show!","airDate":"2017-07-30","airDateUtc":"2017-07-31T03:22:00Z","overview":"Get ready for INTENSE action plus an EXTREME interview with Rick and Morty storyboard artist, Erica Hayes!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3095},{"seriesId":2,"episodeFileId":2169,"seasonNumber":3,"episodeNumber":2,"title":"Rickmancing the Stone","airDate":"2017-07-30","airDateUtc":"2017-07-31T03:00:00Z","overview":"Rick, Morty and Summer travel to a post-apocalyptic dimension and meet some dangerous enemies, all the while avoiding a recent family development.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":3138},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":54,"title":"Inside 'Rickmancing the Stone'","airDate":"2017-08-04","airDateUtc":"2017-08-05T03:00:00Z","overview":"Big changes lead to different coping mechanisms for Morty and Summer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3096},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":55,"title":"Design Sneak Peek: Pickle Rick","airDate":"2017-08-05","airDateUtc":"2017-08-06T03:00:00Z","overview":"How much thought goes into designing pickles and rats? More than you'd think. \"Pickle Rick\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3097},{"seriesId":2,"episodeFileId":2172,"seasonNumber":3,"episodeNumber":3,"title":"Pickle Rick","airDate":"2017-08-06","airDateUtc":"2017-08-07T03:00:00Z","overview":"Rick turns himself into a pickle, on the same day that Beth takes the kids to family therapy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":3139},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"Inside 'Pickle Rick'","airDate":"2017-08-08","airDateUtc":"2017-08-09T03:00:00Z","overview":"It's family therapy time in this one broh. Classic stuff. Pickle Rick too.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3098},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":57,"title":"Rick and Morty Origins Part One","airDate":"2017-08-11","airDateUtc":"2017-08-12T03:00:00Z","overview":"Justin Roiland and Dan Harmon explain how their creative impulses led to collaborating for Channel 101.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3099},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":58,"title":"Who Are 'The Vindicators'?","airDate":"2017-08-13","airDateUtc":"2017-08-14T03:00:00Z","overview":"Meet the greatest superheroes and most fearsome villain of the Rick and Morty multiverse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3100},{"seriesId":2,"episodeFileId":2175,"seasonNumber":3,"episodeNumber":4,"title":"Vindicators 3: The Return of Worldender","airDate":"2017-08-13","airDateUtc":"2017-08-14T03:00:00Z","overview":"Rick and Morty reunite with a team of intergalactic heroes known as the Vindicators to defeat their arch enemy, Worldender.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":3140},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":176,"title":"Inside 'Vindicators 3: The Return of Worldender'","airDate":"2017-08-13","airDateUtc":"2017-08-14T03:22:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20775},{"seriesId":2,"episodeFileId":2178,"seasonNumber":3,"episodeNumber":5,"title":"The Whirly Dirly Conspiracy","airDate":"2017-08-20","airDateUtc":"2017-08-21T03:00:00Z","overview":"Rick and Jerry go on an adventure, while Beth fails as a mother and Summer has body issues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":3141},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":59,"title":"Inside 'The Whirly Dirly Conspiracy'","airDate":"2017-08-21","airDateUtc":"2017-08-22T03:00:00Z","overview":"Rick and Jerry, together... for once.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3101},{"seriesId":2,"episodeFileId":2181,"seasonNumber":3,"episodeNumber":6,"title":"Rest and Ricklaxation","airDate":"2017-08-27","airDateUtc":"2017-08-28T03:00:00Z","overview":"Rick and Morty need a break, so they head to a spa planet for some much needed rest and relaxation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":3142},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":140,"title":"Ricking Morty S3E4 \"Vindicators 3: The Return of Worldender\"","airDate":"2017-08-28","airDateUtc":"2017-08-29T03:00:00Z","overview":"The Rick and Morty aftershow","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11534},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":60,"title":"Inside 'Rest and Ricklaxation'","airDate":"2017-08-31","airDateUtc":"2017-09-01T03:00:00Z","overview":"Would Rick and Morty be better off without their worst selves? The answer shouldn't surprise you.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3102},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":61,"title":"Justin Roiland RC Video Game Car Grindapalooza Stunt Rally Interview Show!","airDate":"2017-09-04","airDateUtc":"2017-09-05T03:00:00Z","overview":"The THRILLS don't stop as Justin faces an IMPOSSIBLE trick yet also finds time to interview Rick and Morty writer, Mike McMahan!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3103},{"seriesId":2,"episodeFileId":2184,"seasonNumber":3,"episodeNumber":7,"title":"The Ricklantis Mixup","airDate":"2017-09-10","airDateUtc":"2017-09-11T03:00:00Z","overview":"Rick and Morty head to Atlantis. Meanwhile, the Citadel of Ricks is electing a new leader.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":3143},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":63,"title":"Inside 'Morty's Mind Blowers'","airDate":"2017-09-14","airDateUtc":"2017-09-15T03:00:00Z","overview":"Here's why you didn't get another installment of 'Interdimensional Cable'.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3105},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":62,"title":"Inside 'The Ricklantis Mixup'","airDate":"2017-09-17","airDateUtc":"2017-09-18T03:00:00Z","overview":"Noticed more politics than usual in this episode? There's some good reasons why.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3104},{"seriesId":2,"episodeFileId":2187,"seasonNumber":3,"episodeNumber":8,"title":"Morty's Mind Blowers","airDate":"2017-09-17","airDateUtc":"2017-09-18T03:00:00Z","overview":"Morty experiences some memories that he couldn't handle from past adventures.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":3144},{"seriesId":2,"episodeFileId":2190,"seasonNumber":3,"episodeNumber":9,"title":"The ABC's of Beth","airDate":"2017-09-24","airDateUtc":"2017-09-25T03:00:00Z","overview":"Jerry is lucky with a lady and Beth recalls her childhood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":3145},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":64,"title":"Fathers and Daughters (Full Length Song)","airDate":"2017-09-25","airDateUtc":"2017-09-26T03:00:00Z","overview":"For all the fathers and daughters by Dan Harmon and Ryan Elder featuring Chaos Chaos","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3106},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":65,"title":"Rick and Morty Origins Part Two","airDate":"2017-09-28","airDateUtc":"2017-09-29T03:00:00Z","overview":"Can you imagine anyone else voicing Morty? You'll be surprised how close that came to happening.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3107},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":66,"title":"Inside 'The ABC's of Beth'","airDate":"2017-10-01","airDateUtc":"2017-10-02T03:00:00Z","overview":"Find out how Rick's questionable parenting made Beth the woman she is today.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3108},{"seriesId":2,"episodeFileId":2193,"seasonNumber":3,"episodeNumber":10,"title":"The Rickchurian Mortydate","airDate":"2017-10-01","airDateUtc":"2017-10-02T03:00:00Z","overview":"It's Rick vs. POTUS in a fight to the finish!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":3146},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":67,"title":"Inside 'The Rickchurian Mortydate'","airDate":"2017-10-05","airDateUtc":"2017-10-06T03:00:00Z","overview":"Discover the logic behind the season finale's surprising shift in power.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3109},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":74,"title":"Old Spice Commercial","airDate":"2017-10-24","airDateUtc":"2017-10-25T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8829},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":68,"title":"The Poop In My Pants","airDate":"2017-11-22","airDateUtc":"2017-11-23T04:00:00Z","overview":"Enjoy these warm and squishy moments as we explore all that Mr. Poopybutthole has to be thankful for.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3110},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":69,"title":"Vindicators promo","airDate":"2018-03-09","airDateUtc":"2018-03-10T04:00:00Z","overview":"Remember them as they were. Created by Paul Robertson for Adult swim promo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3111},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":70,"title":"Rick and Morty x Run The Jewels: Oh Mama","airDate":"2018-03-16","airDateUtc":"2018-03-17T03:00:00Z","overview":"Adult Swim Festival featuring Run The Jewels is coming to Downtown LA on October 6-7.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3112},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":71,"title":"Rick and Morty Snickers Promo","airDate":"2018-03-26","airDateUtc":"2018-03-27T03:00:00Z","overview":"Snickers promo for Rick and Morty.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3113},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Bushworld Adventures","airDate":"2018-04-01","airDateUtc":"2018-04-02T03:00:00Z","overview":"On this episode of the critically acclaimed show \u201cBushworld Adventures\u201d, now celebrating its 10th season, we join our hero\u2019s Reek and Mordi as they seek out the mysterious \u201cGreen Cube\u201d of Bendigo. Will they succeed?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3065},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":72,"title":"Inside the Recording Booth with Spencer Grammer","airDate":"2018-05-10","airDateUtc":"2018-05-11T03:00:00Z","overview":"Behind the scenes with Spencer Grammer doing voice work as Summer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3114},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":73,"title":"Rick and Morty Present at the Emmy Awards","airDate":"2018-09-17","airDateUtc":"2018-09-18T03:00:00Z","overview":"During the 70th Primetime Emmy Awards, the animated iterations of Rick and Morty were featured in a brief segment, where they awarded a trophy to RuPaul's Drag Race.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3115},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":141,"title":"Get Schwifty feat. Open Mike Eagle & Father","airDate":"2018-10-15","airDateUtc":"2018-10-16T03:00:00Z","overview":"ICYMI Open Mike Eagle and Father perform \u201cGet Schwifty\u201d at the Adult Swim Festival's \"Rick and Morty Musical Ricksperience.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11535},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":142,"title":"Goodbye Moonmen (Live From Adult Swim Festival)","airDate":"2018-10-16","airDateUtc":"2018-10-17T03:00:00Z","overview":"Enjoy this live rendition featuring Johnathan Rice, from the Rick and Morty Ricksperience at Adult Swim Festival '18.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11536},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":145,"title":"Drunk Rick Method Acting: Vol. 2","airDate":"2018-11-21","airDateUtc":"2018-11-22T04:00:00Z","overview":"Justin Roiland offers another glimpse of his craft and boozing skills.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11539},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":144,"title":"Blood Dome","airDate":"2018-12-27","airDateUtc":"2018-12-28T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11538},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":157,"title":"Rick and Morty San Diego Comic-Con 2019 Panel","airDate":"2019-07-19","airDateUtc":"2019-07-20T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11751},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":158,"title":"Rick and Morty React to Their Own Memes - Comic Con 2019","airDate":"2019-07-19","airDateUtc":"2019-07-20T03:22:00Z","overview":"It's time to get schwiftyyyyy. Rick and Morty do what they do best and that is reacting to Rick and Morty memes. We talk about their next 70 episodes and if Harry Potter's own Daniel Radcliffe is going to finally make his way to the tiny Rick and Morty screen. We hope he does, we really do.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11752},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":159,"title":"Rick and Morty Season 4: Glootie","airDate":"2019-07-19","airDateUtc":"2019-07-20T03:44:00Z","overview":"*Ominous beeping noise* FIRST LOOK AT RICK AND MORTY SEASON 4 *Ominous beeping noise*","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11753},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":160,"title":"Dan Harmon's Summer Impression - SDCC 2019","airDate":"2019-07-19","airDateUtc":"2019-07-20T04:06:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11754},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":161,"title":"'Rick and Morty' Cast Joins Us LIVE | SDCC 2019","airDate":"2019-07-19","airDateUtc":"2019-07-20T04:28:00Z","overview":"'Rick and Morty' stars Dan Harmon, Justin Roiland, Sarah Chalke, and Spencer Grammer join us LIVE from San Diego Comic Con 2019.\r\nWatch More SDCC 2019 Interviews \u25ba\u25ba http:\/\/bit.ly\/SDCC2019EW","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11755},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":162,"title":"Creators Preview Season 4 Guests, Including Taika Waititi","airDate":"2019-07-20","airDateUtc":"2019-07-21T03:00:00Z","overview":"#TaikaWaititi will voice an alien named Glootie in the upcoming season of #RickAndMorty. See what other stars co-creators #JustinRoiland and #DanHarmon confirmed as they talk with #KevinSmith at San Diego #Comic-Con 2019, plus the series that made Harmon want to quit the business.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11756},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":165,"title":"Season 4 Sneak Peek","airDate":"2019-10-14","airDateUtc":"2019-10-15T03:00:00Z","overview":"Check out this disappointing sneak peek for Rick and Morty, Season 4","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15541},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":164,"title":"Rick and Morty: The Non-Canonical Halloween Adventures","airDate":"2019-10-31","airDateUtc":"2019-11-01T03:00:00Z","overview":"Created by Lee Hardcastle. This followup to the original run of the Non-Canonical Adventures brings new movie parodies featuring Rick and Morty. The movies featured are: Beetlejuice; The Blair Witch Project; Evil Dead 2; Hellraiser; Home Alone; Jaws; Predator; Reservoir Dogs; Terminator 2; and Videodrome.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14751},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":166,"title":"Extended Season 4 Sneak Peek","airDate":"2019-10-31","airDateUtc":"2019-11-01T03:22:00Z","overview":"The creators give an extended look at what is destined to be the craziest season of Rick and Morty.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15542},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":163,"title":"#DeathStranding","airDate":"2019-11-01","airDateUtc":"2019-11-02T03:00:00Z","overview":"Dire times call for dire measures","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14750},{"seriesId":2,"episodeFileId":15603,"seasonNumber":4,"episodeNumber":1,"title":"Edge of Tomorty: Rick Die Rickpeat","airDate":"2019-11-10","airDateUtc":"2019-11-11T04:00:00Z","overview":"Rick brings Morty to a planet containing crystals that show whoever is touching them all the ways they may die depending on their choices.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":11199},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":167,"title":"Inside: \"Edge of Tomorty: Rick Die Rickpeat\"","airDate":"2019-11-10","airDateUtc":"2019-11-11T04:00:00Z","overview":"Get a special behind-the-scenes look at the episode \"Edge of Tomorty: Rick Die Rickpeat","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15543},{"seriesId":2,"episodeFileId":15604,"seasonNumber":4,"episodeNumber":2,"title":"The Old Man and the Seat","airDate":"2019-11-17","airDateUtc":"2019-11-18T04:00:00Z","overview":"Rick discovers that someone has been using his private \"rest stop\" and sets out to find them. Meanwhile, despite being warned not to, Jerry develops an app with Rick's alien intern, and chaos ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":13850},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":168,"title":"Inside: \"The Old Man And The Seat\"","airDate":"2019-11-17","airDateUtc":"2019-11-18T04:00:00Z","overview":"Get a special behind-the-scenes look at the episode \"The Old Man And The Seat\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15587},{"seriesId":2,"episodeFileId":15605,"seasonNumber":4,"episodeNumber":3,"title":"One Crew Over the Crewcoo's Morty","airDate":"2019-11-24","airDateUtc":"2019-11-25T04:00:00Z","overview":"At the end of a treasure-hunting expedition, Rick discovers that the loot he and Morty sought had already been nabbed by the heist artist Miles Knightly. Furious at being upstaged, Rick recruits a crew required to gain entrance into Heist-Con as \"professionals\" so he can confront Miles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":13852},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":169,"title":"Inside: \"One Crew Over the Crewcoo's Morty\"","airDate":"2019-11-24","airDateUtc":"2019-11-25T04:00:00Z","overview":"Get a special behind-the-scenes look at the episode \"One Crew Over The Crewcoo's Morty\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15671},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":170,"title":"Rick And Morty Pinball Teaser","airDate":"2019-12-04","airDateUtc":"2019-12-05T04:00:00Z","overview":"Coming Christmas of 2019, from Adult Swim and Spooky Pinball LLC!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15772},{"seriesId":2,"episodeFileId":15606,"seasonNumber":4,"episodeNumber":4,"title":"Claw and Hoarder: Special Ricktim's Morty","airDate":"2019-12-08","airDateUtc":"2019-12-09T04:00:00Z","overview":"Rick promises Morty he can get a new companion: a flying, fire-breathing dragon. Jerry meets a mysterious talking cat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":13853},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":171,"title":"Inside: \"Claw and Hoarder: Special Ricktim\u2019s Morty\"","airDate":"2019-12-08","airDateUtc":"2019-12-09T04:00:00Z","overview":"Get a special behind-the-scenes look at the episode \"Claw and Hoarder: Special Ricktim\u2019s Morty.\u201d","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15799},{"seriesId":2,"episodeFileId":15607,"seasonNumber":4,"episodeNumber":5,"title":"Rattlestar Ricklactica","airDate":"2019-12-15","airDateUtc":"2019-12-16T04:00:00Z","overview":"During one of their adventures in outer space, Rick and Morty's ship suffers a flat tire. While they carry out repairs, Morty suffers a potentially lethal snake bite that leads to a complicated, time-travelling encounter with a snake civilization.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":13854},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":172,"title":"Inside: \"Rattlestar Ricklactica\"","airDate":"2019-12-15","airDateUtc":"2019-12-16T04:00:00Z","overview":"Get a special behind-the-scenes look at the episode\u00a0\u201cRattlestar Ricklactica\u201d","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15838},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":174,"title":"Rick and Morty x Pringles - 2020 Big Game Commercial","airDate":"2020-01-28","airDateUtc":"2020-01-29T04:00:00Z","overview":"Stack Pringles. Make endless new flavors. Stack Pringles. Make endless new flavors. Stack Pringles. Make endless new flavors. This is not an ad.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17582},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":173,"title":"Samurai & Shogun","airDate":"2020-03-29","airDateUtc":"2020-03-30T03:00:00Z","overview":"Drunken life, dreamy death. #RickandMortyAnime","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17507},{"seriesId":2,"episodeFileId":15608,"seasonNumber":4,"episodeNumber":6,"title":"Never Ricking Morty","airDate":"2020-05-03","airDateUtc":"2020-05-04T03:00:00Z","overview":"An anthology episode that follows Rick and Morty on a train with people who don't like Rick. They have to find their way out but they bump into unexpected situations along the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":17541},{"seriesId":2,"episodeFileId":15609,"seasonNumber":4,"episodeNumber":7,"title":"Promortyus","airDate":"2020-05-10","airDateUtc":"2020-05-11T03:00:00Z","overview":"Rick and Morty find themselves in a fight against face-hugging aliens who just happen to have an M&Ms store.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":17574},{"seriesId":2,"episodeFileId":15610,"seasonNumber":4,"episodeNumber":8,"title":"The Vat of Acid Episode","airDate":"2020-05-17","airDateUtc":"2020-05-18T03:00:00Z","overview":"It's a Rick, Morty and a vat of acid kind of adventure. But will it be worth Morty missing his English class for?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":17604},{"seriesId":2,"episodeFileId":15611,"seasonNumber":4,"episodeNumber":9,"title":"Childrick of Mort","airDate":"2020-05-24","airDateUtc":"2020-05-25T03:00:00Z","overview":"Rick, Morty, Beth, Summer and Jerry share a galactic adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":17605},{"seriesId":2,"episodeFileId":15612,"seasonNumber":4,"episodeNumber":10,"title":"Star Mort: Rickturn of the Jerri","airDate":"2020-05-31","airDateUtc":"2020-06-01T03:00:00Z","overview":"An adventure with an invisibility belt, but a family that disappears together, must stay together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":17606},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":175,"title":"Rick and Morty Vs. Genocider","airDate":"2020-07-25","airDateUtc":"2020-07-26T03:00:00Z","overview":"Directed by \u2018Tower of God\u2019 director, Takeshi Sano, Morty goes on an adventure to Tokyo, Japan to try and help stop \u201cThe Genocider\u201d. Nothing weird happens. Produced by Sola Entertainment and animated at Telecom Animation Film.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19740},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":177,"title":"Rick and Morty in the Eternal Nightmare Machine","airDate":"2021-05-01","airDateUtc":"2021-05-02T03:00:00Z","overview":"The simulation is corrupt, repair the core.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21486},{"seriesId":2,"episodeFileId":18451,"seasonNumber":5,"episodeNumber":1,"title":"Mort Dinner Rick Andre","airDate":"2021-06-20","airDateUtc":"2021-06-21T03:00:00Z","overview":"Big man comin for dinner, broh. Better check the booze.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":21311},{"seriesId":2,"episodeFileId":18573,"seasonNumber":5,"episodeNumber":2,"title":"Mortyplicity","airDate":"2021-06-27","airDateUtc":"2021-06-28T03:00:00Z","overview":"The Smiths suspect they're being hunted. But who's even real?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":21312},{"seriesId":2,"episodeFileId":18611,"seasonNumber":5,"episodeNumber":3,"title":"A Rickconvenient Mort","airDate":"2021-07-04","airDateUtc":"2021-07-05T03:00:00Z","overview":"Morty falls in love with an environmental superhero, while Rick and Summer go on an apocalypse bar crawl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":21313},{"seriesId":2,"episodeFileId":18636,"seasonNumber":5,"episodeNumber":4,"title":"Rickdependence Spray","airDate":"2021-07-11","airDateUtc":"2021-07-12T03:00:00Z","overview":"A failed Rick experiment creates monsters that threaten the country.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":21314},{"seriesId":2,"episodeFileId":18681,"seasonNumber":5,"episodeNumber":5,"title":"Amortycan Grickfitti","airDate":"2021-07-18","airDateUtc":"2021-07-19T03:00:00Z","overview":"Summer and Morty steal Rick's car to impress a new kid at school. Rick and Jerry have a guys' night from hell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":21315},{"seriesId":2,"episodeFileId":18704,"seasonNumber":5,"episodeNumber":6,"title":"Rick & Morty's Thanksploitation Spectacular","airDate":"2021-07-25","airDateUtc":"2021-07-26T03:00:00Z","overview":"In this Thanksgiving episode, Rick and Morty need to get a presidential pardon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":21316},{"seriesId":2,"episodeFileId":18734,"seasonNumber":5,"episodeNumber":7,"title":"Gotron Jerrysis Rickvangelion","airDate":"2021-08-01","airDateUtc":"2021-08-02T03:00:00Z","overview":"Summer enables Rick's addiction to collecting giant combining robots, and the family becomes The Family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":21317},{"seriesId":2,"episodeFileId":0,"seasonNumber":0,"episodeNumber":178,"title":"Summer Meets God (Rick Meets Evil)","airDate":"2021-08-02","airDateUtc":"2021-08-03T03:00:00Z","overview":"Summer's new boyfriend isn\u2019t human, Jerry's in big trouble as usual, and Rick is well\u2026 just being Rick.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21676},{"seriesId":2,"episodeFileId":18810,"seasonNumber":5,"episodeNumber":8,"title":"Rickternal Friendshine of the Spotless Mort","airDate":"2021-08-08","airDateUtc":"2021-08-09T03:00:00Z","overview":"Rick attempts to save a beloved friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":21318},{"seriesId":2,"episodeFileId":18910,"seasonNumber":5,"episodeNumber":9,"title":"Forgetting Sarick Mortshall","airDate":"2021-09-05","airDateUtc":"2021-09-06T03:00:00Z","overview":"Rick gets new sidekicks, while Morty makes a new friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":21319},{"seriesId":2,"episodeFileId":18911,"seasonNumber":5,"episodeNumber":10,"title":"Rickmurai Jack","airDate":"2021-09-05","airDateUtc":"2021-09-06T03:22:00Z","overview":"Rick is living his best anime life, making new friends and taking down new enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":21320}],"episodeFile":[{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Rickshank Rickdemption-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E01.The Rickshank Rickdemption-Bluray-1080p.mkv","size":1164309603,"dateAdded":"2018-10-10T22:30:22.746517Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5996000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2166},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E01.A Rickle in Time-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E01.A Rickle in Time-Bluray-1080p.mkv","size":1164130886,"dateAdded":"2018-10-10T22:30:22.786701Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6145000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2167},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Rickmancing the Stone-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E02.Rickmancing the Stone-Bluray-1080p.mkv","size":1165010904,"dateAdded":"2018-10-10T22:30:22.8422Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6216000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2169},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Mortynight Run-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E02.Mortynight Run-Bluray-1080p.mkv","size":1163912093,"dateAdded":"2018-10-10T22:30:23.342355Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6170000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2170},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Pickle Rick-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E03.Pickle Rick-Bluray-1080p.mkv","size":1164857495,"dateAdded":"2018-10-10T22:30:23.399195Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5983000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2172},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Auto Erotic Assimilation-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E03.Auto Erotic Assimilation-Bluray-1080p.mkv","size":1164417412,"dateAdded":"2018-10-10T22:30:23.429704Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6111000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2173},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Vindicators 3- The Return of Worldender-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E04.Vindicators 3- The Return of Worldender-Bluray-1080p.mkv","size":1164628698,"dateAdded":"2018-10-10T22:30:23.485467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6077000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2175},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Total Rickall-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E04.Total Rickall-Bluray-1080p.mkv","size":1164014374,"dateAdded":"2018-10-10T22:30:23.515269Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6429000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2176},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Whirly Dirly Conspiracy-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E05.The Whirly Dirly Conspiracy-Bluray-1080p.mkv","size":1164456455,"dateAdded":"2018-10-10T22:30:23.57113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6272000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2178},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Get Schwifty-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E05.Get Schwifty-Bluray-1080p.mkv","size":1164057403,"dateAdded":"2018-10-10T22:30:23.599244Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6090000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2179},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Rest and Ricklaxation-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E06.Rest and Ricklaxation-Bluray-1080p.mkv","size":1164935884,"dateAdded":"2018-10-10T22:30:23.65613Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6204000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2181},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Ricks Must Be Crazy-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E06.The Ricks Must Be Crazy-Bluray-1080p.mkv","size":1163970121,"dateAdded":"2018-10-10T22:30:23.683853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6288000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2182},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Ricklantis Mixup-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E07.The Ricklantis Mixup-Bluray-1080p.mkv","size":1164569738,"dateAdded":"2018-10-10T22:30:23.742921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6333000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2184},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Big Trouble in Little Sanchez-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E07.Big Trouble in Little Sanchez-Bluray-1080p.mkv","size":1163996601,"dateAdded":"2018-10-10T22:30:23.771931Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6119000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2185},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Morty's Mind Blowers-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E08.Morty's Mind Blowers-Bluray-1080p.mkv","size":1164479423,"dateAdded":"2018-10-10T22:30:23.828302Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6380000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2187},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Interdimensional Cable 2- Tempting Fate-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E08.Interdimensional Cable 2- Tempting Fate-Bluray-1080p.mkv","size":1164056794,"dateAdded":"2018-10-10T22:30:23.858015Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6242000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2188},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The ABC's of Beth-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E09.The ABC's of Beth-Bluray-1080p.mkv","size":1165004021,"dateAdded":"2018-10-10T22:30:23.92014Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6314000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2190},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Look Who's Purging Now-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E09.Look Who's Purging Now-Bluray-1080p.mkv","size":1163529806,"dateAdded":"2018-10-10T22:30:23.950099Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6379000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2191},{"seriesId":2,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Rickchurian Mortydate-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 03\/S03E10.The Rickchurian Mortydate-Bluray-1080p.mkv","size":1164981214,"dateAdded":"2018-10-10T22:30:24.005416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6165000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2193},{"seriesId":2,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Wedding Squanchers-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 02\/S02E10.The Wedding Squanchers-Bluray-1080p.mkv","size":1163818018,"dateAdded":"2018-10-10T22:30:24.032643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6091000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2194},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":1172817177,"dateAdded":"2019-11-02T10:27:33.677596Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6460000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9891},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Lawnmower Dog-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E02.Lawnmower Dog-Bluray-1080p.mkv","size":1174360186,"dateAdded":"2019-11-02T10:27:40.515989Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9892},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Anatomy Park-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E03.Anatomy Park-Bluray-1080p.mkv","size":1172643595,"dateAdded":"2019-11-02T10:27:47.047518Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9893},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E04.M. Night Shaym-Aliens!-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E04.M. Night Shaym-Aliens!-Bluray-1080p.mkv","size":1172758630,"dateAdded":"2019-11-02T10:27:56.690992Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6775000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9894},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Meeseeks and Destroy-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E05.Meeseeks and Destroy-Bluray-1080p.mkv","size":1174275694,"dateAdded":"2019-11-02T10:28:03.601754Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6750000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9895},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Rick Potion #9-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E06.Rick Potion #9-Bluray-1080p.mkv","size":1174063528,"dateAdded":"2019-11-02T10:28:13.643158Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9896},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Raising Gazorpazorp-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E07.Raising Gazorpazorp-Bluray-1080p.mkv","size":1171760734,"dateAdded":"2019-11-02T10:28:19.961063Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6450000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9897},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Rixty Minutes-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E08.Rixty Minutes-Bluray-1080p.mkv","size":1173290585,"dateAdded":"2019-11-02T10:28:29.337437Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6380000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9898},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Something Ricked This Way Comes-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E09.Something Ricked This Way Comes-Bluray-1080p.mkv","size":1173025407,"dateAdded":"2019-11-02T10:28:34.777431Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9899},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Close Rick-Counters of the Rick Kind-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E10.Close Rick-Counters of the Rick Kind-Bluray-1080p.mkv","size":1172395588,"dateAdded":"2019-11-02T10:28:43.618284Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9900},{"seriesId":2,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Ricksy Business-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 01\/S01E11.Ricksy Business-Bluray-1080p.mkv","size":1174059916,"dateAdded":"2019-11-02T10:28:49.675596Z","releaseGroup":"DAA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6340000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9901},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Edge of Tomorty - Rick Die Rickpeat-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E01.Edge of Tomorty - Rick Die Rickpeat-Bluray-1080p.mkv","size":2196754962,"dateAdded":"2020-09-25T15:40:42.339681Z","sceneName":"Rick.and.Morty.S04E01.Edge.of.Tomorty.Rick.Die.Rickpeat.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15603},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Old Man and the Seat-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E02.The Old Man and the Seat-Bluray-1080p.mkv","size":2224654719,"dateAdded":"2020-09-25T15:42:42.450591Z","sceneName":"Rick.and.Morty.S04E02.The.Old.Man.and.the.Seat.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15604},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E03.One Crew Over the Crewcoo's Morty-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E03.One Crew Over the Crewcoo's Morty-Bluray-1080p.mkv","size":2205785294,"dateAdded":"2020-09-25T15:44:37.574812Z","sceneName":"Rick.and.Morty.S04E03.One.Crew.Over.the.Crewcoo's.Morty.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15605},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Claw and Hoarder - Special Ricktim's Morty-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E04.Claw and Hoarder - Special Ricktim's Morty-Bluray-1080p.mkv","size":2184707004,"dateAdded":"2020-09-25T15:46:32.038501Z","sceneName":"Rick.and.Morty.S04E04.Claw.and.Hoarder.Special.Ricktim's.Morty.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15606},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Rattlestar Ricklactica-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E05.Rattlestar Ricklactica-Bluray-1080p.mkv","size":2114824359,"dateAdded":"2020-09-25T15:48:27.48427Z","sceneName":"Rick.and.Morty.S04E05.Rattlestar.Ricklactica.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15607},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Never Ricking Morty-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E06.Never Ricking Morty-Bluray-1080p.mkv","size":2090052059,"dateAdded":"2020-09-25T15:50:22.092785Z","sceneName":"Rick.and.Morty.S04E06.Never.Ricking.Morty.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15608},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Promortyus-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E07.Promortyus-Bluray-1080p.mkv","size":2075381935,"dateAdded":"2020-09-25T15:52:19.261503Z","sceneName":"Rick.and.Morty.S04E07.Promortyus.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15609},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The Vat of Acid Episode-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E08.The Vat of Acid Episode-Bluray-1080p.mkv","size":2207109172,"dateAdded":"2020-09-25T15:54:13.110628Z","sceneName":"Rick.and.Morty.S04E08.The.Vat.of.Acid.Episode.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15610},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Childrick of Mort-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E09.Childrick of Mort-Bluray-1080p.mkv","size":2196504647,"dateAdded":"2020-09-25T15:56:08.785403Z","sceneName":"Rick.and.Morty.S04E09.Childrick.of.Mort.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15611},{"seriesId":2,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Star Mort - Rickturn of the Jerri-Bluray-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 04\/S04E10.Star Mort - Rickturn of the Jerri-Bluray-1080p.mkv","size":2223186171,"dateAdded":"2020-09-25T15:58:02.413662Z","sceneName":"Rick.and.Morty.S04E10.Star.Mort.Rickturn.of.the.Jerri.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15612},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Mort Dinner Rick Andre-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E01.Mort Dinner Rick Andre-WEBDL-1080p.mkv","size":879592100,"dateAdded":"2021-06-21T04:00:08.878005Z","sceneName":"Rick.and.Morty.S05E01.Mort.Dinner.Rick.Andre.1080p.AS.WEBRip.AAC2.0.H264-BTN[rartv]","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18451},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Mortyplicity-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E02.Mortyplicity-WEBDL-1080p.mkv","size":1135251150,"dateAdded":"2021-06-28T13:20:38.90064Z","sceneName":"Rick.and.Morty.S05E02.1080p.WEB.H264-EMPATHY[rartv]","releaseGroup":"EMPATHY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6393145,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:19","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18573},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E03.A Rickconvenient Mort-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E03.A Rickconvenient Mort-WEBDL-1080p.mkv","size":1145097854,"dateAdded":"2021-07-05T10:09:13.545264Z","sceneName":"Rick.and.Morty.S05E03.1080p.WEB.H264-EMPATHY[rartv]","releaseGroup":"EMPATHY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6387958,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18611},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Rickdependence Spray-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E04.Rickdependence Spray-WEBDL-1080p.mkv","size":1142555279,"dateAdded":"2021-07-12T07:41:52.934972Z","sceneName":"Rick.and.Morty.S05E04.1080p.WEB.H264-EMPATHY[TGx]","releaseGroup":"EMPATHY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6468921,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18636},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Amortycan Grickfitti-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E05.Amortycan Grickfitti-WEBDL-1080p.mkv","size":803989930,"dateAdded":"2021-07-19T14:35:14.726711Z","sceneName":"Rick.and.Morty.S05E05.Amortycan.Grickfitti.1080p.AMZN.WEB-DL.DDP5.1.H.264-RICKC137","releaseGroup":"RICKC137","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4145281,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18681},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Rick & Morty's Thanksploitation Spectacular-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E06.Rick & Morty's Thanksploitation Spectacular-WEBDL-1080p.mkv","size":1000898989,"dateAdded":"2021-07-27T08:19:31.272829Z","sceneName":"Rick.and.Morty.S05E06.1080p.WEB.h264-KOGi[rartv]","releaseGroup":"KOGi","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5039090,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18704},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Gotron Jerrysis Rickvangelion-WEBDL-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E07.Gotron Jerrysis Rickvangelion-WEBDL-1080p.mkv","size":829620211,"dateAdded":"2021-08-02T13:34:47.874914Z","sceneName":"[zooqle.com] Rick and Morty S05E07 Gotron Jerrysis Rickvangelion 1080p AMZN WEB-DL DDP5 1... [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4388210,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18734},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Rickternal Friendshine of the Spotless Mort-WEBRip-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E08.Rickternal Friendshine of the Spotless Mort-WEBRip-1080p.mkv","size":704892542,"dateAdded":"2021-08-09T03:41:04.045736Z","sceneName":"Rick.and.Morty.S05E08.1080p.WEBRip.x264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18810},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Forgetting Sarick Mortshall-WEBRip-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E09.Forgetting Sarick Mortshall-WEBRip-1080p.mkv","size":640302895,"dateAdded":"2021-09-06T03:53:11.432351Z","sceneName":"Rick.and.Morty.S05E09.1080p.WEBRip.x264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18910},{"seriesId":2,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Rickmurai Jack-WEBRip-1080p.mkv","path":"\/tv\/Rick and Morty\/Season 05\/S05E10.Rickmurai Jack-WEBRip-1080p.mkv","size":840300642,"dateAdded":"2021-09-06T04:03:41.682913Z","sceneName":"Rick.and.Morty.S05E10.1080p.WEBRip.x264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18911}],"queue":[]},"5":{"series":{"title":"Magical Girl Lyrical Nanoha","alternateTitles":[{"title":"Magical Girl Lyrical Nanoha","sceneSeasonNumber":1},{"title":"Magical Girl Lyrical Nanoha A`s","sceneSeasonNumber":2},{"title":"Mahou Shoujo Lyrical Nanoha","sceneSeasonNumber":1},{"title":"Mahou Shoujo Lyrical Nanoha A`s","sceneSeasonNumber":2},{"title":"Magical Girl Lyrical Nanoha StrikerS","sceneSeasonNumber":3},{"title":"Mahou Shoujo Lyrical Nanoha StrikerS","sceneSeasonNumber":3},{"title":"Magical Girl Lyrical Nanoha Vivid","sceneSeasonNumber":4},{"title":"Mahou Shoujo Lyrical Nanoha Vivid","sceneSeasonNumber":4}],"sortTitle":"magical girl lyrical nanoha","status":"ended","ended":true,"overview":"Yuuno Scraia is a mage from a distant planet working to fix the problem he started when Jewel Seeds were accidentally spread around the world. In a failed attempt to seal a seed properly, he winds up on Earth in the form of a ferret. However, his battle with the seeds did not end upon reaching the Earth and he needs somebody else's help to seal the seeds for him. Takamachi Nanoha hears his telepathic cries for help and comes to his rescue. When she is given a pearl known as the Raging Heart she is able to transform into Magical Girl Lyrical Nanoha and wield a staff to fend off the evil that lies within the Seeds. In order to help Yuuno complete his mission, she needs to seal all 21 Jewel Seeds away, but Fate may be playing a hand in the matter to prevent Nanoha's goals.","previousAiring":"2016-12-16T15:00:00Z","network":"CTC (JA)","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/8\/banner.jpg?lastWrite=637100123899193610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81115-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/8\/poster.jpg?lastWrite=637308648800088900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81115-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/8\/fanart.jpg?lastWrite=637100123897393640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81115-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":18,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-12-24T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4625237992,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-12-24T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4626557048,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2007-09-23T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7796666441,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2015-06-18T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6590035262,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2016-12-16T15:00:00Z","episodeFileCount":0,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2004,"path":"\/tv\/Magical Girl Lyrical Nanoha","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":81115,"tvRageId":0,"tvMazeId":31381,"firstAired":"2004-10-02T00:00:00Z","seriesType":"standard","cleanTitle":"magicalgirllyricalnanoha","imdbId":"tt0808082","titleSlug":"magical-girl-lyrical-nanoha","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Anime"],"tags":[],"added":"2017-12-06T09:23:59.7299106Z","ratings":{"votes":257,"value":8.9},"statistics":{"seasonCount":5,"episodeFileCount":64,"episodeCount":76,"totalEpisodeCount":94,"sizeOnDisk":23638496743,"percentOfEpisodes":84.21052631578948},"id":8},"episodes":[{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Triangle Heart: Sazanami Joshiry\u014d ~ Spring Sazanami","airDate":"2000-08-28","airDateUtc":"2000-08-27T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19338},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Triangle Heart: Sazanami Joshiry\u014d ~ Yu Hi Summer","airDate":"2001-01-12","airDateUtc":"2001-01-11T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19339},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Triangle Heart: Sazanami Joshiry\u014d ~ Fragrant Breeze Fall","airDate":"2001-08-24","airDateUtc":"2001-08-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19340},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Triangle Heart: Sazanami Joshiry\u014d ~ Winter Pledge (Part 1)","airDate":"2002-01-11","airDateUtc":"2002-01-10T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19341},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Triangle Heart: Sazanami Joshiry\u014d ~ Winter Pledge (Part 2)","airDate":"2002-04-26","airDateUtc":"2002-04-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19342},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Triangle Heart ~Sweet Songs Forever~ (Part 1)","airDate":"2003-07-24","airDateUtc":"2003-07-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19343},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Triangle Heart ~Sweet Songs Forever~ (Part 2)","airDate":"2003-08-27","airDateUtc":"2003-08-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19344},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Triangle Heart ~Sweet Songs Forever~ (Part 3)","airDate":"2003-11-27","airDateUtc":"2003-11-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19345},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Triangle Heart ~Sweet Songs Forever~ (Part 4)","airDate":"2003-12-26","airDateUtc":"2003-12-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19346},{"seriesId":8,"episodeFileId":1897,"seasonNumber":1,"episodeNumber":1,"title":"Is This What You Call a \"Mysterious Encounter?\"","airDate":"2004-10-02","airDateUtc":"2004-10-01T15:00:00Z","overview":"When Takamachi Nanoha, a 3rd grader elementary school girl, finds a wounded ferret and takes care of it she finds out she has magical powers and helps it fight a monster that attacked it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2600},{"seriesId":8,"episodeFileId":1901,"seasonNumber":1,"episodeNumber":2,"title":"My Magical Incantation is \"Lyrical\"?","airDate":"2004-10-09","airDateUtc":"2004-10-08T15:00:00Z","overview":"After Nanoha transformed into a magical girl she and Yuuno fight the Jewel Seed and win. Yuuno tells Nanoha about him, the Jewel Seeds and her new magical powers when a new Jewel Seed appears and they go fight it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2601},{"seriesId":8,"episodeFileId":1906,"seasonNumber":1,"episodeNumber":3,"title":"This Town's in a Lot of Danger?","airDate":"2004-10-16","airDateUtc":"2004-10-15T15:00:00Z","overview":"Nanoha is exhausted from living her life as a normal girl during the day, and her magical girl life at night, but she has managed to get five Jewel Seeds. When a boy on her father's soccer team activates a Jewel Seed, it is up to Nanoha to save the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2602},{"seriesId":8,"episodeFileId":1910,"seasonNumber":1,"episodeNumber":4,"title":"A Rival!? Another Magical Girl!","airDate":"2004-10-23","airDateUtc":"2004-10-22T15:00:00Z","overview":"Suzaka invites Nanoha and Arisa over for a tea party. However, it is interupted for Nanoha when a jewel seed is activated. A mysterious black mage girl comes to claim the Jewel Seed, is she friend or foe?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2603},{"seriesId":8,"episodeFileId":1913,"seasonNumber":1,"episodeNumber":5,"title":"This is a Town of Hot Water, Uminari Hot Springs!","airDate":"2004-10-30","airDateUtc":"2004-10-29T15:00:00Z","overview":"Fate and her familiar Arf challenge Nanoha at a hot spring.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2604},{"seriesId":8,"episodeFileId":1918,"seasonNumber":1,"episodeNumber":6,"title":"Feelings that Can't Be Understood?","airDate":"2004-11-06","airDateUtc":"2004-11-05T15:00:00Z","overview":"Arisa suspects that Nanoha is hiding something.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2605},{"seriesId":8,"episodeFileId":1922,"seasonNumber":1,"episodeNumber":7,"title":"Is This a Third Magician?","airDate":"2004-11-13","airDateUtc":"2004-11-12T15:00:00Z","overview":"Fate's mother, the real villain, is revealed just as the Time-Space Administration Bureau arrives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2606},{"seriesId":8,"episodeFileId":1926,"seasonNumber":1,"episodeNumber":8,"title":"There's A Really Big Crisis?","airDate":"2004-11-20","airDateUtc":"2004-11-19T15:00:00Z","overview":"Nanoha joins with the Time-Space Administration Bureau. Y\u016bno reveals his human form to Nanoha.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2607},{"seriesId":8,"episodeFileId":1930,"seasonNumber":1,"episodeNumber":9,"title":"The Decisive Battle Above the Ocean!","airDate":"2004-11-27","airDateUtc":"2004-11-26T15:00:00Z","overview":"Nanoha ignores orders and tries to help Fate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2608},{"seriesId":8,"episodeFileId":1933,"seasonNumber":1,"episodeNumber":10,"title":"Oaths of the Heart","airDate":"2004-12-04","airDateUtc":"2004-12-03T15:00:00Z","overview":"Arf is thrown out by Precia and joins Nanoha. Nanoha visits her friends and family, and sorts everything out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2609},{"seriesId":8,"episodeFileId":1938,"seasonNumber":1,"episodeNumber":11,"title":"Memories Beyond Time","airDate":"2004-12-11","airDateUtc":"2004-12-10T15:00:00Z","overview":"Nanoha and Fate battle for all the Jewel Seeds, and Fate's origin is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2610},{"seriesId":8,"episodeFileId":1942,"seasonNumber":1,"episodeNumber":12,"title":"When Our Fate is Sealed","airDate":"2004-12-18","airDateUtc":"2004-12-17T15:00:00Z","overview":"In the final battle, the TSAB march on the Garden of Time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2611},{"seriesId":8,"episodeFileId":1945,"seasonNumber":1,"episodeNumber":13,"title":"Call My Name","airDate":"2004-12-25","airDateUtc":"2004-12-24T15:00:00Z","overview":"Nanoha and Y\u016bno say their farewells to the TSAB and they both head home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2612},{"seriesId":8,"episodeFileId":1898,"seasonNumber":2,"episodeNumber":1,"title":"The Beginning Comes Suddenly","airDate":"2005-10-02","airDateUtc":"2005-10-01T15:00:00Z","overview":"Nanoha is ambushed by Vita for her Linker Core.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2613},{"seriesId":8,"episodeFileId":1902,"seasonNumber":2,"episodeNumber":2,"title":"Once Again, the Storms of Battle","airDate":"2005-10-09","airDateUtc":"2005-10-08T15:00:00Z","overview":"Nanoha and Fate fight the much stronger Wolkenritter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2614},{"seriesId":8,"episodeFileId":1905,"seasonNumber":2,"episodeNumber":3,"title":"Reunion and Relocation!","airDate":"2005-10-16","airDateUtc":"2005-10-15T15:00:00Z","overview":"Raising Heart and Bardiche demand a new and dangerous modification to their design.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2615},{"seriesId":8,"episodeFileId":1909,"seasonNumber":2,"episodeNumber":4,"title":"New Power, Start!","airDate":"2005-10-23","airDateUtc":"2005-10-22T15:00:00Z","overview":"Hayate's condition worsens, and the TSAB corner the Wolkenritter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2616},{"seriesId":8,"episodeFileId":1914,"seasonNumber":2,"episodeNumber":5,"title":"It Was a Small Wish (Part One)","airDate":"2005-10-30","airDateUtc":"2005-10-29T15:00:00Z","overview":"A masked man appears to help the Wolkenritter, whose artificial nature is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2617},{"seriesId":8,"episodeFileId":1917,"seasonNumber":2,"episodeNumber":6,"title":"It Was a Small Wish (Part Two)","airDate":"2005-11-06","airDateUtc":"2005-11-05T15:00:00Z","overview":"Hayate's love has given the Wolkenritter emotion, and though she says not to hurt anyone, they ignore this in order to protect her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2618},{"seriesId":8,"episodeFileId":1921,"seasonNumber":2,"episodeNumber":7,"title":"With the Broken Past and Present","airDate":"2005-11-13","airDateUtc":"2005-11-12T15:00:00Z","overview":"Fate and Nanoha again confront Signum and Vita, trying to get them to open up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2619},{"seriesId":8,"episodeFileId":1925,"seasonNumber":2,"episodeNumber":8,"title":"The Heartbreaking Decision and the Courageous Choice","airDate":"2005-11-20","airDateUtc":"2005-11-19T15:00:00Z","overview":"Nanoha and Fate meet Hayate, and the TSAB realize that the Book of Darkness is going to kill her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2620},{"seriesId":8,"episodeFileId":1929,"seasonNumber":2,"episodeNumber":9,"title":"Christmas Eve","airDate":"2005-11-27","airDateUtc":"2005-11-26T15:00:00Z","overview":"While Chrono researches Graham, the masked man- well, two of him- complete the Book of Darkness at great cost and frame Nanoha and Fate for the crime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2621},{"seriesId":8,"episodeFileId":1934,"seasonNumber":2,"episodeNumber":10,"title":"Destiny","airDate":"2005-12-04","airDateUtc":"2005-12-03T15:00:00Z","overview":"Hayate is engulfed by the Book's power. Chrono confronts Graham on the past and gets a new weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2622},{"seriesId":8,"episodeFileId":1937,"seasonNumber":2,"episodeNumber":11,"title":"A Gift for Christmas Eve","airDate":"2005-12-11","airDateUtc":"2005-12-10T15:00:00Z","overview":"Fate faces her dreams up against reality, while Nanoha battles the Book of Darkness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2623},{"seriesId":8,"episodeFileId":1941,"seasonNumber":2,"episodeNumber":12,"title":"Night's End, Journey's End","airDate":"2005-12-18","airDateUtc":"2005-12-17T15:00:00Z","overview":"Wolkenritter, Nanoha, Fate, Hayate and TSAB alike team up against the final enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2624},{"seriesId":8,"episodeFileId":13349,"seasonNumber":2,"episodeNumber":13,"title":"Stand By, Ready","airDate":"2005-12-25","airDateUtc":"2005-12-24T15:00:00Z","overview":"Although the danger is averted, the threat to Hayate's life remains. In view of this, Reinforce makes a fateful choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17927},{"seriesId":8,"episodeFileId":1899,"seasonNumber":3,"episodeNumber":1,"title":"Wing to the Sky","airDate":"2007-04-02","airDateUtc":"2007-04-01T15:00:00Z","overview":"Subaru Nakajima and Teana Lanster are taking a test to increase their rank from C to B. During the test, Nanoha, Fate, Hayate, and Rein observe their progress. Near the end of the test, Teana injures her ankle, but Subaru has a plan to complete the test in time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2626},{"seriesId":8,"episodeFileId":1903,"seasonNumber":3,"episodeNumber":2,"title":"Riot Force 6","airDate":"2007-04-09","airDateUtc":"2007-04-08T15:00:00Z","overview":"Subaru and Teana are informed that they have failed their promotion exam, but are given another chance by Nanoha and Reinforce to take the exam again in a week. In the meantime, they are told about the Sixth Mobile Division, which is a special division about to be formed and led by Nanoha, Fate, and Hayate. Erio and Caro make an appearance and meet for the first time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2627},{"seriesId":8,"episodeFileId":1907,"seasonNumber":3,"episodeNumber":3,"title":"Gathering of Troops","airDate":"2007-04-16","airDateUtc":"2007-04-15T15:00:00Z","overview":"Hayate's dream of this new unit has finally been realized and the training begins for the new recruits. New characters are introduced which gives insight to the new villan's plot of the Lost Logia named Relic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2628},{"seriesId":8,"episodeFileId":1911,"seasonNumber":3,"episodeNumber":4,"title":"First Alert","airDate":"2007-04-23","airDateUtc":"2007-04-22T15:00:00Z","overview":"Subaru, Teana, Caro, and Erio are still enduring hard training with Nanoha, but soon their training will be complete. They are given new upgrades to their devices and the power-limiting feature is explained to them. Afterwards, the Sixth Mobile Division must act on their first mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2629},{"seriesId":8,"episodeFileId":1915,"seasonNumber":3,"episodeNumber":5,"title":"Stars and Lightning","airDate":"2007-04-30","airDateUtc":"2007-04-29T15:00:00Z","overview":"This episode marks the first mission of the new teams, as they battle several droids to recover a Lost Logia. Subaru and the others get to test out their new and improved devices. Part of Caro's past is revealed, as well as her true ability. Someone is monitoring them from a lab, gathering data mostly on Fate and Erio, who have a connection with \"Project F\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2630},{"seriesId":8,"episodeFileId":1919,"seasonNumber":3,"episodeNumber":6,"title":"Progress","airDate":"2007-05-07","airDateUtc":"2007-05-06T15:00:00Z","overview":"Stars and Lightning undergo further training, intended to enchance their strengths and skills. Meanwhile, Hayate requests the aid of Major Genya Nakajima's 108th Ground Forces Battalion to assist Mobile Division 6 in investigating smuggling routes. Fate and Shari discover that a Doctor Jail Scaglietti is implanting Jewel Seeds into the Type-3 gadgets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2631},{"seriesId":8,"episodeFileId":1923,"seasonNumber":3,"episodeNumber":7,"title":"Hotel Agusta","airDate":"2007-05-14","airDateUtc":"2007-05-13T15:00:00Z","overview":"The Sixth Mobile Division monitors, and provides security for, the Hotel Augusta, where works of art, including lost logia, are up for auction. Teams Stars and Lightning face gadget drones, and another summoner who has ties to Dr. Scaglietti.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2632},{"seriesId":8,"episodeFileId":1927,"seasonNumber":3,"episodeNumber":8,"title":"Two People's Wishes","airDate":"2007-05-21","airDateUtc":"2007-05-20T15:00:00Z","overview":"Following an averted friendly-fire incident at the Hotel Augusta, Teana throws herself into intensive training. Subaru joins her, and they devise a dangerous strategy for their next combat exercise with Nanoha. Has Nanoha taught them well enough to avoid hurting themselves at all costs?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2633},{"seriesId":8,"episodeFileId":1931,"seasonNumber":3,"episodeNumber":9,"title":"The Important Thing","airDate":"2007-05-28","airDateUtc":"2007-05-27T15:00:00Z","overview":"Teana wakes up in the infirmary many hours after being on the receiving end of Nanoha's attack. She and the other young recruits learn about Nanoha's past and how she almost died several years ago on a mission due to having overextended herself, causing Teana to understand Nanoha's training methods.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2634},{"seriesId":8,"episodeFileId":1935,"seasonNumber":3,"episodeNumber":10,"title":"Riot Force 6's Day Off (First Part)","airDate":"2007-06-04","airDateUtc":"2007-06-03T15:00:00Z","overview":"Subaru, Teana, Caro, and Erio are on their vacation. Suddenly, Erio sensed a magical presence, and follows it. To Erio and Caro's surprise, they see a girl coming out of the sewers. What was attached to that girl's foot was a relic case!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2635},{"seriesId":8,"episodeFileId":1939,"seasonNumber":3,"episodeNumber":11,"title":"Riot Force 6's Day Off (Second Part)","airDate":"2007-06-11","airDateUtc":"2007-06-10T15:00:00Z","overview":"Nanoha, Fate, Shamal, Teana, and Subaru come to aid Caro and Eriol. Eriol, Caro, Teana, and Subaru go down the sewer to investigate. They meet up with Subaru's sister, Ginga, but things take a turn or the worse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2636},{"seriesId":8,"episodeFileId":1943,"seasonNumber":3,"episodeNumber":12,"title":"Numbers","airDate":"2007-06-18","airDateUtc":"2007-06-17T15:00:00Z","overview":"Everyone is under attack, and Hayate comes to help. Lutecia and her companions come to get the relic. When they retrieve the relic case, they open it only to find something unexpected inside.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2637},{"seriesId":8,"episodeFileId":1946,"seasonNumber":3,"episodeNumber":13,"title":"Reason of Life","airDate":"2007-06-25","airDateUtc":"2007-06-24T15:00:00Z","overview":"Explained how Agito joined Lutecia and the reason why Hayate created Mobile Section Six.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2638},{"seriesId":8,"episodeFileId":1947,"seasonNumber":3,"episodeNumber":14,"title":"Mothers & Children","airDate":"2007-07-02","airDateUtc":"2007-07-01T15:00:00Z","overview":"The main point is that Nanoha and Fate have adopted Vivio, the girl with the Relic as their child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2639},{"seriesId":8,"episodeFileId":1948,"seasonNumber":3,"episodeNumber":15,"title":"Sisters & Daughters","airDate":"2007-07-09","airDateUtc":"2007-07-08T15:00:00Z","overview":"The episode explores the lives of the characters as they go about a normal day, training, etc. The episode also gives some insight into the Numbers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2640},{"seriesId":8,"episodeFileId":1949,"seasonNumber":3,"episodeNumber":16,"title":"That Day, Riot Force 6 (First Part)","airDate":"2007-07-16","airDateUtc":"2007-07-15T15:00:00Z","overview":"Sixth Mobile Division is on a mission to protect the TSA Public Press Conference. The commanders, including Nanoha, Fate, Hayate, and Signum are inside without their devices, which they entrust to the forwards. Meanwhile, Jail Scaglietti and his Numbers, also Lutecia and Zest, are working on their plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2641},{"seriesId":8,"episodeFileId":1950,"seasonNumber":3,"episodeNumber":17,"title":"That Day, Riot Force 6 (Second Part)","airDate":"2007-07-23","airDateUtc":"2007-07-22T15:00:00Z","overview":"Sixth Mobile Division is engaged battle with Scaglietti's group of terrorists. Vita is dueling Zest. Nanoha and Fate have just gotten their devices back from the forwards, but at that moment, Subaru felt something wrong about Ginga.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2642},{"seriesId":8,"episodeFileId":1951,"seasonNumber":3,"episodeNumber":18,"title":"Wings, Again","airDate":"2007-07-30","airDateUtc":"2007-07-29T15:00:00Z","overview":"After all the TSA Land Headquarters, including Sixth Mobile Division, is completely defeated by Jail Scaglietti. Many of officers are injured. Vivio and Ginga were captured. Sixth Mobile Division is now unable to be the HQ anymore. Hayate decides to move all the units on to Arthra. It is also revealed that Nakajima family had adopted Ginga and Subaru a long time ago since they still were an experimental Cyborg Type-0 (Initial model of Numbers). Although they still needed the maintenance treatment like the other cyborgs until now, they were still treated kindly as normal girls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2643},{"seriesId":8,"episodeFileId":1952,"seasonNumber":3,"episodeNumber":19,"title":"Cradle","airDate":"2007-08-06","airDateUtc":"2007-08-05T15:00:00Z","overview":"After Subaru recovered from her injuries, she moved onto the plan for Mach Caliber to be powered-up in order to endure her cyborg power. At that time, Scaglietti and his comrades are working on the next step of plan involving power of Vivio. It is also shown that Ginga has become No.13 somehow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2644},{"seriesId":8,"episodeFileId":1953,"seasonNumber":3,"episodeNumber":20,"title":"The Infinite Desire","airDate":"2007-08-13","airDateUtc":"2007-08-12T15:00:00Z","overview":"Jail Scaglietti has awakened Yurikago (aka. The Cradle), the Ancient Belka ultimate weapon which is classed as a Lost Logia. Yurikago is the huge sky ship controlled by the King of Belkan's blood-line, and Vivio, who is apparently the artificial mage that has the genes of Belka King, is needed to make it operational. TSA, with Sixth Mobile Division, are going to stop it. There is also the first movement of No.2, Due, as the spy inside the TSA.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2645},{"seriesId":8,"episodeFileId":1954,"seasonNumber":3,"episodeNumber":21,"title":"The Decisive Battle","airDate":"2007-08-20","airDateUtc":"2007-08-19T15:00:00Z","overview":"From Y\u016bno's research, Yurikago is expected to be unstoppable if it reaches orbit and absorbs the power of two moons. Nanoha and Vita are intruding into Yurikago. Hayate is trying to deal with enormous amounts of gadgets. Fate is on the way to Scaglietti's hideout. Signum and Rein are going to battle Knight Zest and Agito. The forwards are dealing with the ground-attacking enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2646},{"seriesId":8,"episodeFileId":1955,"seasonNumber":3,"episodeNumber":22,"title":"Pain to Pain","airDate":"2007-08-27","airDateUtc":"2007-08-26T15:00:00Z","overview":"Nanoha is on her way to the throne room where Vivio and Quattro are supposed to be. Vita is struggling on her way to the machine room, fighting with gadgets. Fate starts her battles in Scaglietti's HQ with Tre, Sette and Scaglietti himself. Meanwhile, Teana is trapped on her own against the three of the Numbers. Subaru is against Ginga, who was re-programmed, and Caro and Erio are fighting against Gary\u016b and Lutecia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2647},{"seriesId":8,"episodeFileId":1956,"seasonNumber":3,"episodeNumber":23,"title":"Stars Strike","airDate":"2007-09-03","airDateUtc":"2007-09-02T15:00:00Z","overview":"Nanoha reaches Vivio, but Quattro taunts the two, and Vivio activates a rainbow shield, which Quattro calls the Saint's Armor, an extremely powerful shield. Meanwhile, the barrier around the building where Teana is fighting is broken, after Teana somehow managed to survive assaults from three Numbers, and she then planned to completely finish off the three Numbers. Subaru is losing her consciousness after a heavy attack from Ginga, but is recalled by Mach Caliber and some thoughts in her flashback. She then activates her full drive for the final duel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2648},{"seriesId":8,"episodeFileId":1957,"seasonNumber":3,"episodeNumber":24,"title":"Lightning","airDate":"2007-09-10","airDateUtc":"2007-09-09T15:00:00Z","overview":"This episode explains the past about Regius, Zest, with Ginga and Subaru's Mother, and Lutecia's Mother, who were the officers under the command of Zest. Due then appears to assassinate Regius in front of Zest, Zest then destroys her somehow. Erio and Caro manage to overcome Lutecia and Gary\u016b. Fate has troubles fighting her battle, but finally wins because of Erio and Caro's words. The terrorists are finally all captured. The only ones left are Quattro and Yurikago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2649},{"seriesId":8,"episodeFileId":1958,"seasonNumber":3,"episodeNumber":25,"title":"Final Limit","airDate":"2007-09-17","airDateUtc":"2007-09-16T15:00:00Z","overview":"The Final Limiter of the dangerous Blaster Mode of Raising Heart is released. The final battle between Nanoha and Vivio, with Quattro behind, will be finally decided.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2650},{"seriesId":8,"episodeFileId":1959,"seasonNumber":3,"episodeNumber":26,"title":"To The Promised Sky","airDate":"2007-09-24","airDateUtc":"2007-09-23T15:00:00Z","overview":"The last of the terrorists are secured, and Vivio is back to her normal self. Chrono's fleet prepares to destroy the Yurikago. Unfortunately for Nanoha and Hayate, Yurikago goes into self-destruct mode, while locking them in with anti-magic fields and heavy blast doors. Meanwhile, Fate finishes off her work in Scaglietti's lab, just as the whole place starts to cave in. It's a race against time for the Forwards to rescue their mentors. How will it all end?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2651},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Magical Girl Lyrical Nanoha The Movie 1st","airDate":"2010-01-23","airDateUtc":"2010-01-22T15:00:00Z","overview":"Takamachi Nanoha is a normal fourth-grader who feels a little useless and out-of-place with no purpose. Then one day, she saves a ferret, who turns out to be a mage from another planet who came to this planet to search for the jewl seeds. Nanoha agrees to help, but this task gets complicated when another girl arrives to steal them.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2673},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Magical Girl Lyrical Nanoha The Movie 2nd A's","airDate":"2012-07-14","airDateUtc":"2012-07-13T15:00:00Z","overview":"Six months have passed since the events in the previous movie. Fate has returned to Uminari City with Lindy as her legal guardian and is living the life of a normal elementary schoolgirl along with Nanoha and her friends. The reunion between the two new-found friends is cut short, however, when they are assaulted by four ancient magic users who identify themselves as the Wolkenritter. As the motives behind the actions of the Wolkenritter become clear, Nanoha and Fate find themselves in a race against time to stop the reactivation of a highly dangerous artifact known as The Book of Darkness.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2674},{"seriesId":8,"episodeFileId":1896,"seasonNumber":4,"episodeNumber":1,"title":"Sacred Heart","airDate":"2015-04-03","airDateUtc":"2015-04-02T15:00:00Z","overview":"On the magical world of Midchilda, Vivio Takamachi is a 10-year-old girl who lives with her adoptive parents, Nanoha Takamachi and Fate T. Harlown, and goes to school with her friends Corona Timil and Rio Wesley. To celebrate Vivio entering her fourth year of elementary school, Nanoha decides to give her her own rabbit-shaped Intelligent Device, which she decides to name \"Sacred Heart\" or \"Chris\" for short. Using her new device, Vivio transforms into her mage form, taking the adult Sankt Kaiser form she previously used during an incident several years ago, which comes as a surprise to Fate. As Vivio does some late night training with Nanoha, her Strike Arts instructor, Nove Nakajima, hears about a girl going under the name of the Sankt Kaiser Heidi E. S. Ingvalt who has been attacking various people. The next day, after Nove accompanies Vivio to visit her comatose friend, Ixpellia, she is challenged by the self-proclaimed Ingvalt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2652},{"seriesId":8,"episodeFileId":1900,"seasonNumber":4,"episodeNumber":2,"title":"Einhart Stratos","airDate":"2015-04-10","airDateUtc":"2015-04-09T15:00:00Z","overview":"After questioning her about Vivio and Ixpellia, Ingvalt battles against Nove, determined to prove her own strength. Despite winning the match, Ingvalt, who, like Vivio, is a child using an adult form to battle, passes out from exhaustion. Recovered by Nove's sister Subaru and her partner Teana Lanster, Ingvalt, who is revealed to be a middle school student named Einhart Stratos, is examined by doctors, who reveal she possesses memories of the Sankt Kaiser Claus G.S. Ingvalt and has inherited his Belkan fighting style. As Nove learns more about Einhart and her ancestor's past, Vivio and her friends brush on the history of Sankt Kaiser in preparation for a meeting with Einhart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2653},{"seriesId":8,"episodeFileId":1904,"seasonNumber":4,"episodeNumber":3,"title":"True Feelings","airDate":"2015-04-17","airDateUtc":"2015-04-16T15:00:00Z","overview":"Nove invites Einhart to join Vivio in her Strike Arts training, having them participate in hand-to-hand sparring. Managing to take on Vivio's attacks and beat her with a single strike, Einhart feels disappointed that Vivio wasn't being serious, so Nove arranges a proper match for them the following week. As Vivio becomes downhearted that she couldn't live up to Einhart's expectations, she decides to train hard over the next week in order to become stronger. On the day of the match, Vivio brings out her full strength against Einhart, but once again loses to Einhart's amazing strength, though not before leaving a delayed counterattack. Despite still feeling she isn't the girl her ancestor wanted to meet, Einhart finds herself drawn to Vivio and decides to become friends with her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2654},{"seriesId":8,"episodeFileId":1908,"seasonNumber":4,"episodeNumber":4,"title":"Brand New Heart","airDate":"2015-04-24","airDateUtc":"2015-04-23T15:00:00Z","overview":"Following school exams, Einhart is invited to join Vivio and the others to a special camping trip to Lutecia Alpine's residence in Carnaaji. The girls start off the trip with a swim in the river, where Einhart learns how to control her strength whilst in water. Afterwards, they have lunch, where Vivio tells Einhart about how Nove became her instructor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2655},{"seriesId":8,"episodeFileId":1912,"seasonNumber":4,"episodeNumber":5,"title":"Surprise Attack","airDate":"2015-05-01","airDateUtc":"2015-04-30T15:00:00Z","overview":"Einhart shares with Vivio about the memories passed down to her by Klaus, including all the happy memories spent with Vivio's ancestor, Sankt Kaiser Olivie Segbrecht, whose death drove Klaus to try and obtain true strength. Later, the girls get to watch Nanoha, Fate, and the other top mages in intense mock battles, which encourages Vivio and Einhart to resume training, while Corona receives her own intelligent device from Lutecia. Afterwards, everyone gets to enjoy the residence's hot springs, where Sein, one of Nove's sisters, attempts to get up to mischief but is stopped in her tracks when Rio's adult mage form activates in self-defense. Once the matter is settle with, Einhart becomes excited about a joint mock battle with the top mages taking place the next day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2656},{"seriesId":8,"episodeFileId":1916,"seasonNumber":4,"episodeNumber":6,"title":"Matchup Duel","airDate":"2015-05-08","airDateUtc":"2015-05-07T15:00:00Z","overview":"The mock battle splits the mages into two teams; the Blue Team, featuring Vivio, Nanoha, Subaru, Rio, Lutecia, and Erio Mondial, and the Red Team, consisting of Fate, Einhart, Corona, Teana, Nove, and Caro Ru Lushe. As everyone focuses on their chosen opponent, Corona uses her new device to summon a Golem to fight against Rio, though still struggles against her fighting style. Believing the Blue Team's strategy revolves around Nanoha, Teana sends in Einhart who, despite managing to break out of her bind with a move she learned from Nove, is ultimately overwhelmed by Nanoha's power. The Blue Team soon carry out their plan, facing against the Red team's members two-on-one, while Teana prepares a counterattack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2657},{"seriesId":8,"episodeFileId":1920,"seasonNumber":4,"episodeNumber":7,"title":"New Stage!","airDate":"2015-05-15","airDateUtc":"2015-05-14T15:00:00Z","overview":"With two fighters eliminated on each side, Nanoha and Teana launch Starlight Breakers at each other, the aftermath leaving just Vivio and Einhart remaining in the game, ultimately ending in a double knockout. After a few more mock battles featuring different matchups, Lutecia tells Einhart about the Inter-Middle Championship, a tournament for young mages which everyone is interested in entering. Wanting to fight more with Vivio, Einhart decides to enter the tournament as well. With Einhart needing a device in order to qualify, Lutecia gets into contact with Hayate Yagami, who offers to make a device that suits her fighting style. In the meantime, Nove begins training Vivio and the others for the tournament, with many strong fighters looking to enter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2658},{"seriesId":8,"episodeFileId":1924,"seasonNumber":4,"episodeNumber":8,"title":"Rival!","airDate":"2015-05-22","airDateUtc":"2015-05-21T15:00:00Z","overview":"Vivio has a sparring match against one of the other tournament combatants, Chantez Apinion, using Chris' Contact Mode to block each of her attacks but becoming caught off guard by Chantez's special technique. Meanwhile, Hayate and her team finish completion on Einhart's new device, which she decides to call Asteon or Teo for short. Afterwards, each of the girls begin their individual training for the tournament, with Vivio studying under Nove, while Chris approaches Nanoha on how better to protect Vivio. As the day of the tournament qualifiers soon arrive, Vivio is introduced to Vita and Zafira's understudy, Miura Rinaldi, with both of them clearing their qualification rounds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2659},{"seriesId":8,"episodeFileId":1928,"seasonNumber":4,"episodeNumber":9,"title":"Intermiddle Championship","airDate":"2015-05-29","airDateUtc":"2015-05-28T15:00:00Z","overview":"The star players soon have their qualifying matches, with Els Tasmin facing off against former champion Harry Tribeca. Els hits Harry with her chains, but Harry manages to break her arm free and deal heavy damage in return. Els attempts a counterattack, but Harry uses her own chains against her to win the match. After all of Team Nakajima make it through the qualifying rounds, Miura faces off against Mikaya Chevelle, the one who trained Einhart for the tournament. Despite taking a lot of damage from Mikaya's sword attacks, Miura brings out the full might of her Star Saber device to defeat Mikaya with a powerful kick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2660},{"seriesId":8,"episodeFileId":1932,"seasonNumber":4,"episodeNumber":10,"title":"For Victory!","airDate":"2015-06-05","airDateUtc":"2015-06-04T15:00:00Z","overview":"With the third round approaching, Vivio is scheduled to fight against Miura while Einhart and Corona must face against each other. Before that, Chantez faces off against Victoria Dahlgrun, managing to land some attacks with her clone magic. However, Victoria remains resistant and overcomes Chantez's clones, winning the match. Meanwhile, Corona prepares to face off against Einhart, preparing a risky technique that Nove suggests she only use as a last resort. As the match begins, Corona uses a technique against Einhart in order to create an opportunity to make her golem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2661},{"seriesId":8,"episodeFileId":1936,"seasonNumber":4,"episodeNumber":11,"title":"Hegemon's Fist, Creator's Desire","airDate":"2015-06-12","airDateUtc":"2015-06-11T15:00:00Z","overview":"After a fierce battle, Einhart defeats Corona.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2662},{"seriesId":8,"episodeFileId":1940,"seasonNumber":4,"episodeNumber":12,"title":"Conclusion's Purpose","airDate":"2015-06-19","airDateUtc":"2015-06-18T15:00:00Z","overview":"Einhart feels bad after defeating Corona and her previous opponents, but Nove teaches her the meaning of winning and losing in a competition. Elsewhere, Vivio and friends prepare for their own upcoming matches.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":2663},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Mahou Shoujo Lyrical Nanoha ViVid Recap","airDate":"2015-06-26","airDateUtc":"2015-06-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2675},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":1,"title":"Fuuka Reventon","airDate":"2016-10-01","airDateUtc":"2016-09-30T15:00:00Z","overview":"After receiving some injuries following a fight with some punks, orphan Fuuka Reventon is helped out by Einhart, who invites her to come to the Nakajima Gym afterwards. Noticing Fuuka's potential as a martial artist, Einhart offers her a part-time job at the gym. Despite having a hatred of martial arts after losing to her former friend, Rinne Berlinetta, Fuuka accepts the job and starts off as a sparring partner for Vivio and her friends, becoming surprised by how strong they are. Hearing that Vivio is the one who broke Rinne's winning streak, Fuuka faces her in another sparring match, deciding to stop running away and aim to become stronger.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":17939},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":2,"title":"Nakajima Gym","airDate":"2016-10-08","airDateUtc":"2016-10-07T15:00:00Z","overview":"Fuuka gets used to working at the Nakajima Gym while also receiving martial arts training from Einhart and her friends. The girls soon begin training using Power Mode, which lets them transform into adults, discovering that Fuuka possesses a high level of magic. After receiving invites to watch Rinne's semi-final match, Nove shows Fuuka footage of Rinne's previous battles, with Fuuka revealing her feud with Rinne spawned from her insulting the ability of one of her opponents.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":17940},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":3,"title":"Challenge","airDate":"2016-10-15","airDateUtc":"2016-10-14T15:00:00Z","overview":"The girls gather at the arena to watch Rinne's semi-final match against Carrie Tercel, which ends as soon as it begins due to Rinne's unrelenting battle style. Following her match, as Rinne states her determination to beat Einhart, Vivio, and Miura in what she claims will be her last Under 15 tournament, she becomes surprised when Fuuka announces her intention to join the tournament too. Afterwards, Fuuka and Vivio question Rinne over why she is pushing herself to perform martial arts, to which she responds violently, stating her determination to prove her strength at the tournament.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":17941},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":4,"title":"Rinne Berlinetta","airDate":"2016-10-22","airDateUtc":"2016-10-21T15:00:00Z","overview":"Einhart's friend Yumina Englave informs Fuuka about the circumstances that led to Rinne's current demeanor. Four years ago, Rinne was adopted into the Berlinetta family, receiving the device Scuderia made by her adoptive grandfather. However, as Rinne became popular in her new school due to her athletic potential, she became the target of bullying. Then one day, the bullies became more violent towards Rinne, mistreating her device and preventing her from answering an emergency call as her grandfather ended up passing away. Blaming herself for her grandfather's death, Rinne took brutal revenge on her bullies, becoming determined to become stronger.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":17942},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":5,"title":"Huracan","airDate":"2016-10-29","airDateUtc":"2016-10-28T15:00:00Z","overview":"Following the incident, which was settled outside of court, Rinne ran away from home but was kidnapped by thugs, led by the brother of one of the bullies she had beaten up. Just then, she was rescued by a woman named Jill Stolas, who became her martial arts coach, helping her to become stronger. Having heard everything from Yumina, Fuuka, satisfied that Rinne's circumstances are her own but still wanting to find a way to help her, decides that she wants to beat her and set her straight. A few days later, Fuuka finally receives her device, Huracan, and begins more advanced sparring against various fighters with tournament experience.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":17943},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":6,"title":"Winter Cup","airDate":"2016-11-05","airDateUtc":"2016-11-04T15:00:00Z","overview":"After Fuuka manages to place first in her qualifiers, the tournament placements are announced, in which Miura is scheduled to fight against Rinne during the first round. On the night before the tournament, Miura spends the night at Fuuka's place, stating her desire to once again fight Vivio before she graduates from the Under 15 category. As the tournament begins, both Vivio and Fuuka win their first round matches with swift knockouts. During the next match, Miura gets an early advantage against Rinne, knocking her down twice with an array of strikes and counter blows. However, as Miura brings out her Sword Draw technique in the hopes of getting a knockout blow, Vivio realises that following her defeat in the Summer Cup, Rinne has been strengthening her defense. Managing to withstand Miura's attacks, Rinne delivers a powerful blow that shatters Miura's ribs, forcing Nove to throw in the towel.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":17944},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":7,"title":"Vivio Takamachi","airDate":"2016-11-12","airDateUtc":"2016-11-11T15:00:00Z","overview":"After Einhart quickly wins her first round match, the girls check up on Miura, who is secretly upset about her failure. As Vivio decides to spend the night training, she and the others recall how she and Nove first started training and everything that had happened since. On the next day of the tournament, Vivio faces off against Rinne, delivering several quick jabs. Rinne soon starts delivering a powerful counterattack, but Vivio manages to break free, stating her determination to win and perhaps become friends with her.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":17945},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":8,"title":"Victor and Loser","airDate":"2016-11-19","airDateUtc":"2016-11-18T15:00:00Z","overview":"Vivio continues to take control of the match through the second round, with Rinne struggling to keep up with her pace. In the third round, however, Rinne takes a direct hit to the face so she can deliver a brutal counter, dealing heavy damage to Vivio. Despite the damage taken, Vivio manages to stand up again to resume the fight. Changing up her stance, Vivio defeats Rinne with a knockout barrage, albeit sustaining enough damage that she herself will need to drop out of the finals. As both Rinne and Jill are distraught over their loss, Fuuka prepares for her next match.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":17946},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":9,"title":"Reunion","airDate":"2016-11-26","airDateUtc":"2016-11-25T15:00:00Z","overview":"Both Fuuka and Einhart manage to win their matches and reach the finals, where they are scheduled to fight against each other. Meanwhile, Rinne has been holed up inside her room following her defeat against Vivio. As Nove encounters Jill at the hospital, they hear from Victoria that Rinne plans to quit martial arts. Hearing Fuuka's resolve to still fight Rinne, Einhart offers Rinne the opportunity to have a title match against her if she can defeat Fuuka. Accepting Einhart's proposal, Rinne arrives at Lutecia's training ground for a no-holds-barred match against Fuuka.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":17947},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":10,"title":"Rain","airDate":"2016-12-03","airDateUtc":"2016-12-02T15:00:00Z","overview":"With the two girls constantly exchanging blows, Fuuka gains the upper hand by using techniques she had learned from sparring with her friends. Despite Jill wanting to throw in the towel, Rinne remains determined to fight back. While Rinne remains focused on her obsession with gaining strength, Fuuka attempts to reason with her, recalling when the two of them spent time together at the orphanage. Feeling that her biggest enemy is herself, Rinne states that if she wins, Fuuka must stop meddling in her affairs.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":17948},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":11,"title":"The Strike","airDate":"2016-12-10","airDateUtc":"2016-12-09T15:00:00Z","overview":"As the match continues, Jill recalls when she first started training Rinne, regretting not being able to save her from her self-inflicted torture. Despite being overwhelmed by Fuuka's strength and her own wavering heart, Rinne recalls all of her intense training with Jill and counters with a incredibly powerful uppercut that surpasses the field's safety setting. With both fighters no longer holding any bitterness towards each others, the girls decide to settle things with an all-offensive fist fight. As Rinne finally comes to accept that she is allowed to be happy, Fuuka wins the match by knockout, happy that the light has returned to Rinne's eyes.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":17949},{"seriesId":8,"episodeFileId":0,"seasonNumber":5,"episodeNumber":12,"title":"Within the Peace","airDate":"2016-12-17","airDateUtc":"2016-12-16T15:00:00Z","overview":"Following the match, Rinne talks with Jill, stating that she intends to continue competing while training under her. Later, Fuuka and Rinne spend some time together, receiving messages from those who watched their match and rekindling their friendship. Afterwards, as Fuuka and Einhart both prepare for their match together, Jill apologises to Nove, coming to understand more about the way she trains her students. On the day of the Winter Cup final, Rinne and Jill come to support Fuuka as she goes up against Einhart.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":17950},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"ViVid Xmas","airDate":"2016-12-25","airDateUtc":"2016-12-24T15:00:00Z","overview":"Special program featuring Ogura Yui and Minase Inori, animated by Uesaka Sumire.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21029},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"ViVid Strike! Mixed Magical Battle","airDate":"2017-01-25","airDateUtc":"2017-01-24T15:00:00Z","overview":"After joining Nakajima Gym for 1.5 months, Fuka progresses well in her striker skills and is finally able to win Corona for the first time in their spar. Seeing Fuka becoming cocky, Einhard has designed a new training menu for Fuka to experience, i.e. Synthetic Magic Battles. The training takes place at another gym in town, where Fuka matches individually and loses against Rio and Corona.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9913},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"ViVid Strike! Watchful Eyes","airDate":"2017-02-22","airDateUtc":"2017-02-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9914},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"ViVid Strike! Summer Time Vacation","airDate":"2017-03-29","airDateUtc":"2017-03-28T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9915},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Magical Girl Lyrical Nanoha Reflection","airDate":"2017-07-22","airDateUtc":"2017-07-21T15:00:00Z","overview":"Magical Girl Lyrical Nanoha Reflection (\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306fReflection) is the third theatrical anime film in the MGLN franchise. Unlike the previous two films, it will not adapt an existing story (such as StrikerS) but instead feature an original storyline,[2] taking some cue from the plot of The Battle of Aces and The Gears of Destiny but adding original storylines and characters, as well. It is the first part of a two-part story, with the second part titled Magical Girl Lyrical Nanoha Detonation.\r\n\r\nThe movie was formerly titled Magical Girl Lyrical NANOHA The MOVIE 3rd Reflection, picking up from The MOVIE 2nd A's. On October 2, 2016 (the same day ViVid Strike! went on air), a TV advertisement was released that removed \"The MOVIE 3rd\" from the planned title, to avoid confusion regarding whether the movie is another existing story remake. Nevertheless, it is part of the movie continuity, continuing with the history and designs in The MOVIE 2nd A's. However, as the primary continuity has zero coverage about what has happened between the early spring and winter of 0067,[3] the story of Reflection may somehow be seen as a re-telling or supplement of this blank period.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2676},{"seriesId":8,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Magical Girl Lyrical Nanoha Detonation","airDate":"2018-10-19","airDateUtc":"2018-10-18T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2677}],"episodeFile":[{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Sacred Heart-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E01.Sacred Heart-Bluray-720p.mkv","size":540513789,"dateAdded":"2018-10-10T22:01:11.154673Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258991,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2648933,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1896},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E01.That`s a mysterious meeting, is it not-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E01.That`s a mysterious meeting, is it not-HDTV-720p.mkv","size":355800313,"dateAdded":"2018-10-10T22:01:11.174509Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1813000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1897},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Beginning Comes Suddenly-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E01.The Beginning Comes Suddenly-HDTV-720p.mkv","size":355736232,"dateAdded":"2018-10-10T22:01:11.192692Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1813000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:37","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1898},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Wing to the Sky-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E01.Wing to the Sky-Bluray-720p.mkv","size":177226790,"dateAdded":"2018-10-10T22:01:11.212571Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1278x714","runTime":"25:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1899},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Einhart Stratos-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E02.Einhart Stratos-Bluray-720p.mkv","size":425429471,"dateAdded":"2018-10-10T22:01:11.230796Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258423,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2130827,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1900},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The charm is 'lyrical'-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E02.The charm is 'lyrical'-HDTV-720p.mkv","size":355897120,"dateAdded":"2018-10-10T22:01:11.350346Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1809000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:42","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1901},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Once Again, the Storms of Battle-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E02.Once Again, the Storms of Battle-HDTV-720p.mkv","size":355713397,"dateAdded":"2018-10-10T22:01:11.368939Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1809000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:37","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1902},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Riot Force 6-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E02.Riot Force 6-HDTV-720p.mkv","size":304625348,"dateAdded":"2018-10-10T22:01:11.389256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":29.97,"resolution":"896x504","runTime":"25:58","scanType":"Progressive","subtitles":"English \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1903},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E03.True Feelings-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E03.True Feelings-Bluray-720p.mkv","size":620970211,"dateAdded":"2018-10-10T22:01:11.407337Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258045,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3230284,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1904},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Reunion and Relocation!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E03.Reunion and Relocation!-HDTV-720p.mkv","size":355853154,"dateAdded":"2018-10-10T22:01:11.427675Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1813000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:38","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1905},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Town's in a Lot of Danger-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E03.The Town's in a Lot of Danger-HDTV-720p.mkv","size":355670915,"dateAdded":"2018-10-10T22:01:11.445435Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1811000,"videoCodec":"x264","videoFps":23.923,"resolution":"640x480","runTime":"25:42","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1906},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Gathering of Troops-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E03.Gathering of Troops-HDTV-720p.mkv","size":304814911,"dateAdded":"2018-10-10T22:01:11.465474Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":29.97,"resolution":"896x504","runTime":"25:49","scanType":"Progressive","subtitles":"English \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1907},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Brand New Heart-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E04.Brand New Heart-Bluray-720p.mkv","size":437741869,"dateAdded":"2018-10-10T22:01:11.566517Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":259261,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2200184,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1908},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E04.New Power, Start!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E04.New Power, Start!-HDTV-720p.mkv","size":355833872,"dateAdded":"2018-10-10T22:01:11.591568Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1820000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:36","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1909},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E04.A Rival!! Another Magical Girl!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E04.A Rival!! Another Magical Girl!-HDTV-720p.mkv","size":355700837,"dateAdded":"2018-10-10T22:01:11.610501Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1815000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1910},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E04.First Alert-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E04.First Alert-HDTV-720p.mkv","size":304706873,"dateAdded":"2018-10-10T22:01:11.629517Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1911},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Surprise Attack-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E05.Surprise Attack-Bluray-720p.mkv","size":534671159,"dateAdded":"2018-10-10T22:01:11.649475Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":259260,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2741087,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1912},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E05.This is a Town of Hot Water, and the Ocean's Roar Hot Springs!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E05.This is a Town of Hot Water, and the Ocean's Roar Hot Springs!-HDTV-720p.mkv","size":355879051,"dateAdded":"2018-10-10T22:01:11.668905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1814000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:41","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1913},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E05.It Was a Small Wish (Part One)-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E05.It Was a Small Wish (Part One)-HDTV-720p.mkv","size":355853884,"dateAdded":"2018-10-10T22:01:11.688371Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1813000,"videoCodec":"x264","videoFps":23.923,"resolution":"640x480","runTime":"25:38","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1914},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Stars and Lightning-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E05.Stars and Lightning-HDTV-720p.mkv","size":304864062,"dateAdded":"2018-10-10T22:01:11.707437Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":29.97,"resolution":"896x504","runTime":"25:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1915},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Matchup Duel-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E06.Matchup Duel-Bluray-720p.mkv","size":707241504,"dateAdded":"2018-10-10T22:01:11.928596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258993,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3715732,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1916},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E06.It Was a Small Wish (Part Two)-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E06.It Was a Small Wish (Part Two)-HDTV-720p.mkv","size":355993203,"dateAdded":"2018-10-10T22:01:11.94674Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1814000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:36","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1917},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Feelings That Can't Be Understood-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E06.Feelings That Can't Be Understood-HDTV-720p.mkv","size":355857252,"dateAdded":"2018-10-10T22:01:11.966608Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1815000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:41","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1918},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Progress-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E06.Progress-HDTV-720p.mkv","size":304691315,"dateAdded":"2018-10-10T22:01:11.984722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1919},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E07.New Stage!-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E07.New Stage!-Bluray-720p.mkv","size":546904021,"dateAdded":"2018-10-10T22:01:12.004888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258753,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2797357,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1920},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E07.With the Broken Past and Present-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E07.With the Broken Past and Present-HDTV-720p.mkv","size":355841278,"dateAdded":"2018-10-10T22:01:12.022954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1809000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:38","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1921},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Third Mage!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E07.The Third Mage!-HDTV-720p.mkv","size":355815164,"dateAdded":"2018-10-10T22:01:12.042629Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1815000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1922},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Hotel Agusta-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E07.Hotel Agusta-HDTV-720p.mkv","size":305137672,"dateAdded":"2018-10-10T22:01:12.208146Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1923},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Rival!-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E08.Rival!-Bluray-720p.mkv","size":531531796,"dateAdded":"2018-10-10T22:01:12.227966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258877,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2719706,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1924},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E08.A Tragic Resolve Is the Courageous Decision!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E08.A Tragic Resolve Is the Courageous Decision!-HDTV-720p.mkv","size":356028320,"dateAdded":"2018-10-10T22:01:12.246035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1817000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:36","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1925},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E08.There's A Really Big Crisis-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E08.There's A Really Big Crisis-HDTV-720p.mkv","size":355699050,"dateAdded":"2018-10-10T22:01:12.266038Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1811000,"videoCodec":"x264","videoFps":23.923,"resolution":"640x480","runTime":"25:42","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1926},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Two People's Wishes-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E08.Two People's Wishes-HDTV-720p.mkv","size":304691650,"dateAdded":"2018-10-10T22:01:12.284229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1927},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Intermiddle Championship-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E09.Intermiddle Championship-Bluray-720p.mkv","size":612337224,"dateAdded":"2018-10-10T22:01:12.304451Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258939,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2969191,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1928},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Christmas Eve-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E09.Christmas Eve-HDTV-720p.mkv","size":355810058,"dateAdded":"2018-10-10T22:01:12.322555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1816000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:38","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1929},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Decisive Battle Above the Ocean!-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E09.The Decisive Battle Above the Ocean!-HDTV-720p.mkv","size":355714532,"dateAdded":"2018-10-10T22:01:12.425035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1811000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:41","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1930},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Important Thing-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E09.The Important Thing-HDTV-720p.mkv","size":304688397,"dateAdded":"2018-10-10T22:01:12.455342Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1931},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E10.For Victory!-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E10.For Victory!-Bluray-720p.mkv","size":537946941,"dateAdded":"2018-10-10T22:01:12.530098Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":259276,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2752217,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1932},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Everybody's Seperate Heart-felt Vows-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E10.Everybody's Seperate Heart-felt Vows-HDTV-720p.mkv","size":355856277,"dateAdded":"2018-10-10T22:01:12.734219Z","releaseGroup":"felt","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1812000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1933},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Destiny-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E10.Destiny-HDTV-720p.mkv","size":355759102,"dateAdded":"2018-10-10T22:01:12.871216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1812000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:37","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1934},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Riot Force 6's Day Off (First Part)-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E10.Riot Force 6's Day Off (First Part)-HDTV-720p.mkv","size":304625797,"dateAdded":"2018-10-10T22:01:12.901539Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":29.97,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1935},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Hegemon's Fist, Creator's Desire-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E11.Hegemon's Fist, Creator's Desire-Bluray-720p.mkv","size":632537442,"dateAdded":"2018-10-10T22:01:13.030103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":259196,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3291805,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1936},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E11.A Gift for Christmas Eve-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E11.A Gift for Christmas Eve-HDTV-720p.mkv","size":355870440,"dateAdded":"2018-10-10T22:01:13.051946Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1814000,"videoCodec":"x264","videoFps":23.923,"resolution":"640x480","runTime":"25:37","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1937},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Memories That Lie Beyond Time-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E11.Memories That Lie Beyond Time-HDTV-720p.mkv","size":355725104,"dateAdded":"2018-10-10T22:01:13.236948Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1812000,"videoCodec":"x264","videoFps":23.923,"resolution":"640x480","runTime":"25:41","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1938},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Riot Force 6's Day Off (Second Part)-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E11.Riot Force 6's Day Off (Second Part)-HDTV-720p.mkv","size":305016078,"dateAdded":"2018-10-10T22:01:13.258915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":29.97,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1939},{"seriesId":8,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Conclusion's Purpose-Bluray-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 04\/S04E12.Conclusion's Purpose-Bluray-720p.mkv","size":462209835,"dateAdded":"2018-10-10T22:01:13.281877Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256206,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2339704,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1940},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Night's End, Journey's End-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E12.Night's End, Journey's End-HDTV-720p.mkv","size":355967260,"dateAdded":"2018-10-10T22:01:13.36037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1809000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:37","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1941},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Time of the Sealing of Our Fates-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E12.The Time of the Sealing of Our Fates-HDTV-720p.mkv","size":355852329,"dateAdded":"2018-10-10T22:01:13.38248Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1815000,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1942},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Numbers-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E12.Numbers-HDTV-720p.mkv","size":304503168,"dateAdded":"2018-10-10T22:01:13.472651Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":29.97,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1943},{"seriesId":8,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Call My Name-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 01\/S01E13.Call My Name-HDTV-720p.mkv","size":355770048,"dateAdded":"2018-10-10T22:01:13.591411Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1788000,"videoCodec":"x264","videoFps":23.923,"resolution":"640x480","runTime":"25:42","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1945},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Reason of Life-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E13.Reason of Life-HDTV-720p.mkv","size":304774604,"dateAdded":"2018-10-10T22:01:13.61348Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1946},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Mothers & Children-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E14.Mothers & Children-HDTV-720p.mkv","size":304615078,"dateAdded":"2018-10-10T22:01:13.638775Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1947},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Sisters & Daughters-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E15.Sisters & Daughters-HDTV-720p.mkv","size":304390652,"dateAdded":"2018-10-10T22:01:13.659738Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1948},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E16.That Day, Riot Force 6 (First Part)-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E16.That Day, Riot Force 6 (First Part)-HDTV-720p.mkv","size":304574030,"dateAdded":"2018-10-10T22:01:13.789538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1949},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E17.That Day, Riot Force 6 (Second Part)-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E17.That Day, Riot Force 6 (Second Part)-HDTV-720p.mkv","size":305285798,"dateAdded":"2018-10-10T22:01:13.810649Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.942,"resolution":"896x504","runTime":"25:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1950},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Wings, Again-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E18.Wings, Again-HDTV-720p.mkv","size":304638442,"dateAdded":"2018-10-10T22:01:13.943942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1951},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Cradle-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E19.Cradle-HDTV-720p.mkv","size":304834298,"dateAdded":"2018-10-10T22:01:13.963994Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1952},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E20.The Infinite Desire-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E20.The Infinite Desire-HDTV-720p.mkv","size":304979698,"dateAdded":"2018-10-10T22:01:14.282768Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1953},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E21.The Decisive Battle-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E21.The Decisive Battle-HDTV-720p.mkv","size":304671665,"dateAdded":"2018-10-10T22:01:14.313045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1954},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Pain to Pain-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E22.Pain to Pain-HDTV-720p.mkv","size":305034540,"dateAdded":"2018-10-10T22:01:14.453152Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1955},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E23.Stars Strike-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E23.Stars Strike-HDTV-720p.mkv","size":304843806,"dateAdded":"2018-10-10T22:01:14.476736Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1956},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Lightning-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E24.Lightning-HDTV-720p.mkv","size":304801965,"dateAdded":"2018-10-10T22:01:14.553398Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1957},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E25.Final Limit-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E25.Final Limit-HDTV-720p.mkv","size":304810498,"dateAdded":"2018-10-10T22:01:14.584539Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":0.0,"resolution":"896x504","runTime":"25:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1958},{"seriesId":8,"seasonNumber":3,"relativePath":"Season 03\/S03E26.To The Promised Sky-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 03\/S03E26.To The Promised Sky-HDTV-720p.mkv","size":304819306,"dateAdded":"2018-10-10T22:01:14.696813Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500000,"videoCodec":"x264","videoFps":23.976,"resolution":"896x504","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1959},{"seriesId":8,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Stand By. Ready-HDTV-720p.mkv","path":"\/tv\/Magical Girl Lyrical Nanoha\/Season 02\/S02E13.Stand By. Ready-HDTV-720p.mkv","size":356296848,"dateAdded":"2020-05-17T08:15:57.838095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1432767,"videoCodec":"x264","videoFps":0.0,"resolution":"640x480","runTime":"25:37","scanType":"Progressive","subtitles":"English \/ Japanese \/ English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13349}],"queue":[]},"6":{"series":{"title":"Mr. Robot","alternateTitles":[],"sortTitle":"mr robot","status":"ended","ended":true,"overview":"Elliot, a young programmer who works as a cyber-security engineer by day and a vigilante hacker by night. Elliot finds himself at a crossroads when the mysterious leader of an underground hacker group recruits him to destroy the corporation.","previousAiring":"2019-12-23T03:50:00Z","network":"USA Network","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/1\/banner.jpg?lastWrite=637178511385713470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/289590-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/1\/poster.jpg?lastWrite=637100123928153070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/289590-12.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/1\/fanart.jpg?lastWrite=637100123924153150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/289590-19.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2016-09-08T02:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":3,"sizeOnDisk":1889942852,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-09-03T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":39765429387,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-09-22T02:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":19327883564,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-12-14T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":43405074924,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-12-23T03:50:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":53616367449,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Mr. Robot","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":289590,"tvRageId":42422,"tvMazeId":1871,"firstAired":"2015-06-24T00:00:00Z","seriesType":"standard","cleanTitle":"mrrobot","imdbId":"tt4158110","titleSlug":"mr-robot","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Thriller"],"tags":[],"added":"2017-12-02T19:22:01.3589634Z","ratings":{"votes":4523,"value":9.0},"statistics":{"seasonCount":4,"episodeFileCount":47,"episodeCount":47,"totalEpisodeCount":48,"sizeOnDisk":158004698176,"percentOfEpisodes":100.0},"id":1},"episodes":[{"seriesId":1,"episodeFileId":11061,"seasonNumber":1,"episodeNumber":1,"title":"eps1.0_hellofriend.mov","airDate":"2015-06-24","airDateUtc":"2015-06-25T02:00:00Z","overview":"Elliot, a cyber-security engineer by day and vigilante hacker by night, is recruited by a mysterious underground group to destroy the firm he's paid to protect. Elliot must decide how far he'll go to expose the forces he believes are running (and ruining) the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2714},{"seriesId":1,"episodeFileId":11066,"seasonNumber":1,"episodeNumber":2,"title":"eps1.1_ones-and-zer0es.mpeg","airDate":"2015-07-01","airDateUtc":"2015-07-02T02:00:00Z","overview":"Elliot is torn between accepting a job offer from Evil Corp and joining the fsociety hacker group. At the same time Elliot needs to make decision that could harm people around him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2715},{"seriesId":1,"episodeFileId":11070,"seasonNumber":1,"episodeNumber":3,"title":"eps1.2_d3bug.mkv","airDate":"2015-07-08","airDateUtc":"2015-07-09T02:00:00Z","overview":"Elliot tries to lead a normal life, but can't escape fsociety. Gideon, meanwhile, grows suspicious, and Tyrell plays dirty.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2716},{"seriesId":1,"episodeFileId":11075,"seasonNumber":1,"episodeNumber":4,"title":"eps1.3_da3m0ns.mp4","airDate":"2015-07-15","airDateUtc":"2015-07-16T02:00:00Z","overview":"Elliot's inner-demons threaten an fsociety operation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2717},{"seriesId":1,"episodeFileId":11079,"seasonNumber":1,"episodeNumber":5,"title":"eps1.4_3xpl0its.wmv","airDate":"2015-07-22","airDateUtc":"2015-07-23T02:00:00Z","overview":"Fsociety attempts to penetrate Steel Mountain, the most secure data facility in America.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2718},{"seriesId":1,"episodeFileId":11082,"seasonNumber":1,"episodeNumber":6,"title":"eps1.5_br4ve-trave1er.asf","airDate":"2015-07-29","airDateUtc":"2015-07-30T02:00:00Z","overview":"Elliot attempts to hack Vera out of jail in order to save someone he cares about. Meanwhile, Tyrell's \"game\" gets crazy and Angela digs deeper into her mother's death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2719},{"seriesId":1,"episodeFileId":11087,"seasonNumber":1,"episodeNumber":7,"title":"eps1.6_v1ew-s0urce.flv","airDate":"2015-08-05","airDateUtc":"2015-08-06T02:00:00Z","overview":"Elliott goes missing, Mr. Robot tries to pull fsociety back together and Angela goes head-to-head with an old nemesis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2720},{"seriesId":1,"episodeFileId":11091,"seasonNumber":1,"episodeNumber":8,"title":"eps1.7_wh1ter0se.m4v","airDate":"2015-08-12","airDateUtc":"2015-08-13T02:00:00Z","overview":"Allsafe is controlled, the Dark Army is ready to meet Elliot & Tyrell and Joanna's plan goes into effect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2721},{"seriesId":1,"episodeFileId":11095,"seasonNumber":1,"episodeNumber":9,"title":"eps1.8_m1rr0r1ng.qt","airDate":"2015-08-19","airDateUtc":"2015-08-20T02:00:00Z","overview":"The Evil Corp hack is threatened by a mystery man from Elliot's past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2722},{"seriesId":1,"episodeFileId":11099,"seasonNumber":1,"episodeNumber":10,"title":"eps1.9_zer0-day.avi","airDate":"2015-09-02","airDateUtc":"2015-09-03T02:00:00Z","overview":"Mr. Robot and Tyrell are MIA and a past hack haunts Elliot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2723},{"seriesId":1,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Mr. Robot_dec0d3d.doc","airDate":"2016-06-20","airDateUtc":"2016-06-21T02:00:00Z","overview":"A look at the authenticity and and societal impact of Mr. Robot. Creator Sam Esmail, stars Rami Malek and Christian Slater, real-life hacker Jeff Moss and several other experts open up about how the show made an extremely technical subject relatable to a wide audience and brought humanity to hackers through main character Elliot.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2710},{"seriesId":1,"episodeFileId":11068,"seasonNumber":0,"episodeNumber":2,"title":"Hacking Robot 101","airDate":"2016-07-13","airDateUtc":"2016-07-14T02:00:00Z","overview":"The series' cast and creator discuss the season 2 premiere and answer to fan questions.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":2711},{"seriesId":1,"episodeFileId":11064,"seasonNumber":2,"episodeNumber":1,"title":"eps2.0_unm4sk-pt1.tc","airDate":"2016-07-13","airDateUtc":"2016-07-14T02:00:00Z","overview":"One month later and omfg, five\/nine has changed the world; Elliot is in seclusion; Angela finds happiness at Evil Corp.; fsociety delivers a malicious payload; TANGO DOWN?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2724},{"seriesId":1,"episodeFileId":11064,"seasonNumber":2,"episodeNumber":2,"title":"eps2.0_unm4sk-pt2.tc","airDate":"2016-07-13","airDateUtc":"2016-07-14T02:50:00Z","overview":"angela happy at evil corp. tyrell MIA and joanna has a new bf? wtf? dom leads fbi investigation into five\/nine. elliot demands answers from mr. robot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2725},{"seriesId":1,"episodeFileId":11072,"seasonNumber":2,"episodeNumber":3,"title":"eps2.1_k3rnel-pan1c.ksd","airDate":"2016-07-20","airDateUtc":"2016-07-21T02:00:00Z","overview":"Elliot vows to beat Mr. Robot, but the task proves difficult. Angela gets a view behind the scenes at Evil Corp. Sh*t hits fan with fsociety.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2726},{"seriesId":1,"episodeFileId":11077,"seasonNumber":2,"episodeNumber":4,"title":"eps2.2_init_1.asec","airDate":"2016-07-27","airDateUtc":"2016-07-28T02:00:00Z","overview":"Elliot befriends Ray, hoping he can finally delete Mr. Robot; Dom makes a big discovery; Darlene considers whether the FBI or Dark Army are the bigger threat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":2727},{"seriesId":1,"episodeFileId":11080,"seasonNumber":2,"episodeNumber":5,"title":"eps2.3_logic-b0mb.hc","airDate":"2016-08-03","airDateUtc":"2016-08-04T02:00:00Z","overview":"Elliot is unable to quit the game; Dom and the FBI travel to China to investigate five\/nine; Joanna is haunted; Darlene asks Angela for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":2728},{"seriesId":1,"episodeFileId":11084,"seasonNumber":2,"episodeNumber":6,"title":"eps2.4_m4ster-s1ave.aes","airDate":"2016-08-10","airDateUtc":"2016-08-11T02:00:00Z","overview":"Mr. Robot tries to prove to Elliot that he can be useful; Darlene and Angela's plan does not go as expected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":2729},{"seriesId":1,"episodeFileId":11089,"seasonNumber":2,"episodeNumber":7,"title":"eps2.5_h4ndshake.sme","airDate":"2016-08-17","airDateUtc":"2016-08-18T02:00:00Z","overview":"Mr. Robot and Elliot try to get along; fsociety releases a holiday video to honor Uncle Sam; Darlene acts on an old desire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":2730},{"seriesId":1,"episodeFileId":11092,"seasonNumber":2,"episodeNumber":8,"title":"eps2.6_succ3ss0r.p12","airDate":"2016-08-24","airDateUtc":"2016-08-25T02:00:00Z","overview":"The latest fsociety leak has Dom trying her best to spin the case in the FBI's favor; Angela defends her career choices; Darlene makes it known that her circle of trust is shrinking.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":2731},{"seriesId":1,"episodeFileId":11097,"seasonNumber":2,"episodeNumber":9,"title":"eps2.7_init_5.fve","airDate":"2016-08-31","airDateUtc":"2016-09-01T02:00:00Z","overview":"Angela wants more from Evil Corp.; Dark Army's allegiance is in question; Elliot and Darlene seek answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":2732},{"seriesId":1,"episodeFileId":11073,"seasonNumber":0,"episodeNumber":3,"title":"Hacking Robot 102","airDate":"2016-09-07","airDateUtc":"2016-09-08T02:00:00Z","overview":"The cast and creator of the hit USA drama \"Mr. Robot\" reconvene to answer fan questions, provide analysis, and recap the season's best moments.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":2712},{"seriesId":1,"episodeFileId":11101,"seasonNumber":2,"episodeNumber":10,"title":"eps2.8_h1dden-pr0cess.axx","airDate":"2016-09-07","airDateUtc":"2016-09-08T02:00:00Z","overview":"Elliot wonders if Mr. Robot has been lying to him; Darlene attempts to do the right thing; Dom and the FBI get closer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":2733},{"seriesId":1,"episodeFileId":11103,"seasonNumber":2,"episodeNumber":11,"title":"eps2.9_pyth0n-pt1.p7z","airDate":"2016-09-14","airDateUtc":"2016-09-15T02:00:00Z","overview":"Angela makes an acquaintance; Darlene realizes she is in too deep; an old friend reveals everything to Elliot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":2734},{"seriesId":1,"episodeFileId":11105,"seasonNumber":2,"episodeNumber":12,"title":"eps2.9_pyth0n-pt2.p7z","airDate":"2016-09-21","airDateUtc":"2016-09-22T02:00:00Z","overview":"Darlene realizes she is in too deep; an old friend reveals everything to Elliot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":2735},{"seriesId":1,"episodeFileId":11062,"seasonNumber":3,"episodeNumber":1,"title":"eps3.0_power-saver-mode.h","airDate":"2017-10-11","airDateUtc":"2017-10-12T02:00:00Z","overview":"Elliot realizes his mission, and needs help from Angela; Darlene worries about them coming out clean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":2736},{"seriesId":1,"episodeFileId":11065,"seasonNumber":3,"episodeNumber":2,"title":"eps3.1_undo.gz","airDate":"2017-10-18","airDateUtc":"2017-10-19T02:00:00Z","overview":"Elliot is encouraged at trying to undo five\/nine; Darlene gets stuck between a rock and a hard place; Mr. Robot sparks a panic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":2737},{"seriesId":1,"episodeFileId":11069,"seasonNumber":3,"episodeNumber":3,"title":"eps3.2_legacy.so","airDate":"2017-10-25","airDateUtc":"2017-10-26T02:00:00Z","overview":"Tyrell Wellick, the former interim CTO of E Corp returns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":2738},{"seriesId":1,"episodeFileId":11074,"seasonNumber":3,"episodeNumber":4,"title":"eps3.3_metadata.par2","airDate":"2017-11-01","airDateUtc":"2017-11-02T02:00:00Z","overview":"Dom has a close call; Elliot chases himself with Darlene on the lookout; Mr. Robot doesn't have a need for Swede.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":2739},{"seriesId":1,"episodeFileId":11078,"seasonNumber":3,"episodeNumber":5,"title":"eps3.4_runtime-error.r00","airDate":"2017-11-08","airDateUtc":"2017-11-09T03:00:00Z","overview":"E Corp is in chaos; Elliot is on the run; Darlene tries to help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":2740},{"seriesId":1,"episodeFileId":11083,"seasonNumber":3,"episodeNumber":6,"title":"eps3.5_kill-process.inc","airDate":"2017-11-15","airDateUtc":"2017-11-16T03:00:00Z","overview":"Elliot faces off with Mr. Robot; Dom gets tired of the red tape; Tyrell has a new plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":2741},{"seriesId":1,"episodeFileId":11086,"seasonNumber":3,"episodeNumber":7,"title":"eps3.6_fredrick+tanya.chk","airDate":"2017-11-22","airDateUtc":"2017-11-23T03:00:00Z","overview":"Mr. Robot wants answers; the FBI closes in; Angela hits the rewind button.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":2742},{"seriesId":1,"episodeFileId":11090,"seasonNumber":3,"episodeNumber":8,"title":"eps3.7_dont-delete-me.ko","airDate":"2017-11-29","airDateUtc":"2017-11-30T03:00:00Z","overview":"Elliot tries to get ghosted; it is the day of all days.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":2743},{"seriesId":1,"episodeFileId":11094,"seasonNumber":3,"episodeNumber":9,"title":"eps3.8_stage3.torrent","airDate":"2017-12-06","airDateUtc":"2017-12-07T03:00:00Z","overview":"Elliot trolls a former ally; Mr. Robot leaves cryptic text; Tyrell gets new commands.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":2744},{"seriesId":1,"episodeFileId":11098,"seasonNumber":3,"episodeNumber":10,"title":"shutdown -r","airDate":"2017-12-13","airDateUtc":"2017-12-14T03:00:00Z","overview":"Elliot tries to save Darlene, but things do not go as planned; Mr. Robot must decide whether to step up or step back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":2745},{"seriesId":1,"episodeFileId":12799,"seasonNumber":4,"episodeNumber":1,"title":"401 Unauthorized","airDate":"2019-10-06","airDateUtc":"2019-10-07T02:00:00Z","overview":"During the Christmas season, Elliot and Mr. Robot make their return. Darlene deals with real trouble. Tyrell is bored. Dom becomes paranoid.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":12431},{"seriesId":1,"episodeFileId":12800,"seasonNumber":4,"episodeNumber":2,"title":"402 Payment Required","airDate":"2019-10-13","airDateUtc":"2019-10-14T02:00:00Z","overview":"Elliot and Darlene come together. Dom gets dark army vibes. Price has answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":13337},{"seriesId":1,"episodeFileId":12801,"seasonNumber":4,"episodeNumber":3,"title":"403 Forbidden","airDate":"2019-10-20","airDateUtc":"2019-10-21T02:00:00Z","overview":"Whiterose has the feels. Elliot gets owned by his own hack. An old foe waits.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":13338},{"seriesId":1,"episodeFileId":12802,"seasonNumber":4,"episodeNumber":4,"title":"404 Not Found","airDate":"2019-10-27","airDateUtc":"2019-10-28T02:00:00Z","overview":"Elliot, Mr. Robot and Tyrell walk in a winter wonderland. Darlene meets a bad Santa. Dom is on the prowl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":14522},{"seriesId":1,"episodeFileId":12803,"seasonNumber":4,"episodeNumber":5,"title":"405 Method Not Allowed","airDate":"2019-11-03","airDateUtc":"2019-11-04T03:00:00Z","overview":"Dom has no fun on Christmas. Darlene and Elliot give a run-around. Krista plays hooky.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":14539},{"seriesId":1,"episodeFileId":12804,"seasonNumber":4,"episodeNumber":6,"title":"406 Not Acceptable","airDate":"2019-11-10","airDateUtc":"2019-11-11T03:00:00Z","overview":"Vera tells a tale. Darlene gets a Christmas surprise. Elliot goes rogue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":14610},{"seriesId":1,"episodeFileId":12805,"seasonNumber":4,"episodeNumber":7,"title":"407 Proxy Authentication Required","airDate":"2019-11-17","airDateUtc":"2019-11-18T03:00:00Z","overview":"Elliot feuds any data.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":14786},{"seriesId":1,"episodeFileId":12806,"seasonNumber":4,"episodeNumber":8,"title":"408 Request Timeout","airDate":"2019-11-24","airDateUtc":"2019-11-25T03:00:00Z","overview":"Janice wants all the details. Elliot is shaken.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":15540},{"seriesId":1,"episodeFileId":12807,"seasonNumber":4,"episodeNumber":9,"title":"409 Conflict","airDate":"2019-12-01","airDateUtc":"2019-12-02T03:00:00Z","overview":"Fsociety faces off against Deus Group.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":15622},{"seriesId":1,"episodeFileId":12808,"seasonNumber":4,"episodeNumber":10,"title":"410 Gone","airDate":"2019-12-08","airDateUtc":"2019-12-09T03:00:00Z","overview":"Darlene and Dom hit the road. Elliot is not done yet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":15643},{"seriesId":1,"episodeFileId":12809,"seasonNumber":4,"episodeNumber":11,"title":"eXit","airDate":"2019-12-15","airDateUtc":"2019-12-16T03:00:00Z","overview":"Enough is enough. Elliot goes to the Washington Township power plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":15644},{"seriesId":1,"episodeFileId":12810,"seasonNumber":4,"episodeNumber":12,"title":"whoami","airDate":"2019-12-22","airDateUtc":"2019-12-23T03:00:00Z","overview":"Elliot questions his identity and the world he woke up into.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":15817},{"seriesId":1,"episodeFileId":12811,"seasonNumber":4,"episodeNumber":13,"title":"Hello, Elliot","airDate":"2019-12-22","airDateUtc":"2019-12-23T03:50:00Z","overview":"Elliot finally finds the answers to his questions. The Elliot known to Darlene wakes up from an eternal sleep.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":15818}],"episodeFile":[{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E01.eps1.0_hellofriend.mov-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E01.eps1.0_hellofriend.mov-Bluray-1080p.mkv","size":5867613314,"dateAdded":"2019-12-26T15:13:15.57202Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10538000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:04:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11061},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E01.eps3.0_power-saver-mode.h-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E01.eps3.0_power-saver-mode.h-Bluray-1080p.mkv","size":4693874915,"dateAdded":"2019-12-26T15:13:15.621027Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10235000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11062},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E01E02.eps2.0_unm4sk-pt1.tc + eps2.0_unm4sk-pt2.tc-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E01E02.eps2.0_unm4sk-pt1.tc + eps2.0_unm4sk-pt2.tc-Bluray-1080p.mkv","size":2597486986,"dateAdded":"2019-12-26T15:13:15.724154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419623,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3569931,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:22:18","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11064},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E02.eps3.1_undo.gz-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E02.eps3.1_undo.gz-Bluray-1080p.mkv","size":4692308693,"dateAdded":"2019-12-26T15:13:15.801867Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11778000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11065},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E02.eps1.1_ones-and-zer0es.mpeg-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E02.eps1.1_ones-and-zer0es.mpeg-Bluray-1080p.mkv","size":4262637394,"dateAdded":"2019-12-26T15:13:15.85078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10566000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11066},{"seriesId":1,"seasonNumber":0,"relativePath":"Specials\/S00E02.Hacking Robot 101-HDTV-720p.mkv","path":"\/tv\/Mr. Robot\/Specials\/S00E02.Hacking Robot 101-HDTV-720p.mkv","size":1045070678,"dateAdded":"2019-12-26T15:13:15.950989Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2868736,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"41:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11068},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E03.eps3.2_legacy.so-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E03.eps3.2_legacy.so-Bluray-1080p.mkv","size":4692507309,"dateAdded":"2019-12-26T15:13:16.002826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11045000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11069},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E03.eps1.2_d3bug.mkv-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E03.eps1.2_d3bug.mkv-Bluray-1080p.mkv","size":3518279353,"dateAdded":"2019-12-26T15:13:16.052464Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8904000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11070},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E03.eps2.1_k3rnel-pan1c.ksd-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E03.eps2.1_k3rnel-pan1c.ksd-Bluray-1080p.mkv","size":2063692037,"dateAdded":"2019-12-26T15:13:16.152732Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3760691,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:03:01","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11072},{"seriesId":1,"seasonNumber":0,"relativePath":"Specials\/S00E03.Hacking Robot 102-HDTV-720p.mkv","path":"\/tv\/Mr. Robot\/Specials\/S00E03.Hacking Robot 102-HDTV-720p.mkv","size":844872174,"dateAdded":"2019-12-26T15:13:16.209619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2250427,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"41:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11073},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E04.eps3.3_metadata.par2-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E04.eps3.3_metadata.par2-Bluray-1080p.mkv","size":3519129482,"dateAdded":"2019-12-26T15:13:16.259708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8592000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11074},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E04.eps1.3_da3m0ns.mp4-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E04.eps1.3_da3m0ns.mp4-Bluray-1080p.mkv","size":3517933880,"dateAdded":"2019-12-26T15:13:16.311924Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8904000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11075},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E04.eps2.2_init_1.asec-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E04.eps2.2_init_1.asec-Bluray-1080p.mkv","size":1822408215,"dateAdded":"2019-12-26T15:13:16.427747Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":371979,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3127995,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:05:22","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11077},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E05.eps3.4_runtime-error.r00-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E05.eps3.4_runtime-error.r00-Bluray-1080p.mkv","size":3519654765,"dateAdded":"2019-12-26T15:13:16.482379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8926000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11078},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E05.eps1.4_3xpl0its.wmv-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E05.eps1.4_3xpl0its.wmv-Bluray-1080p.mkv","size":3518060588,"dateAdded":"2019-12-26T15:13:16.533376Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8979000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11079},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E05.eps2.3_logic-b0mb.hc-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E05.eps2.3_logic-b0mb.hc-Bluray-1080p.mkv","size":1966790854,"dateAdded":"2019-12-26T15:13:16.582441Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424075,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4460725,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"51:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11080},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E06.eps1.5_br4ve-trave1er.asf-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E06.eps1.5_br4ve-trave1er.asf-Bluray-1080p.mkv","size":3518241747,"dateAdded":"2019-12-26T15:13:16.683119Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9015000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11082},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E06.eps3.5_kill-process.inc-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E06.eps3.5_kill-process.inc-Bluray-1080p.mkv","size":3517247492,"dateAdded":"2019-12-26T15:13:16.734295Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8764000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11083},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E06.eps2.4_m4ster-s1ave.aes-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E06.eps2.4_m4ster-s1ave.aes-Bluray-1080p.mkv","size":1841293928,"dateAdded":"2019-12-26T15:13:16.782614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":367040,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4331020,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:55","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11084},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E07.eps3.6_fredrick+tanya.chk-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E07.eps3.6_fredrick+tanya.chk-Bluray-1080p.mkv","size":4692459246,"dateAdded":"2019-12-26T15:13:16.882488Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11775000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11086},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E07.eps1.6_v1ew-s0urce.flv-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E07.eps1.6_v1ew-s0urce.flv-Bluray-1080p.mkv","size":3518108773,"dateAdded":"2019-12-26T15:13:16.93482Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8937000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11087},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E07.eps2.5_h4ndshake.sme-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E07.eps2.5_h4ndshake.sme-Bluray-1080p.mkv","size":1555022234,"dateAdded":"2019-12-26T15:13:17.036373Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3658489,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"48:36","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11089},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E08.eps3.7_dont-delete-me.ko-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E08.eps3.7_dont-delete-me.ko-Bluray-1080p.mkv","size":4692291954,"dateAdded":"2019-12-26T15:13:17.0888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11807000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11090},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E08.eps1.7_wh1ter0se.m4v-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E08.eps1.7_wh1ter0se.m4v-Bluray-1080p.mkv","size":3518622361,"dateAdded":"2019-12-26T15:13:17.140315Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8904000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11091},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E08.eps2.6_succ3ss0r.p12-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E08.eps2.6_succ3ss0r.p12-Bluray-1080p.mkv","size":1989292378,"dateAdded":"2019-12-26T15:13:17.192755Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440063,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5062191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:22","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11092},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E09.eps3.8_stage3.torrent-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E09.eps3.8_stage3.torrent-Bluray-1080p.mkv","size":4692348045,"dateAdded":"2019-12-26T15:13:17.292531Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11357000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11094},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E09.eps1.8_m1rr0r1ng.qt-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E09.eps1.8_m1rr0r1ng.qt-Bluray-1080p.mkv","size":4262491914,"dateAdded":"2019-12-26T15:13:17.342142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10078000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11095},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E09.eps2.7_init_5.fve-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E09.eps2.7_init_5.fve-Bluray-1080p.mkv","size":1592707269,"dateAdded":"2019-12-26T15:13:17.443846Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":395494,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3711792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:06","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11097},{"seriesId":1,"seasonNumber":3,"relativePath":"Season 03\/S03E10.shutdown -r-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 03\/S03E10.shutdown -r-Bluray-1080p.mkv","size":4693253023,"dateAdded":"2019-12-26T15:13:17.494732Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9317000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11098},{"seriesId":1,"seasonNumber":1,"relativePath":"Season 01\/S01E10.eps1.9_zer0-day.avi-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 01\/S01E10.eps1.9_zer0-day.avi-Bluray-1080p.mkv","size":4263440063,"dateAdded":"2019-12-26T15:13:17.543581Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9016000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11099},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E10.eps2.8_h1dden-pr0cess.axx-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E10.eps2.8_h1dden-pr0cess.axx-Bluray-1080p.mkv","size":1371326337,"dateAdded":"2019-12-26T15:13:17.647346Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437366,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3614773,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:48","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11101},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E11.eps2.9_pyth0n-pt1.p7z-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E11.eps2.9_pyth0n-pt1.p7z-Bluray-1080p.mkv","size":1221422652,"dateAdded":"2019-12-26T15:13:17.748823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":372517,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2866892,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:08","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11103},{"seriesId":1,"seasonNumber":2,"relativePath":"Season 02\/S02E12.eps2.9_pyth0n-pt2.p7z-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 02\/S02E12.eps2.9_pyth0n-pt2.p7z-Bluray-1080p.mkv","size":1306440674,"dateAdded":"2019-12-26T15:13:17.850381Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416325,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3004619,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:53","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11105},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E01.401 Unauthorized-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E01.401 Unauthorized-Bluray-1080p.mkv","size":4693748616,"dateAdded":"2020-04-02T21:58:59.633241Z","sceneName":"mr.robot.s04e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8747000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12799},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E02.402 Payment Required-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E02.402 Payment Required-Bluray-1080p.mkv","size":4262319355,"dateAdded":"2020-04-02T21:59:36.822144Z","sceneName":"mr.robot.s04e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10445000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12800},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E03.403 Forbidden-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E03.403 Forbidden-Bluray-1080p.mkv","size":4263103811,"dateAdded":"2020-04-02T22:00:10.360966Z","sceneName":"mr.robot.s04e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12801},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E04.404 Not Found-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E04.404 Not Found-Bluray-1080p.mkv","size":4262749596,"dateAdded":"2020-04-02T22:00:43.374433Z","sceneName":"mr.robot.s04e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10046000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12802},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E05.405 Method Not Allowed-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E05.405 Method Not Allowed-Bluray-1080p.mkv","size":4263102734,"dateAdded":"2020-04-02T22:01:12.56317Z","sceneName":"mr.robot.s04e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10027000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12803},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E06.406 Not Acceptable-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E06.406 Not Acceptable-Bluray-1080p.mkv","size":4262850668,"dateAdded":"2020-04-02T22:01:43.327574Z","sceneName":"mr.robot.s04e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10585000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12804},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E07.407 Proxy Authentication Required-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E07.407 Proxy Authentication Required-Bluray-1080p.mkv","size":4263153464,"dateAdded":"2020-04-02T22:02:11.320912Z","sceneName":"mr.robot.s04e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8568000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12805},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E08.408 Request Timeout-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E08.408 Request Timeout-Bluray-1080p.mkv","size":3518711968,"dateAdded":"2020-04-02T22:02:40.694073Z","sceneName":"mr.robot.s04e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8939000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12806},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E09.409 Conflict-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E09.409 Conflict-Bluray-1080p.mkv","size":4262744924,"dateAdded":"2020-04-02T22:03:02.300689Z","sceneName":"mr.robot.s04e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10553000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12807},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E10.410 Gone-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E10.410 Gone-Bluray-1080p.mkv","size":3518855587,"dateAdded":"2020-04-02T22:03:28.920354Z","sceneName":"mr.robot.s04e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8854000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12808},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E11.eXit-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E11.eXit-Bluray-1080p.mkv","size":4263617652,"dateAdded":"2020-04-02T22:03:53.973288Z","sceneName":"mr.robot.s04e11.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9402000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12809},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E12.whoami-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E12.whoami-Bluray-1080p.mkv","size":3518318459,"dateAdded":"2020-04-02T22:04:20.161112Z","sceneName":"mr.robot.s04e12.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9126000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12810},{"seriesId":1,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Hello, Elliot-Bluray-1080p.mkv","path":"\/tv\/Mr. Robot\/Season 04\/S04E13.Hello, Elliot-Bluray-1080p.mkv","size":4263090615,"dateAdded":"2020-04-02T22:04:43.982345Z","sceneName":"mr.robot.s04e13.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9647000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12811}],"queue":[]},"7":{"series":{"title":"Black Mirror","alternateTitles":[],"sortTitle":"black mirror","status":"ended","ended":true,"overview":"A television anthology series that shows the dark side of life and technology.","previousAiring":"2019-06-05T09:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/15\/banner.jpg?lastWrite=637100123629078630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/253463-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/15\/poster.jpg?lastWrite=637100123631598580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/253463-10.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/15\/fanart.jpg?lastWrite=637100123626758670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/253463-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":true,"statistics":{"previousAiring":"2018-12-28T08:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":2,"sizeOnDisk":2307811347,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-12-18T08:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":2773710063,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-02-25T08:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":10541232748,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2016-10-21T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":29630047088,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-12-29T08:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8576000326,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2019-06-05T09:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":8150542937,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Black Mirror","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":253463,"tvRageId":30348,"tvMazeId":305,"firstAired":"2011-12-04T00:00:00Z","seriesType":"standard","cleanTitle":"blackmirror","imdbId":"tt2085059","titleSlug":"black-mirror","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2018-01-02T02:16:55.0710503Z","ratings":{"votes":5042,"value":9.0},"statistics":{"seasonCount":5,"episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":61979344509,"percentOfEpisodes":100.0},"id":15},"episodes":[{"seriesId":15,"episodeFileId":762,"seasonNumber":1,"episodeNumber":1,"title":"The National Anthem","airDate":"2011-12-04","airDateUtc":"2011-12-04T08:00:00Z","overview":"A twisted parable for the Twitter age, The National Anthem looks at how life is very much harder for the rich and supposedly powerful now that information is disseminated so quickly and public opinion is so loud, powerful and quick to change. It's a political thriller in which the Prime Minister faces a huge dilemma - and that's all that can be revealed for now...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":993},{"seriesId":15,"episodeFileId":765,"seasonNumber":1,"episodeNumber":2,"title":"Fifteen Million Merits","airDate":"2011-12-11","airDateUtc":"2011-12-11T08:00:00Z","overview":"Set in a sarcastic version of a future reality, 15 Million Merits is a satire on entertainment shows and our insatiable thirst for distraction. In this world, everyone is confined to a life of strange physical drudgery. The only way to escape this life is to enter the 'Hot Shot' talent show and just pray you can impress the judges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":994},{"seriesId":15,"episodeFileId":769,"seasonNumber":1,"episodeNumber":3,"title":"The Entire History of You","airDate":"2011-12-18","airDateUtc":"2011-12-18T08:00:00Z","overview":"Set in an alternative reality where everyone has access to a system which records everything they do, see or hear. You need never forget a face, a holiday or a night out again... but is that always a good thing?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":995},{"seriesId":15,"episodeFileId":9600,"seasonNumber":2,"episodeNumber":1,"title":"Be Right Back","airDate":"2013-02-11","airDateUtc":"2013-02-11T08:00:00Z","overview":"Martha and Ash are a young couple who move to a remote cottage. The day after the move, Ash is killed returning the hire van.\r\n\r\nAt the funeral, Martha's friend Sarah tells her about a new service that lets people stay in touch with the deceased. By using all his past online communications and social media profiles, a new 'Ash' can be created.\r\n\r\nMartha is disgusted by the concept but then in a confused and lonely state she decides to talk to 'him'\u2026","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":996},{"seriesId":15,"episodeFileId":9601,"seasonNumber":2,"episodeNumber":2,"title":"White Bear","airDate":"2013-02-18","airDateUtc":"2013-02-18T08:00:00Z","overview":"Victoria wakes up and cannot remember anything about her life. Everyone she encounters refuses to communicate with her and enjoys filming her discomfort on their phones.\r\n\r\nVictoria meets Jem, who explains that a signal is being transmitted that has turned most of the population into dumb voyeurs. This apathy has allowed the unaffected, the 'hunters', to do what they want and they are out to get people like her and Victoria.\r\n\r\nJem and Victoria set out to destroy the transmitter, but can they manage it and will it end their torment?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":997},{"seriesId":15,"episodeFileId":9602,"seasonNumber":2,"episodeNumber":3,"title":"The Waldo Moment","airDate":"2013-02-25","airDateUtc":"2013-02-25T08:00:00Z","overview":"Meet Waldo\u2026 a CGI blue bear from a children's educational TV show who in reality is an anarchic character on a satirical late-night topical comedy show.\r\nBehind the scenes, Waldo is voiced and controlled by failed comedian Jamie Salter. When the channel decide they would like to give Waldo his own pilot, the production company enter him into a political race against one of his victims, Conservative Liam Monroe, for a stunt.\r\nJamie isn't comfortable with politics - he just sees himself as a clown - but once the wheels start turning there's no stopping the thing. So what can Jamie do?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":998},{"seriesId":15,"episodeFileId":12748,"seasonNumber":0,"episodeNumber":1,"title":"White Christmas","airDate":"2014-12-16","airDateUtc":"2014-12-16T08:00:00Z","overview":"This feature-length special consists of three interwoven stories. In a mysterious and remote snowy outpost, Matt and Potter share a Christmas meal, swapping creepy tales of their earlier lives in the outside world. Matt is a charismatic American trying to bring the reserved, secretive Potter out of his shell. But are both men who they appear to be? A woman gets thrust into a nightmarish world of 'smart' gadgetry. Plus a look at what would happen if you could 'block' people in real life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":17416},{"seriesId":15,"episodeFileId":759,"seasonNumber":3,"episodeNumber":1,"title":"Nosedive","airDate":"2016-10-21","airDateUtc":"2016-10-21T07:00:00Z","overview":"Insecure office worker Lacie lives in a happy, smiley, status-obsessed nightmare world. Her old friend Naomi is one of society\u2019s elites, and Lacie may have found a way to join her\u2026","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":999},{"seriesId":15,"episodeFileId":763,"seasonNumber":3,"episodeNumber":2,"title":"Playtest","airDate":"2016-10-21","airDateUtc":"2016-10-21T07:00:00Z","overview":"A thrill-seeking globetrotter visits Britain, hooks up with a woman and tests the latest in video game technology \u2013 \u201ca device as mind-bendingly sophisticated as it is terrifying.\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1000},{"seriesId":15,"episodeFileId":767,"seasonNumber":3,"episodeNumber":3,"title":"Shut Up and Dance","airDate":"2016-10-21","airDateUtc":"2016-10-21T07:00:00Z","overview":"When withdrawn 19-year-old Kenny stumbles headlong into an online trap, he is quickly forced into an uneasy alliance with shifty Hector \u2013 both of them at the mercy of persons unknown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1001},{"seriesId":15,"episodeFileId":771,"seasonNumber":3,"episodeNumber":4,"title":"San Junipero","airDate":"2016-10-21","airDateUtc":"2016-10-21T07:00:00Z","overview":"California, 1987: San Junipero is a fun-loving beach town synonymous with sun, surf, and sex. And for recent arrivals Yorkie and Kelly, it\u2019s going to be a life-changer\u2026","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":1002},{"seriesId":15,"episodeFileId":773,"seasonNumber":3,"episodeNumber":5,"title":"Men Against Fire","airDate":"2016-10-21","airDateUtc":"2016-10-21T07:00:00Z","overview":"A military story set in a post-war future. A rookie soldier is posted overseas, protecting frightened villagers from an infestation of vicious feral mutants alongside fellow soldier Raiman. They\u2019re hoping some new technological advantage will save them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":1003},{"seriesId":15,"episodeFileId":775,"seasonNumber":3,"episodeNumber":6,"title":"Hated in the Nation","airDate":"2016-10-21","airDateUtc":"2016-10-21T07:00:00Z","overview":"A police detective and her geeky young sidekick investigate a string of grisly murders with a sinister link to social media.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":1004},{"seriesId":15,"episodeFileId":760,"seasonNumber":4,"episodeNumber":1,"title":"USS Callister","airDate":"2017-12-29","airDateUtc":"2017-12-29T08:00:00Z","overview":"Capt. Robert Daly presides over his crew with wisdom and courage. But a new recruit will soon discover nothing on this spaceship is what it seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":1005},{"seriesId":15,"episodeFileId":764,"seasonNumber":4,"episodeNumber":2,"title":"Arkangel","airDate":"2017-12-29","airDateUtc":"2017-12-29T08:00:00Z","overview":"Worried about her daughter's safety, single mom Marie signs up for a cutting-edge device that monitors the girl's whereabouts -- and much more.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":1006},{"seriesId":15,"episodeFileId":768,"seasonNumber":4,"episodeNumber":3,"title":"Crocodile","airDate":"2017-12-29","airDateUtc":"2017-12-29T08:00:00Z","overview":"Architect Mia scrambles to keep a dark secret under wraps, while insurance investigator Shazia harvests people's memories of a nearby accident scene.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":1007},{"seriesId":15,"episodeFileId":772,"seasonNumber":4,"episodeNumber":4,"title":"Hang the DJ","airDate":"2017-12-29","airDateUtc":"2017-12-29T08:00:00Z","overview":"Paired up by a dating program that puts an expiration date on all relationships, Frank and Amy soon begin to question the system's logic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":1008},{"seriesId":15,"episodeFileId":774,"seasonNumber":4,"episodeNumber":5,"title":"Metalhead","airDate":"2017-12-29","airDateUtc":"2017-12-29T08:00:00Z","overview":"At an abandoned warehouse, scavengers searching for supplies encounter a ruthless foe and flee for their lives through a bleak wasteland.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":1009},{"seriesId":15,"episodeFileId":776,"seasonNumber":4,"episodeNumber":6,"title":"Black Museum","airDate":"2017-12-29","airDateUtc":"2017-12-29T08:00:00Z","overview":"On a dusty stretch of highway, a traveler stumbles across a museum that boasts rare criminal artefacts -- and a disturbing main attraction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":1010},{"seriesId":15,"episodeFileId":6259,"seasonNumber":0,"episodeNumber":2,"title":"Bandersnatch","airDate":"2018-12-28","airDateUtc":"2018-12-28T08:00:00Z","overview":"In 1984, a young programmer begins to question reality as he adapts a dark fantasy novel into a video game. A mind-bending tale with multiple endings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":9509},{"seriesId":15,"episodeFileId":7552,"seasonNumber":5,"episodeNumber":1,"title":"Striking Vipers","airDate":"2019-06-05","airDateUtc":"2019-06-05T07:00:00Z","overview":"When old college friends Danny and Karl reconnect in a VR version of their favorite video game, the late-night sessions yield an unexpected discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":11198},{"seriesId":15,"episodeFileId":7550,"seasonNumber":5,"episodeNumber":2,"title":"Smithereens","airDate":"2019-06-05","airDateUtc":"2019-06-05T08:00:00Z","overview":"A London rideshare driver ignites an international crisis when he kidnaps a worker from a social media company.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":11216},{"seriesId":15,"episodeFileId":7551,"seasonNumber":5,"episodeNumber":3,"title":"Rachel, Jack and Ashley Too","airDate":"2019-06-05","airDateUtc":"2019-06-05T09:00:00Z","overview":"A lonely teen becomes obsessed with a robot doll based on her pop star idol, Ashley O -- just as the real Ashley's life begins to unravel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":11217}],"episodeFile":[{"seriesId":15,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Nosedive-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 03\/S03E01.Nosedive-Bluray-1080p.mkv","size":4688094150,"dateAdded":"2018-10-10T21:26:06.298282Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8465000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1016","runTime":"1:02:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":759},{"seriesId":15,"seasonNumber":4,"relativePath":"Season 04\/S04E01.USS Callister-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 04\/S04E01.USS Callister-WEBDL-1080p.mkv","size":1909722320,"dateAdded":"2018-10-10T21:26:06.323787Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2935993,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1012","runTime":"1:16:38","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Polish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":760},{"seriesId":15,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The National Anthem-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 01\/S01E01.The National Anthem-WEBDL-1080p.mkv","size":798064142,"dateAdded":"2018-10-10T21:26:06.374869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"44:04","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":762},{"seriesId":15,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Playtest-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 03\/S03E02.Playtest-Bluray-1080p.mkv","size":4260097085,"dateAdded":"2018-10-10T21:26:06.399922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8506000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"56:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":763},{"seriesId":15,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Arkangel-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 04\/S04E02.Arkangel-WEBDL-1080p.mkv","size":1219485237,"dateAdded":"2018-10-10T21:26:06.430478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2752637,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1036","runTime":"52:06","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Polish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":764},{"seriesId":15,"seasonNumber":1,"relativePath":"Season 01\/S01E02.15 Million Merits-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 01\/S01E02.15 Million Merits-WEBDL-1080p.mkv","size":1102602881,"dateAdded":"2018-10-10T21:26:06.454882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"1:02:00","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":765},{"seriesId":15,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Shut Up and Dance-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 03\/S03E03.Shut Up and Dance-Bluray-1080p.mkv","size":4259171495,"dateAdded":"2018-10-10T21:26:06.503895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9372000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1016","runTime":"52:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":767},{"seriesId":15,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Crocodile-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 04\/S04E03.Crocodile-WEBDL-1080p.mkv","size":1241274081,"dateAdded":"2018-10-10T21:26:06.529298Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2413802,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"59:06","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Polish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":768},{"seriesId":15,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Entire History of You-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 01\/S01E03.The Entire History of You-WEBDL-1080p.mkv","size":873043040,"dateAdded":"2018-10-10T21:26:06.554491Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"49:01","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":769},{"seriesId":15,"seasonNumber":3,"relativePath":"Season 03\/S03E04.San Junipero-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 03\/S03E04.San Junipero-Bluray-1080p.mkv","size":4689890568,"dateAdded":"2018-10-10T21:26:06.605324Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8762000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"1:00:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":771},{"seriesId":15,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Hang the DJ-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 04\/S04E04.Hang the DJ-WEBDL-1080p.mkv","size":910878397,"dateAdded":"2018-10-10T21:26:06.630201Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1952037,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"51:56","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Polish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":772},{"seriesId":15,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Men Against Fire-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 03\/S03E05.Men Against Fire-Bluray-1080p.mkv","size":4690850001,"dateAdded":"2018-10-10T21:26:06.654706Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8925000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"59:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":773},{"seriesId":15,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Metalhead-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 04\/S04E05.Metalhead-WEBDL-1080p.mkv","size":1743838993,"dateAdded":"2018-10-10T21:26:06.67959Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5274871,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"41:04","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ English \/ Polish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":774},{"seriesId":15,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Hated in the Nation-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 03\/S03E06.Hated in the Nation-Bluray-1080p.mkv","size":7041943789,"dateAdded":"2018-10-10T21:26:06.706016Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9018000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"1:29:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":775},{"seriesId":15,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Black Museum-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 04\/S04E06.Black Museum-WEBDL-1080p.mkv","size":1550801298,"dateAdded":"2018-10-10T21:26:06.73056Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2609938,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x872","runTime":"1:09:00","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Polish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":776},{"seriesId":15,"seasonNumber":0,"relativePath":"Specials\/S00E02.Bandersnatch-Bluray-1080p.mp4","path":"\/tv\/Black Mirror\/Specials\/S00E02.Bandersnatch-Bluray-1080p.mp4","size":1600198318,"dateAdded":"2018-12-30T23:57:58.396344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x864","runTime":"1:33:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6259},{"seriesId":15,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Smithereens-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 05\/S05E02.Smithereens-WEBDL-1080p.mkv","size":2628487596,"dateAdded":"2019-06-05T08:05:40.454735Z","sceneName":"Black.Mirror.S05E02.iNTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:10:14","scanType":"Progressive","subtitles":"English \/ Finnish \/ German \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7550},{"seriesId":15,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Rachel, Jack and Ashley Too-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 05\/S05E03.Rachel, Jack and Ashley Too-WEBDL-1080p.mkv","size":2136880203,"dateAdded":"2019-06-05T08:05:59.851589Z","sceneName":"Black.Mirror.S05E03.iNTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:07:12","scanType":"Progressive","subtitles":"English \/ Finnish \/ German \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7551},{"seriesId":15,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Striking Vipers-WEBDL-1080p.mkv","path":"\/tv\/Black Mirror\/Season 05\/S05E01.Striking Vipers-WEBDL-1080p.mkv","size":3385175138,"dateAdded":"2019-06-05T08:12:10.357806Z","sceneName":"Black.Mirror.S05E01.iNTERNAL.1080p.WEB.x264-STRiFE[rarbg]","releaseGroup":"STRiFE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6810000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:01:50","scanType":"Progressive","subtitles":"English \/ Finnish \/ German \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7552},{"seriesId":15,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Be Right Back-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 02\/S02E01.Be Right Back-Bluray-1080p.mkv","size":3512659818,"dateAdded":"2019-10-06T19:04:11.075754Z","sceneName":"Black.Mirror.S02E01.1080p.BluRay.x264-FilmHD","releaseGroup":"FilmHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8162000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9600},{"seriesId":15,"seasonNumber":2,"relativePath":"Season 02\/S02E02.White Bear-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 02\/S02E02.White Bear-Bluray-1080p.mkv","size":3517701134,"dateAdded":"2019-10-06T19:04:28.524967Z","sceneName":"Black.Mirror.S02E02.1080p.BluRay.x264-FilmHD","releaseGroup":"FilmHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9627000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"42:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9601},{"seriesId":15,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Waldo Moment-Bluray-1080p.mkv","path":"\/tv\/Black Mirror\/Season 02\/S02E03.The Waldo Moment-Bluray-1080p.mkv","size":3510871796,"dateAdded":"2019-10-06T19:05:00.075194Z","sceneName":"Black.Mirror.S02E03.1080p.BluRay.x264-FilmHD","releaseGroup":"FilmHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9327000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"43:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9602},{"seriesId":15,"seasonNumber":0,"relativePath":"Specials\/S00E01.White Christmas-HDTV-1080p.mkv","path":"\/tv\/Black Mirror\/Specials\/S00E01.White Christmas-HDTV-1080p.mkv","size":707613029,"dateAdded":"2020-03-23T14:53:09.687078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":77568,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1196616,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"1:13:55","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12748}],"queue":[]},"8":{"series":{"title":"Devilman Crybaby","alternateTitles":[],"sortTitle":"devilman crybaby","status":"ended","ended":true,"overview":"The protagonist Akira Fudo learns from his best friend, Ryo Asuka, that an ancient race of demons has returned to take back the world from humans. Ryo tells Akira that the only way to defeat the demons is to incorporate their supernatural powers, and suggests that he unite with a demon himself. Akira succeeds in transforming into Devilman, who possesses both the powers of a demon and the soul of a human. The battle of Devilman and Akira Fudo begins.","previousAiring":"2018-01-05T05:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/16\/banner.jpg?lastWrite=636747176321306140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/338192-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/16\/poster.jpg?lastWrite=637103832563836210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/338192-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/16\/fanart.jpg?lastWrite=637103832536676700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/338192-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-01-05T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":16959304871,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Devilman Crybaby","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":338192,"tvRageId":0,"tvMazeId":30915,"firstAired":"2018-01-05T00:00:00Z","seriesType":"standard","cleanTitle":"devilmancrybaby","imdbId":"tt6660498","titleSlug":"devilman-crybaby","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Fantasy","Horror","Suspense"],"tags":[],"added":"2018-01-05T17:34:29.7735416Z","ratings":{"votes":114,"value":8.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":11,"sizeOnDisk":16959304871,"percentOfEpisodes":100.0},"id":16},"episodes":[{"seriesId":16,"episodeFileId":1192,"seasonNumber":1,"episodeNumber":1,"title":"I Need You","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Ryo, a young professor returning from research abroad, takes his pure-hearted, crybaby friend Akira to a decadent party, where things turn demonic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1634},{"seriesId":16,"episodeFileId":1193,"seasonNumber":1,"episodeNumber":2,"title":"One Hand Is Enough","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Akira has become a completely different man -- he's stronger and hungrier than ever before. He seeks out Ryo for answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1635},{"seriesId":16,"episodeFileId":1194,"seasonNumber":1,"episodeNumber":3,"title":"Believe Me!","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"After getting shut down by his editor, paparazzo Nagasaki gets desperate. Silene and Kaim learn what happened to their missing fellow demon, Amon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1636},{"seriesId":16,"episodeFileId":1195,"seasonNumber":1,"episodeNumber":4,"title":"Come, Akira","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Akira's mother calls and says she'll be home soon. Everyone is looking forward to seeing her, but Ryo warns Akira not to trust any human.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1637},{"seriesId":16,"episodeFileId":1196,"seasonNumber":1,"episodeNumber":5,"title":"Beautiful Silene","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Silene tracks down Amon, hoping to reawaken his demonic side. But in the ensuing battle, the human soul of Akira remains powerful.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1638},{"seriesId":16,"episodeFileId":1197,"seasonNumber":1,"episodeNumber":6,"title":"Neither Demon Nor Human","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"At a widely broadcast track meet, Ryo plans to expose high school athlete Koda as a demon, thereby spreading fear and distrust throughout society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1639},{"seriesId":16,"episodeFileId":1198,"seasonNumber":1,"episodeNumber":7,"title":"Weak Humans, Wise Demons","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"With the fear of demons gripping the world, humanity devolves into paranoia and violence. Akira tries to save other demon-human hybrids like himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1640},{"seriesId":16,"episodeFileId":1199,"seasonNumber":1,"episodeNumber":8,"title":"I Must Know Myself","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Ryo's actions and motives remain a mystery to himself, so he revisits his past for answers. Miki's father searches for his missing wife and son.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1641},{"seriesId":16,"episodeFileId":1200,"seasonNumber":1,"episodeNumber":9,"title":"Go to Hell, You Mortals","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Betrayed and exposed, Akira becomes a target. After Miki takes to social media to defend his human soul, she and Miko find themselves under attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1642},{"seriesId":16,"episodeFileId":1201,"seasonNumber":1,"episodeNumber":10,"title":"Crybaby","airDate":"2018-01-05","airDateUtc":"2018-01-05T05:00:00Z","overview":"Confronted by Akira, Ryo reveals the truth about demonkind and himself. Humans, demons and devilmen gather for an ultimate battle for the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1643},{"seriesId":16,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Devilman Crybaby Recap","airDate":"2018-03-24","airDateUtc":"2018-03-24T04:00:00Z","overview":"A short web recap of the Devilman Crybaby series, posted on Aniplex's official YouTube channel.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1632}],"episodeFile":[{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E01.I Need You-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E01.I Need You-Bluray-1080p.mkv","size":1764648055,"dateAdded":"2018-10-10T21:37:58.009632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":6449774,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:41","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1192},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E02.One Hand Is Enough-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E02.One Hand Is Enough-Bluray-1080p.mkv","size":2732990257,"dateAdded":"2018-10-10T21:37:58.037191Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":11856520,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:03","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1193},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Believe Me!-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E03.Believe Me!-Bluray-1080p.mkv","size":1356365270,"dateAdded":"2018-10-10T21:37:58.064437Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":4764996,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1194},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Come, Akira-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E04.Come, Akira-Bluray-1080p.mkv","size":1456722984,"dateAdded":"2018-10-10T21:37:58.091599Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":5225929,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:43","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1195},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Beautiful Silene-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E05.Beautiful Silene-Bluray-1080p.mkv","size":1451336755,"dateAdded":"2018-10-10T21:37:58.118601Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":4953755,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:19","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1196},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Neither Demon Nor Human-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E06.Neither Demon Nor Human-Bluray-1080p.mkv","size":1644223940,"dateAdded":"2018-10-10T21:37:58.145648Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":6374503,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:13","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1197},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Weak Humans, Wise Demons-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E07.Weak Humans, Wise Demons-Bluray-1080p.mkv","size":1616501303,"dateAdded":"2018-10-10T21:37:58.172718Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":6026274,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:53","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1198},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E08.I Must Know Myself-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E08.I Must Know Myself-Bluray-1080p.mkv","size":1528566310,"dateAdded":"2018-10-10T21:37:58.200984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":5558115,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:45","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1199},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Go to Hell, You Mortals-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E09.Go to Hell, You Mortals-Bluray-1080p.mkv","size":1493369266,"dateAdded":"2018-10-10T21:37:58.228304Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":4529869,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:40","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1200},{"seriesId":16,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Crybaby-Bluray-1080p.mkv","path":"\/tv\/Devilman Crybaby\/Season 01\/S01E10.Crybaby-Bluray-1080p.mkv","size":1914580731,"dateAdded":"2018-10-10T21:37:58.254955Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese \/ Japanese \/ Japanese","audioStreamCount":10,"videoBitDepth":10,"videoBitrate":7304745,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:27","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Bulgarian \/ Greek \/ Hebrew \/ Arab"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1201}],"queue":[]},"9":{"series":{"title":"Warehouse 13","alternateTitles":[],"sortTitle":"warehouse 13","status":"ended","ended":true,"overview":"After saving the life of an international diplomat in Washington D.C., a pair of U.S. Secret Service agents are whisked away to a covert location in South Dakota that houses supernatural objects that the U.S. Government has collected over the centuries. Their new assignment: retrieve some of the missing objects and investigate reports of new ones.","previousAiring":"2014-05-20T01:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/9\/banner.jpg?lastWrite=637103833645856600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/84676-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/9\/poster.jpg?lastWrite=637103833651336500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/84676-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/9\/fanart.jpg?lastWrite=637103833643136650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/84676-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2011-07-06T07:45:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":24,"sizeOnDisk":389012834,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-09-23T01:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":45747333156,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2010-12-08T02:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45739457676,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2011-12-07T02:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":23050281620,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2013-07-09T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70369772169,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2014-05-20T01:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":21107626599,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Warehouse 13","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":84676,"tvRageId":7884,"tvMazeId":434,"firstAired":"2009-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"warehouse13","imdbId":"tt1132290","titleSlug":"warehouse-13","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Drama","Fantasy","Science Fiction","Suspense"],"tags":[],"added":"2018-04-24T20:18:03.6304352Z","ratings":{"votes":8347,"value":8.4},"statistics":{"seasonCount":5,"episodeFileCount":74,"episodeCount":74,"totalEpisodeCount":88,"sizeOnDisk":206403484054,"percentOfEpisodes":100.0},"id":9},"episodes":[{"seriesId":9,"episodeFileId":4875,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2009-07-07","airDateUtc":"2009-07-08T01:00:00Z","overview":"Secret Service agents Lattimer and Bering are \"rewarded\" with a transfer to the top-secret Warehouse 13. They meet Artie Nielsen, the caretaker of the mysterious warehouse, who tells them about their new job. The agents are responsible for the collection of every supernatural and unexplained item that the U.S. Government has ever collected. For their first assignment, they are sent to Iowa to investigate a possible artifact belonging to a college student who went berserk and assaulted his girlfriend while chanting an Italian incantation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":5079},{"seriesId":9,"episodeFileId":4884,"seasonNumber":1,"episodeNumber":2,"title":"Resonance","airDate":"2009-07-14","airDateUtc":"2009-07-15T01:00:00Z","overview":"Pete and Myka are after a team of bank robbers who have a distinctive weapon. Meanwhile, Artie examines the security breach at the warehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":5080},{"seriesId":9,"episodeFileId":4886,"seasonNumber":1,"episodeNumber":3,"title":"Magnetism","airDate":"2009-07-21","airDateUtc":"2009-07-22T01:00:00Z","overview":"Pete and Myka are sent to investigate a town where the inhabitants' minds are being altered making them act as they please. Meanwhile, Artie is confused by the energy flows going on in the warehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":5081},{"seriesId":9,"episodeFileId":4893,"seasonNumber":1,"episodeNumber":4,"title":"Claudia","airDate":"2009-07-28","airDateUtc":"2009-07-29T01:00:00Z","overview":"A woman kidnaps Artie and insists that he help her recover her brother... who was lost in an artifact-related experiment 12 years ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":5082},{"seriesId":9,"episodeFileId":4898,"seasonNumber":1,"episodeNumber":5,"title":"Elements","airDate":"2009-08-04","airDateUtc":"2009-08-05T01:00:00Z","overview":"The theft of a sculpture leads Myka and Pete to a sacred Indian cave holding an ancient secret of creation... and destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":5083},{"seriesId":9,"episodeFileId":4904,"seasonNumber":1,"episodeNumber":6,"title":"Burnout","airDate":"2009-08-11","airDateUtc":"2009-08-12T01:00:00Z","overview":"Pete and Myka take on a previous agent's assignment after the man's corpse turns up in the basement of a St. Louis police station.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":5084},{"seriesId":9,"episodeFileId":4913,"seasonNumber":1,"episodeNumber":7,"title":"Implosion","airDate":"2009-08-18","airDateUtc":"2009-08-19T01:00:00Z","overview":"Pete and Myka return to Washington to intercept a samurai sword that is to be presented to the president, and they discover a competitor for items that belong to the warehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":5085},{"seriesId":9,"episodeFileId":4917,"seasonNumber":1,"episodeNumber":8,"title":"Duped","airDate":"2009-08-25","airDateUtc":"2009-08-26T01:00:00Z","overview":"Pete and Myka go to Las Vegas to fetch an artifact that is helping a couple of gamblers, but the mission goes awry when Myka becomes trapped in a famous author's mirror.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":5086},{"seriesId":9,"episodeFileId":4920,"seasonNumber":1,"episodeNumber":9,"title":"Regrets","airDate":"2009-09-01","airDateUtc":"2009-09-02T01:00:00Z","overview":"Pete and Myka visit a Florida prison to probe a spate of unexplained suicides. Meanwhile, Claudia changes a light bulb with the help of an artifact.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":5087},{"seriesId":9,"episodeFileId":4927,"seasonNumber":1,"episodeNumber":10,"title":"Breakdown","airDate":"2009-09-08","airDateUtc":"2009-09-09T01:00:00Z","overview":"Artie gets questioned by the Regents and Mrs. Frederic. Meanwhile, Pete, Myka and Claudia become trapped inside Warehouse 13, where a dangerous predicament unfolds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":5088},{"seriesId":9,"episodeFileId":4931,"seasonNumber":1,"episodeNumber":11,"title":"Nevermore","airDate":"2009-09-15","airDateUtc":"2009-09-16T01:00:00Z","overview":"After receiving word that her father is dying, Myka travels home to see her parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":5089},{"seriesId":9,"episodeFileId":4935,"seasonNumber":1,"episodeNumber":12,"title":"MacPherson","airDate":"2009-09-22","airDateUtc":"2009-09-23T01:00:00Z","overview":"The team discovers that MacPherson is auctioning artifacts he has siphoned from the Warehouse shelves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":5090},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"MacPherson","airDate":"2009-09-22","airDateUtc":"2009-09-23T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21538},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Season One Recap","airDate":"2010-06-21","airDateUtc":"2010-06-22T01:00:00Z","overview":"Get ready for the all-new season of Syfy's biggest hit series. Experience all the action, adventure, and secrets of the entire first season of Warehouse 13 along with an exclusive look at what's to come in season 2.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5058},{"seriesId":9,"episodeFileId":4877,"seasonNumber":2,"episodeNumber":1,"title":"Time Will Tell","airDate":"2010-07-06","airDateUtc":"2010-07-07T01:00:00Z","overview":"In the season two premiere, we pick up right where we left off. MacPherson has blown Artie to smithereens, and disappeared. Is Leena really a traitor? Where has Claudia gone? How will Pete, Myka and the Warehouse fare without Artie? What other havoc did MacPherson wreak when he was alone in the Warehouse? And is there yet a new villain on the horizon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":5091},{"seriesId":9,"episodeFileId":4882,"seasonNumber":2,"episodeNumber":2,"title":"Mild Mannered","airDate":"2010-07-13","airDateUtc":"2010-07-14T01:00:00Z","overview":"A super-powered vigilante is at large in Detroit, and the agents try to track down the person responsible. Meanwhile, things between Leena and Claudia are still tense, and Artie is haunted by the spirit of his dead friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":5092},{"seriesId":9,"episodeFileId":4887,"seasonNumber":2,"episodeNumber":3,"title":"Beyond Our Control","airDate":"2010-07-20","airDateUtc":"2010-07-21T01:00:00Z","overview":"When an artifact meant for the Warehouse turns up in the small town next door, the team finds themselves in the middle of a B-movie meltdown complete with cowboys, gladiators, sci-fi robots and beach storming marines. Their only chance of survival rests with the man who invented television, Philo T. Farnsworth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":5093},{"seriesId":9,"episodeFileId":4896,"seasonNumber":2,"episodeNumber":4,"title":"Age Before Beauty","airDate":"2010-07-27","airDateUtc":"2010-07-28T01:00:00Z","overview":"When young super models rapidly age 50 years overnight, Pete and Myka go undercover in the glam world of high fashion to discover who \u2013 and what \u2013 is behind the transformations.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":5094},{"seriesId":9,"episodeFileId":4901,"seasonNumber":2,"episodeNumber":5,"title":"13.1","airDate":"2010-08-03","airDateUtc":"2010-08-04T01:00:00Z","overview":"Douglas Fargo of Eureka's Global Dynamics is sent to Warehouse 13 to help update its aging computer system. This triggers a seemingly sentient computer virus that sends the Warehouse into lockdown and traps the team inside.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":5095},{"seriesId":9,"episodeFileId":4905,"seasonNumber":2,"episodeNumber":6,"title":"Around the Bend","airDate":"2010-08-10","airDateUtc":"2010-08-11T01:00:00Z","overview":"Mrs. Frederick secretly recruits Pete to find a mole within the organization who is buying artifacts. However, when the mole finds out, they go after those closest to Pete.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":5096},{"seriesId":9,"episodeFileId":4911,"seasonNumber":2,"episodeNumber":7,"title":"For the Team","airDate":"2010-08-17","airDateUtc":"2010-08-18T01:00:00Z","overview":"Claudia has just been given her first assignment, but when it involves a real human torch and H.G. Wells could it be too much for her to handle? Not to mention an appearance by an old love of Artie's","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":5097},{"seriesId":9,"episodeFileId":4915,"seasonNumber":2,"episodeNumber":8,"title":"Merge with Caution","airDate":"2010-08-24","airDateUtc":"2010-08-25T01:00:00Z","overview":"The agents hope to spend a weekend relaxing until an artifact gets in the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":5098},{"seriesId":9,"episodeFileId":4922,"seasonNumber":2,"episodeNumber":9,"title":"Vendetta","airDate":"2010-08-31","airDateUtc":"2010-09-01T01:00:00Z","overview":"Someone is using Artie's artifacts to commit a series of murders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":5099},{"seriesId":9,"episodeFileId":4926,"seasonNumber":2,"episodeNumber":10,"title":"Where and When","airDate":"2010-09-07","airDateUtc":"2010-09-08T01:00:00Z","overview":"Pete and Myka use H.G. Wells's time machine to travel back to 1961.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":5100},{"seriesId":9,"episodeFileId":4932,"seasonNumber":2,"episodeNumber":11,"title":"Buried (1)","airDate":"2010-09-14","airDateUtc":"2010-09-15T01:00:00Z","overview":"When Mrs. Frederic is stricken ill, the agents must search for a cure before it's too late. Their quest takes them to Egypt and the long-lost Warehouse 2.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":5101},{"seriesId":9,"episodeFileId":4936,"seasonNumber":2,"episodeNumber":12,"title":"Reset (2)","airDate":"2010-09-21","airDateUtc":"2010-09-22T01:00:00Z","overview":"The team tries to track down their rogue member, and discover the artifact they have is unexpectedly powerful. Meanwhile, Claudia wonders about her future with the Warehouse team and Pete must choose between Kelly and the mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":5102},{"seriesId":9,"episodeFileId":4938,"seasonNumber":2,"episodeNumber":13,"title":"Secret Santa","airDate":"2010-12-07","airDateUtc":"2010-12-08T02:00:00Z","overview":"As the Warehouse team prepares to celebrate the holidays in snowy South Dakota, Pete and Myka are called upon to hunt down a malevolent Santa Claus. Meanwhile, in time for Hanukkah, Artie and his estranged father, Isadore Weisfelt reunite after 30 years.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":5103},{"seriesId":9,"episodeFileId":4885,"seasonNumber":0,"episodeNumber":2,"title":"Of Monsters and Men: Chapter 1","airDate":"2011-07-05","airDateUtc":"2011-07-06T01:00:00Z","overview":"Artie and Claudia's delivery of classic comics has unexpected consequences.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5059},{"seriesId":9,"episodeFileId":4891,"seasonNumber":0,"episodeNumber":3,"title":"Of Monsters and Men: Chapter 2","airDate":"2011-07-05","airDateUtc":"2011-07-06T01:45:00Z","overview":"Things get two-dimensional as Pete, Claudia and Artie find themselves trapped in a comic book.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5060},{"seriesId":9,"episodeFileId":4897,"seasonNumber":0,"episodeNumber":4,"title":"Of Monsters and Men: Chapter 3","airDate":"2011-07-05","airDateUtc":"2011-07-06T02:30:00Z","overview":"The \"City of Ghouls\" comic book lives up to its name...much to the team's dismay.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5061},{"seriesId":9,"episodeFileId":4903,"seasonNumber":0,"episodeNumber":5,"title":"Of Monsters and Men: Chapter 4","airDate":"2011-07-05","airDateUtc":"2011-07-06T03:15:00Z","overview":"Pete descends into the sewers to track Claudia's ghoulish captor.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5062},{"seriesId":9,"episodeFileId":4909,"seasonNumber":0,"episodeNumber":6,"title":"Of Monsters and Men: Chapter 5","airDate":"2011-07-05","airDateUtc":"2011-07-06T04:00:00Z","overview":"The plot thickens as Pete is rescued and Claudia meets more ghouls.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5063},{"seriesId":9,"episodeFileId":4914,"seasonNumber":0,"episodeNumber":7,"title":"Of Monsters and Men: Chapter 6","airDate":"2011-07-05","airDateUtc":"2011-07-06T04:45:00Z","overview":"Artie makes contact with the outside world and Pete meets the four-color resistance.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5064},{"seriesId":9,"episodeFileId":4919,"seasonNumber":0,"episodeNumber":8,"title":"Of Monsters and Men: Chapter 7","airDate":"2011-07-05","airDateUtc":"2011-07-06T05:30:00Z","overview":"Leena strives to remove the team from their comic containment as Claudia establishes contact.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5065},{"seriesId":9,"episodeFileId":4924,"seasonNumber":0,"episodeNumber":9,"title":"Of Monsters and Men: Bonus Chapter","airDate":"2011-07-05","airDateUtc":"2011-07-06T06:15:00Z","overview":"While fighting Ghouls, Frank opens up to Pete about his past and the origin of the lighter.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5066},{"seriesId":9,"episodeFileId":4929,"seasonNumber":0,"episodeNumber":10,"title":"Of Monsters and Men: Chapter 8","airDate":"2011-07-05","airDateUtc":"2011-07-06T07:00:00Z","overview":"Pete's confrontation ends badly while Artie cracks the secret to the rack's power.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5067},{"seriesId":9,"episodeFileId":4934,"seasonNumber":0,"episodeNumber":11,"title":"Of Monsters and Men: Chapter 9","airDate":"2011-07-05","airDateUtc":"2011-07-06T07:45:00Z","overview":"Mercer's monstrous attack on the ghouls leads to danger for Pete and Claudia.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5068},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Of Monsters and Men: Chapter 10","airDate":"2011-07-05","airDateUtc":"2011-07-06T08:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5069},{"seriesId":9,"episodeFileId":6637,"seasonNumber":3,"episodeNumber":1,"title":"The New Guy","airDate":"2011-07-11","airDateUtc":"2011-07-12T01:00:00Z","overview":"After Myka leaves the warehouse, Pete gets a new partner: ATF agent Steven Jinks, who has a gift for sensing when someone is lying. Pete and Steven take on a new case in Denver, while Artie, Claudia, and Leena deal with a deadly pair of statues at Warehouse 13.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":5104},{"seriesId":9,"episodeFileId":6638,"seasonNumber":3,"episodeNumber":2,"title":"Trials","airDate":"2011-07-18","airDateUtc":"2011-07-19T01:00:00Z","overview":"While Pete and Myka go after someone using an artifact to induce Alzheimer's, Claudia goes on her first case as a full agent with Steve to track down Typhoid Mary's knife.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":5105},{"seriesId":9,"episodeFileId":6639,"seasonNumber":3,"episodeNumber":3,"title":"Love Sick","airDate":"2011-07-25","airDateUtc":"2011-07-26T01:00:00Z","overview":"While Artie and Claudia meet with Vanessa Calder and Hugo Miller to investigate a computer virus that transforms people into clay, Myka and Pete wake up naked in bed and try to find a missing Steve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":5106},{"seriesId":9,"episodeFileId":6640,"seasonNumber":3,"episodeNumber":4,"title":"Queen for a Day","airDate":"2011-08-01","airDateUtc":"2011-08-02T01:00:00Z","overview":"While Claudia and Steve attempt to infiltrate a Civil War reenactment to recover U.S. Grant's flask, Pete and Myka must deal with Pete's ex-wife... who has been stung by an artifact bee that has turned her into a human queen bee.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":5107},{"seriesId":9,"episodeFileId":6641,"seasonNumber":3,"episodeNumber":5,"title":"3... 2... 1...","airDate":"2011-08-08","airDateUtc":"2011-08-09T01:00:00Z","overview":"Pete, Myka and H.G. Wells track Joshua's Trumpet, an artifact that has eluded three generations of Warehouse agents, which now may pose a threat to a packed baseball stadium.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":5108},{"seriesId":9,"episodeFileId":6642,"seasonNumber":3,"episodeNumber":6,"title":"Don't Hate the Player","airDate":"2011-08-15","airDateUtc":"2011-08-16T01:00:00Z","overview":"Fargo becomes trapped in a video game inspired by Warehouse 13 and requires help from Pete, Claudia and Myka. Meanwhile, Stukowski recruits Artie and Steve to help with a case, and catches them stealing an artifact.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":5109},{"seriesId":9,"episodeFileId":6643,"seasonNumber":3,"episodeNumber":7,"title":"Past Imperfect","airDate":"2011-08-22","airDateUtc":"2011-08-23T01:00:00Z","overview":"While in Denver, Myka picks up the trail of the counterfeiter who killed her former partner, Sam Martino. Meanwhile, Artie, Claudia, and Steve interrogate a dog that witnessed the theft of an artifact.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":5110},{"seriesId":9,"episodeFileId":6644,"seasonNumber":3,"episodeNumber":8,"title":"The 40th Floor","airDate":"2011-08-29","airDateUtc":"2011-08-30T01:00:00Z","overview":"Sally Stukowski and her partner make their move, attacking the Regents and using an artifact to trap them in a building and bring it down around them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":5111},{"seriesId":9,"episodeFileId":6645,"seasonNumber":3,"episodeNumber":9,"title":"Shadows","airDate":"2011-09-12","airDateUtc":"2011-09-13T01:00:00Z","overview":"While Pete and his mother Jane try to determine the origins of their mysterious opponents, Myka and Claudia travel to Portland to stop a girl who can apparently vaporize anyone she hates with blasts of radiation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":5112},{"seriesId":9,"episodeFileId":6646,"seasonNumber":3,"episodeNumber":10,"title":"Insatiable","airDate":"2011-09-19","airDateUtc":"2011-09-20T01:00:00Z","overview":"Myka and Pete deal with a plague of zombies in Ithaca, while Claudia deals with a new romance, a prophecy of death, and a rejection from a friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":5113},{"seriesId":9,"episodeFileId":6647,"seasonNumber":3,"episodeNumber":11,"title":"Emily Lake (1)","airDate":"2011-10-03","airDateUtc":"2011-10-04T01:00:00Z","overview":"As Sykes begins his end game, the agents discover that Helena is still alive... and teaching high school literature. Meanwhile, Jane reveals the full extent of her plan but one agent will lose their life carrying it out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":5114},{"seriesId":9,"episodeFileId":6648,"seasonNumber":3,"episodeNumber":12,"title":"Stand (2)","airDate":"2011-10-03","airDateUtc":"2011-10-04T01:45:00Z","overview":"Pete and Myka race to stop Sykes from using his own cache of artifacts to destroy them and the Warehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":5115},{"seriesId":9,"episodeFileId":6972,"seasonNumber":3,"episodeNumber":13,"title":"The Greatest Gift","airDate":"2011-12-06","airDateUtc":"2011-12-07T02:00:00Z","overview":"Holiday Special: Pete is hit in the head by an artifact and wakes up to a life where he was never born. Pete must hunt down and persuade the Warehouse team (none of whom recognize him) to go on this life or death mission with him to vanquish a long dead nemesis from the past to get everyone\u2019s lives back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":5116},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Grand Designs Bonus Chapter","airDate":"2012-07-23","airDateUtc":"2012-07-24T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5077},{"seriesId":9,"episodeFileId":4879,"seasonNumber":4,"episodeNumber":1,"title":"A New Hope","airDate":"2012-07-23","airDateUtc":"2012-07-24T01:00:00Z","overview":"The Warehouse team struggles with the horrible reality of the Warehouse's destruction and the tragic loss of Steve Jinks, Mrs. Frederic and H. G. Wells. With matters so desperate, Pete, Myka, Artie, Leena and Claudia must decide whether to knowingly use a dangerous artifact for their own personal gain \u2014 at the risk of deadly consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":5117},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Grand Designs: Chapter 1","airDate":"2012-07-24","airDateUtc":"2012-07-25T01:00:00Z","overview":"On a rainy day at the Warehouse, Pete accidentally triggers an artifact that transforms the team into two-dimensional diorama versions of themselves, and returns the Warehouse to its original, unstable design.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5070},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Grand Designs: Chapter 2","airDate":"2012-07-24","airDateUtc":"2012-07-25T01:45:00Z","overview":"As Artie brings the team up to speed on the inner workings of the original Warehouse 13, the Anubis Shrine - one of three artifacts once used to power it - suddenly comes back online with devastating results.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5071},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Grand Designs: Chapter 3","airDate":"2012-07-24","airDateUtc":"2012-07-25T02:30:00Z","overview":"To stop the earthquakes generated by the Anubis Shrine, Leena and Trailer must risk their lives to stabilize this mega-powerful artifact before it tears the Warehouse apart","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5072},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Grand Designs: Chapter 4","airDate":"2012-07-24","airDateUtc":"2012-07-25T03:15:00Z","overview":"While the artifact-generated chaos continues, Claudia and Artie race to the Gooery - the site of the second artifact power source - to try and shut it down before the entire Warehouse is flooded with purple goo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5073},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Grand Designs: Chapter 5","airDate":"2012-07-24","airDateUtc":"2012-07-25T04:00:00Z","overview":"As Artie fights to save Claudia from drowning in the Gooery, and Pete and Myka set out for the third artifact power source, Leena and Trailer's search for the diorama artifact takes an unexpected turn when they discover the Warehouse is on fire.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5074},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Grand Designs: Chapter 6","airDate":"2012-07-24","airDateUtc":"2012-07-25T04:45:00Z","overview":"As the Warehouse heats up all around them, Pete and Myka must find a way to shut down the gale force winds being generated by third artifact power source - Miguel De Cervantes's Windmill.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5075},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Grand Designs: Chapter 7","airDate":"2012-07-24","airDateUtc":"2012-07-25T05:30:00Z","overview":"Blasted by gale force winds, Myka holds on for dear life while Pete retrieves an artifact that can help them neutralize Cervantes's Windmill once and for all.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5076},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Grand Designs: Chapter 8","airDate":"2012-07-24","airDateUtc":"2012-07-25T06:15:00Z","overview":"To stop the fires raging throughout the Warehouse, the team must first find an artifact capable of breaking through the wall that now separates them from the ventilation control system inside the Lehmann Fornax.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5078},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Grand Designs: Chapter 9","airDate":"2012-07-24","airDateUtc":"2012-07-25T07:00:00Z","overview":"Working together, the team fights to regain control of the Lehmann Fornax before the entire Warehouse goes up in flames.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18167},{"seriesId":9,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Grand Designs: Chapter 10","airDate":"2012-07-24","airDateUtc":"2012-07-25T07:45:00Z","overview":"With the Warehouse folding in on itself all around them, the team races against time to neutralize the diorama and turn everything back to normal.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19812},{"seriesId":9,"episodeFileId":4881,"seasonNumber":4,"episodeNumber":2,"title":"An Evil Within","airDate":"2012-07-30","airDateUtc":"2012-07-31T01:00:00Z","overview":"Pete and Myka are sent to Philadelphia to find an artifact that is the cause of strange hallucinations \u2014 people are fearing monsters, but when attacked, only humans are killed. Artie is searching for more information on what evil he unleashed. Claudia tempts fate as she tries to bring Steve back, with the help of someone unexpected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":5118},{"seriesId":9,"episodeFileId":4888,"seasonNumber":4,"episodeNumber":3,"title":"Personal Effects","airDate":"2012-08-06","airDateUtc":"2012-08-07T01:00:00Z","overview":"A cache of Walter Skyes' stolen artifacts turn up and all six agents go into the field to recover them. Artie unexpectedly reveals his secret to Leena, while Steve begins to realize the downside of the metronome that brought him back to life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":5119},{"seriesId":9,"episodeFileId":4894,"seasonNumber":4,"episodeNumber":4,"title":"There's Always a Downside","airDate":"2012-08-13","airDateUtc":"2012-08-14T01:00:00Z","overview":"While Pete and Claudia help Hugo Miller track down a bag of marbles at a boy's academy, Myka and Steve travel to New Orleans on the trail of another artifact while Artie meets with Brother Adrian.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":5120},{"seriesId":9,"episodeFileId":4899,"seasonNumber":4,"episodeNumber":5,"title":"No Pain, No Gain","airDate":"2012-08-20","airDateUtc":"2012-08-21T01:00:00Z","overview":"While Pete and Myka go to Toronto to investigate an invulnerable hockey player, Steve helps Artie track down stolen artifacts while Claudia meets with Mrs. Frederic to discuss her future as a Warehouse guardian.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":5121},{"seriesId":9,"episodeFileId":4906,"seasonNumber":4,"episodeNumber":6,"title":"Fractures","airDate":"2012-08-27","airDateUtc":"2012-08-28T01:00:00Z","overview":"The Brotherhood continues its assault on Artie's life, targeting someone close to him with Alice Liddell, the imprisoned spirit within the Dodgson Mirror. Meanwhile, Claudia learns of the connection between herself and Steve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":5122},{"seriesId":9,"episodeFileId":4912,"seasonNumber":4,"episodeNumber":7,"title":"Endless Wonder","airDate":"2012-09-10","airDateUtc":"2012-09-11T01:00:00Z","overview":"Pete and Myka face a curious executive from a drug company as they deal with a pill that may increase people's height. Meanwhile, Artie, Steve and Claudia follow Brother Adrian to the place where he's hiding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":5123},{"seriesId":9,"episodeFileId":4916,"seasonNumber":4,"episodeNumber":8,"title":"Second Chance","airDate":"2012-09-17","airDateUtc":"2012-09-18T01:00:00Z","overview":"Pete and Myka investigate a case of people rusting away. Steve and Claudia visit Steve's hometown to end his dependence on the Metronome. Meanwhile, Artie tells the truth about Brother Adrian and his use of the Astrolabe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":5124},{"seriesId":9,"episodeFileId":4921,"seasonNumber":4,"episodeNumber":9,"title":"The Ones You Love","airDate":"2012-09-24","airDateUtc":"2012-09-25T01:00:00Z","overview":"Pete, Myka, and Claudia set off to rescue their loved ones when Brother Adrian sends them deadly artifacts. Meanwhile, Mrs. Frederic and Steve travel to Rome and learn Adrian's dark secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":5125},{"seriesId":9,"episodeFileId":4925,"seasonNumber":4,"episodeNumber":10,"title":"We All Fall Down","airDate":"2012-10-01","airDateUtc":"2012-10-02T01:00:00Z","overview":"The team have no time to mourn a fallen comrade as they go after the person responsible, the nemesis that has been stalking Artie since he used Magellan's Astrolabe to save the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":5126},{"seriesId":9,"episodeFileId":4930,"seasonNumber":4,"episodeNumber":11,"title":"The Living and the Dead","airDate":"2013-04-29","airDateUtc":"2013-04-30T01:00:00Z","overview":"With the fate of the world in their hands, Pete and Myka's only hope of finding a cure to the Sweating Sickness is a drunken history professor. Meanwhile, Steve and Claudia enter Artie's subconscious in an attempt to bring him out of his coma before he fades away for good.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":5127},{"seriesId":9,"episodeFileId":4937,"seasonNumber":4,"episodeNumber":12,"title":"Parks and Rehabilitation","airDate":"2013-05-06","airDateUtc":"2013-05-07T01:00:00Z","overview":"While Pete and Claudia travel to Oregon to investigate a series of earthquake-related accidents occurring in a National Park, Artie deals with the repercussions of Leena's death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":5128},{"seriesId":9,"episodeFileId":4940,"seasonNumber":4,"episodeNumber":13,"title":"The Big Snag","airDate":"2013-05-13","airDateUtc":"2013-05-14T01:00:00Z","overview":"Pete and Myka get sucked into a 1940s detective noir novel in search of an artifact. Meanwhile, Artie, Steve, and Claudia chase down a phantom car thief.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":5129},{"seriesId":9,"episodeFileId":4941,"seasonNumber":4,"episodeNumber":14,"title":"The Sky's the Limit","airDate":"2013-05-20","airDateUtc":"2013-05-21T01:00:00Z","overview":"Pete and Myka head to Vegas to investigate murders that are tied to the world of high magic. Meanwhile, Claudia and Jinks search for an artifact used to rig horse races, while Artie meets the new B&B owner, Abigail Cho.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":5130},{"seriesId":9,"episodeFileId":4942,"seasonNumber":4,"episodeNumber":15,"title":"Instinct","airDate":"2013-06-03","airDateUtc":"2013-06-04T01:00:00Z","overview":"H.G. has created a new life for herself in Wisconsin, but calls in the agents when she comes up against an unidentified artifact. Meanwhile, Abigail joins the others on the floor of the Warehouse to track down the source of mysterious tremors that threaten to destroy the building.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":5131},{"seriesId":9,"episodeFileId":4943,"seasonNumber":4,"episodeNumber":16,"title":"Runaway","airDate":"2013-06-10","airDateUtc":"2013-06-11T01:00:00Z","overview":"When a volcanic event at an Arkansas State Prison allows two inmates to escape, Pete, Myka and Steve must partner with a U.S. Marshal to track down the fugitives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":5132},{"seriesId":9,"episodeFileId":4944,"seasonNumber":4,"episodeNumber":17,"title":"What Matters Most","airDate":"2013-06-17","airDateUtc":"2013-06-18T01:00:00Z","overview":"Someone in a gated community is using an artifact to extract vengeance and Myka and Pete go to investigate. Meanwhile, Artie and Claudia help a teen suffering from dangerous visions, and Steve and Abigail clean up the Warehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":5133},{"seriesId":9,"episodeFileId":4945,"seasonNumber":4,"episodeNumber":18,"title":"Lost & Found","airDate":"2013-06-24","airDateUtc":"2013-06-25T01:00:00Z","overview":"The agents track down a cache of artifacts stolen from Warehouse 12 by the infamous Roaring Dan Seavey... and guarded by his ghost. Meanwhile, Charlotte Dupres makes her move with the help of her inside person.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":5134},{"seriesId":9,"episodeFileId":4946,"seasonNumber":4,"episodeNumber":19,"title":"All the Time in the World","airDate":"2013-07-01","airDateUtc":"2013-07-02T01:00:00Z","overview":"Pete, Myka, and Charlotte must track down Sutton, the only man who knows where they can find Paracelsus and exchange the Philosopher's Stone for the stele that will free Claudia from her bronze imprisonment... before she disintegrates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":5135},{"seriesId":9,"episodeFileId":4947,"seasonNumber":4,"episodeNumber":20,"title":"The Truth Hurts","airDate":"2013-07-08","airDateUtc":"2013-07-09T01:00:00Z","overview":"Pete and Myka capture Paracelsus but not before he makes himself immortal. When Myka's cancer becomes worse, Pete must make a deal with Paracelsus to cure his partner. Meanwhile, Claudia receives some startling news from Artie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":5136},{"seriesId":9,"episodeFileId":4878,"seasonNumber":5,"episodeNumber":1,"title":"Endless Terror","airDate":"2014-04-14","airDateUtc":"2014-04-15T01:00:00Z","overview":"When Paracelsus takes control of Warehouse 13, it proves to only be the first step in his plan to recreate the entire world in his image. To stop him, Pete and Myka must follow him back through time to 1541 and prevent him from killing the Regents and becoming the permanent master of the Warehouses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":5137},{"seriesId":9,"episodeFileId":4883,"seasonNumber":5,"episodeNumber":2,"title":"Secret Services","airDate":"2014-04-21","airDateUtc":"2014-04-22T01:00:00Z","overview":"Myka and Pete encounter two secret service agents that force them to question their own relationship, while Artie attempts to show Claudia the truth about her sister.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":5138},{"seriesId":9,"episodeFileId":4889,"seasonNumber":5,"episodeNumber":3,"title":"A Faire to Remember","airDate":"2014-04-28","airDateUtc":"2014-04-29T01:00:00Z","overview":"Pete and Steve search for an artifact that makes a horseless chariot and a life-size chess piece come to life; Claudia combines artifacts in a desperate attempt to revive her sister.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":5139},{"seriesId":9,"episodeFileId":4895,"seasonNumber":5,"episodeNumber":4,"title":"Savage Seduction","airDate":"2014-05-05","airDateUtc":"2014-05-06T01:00:00Z","overview":"Pete, Myka and Artie help Pete's ex-girlfriend track an object that sucks them all into a Telenovela.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":5140},{"seriesId":9,"episodeFileId":4900,"seasonNumber":5,"episodeNumber":5,"title":"Cangku Shisi","airDate":"2014-05-12","airDateUtc":"2014-05-13T01:00:00Z","overview":"Valda tries to move the warehouse to China and use Claudia's comatose sister as a puppet caretaker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":5141},{"seriesId":9,"episodeFileId":4908,"seasonNumber":5,"episodeNumber":6,"title":"Endless","airDate":"2014-05-19","airDateUtc":"2014-05-20T01:00:00Z","overview":"The team struggles with the news that Warehouse 13 will be moving to a new host country.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":5142}],"episodeFile":[{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E01.Pilot-HDTV-1080p.mkv","size":7043152258,"dateAdded":"2018-10-17T21:47:54.840231Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9191000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:27:44","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4875},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Time Will Tell-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E01.Time Will Tell-HDTV-1080p.mkv","size":3518526424,"dateAdded":"2018-10-17T21:47:54.929904Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9253000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4877},{"seriesId":9,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Endless Terror-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 05\/S05E01.Endless Terror-HDTV-1080p.mkv","size":3517918097,"dateAdded":"2018-10-17T21:47:54.968614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9373000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4878},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E01.A New Hope-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E01.A New Hope-HDTV-1080p.mkv","size":3517735683,"dateAdded":"2018-10-17T21:47:55.007262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9471000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4879},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E02.An Evil Within-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E02.An Evil Within-HDTV-1080p.mkv","size":3518999151,"dateAdded":"2018-10-17T21:47:55.095654Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9344000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4881},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Mild Mannered-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E02.Mild Mannered-HDTV-1080p.mkv","size":3518327672,"dateAdded":"2018-10-17T21:47:55.133421Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:38","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4882},{"seriesId":9,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Secret Services-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 05\/S05E02.Secret Services-HDTV-1080p.mkv","size":3517645435,"dateAdded":"2018-10-17T21:47:55.171972Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9369000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4883},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Resonance-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E02.Resonance-HDTV-1080p.mkv","size":3517484894,"dateAdded":"2018-10-17T21:47:55.215216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9007000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4884},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E02.Of Monsters and Men- Chapter 1-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E02.Of Monsters and Men- Chapter 1-SDTV.avi","size":49529496,"dateAdded":"2018-10-17T21:47:55.254142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1488039,"videoCodec":"XviD","videoFps":24.0,"resolution":"716x400","runTime":"4:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4885},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Magnetism-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E03.Magnetism-HDTV-1080p.mkv","size":3519130264,"dateAdded":"2018-10-17T21:47:55.292627Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9123000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:07","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4886},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Beyond Our Control-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E03.Beyond Our Control-HDTV-1080p.mkv","size":3518979191,"dateAdded":"2018-10-17T21:47:55.331834Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9244000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4887},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Personal Effects-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E03.Personal Effects-HDTV-1080p.mkv","size":3518896590,"dateAdded":"2018-10-17T21:47:55.384818Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9344000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4888},{"seriesId":9,"seasonNumber":5,"relativePath":"Season 05\/S05E03.A Faire to Remember-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 05\/S05E03.A Faire to Remember-HDTV-1080p.mkv","size":3518605410,"dateAdded":"2018-10-17T21:47:55.423141Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9454000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:47","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4889},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E03.Of Monsters and Men- Chapter 2-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E03.Of Monsters and Men- Chapter 2-SDTV.avi","size":36042214,"dateAdded":"2018-10-17T21:47:55.500597Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1502503,"videoCodec":"XviD","videoFps":24.0,"resolution":"716x400","runTime":"2:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4891},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Claudia-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E04.Claudia-HDTV-1080p.mkv","size":3518337388,"dateAdded":"2018-10-17T21:47:55.577228Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9204000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4893},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E04.There's Always a Downside-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E04.There's Always a Downside-HDTV-1080p.mkv","size":3517866850,"dateAdded":"2018-10-17T21:47:55.625884Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9348000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4894},{"seriesId":9,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Savage Seduction-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 05\/S05E04.Savage Seduction-HDTV-1080p.mkv","size":3517739385,"dateAdded":"2018-10-17T21:47:55.677049Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9373000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4895},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Age Before Beauty-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E04.Age Before Beauty-HDTV-1080p.mkv","size":3517490062,"dateAdded":"2018-10-17T21:47:55.715663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9228000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:40","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4896},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E04.Of Monsters and Men- Chapter 3-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E04.Of Monsters and Men- Chapter 3-SDTV.avi","size":18332264,"dateAdded":"2018-10-17T21:47:55.754307Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1503870,"videoCodec":"XviD","videoFps":24.0,"resolution":"716x400","runTime":"1:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4897},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Elements-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E05.Elements-HDTV-1080p.mkv","size":3519222686,"dateAdded":"2018-10-17T21:47:55.794308Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9191000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4898},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E05.No Pain, No Gain-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E05.No Pain, No Gain-HDTV-1080p.mkv","size":3519032848,"dateAdded":"2018-10-17T21:47:55.832354Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9361000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4899},{"seriesId":9,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Cangku Shisi-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 05\/S05E05.Cangku Shisi-HDTV-1080p.mkv","size":3518396145,"dateAdded":"2018-10-17T21:47:55.870387Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9357000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4900},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E05.13.1-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E05.13.1-HDTV-1080p.mkv","size":3518038296,"dateAdded":"2018-10-17T21:47:55.908692Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9277000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:28","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4901},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E05.Of Monsters and Men- Chapter 4-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E05.Of Monsters and Men- Chapter 4-SDTV.avi","size":49614268,"dateAdded":"2018-10-17T21:47:55.986566Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1411200,"audioChannels":2.0,"audioCodec":"PCM","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1502366,"videoCodec":"XviD","videoFps":24.0,"resolution":"716x400","runTime":"2:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4903},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Burnout-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E06.Burnout-HDTV-1080p.mkv","size":3519610896,"dateAdded":"2018-10-17T21:47:56.024878Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9208000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4904},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Around the Bend-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E06.Around the Bend-HDTV-1080p.mkv","size":3518721935,"dateAdded":"2018-10-17T21:47:56.064799Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9199000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:48","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4905},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Fractures-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E06.Fractures-HDTV-1080p.mkv","size":3518407963,"dateAdded":"2018-10-17T21:47:56.106847Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9348000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4906},{"seriesId":9,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Endless-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 05\/S05E06.Endless-HDTV-1080p.mkv","size":3517322127,"dateAdded":"2018-10-17T21:47:56.232449Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9187000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4908},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E06.Of Monsters and Men- Chapter 5-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E06.Of Monsters and Men- Chapter 5-SDTV.avi","size":45308448,"dateAdded":"2018-10-17T21:47:56.271014Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1411200,"audioChannels":2.0,"audioCodec":"PCM","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1502072,"videoCodec":"XviD","videoFps":24.0,"resolution":"716x400","runTime":"2:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4909},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E07.For the Team-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E07.For the Team-HDTV-1080p.mkv","size":3518410486,"dateAdded":"2018-10-17T21:47:56.34941Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9212000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:44","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4911},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Endless Wonder-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E07.Endless Wonder-HDTV-1080p.mkv","size":3518247232,"dateAdded":"2018-10-17T21:47:56.388225Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9407000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4912},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Implosion-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E07.Implosion-HDTV-1080p.mkv","size":3518188393,"dateAdded":"2018-10-17T21:47:56.426486Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9240000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4913},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E07.Of Monsters and Men- Chapter 6-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E07.Of Monsters and Men- Chapter 6-SDTV.avi","size":34321812,"dateAdded":"2018-10-17T21:47:56.464834Z","releaseGroup":"360p","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1473488,"videoCodec":"XviD","videoFps":24.0,"resolution":"640x360","runTime":"2:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4914},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Merge With Caution-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E08.Merge With Caution-HDTV-1080p.mkv","size":3519089948,"dateAdded":"2018-10-17T21:47:56.503156Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:43","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4915},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Second Chance-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E08.Second Chance-HDTV-1080p.mkv","size":3518796267,"dateAdded":"2018-10-17T21:47:56.541822Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9357000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4916},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Duped-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E08.Duped-HDTV-1080p.mkv","size":3518648259,"dateAdded":"2018-10-17T21:47:56.580347Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9171000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4917},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E08.Of Monsters and Men- Chapter 7-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E08.Of Monsters and Men- Chapter 7-SDTV.avi","size":42710142,"dateAdded":"2018-10-17T21:47:56.658762Z","releaseGroup":"360p","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1475008,"videoCodec":"XviD","videoFps":24.0,"resolution":"640x360","runTime":"3:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4919},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Regrets-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E09.Regrets-HDTV-1080p.mkv","size":3518417676,"dateAdded":"2018-10-17T21:47:56.697166Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4920},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Ones You Love-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E09.The Ones You Love-HDTV-1080p.mkv","size":3518223490,"dateAdded":"2018-10-17T21:47:56.735554Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9348000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4921},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Vendetta-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E09.Vendetta-HDTV-1080p.mkv","size":3518116104,"dateAdded":"2018-10-17T21:47:56.778869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9232000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:39","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4922},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E09.Of Monsters and Men- Chapter 8-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E09.Of Monsters and Men- Chapter 8-SDTV.avi","size":35355744,"dateAdded":"2018-10-17T21:47:56.916486Z","releaseGroup":"360p","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1481127,"videoCodec":"XviD","videoFps":24.0,"resolution":"640x360","runTime":"2:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4924},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E10.We All Fall Down-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E10.We All Fall Down-HDTV-1080p.mkv","size":3519023413,"dateAdded":"2018-10-17T21:47:56.979415Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9331000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4925},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Where and When-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E10.Where and When-HDTV-1080p.mkv","size":3518730921,"dateAdded":"2018-10-17T21:47:57.107523Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9282000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:27","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4926},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Breakdown-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E10.Breakdown-HDTV-1080p.mkv","size":3517946378,"dateAdded":"2018-10-17T21:47:57.154684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9191000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:49","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4927},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E10.Of Monsters and Men- Chapter 9-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E10.Of Monsters and Men- Chapter 9-SDTV.avi","size":44431412,"dateAdded":"2018-10-17T21:47:57.232964Z","releaseGroup":"360p","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1483992,"videoCodec":"XviD","videoFps":24.0,"resolution":"640x360","runTime":"3:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4929},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E11.The Living and the Dead-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E11.The Living and the Dead-HDTV-1080p.mkv","size":3518443473,"dateAdded":"2018-10-17T21:47:57.272454Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9357000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4930},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Nevermore-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E11.Nevermore-HDTV-1080p.mkv","size":3518170620,"dateAdded":"2018-10-17T21:47:57.312506Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9411000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:56","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4931},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Buried (1)-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E11.Buried (1)-HDTV-1080p.mkv","size":3517588524,"dateAdded":"2018-10-17T21:47:57.351002Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9265000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4932},{"seriesId":9,"seasonNumber":0,"relativePath":"Specials\/S00E11.Of Monsters and Men- Chapter 10-SDTV.avi","path":"\/tv\/Warehouse 13\/Specials\/S00E11.Of Monsters and Men- Chapter 10-SDTV.avi","size":33367034,"dateAdded":"2018-10-17T21:47:57.435873Z","releaseGroup":"360p","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1462417,"videoCodec":"XviD","videoFps":24.0,"resolution":"640x360","runTime":"2:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4934},{"seriesId":9,"seasonNumber":1,"relativePath":"Season 01\/S01E12.MacPherson-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 01\/S01E12.MacPherson-HDTV-1080p.mkv","size":3519023444,"dateAdded":"2018-10-17T21:47:57.474741Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9208000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4935},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Reset (2)-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E12.Reset (2)-HDTV-1080p.mkv","size":3518961122,"dateAdded":"2018-10-17T21:47:57.513636Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9208000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4936},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Parks and Rehabilitation-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E12.Parks and Rehabilitation-HDTV-1080p.mkv","size":3518590616,"dateAdded":"2018-10-17T21:47:57.565143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9352000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4937},{"seriesId":9,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Secret Santa-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 02\/S02E13.Secret Santa-HDTV-1080p.mkv","size":3518476991,"dateAdded":"2018-10-17T21:47:57.674052Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9208000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:45","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4938},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The Big Snag-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E13.The Big Snag-HDTV-1080p.mkv","size":3518136997,"dateAdded":"2018-10-17T21:47:57.918377Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9352000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4940},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E14.The Sky's the Limit-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E14.The Sky's the Limit-HDTV-1080p.mkv","size":3518229244,"dateAdded":"2018-10-17T21:47:58.110948Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9327000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4941},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Instinct-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E15.Instinct-HDTV-1080p.mkv","size":3518161967,"dateAdded":"2018-10-17T21:47:58.15781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9361000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4942},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Runaway-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E16.Runaway-HDTV-1080p.mkv","size":3518135376,"dateAdded":"2018-10-17T21:47:58.19955Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4943},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E17.What Matters Most-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E17.What Matters Most-HDTV-1080p.mkv","size":3518617081,"dateAdded":"2018-10-17T21:47:58.244504Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9327000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4944},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E18.Lost and Found-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E18.Lost and Found-HDTV-1080p.mkv","size":3518556294,"dateAdded":"2018-10-17T21:47:58.283182Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9373000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4945},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E19.All the Time in the World-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E19.All the Time in the World-HDTV-1080p.mkv","size":3518637062,"dateAdded":"2018-10-17T21:47:58.321945Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9340000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4946},{"seriesId":9,"seasonNumber":4,"relativePath":"Season 04\/S04E20.The Truth Hurts-HDTV-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 04\/S04E20.The Truth Hurts-HDTV-1080p.mkv","size":3519034572,"dateAdded":"2018-10-17T21:47:58.360845Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9344000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4947},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The New Guy-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E01.The New Guy-Bluray-1080p.mkv","size":1683418144,"dateAdded":"2019-02-05T18:24:15.874407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433081,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4500267,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6637},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Trials-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E02.Trials-Bluray-1080p.mkv","size":1606505040,"dateAdded":"2019-02-05T18:24:15.909177Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429341,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500669,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6638},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Love Sick-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E03.Love Sick-Bluray-1080p.mkv","size":1656980763,"dateAdded":"2019-02-05T18:24:15.960288Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441502,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4500806,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6639},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Queen for a Day-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E04.Queen for a Day-Bluray-1080p.mkv","size":1604046398,"dateAdded":"2019-02-05T18:24:15.995388Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434751,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499858,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6640},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E05.3.2.1-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E05.3.2.1-Bluray-1080p.mkv","size":1676303417,"dateAdded":"2019-02-05T18:24:16.04323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":482561,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4498784,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6641},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Don't Hate the Player-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E06.Don't Hate the Player-Bluray-1080p.mkv","size":1614889514,"dateAdded":"2019-02-05T18:24:16.080781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":452398,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500266,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6642},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Past Imperfect-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E07.Past Imperfect-Bluray-1080p.mkv","size":1600206543,"dateAdded":"2019-02-05T18:24:16.121868Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444805,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500964,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6643},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The 40th Floor-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E08.The 40th Floor-Bluray-1080p.mkv","size":1657587610,"dateAdded":"2019-02-05T18:24:16.186929Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470792,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4500556,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:52","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6644},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Shadows-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E09.Shadows-Bluray-1080p.mkv","size":1605155252,"dateAdded":"2019-02-05T18:24:16.228559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443236,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500117,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6645},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Insatiable-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E10.Insatiable-Bluray-1080p.mkv","size":1608576447,"dateAdded":"2019-02-05T18:24:16.281918Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":442758,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499001,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6646},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Emily Lake (1)-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E11.Emily Lake (1)-Bluray-1080p.mkv","size":1607982928,"dateAdded":"2019-02-05T18:24:16.31366Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437867,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499936,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6647},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Stand (2)-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E12.Stand (2)-Bluray-1080p.mkv","size":1610168170,"dateAdded":"2019-02-05T18:24:16.372748Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449140,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4501023,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6648},{"seriesId":9,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Greatest Gift-Bluray-1080p.mkv","path":"\/tv\/Warehouse 13\/Season 03\/S03E13.The Greatest Gift-Bluray-1080p.mkv","size":3518461394,"dateAdded":"2019-02-18T20:20:53.606648Z","releaseGroup":"shortbrehd","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9352000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6972}],"queue":[]},"10":{"series":{"title":"Star vs. the Forces of Evil","alternateTitles":[{"title":"Star gegen die Maechte des Boesen","seasonNumber":-1},{"title":"Star gegen die M\u00e4chte des B\u00f6sen","seasonNumber":-1}],"sortTitle":"star vs forces evil","status":"ended","ended":true,"overview":"After having skirmished with a number of dangerous monsters, Star Butterfly arrives on Earth to live with the Diaz family. However, rather than living a normal life, Star continues on having to battle villains both throughout the universe and in their high school, although if only to protect her extremely powerful wand, an object which she is still confused with.","previousAiring":"2019-05-19T12:00:00Z","network":"Disney Channel","airTime":"08:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/10\/banner.jpg?lastWrite=637103833473539720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/282994-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/10\/poster.jpg?lastWrite=637084968389418840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/282994-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/10\/fanart.jpg?lastWrite=637103833461819930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/282994-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-09-21T12:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":11249086748,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-02-27T13:10:00Z","episodeFileCount":41,"episodeCount":41,"totalEpisodeCount":41,"sizeOnDisk":19316648845,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-04-07T12:10:00Z","episodeFileCount":38,"episodeCount":38,"totalEpisodeCount":38,"sizeOnDisk":18915367105,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-05-19T12:00:00Z","episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":9567947181,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Star vs. the Forces of Evil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":282994,"tvRageId":47307,"tvMazeId":1551,"firstAired":"2015-01-18T00:00:00Z","seriesType":"standard","cleanTitle":"starvsforcesevil","imdbId":"tt2758770","titleSlug":"star-vs-the-forces-of-evil","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Comedy","Family","Romance"],"tags":[],"added":"2017-12-10T01:45:27.9903227Z","ratings":{"votes":503,"value":8.9},"statistics":{"seasonCount":4,"episodeFileCount":140,"episodeCount":140,"totalEpisodeCount":140,"sizeOnDisk":59049049879,"percentOfEpisodes":100.0},"id":10},"episodes":[{"seriesId":10,"episodeFileId":2894,"seasonNumber":1,"episodeNumber":1,"title":"Star Comes to Earth","airDate":"2015-01-18","airDateUtc":"2015-01-18T13:00:00Z","overview":"Star receives the royal magic wand but her parents panic and send her to Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3935},{"seriesId":10,"episodeFileId":2894,"seasonNumber":1,"episodeNumber":2,"title":"Party with a Pony","airDate":"2015-01-18","airDateUtc":"2015-01-18T13:10:00Z","overview":"Star's best friend from her home dimension visits and is threatened by Star's new friendship with an earthling named Marco.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3936},{"seriesId":10,"episodeFileId":2896,"seasonNumber":1,"episodeNumber":3,"title":"Match Maker","airDate":"2015-03-30","airDateUtc":"2015-03-30T12:00:00Z","overview":"After failing a math test, Star tries to convince her teacher to change her grade.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3937},{"seriesId":10,"episodeFileId":2896,"seasonNumber":1,"episodeNumber":4,"title":"School Spirit","airDate":"2015-03-30","airDateUtc":"2015-03-30T12:10:00Z","overview":"Star misunderstands when she hears that the school football team is going to \"get slaughtered\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3938},{"seriesId":10,"episodeFileId":2899,"seasonNumber":1,"episodeNumber":5,"title":"Monster Arm","airDate":"2015-04-06","airDateUtc":"2015-04-06T12:00:00Z","overview":"Marco's hurt arm is accidentally turned into a giant tentacle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3939},{"seriesId":10,"episodeFileId":2899,"seasonNumber":1,"episodeNumber":6,"title":"The Other Exchange Student","airDate":"2015-04-06","airDateUtc":"2015-04-06T12:10:00Z","overview":"Gustav comes to visit the Diaz family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3940},{"seriesId":10,"episodeFileId":2904,"seasonNumber":1,"episodeNumber":7,"title":"Cheer Up Star","airDate":"2015-04-13","airDateUtc":"2015-04-13T12:00:00Z","overview":"Marco tries to cheer up Star and ends up summoning Ludo and an army of monsters!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3941},{"seriesId":10,"episodeFileId":2904,"seasonNumber":1,"episodeNumber":8,"title":"Quest Buy","airDate":"2015-04-13","airDateUtc":"2015-04-13T12:10:00Z","overview":"Star and Marco must navigate through a maze-like store, Quest Buy, to get a new wand charger before Star's wand dies forever.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3942},{"seriesId":10,"episodeFileId":2907,"seasonNumber":1,"episodeNumber":9,"title":"Diaz Family Vacation","airDate":"2015-04-20","airDateUtc":"2015-04-20T12:00:00Z","overview":"Star forgets to get the Diazes an anniversary present, so she invites them on a trip to Mewni.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3943},{"seriesId":10,"episodeFileId":2907,"seasonNumber":1,"episodeNumber":10,"title":"Brittney's Party","airDate":"2015-04-20","airDateUtc":"2015-04-20T12:10:00Z","overview":"Star crashes a birthday party but has to fight off Ludo's monsters.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3944},{"seriesId":10,"episodeFileId":2911,"seasonNumber":1,"episodeNumber":11,"title":"Mewberty","airDate":"2015-06-15","airDateUtc":"2015-06-15T12:00:00Z","overview":"Star starts sprouting hearts all over her body, the telltale sign of \"Mewberty.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3945},{"seriesId":10,"episodeFileId":2911,"seasonNumber":1,"episodeNumber":12,"title":"Pixtopia","airDate":"2015-06-15","airDateUtc":"2015-06-15T12:10:00Z","overview":"Marco and his friends travel to a dimension of pixies and are forced to work in the Shard Mines.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3946},{"seriesId":10,"episodeFileId":2914,"seasonNumber":1,"episodeNumber":13,"title":"Lobster Claws","airDate":"2015-06-22","airDateUtc":"2015-06-22T12:00:00Z","overview":"Star and Marco attempt to help Lobster Claws adjust to life on Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3947},{"seriesId":10,"episodeFileId":2914,"seasonNumber":1,"episodeNumber":14,"title":"Sleep Spells","airDate":"2015-06-22","airDateUtc":"2015-06-22T12:10:00Z","overview":"Star and Marco try to determine who has been redecorating her room, with Mr. Diaz only accounting for a small project. Marco discovers that Star has been \"sleep spelling\", that is, casting spells when sleepwalking. He tries psychology to try to treat her but learns that she is actually trying to defend herself from an intruder, revealed to be Princess Smooshy, an ugly \"goblin-elephant\" princess who wants to steal Star's face so she can avoid getting sent back to St. Olga's Reform School for Wayward Princesses after escaping it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3948},{"seriesId":10,"episodeFileId":2917,"seasonNumber":1,"episodeNumber":15,"title":"Blood Moon Ball","airDate":"2015-07-20","airDateUtc":"2015-07-20T12:00:00Z","overview":"Star's ex-boyfriend Tom invites her to the Blood Moon Ball, an Underworld event that occurs once every 667 years. Tom claims he has turned over a new leaf, having hired an anger management consultant. Marco does not believe Tom has changed but Star decides to go anyway. When Marco disrupts Tom's plan to take Star for himself under the Blood Moon's light, Tom reverts to his old self.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3949},{"seriesId":10,"episodeFileId":2917,"seasonNumber":1,"episodeNumber":16,"title":"Fortune Cookies","airDate":"2015-07-20","airDateUtc":"2015-07-20T12:10:00Z","overview":"Following yet another victory over Ludo and his minions, Marco and Star eat at a Chinese restaurant. Marco tricks Star into thinking the sayings in fortune cookies can really predict the future. Meanwhile, Ludo hires a monster named Toffee to shape up his minions. They come up with a plan to take advantage of Star's fortune cookie obsession.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3950},{"seriesId":10,"episodeFileId":2920,"seasonNumber":1,"episodeNumber":17,"title":"Freeze Day","airDate":"2015-07-27","airDateUtc":"2015-07-27T12:00:00Z","overview":"Star freezes time with her wand so that Marco can appear at Echo Creek Academy on time for his morning greeting nod with his crush Jackie Lynn Thomas. But when she is unable to cancel out the effects, she and Marco visit the Plains of Time in order to get Father Time to restart time again.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3951},{"seriesId":10,"episodeFileId":2920,"seasonNumber":1,"episodeNumber":18,"title":"Royal Pain","airDate":"2015-07-27","airDateUtc":"2015-07-27T12:10:00Z","overview":"Star gets an unexpected visit from her father who had been kicked out of the house for not picking up after himself. After getting excited over Earth activities such as using a flush toilet and playing miniature golf, he ends up overstaying his welcome. He hosts a party with his inter-dimensional friends, but it is soon crashed by a sun character named Helios.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3952},{"seriesId":10,"episodeFileId":2923,"seasonNumber":1,"episodeNumber":19,"title":"St. Olga's Reform School for Wayward Princesses","airDate":"2015-08-10","airDateUtc":"2015-08-10T12:00:00Z","overview":"Star and Marco go undercover as new princess students in order to break Flying Princess Pony Head out of St. Olga's on her birthday. They discover that Pony Head has been brainwashed to be a compliant princess and try to evade the robot guards and the reform school's headmistress Miss Heinous.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3953},{"seriesId":10,"episodeFileId":2925,"seasonNumber":1,"episodeNumber":20,"title":"Mewnipendence Day","airDate":"2015-08-17","airDateUtc":"2015-08-17T12:00:00Z","overview":"Star Butterfly recruits her classmates, Miss Skullnick, and the Dojo Sensei to participate in a battle reenactment of Mewni's Independence Day. Ludo and Toffee use a special floating eye device to spy on Star and her activities. Ludo's minion Buff Frog infiltrates the reenactment as one of the monsters to try to steal the wand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3954},{"seriesId":10,"episodeFileId":2925,"seasonNumber":1,"episodeNumber":21,"title":"The Banagic Incident","airDate":"2015-08-17","airDateUtc":"2015-08-17T12:10:00Z","overview":"Impressed by a commercial for a \"magical\" Earth product called a Banagic Wand, Star tries to get Marco to buy it, but Marco refuses as he has karate class. Star ends up going into town by herself where she confuses a pirate-themed restaurant for having real pirates and trashes the place. Meanwhile, Marco's Dojo Sensei wants his students to channel their emotions to walk across hot coals.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3955},{"seriesId":10,"episodeFileId":2928,"seasonNumber":1,"episodeNumber":22,"title":"Interdimensional Field Trip","airDate":"2015-09-14","airDateUtc":"2015-09-14T12:00:00Z","overview":"Miss Skullnick's class finds the field trip to the Echo Creek Museum of Paper Clips boring, so Star volunteers to lead a trip to the Dimension of Wonders and Amazement. But when she lets the students do whatever they want, she puts the entire class in danger. Meanwhile, Miss Skullnick visits an exhibit on troll history. When a yarn monster captures the class, Star and Miss Skullnick must work together to save them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3956},{"seriesId":10,"episodeFileId":2928,"seasonNumber":1,"episodeNumber":23,"title":"Marco Grows a Beard","airDate":"2015-09-14","airDateUtc":"2015-09-14T12:10:00Z","overview":"Star botches a spell that would help Marco grow a beard in order to impress Jackie Lynn Thomas. The hair grows out of control, engulfing the house, and Star loses her wand in the midst of it. Meanwhile, Ludo leads his minions through the overgrown beard to find the wand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3957},{"seriesId":10,"episodeFileId":2930,"seasonNumber":1,"episodeNumber":24,"title":"Storm the Castle","airDate":"2015-09-21","airDateUtc":"2015-09-21T12:00:00Z","overview":"Toffee has taken over Ludo's castle; he has one of Ludo's minions abduct Marco. Star allies with Buff Frog (and the kicked-out Ludo) to storm the castle and beat up Ludo's former minions and free Marco. However, Toffee arranges for the box imprisoning Marco to gradually collapse, forcing Star to destroy her wand in exchange for sparing Marco. The resulting explosion destroys Ludo's castle and Toffee, after which Star banishes Ludo. Star is left with a new wand that is missing a piece.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3958},{"seriesId":10,"episodeFileId":2893,"seasonNumber":2,"episodeNumber":1,"title":"My New Wand!","airDate":"2016-07-11","airDateUtc":"2016-07-11T12:00:00Z","overview":"When Star Butterfly destroys her wand to save her best friend Marco Diaz, a new unicorn takes place of the dead one. Now Star only has half of the star on her wand and it has been cleaved. She needs all the pieces of the wand but the other half was lost in the explosion. Join Star and Marco in their new adventure ahead!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3959},{"seriesId":10,"episodeFileId":2893,"seasonNumber":2,"episodeNumber":2,"title":"Ludo in the Wild","airDate":"2016-07-11","airDateUtc":"2016-07-11T12:10:00Z","overview":"After the destruction of his castle, Ludo is thrown into the cosmos by Star and lands in a forested location. He competes with a giant spider as they go ice fishing. When a bag of potato chips is found, he and the giant spider fight until he wins. He also tames a bald eagle. When he spots Star in the woods, he chases her until he realizes he is back on Mewni. He also obtains a wand of his own which holds the other half of Star's wand magic.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3960},{"seriesId":10,"episodeFileId":2898,"seasonNumber":2,"episodeNumber":3,"title":"Mr. Candle Cares","airDate":"2016-07-18","airDateUtc":"2016-07-18T12:00:00Z","overview":"Guidance counselor Mr. Candle tells Star that she is fated to be Queen of Mewni. She has to read her mother's book on how to act like a queen but she gets frustrated and decides to dress up in a more rebellious punk style. Meanwhile, Marco, who is displeased of Candle's career suggestion of being the head janitor on Garbage Island, discovers that Mr. Candle is actually in cahoots with Tom, who planned to ensure \"Starco\" doesn't happen. He confronts Mr. Candle but is captured by Tom, and must duel Tom to get his freedom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3961},{"seriesId":10,"episodeFileId":2898,"seasonNumber":2,"episodeNumber":4,"title":"Red Belt","airDate":"2016-07-18","airDateUtc":"2016-07-18T12:10:00Z","overview":"Marco trains for a red belt in karate. However, after visiting his sensei's home, he discovers his sensei lives with his mother and does not even have a red belt. Sensei explains that he never got to watch the instructional video for the red belt as the tape got jammed in his video player. Marco and sensei visit thrift shops and eventually come across a rare video store where they have to defeat the store owner to win the tape. Meanwhile, Star looks all over the house for a hammer in order to put up a new poster that she just obtained.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3962},{"seriesId":10,"episodeFileId":2901,"seasonNumber":2,"episodeNumber":5,"title":"Star on Wheels","airDate":"2016-07-25","airDateUtc":"2016-07-25T12:00:00Z","overview":"Marco teaches Star how to ride a bicycle, but Star does not know how to stop. To make things worse, she refuses to listen to Marco's request to pedal backwards since Marco had tricked Star into thinking he would not let go of the bike. Marco gets a car ride with Oskar as they pursue Star to get her the wand. Glossaryck appears and joins in the fun.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3963},{"seriesId":10,"episodeFileId":2901,"seasonNumber":2,"episodeNumber":6,"title":"Fetch","airDate":"2016-07-25","airDateUtc":"2016-07-25T12:10:00Z","overview":"Star throws her wand by accident and it ends up in the mouth of a growling dog who refuses to let it go. She has to take care of the dog and find its owner. Meanwhile, Marco struggles to get a straw into his juice box and has to take care of the laser puppies. She eventually discovers the dog named Willoughby is actually an extra-dimensional being who didn't like life on her planet, so Star has her adopted by a strange lady named Lydia.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3964},{"seriesId":10,"episodeFileId":2903,"seasonNumber":2,"episodeNumber":7,"title":"Star vs. Echo Creek","airDate":"2016-08-01","airDateUtc":"2016-08-01T12:00:00Z","overview":"After getting a sugar high from seasoning her burrito with sugar, Star sets off some magic that accidentally causes a sign to fall and crush a police cruiser. While trying to evade the police, Star encounters a woman by the river bank named Brigid who likes making things out of discarded hair and taking care of injured animals. She later encounters an underwater sea creature who tells her that hiding out is a good thing, but it is revealed the creature is actually her own conscience trying to convince her that she hasn't made a big mistake. Missing her family and friends, she returns to a very worried Marco and turns herself in to the police who have her wash the other squad cars as part of her police-supervised community service.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3965},{"seriesId":10,"episodeFileId":2903,"seasonNumber":2,"episodeNumber":8,"title":"Wand to Wand","airDate":"2016-08-01","airDateUtc":"2016-08-01T12:10:00Z","overview":"Star tries to use her wand to clean up the Diaz home before Marco's parents return, but ends up summoning a whimsical cloud that makes an even bigger mess. Meanwhile, Ludo tries to activate his so he can fight off some rats at a tavern, learning that it works when he gets beat up and enraged.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3966},{"seriesId":10,"episodeFileId":2906,"seasonNumber":2,"episodeNumber":9,"title":"Starstruck","airDate":"2016-08-08","airDateUtc":"2016-08-08T12:00:00Z","overview":"While foraging for donuts that are being tossed at the end of the day, Star encounters Mina Loveberry, a magical girl from Mewni who is Star's idol. Mina has been living as a homeless person on Earth. Star follows Mina and tries to train in her ways, which annoys Marco. At a park, when Mina announces she plans to take over the world, the people decide to hold a vote on whether Mina should rule, and Star is left to break the tie.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3967},{"seriesId":10,"episodeFileId":2906,"seasonNumber":2,"episodeNumber":10,"title":"Camping Trip","airDate":"2016-08-08","airDateUtc":"2016-08-08T12:10:00Z","overview":"Marco wants to show Star the geyser \u2033Old Youthful\u2033 during a Diaz camping trip. King Butterfly joins them on the trip to learn what Earth camping is like. But, King Butterfly's antics get him in trouble several times with the park ranger. When Marco reveals he wanted to show Star the geyser, and the ranger says it's likely the last time it will ever erupt, the three try to rush there to see it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3968},{"seriesId":10,"episodeFileId":2910,"seasonNumber":2,"episodeNumber":11,"title":"Starsitting","airDate":"2016-08-15","airDateUtc":"2016-08-15T12:00:00Z","overview":"Star and Marco are put in charge of watching Buff Frog's tadpoles. Marco wants to follow the Buff Baby handbook, while Star just wants to cuddle them and poke at them. Things get complicated when the tadpoles sprout their legs and hop around.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3969},{"seriesId":10,"episodeFileId":2910,"seasonNumber":2,"episodeNumber":12,"title":"On the Job","airDate":"2016-08-15","airDateUtc":"2016-08-15T12:10:00Z","overview":"While Star and Marco are babysitting his tadpoles, Buff Frog goes on a mission with Boo Fly and other monsters on finding who has been stealing Mewnian corn, but he keeps thinking about his tadpoles during the job, causing him to be a little distracted and klutzy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3970},{"seriesId":10,"episodeFileId":2913,"seasonNumber":2,"episodeNumber":13,"title":"Goblin Dogs","airDate":"2016-09-12","airDateUtc":"2016-09-12T12:00:00Z","overview":"Star, Marco, Pony Head, and a bush-themed female named Kelly go to an unidentified desert-themed dimension to purchase a Goblin Dog (a goblin version of a hot dog). They end up having a hard time when they must deal with the various jobs of the goblin vendor Roy and the many lines that lead to the Goblin Dog truck.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3971},{"seriesId":10,"episodeFileId":2913,"seasonNumber":2,"episodeNumber":14,"title":"By the Book","airDate":"2016-09-12","airDateUtc":"2016-09-12T12:10:00Z","overview":"Star has not been following the advices of Glossaryck when it comes to mastering new spells causing the two of them to have a falling out. Marco does various things in order to get Star and Glossaryck to reconcile. Meanwhile, Ludo hears the voices from within the wand that tell him what he needs to master his wand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3972},{"seriesId":10,"episodeFileId":2916,"seasonNumber":2,"episodeNumber":15,"title":"Game of Flags","airDate":"2016-09-19","airDateUtc":"2016-09-19T12:00:00Z","overview":"During a reunion between Star's parents' families \u2013 the Butterflies and the Johansens \u2013 Star is placed at the kids' table. The two families compete in Flags, a king of the hill game where whoever plants their flag atop a dangerous hill full of obstacles gets to look down on the rival family members for a year. Against the wishes of her mother, Star fashions a decoy at the table and participates in Flags. Marco tries to keep up with Star and later tries to convince her to stop when he realizes how serious the participants are in winning.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3973},{"seriesId":10,"episodeFileId":2916,"seasonNumber":2,"episodeNumber":16,"title":"Girls' Day Out","airDate":"2016-09-19","airDateUtc":"2016-09-19T12:10:00Z","overview":"Star is sent to detention for disrupting Miss Skullnick's class when she frees the class's pet hamster Marisol. Although she could easily escape, she is convinced by Janna and the other detention students that she is the Mayor of Detention, and is assigned to help the students out with their needs. She helps all of them except for Toby, a kid who wants replacement batteries for his remote so he can watch a pro wrestling show on TV. Star and Janna try to find replacement batteries by sneaking out to Oskar and getting ones from his keytar. Meanwhile, Marco is tasked to find Marisol and gets his hand stuck in a drain pipe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3974},{"seriesId":10,"episodeFileId":2919,"seasonNumber":2,"episodeNumber":17,"title":"Sleepover","airDate":"2016-09-26","airDateUtc":"2016-09-26T12:00:00Z","overview":"Star hosts a sleepover with her girl classmates(Janna, Jackie, & Starfan13) and Pony Head. They recruit Marco to play a truth or dare game called \"Truth or Punishment\", where the Truth or Punishment cube administers punishments to everyone when someone lies, and refuses to free everyone until the game is over. The cube's final question is who is their greatest crush. Marco admits he likes Jackie, but the cube insists someone has lied, and informs that Marco wasn't the one who lied. When Star makes a monologue to the cube about how a person's mind and heart disagree, and how feeling are always changing, the cube starts to malfunction after Star makes some examples and self-destructs. After everyone goes home, the discarded cube springs to life one last time, answering the question about Star's crush, but it gets destroyed before the audience gets a clear answer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3975},{"seriesId":10,"episodeFileId":2919,"seasonNumber":2,"episodeNumber":18,"title":"Gift of the Card","airDate":"2016-09-26","airDateUtc":"2016-09-26T12:10:00Z","overview":"After having lost her job at St. Olga's Reform School for Wayward Princesses, Miss Heinous hires a lizard-man bounty hunter named Rasticore to destroy Princess Star and to capture Princess Marco. Star begs Marco to use his Quest Buy gift card. Marco agrees, but because it's a \"friends to the end\" card, he has to use it on something he really wants, and if he doesn't redeem it by midnight when it expires, they will expire too.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3976},{"seriesId":10,"episodeFileId":2922,"seasonNumber":2,"episodeNumber":19,"title":"Friendenemies","airDate":"2016-10-03","airDateUtc":"2016-10-03T12:00:00Z","overview":"Tom invites Marco to a movie marathon featuring Mackie Hands, Marco's favorite kung-fu film star. They start to become friends on the way there after learning they both like Mackie Hands and a band called Love Sentence, but when Marco wants to leave to catch the marathon, Tom refuses to let him go, and gets angry, voiding his chance to earn an anger management graduation badge. Tom apologizes and tries to win back Marco with a Love Sentence song, and then raises Mackie Hands from the dead. Although they cannot get into the theatre, Tom and Marco watch Mackie lay a beatdown on the movie's security guards.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3977},{"seriesId":10,"episodeFileId":2922,"seasonNumber":2,"episodeNumber":20,"title":"Is Mystery","airDate":"2016-10-03","airDateUtc":"2016-10-03T12:10:00Z","overview":"Buff Frog attempts to solve a mystery of a hole in the wall guarding the cornfield when he gets captured by Meat Fork, a humanoid warthog monster with a fork for a left hand. Upon being put to work to grind corn, Buff Frog frees himself to discover who is enslaving the monsters. He encounters the rats as well as Ludo, who offers him Meat Fork's job. Buff Frog refuses and escapes with Meat Fork. Buff Frog decides he will warn Star that Ludo is back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3978},{"seriesId":10,"episodeFileId":2926,"seasonNumber":2,"episodeNumber":21,"title":"Hungry Larry","airDate":"2016-10-10","airDateUtc":"2016-10-10T12:00:00Z","overview":"After Mr. Diaz fails to scare some kids with his haunted house, Star and Janna summon Hungry Larry, reputed to be a very scary spirit, to haunt the house. Janna goes missing and screams attract the kids back to the house. But the kids get scared and go missing; Star and Marco are attacked. Mr. Diaz arrives to find Hungry Larry has eaten everyone, and rescues them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3979},{"seriesId":10,"episodeFileId":2926,"seasonNumber":2,"episodeNumber":22,"title":"Spider with a Top Hat","airDate":"2016-10-10","airDateUtc":"2016-10-10T12:10:00Z","overview":"Spider With a Top Hat has been entertaining Star's wand monsters at a party. Afterwards, he tries to learn a fighting move where he tries to blast through a wall. Despite getting training from Narwahl and Rock, he is unable to break through the wall. The other monsters are summoned for a fight but they are beaten up. Encouraged by Rock's words, Spider is finally called to fight a monster'.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3980},{"seriesId":10,"episodeFileId":2929,"seasonNumber":2,"episodeNumber":23,"title":"Into the Wand","airDate":"2016-11-07","airDateUtc":"2016-11-07T13:00:00Z","overview":"Star's wand malfunctions, making a mess of her spell casting. Glossaryck tells Star that the way to fix it is to go inside the wand and to fetch the item that does not belong. Star finds that the inside is connected to her memories, but when she gets distracted she loses touch with Glossaryck, and must find the item before her duplicate selves overwrite her past memories. She eventually finds the item in a room highlighting her mother's lineage.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3981},{"seriesId":10,"episodeFileId":2929,"seasonNumber":2,"episodeNumber":24,"title":"Pizza Thing","airDate":"2016-11-07","airDateUtc":"2016-11-07T13:10:00Z","overview":"Star, Marco, and Pony Head are about to have a Friendship Thursday by curling up under a blanket on the sofa and watching a television show. Pony Head finds the concept boring and tags along with Marco to pick up a pizza from Emilio's shop. But problems arise when Pony Head gets distracted with buying some skinny jeans, inadvertently confuses a taxi ride with a carjacking, and when Marco makes a casual remark about Emilio's pizza that Emilio takes to heart.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3982},{"seriesId":10,"episodeFileId":2933,"seasonNumber":2,"episodeNumber":25,"title":"Page Turner","airDate":"2016-11-14","airDateUtc":"2016-11-14T13:00:00Z","overview":"Glossaryck lets Star pick any page in the book to learn some new magic. Star chooses a mysterious chapter, but Glossaryck tells her it is very dark magic and that he will only let her get a short peek at the page. However, Glossaryck is summoned to the Bureau of Magic; he tells Star not to turn to that page, and his consciousness is dragged away into another dimension. While Glossaryck must deal with a not-so-helpful receptionist and has a difficult time getting to the top floor because the magic system is \"on the fritz\", Star is tempted to turn the page, and enlists Marco to help do it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3983},{"seriesId":10,"episodeFileId":2933,"seasonNumber":2,"episodeNumber":26,"title":"Naysaya","airDate":"2016-11-14","airDateUtc":"2016-11-14T13:10:00Z","overview":"Marco shyly tries to ask Jackie Lynn Thomas out on a date, but finds that he is blurting out embarrassing things about himself. He then discovers he has sprouted a small little head out of the side of his neck that is saying all those things. It is a Naysaya, a curse that Tom had placed on Marco so that Marco would not be able to ask out Star. The Naysaya can only go away when it is appeased, so Marco tries giving it what it wants, which is some cereal, but it doesn't go away. Marco meets Jackie again but the Naysaya starts to act up, so Marco decides to spill out all his insecurities in front of Jackie.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3984},{"seriesId":10,"episodeFileId":2935,"seasonNumber":2,"episodeNumber":27,"title":"Bon Bon the Birthday Clown","airDate":"2016-11-21","airDateUtc":"2016-11-21T13:00:00Z","overview":"Star and Janna plan a s\u00e9ance to bring back the spirit of Bon Bon, a clown who had died 100 years ago, but the event coincides with a school dance that Star had planned to go with Marco. Star lets Marco go to the dance with Jackie, who finds the dance boring but changes it to a date instead at a park. During the seance, when Janna falls asleep, Star checks up on Marco with a spy spell, only to find that he and Jackie are having a good time together, which makes her jealous. Star is surprised by Ludo, who steals Star's spellbook. Marco and Jackie share a kiss, but when they hear Star in trouble they rush to help her. They pull Star from being sucked through a portal. Glossaryck wakes up to find Ludo as his new master.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3985},{"seriesId":10,"episodeFileId":2936,"seasonNumber":2,"episodeNumber":28,"title":"Raid the Cave","airDate":"2017-02-06","airDateUtc":"2017-02-06T13:00:00Z","overview":"Star tries to find Ludo and retrieve the Book of Spells. She packs a large amount of stuff and goes to Buff Frog, who gives Star and Marco a map of Ludo's hideout. There they find some monsters that have taken over the place but see no sign of Ludo. Star uses the seeing eye spell to find Glossaryck and pleads for him to come back, but he refuses, saying that he has to follow Ludo now.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3986},{"seriesId":10,"episodeFileId":2936,"seasonNumber":2,"episodeNumber":29,"title":"Trickstar","airDate":"2017-02-07","airDateUtc":"2017-02-07T13:00:00Z","overview":"Star and Marco attend the birthday party for Marco's sensei. Star becomes suspicious of magician-for-hire Preston Change-O, who, after every magic trick he does, seems to be taking something spiritual from the person, and that his hat is becoming longer and longer. She discovers that Preston has the ability to steal joy from people, so she warns him not to do so or else, but Preston does it anyway. When Star tells everyone what is happening, the audience think Star is a spoilsport and ignore her. Sensei talks about his feelings and then informs Star and Marco that he put Preston in the trunk, but when they open it, Preston has disappeared.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3987},{"seriesId":10,"episodeFileId":2938,"seasonNumber":2,"episodeNumber":30,"title":"Baby","airDate":"2017-02-08","airDateUtc":"2017-02-08T13:00:00Z","overview":"Star's parents send a fairy godmother named Baby to evaluate Star, who takes the task seriously, as failing the eval would mean she would have to return to Mewni. At first, Star cleans up her room, shoving stuff in closets or dimensional pockets, but when Baby starts asking Star questions, and things start falling out of the pockets, Star's responses are met with the same neutral phrase \"Interesting.\" followed by jotting down of notes. Meanwhile Marco tries to help Star by bringing Baby food. Baby then asks Star to bring her an apple using magic, but Star fails to do the task despite repeated tries. Baby concludes that Star failed, but Star tries one last time and ends up using the apple seeds to grow an apple tree which drops an apple for Baby. Star's parents learn from Baby that despite not being organized, losing the book of spells, and failing to do simple spells, Star has magic potential way ahead of when her mother was her age, and might even be comparable to Queen Eclipsa.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3988},{"seriesId":10,"episodeFileId":2938,"seasonNumber":2,"episodeNumber":31,"title":"Running with Scissors","airDate":"2017-02-09","airDateUtc":"2017-02-09T13:00:00Z","overview":"Marco borrows Star's Dimensional Scissors to find a place to walk the laser puppies, but he soon becomes accustomed to its conveniences, opening a bunch of portals from his bed to access things. Hekapoo, the forger of all of the Dimensional Scissors, pulls Marco into her dimension and confiscates the Scissors as they did not belong to him or Star (Pony Head had stolen them and gave them to Star). Marco must earn the scissors by having to blow out the flame atop Hekapoo's head. Star goes to Hekapoo's dimension to recover Marco, who had chased Hekapoo for 16 years before winning the challenge. When they return, Marco reverts to his teenage body as only a few minutes have passed on Earth time.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3989},{"seriesId":10,"episodeFileId":2940,"seasonNumber":2,"episodeNumber":32,"title":"Mathmagic","airDate":"2017-02-13","airDateUtc":"2017-02-13T13:00:00Z","overview":"Star is called to solve a problem in Miss Skullnick's math class, but she refuses to do it. She tries to cast some magic to get out of it but ends up in a time loop. However with each iteration, the scenario is slightly different. Star goes to Father Time's dimension, but Father Time is too busy to help her, and she gets advice from Omnitraxus Prime, who is in charge of space-time. Star must solve the problem or her world will fall apart.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3990},{"seriesId":10,"episodeFileId":2940,"seasonNumber":2,"episodeNumber":33,"title":"The Bounce Lounge","airDate":"2017-02-14","airDateUtc":"2017-02-14T13:00:00Z","overview":"Pony Head tells Star the bad news that the Bounce Lounge, their favorite partying venue, is closing. Star and Pony Head round up their former Bounce Lounge posse. They start partying and raise enough funds to save the place, however the owner Milly tells them that she is still closing the place because she is tired from having partied over 5,000 years. Afterwards, the Bounce Crew members and Marco take a group picture in a photo booth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3991},{"seriesId":10,"episodeFileId":2942,"seasonNumber":2,"episodeNumber":34,"title":"Crystal Clear","airDate":"2017-02-15","airDateUtc":"2017-02-15T13:00:00Z","overview":"Rhombulus captures Star and Marco and encases them in crystal, believing that the former is the cause of the glitches that are affecting the dimensions. When he inadvertently encases his boss, and then his own hands for wanting to tell the high council, he unfreezes Star and shares his predicament. Star agrees not to tell the high council about the situation provided that Rhombulus not tell them about Star's losing the Book of Spells and Glossaryck.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3992},{"seriesId":10,"episodeFileId":2942,"seasonNumber":2,"episodeNumber":35,"title":"The Hard Way","airDate":"2017-02-16","airDateUtc":"2017-02-16T13:00:00Z","overview":"Glossaryck agrees to teach Ludo stuff from the Book of Spells. He first makes Ludo do some physical exercises as Ludo wanted to learn the hard way. Ludo learns and masters a levitation spell and is quite proud of his accomplishment. But when he learns there is a secret chapter that Glossaryck withheld from him but showed Star, he makes Glossaryck unlock them. Ludo reads the forbidden chapter and gains some dark magic, but when he talks with Glossaryck, he now has the voice of Toffee, who has possessed him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3993},{"seriesId":10,"episodeFileId":2944,"seasonNumber":2,"episodeNumber":36,"title":"Heinous","airDate":"2017-02-20","airDateUtc":"2017-02-20T13:00:00Z","overview":"Marco is forced to atone for his behavior toward Miss Heinous when she arrives at his house.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3994},{"seriesId":10,"episodeFileId":2944,"seasonNumber":2,"episodeNumber":37,"title":"All Belts Are Off","airDate":"2017-02-21","airDateUtc":"2017-02-21T13:00:00Z","overview":"Marco is angry because Jeremy is the person representing the dojo for their karate sensei to become an official karate dojo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3995},{"seriesId":10,"episodeFileId":2947,"seasonNumber":2,"episodeNumber":38,"title":"Collateral Damage","airDate":"2017-02-22","airDateUtc":"2017-02-22T13:00:00Z","overview":"After she destroys the statue of Echo Creek High's mascot, Star must find a way to cheer up the students again.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3996},{"seriesId":10,"episodeFileId":2947,"seasonNumber":2,"episodeNumber":39,"title":"Just Friends","airDate":"2017-02-23","airDateUtc":"2017-02-23T13:00:00Z","overview":"Star surprises Marco with tickets to a Love Sentence concert, but also invites Jackie. When Star and Jackie start having fun together, Marco starts to feel jealous and wants them to go on without him, but Jackie convinces him otherwise. At the concert Jackie and Marco engage in a kiss, which results in Star running off out of jealousy. As Star leaves the concert, she fires a blast of tainted magic, destroying a billboard.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3997},{"seriesId":10,"episodeFileId":2948,"seasonNumber":2,"episodeNumber":40,"title":"Face the Music","airDate":"2017-02-27","airDateUtc":"2017-02-27T13:00:00Z","overview":"The songstrell Ruberiot is ordered to write a song about Star for the tradition of Song Day, but Star is reluctant to participate because it portrays princesses as being perfect. Ruberiot ultimately convinces her to let him write a song about the real her, but inadvertently reveals to the people of Mewni that Star lost the book of spells, and that she has a crush on Marco.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3998},{"seriesId":10,"episodeFileId":2949,"seasonNumber":2,"episodeNumber":41,"title":"Starcrushed","airDate":"2017-02-27","airDateUtc":"2017-02-27T13:10:00Z","overview":"At the Echo Creek graduation party, Marco struggles to reconnect with Star after the events of Face the Music. While Queen Moon invades Ludo's new castle with the Magic High Commission, Star is convinced by her friends to ditch the graduation party and instead attend a party with Oskar. Meanwhile, Toffee takes possession of Ludo's body and regrows his severed arm from Ludo's wand, draining the magic of the Magic High Commission and nearly killing Queen Moon. When Star returns, Queen Moon informs her that they will have to leave Earth. Star confesses to Marco about her feelings for him and tearfully leaves him forever.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3999},{"seriesId":10,"episodeFileId":2895,"seasonNumber":3,"episodeNumber":1,"title":"Return to Mewni","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"Star returns to her home dimension of Mewni where she discovers that magic is disappearing throughout the kingdom. She must dig deep and challenge archnemesis Ludo in an effort to save her family and kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4000},{"seriesId":10,"episodeFileId":2895,"seasonNumber":3,"episodeNumber":2,"title":"Moon the Undaunted","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"Queen Moon shares her story of when she was a teenager and her mother (Star's grandmother) had died. She had to decide between signing a peace treaty or going to war against the monster army, led by \"The Lizard\". She partly melts the ice encasing Eclipsa, to learn some dark magic from the forbidden section of the Book of Spells. She confronts The Lizard (Toffee) and uses the dark magic to sever his finger, which he is unable to regenerate. Toffee flees.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4001},{"seriesId":10,"episodeFileId":2897,"seasonNumber":3,"episodeNumber":3,"title":"Book Be Gone","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"Ludo finds that his wand is now embedded into his hand. He finds Glossaryck, who tells them that the Magic High Commission has been defeated. Ludo wants to celebrate by writing his story into the Book of Spells, but the book will not let him, as he is not the owner of the book anymore. Despite multiple attempts, he is unable to write into the book until he throws the book into the fire, at which it burns up (and Glossaryck along with it).","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4002},{"seriesId":10,"episodeFileId":2897,"seasonNumber":3,"episodeNumber":4,"title":"Marco and the King","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"King River tries to take care of the kingdom by partying it up every day, but he and his subjects wear down quickly. Marco arrives, but River has to deal with angry villagers as well as a large monster who approaches the castle after he yelled at it to leave. River tries to hide, but Marco encourages him to stand up to the monster. River rallies the villagers to fight the monster, and it is revealed that the monster thought River was beckoning it to come to the castle, not to go away. It leaves peacefully, but as River is about to have a party to celebrate, Ludo and his minions appear and take over the kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4003},{"seriesId":10,"episodeFileId":2900,"seasonNumber":3,"episodeNumber":5,"title":"Puddle Defender","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"With the sanctuary all sludged up, Star and her mom flee and find a new hiding place at Buff Frog's. Star wants to sneak out to fight, so she gets Buff Frog to distract her mom with some Mewnian board games such as Puddle Defender, which Buff and Moon find have a biased perspective towards the monsters instead of the Mewnians. After a heated argument, Buff Frog sides with Queen Butterfly and forbids Star from leaving. However, Buff's youngest tadpole Katerina later sneaks Star out.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4004},{"seriesId":10,"episodeFileId":2900,"seasonNumber":3,"episodeNumber":6,"title":"King Ludo","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"Ludo has taken over the kingdom, and has imprisoned Marco and River, but he finds that he is not popular at all among the kingdom's villagers. He tells River to make him popular or else he will levitate him into the sky. Marco uses a stick of butter that Ludo left to free himself, but River has eaten his part of the butter so Marco has to steal Ludo's key. He meets with some of the court entertainers, and they steal the key, but River refuses to escape. Ludo levitates River into the skies while Marco and the entertainers conspire what to do next.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4005},{"seriesId":10,"episodeFileId":2902,"seasonNumber":3,"episodeNumber":7,"title":"Toffee","airDate":"2017-07-15","airDateUtc":"2017-07-15T12:00:00Z","overview":"King Ludo's reign reaches as a tipping point as Star returns to the castle. Star must summon her strength to save her family and the kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4006},{"seriesId":10,"episodeFileId":2905,"seasonNumber":3,"episodeNumber":8,"title":"Scent of a Hoodie","airDate":"2017-11-06","airDateUtc":"2017-11-06T13:00:00Z","overview":"Star goes to the Royal Laundry, and meets the Knight of the Wash.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4007},{"seriesId":10,"episodeFileId":2908,"seasonNumber":3,"episodeNumber":9,"title":"Rest in Pudding","airDate":"2017-11-06","airDateUtc":"2017-11-06T13:10:00Z","overview":"Star continues to have recurring visions of Glossaryck and believe he is haunting her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4008},{"seriesId":10,"episodeFileId":2909,"seasonNumber":3,"episodeNumber":10,"title":"Club Snubbed","airDate":"2017-11-07","airDateUtc":"2017-11-07T13:00:00Z","overview":"Tom snubs Star at the Silver Bell Ball.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4009},{"seriesId":10,"episodeFileId":2909,"seasonNumber":3,"episodeNumber":11,"title":"Stranger Danger","airDate":"2017-11-07","airDateUtc":"2017-11-07T13:10:00Z","overview":"Star meets the ancient Queen Eclipsa.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4010},{"seriesId":10,"episodeFileId":2912,"seasonNumber":3,"episodeNumber":12,"title":"Demoncism","airDate":"2017-11-08","airDateUtc":"2017-11-08T13:00:00Z","overview":"Star and Tom's friendship is put to the test when Tom decides to get rid of his demons.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4011},{"seriesId":10,"episodeFileId":2912,"seasonNumber":3,"episodeNumber":13,"title":"Sophomore Slump","airDate":"2017-11-08","airDateUtc":"2017-11-08T13:10:00Z","overview":"Marco decides to put in a full effort to living life in the present on Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4012},{"seriesId":10,"episodeFileId":2915,"seasonNumber":3,"episodeNumber":14,"title":"Lint Catcher","airDate":"2017-11-09","airDateUtc":"2017-11-09T13:00:00Z","overview":"Knight of the wash, Sir Lavabo, gets a familiar squire.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4013},{"seriesId":10,"episodeFileId":2915,"seasonNumber":3,"episodeNumber":15,"title":"Trial by Squire","airDate":"2017-11-09","airDateUtc":"2017-11-09T13:10:00Z","overview":"Star prepares for the Midnight Warrior Blowout Sale at Quest Buy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4014},{"seriesId":10,"episodeFileId":2918,"seasonNumber":3,"episodeNumber":16,"title":"Princess Turdina","airDate":"2017-11-13","airDateUtc":"2017-11-13T13:00:00Z","overview":"A surprise visitor pressures Marco to reveal Turdina's true identity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4015},{"seriesId":10,"episodeFileId":2918,"seasonNumber":3,"episodeNumber":17,"title":"Starfari","airDate":"2017-11-13","airDateUtc":"2017-11-13T13:10:00Z","overview":"Star goes out into the field to understand why Mewmans treat Monsters unfairly.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4016},{"seriesId":10,"episodeFileId":2921,"seasonNumber":3,"episodeNumber":18,"title":"Sweet Dreams","airDate":"2017-11-14","airDateUtc":"2017-11-14T13:00:00Z","overview":"Star discovers she travels through multiple dimensions in her dreams.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4017},{"seriesId":10,"episodeFileId":2921,"seasonNumber":3,"episodeNumber":19,"title":"Lava Lake Beach","airDate":"2017-11-14","airDateUtc":"2017-11-14T13:10:00Z","overview":"Kelly breaks up with her boyfriend and Marco questions his friendship with Star Butterfly.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4018},{"seriesId":10,"episodeFileId":2924,"seasonNumber":3,"episodeNumber":20,"title":"Death Peck","airDate":"2017-11-15","airDateUtc":"2017-11-15T13:00:00Z","overview":"Star urges the royal youth of Mewni to sign a petition calling for the equal treatment of Monsters.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4019},{"seriesId":10,"episodeFileId":2924,"seasonNumber":3,"episodeNumber":21,"title":"Ponymonium","airDate":"2017-11-15","airDateUtc":"2017-11-15T13:10:00Z","overview":"Star is thrilled when Ponyhead invites her to dinner with her sisters.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4020},{"seriesId":10,"episodeFileId":2927,"seasonNumber":3,"episodeNumber":22,"title":"Night Life","airDate":"2017-11-16","airDateUtc":"2017-11-16T13:00:00Z","overview":"Star learns that Marco and Hekapoo have been dealing with rogue interdimensional portals.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4021},{"seriesId":10,"episodeFileId":2927,"seasonNumber":3,"episodeNumber":23,"title":"Deep Dive","airDate":"2017-11-16","airDateUtc":"2017-11-16T13:10:00Z","overview":"Star learns that Marco and Hekapoo have been dealing with rogue interdimensional portals.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4022},{"seriesId":10,"episodeFileId":2931,"seasonNumber":3,"episodeNumber":24,"title":"Monster Bash","airDate":"2017-11-16","airDateUtc":"2017-11-16T13:20:00Z","overview":"All the youth of Mewni gather at the ancient Monster Temple to celebrate a new era of Monsters and Mewmans living together in peace, until guests start disappearing!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4023},{"seriesId":10,"episodeFileId":2932,"seasonNumber":3,"episodeNumber":25,"title":"Stump Day","airDate":"2017-12-02","airDateUtc":"2017-12-02T13:00:00Z","overview":"Star, Marco and the rest of Mewni celebrate a special snowy holiday, \"Stump Day\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4024},{"seriesId":10,"episodeFileId":2932,"seasonNumber":3,"episodeNumber":26,"title":"Holiday Spellcial","airDate":"2017-12-02","airDateUtc":"2017-12-02T13:10:00Z","overview":"Spider with a Top Hat invites one of Eclipsa\u2019s dark spells to the office holiday party.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4025},{"seriesId":10,"episodeFileId":2934,"seasonNumber":3,"episodeNumber":27,"title":"The Bogbeast of Boggabah","airDate":"2018-03-03","airDateUtc":"2018-03-03T13:00:00Z","overview":"King River interrupts Star's eager investigation into Eclipsa's past and demands her help on a dangerous hunt","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4026},{"seriesId":10,"episodeFileId":2934,"seasonNumber":3,"episodeNumber":28,"title":"Total Eclipsa the Moon","airDate":"2018-03-03","airDateUtc":"2018-03-03T13:10:00Z","overview":"Moon enlists Eclipsa herself to access Mewni's most guarded records","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4027},{"seriesId":10,"episodeFileId":2937,"seasonNumber":3,"episodeNumber":29,"title":"Butterfly Trap","airDate":"2018-03-10","airDateUtc":"2018-03-10T13:00:00Z","overview":"Moon and the Magical High Commission put Eclipsa on trial for her evil past with Star as a key witness.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4028},{"seriesId":10,"episodeFileId":2937,"seasonNumber":3,"episodeNumber":30,"title":"Ludo, Where Art Thou?","airDate":"2018-03-10","airDateUtc":"2018-03-10T13:10:00Z","overview":"Dennis goes on a dangerous journey to find Ludo living in another dimension.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4029},{"seriesId":10,"episodeFileId":2939,"seasonNumber":3,"episodeNumber":31,"title":"Is Another Mystery","airDate":"2018-03-17","airDateUtc":"2018-03-17T12:00:00Z","overview":"Buffrog leaves Mewni in search for a better life, and Star goes to look for him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4030},{"seriesId":10,"episodeFileId":2939,"seasonNumber":3,"episodeNumber":32,"title":"Marco Jr.","airDate":"2018-03-17","airDateUtc":"2018-03-17T12:10:00Z","overview":"Marco returns to Echo Creek to discover that his mom is pregnant.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4031},{"seriesId":10,"episodeFileId":2941,"seasonNumber":3,"episodeNumber":33,"title":"Skooled!","airDate":"2018-03-24","airDateUtc":"2018-03-24T12:00:00Z","overview":"Ponyhead returns to St. O\u2019s and finds that the curriculum got tougher.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4032},{"seriesId":10,"episodeFileId":2941,"seasonNumber":3,"episodeNumber":34,"title":"Booth Buddies","airDate":"2018-03-24","airDateUtc":"2018-03-24T12:10:00Z","overview":"A magical photo booth at a wedding goes on the fritz and captures Star and Marco inside","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4033},{"seriesId":10,"episodeFileId":2943,"seasonNumber":3,"episodeNumber":35,"title":"Bam Ui Pati!","airDate":"2018-03-31","airDateUtc":"2018-03-31T12:00:00Z","overview":"Pony Head shuts herself away to watch the finale of her favorite Korean drama.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4034},{"seriesId":10,"episodeFileId":2943,"seasonNumber":3,"episodeNumber":36,"title":"Tough Love","airDate":"2018-03-31","airDateUtc":"2018-03-31T12:10:00Z","overview":"Eclipsa and Moon bring Princess Meteora home peacefully after the massive destruction she's caused.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4035},{"seriesId":10,"episodeFileId":2945,"seasonNumber":3,"episodeNumber":37,"title":"Divide","airDate":"2018-04-07","airDateUtc":"2018-04-07T12:00:00Z","overview":"Star becomes acting Queen and plans for Marco and his warriors to delay Meteora from reaching Castle Butterfly long enough for Star to find Moon and destroy the monster princess.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4036},{"seriesId":10,"episodeFileId":2946,"seasonNumber":3,"episodeNumber":38,"title":"Conquer","airDate":"2018-04-07","airDateUtc":"2018-04-07T12:10:00Z","overview":"Star must find the courage to face Meteora alone and make a decision that will change the kingdom forever.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4037},{"seriesId":10,"episodeFileId":7211,"seasonNumber":4,"episodeNumber":1,"title":"Butterfly Follies","airDate":"2019-03-10","airDateUtc":"2019-03-10T12:00:00Z","overview":"Star and Marco go in search of Queen Moon.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4038},{"seriesId":10,"episodeFileId":7210,"seasonNumber":4,"episodeNumber":2,"title":"Escape from the Pie Folk","airDate":"2019-03-10","airDateUtc":"2019-03-10T12:10:00Z","overview":"Star's search for her Mom takes her to the home of the Pie Folk, where she must outwit them in order to reunite her family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10742},{"seriesId":10,"episodeFileId":7193,"seasonNumber":4,"episodeNumber":3,"title":"Moon Remembers","airDate":"2019-03-17","airDateUtc":"2019-03-17T12:00:00Z","overview":"Moon is back, and Star wants to find the perfect time to tell her about Globgor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10743},{"seriesId":10,"episodeFileId":7193,"seasonNumber":4,"episodeNumber":4,"title":"Swim Suit","airDate":"2019-03-17","airDateUtc":"2019-03-17T12:00:00Z","overview":"Star and Marco plan their beach day, but Eclipsa needs Star's help with an unexpected problem.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10744},{"seriesId":10,"episodeFileId":7192,"seasonNumber":4,"episodeNumber":5,"title":"Ransomgram","airDate":"2019-03-17","airDateUtc":"2019-03-17T12:00:00Z","overview":"Star and Marco journey to the Neverzone to rescue his friend Nachos from mysterious demons.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10745},{"seriesId":10,"episodeFileId":7192,"seasonNumber":4,"episodeNumber":6,"title":"Lake House Fever","airDate":"2019-03-17","airDateUtc":"2019-03-17T12:00:00Z","overview":"When a storm traps Star at Tom's family lake house, she turns it into a fun excursion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10746},{"seriesId":10,"episodeFileId":7209,"seasonNumber":4,"episodeNumber":7,"title":"Yada Yada Berries","airDate":"2019-03-24","airDateUtc":"2019-03-24T12:00:00Z","overview":"Star and Marco turn into amateur sleuths to find who tried to turn Eclipsa to stone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10747},{"seriesId":10,"episodeFileId":7207,"seasonNumber":4,"episodeNumber":8,"title":"Down by the River","airDate":"2019-03-24","airDateUtc":"2019-03-24T12:00:00Z","overview":"Moon and River try to adjust to life after giving up their crowns.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10748},{"seriesId":10,"episodeFileId":7208,"seasonNumber":4,"episodeNumber":9,"title":"Surviving the Spiderbites","airDate":"2019-03-24","airDateUtc":"2019-03-24T12:00:00Z","overview":"Star tries her best to distract the Spider Bite family when Eclipsa is late for her first royal dinner.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10749},{"seriesId":10,"episodeFileId":7206,"seasonNumber":4,"episodeNumber":10,"title":"The Ponyhead Show!","airDate":"2019-03-24","airDateUtc":"2019-03-24T12:00:00Z","overview":"Star enlists Ponyhead to help make Eclipsa more popular.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10750},{"seriesId":10,"episodeFileId":7245,"seasonNumber":4,"episodeNumber":11,"title":"Out of Business","airDate":"2019-03-31","airDateUtc":"2019-03-31T12:00:00Z","overview":"Star, Marco and Janna want to take full advantage of Quest Buy's \"Going Out of Business Sale.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10751},{"seriesId":10,"episodeFileId":7245,"seasonNumber":4,"episodeNumber":12,"title":"Kelly's World","airDate":"2019-03-31","airDateUtc":"2019-03-31T12:10:00Z","overview":"Marco and Kelly risk life and limb to return a library book before it's overdue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10752},{"seriesId":10,"episodeFileId":7240,"seasonNumber":4,"episodeNumber":13,"title":"Curse of the Blood Moon","airDate":"2019-03-31","airDateUtc":"2019-03-31T12:20:00Z","overview":"Star and Marco go on a perilous quest to break the curse of the Blood Moon.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":10753},{"seriesId":10,"episodeFileId":7246,"seasonNumber":4,"episodeNumber":14,"title":"Princess Quasar Caterpillar and the Magic Bell","airDate":"2019-04-07","airDateUtc":"2019-04-07T12:00:00Z","overview":"Ludo becomes determined to figure out how to not let his past hinder him any longer and continue on with the rest of his life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11044},{"seriesId":10,"episodeFileId":7251,"seasonNumber":4,"episodeNumber":15,"title":"Ghost of Butterfly Castle","airDate":"2019-04-07","airDateUtc":"2019-04-07T12:00:00Z","overview":"Moon revisits the Butterfly Castle ruins to discover an item she left behind, but she is soon surprised.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11045},{"seriesId":10,"episodeFileId":7248,"seasonNumber":4,"episodeNumber":16,"title":"Cornball!","airDate":"2019-04-07","airDateUtc":"2019-04-07T12:00:00Z","overview":"Star tries to convince Buff Frog to move back to Mewni.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11046},{"seriesId":10,"episodeFileId":7247,"seasonNumber":4,"episodeNumber":17,"title":"Meteora's Lesson","airDate":"2019-04-07","airDateUtc":"2019-04-07T12:00:00Z","overview":"Glossaryck needs Meteora to help him with an errand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11047},{"seriesId":10,"episodeFileId":7359,"seasonNumber":4,"episodeNumber":18,"title":"Queen-Napped","airDate":"2019-04-14","airDateUtc":"2019-04-14T12:00:00Z","overview":"Star and Marco have to rescue a kidnapped Eclipsa.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11066},{"seriesId":10,"episodeFileId":7358,"seasonNumber":4,"episodeNumber":19,"title":"The Knight Shift","airDate":"2019-04-14","airDateUtc":"2019-04-14T12:00:00Z","overview":"Star and Marco have to make some decisions about the future.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11067},{"seriesId":10,"episodeFileId":7356,"seasonNumber":4,"episodeNumber":20,"title":"Junkin' Janna","airDate":"2019-04-14","airDateUtc":"2019-04-14T12:00:00Z","overview":"Tom learns how to have fun without Star.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11068},{"seriesId":10,"episodeFileId":7357,"seasonNumber":4,"episodeNumber":21,"title":"A Spell with No Name","airDate":"2019-04-14","airDateUtc":"2019-04-14T12:00:00Z","overview":"Star and Eclipsa's spells come face to face, and they must team up to stop a lethal spell gone rogue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11069},{"seriesId":10,"episodeFileId":7373,"seasonNumber":4,"episodeNumber":22,"title":"A Boy and His DC-700XE","airDate":"2019-04-21","airDateUtc":"2019-04-21T12:00:00Z","overview":"Marco and Tom go on a dragon-cycling adventure.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11070},{"seriesId":10,"episodeFileId":7373,"seasonNumber":4,"episodeNumber":23,"title":"The Monster and the Queen","airDate":"2019-04-21","airDateUtc":"2019-04-21T12:10:00Z","overview":"Eclipsa has a date with Globgor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11071},{"seriesId":10,"episodeFileId":7379,"seasonNumber":4,"episodeNumber":24,"title":"Coronation","airDate":"2019-04-21","airDateUtc":"2019-04-21T12:20:00Z","overview":"Star plans a coronation for Eclipsa to become Queen.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11072},{"seriesId":10,"episodeFileId":7377,"seasonNumber":4,"episodeNumber":25,"title":"Doop-Doop","airDate":"2019-04-28","airDateUtc":"2019-04-28T12:00:00Z","overview":"Star attempts to figure out what to do with her life after she is not responsible for Mewni any longer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11073},{"seriesId":10,"episodeFileId":7377,"seasonNumber":4,"episodeNumber":26,"title":"Britta's Tacos","airDate":"2019-04-28","airDateUtc":"2019-04-28T12:00:00Z","overview":"Marco is determined to consume 50 tacos in order to win a special prize that is being offered at Britta's Tacos restaurant.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11074},{"seriesId":10,"episodeFileId":7378,"seasonNumber":4,"episodeNumber":27,"title":"Gone Baby Gone","airDate":"2019-04-28","airDateUtc":"2019-04-28T12:00:00Z","overview":"Marco misplaces both Mariposa and Meteora somewhere in Hekapoo's dimension.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11075},{"seriesId":10,"episodeFileId":7378,"seasonNumber":4,"episodeNumber":28,"title":"Beach Day","airDate":"2019-04-28","airDateUtc":"2019-04-28T12:00:00Z","overview":"Star gets ready to actually have the day at the beach with Marco.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11076},{"seriesId":10,"episodeFileId":7412,"seasonNumber":4,"episodeNumber":29,"title":"Sad Teen Hotline","airDate":"2019-05-05","airDateUtc":"2019-05-05T12:00:00Z","overview":"Tom breaks up with Star but is not prepared for the consequences.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11079},{"seriesId":10,"episodeFileId":7412,"seasonNumber":4,"episodeNumber":30,"title":"Jannanigans","airDate":"2019-05-05","airDateUtc":"2019-05-05T12:00:00Z","overview":"Star and Marco need Janna's help to return to Mewni.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11080},{"seriesId":10,"episodeFileId":7411,"seasonNumber":4,"episodeNumber":31,"title":"Mama Star","airDate":"2019-05-05","airDateUtc":"2019-05-05T12:00:00Z","overview":"Star, Marco, Janna and Tom lose their memories as they traverse amnesia-inducing waters to get back to Mewni.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11081},{"seriesId":10,"episodeFileId":7411,"seasonNumber":4,"episodeNumber":32,"title":"Ready, Aim, Fire","airDate":"2019-05-05","airDateUtc":"2019-05-05T12:00:00Z","overview":"Star arrives in Mewni as a soldier attacks Monster Castle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11082},{"seriesId":10,"episodeFileId":7438,"seasonNumber":4,"episodeNumber":33,"title":"The Right Way","airDate":"2019-05-12","airDateUtc":"2019-05-12T12:00:00Z","overview":"Star, Ponyhead, Sea Horse, Kelly, Rich Pigeon, Jorby, Talon and Quirky Guy all arrive to bail out Eclipsa.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11083},{"seriesId":10,"episodeFileId":7449,"seasonNumber":4,"episodeNumber":34,"title":"Here to Help","airDate":"2019-05-12","airDateUtc":"2019-05-12T12:00:00Z","overview":"Moon arrives to save the day.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11084},{"seriesId":10,"episodeFileId":7450,"seasonNumber":4,"episodeNumber":35,"title":"Pizza Party","airDate":"2019-05-12","airDateUtc":"2019-05-12T12:00:00Z","overview":"Moon and Mina agree to disagree.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11085},{"seriesId":10,"episodeFileId":7448,"seasonNumber":4,"episodeNumber":36,"title":"The Tavern at the End of the Multiverse","airDate":"2019-05-12","airDateUtc":"2019-05-12T12:00:00Z","overview":"Star searches for a way to defeat Mina and her Solarian Warriors.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11086},{"seriesId":10,"episodeFileId":7519,"seasonNumber":4,"episodeNumber":37,"title":"Cleaved","airDate":"2019-05-19","airDateUtc":"2019-05-19T12:00:00Z","overview":"Star attempts to solve all of her problems.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11087}],"episodeFile":[{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E01E02.My New Wand! + Ludo in the Wild-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E01E02.My New Wand! + Ludo in the Wild-WEBDL-1080p.mkv","size":929855132,"dateAdded":"2018-10-10T23:00:31.45104Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2893},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.Star Comes to Earth + Party with a Pony-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E01E02.Star Comes to Earth + Party with a Pony-WEBDL-1080p.mkv","size":890555713,"dateAdded":"2018-10-10T23:00:31.502496Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2894},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E01E02.Return to Mewni + Moon the Undaunted-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E01E02.Return to Mewni + Moon the Undaunted-WEBDL-1080p.mkv","size":890198066,"dateAdded":"2018-10-10T23:00:31.543893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152527,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5140903,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2895},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E03E04.Match Maker + School Spirit-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E03E04.Match Maker + School Spirit-WEBDL-1080p.mkv","size":902986669,"dateAdded":"2018-10-10T23:00:31.58749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2896},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E03E04.Book Be Gone + Marco and the King-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E03E04.Book Be Gone + Marco and the King-WEBDL-1080p.mkv","size":881844715,"dateAdded":"2018-10-10T23:00:31.625064Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151706,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5092156,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2897},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E03E04.Mr. Candle Cares + Red Belt-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E03E04.Mr. Candle Cares + Red Belt-WEBDL-1080p.mkv","size":878127420,"dateAdded":"2018-10-10T23:00:31.663161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2898},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E05E06.Monster Arm + The Other Exchange Student-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E05E06.Monster Arm + The Other Exchange Student-WEBDL-1080p.mkv","size":877264983,"dateAdded":"2018-10-10T23:00:31.701003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2899},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E05E06.Puddle Defender + King Ludo-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E05E06.Puddle Defender + King Ludo-WEBDL-1080p.mkv","size":876772403,"dateAdded":"2018-10-10T23:00:31.740674Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151247,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5121491,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2900},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E05E06.Star on Wheels + Fetch-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E05E06.Star on Wheels + Fetch-WEBDL-1080p.mkv","size":874962322,"dateAdded":"2018-10-10T23:00:31.778849Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2901},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Toffee-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E07.Toffee-WEBDL-1080p.mkv","size":901088786,"dateAdded":"2018-10-10T23:00:31.816854Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155910,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5143743,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2902},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E07E08.Star vs. Echo Creek + Wand to Wand-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E07E08.Star vs. Echo Creek + Wand to Wand-WEBDL-1080p.mkv","size":864540376,"dateAdded":"2018-10-10T23:00:31.846746Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2903},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08.Cheer Up Star + Quest Buy-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E07E08.Cheer Up Star + Quest Buy-WEBDL-1080p.mkv","size":864360373,"dateAdded":"2018-10-10T23:00:31.890829Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2904},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Scent of a Hoodie-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E08.Scent of a Hoodie-WEBDL-720p.mkv","size":572935076,"dateAdded":"2018-10-10T23:00:31.930859Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126789,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2905},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E09E10.Starstruck + Camping Trip-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E09E10.Starstruck + Camping Trip-WEBDL-1080p.mkv","size":882118918,"dateAdded":"2018-10-10T23:00:31.960627Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2906},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E09E10.Diaz Family Vacation + Brittney's Party-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E09E10.Diaz Family Vacation + Brittney's Party-WEBDL-1080p.mkv","size":847294816,"dateAdded":"2018-10-10T23:00:31.997468Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2907},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Rest in Pudding-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E09.Rest in Pudding-WEBDL-720p.mkv","size":573292664,"dateAdded":"2018-10-10T23:00:32.036577Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126748,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2908},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E10E11.Club Snubbed + Stranger Danger-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E10E11.Club Snubbed + Stranger Danger-WEBDL-1080p.mkv","size":882161952,"dateAdded":"2018-10-10T23:00:32.065885Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151221,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5094514,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2909},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E11E12.Starsitting + On the Job-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E11E12.Starsitting + On the Job-WEBDL-1080p.mkv","size":877611210,"dateAdded":"2018-10-10T23:00:32.103024Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2910},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E11E12.Mewberty + Pixtopia-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E11E12.Mewberty + Pixtopia-WEBDL-1080p.mkv","size":852071769,"dateAdded":"2018-10-10T23:00:32.143602Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2911},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E12E13.Demoncism + Sophomore Slump-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E12E13.Demoncism + Sophomore Slump-WEBDL-1080p.mkv","size":888005212,"dateAdded":"2018-10-10T23:00:32.196004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150358,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130312,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2912},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E13E14.Goblin Dogs + By the Book-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E13E14.Goblin Dogs + By the Book-WEBDL-1080p.mkv","size":875172845,"dateAdded":"2018-10-10T23:00:32.23461Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2913},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E13E14.Lobster Claws + Sleep Spells-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E13E14.Lobster Claws + Sleep Spells-WEBDL-1080p.mkv","size":851737050,"dateAdded":"2018-10-10T23:00:32.273958Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2914},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E14E15.Lint Catcher + Trial by Squire-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E14E15.Lint Catcher + Trial by Squire-WEBDL-1080p.mkv","size":893922518,"dateAdded":"2018-10-10T23:00:32.313157Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151486,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5164078,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2915},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E15E16.Game of Flags + Girls' Day Out-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E15E16.Game of Flags + Girls' Day Out-WEBDL-1080p.mkv","size":872326899,"dateAdded":"2018-10-10T23:00:32.350709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2916},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E15E16.Blood Moon Ball + Fortune Cookies-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E15E16.Blood Moon Ball + Fortune Cookies-WEBDL-1080p.mkv","size":864553162,"dateAdded":"2018-10-10T23:00:32.390722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2917},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E16E17.Princess Turdina + Starfari-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E16E17.Princess Turdina + Starfari-WEBDL-1080p.mkv","size":883879897,"dateAdded":"2018-10-10T23:00:32.428632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152085,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5103699,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2918},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E17E18.Sleepover + Gift of the Card-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E17E18.Sleepover + Gift of the Card-WEBDL-1080p.mkv","size":876003830,"dateAdded":"2018-10-10T23:00:32.467516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2919},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E17E18.Freeze Day + Royal Pain-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E17E18.Freeze Day + Royal Pain-WEBDL-1080p.mkv","size":873822218,"dateAdded":"2018-10-10T23:00:32.504925Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2920},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E18E19.Sweet Dreams + Lava Lake Beach-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E18E19.Sweet Dreams + Lava Lake Beach-WEBDL-1080p.mkv","size":877943400,"dateAdded":"2018-10-10T23:00:32.544131Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153177,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5126305,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2921},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E19E20.Friendenemies + Is Mystery-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E19E20.Friendenemies + Is Mystery-WEBDL-1080p.mkv","size":869864811,"dateAdded":"2018-10-10T23:00:32.581176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2922},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E19.St. Olga's Reform School for Wayward Princesses-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E19.St. Olga's Reform School for Wayward Princesses-WEBDL-1080p.mkv","size":798218220,"dateAdded":"2018-10-10T23:00:32.621877Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2923},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E20E21.Death Peck + Ponymonium-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E20E21.Death Peck + Ponymonium-WEBDL-1080p.mkv","size":886956560,"dateAdded":"2018-10-10T23:00:32.651593Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152424,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5122281,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2924},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E20E21.Mewnipendence Day + The Banagic Incident-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E20E21.Mewnipendence Day + The Banagic Incident-WEBDL-1080p.mkv","size":855050540,"dateAdded":"2018-10-10T23:00:32.688957Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2925},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E21E22.Hungry Larry + Spider with a Top Hat-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E21E22.Hungry Larry + Spider with a Top Hat-WEBDL-1080p.mkv","size":882781186,"dateAdded":"2018-10-10T23:00:32.727684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2926},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E22E23.Night Life + Deep Dive-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E22E23.Night Life + Deep Dive-WEBDL-1080p.mkv","size":887141275,"dateAdded":"2018-10-10T23:00:32.764959Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151741,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5123664,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2927},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E22E23.Interdimensional Field Trip + Marco Grows a Beard-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E22E23.Interdimensional Field Trip + Marco Grows a Beard-WEBDL-1080p.mkv","size":873571607,"dateAdded":"2018-10-10T23:00:32.805959Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2928},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E23E24.Into the Wand + Pizza Thing-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E23E24.Into the Wand + Pizza Thing-WEBDL-1080p.mkv","size":876149982,"dateAdded":"2018-10-10T23:00:32.84334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2929},{"seriesId":10,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Storm the Castle-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 01\/S01E24.Storm the Castle-WEBDL-1080p.mkv","size":897599628,"dateAdded":"2018-10-10T23:00:32.88808Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2930},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Monster Bash-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E24.Monster Bash-WEBDL-1080p.mkv","size":878558279,"dateAdded":"2018-10-10T23:00:32.917259Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154466,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5129046,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2931},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E25E26.Stump Day + Holiday Spellcial-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E25E26.Stump Day + Holiday Spellcial-WEBDL-1080p.mkv","size":898420072,"dateAdded":"2018-10-10T23:00:32.946757Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152808,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130809,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2932},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E25E26.Page Turner + Naysaya-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E25E26.Page Turner + Naysaya-WEBDL-1080p.mkv","size":874213624,"dateAdded":"2018-10-10T23:00:32.983982Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2933},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E27E28.The Bogbeast of Boggabah + Total Eclipsa the Moon-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E27E28.The Bogbeast of Boggabah + Total Eclipsa the Moon-WEBDL-1080p.mkv","size":888185430,"dateAdded":"2018-10-10T23:00:33.025036Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151246,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130767,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2934},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E27.Bon Bon the Birthday Clown-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E27.Bon Bon the Birthday Clown-WEBDL-1080p.mkv","size":875829963,"dateAdded":"2018-10-10T23:00:33.062644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2935},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E28E29.Raid the Cave + Trickstar-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E28E29.Raid the Cave + Trickstar-WEBDL-1080p.mkv","size":873250928,"dateAdded":"2018-10-10T23:00:33.092334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2936},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E29E30.Butterfly Trap + Ludo, Where Art Thou-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E29E30.Butterfly Trap + Ludo, Where Art Thou-WEBDL-1080p.mkv","size":888961726,"dateAdded":"2018-10-10T23:00:33.131771Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152379,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5134383,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2937},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E30E31.Baby + Running with Scissors-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E30E31.Baby + Running with Scissors-WEBDL-1080p.mkv","size":878646044,"dateAdded":"2018-10-10T23:00:33.169672Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2938},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E31E32.Is Another Mystery + Marco Jr-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E31E32.Is Another Mystery + Marco Jr-WEBDL-1080p.mkv","size":894284220,"dateAdded":"2018-10-10T23:00:33.210305Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153563,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5164719,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2939},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E32E33.Mathmagic + The Bounce Lounge-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E32E33.Mathmagic + The Bounce Lounge-WEBDL-1080p.mkv","size":877526024,"dateAdded":"2018-10-10T23:00:33.275338Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2940},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E33E34.Skooled! + Booth Buddies-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E33E34.Skooled! + Booth Buddies-WEBDL-1080p.mkv","size":900094784,"dateAdded":"2018-10-10T23:00:33.326874Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148821,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5144640,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2941},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E34E35.Crystal Clear + The Hard Way-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E34E35.Crystal Clear + The Hard Way-WEBDL-1080p.mkv","size":872966810,"dateAdded":"2018-10-10T23:00:33.369945Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2942},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E35E36.Bam Ui Pati! + Tough Love-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E35E36.Bam Ui Pati! + Tough Love-WEBDL-1080p.mkv","size":875146173,"dateAdded":"2018-10-10T23:00:33.414545Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155348,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5107628,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2943},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E36E37.Heinous + All Belts Are Off-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E36E37.Heinous + All Belts Are Off-WEBDL-1080p.mkv","size":873659611,"dateAdded":"2018-10-10T23:00:33.467148Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2944},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E37.Divide-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E37.Divide-WEBDL-1080p.mkv","size":894773570,"dateAdded":"2018-10-10T23:00:33.510575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153714,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5167224,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2945},{"seriesId":10,"seasonNumber":3,"relativePath":"Season 03\/S03E38.Conquer-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 03\/S03E38.Conquer-WEBDL-1080p.mkv","size":900800327,"dateAdded":"2018-10-10T23:00:33.67072Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156712,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5140922,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2946},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E38E39.Collateral Damage + Just Friends-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E38E39.Collateral Damage + Just Friends-WEBDL-1080p.mkv","size":875380105,"dateAdded":"2018-10-10T23:00:33.704967Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2947},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E40.Face the Music-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E40.Face the Music-WEBDL-1080p.mkv","size":877588624,"dateAdded":"2018-10-10T23:00:33.747911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2948},{"seriesId":10,"seasonNumber":2,"relativePath":"Season 02\/S02E41.Starcrushed-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 02\/S02E41.Starcrushed-WEBDL-1080p.mkv","size":878072181,"dateAdded":"2018-10-10T23:00:33.781728Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2949},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E05E06.Ransomgram + Lake House Fever-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E05E06.Ransomgram + Lake House Fever-WEBDL-720p.mkv","size":575527816,"dateAdded":"2019-03-20T19:52:32.182181Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E05E06.Ransomgram-Lake.House.Fever.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126743,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7192},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E03E04.Moon Remembers + Swim Suit-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E03E04.Moon Remembers + Swim Suit-WEBDL-720p.mkv","size":574942690,"dateAdded":"2019-03-20T19:52:43.581056Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E03E04.Moon.Remembers-Swim.Suit.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126747,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7193},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Surviving the Spiderbites-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E10.Surviving the Spiderbites-WEBDL-1080p.mkv","size":163485071,"dateAdded":"2019-03-26T11:06:23.658155Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E10.Surviving.the.Spider.Bites.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1725678,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7206},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Down by the River-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E08.Down by the River-WEBDL-1080p.mkv","size":159634987,"dateAdded":"2019-03-26T11:06:24.142743Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E08.Down.by.the.River.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1680211,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7207},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Ponyhead Show!-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E09.The Ponyhead Show!-WEBDL-1080p.mkv","size":182244625,"dateAdded":"2019-03-26T11:06:24.583327Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E09.The.Ponyhead.Show.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1904025,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7208},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Yada Yada Berries-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E07.Yada Yada Berries-WEBDL-1080p.mkv","size":183915337,"dateAdded":"2019-03-26T11:07:53.689967Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E07.Yada.Yada.Berries.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1971075,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7209},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Escape from the Pie Folk-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E02.Escape from the Pie Folk-WEBDL-1080p.mkv","size":403048465,"dateAdded":"2019-03-26T11:10:53.760379Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E02.Escape.from.the.Pie.Folk.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rartv]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2181026,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7210},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Butterfly Follies-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E01.Butterfly Follies-WEBDL-1080p.mkv","size":379686693,"dateAdded":"2019-03-26T11:28:54.537308Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E01.Butterfly.Follies.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rartv]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2013879,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7211},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Curse of the Blood Moon-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E13.Curse of the Blood Moon-WEBDL-1080p.mkv","size":335645886,"dateAdded":"2019-04-06T10:34:17.448928Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E13.Curse.of.the.Blood.Moon.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1778524,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7240},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E11E12.Out of Business + Kelly's World-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E11E12.Out of Business + Kelly's World-WEBDL-720p.mkv","size":574114679,"dateAdded":"2019-04-06T10:41:47.823337Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E11E12.Out.of.Business-Kellys.World.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126768,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7245},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Princess Quasar Caterpillar and the Magic Bell-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E14.Princess Quasar Caterpillar and the Magic Bell-WEBDL-1080p.mkv","size":188104646,"dateAdded":"2019-04-09T19:06:11.46015Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E14.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1972655,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7246},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Meteora\u2019s Lesson-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E17.Meteora\u2019s Lesson-WEBDL-1080p.mkv","size":154047133,"dateAdded":"2019-04-09T19:06:15.834036Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E17.Meteoras.Lesson.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1656378,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"10:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7247},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Cornball!-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E16.Cornball!-WEBDL-1080p.mkv","size":225767922,"dateAdded":"2019-04-09T19:07:41.640088Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E16.Cornball.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2410911,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7248},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Ghost of Butterfly Castle-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E15.Ghost of Butterfly Castle-WEBDL-1080p.mkv","size":169346752,"dateAdded":"2019-04-09T19:13:45.393265Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E15.Ghost.of.Butterfly.Castle.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1841757,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"10:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7251},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Junkin\u2019 Janna-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E20.Junkin\u2019 Janna-WEBDL-1080p.mkv","size":192518263,"dateAdded":"2019-04-15T17:12:17.331064Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E20.Junkin.Janna.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2072996,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7356},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E21.A Spell with No Name-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E21.A Spell with No Name-WEBDL-1080p.mkv","size":170637553,"dateAdded":"2019-04-15T17:12:18.274923Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E21.A.Spell.with.No.Name.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1859205,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"10:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7357},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Queen-Napped-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E19.Queen-Napped-WEBDL-1080p.mkv","size":213276321,"dateAdded":"2019-04-15T17:12:19.244931Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E19.Queen-Napped.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2319752,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7358},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E18.The Knight Shift-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E18.The Knight Shift-WEBDL-1080p.mkv","size":186871193,"dateAdded":"2019-04-15T17:12:19.812284Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E18.The.Knight.Shift.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2007233,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7359},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E22E23.A Boy and His DC-700XE + The Monster and the Queen-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E22E23.A Boy and His DC-700XE + The Monster and the Queen-WEBDL-720p.mkv","size":569226544,"dateAdded":"2019-04-25T18:37:49.712339Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E22E23.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126739,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7373},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E25E26.Doop-Doop + Britta's Tacos-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E25E26.Doop-Doop + Britta's Tacos-WEBDL-720p.mkv","size":575373991,"dateAdded":"2019-04-28T10:01:13.181083Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E25E26.Doop-Doop-Brittas.Tacos.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126763,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7377},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E27E28.Beach Day + Gone Baby Gone-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E27E28.Beach Day + Gone Baby Gone-WEBDL-720p.mkv","size":580616776,"dateAdded":"2019-04-28T10:02:43.281789Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E27E28.Beach.Day-Gone.Baby.Gone.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126745,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7378},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E24.Coronation-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E24.Coronation-WEBDL-1080p.mkv","size":422356835,"dateAdded":"2019-04-28T13:54:57.433035Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E24.Cornonation.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2296325,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7379},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E31E32.Mama Star + Ready, Aim, Fire-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E31E32.Mama Star + Ready, Aim, Fire-WEBDL-720p.mkv","size":575302183,"dateAdded":"2019-05-05T21:52:36.792894Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E31E32.Mama.Star-Ready.Aim.Fire.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126731,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7411},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E29E30.Sad Teen Hotline + Jannanigans-WEBDL-720p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E29E30.Sad Teen Hotline + Jannanigans-WEBDL-720p.mkv","size":573981247,"dateAdded":"2019-05-05T21:52:38.568744Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E29E30.Sad.Teen.Hotline-Jannanigans.720p.DSNY.WEBRip.AAC2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126753,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7412},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E33.The Right Way-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E33.The Right Way-WEBDL-1080p.mkv","size":232126401,"dateAdded":"2019-05-13T22:51:48.075592Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E33.The.Right.Way.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2545996,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7438},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E36.The Tavern at the End of the Multiverse-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E36.The Tavern at the End of the Multiverse-WEBDL-1080p.mkv","size":181813173,"dateAdded":"2019-05-15T03:23:46.888692Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E36.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1944086,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7448},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E34.Here to Help-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E34.Here to Help-WEBDL-1080p.mkv","size":165575025,"dateAdded":"2019-05-15T03:23:47.434902Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E34.Here.to.Help.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1751974,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7449},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E35.Pizza Party-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E35.Pizza Party-WEBDL-1080p.mkv","size":218562451,"dateAdded":"2019-05-15T03:23:47.883406Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E35.Pizza.Party.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2385935,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7450},{"seriesId":10,"seasonNumber":4,"relativePath":"Season 04\/S04E37.Cleaved-WEBDL-1080p.mkv","path":"\/tv\/Star vs. the Forces of Evil\/Season 04\/S04E37.Cleaved-WEBDL-1080p.mkv","size":440196523,"dateAdded":"2019-05-29T19:26:48.688349Z","sceneName":"Star.vs.the.Forces.of.Evil.S04E37.Cleaved.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2245835,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7519}],"queue":[]},"11":{"series":{"title":"DARK","alternateTitles":[],"sortTitle":"dark","status":"ended","ended":true,"overview":"When two children go missing in a small German town, its sinful past is exposed along with the double lives and fractured relationships that exist among four families as they search for the kids. The mystery-drama series introduces an intricate puzzle filled with twists that includes a web of curious characters, all of whom have a connection to the town's troubled history -- whether they know it or not. The story includes supernatural elements that tie back to the same town in 1986.","previousAiring":"2020-06-27T04:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/5\/banner.jpg?lastWrite=637217852389467700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d0d7406d7e0e.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/5\/poster.jpg?lastWrite=637566904012355980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/334824\/posters\/5f83777697cf6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/5\/fanart.jpg?lastWrite=637392323846160820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/334824-7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":false,"statistics":{"previousAiring":"2017-12-01T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":18147813926,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":false,"statistics":{"previousAiring":"2019-06-21T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":14908466637,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":false,"statistics":{"previousAiring":"2020-06-27T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":16264152123,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Dark","qualityProfileId":7,"languageProfileId":2,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":51,"tvdbId":334824,"tvRageId":0,"tvMazeId":17861,"firstAired":"2017-12-01T00:00:00Z","seriesType":"standard","cleanTitle":"dark","imdbId":"tt5753856","titleSlug":"dark","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Mystery","Science Fiction","Thriller"],"tags":[],"added":"2017-12-05T20:48:58.1362538Z","ratings":{"votes":745,"value":9.0},"statistics":{"seasonCount":3,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":49320432686,"percentOfEpisodes":100.0},"id":5},"episodes":[{"seriesId":5,"episodeFileId":16003,"seasonNumber":1,"episodeNumber":1,"title":"Secrets","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"In 2019, a local boy's disappearance stokes fear in the residents of Winden, a small German town with a strange and tragic history.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1622},{"seriesId":5,"episodeFileId":16004,"seasonNumber":1,"episodeNumber":2,"title":"Lies","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"When a grim discovery leaves the police baffled, Ulrich seeks a search warrant for the power plant. A mysterious stranger checks into the hotel.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1623},{"seriesId":5,"episodeFileId":16005,"seasonNumber":1,"episodeNumber":3,"title":"Past and Present","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"It's 1986, and Ulrich's brother, Mads, has been missing for a month. Confusion reigns as past and present intertwine.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1624},{"seriesId":5,"episodeFileId":16006,"seasonNumber":1,"episodeNumber":4,"title":"Double Lives","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"Bizarre occurrences give Charlotte a sense of d\u00e9j\u00e0 vu, and she suspects Peter is hiding something. Franziska snaps when Magnus confronts her.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1625},{"seriesId":5,"episodeFileId":16007,"seasonNumber":1,"episodeNumber":5,"title":"Truths","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"Hannah takes her obsession with Ulrich too far. The stranger asks Regina to deliver an important package. Martha is torn between Jonas and Bartosz.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1626},{"seriesId":5,"episodeFileId":16008,"seasonNumber":1,"episodeNumber":6,"title":"Sic Mundus Creatus Est","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"Ulrich looks to the past for answers and dredges up disturbing family secrets. Armed with new tools, Jonas probes the cave's murky depths.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1627},{"seriesId":5,"episodeFileId":16009,"seasonNumber":1,"episodeNumber":7,"title":"Crossroads","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"Ulrich questions a frail and frightened Helge in the nursing home. Jonas searches for Mikkel, but the stranger warns him about meddling with the past.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1628},{"seriesId":5,"episodeFileId":16010,"seasonNumber":1,"episodeNumber":8,"title":"As You Sow, so You Shall Reap","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"In 1953, the disfigured bodies of two boys are exhumed at a construction site, the future location of Winden's nuclear power plant.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1629},{"seriesId":5,"episodeFileId":16011,"seasonNumber":1,"episodeNumber":9,"title":"Everything Is Now","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"Ulrich runs afoul of the law, Helge tries to dodge Egon Tiedemann, Claudia harnesses the cave's powers, and Katharina lashes out at Hannah.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1630},{"seriesId":5,"episodeFileId":16012,"seasonNumber":1,"episodeNumber":10,"title":"Alpha and Omega","airDate":"2017-12-01","airDateUtc":"2017-12-01T05:00:00Z","overview":"Peter gets a shock. Jonas learns the truth about his family, but there are more surprises still to come. Helge makes a sacrifice.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1631},{"seriesId":5,"episodeFileId":14759,"seasonNumber":2,"episodeNumber":1,"title":"Beginnings and Endings","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"Six months after the disappearances, the police form a task force. In 2052, Jonas learns that most of Winden perished in an apocalyptic event.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":11126},{"seriesId":5,"episodeFileId":14760,"seasonNumber":2,"episodeNumber":2,"title":"Dark Matter","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"Clausen and Charlotte interview Regina. The Stranger takes Hannah to 1987, where Claudia has an unnerving encounter and Egon visits an old nemesis.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11563},{"seriesId":5,"episodeFileId":14761,"seasonNumber":2,"episodeNumber":3,"title":"Ghosts","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"In 1954, a missing Helge returns, but he'll only speak to Noah. In 1987, Claudia brings the time machine to Tannhaus, and Egon questions Ulrich again.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11564},{"seriesId":5,"episodeFileId":14762,"seasonNumber":2,"episodeNumber":4,"title":"The Travelers","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"Jonas meets an ominous figure. While the kids comb the cave for answers, the adults gather in the bunker to share what they know about the travelers.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11565},{"seriesId":5,"episodeFileId":14763,"seasonNumber":2,"episodeNumber":5,"title":"Lost and Found","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"In 1987, Ulrich seizes an opportunity. The kids return to the cave with the time machine, and Jonas learns of a loophole that could change the future.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":11566},{"seriesId":5,"episodeFileId":14764,"seasonNumber":2,"episodeNumber":6,"title":"An Endless Cycle","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"Armed with a plan to prevent the apocalypse, Jonas travels to 2019. During the Nielsens' anniversary party, Ulrich sneaks off with Hannah.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":11567},{"seriesId":5,"episodeFileId":14765,"seasonNumber":2,"episodeNumber":7,"title":"The White Devil","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"Martha meets the Stranger and learns his true identity. Claudia tries to prevent Egon's death in 1987. Hannah travels to 1954 to see Ulrich.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":11568},{"seriesId":5,"episodeFileId":14766,"seasonNumber":2,"episodeNumber":8,"title":"Endings and Beginnings","airDate":"2019-06-21","airDateUtc":"2019-06-21T04:00:00Z","overview":"On the day of the apocalypse, Clausen executes a search warrant at the power plant as Jonas and Claudia use the time machine to connect past and future.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":11569},{"seriesId":5,"episodeFileId":14800,"seasonNumber":3,"episodeNumber":1,"title":"Deja-vu","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"In 2019, Jonas emerges from the cave into a strange but familiar world: the town of Winden, reeling from the recent disappearance of a young boy.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":17851},{"seriesId":5,"episodeFileId":14801,"seasonNumber":3,"episodeNumber":2,"title":"The Survivors","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"Martha travels to 1888 to warn her friends about the 2020 disaster. Winden residents past and present search for their missing loved ones.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":17852},{"seriesId":5,"episodeFileId":14802,"seasonNumber":3,"episodeNumber":3,"title":"Adam and Eva","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"Charlotte and Ulrich try to piece together what happened in the bunker. In different times and worlds, Jonas and Martha work to gain each other's trust.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":17853},{"seriesId":5,"episodeFileId":14803,"seasonNumber":3,"episodeNumber":4,"title":"The Origin","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"Martha and Jonas travel to 2052 and get a glimpse of a grim future. In 1954, two residents of Winden go missing, and Hannah receives surprising news.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":17854},{"seriesId":5,"episodeFileId":14804,"seasonNumber":3,"episodeNumber":5,"title":"Life and Death","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"In 2020, a visitor delivers a warning to Claudia. The day before the apocalypse, Jonas begins to question Eva's motives.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":17855},{"seriesId":5,"episodeFileId":14805,"seasonNumber":3,"episodeNumber":6,"title":"Light and Shadow","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"Adam holds Martha captive in 2020. On the day of the apocalypse, an increasingly frantic Martha begs Bartosz for his help.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":17856},{"seriesId":5,"episodeFileId":14806,"seasonNumber":3,"episodeNumber":7,"title":"Between the Time","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"Across three centuries, Winden's residents continue their desperate quest to alter their fate and save their loved ones.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":17857},{"seriesId":5,"episodeFileId":14807,"seasonNumber":3,"episodeNumber":8,"title":"The Paradise","airDate":"2020-06-27","airDateUtc":"2020-06-27T04:00:00Z","overview":"Claudia reveals to Adam how everything is connected \u2014 and how he can destroy the knot.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":17858}],"episodeFile":[{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Beginnings and Endings-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E01.Beginnings and Endings-WEBDL-1080p.mkv","size":1728733211,"dateAdded":"2020-06-28T15:37:18.577378Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"53:56","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14759},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Dark Matter-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E02.Dark Matter-WEBDL-1080p.mkv","size":1835369169,"dateAdded":"2020-06-28T15:37:37.128232Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"54:58","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14760},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Ghosts-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E03.Ghosts-WEBDL-1080p.mkv","size":1534752369,"dateAdded":"2020-06-28T15:38:04.34582Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"56:16","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14761},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Travelers-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E04.The Travelers-WEBDL-1080p.mkv","size":1948679897,"dateAdded":"2020-06-28T15:38:24.57062Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:00:48","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14762},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Lost and Found-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E05.Lost and Found-WEBDL-1080p.mkv","size":2217748923,"dateAdded":"2020-06-28T15:38:51.832341Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"56:24","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14763},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E06.An Endless Cycle-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E06.An Endless Cycle-WEBDL-1080p.mkv","size":2441833505,"dateAdded":"2020-06-28T15:39:21.19385Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"54:34","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14764},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The White Devil-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E07.The White Devil-WEBDL-1080p.mkv","size":1419509734,"dateAdded":"2020-06-28T15:39:50.702394Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2610000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"58:24","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14765},{"seriesId":5,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Endings and Beginnings-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 02\/S02E08.Endings and Beginnings-WEBDL-1080p.mkv","size":1781839829,"dateAdded":"2020-06-28T15:40:12.52886Z","sceneName":"Dark.S02.E01-08.1080p.NF.WEB-DL.English.DDP.5.1.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"57:52","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14766},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E01.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E01.1080p.WEB.H264-GHOSTS.mkv","size":1684928486,"dateAdded":"2020-07-04T12:30:48.68786Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:02:06","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14800},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E02.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E02.1080p.WEB.H264-GHOSTS.mkv","size":1767092263,"dateAdded":"2020-07-04T12:30:48.781193Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3286441,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"59:58","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14801},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E03.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E03.1080p.WEB.H264-GHOSTS.mkv","size":1478046984,"dateAdded":"2020-07-04T12:30:48.93862Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"56:40","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14802},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E04.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E04.1080p.WEB.H264-GHOSTS.mkv","size":1747328956,"dateAdded":"2020-07-04T12:30:49.051939Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:04:24","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14803},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E05.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E05.1080p.WEB.H264-GHOSTS.mkv","size":2211903369,"dateAdded":"2020-07-04T12:30:49.134277Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:04:02","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14804},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E06.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E06.1080p.WEB.H264-GHOSTS.mkv","size":1469356080,"dateAdded":"2020-07-04T12:30:49.208215Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"58:32","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14805},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E07.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E07.1080p.WEB.H264-GHOSTS.mkv","size":2044874152,"dateAdded":"2020-07-04T12:30:49.280242Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:09:28","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14806},{"seriesId":5,"seasonNumber":3,"relativePath":"Season 03\/Dark.S03E08.1080p.WEB.H264-GHOSTS.mkv","path":"\/tv\/Dark\/Season 03\/Dark.S03E08.1080p.WEB.H264-GHOSTS.mkv","size":3860621833,"dateAdded":"2020-07-04T12:30:49.353311Z","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:13:06","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14807},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Secrets-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E01.Secrets-WEBDL-1080p.mkv","size":2245281645,"dateAdded":"2020-11-03T04:53:17.203574Z","sceneName":"Dark.S01E01.Secrets.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"51:32","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16003},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Lies-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E02.Lies-WEBDL-1080p.mkv","size":1386492833,"dateAdded":"2020-11-03T04:54:55.827801Z","sceneName":"Dark.S01E02.Lies.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:46","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16004},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Past and Present-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E03.Past and Present-WEBDL-1080p.mkv","size":1552464512,"dateAdded":"2020-11-03T04:55:47.832454Z","sceneName":"Dark.S01E03.Past.and.Present.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"45:32","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16005},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Double Lives-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E04.Double Lives-WEBDL-1080p.mkv","size":1994975067,"dateAdded":"2020-11-03T04:56:44.782602Z","sceneName":"Dark.S01E04.Double.Lives.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"47:30","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16006},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Truths-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E05.Truths-WEBDL-1080p.mkv","size":1247113705,"dateAdded":"2020-11-03T04:57:53.551029Z","sceneName":"Dark.S01E05.Truths.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2260000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"45:30","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16007},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Sic Mundus Creatus Est-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E06.Sic Mundus Creatus Est-WEBDL-1080p.mkv","size":1441781776,"dateAdded":"2020-11-03T04:58:45.135836Z","sceneName":"Dark.S01E06.Sic.Mundus.Creatus.Est.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2370000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"51:02","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16008},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Crossroads-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E07.Crossroads-WEBDL-1080p.mkv","size":1821452168,"dateAdded":"2020-11-03T04:59:39.054881Z","sceneName":"Dark.S01E07.Crossroads.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"51:34","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16009},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E08.As You Sow, so You Shall Reap-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E08.As You Sow, so You Shall Reap-WEBDL-1080p.mkv","size":2272027948,"dateAdded":"2020-11-03T05:00:35.375089Z","sceneName":"Dark.S01E08.As.You.Sow.so.You.Shall.Reap.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"50:24","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16010},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Everything Is Now-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E09.Everything Is Now-WEBDL-1080p.mkv","size":1955100606,"dateAdded":"2020-11-03T05:01:51.792566Z","sceneName":"Dark.S01E09.Everything.Is.Now.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"55:20","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16011},{"seriesId":5,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Alpha and Omega-WEBDL-1080p.mkv","path":"\/tv\/Dark\/Season 01\/S01E10.Alpha and Omega-WEBDL-1080p.mkv","size":2231123666,"dateAdded":"2020-11-03T05:03:00.687865Z","sceneName":"Dark.S01E10.Alpha.and.Omega.1080p.WEB-DL.H.264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"57:00","scanType":"Progressive","subtitles":"Czech \/ Czech \/ Danish \/ Danish \/ Greek \/ Greek \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Finnish \/ Finnish \/ French \/ French \/ Hungarian \/ Hungarian \/ Indonesian \/ Indonesian \/ Italian \/ Italian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16012}],"queue":[]},"12":{"series":{"title":"The Legend of Korra","alternateTitles":[{"title":"The Last Airbender: Legend of Korra","sceneSeasonNumber":-1}],"sortTitle":"legend korra","status":"ended","ended":true,"overview":"Avatar Korra, a headstrong, rebellious, feisty young woman who continually challenges and breaks with tradition, is on her quest to become a fully realized Avatar. In this story, the Avatar struggles to find balance within herself.","previousAiring":"2014-12-19T02:25:00Z","network":"Nickelodeon","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/12\/banner.jpg?lastWrite=637103832872550620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/251085-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/12\/poster.jpg?lastWrite=636747176383744790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/251085-15.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/12\/fanart.jpg?lastWrite=636774382024261560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/251085-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":47,"sizeOnDisk":196966553,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-06-24T01:25:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":5521539740,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-11-23T02:25:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":32842794378,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2014-08-23T01:25:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":30511516141,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2014-12-19T02:25:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":30501534763,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/The Legend of Korra","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":251085,"tvRageId":26254,"tvMazeId":178,"firstAired":"2012-04-14T00:00:00Z","seriesType":"standard","cleanTitle":"thelegendkorra","imdbId":"tt1695360","titleSlug":"the-legend-of-korra","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Animation","Children","Drama","Family","Fantasy","Martial Arts","Suspense"],"tags":[],"added":"2017-12-17T15:07:25.993296Z","ratings":{"votes":2862,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":53,"episodeCount":53,"totalEpisodeCount":99,"sizeOnDisk":99574351575,"percentOfEpisodes":100.0},"id":12},"episodes":[{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Legend of Puppetbender: The Making of a Legend - The Untold Story","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20806},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Scene Bending: Rebel Spirit Scene 1","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21374},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Scene Bending: Rebel Spirit Scene 2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21375},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Scene Bending: The Southern Lights Scene 1","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21376},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Scene Bending: The Southern Lights Scene 2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21377},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Scene Bending: Civil Wars, Pt. 1","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21378},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Scene Bending: Civil Wars, Pt. 2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21379},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Scene Bending: Peacekeepers","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21380},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Scene Bending: Beginnings: Part 1","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21381},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Scene Bending: Beginnings: Part 2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21382},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Scene Bending: The Guide","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21383},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Scene Bending: A New Spiritual Age","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21384},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Scene Bending: Night of a Thousand Stars","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21385},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Scene Bending: Harmonic Convergence","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21386},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Scene Bending: Darkness Falls","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21387},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Scene Bending: Light in the Dark","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21388},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Kindred Spirits: Tenzin\u2019s Family","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21389},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Inside the Book of Spirits","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21390},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Feuding Spirits: Korra\u2019s Family","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21391},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"The Spirit of an Episode: A Breath of Fresh Air","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21392},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"The Spirit of an Episode: Rebirth","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21393},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"The Spirit of an Episode: The Earth Queen","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21394},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"The Spirit of an Episode: In Harm\u2019s Way","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21395},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"The Spirit of an Episode: The Metal Clan","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21396},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"The Spirit of an Episode: Old Wounds","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21397},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"The Spirit of an Episode: Original Airbenders","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21398},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"The Spirit of an Episode: The Terror Within","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21399},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"The Spirit of an Episode: The Stakeout","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21400},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"The Spirit of an Episode: Long Live the Queen","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21401},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"The Spirit of an Episode: The Ultimatum","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21402},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"The Spirit of an Episode: Enter the Void","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21403},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"The Spirit of an Episode: Venom of the Red Lotus","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21404},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Kuvira vs. Prince Wu","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21405},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"The Legend of Puppetbender: The Making of a Legend - The Untold Story - Part 2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21406},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Legend of Korra: New York Comic-Con Panel Featurette","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21407},{"seriesId":12,"episodeFileId":18019,"seasonNumber":0,"episodeNumber":40,"title":"Creators\u2019 Favorite Scenes: Animatics - Welcome to Republic City","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":21408},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Creators\u2019 Favorite Scenes: Animatics - The Revelation","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21409},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Creators\u2019 Favorite Scenes: Animatics - The Voice in the Night","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21410},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Creators\u2019 Favorite Scenes: Animatics - The Spirit of Competition","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21411},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Creators\u2019 Favorite Scenes: Animatics - And the Winner Is\u2026","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21412},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Creators\u2019 Favorite Scenes: Animatics - When Extremes Meet","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21413},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Creators\u2019 Favorite Scenes: Animatics - Turning the Tides","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21414},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Creators\u2019 Favorite Scenes: Animatics - Endgame","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21415},{"seriesId":12,"episodeFileId":1828,"seasonNumber":1,"episodeNumber":1,"title":"Welcome to Republic City","airDate":"2012-04-14","airDateUtc":"2012-04-15T01:00:00Z","overview":"After Aang, Zuko, Katara, Sokka, Toph and Suki had defeated Firelord Ozai and stopped the tyranny of the Fire Nation, Aang and Zuko took steps to usher in a new age of equality amongst the nations. In the center of the Fire Nation Colonies, they built Republic City, a place where people of all nations can live without fear of war.\r\n\r\nNow 70 years have passed since then, and Aang's successor, Korra, is training to be the new Avatar. After passing her firebending test, she meets with Tenzin, Aang's son and the only Air Bending Master, who is supposed to be her Air Bending Teacher. However, due to tense circumstances in Republic City, he tells her that her training must wait, so that he can tend to his duties in the City. Not wanting to wait, Korra sneaks out of the South Pole and heads to Republic City where she finds herself in over her head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2531},{"seriesId":12,"episodeFileId":1828,"seasonNumber":1,"episodeNumber":2,"title":"A Leaf in the Wind","airDate":"2012-04-14","airDateUtc":"2012-04-15T01:25:00Z","overview":"Korra begins her training with Tenzin. While training, she runs into great difficulties and becomes frustrated with her inability to learn Air Bending quickly. She also becomes more interested in ProBending, a sport where teams consisting of a Fire Bender, Water Bender and Earth Bender attempt to knock each other out of a ring, and sneaks out to see a match, against Tenzin's wishes.\r\n\r\nWhile there, Korra meets the Fire Ferrets, which consists of Mako, Bolin and Hasuke. When Hasuke fails to turn up for the final match that the Fire Ferrets need to win to enter the Tournament, Korra joins the team in his place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2532},{"seriesId":12,"episodeFileId":1838,"seasonNumber":1,"episodeNumber":3,"title":"The Revelation","airDate":"2012-04-21","airDateUtc":"2012-04-22T01:00:00Z","overview":"The Fire Ferrets are strapped for cash, as they need to provide funds to enter the upcoming ProBending Tournament. Bolin attempts to help Mako by sourcing some work and ends up in the employ of the Triple Threat Triads. When Mako learns of this, he and Korra attempt to get Bolin out before he gets involved in a gang war. While doing this, they find that Bolin is captured by the Equalists, where he is used in a demonstration to show a terrifying ability that Amon possesses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2533},{"seriesId":12,"episodeFileId":1842,"seasonNumber":1,"episodeNumber":4,"title":"The Voice in the Night","airDate":"2012-04-28","airDateUtc":"2012-04-29T01:00:00Z","overview":"The threat of Amon and The Equalists has become apparent to the Republic City Council. Councilman Tarrlok puts forward the motion to create a special task force to combat this new threat, and wishes to recruit Korra to help lead it. Initially, Korra declines, but is eventually persuaded into joining, much to Tenzin's dismay. With the young Avatar joining the task force, Tarrlok will create an even larger divide between benders and non-benders.\r\n\r\nAfter a raid on a Equalist training facility, Korra publicly challenges Amon to a duel, in an attempt to bring him out and bring him to justice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2534},{"seriesId":12,"episodeFileId":1846,"seasonNumber":1,"episodeNumber":5,"title":"The Spirit of Competition","airDate":"2012-05-05","airDateUtc":"2012-05-06T01:00:00Z","overview":"As the ProBending Tournament begins, emotions fly between the members of the Fire Ferrets. While Korra and Mako have feelings for each other, they have issues displaying it due to Asami being involved. Bolin attempts to make a move on Korra, but this causes conflicts between Mako and the young Avatar, for Mako is defensive of his younger brother. Tension ensues, causing the team to have difficulty playing in the ring. Will they manage to pull through the tournament? Or will emotions tear apart their chances of greatness?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2535},{"seriesId":12,"episodeFileId":1850,"seasonNumber":1,"episodeNumber":6,"title":"And the Winner Is...","airDate":"2012-05-12","airDateUtc":"2012-05-13T01:00:00Z","overview":"The Fire Ferrets are preparing for the big championship ProBending match, when Amon declares a threat to the city that, if the match was to continue, dire consequences would ensue. Korra, Mako and Bolin convince the council to allow the match to happen, with the help of an unsuspecting individual. What will Amon do to the city when the match happens?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2536},{"seriesId":12,"episodeFileId":1854,"seasonNumber":1,"episodeNumber":7,"title":"The Aftermath","airDate":"2012-05-19","airDateUtc":"2012-05-20T01:00:00Z","overview":"When the ProBending Arena is shut down after The Equalists attack, Mako and Bolin have to find a new place to live. Korra offers for them to stay on Air Bending Island, but Asami had already offered for them to stay at her father's mansion, and they accepted. While staying there, Korra learns something dire about the people that her teammates live with, and endeavours to keep them safe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2537},{"seriesId":12,"episodeFileId":1858,"seasonNumber":1,"episodeNumber":8,"title":"When Extremes Meet","airDate":"2012-06-02","airDateUtc":"2012-06-03T01:00:00Z","overview":"As Asami, Bolin and Mako move into Air Temple Island, the police force inducts Chief Saikhan in to lead them. During the induction, Saikhan announces his direct reporting to Tarrlok when dealing with the Equalist threat. In doing so, it creates mass tension between Korra and Tarrlok, as the young Avatar feels that the councilman will only cause a greater divide between benders and non-benders with the support of the new police chief.\r\n\r\nThe Avatar and her friends decide to band together to create a vigilante team as a means to help stop the Equalists. While they do this, Tarrlok resorts to extreme measures to control non-benders, in which Korra opposes profusely. How will the young Avatar help combat the tyranny of Councilman Tarrlok?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2538},{"seriesId":12,"episodeFileId":1862,"seasonNumber":1,"episodeNumber":9,"title":"Out of the Past","airDate":"2012-06-09","airDateUtc":"2012-06-10T01:00:00Z","overview":"After Tarrlok has taken Korra hostage, he fabricates a story, telling everyone that the Equalists took her. When Tenzin and former Police Chief Lin Beifong hear this, they set out to find her, with Lin recruiting the help of Asami, Bolin and Mako.\r\n\r\nWhile being captured, Korra takes the time to understand the visions that she's been seeing. What is the message that Aang is trying to pass onto her? And will Tenzin and the others find out what really happened to Korra and be able to find her?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2539},{"seriesId":12,"episodeFileId":1866,"seasonNumber":1,"episodeNumber":10,"title":"Turning the Tides","airDate":"2012-06-16","airDateUtc":"2012-06-17T01:00:00Z","overview":"After Korra is rescued after being taken hostage by Tarrlok, and escaping from Amon and The Equalists, she takes time to recover and tell her friends about the dire news of Tarrlok's heritage. Stunned by this, Tenzin decides to raise it with the other council members and discuss a plan to rectify the issues that Tarrlok created.\r\n\r\nBut unknown to anyone, The Equalists begin to strike against Republic city in an attempt to take it over, until they begin a full-blown attack on the city, bombarding it with bombs and taking out the strengths of the city, one by one. What will Korra and her friends do to combat the oncoming attack of The Equalists?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2540},{"seriesId":12,"episodeFileId":1870,"seasonNumber":1,"episodeNumber":11,"title":"Skeletons in the Closet","airDate":"2012-06-23","airDateUtc":"2012-06-24T01:00:00Z","overview":"After Amon and The Equalists have overtaken Republic City, the future seems a lot bleaker for Korra and her friends, having to hide in the underground without being able to do anything but wait for the United Forces to come take back the city.\r\n\r\nAs the United Forces roll into Republic City by sea, General Iroh is bewildered by the lack of resistance as they come into the harbor. His bewilderment is replaced by shock as he discovers a new weapon that The Equalists have developed, which decimates his fleet.\r\n\r\nThe General is lucky to have Korra save him, and after recovering, they plot together to hatch a plan to stop Amon in his tracks. As they set out to put this plan into action, the young Avatar learns a unexpected secret about the leader of The Equalists from an old acquaintance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2541},{"seriesId":12,"episodeFileId":1874,"seasonNumber":1,"episodeNumber":12,"title":"Endgame","airDate":"2012-06-23","airDateUtc":"2012-06-24T01:25:00Z","overview":"After learning who Amon really is, Korra and Mako set out to expose him to the other members of The Equalists, in hopes of shattering Amon's image and bringing his efforts to a halt. In doing so, they learn that Amon had managed to capture Tenzin and his children, and is going to use them in a demonstration of what the world will be like once Amon's plans are complete.\r\n\r\nKorra and Mako manage to prevent Amon from taking the Air Bending family's powers away and lure Amon away to try to take him down without his disciples helping him. But the young Avatar soon realizes that Amon's secret power is too great, and he takes her bending away. Without her bending abilities, how will Korra stop this tyrant from enacting his evil plans?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2542},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Republic City Hustle, Part 1","airDate":"2013-08-09","airDateUtc":"2013-08-10T01:00:00Z","overview":"Mako and Bolin enter the crime-ridden underworld of Republic City where you either hustle, or get hustled.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2482},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Republic City Hustle, Part 2","airDate":"2013-08-16","airDateUtc":"2013-08-17T01:00:00Z","overview":"While collecting that for the big match, Bolin reminds Toza of the past while creating a future for a new friend.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2483},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Republic City Hustle, Part 3","airDate":"2013-08-23","airDateUtc":"2013-08-24T01:00:00Z","overview":"Mako and Bolin make a bet that could change the game forever.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2484},{"seriesId":12,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Re-Telling of Korra's Journey","airDate":"2013-09-13","airDateUtc":"2013-09-14T01:00:00Z","overview":"From leaving her home in the Southern Water Tribe to quickly putting her Avatar skills to the test, and finally facing Amon and the Equalists, get ready to relive the exciting adventures of Avatar Korra in this complete Book 1 recap!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2485},{"seriesId":12,"episodeFileId":7618,"seasonNumber":2,"episodeNumber":1,"title":"Rebel Spirit","airDate":"2013-09-13","airDateUtc":"2013-09-14T01:00:00Z","overview":"Team Avatar and Tenzin's family travel to the Southern Water Tribe to attend the Glacier Spirits Festival. While there, Korra's uncle, Unalaq, attempts to persuade Korra to let him advise her about the spirits, but both Korra's father and Tenzin assert that she needs to focus on her airbending. However, during the festival, Korra discovers that it was her father and Tenzin rather than Aang who kept her locked away, and after a Dark Spirit attacks, Korra breaks off her studies under Tenzin and takes up Unalaq as her instructor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2543},{"seriesId":12,"episodeFileId":7619,"seasonNumber":2,"episodeNumber":2,"title":"The Southern Lights","airDate":"2013-09-13","airDateUtc":"2013-09-14T01:25:00Z","overview":"Korra begins her spiritual training under Unalaq. The first step of this training is to travel to the South Pole and open up the spirit portal residing deep within the area. Mako, Bolin, Tonraq, Desna, and Eska come along as well. Tensions between Korra and her father grow as she discovers the truth about his relocation to the Southern Water Tribe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":2544},{"seriesId":12,"episodeFileId":7620,"seasonNumber":2,"episodeNumber":3,"title":"Civil Wars (1)","airDate":"2013-09-20","airDateUtc":"2013-09-21T01:00:00Z","overview":"Korra tries to remain neutral as tensions flare between the Northern and Southern Water Tribes. However, things are complicated when the Southerners are talking about preparing for war and a group of rebels try to kidnap Unalaq. Meanwhile, at the Southern Air Temple, Tenzin, Bumi, and Kya all search for Ikki who has ran away after being teased by her siblings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":2545},{"seriesId":12,"episodeFileId":7621,"seasonNumber":2,"episodeNumber":4,"title":"Civil Wars (2)","airDate":"2013-09-27","airDateUtc":"2013-09-28T01:00:00Z","overview":"In an attempt to get Judge Hotah to release Tonraq, Korra discovers that Unalaq had set up the trial and his brother's banishment, causing her to break away from him and his teachings. Meanwhile at the Southern Air Temple, Tenzin finds Ikki and they reconcile with their respective siblings","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":2546},{"seriesId":12,"episodeFileId":7622,"seasonNumber":2,"episodeNumber":5,"title":"Peacekeepers","airDate":"2013-10-04","airDateUtc":"2013-10-05T01:00:00Z","overview":"Korra attempts to gain support for the Southern Water Tribe from the United Forces, but her request is denied by President Raiko. As a result, she, Bolin, Varrick, and Asami attempt to take matters into their own hands and devise a scheme to send military troops to the South Pole behind the President's back. However, brewing tensions between Korra and Mako complicate things.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":2547},{"seriesId":12,"episodeFileId":7623,"seasonNumber":2,"episodeNumber":6,"title":"The Sting","airDate":"2013-10-11","airDateUtc":"2013-10-12T01:00:00Z","overview":"When criminal activity threatens to put Future Industries out of business, Mako sets up a sting operation in an attempt to arrest the culprits. The plan backfires, however, as it drew them away from the company's warehouse when it was being robbed. Mako investigates further and discovers the true culprit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":2548},{"seriesId":12,"episodeFileId":7624,"seasonNumber":2,"episodeNumber":7,"title":"Beginnings (1)","airDate":"2013-10-18","airDateUtc":"2013-10-19T01:00:00Z","overview":"In order to cleanse herself from a dark spirit's attack, Korra must reconnect with her Avatar Spirit by finding Raava. To do so, she needs to learn about the origins of the first Avatar, Wan. He tells her how he received the power of fire and learned the ways of the spirits, as well as how he was the one responsible for unleashing Vaatu, the spirit of darkness, into the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":2549},{"seriesId":12,"episodeFileId":7625,"seasonNumber":2,"episodeNumber":8,"title":"Beginnings (2)","airDate":"2013-10-18","airDateUtc":"2013-10-19T01:25:00Z","overview":"Wan's spirit shows Korra how he learned the other three elements and the reason why he eventually merged with Raava and became the first Avatar. His story makes Korra realize what she must do to restore balance to the physical and spirit worlds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":2550},{"seriesId":12,"episodeFileId":7626,"seasonNumber":2,"episodeNumber":9,"title":"The Guide","airDate":"2013-11-01","airDateUtc":"2013-11-02T01:00:00Z","overview":"Korra seeks Tenzin's help to enter the Spirit World for the first time. However, their attempts prove to be futile until Jinora comes to Korra's aid. Meanwhile, Mako and Asami rekindle their relationship, though Mako's investigation into Varrick's affairs lead to the firebender's arrest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":2551},{"seriesId":12,"episodeFileId":7627,"seasonNumber":2,"episodeNumber":10,"title":"A New Spiritual Age","airDate":"2013-11-08","airDateUtc":"2013-11-09T02:00:00Z","overview":"After successfully arriving in the Spirit World, Korra and Jinora get separated. Jinora ends up at Wan Shi Tong's Library, where she is captured by Unalaq. Korra finds herself in a dark forest as a four-year-old, where she encounters Iroh's spirit. With the help of the former Fire Nation general, she helps a lost dragon bird spirit, who in turn helps her find the spirit portals. There, she is forced by her uncle to open the northern portal, lest he destroy Jinora's soul.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":2552},{"seriesId":12,"episodeFileId":7628,"seasonNumber":2,"episodeNumber":11,"title":"Night of a Thousand Stars","airDate":"2013-11-15","airDateUtc":"2013-11-16T02:00:00Z","overview":"Bolin saves the day when President Raiko is mysteriously attacked in Republic City. With Mako arrested, Asami tries to free him and learn who is framing him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":2553},{"seriesId":12,"episodeFileId":7629,"seasonNumber":2,"episodeNumber":12,"title":"Harmonic Convergence","airDate":"2013-11-15","airDateUtc":"2013-11-16T02:25:00Z","overview":"With the help of her closest friends, Korra must close both spirit portals before Harmonic Convergence occurs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":2554},{"seriesId":12,"episodeFileId":7630,"seasonNumber":2,"episodeNumber":13,"title":"Darkness Falls","airDate":"2013-11-22","airDateUtc":"2013-11-23T02:00:00Z","overview":"Korra learns of a new twist in Unalaq\u2019s evil plans to release the spirit of all darkness and evil, Vaatu, from his longtime imprisonment in the spirit world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":2555},{"seriesId":12,"episodeFileId":7631,"seasonNumber":2,"episodeNumber":14,"title":"Light in the Dark","airDate":"2013-11-22","airDateUtc":"2013-11-23T02:25:00Z","overview":"Unalaq has finally merged with Vaatu and is terrorizing Republic City in the form of a giant spiritual monster. Without Raava or any prior Avatar connections, Korra must meditate and find the cosmic energy of the universe within herself in order to defeat Vaatu.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":2556},{"seriesId":12,"episodeFileId":14503,"seasonNumber":3,"episodeNumber":1,"title":"A Breath of Fresh Air","airDate":"2014-06-27","airDateUtc":"2014-06-28T01:00:00Z","overview":"After the events of Harmonic Convergence, Avatar Korra discovers that her decision to leave the spirit portals open has unexpected consequences. Wild spirit vines have overgrown Republic City and Airbenders are suddenly popping up across the four nations.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":2557},{"seriesId":12,"episodeFileId":14504,"seasonNumber":3,"episodeNumber":2,"title":"Rebirth","airDate":"2014-06-27","airDateUtc":"2014-06-28T01:25:00Z","overview":"Korra, Tenzin and Team Avatar search for new Airbenders in an effort to rebuild the Air Nation. Meanwhile, a band of sinister criminals are organizing to hunt down the Avatar themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":2558},{"seriesId":12,"episodeFileId":14505,"seasonNumber":3,"episodeNumber":3,"title":"The Earth Queen","airDate":"2014-06-27","airDateUtc":"2014-06-28T01:50:00Z","overview":"The team look for Airbenders on a trip to Ba Sing Se.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":2559},{"seriesId":12,"episodeFileId":14506,"seasonNumber":3,"episodeNumber":4,"title":"In Harm's Way","airDate":"2014-07-11","airDateUtc":"2014-07-12T01:00:00Z","overview":"Korra finds out that the Earth Queen imprisoned airbenders to create an army. Jinora leads an investigation with her spiritual projection. Lin joins the Avatar Team.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":2560},{"seriesId":12,"episodeFileId":14507,"seasonNumber":3,"episodeNumber":5,"title":"The Metal Clan","airDate":"2014-07-11","airDateUtc":"2014-07-12T01:25:00Z","overview":"Korra, Mako, Bolin and Asami visit Sao Fu, the city of Metal Clan. Lin does not want to meet her past. Su Jin tells her life story. Air Temple Island training camp has a new recruit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":2561},{"seriesId":12,"episodeFileId":14508,"seasonNumber":3,"episodeNumber":6,"title":"Old Wounds","airDate":"2014-07-18","airDateUtc":"2014-07-19T01:00:00Z","overview":"Korra practices metal bending. Lin takes an acupuncture session. Zaheer, Ghazan, Ming-Hua and P'Li escape Republic City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":2562},{"seriesId":12,"episodeFileId":14509,"seasonNumber":3,"episodeNumber":7,"title":"Original Airbenders","airDate":"2014-07-18","airDateUtc":"2014-07-19T01:25:00Z","overview":"Though contending with Bumi's bad attitude, Tenzin tries to train the new members of the Air Nation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":2563},{"seriesId":12,"episodeFileId":14510,"seasonNumber":3,"episodeNumber":8,"title":"The Terror Within","airDate":"2014-07-25","airDateUtc":"2014-07-26T01:00:00Z","overview":"Zaheer and his gang try to kidnap Korra.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":2564},{"seriesId":12,"episodeFileId":14511,"seasonNumber":3,"episodeNumber":9,"title":"The Stakeout","airDate":"2014-08-01","airDateUtc":"2014-08-02T01:00:00Z","overview":"Korra learns the truth about the group that is planning to destroy her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":2565},{"seriesId":12,"episodeFileId":14512,"seasonNumber":3,"episodeNumber":10,"title":"Long Live the Queen","airDate":"2014-08-08","airDateUtc":"2014-08-09T01:00:00Z","overview":"Korra and Asami are stranded in the desert. The members of The Red Lotus negotiate with the Earth Queen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":2566},{"seriesId":12,"episodeFileId":14513,"seasonNumber":3,"episodeNumber":11,"title":"The Ultimatum","airDate":"2014-08-15","airDateUtc":"2014-08-16T01:00:00Z","overview":"Mako and Bolin deliver an ominous message from Zaheer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":2567},{"seriesId":12,"episodeFileId":14514,"seasonNumber":3,"episodeNumber":12,"title":"Enter the Void","airDate":"2014-08-22","airDateUtc":"2014-08-23T01:00:00Z","overview":"When other plans fail, Korra suggests a brave idea to take on the Red Lotus and save the Air Nation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":2568},{"seriesId":12,"episodeFileId":14515,"seasonNumber":3,"episodeNumber":13,"title":"Venom of the Red Lotus","airDate":"2014-08-22","airDateUtc":"2014-08-23T01:25:00Z","overview":"Korra battles Zaheer, while Bolin and Mako duel Ghazan and Ming-Hua. The captive members of the Air Nation escape and band together to help Korra.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":2569},{"seriesId":12,"episodeFileId":14516,"seasonNumber":4,"episodeNumber":1,"title":"After All These Years","airDate":"2014-10-03","airDateUtc":"2014-10-04T01:00:00Z","overview":"It's been three years since Zaheer poisoned Korra and the members of Team Avatar have moved on with their lives; Kai and Opal help a struggling Earth Kingdom town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":2570},{"seriesId":12,"episodeFileId":14517,"seasonNumber":4,"episodeNumber":2,"title":"Korra Alone","airDate":"2014-10-10","airDateUtc":"2014-10-11T01:00:00Z","overview":"Korra's three-year journey of healing takes her to unexpected places.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":2571},{"seriesId":12,"episodeFileId":14518,"seasonNumber":4,"episodeNumber":3,"title":"The Coronation","airDate":"2014-10-17","airDateUtc":"2014-10-18T01:00:00Z","overview":"Prince Wu's big day is ruined by Kuvira; Korra thinks she may have found the key to a full recovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":2572},{"seriesId":12,"episodeFileId":14519,"seasonNumber":4,"episodeNumber":4,"title":"The Calling","airDate":"2014-10-24","airDateUtc":"2014-10-25T01:00:00Z","overview":"Jinora, Ikki, and Meelo head out to find the Avatar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":2573},{"seriesId":12,"episodeFileId":14520,"seasonNumber":4,"episodeNumber":5,"title":"Enemy at the Gates","airDate":"2014-10-31","airDateUtc":"2014-11-01T01:00:00Z","overview":"Kuvira threatens Zaofu; Bolin is caught in the middle of the bad blood between Su Beifong and Kuvira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":2574},{"seriesId":12,"episodeFileId":14521,"seasonNumber":4,"episodeNumber":6,"title":"The Battle of Zaofu","airDate":"2014-11-07","airDateUtc":"2014-11-08T02:00:00Z","overview":"Korra returns to her role as the Avatar, but is she really ready for action? Bolin and Varrick break from Kuvira's army.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":2575},{"seriesId":12,"episodeFileId":14522,"seasonNumber":4,"episodeNumber":7,"title":"Reunion","airDate":"2014-11-14","airDateUtc":"2014-11-15T02:00:00Z","overview":"Korra returns to Republic City and Team Avatar faces their first mission together in three years when Prince Wu goes missing; Bolin and Varrick are on the lam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":2576},{"seriesId":12,"episodeFileId":14523,"seasonNumber":4,"episodeNumber":8,"title":"Remembrances","airDate":"2014-11-21","airDateUtc":"2014-11-22T02:00:00Z","overview":"Wu begins his exile with Mako's family, and realizes that he knows nothing about his bodyguard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":2577},{"seriesId":12,"episodeFileId":14524,"seasonNumber":4,"episodeNumber":9,"title":"Beyond the Wilds","airDate":"2014-11-28","airDateUtc":"2014-11-29T02:00:00Z","overview":"The spirit vines in Republic City start abducting people and it's up to Korra to figure out why.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":2578},{"seriesId":12,"episodeFileId":14525,"seasonNumber":4,"episodeNumber":10,"title":"Operation: Beifong","airDate":"2014-12-05","airDateUtc":"2014-12-06T02:00:00Z","overview":"Bolin helps Opal and Lin save the Beifongs from Kuvira. Korra visits the Spirit World looking for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":2579},{"seriesId":12,"episodeFileId":14526,"seasonNumber":4,"episodeNumber":11,"title":"Kuvira's Gambit","airDate":"2014-12-12","airDateUtc":"2014-12-13T02:00:00Z","overview":"Korra and Team Avatar try to stop Kuvira from moving against Republic City; Kuvira unveils a deadly new weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":2580},{"seriesId":12,"episodeFileId":14527,"seasonNumber":4,"episodeNumber":12,"title":"Day of the Colossus","airDate":"2014-12-18","airDateUtc":"2014-12-19T02:00:00Z","overview":"Team Avatar clashes with Kuvira on the streets of Republic City; Pema and Prince Wu help evacuate innocent citizens.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":2581},{"seriesId":12,"episodeFileId":14528,"seasonNumber":4,"episodeNumber":13,"title":"The Last Stand","airDate":"2014-12-18","airDateUtc":"2014-12-19T02:25:00Z","overview":"The fate of the Earth Kingdom and the Avatar's life is at stake, when Korra comes face to face with Kuvira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":2582}],"episodeFile":[{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.Welcome to Republic City + A Leaf in the Wind-HDTV-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E01E02.Welcome to Republic City + A Leaf in the Wind-HDTV-1080p.mkv","size":1913066042,"dateAdded":"2018-10-10T21:59:09.126073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1076","runTime":"47:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1828},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Revelation-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E03.The Revelation-Bluray-1080p.mkv","size":340906246,"dateAdded":"2018-10-10T21:59:09.441675Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433787,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1188123,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1838},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Voice in the Night-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E04.The Voice in the Night-Bluray-1080p.mkv","size":316225147,"dateAdded":"2018-10-10T21:59:09.566755Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":393889,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1087787,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1842},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Spirit of Competition-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E05.The Spirit of Competition-Bluray-1080p.mkv","size":414324231,"dateAdded":"2018-10-10T21:59:09.690198Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432186,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1590075,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1846},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E06.And the Winner Is-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E06.And the Winner Is-Bluray-1080p.mkv","size":389228307,"dateAdded":"2018-10-10T21:59:09.814194Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449920,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1430948,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1850},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Aftermath-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E07.The Aftermath-Bluray-1080p.mkv","size":361701009,"dateAdded":"2018-10-10T21:59:09.93672Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427553,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1298175,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1854},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E08.When Extremes Meet-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E08.When Extremes Meet-Bluray-1080p.mkv","size":349241334,"dateAdded":"2018-10-10T21:59:10.070145Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431002,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1241117,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:57","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1858},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Out of the Past-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E09.Out of the Past-Bluray-1080p.mkv","size":340182442,"dateAdded":"2018-10-10T21:59:10.157844Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428348,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1193238,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1862},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Turning the Tides-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E10.Turning the Tides-Bluray-1080p.mkv","size":366868970,"dateAdded":"2018-10-10T21:59:10.247162Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431808,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1345579,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:58","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1866},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Skeletons in the Closet-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E11.Skeletons in the Closet-Bluray-1080p.mkv","size":363340547,"dateAdded":"2018-10-10T21:59:10.336777Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434217,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1300670,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1870},{"seriesId":12,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Endgame-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 01\/S01E12.Endgame-Bluray-1080p.mkv","size":366455465,"dateAdded":"2018-10-10T21:59:10.428166Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":457189,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ French \/ \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1306479,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:09","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1874},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Rebel Spirit-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E01.Rebel Spirit-Bluray-1080p.mkv","size":2345484106,"dateAdded":"2019-06-25T19:53:18.002195Z","sceneName":"The.Legend.of.Korra.S02E01.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11557000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7618},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Southern Lights-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E02.The Southern Lights-Bluray-1080p.mkv","size":2345450160,"dateAdded":"2019-06-25T19:53:29.830704Z","sceneName":"The.Legend.of.Korra.S02E02.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11686000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7619},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Civil Wars (1)-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E03.Civil Wars (1)-Bluray-1080p.mkv","size":2345174505,"dateAdded":"2019-06-25T19:53:49.637584Z","sceneName":"The.Legend.of.Korra.S02E03.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11658000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7620},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Civil Wars (2)-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E04.Civil Wars (2)-Bluray-1080p.mkv","size":2345169347,"dateAdded":"2019-06-25T19:54:05.429463Z","sceneName":"The.Legend.of.Korra.S02E04.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12058000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7621},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Peacekeepers-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E05.Peacekeepers-Bluray-1080p.mkv","size":2346820592,"dateAdded":"2019-06-25T19:54:21.23227Z","sceneName":"The.Legend.of.Korra.S02E05.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11626000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7622},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Sting-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E06.The Sting-Bluray-1080p.mkv","size":2346015300,"dateAdded":"2019-06-25T19:54:37.70403Z","sceneName":"The.Legend.of.Korra.S02E06.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11663000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7623},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Beginnings (1)-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E07.Beginnings (1)-Bluray-1080p.mkv","size":2346001750,"dateAdded":"2019-06-25T19:54:52.843543Z","sceneName":"The.Legend.of.Korra.S02E07.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11567000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7624},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Beginnings (2)-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E08.Beginnings (2)-Bluray-1080p.mkv","size":2345864310,"dateAdded":"2019-06-25T19:55:08.392865Z","sceneName":"The.Legend.of.Korra.S02E08.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11757000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7625},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Guide-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E09.The Guide-Bluray-1080p.mkv","size":2345773159,"dateAdded":"2019-06-25T19:55:24.924637Z","sceneName":"The.Legend.of.Korra.S02E09.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7626},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E10.A New Spiritual Age-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E10.A New Spiritual Age-Bluray-1080p.mkv","size":2345936904,"dateAdded":"2019-06-25T19:55:41.250389Z","sceneName":"The.Legend.of.Korra.S02E10.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11582000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7627},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Night of a Thousand Stars-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E11.Night of a Thousand Stars-Bluray-1080p.mkv","size":2346184699,"dateAdded":"2019-06-25T19:55:58.218544Z","sceneName":"The.Legend.of.Korra.S02E11.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11603000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7628},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Harmonic Convergence-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E12.Harmonic Convergence-Bluray-1080p.mkv","size":2346784553,"dateAdded":"2019-06-25T19:56:13.708627Z","sceneName":"The.Legend.of.Korra.S02E12.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11665000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7629},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Darkness Falls-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E13.Darkness Falls-Bluray-1080p.mkv","size":2346358344,"dateAdded":"2019-06-25T19:56:29.573772Z","sceneName":"The.Legend.of.Korra.S02E13.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11575000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7630},{"seriesId":12,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Light in the Dark-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 02\/S02E14.Light in the Dark-Bluray-1080p.mkv","size":2345776649,"dateAdded":"2019-06-25T19:56:44.462705Z","sceneName":"The.Legend.of.Korra.S02E14.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11534000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7631},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E01.A Breath of Fresh Air-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E01.A Breath of Fresh Air-Bluray-1080p.mkv","size":2347479657,"dateAdded":"2020-06-19T13:44:54.20627Z","sceneName":"The.Legend.of.Korra.S03E01.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12140000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14503},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Rebirth-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E02.Rebirth-Bluray-1080p.mkv","size":2347151530,"dateAdded":"2020-06-19T13:45:09.246482Z","sceneName":"The.Legend.of.Korra.S03E02.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12346465,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14504},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Earth Queen-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E03.The Earth Queen-Bluray-1080p.mkv","size":2346413568,"dateAdded":"2020-06-19T13:45:31.521455Z","sceneName":"The.Legend.of.Korra.S03E03.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12279695,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14505},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E04.In Harm's Way-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E04.In Harm's Way-Bluray-1080p.mkv","size":2346723807,"dateAdded":"2020-06-19T13:45:54.312808Z","sceneName":"The.Legend.of.Korra.S03E04.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12343920,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14506},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Metal Clan-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E05.The Metal Clan-Bluray-1080p.mkv","size":2346543285,"dateAdded":"2020-06-19T13:46:19.790747Z","sceneName":"The.Legend.of.Korra.S03E05.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12240438,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14507},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Old Wounds-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E06.Old Wounds-Bluray-1080p.mkv","size":2346663001,"dateAdded":"2020-06-19T13:46:44.471775Z","sceneName":"The.Legend.of.Korra.S03E06.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12207000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14508},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Original Airbenders-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E07.Original Airbenders-Bluray-1080p.mkv","size":2347188555,"dateAdded":"2020-06-19T13:47:09.343196Z","sceneName":"The.Legend.of.Korra.S03E07.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12196000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14509},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Terror Within-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E08.The Terror Within-Bluray-1080p.mkv","size":2347088488,"dateAdded":"2020-06-19T13:47:29.84939Z","sceneName":"The.Legend.of.Korra.S03E08.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12168368,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14510},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Stakeout-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E09.The Stakeout-Bluray-1080p.mkv","size":2347277466,"dateAdded":"2020-06-19T13:48:01.150528Z","sceneName":"The.Legend.of.Korra.S03E09.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12228696,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14511},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Long Live the Queen-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E10.Long Live the Queen-Bluray-1080p.mkv","size":2347632294,"dateAdded":"2020-06-19T13:48:29.955427Z","sceneName":"The.Legend.of.Korra.S03E10.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12220297,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14512},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Ultimatum-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E11.The Ultimatum-Bluray-1080p.mkv","size":2347084323,"dateAdded":"2020-06-19T13:48:50.887831Z","sceneName":"The.Legend.of.Korra.S03E11.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12284472,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14513},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Enter the Void-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E12.Enter the Void-Bluray-1080p.mkv","size":2347391875,"dateAdded":"2020-06-19T13:49:18.399554Z","sceneName":"The.Legend.of.Korra.S03E12.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12334000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14514},{"seriesId":12,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Venom of the Red Lotus-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 03\/S03E13.Venom of the Red Lotus-Bluray-1080p.mkv","size":2346878292,"dateAdded":"2020-06-19T13:49:45.455444Z","sceneName":"The.Legend.of.Korra.S03E13.1080p.BluRay.x264-SADPANDA","releaseGroup":"SADPANDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12221716,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14515},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E01.After All These Years-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E01.After All These Years-Bluray-1080p.mkv","size":2346827918,"dateAdded":"2020-06-19T13:50:19.335489Z","sceneName":"The.Legend.of.Korra.S04E01.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12188521,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14516},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Korra Alone-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E02.Korra Alone-Bluray-1080p.mkv","size":2347014782,"dateAdded":"2020-06-19T13:50:41.557536Z","sceneName":"The.Legend.of.Korra.S04E02.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12153408,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14517},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E03.The Coronation-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E03.The Coronation-Bluray-1080p.mkv","size":2347053844,"dateAdded":"2020-06-19T13:51:04.28838Z","sceneName":"The.Legend.of.Korra.S04E03.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12157803,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14518},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E04.The Calling-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E04.The Calling-Bluray-1080p.mkv","size":2346674462,"dateAdded":"2020-06-19T13:51:26.553895Z","sceneName":"The.Legend.of.Korra.S04E04.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12225676,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14519},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Enemy at the Gates-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E05.Enemy at the Gates-Bluray-1080p.mkv","size":2345990520,"dateAdded":"2020-06-19T13:51:50.12134Z","sceneName":"The.Legend.of.Korra.S04E05.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12123864,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14520},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E06.The Battle of Zaofu-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E06.The Battle of Zaofu-Bluray-1080p.mkv","size":2346232580,"dateAdded":"2020-06-19T13:52:13.456548Z","sceneName":"The.Legend.of.Korra.S04E06.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12253315,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14521},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Reunion-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E07.Reunion-Bluray-1080p.mkv","size":2346241163,"dateAdded":"2020-06-19T13:52:35.714552Z","sceneName":"The.Legend.of.Korra.S04E07.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12231098,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14522},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Remembrances-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E08.Remembrances-Bluray-1080p.mkv","size":2346029883,"dateAdded":"2020-06-19T13:52:58.815248Z","sceneName":"The.Legend.of.Korra.S04E08.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12169701,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14523},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Beyond the Wilds-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E09.Beyond the Wilds-Bluray-1080p.mkv","size":2346495460,"dateAdded":"2020-06-19T13:53:23.787297Z","sceneName":"The.Legend.of.Korra.S04E09.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12208288,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14524},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Operation Beifong-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E10.Operation Beifong-Bluray-1080p.mkv","size":2345422352,"dateAdded":"2020-06-19T13:53:45.104091Z","sceneName":"The.Legend.of.Korra.S04E10.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12240576,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14525},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Kuvira's Gambit-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E11.Kuvira's Gambit-Bluray-1080p.mkv","size":2345659093,"dateAdded":"2020-06-19T13:54:13.545207Z","sceneName":"The.Legend.of.Korra.S04E11.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12145508,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14526},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Day of the Colossus-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E12.Day of the Colossus-Bluray-1080p.mkv","size":2346223433,"dateAdded":"2020-06-19T13:54:30.642288Z","sceneName":"The.Legend.of.Korra.S04E12.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12150872,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14527},{"seriesId":12,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The Last Stand-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Season 04\/S04E13.The Last Stand-Bluray-1080p.mkv","size":2345669273,"dateAdded":"2020-06-19T13:54:52.334287Z","sceneName":"The.Legend.of.Korra.S04E13.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12133569,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14528},{"seriesId":12,"seasonNumber":0,"relativePath":"Specials\/S00E40.The Making of a Legend- The Untold Story-Bluray-1080p.mkv","path":"\/tv\/The Legend of Korra\/Specials\/S00E40.The Making of a Legend- The Untold Story-Bluray-1080p.mkv","size":196966553,"dateAdded":"2021-04-14T01:24:54.67106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":336331,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4022517,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"6:01","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18019}],"queue":[]},"13":{"series":{"title":"A Series of Unfortunate Events","alternateTitles":[{"title":"Lemony Snickets A Series of Unfortunate Events","seasonNumber":-1},{"title":"Una serie di sfortunati eventi","seasonNumber":-1}],"sortTitle":"series unfortunate events","status":"ended","ended":true,"overview":"The tragic tale of the Baudelaire orphans \u2013 Violet, Klaus, and Sunny \u2013 whose evil guardian Count Olaf will stop at nothing to get his hands on their inheritance. After the loss of their parents in a mysterious fire, the three extraordinary siblings must outsmart Olaf at every turn, foiling his many devious plans and disguises, in their fateful quest to unlock long-held family secrets.","previousAiring":"2019-01-01T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/11\/banner.jpg?lastWrite=637103833324502420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/306304-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/11\/poster.jpg?lastWrite=637103833327342370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/306304-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/11\/fanart.jpg?lastWrite=637103833321902470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/306304-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-01-13T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":31907003106,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-03-30T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":8694312901,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-01-01T08:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":14570411406,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/A Series of Unfortunate Events","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":306304,"tvRageId":0,"tvMazeId":3949,"firstAired":"2017-01-13T00:00:00Z","seriesType":"standard","cleanTitle":"aseriesunfortunateevents","imdbId":"tt4834206","titleSlug":"a-series-of-unfortunate-events","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Children","Comedy","Drama","Family"],"tags":[],"added":"2017-12-12T03:37:35.8122442Z","ratings":{"votes":776,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":55171727413,"percentOfEpisodes":100.0},"id":11},"episodes":[{"seriesId":11,"episodeFileId":2222,"seasonNumber":1,"episodeNumber":1,"title":"The Bad Beginning: Part One","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"The dreadful history of the Baudelaire children begins with a deadpan narrator, a terrible fire and the ominous arrival of a distant relative.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":3186},{"seriesId":11,"episodeFileId":2224,"seasonNumber":1,"episodeNumber":2,"title":"The Bad Beginning: Part Two","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"While Mr Poe's secretary works overtime, Count Olaf casts Violet and Klaus in 'The Marvelous Marriage', a work of theater with alarming consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":3187},{"seriesId":11,"episodeFileId":2226,"seasonNumber":1,"episodeNumber":3,"title":"The Reptile Room: Part One","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"After the Baudelaires move in with Dr. Montgomery, a renowned expert in reptile behaviour, their new guardian hires a frighteningly familiar assistant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":3188},{"seriesId":11,"episodeFileId":2228,"seasonNumber":1,"episodeNumber":4,"title":"The Reptile Room: Part Two","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"Klaus and Violet suspect Count Olaf and his evil cohorts when a lifeless body turns up in the reptile room. Sunny sees the inside of a suitcase.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":3189},{"seriesId":11,"episodeFileId":2230,"seasonNumber":1,"episodeNumber":5,"title":"The Wide Window: Part One","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"The orphans arrive at the aptly named Lake Lachrymose to meet their widowed Aunt Josephine, a strict grammarian who's haunted by the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":3190},{"seriesId":11,"episodeFileId":2232,"seasonNumber":1,"episodeNumber":6,"title":"The Wide Window: Part Two","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"Klaus and Violet look for clues in a suspicious note that passes custody to Captain Sham, a seafaring scam artist with clear ties to Count Olaf.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":3191},{"seriesId":11,"episodeFileId":2234,"seasonNumber":1,"episodeNumber":7,"title":"The Miserable Mill: Part One","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"The children arrive at the Lucky Smells Lumber Mill and unearth some unsettling accusations about their parents. Count Olaf courts an old flame.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":3192},{"seriesId":11,"episodeFileId":2236,"seasonNumber":1,"episodeNumber":8,"title":"The Miserable Mill: Part Two","airDate":"2017-01-13","airDateUtc":"2017-01-13T08:00:00Z","overview":"Klaus just isn't himself after seeing Dr. Orwell, an optometrist with oddly optimistic patients. Meanwhile, Violet works to clear her parents' names.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":3193},{"seriesId":11,"episodeFileId":2223,"seasonNumber":2,"episodeNumber":1,"title":"The Austere Academy: Part One","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"The Baudelaires begin life at boarding school and meet a pair of mysterious siblings whose tragic lives sound eerily similar to their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":3194},{"seriesId":11,"episodeFileId":2225,"seasonNumber":2,"episodeNumber":2,"title":"The Austere Academy: Part Two","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"While the Quagmires keep up the search, the Baudelaires struggle to balance their studies with a punishing workout schedule, courtesy of Count Olaf.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":3195},{"seriesId":11,"episodeFileId":2227,"seasonNumber":2,"episodeNumber":3,"title":"The Ersatz Elevator: Part One","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"Violet, Klaus and Sunny get new guardians in a fashionable building, where stairs are in -- and the elevator's out. Jacques Snicket trains a recruit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":3196},{"seriesId":11,"episodeFileId":2229,"seasonNumber":2,"episodeNumber":4,"title":"The Ersatz Elevator: Part Two","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"The Baudelaires find their friends -- and then lose them -- at the bottom of an elevator shaft. Count Olaf conducts an auction in disguise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":3197},{"seriesId":11,"episodeFileId":2231,"seasonNumber":2,"episodeNumber":5,"title":"The Vile Village: Part One","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"Mr. Poe brings the Baudelaires to V.F.D., a bird-loving village with an Old West vibe. Jacques and Olivia continue their search for the Quagmires.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":3198},{"seriesId":11,"episodeFileId":2233,"seasonNumber":2,"episodeNumber":6,"title":"The Vile Village: Part Two","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"The orphans find themselves under suspicion in the wake of a devastating murder. But time behind bars leads to an important realization.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":3199},{"seriesId":11,"episodeFileId":2235,"seasonNumber":2,"episodeNumber":7,"title":"The Hostile Hospital: Part One","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"Life on the lam leads the Baudelaires to a horrifying hospital with an enormous library that could hold the answers to all of their questions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":3200},{"seriesId":11,"episodeFileId":2237,"seasonNumber":2,"episodeNumber":8,"title":"The Hostile Hospital: Part Two","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"A bearded Klaus and Sunny comb the hospital's crumbling halls for Violet, who's being held prisoner under Count Olaf's questionable \"care\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":3201},{"seriesId":11,"episodeFileId":2238,"seasonNumber":2,"episodeNumber":9,"title":"Carnivorous Carnival: Part One","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"Come one, come all to the creepiest circus the world has ever seen, a place where puzzling mysteries -- and a familiar face -- await.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":3202},{"seriesId":11,"episodeFileId":2239,"seasonNumber":2,"episodeNumber":10,"title":"Carnivorous Carnival: Part Two","airDate":"2018-03-30","airDateUtc":"2018-03-30T07:00:00Z","overview":"Still posing as conjoined carnival freaks, the Baudelaires brace themselves for a beastly fate. Will good fortune intervene ... for once?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":3203},{"seriesId":11,"episodeFileId":6281,"seasonNumber":3,"episodeNumber":1,"title":"Slippery Slope: Part One","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"While Count Olaf makes his way to V.F.D. headquarters with Sunny, Klaus and Violet are exactly where we left them: careening toward the edge of a cliff.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":3204},{"seriesId":11,"episodeFileId":6282,"seasonNumber":3,"episodeNumber":2,"title":"Slippery Slope: Part Two","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"Sunny sends a signal from Count Olaf's camp, where a sinister duo is awakening old insecurities. A clue at V.F.D. HQ points the way to a fateful meeting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":3205},{"seriesId":11,"episodeFileId":6283,"seasonNumber":3,"episodeNumber":3,"title":"Grim Grotto: Part One","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"A young submarine captain with ties to the V.F.D. reveals she's looking for the sugar bowl. But so is Esm\u00e9 Squalor, who's on a mission to find it first.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":3206},{"seriesId":11,"episodeFileId":6284,"seasonNumber":3,"episodeNumber":4,"title":"Grim Grotto: Part Two","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"With Sunny's fate hanging in the balance, Violet and Klaus race to find a life-saving antidote and learn the location of the Last Safe Place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":3207},{"seriesId":11,"episodeFileId":6285,"seasonNumber":3,"episodeNumber":5,"title":"Penultimate Peril: Part One","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"Various parties converge at the Hotel Denouement, where the mysterious \"J.S.\" has called the V.F.D. together -- and things aren't always what they seem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":3208},{"seriesId":11,"episodeFileId":6291,"seasonNumber":3,"episodeNumber":6,"title":"Penultimate Peril: Part Two","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"Big secrets are revealed when Count Olaf goes on trial in the hotel lobby. The Baudelaires are the first to take the stand, but will justice be served?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":3209},{"seriesId":11,"episodeFileId":6287,"seasonNumber":3,"episodeNumber":7,"title":"The End","airDate":"2019-01-01","airDateUtc":"2019-01-01T08:00:00Z","overview":"The final chapter takes the orphans to a deserted island: a place of lost lives, old stories and new beginnings. It all ends here.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":3210}],"episodeFile":[{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Bad Beginning- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E01.The Bad Beginning- Part One-WEBDL-1080p.mkv","size":4925583553,"dateAdded":"2018-10-10T22:33:26.900613Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12799439,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"48:49","scanType":"Progressive","subtitles":"English \/ English \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2222},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Austere Academy- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E01.The Austere Academy- Part One-WEBDL-1080p.mkv","size":763195346,"dateAdded":"2018-10-10T22:33:26.932865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1805342,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"46:24","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2223},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Bad Beginning- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E02.The Bad Beginning- Part Two-WEBDL-1080p.mkv","size":4204355412,"dateAdded":"2018-10-10T22:33:26.974778Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8186396,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"1:04:06","scanType":"Progressive","subtitles":"English \/ French \/ Polish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2224},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Austere Academy- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E02.The Austere Academy- Part Two-WEBDL-1080p.mkv","size":890588309,"dateAdded":"2018-10-10T22:33:27.011407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1858549,"videoCodec":"x264","videoFps":24.0,"resolution":"1906x960","runTime":"52:52","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2225},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Reptile Room- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E03.The Reptile Room- Part One-WEBDL-1080p.mkv","size":4226534265,"dateAdded":"2018-10-10T22:33:27.050982Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11104570,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"48:04","scanType":"Progressive","subtitles":"English \/ French \/ Polish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2226},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Ersatz Elevator- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E03.The Ersatz Elevator- Part One-WEBDL-1080p.mkv","size":960277782,"dateAdded":"2018-10-10T22:33:27.085909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2058931,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"52:20","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2227},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Reptile Room- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E04.The Reptile Room- Part Two-WEBDL-1080p.mkv","size":3174231670,"dateAdded":"2018-10-10T22:33:27.118278Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9100150,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"43:44","scanType":"Progressive","subtitles":"English \/ French \/ Polish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2228},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Ersatz Elevator- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E04.The Ersatz Elevator- Part Two-WEBDL-1080p.mkv","size":794152866,"dateAdded":"2018-10-10T22:33:27.149724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2145333,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"41:48","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2229},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Wide Window- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E05.The Wide Window- Part One-WEBDL-1080p.mkv","size":2386166498,"dateAdded":"2018-10-10T22:33:27.18116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6899888,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"42:48","scanType":"Progressive","subtitles":"English \/ French \/ Polish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2230},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Vile Village- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E05.The Vile Village- Part One-WEBDL-1080p.mkv","size":923345858,"dateAdded":"2018-10-10T22:33:27.212997Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2173444,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"48:04","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2231},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Wide Window- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E06.The Wide Window- Part Two-WEBDL-1080p.mkv","size":4794219943,"dateAdded":"2018-10-10T22:33:27.244982Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11490330,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"52:45","scanType":"Progressive","subtitles":"English \/ English \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2232},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Vile Village- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E06.The Vile Village- Part Two-WEBDL-1080p.mkv","size":885089799,"dateAdded":"2018-10-10T22:33:27.276663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2457899,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"41:28","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2233},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Miserable Mill- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E07.The Miserable Mill- Part One-WEBDL-1080p.mkv","size":4067630560,"dateAdded":"2018-10-10T22:33:27.309255Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11750549,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"43:48","scanType":"Progressive","subtitles":"English \/ English \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2234},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Hostile Hospital- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E07.The Hostile Hospital- Part One-WEBDL-1080p.mkv","size":846404942,"dateAdded":"2018-10-10T22:33:27.342116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2144532,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"44:34","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2235},{"seriesId":11,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Miserable Mill- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 01\/S01E08.The Miserable Mill- Part Two-WEBDL-1080p.mkv","size":4128281205,"dateAdded":"2018-10-10T22:33:27.373911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11231724,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"46:26","scanType":"Progressive","subtitles":"English \/ English \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2236},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Hostile Hospital- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E08.The Hostile Hospital- Part Two-WEBDL-1080p.mkv","size":839648275,"dateAdded":"2018-10-10T22:33:27.405552Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2394656,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"40:14","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2237},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Carnivorous Carnival- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E09.The Carnivorous Carnival- Part One-WEBDL-1080p.mkv","size":902202997,"dateAdded":"2018-10-10T22:33:27.437554Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2219677,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"46:08","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2238},{"seriesId":11,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Carnivorous Carnival- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 02\/S02E10.The Carnivorous Carnival- Part Two-WEBDL-1080p.mkv","size":889406727,"dateAdded":"2018-10-10T22:33:27.469598Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2374215,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"42:56","scanType":"Progressive","subtitles":"English \/ German \/ French \/ Dutch \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2239},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Slippery Slope- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E01.The Slippery Slope- Part One-WEBDL-1080p.mkv","size":1835069662,"dateAdded":"2019-01-01T18:15:58.376873Z","sceneName":"A.Series.Of.Unfortunate.Events.S03E01.The.Slippery.Slope.Part.One.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"43:52","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6281},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Slippery Slope- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E02.The Slippery Slope- Part Two-WEBDL-1080p.mkv","size":1694323214,"dateAdded":"2019-01-01T18:16:05.273924Z","sceneName":"A.Series.Of.Unfortunate.Events.S03E02.The.Slippery.Slope.Part.Two.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:16","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6282},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Grim Grotto- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E03.The Grim Grotto- Part One-WEBDL-1080p.mkv","size":1067910677,"dateAdded":"2019-01-01T18:16:20.350815Z","sceneName":"A.Series.Of.Unfortunate.Events.S03E03.The.Grim.Grotto.Part.One.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2610000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:46","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6283},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Grim Grotto- Part Two-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E04.The Grim Grotto- Part Two-WEBDL-1080p.mkv","size":1022897053,"dateAdded":"2019-01-01T18:16:33.41426Z","sceneName":"A.Series.Of.Unfortunate.Events.S03E04.The.Grim.Grotto.Part.Two.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"36:36","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6284},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Penultimate Peril- Part One-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E05.The Penultimate Peril- Part One-WEBDL-1080p.mkv","size":1555176344,"dateAdded":"2019-01-01T18:17:00.620406Z","sceneName":"A.Series.Of.Unfortunate.Events.S03E05.The.Penultimate.Peril.Part.One.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"55:14","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6285},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The End-WEBDL-1080p.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E07.The End-WEBDL-1080p.mkv","size":2421407235,"dateAdded":"2019-01-01T18:19:35.452406Z","sceneName":"A.Series.Of.Unfortunate.Events.S03E07.The.End.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"52:28","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6287},{"seriesId":11,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Penultimate Peril- Part Two-WEBDL-1080p Proper.mkv","path":"\/tv\/A Series of Unfortunate Events\/Season 03\/S03E06.The Penultimate Peril- Part Two-WEBDL-1080p Proper.mkv","size":4973627221,"dateAdded":"2019-01-02T17:07:40.21953Z","sceneName":"Lemony.Snickets.A.Series.of.Unfortunate.Events.S03E06.REPACK.1080p.WEBRip.X264-DEFLATE[rarbg]","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12070957,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"51:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6291}],"queue":[]},"14":{"series":{"title":"Bee and PuppyCat","alternateTitles":[],"sortTitle":"bee puppycat","status":"ended","ended":true,"overview":"Bee, a reluctant hero, becomes entangled in the adventures of a puppy (...or is he a cat?) as they travel between reality and the void of Fishbowl Space.","previousAiring":"2016-11-28T05:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/22\/banner.jpg?lastWrite=636747176279227060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/272090-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/22\/poster.jpg?lastWrite=636747176279667050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/272090-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/22\/fanart.jpg?lastWrite=637103832347040140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/272090-5.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-11-28T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":764056287,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":13,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2014,"path":"\/tv\/Bee and PuppyCat","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":272090,"tvRageId":37666,"tvMazeId":5342,"firstAired":"2014-11-06T00:00:00Z","seriesType":"standard","cleanTitle":"beepuppycat","imdbId":"tt4163486","titleSlug":"bee-and-puppycat","rootFolderPath":"\/tv\/","genres":["Action","Adventure","Animation","Comedy","Fantasy","Mini-Series","Science Fiction"],"tags":[],"added":"2018-03-21T19:45:10.3670301Z","ratings":{"votes":162,"value":7.8},"statistics":{"seasonCount":2,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":25,"sizeOnDisk":764056287,"percentOfEpisodes":100.0},"id":22},"episodes":[{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Little Fingers","overview":"Bee and PuppyCat must take on a new temporary job after PuppyCat overspends on a mobile app game.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18443},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Gentle Touch","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18444},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Snow and Violets","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18445},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Day Off Work","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18446},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"My Favorite","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18447},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Did You Remember!?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18448},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Bird Friend","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18449},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"Two Clown Noses","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18450},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Funny Lying","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18451},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Golden Eyes","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18452},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Why Don't You Help Me?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18453},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"Now I'm Really Alone","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18454},{"seriesId":22,"episodeFileId":0,"seasonNumber":2,"episodeNumber":13,"title":"I Won't Leave You Alone","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":18455},{"seriesId":22,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Pilot (1)","airDate":"2013-07-11","airDateUtc":"2013-07-11T04:00:00Z","overview":"Bee, a reluctant hero, becomes entangled in the adventures of a puppy (...or is he a cat?) as they travel between reality and the void of Fishbowl Space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":930},{"seriesId":22,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Pilot (2)","airDate":"2013-08-07","airDateUtc":"2013-08-07T04:00:00Z","overview":"Bee, a reluctant hero, becomes entangled in the adventures of a puppy (...or is he a cat?) as they travel between reality and the void of Fishbowl Space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":931},{"seriesId":22,"episodeFileId":714,"seasonNumber":1,"episodeNumber":1,"title":"Food","airDate":"2014-11-06","airDateUtc":"2014-11-06T05:00:00Z","overview":"One morning Bee wakes from a dream and is starving. New recipe in hand Bee and PuppyCat head to the store and then to cook with Deckard. Oh yeah \u2013 there's a talking cicada.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":934},{"seriesId":22,"episodeFileId":714,"seasonNumber":1,"episodeNumber":2,"title":"Farmer","airDate":"2014-11-06","airDateUtc":"2014-11-06T05:23:00Z","overview":"After receiving a new assignment from TempBot, and in new uniforms (magic pockets included), Bee and PuppyCat slide into a farming job on Jelly Cube Planet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":935},{"seriesId":22,"episodeFileId":715,"seasonNumber":1,"episodeNumber":3,"title":"Beach","airDate":"2014-12-04","airDateUtc":"2014-12-04T05:00:00Z","overview":"When Cardamon the cranky landlord kicks them out of the apartment, Bee and PuppyCat head to the beach and search for a place to watch the Pretty Patrick Lunchtime Marathon. They'll never look at a crab the same way again...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":936},{"seriesId":22,"episodeFileId":715,"seasonNumber":1,"episodeNumber":4,"title":"Cats","airDate":"2014-12-18","airDateUtc":"2014-12-18T05:00:00Z","overview":"In our midseason finale, Bee and PuppyCat travel to a bathhouse on Cat-Head Planet for their strangest and most adorable job yet. Lucky for them, Pretty Patrick is on TV over there, too!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":937},{"seriesId":22,"episodeFileId":717,"seasonNumber":1,"episodeNumber":5,"title":"Birthday","airDate":"2015-08-27","airDateUtc":"2015-08-27T04:00:00Z","overview":"It's Bee's birthday. Initially disappointed at having to work, and missing her dad, Bee's mood turns gleefully around when she and PuppyCat get assigned a job on Cloud World, an immersive video game inhabited by squat birds. When Bee's gender-swapped video game avatar gets wrapped in the glamour of side quests, it's up to PuppyCat to win the game and defeat the all-seeing eye of Cloud World.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":938},{"seriesId":22,"episodeFileId":717,"seasonNumber":1,"episodeNumber":6,"title":"Game","airDate":"2015-08-27","airDateUtc":"2015-08-27T04:23:00Z","overview":"It's Bee's birthday. Initially disappointed at having to work, and missing her dad, Bee's mood turns gleefully around when she and PuppyCat get assigned a job on Cloud World, an immersive video game inhabited by squat birds. When Bee's gender-swapped video game avatar gets wrapped in the glamour of side quests, it's up to PuppyCat to win the game and defeat the all-seeing eye of Cloud World.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":939},{"seriesId":22,"episodeFileId":718,"seasonNumber":1,"episodeNumber":7,"title":"Toast","airDate":"2016-11-28","airDateUtc":"2016-11-28T05:00:00Z","overview":"Rent is due! An old wrestling acquaintance comes to visit Cass.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":940},{"seriesId":22,"episodeFileId":718,"seasonNumber":1,"episodeNumber":8,"title":"Dogs","airDate":"2016-11-28","airDateUtc":"2016-11-28T05:00:00Z","overview":"Bee and Deckard go to pay rent to Cardamon. Cardamon wants PuppyCat to spend time with Sticky.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":941},{"seriesId":22,"episodeFileId":718,"seasonNumber":1,"episodeNumber":9,"title":"Wedding","airDate":"2016-11-28","airDateUtc":"2016-11-28T05:00:00Z","overview":"Cardamon wants to marry PuppyCat and Sticky.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":942},{"seriesId":22,"episodeFileId":718,"seasonNumber":1,"episodeNumber":10,"title":"Donut","airDate":"2016-11-28","airDateUtc":"2016-11-28T05:00:00Z","overview":"Bee and Deckard are given a baking temp job on Donut Planet. They make donuts until a black hole destroys the planet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":943}],"episodeFile":[{"seriesId":22,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.Food + Farmer-Bluray-1080p.mkv","path":"\/tv\/Bee and PuppyCat\/Season 01\/S01E01E02.Food + Farmer-Bluray-1080p.mkv","size":117879928,"dateAdded":"2018-10-10T21:24:56.731903Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165879,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1098631,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"12:24","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":714},{"seriesId":22,"seasonNumber":1,"relativePath":"Season 01\/S01E03E04.Beach + Cats-Bluray-1080p.mkv","path":"\/tv\/Bee and PuppyCat\/Season 01\/S01E03E04.Beach + Cats-Bluray-1080p.mkv","size":134437651,"dateAdded":"2018-10-10T21:24:56.764163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171945,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1266697,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"12:26","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":715},{"seriesId":22,"seasonNumber":1,"relativePath":"Season 01\/S01E05E06.Birthday + Game-Bluray-1080p.mkv","path":"\/tv\/Bee and PuppyCat\/Season 01\/S01E05E06.Birthday + Game-Bluray-1080p.mkv","size":111280830,"dateAdded":"2018-10-10T21:24:56.826463Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":179667,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1021115,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"12:19","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":717},{"seriesId":22,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08E09E10.Toast + Dogs + Wedding + Donut-Bluray-1080p.mkv","path":"\/tv\/Bee and PuppyCat\/Season 01\/S01E07E08E09E10.Toast + Dogs + Wedding + Donut-Bluray-1080p.mkv","size":400457878,"dateAdded":"2018-10-10T21:24:56.861122Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156707,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1707825,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"28:35","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":718}],"queue":[]},"15":{"series":{"title":"Final Space","alternateTitles":[],"sortTitle":"final space","status":"continuing","ended":false,"overview":"An astronaut named Gary and his planet-destroying sidekick Mooncake embark on serialized journeys through space in order to unlock the mystery of \u201cFinal Space,\u201d the last point in the universe, if it actually does exist.","previousAiring":"2021-06-14T04:30:00Z","network":"Adult Swim","airTime":"00:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/21\/banner.jpg?lastWrite=637100123774035930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/text\/332353.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/21\/poster.jpg?lastWrite=637543499248871620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/332353-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/21\/fanart.jpg?lastWrite=637100123771915970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/332353-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":34,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-05-07T04:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":14234421556,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-09-23T04:30:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":18081710302,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-06-14T04:30:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9036092526,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Final Space","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":20,"tvdbId":332353,"tvRageId":0,"tvMazeId":23314,"firstAired":"2018-02-26T00:00:00Z","seriesType":"standard","cleanTitle":"finalspace","imdbId":"tt6317068","titleSlug":"final-space","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2018-03-20T12:55:14.0917538Z","ratings":{"votes":189,"value":9.4},"statistics":{"seasonCount":3,"episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":70,"sizeOnDisk":41352224384,"percentOfEpisodes":100.0},"id":21},"episodes":[{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Final Space (Short)","airDate":"2016-04-05","airDateUtc":"2016-04-05T04:30:00Z","overview":"Cartoon short that focuses on the misadventures of Gary Space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1857},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Chapter One and Two Sneak Peek","airDate":"2018-02-17","airDateUtc":"2018-02-17T05:30:00Z","overview":"Chapter One and Two Sneak Peek","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1858},{"seriesId":21,"episodeFileId":15330,"seasonNumber":1,"episodeNumber":1,"title":"Chapter One","airDate":"2018-02-26","airDateUtc":"2018-02-26T05:30:00Z","overview":"Gary carries out the final days of his prison sentence aboard the Galaxy One, when he meets Mooncake, an alien who is being chased by bounty hunters; Gary swears to keep Mooncake safe, not knowing the alien is a planet-destroying super weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1880},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Inside the Episode: Chapter 1","airDate":"2018-03-02","airDateUtc":"2018-03-02T05:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1860},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Inside the Episode: Chapter 2","airDate":"2018-03-02","airDateUtc":"2018-03-02T05:50:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1862},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Inside the Episode: Chapter 3","airDate":"2018-03-02","airDateUtc":"2018-03-02T06:10:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1864},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Making Of Final Space: Origins - Part 1","airDate":"2018-03-05","airDateUtc":"2018-03-05T05:30:00Z","overview":"The origin story of Final Space. Interviews with the creator Olan Rogers, cast and executive producers about Final Space from inception to production.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1859},{"seriesId":21,"episodeFileId":15331,"seasonNumber":1,"episodeNumber":2,"title":"Chapter Two","airDate":"2018-03-05","airDateUtc":"2018-03-05T05:30:00Z","overview":"Gary and Avocato must chase down the ruthless bounty hunter, Terk, before he can tell the Lord Commander that Mooncake is aboard the Galaxy One.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1881},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Making Of Final Space: Origins - Part 2","airDate":"2018-03-12","airDateUtc":"2018-03-12T04:30:00Z","overview":"The origin story of Final Space continued. Interviews with the creator Olan Rogers and executive producers about Final Space from early production to a tbs TV show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1861},{"seriesId":21,"episodeFileId":15332,"seasonNumber":1,"episodeNumber":3,"title":"Chapter Three","airDate":"2018-03-12","airDateUtc":"2018-03-12T04:30:00Z","overview":"Gary tries to hide Mooncake safely away on the planet Yarno. But instead, Gary and Avocato are trapped in a terrifying mind-puzzle, while Mooncake is taken from them, and forced to fight in a combat arena called the Deathcropolis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1882},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Inside the Episode: Chapter 4","airDate":"2018-03-13","airDateUtc":"2018-03-13T04:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1866},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Inside the Episode: Chapter 5","airDate":"2018-03-18","airDateUtc":"2018-03-18T04:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1868},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Making Of Final Space: Origins - Part 3 - SDCC","airDate":"2018-03-19","airDateUtc":"2018-03-19T04:30:00Z","overview":"Follow Final Space creator Olan Rogers on his trip to San Diego Comic Con for the tbs Animation Panel. See clips from the panel and learn more about the production of Final Space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1863},{"seriesId":21,"episodeFileId":15333,"seasonNumber":1,"episodeNumber":4,"title":"Chapter Four","airDate":"2018-03-19","airDateUtc":"2018-03-19T04:30:00Z","overview":"After the Galaxy One is hacked by the Infinity Guard, Gary has to harvest energy from a nearby star to reignite the engines; the radiation poisoning from the star sends Gary into a trance of painful memories; Gary and Quinn are finally reunited.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1883},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Inside the Episode: Chapter 6","airDate":"2018-03-25","airDateUtc":"2018-03-25T04:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1870},{"seriesId":21,"episodeFileId":15334,"seasonNumber":1,"episodeNumber":5,"title":"Chapter Five","airDate":"2018-03-26","airDateUtc":"2018-03-26T04:30:00Z","overview":"Gary, Quinn, and Avocato, trace the gravitational disturbance to an eerie super laser sitting atop a bioluminescent planet. Quinn realizes the only people she can trust are Gary and the crew of the Galaxy One.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1884},{"seriesId":21,"episodeFileId":15335,"seasonNumber":1,"episodeNumber":6,"title":"Chapter Six","airDate":"2018-04-09","airDateUtc":"2018-04-09T04:30:00Z","overview":"Gary goes on a mission to save Avocato's son, Little Cato, from Lord Commander's Prison Planet, but it turns out to be a trap; Quinn sees Gary's vlogs and understands that he is someone who would risk his life for any of his friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1885},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Inside the Episode: Chapter 7","airDate":"2018-04-12","airDateUtc":"2018-04-12T04:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1872},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"The Making Of Final Space: Origins - Part 4 - On the Road","airDate":"2018-04-13","airDateUtc":"2018-04-13T04:30:00Z","overview":"Creator Olan Rogers and the Final Space team find out what it takes to promote a brand new show by taking it out on the road to get it in front of future fans.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1865},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Inside the Episode: Chapter 8","airDate":"2018-04-15","airDateUtc":"2018-04-15T04:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1874},{"seriesId":21,"episodeFileId":15336,"seasonNumber":1,"episodeNumber":7,"title":"Chapter Seven","airDate":"2018-04-16","airDateUtc":"2018-04-16T04:30:00Z","overview":"Gary grapples with his future when he learns his prison sentence is up. Meanwhile, everything gets turned upside down when Quinn and Quinn's Future Self (Nightfall) vie for the love of Gary as they try to save the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1886},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"The Making Of Final Space: Origins - Part 5 - Characters and Cast","airDate":"2018-04-23","airDateUtc":"2018-04-23T04:30:00Z","overview":"Meet the cast of Final Space as they discuss their characters, some in too much detail we had to edit!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1867},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Inside the Episode: Chapter 9","airDate":"2018-04-23","airDateUtc":"2018-04-23T04:50:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1876},{"seriesId":21,"episodeFileId":15337,"seasonNumber":1,"episodeNumber":8,"title":"Chapter Eight","airDate":"2018-04-23","airDateUtc":"2018-04-23T04:30:00Z","overview":"Gary and the Crew encounter a Titan in Inner Space, who informs them how to close the breach in the fabric of space. Gary gets a chance to spend time with his father for the first time as an adult, moments before his father's ship explodes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1887},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Inside the Episode: Chapter 10","airDate":"2018-04-30","airDateUtc":"2018-04-30T04:30:00Z","overview":"Join Final Space executive producer and creator Olan Rogers as he gives you the inside scoop of the animated universe he created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1878},{"seriesId":21,"episodeFileId":15338,"seasonNumber":1,"episodeNumber":9,"title":"Chapter Nine","airDate":"2018-04-30","airDateUtc":"2018-04-30T04:30:00Z","overview":"Gary and Quinn go back to Earth to find an anti-gravitational bomb that can close the breach in space. Gary and Quinn decide to turn this life-threatening adventure into their first date.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1888},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The Making Of Final Space: Origins - Part 6 - Meet the Crew","airDate":"2018-05-07","airDateUtc":"2018-05-07T04:30:00Z","overview":"A look behind the curtain to see how the series is made by the phenomenal crew of Final Space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1869},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Alone in Space - A Final Space Documentary","airDate":"2018-05-07","airDateUtc":"2018-05-07T04:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1879},{"seriesId":21,"episodeFileId":15339,"seasonNumber":1,"episodeNumber":10,"title":"Chapter Ten","airDate":"2018-05-07","airDateUtc":"2018-05-07T04:30:00Z","overview":"The finale to our epic adventure. An all out battle ensues as The Lord Commander does everything in his power to capture Mooncake, and stop Gary and Quinn from closing the entrance to Final Space.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1889},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"The Making Of Final Space: Origins - Part 7 - Screenings and Party Event","airDate":"2018-05-14","airDateUtc":"2018-05-14T04:30:00Z","overview":"On the weekend of The Final Space series premiere, tbs inflated a giant Mooncake dome and screened episodes inside all day in front of fans followed by a celebration at creator Olan Rogers' own Soda Parlor in Nashville TN.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1871},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"The Making Of Final Space: Origins - Part 8 - It's Only the Beginning","airDate":"2018-06-10","airDateUtc":"2018-06-10T04:30:00Z","overview":"A look at the journey of Final Space through the eyes of Coty Galloway, the voice of Avocato.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1873},{"seriesId":21,"episodeFileId":15317,"seasonNumber":2,"episodeNumber":1,"title":"The Toro Regatta","airDate":"2019-06-24","airDateUtc":"2019-06-24T04:30:00Z","overview":"Gary is rescued from the wreckage of space then must earn his freedom by winning the deadliest race in the galaxy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":11480},{"seriesId":21,"episodeFileId":15318,"seasonNumber":2,"episodeNumber":2,"title":"The Happy Place","airDate":"2019-07-01","airDateUtc":"2019-07-01T04:30:00Z","overview":"The crew gets trapped in a happy ship where things aren't what they seem; Gary must confront the human cost of having lost earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11481},{"seriesId":21,"episodeFileId":15319,"seasonNumber":2,"episodeNumber":3,"title":"The Grand Surrender","airDate":"2019-07-08","airDateUtc":"2019-07-08T04:30:00Z","overview":"The search for a dimensional key leads the Crimson Light to Ash's home planet; HUE hosts a bachelor party for an unexpected visitor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11482},{"seriesId":21,"episodeFileId":15320,"seasonNumber":2,"episodeNumber":4,"title":"The Other Side","airDate":"2019-07-15","airDateUtc":"2019-07-15T04:30:00Z","overview":"A collision with space time traps half of the Crimson Light in a perilous other dimension.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11596},{"seriesId":21,"episodeFileId":15321,"seasonNumber":2,"episodeNumber":5,"title":"The Notorious Mrs. Goodspeed","airDate":"2019-07-22","airDateUtc":"2019-07-22T04:30:00Z","overview":"Gary reconnects with the mother who abandoned him; Mooncake misses Gary's attention.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":11608},{"seriesId":21,"episodeFileId":15322,"seasonNumber":2,"episodeNumber":6,"title":"Arachnitects","airDate":"2019-07-29","airDateUtc":"2019-07-29T04:30:00Z","overview":"When Mooncake is mysteriously taken from the Crimson Light, the crew must find him in the nether reaches of space; Tribore rebuilds the resistance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":11622},{"seriesId":21,"episodeFileId":15323,"seasonNumber":2,"episodeNumber":7,"title":"The First Times They Met","airDate":"2019-08-05","airDateUtc":"2019-08-05T04:30:00Z","overview":"Nightfall attempts to bring the past back to life, leaving the crew powerless against a pack of evil KVNs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":11762},{"seriesId":21,"episodeFileId":15324,"seasonNumber":2,"episodeNumber":8,"title":"The Remembered","airDate":"2019-08-12","airDateUtc":"2019-08-12T04:30:00Z","overview":"An unexpected trip through time provides a unique opportunity for the crew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":11763},{"seriesId":21,"episodeFileId":15325,"seasonNumber":2,"episodeNumber":9,"title":"The Closer You Get","airDate":"2019-08-19","airDateUtc":"2019-08-19T04:30:00Z","overview":"Gary discovers a way he may be able to communicate with Quinn; Tribore reconnects with a resistance fighter who has an ulterior motive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":11764},{"seriesId":21,"episodeFileId":15326,"seasonNumber":2,"episodeNumber":10,"title":"The Lost Spy","airDate":"2019-08-26","airDateUtc":"2019-08-26T04:30:00Z","overview":"Gary and crew search Galang 22 for Little Cato; Clarence, Fox and Ash pull off their greatest con; Sheryl's secrets come out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":11765},{"seriesId":21,"episodeFileId":15327,"seasonNumber":2,"episodeNumber":11,"title":"The Set Up","airDate":"2019-09-09","airDateUtc":"2019-09-09T04:30:00Z","overview":"An act of betrayal shakes the crew; Hue and Mooncake have a day out for themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":11766},{"seriesId":21,"episodeFileId":15328,"seasonNumber":2,"episodeNumber":12,"title":"The Descent Into Darkness","airDate":"2019-09-16","airDateUtc":"2019-09-16T04:30:00Z","overview":"The search for the stolen dimensional keys leads the crew to a planet being sucked into the Dark Zone; Hue and Ava get closer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":11767},{"seriesId":21,"episodeFileId":15329,"seasonNumber":2,"episodeNumber":13,"title":"The Sixth Key","airDate":"2019-09-23","airDateUtc":"2019-09-23T04:30:00Z","overview":"With the dimensional keys recovered, the crew travel to Inner Space where they finally try to free Bolo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":11768},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Final Thoughts: Episode 1","airDate":"2020-08-11","airDateUtc":"2020-08-11T04:30:00Z","overview":"Join creator Olan Rodgers and Executive Producer David Sacks as they discuss HUE and adding new characters in the season 2 premiere. Also Art Director Devin 'DVO' Roth and Supervising Director Ben Bjelajac give insight to the Tora Regatta and the Crimson Light.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19512},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Final Thoughts: Episode 2","airDate":"2020-08-11","airDateUtc":"2020-08-11T04:50:00Z","overview":"Creator Olan Rodgers goes into Gary's happy place as well as Tribore's return. Director Yoriaki Mochizuki shares inspiration for the Happy Place. Also Executive Producer David Sacks gives insight along with Olan about introducing a new villain.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19513},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Final Thoughts: Episode 3","airDate":"2020-08-11","airDateUtc":"2020-08-11T05:10:00Z","overview":"Director Anne Walker Farrell discusses building Ash's relationships with Nightfall and Littlecato. Executive Producer Davis Sacks also talks abut Ash and Art Director Devin 'DVO' Roth gives insight to Serepentis.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19514},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Final Thoughts: Episode 4","airDate":"2020-08-11","airDateUtc":"2020-08-11T05:30:00Z","overview":"Creator Olan Rodgers shares why The Other Side is his favorite episode. Supervising Director Ben Bjelajac and Executive Producer David Sacks share insight about Littlecato. Also Art Director Devin 'DVO' Roth discusses design aspects of the episode.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19515},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Final Thoughts: Episode 5","airDate":"2020-08-11","airDateUtc":"2020-08-11T05:50:00Z","overview":"Creator Olan Rodgers and Executive Producer David sacks discuss Gary's mother and how his parents affect him. Director Yoriaki Mochizuri examines balancing meaningful action along with comedic relief.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19516},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Final Thoughts: Episode 6","airDate":"2020-08-11","airDateUtc":"2020-08-11T06:10:00Z","overview":"Creator Olan Rodgers talks about Tribore as well as introducing more lore to the show. Executive producer David Sacks and Director Anne Walker Farrell examine giving history to Final Space and how they accomplished it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19517},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Final Thoughts: Episode 7","airDate":"2020-08-11","airDateUtc":"2020-08-11T06:30:00Z","overview":"Creator Olan Rodgers reflects on Gary and Nightfall's relationship. Supervising Director Ben Bjelajac talks about Final Space's take on horror and Executive Producer David Sacks recalls wanting to challenge the limits of an animated series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19518},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Final Thoughts: Episode 8","airDate":"2020-08-11","airDateUtc":"2020-08-11T06:50:00Z","overview":"Creator Olan Rodgers, Executive Producer David Sacks, and Director Yoriaki Mochizuki discuss bringing back a beloved character as well as the ramifications in doing so.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19519},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Final Thoughts: Episode 9","airDate":"2020-08-11","airDateUtc":"2020-08-11T07:10:00Z","overview":"Creator Olan Rodgers and Executive Producer David Sacks discuss recentering the story as well as delivering emotionally powerful scenes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19520},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Final Thoughts: Episode 10","airDate":"2020-08-11","airDateUtc":"2020-08-11T07:30:00Z","overview":"Executive Producer David Sacks talks giving Clarence his own episode. Director Anne Walker Farrell discusses Sheryl and Creator Olan Rodgers expands upon Gary's growth as a character.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19521},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Final Thoughts: Episode 11","airDate":"2020-08-11","airDateUtc":"2020-08-11T07:50:00Z","overview":"Executive Producer David Sacks looks at the family dynamics of the show. Creator Olan Rodgers and Director Anne Walker Farrell give insight into developing Clarence","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19522},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Final Thoughts: Episode 12","airDate":"2020-08-11","airDateUtc":"2020-08-11T08:10:00Z","overview":"Creator Olan Rodgers talks about splitting up the team squad. Director Yoriaki Mochizuki gives insight about delivering a story both visually and emotionally and Executive Producer David Sacks recounts the idea of questioning Bolo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19523},{"seriesId":21,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Final Thoughts: Episode 13","airDate":"2020-08-11","airDateUtc":"2020-08-11T08:30:00Z","overview":"Creator Olan Rodgers and Executive Producer David Sacks look at the season 2 finale and what lies ahead.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19524},{"seriesId":21,"episodeFileId":17865,"seasonNumber":3,"episodeNumber":1,"title":"...And Into The Fire","airDate":"2021-03-20","airDateUtc":"2021-03-20T04:30:00Z","overview":"After a escaping a near death encounter with Invictus, The Team Squad begins their quest home inside the core of an unknown planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":19940},{"seriesId":21,"episodeFileId":17912,"seasonNumber":3,"episodeNumber":2,"title":"The Hidden Light","airDate":"2021-03-27","airDateUtc":"2021-03-27T04:30:00Z","overview":"Gary and Quinn encounter Earth's last survivor and search for a ship so that they can save the others lost in Final Space.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":19941},{"seriesId":21,"episodeFileId":17955,"seasonNumber":3,"episodeNumber":3,"title":"The Ventrexian","airDate":"2021-04-03","airDateUtc":"2021-04-03T04:30:00Z","overview":"The Lord Commander tries to pry information about Mooncake's whereabouts out of Avocato. Quinn keeps her sickness a secret from Gary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":19942},{"seriesId":21,"episodeFileId":17977,"seasonNumber":3,"episodeNumber":4,"title":"One of Us","airDate":"2021-04-10","airDateUtc":"2021-04-10T04:30:00Z","overview":"Gary and Quinn plan a dangerous rescue mission to save Avocato and the others.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":20164},{"seriesId":21,"episodeFileId":18062,"seasonNumber":3,"episodeNumber":5,"title":"All The Moments Lost","airDate":"2021-04-17","airDateUtc":"2021-04-17T04:30:00Z","overview":"As the crew flees from the Lord Commander, they lightfold into the orbit of a mysterious Black Hole that threatens to crush them into oblivion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":21284},{"seriesId":21,"episodeFileId":18086,"seasonNumber":3,"episodeNumber":6,"title":"Change is Gonna Come","airDate":"2021-04-24","airDateUtc":"2021-04-24T04:30:00Z","overview":"Gary and the crew race to find a cure for Quinn's Final Space poisoning, while Ash confronts Invictus. Meanwhile, Tribore and Quatronostro find out about a prophecy and journey to the great oracle Tim Belts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":21285},{"seriesId":21,"episodeFileId":18104,"seasonNumber":3,"episodeNumber":7,"title":"The Chamber of Doubt","airDate":"2021-05-01","airDateUtc":"2021-05-01T04:30:00Z","overview":"As an infection grows within Bolo, the crew races to help before he's lost to them forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":21286},{"seriesId":21,"episodeFileId":18123,"seasonNumber":3,"episodeNumber":8,"title":"Forgiveness","airDate":"2021-05-08","airDateUtc":"2021-05-08T04:30:00Z","overview":"The aftermath of losing one of the crew ripples through the team squad.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":21440},{"seriesId":21,"episodeFileId":18176,"seasonNumber":3,"episodeNumber":9,"title":"Hyper-Transdimensional Bridge Rising","airDate":"2021-05-15","airDateUtc":"2021-05-15T04:30:00Z","overview":"The crew heads to Earth in an attempt to activate the Hyper-Trans Dimensional Bridge, but in order to do so they must make contact with someone on the other side of Final Space.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":21446},{"seriesId":21,"episodeFileId":18258,"seasonNumber":3,"episodeNumber":10,"title":"Until the Sky Falls","airDate":"2021-05-22","airDateUtc":"2021-05-22T04:30:00Z","overview":"Gary and Quinn go on a perilous mission to activate the Titan killing apparatus, while Avocato races to stop the Lord Commander's ultimate transformation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":21447},{"seriesId":21,"episodeFileId":18292,"seasonNumber":3,"episodeNumber":11,"title":"The Dead Speak","airDate":"2021-05-29","airDateUtc":"2021-05-29T04:30:00Z","overview":"The crew fight to survive a ship-wide invasion of possessed Garys.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":21475},{"seriesId":21,"episodeFileId":18333,"seasonNumber":3,"episodeNumber":12,"title":"The Leaving","airDate":"2021-06-07","airDateUtc":"2021-06-07T04:30:00Z","overview":"Long held secrets are revealed that will change the Team Squad forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":21476},{"seriesId":21,"episodeFileId":18396,"seasonNumber":3,"episodeNumber":13,"title":"The Devil's Den","airDate":"2021-06-14","airDateUtc":"2021-06-14T04:30:00Z","overview":"A shattered Team Squad is left reeling as Gary and Avocato travel into Invictus' inner sanctum for the final showdown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":21477}],"episodeFile":[{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Toro Regatta-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E01.The Toro Regatta-Bluray-1080p.mkv","size":1428271042,"dateAdded":"2020-08-24T15:33:19.321461Z","sceneName":"final.space.s02e01.readnfo.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3771851,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15317},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Happy Place-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E02.The Happy Place-Bluray-1080p.mkv","size":1385070986,"dateAdded":"2020-08-24T15:35:09.305165Z","sceneName":"final.space.s02e02.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3712608,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15318},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Grand Surrender-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E03.The Grand Surrender-Bluray-1080p.mkv","size":1378711025,"dateAdded":"2020-08-24T15:37:01.131743Z","sceneName":"final.space.s02e03.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3654379,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15319},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Other Side-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E04.The Other Side-Bluray-1080p.mkv","size":1373769280,"dateAdded":"2020-08-24T15:38:50.404273Z","sceneName":"final.space.s02e04.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3633089,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15320},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Notorious Mrs. Goodspeed-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E05.The Notorious Mrs. Goodspeed-Bluray-1080p.mkv","size":1368756075,"dateAdded":"2020-08-24T15:40:42.743239Z","sceneName":"final.space.s02e05.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3591633,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15321},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Arachnitects-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E06.Arachnitects-Bluray-1080p.mkv","size":1385649766,"dateAdded":"2020-08-24T15:42:29.973286Z","sceneName":"final.space.s02e06.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3716540,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15322},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The First Times They Met-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E07.The First Times They Met-Bluray-1080p.mkv","size":1385019854,"dateAdded":"2020-08-24T15:44:17.361823Z","sceneName":"final.space.s02e07.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3549513,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15323},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Remembered-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E08.The Remembered-Bluray-1080p.mkv","size":1387666530,"dateAdded":"2020-08-24T15:46:06.705822Z","sceneName":"final.space.s02e08.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3598956,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15324},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Closer You Get-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E09.The Closer You Get-Bluray-1080p.mkv","size":1377989659,"dateAdded":"2020-08-24T15:47:54.288576Z","sceneName":"final.space.s02e09.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3651207,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15325},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Lost Spy-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E10.The Lost Spy-Bluray-1080p.mkv","size":1384810375,"dateAdded":"2020-08-24T15:49:42.254595Z","sceneName":"final.space.s02e10.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3611301,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15326},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Set Up-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E11.The Set Up-Bluray-1080p.mkv","size":1381518408,"dateAdded":"2020-08-24T15:51:30.817789Z","sceneName":"final.space.s02e11.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3670666,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15327},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Descent Into Darkness-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E12.The Descent Into Darkness-Bluray-1080p.mkv","size":1408772801,"dateAdded":"2020-08-24T15:53:17.388784Z","sceneName":"final.space.s02e12.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3823890,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15328},{"seriesId":21,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Sixth Key-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 02\/S02E13.The Sixth Key-Bluray-1080p.mkv","size":1435704501,"dateAdded":"2020-08-24T15:55:09.341507Z","sceneName":"final.space.s02e13.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3655946,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15329},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Chapter One-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E01.Chapter One-Bluray-1080p.mkv","size":1527385873,"dateAdded":"2020-08-24T16:41:50.409538Z","sceneName":"final.space.s01e01.readnfo.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3500539,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15330},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Chapter Two-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E02.Chapter Two-Bluray-1080p.mkv","size":1485770642,"dateAdded":"2020-08-24T16:43:36.439684Z","sceneName":"final.space.s01e02.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3515658,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15331},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Chapter Three-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E03.Chapter Three-Bluray-1080p.mkv","size":1486043042,"dateAdded":"2020-08-24T16:45:24.692762Z","sceneName":"final.space.s01e03.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3647226,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15332},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Chapter Four-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E04.Chapter Four-Bluray-1080p.mkv","size":1390879098,"dateAdded":"2020-08-24T16:47:12.11829Z","sceneName":"final.space.s01e04.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3582764,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15333},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Chapter Five-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E05.Chapter Five-Bluray-1080p.mkv","size":1406560101,"dateAdded":"2020-08-24T16:48:57.539476Z","sceneName":"final.space.s01e05.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3667370,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15334},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Chapter Six-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E06.Chapter Six-Bluray-1080p.mkv","size":1397271699,"dateAdded":"2020-08-24T16:50:43.130093Z","sceneName":"final.space.s01e06.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3682571,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15335},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Chapter Seven-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E07.Chapter Seven-Bluray-1080p.mkv","size":1375714503,"dateAdded":"2020-08-24T16:52:29.324024Z","sceneName":"final.space.s01e07.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3492258,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15336},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Chapter Eight-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E08.Chapter Eight-Bluray-1080p.mkv","size":1364554287,"dateAdded":"2020-08-24T16:54:17.253077Z","sceneName":"final.space.s01e08.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3441982,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15337},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Chapter Nine-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E09.Chapter Nine-Bluray-1080p.mkv","size":1361589940,"dateAdded":"2020-08-24T16:56:03.660733Z","sceneName":"final.space.s01e09.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3628826,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15338},{"seriesId":21,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Chapter Ten-Bluray-1080p.mkv","path":"\/tv\/Final Space\/Season 01\/S01E10.Chapter Ten-Bluray-1080p.mkv","size":1438652371,"dateAdded":"2020-08-24T16:57:50.149228Z","sceneName":"final.space.s01e10.1080p.bluray.x264-dxs","releaseGroup":"dxs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3795759,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15339},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E01.And Into The Fire-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E01.And Into The Fire-WEBRip-1080p.mkv","size":785593120,"dateAdded":"2021-03-21T14:06:03.496451Z","sceneName":"Final.Space.S03E01.1080p.WEBRip.x264-WAKETHEFUP[rartv]","releaseGroup":"WAKETHEFUP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125592,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4854097,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17865},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Hidden Light-WEBDL-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E02.The Hidden Light-WEBDL-1080p.mkv","size":925330974,"dateAdded":"2021-03-28T05:48:54.802621Z","sceneName":"Final.Space.S03E02.The.Hidden.Light.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5189675,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17912},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Ventrexian-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E03.The Ventrexian-WEBRip-1080p.mkv","size":698047140,"dateAdded":"2021-04-04T04:24:40.737583Z","sceneName":"Final.Space.S03E03.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4311244,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17955},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E04.One of Us-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E04.One of Us-WEBRip-1080p.mkv","size":694778189,"dateAdded":"2021-04-11T04:24:01.864818Z","sceneName":"Final.Space.S03E04.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125592,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4276106,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17977},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E05.All The Moments Lost-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E05.All The Moments Lost-WEBRip-1080p.mkv","size":806911556,"dateAdded":"2021-04-18T06:25:26.842978Z","sceneName":"Final.Space.S03E05.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125592,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4986776,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18062},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Change is Gonna Come-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E06.Change is Gonna Come-WEBRip-1080p.mkv","size":719816406,"dateAdded":"2021-04-25T04:15:35.593853Z","sceneName":"Final.Space.S03E06.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125590,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4434567,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18086},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Chamber of Doubt-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E07.The Chamber of Doubt-WEBRip-1080p.mkv","size":685598187,"dateAdded":"2021-05-02T05:32:22.217399Z","sceneName":"Final.Space.S03E07.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4221406,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18104},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Forgiveness-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E08.Forgiveness-WEBRip-1080p.mkv","size":645763483,"dateAdded":"2021-05-09T08:10:04.028065Z","sceneName":"Final.Space.S03E08.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3963163,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18123},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Hyper-Transdimensional Bridge Rising-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E09.Hyper-Transdimensional Bridge Rising-WEBRip-1080p.mkv","size":685997829,"dateAdded":"2021-05-16T05:18:18.500376Z","sceneName":"Final.Space.S03E09.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125590,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4219761,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18176},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Until the Sky Falls-WEBDL-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E10.Until the Sky Falls-WEBDL-1080p.mkv","size":237035679,"dateAdded":"2021-05-26T19:50:42.477169Z","sceneName":"Final Space S03E10 Until the Sky Falls 1080p WEB-DL AAC x264 - HODL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1300000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18258},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Dead Speak-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E11.The Dead Speak-WEBRip-1080p.mkv","size":688091484,"dateAdded":"2021-05-30T13:53:53.553319Z","sceneName":"Final.Space.S03E11.1080p.WEBRip.x264-BAE","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237395,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18292},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Leaving-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E12.The Leaving-WEBRip-1080p.mkv","size":669572864,"dateAdded":"2021-06-07T06:01:44.819711Z","sceneName":"Final.Space.S03E12.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125590,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4116616,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18333},{"seriesId":21,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Devil's Den-WEBRip-1080p.mkv","path":"\/tv\/Final Space\/Season 03\/S03E13.The Devil's Den-WEBRip-1080p.mkv","size":793555615,"dateAdded":"2021-06-14T14:20:28.644265Z","sceneName":"Final.Space.S03E13.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4902494,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18396}],"queue":[]},"16":{"series":{"title":"Nichijou: My Ordinary Life","alternateTitles":[{"title":"Nichijou","sceneSeasonNumber":-1}],"sortTitle":"nichijou my ordinary life","status":"ended","ended":true,"overview":"Life in a small city needn't be boring. Not when your city is home to a host of deeply odd people. Granted some residents, like high-school buddies Mio and Yuko, are fairly normal. Yuko is a world-class space-case and Mio has an unusual mastery of wrestling and boxing, but... okay, so they're odd too. Together with fellow residents such as Nano, the frequently modified robot of five-year-old genius the Professor, talking cat Sakamoto (that's Sakamoto-san to you!), and their own friend, the poker-faced lunatic Mai, they lead provincial lives that are perfectly mundane and thoroughly bizarre.","previousAiring":"2011-09-24T15:00:00Z","network":"TV Aichi","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/18\/banner.jpg?lastWrite=636747176423823920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/text\/240291.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/18\/poster.jpg?lastWrite=636747176424663900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/240291-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/18\/fanart.jpg?lastWrite=637103833095266580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/240291-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":15,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-09-24T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":18947717733,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Nichijou - My Ordinary Life","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":240291,"tvRageId":0,"tvMazeId":7061,"firstAired":"2011-04-03T00:00:00Z","seriesType":"standard","cleanTitle":"nichijoumyordinarylife","imdbId":"tt2098308","titleSlug":"nichijou-my-ordinary-life","rootFolderPath":"\/tv\/","genres":["Anime","Comedy"],"tags":[],"added":"2018-01-23T22:05:10.7529105Z","ratings":{"votes":798,"value":8.1},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":41,"sizeOnDisk":18947717733,"percentOfEpisodes":100.0},"id":18},"episodes":[{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Episode 0","airDate":"2011-03-12","airDateUtc":"2011-03-11T15:00:00Z","overview":"Mio Naganohara tries to comfort her friend Yuko Aioi when she gets a 1% score on a test. Meanwhile, robotic girl Nano Shinonome tries to give the small 'Professor', who has a cold, some medicine, which she refuses to eat, and tries to get advice from their talking cat, Sakamoto. Finally 'professor' eat the medicine that Shinonome mixed the medicine with pudding called Crunchy pudding. Later, Yuko, Mio and their friend Mai Minakami go on a train ride, which is completely empty at this time of the day.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":2804},{"seriesId":18,"episodeFileId":2032,"seasonNumber":1,"episodeNumber":1,"title":"Episode 1","airDate":"2011-04-03","airDateUtc":"2011-04-02T15:00:00Z","overview":"Selamat pagi! Goats? What's wrong with goats? What does KY mean? I don't have any special features, but my toe comes off.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2778},{"seriesId":18,"episodeFileId":2033,"seasonNumber":1,"episodeNumber":2,"title":"Episode 2","airDate":"2011-04-10","airDateUtc":"2011-04-09T15:00:00Z","overview":"The incantation of resurrection. A shark. A warrior never goes back on her word! My life is over!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2779},{"seriesId":18,"episodeFileId":2034,"seasonNumber":1,"episodeNumber":3,"title":"Episode 3","airDate":"2011-04-17","airDateUtc":"2011-04-16T15:00:00Z","overview":"I'm sorry I didn't eat your black beans! I won't crumble under such threats! In human terms, I'm 20 years old. Earth Dangerous!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2780},{"seriesId":18,"episodeFileId":2035,"seasonNumber":1,"episodeNumber":4,"title":"Episode 4","airDate":"2011-04-24","airDateUtc":"2011-04-23T15:00:00Z","overview":"It doesn't grow from the sides! It's a snowman. And who would give gum to a cat, you fool? Super ultra great delicious wonderful...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2781},{"seriesId":18,"episodeFileId":2036,"seasonNumber":1,"episodeNumber":5,"title":"Episode 5","airDate":"2011-05-01","airDateUtc":"2011-04-30T15:00:00Z","overview":"Why do magnets attract each other? God is dead! The baby is coming! I'm going to draw an awesome man!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2782},{"seriesId":18,"episodeFileId":2037,"seasonNumber":1,"episodeNumber":6,"title":"Episode 6","airDate":"2011-05-08","airDateUtc":"2011-05-07T15:00:00Z","overview":"I accept her challenge. What is the principal doing to that deer? Death or die! Mio-chan, stop! You'll kill yourself!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2783},{"seriesId":18,"episodeFileId":2038,"seasonNumber":1,"episodeNumber":7,"title":"Episode 7","airDate":"2011-05-15","airDateUtc":"2011-05-14T15:00:00Z","overview":"This is simply our just God's punishment, Albert. Are you dating anyone right now? If I don't pawn this scythe and buy some food, I'll die. If you get this question right, you'll receive an arm!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2784},{"seriesId":18,"episodeFileId":2039,"seasonNumber":1,"episodeNumber":8,"title":"Episode 8","airDate":"2011-05-22","airDateUtc":"2011-05-21T15:00:00Z","overview":"I've got an explosive desire to visit an air-raid shelter! Everything you own is garbage! Just let me take it off when I'm ready. He made a snot bubble. A masterpiece.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2785},{"seriesId":18,"episodeFileId":2040,"seasonNumber":1,"episodeNumber":9,"title":"Episode 9","airDate":"2011-05-29","airDateUtc":"2011-05-28T15:00:00Z","overview":"I'm dreaming. I must be dreaming... They may maintain their flavor, but they're not maintaining their spirit! No matter how many I kill, they never learn their lesson. My lower half is unprotected!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2786},{"seriesId":18,"episodeFileId":2041,"seasonNumber":1,"episodeNumber":10,"title":"Episode 10","airDate":"2011-06-05","airDateUtc":"2011-06-04T15:00:00Z","overview":"Someone put in stained glass! Don't expect us to have infinite water! Did you know mature people don't eat snacks? When I grow up, I want to be a frill-necked lizard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2787},{"seriesId":18,"episodeFileId":2042,"seasonNumber":1,"episodeNumber":11,"title":"Episode 11","airDate":"2011-06-12","airDateUtc":"2011-06-11T15:00:00Z","overview":"Pretending to be asleep won't do any good! Super ultra great delicious wonderful bad. That must be the power of Daiku Industries. Surely happiness must taste like mud.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2788},{"seriesId":18,"episodeFileId":2043,"seasonNumber":1,"episodeNumber":12,"title":"Episode 12","airDate":"2011-06-19","airDateUtc":"2011-06-18T15:00:00Z","overview":"It's hot... It's so hot! I'm just hoping aliens invade... 5,000,000 yen per shot.The sleeping princess woke, without a kiss.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2789},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Special 1","airDate":"2011-06-24","airDateUtc":"2011-06-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2805},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Special 2","airDate":"2011-06-24","airDateUtc":"2011-06-23T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2806},{"seriesId":18,"episodeFileId":2044,"seasonNumber":1,"episodeNumber":13,"title":"Episode 13","airDate":"2011-06-26","airDateUtc":"2011-06-25T15:00:00Z","overview":"The kid is up to something ridiculous again. Your trick is out in the open! Buy it! Buy it! Buy it! Buy it! Starting tomorrow, you can go to school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2790},{"seriesId":18,"episodeFileId":2045,"seasonNumber":1,"episodeNumber":14,"title":"Episode 14","airDate":"2011-07-03","airDateUtc":"2011-07-02T15:00:00Z","overview":"Nano goes to school, the Go-Soccer Club learns the rules, while Mio and Yukko yell compliments at each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2791},{"seriesId":18,"episodeFileId":2046,"seasonNumber":1,"episodeNumber":15,"title":"Episode 15","airDate":"2011-07-10","airDateUtc":"2011-07-09T15:00:00Z","overview":"Everybody's out to prove that Nano's really a robot \u2014 especially the science teacher. The Professor gives Nano a machine gun arm and a new \"Reaction function.\" Meanwhile, Mr. Takasaki sets his sights on the student advisor, Ms. Sakurai.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2792},{"seriesId":18,"episodeFileId":2047,"seasonNumber":1,"episodeNumber":16,"title":"Episode 16","airDate":"2011-07-17","airDateUtc":"2011-07-16T15:00:00Z","overview":"Yukko can't order a cup of coffee, Mio has to fight to keep her secret. And Nano gets a suprise visit at home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2793},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Special 3","airDate":"2011-07-22","airDateUtc":"2011-07-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2807},{"seriesId":18,"episodeFileId":2048,"seasonNumber":1,"episodeNumber":17,"title":"Episode 17","airDate":"2011-07-24","airDateUtc":"2011-07-23T15:00:00Z","overview":"Sakamoto loses his scarf to a very polite crow, three people are buried alive, and Yukko is determined to no longer call out Mai's jokes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2794},{"seriesId":18,"episodeFileId":2049,"seasonNumber":1,"episodeNumber":18,"title":"Episode 18","airDate":"2011-07-31","airDateUtc":"2011-07-30T15:00:00Z","overview":"Yukko is on her way meet Mai in a neighboring town, where Mai supposedly has a way to get free candy, but on her trip she constantly makes a fool of herself and gains a stalker. The professor creates Biscuit #2, but he isn't that impressive. And the servants of Starla are playing a very deadly game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2795},{"seriesId":18,"episodeFileId":2050,"seasonNumber":1,"episodeNumber":19,"title":"Episode 19","airDate":"2011-08-07","airDateUtc":"2011-08-06T15:00:00Z","overview":"Yukko tries her best to teach Mio. Sakamoto and the Professor have a fight. And we witness a high level, no holds barred game of Go-Soccer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2796},{"seriesId":18,"episodeFileId":2051,"seasonNumber":1,"episodeNumber":20,"title":"Episode 20","airDate":"2011-08-14","airDateUtc":"2011-08-13T15:00:00Z","overview":"Mio has enlisted her friends to help her finish her manga. The material proves to be to risqu\u00e9 for Nano, Yukko doesn\u2019t want to screw up, and Mai is bored.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2797},{"seriesId":18,"episodeFileId":2052,"seasonNumber":1,"episodeNumber":21,"title":"Episode 21","airDate":"2011-08-21","airDateUtc":"2011-08-20T15:00:00Z","overview":"Misato, Weboshi, and Fe-chan talk about their current love interest. Mr. Takashi runs into Ms. Sakurai; is this a date!? The soldiers can\u2019t find the last wooden cube, but a new challenger appears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2798},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Special 4","airDate":"2011-08-26","airDateUtc":"2011-08-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2808},{"seriesId":18,"episodeFileId":2053,"seasonNumber":1,"episodeNumber":22,"title":"Episode 22","airDate":"2011-08-28","airDateUtc":"2011-08-27T15:00:00Z","overview":"Tsuyoshi attempts to disprove exorcisms. Fe-chan tries to look on the bright side of life, while Sakamoto and the Professor are surrounded by terrifying dogs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2799},{"seriesId":18,"episodeFileId":2054,"seasonNumber":1,"episodeNumber":23,"title":"Episode 23","airDate":"2011-09-04","airDateUtc":"2011-09-03T15:00:00Z","overview":"Mio is poisoned, Makoto is caught, Yukko makes a tough decision, and Mai tries to make peace with the Professor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2800},{"seriesId":18,"episodeFileId":2055,"seasonNumber":1,"episodeNumber":24,"title":"Episode 24","airDate":"2011-09-11","airDateUtc":"2011-09-10T15:00:00Z","overview":"Yukko has big news! Mihoshi and Misato share a sister moment. And who does Nano love more?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2801},{"seriesId":18,"episodeFileId":2056,"seasonNumber":1,"episodeNumber":25,"title":"Episode 25","airDate":"2011-09-18","airDateUtc":"2011-09-17T15:00:00Z","overview":"Misato and Sasahara get a little closer, Mio goes for a run, and Nakamura enters the lair of the beast.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2802},{"seriesId":18,"episodeFileId":2057,"seasonNumber":1,"episodeNumber":26,"title":"Episode 26","airDate":"2011-09-25","airDateUtc":"2011-09-24T15:00:00Z","overview":"Let's have a birthday party for Nano! Professor, what do you mean, \"a little one?\" Got it! I'll take this ugly one away, too! Cake, cake, cake!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2803},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Special 5","airDate":"2011-09-30","airDateUtc":"2011-09-29T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2809},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Special 6","airDate":"2011-10-28","airDateUtc":"2011-10-27T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2810},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Special 7","airDate":"2011-11-25","airDateUtc":"2011-11-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2811},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Special 8","airDate":"2011-12-22","airDateUtc":"2011-12-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2812},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Special 9","airDate":"2012-01-27","airDateUtc":"2012-01-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2813},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Special 10","airDate":"2012-02-24","airDateUtc":"2012-02-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2814},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Special 11","airDate":"2012-03-30","airDateUtc":"2012-03-29T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2815},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Special 12","airDate":"2012-04-27","airDateUtc":"2012-04-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2816},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Special 13","airDate":"2012-05-25","airDateUtc":"2012-05-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2817},{"seriesId":18,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Special 14","airDate":"2012-06-29","airDateUtc":"2012-06-28T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2818}],"episodeFile":[{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Episode 1-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E01.Episode 1-Bluray-1080p.mkv","size":706370217,"dateAdded":"2018-10-10T22:10:46.48832Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":711736,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3830610,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2032},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Episode 2-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E02.Episode 2-Bluray-1080p.mkv","size":741127663,"dateAdded":"2018-10-10T22:10:46.526781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":696349,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3758244,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2033},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Episode 3-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E03.Episode 3-Bluray-1080p.mkv","size":619996620,"dateAdded":"2018-10-10T22:10:46.558643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":668227,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3318262,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2034},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Episode 4-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E04.Episode 4-Bluray-1080p.mkv","size":587344948,"dateAdded":"2018-10-10T22:10:46.587333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":667779,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3117998,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2035},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Episode 5-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E05.Episode 5-Bluray-1080p.mkv","size":650475162,"dateAdded":"2018-10-10T22:10:46.614336Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":680891,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3361691,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2036},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Episode 6-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E06.Episode 6-Bluray-1080p.mkv","size":788927982,"dateAdded":"2018-10-10T22:10:46.649355Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":687109,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4069164,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2037},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Episode 7-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E07.Episode 7-Bluray-1080p.mkv","size":718423256,"dateAdded":"2018-10-10T22:10:46.681657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":674516,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3633363,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2038},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Episode 8-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E08.Episode 8-Bluray-1080p.mkv","size":636053110,"dateAdded":"2018-10-10T22:10:46.712929Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":693913,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3406000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2039},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Episode 9-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E09.Episode 9-Bluray-1080p.mkv","size":644537771,"dateAdded":"2018-10-10T22:10:46.742589Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":695397,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3448732,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2040},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Episode 10-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E10.Episode 10-Bluray-1080p.mkv","size":691493357,"dateAdded":"2018-10-10T22:10:46.774125Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":717487,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3740069,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2041},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Episode 11-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E11.Episode 11-Bluray-1080p.mkv","size":681535120,"dateAdded":"2018-10-10T22:10:46.805555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":706378,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3675806,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2042},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Episode 12-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E12.Episode 12-Bluray-1080p.mkv","size":752630973,"dateAdded":"2018-10-10T22:10:46.835538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":688274,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4163534,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2043},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Episode 13-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E13.Episode 13-Bluray-1080p.mkv","size":589243639,"dateAdded":"2018-10-10T22:10:46.867466Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":707312,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3081157,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2044},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Episode 14-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E14.Episode 14-Bluray-1080p.mkv","size":752509330,"dateAdded":"2018-10-10T22:10:46.896851Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":732856,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4112869,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2045},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Episode 15-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E15.Episode 15-Bluray-1080p.mkv","size":665355062,"dateAdded":"2018-10-10T22:10:46.927118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":723735,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3548985,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2046},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Episode 16-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E16.Episode 16-Bluray-1080p.mkv","size":660942791,"dateAdded":"2018-10-10T22:10:46.956584Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":722198,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3532816,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2047},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Episode 17-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E17.Episode 17-Bluray-1080p.mkv","size":693378321,"dateAdded":"2018-10-10T22:10:46.98683Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":686870,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3401456,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2048},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Episode 18-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E18.Episode 18-Bluray-1080p.mkv","size":666305239,"dateAdded":"2018-10-10T22:10:47.017147Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":715465,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3573884,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2049},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Episode 19-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E19.Episode 19-Bluray-1080p.mkv","size":1133310956,"dateAdded":"2018-10-10T22:10:47.046709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":764754,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6519366,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2050},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Episode 20-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E20.Episode 20-Bluray-1080p.mkv","size":911603381,"dateAdded":"2018-10-10T22:10:47.076445Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":686052,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5186080,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2051},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Episode 21-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E21.Episode 21-Bluray-1080p.mkv","size":738542085,"dateAdded":"2018-10-10T22:10:47.106239Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":712120,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4032025,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2052},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Episode 22-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E22.Episode 22-Bluray-1080p.mkv","size":736069813,"dateAdded":"2018-10-10T22:10:47.137844Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":714650,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4024893,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2053},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Episode 23-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E23.Episode 23-Bluray-1080p.mkv","size":786857021,"dateAdded":"2018-10-10T22:10:47.166906Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":711911,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4342690,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2054},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Episode 24-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E24.Episode 24-Bluray-1080p.mkv","size":799803874,"dateAdded":"2018-10-10T22:10:47.196336Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":700396,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4101925,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2055},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Episode 25-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E25.Episode 25-Bluray-1080p.mkv","size":858083973,"dateAdded":"2018-10-10T22:10:47.229277Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":712277,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4526348,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2056},{"seriesId":18,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Episode 26-Bluray-1080p.mkv","path":"\/tv\/Nichijou - My Ordinary Life\/Season 01\/S01E26.Episode 26-Bluray-1080p.mkv","size":736796069,"dateAdded":"2018-10-10T22:10:47.261042Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":685798,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3737409,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2057}],"queue":[]},"17":{"series":{"title":"Altered Carbon","alternateTitles":[{"title":"Altered Carbon Das Unsterblichkeitsprogramm","seasonNumber":-1}],"sortTitle":"altered carbon","status":"ended","ended":true,"overview":"After 250 years on ice, a prisoner returns to life in a new body with one chance to win his freedom: by solving a mind-bending murder.","previousAiring":"2020-02-27T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/19\/banner.jpg?lastWrite=637100123570239720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/332331-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/19\/poster.jpg?lastWrite=637566903685437870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/332331\/posters\/5fedd70c9a720.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/19\/fanart.jpg?lastWrite=637194969308500270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/332331-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-02-02T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":16489050721,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-02-27T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":15121081418,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Altered Carbon","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":332331,"tvRageId":0,"tvMazeId":12036,"firstAired":"2018-02-02T00:00:00Z","seriesType":"standard","cleanTitle":"alteredcarbon","imdbId":"tt2261227","titleSlug":"altered-carbon","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Drama","Science Fiction","Thriller"],"tags":[],"added":"2018-02-10T13:54:11.6917965Z","ratings":{"votes":617,"value":8.5},"statistics":{"seasonCount":2,"episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":19,"sizeOnDisk":31610132139,"percentOfEpisodes":100.0},"id":19},"episodes":[{"seriesId":19,"episodeFileId":7212,"seasonNumber":1,"episodeNumber":1,"title":"Out of the Past","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"Waking up in a new body 250 years after his death, Takeshi Kovacs discovers he's been resurrected to help a titan of industry solve his own murder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":504},{"seriesId":19,"episodeFileId":423,"seasonNumber":1,"episodeNumber":2,"title":"Fallen Angel","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"While Kovacs tracks down a man who sent Bancroft a death threat, Lt. Ortega bends the rules to keep tabs on his whereabouts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":505},{"seriesId":19,"episodeFileId":6993,"seasonNumber":1,"episodeNumber":3,"title":"In a Lonely Place","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"Kovacs recruits an unlikely partner to watch his back during a banquet at the Bancroft home, where Ortega oversees the night's grisly entertainment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":506},{"seriesId":19,"episodeFileId":7145,"seasonNumber":1,"episodeNumber":4,"title":"Force of Evil","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"Tortured by his captor, Kovacs taps into his Envoy training to survive. Ortega springs a surprise on her family for D\u00eda de los Muertos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":507},{"seriesId":19,"episodeFileId":426,"seasonNumber":1,"episodeNumber":5,"title":"The Wrong Man","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"After learning his sleeve's identity, Kovacs demands the full story from Ortega. A tip from Poe leads to a major breakthrough in the Bancroft case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":508},{"seriesId":19,"episodeFileId":427,"seasonNumber":1,"episodeNumber":6,"title":"Man with My Face","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"With Ortega's fate hanging in the balance, Kovacs drops a bombshell on the Bancrofts. Later, he comes face to face with an unsettling opponent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":509},{"seriesId":19,"episodeFileId":428,"seasonNumber":1,"episodeNumber":7,"title":"Nora Inu","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"As Kovacs reconnects with a figure from his past, his tangled history with the Protectorate, the Uprising and Quell plays out in flashbacks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":510},{"seriesId":19,"episodeFileId":429,"seasonNumber":1,"episodeNumber":8,"title":"Clash by Night","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"His world rocked, Kovacs requests a dipper to help him sew up the Bancroft case quickly. Ortega races to identify the mystery woman from Fight Drome.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":511},{"seriesId":19,"episodeFileId":430,"seasonNumber":1,"episodeNumber":9,"title":"Rage in Heaven","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"After a devastating rampage, Kovacs and his allies hatch a bold -- and very risky -- scheme to infiltrate Head in the Clouds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":512},{"seriesId":19,"episodeFileId":431,"seasonNumber":1,"episodeNumber":10,"title":"The Killers","airDate":"2018-02-02","airDateUtc":"2018-02-02T08:00:00Z","overview":"As a cornered Kovacs braces for a final showdown in the sky, a new hero emerges and more buried secrets come to light.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":513},{"seriesId":19,"episodeFileId":12625,"seasonNumber":2,"episodeNumber":1,"title":"Phantom Lady","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"Thirty years after the Bancroft case, a Meth tracks down Kovacs to offer him a job, a high-tech sleeve and a chance to see Quellcrist Falconer again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":17086},{"seriesId":19,"episodeFileId":12626,"seasonNumber":2,"episodeNumber":2,"title":"Payment Deferred","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"Carrera takes charge of the murder investigation. Kovacs sets out to find Axley's bounty hunter. Poe's memory glitches worsen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":17087},{"seriesId":19,"episodeFileId":12627,"seasonNumber":2,"episodeNumber":3,"title":"Nightmare Alley","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"Kovacs contends with ghosts from his past as he's tortured by Carrera. Poe seeks help from a fellow AI. Trepp gets a lead on the man she's after.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":17088},{"seriesId":19,"episodeFileId":12628,"seasonNumber":2,"episodeNumber":4,"title":"Shadow of a Doubt","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"While the planet celebrates Harlan's Day, Kovacs hatches an escape plan. Quell pieces together fragments of her life. Poe faces a reckoning.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":17089},{"seriesId":19,"episodeFileId":12629,"seasonNumber":2,"episodeNumber":5,"title":"I Wake Up Screaming","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"Carrera sends his secret weapon on a deadly mission. Kovacs and Trepp smuggle Quell out of the city. Poe takes a risky trip into virtual reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":17090},{"seriesId":19,"episodeFileId":12630,"seasonNumber":2,"episodeNumber":6,"title":"Bury Me Dead","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"As Quell reconnects to her past at Stronghold, she leads the clone into an underground chamber teeming with secrets. Harlan shows her true colors.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":17091},{"seriesId":19,"episodeFileId":12631,"seasonNumber":2,"episodeNumber":7,"title":"Experiment Perilous","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"When Quell's sleeve begins to shut down, Poe and Ms. Dig send her into VR. Kovacs finally learns the truth about her deadly rampages.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":17092},{"seriesId":19,"episodeFileId":12632,"seasonNumber":2,"episodeNumber":8,"title":"Broken Angels","airDate":"2020-02-27","airDateUtc":"2020-02-27T08:00:00Z","overview":"With the fate of the whole planet on the line, Kovacs, Quell and team race to find Konrad Harlan and stop a catastrophic blast of Angelfire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":17093},{"seriesId":19,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The History of Immortality","airDate":"2020-03-19","airDateUtc":"2020-03-19T07:00:00Z","overview":"What will become of the human species? Can we prolong human life? Is death avoidable? \r\nJust some of the questions we ask ourselves. Watch as Steve Aoki, Richard Morgan and more answer these questions in this documentary narrated by Neil deGrasse Tyson.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":503}],"episodeFile":[{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Fallen Angel-HDTV-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E02.Fallen Angel-HDTV-1080p.mkv","size":1623513288,"dateAdded":"2018-10-10T21:17:30.102932Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:51","scanType":"Progressive","subtitles":"English \/ English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":423},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Wrong Man-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E05.The Wrong Man-WEBDL-1080p.mkv","size":1347699985,"dateAdded":"2018-10-10T21:17:30.152396Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2610000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:51","scanType":"Progressive","subtitles":"Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":426},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Man with My Face-HDTV-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E06.Man with My Face-HDTV-1080p.mkv","size":1854900584,"dateAdded":"2018-10-10T21:17:30.167073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:11","scanType":"Progressive","subtitles":"English \/ English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":427},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Nora Inu-HDTV-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E07.Nora Inu-HDTV-1080p.mkv","size":2022449150,"dateAdded":"2018-10-10T21:17:30.183652Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:06:58","scanType":"Progressive","subtitles":"English \/ English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":428},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Clash by Night-HDTV-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E08.Clash by Night-HDTV-1080p.mkv","size":2960848547,"dateAdded":"2018-10-10T21:17:30.198038Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:09","scanType":"Progressive","subtitles":"English \/ English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":429},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Rage in Heaven-HDTV-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E09.Rage in Heaven-HDTV-1080p.mkv","size":1301067992,"dateAdded":"2018-10-10T21:17:30.214727Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:29","scanType":"Progressive","subtitles":"English \/ English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":430},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Killers-HDTV-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E10.The Killers-HDTV-1080p.mkv","size":1467422578,"dateAdded":"2018-10-10T21:17:30.235588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:55","scanType":"Progressive","subtitles":"English \/ English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":431},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E03.In a Lonely Place-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E03.In a Lonely Place-WEBDL-1080p.mkv","size":1379413478,"dateAdded":"2019-02-26T19:54:56.044886Z","sceneName":"Altered.Carbon.s01e03.WEBDL.1080p.NewStudio.TV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:07","scanType":"Progressive","subtitles":"Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6993},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Force of Evil-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E04.Force of Evil-WEBDL-1080p.mkv","size":1400443813,"dateAdded":"2019-03-09T20:57:50.403483Z","sceneName":"Altered.Carbon.s01e04.WEBDL.1080p.NewStudio.TV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:37","scanType":"Progressive","subtitles":"Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7145},{"seriesId":19,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Out of the Past-WEBDL-720p.mkv","path":"\/tv\/Altered Carbon\/Season 01\/S01E01.Out of the Past-WEBDL-720p.mkv","size":1131291306,"dateAdded":"2019-03-26T23:06:21.683418Z","sceneName":"Altered.Carbon.s01e01.WEBDL.720p.NewStudio.TV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1780000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"58:53","scanType":"Progressive","subtitles":"Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7212},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Phantom Lady-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E01.Phantom Lady-WEBDL-1080p.mkv","size":1467430879,"dateAdded":"2020-02-27T09:39:48.337375Z","sceneName":"Altered.Carbon.S02E01.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:07","scanType":"Progressive","subtitles":"English \/ English \/ Norwegian \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Dutch \/ Portuguese \/ Spanish \/ French \/ Czech \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12625},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Payment Deferred-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E02.Payment Deferred-WEBDL-1080p.mkv","size":1463050898,"dateAdded":"2020-02-27T09:40:10.726972Z","sceneName":"Altered.Carbon.S02E02.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:43","scanType":"Progressive","subtitles":"English \/ Norwegian \/ Polish \/ Danish \/ Finnish \/ Swedish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Dutch \/ Portuguese \/ Spanish \/ French \/ Czech \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12626},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Nightmare Alley-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E03.Nightmare Alley-WEBDL-1080p.mkv","size":1652562701,"dateAdded":"2020-02-27T09:40:23.311033Z","sceneName":"Altered.Carbon.S02E03.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3291788,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:11","scanType":"Progressive","subtitles":"English \/ English \/ Norwegian \/ Spanish \/ Greek \/ French \/ Czech \/ Italian \/ Spanish \/ Portuguese \/ Portuguese \/ Dutch \/ Turkish \/ Swedish \/ Indonesian \/ Finnish \/ Polish \/ German \/ Russian \/ Danish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12627},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Shadow of a Doubt-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E04.Shadow of a Doubt-WEBDL-1080p.mkv","size":1909041191,"dateAdded":"2020-02-27T09:40:43.065133Z","sceneName":"Altered.Carbon.S02E04.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:07","scanType":"Progressive","subtitles":"English \/ English \/ Norwegian \/ Polish \/ Danish \/ Finnish \/ Swedish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Dutch \/ Portuguese \/ Spanish \/ French \/ Czech \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12628},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E05.I Wake up Screaming-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E05.I Wake up Screaming-WEBDL-1080p.mkv","size":3051800513,"dateAdded":"2020-02-27T09:41:04.551338Z","sceneName":"Altered.Carbon.S02E05.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:17","scanType":"Progressive","subtitles":"English \/ Norwegian \/ Polish \/ Danish \/ Finnish \/ Swedish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Dutch \/ Portuguese \/ Spanish \/ French \/ Czech \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12629},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Bury Me Dead-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E06.Bury Me Dead-WEBDL-1080p.mkv","size":2085247507,"dateAdded":"2020-02-27T09:41:40.119392Z","sceneName":"Altered.Carbon.S02E06.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":"English \/ Norwegian \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Dutch \/ Portuguese \/ Spanish \/ French \/ Czech \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12630},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Experiment Perilous-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E07.Experiment Perilous-WEBDL-1080p.mkv","size":1445892981,"dateAdded":"2020-02-27T09:42:05.843432Z","sceneName":"Altered.Carbon.S02E07.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3123301,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:33","scanType":"Progressive","subtitles":"English \/ Norwegian \/ Spanish \/ Greek \/ French \/ Czech \/ Italian \/ Spanish \/ Portuguese \/ Portuguese \/ Dutch \/ Turkish \/ Swedish \/ Indonesian \/ Finnish \/ Polish \/ German \/ Russian \/ Danish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12631},{"seriesId":19,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Broken Angels-WEBDL-1080p.mkv","path":"\/tv\/Altered Carbon\/Season 02\/S02E08.Broken Angels-WEBDL-1080p.mkv","size":2046054748,"dateAdded":"2020-02-27T09:42:21.59991Z","sceneName":"Altered.Carbon.S02E08.1080p.WEB.X264-METCON","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4319057,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:33","scanType":"Progressive","subtitles":"English \/ Norwegian \/ Spanish \/ Greek \/ French \/ Czech \/ Italian \/ Spanish \/ Portuguese \/ Portuguese \/ Dutch \/ Turkish \/ Swedish \/ Indonesian \/ Finnish \/ Polish \/ German \/ Russian \/ Danish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12632}],"queue":[]},"18":{"series":{"title":"Overlord","alternateTitles":[{"title":"Overlord II","sceneSeasonNumber":2},{"title":"Overlord S2","sceneSeasonNumber":2},{"title":"Overlord 2","sceneSeasonNumber":2},{"title":"Overlord III","sceneSeasonNumber":3},{"title":"Overlord S3","sceneSeasonNumber":3},{"title":"Overlord 3","sceneSeasonNumber":3}],"sortTitle":"overlord","status":"ended","ended":true,"overview":"In the year 2138, virtual reality gaming is booming. Yggdrasil, a popular online game is quietly shut down one day. However, one player named Momonga decides to not log out. Momonga is then transformed into the image of a skeleton as \"the most powerful wizard.\" The world continues to change, with non-player characters (NPCs) beginning to feel emotion. Having no parents, friends, or place in society, this ordinary young man Momonga then strives to take over the new world the game has become.","previousAiring":"2018-10-02T13:00:00Z","network":"AT-X","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/23\/banner.jpg?lastWrite=637100124027111230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/294002-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/23\/poster.jpg?lastWrite=637618943371492890","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b3832a5901f9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/23\/fanart.jpg?lastWrite=637354606091476200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/294002-11.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":44,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-09-29T13:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":21373434596,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-04-03T13:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11232081611,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-02T13:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":19308562533,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Overlord","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":294002,"tvRageId":49515,"tvMazeId":4270,"firstAired":"2015-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"overlord","imdbId":"tt4869896","titleSlug":"overlord","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Fantasy"],"tags":[],"added":"2018-04-08T15:10:56.202788Z","ratings":{"votes":360,"value":9.0},"statistics":{"seasonCount":3,"episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":83,"sizeOnDisk":51914078740,"percentOfEpisodes":100.0},"id":23},"episodes":[{"seriesId":23,"episodeFileId":2059,"seasonNumber":1,"episodeNumber":1,"title":"End and Beginning","airDate":"2015-07-07","airDateUtc":"2015-07-07T13:00:00Z","overview":"Momonga is a regular salaryman who leads a guild in an DMMO-RPG known as Yggdrasil. After twelve years of playing the game, the servers are finally shutting down. Momonga logs in for the last time, seeing the game to its end. However, after the clock strikes midnight, nothing changes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2819},{"seriesId":23,"episodeFileId":2061,"seasonNumber":1,"episodeNumber":2,"title":"Floor Guardians","airDate":"2015-07-14","airDateUtc":"2015-07-14T13:00:00Z","overview":"Grateful that they weren't cast aside, the floor guardians experience the rule of their true master for the first time. Momonga quickly assess the situation and works toward protecting the tomb from invaders while contemplating what he must do.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2820},{"seriesId":23,"episodeFileId":2064,"seasonNumber":1,"episodeNumber":3,"title":"The Battle of Carne Village","airDate":"2015-07-21","airDateUtc":"2015-07-21T13:00:00Z","overview":"Momonga continues his efforts to protect Nazarick from the unknown forces he may be up against in this world. As he manipulates the Mirror of Remote Viewing, he notices a village being attacked and decides to test his strength against humans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2821},{"seriesId":23,"episodeFileId":2067,"seasonNumber":1,"episodeNumber":4,"title":"Ruler of Death","airDate":"2015-07-28","airDateUtc":"2015-07-28T13:00:00Z","overview":"Momonga finds that the attackers of Carne Village were Slane Theocracy soldiers dressed as people from the Baharuth Empire. As the attack to lure and eliminate Gazef Stronoff continues, Momonga takes this chance to continue his tests...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2822},{"seriesId":23,"episodeFileId":2070,"seasonNumber":1,"episodeNumber":5,"title":"Two Adventurers","airDate":"2015-08-04","airDateUtc":"2015-08-04T13:00:00Z","overview":"Momonga sets out with Narberal disguised as humans under the names of Momon and Nabe for the city of E-Rantel. There they register to become adventurers in order to gain more information about this unknown world. As they do, evil gathers around them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2823},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Play Play Pleiades - Play 1: End and Beginning","airDate":"2015-08-04","airDateUtc":"2015-08-04T13:00:00Z","overview":"Ainz accidentally used Total Maniac on himself and panicked after regaining his emotions. Even looking at himself scares him. As he is panicking, Albedo breaks into his room, thinking he is in trouble as he did not reply her earlier, which he then gave an excuse that he was thinking about the situation in the upper floors. As he stared at her, he accidentally commented on how beautiful Albedo really is, causing Albedo to become momentarily stunned and become excitedly love struck the next moment.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2858},{"seriesId":23,"episodeFileId":2073,"seasonNumber":1,"episodeNumber":6,"title":"Journey","airDate":"2015-08-11","airDateUtc":"2015-08-11T13:00:00Z","overview":"While Momonga has some doubts, he accepts Nphirea Balear's request under the condition that the members of the Swords of Darkness join them. Though her urge to kill keeps distracting her, Clementine continues to slowly find her way to Nphirea.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2824},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Play Play Pleiades - Play 2: Combat Maids","airDate":"2015-08-11","airDateUtc":"2015-08-11T13:00:00Z","overview":"Albedo explained to Ainz that the Pleiades are requesting an audience with him. Ainz initially approved of it but when he was just about to refuse by saying he doesn't feel well, Albedo immediately left the room and called the Battle Maids. When the Pleiades arrived, he ordered them to converse to him normally so they won't notice that he is panicking, which the Pleiades agreed, although each of them have their own unique way of doing so.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2859},{"seriesId":23,"episodeFileId":2077,"seasonNumber":1,"episodeNumber":7,"title":"Wise King of Forest","airDate":"2015-08-18","airDateUtc":"2015-08-18T13:00:00Z","overview":"Momonga and his group continue to Carne Village. There they see that the villagers are working toward fortifying their defenses against possible future enemies. Nphirea meets up with Enri and asks her about this man named Ains Ooal Gown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2825},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Play Play Pleiades - Play 3: Fists That Cut Through Lies","airDate":"2015-08-18","airDateUtc":"2015-08-18T13:00:00Z","overview":"As Narberal was training in the Amphitheater of the sixth floor, Ainz came and complimented her. Ainz successfully convinced her that he had a reason for ordering them to converse normally with him, making him dance happily. As Narberal asked what he is doing, he made an excuse that his dance is a new magical pose that only he knows of and that pose allows him to cast magic faster, reducing the casting time. Fascinated, Narberal asked him to teach her the magic pose, which Ainz had no choice but to agree. As the two of them danced, the other Pleiades arrived and joined the dance. After that, they thought that they had matured more thanks to Ainz teachings, which caused Ainz to feel even more guilt and ashamed for covering his lies with more lies.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2860},{"seriesId":23,"episodeFileId":2079,"seasonNumber":1,"episodeNumber":8,"title":"Twin Swords of Slashing Death","airDate":"2015-08-25","airDateUtc":"2015-08-25T13:00:00Z","overview":"After Momonga registers Hamusuke with the guild, he goes to Nphirea's home to find that his client has been kidnapped. The zombified remains of the Swords of Darkness litter the storage room. And there, Momonga finds the tortured body of Ninya.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2826},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Play Play Pleiades - Play 4: Two Victims","airDate":"2015-08-25","airDateUtc":"2015-08-25T13:00:00Z","overview":"As Ainz thought about how each members of the Pleiades had unique personalities and were cute, he accidentally shouted \"Game is the best\" without realising it. He then thought about how in video games, you can make your ideal girl easily. Then, he saw a blotted Solution Epsilon and asked what happened. Entoma explained that Solution had swallowed a human whole and is currently torturing it with acid. Frightened because of the fact that Solution is dissolving a human inside her, Ainz ordered her to return to her original form and she spit the half acidified human out, returning back to her slim figure. In order to clean up the mess on the carpet, Entoma carried the human away from sight and ate him alive, making Ainz even more frightened.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2861},{"seriesId":23,"episodeFileId":2082,"seasonNumber":1,"episodeNumber":9,"title":"The Dark Warrior","airDate":"2015-09-01","airDateUtc":"2015-09-01T13:00:00Z","overview":"Momonga and Narberal begin their respective battles against Clementine and Khajit. Momonga takes this chance to learn about the mechanics of fighting in this world, but in the end, he must show Clementine the consequences of offending him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2827},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Play Play Pleiades - Play 5: Heart of a Predator","airDate":"2015-09-01","airDateUtc":"2015-09-01T13:00:00Z","overview":"Ainz confirmed the race and classes of the Pleiades members (Yuri almost took off her collar and let her head fall off in the process). He then asked how the Pleiades didn't show much expression, which Yuri replied that they are still nowhere near Ainz's level. While Lupusregina, CZ and Narberal spoke of how Yuri can emit a scary aura sometimes, Ainz stared at Entoma and comments on how good she is at making poker faces, which Solution explained that her face is a mimic. Curious of what were the other faces she would make, Ainz ordered her to show it, which she responded by removing her mask, showing her real face to Ainz, making Ainz scream.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2862},{"seriesId":23,"episodeFileId":2085,"seasonNumber":1,"episodeNumber":10,"title":"True Vampire","airDate":"2015-09-08","airDateUtc":"2015-09-08T13:00:00Z","overview":"Momonga finds out that Shalltear has revolted against him, due to something that had happened while she was on her mission with Sebas and Solution. The story rewinds a bit and goes over that very event. What could possibly change her loyalty to him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2828},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Play Play Pleiades - Play 6: Battle Outside Carne Village","airDate":"2015-09-08","airDateUtc":"2015-09-08T13:00:00Z","overview":"Ainz asked for the purpose of the Pleiades seeking an audience with him. Yuri explained that Lupusregina wanted to report to him of her mission in Carne Village and would like to use this chance to greet him. Yuri also commented on how Lupusregina didn't seem to understand her mission, which Lupusregina responded that she knows this and that about Carne Village, including their \"Night Activities\", making Albedo excited for a second. Ainz asked for Albedo's opinion on the matter, to which Albedo responded that she is an honest child.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2863},{"seriesId":23,"episodeFileId":2088,"seasonNumber":1,"episodeNumber":11,"title":"Confusion and Understanding","airDate":"2015-09-15","airDateUtc":"2015-09-15T13:00:00Z","overview":"Momonga does damage control at the guild while he assesses the reason for Shalltear's revolt. Coming to the conclusion that she is under an incurable status effect, Momonga goes to the treasury to retrieve some of the powerful weapons of Nazarick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2829},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Play Play Pleiades - Play 7: Before the Artillery","airDate":"2015-09-15","airDateUtc":"2015-09-15T13:00:00Z","overview":"Ainz was thinking about CZ's character and wishes to strengthen his relationship with her. When he entered the Laboratory, he found out that CZ has been modified into CZ2128 \u0394 MK-II by Solution and Entoma (making her look like a tank). They explained that they are strengthening CZ by modifying her. While CZ had no objections, Ainz still disagrees. Solution and Entoma further explained CZ's new feature like her Drill and the button in her back that breaks her character. Then Yuri, Lupusregina and Narberal entered the room and as Ainz was explaining how Solution and Entoma are going overboard, Solution and Entoma further modified CZ, this time they made her look like Gundam that can also fly.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2864},{"seriesId":23,"episodeFileId":2091,"seasonNumber":1,"episodeNumber":12,"title":"The Bloody Valkyrie","airDate":"2015-09-22","airDateUtc":"2015-09-22T13:00:00Z","overview":"Though Shalltear's skill set puts Momonga at a complete disadvantage, he steps forward into battle. He gave various world items to his guardians to ensure the safety of Nazarick in his absence. Now, all that is left is a battle of life and death!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2830},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Play Play Pleiades - Play 8: Control and Chaos","airDate":"2015-09-22","airDateUtc":"2015-09-22T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2865},{"seriesId":23,"episodeFileId":2094,"seasonNumber":1,"episodeNumber":13,"title":"Player VS Non Player Character","airDate":"2015-09-29","airDateUtc":"2015-09-29T13:00:00Z","overview":"Momonga reminds Shalltear that he is the master of Nazarick and that his name carries the weight of all the supreme beings of Ains Ooal Gown. After the battle comes to a close, Momonga quickly takes action to strengthen the defenses of Nazarick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2831},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Ple Ple Pleiades \u2013 Nazarick's Greatest Crisis","airDate":"2016-09-30","airDateUtc":"2016-09-30T13:00:00Z","overview":"Features the appearance of the Pleiades combat maids, as well as the rest of the Floor Guardians.\r\n\r\nNote: Bundled with the 11th volume of the light novel.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2866},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Movie: The Undead King","airDate":"2017-02-25","airDateUtc":"2017-02-25T13:00:00Z","overview":"First Overlord recap film featuring episodes one to seven of Season 1.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2867},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Movie: The Dark Hero","airDate":"2017-03-11","airDateUtc":"2017-03-11T13:00:00Z","overview":"Second Overlord recap film featuring episodes eight to thirteen of Season 1.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2868},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Pure Pure Pleiades - A Magical Beast's Love","airDate":"2017-09-13","airDateUtc":"2017-09-13T13:00:00Z","overview":"Hamsuke falls in love with another creature like her, and asks the Pleiades for assistance.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2869},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Pure Pure Pleiades - The Automation and The Cat","airDate":"2017-09-13","airDateUtc":"2017-09-13T13:25:00Z","overview":"Pandora's Actor turns into a cat to gain affection, and serves as CZ Delta's cat for a time.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2870},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Undead King - Theater Manners","airDate":"2017-09-13","airDateUtc":"2017-09-13T13:50:00Z","overview":"A theater manners short bundled with the recap movie's BD\/DVD releases.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2871},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"The Dark Hero - Theater Manners","airDate":"2017-09-13","airDateUtc":"2017-09-13T14:15:00Z","overview":"A theater manners short bundled with the recap movie's BD\/DVD releases.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2872},{"seriesId":23,"episodeFileId":8207,"seasonNumber":2,"episodeNumber":1,"title":"The Dawn of Despair","airDate":"2018-01-09","airDateUtc":"2018-01-09T13:00:00Z","overview":"Officers of the Slane Theocracy gather to discuss recent losses. The noblemen of Estize plot to push back the Empire. Ains surveys a world map as his plans are set in motion. Shalltear recovers from her ordeal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2832},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Play Play Pleiades 2 - Play 1: Curtain Rise of Confusion","airDate":"2018-01-09","airDateUtc":"2018-01-09T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2873},{"seriesId":23,"episodeFileId":8208,"seasonNumber":2,"episodeNumber":2,"title":"Departure","airDate":"2018-01-16","airDateUtc":"2018-01-16T13:00:00Z","overview":"Cocytus gives a declaration of war to all the tribes of the Lizardmen, expecting an easy takeover. However, the Lizardmen decide to try to unite their tribes against their common foe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2833},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Play Play Pleiades 2 - Play 2: Secretaries of the Company President","airDate":"2018-01-16","airDateUtc":"2018-01-16T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2874},{"seriesId":23,"episodeFileId":8209,"seasonNumber":2,"episodeNumber":3,"title":"Lizard Men, Gathering","airDate":"2018-01-23","airDateUtc":"2018-01-23T13:00:00Z","overview":"Zenberu tests Zaryusu's strength in combat, while the latter defends Crusch's honor. The Lizardmen chiefs conduct a war council, and formulate a strategy to defend themselves against their common enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2834},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Play Play Pleiades 2 - Play 3: Gather, Executives","airDate":"2018-01-23","airDateUtc":"2018-01-23T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2875},{"seriesId":23,"episodeFileId":8210,"seasonNumber":2,"episodeNumber":4,"title":"Army of Death","airDate":"2018-01-30","airDateUtc":"2018-01-30T13:00:00Z","overview":"The alliance of the Lizard men win the battle and defeat the army of undead. The defeat guardian Cocytus and the new ability to learn from their mistakes, prove that the guardians can adapt to new situations. Ainz Ooal Gown therefore changes his tactics, ordering Cocytus to bring the Lizard men to their knees and under the rule of the Great Tomb of Nazarick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2835},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Play Play Pleiades 2 - Play 4: Amazing Loyalty","airDate":"2018-01-30","airDateUtc":"2018-01-30T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2876},{"seriesId":23,"episodeFileId":8211,"seasonNumber":2,"episodeNumber":5,"title":"The Freezing God","airDate":"2018-02-06","airDateUtc":"2018-02-06T13:00:00Z","overview":"At the outpost in the Tob Forest, Ains strategizes with his guardians, and imposes Shalltear's penance upon her. The Lizard Man chiefs assemble and receive Cocytus on the battlefield for their final showdown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2836},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Play Play Pleiades 2 - Play 5: Director of Judgement","airDate":"2018-02-06","airDateUtc":"2018-02-06T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2877},{"seriesId":23,"episodeFileId":8212,"seasonNumber":2,"episodeNumber":6,"title":"Those Who Pick Up, Those Who Are Picked Up","airDate":"2018-02-13","airDateUtc":"2018-02-13T13:00:00Z","overview":"Sebas happens upon a near-lifeless woman, and takes her under his protection. Brain, left defeated by his encounter with Shalltear, meets up with Gazef. Members of the Blue Rose take measures against a drug plantation","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2837},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Play Play Pleiades 2 - Play 6: The Gatherers","airDate":"2018-02-13","airDateUtc":"2018-02-13T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2878},{"seriesId":23,"episodeFileId":8213,"seasonNumber":2,"episodeNumber":7,"title":"Blue Roses","airDate":"2018-02-20","airDateUtc":"2018-02-20T13:00:00Z","overview":"Gazef finds Climb practicing with his sword outside the castle, and asks to spar with him. Renner and Lakyus examine the coded document recovered by Evileye. Sebas finds himself beset upon from all sides over Tuare.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2838},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Play Play Pleiades 2 - Play 7: Bits and Pieces","airDate":"2018-02-20","airDateUtc":"2018-02-20T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2879},{"seriesId":23,"episodeFileId":8214,"seasonNumber":2,"episodeNumber":8,"title":"A Boy's Feeling","airDate":"2018-02-27","airDateUtc":"2018-02-27T13:00:00Z","overview":"Climb delivers Lakyus's message to Evileye and Gagaran, who offer guidance to the young man. Climb happens upon some men beating up a boy in the street, who is then rescued by Sebas, from whom he seeks training.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2839},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Play Play Pleiades 2 - Play 8: Feelings of the Customer","airDate":"2018-02-27","airDateUtc":"2018-02-27T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2880},{"seriesId":23,"episodeFileId":8215,"seasonNumber":2,"episodeNumber":9,"title":"Soaring Sparks of Fire","airDate":"2018-03-06","airDateUtc":"2018-03-06T13:00:00Z","overview":"Sebas begins his raid of the brothel from one side, while Climb and Brain enter from the other side. While Climb covers the exit alone, he is confronted by Succulent and Cocco Doll trying to flee and a desperate fight begins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2840},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Play Play Pleiades 2 - Play 9: Ballistic People","airDate":"2018-03-06","airDateUtc":"2018-03-06T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2881},{"seriesId":23,"episodeFileId":8216,"seasonNumber":2,"episodeNumber":10,"title":"Disturbance Begins in the Royal Capital","airDate":"2018-03-13","airDateUtc":"2018-03-13T13:00:00Z","overview":"Ains calls on Sebas to answer for his actions, and to discuss what is to become of Tuare. Renner meets with the Blue Rose, then Marquis Raeven, to consult with them about her planned attacks against Eight Fingers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2841},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Play Play Pleiades 2 - Play 10: Oh, I Wonder","airDate":"2018-03-13","airDateUtc":"2018-03-13T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2882},{"seriesId":23,"episodeFileId":8217,"seasonNumber":2,"episodeNumber":11,"title":"Jaldabaoth","airDate":"2018-03-20","airDateUtc":"2018-03-20T13:00:00Z","overview":"Demiurge takes charge of Nazarick's forces, laying out the mission to strike at Eight Fingers. Meanwhile, Lakyus details a similar mission to her squad captains. Sebas, Climb, and Brain raid Six Arms' compound together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2842},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Play Play Pleiades 2 - Play 11: A Dangerous One","airDate":"2018-03-20","airDateUtc":"2018-03-20T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2883},{"seriesId":23,"episodeFileId":8218,"seasonNumber":2,"episodeNumber":12,"title":"The Final Battle of the Disturbance","airDate":"2018-03-27","airDateUtc":"2018-03-27T13:00:00Z","overview":"Evileye petitions Momon to help her, and he begins fighting the disguised Demiurge. As Climb and the others try to get Tuare out of the compound, they face resistance. Renner convenes an emergency strategy meeting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2843},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Play Play Pleiades 2 - Play 12: Prelude to Industrial Upheaval","airDate":"2018-03-27","airDateUtc":"2018-03-27T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2884},{"seriesId":23,"episodeFileId":8219,"seasonNumber":2,"episodeNumber":13,"title":"The Ultimate Trump Card","airDate":"2018-04-03","airDateUtc":"2018-04-03T13:00:00Z","overview":"The guardsmen and adventurers face a daunting array of demons until Momon arrives and takes charge. Brain once again comes face to face with Shalltear. While Evileye is occupied, Demiurge reveals his plan to Ains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2844},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Play Play Pleiades 2 - Play 13: Curtain Rise to Despair","airDate":"2018-04-03","airDateUtc":"2018-04-03T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2885},{"seriesId":23,"episodeFileId":6217,"seasonNumber":3,"episodeNumber":1,"title":"A Ruler's Melancholy","airDate":"2018-07-10","airDateUtc":"2018-07-10T13:00:00Z","overview":"With the events of Re-Estize Kingdom and the Lizard Men behind them, the loyal servants of Nazarick return to their daily routines. Ains, however, is worried about the work\/life balance of his NPCs. They work day in and day out without rest...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2845},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Play Play Pleiades 3 - Play 1: A Ruler\u2019s New Melancholy","airDate":"2018-07-10","airDateUtc":"2018-07-10T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2886},{"seriesId":23,"episodeFileId":6218,"seasonNumber":3,"episodeNumber":2,"title":"Carne Village Once More","airDate":"2018-07-17","airDateUtc":"2018-07-17T13:00:00Z","overview":"As Nazarick decides on their next steps, the village of Carne focuses on rebuilding their homes. Enri and her goblin troop are busy protecting the villagers, training the vigilante troop, and manning the fields. All the while, unrest builds in the forest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2846},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Play Play Pleiades 3 - Play 2: Shaltear Once More","airDate":"2018-07-17","airDateUtc":"2018-07-17T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2887},{"seriesId":23,"episodeFileId":6219,"seasonNumber":3,"episodeNumber":3,"title":"Enri's Upheaval and Hectic Days","airDate":"2018-07-24","airDateUtc":"2018-07-24T13:00:00Z","overview":"Enri meets Agu, who tells everyone that the Giant of the East and Demon Snake of the West are gathering forces to fight the master of the Monument of Ruin. Enri and the others take action, but little does she know how crazy the day will become...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2847},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Play Play Pleiades 3 - Play 3: The Far-Removed and Subtly Troubling Situation","airDate":"2018-07-24","airDateUtc":"2018-07-24T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2888},{"seriesId":23,"episodeFileId":6220,"seasonNumber":3,"episodeNumber":4,"title":"Giant of the East, Demon Snake of the West","airDate":"2018-07-31","airDateUtc":"2018-07-31T13:00:00Z","overview":"Ains decides to go and see the Giant of the East and Demon Snake of the West himself. If they are similar to Hamusuke, they may have some worth as experimental subjects. They may also be useful in testing Lupisregina's capabilities with the village.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2848},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Play Play Pleiades 3 - Play 4: Overseer of Guardians, [Blank] for Short","airDate":"2018-07-31","airDateUtc":"2018-07-31T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2889},{"seriesId":23,"episodeFileId":6221,"seasonNumber":3,"episodeNumber":5,"title":"Two Leaders","airDate":"2018-08-07","airDateUtc":"2018-08-07T13:00:00Z","overview":"The \"Giant of the East\" has come to attack Carne Village, but the villagers are willing to put their lives on the line to protect their home and families. While the goblin troop defends the front gates, Enri and Nphirea defends the village from behind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2849},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Play Play Pleiades 3 - Play 5: One of Two Trendsetters","airDate":"2018-08-07","airDateUtc":"2018-08-07T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2890},{"seriesId":23,"episodeFileId":6222,"seasonNumber":3,"episodeNumber":6,"title":"Invitation to Death","airDate":"2018-08-14","airDateUtc":"2018-08-14T13:00:00Z","overview":"The Tomb of Nazarick continues their plan for world domination and Ains visits the Baharuth Empire as Momon of Darkness. Meanwhile, Count Femel hires a large number of Workers to explore a certain tomb recently discovered in Re-Estize Kingdom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2850},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Play Play Pleiades 3 - Play 6: Invitation to Liberation","airDate":"2018-08-14","airDateUtc":"2018-08-14T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2891},{"seriesId":23,"episodeFileId":6223,"seasonNumber":3,"episodeNumber":7,"title":"Butterfly Entangled in a Spider's Web","airDate":"2018-08-21","airDateUtc":"2018-08-21T13:00:00Z","overview":"The foolish workers that have entered the Tomb of Nazarick greatly anger Ains Ooal Gown. Albedo and the others have already finished preparations for their welcome and Lord Ains watches on, determined that not a single one leaves his tomb alive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2851},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Play Play Pleiades 3 - Play 7: An Otoko no Ko Entangled In a Trend","airDate":"2018-08-21","airDateUtc":"2018-08-21T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2892},{"seriesId":23,"episodeFileId":6224,"seasonNumber":3,"episodeNumber":8,"title":"A Handful of Hope","airDate":"2018-08-28","airDateUtc":"2018-08-28T13:00:00Z","overview":"The worker group Foresight is teleported to the fighting arena in the sixth floor to challenge the great Ains Ooal Gown. Ains tries to restrain his smoldering fury as he disposes the last of the filthy thieves that dare trample into his treasured Nazarick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2852},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Play Play Pleiades 3 - Play 8: A Handful of Moe Factor","airDate":"2018-08-28","airDateUtc":"2018-08-28T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2893},{"seriesId":23,"episodeFileId":6225,"seasonNumber":3,"episodeNumber":9,"title":"War of Words","airDate":"2018-09-04","airDateUtc":"2018-09-04T13:00:00Z","overview":"Ainz sends Aura and Mare to the Empire with a message. Come and apologize or watch as your country burn to the ground. With no other option, Emperor Jircniv heads toward Nazarick with the head of a noble in tow. Though, things are not as they seem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2853},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Play Play Pleiades 3 - Play 9: Peerless","airDate":"2018-09-04","airDateUtc":"2018-09-04T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2894},{"seriesId":23,"episodeFileId":6226,"seasonNumber":3,"episodeNumber":10,"title":"Preparation for War","airDate":"2018-09-11","airDateUtc":"2018-09-11T13:00:00Z","overview":"Re-Estize Kingdom prepares for war after receiving a declaration from the Empire that they will claim the land near E-Rantel for the Sorcerer King Gown. Gazef knows the magic caster's strength, but he cannot stop what has already been set into motion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2854},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Play Play Pleiades 3 - Play 10: Preparation for Resolution","airDate":"2018-09-11","airDateUtc":"2018-09-11T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2895},{"seriesId":23,"episodeFileId":6227,"seasonNumber":3,"episodeNumber":11,"title":"Another Battle","airDate":"2018-09-18","airDateUtc":"2018-09-18T13:00:00Z","overview":"Carne Village is in a pinch once again. An army led by the first prince of Re-Estize has appeared, demanding to be let in so the villagers can be questioned about Ains Ooal Gown. Enri must make a decision for the village and its people.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2855},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Play Play Pleiades 3 - Play 11: Another Truth","airDate":"2018-09-18","airDateUtc":"2018-09-18T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2896},{"seriesId":23,"episodeFileId":6228,"seasonNumber":3,"episodeNumber":12,"title":"Massacre","airDate":"2018-09-25","airDateUtc":"2018-09-25T13:00:00Z","overview":"The war is finally starting. The Empire plans to use this chance to see the depths of the Sorcerer King's strength and the Kingdom is confident that their have fully prepared themselves for this war. Gazef stands ready. Now, let the despair begin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2856},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Play Play Pleiades 3 - Play 12: Great Anarchy","airDate":"2018-09-25","airDateUtc":"2018-09-25T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10756},{"seriesId":23,"episodeFileId":6229,"seasonNumber":3,"episodeNumber":13,"title":"Player vs Player","airDate":"2018-10-02","airDateUtc":"2018-10-02T13:00:00Z","overview":"Gazef challenges Ains to a duel that is impossible to win and Ains decides to accept. The battle will soon come to an end and the fate of E-Rantel will be decided. Even amongst the bloodshed, Gazef and Ains both hold the other in deep respect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":2857},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Play Play Pleiades 3 - Play 13: MVP","airDate":"2018-10-02","airDateUtc":"2018-10-02T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10757},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Pure Pure Pleiades - Clementine Fugitive Version Episode 1","airDate":"2018-11-23","airDateUtc":"2018-11-23T13:00:00Z","overview":"One of the 12 executives of Zuranon, and former Black Scripture 9th Seat: Clementine. Having absolute confidence in her arms, sets out in life to escape and conceal herself from a certain magic caster. At that time, Nazarick is gathering information about martial arts under the direction of Ainz Ooal Gown. Yuri Alpha and Lupusregina Beta set out to gather information for their master which leads to a bar at Beta's insistence. There they find Clementine drinking her woes. Lupusregina enthusiastically introduces her and Yuri to the fugitive. Clementine seeing that they are a bit strange but harmless decides to entertain them, introducing herself as Claire. She and Lupusregina get along and eventually the latter challenges the human to a drinking contest. Not willing to back down from a challenge Clementine accepts and the two women begin drinking large copious amounts of alcohol. Lupusregina manages to avoid being drunk using [Cure Poison] unbeknownst to Clementine.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10758},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Pure Pure Pleiades - Clementine Fugitive Version Episode 2","airDate":"2018-11-24","airDateUtc":"2018-11-24T13:00:00Z","overview":"Clementine awakens from a hangover to find herself in a room. After she had been killed and later resurrected, Clementine at her current state right now felt tired of being on the run from her past. Before she can go on to explain her reason, she pukes on the spot. She decides with all things as they are she should leave.\r\nSolution Epsilon and Entoma Vasilissa Zeta come across the pub where their sisters had entered to gather information. The latter agrees assuredly and pays it a visit there.\r\nOutside Clementine vaguely recognizes the pub, however, draws a blank and decides to go in to gather supplies for her break to the Baharuth Empire. Clementine takes notices of the two maids while as Entoma became aware of the fact that the former is watching them. Solution also takes attentive of the girl who was watching them interact. Entoma asks whether they should kill her, but Solution dismisses the idea as they are currently gathering information under Ainz's orders.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18456},{"seriesId":23,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Pure Pure Pleiades - Clementine Fugitive Version Episode 3","airDate":"2018-11-27","airDateUtc":"2018-11-27T13:00:00Z","overview":"Clementine awakens in the same room as the previous episode. She wonders why she feels so embarrassed. She begins her introduction but stops mid-sentence, feeling something is off with this situation she was in.\r\nBack in the Great Tomb of Nazarick, Ainz Ooal Gown comments gathering information is hard. Albedo agrees stating that she will also regularly travel to the Re-Estize Kingdom to gather information. Ainz notes if it is a visit to the princess, he suggests asking Albedo maybe she can get information on Martial Arts from her.\r\nClementine finds the pub she was previously at in ruins. She remembers having a drink here, but that's all. She senses something bad had happened here. The barkeep calls her out and tells her despite the wreck, they were still willing to serve drinks regardless of the pub's ruins. Clementine asks what happened to the place, but the barkeeper breaks down mentally and cries on his knees. The fugitive thinks its best that she leave and hurry to the Empire.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18457}],"episodeFile":[{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E01.End and Beginning-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E01.End and Beginning-Bluray-1080p.mkv","size":1662649926,"dateAdded":"2018-10-10T22:12:08.807541Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1619730,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6849027,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2059},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Floor Guardians-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E02.Floor Guardians-Bluray-1080p.mkv","size":1681205573,"dateAdded":"2018-10-10T22:12:08.883344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1594420,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":6349209,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2061},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Battle of Carne Village-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E03.Battle of Carne Village-Bluray-1080p.mkv","size":1820453967,"dateAdded":"2018-10-10T22:12:08.976518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1592141,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7723696,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2064},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Ruler of Death-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E04.Ruler of Death-Bluray-1080p.mkv","size":1963435388,"dateAdded":"2018-10-10T22:12:09.070009Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1754284,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8313492,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2067},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Two Venturers-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E05.Two Venturers-Bluray-1080p.mkv","size":1573871623,"dateAdded":"2018-10-10T22:12:09.166407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1578000,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6416610,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2070},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Journey-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E06.Journey-Bluray-1080p.mkv","size":1891494480,"dateAdded":"2018-10-10T22:12:09.260229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1632834,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7965677,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2073},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Wise King of Forest-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E07.Wise King of Forest-Bluray-1080p.mkv","size":1363088761,"dateAdded":"2018-10-10T22:12:09.386219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1588993,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5095006,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2077},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Twin Swords of Slashing Death-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E08.Twin Swords of Slashing Death-Bluray-1080p.mkv","size":1687766249,"dateAdded":"2018-10-10T22:12:09.448397Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1701710,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6748329,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2079},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Dark Warrior-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E09.The Dark Warrior-Bluray-1080p.mkv","size":1930332743,"dateAdded":"2018-10-10T22:12:09.542585Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1824582,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":7289932,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2082},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E10.True Vampire-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E10.True Vampire-Bluray-1080p.mkv","size":1662731941,"dateAdded":"2018-10-10T22:12:09.637245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1727027,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6542514,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2085},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Confusion and Understanding-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E11.Confusion and Understanding-Bluray-1080p.mkv","size":1678743530,"dateAdded":"2018-10-10T22:12:09.777132Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1644183,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6738376,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2088},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Bloody Valkyrie-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E12.The Bloody Valkyrie-Bluray-1080p.mkv","size":1265055221,"dateAdded":"2018-10-10T22:12:09.870489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1835549,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4229530,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2091},{"seriesId":23,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Player VS Non Player Character-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 01\/S01E13.Player VS Non Player Character-Bluray-1080p.mkv","size":1192605194,"dateAdded":"2018-10-10T22:12:09.960667Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1692449,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4118332,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2094},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E01.A Ruler\u2019s Melancholy-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E01.A Ruler\u2019s Melancholy-Bluray-1080p.mkv","size":1442079471,"dateAdded":"2018-12-30T11:14:06.530526Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":679516,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6673268,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6217},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Carne Village Once More-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E02.Carne Village Once More-Bluray-1080p.mkv","size":1434383735,"dateAdded":"2018-12-30T11:17:17.856861Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":710464,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7195373,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6218},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Enri's Upheaval and Hectic Days-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E03.Enri's Upheaval and Hectic Days-Bluray-1080p.mkv","size":1472298557,"dateAdded":"2018-12-30T11:19:04.533982Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":669838,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7445003,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6219},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Giant of the East, Demon Snake of the West-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E04.Giant of the East, Demon Snake of the West-Bluray-1080p.mkv","size":1335359190,"dateAdded":"2018-12-30T11:23:04.396393Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":693678,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6666246,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6220},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Two Leaders-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E05.Two Leaders-Bluray-1080p.mkv","size":1489540843,"dateAdded":"2018-12-30T11:24:28.862273Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":729859,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6856765,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6221},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Invitation to Death-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E06.Invitation to Death-Bluray-1080p.mkv","size":1354745623,"dateAdded":"2018-12-30T11:26:00.541575Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":654969,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6811833,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6222},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Butterfly Entangled in a Spider's Web-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E07.Butterfly Entangled in a Spider's Web-Bluray-1080p.mkv","size":1497765302,"dateAdded":"2018-12-30T11:27:04.289326Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":710815,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6941249,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6223},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E08.A Handful of Hope-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E08.A Handful of Hope-Bluray-1080p.mkv","size":1570293839,"dateAdded":"2018-12-30T11:28:13.383375Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":714448,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7330111,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6224},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E09.War of Words-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E09.War of Words-Bluray-1080p.mkv","size":1504216105,"dateAdded":"2018-12-30T11:29:18.672222Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":672460,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7618360,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6225},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Preparation for War-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E10.Preparation for War-Bluray-1080p.mkv","size":1409473951,"dateAdded":"2018-12-30T11:30:24.296428Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":643726,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7124785,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6226},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Another Battle-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E11.Another Battle-Bluray-1080p.mkv","size":1594158949,"dateAdded":"2018-12-30T11:31:37.51291Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":742925,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8043724,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6227},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Massacre-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E12.Massacre-Bluray-1080p.mkv","size":1744404752,"dateAdded":"2018-12-30T11:33:03.975149Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":759866,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8233220,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6228},{"seriesId":23,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Player vs Player-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 03\/S03E13.Player vs Player-Bluray-1080p.mkv","size":1459842216,"dateAdded":"2018-12-30T11:34:10.176719Z","releaseGroup":"Moozzi2","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":675585,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6942709,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6229},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Dawn of Despair-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E01.The Dawn of Despair-Bluray-1080p.mkv","size":897361395,"dateAdded":"2019-08-12T20:32:27.9533Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":708301,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4237419,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8207},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Departure-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E02.Departure-Bluray-1080p.mkv","size":812006110,"dateAdded":"2019-08-12T20:32:32.624735Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":669658,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3804988,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8208},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Lizard Men, Gathering-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E03.Lizard Men, Gathering-Bluray-1080p.mkv","size":1041255474,"dateAdded":"2019-08-12T20:32:37.485379Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":810731,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4927767,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8209},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Army of Death-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E04.Army of Death-Bluray-1080p.mkv","size":852749839,"dateAdded":"2019-08-12T20:32:50.248486Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":735177,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3964072,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8210},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Freezing God-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E05.The Freezing God-Bluray-1080p.mkv","size":850921075,"dateAdded":"2019-08-12T20:32:55.743607Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768649,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3920535,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8211},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Those Who Pick Up, Those Who Are Picked Up-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E06.Those Who Pick Up, Those Who Are Picked Up-Bluray-1080p.mkv","size":840714409,"dateAdded":"2019-08-12T20:33:00.918416Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":637565,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3995364,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8212},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Blue Roses-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E07.Blue Roses-Bluray-1080p.mkv","size":839983006,"dateAdded":"2019-08-12T20:33:10.731707Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":666118,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3962743,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8213},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E08.A Boy's Feeling-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E08.A Boy's Feeling-Bluray-1080p.mkv","size":833361487,"dateAdded":"2019-08-12T20:33:18.249023Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":695518,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3896859,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8214},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Soaring Sparks of Fire-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E09.Soaring Sparks of Fire-Bluray-1080p.mkv","size":827739630,"dateAdded":"2019-08-12T20:33:22.634502Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":691170,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3870210,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8215},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Disturbance Begins in the Royal Capital-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E10.Disturbance Begins in the Royal Capital-Bluray-1080p.mkv","size":851657627,"dateAdded":"2019-08-12T20:33:29.959174Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":662098,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4031117,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8216},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Jaldabaoth-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E11.Jaldabaoth-Bluray-1080p.mkv","size":888148041,"dateAdded":"2019-08-12T20:33:38.866679Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":767840,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4126562,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8217},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Final Battle of the Disturbance-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E12.The Final Battle of the Disturbance-Bluray-1080p.mkv","size":799494908,"dateAdded":"2019-08-12T20:33:44.182103Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":721581,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3684091,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8218},{"seriesId":23,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Ultimate Trump Card-Bluray-1080p.mkv","path":"\/tv\/Overlord\/Season 02\/S02E13.The Ultimate Trump Card-Bluray-1080p.mkv","size":896688610,"dateAdded":"2019-08-12T20:33:54.837333Z","releaseGroup":"Xspitfire911","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":741175,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4304729,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8219}],"queue":[]},"19":{"series":{"title":"Made in Abyss","alternateTitles":[],"sortTitle":"made in abyss","status":"ended","ended":true,"overview":"The \u201cAbyss\u201d is the last unexplored region, an enormous and treacherous cave system filled with ancient relics and strange creatures. Only the bravest of adventurers can traverse its depths, earning them the nickname, \u201cCave Raiders.\u201d Within the depths of the Abyss, a girl named Riko stumbles upon a robot who looks like a young boy. Tantalized by the Abyss, Riko and her new friend descend into uncharted territory to unlock its mysteries, but what lies in wait for them in the darkness?","previousAiring":"2020-01-16T15:00:00Z","network":"AT-X","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/32\/banner.jpg?lastWrite=637593809147770050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/326109\/banners\/60abdc7d0adb8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/32\/poster.jpg?lastWrite=637100123891633750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/326109-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/32\/fanart.jpg?lastWrite=637401432038020280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/326109\/backgrounds\/5f7db7dacdc04.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2020-01-16T15:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":7,"sizeOnDisk":26998073648,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-09-28T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":18076901217,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Made in Abyss","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":326109,"tvRageId":0,"tvMazeId":28675,"firstAired":"2017-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"madeinabyss","imdbId":"tt7222086","titleSlug":"made-in-abyss","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Comedy","Drama","Fantasy","Mystery","Science Fiction"],"tags":[],"added":"2018-06-04T18:26:46.6695323Z","ratings":{"votes":181,"value":9.6},"statistics":{"seasonCount":2,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":21,"sizeOnDisk":45074974865,"percentOfEpisodes":100.0},"id":32},"episodes":[{"seriesId":32,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"TBA 2022","hasFile":false,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":21528},{"seriesId":32,"episodeFileId":5584,"seasonNumber":1,"episodeNumber":1,"title":"The City of the Great Pit","airDate":"2017-07-07","airDateUtc":"2017-07-06T15:00:00Z","overview":"While exploring the Abyss, Riko comes across something she has never seen before. How does this new discovery impact her?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2587},{"seriesId":32,"episodeFileId":5585,"seasonNumber":1,"episodeNumber":2,"title":"Resurrection Festival","airDate":"2017-07-14","airDateUtc":"2017-07-13T15:00:00Z","overview":"Riko and Reg find out more about their past but the question still remains, who or what exactly is Reg?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2588},{"seriesId":32,"episodeFileId":5586,"seasonNumber":1,"episodeNumber":3,"title":"Departure","airDate":"2017-07-21","airDateUtc":"2017-07-20T15:00:00Z","overview":"Reg goes on his first cave raid! Meanwhile, Riko makes preparations to go into the abyss to find her mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2589},{"seriesId":32,"episodeFileId":5587,"seasonNumber":1,"episodeNumber":4,"title":"The Edge of the Abyss","airDate":"2017-07-28","airDateUtc":"2017-07-27T15:00:00Z","overview":"Riko and Reg start their adventure into the Abyss, while there they run into an unexpected familiar face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2590},{"seriesId":32,"episodeFileId":5588,"seasonNumber":1,"episodeNumber":5,"title":"Incinerator","airDate":"2017-08-04","airDateUtc":"2017-08-03T15:00:00Z","overview":"Riko and Reg descend into the Forest of Temptation. What new dangers will they find laying in wait for them there?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2591},{"seriesId":32,"episodeFileId":5589,"seasonNumber":1,"episodeNumber":6,"title":"Seeker Camp","airDate":"2017-08-11","airDateUtc":"2017-08-10T15:00:00Z","overview":"Reg and Riko make it to the Seeker Camp where they meet Ozen the Immovable, the person who saved Riko all those years ago. But there is more to Ozen than meets the eye.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2592},{"seriesId":32,"episodeFileId":5590,"seasonNumber":1,"episodeNumber":7,"title":"The Unmovable Sovereign","airDate":"2017-08-18","airDateUtc":"2017-08-17T15:00:00Z","overview":"Ozen reveals more about the Abyss as well as the truth behind Riko's origins. What will happen when Ozen shows her true colors?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2593},{"seriesId":32,"episodeFileId":5591,"seasonNumber":1,"episodeNumber":8,"title":"Survival Training","airDate":"2017-08-25","airDateUtc":"2017-08-24T15:00:00Z","overview":"Ozen tasks Riko and Reg to survive alone outside the Seeker Camp. Do they come out alive and unscathed? Or does the Abyss have a dirty trick up its sleeve?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2594},{"seriesId":32,"episodeFileId":5592,"seasonNumber":1,"episodeNumber":9,"title":"The Great Fault","airDate":"2017-09-01","airDateUtc":"2017-08-31T15:00:00Z","overview":"Reg and Riko continue their descent after they leave Ozen's Seeker Camp. Riko's mettle is tested as Reg passes out and she has to fend for herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2595},{"seriesId":32,"episodeFileId":5593,"seasonNumber":1,"episodeNumber":10,"title":"Poison and the Curse","airDate":"2017-09-08","airDateUtc":"2017-09-07T15:00:00Z","overview":"Reg and Riko run into trouble deep in the fourth layer where they meet an interesting creature, but is she friend of foe?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2596},{"seriesId":32,"episodeFileId":5594,"seasonNumber":1,"episodeNumber":11,"title":"Nanachi","airDate":"2017-09-15","airDateUtc":"2017-09-14T15:00:00Z","overview":"Nanachi sends Reg on a mission to find certain items that could possibly save Riko. Meanwhile, Nanachi reveals a little more about themself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2597},{"seriesId":32,"episodeFileId":5595,"seasonNumber":1,"episodeNumber":12,"title":"The True Nature of the Curse","airDate":"2017-09-22","airDateUtc":"2017-09-21T15:00:00Z","overview":"Nanachi shows Reg the truth about the Abyss. Meanwhile, Riko is still recovering from her injuries when she has a strange dream.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2598},{"seriesId":32,"episodeFileId":5596,"seasonNumber":1,"episodeNumber":13,"title":"The Challengers","airDate":"2017-09-29","airDateUtc":"2017-09-28T15:00:00Z","overview":"Nanachi and Mitty's past is revealed. How did they become what they are and who is responsible for it? Meanwhile, Riko is on the mend after her injuries.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2599},{"seriesId":32,"episodeFileId":15600,"seasonNumber":0,"episodeNumber":1,"title":"Movie: Journey's Dawn","airDate":"2019-01-04","airDateUtc":"2019-01-03T15:00:00Z","overview":"First compilation movie of the TV series which covers episodes 1-8 with new scenes added for the introduction. It covers the period from when Riko descends into the Abyss with her robot companion Reg, reaching the second layer where they meet the White Whistle Ozen who reveals information about Riko's mother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18117},{"seriesId":32,"episodeFileId":15601,"seasonNumber":0,"episodeNumber":2,"title":"Movie: Wandering Twilight","airDate":"2019-01-18","airDateUtc":"2019-01-17T15:00:00Z","overview":"Second compilation movie of the TV series which covers episodes 9-13. Riko and Reg descend to the third layer where Riko has her first experience of the Curse. They descend to the fourth layer where Riko's arm is injured by an Orbed Piercer and Reg tries to save her. Nanachi comes to their aid and saves Riko's poisoned arm. In return Nanachi asks Reg to kill her immortal companion Mitty. Nanachi then joins Riko and Reg in their quest to reach the bottom of the Abyss.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9478},{"seriesId":32,"episodeFileId":15602,"seasonNumber":0,"episodeNumber":3,"title":"Movie: Dawn of the Deep Soul","airDate":"2020-01-17","airDateUtc":"2020-01-16T15:00:00Z","overview":"A continuation of the epic adventure of plucky Riko and Reg who are joined by their new friend Nanachi. Together they descend into the Abyss' treacherous fifth layer, the Sea of Corpses, and encounter the mysterious Bondrewd, a legendary White Whistle whose shadow looms over Nanachi's troubled past. Bondrewd is ingratiatingly hospitable, but the brave adventurers know things are not always as they seem in the enigmatic Abyss.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11219},{"seriesId":32,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"OVA: Maruruk's Everday 1 - Please!","airDate":"2020-01-17","airDateUtc":"2020-01-16T15:25:00Z","overview":"Short played before Made in Abyss Movie 3: Dawn of the Deep Soul in Japan's theatrical screenings before the main movie from 2020-01-17 to 2020-01-23.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19772},{"seriesId":32,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"OVA: Maruruk's Everday 2 - Errand","airDate":"2020-01-24","airDateUtc":"2020-01-23T15:00:00Z","overview":"Short played before Made in Abyss Movie 3: Dawn of the Deep Soul in Japan's theatrical screenings before the main movie from 2020-01-24 to 2020-01-30.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19773},{"seriesId":32,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"OVA: Maruruk's Everday 3 - Cleaning","airDate":"2020-01-31","airDateUtc":"2020-01-30T15:00:00Z","overview":"Short played before Made in Abyss Movie 3: Dawn of the Deep Soul in Japan's theatrical screenings before the main movie from 2020-01-31 to 2020-02-06.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19774},{"seriesId":32,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"OVA: Maruruk's Everday 4 - Memories","airDate":"2020-02-07","airDateUtc":"2020-02-06T15:00:00Z","overview":"Short played before Made in Abyss Movie 3: Dawn of the Deep Soul in Japan's theatrical screenings before the main movie from 2020-02-07 to 2020-02-13.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19775}],"episodeFile":[{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The City of the Great Pit-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E01.The City of the Great Pit-Bluray-1080p.mkv","size":1198512631,"dateAdded":"2018-10-30T03:17:19.024228Z","sceneName":"Made.in.Abyss.S01E01.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2153276,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2846725,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5584},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Resurrection Festival-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E02.Resurrection Festival-Bluray-1080p.mkv","size":1426919414,"dateAdded":"2018-10-30T03:17:34.990394Z","sceneName":"Made.in.Abyss.S01E02.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2135908,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4155835,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5585},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Departure-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E03.Departure-Bluray-1080p.mkv","size":1246591818,"dateAdded":"2018-10-30T03:18:13.603534Z","sceneName":"Made.in.Abyss.S01E03.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2141255,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3139036,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5586},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Edge of the Abyss-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E04.The Edge of the Abyss-Bluray-1080p.mkv","size":1411183604,"dateAdded":"2018-10-30T03:18:57.922754Z","sceneName":"Made.in.Abyss.S01E04.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2161080,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4027839,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5587},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Incinerator-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E05.Incinerator-Bluray-1080p.mkv","size":1357103068,"dateAdded":"2018-10-30T03:19:33.054133Z","sceneName":"Made.in.Abyss.S01E05.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2160763,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3724766,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5588},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Seeker Camp-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E06.Seeker Camp-Bluray-1080p.mkv","size":1253694272,"dateAdded":"2018-10-30T03:20:12.09784Z","sceneName":"Made.in.Abyss.S01E06.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2144443,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3162998,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5589},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Unmovable Sovereign-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E07.The Unmovable Sovereign-Bluray-1080p.mkv","size":1225331558,"dateAdded":"2018-10-30T03:20:56.389453Z","sceneName":"Made.in.Abyss.S01E07.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2147983,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3017931,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5590},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Survival Training-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E08.Survival Training-Bluray-1080p.mkv","size":1278291793,"dateAdded":"2018-10-30T03:21:39.622582Z","sceneName":"Made.in.Abyss.S01E08.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2142917,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3311720,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5591},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Great Fault-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E09.The Great Fault-Bluray-1080p.mkv","size":1371887056,"dateAdded":"2018-10-30T03:22:20.176068Z","sceneName":"Made.in.Abyss.S01E09.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2164644,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3813652,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5592},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Poison and the Curse-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E10.Poison and the Curse-Bluray-1080p.mkv","size":1273681347,"dateAdded":"2018-10-30T03:23:13.891451Z","sceneName":"Made.in.Abyss.S01E10.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2164176,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3254509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5593},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Nanachi-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E11.Nanachi-Bluray-1080p.mkv","size":1285520889,"dateAdded":"2018-10-30T03:24:10.438729Z","sceneName":"Made.in.Abyss.S01E11.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2138098,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3364926,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5594},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The True Nature of the Curse-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E12.The True Nature of the Curse-Bluray-1080p.mkv","size":1350986171,"dateAdded":"2018-10-30T03:24:57.24192Z","sceneName":"Made.in.Abyss.S01E12.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2153718,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3705893,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5595},{"seriesId":32,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Challengers-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Season 01\/S01E13.The Challengers-Bluray-1080p.mkv","size":2397197596,"dateAdded":"2018-10-30T03:25:48.127895Z","sceneName":"Made.in.Abyss.S01E13.1080p.Blu-Ray.10-Bit.Dual-Audio.DTS-HD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2138667,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2878387,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5596},{"seriesId":32,"seasonNumber":0,"relativePath":"Specials\/S00E01.Movie - Journey's Dawn-WEBDL-1080p.mkv","path":"\/tv\/Made in Abyss\/Specials\/S00E01.Movie - Journey's Dawn-WEBDL-1080p.mkv","size":7538051420,"dateAdded":"2020-09-25T13:34:02.787105Z","releaseGroup":"KS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159374,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:58:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15600},{"seriesId":32,"seasonNumber":0,"relativePath":"Specials\/S00E02.Movie - Wandering Twilight-WEBDL-1080p.mkv","path":"\/tv\/Made in Abyss\/Specials\/S00E02.Movie - Wandering Twilight-WEBDL-1080p.mkv","size":6707251718,"dateAdded":"2020-09-25T13:34:02.836386Z","releaseGroup":"KS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159375,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:45:46","scanType":"Progressive","subtitles":"English \/ Spanish \/ English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15601},{"seriesId":32,"seasonNumber":0,"relativePath":"Specials\/S00E03.Movie - Dawn of the Deep Soul-Bluray-1080p.mkv","path":"\/tv\/Made in Abyss\/Specials\/S00E03.Movie - Dawn of the Deep Soul-Bluray-1080p.mkv","size":12752770510,"dateAdded":"2020-09-25T13:34:02.895961Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":673084,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":13884193,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:44:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15602}],"queue":[]},"20":{"series":{"title":"Voltron: Legendary Defender","alternateTitles":[],"sortTitle":"voltron legendary defender","status":"ended","ended":true,"overview":"For millennia, the evil Galra Empire has plagued the universe by conquering planets and destroying their inhabitants. The only known threat to the empire's power and plans is the legendary \"Defender of the Universe,\" Voltron, a 100-meter-tall robot warrior composed of five lion mechas whose whereabouts are presumed to be unknown. The Galra Empire's path of conquest and search for Voltron has led them to Earth's solar system. A group of space pilots-Shiro, Keith, Lance, Pidge, and Hunk-discover the blue lion and immediately get swept up into the Galran War. They meet Princess Allura, become the next Paladins, and reunite the five lions to form Voltron and free the universe from the Galra Empire.","previousAiring":"2018-12-14T07:00:00Z","network":"Netflix","airTime":"02:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/20\/banner.jpg?lastWrite=636747176508062100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/307899-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/20\/poster.jpg?lastWrite=636881637261077590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/307899-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/20\/fanart.jpg?lastWrite=636747176505582150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/307899-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":7,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-06-10T06:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":14578481145,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-01-20T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":12217585232,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-08-04T06:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":5653713179,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-10-13T06:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":5040609652,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2018-03-02T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":5254596196,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2018-06-15T06:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":6133465010,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2018-08-10T06:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":12921697519,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2018-12-14T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":12467565045,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Voltron- Legendary Defender","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":307899,"tvRageId":0,"tvMazeId":15296,"firstAired":"2016-06-10T00:00:00Z","seriesType":"standard","cleanTitle":"voltronlegendarydefender","imdbId":"tt5580664","titleSlug":"voltron-legendary-defender","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Animation","Children","Science Fiction"],"tags":[],"added":"2018-03-13T22:01:20.4720616Z","ratings":{"votes":259,"value":7.7},"statistics":{"seasonCount":8,"episodeFileCount":76,"episodeCount":76,"totalEpisodeCount":83,"sizeOnDisk":74267712978,"percentOfEpisodes":100.0},"id":20},"episodes":[{"seriesId":20,"episodeFileId":3799,"seasonNumber":1,"episodeNumber":1,"title":"The Rise of Voltron","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"Overwhelmed but ready for action, five aspiring space explorers learn they have the power to create Voltron, the most powerful robot in the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":4982},{"seriesId":20,"episodeFileId":3806,"seasonNumber":1,"episodeNumber":2,"title":"Some Assembly Required","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"When the Paladins are unable to form Voltron during a training session, Coran puts them through his own rigorous training in order to build a sense of brotherhood and trust between the Paladins. However, the Paladins fail miserably and are unable to connect. It is not until the Paladins engage in a food fight with Allura and Coran that they finally begin to work as a team and are successfully able to form Voltron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":4983},{"seriesId":20,"episodeFileId":3814,"seasonNumber":1,"episodeNumber":3,"title":"Return of the Gladiator","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"As the Castle of Lions continues to prepare for departure, the team is met by the arrival of a local Arusian investigating the castle. Allura heads to meet the villagers along with Coran, Hunk, Keith and Lance while Pidge and Shiro tend to the rescued prisoners from the Galra battleship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":4984},{"seriesId":20,"episodeFileId":3821,"seasonNumber":1,"episodeNumber":4,"title":"Fall of the Castle of Lions","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"The team and Arusians celebrate Voltron's victory in the castle, but the festivities come to a halt when Pidge reveals his intentions to leave the team and search for his missing father and brother. As the team tries to convince Pidge to stay, Haxus, one of Sendak's soldiers, is able to sneak a bomb drone into the castle, causing it to destroy the crystal that powers the entire castle and severely injure Lance in the process.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":4985},{"seriesId":20,"episodeFileId":3828,"seasonNumber":1,"episodeNumber":5,"title":"Tears of the Balmera","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"Hunk and Coran meet local Balmerans, Shay and Rax, who help them hide from the Galra. Shay admires the two and wants to help them, but Rax is cautious and insists they leave. Hunk and Coran are able to sneak past the Galra to find a crystal, but are captured and imprisoned. Shay helps them escape with the crystal, but is captured by the Galra after her brother informs them of Shay's actions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":4986},{"seriesId":20,"episodeFileId":3835,"seasonNumber":1,"episodeNumber":6,"title":"Taking Flight","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"On the way to the Balmera, the team stops to help two rebels on the run from the Galra. Lance is trusting, but Hunk is skeptical of their intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":4987},{"seriesId":20,"episodeFileId":3842,"seasonNumber":1,"episodeNumber":7,"title":"Return to the Balmera","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"Allura, Coran and the Paladins return to the Balmera to free the natives, but the arrival of a Galra ship could force Voltron into action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":4988},{"seriesId":20,"episodeFileId":3846,"seasonNumber":1,"episodeNumber":8,"title":"Rebirth","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"As the Paladins scramble to ward off a Galra monster, Allura hopes that her ancient powers can heal the Balmera and save its people.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":4989},{"seriesId":20,"episodeFileId":3849,"seasonNumber":1,"episodeNumber":9,"title":"Crystal Venom","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"Allura considers making a heartbreaking sacrifice to save the team when the castle mysteriously turns on them and sends them hurtling toward doom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":4990},{"seriesId":20,"episodeFileId":3852,"seasonNumber":1,"episodeNumber":10,"title":"Collection and Extraction","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"The team stops at an isolated and seemingly insignificant Galra space station and discovers how the empire is gathering its energy from the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":4991},{"seriesId":20,"episodeFileId":3855,"seasonNumber":1,"episodeNumber":11,"title":"The Black Paladin","airDate":"2016-06-10","airDateUtc":"2016-06-10T06:00:00Z","overview":"Zarkon lures Voltron into a battle on his ship, and when one of the lions is captured the team must get creative to defeat the Galra and return home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":4992},{"seriesId":20,"episodeFileId":3800,"seasonNumber":2,"episodeNumber":1,"title":"Across the Universe","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"The lions get separated when a trip through a wormhole goes awry, while Coran and Allura scramble to break free of a seemingly endless time loop. Meanwhile, Zarkon seeks to uncover the person responsible for the Paladins escape. Pidge exits the corrupted wormhole in a junk nebula with debris from various alien technologies, which she uses to send a homing beacon to the Castle which pulls Allura & Coran out of the time loop. Keith and Shiro crash on a nearly dead moon and try to survive creatures and Shiro is nearly dying from the wound Haggar inflicted on him in the previous episode.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":4993},{"seriesId":20,"episodeFileId":3810,"seasonNumber":2,"episodeNumber":2,"title":"The Depths","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"Hunk and Lance crash-land underwater and follow a mermaid to a civilization whose queen promises to keep them safe and help find the others. While resting, Lance is kidnapped by a trio of mer-people who believe the queen to be mind controlling the populous. After freeing Hunk of the control and capturing the queen do they realize that the Baku, which was a food source to the people, was really an alien predator beast. Lance channels a new weapon from his Blue Lion and kills the Baku, and as a thank you the queen uses the old energy beacon which brings Pidge to their rescue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":4994},{"seriesId":20,"episodeFileId":3813,"seasonNumber":2,"episodeNumber":3,"title":"Shiro's Escape","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"Following the teams reformation after the corrupted wormhole, Shiro is in a recovery pod and vividly dreams the day he escaped- Galra scientist Ulaz releases Shiro, instructs him to get back to Earth and find Voltron. Shiro also expresses that not all Galra are evil as a Galra (Zarkon) was the privious Black Paladin of Voltron. Finding space coordinates in Shiro's artificial arm, the Paladins find Ulaz, who reveals he is part of an order known as the Blade of Marmora who are hidden within many ranks of Zarkon's Empire. Praxas, who is remade into a Ro-Beast, finds the Paladins and quickly gains the upperhand, until Ulaz sacrifices himself to destroy the monster and let Voltron find the HQ of the Blade of Marmora. Shiro and the group decide to wait until they learn how Zarkon is beginning to track them. In his room, Keith holds a small dagger he has had since childhood which bares the crest of Marmora.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":4995},{"seriesId":20,"episodeFileId":3823,"seasonNumber":2,"episodeNumber":4,"title":"Greening the Cube","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"While making repairs to the castle, the Paladins encounter unusual spongy spores that lead them to a planet of brilliant engineers- the Olkari. When landing, Team Voltron meet the Olkari people in the forest, where they adapted from machine to nature based technologies. When rescuing the Olkarian king Lubos, Team Voltron find he willingly sold out his people as slaves to live in comfort, as he builds a super-weapon for Zarkon's forces. As Voltron engages the super-weapon, it learns and adapts to their attacks, even replicating them. After Pidge has help from the Olkari, she reconnects to her Green Lion in a way that allows her to summon a new weapon, which when the Black Cubes attempt to clone, instead grow massive plant roots. When leaving Olkarian space, the Castle of Lions is intercepted by a Galra war fleet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":4996},{"seriesId":20,"episodeFileId":3829,"seasonNumber":2,"episodeNumber":5,"title":"Eye of the Storm","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"Exhausted after a battle, the crew must spring back into action when Zarkon's forces track them down. Coran gets infected by a slippery virus. As they manage to escape, it is only after jumping that their wormhole generator is malfunctioning due to broken focus lenses. When Team Voltron attempt some rest- Lance and Keith try to make it to a pool, Hunk makes transparent blue cookies, Pidge learns beginner Altaean, and Shiro is on watch. Zarkon's ship discovers them again and another battle and jump leaves them without anymore crystal lenses needed for another wormhole. When hiding in a cosmic storm cloud, Allura comes to some realization that Zarkon is following them by tracking her energies. In engineering, Coran details what type of lenses they need, then Pidge remembers Hunk's cookies are exactly what they need. Coran positions the paladins in a unique fashion INSIDE the wormhole generator in order for it to fully function. Using his Slipperies, Coran lubricates the lenses to fully jump the castle away from Zarkon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":4997},{"seriesId":20,"episodeFileId":3838,"seasonNumber":2,"episodeNumber":6,"title":"The Ark of Taujeer","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"On the ravaged planet of Taujeer, Galra commander Marvok strips the planet of resources and prevents the citizen's escape. Allura and Keith go off on a separate mission to learn how Zarkon is tracking them down and on their isolated trip debate if any Galra people are even fighting Zarkon's rule. The remaining foru Paladins arrive on Taujeer to help the Ark escape, only to be fired upon by Galra forces closest to them as Zarkon located them none the less. When Keith & Allura are informed by Coran they try to use the booster jets to arrive sooner but end up destroying their pod. Hunk activates a new power up for his Yellow Lion which prevents the Ark from falling into a lake of acid. The Red Lion ventures into space to Keith & Allura's position and retrieves them to form Voltron, which defeats the Galra ship. After saving the Ark and resting in the Castle, it is apparent to them now that Zarkon is following them by way of his old connection to the Black Lion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":4998},{"seriesId":20,"episodeFileId":3845,"seasonNumber":2,"episodeNumber":7,"title":"Space Mall","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"Shiro attempts to create a deeper bond with the Black Lion, while Coran takes the others to a swap meet, where they have some strange adventures. After Coran details his time in the swap meets as edgy and filled with space pirates, they arrive and find it to resemble an average mall on Earth. Varkon, a bumbling mall rent-a-cop, sees the four Paladins drop their terrible disguises and pursues them through the mall. Keith goes to a knife salesman for information on the blade he has, but learns it is from an extinct people before the salesman tries to steal it from him. Hunk is made to work off a tab for Sal, the owner of Vrepit Sal's diner, and earns a mass customer following with his gourmet skills. Varkon finds Hunk and he races out. Pidge and Lance find a shop which sells Earth material from the 1980's. Hunk meets up with Keith, then Pidge with Lance (after they bought everything in the store) and finally meet up with Coran who has the lenses.\r\n\r\nMeanwhile, the Black Lion reveals how it was created, and how Zarkon & Alfor were once friends. Zarkon then connects to Shiro on the psychic plane where the difference in power is vast, but Shiro's words of trusting his Lion earn its protection and defeat of Zarkon in the psychic plane. Waking up, Zarkon loses more connection to the Black Lion and Shiro is now more connected to the Black Lion. Afterwards, knowing Zarkon can't track them, Shiro orders the Castle to the HQ of the Blade of Marmora.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":4999},{"seriesId":20,"episodeFileId":3847,"seasonNumber":2,"episodeNumber":8,"title":"The Blade of Marmora","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"Upon reaching the HQ of the Blade of Marmora, it is located in a safe spot between two black holes and a blue Supergiant star. Keith and Shiro travel to their base in an effort to align with the Blade of Marmora led by Kolivan and his lieutenant Antok. But Keith's possession of one of their blades causes immediate friction with the Trials of Marmora to resolve them one of two results: knowledge or death. Keith must fight to unlock about his past, and with each fight exhausts himself more and more. When entering a vision of his old home with his father, the outside of the house shows a Galra invasion, giving Keith a choice: stay and learn, or leave and rescue. The Red Lion attacks the base sensing Keith's endangerment, and upon deciding to end this mistrust and gain their alliance, Keith relents his dagger, only for it to awaken its true form of a saber upon his enlightened decision and revealing a truth: Keith has part Galra ancestry. Meanwhile, Commander Thace (the Marmora spy who shutdown the Solar Shield) alerts the Order that the investigation is increasing and the timetable must escalate to now!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":5000},{"seriesId":20,"episodeFileId":3850,"seasonNumber":2,"episodeNumber":9,"title":"The Belly of the Weblum","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"The Paladins split up to gather resources for a showdown with Zarkon. Hunk and Keith travel into the belly of the planet-devouring creature known as a Weblum for scaultrite, a material needed in wormhole generators. While there, the instructional Coran made is dated to when he was in university and is corroded. The duo successfully enter the Weblum, but are separated after the first stomach, leaving Keith in the second and Hunk in the Weblum's bloodstream. In the second stomach, Keith finds a trapped a silent Galra pilot who helps him journey through the third stomach to reach the scaultrite. As the Weblum's defenses flare, the only way to make the scaultrite is for Hunk to threaten the beast enough outside to form the crystals. Upon the Weblum firing its beam, Keith packs more than enough scaultrite, but the Galran with him holds him up for a single full bag, and escapes. Keith thanks Hunk for his efforts, and Hunk pokes at Keiths newly learned Galra ancestry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":5001},{"seriesId":20,"episodeFileId":3854,"seasonNumber":2,"episodeNumber":10,"title":"Escape from Beta Traz","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"By the information provided by the Blade of Marmora, Lance, Pidge and Shiro infiltrate a facility to free the only prisoner of the Galra Space Station Beta Traz. Upon successful infiltration, Pidge locates two cells instead of the one they were informed of. Pidge stays in the Main Command Center, but Lance and Shiro must reach and connect to the isolated Third level holding the two prisoners. Lance gains a 3D render of a Galra officer for the facial recognition. They each think they've found the right inmate, but it gets harder to tell as Pidge goes radio silent when the station warden goes to the Command Center. Lance escorts his choice out, while Shiro deals with his being impossible because of his predicting statistical improbabilities of his death from the smallest thing. When Pidge is disabling the remaining security features, she finds footage of her brother Matt's escape. When the gravity is shut off, Shiro with Slav regroups with Lance, who learns he actually has the warden's personal pet Laika. In the hangar, everyone is regrouped but the Warden overpowers them until Slav opens the hangar doors to save the Paladins. Lance uses his aim to save Slav from the Warden and the mission is a success.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":5002},{"seriesId":20,"episodeFileId":3856,"seasonNumber":2,"episodeNumber":11,"title":"Stayin' Alive","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"Allura travels to the Balmera to acquire a powerful crystal. When she is about to leave with the crystal, the panoptic Ro-Beast from their last encounter prompts her to call on the Paladins for help. The creature, now merged with part of the encasing crystal it was once in, makes its way to the Castle as Allura goes skyward to protect the Balmera. Allura warps in the Paladins who regroup to their Lions to form Voltron. As they fight it, the team utilize their new weapons to subdue the Robeast and form Voltron to finally destroy the monster. Back on board the Castle, it is more apparent that since learning Keith's part Galra, Allura has a cold attitude to him. On the Olkarian home world, the super teludav is operational, and the team reminisce about their time since coming together. Meanwhile, Thace makes the error of returning for a spy device he planted, only for the Druids to intercept and capture him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":5003},{"seriesId":20,"episodeFileId":3858,"seasonNumber":2,"episodeNumber":12,"title":"Best Laid Plans","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"After acquiring the teludav from Olkari, the team prepares to launch the operation to defeat Zarkon and bring peace to the universe. When the Marmorans haven't heard from Thace, they urge a delay in action, while Allura argues they continue. Keith plans to infiltrate the main ship of the Galra Fleet, but before leaving Allura stops him to explain that since waking up she views the Paladins as her new family and his being part Galra made her unsure. Following Thace's capture, the Druids interrogate him, and allow him to escape. Haggar helps Zarkon find the Black Lion, Zarkon's fleet arrives, Shiro distracts while Keith sneaks aboard. Despite that the battle is a trap, Zarkon is too engrossed in reclaiming the black Lion. Since the Druids rewrote the shield codes, their plan adapts to turn the core room into a bomb and cripple Zarkon's ship. When the Druids are sent after Thace while Zarkon has a rematch with Team Voltron. Thace sacrifices himself to cause the power core to overload and explode, just as the cloak teludav loses its cloak, and Zarkon's ship loses power. As Zarkon's ship is wormholed to another reach of the universe far away, the Paladins pursue to finally end Zarkon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":5004},{"seriesId":20,"episodeFileId":3860,"seasonNumber":2,"episodeNumber":13,"title":"Blackout","airDate":"2017-01-20","airDateUtc":"2017-01-20T07:00:00Z","overview":"The Paladins fight to systematically destroy the base to prevent Zarkon's return. As Zarkon himself goes to battle Voltron, Haggar & her Druids go to protect their emperor as he readies his armor, which untested could kill him as well as Voltron. Before Zarkon can do anything, Haggar uses her dark magic to forcefully remove the Quintessence from Voltron, but is overloaded by the purity of Volton. While the Lions are unresponsive, their Paladins still live, but Zarkon arrives in a Ro-beast in his image. Allura uses whatever power she can to stall Zarkon to allow the Paladins to recover and battle Zarkon's Ro-beast. Allura, Kolivan and Antok go to battle Haggar to keep her from using her witchcraft from delaying Voltron. As their battles rage, Zarkon splits Voltron back to the individual Lions; Allura and Kolivan triumph in their fights, while Antok perishes at the hand of Haggar and another Druid. Shiro awakens to see his team being beaten, and the Bayard access port in his Black Lion activates, activating its Transcendent Wings to phase through Zarkon's Ro-Beast and reclaimg the original Black Bayard. As their fight continues, Haggar is revealed to be Altaean, and Allura learns she has the power to command Quintessence, which she uses to defeat Haggar and Kolivan avenges Antok. Forming Voltron, the Paladins fight with new strength and Shiro uses his Bayard to supercharge the Voltron Sword and destroy Zarkon's Ro-Beast armor.\r\n\r\nAfter the battle, back in the Castle hangar, the Paladins discover that Shiro has vanished from the Black Lion leaving the bayard behind. On Zarkon's ship, Zarkon is on life support, prompting Haggar to summon Prince Lotor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":5005},{"seriesId":20,"episodeFileId":3803,"seasonNumber":3,"episodeNumber":1,"title":"Changing of the Guard","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"In the wake of Zarkon\u2019s defeat and Shiro\u2019s disappearance, the paladins struggle to move forward with no one able to pilot the black lion or the ability to form Voltron. The team must quickly devise a plan as the ascension of Prince Lotor and his generals pulls the team into a perilous game of cat-and-mouse that tests their unity and abilities more than ever before.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":5006},{"seriesId":20,"episodeFileId":3811,"seasonNumber":3,"episodeNumber":2,"title":"Red Paladin","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"Keith begrudgingly assumes Shiro\u2019s position as pilot of the Black Lion, Lance switches to the Red Lion, and Allura steps in to fill Lance\u2019s place as pilot of the Blue Lion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":5007},{"seriesId":20,"episodeFileId":3816,"seasonNumber":3,"episodeNumber":3,"title":"The Hunted","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"Keith's reckless choice leads the team into a dangerous situation. Allura needs to channel one of the Paladins to get out of trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":5008},{"seriesId":20,"episodeFileId":3826,"seasonNumber":3,"episodeNumber":4,"title":"Hole in the Sky","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"The Castle receives a distress signal that leads Allura and Coran to believe that they may not be the only surviving Alteans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":5009},{"seriesId":20,"episodeFileId":3832,"seasonNumber":3,"episodeNumber":5,"title":"The Journey","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"A pair of sceptical rebel fighters make things difficult for a Paladin in need of assistance. Haggar steps up her monitoring of Lotor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":5010},{"seriesId":20,"episodeFileId":3840,"seasonNumber":3,"episodeNumber":6,"title":"Tailing a Comet","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"As the Paladins pursue the comet, they become confused by Lotor's actions. Keith doubts his leadership skills, while Lance ponders his future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":5011},{"seriesId":20,"episodeFileId":3844,"seasonNumber":3,"episodeNumber":7,"title":"The Legend Begins","airDate":"2017-08-04","airDateUtc":"2017-08-04T06:00:00Z","overview":"As the team try to decipher Lotor's plan for the comet, Coran gives the Paladins a history lesson about the origins of Voltron and the ongoing war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":5012},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Voltron Vlogs - Coran","airDate":"2017-09-14","airDateUtc":"2017-09-14T06:00:00Z","overview":"Coran teaches you what NOT to do in intense combat, how NOT to act when waking up from a sleep chamber, and what it looks like when a lion of Voltron has NOT chosen you to be its paladin...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16870},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Voltron Vlogs - Keith","airDate":"2017-09-21","airDateUtc":"2017-09-21T06:00:00Z","overview":"A little introspection goes a long way for Keith. Is that... is he crying?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16871},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Voltron Vlogs - Allura","airDate":"2017-09-28","airDateUtc":"2017-09-28T06:00:00Z","overview":"Allura confesses that her first impression of the paladins was less than flattering...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16872},{"seriesId":20,"episodeFileId":3805,"seasonNumber":4,"episodeNumber":1,"title":"Code of Honor","airDate":"2017-10-13","airDateUtc":"2017-10-13T06:00:00Z","overview":"Keith's divided attentions cause tension withing the team at a time when unity is crucial. The Blades investigate a Galra supply route.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":5013},{"seriesId":20,"episodeFileId":3808,"seasonNumber":4,"episodeNumber":2,"title":"Reunion","airDate":"2017-10-13","airDateUtc":"2017-10-13T06:00:00Z","overview":"Pidge gets information that prompts her to embark on an important solo mission to the far reaches of the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":5014},{"seriesId":20,"episodeFileId":3818,"seasonNumber":4,"episodeNumber":3,"title":"Black Site","airDate":"2017-10-13","airDateUtc":"2017-10-13T06:00:00Z","overview":"An internal struggle of power erupts within the Galra. Pidge returns to the castle with some precious cargo. The team gets a cow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":5015},{"seriesId":20,"episodeFileId":3825,"seasonNumber":4,"episodeNumber":4,"title":"The Voltron Show!","airDate":"2017-10-13","airDateUtc":"2017-10-13T06:00:00Z","overview":"Coran gets carried away turning the Paladins into intergalactic superstars when he designs an elaborate, effects-filled live tour of the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":5016},{"seriesId":20,"episodeFileId":3830,"seasonNumber":4,"episodeNumber":5,"title":"Begin the Blitz","airDate":"2017-10-13","airDateUtc":"2017-10-13T06:00:00Z","overview":"Team Voltron devises a plan to continue the coalition's momentum and take control of more Galra territory. Lotor makes a big move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":5017},{"seriesId":20,"episodeFileId":3836,"seasonNumber":4,"episodeNumber":6,"title":"A New Defender","airDate":"2017-10-13","airDateUtc":"2017-10-13T06:00:00Z","overview":"Forces of good and evil converge on the planet Naxzela, where Voltron faces unforeseen danger only one Paladin can help them escape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":5018},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Voltron Vlogs - Lance","airDate":"2017-11-09","airDateUtc":"2017-11-09T07:00:00Z","overview":"Lance reflects on a few of his many \"planetonic\" relationships","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16873},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Voltron Vlogs - Pidge","airDate":"2017-11-16","airDateUtc":"2017-11-16T07:00:00Z","overview":"Things Pidge loves: friendships, technology, friendships with technology...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16874},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Voltron Vlogs - Hunk","airDate":"2017-11-23","airDateUtc":"2017-11-23T07:00:00Z","overview":"Hunk's experience in space has left him a little paranoid, but mostly much, MUCH more wise.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16875},{"seriesId":20,"episodeFileId":3802,"seasonNumber":5,"episodeNumber":1,"title":"The Prisoner","airDate":"2018-03-02","airDateUtc":"2018-03-02T07:00:00Z","overview":"After a daring mission at a key Galra outpost, the team considers a risky alliance. One Paladin leads a journey to retrieve an important prisoner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":5019},{"seriesId":20,"episodeFileId":3809,"seasonNumber":5,"episodeNumber":2,"title":"Blood Duel","airDate":"2018-03-02","airDateUtc":"2018-03-02T07:00:00Z","overview":"Faced with a painful decision, the Paladins reluctantly come to an agreement with Zarkon. Haggar comes to grips with memories from the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":5020},{"seriesId":20,"episodeFileId":3815,"seasonNumber":5,"episodeNumber":3,"title":"Postmortem","airDate":"2018-03-02","airDateUtc":"2018-03-02T07:00:00Z","overview":"A power struggle erupts within the Galra. As the Paladins argue over their next move, an attack forces them to save themselves and the Olkari.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":5021},{"seriesId":20,"episodeFileId":3822,"seasonNumber":5,"episodeNumber":4,"title":"Kral Zera","airDate":"2018-03-02","airDateUtc":"2018-03-02T07:00:00Z","overview":"Shiro acts against the wishes of the other Paladins. Powerful Galra from around the empire convene for the Kral Zera ceremony.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":5022},{"seriesId":20,"episodeFileId":3833,"seasonNumber":5,"episodeNumber":5,"title":"Bloodlines","airDate":"2018-03-02","airDateUtc":"2018-03-02T07:00:00Z","overview":"Keith is sent to find a fellow Blade named Krolia and locate a powerful weapon. Lance, Hunk and Pidge reprogram a robot to have fun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":5023},{"seriesId":20,"episodeFileId":3839,"seasonNumber":5,"episodeNumber":6,"title":"White Lion","airDate":"2018-03-02","airDateUtc":"2018-03-02T07:00:00Z","overview":"The team searches for a portal to a mysterious, fabled Altean land called Oriande. Shiro starts to feel like there's something wrong with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":5024},{"seriesId":20,"episodeFileId":3804,"seasonNumber":6,"episodeNumber":1,"title":"Omega Shield","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"An attack by Sendak prompts the Paladins to scramble to a planet's defense. Lotor calls on Allura for help in assembling a powerful ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":5025},{"seriesId":20,"episodeFileId":3812,"seasonNumber":6,"episodeNumber":2,"title":"Razor's Edge","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"Keith's journey to an abyss to search for a quintessence source unlocks memories about his past. Lance wallows in unrequited love.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":5026},{"seriesId":20,"episodeFileId":3817,"seasonNumber":6,"episodeNumber":3,"title":"Monsters & Mana","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"When the team takes a break to play a magical role-playing game, their fantasy world sparks useful ideas to help them solve real-world problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":5027},{"seriesId":20,"episodeFileId":3824,"seasonNumber":6,"episodeNumber":4,"title":"The Colony","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"After Lotor and Allura head off in the new ship, the remaining Paladins get a dire warning that could change everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":5028},{"seriesId":20,"episodeFileId":3831,"seasonNumber":6,"episodeNumber":5,"title":"The Black Paladins","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"As one Paladin takes on a dangerous mission through a wormhole, the others contend with failing controls on the castle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":5029},{"seriesId":20,"episodeFileId":3837,"seasonNumber":6,"episodeNumber":6,"title":"All Good Things","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"A metaphysical encounter shines light on a Paladin's fate. Lance and Allura console each other about their past judgments. Lotor makes a plea.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":5030},{"seriesId":20,"episodeFileId":3843,"seasonNumber":6,"episodeNumber":7,"title":"Defender of All Universes","airDate":"2018-06-15","airDateUtc":"2018-06-15T06:00:00Z","overview":"An epic battle leaves the universe in a state of chaos, threatening to destroy all life unless a sacrifice is made.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":5031},{"seriesId":20,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Voltron Vlogs - Shiro","airDate":"2018-07-11","airDateUtc":"2018-07-11T06:00:00Z","overview":"Shiro's long-awaited vlog, thought to have been destroyed along with the Castle Ship, has been unarchived. But how many of these memories can be trusted?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16876},{"seriesId":20,"episodeFileId":3801,"seasonNumber":7,"episodeNumber":1,"title":"A Little Adventure","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"Part of the group gets stuck on a planet where they're inadvently miniaturized. Flashbacks reveal the beginnings of Keith and Shiro's relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":5032},{"seriesId":20,"episodeFileId":3807,"seasonNumber":7,"episodeNumber":2,"title":"The Road Home","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"The Paladins stop at a base that belongs to the Blades, only to find it's been abandoned. But they come under attack before they can investigate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":5033},{"seriesId":20,"episodeFileId":3819,"seasonNumber":7,"episodeNumber":3,"title":"The Way Forward","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"Stuck in a perilous situation far from home and needing help to get free, the Paladins realize their fate is in Coran's hands.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":5034},{"seriesId":20,"episodeFileId":3820,"seasonNumber":7,"episodeNumber":4,"title":"The Feud!","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"The Paladins inexplicably become the contestants on the crazy game show \"Garfle Warfle Snick\". But they're playing for much more than cash and prizes .","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":5035},{"seriesId":20,"episodeFileId":3827,"seasonNumber":7,"episodeNumber":5,"title":"The Ruins","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"When Pidge intercepts a distress signal that the Paladins believe they recognize, the team ends up on a ruined planet that was ravaged by war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":5036},{"seriesId":20,"episodeFileId":3834,"seasonNumber":7,"episodeNumber":6,"title":"The Journey Within","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"As the Paladins hurtle through space, they enter a seemingly endless void that tests their sanity - - and their loyalty to one another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":5037},{"seriesId":20,"episodeFileId":3841,"seasonNumber":7,"episodeNumber":7,"title":"The Last Stand (1)","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"The Paladins receive a distress signal that's explained through a flashback to Pidge's father Sam's return to Earth four years earlier.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":5038},{"seriesId":20,"episodeFileId":3848,"seasonNumber":7,"episodeNumber":8,"title":"The Last Stand (2)","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"Sam and the others at the Garrison attempt to hold off the Galra attacks in hopes that a desperate plea for help will reach Voltron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":5039},{"seriesId":20,"episodeFileId":3851,"seasonNumber":7,"episodeNumber":9,"title":"Know Your Enemy","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"The Paladins drop off the Lions and head to Earth, believing that information Sam acquired years earlier could help them battle Sendak.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":5040},{"seriesId":20,"episodeFileId":3853,"seasonNumber":7,"episodeNumber":10,"title":"Heart of the Lion","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"The Paladins work with the Garrison pilots on a mission that could provide more clues about how to take down Sendak's operation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":5041},{"seriesId":20,"episodeFileId":3857,"seasonNumber":7,"episodeNumber":11,"title":"Trial By Fire","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"Sanda's revelation shakes the Paladins, who are separated from the Lions. On Earth, Shiro, Sam and Coran attempt to get the Atlas powered up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":5042},{"seriesId":20,"episodeFileId":3859,"seasonNumber":7,"episodeNumber":12,"title":"Lions' Pride (1)","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"Shiro goes on a solo mission to try to find a way to defeat Sendak and ensure the safety of his friends and the Planet Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":5043},{"seriesId":20,"episodeFileId":3861,"seasonNumber":7,"episodeNumber":13,"title":"Lions' Pride (2)","airDate":"2018-08-10","airDateUtc":"2018-08-10T06:00:00Z","overview":"A mysterious foe acts out and the future of planet Earth is in the balance. Now more than ever its up to Voltron, the Paladins and Shiro with the Atlas to save the day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":5044},{"seriesId":20,"episodeFileId":5810,"seasonNumber":8,"episodeNumber":1,"title":"Launch Date","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"The Paladins spend one last night on Earth in preparation for the launch of the Atlas. Lance works up the courage to ask Allura an important question.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":5045},{"seriesId":20,"episodeFileId":5763,"seasonNumber":8,"episodeNumber":2,"title":"Shadows","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"Flashbacks shine a light on Honerva's past with Lotor and Zarkon, revealing the motivation for her recent actions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":5046},{"seriesId":20,"episodeFileId":5742,"seasonNumber":8,"episodeNumber":3,"title":"The Prisoner's Dilemma","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"After taking control of a Galra base on a dark planet, the Paladins follow a distress signal from a missing fleet and make an unsettling discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":5047},{"seriesId":20,"episodeFileId":5729,"seasonNumber":8,"episodeNumber":4,"title":"Battle Scars","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"While floating through the universe searching for signs of a Robeast, the Paladins head toward Olkarion and realize they aren't alone on their journey.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":5048},{"seriesId":20,"episodeFileId":5765,"seasonNumber":8,"episodeNumber":5,"title":"The Grudge","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"The Paladins make plans to meet with the Atlas, but the reunion is interrupted when the Lions are ambushed by a mysterious adversary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":5049},{"seriesId":20,"episodeFileId":5766,"seasonNumber":8,"episodeNumber":6,"title":"Genesis","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"Voltron heads to Oriande to confront Honerva after the team discovers she's using wormholes to harvest massive amounts of Quintessence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":5050},{"seriesId":20,"episodeFileId":5771,"seasonNumber":8,"episodeNumber":7,"title":"Day Forty-Seven","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"Pilots Kinkade and Rizavi provide a documentary-style look at both the lighthearted and stressful moments of day-to-day life on the Atlas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":5051},{"seriesId":20,"episodeFileId":5769,"seasonNumber":8,"episodeNumber":8,"title":"Clear Day","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"The crew heads to the planet Drazan to participate in the festivities of Clear Day, but Allura is plagued by nightmares when she stays behind to rest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":5052},{"seriesId":20,"episodeFileId":5730,"seasonNumber":8,"episodeNumber":9,"title":"Knights of Light (1)","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"The Paladins travel into an expansive void accessed through Allura's mind, where they encounter frightening spirits and cursed souls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":5053},{"seriesId":20,"episodeFileId":5774,"seasonNumber":8,"episodeNumber":10,"title":"Knights of Light (2)","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"Traveling further into an abyss of memories, the Paladins make shocking discoveries that could alter their reality forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":5054},{"seriesId":20,"episodeFileId":5809,"seasonNumber":8,"episodeNumber":11,"title":"Uncharted Regions","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"As Honerva gets closer to creating a catastrophic rift in reality, the Atlas crew races against time to figure out how to locate and stop her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":5055},{"seriesId":20,"episodeFileId":5753,"seasonNumber":8,"episodeNumber":12,"title":"The Zenith","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"Confronted by a dark energy like nothing they've faced before, the Paladins must draw on their everlasting bond -- and a few Balmera -- to forge ahead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":5056},{"seriesId":20,"episodeFileId":5775,"seasonNumber":8,"episodeNumber":13,"title":"The End is the Beginning","airDate":"2018-12-14","airDateUtc":"2018-12-14T07:00:00Z","overview":"Voltron and Honerva come together at the source of all realities in the ultimate battle between good and evil for the survival of the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":5057}],"episodeFile":[{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Rise of Voltron-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E01.The Rise of Voltron-WEBDL-1080p.mkv","size":2778770377,"dateAdded":"2018-10-10T23:06:41.416371Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4902038,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:08:41","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3799},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Across the Universe-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E01.Across the Universe-WEBDL-1080p.mkv","size":1000436148,"dateAdded":"2018-10-10T23:06:41.452723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3800},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E01.A Little Adventure-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E01.A Little Adventure-WEBDL-1080p.mkv","size":963319990,"dateAdded":"2018-10-10T23:06:41.485067Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3801},{"seriesId":20,"seasonNumber":5,"relativePath":"Season 05\/S05E01.The Prisoner-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 05\/S05E01.The Prisoner-WEBDL-1080p.mkv","size":918740043,"dateAdded":"2018-10-10T23:06:41.51643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3802},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Changing of the Guard-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E01.Changing of the Guard-WEBDL-1080p.mkv","size":876858571,"dateAdded":"2018-10-10T23:06:41.547169Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3803},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Omega Shield-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E01.Omega Shield-WEBDL-1080p.mkv","size":876238292,"dateAdded":"2018-10-10T23:06:41.578725Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3804},{"seriesId":20,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Code of Honor-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 04\/S04E01.Code of Honor-WEBDL-1080p.mkv","size":804712858,"dateAdded":"2018-10-10T23:06:41.610147Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3805},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Some Assembly Required-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E02.Some Assembly Required-WEBDL-1080p.mkv","size":1206799425,"dateAdded":"2018-10-10T23:06:41.641484Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6392114,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3806},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E02.The Road Home-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E02.The Road Home-WEBDL-1080p.mkv","size":852237099,"dateAdded":"2018-10-10T23:06:41.672448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3807},{"seriesId":20,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Reunion-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 04\/S04E02.Reunion-WEBDL-1080p.mkv","size":806101017,"dateAdded":"2018-10-10T23:06:41.703425Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3808},{"seriesId":20,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Blood Duel-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 05\/S05E02.Blood Duel-WEBDL-1080p.mkv","size":804508228,"dateAdded":"2018-10-10T23:06:41.735972Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3809},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Depths-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E02.The Depths-WEBDL-1080p.mkv","size":804439310,"dateAdded":"2018-10-10T23:06:41.76723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3810},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Red Paladin-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E02.Red Paladin-WEBDL-1080p.mkv","size":770885974,"dateAdded":"2018-10-10T23:06:41.798938Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3811},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Razor's Edge-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E02.Razor's Edge-WEBDL-1080p.mkv","size":736960130,"dateAdded":"2018-10-10T23:06:41.8304Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3812},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Shiro's Escape-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E03.Shiro's Escape-WEBDL-1080p.mkv","size":1314477320,"dateAdded":"2018-10-10T23:06:41.862439Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3813},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Return of the Gladiator-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E03.Return of the Gladiator-WEBDL-1080p.mkv","size":1257152183,"dateAdded":"2018-10-10T23:06:41.897609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6674841,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3814},{"seriesId":20,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Postmortem-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 05\/S05E03.Postmortem-WEBDL-1080p.mkv","size":1005146294,"dateAdded":"2018-10-10T23:06:41.932346Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3815},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Hunted-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E03.The Hunted-WEBDL-1080p.mkv","size":958666525,"dateAdded":"2018-10-10T23:06:41.976411Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3816},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Monsters & Mana-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E03.Monsters & Mana-WEBDL-1080p.mkv","size":839830234,"dateAdded":"2018-10-10T23:06:42.007489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3817},{"seriesId":20,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Black Site-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 04\/S04E03.Black Site-WEBDL-1080p.mkv","size":737251009,"dateAdded":"2018-10-10T23:06:42.038454Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3818},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E03.The Way Forward-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E03.The Way Forward-WEBDL-1080p.mkv","size":694481069,"dateAdded":"2018-10-10T23:06:42.069217Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3819},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E04.The Feud!-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E04.The Feud!-WEBDL-1080p.mkv","size":1420374152,"dateAdded":"2018-10-10T23:06:42.100347Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3820},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Fall of the Castle of Lions-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E04.Fall of the Castle of Lions-WEBDL-1080p.mkv","size":1073532434,"dateAdded":"2018-10-10T23:06:42.131864Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5643826,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3821},{"seriesId":20,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Kral Zera-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 05\/S05E04.Kral Zera-WEBDL-1080p.mkv","size":918141148,"dateAdded":"2018-10-10T23:06:42.16308Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3822},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Greening the Cube-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E04.Greening the Cube-WEBDL-1080p.mkv","size":878261836,"dateAdded":"2018-10-10T23:06:42.194054Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3823},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E04.The Colony-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E04.The Colony-WEBDL-1080p.mkv","size":839341598,"dateAdded":"2018-10-10T23:06:42.225769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3824},{"seriesId":20,"seasonNumber":4,"relativePath":"Season 04\/S04E04.The Voltron Show!-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 04\/S04E04.The Voltron Show!-WEBDL-1080p.mkv","size":770724282,"dateAdded":"2018-10-10T23:06:42.256616Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3825},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Hole in the Sky-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E04.Hole in the Sky-WEBDL-1080p.mkv","size":736085972,"dateAdded":"2018-10-10T23:06:42.287588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3826},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E05.The Ruins-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E05.The Ruins-WEBDL-1080p.mkv","size":1358630952,"dateAdded":"2018-10-10T23:06:42.319311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3827},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Tears of the Balmera-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E05.Tears of the Balmera-WEBDL-1080p.mkv","size":1092268978,"dateAdded":"2018-10-10T23:06:42.350444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5749030,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3828},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Eye of the Storm-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E05.Eye of the Storm-WEBDL-1080p.mkv","size":1003070984,"dateAdded":"2018-10-10T23:06:42.381883Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3829},{"seriesId":20,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Begin the Blitz-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 04\/S04E05.Begin the Blitz-WEBDL-1080p.mkv","size":959877612,"dateAdded":"2018-10-10T23:06:42.412679Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3830},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E05.The Black Paladins-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E05.The Black Paladins-WEBDL-1080p.mkv","size":919049693,"dateAdded":"2018-10-10T23:06:42.449156Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3831},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Journey-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E05.The Journey-WEBDL-1080p.mkv","size":769322980,"dateAdded":"2018-10-10T23:06:42.481305Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3832},{"seriesId":20,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Bloodlines-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 05\/S05E05.Bloodlines-WEBDL-1080p.mkv","size":768725760,"dateAdded":"2018-10-10T23:06:42.512533Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3833},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E06.The Journey Within-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E06.The Journey Within-WEBDL-1080p.mkv","size":1125073576,"dateAdded":"2018-10-10T23:06:42.544078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3834},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Taking Flight-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E06.Taking Flight-WEBDL-1080p.mkv","size":1080551075,"dateAdded":"2018-10-10T23:06:42.579368Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5683236,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3835},{"seriesId":20,"seasonNumber":4,"relativePath":"Season 04\/S04E06.A New Defender-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 04\/S04E06.A New Defender-WEBDL-1080p.mkv","size":961942874,"dateAdded":"2018-10-10T23:06:42.613783Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3836},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E06.All Good Things-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E06.All Good Things-WEBDL-1080p.mkv","size":918432463,"dateAdded":"2018-10-10T23:06:42.647Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3837},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Ark of Taujeer-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E06.The Ark of Taujeer-WEBDL-1080p.mkv","size":876664339,"dateAdded":"2018-10-10T23:06:42.683889Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3838},{"seriesId":20,"seasonNumber":5,"relativePath":"Season 05\/S05E06.White Lion-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 05\/S05E06.White Lion-WEBDL-1080p.mkv","size":839334723,"dateAdded":"2018-10-10T23:06:42.720542Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3839},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Tailing a Comet-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E06.Tailing a Comet-WEBDL-1080p.mkv","size":770551686,"dateAdded":"2018-10-10T23:06:42.752184Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3840},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E07.The Last Stand (1)-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E07.The Last Stand (1)-WEBDL-1080p.mkv","size":1422723346,"dateAdded":"2018-10-10T23:06:42.783687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3841},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Return to the Balmera-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E07.Return to the Balmera-WEBDL-1080p.mkv","size":1286433064,"dateAdded":"2018-10-10T23:06:42.81537Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6839252,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3842},{"seriesId":20,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Defender of All Universes-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 06\/S06E07.Defender of All Universes-WEBDL-1080p.mkv","size":1003612600,"dateAdded":"2018-10-10T23:06:42.847507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3843},{"seriesId":20,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Legend Begins-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 03\/S03E07.The Legend Begins-WEBDL-1080p.mkv","size":771341471,"dateAdded":"2018-10-10T23:06:42.885572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3844},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Space Mall-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E07.Space Mall-WEBDL-1080p.mkv","size":768705048,"dateAdded":"2018-10-10T23:06:42.917381Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3845},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Rebirth-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E08.Rebirth-WEBDL-1080p.mkv","size":1330439037,"dateAdded":"2018-10-10T23:06:42.950689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7086343,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3846},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Blade of Marmora-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E08.The Blade of Marmora-WEBDL-1080p.mkv","size":878271918,"dateAdded":"2018-10-10T23:06:42.983073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3847},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E08.The Last Stand (2)-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E08.The Last Stand (2)-WEBDL-1080p.mkv","size":781623990,"dateAdded":"2018-10-10T23:06:43.014979Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3848},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Crystal Venom-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E09.Crystal Venom-WEBDL-1080p.mkv","size":1087516433,"dateAdded":"2018-10-10T23:06:43.046324Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5722346,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3849},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Belly of the Weblum-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E09.The Belly of the Weblum-WEBDL-1080p.mkv","size":919644537,"dateAdded":"2018-10-10T23:06:43.077814Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3850},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Know Your Enemy-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E09.Know Your Enemy-WEBDL-1080p.mkv","size":851016878,"dateAdded":"2018-10-10T23:06:43.109429Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3851},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Collection and Extraction-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E10.Collection and Extraction-WEBDL-1080p.mkv","size":988151079,"dateAdded":"2018-10-10T23:06:43.140759Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5164414,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3852},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Heart of the Lion-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E10.Heart of the Lion-WEBDL-1080p.mkv","size":850292304,"dateAdded":"2018-10-10T23:06:43.178321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3853},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Escape from Beta Traz-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E10.Escape from Beta Traz-WEBDL-1080p.mkv","size":706143069,"dateAdded":"2018-10-10T23:06:43.210757Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3854},{"seriesId":20,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Black Paladin-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 01\/S01E11.The Black Paladin-WEBDL-1080p.mkv","size":1396867060,"dateAdded":"2018-10-10T23:06:43.241739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7459332,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3855},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Stayin' Alive-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E11.Stayin' Alive-WEBDL-1080p.mkv","size":918193919,"dateAdded":"2018-10-10T23:06:43.272257Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3856},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Trial By Fire-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E11.Trial By Fire-WEBDL-1080p.mkv","size":751864017,"dateAdded":"2018-10-10T23:06:43.302575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3857},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Best Laid Plans-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E12.Best Laid Plans-WEBDL-1080p.mkv","size":1004427745,"dateAdded":"2018-10-10T23:06:43.332631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3858},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Lions' Pride (1)-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E12.Lions' Pride (1)-WEBDL-1080p.mkv","size":963812715,"dateAdded":"2018-10-10T23:06:43.362899Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3859},{"seriesId":20,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Blackout-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 02\/S02E13.Blackout-WEBDL-1080p.mkv","size":1144849059,"dateAdded":"2018-10-10T23:06:43.393391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6190000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3860},{"seriesId":20,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Lions' Pride (2)-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 07\/S07E13.Lions' Pride (2)-WEBDL-1080p.mkv","size":886247431,"dateAdded":"2018-10-10T23:06:43.425684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3861},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Battle Scars-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E04.Battle Scars-WEBDL-1080p.mkv","size":1004772374,"dateAdded":"2018-12-27T18:16:45.471203Z","sceneName":"Voltron.Legendary.Defender.S08E04.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5729},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Knights of Light (1)-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E09.Knights of Light (1)-WEBDL-1080p.mkv","size":885256262,"dateAdded":"2018-12-27T18:19:54.628041Z","sceneName":"Voltron.Legendary.Defender.S08E09.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5730},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E03.The Prisoner's Dilemma-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E03.The Prisoner's Dilemma-WEBDL-1080p.mkv","size":923059613,"dateAdded":"2018-12-27T19:27:47.995309Z","sceneName":"Voltron.Legendary.Defender.S08E03.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5742},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E12.The Zenith-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E12.The Zenith-WEBDL-1080p.mkv","size":964821929,"dateAdded":"2018-12-27T20:05:46.04461Z","sceneName":"Voltron.Legendary.Defender.S08E12.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5753},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E02.Shadows-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E02.Shadows-WEBDL-1080p.mkv","size":752235260,"dateAdded":"2018-12-27T20:35:45.199508Z","sceneName":"Voltron.Legendary.Defender.S08E02.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5763},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E05.The Grudge-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E05.The Grudge-WEBDL-1080p.mkv","size":1094764544,"dateAdded":"2018-12-27T20:46:03.59808Z","sceneName":"Voltron.Legendary.Defender.S08E05.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5765},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E06.Genesis-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E06.Genesis-WEBDL-1080p.mkv","size":1006106961,"dateAdded":"2018-12-27T20:50:16.218615Z","sceneName":"Voltron.Legendary.Defender.S08E06.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5766},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E08.Clear Day-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E08.Clear Day-WEBDL-1080p.mkv","size":782810388,"dateAdded":"2018-12-27T20:55:31.365892Z","sceneName":"Voltron.Legendary.Defender.S08E08.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5769},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E07.Day Forty-Seven-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E07.Day Forty-Seven-WEBDL-1080p.mkv","size":1424740159,"dateAdded":"2018-12-27T20:59:30.264948Z","sceneName":"Voltron.Legendary.Defender.S08E07.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5771},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E10.Knights of Light (2)-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E10.Knights of Light (2)-WEBDL-1080p.mkv","size":1005924071,"dateAdded":"2018-12-27T21:07:25.952834Z","sceneName":"Voltron.Legendary.Defender.S08E10.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5774},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E13.The End is the Beginning-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E13.The End is the Beginning-WEBDL-1080p.mkv","size":976792636,"dateAdded":"2018-12-27T21:10:45.789539Z","sceneName":"Voltron.Legendary.Defender.S08E13.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5775},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E11.Uncharted Regions-WEBDL-1080p.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E11.Uncharted Regions-WEBDL-1080p.mkv","size":924408389,"dateAdded":"2018-12-27T21:36:02.012921Z","sceneName":"Voltron.Legendary.Defender.S08E11.1080p.WEB.x264-CRiMSON[rarbg]","releaseGroup":"CRiMSON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ German \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5809},{"seriesId":20,"seasonNumber":8,"relativePath":"Season 08\/S08E01.Launch Date-WEBDL-1080p Proper.mkv","path":"\/tv\/Voltron- Legendary Defender\/Season 08\/S08E01.Launch Date-WEBDL-1080p Proper.mkv","size":721872459,"dateAdded":"2018-12-27T21:37:33.507153Z","sceneName":"Voltron.Legendary.Defender.S08E01.PROPER.1080p.WEB.X264-DEFLATE[rarbg]","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Japanese \/ Norwegian \/ Portuguese \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5810}],"queue":[]},"21":{"series":{"title":"Mob Psycho 100","alternateTitles":[{"title":"Mob Psycho 100 S2","sceneSeasonNumber":2},{"title":"Mob Psycho 100 II","sceneSeasonNumber":2}],"sortTitle":"mob psycho 100","status":"ended","ended":true,"overview":"Kageyama Shigeo (a.k.a. \"Mob\") is a 8th grader with psychic abilities. He could bend spoons and lift objects with his mind from a young age, but he slowly began to withhold from using his abilities in public due to the negative attention he kept receiving. Now, the only thing he wants is to become friends with a girl in his class, Tsubomi. With his psychic \"mentor\" (who has no psychic powers), he continues his daily life, attempting to realize his purpose in life.","previousAiring":"2019-04-01T14:00:00Z","network":"Tokyo MX","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/24\/banner.jpg?lastWrite=637101855949655050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/307375-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/24\/poster.jpg?lastWrite=637592941715163770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/307375\/posters\/60aa39f03e5be.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/24\/fanart.jpg?lastWrite=637337697241720120","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c33d83b55f10.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-09-27T14:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":11023578103,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-04-01T14:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":29759805934,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Mob Psycho 100","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":307375,"tvRageId":0,"tvMazeId":18260,"firstAired":"2016-07-12T00:00:00Z","seriesType":"standard","cleanTitle":"mobpsycho100","imdbId":"tt5897304","titleSlug":"mob-psycho-100","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Comedy","Fantasy"],"tags":[],"added":"2018-04-10T14:07:02.7576833Z","ratings":{"votes":202,"value":9.0},"statistics":{"seasonCount":2,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":33,"sizeOnDisk":40783384037,"percentOfEpisodes":100.0},"id":24},"episodes":[{"seriesId":24,"episodeFileId":7151,"seasonNumber":1,"episodeNumber":1,"title":"Self-Proclaimed Psychic: Reigen Arataka ~And Mob~","airDate":"2016-07-12","airDateUtc":"2016-07-12T14:00:00Z","overview":"Psychics fight with supernatural phenomena that cannot be explained by science. Reigen Arataka that runs the Spirits and Such Consultation office is one of those psychics... well, a fake one. His only hope is a super dull middle-schooler named Kageyama Shigeo, a.k.a. Mob. 27% towards Mob's explosion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2690},{"seriesId":24,"episodeFileId":7152,"seasonNumber":1,"episodeNumber":2,"title":"Doubts about Youth ~The Telepathy Club Appears~","airDate":"2016-07-19","airDateUtc":"2016-07-19T14:00:00Z","overview":"The Telepathy Club is told that they are going to be shut down by the student council due to lack of members. It was then that one of the members, Inukawa, thought of possibly getting Mob to join. However, Mob gets a call from Reigen about taking care of an incident at Highso Girls' Academy...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2691},{"seriesId":24,"episodeFileId":7153,"seasonNumber":1,"episodeNumber":3,"title":"An Invitation to a Meeting ~Simply Put, I Just Want to be Popular~","airDate":"2016-07-26","airDateUtc":"2016-07-26T14:00:00Z","overview":"It's great that Mob joined the Body Improvement Club, but he suddenly faints as he's running along the riverside. His wish is to get stronger and to be able to get closer to his beloved Tsubomi-chan. One day, as Mob is feeling troubled, a woman with a strange mask approaches him... Progress toward Mob's explosion: 20%","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2692},{"seriesId":24,"episodeFileId":7154,"seasonNumber":1,"episodeNumber":4,"title":"Idiots Only Event ~Kin~","airDate":"2016-08-02","airDateUtc":"2016-08-02T14:00:00Z","overview":"After the incident with the religious organization (LOL), the evil spirit, Dimple, keeps following Mob around. Also, because of the incident, Mezato Ichi from the school paper starts following around Mob, as well. Then one day, another student joins the Body Improvement Club. Progress Towards Mob's Explosion: 45%","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2693},{"seriesId":24,"episodeFileId":7155,"seasonNumber":1,"episodeNumber":5,"title":"OCHIMUSHA ~Psychic Powers and Me~","airDate":"2016-08-09","airDateUtc":"2016-08-09T14:00:00Z","overview":"Mob is challenged to a one-on-one fight with Black Vinegar Middle School's shadow leader, Hanazawa Teruki, otherwise known as Teru. Mob doesn't use his powers but Teru goes all out on him, destroying everything around him. Teru continues to unleash his incredible power when Mob suddenly remembers a tragedy that happened between him and Ritsu...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2694},{"seriesId":24,"episodeFileId":7156,"seasonNumber":1,"episodeNumber":6,"title":"Discord ~To Become One~","airDate":"2016-08-16","airDateUtc":"2016-08-16T14:00:00Z","overview":"Peaceful days return after Mob's fight with Teru. As usual, Reigen continues to trick people as a fake psychic, and the president of the Telepathy Club, Kurata Tome, drags Mob around to find other espers. Then one day, a mysterious man talks to Mob's younger brother, Ritsu...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2695},{"seriesId":24,"episodeFileId":1966,"seasonNumber":1,"episodeNumber":7,"title":"Exaltation ~I've Obtained Loss~","airDate":"2016-08-23","airDateUtc":"2016-08-23T14:00:00Z","overview":"Salt Middle School undergoes deep cleaning lead by the student council president, Kamuro, and one thug after another gets targeted. Meanwhile, the story about Mob defeating the shadow leader at Black Vinegar Middle School starts to get embellished and takes on a life of it's own, and Mob gets to be known as \"White T Poison.\" All of the gang leaders from the other schools start to gather at Salt Middle School to confront White T Poison. Also, Ritsu awakens to his dormant psychic powers, and Dimple manages to convince Ritsu to pair with him to become stronger than his brother. Ritsu finally gets to experience those powers for himself, but...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2696},{"seriesId":24,"episodeFileId":1967,"seasonNumber":1,"episodeNumber":8,"title":"The Older Brother Bows ~Destructive Intent~","airDate":"2016-08-30","airDateUtc":"2016-08-30T14:00:00Z","overview":"After defeating all of the gang leaders from the surrounding schools, Ritsu feels omnipotent. And then, he's confronted by none other than his older brother, Mob. Mob knew that Ritsu had wanted psychic powers for a while, so he congratulates him. However Ritsu doesn't greet his brother with kindness. Meanwhile, a mysterious man watches the brothers from a distance. He easily manages to grab Ritsu, and tries to drag him off. Mob activates his powers in order to save his brother, but...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2697},{"seriesId":24,"episodeFileId":3988,"seasonNumber":1,"episodeNumber":9,"title":"Claw ~7th Division~","airDate":"2016-09-06","airDateUtc":"2016-09-06T14:00:00Z","overview":"Ritsu and the others get abducted by a mysterious man named Koyama, and get taken to the secret organization Claw's 7th Division. Claw is an organization who is trying to lead the world to a better future by taking it over. One of Claw's assassins, Terada goes after Mob and Teru, but they overpower him and get him to tell them...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2698},{"seriesId":24,"episodeFileId":1969,"seasonNumber":1,"episodeNumber":10,"title":"The Heinous Aura ~Mastermind~","airDate":"2016-09-13","airDateUtc":"2016-09-13T14:00:00Z","overview":"Mob and Teru infiltrate the Claw's 7th Division to save Ritsu. Meanwhile, Ritsu tries to escape with the other esper kids and they run into the upper echelon and leader of the 7th Division. Teru and Dimple run into trouble after a strenuous battle, and the boss from Claw finally shows himself...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2699},{"seriesId":24,"episodeFileId":1970,"seasonNumber":1,"episodeNumber":11,"title":"Master ~Leader~","airDate":"2016-09-20","airDateUtc":"2016-09-20T14:00:00Z","overview":"Mob, Ritsu, and Teru are trapped in a room where they can't use their powers. And then, someone rather unexpected shows up in front of them: Mob's master and self-proclaimed psychic, Reigen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2700},{"seriesId":24,"episodeFileId":1971,"seasonNumber":1,"episodeNumber":12,"title":"Mob and Reigen ~A Giant Tsuchinoko Appears~","airDate":"2016-09-27","airDateUtc":"2016-09-27T14:00:00Z","overview":"Mob is finally pushed to his limit when he has to face Sakurai, Muraki, Matsuo and Ishiguro of the upper echelon. But then, he comes to a rather surprising decision...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2701},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Mob Psycho Mini 8-bit Shorts 1","airDate":"2016-09-28","airDateUtc":"2016-09-28T14:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2703},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Mob Psycho Mini 8-bit Shorts 2","airDate":"2016-10-26","airDateUtc":"2016-10-26T14:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2704},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Mob Psycho Mini 8-bit Shorts 3","airDate":"2016-11-23","airDateUtc":"2016-11-23T14:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2705},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Mob Psycho Mini 8-bit Shorts 4","airDate":"2016-12-21","airDateUtc":"2016-12-21T14:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2706},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Mob Psycho Mini 8-bit Shorts 5","airDate":"2017-01-25","airDateUtc":"2017-01-25T14:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2707},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Mob Psycho Mini 8-bit Shorts 6","airDate":"2017-02-22","airDateUtc":"2017-02-22T14:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2708},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Reigen: The Miracle Psychic That Nobody Knows","airDate":"2018-03-18","airDateUtc":"2018-03-18T14:00:00Z","overview":"A summary episode of Mob Psycho 100 which features commentary from Reigen Arataka.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2709},{"seriesId":24,"episodeFileId":15463,"seasonNumber":2,"episodeNumber":1,"title":"Ripped Apart ~Someone Is Watching~","airDate":"2019-01-07","airDateUtc":"2019-01-07T14:00:00Z","overview":"Reigen recieved a phone call at his office, the Spirits and Such Consultation Office. The client asked him to find out what the black shadow that kept destroying his fields actually was. Meanwhile, back at Salt Middle School, Kamuro announces that he's going to resign from the position of student council president. Elections to decide a new studnet council president are going to be held and Mezato convinces Mob to run as a candidate, but...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":2702},{"seriesId":24,"episodeFileId":15464,"seasonNumber":2,"episodeNumber":2,"title":"Urban Legends ~Encountering Rumors~","airDate":"2019-01-14","airDateUtc":"2019-01-14T14:00:00Z","overview":"Because of the lack of clients visiting or calling his office, Reigen decides to take his business on the road. They go to Cuticle City where there seems to be various urban legend sightings. They immediately get a request to deal with something called the Dragger. With the help of a local psychic they happened to meet named Shinra Banshomaru they go to take care of the Dragger as well as the other urban legends that plague the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":9481},{"seriesId":24,"episodeFileId":15465,"seasonNumber":2,"episodeNumber":3,"title":"One Danger After Another ~Degeneration~","airDate":"2019-01-21","airDateUtc":"2019-01-21T14:00:00Z","overview":"Reigen sets up an official homepage for his Spirits and Such Consultation Office and he immediately starts to get jobs left and right, including a middle-aged man asking Reigen to curse someone and a woman who's being haunted by a ghost. As he was listening to their problems, Mob realizes something. Why do people treat humans and spirits so differently? Meanwhile, Reigen gets another request from a group of college students that want to take a photo at a haunted location, but...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":9482},{"seriesId":24,"episodeFileId":15466,"seasonNumber":2,"episodeNumber":4,"title":"Inside ~Evil Spirit~","airDate":"2019-01-28","airDateUtc":"2019-01-28T14:00:00Z","overview":"Reigen and Mob receive a new job. This time, their client is a wealthy man named Asagiri Masashi. He's not just rich, but super rich, so Reigen and Mob head to his mansion only to find other self-proclaimed psychics there as well. One of the psychics there happens to include the president of the Rising Sun Spiritual Union, Jodo Kirin. The job is apparently to exorcise the evil spirit that is apparently possessing his daughter, Minori.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":9483},{"seriesId":24,"episodeFileId":15467,"seasonNumber":2,"episodeNumber":5,"title":"Discord ~Choices~","airDate":"2019-02-04","airDateUtc":"2019-02-04T14:00:00Z","overview":"Mob gets trapped inside a parallel world created by Mogami Keiji. Minori ends up transferring to his class, and Mob becomes the target of bullying. He can't ask anyone for help, and his negative emotions start to build inside. The truth behind the tragedy that Mogami went through when he was alive comes to light. Meanwhile, Reigen and the others were waiting for Mob to regain consciousness back at the Asagiri mansion. Dimple attempts to save Mob by infiltrating Minori's body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10254},{"seriesId":24,"episodeFileId":15468,"seasonNumber":2,"episodeNumber":6,"title":"Poor, Lonely, Whitey","airDate":"2019-02-11","airDateUtc":"2019-02-11T14:00:00Z","overview":"After hanging out with the Body Improvement Club and Telepathy Club more, Mob starts to feel joy like he'd never felt before. One day while he's having fun with them, he gets a call from Reigen, spoiling his fun. Mob asks Reigen to stop summoning him so suddenly, and Reigen just handles the situation in his usual overbearing manner. And because of something very minor, a gap forms between them. Reigen is forced to go on jobs without Mob, forcing him to reexamine himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10255},{"seriesId":24,"episodeFileId":15469,"seasonNumber":2,"episodeNumber":7,"title":"Cornered ~True Identity~","airDate":"2019-02-18","airDateUtc":"2019-02-18T14:00:00Z","overview":"After splitting up with Mob, Reigen starts doing a lot of the jobs on his own. He then gets an offer to appear on a TV program. Reigen is ecstatic and accepts the offer, but this was all a trap set by Jodo Kirin, the president of the Rising Sun Spiritual Union. Jodo corners him during the live filming of the show and the fact that Reigen is a fraud comes to light. Reigen gets bashed from all sides and ends up having to hold a press conference...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10256},{"seriesId":24,"episodeFileId":15470,"seasonNumber":2,"episodeNumber":8,"title":"Even Then ~Continue Forward~","airDate":"2019-02-25","airDateUtc":"2019-02-25T14:00:00Z","overview":"The day for the annual marathon and Salt Middle School was drawing nearer. Mob proclaims that if he places in the top 10 he'll tell Tsubomi how he feels about her. Everyone around him cheers Mob on and he starts training hard every day until the day of the event. Meanwhile, Tsubomi and her friend Miki go to Reigen's Spirits and Such Consultation Office with a request. Ritsu happened to be at the office, helping out in Mob's absence, but he hears Tsubomi say something rather surprising.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10257},{"seriesId":24,"episodeFileId":15471,"seasonNumber":2,"episodeNumber":9,"title":"Show Me What You've Got ~Band Together~","airDate":"2019-03-04","airDateUtc":"2019-03-04T14:00:00Z","overview":"With his house up in flames, Mob and Dimple find something that resembles his family burnt within the fire. They immediately go to find who's behind this and run into members of the mysterious group, the Claw. Unable to control his rage, Mob disposes of them immediately, but then Koyama and Sakurai from the 7th Division appear before him. They end up meeting up with Teru and Reigen, who were also attacked by members of the Claw, at a secret lair. What could the Claw be plotting?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10258},{"seriesId":24,"episodeFileId":15472,"seasonNumber":2,"episodeNumber":10,"title":"Collision ~Power Type~","airDate":"2019-03-11","airDateUtc":"2019-03-11T14:00:00Z","overview":"The boss of the Claw, Suzuki Toichiro barricades himself into Seasoning City Culture Tower after declaring war on the world. After instantly getting rid of the police barriers, they make their next move. Meanwhile, back at the hideout, Reigen and the others were making their move, as well. The former members of the 7th Division and the Awakening Lab head to the tower under Reigen's instruction. Sho and Ritsu also make their move to stop Suzuki's plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10259},{"seriesId":24,"episodeFileId":15473,"seasonNumber":2,"episodeNumber":11,"title":"Guidance ~Psychic Sensor~","airDate":"2019-03-18","airDateUtc":"2019-03-18T14:00:00Z","overview":"Sho finally arrived at Seasoning Cultural Tower and was greeted by Shimazaki, one of the Ultimate 5. Ritsu faces off with Shimazaki and urges Sho to go ahead. However, Shimazaki is able to teleport and he gets ahead of him. Meanwhile, Mob has woken up and is heading to the tower and is also approached by one of the Ultimate 5, Minegishi. Mob has a difficult time dealing with Minegishi, who controls plants, but then someone rather unexpected comes to his aid.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10260},{"seriesId":24,"episodeFileId":15474,"seasonNumber":2,"episodeNumber":12,"title":"Battle for Social Rehabilitation ~Friendship~","airDate":"2019-03-25","airDateUtc":"2019-03-25T14:00:00Z","overview":"Three years ago, Serizawa was troubled with about his psychic powers. One day, he was visited by the boss, Suzuki Toichiro. Serizawa ends up trusting him since he's the first person to understand what he's going through. But Mob then brings up the fact that Serizawa is being used and tells him, \"I'll be your friend.\" Hearing Mob say that, Serizawa... Meanwhile, after defeating Sho, the boss starts gathering up the energy he was sharing with his followers and turns into an energy monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10261},{"seriesId":24,"episodeFileId":15475,"seasonNumber":2,"episodeNumber":13,"title":"Boss Fight ~The Final Light~","airDate":"2019-04-01","airDateUtc":"2019-04-01T14:00:00Z","overview":"The conclusion of the final fight and the start and reinvigoration of numerous relationships.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10943},{"seriesId":24,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~","airDate":"2019-09-25","airDateUtc":"2019-09-25T14:00:00Z","overview":"Mob, Reigen, Dimple, and the newest member of the Spirits and Such Consultation Office staff, Serizawa, take a trip up to a secluded hot spring called Ibogami Hot Springs in Zebra Prefecture. Reigen happened to get a request from the matron there to discover the truth behind the strange rumors going around there and save the inn. Ritsu and Teru also join in on this trip and the six of them head out on this super relaxing trip to the hot spring. But on their way there, Reigen and Serizawa start nodding off on the train and somehow get sucked into an eerie parallel world...","hasFile":false,"monitored":false,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":11575}],"episodeFile":[{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Exaltation ~I've Obtained Loss~-HDTV-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E07.Exaltation ~I've Obtained Loss~-HDTV-1080p.mkv","size":1814252584,"dateAdded":"2018-10-10T22:02:12.788431Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1483877,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8444642,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1966},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Older Brother Bows ~Destructive Intent~-HDTV-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E08.The Older Brother Bows ~Destructive Intent~-HDTV-1080p.mkv","size":1940139288,"dateAdded":"2018-10-10T22:02:12.815639Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1520852,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9108577,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1967},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Heinous Aura ~Mastermind~-HDTV-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E10.The Heinous Aura ~Mastermind~-HDTV-1080p.mkv","size":2118160899,"dateAdded":"2018-10-10T22:02:12.869485Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1530788,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10080002,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1969},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Master ~Leader~-HDTV-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E11.Master ~Leader~-HDTV-1080p.mkv","size":2013897248,"dateAdded":"2018-10-10T22:02:12.896553Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1514549,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9513836,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1970},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Mob and Reigen ~A Giant Tsuchinoko Appears~-HDTV-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E12.Mob and Reigen ~A Giant Tsuchinoko Appears~-HDTV-1080p.mkv","size":1958920877,"dateAdded":"2018-10-10T22:02:12.923603Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1515143,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9217740,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1971},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Claw ~7th Division~-WEBDL-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E09.Claw ~7th Division~-WEBDL-1080p.mkv","size":1080700971,"dateAdded":"2018-10-12T11:21:41.083608Z","sceneName":"[TPABR] Mob Psycho 100 - 09 [WEBRip.1080p] [333C4268]","releaseGroup":"TPABR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5807594,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3988},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Self-Proclaimed Psychic- Reigen Arataka ~And Mob~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E01.Self-Proclaimed Psychic- Reigen Arataka ~And Mob~-Bluray-1080p.mkv","size":17943469,"dateAdded":"2019-03-12T14:48:55.087966Z","releaseGroup":"Hi10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106356,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":208215,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"7:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7151},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Doubts about Youth ~The Telepathy Club Appears~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E02.Doubts about Youth ~The Telepathy Club Appears~-Bluray-1080p.mkv","size":14769778,"dateAdded":"2019-03-12T14:48:56.050345Z","releaseGroup":"Hi10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106631,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":206666,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7152},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E03.An Invitation to a Meeting ~Simply Put, I Just Want to be Popular~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E03.An Invitation to a Meeting ~Simply Put, I Just Want to be Popular~-Bluray-1080p.mkv","size":20085466,"dateAdded":"2019-03-12T14:48:56.447398Z","releaseGroup":"Hi10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":103165,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":219110,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"8:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7153},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Idiots Only Event ~Kin~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E04.Idiots Only Event ~Kin~-Bluray-1080p.mkv","size":14375347,"dateAdded":"2019-03-12T14:48:56.829743Z","releaseGroup":"Hi10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":102600,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":200101,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7154},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E05.OCHIMUSHA ~Psychic Powers and Me~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E05.OCHIMUSHA ~Psychic Powers and Me~-Bluray-1080p.mkv","size":14902221,"dateAdded":"2019-03-12T14:48:57.209909Z","releaseGroup":"Hi10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":104292,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":218429,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7155},{"seriesId":24,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Discord ~To Become One~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 01\/S01E06.Discord ~To Become One~-Bluray-1080p.mkv","size":15429955,"dateAdded":"2019-03-12T14:48:57.5437Z","releaseGroup":"Hi10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106163,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":225939,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7156},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Ripped Apart ~Someone Is Watching~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E01.Ripped Apart ~Someone Is Watching~-Bluray-1080p.mkv","size":2362437383,"dateAdded":"2020-08-28T02:57:24.139623Z","sceneName":"Mob.Psycho.100.S02E01.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1680084,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9984191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15463},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Urban Legends ~Encountering Rumors~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E02.Urban Legends ~Encountering Rumors~-Bluray-1080p.mkv","size":2490287135,"dateAdded":"2020-08-28T02:59:17.999763Z","sceneName":"Mob.Psycho.100.S02E02.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1831399,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10459263,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15464},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E03.One Danger After Another ~Degeneration~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E03.One Danger After Another ~Degeneration~-Bluray-1080p.mkv","size":1872333210,"dateAdded":"2020-08-28T03:01:14.827956Z","sceneName":"Mob.Psycho.100.S02E03.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1608846,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7771208,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15465},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Inside ~Evil Spirit~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E04.Inside ~Evil Spirit~-Bluray-1080p.mkv","size":2238750339,"dateAdded":"2020-08-28T03:03:07.500357Z","sceneName":"Mob.Psycho.100.S02E04.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1739148,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9197895,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15466},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Discord ~Choices~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E05.Discord ~Choices~-Bluray-1080p.mkv","size":2149235331,"dateAdded":"2020-08-28T03:05:00.630114Z","sceneName":"Mob.Psycho.100.S02E05.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1748780,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8694017,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15467},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Poor, Lonely, Whitey-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E06.Poor, Lonely, Whitey-Bluray-1080p.mkv","size":2032302086,"dateAdded":"2020-08-28T03:06:54.288989Z","sceneName":"Mob.Psycho.100.S02E06.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1602170,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8653323,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15468},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Cornered ~True Identity~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E07.Cornered ~True Identity~-Bluray-1080p.mkv","size":2292678161,"dateAdded":"2020-08-28T03:08:45.680087Z","sceneName":"Mob.Psycho.100.S02E07.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1639413,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9623466,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15469},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Even Then ~Continue Forward~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E08.Even Then ~Continue Forward~-Bluray-1080p.mkv","size":2337029559,"dateAdded":"2020-08-28T03:10:40.108039Z","sceneName":"Mob.Psycho.100.S02E08.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1696781,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9811614,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15470},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Show Me What You've Got ~Band Together~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E09.Show Me What You've Got ~Band Together~-Bluray-1080p.mkv","size":2316028727,"dateAdded":"2020-08-28T03:12:31.617439Z","sceneName":"Mob.Psycho.100.S02E09.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1760236,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9577556,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15471},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Collision ~Power Type~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E10.Collision ~Power Type~-Bluray-1080p.mkv","size":2368833507,"dateAdded":"2020-08-28T03:14:25.880452Z","sceneName":"Mob.Psycho.100.S02E10.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1709667,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9925693,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15472},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Guidance ~Psychic Sensor~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E11.Guidance ~Psychic Sensor~-Bluray-1080p.mkv","size":2503170442,"dateAdded":"2020-08-28T03:16:19.57934Z","sceneName":"Mob.Psycho.100.S02E11.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1731701,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10633325,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15473},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Battle for Social Rehabilitation ~Friendship~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E12.Battle for Social Rehabilitation ~Friendship~-Bluray-1080p.mkv","size":2448482520,"dateAdded":"2020-08-28T03:18:13.951995Z","sceneName":"Mob.Psycho.100.S02E12.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1722712,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10349212,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15474},{"seriesId":24,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Boss Fight ~The Final Light~-Bluray-1080p.mkv","path":"\/tv\/Mob Psycho 100\/Season 02\/S02E13.Boss Fight ~The Final Light~-Bluray-1080p.mkv","size":2348237534,"dateAdded":"2020-08-28T03:20:08.551285Z","sceneName":"Mob.Psycho.100.S02E13.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1746399,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9786316,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15475}],"queue":[]},"22":{"series":{"title":"Saga of Tanya the Evil","alternateTitles":[{"title":"Youjo Senki","sceneSeasonNumber":-1}],"sortTitle":"saga tanya evil","status":"ended","ended":true,"overview":"On the front lines of the war, there is a little girl. Blond hair, blue eyes, and porcelain white skin, she commands her squad with lisping voice. Her name is Tanya Degurechaff. But in reality, she is one of Japan's most elite salarymen, reborn as a little girl into a world of magical warfare after angering a mysterious being who calls himself God.\r\nTanya resolves to ascend the ranks of her country's military as it slowly plunges into world war, with only Being X proving to be the strongest obstacle in recreating the peaceful life she once knew. But her perceptive actions and combat initiative have an unintended side effect: propelling the mighty Empire into becoming one of the most powerful nations in mankind's history.","previousAiring":"2017-03-31T13:00:00Z","network":"AT-X","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/34\/banner.jpg?lastWrite=636747176452583300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/315500-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/34\/poster.jpg?lastWrite=637618943556289870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/315500\/posters\/60d1cf343f374.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/34\/fanart.jpg?lastWrite=636747176449503360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/315500-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":17,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-03-31T13:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":7646398274,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Saga of Tanya the Evil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":24,"tvdbId":315500,"tvRageId":0,"tvMazeId":22852,"firstAired":"2017-01-06T00:00:00Z","seriesType":"standard","cleanTitle":"sagatanyaevil","imdbId":"tt6455986","titleSlug":"saga-of-tanya-the-evil","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Fantasy","War"],"tags":[],"added":"2018-06-06T19:39:08.8994824Z","ratings":{"votes":161,"value":8.8},"statistics":{"seasonCount":2,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":30,"sizeOnDisk":7646398274,"percentOfEpisodes":100.0},"id":34},"episodes":[{"seriesId":34,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"TBA","hasFile":false,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":21652},{"seriesId":34,"episodeFileId":2197,"seasonNumber":1,"episodeNumber":1,"title":"The Devil of the Rhine","airDate":"2017-01-06","airDateUtc":"2017-01-06T13:00:00Z","overview":"The Empire is a powerful military nation on a continent that looks much like early 20th century Europe. But in this world, magic is real. The Empire is involved in a war against the Entente Alliance, and fighting a poorly executed delaying action in the northern theater. Second Lieutenant Tanya Degurechaff leads a small platoon of mages. But there's something unusual about this lieutenant... she's only nine years old!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":3147},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Mini - Episode 00","airDate":"2017-01-06","airDateUtc":"2017-01-06T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3159},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Mini - Episode 01","airDate":"2017-01-10","airDateUtc":"2017-01-10T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3160},{"seriesId":34,"episodeFileId":2198,"seasonNumber":1,"episodeNumber":2,"title":"Prologue","airDate":"2017-01-13","airDateUtc":"2017-01-13T13:00:00Z","overview":"The secret of Tanya's birth is revealed. Tanya was a cold and unemotional Japanese salaryman who was pushed in front of a train by a man he laid off. An infuriated godlike creature named \"Being X\" sent him to this world, and reincarnated him as a baby girl... with no promise that he would ever be reincarnated again. Now Tanya has to survive, because this is all she's got!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":3148},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Mini - Episode 02","airDate":"2017-01-16","airDateUtc":"2017-01-16T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3161},{"seriesId":34,"episodeFileId":2199,"seasonNumber":1,"episodeNumber":3,"title":"Deus Vult","airDate":"2017-01-20","airDateUtc":"2017-01-20T13:00:00Z","overview":"After her stunning success with her first mission, Tanya is assigned to test a new piece of technology: a highly unstable prototype calculation jewel. This jewel offers her unparalleled power, but just using it risks her life. Tanya is determined to get out of this project and on to someplace easier and safer (like the front lines of the war), but Being X has other ideas...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":3149},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Mini - Episode 03","airDate":"2017-01-23","airDateUtc":"2017-01-23T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3162},{"seriesId":34,"episodeFileId":2200,"seasonNumber":1,"episodeNumber":4,"title":"Campus Life","airDate":"2017-01-27","airDateUtc":"2017-01-27T13:00:00Z","overview":"Tanya is now living life on easy street, as a highly-respected student at the military university. She's so highly respected, in fact, that one of the Empire's chief military planners asks her for her opinion on the course of the war. Eager to show off her intellect (and hopefully land herself a cushy job in the planning department), Tanya comes up with a plan of astonishing insight and intelligence. Her idea backfires, however, when she turns out to be a little too smart for her own good...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":3150},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Mini - Episode 04","airDate":"2017-01-30","airDateUtc":"2017-01-30T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3163},{"seriesId":34,"episodeFileId":2201,"seasonNumber":1,"episodeNumber":5,"title":"My First Battalion","airDate":"2017-02-03","airDateUtc":"2017-02-03T13:00:00Z","overview":"Tanya's new battalion is off the ground and running, and it's time for them to do their first mission: fight back a massive invasion by the Dakian Dukedom to the southeast. The enemy army numbers in the hundreds of thousands, but they've brought no air units at all, which makes them easy pickings for Tanya's highly trained force. After wiping out the enemy army, she heads straight for the enemy capital and launches an attack there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":3151},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Mini - Episode 05","airDate":"2017-02-06","airDateUtc":"2017-02-06T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3164},{"seriesId":34,"episodeFileId":2202,"seasonNumber":1,"episodeNumber":6,"title":"Beginning of Madness","airDate":"2017-02-10","airDateUtc":"2017-02-10T13:00:00Z","overview":"After her easy victory over Dakia, it's time for a more difficult mission: aiding the destruction of the Entente Alliance to the north. The Alliance is being backed by the strong powers, and has equipment and training that in some cases rival the Empire. When Tanya arrives, the Alliance is striking a critical supply base with a bombing raid, and the local Empire force are too overwhlemed to defend against it. Can she get there to hold them off in time?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":3152},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Mini - Episode 06","airDate":"2017-02-13","airDateUtc":"2017-02-13T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3165},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Recap 6.5 - War Report","airDate":"2017-02-17","airDateUtc":"2017-02-17T13:00:00Z","overview":"Recap of the first 6 episodes of Season 1.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3166},{"seriesId":34,"episodeFileId":2203,"seasonNumber":1,"episodeNumber":7,"title":"The Battle of the Fjord","airDate":"2017-02-24","airDateUtc":"2017-02-24T13:00:00Z","overview":"The Empire is launching a seemingly foolish attack on the Entente Alliance in the middle of winter. They lack the supplies to successfully invade. Tanya realizes that this attack is a feint intended to distract from a fjord landing mission. Sure enough, she is sent to lead the invasion of the fjords, and silence 20 cannon emplacements in time for the fleet to land and the Imperial forces to disembark.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":3153},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Mini - Episode 07","airDate":"2017-02-27","airDateUtc":"2017-02-27T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3167},{"seriesId":34,"episodeFileId":2204,"seasonNumber":1,"episodeNumber":8,"title":"Trial by Fire","airDate":"2017-03-03","airDateUtc":"2017-03-03T13:00:00Z","overview":"The war with the Entente Alliance is done, and it's back to the Rhine for Tanya and her forces. The Republic troops are highly trained, well-equipped, and stronger than any she's faced before. And in a distant hospital, a former Kingdom officer wakes up, with a mission from God imprinted on his mind...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":3154},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Mini - Episode 08","airDate":"2017-03-06","airDateUtc":"2017-03-06T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3168},{"seriesId":34,"episodeFileId":2205,"seasonNumber":1,"episodeNumber":9,"title":"Preparations for Advance","airDate":"2017-03-10","airDateUtc":"2017-03-10T13:00:00Z","overview":"The last enemy on the continent is the Republic, and the Empire has come up with a bold plan to take them out. Of course, Tanya is sent to the forefront of this operation, and is forced to take on the entire Republic army by herself while the Empire stages a faked withdrawl. Then it's off for a ride on a rocket as she heads straight into the heart of enemy territory!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":3155},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Mini - Episode 09","airDate":"2017-03-13","airDateUtc":"2017-03-13T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3169},{"seriesId":34,"episodeFileId":2206,"seasonNumber":1,"episodeNumber":10,"title":"The Path to Victory","airDate":"2017-03-17","airDateUtc":"2017-03-17T13:00:00Z","overview":"Tanya's spectacular mission is a success, and the Republic is surrounded and crippled. But on her way back, she runs into a group of allied mages, lead by Anton Souix, the man she crippled once more. He's back, and powered by Being X, and his one mission in life is to take down the Devil of the Rhine!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":3156},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Mini - Episode 10","airDate":"2017-03-20","airDateUtc":"2017-03-20T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3170},{"seriesId":34,"episodeFileId":2207,"seasonNumber":1,"episodeNumber":11,"title":"Resistance","airDate":"2017-03-24","airDateUtc":"2017-03-24T13:00:00Z","overview":"Tanya's diminished smaller company attack the battalion of Allied Kingdom mages rather than retreat. Their company use their altitude advantage but suffer heavy losses, especially when Colonel Sioux uses an illegal Trench Gun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":3157},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Mini - Episode 11","airDate":"2017-03-27","airDateUtc":"2017-03-27T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3171},{"seriesId":34,"episodeFileId":2208,"seasonNumber":1,"episodeNumber":12,"title":"How to Use a Victory","airDate":"2017-03-31","airDateUtc":"2017-03-31T13:00:00Z","overview":"Tanya just barely manages to restrain herself from disobeying her superior officers and attacking the Republic remanents. But the Republic forces have escaped overseas, and vowed to fight to the bitter end. The Empire has been victorious, but in its victory it has terrified the rest of the world and spurred them to action. Is true victory possible at all?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":3158},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Mini - Episode 12","airDate":"2017-04-03","airDateUtc":"2017-04-03T13:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3172},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Saga of Tanya the Evil: The Movie","airDate":"2019-02-08","airDateUtc":"2019-02-08T13:00:00Z","overview":"The time is UC 1926. The Imperial Army's 203rd Air Mage Battalion led by Major Tanya Degurechaff has won the battle to the south against the Republic's stragglers. They expected to be given a vacation after returning victorious, but instead receive special orders from Staff HQ as soon as they get home. They are told that there were signs of a large-scale deployment near the border between the Empire and the Union.\r\n\r\nFaced with the prospect of a new major enemy, the desperate Empire fans the flame of war.\r\n\r\nMeanwhile, an international volunteer army spearheaded by the Kingdom arrived to the Union. As they say, the enemy of an enemy is your friend. They suffer through misfortune purely out of national interest, and among them is a young girl.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":9917},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Saga of Tanya the Evil: The Movie - Theater Manners","airDate":"2019-02-08","airDateUtc":"2019-02-08T13:24:00Z","overview":"Tanya and her battalion tell the viewers to refrain from improper theater etiquette such as using phones during the film, talking, and smoking.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19713},{"seriesId":34,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Operation Desert Pasta","airDate":"2021-06-19","airDateUtc":"2021-06-19T13:00:00Z","overview":"The 203rd Air Mage Battalion led by Tanya is forced to fight in the southern desert, the front line. In an effort to provide some food for the harsh conditions, Colonel Rerugen sent dried pasta to the battlefield. Will Tanya and the others be able to eat the delicious pasta under the conditions of water shortage?","hasFile":false,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":21651}],"episodeFile":[{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Devil of the Rhine-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E01.The Devil of the Rhine-HDTV-1080p.mkv","size":654408756,"dateAdded":"2018-10-10T22:32:22.71997Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1411963,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1914221,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2197},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Prologue-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E02.Prologue-HDTV-1080p.mkv","size":625258156,"dateAdded":"2018-10-10T22:32:22.751363Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1449314,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1709931,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2198},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Deus Vult-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E03.Deus Vult-HDTV-1080p.mkv","size":644485649,"dateAdded":"2018-10-10T22:32:22.781626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1403781,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1863978,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2199},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Campus Life-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E04.Campus Life-HDTV-1080p.mkv","size":579634739,"dateAdded":"2018-10-10T22:32:22.812435Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1271800,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1630835,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2200},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E05.My First Battalion-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E05.My First Battalion-HDTV-1080p.mkv","size":612191337,"dateAdded":"2018-10-10T22:32:22.842514Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1371301,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1717202,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2201},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Beginning of Madness-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E06.Beginning of Madness-HDTV-1080p.mkv","size":599508355,"dateAdded":"2018-10-10T22:32:22.874078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1402025,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1614765,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2202},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Battle of the Fjord-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E07.The Battle of the Fjord-HDTV-1080p.mkv","size":677757339,"dateAdded":"2018-10-10T22:32:22.904267Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1422129,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2033042,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2203},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Trial by Fire-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E08.Trial by Fire-HDTV-1080p.mkv","size":689497723,"dateAdded":"2018-10-10T22:32:22.934344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1424620,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2096597,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2204},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Preparations for Advance-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E09.Preparations for Advance-HDTV-1080p.mkv","size":614489255,"dateAdded":"2018-10-10T22:32:22.96411Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1380100,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1718792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2205},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Path to Victory-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E10.The Path to Victory-HDTV-1080p.mkv","size":659917144,"dateAdded":"2018-10-10T22:32:22.995301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1423898,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1930809,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2206},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Resistance-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E11.Resistance-HDTV-1080p.mkv","size":772891766,"dateAdded":"2018-10-10T22:32:23.025544Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1498460,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2491951,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2207},{"seriesId":34,"seasonNumber":1,"relativePath":"Season 01\/S01E12.How to Use a Victory-HDTV-1080p.mkv","path":"\/tv\/Saga of Tanya the Evil\/Season 01\/S01E12.How to Use a Victory-HDTV-1080p.mkv","size":516358055,"dateAdded":"2018-10-10T22:32:23.055921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1244241,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1302308,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2208}],"queue":[]},"23":{"series":{"title":"Steven Universe","alternateTitles":[{"title":"Steven Universe (2014)","seasonNumber":-1}],"sortTitle":"steven universe","status":"ended","ended":true,"overview":"The Crystal Gems are a team of magical beings who are the self-appointed guardians of the universe. Half-human, half-Gem hero Steven is the \"little brother\" of the group. The goofball is learning to save the world using the magical powers that come from his bellybutton and he goes on magical adventures with the rest of the Crystal Gems, even though he's not as powerful -- or smart -- as fellow group members Garnet, Amethyst and Pearl. Despite his shortcomings, Steven usually finds a surprising way to save the day.","previousAiring":"2019-01-22T00:30:00Z","network":"Cartoon Network","airTime":"19:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/13\/banner.jpg?lastWrite=637103833514538980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/270701-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/13\/poster.jpg?lastWrite=637103833517778920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/270701-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/13\/fanart.jpg?lastWrite=636782905911072520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/270701-9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-03-12T23:40:00Z","episodeFileCount":49,"episodeCount":49,"totalEpisodeCount":49,"sizeOnDisk":5678702838,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-01-09T00:30:00Z","episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":29,"sizeOnDisk":2572385022,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2016-08-10T23:30:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":2442682626,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-05-11T23:40:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":2365643814,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2019-01-22T00:30:00Z","episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":3193391578,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/Steven Universe","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":10,"tvdbId":270701,"tvRageId":32829,"tvMazeId":1615,"firstAired":"2013-11-04T00:00:00Z","seriesType":"standard","cleanTitle":"stevenuniverse","imdbId":"tt3061046","titleSlug":"steven-universe","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Children","Comedy","Family","Science Fiction"],"tags":[],"added":"2017-12-19T23:07:16.2407861Z","ratings":{"votes":1846,"value":9.4},"statistics":{"seasonCount":5,"episodeFileCount":154,"episodeCount":154,"totalEpisodeCount":168,"sizeOnDisk":16252805878,"percentOfEpisodes":100.0},"id":13},"episodes":[{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Pilot","airDate":"2013-07-27","airDateUtc":"2013-07-27T23:30:00Z","overview":"The Pilot Episode. We meet Steven, who acquires a magical time travel device, who then uses it to make comebacks towards mean-spirited cashier, Lars. But when he starts to get out of control with time travel magic, he must save his friends from chaos.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4363},{"seriesId":13,"episodeFileId":11831,"seasonNumber":1,"episodeNumber":1,"title":"Gem Glow","airDate":"2013-11-04","airDateUtc":"2013-11-05T00:30:00Z","overview":"Steven becomes depressed when his favorite brand of ice-cream sandwich, Cookie Cat, has been taken off the market. He soon cheers up when the Crystal Gems manage to get a hold of some of the last remaining Cookie Cats, which Steven believes may hold the key to activating his gem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4376},{"seriesId":13,"episodeFileId":11835,"seasonNumber":1,"episodeNumber":2,"title":"Laser Light Cannon","airDate":"2013-11-04","airDateUtc":"2013-11-05T00:40:00Z","overview":"When a menacing red eye threatens to destroy Beach City, the only thing that could possibly destroy it is a Laser Light Cannon, which once belonged to Steven's mother, Rose Quartz. Thus, Steven enlists the help of his father, Greg, and searches through his storage in order to find the cannon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4377},{"seriesId":13,"episodeFileId":11840,"seasonNumber":1,"episodeNumber":3,"title":"Cheeseburger Backpack","airDate":"2013-11-11","airDateUtc":"2013-11-12T00:30:00Z","overview":"Steven packs his Cheeseburger Backpack with supplies for a mission to the Lunar Sea Spire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4378},{"seriesId":13,"episodeFileId":11845,"seasonNumber":1,"episodeNumber":4,"title":"Together Breakfast","airDate":"2013-11-11","airDateUtc":"2013-11-12T00:40:00Z","overview":"Steven\u2019s attempt to get the Crystal Gems to share his special breakfast tradition lands him in the Crystal Gems\u2019 Temple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4379},{"seriesId":13,"episodeFileId":11850,"seasonNumber":1,"episodeNumber":5,"title":"Frybo","airDate":"2013-11-18","airDateUtc":"2013-11-19T00:30:00Z","overview":"Steven helps Peedee Fryman with his grueling job by using a magical gem shard that can bring clothing to life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4380},{"seriesId":13,"episodeFileId":11856,"seasonNumber":1,"episodeNumber":6,"title":"Cat Fingers","airDate":"2013-11-25","airDateUtc":"2013-11-26T00:30:00Z","overview":"Steven attempts to master the power of shape shifting, but can only shape shift his fingers into tiny cat heads.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4381},{"seriesId":13,"episodeFileId":11860,"seasonNumber":1,"episodeNumber":7,"title":"Bubble Buddies","airDate":"2013-12-02","airDateUtc":"2013-12-03T00:30:00Z","overview":"Steven creates a Magic Crystal Bubble to protect a girl he likes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4382},{"seriesId":13,"episodeFileId":11866,"seasonNumber":1,"episodeNumber":8,"title":"Serious Steven","airDate":"2014-01-13","airDateUtc":"2014-01-14T00:30:00Z","overview":"While navigating out of an ancient maze, Steven tries to prove himself worthy to Garnet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4383},{"seriesId":13,"episodeFileId":11871,"seasonNumber":1,"episodeNumber":9,"title":"Tiger Millionaire","airDate":"2014-01-20","airDateUtc":"2014-01-21T00:30:00Z","overview":"Steven joins Amethyst in an underground wrestling league.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4384},{"seriesId":13,"episodeFileId":11876,"seasonNumber":1,"episodeNumber":10,"title":"Steven's Lion","airDate":"2014-01-27","airDateUtc":"2014-01-28T00:30:00Z","overview":"Steven befriends a magical lion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4385},{"seriesId":13,"episodeFileId":11881,"seasonNumber":1,"episodeNumber":11,"title":"Arcade Mania","airDate":"2014-02-17","airDateUtc":"2014-02-18T00:30:00Z","overview":"Steven takes the Crystal Gems to Funland Arcade where Garnet learns the allure of video games.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4386},{"seriesId":13,"episodeFileId":11886,"seasonNumber":1,"episodeNumber":12,"title":"Giant Woman","airDate":"2014-02-24","airDateUtc":"2014-02-25T00:30:00Z","overview":"During a mission to the Sky Spire, Steven tries to convince Amethyst and Pearl to fuse together and become a giant woman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4387},{"seriesId":13,"episodeFileId":11891,"seasonNumber":1,"episodeNumber":13,"title":"So Many Birthdays","airDate":"2014-03-03","airDateUtc":"2014-03-04T00:30:00Z","overview":"Steven learns that the Gems are thousands of years old and decides to make up for all the thousands of birthdays they\u2019ve missed, and things spiral out of control when Steven begins feeling too old for birthdays.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4388},{"seriesId":13,"episodeFileId":11898,"seasonNumber":1,"episodeNumber":14,"title":"Lars and the Cool Kids","airDate":"2014-03-10","airDateUtc":"2014-03-10T23:30:00Z","overview":"Steven and Lars get to hang out with the cool kids in town, but their teenage shenanigans get them into magical trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4389},{"seriesId":13,"episodeFileId":11901,"seasonNumber":1,"episodeNumber":15,"title":"Onion Trade","airDate":"2014-03-17","airDateUtc":"2014-03-17T23:30:00Z","overview":"A toy trade between Steven and Onion escalates into epic proportions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4390},{"seriesId":13,"episodeFileId":11906,"seasonNumber":1,"episodeNumber":16,"title":"Steven the Sword Fighter","airDate":"2014-04-09","airDateUtc":"2014-04-09T23:30:00Z","overview":"Pearl tries to teach Steven the art of sword-fighting using a holographic version of herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4391},{"seriesId":13,"episodeFileId":11911,"seasonNumber":1,"episodeNumber":17,"title":"Lion 2: The Movie","airDate":"2014-04-23","airDateUtc":"2014-04-23T23:30:00Z","overview":"Steven and Connie try to ride Lion to a movie theatre, but Lion has other ideas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4392},{"seriesId":13,"episodeFileId":11916,"seasonNumber":1,"episodeNumber":18,"title":"Beach Party","airDate":"2014-04-30","airDateUtc":"2014-04-30T23:30:00Z","overview":"After a battle damages Fish Stew Pizza, Steven throws a cookout at the Temple to mend the relationship between Pizza family and the Crystal Gems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4393},{"seriesId":13,"episodeFileId":11922,"seasonNumber":1,"episodeNumber":19,"title":"Rose's Room","airDate":"2014-05-14","airDateUtc":"2014-05-14T23:30:00Z","overview":"Steven's desire for some alone time unlocks a new room in the Temple that answers his every wish.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4394},{"seriesId":13,"episodeFileId":11928,"seasonNumber":1,"episodeNumber":20,"title":"Coach Steven","airDate":"2014-08-21","airDateUtc":"2014-08-21T23:30:00Z","overview":"After seeing Garnet and Amethyst fuse together into the powerful Sugilite, Steven becomes determined to get super strong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4395},{"seriesId":13,"episodeFileId":11931,"seasonNumber":1,"episodeNumber":21,"title":"Joking Victim","airDate":"2014-08-28","airDateUtc":"2014-08-28T23:30:00Z","overview":"When Lars pawns off all his work on Sadie, Steven helps out by working a shift at the Big Donut.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4396},{"seriesId":13,"episodeFileId":11936,"seasonNumber":1,"episodeNumber":22,"title":"Steven and the Stevens","airDate":"2014-09-04","airDateUtc":"2014-09-04T23:30:00Z","overview":"Steven needs a musical partner for an upcoming show, and uses a time travel device to recruit the perfect bandmate, HIMSELF!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4397},{"seriesId":13,"episodeFileId":11942,"seasonNumber":1,"episodeNumber":23,"title":"Monster Buddies","airDate":"2014-09-11","airDateUtc":"2014-09-11T23:30:00Z","overview":"Steven accidentally releases a monster from a gem bubble and attempts to tame its wild, violent instincts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4398},{"seriesId":13,"episodeFileId":11946,"seasonNumber":1,"episodeNumber":24,"title":"An Indirect Kiss","airDate":"2014-09-18","airDateUtc":"2014-09-18T23:30:00Z","overview":"Steven Tells Connie the story of his mission with the Gems to heal Amethyst's gemstone when she cracks it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4399},{"seriesId":13,"episodeFileId":11951,"seasonNumber":1,"episodeNumber":25,"title":"Mirror Gem","airDate":"2014-09-25","airDateUtc":"2014-09-25T23:30:00Z","overview":"Steven befriends a magical mirror that can mysteriously communicate with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4400},{"seriesId":13,"episodeFileId":11954,"seasonNumber":1,"episodeNumber":26,"title":"Ocean Gem","airDate":"2014-09-25","airDateUtc":"2014-09-25T23:40:00Z","overview":"The ocean disappears on the first day of summer and Beach City is in a panic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4401},{"seriesId":13,"episodeFileId":11959,"seasonNumber":1,"episodeNumber":27,"title":"House Guest","airDate":"2014-10-02","airDateUtc":"2014-10-02T23:30:00Z","overview":"After injuring his leg, Greg comes to live with Steven and unintentionally interferes with Steven's powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":27,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4402},{"seriesId":13,"episodeFileId":11961,"seasonNumber":1,"episodeNumber":28,"title":"Space Race","airDate":"2014-10-09","airDateUtc":"2014-10-09T23:30:00Z","overview":"After hearing how much Pearl wants to see the cosmos, Steven gets his dad to help him build a spaceship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":28,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4403},{"seriesId":13,"episodeFileId":11963,"seasonNumber":1,"episodeNumber":29,"title":"Secret Team","airDate":"2014-10-16","airDateUtc":"2014-10-16T23:30:00Z","overview":"After accidentally popping a bubbled Gem, Steven, Amethyst, and Pearl form a secret team to recover the pieces.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":29,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4404},{"seriesId":13,"episodeFileId":11965,"seasonNumber":1,"episodeNumber":30,"title":"Island Adventure","airDate":"2014-10-23","airDateUtc":"2014-10-23T23:30:00Z","overview":"Steven tries to mend Lars and Sadie's broken friendship by taking them on vacation to a magical beach.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":30,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4405},{"seriesId":13,"episodeFileId":11966,"seasonNumber":1,"episodeNumber":31,"title":"Keep Beach City Weird!","airDate":"2014-10-30","airDateUtc":"2014-10-30T23:30:00Z","overview":"Steven is taken in by Ronaldo's conspiracy theories about paranormal occurrences in Beach City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":31,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4406},{"seriesId":13,"episodeFileId":11967,"seasonNumber":1,"episodeNumber":32,"title":"Fusion Cuisine","airDate":"2014-11-06","airDateUtc":"2014-11-07T00:30:00Z","overview":"To impress Connie's parents, Steven asks the Gems to fuse together to pretend to be his mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":32,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4407},{"seriesId":13,"episodeFileId":11968,"seasonNumber":1,"episodeNumber":33,"title":"Garnet's Universe","airDate":"2014-11-13","airDateUtc":"2014-11-14T00:30:00Z","overview":"Steven wonders what Garnet does with her day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":33,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4408},{"seriesId":13,"episodeFileId":11969,"seasonNumber":1,"episodeNumber":34,"title":"Watermelon Steven","airDate":"2014-11-20","airDateUtc":"2014-11-21T00:30:00Z","overview":"Steven discovers the power to grow a patch of watermelons shaped like himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":34,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4409},{"seriesId":13,"episodeFileId":11970,"seasonNumber":1,"episodeNumber":35,"title":"Lion 3: Straight to Video","airDate":"2014-12-04","airDateUtc":"2014-12-05T00:30:00Z","overview":"Lion keeps laying on Steven's face while Steven is sleeping.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":35,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4410},{"seriesId":13,"episodeFileId":11971,"seasonNumber":1,"episodeNumber":36,"title":"Warp Tour","airDate":"2015-01-08","airDateUtc":"2015-01-09T00:30:00Z","overview":"Steven thinks he sees something creepy traversing the warp streams, so the Gems try to ease his paranoia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":36,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4411},{"seriesId":13,"episodeFileId":11972,"seasonNumber":1,"episodeNumber":37,"title":"Alone Together","airDate":"2015-01-15","airDateUtc":"2015-01-16T00:30:00Z","overview":"The Gems try to teach Steven how to use his fusion powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":37,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4412},{"seriesId":13,"episodeFileId":11973,"seasonNumber":1,"episodeNumber":38,"title":"The Test","airDate":"2015-01-22","airDateUtc":"2015-01-23T00:30:00Z","overview":"Steven finds out that his mission to the Lunar Sea Spire was a test and demands a new one.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":38,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4413},{"seriesId":13,"episodeFileId":11974,"seasonNumber":1,"episodeNumber":39,"title":"Future Vision","airDate":"2015-01-29","airDateUtc":"2015-01-30T00:30:00Z","overview":"Steven learns that Garnet can see into the future and becomes curious about the possible dangers that lurk around him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":39,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4414},{"seriesId":13,"episodeFileId":11975,"seasonNumber":1,"episodeNumber":40,"title":"On the Run","airDate":"2015-02-05","airDateUtc":"2015-02-06T00:30:00Z","overview":"Steven and Amethyst try out life out on the road.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":40,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4415},{"seriesId":13,"episodeFileId":11976,"seasonNumber":1,"episodeNumber":41,"title":"Horror Club","airDate":"2015-02-12","airDateUtc":"2015-02-13T00:30:00Z","overview":"Steven goes to the lighthouse to watch scary movies with Ronaldo, Lars, and Sadie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":41,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4416},{"seriesId":13,"episodeFileId":11977,"seasonNumber":1,"episodeNumber":42,"title":"Winter Forecast","airDate":"2015-02-19","airDateUtc":"2015-02-20T00:30:00Z","overview":"Steven has to take Connie back to her home before it snows.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":42,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4417},{"seriesId":13,"episodeFileId":11978,"seasonNumber":1,"episodeNumber":43,"title":"Maximum Capacity","airDate":"2015-02-26","airDateUtc":"2015-02-27T00:30:00Z","overview":"A garage sale reunites Greg and Amethyst with their favorite sitcom, Lil' Butler.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":43,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4418},{"seriesId":13,"episodeFileId":11979,"seasonNumber":1,"episodeNumber":44,"title":"Marble Madness","airDate":"2015-03-05","airDateUtc":"2015-03-06T00:30:00Z","overview":"Steven and the Crystal Gems encounter another droid from space.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":44,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4419},{"seriesId":13,"episodeFileId":11980,"seasonNumber":1,"episodeNumber":45,"title":"Rose's Scabbard","airDate":"2015-03-09","airDateUtc":"2015-03-09T23:30:00Z","overview":"Steven joins Pearl on a Special Mission to a place that belonged to Rose Quartz.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":45,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4420},{"seriesId":13,"episodeFileId":11981,"seasonNumber":1,"episodeNumber":46,"title":"The Message","airDate":"2015-03-10","airDateUtc":"2015-03-10T23:30:00Z","overview":"Steven and the Gems try to retrieve a message from the Wailing Stone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":46,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4421},{"seriesId":13,"episodeFileId":11982,"seasonNumber":1,"episodeNumber":47,"title":"Political Power","airDate":"2015-03-11","airDateUtc":"2015-03-11T23:30:00Z","overview":"The Crystal Gems cause a power outage in Beach City, so Steven helps Mayor Dewey control the situation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":47,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4422},{"seriesId":13,"episodeFileId":11983,"seasonNumber":1,"episodeNumber":48,"title":"The Return","airDate":"2015-03-12","airDateUtc":"2015-03-12T23:30:00Z","overview":"A new threat arrives in Beach City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":48,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4423},{"seriesId":13,"episodeFileId":11984,"seasonNumber":1,"episodeNumber":49,"title":"Jail Break","airDate":"2015-03-12","airDateUtc":"2015-03-12T23:40:00Z","overview":"Steven teams up with a new ally to rescue the Crystal Gems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":49,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4424},{"seriesId":13,"episodeFileId":11832,"seasonNumber":2,"episodeNumber":1,"title":"Full Disclosure","airDate":"2015-03-13","airDateUtc":"2015-03-13T23:30:00Z","overview":"Steven tries to avoid Connie so he doesn't have to tell her about his most harrowing adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":50,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4425},{"seriesId":13,"episodeFileId":11839,"seasonNumber":2,"episodeNumber":2,"title":"Open Book","airDate":"2015-03-19","airDateUtc":"2015-03-19T23:30:00Z","overview":"Steven and Connie want a new ending to a beloved book series, so Steven takes them into Rose's Room to re-enact it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":51,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4426},{"seriesId":13,"episodeFileId":11842,"seasonNumber":2,"episodeNumber":3,"title":"Joy Ride","airDate":"2015-03-26","airDateUtc":"2015-03-26T23:30:00Z","overview":"Buck, Jenny and Sour Cream take Steven out on a late-night joyride to lift his spirits.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":52,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":4427},{"seriesId":13,"episodeFileId":11846,"seasonNumber":2,"episodeNumber":4,"title":"Say Uncle","airDate":"2015-04-02","airDateUtc":"2015-04-02T23:30:00Z","overview":"Steven meets Uncle Grandpa","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":53,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4428},{"seriesId":13,"episodeFileId":11851,"seasonNumber":2,"episodeNumber":5,"title":"Story for Steven","airDate":"2015-04-09","airDateUtc":"2015-04-09T23:30:00Z","overview":"Greg tells Steven the story when he first met Rose Quartz.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":54,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4429},{"seriesId":13,"episodeFileId":11855,"seasonNumber":2,"episodeNumber":6,"title":"Shirt Club","airDate":"2015-04-16","airDateUtc":"2015-04-16T23:30:00Z","overview":"Steven and Buck Dewey make t-shirts together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":55,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4430},{"seriesId":13,"episodeFileId":11864,"seasonNumber":2,"episodeNumber":7,"title":"Love Letters","airDate":"2015-04-23","airDateUtc":"2015-04-23T23:30:00Z","overview":"Steven and Connie help Jamie the mailman with love","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"sceneAbsoluteEpisodeNumber":56,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4431},{"seriesId":13,"episodeFileId":11868,"seasonNumber":2,"episodeNumber":8,"title":"Reformed","airDate":"2015-04-30","airDateUtc":"2015-04-30T23:30:00Z","overview":"Steven, Amethyst and Garnet chase a corrupted gem monster through the Temple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"sceneAbsoluteEpisodeNumber":57,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4432},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Lion Loves to Fit in a Box","airDate":"2015-05-28","airDateUtc":"2015-05-28T23:30:00Z","overview":"Steven films Lion trying to fit in various boxes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4364},{"seriesId":13,"episodeFileId":11873,"seasonNumber":2,"episodeNumber":9,"title":"Sworn to the Sword","airDate":"2015-06-15","airDateUtc":"2015-06-15T23:30:00Z","overview":"Pearl teaches Connie how to sword fight on Steven's request but it doesn't go quite as planned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"sceneAbsoluteEpisodeNumber":58,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4433},{"seriesId":13,"episodeFileId":11878,"seasonNumber":2,"episodeNumber":10,"title":"Rising Tides\/Crashing Skies","airDate":"2015-06-16","airDateUtc":"2015-06-16T23:30:00Z","overview":"Ronaldo investigates the Crystal Gems for a web documentary for his \"Keep Beach City Weird\" blog.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"sceneAbsoluteEpisodeNumber":59,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4434},{"seriesId":13,"episodeFileId":11885,"seasonNumber":2,"episodeNumber":11,"title":"Keeping it Together","airDate":"2015-06-17","airDateUtc":"2015-06-17T23:30:00Z","overview":"Steven and Crystal Gems revisit Kindergarten and find a dark secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"sceneAbsoluteEpisodeNumber":60,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4435},{"seriesId":13,"episodeFileId":11890,"seasonNumber":2,"episodeNumber":12,"title":"We Need to Talk","airDate":"2015-06-18","airDateUtc":"2015-06-18T23:30:00Z","overview":"After witnessing Steven and Connie fuse again, Greg explains how he learned of gem fusion from his time with Rose, hoping to pull it off himself in order to grow closer to her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"sceneAbsoluteEpisodeNumber":61,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4436},{"seriesId":13,"episodeFileId":11895,"seasonNumber":2,"episodeNumber":13,"title":"Chille Tid","airDate":"2015-06-19","airDateUtc":"2015-06-19T23:30:00Z","overview":"Garnet has Pearl and Amethyst accompany Steven, exhausted from a night spent searching for Malachite in the ocean with the Gems, in the temple for a slumber party. However, Steven is rattled by recurring dreams of Lapis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"sceneAbsoluteEpisodeNumber":62,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4437},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Classroom Gems: What are Gems?","airDate":"2015-07-07","airDateUtc":"2015-07-07T23:30:00Z","overview":"Pearl teaches a class about what Gems are, with Garnet and Amethyst helping him out with some demonstrations.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4365},{"seriesId":13,"episodeFileId":11900,"seasonNumber":2,"episodeNumber":14,"title":"Cry for Help","airDate":"2015-07-13","airDateUtc":"2015-07-13T23:30:00Z","overview":"Steven's favorite TV show gets interrupted by a magical disturbance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"sceneAbsoluteEpisodeNumber":63,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4438},{"seriesId":13,"episodeFileId":11905,"seasonNumber":2,"episodeNumber":15,"title":"Keystone Motel","airDate":"2015-07-14","airDateUtc":"2015-07-14T23:30:00Z","overview":"While visiting an out-of-state motel with Steven and Greg, Garnet's frustration with Pearl's actions causes her to split up into Ruby and Sapphire again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"sceneAbsoluteEpisodeNumber":64,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4439},{"seriesId":13,"episodeFileId":11908,"seasonNumber":2,"episodeNumber":16,"title":"Onion Friend","airDate":"2015-07-15","airDateUtc":"2015-07-15T23:30:00Z","overview":"Amethyst rekindles a friendship with Onion's mother, Vidalia, while Onion shows Steven around his room.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"sceneAbsoluteEpisodeNumber":65,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4440},{"seriesId":13,"episodeFileId":11914,"seasonNumber":2,"episodeNumber":17,"title":"Historical Friction","airDate":"2015-07-16","airDateUtc":"2015-07-16T23:30:00Z","overview":"Steven is asked by Jamie to participate in a play funded by Mayor Dewey about his ancestor, with Pearl stepping in to provide a more historically accurate script.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"sceneAbsoluteEpisodeNumber":66,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4441},{"seriesId":13,"episodeFileId":11918,"seasonNumber":2,"episodeNumber":18,"title":"Friend Ship","airDate":"2015-07-17","airDateUtc":"2015-07-17T23:30:00Z","overview":"After recent events, Pearl is devoted to redeeming herself by catching Peridot through her broken escape pod.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"sceneAbsoluteEpisodeNumber":67,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4442},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"We Are the Crystal Gems","airDate":"2015-09-04","airDateUtc":"2015-09-04T23:30:00Z","overview":"Steven starts his life with the Crystal Gems in this extended version of the Steven Universe theme song.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4366},{"seriesId":13,"episodeFileId":11925,"seasonNumber":2,"episodeNumber":19,"title":"Nightmare Hospital","airDate":"2015-09-10","airDateUtc":"2015-09-10T23:30:00Z","overview":"Steven and Connie sneak into a hospital to recover Rose's sword from Connie's mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"sceneAbsoluteEpisodeNumber":68,"sceneEpisodeNumber":16,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4443},{"seriesId":13,"episodeFileId":11929,"seasonNumber":2,"episodeNumber":20,"title":"Sadie's Song","airDate":"2015-09-17","airDateUtc":"2015-09-17T23:30:00Z","overview":"Steven helps Sadie with an act for Beach-a-Palooza.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"sceneAbsoluteEpisodeNumber":69,"sceneEpisodeNumber":17,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4444},{"seriesId":13,"episodeFileId":11934,"seasonNumber":2,"episodeNumber":21,"title":"Catch and Release","airDate":"2015-09-24","airDateUtc":"2015-09-24T23:30:00Z","overview":"The Crystal Gems capture Peridot, but Steven suspects she knows something and lets her live in his bathroom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"sceneAbsoluteEpisodeNumber":70,"sceneEpisodeNumber":18,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4445},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Classroom Gems: How Are Gems Made?","airDate":"2015-10-01","airDateUtc":"2015-10-01T23:30:00Z","overview":"Amethyst explains how Gems are made.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4367},{"seriesId":13,"episodeFileId":11940,"seasonNumber":2,"episodeNumber":22,"title":"When It Rains","airDate":"2015-10-01","airDateUtc":"2015-10-01T23:30:00Z","overview":"A friend of Steven's is afraid of thunderstorms and he tries to help them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"sceneAbsoluteEpisodeNumber":71,"sceneEpisodeNumber":19,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4446},{"seriesId":13,"episodeFileId":11943,"seasonNumber":2,"episodeNumber":23,"title":"Back to the Barn","airDate":"2015-10-08","airDateUtc":"2015-10-08T23:30:00Z","overview":"Steven, Peridot and the Gems return to the family barn to build a large machine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"sceneAbsoluteEpisodeNumber":72,"sceneEpisodeNumber":20,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4447},{"seriesId":13,"episodeFileId":11949,"seasonNumber":2,"episodeNumber":24,"title":"Too Far","airDate":"2015-10-15","airDateUtc":"2015-10-15T23:30:00Z","overview":"Tension rises between Peridot and Amethyst when Peridot unintentionally insults Amethyst.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"sceneAbsoluteEpisodeNumber":73,"sceneEpisodeNumber":21,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4448},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Unboxing","airDate":"2015-10-22","airDateUtc":"2015-10-22T23:30:00Z","overview":"Steven reviews a brand new duffel bag from Wacky Sacks Supply Company! Rate, comment and subscribe!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4368},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Classroom Gems: Fusion","airDate":"2015-11-02","airDateUtc":"2015-11-03T00:30:00Z","overview":"Garnet takes over a dance studio to teach Steven about fusion!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4369},{"seriesId":13,"episodeFileId":11953,"seasonNumber":2,"episodeNumber":25,"title":"The Answer","airDate":"2016-01-04","airDateUtc":"2016-01-05T00:30:00Z","overview":"Garnet finally tells Steven the story of how she came to be a Crystal Gem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"sceneAbsoluteEpisodeNumber":74,"sceneEpisodeNumber":22,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4449},{"seriesId":13,"episodeFileId":11956,"seasonNumber":2,"episodeNumber":26,"title":"Steven's Birthday","airDate":"2016-01-05","airDateUtc":"2016-01-06T00:30:00Z","overview":"Steven has a birthday party out at the barn, and decides he has some growing up to do.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"sceneAbsoluteEpisodeNumber":75,"sceneEpisodeNumber":23,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4450},{"seriesId":13,"episodeFileId":11957,"seasonNumber":2,"episodeNumber":27,"title":"It Could've Been Great","airDate":"2016-01-06","airDateUtc":"2016-01-07T00:30:00Z","overview":"The Gems take a trip to the moon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"sceneAbsoluteEpisodeNumber":76,"sceneEpisodeNumber":24,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4451},{"seriesId":13,"episodeFileId":11962,"seasonNumber":2,"episodeNumber":28,"title":"Message Received","airDate":"2016-01-07","airDateUtc":"2016-01-08T00:30:00Z","overview":"Steven has doubts believing in someone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"sceneAbsoluteEpisodeNumber":77,"sceneEpisodeNumber":25,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4452},{"seriesId":13,"episodeFileId":11964,"seasonNumber":2,"episodeNumber":29,"title":"Log Date 7 15 2","airDate":"2016-01-08","airDateUtc":"2016-01-09T00:30:00Z","overview":"Steven sneaks a listen to a friend's audio diary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"sceneAbsoluteEpisodeNumber":78,"sceneEpisodeNumber":26,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":4453},{"seriesId":13,"episodeFileId":11830,"seasonNumber":3,"episodeNumber":1,"title":"Super Watermelon Island","airDate":"2016-05-12","airDateUtc":"2016-05-12T23:30:00Z","overview":"Steven discovers what happened to his sentient watermelons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":4454},{"seriesId":13,"episodeFileId":11836,"seasonNumber":3,"episodeNumber":2,"title":"Gem Drill","airDate":"2016-05-12","airDateUtc":"2016-05-12T23:40:00Z","overview":"Steven travels deep underground to stop the Cluster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":4455},{"seriesId":13,"episodeFileId":11841,"seasonNumber":3,"episodeNumber":3,"title":"Same Old World","airDate":"2016-05-19","airDateUtc":"2016-05-19T23:30:00Z","overview":"Lapis wakes up, but doesn't know where to go.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":4456},{"seriesId":13,"episodeFileId":11849,"seasonNumber":3,"episodeNumber":4,"title":"Barn Mates","airDate":"2016-05-26","airDateUtc":"2016-05-26T23:30:00Z","overview":"Steven helps two friends get along at the barn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":4457},{"seriesId":13,"episodeFileId":11852,"seasonNumber":3,"episodeNumber":5,"title":"Hit the Diamond","airDate":"2016-06-02","airDateUtc":"2016-06-02T23:30:00Z","overview":"Steven and the Gems engage in an old-fashioned game of baseball.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":4458},{"seriesId":13,"episodeFileId":11858,"seasonNumber":3,"episodeNumber":6,"title":"Steven Floats","airDate":"2016-07-18","airDateUtc":"2016-07-18T23:30:00Z","overview":"Steven discovers that he has the power to float. However, he becomes stuck in the sky and has a series of misadventures in attempting to get back on the ground.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":4459},{"seriesId":13,"episodeFileId":11863,"seasonNumber":3,"episodeNumber":7,"title":"Drop Beat Dad","airDate":"2016-07-18","airDateUtc":"2016-07-18T23:40:00Z","overview":"A familiar face comes back to Beach City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":4460},{"seriesId":13,"episodeFileId":11867,"seasonNumber":3,"episodeNumber":8,"title":"Mr. Greg","airDate":"2016-07-19","airDateUtc":"2016-07-19T23:30:00Z","overview":"Steven visits Empire City with Greg and Pearl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":4461},{"seriesId":13,"episodeFileId":11875,"seasonNumber":3,"episodeNumber":9,"title":"Too Short to Ride","airDate":"2016-07-20","airDateUtc":"2016-07-20T23:30:00Z","overview":"Steven, Peridot and Amethyst take a trip to Funland but run into trouble when Peridot is too short to ride the roller coasters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":4462},{"seriesId":13,"episodeFileId":11879,"seasonNumber":3,"episodeNumber":10,"title":"The New Lars","airDate":"2016-07-21","airDateUtc":"2016-07-21T23:30:00Z","overview":"Steven accidentally uses his astral projection ability while dreaming and ends up in Lars' body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":4463},{"seriesId":13,"episodeFileId":11884,"seasonNumber":3,"episodeNumber":11,"title":"Beach City Drift","airDate":"2016-07-22","airDateUtc":"2016-07-22T23:30:00Z","overview":"When Steven and Connie run into Kevin again, they fuse into Stevonnie to beat him in a car race in order to get revenge for his actions at the rave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":4464},{"seriesId":13,"episodeFileId":11889,"seasonNumber":3,"episodeNumber":12,"title":"Restaurant Wars","airDate":"2016-07-25","airDateUtc":"2016-07-25T23:30:00Z","overview":"When Steven accidentally re-ignites an old feud between restaurant owners Fryman and Kofi, it is up to himself, along with the restaurant owners' kids, to try and stop the feud.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":4465},{"seriesId":13,"episodeFileId":11893,"seasonNumber":3,"episodeNumber":13,"title":"Kiki's Pizza Delivery Service","airDate":"2016-07-26","airDateUtc":"2016-07-26T23:30:00Z","overview":"Kiki has been having nightmares due to being overworked at Fish Stew Pizza, so Steven helps by using his astral projection to go into Kiki's nightmares.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":4466},{"seriesId":13,"episodeFileId":11899,"seasonNumber":3,"episodeNumber":14,"title":"Monster Reunion","airDate":"2016-07-27","airDateUtc":"2016-07-27T23:30:00Z","overview":"When Steven's healing powers suddenly return, he uses them to attempt to heal the Centipeetle. However, Gem corruption is a bit more complicated than Steven thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":4467},{"seriesId":13,"episodeFileId":11903,"seasonNumber":3,"episodeNumber":15,"title":"Alone at Sea","airDate":"2016-07-28","airDateUtc":"2016-07-28T23:30:00Z","overview":"Steven, Greg and Lapis go on a boat ride to help Lapis have some fun. However, it becomes apparent that they are being followed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":4468},{"seriesId":13,"episodeFileId":11907,"seasonNumber":3,"episodeNumber":16,"title":"Greg the Babysitter","airDate":"2016-07-29","airDateUtc":"2016-07-29T23:30:00Z","overview":"Greg tells Steven the story of the time he and Rose babysat Sour Cream for Vidalia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":4469},{"seriesId":13,"episodeFileId":11912,"seasonNumber":3,"episodeNumber":17,"title":"Gem Hunt","airDate":"2016-08-01","airDateUtc":"2016-08-01T23:30:00Z","overview":"Connie goes on her first mission with Steven and Pearl to the Great North to find a corrupted Gem monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":4470},{"seriesId":13,"episodeFileId":11919,"seasonNumber":3,"episodeNumber":18,"title":"Crack the Whip","airDate":"2016-08-02","airDateUtc":"2016-08-02T23:30:00Z","overview":"Garnet and Pearl return to the Great North to look for Jasper, whilst Steven, Amethyst and Connie have a day of fun around Beach City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":4471},{"seriesId":13,"episodeFileId":11924,"seasonNumber":3,"episodeNumber":19,"title":"Steven vs. Amethyst","airDate":"2016-08-03","airDateUtc":"2016-08-03T23:30:00Z","overview":"Following the events of the previous episode, Amethyst's self-esteem has hit rock bottom. With Steven's rising power, Amethyst begins to suspect that she is now the weakest Gem on the team, so she and Steven agree to duel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":4472},{"seriesId":13,"episodeFileId":11926,"seasonNumber":3,"episodeNumber":20,"title":"Bismuth","airDate":"2016-08-04","airDateUtc":"2016-08-04T23:30:00Z","overview":"An item from the Gems' past is discovered inside of Lion's mane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":4473},{"seriesId":13,"episodeFileId":11932,"seasonNumber":3,"episodeNumber":21,"title":"Beta","airDate":"2016-08-08","airDateUtc":"2016-08-08T23:30:00Z","overview":"To cheer Amethyst up after her fight with Jasper, Peridot takes her and Steven to Jasper's birthplace \u2013 a heavily rushed and poorly made Kindergarten in the middle of a desert.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":4474},{"seriesId":13,"episodeFileId":11937,"seasonNumber":3,"episodeNumber":22,"title":"Earthlings","airDate":"2016-08-08","airDateUtc":"2016-08-08T23:40:00Z","overview":"Steven, Amethyst and Peridot encounter Jasper at the Beta Kindergarten. To fight off her and a corrupted Gem monster, Steven and Amethyst fuse into Smoky Quartz and Peridot attempts to use her metal powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":4475},{"seriesId":13,"episodeFileId":11945,"seasonNumber":3,"episodeNumber":23,"title":"Back to the Moon","airDate":"2016-08-09","airDateUtc":"2016-08-09T23:30:00Z","overview":"The dispatch team of Rubies return to the barn still searching for Jasper. To try and get them to go away, Amethyst shapeshifts into her. However, things get awry when the Rubies want her to contact Yellow Diamond at the Moon Base, with Steven, Garnet and Pearl as her \"prisoners\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":4476},{"seriesId":13,"episodeFileId":11950,"seasonNumber":3,"episodeNumber":24,"title":"Bubbled","airDate":"2016-08-10","airDateUtc":"2016-08-10T23:30:00Z","overview":"After being sucked out of the Moon Base's airlock, Steven and the Rubies are stuck floating in the middle of space. To stay safe, Steven puts himself in a bubble and runs into one of the Rubies in the process.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":4477},{"seriesId":13,"episodeFileId":11833,"seasonNumber":4,"episodeNumber":1,"title":"The Kindergarten Kid","airDate":"2016-08-11","airDateUtc":"2016-08-11T23:30:00Z","overview":"Steven and Peridot attempt to catch an elusive speedy corrupted Gem monster in the Beta Kindergarten.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":4478},{"seriesId":13,"episodeFileId":11838,"seasonNumber":4,"episodeNumber":2,"title":"Know Your Fusion","airDate":"2016-08-12","airDateUtc":"2016-08-12T23:30:00Z","overview":"Steven and the Gems study what makes a fusion so special.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":4479},{"seriesId":13,"episodeFileId":11844,"seasonNumber":4,"episodeNumber":3,"title":"Buddy's Book","airDate":"2016-08-18","airDateUtc":"2016-08-18T23:30:00Z","overview":"Steven visits the library with Connie and uncovers a long lost book.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":4480},{"seriesId":13,"episodeFileId":11847,"seasonNumber":4,"episodeNumber":4,"title":"Mindful Education","airDate":"2016-08-25","airDateUtc":"2016-08-25T23:30:00Z","overview":"Steven and Connie learn to focus better.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":4481},{"seriesId":13,"episodeFileId":11854,"seasonNumber":4,"episodeNumber":5,"title":"Future Boy Zoltron","airDate":"2016-09-01","airDateUtc":"2016-09-01T23:30:00Z","overview":"Steven tells people's fortunes at Funland.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":4482},{"seriesId":13,"episodeFileId":11857,"seasonNumber":4,"episodeNumber":6,"title":"Last One Out of Beach City","airDate":"2016-09-08","airDateUtc":"2016-09-08T23:30:00Z","overview":"Steven, Pearl and Amethyst go to a rock show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":4483},{"seriesId":13,"episodeFileId":11861,"seasonNumber":4,"episodeNumber":7,"title":"Onion Gang","airDate":"2016-09-15","airDateUtc":"2016-09-15T23:30:00Z","overview":"Steven discovers Onion's secret group of friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":4484},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Cooking with Lion","airDate":"2016-10-03","airDateUtc":"2016-10-03T23:30:00Z","overview":"Steven and Lion host an educational online cooking show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4370},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Gem Karaoke","airDate":"2016-10-03","airDateUtc":"2016-10-03T23:40:00Z","overview":"Connie documents Steven and the Gems singing their hearts out to a prerecorded backing track.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4371},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Steven Reacts","airDate":"2016-10-03","airDateUtc":"2016-10-03T23:50:00Z","overview":"Steven reacts live to a brand new episode of his favorite cartoon show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4372},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Video Chat","airDate":"2016-10-03","airDateUtc":"2016-10-04T00:00:00Z","overview":"Steven and Peridot introduce Lapis to a new way to communicate.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4373},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Steven's Song Time","airDate":"2016-10-03","airDateUtc":"2016-10-04T00:10:00Z","overview":"Steven teaches you how to play a new song he wrote!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4374},{"seriesId":13,"episodeFileId":11865,"seasonNumber":4,"episodeNumber":8,"title":"Gem Harvest","airDate":"2016-11-17","airDateUtc":"2016-11-18T00:30:00Z","overview":"Steven\u2019s autumn visit to the barn brings a new stranger into his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":4485},{"seriesId":13,"episodeFileId":11872,"seasonNumber":4,"episodeNumber":9,"title":"Three Gems and a Baby","airDate":"2016-12-01","airDateUtc":"2016-12-02T00:30:00Z","overview":"Greg tells Steven about their first winter together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":4486},{"seriesId":13,"episodeFileId":11882,"seasonNumber":4,"episodeNumber":11,"title":"Adventures in Light Distortion","airDate":"2017-01-30","airDateUtc":"2017-01-31T00:40:00Z","overview":"Steven and the Gems take off on a search and recovery mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":4488},{"seriesId":13,"episodeFileId":11877,"seasonNumber":4,"episodeNumber":10,"title":"Steven's Dream","airDate":"2017-01-30","airDateUtc":"2017-01-31T00:30:00Z","overview":"A strange dream prompts Steven to search for answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":11603},{"seriesId":13,"episodeFileId":11887,"seasonNumber":4,"episodeNumber":12,"title":"Gem Heist","airDate":"2017-01-31","airDateUtc":"2017-02-01T00:30:00Z","overview":"The Gems try to pull off a heist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":4489},{"seriesId":13,"episodeFileId":11892,"seasonNumber":4,"episodeNumber":13,"title":"The Zoo","airDate":"2017-02-01","airDateUtc":"2017-02-02T00:30:00Z","overview":"Steven visits a special zoo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":4490},{"seriesId":13,"episodeFileId":11897,"seasonNumber":4,"episodeNumber":14,"title":"That Will Be All","airDate":"2017-02-02","airDateUtc":"2017-02-03T00:30:00Z","overview":"Steven and the Gems make a daring escape!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":4491},{"seriesId":13,"episodeFileId":11904,"seasonNumber":4,"episodeNumber":15,"title":"The New Crystal Gems","airDate":"2017-02-10","airDateUtc":"2017-02-11T00:30:00Z","overview":"Connie helps look after Beach City while Steven is busy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":4492},{"seriesId":13,"episodeFileId":11909,"seasonNumber":4,"episodeNumber":16,"title":"Storm in the Room","airDate":"2017-02-17","airDateUtc":"2017-02-18T00:30:00Z","overview":"Steven goes into his room in the temple to look for answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":4493},{"seriesId":13,"episodeFileId":11915,"seasonNumber":4,"episodeNumber":17,"title":"Rocknaldo","airDate":"2017-02-24","airDateUtc":"2017-02-25T00:30:00Z","overview":"Ronaldo sets out to find all the rock people living in Beach City!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":4494},{"seriesId":13,"episodeFileId":11917,"seasonNumber":4,"episodeNumber":18,"title":"Tiger Philanthropist","airDate":"2017-03-03","airDateUtc":"2017-03-04T00:30:00Z","overview":"When Amethyst quits wrestling at the abandoned warehouse, Steven continues doing so himself as Tiger Philanthropist. However, Steven soon begins to doubt the point of wrestling when the audience doesn't take to his new persona.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":4495},{"seriesId":13,"episodeFileId":11923,"seasonNumber":4,"episodeNumber":19,"title":"Room for Ruby","airDate":"2017-03-10","airDateUtc":"2017-03-11T00:30:00Z","overview":"Steven\u2019s Gem family continues to grow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":4496},{"seriesId":13,"episodeFileId":11927,"seasonNumber":4,"episodeNumber":20,"title":"Lion 4: Alternate Ending","airDate":"2017-05-08","airDateUtc":"2017-05-08T23:30:00Z","overview":"Lion coughs up a magical key, and Steven goes on a quest to find what it unlocks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":4497},{"seriesId":13,"episodeFileId":11935,"seasonNumber":4,"episodeNumber":21,"title":"Doug Out","airDate":"2017-05-09","airDateUtc":"2017-05-09T23:30:00Z","overview":"Steven and Connie join Connie's father on a stake out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":4498},{"seriesId":13,"episodeFileId":11938,"seasonNumber":4,"episodeNumber":22,"title":"The Good Lars","airDate":"2017-05-10","airDateUtc":"2017-05-10T23:30:00Z","overview":"Steven, Lars and Sadie get invited to a party with the Cool Kids.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":4499},{"seriesId":13,"episodeFileId":11944,"seasonNumber":4,"episodeNumber":23,"title":"Are You My Dad?","airDate":"2017-05-11","airDateUtc":"2017-05-11T23:30:00Z","overview":"People are disappearing from Beach City and Steven tries to solve the mystery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4500},{"seriesId":13,"episodeFileId":11948,"seasonNumber":4,"episodeNumber":24,"title":"I Am My Mom","airDate":"2017-05-11","airDateUtc":"2017-05-11T23:40:00Z","overview":"Steven struggles to fix his mistakes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4501},{"seriesId":13,"episodeFileId":11834,"seasonNumber":5,"episodeNumber":1,"title":"Stuck Together","airDate":"2017-05-29","airDateUtc":"2017-05-29T23:30:00Z","overview":"Steven and Lars spend some time together.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4502},{"seriesId":13,"episodeFileId":11837,"seasonNumber":5,"episodeNumber":2,"title":"The Trial","airDate":"2017-05-29","airDateUtc":"2017-05-29T23:30:00Z","overview":"Steven goes on trial.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4503},{"seriesId":13,"episodeFileId":11843,"seasonNumber":5,"episodeNumber":3,"title":"Off Colors","airDate":"2017-05-29","airDateUtc":"2017-05-29T23:30:00Z","overview":"Steven finds some unusual new allies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4504},{"seriesId":13,"episodeFileId":11848,"seasonNumber":5,"episodeNumber":4,"title":"Lars' Head","airDate":"2017-05-29","airDateUtc":"2017-05-29T23:30:00Z","overview":"Steven's tears accidentally bring Lars back to life, but with unintentional side effects.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4505},{"seriesId":13,"episodeFileId":11853,"seasonNumber":5,"episodeNumber":5,"title":"Dewey Wins","airDate":"2017-12-15","airDateUtc":"2017-12-16T00:30:00Z","overview":"Steven helps Mayor Dewey run a difficult campaign.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4506},{"seriesId":13,"episodeFileId":11859,"seasonNumber":5,"episodeNumber":6,"title":"Gemcation","airDate":"2017-12-15","airDateUtc":"2017-12-16T00:40:00Z","overview":"Greg and the Gems take Steven on vacation to help him relax.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4507},{"seriesId":13,"episodeFileId":11862,"seasonNumber":5,"episodeNumber":7,"title":"Raising the Barn","airDate":"2017-12-22","airDateUtc":"2017-12-23T00:30:00Z","overview":"When Lapis and Peridot learn what happened to Steven on Homeworld, Lapis wants to flee Earth to avoid getting caught up in another Gem war. However, Peridot wants to stay on Earth to protect it, and has a hard time telling Lapis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4508},{"seriesId":13,"episodeFileId":11869,"seasonNumber":5,"episodeNumber":8,"title":"Back to the Kindergarten","airDate":"2017-12-22","airDateUtc":"2017-12-23T00:40:00Z","overview":"With Peridot upset over Lapis leaving Earth, Steven and Amethyst decide to help her cheer up by planting flowers at the Kindergarten.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4509},{"seriesId":13,"episodeFileId":11874,"seasonNumber":5,"episodeNumber":9,"title":"Sadie Killer","airDate":"2017-12-29","airDateUtc":"2017-12-30T00:30:00Z","overview":"Steven and the Cool Kids start a band, but they have trouble finding their sound. They decide to recruit Sadie, who writes a dark song about her frustrating job at the Big Donut; but that same job keeps her from actually participating in the band.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4510},{"seriesId":13,"episodeFileId":11880,"seasonNumber":5,"episodeNumber":10,"title":"Kevin Party","airDate":"2017-12-29","airDateUtc":"2017-12-30T00:40:00Z","overview":"Kevin is throwing a party, and invites Steven only so he can show up as Stevonnie. Steven doesn't want to go at first, but changes his mind when Kevin reveals that Connie will be there. When they see each other, Kevin decides to help Steven get his \"ex\" back so they can fuse.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4511},{"seriesId":13,"episodeFileId":11883,"seasonNumber":5,"episodeNumber":11,"title":"Lars of the Stars","airDate":"2018-01-05","airDateUtc":"2018-01-06T00:30:00Z","overview":"Steven and Connie travel through Lion's mane to visit Lars. When they reach the other side, they discover that Lars and the Off-Color Gems have stolen a spaceship from Emerald and are now on the run from their pursuers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4512},{"seriesId":13,"episodeFileId":11888,"seasonNumber":5,"episodeNumber":12,"title":"Jungle Moon","airDate":"2018-01-05","airDateUtc":"2018-01-06T00:40:00Z","overview":"Stevonnie crash-lands in a jungle on an alien moon and, unable to contact Lars, must fend for themself. They discover that the moon houses an abandoned Gem base and orbits a former Gem colony, and have a strange dream involving the Diamonds.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4513},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The Series So Far","airDate":"2018-03-21","airDateUtc":"2018-03-21T23:30:00Z","overview":"Steven Universe fills you in on everything you need to know about Rose Quartz, The Crystal Gems, and The Diamond Authority before you dive into any new episodes!\r\n(And there might just be a sneak peek of what\u2019s to come...)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4375},{"seriesId":13,"episodeFileId":11894,"seasonNumber":5,"episodeNumber":13,"title":"Your Mother and Mine","airDate":"2018-04-09","airDateUtc":"2018-04-09T23:30:00Z","overview":"Steven brings Garnet to meet Lars and his off-color crew. The Off-Colors' beliefs about Rose Quartz have been skewed by Homeworld propaganda, so Garnet tells them the history of Rose's rebellion from the Crystal Gems' perspective.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4514},{"seriesId":13,"episodeFileId":11896,"seasonNumber":5,"episodeNumber":14,"title":"The Big Show","airDate":"2018-04-16","airDateUtc":"2018-04-16T23:30:00Z","overview":"In this documentary-style episode, Steven records the rise of Sadie's new band, Sadie Killer and the Suspects. The band hires Greg as their manager, who hooks them up with producer Sunshine Justice for a performance in Empire City, though Sadie worries about her mother getting in the way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4515},{"seriesId":13,"episodeFileId":11902,"seasonNumber":5,"episodeNumber":15,"title":"Pool Hopping","airDate":"2018-04-23","airDateUtc":"2018-04-23T23:30:00Z","overview":"Garnet spends a day trying to behave unpredictably, attempting to train her future vision to account for the unexpected. When she and Steven eventually discover some homeless kittens, Garnet admits how lost and stressed she feels when she doesn't know what the future holds.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4516},{"seriesId":13,"episodeFileId":11910,"seasonNumber":5,"episodeNumber":16,"title":"Letters to Lars","airDate":"2018-04-30","airDateUtc":"2018-04-30T23:30:00Z","overview":"Lars receives a letter from Steven updating him about the current goings-on in Beach City. While the town and its population are changing, the now-former mayor Bill Dewey is having trouble trying to find his place in the new status quo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4517},{"seriesId":13,"episodeFileId":11913,"seasonNumber":5,"episodeNumber":17,"title":"Can't Go Back","airDate":"2018-05-07","airDateUtc":"2018-05-07T23:30:00Z","overview":"After Ronaldo sees the barn on the moon, Steven goes up there and finds Lapis Lazuli using the moon base to spy on Steven and the Gems on Earth. While the two reconnect, Lapis is unsure about returning to Earth, but another vision from Steven prompts her decision.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4518},{"seriesId":13,"episodeFileId":11920,"seasonNumber":5,"episodeNumber":18,"title":"A Single Pale Rose","airDate":"2018-05-07","airDateUtc":"2018-05-07T23:40:00Z","overview":"Steven helps Pearl with her phone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4519},{"seriesId":13,"episodeFileId":11921,"seasonNumber":5,"episodeNumber":19,"title":"Now We're Only Falling Apart","airDate":"2018-07-02","airDateUtc":"2018-07-02T23:30:00Z","overview":"Pearl tells a story.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4520},{"seriesId":13,"episodeFileId":11930,"seasonNumber":5,"episodeNumber":20,"title":"What's Your Problem?","airDate":"2018-07-03","airDateUtc":"2018-07-03T23:30:00Z","overview":"Amethyst convinces Steven to take a day off for himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":4521},{"seriesId":13,"episodeFileId":11933,"seasonNumber":5,"episodeNumber":21,"title":"The Question","airDate":"2018-07-04","airDateUtc":"2018-07-04T23:30:00Z","overview":"Ruby goes on an adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":4522},{"seriesId":13,"episodeFileId":11939,"seasonNumber":5,"episodeNumber":22,"title":"Made of Honor","airDate":"2018-07-05","airDateUtc":"2018-07-05T23:30:00Z","overview":"Steven has a big surprise for the Crystal Gems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":4523},{"seriesId":13,"episodeFileId":11941,"seasonNumber":5,"episodeNumber":23,"title":"Reunited (Part 1)","airDate":"2018-07-06","airDateUtc":"2018-07-06T23:30:00Z","overview":"Steven brings everyone together for a special reunion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4524},{"seriesId":13,"episodeFileId":11947,"seasonNumber":5,"episodeNumber":24,"title":"Legs From Here to Homeworld","airDate":"2018-12-17","airDateUtc":"2018-12-18T00:30:00Z","overview":"Steven travels to visit family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4525},{"seriesId":13,"episodeFileId":11952,"seasonNumber":5,"episodeNumber":25,"title":"Familiar","airDate":"2018-12-24","airDateUtc":"2018-12-25T00:30:00Z","overview":"With many changes going on in his life, Steven tries to find his place in the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":9504},{"seriesId":13,"episodeFileId":11955,"seasonNumber":5,"episodeNumber":26,"title":"Together Alone","airDate":"2018-12-31","airDateUtc":"2019-01-01T00:30:00Z","overview":"Steven throws a party to bring his family together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":9505},{"seriesId":13,"episodeFileId":11958,"seasonNumber":5,"episodeNumber":27,"title":"Escapism","airDate":"2019-01-07","airDateUtc":"2019-01-08T00:30:00Z","overview":"Steven uses his psychic powers to find help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":9506},{"seriesId":13,"episodeFileId":11960,"seasonNumber":5,"episodeNumber":28,"title":"Change Your Mind","airDate":"2019-01-21","airDateUtc":"2019-01-22T00:30:00Z","overview":"Steven faces his biggest challenge yet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":9507},{"seriesId":13,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Steven Universe: The Movie","airDate":"2019-09-02","airDateUtc":"2019-09-02T23:30:00Z","overview":"After so many harrowing adventures, Steven and the Gems are ready to celebrate how far they've come with a movie musical! Little do they know they're about to face their worst enemy yet.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11741}],"episodeFile":[{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Super Watermelon Island-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E01.Super Watermelon Island-WEBDL-1080p.mkv","size":154896343,"dateAdded":"2020-01-14T00:54:34.824266Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11830},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Gem Glow-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E01.Gem Glow-WEBDL-1080p.mkv","size":137016800,"dateAdded":"2020-01-14T00:54:34.877981Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11831},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Full Disclosure-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E01.Full Disclosure-WEBDL-1080p.mkv","size":98606459,"dateAdded":"2020-01-14T00:54:34.93282Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11832},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The Kindergarten Kid-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E01.The Kindergarten Kid-WEBDL-1080p.mkv","size":85826419,"dateAdded":"2020-01-14T00:54:34.990062Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11833},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Stuck Together-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E01.Stuck Together-WEBDL-1080p.mkv","size":61614730,"dateAdded":"2020-01-14T00:54:35.045789Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11834},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Laser Light Cannon-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E02.Laser Light Cannon-WEBDL-1080p.mkv","size":162909314,"dateAdded":"2020-01-14T00:54:35.098749Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:15:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11835},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Gem Drill-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E02.Gem Drill-WEBDL-1080p.mkv","size":133866387,"dateAdded":"2020-01-14T00:54:35.155375Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11836},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E02.The Trial-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E02.The Trial-WEBDL-1080p.mkv","size":84128773,"dateAdded":"2020-01-14T00:54:35.209132Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11837},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Know Your Fusion-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E02.Know Your Fusion-WEBDL-1080p.mkv","size":84069569,"dateAdded":"2020-01-14T00:54:35.262523Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11838},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Open Book-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E02.Open Book-WEBDL-1080p.mkv","size":79058355,"dateAdded":"2020-01-14T00:54:35.315302Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11839},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Cheeseburger Backpack-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E03.Cheeseburger Backpack-WEBDL-1080p.mkv","size":153701211,"dateAdded":"2020-01-14T00:54:35.369869Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11840},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Same Old World-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E03.Same Old World-WEBDL-1080p.mkv","size":107529759,"dateAdded":"2020-01-14T00:54:35.423083Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11841},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Joy Ride-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E03.Joy Ride-WEBDL-1080p.mkv","size":95768967,"dateAdded":"2020-01-14T00:54:35.476667Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11842},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Off Colors-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E03.Off Colors-WEBDL-1080p.mkv","size":84683639,"dateAdded":"2020-01-14T00:54:35.532763Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11843},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Buddy's Book-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E03.Buddy's Book-WEBDL-1080p.mkv","size":79836944,"dateAdded":"2020-01-14T00:54:35.588193Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11844},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Together Breakfast-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E04.Together Breakfast-WEBDL-1080p.mkv","size":143506422,"dateAdded":"2020-01-14T00:54:35.643271Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"52:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11845},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Say Uncle-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E04.Say Uncle-WEBDL-1080p.mkv","size":101477803,"dateAdded":"2020-01-14T00:54:35.697764Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11846},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Mindful Education-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E04.Mindful Education-WEBDL-1080p.mkv","size":99809809,"dateAdded":"2020-01-14T00:54:35.750991Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11847},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Lars' Head-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E04.Lars' Head-WEBDL-1080p.mkv","size":64331725,"dateAdded":"2020-01-14T00:54:35.806134Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11848},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Barn Mates-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E04.Barn Mates-WEBDL-1080p.mkv","size":63691208,"dateAdded":"2020-01-14T00:54:35.85952Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11849},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Frybo-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E05.Frybo-WEBDL-1080p.mkv","size":120250681,"dateAdded":"2020-01-14T00:54:35.91386Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11850},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Story for Steven-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E05.Story for Steven-WEBDL-1080p.mkv","size":109202700,"dateAdded":"2020-01-14T00:54:35.967192Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11851},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Hit the Diamond-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E05.Hit the Diamond-WEBDL-1080p.mkv","size":95007632,"dateAdded":"2020-01-14T00:54:36.169165Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11852},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Dewey Wins-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E05.Dewey Wins-WEBDL-1080p.mkv","size":77193166,"dateAdded":"2020-01-14T00:54:36.238014Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11853},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Future Boy Zoltron-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E05.Future Boy Zoltron-WEBDL-1080p.mkv","size":75887533,"dateAdded":"2020-01-14T00:54:36.300904Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11854},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Shirt Club-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E06.Shirt Club-WEBDL-1080p.mkv","size":116430781,"dateAdded":"2020-01-14T00:54:36.364575Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1080","runTime":"11:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11855},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Cat Fingers-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E06.Cat Fingers-WEBDL-1080p.mkv","size":114633037,"dateAdded":"2020-01-14T00:54:36.429367Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11856},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Last One Out of Beach City-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E06.Last One Out of Beach City-WEBDL-1080p.mkv","size":91871455,"dateAdded":"2020-01-14T00:54:36.492731Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11857},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Steven Floats-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E06.Steven Floats-WEBDL-1080p.mkv","size":89218147,"dateAdded":"2020-01-14T00:54:36.553419Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11858},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Gemcation-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E06.Gemcation-WEBDL-1080p.mkv","size":71479859,"dateAdded":"2020-01-14T00:54:36.615581Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11859},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Bubble Buddies-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E07.Bubble Buddies-WEBDL-1080p.mkv","size":154602330,"dateAdded":"2020-01-14T00:54:36.678437Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11860},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Onion Gang-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E07.Onion Gang-WEBDL-1080p.mkv","size":99640244,"dateAdded":"2020-01-14T00:54:36.740937Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11861},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Raising the Barn-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E07.Raising the Barn-WEBDL-1080p.mkv","size":87779743,"dateAdded":"2020-01-14T00:54:36.804103Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11862},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Drop Beat Dad-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E07.Drop Beat Dad-WEBDL-1080p.mkv","size":80716978,"dateAdded":"2020-01-14T00:54:36.866382Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11863},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Love Letters-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E07.Love Letters-WEBDL-1080p.mkv","size":71639501,"dateAdded":"2020-01-14T00:54:36.928745Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11864},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Gem Harvest-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E08.Gem Harvest-WEBDL-1080p.mkv","size":183365765,"dateAdded":"2020-01-14T00:54:36.991228Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11865},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Serious Steven-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E08.Serious Steven-WEBDL-1080p.mkv","size":126148705,"dateAdded":"2020-01-14T00:54:37.051737Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:02:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11866},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Mr. Greg-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E08.Mr. Greg-WEBDL-1080p.mkv","size":115196449,"dateAdded":"2020-01-14T00:54:37.114624Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11867},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Reformed-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E08.Reformed-WEBDL-1080p.mkv","size":112239204,"dateAdded":"2020-01-14T00:54:37.177823Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11868},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Back to the Kindergarten-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E08.Back to the Kindergarten-WEBDL-1080p.mkv","size":80689656,"dateAdded":"2020-01-14T00:54:37.242093Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11869},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Tiger Millionaire-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E09.Tiger Millionaire-WEBDL-1080p.mkv","size":121875191,"dateAdded":"2020-01-14T00:54:37.3662Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11871},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Three Gems and a Baby-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E09.Three Gems and a Baby-WEBDL-1080p.mkv","size":105194732,"dateAdded":"2020-01-14T00:54:37.428555Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11872},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Sworn to the Sword-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E09.Sworn to the Sword-WEBDL-1080p.mkv","size":92552821,"dateAdded":"2020-01-14T00:54:37.492319Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11873},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Sadie Killer-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E09.Sadie Killer-WEBDL-1080p.mkv","size":86774792,"dateAdded":"2020-01-14T00:54:37.553958Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11874},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Too Short to Ride-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E09.Too Short to Ride-WEBDL-1080p.mkv","size":79416414,"dateAdded":"2020-01-14T00:54:37.618628Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11875},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Steven's Lion-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E10.Steven's Lion-WEBDL-1080p.mkv","size":111000834,"dateAdded":"2020-01-14T00:54:37.681981Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11876},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Steven's Dream-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E10.Steven's Dream-WEBDL-1080p.mkv","size":95957540,"dateAdded":"2020-01-14T00:54:37.744196Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11877},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Rising Tides+Crashing Skies-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E10.Rising Tides+Crashing Skies-WEBDL-1080p.mkv","size":93053431,"dateAdded":"2020-01-14T00:54:37.804765Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11878},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The New Lars-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E10.The New Lars-WEBDL-1080p.mkv","size":88271362,"dateAdded":"2020-01-14T00:54:37.867544Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11879},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Kevin Party-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E10.Kevin Party-WEBDL-1080p.mkv","size":69123728,"dateAdded":"2020-01-14T00:54:37.931515Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11880},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Arcade Mania-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E11.Arcade Mania-WEBDL-1080p.mkv","size":143340568,"dateAdded":"2020-01-14T00:54:37.995354Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11881},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Adventures in Light Distortion-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E11.Adventures in Light Distortion-WEBDL-1080p.mkv","size":101608614,"dateAdded":"2020-01-14T00:54:38.058076Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":12.0,"resolution":"1916x1076","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11882},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Lars of the Stars-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E11.Lars of the Stars-WEBDL-1080p.mkv","size":84958705,"dateAdded":"2020-01-14T00:54:38.122457Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11883},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Beach City Drift-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E11.Beach City Drift-WEBDL-1080p.mkv","size":80016485,"dateAdded":"2020-01-14T00:54:38.184682Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11884},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Keeping it Together-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E11.Keeping it Together-WEBDL-1080p.mkv","size":75155800,"dateAdded":"2020-01-14T00:54:38.247759Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11885},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Giant Woman-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E12.Giant Woman-WEBDL-1080p.mkv","size":123970283,"dateAdded":"2020-01-14T00:54:38.309119Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:06:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11886},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Gem Heist-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E12.Gem Heist-WEBDL-1080p.mkv","size":99706450,"dateAdded":"2020-01-14T00:54:38.373146Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11887},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Jungle Moon-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E12.Jungle Moon-WEBDL-1080p.mkv","size":93147608,"dateAdded":"2020-01-14T00:54:38.437762Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11888},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Restaurant Wars-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E12.Restaurant Wars-WEBDL-1080p.mkv","size":91731836,"dateAdded":"2020-01-14T00:54:38.500675Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11889},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E12.We Need to Talk-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E12.We Need to Talk-WEBDL-1080p.mkv","size":87746444,"dateAdded":"2020-01-14T00:54:38.563473Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11890},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E13.So Many Birthdays-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E13.So Many Birthdays-WEBDL-1080p.mkv","size":113420566,"dateAdded":"2020-01-14T00:54:38.624904Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11891},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The Zoo-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E13.The Zoo-WEBDL-1080p.mkv","size":111330423,"dateAdded":"2020-01-14T00:54:38.687658Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11892},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Kiki's Pizza Delivery Service-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E13.Kiki's Pizza Delivery Service-WEBDL-1080p.mkv","size":91026372,"dateAdded":"2020-01-14T00:54:38.75336Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11893},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Your Mother and Mine-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E13.Your Mother and Mine-WEBDL-1080p.mkv","size":76040749,"dateAdded":"2020-01-14T00:54:38.817337Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11894},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Chille Tid-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E13.Chille Tid-WEBDL-1080p.mkv","size":69338730,"dateAdded":"2020-01-14T00:54:38.879939Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11895},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E14.The Big Show-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E14.The Big Show-WEBDL-1080p.mkv","size":193641574,"dateAdded":"2020-01-14T00:54:38.946983Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11896},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E14.That Will Be All-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E14.That Will Be All-WEBDL-1080p.mkv","size":125455149,"dateAdded":"2020-01-14T00:54:39.009262Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11897},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Lars and the Cool Kids-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E14.Lars and the Cool Kids-WEBDL-1080p.mkv","size":101933195,"dateAdded":"2020-01-14T00:54:39.076852Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11898},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Monster Reunion-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E14.Monster Reunion-WEBDL-1080p.mkv","size":94661974,"dateAdded":"2020-01-14T00:54:39.15247Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11899},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Cry for Help-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E14.Cry for Help-WEBDL-1080p.mkv","size":89978904,"dateAdded":"2020-01-14T00:54:39.222274Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11900},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Onion Trade-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E15.Onion Trade-WEBDL-1080p.mkv","size":112031527,"dateAdded":"2020-01-14T00:54:39.28678Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11901},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Pool Hopping-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E15.Pool Hopping-WEBDL-1080p.mkv","size":111493123,"dateAdded":"2020-01-14T00:54:39.350461Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11902},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Alone at Sea-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E15.Alone at Sea-WEBDL-1080p.mkv","size":101757730,"dateAdded":"2020-01-14T00:54:39.412645Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11903},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E15.The New Crystal Gems-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E15.The New Crystal Gems-WEBDL-1080p.mkv","size":92460964,"dateAdded":"2020-01-14T00:54:39.50251Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11904},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Keystone Motel-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E15.Keystone Motel-WEBDL-1080p.mkv","size":67017216,"dateAdded":"2020-01-14T00:54:39.565162Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11905},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Steven the Sword Fighter-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E16.Steven the Sword Fighter-WEBDL-1080p.mkv","size":117781994,"dateAdded":"2020-01-14T00:54:39.628614Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11906},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Greg the Babysitter-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E16.Greg the Babysitter-WEBDL-1080p.mkv","size":98095873,"dateAdded":"2020-01-14T00:54:39.692141Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11907},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Onion Friend-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E16.Onion Friend-WEBDL-1080p.mkv","size":86450766,"dateAdded":"2020-01-14T00:54:39.755566Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11908},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Storm in the Room-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E16.Storm in the Room-WEBDL-1080p.mkv","size":81667670,"dateAdded":"2020-01-14T00:54:39.817374Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11909},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Letters to Lars-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E16.Letters to Lars-WEBDL-1080p.mkv","size":69751196,"dateAdded":"2020-01-14T00:54:39.881329Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11910},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Lion 2 - The Movie-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E17.Lion 2 - The Movie-WEBDL-1080p.mkv","size":125139539,"dateAdded":"2020-01-14T00:54:39.953918Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11911},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Gem Hunt-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E17.Gem Hunt-WEBDL-1080p.mkv","size":108319946,"dateAdded":"2020-01-14T00:54:40.159968Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11912},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E17.Can't Go Back-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E17.Can't Go Back-WEBDL-1080p.mkv","size":82238557,"dateAdded":"2020-01-14T00:54:40.228737Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11913},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Historical Friction-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E17.Historical Friction-WEBDL-1080p.mkv","size":80584929,"dateAdded":"2020-01-14T00:54:40.293218Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11914},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Rocknaldo-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E17.Rocknaldo-WEBDL-1080p.mkv","size":71700717,"dateAdded":"2020-01-14T00:54:40.362674Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11915},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Beach Party-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E18.Beach Party-WEBDL-1080p.mkv","size":117921346,"dateAdded":"2020-01-14T00:54:40.442937Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:17:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11916},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E18.Tiger Philanthropist-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E18.Tiger Philanthropist-WEBDL-1080p.mkv","size":114930398,"dateAdded":"2020-01-14T00:54:40.525851Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11917},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Friend Ship-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E18.Friend Ship-WEBDL-1080p.mkv","size":106791969,"dateAdded":"2020-01-14T00:54:40.598848Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11918},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Crack the Whip-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E18.Crack the Whip-WEBDL-1080p.mkv","size":98962565,"dateAdded":"2020-01-14T00:54:40.673255Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11919},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E18.A Single Pale Rose-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E18.A Single Pale Rose-WEBDL-1080p.mkv","size":74069332,"dateAdded":"2020-01-14T00:54:40.74918Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11920},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Now We're Only Falling Apart-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E19.Now We're Only Falling Apart-WEBDL-1080p.mkv","size":99672938,"dateAdded":"2020-01-14T00:54:40.825848Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11921},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Rose's Room-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E19.Rose's Room-WEBDL-1080p.mkv","size":89153853,"dateAdded":"2020-01-14T00:54:40.916219Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11922},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Room for Ruby-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E19.Room for Ruby-WEBDL-1080p.mkv","size":85672622,"dateAdded":"2020-01-14T00:54:40.986581Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11923},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Steven vs. Amethyst-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E19.Steven vs. Amethyst-WEBDL-1080p.mkv","size":85410258,"dateAdded":"2020-01-14T00:54:41.058157Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11924},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Nightmare Hospital-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E19.Nightmare Hospital-WEBDL-1080p.mkv","size":78304480,"dateAdded":"2020-01-14T00:54:41.142101Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11925},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Bismuth-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E20.Bismuth-WEBDL-1080p.mkv","size":188580392,"dateAdded":"2020-01-14T00:54:41.215278Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"22:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11926},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Lion 4 - Alternate Ending-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E20.Lion 4 - Alternate Ending-WEBDL-1080p.mkv","size":126675766,"dateAdded":"2020-01-14T00:54:41.29524Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11927},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Coach Steven-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E20.Coach Steven-WEBDL-1080p.mkv","size":125591280,"dateAdded":"2020-01-14T00:54:41.369281Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11928},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Sadie's Song-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E20.Sadie's Song-WEBDL-1080p.mkv","size":87136402,"dateAdded":"2020-01-14T00:54:41.442568Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11929},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E20.What's Your Problem-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E20.What's Your Problem-WEBDL-1080p.mkv","size":85587683,"dateAdded":"2020-01-14T00:54:41.512857Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11930},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Joking Victim-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E21.Joking Victim-WEBDL-1080p.mkv","size":117896142,"dateAdded":"2020-01-14T00:54:41.584741Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11931},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Beta-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E21.Beta-WEBDL-1080p.mkv","size":104716887,"dateAdded":"2020-01-14T00:54:41.681769Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11932},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E21.The Question-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E21.The Question-WEBDL-1080p.mkv","size":96751222,"dateAdded":"2020-01-14T00:54:41.768258Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11933},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Catch and Release-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E21.Catch and Release-WEBDL-1080p.mkv","size":87209355,"dateAdded":"2020-01-14T00:54:41.839023Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11934},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Doug Out-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E21.Doug Out-WEBDL-1080p.mkv","size":82233935,"dateAdded":"2020-01-14T00:54:41.909742Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11935},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Steven and the Stevens-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E22.Steven and the Stevens-WEBDL-1080p.mkv","size":129072394,"dateAdded":"2020-01-14T00:54:41.980378Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:43:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11936},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Earthlings-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E22.Earthlings-WEBDL-1080p.mkv","size":126968838,"dateAdded":"2020-01-14T00:54:42.052894Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11937},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E22.The Good Lars-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E22.The Good Lars-WEBDL-1080p.mkv","size":92165868,"dateAdded":"2020-01-14T00:54:42.125548Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11938},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E22.Made of Honor-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E22.Made of Honor-WEBDL-1080p.mkv","size":86219895,"dateAdded":"2020-01-14T00:54:42.202858Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11939},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E22.When It Rains-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E22.When It Rains-WEBDL-1080p.mkv","size":85699342,"dateAdded":"2020-01-14T00:54:42.276018Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11940},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E23.Reunited-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E23.Reunited-WEBDL-1080p.mkv","size":254791389,"dateAdded":"2020-01-14T00:54:42.36774Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11941},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Monster Buddies-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E23.Monster Buddies-WEBDL-1080p.mkv","size":141062112,"dateAdded":"2020-01-14T00:54:42.440585Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11942},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Back to the Barn-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E23.Back to the Barn-WEBDL-1080p.mkv","size":98726218,"dateAdded":"2020-01-14T00:54:42.520077Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11943},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E23.Are You My Dad-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E23.Are You My Dad-WEBDL-1080p.mkv","size":89493072,"dateAdded":"2020-01-14T00:54:42.600949Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11944},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E23.Back to the Moon-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E23.Back to the Moon-WEBDL-1080p.mkv","size":88224329,"dateAdded":"2020-01-14T00:54:42.694513Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11945},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E24.An Indirect Kiss-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E24.An Indirect Kiss-WEBDL-1080p.mkv","size":122407257,"dateAdded":"2020-01-14T00:54:42.765896Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:17:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11946},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E24.Legs From Here to Homeworld-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E24.Legs From Here to Homeworld-WEBDL-1080p.mkv","size":106671931,"dateAdded":"2020-01-14T00:54:42.840803Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11947},{"seriesId":13,"seasonNumber":4,"relativePath":"Season 04\/S04E24.I Am My Mom-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 04\/S04E24.I Am My Mom-WEBDL-1080p.mkv","size":89082156,"dateAdded":"2020-01-14T00:54:42.936488Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1916x1076","runTime":"11:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11948},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Too Far-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E24.Too Far-WEBDL-1080p.mkv","size":79088992,"dateAdded":"2020-01-14T00:54:43.02667Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11949},{"seriesId":13,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Bubbled-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 03\/S03E24.Bubbled-WEBDL-1080p.mkv","size":76398462,"dateAdded":"2020-01-14T00:54:43.105797Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11950},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Mirror Gem-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E25.Mirror Gem-WEBDL-1080p.mkv","size":116836759,"dateAdded":"2020-01-14T00:54:43.194192Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11951},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E25.Familiar-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E25.Familiar-WEBDL-1080p.mkv","size":91073617,"dateAdded":"2020-01-14T00:54:43.273217Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11952},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E25.The Answer-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E25.The Answer-WEBDL-1080p.mkv","size":89354089,"dateAdded":"2020-01-14T00:54:43.35364Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11953},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Ocean Gem-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E26.Ocean Gem-WEBDL-1080p.mkv","size":140100966,"dateAdded":"2020-01-14T00:54:43.438567Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11954},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E26.Together Alone-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E26.Together Alone-WEBDL-1080p.mkv","size":111564809,"dateAdded":"2020-01-14T00:54:43.539687Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11955},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E26.Steven's Birthday-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E26.Steven's Birthday-WEBDL-1080p.mkv","size":75993733,"dateAdded":"2020-01-14T00:54:43.606021Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11956},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E27.It Could've Been Great-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E27.It Could've Been Great-WEBDL-1080p.mkv","size":106849656,"dateAdded":"2020-01-14T00:54:43.672271Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11957},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E27.Escapism-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E27.Escapism-WEBDL-1080p.mkv","size":104260390,"dateAdded":"2020-01-14T00:54:43.743471Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11958},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E27.House Guest-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E27.House Guest-WEBDL-1080p.mkv","size":103618263,"dateAdded":"2020-01-14T00:54:43.828058Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11959},{"seriesId":13,"seasonNumber":5,"relativePath":"Season 05\/S05E28.Change Your Mind-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 05\/S05E28.Change Your Mind-WEBDL-1080p.mkv","size":603657049,"dateAdded":"2020-01-14T00:54:43.911523Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"45:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11960},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Space Race-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E28.Space Race-WEBDL-1080p.mkv","size":114399174,"dateAdded":"2020-01-14T00:54:43.980515Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:11:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11961},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E28.Message Received-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E28.Message Received-WEBDL-1080p.mkv","size":77573813,"dateAdded":"2020-01-14T00:54:44.057029Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11962},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E29.Secret Team-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E29.Secret Team-WEBDL-1080p.mkv","size":109283764,"dateAdded":"2020-01-14T00:54:44.127686Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11963},{"seriesId":13,"seasonNumber":2,"relativePath":"Season 02\/S02E29.Log Date 7 15 2-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 02\/S02E29.Log Date 7 15 2-WEBDL-1080p.mkv","size":73354162,"dateAdded":"2020-01-14T00:54:44.198279Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11964},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Island Adventure-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E30.Island Adventure-WEBDL-1080p.mkv","size":178528122,"dateAdded":"2020-01-14T00:54:44.280299Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:10:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11965},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E31.Keep Beach City Weird!-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E31.Keep Beach City Weird!-WEBDL-1080p.mkv","size":109776712,"dateAdded":"2020-01-14T00:54:44.362238Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11966},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Fusion Cuisine-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E32.Fusion Cuisine-WEBDL-1080p.mkv","size":76269048,"dateAdded":"2020-01-14T00:54:44.454414Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:19:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11967},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E33.Garnet's Universe-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E33.Garnet's Universe-WEBDL-1080p.mkv","size":115548816,"dateAdded":"2020-01-14T00:54:44.527172Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11968},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Watermelon Steven-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E34.Watermelon Steven-WEBDL-1080p.mkv","size":94139337,"dateAdded":"2020-01-14T00:54:44.594335Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:15:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11969},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Lion 3 - Straight to Video-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E35.Lion 3 - Straight to Video-WEBDL-1080p.mkv","size":121271723,"dateAdded":"2020-01-14T00:54:44.668479Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11970},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E36.Warp Tour-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E36.Warp Tour-WEBDL-1080p.mkv","size":113986034,"dateAdded":"2020-01-14T00:54:44.740119Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11971},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E37.Alone Together-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E37.Alone Together-WEBDL-1080p.mkv","size":92470200,"dateAdded":"2020-01-14T00:54:44.800866Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.952,"resolution":"1920x1080","runTime":"11:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11972},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E38.The Test-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E38.The Test-WEBDL-1080p.mkv","size":78469728,"dateAdded":"2020-01-14T00:54:44.873918Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11973},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E39.Future Vision-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E39.Future Vision-WEBDL-1080p.mkv","size":115125263,"dateAdded":"2020-01-14T00:54:44.956083Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11974},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E40.On the Run-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E40.On the Run-WEBDL-1080p.mkv","size":96502526,"dateAdded":"2020-01-14T00:54:45.03322Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11975},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E41.Horror Club-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E41.Horror Club-WEBDL-1080p.mkv","size":86739366,"dateAdded":"2020-01-14T00:54:45.116021Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11976},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E42.Winter Forecast-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E42.Winter Forecast-WEBDL-1080p.mkv","size":94979669,"dateAdded":"2020-01-14T00:54:45.201983Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:24:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11977},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E43.Maximum Capacity-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E43.Maximum Capacity-WEBDL-1080p.mkv","size":89613363,"dateAdded":"2020-01-14T00:54:45.271006Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11978},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E44.Marble Madness-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E44.Marble Madness-WEBDL-1080p.mkv","size":96371190,"dateAdded":"2020-01-14T00:54:45.335108Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:27:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11979},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E45.Rose's Scabbard-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E45.Rose's Scabbard-WEBDL-1080p.mkv","size":98682602,"dateAdded":"2020-01-14T00:54:45.399353Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11980},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E46.The Message-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E46.The Message-WEBDL-1080p.mkv","size":84031825,"dateAdded":"2020-01-14T00:54:45.476879Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11981},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E47.Political Power-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E47.Political Power-WEBDL-1080p.mkv","size":81969412,"dateAdded":"2020-01-14T00:54:45.561221Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"11:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11982},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E48.The Return-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E48.The Return-WEBDL-1080p.mkv","size":104470058,"dateAdded":"2020-01-14T00:54:45.643233Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":11.905,"resolution":"1920x1080","runTime":"11:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11983},{"seriesId":13,"seasonNumber":1,"relativePath":"Season 01\/S01E49.Jail Break-WEBDL-1080p.mkv","path":"\/tv\/Steven Universe\/Season 01\/S01E49.Jail Break-WEBDL-1080p.mkv","size":139152337,"dateAdded":"2020-01-14T00:54:45.709473Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:29:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11984}],"queue":[]},"24":{"series":{"title":"Blue Exorcist","alternateTitles":[{"title":"Ao no Exorcist","sceneSeasonNumber":1},{"title":"Ao no Exorcist - Kyoto Fujouou-hen","sceneSeasonNumber":2},{"title":"Ao no Exorcist","seasonNumber":-1}],"sortTitle":"blue exorcist","status":"ended","ended":true,"overview":"Humans live in the world of Assiah, demons in Gehenna. The two dimensions are not meant to interfere with each other, but demons still possess creatures in Assiah in spite of this. The humans who can fight these demons are known as exorcists. Rin Okumura is a boy who bears the curse of being Satan's illegitimate son. His foster father sacrificed himself to save him from demons. To avenge his foster father's death as well as to prove himself, Rin decides to follow the path of an exorcist and defeat his own father, Satan. To hone his raw skills, Rin enters True Cross Academy to train with other exorcist candidates.","previousAiring":"2011-10-01T17:00:00Z","network":"Tokyo Broadcasting System","airTime":"02:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/33\/banner.jpg?lastWrite=636747176290946810","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/248035-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/33\/poster.jpg?lastWrite=636747176291546790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/248035-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/33\/fanart.jpg?lastWrite=637103832389319370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/248035-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-10-01T17:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":67907893304,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2011,"path":"\/tv\/Blue Exorcist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":248035,"tvRageId":28088,"tvMazeId":5896,"firstAired":"2011-04-17T00:00:00Z","seriesType":"standard","cleanTitle":"blueexorcist","imdbId":"tt1799631","titleSlug":"blue-exorcist","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Comedy","Drama","Fantasy","Horror","Mystery"],"tags":[],"added":"2018-06-06T19:38:53.6002844Z","ratings":{"votes":4507,"value":7.9},"statistics":{"seasonCount":2,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":51,"sizeOnDisk":67907893304,"percentOfEpisodes":100.0},"id":33},"episodes":[{"seriesId":33,"episodeFileId":777,"seasonNumber":1,"episodeNumber":1,"title":"The Devil Resides in Human Souls","airDate":"2011-04-17","airDateUtc":"2011-04-16T17:00:00Z","overview":"Rin Okumura is a teenager with a natural gift to get himself in trouble. Despite that he tries his best to meet the expectations of his twin brother Yukio and Priest Shiro Fujimoto, who acts as their guardian, until he finally learns about the dark secret behind his origin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1011},{"seriesId":33,"episodeFileId":778,"seasonNumber":1,"episodeNumber":2,"title":"Gehenna Gate","airDate":"2011-04-24","airDateUtc":"2011-04-23T17:00:00Z","overview":"Fujimoto and his companions try their best to protect Rin from the demons who are after him, but he ends up posessed by Satan, the most powerful of the demons and Rin's father. Seeing his guardian taking his own life to protect him fron Satan, Rin decides to fight back by unlocking his demonic powers, even knowing that by doing it he would not be a human anymore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1012},{"seriesId":33,"episodeFileId":779,"seasonNumber":1,"episodeNumber":3,"title":"Brothers","airDate":"2011-05-01","airDateUtc":"2011-04-30T17:00:00Z","overview":"As part of his training to become an Exorcist, Rin gets himself enrolled at the True Cross Academy. On his first day of classes, Rin becomes shocked to know that his twin brother Yukio is already an Exorcist and will be one of his teachers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1013},{"seriesId":33,"episodeFileId":780,"seasonNumber":1,"episodeNumber":4,"title":"The Garden of Amahara","airDate":"2011-05-08","airDateUtc":"2011-05-07T17:00:00Z","overview":"Yukio sets out to the school's Exorcist-only shop to stock on some supplies along with Rin. There they find that the owner's daughter, Shiemi Moriyama, is being afflicted by a demon that dwells in her family's garden and, to save her life, they confront it by themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1014},{"seriesId":33,"episodeFileId":781,"seasonNumber":1,"episodeNumber":5,"title":"A Boy from the Cursed Temple","airDate":"2011-05-15","airDateUtc":"2011-05-14T17:00:00Z","overview":"Having Shiemi as a new classmate, Rin's total disregard for classes brings forth the anger of another classmate of his, Ryuji Suguro, aka \"Bon\". After learning of Bon's story, Rin finds that they have more in common than he would like to admit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1015},{"seriesId":33,"episodeFileId":782,"seasonNumber":1,"episodeNumber":6,"title":"The Phantom Chef","airDate":"2011-05-22","airDateUtc":"2011-05-21T17:00:00Z","overview":"Rin and Yukio find that the responsible for their meals at the dormitory was Ukoback, a cooking familiar appointed by Mephisto Pheles to aid them. They also learn how Ukoback can be troublesome when he gets angry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1016},{"seriesId":33,"episodeFileId":783,"seasonNumber":1,"episodeNumber":7,"title":"A Flock of Plovers","airDate":"2011-05-29","airDateUtc":"2011-05-28T17:00:00Z","overview":"Eager to make new friendships, Shiemi asks her classmate Izumo Kamiki to be her friend and she pretends to agree, but Rin soon realizes Izumo is just taking advantage of Shiemi's kindness instead. Later, the students are reunited at the old dormitory to take part in the Exwire exam, where a demon attacks Izumo and her friend Paku by surprise and it's up to Rin and Shiemi to protect them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1017},{"seriesId":33,"episodeFileId":784,"seasonNumber":1,"episodeNumber":8,"title":"Now a Certain Man was Sick","airDate":"2011-06-05","airDateUtc":"2011-06-04T17:00:00Z","overview":"Still troubled after her friend Paku decides to leave the Exorcist lessons, Kamiki gets involved in a fight with Bon and the entire class end up punished by Yukio. Just after Yukio leaves for a mission, the students are attacked by another ghoul and while trying to help the others, Rin learns that the monster was sent by one of his teachers who wanted to confirm that he is the son of Satan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1018},{"seriesId":33,"episodeFileId":785,"seasonNumber":1,"episodeNumber":9,"title":"Memories","airDate":"2011-06-12","airDateUtc":"2011-06-11T17:00:00Z","overview":"Mephisto Pheles reveals to the students that the ghoul attack was actually part of the Esquire exam and how they dealt with the threat will count as part of their evaluation. Yukio confronts Neuhaus about his reasons to force Rin to use his demonic powers during the exam and he claims that all he did was under Mephisto's orders. However, it does not take much for Yukio to realize Neuhaus' real intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1019},{"seriesId":33,"episodeFileId":786,"seasonNumber":1,"episodeNumber":10,"title":"Black Cat","airDate":"2011-06-19","airDateUtc":"2011-06-18T17:00:00Z","overview":"Blacky went beserk when she heard the Father Shiro died and kept telling the exorcists that they were all lying about his death though only Rin could understand her (He said it may because they are both demons). When Yukio was about to use the item that Father Shiro gave him before if ever this scenario happens, Rin told him to let him calm Blacky down. In the end, Blacky accepted the fact that Father Shiro died and Rin and Yukio found out that the item that Father Shiro gave Yukio was actually his catnip wine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1020},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Ura Ex 1","airDate":"2011-06-22","airDateUtc":"2011-06-21T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1048},{"seriesId":33,"episodeFileId":787,"seasonNumber":1,"episodeNumber":11,"title":"Demon of the Deep Seas","airDate":"2011-06-26","airDateUtc":"2011-06-25T17:00:00Z","overview":"Rin and his classmates Izumo and Shima are sent for their first mission as Exwires to a coast town aflicted by the presence of a Kraken. Izumo stumbles upon a boy whose father set to face the Kraken six months before and is still missing. The boy plans to enact his revenge against the creature as he believes it killed his father, but he and the Exwires find out what really happened when they encounter it, much to their surprise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1021},{"seriesId":33,"episodeFileId":788,"seasonNumber":1,"episodeNumber":12,"title":"A Game of Tag","airDate":"2011-07-03","airDateUtc":"2011-07-02T17:00:00Z","overview":"The Exwires are tasked to look for the ghost of a child that is haunting Mephisto Pheles' amusement park. Rin and Shiemi manage to find the ghost first, but Shiemi ends up chasing it by herself while Amaimon, a higher demon and another son of Satan, steals Rin's sword and forces Rin to fight with him. Mean while another exorcist comes to defend him, and it is reveal to be an old friend of Rin's brother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1022},{"seriesId":33,"episodeFileId":789,"seasonNumber":1,"episodeNumber":13,"title":"Proof","airDate":"2011-07-10","airDateUtc":"2011-07-09T17:00:00Z","overview":"Shura Kirigakure, a high level Exorcist and former apprentice of Father Shiro was acting as one of Rin's classmates tasked to investigate his connection with Satan. With orders to kill him if it were proven true, she is divided between fulfill her obligations and follow Shiro's request to look after Rin in his place if something would happen with him. Her doubts are cleared when she confronts Rin and finds that Shiro was actually raising him like a son instead of a weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1023},{"seriesId":33,"episodeFileId":790,"seasonNumber":1,"episodeNumber":14,"title":"A Fun Camping Trip","airDate":"2011-07-17","airDateUtc":"2011-07-16T17:00:00Z","overview":"The first semester has ended, signaling the start of summer vacation for True Cross Academy students. But there\u2019s no rest in sight for Rin and the other Esquires: first they must take part in a 3-day drill to prepare them for actual combat, under the guise of a camping trip out in the forest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1024},{"seriesId":33,"episodeFileId":791,"seasonNumber":1,"episodeNumber":15,"title":"Act of Kindness","airDate":"2011-07-24","airDateUtc":"2011-07-23T17:00:00Z","overview":"Rin and his classmates succeed at the task gave to them by their teachers, but the camp is attacked by Amaimon, who holds Shiemi hostage to force Rin to fight. Having no option but to go full force against Amaimon, Rin is forced to reveal his secret by exposing his true form in front of his friends. With the other Exwires fleeing astonished after learning the truth about him, Rin easily overpowers Amaimon, but loses control of his flames and goes on a rampage. The Demon-Slaying Blade is cracked in the process.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1025},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Ura Ex 2","airDate":"2011-07-27","airDateUtc":"2011-07-26T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1049},{"seriesId":33,"episodeFileId":792,"seasonNumber":1,"episodeNumber":16,"title":"The Wager","airDate":"2011-07-31","airDateUtc":"2011-07-30T17:00:00Z","overview":"Shiemi manages to calm down Rin, who is captured by Arthur Auguste Angel, the current paladin, and taken to the True Cross Order Headquarters in the Vatican along Shura and Mephisto Pheles. Meanwhile, Rin's classmates become astonished when Yukio reveals to them that he and his brother are sons of Satan, but offer their help regardless, and they set for Kyoto looking for the descendant of the swordsmith who forged the Demon-Slaying Blade to have it fixed. Before the Order's upper echelons, Mephisto states that his reason for keeping Rin alive is to have him confront Satan, and just when he is trying to convince them to agree to his plan, an enraged Amaimon breaks in, eager to confront Rin once more.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1026},{"seriesId":33,"episodeFileId":793,"seasonNumber":1,"episodeNumber":17,"title":"Temptation","airDate":"2011-08-07","airDateUtc":"2011-08-06T17:00:00Z","overview":"Easily breaking through all defenses, Amaimon reaches the room where Rin is being held and Mephisto convinces the Grigori to agree with his plan. Using the reforged Demon-Slaying Blade brought by his classmates, Rin defeats Amaimon and the Grigori decides that he has six months to pass the Exorcist authorization exam, thus he begins a special training to learn to control his flames. Despite they helped Rin by having his sword fixed, some of his classmates still has some mixed feelings about him after learning of his connection with Satan, the most awkward of them being Konekomaru, who is approached by a dark presence attracted by his fear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1027},{"seriesId":33,"episodeFileId":794,"seasonNumber":1,"episodeNumber":18,"title":"Gale","airDate":"2011-08-14","airDateUtc":"2011-08-13T17:00:00Z","overview":"Rin and Kamiki are attacked by an unknown enemy and Mephisto Pheles orders the Exwires to check the barriers protecting the school looking for any breach. The enemy is revealed to be a demon who took advantage of Konekomaru's fears to infiltrate the Academy. Meanwhile, Shura locates a hidden door leading to a suspicious abandoned lab. When Konekomaru's heart succumbs to the demon, his friends rush to help him, and Rin manages to slay the monster and save his life. Ashamed of causing so much trouble, Konekomaru decides to leave the Academy and return home, but Rin and the rest of his friends reach him before he departs and convince him to stay.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1028},{"seriesId":33,"episodeFileId":795,"seasonNumber":1,"episodeNumber":19,"title":"An Ordinary Day","airDate":"2011-08-21","airDateUtc":"2011-08-20T17:00:00Z","overview":"The Exwires learn that Kamiki's birthday is coming and they decide to make a surprise party to her. Despite all their efforts to make the party a secret, Kamiki ends up figuring the truth and claims that it should also be dedicated to those whose birthday already passed too. In the end, the party becomes a celebration to everyone's friendship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1029},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Ura Ex 3","airDate":"2011-08-24","airDateUtc":"2011-08-23T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1050},{"seriesId":33,"episodeFileId":796,"seasonNumber":1,"episodeNumber":20,"title":"Mask","airDate":"2011-08-28","airDateUtc":"2011-08-27T17:00:00Z","overview":"Rin and Yukio find that their friends from the monastery where they were raised where attacked by a masked individual who covered their entire bodies with an seemingly indestructible spider web. While pursuing the culprit, whose objective is to attack anyone related to the son of Satan to make him suffer, Yukio stumbles into Neuhaus who flees without further explanation. Despite having his sword sealed by the web, Rin insists to go after the masked one but is held back by Yukio and Shura, until he gets word that his Suguro, Renzo and Konekomaru are being attacked too and rushes to help them. By managing to control his flames properly, Rin defeats the attacker, who flees thanks to Neuhaus who reveals her to be his wife, and safely releases his friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1030},{"seriesId":33,"episodeFileId":797,"seasonNumber":1,"episodeNumber":21,"title":"Secret Garden","airDate":"2011-09-04","airDateUtc":"2011-09-03T17:00:00Z","overview":"Shiemi in the Exorcist Shop finds a woman lying unconscious in their garden. Meanwhile, Yukio meets an old man on a train, who claims to be his grandfather, and reveals the truth about their Mother who was burnt alive by the Vatican proclaiming her to be a witch. He takes Yukio to a secret anti-demon Dragoon Laboratory and suggests Yukio to join him now that Shiro is dead and Mephisto has been arrested. Prof. Neuhaus is being interrogated in the Academy's Great Cell by Shura where he tells everyone(including Rin) that his wife,(Masked Man) Michelle, is nothing but a corpse with a certain demon in her body, intending to kill Satan but she was not resurrected from death by him. Rin finds out the woman in the garden to be Neuhaus' wife but Shiemi stops him from killing her. Paladin Angel appears in the garden to kill the demon but confronts Rin. Later, Michelle dies protecting Rin from the Order.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1031},{"seriesId":33,"episodeFileId":798,"seasonNumber":1,"episodeNumber":22,"title":"Demon Hunting","airDate":"2011-09-11","airDateUtc":"2011-09-10T17:00:00Z","overview":"Ernst takes over as the True Cross' newest leader and appoints Yukio as the new Paladin. Armed with special weapons that drain the blood of the demons killed with them, the exorcists take part in a widespread crusade to erase all demons from Assiah. Rin and his friends start questioning why the order decided to take such extreme measures, but Yukio is determined to accomplish his task as Ernst claims that it is all part of their plan to destroy Gehenna, and with the Demon world vanquished, both he and his brother would become completely human again. However, Ernst's real objective is revealed when he uses Rin as a human sacrifice to bring Satan to the Human World, using Yukio's body as a vessel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1032},{"seriesId":33,"episodeFileId":799,"seasonNumber":1,"episodeNumber":23,"title":"Truth","airDate":"2011-09-18","airDateUtc":"2011-09-17T17:00:00Z","overview":"Ernst's plan to destroy Gehenna backfires when Satan reveals to Yukio the truth behind his and his brother's origin before taking posession of his body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1033},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Ura Ex 4","airDate":"2011-09-21","airDateUtc":"2011-09-20T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1051},{"seriesId":33,"episodeFileId":800,"seasonNumber":1,"episodeNumber":24,"title":"Satan's Spawn","airDate":"2011-09-25","airDateUtc":"2011-09-24T17:00:00Z","overview":"Rin and his companions manage to flee from Satan who starts destroying the True Cross Academy with his flames. Knowing that Satan still stands beside the Gate because Rin has the power to destroy it, Shura comes up with a plan to distract him to give Rin an opening to do it, while the other students help evacuate the school. Their plan fails when Shiemi intervenes trying to dissuade Yukio with no success, but Rin manages to have his brother regain conscience and expel Satan from his body. However, the gate keeps getting stronger and it will not be long for Gehenna and Assiah to merge into one single realm.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1034},{"seriesId":33,"episodeFileId":801,"seasonNumber":1,"episodeNumber":25,"title":"Stop, Time!","airDate":"2011-10-02","airDateUtc":"2011-10-01T17:00:00Z","overview":"Rin, Yukio, Shura and Arthur join forces to bring down the Gehenna Gate with no success. Meanwhile, demons keep coming through it and giving a hard time to the other Exorcists until the Esquires come with a plan to open a gate to Vatican, where is already daytime, and reflect the sunlight there to the Academy where is nightime to weaken the monsters protecting the Gehenna Gate. Rin and Yukio manage to seize these opportunity and when both unlock their demonic powers together, they fly through the gate and destroy it. One month later, things return to normal at the Academy and the Okumura twins return to the cave where they were given birth and pay a visit to their mother's grave.\r\nAfter visiting their mother's grave, they meet an \"evil spirit\" in a highway. Rin appears from a highway cave with Kuro. The evil spirit then attacks Rin and Yukio. Rin destroys the evil spirit's first body and then the spirit takes control over a truck. Yukio shoots at the truck, Rin tell hims that there is somebody in the truck. Yukio says its just a dead corpse, but Rin believes the driver is still alive and that it's an Exorcist's job to protect people and defend against demons. He tells Yukio and Shura to find its weak point and charges after the monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1035},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Ura Ex 5","airDate":"2011-10-26","airDateUtc":"2011-10-25T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1052},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"OVA: Runaway Kuro","airDate":"2011-10-26","airDateUtc":"2011-10-25T17:25:00Z","overview":"Feeling slighted by Rin, Kuro goes on the hunt for a new master, but can he find anyone who can truly replace Rin?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1058},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Ura Ex 6","airDate":"2011-11-23","airDateUtc":"2011-11-22T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1053},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Ura Ex 7","airDate":"2011-12-14","airDateUtc":"2011-12-13T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1054},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Ura Ex 8","airDate":"2012-01-25","airDateUtc":"2012-01-24T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1055},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Ura Ex 9","airDate":"2012-02-22","airDateUtc":"2012-02-21T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1056},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Ura Ex 10","airDate":"2012-03-21","airDateUtc":"2012-03-20T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1057},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Blue Exorcist: The Movie","airDate":"2012-12-28","airDateUtc":"2012-12-27T17:00:00Z","overview":"The atmosphere in True Cross Academy is lively and boisterous in the days leading up to the grand festival held only once every 11 years. During this time, Okumura Rin is entrusted with the responsibility of suppressing a berserk Phantom Train. In the aftermath of his failed mission, he meets a devil whose appearance is that of a young boy with a mysterious connection to the ongoing festival.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1059},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Small Beginnings","airDate":"2017-01-07","airDateUtc":"2017-01-06T17:00:00Z","overview":"After his secret is exposed, Rin takes part in a special mission along Shura and Yukio to retrieve the \"Left Eye of the Impure King\", a demon relic that was stolen from the True Cross Academy's vault. In the occasion, they fail to retrieve it, but discover that the culprit is Saburota Todo, one of the exorcists in charge of the vault that was corrupted upon being possessed by a demon. After hearing that there was an attempt to steal the Left Eye's sister relic, the \"Right Eye of the Impure King\" in Kyoto, the Order sends a team there to investigate, including Shura, Yukio and the Exwires, who are in conflict after learning the truth about Rin.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1036},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Strange Bedfellows","airDate":"2017-01-14","airDateUtc":"2017-01-13T17:00:00Z","overview":"The Exwires arrive at Kyoto, and Ryuji, Konekomaru and Renzo take the opportunity to reunite with their families, while Rin and the others tend to the Exorcists of the Myoda Sect, who got wounded guarding the Right Eye of the Impure King. In the occasion, Rin meets Ryuji's father, and learns that Ryuji is resentful of him, as despite being the leader of the Myoda Sect, he is not respected by the others, as he relegated his duties since the Sect, which was weakened after losing several of its members on the Blue Night, joined the True Cross Order. Meanwhile, Todo, with the Left Eye of the Impure King replacing his own, contacts his mole inside the Sect, planning another attempt to steal the Right Eye.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1037},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Suspicion Will Raise Bogies","airDate":"2017-01-21","airDateUtc":"2017-01-20T17:00:00Z","overview":"The Myoda Sect has an emergency meeting to discuss the failed attempt to steal the Right Eye of the Impure King and discover who among them is the traitor collaborating with Todo. In the occasion, suspicions were raised towards two of the sect's exorcists, Renzo's older brother Juzo and Mamushi as they were present at the scene and were Todo's students in the past, but the head priest, who did not attend the meeting, was counted as a suspect as well, much to Ryuji's anger. Meanwhile, Rin continues with his training to control his flames while trying to reconcile with his friends, who fear how the Myoda will respond once they learn that he is the son of Satan.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1038},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Act of Treachery","airDate":"2017-01-28","airDateUtc":"2017-01-27T17:00:00Z","overview":"Who is betraying the Myoda sect? Without high priest Tatsuma in attendance, the general meeting falls into chaos and ends without a conclusion. As Suguro resolves to find and question his father, he witnesses someone sneaking into the Kyoto field office\u2026","hasFile":false,"monitored":false,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1039},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"Mysterious Connections","airDate":"2017-02-04","airDateUtc":"2017-02-03T17:00:00Z","overview":"Although the traitor was revealed, the Right Eye of the Impure King has been stolen. While confronting Ryuji, Rin loses control of his blue flames in front of the gathered exorcists. In all of the commotion, Tatsuma slips Shura a letter addressed to Rin.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1040},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"A Wolf in Sheep's Clothing","airDate":"2017-02-10","airDateUtc":"2017-02-09T17:00:00Z","overview":"Shiro Fujimoto, Rin and Yukio\u2019s adopted father, encountered Tatsuma Suguro while trying to take the demonic sword, Kurikara. Tatsuma\u2019s letter reveals the circumstances of how the sword, which is the Myoda Sect\u2019s main object of worship, came to Rin.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1041},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Like a Fire Burning Bright","airDate":"2017-02-17","airDateUtc":"2017-02-16T17:00:00Z","overview":"The Impure King has been revived! In his letter, Tatsuma asks Rin to use the Koma sword to fight, but will that even be possible? And to make matters worse, Mephisto suddenly appears with the news that Rin has been sentenced to death!","hasFile":false,"monitored":false,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1042},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"From Father to Son","airDate":"2017-02-24","airDateUtc":"2017-02-23T17:00:00Z","overview":"Miasma spreads through the streets as the exorcists begin to counter the Impure King\u2019s growth. Rin leaves with the other students to find Tatsuma. Yukio is on the front lines, unaware his brother has left his cell, when he notices something strange\u2026","hasFile":false,"monitored":false,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1043},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Through Thick and Thin","airDate":"2017-03-03","airDateUtc":"2017-03-02T17:00:00Z","overview":"\u201cYou despise your brother, don\u2019t you?\u201d Yukio is shaken as Todo tells him to admit his true feelings. Yukio reflects on the thoughts he\u2019s had since an early age. Meanwhile, Suguro has inherited the Gouha-en, and with it, he and Rin head to the sporangium.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1044},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Unbowed and Unbroken","airDate":"2017-03-10","airDateUtc":"2017-03-09T17:00:00Z","overview":"The sporangium has finally burst, revealing the Impure King. Assaulted by the miasma, Suguro barely maintains the barrier. And every passing moment brings him closer to his limit. Rin questions why he can\u2019t draw his sword, even when backed into a corner.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1045},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Shine Bright as the Sun","airDate":"2017-03-17","airDateUtc":"2017-03-16T17:00:00Z","overview":"Rin finally manages to draw the demon sword. Shura tells him to, \u201cWin a place for yourself in this world!\u201d However, there doesn\u2019t seem to be a way to stop the Impure King\u2019s overwhelming growth. And if Suguro\u2019s strength fails, the barrier will collapse!","hasFile":false,"monitored":false,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1046},{"seriesId":33,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"Candid and Open","airDate":"2017-03-24","airDateUtc":"2017-03-23T17:00:00Z","overview":"The sight of a blue flame burning in the night sky is reminiscent of \u201cBlue Night,\u201d but has brought about a completely different result. Now that the incidents relating to the Impure King have been concluded, those affected are moving on.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1047},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"OVA: Kyoto Impure King","airDate":"2017-04-04","airDateUtc":"2017-04-03T17:00:00Z","overview":"Bundled with the 19th volume of the Blue Exorcist manga.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1060},{"seriesId":33,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"OVA: Spy Game","airDate":"2017-10-04","airDateUtc":"2017-10-03T17:00:00Z","overview":"Based on the title chapter from the Ao no Exorcist: Spy Game short story collection novel.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1061}],"episodeFile":[{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Devil Resides in Human Souls-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E01.The Devil Resides in Human Souls-Bluray-1080p.mkv","size":2756432559,"dateAdded":"2018-10-10T21:27:18.417712Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":777},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Gehenna Gate-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E02.Gehenna Gate-Bluray-1080p.mkv","size":2936645855,"dateAdded":"2018-10-10T21:27:18.444478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":778},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Brothers-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E03.Brothers-Bluray-1080p.mkv","size":2568863262,"dateAdded":"2018-10-10T21:27:18.470787Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":779},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Garden of Amahara-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E04.The Garden of Amahara-Bluray-1080p.mkv","size":2607662368,"dateAdded":"2018-10-10T21:27:18.497538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":780},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E05.A Boy from the Cursed Temple-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E05.A Boy from the Cursed Temple-Bluray-1080p.mkv","size":2505463081,"dateAdded":"2018-10-10T21:27:18.523572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":781},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Phantom Chef-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E06.The Phantom Chef-Bluray-1080p.mkv","size":2517220092,"dateAdded":"2018-10-10T21:27:18.549783Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":782},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E07.A Flock of Plovers-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E07.A Flock of Plovers-Bluray-1080p.mkv","size":2470042936,"dateAdded":"2018-10-10T21:27:18.575811Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":783},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Now a Certain Man was Sick-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E08.Now a Certain Man was Sick-Bluray-1080p.mkv","size":2626762530,"dateAdded":"2018-10-10T21:27:18.602116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":784},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Memories-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E09.Memories-Bluray-1080p.mkv","size":2627193528,"dateAdded":"2018-10-10T21:27:18.629628Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":785},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Black Cat-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E10.Black Cat-Bluray-1080p.mkv","size":2552996844,"dateAdded":"2018-10-10T21:27:18.655766Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":786},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Demon of the Deep Seas-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E11.Demon of the Deep Seas-Bluray-1080p.mkv","size":2711651512,"dateAdded":"2018-10-10T21:27:18.681812Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":787},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E12.A Game of Tag-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E12.A Game of Tag-Bluray-1080p.mkv","size":2770946850,"dateAdded":"2018-10-10T21:27:18.70822Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":788},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Proof-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E13.Proof-Bluray-1080p.mkv","size":2428718203,"dateAdded":"2018-10-10T21:27:18.734646Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":789},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E14.A Fun Camping Trip-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E14.A Fun Camping Trip-Bluray-1080p.mkv","size":2753561677,"dateAdded":"2018-10-10T21:27:18.761029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":790},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Act of Kindness-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E15.Act of Kindness-Bluray-1080p.mkv","size":2906803478,"dateAdded":"2018-10-10T21:27:18.788091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":791},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Wager-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E16.The Wager-Bluray-1080p.mkv","size":2721695809,"dateAdded":"2018-10-10T21:27:18.817092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":792},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Temptation-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E17.Temptation-Bluray-1080p.mkv","size":2615536694,"dateAdded":"2018-10-10T21:27:18.844716Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":793},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Gufu-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E18.Gufu-Bluray-1080p.mkv","size":2638483920,"dateAdded":"2018-10-10T21:27:18.871339Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":794},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E19.An Ordinary Day-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E19.An Ordinary Day-Bluray-1080p.mkv","size":2463566111,"dateAdded":"2018-10-10T21:27:18.897624Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":795},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Mask-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E20.Mask-Bluray-1080p.mkv","size":2787791818,"dateAdded":"2018-10-10T21:27:18.924139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":796},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Secret Garden-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E21.Secret Garden-Bluray-1080p.mkv","size":2740688000,"dateAdded":"2018-10-10T21:27:18.950209Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":797},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Demon Hunting-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E22.Demon Hunting-Bluray-1080p.mkv","size":2781885212,"dateAdded":"2018-10-10T21:27:18.976694Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":798},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Truth-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E23.Truth-Bluray-1080p.mkv","size":3096147836,"dateAdded":"2018-10-10T21:27:19.003141Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":799},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Satan's Spawn-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E24.Satan's Spawn-Bluray-1080p.mkv","size":3295430239,"dateAdded":"2018-10-10T21:27:19.02947Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":800},{"seriesId":33,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Stop, Time!-Bluray-1080p.mkv","path":"\/tv\/Blue Exorcist\/Season 01\/S01E25.Stop, Time!-Bluray-1080p.mkv","size":3025702890,"dateAdded":"2018-10-10T21:27:19.057384Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":801}],"queue":[]},"25":{"series":{"title":"Pop Team Epic","alternateTitles":[],"sortTitle":"pop team epic","status":"ended","ended":true,"overview":"Crude, rude, and a little\u2026cute? Get ready for the larger-than-life attitude of Popuko and Pipimi, the small and tall stars of Pop Team Epic! Based off the bizarre four-panel webcomic by Bukubu Okawa comes a comedy that\u2019ll throw you off with its out-there jokes and intense absurdity. You think you\u2019re ready for these girls? Think again, F#%**er!","previousAiring":"2018-03-24T15:00:00Z","network":"BS11","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/17\/banner.jpg?lastWrite=636747176432783720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/339278-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/17\/poster.jpg?lastWrite=637487588991326820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/339278-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/17\/fanart.jpg?lastWrite=637487588993966780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/339278-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-03-24T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6905478235,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Pop Team Epic","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":339278,"tvRageId":0,"tvMazeId":33902,"firstAired":"2018-01-07T00:00:00Z","seriesType":"standard","cleanTitle":"popteamepic","imdbId":"tt7808370","titleSlug":"pop-team-epic","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy"],"tags":[],"added":"2018-01-20T23:36:13.7245012Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":18,"sizeOnDisk":6905478235,"percentOfEpisodes":100.0},"id":17},"episodes":[{"seriesId":17,"episodeFileId":2097,"seasonNumber":1,"episodeNumber":1,"title":"Encounter","airDate":"2018-01-07","airDateUtc":"2018-01-06T15:00:00Z","overview":"An anime series about a girl who is secretly an idol is quickly thrown out the window in favor of the crazy, disjointed antics of Popuko and Pipimi. Among other skits, Popuko experiences death and rebirth as she experiences many first encounters with Pipimi, and the two girls go to France in an attempt to use gestures to communicate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2897},{"seriesId":17,"episodeFileId":2098,"seasonNumber":1,"episodeNumber":2,"title":"Vanver: A Game in Another Dimension","airDate":"2018-01-14","airDateUtc":"2018-01-13T15:00:00Z","overview":"Popiko and Pipimi are inadvertently summoned to an unfinished fantasy anime and makes the heroes do impressions, much to the voice actors' consternation. Other skits include a stop-motion musical performance by felt dolls of Popuko and Pipimi, Popuko drawing a deluge of fortune slips, and Popuko being confronted with the harsh reality of time's passage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2898},{"seriesId":17,"episodeFileId":2099,"seasonNumber":1,"episodeNumber":3,"title":"The Documentary","airDate":"2018-01-21","airDateUtc":"2018-01-20T15:00:00Z","overview":"A documentary profiles how music producer PipiP decided to find the perfect bandmates for pop idol Pop-chin by cloning her. Other skits include Popuko dozing off while leaving for school and severely oversleeping, Popuko becoming obsessed with baguettes while in France (continuing from the \"gestures\" sketch in episode 1), and Pipimi attempting to hire Popuko as an assassin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2899},{"seriesId":17,"episodeFileId":2100,"seasonNumber":1,"episodeNumber":4,"title":"SWGP 2018","airDate":"2018-01-28","airDateUtc":"2018-01-27T15:00:00Z","overview":"Popuko takes part in the Skeleton World Grand Prix, facing many tough opponents. Other skits include a parody of Earth, Wind & Fire's \"Let's Groove\", Popuko being forced to evict an extraterrestrial being from her house, and Popuko and Pipimi encountering a boss while exploring a dungeon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2900},{"seriesId":17,"episodeFileId":2101,"seasonNumber":1,"episodeNumber":5,"title":"Donca\u2606Sis","airDate":"2018-02-04","airDateUtc":"2018-02-03T15:00:00Z","overview":"Iyo Sakuragi and Hojo become step-siblings after their parents, portrayed by Popuko and Pipimi, get married. Other skits include a cooking show hosted by Popuko and Pipimi, Pipimi literally growing with affection for Popuko, and Popuko doing a poor impression of Mickey Mouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2901},{"seriesId":17,"episodeFileId":2102,"seasonNumber":1,"episodeNumber":6,"title":"The 30th Cyber War","airDate":"2018-02-11","airDateUtc":"2018-02-10T15:00:00Z","overview":"Guided by the spirit of Pipimi, Popuko fights against the Elite Four in a shogi tournament. Other skits include Pipimi's fantasies about attractive male characters distracting her from Popuko's venting, Popuko demonstrating an increasingly bizarre variety of regional activities, and Popuko and Pipimi discussing modern slang.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2902},{"seriesId":17,"episodeFileId":2103,"seasonNumber":1,"episodeNumber":7,"title":"Hellshake Yano","airDate":"2018-02-18","airDateUtc":"2018-02-17T15:00:00Z","overview":"Musician Hellshake Yano is tasked with holding a concert by himself until his band members arrive. Other skits include dealing with haters, Popuko turning into a baby, and Pipimi going fishing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2903},{"seriesId":17,"episodeFileId":2104,"seasonNumber":1,"episodeNumber":8,"title":"The Dragon of Iidabashi Pipi's Revenge","airDate":"2018-02-25","airDateUtc":"2018-02-24T15:00:00Z","overview":"Yakuza member Pipi decides to take vengeance against her gang when they stray down the wrong path of committing YouTuber crimes. Other skits include Popuko trying to treat an injury, bacon eating some bacon, and the ending theme singers complaining that they're not in the actual anime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2904},{"seriesId":17,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Special 1","airDate":"2018-02-28","airDateUtc":"2018-02-27T15:00:00Z","overview":"Specials included in the Blu-ray and DVD releases of Poputepipikku.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2909},{"seriesId":17,"episodeFileId":2105,"seasonNumber":1,"episodeNumber":9,"title":"Dancing with a Miracle","airDate":"2018-03-04","airDateUtc":"2018-03-03T15:00:00Z","overview":"Popuko and Pipimi encounter a young runaway boy while visiting New York City. Other skits include Popuko ordering latte art, Pipimi attempting standup comedy, and the girls trying French cuisine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2905},{"seriesId":17,"episodeFileId":2106,"seasonNumber":1,"episodeNumber":10,"title":"Ginza Hostess Detective","airDate":"2018-03-11","airDateUtc":"2018-03-10T15:00:00Z","overview":"While staying at a hot spring inn, hostesses Popuko and Pipimi investigate a murder that has taken place. Other skits include the girls playing soccer, Pipimi cooking some premium meat, and Popuko dealing with incompetent waiters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2906},{"seriesId":17,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Special 2","airDate":"2018-03-14","airDateUtc":"2018-03-13T15:00:00Z","overview":"Specials included in the Blu-ray and DVD releases of Poputepipikku.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2910},{"seriesId":17,"episodeFileId":2107,"seasonNumber":1,"episodeNumber":11,"title":"Cursed Mansion","airDate":"2018-03-18","airDateUtc":"2018-03-17T15:00:00Z","overview":"A group of college students find the mansion they are staying in to be haunted by Popuko and Pipimi. Other skits include Popuko starting a dance craze, Pipimi becoming giant, and Popuko going up against a shark.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2907},{"seriesId":17,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Ninja Batman x Poputepipikku Kindan no Collab CM","airDate":"2018-03-24","airDateUtc":"2018-03-23T15:00:00Z","overview":"At Anime Japan 2018, Warner Bros. announced a collaboration between Ninja Batman and Poputepipikku. PVC figurines will be sold of the collaboration and a commercial was aired at the convention's booth, on television, and posted online--where Popuko and Pipimi dress as Batman and Joker respectively in order to promote the Ninja Batman's theatrical release.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2911},{"seriesId":17,"episodeFileId":2108,"seasonNumber":1,"episodeNumber":12,"title":"The Age of Pop Team Epic","airDate":"2018-03-25","airDateUtc":"2018-03-24T15:00:00Z","overview":"Popuko and Pipimi have a final showdown against the evil organization trying to stop their anime, King Records. Other skits include a scene parodying magical girl anime tropes in which a girl brings a talking pet to school with her and Popuko trying to find her glasses. After the credits, there is a teaser trailer for a second season of Hoshiiro Girldrop.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2908},{"seriesId":17,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Special 3","airDate":"2018-03-28","airDateUtc":"2018-03-27T15:00:00Z","overview":"Specials included in the Blu-ray and DVD releases of Poputepipikku.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2912},{"seriesId":17,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Kinen","airDate":"2018-06-14","airDateUtc":"2018-06-13T15:00:00Z","overview":"This is a 2:15 (4:30 including the rerun) short created to promote the (JRA) Japan Racing Association's Umabi service.\r\n\r\nThe short is interactive originally, insofar as you can create your own character who will then appear in the audience at given points in the short. This video uses the default character provided.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2913},{"seriesId":17,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The Convenience Store \/ Edo Era Pop Team","airDate":"2019-04-01","airDateUtc":"2019-03-31T15:00:00Z","overview":"Popuko and Pipimi discuss potential careers in the future. In Japan during its Edo Era, Pipimi gives Popuko combat training.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11124}],"episodeFile":[{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Encounter-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E01.Encounter-HDTV-1080p.mkv","size":567587392,"dateAdded":"2018-10-10T22:12:41.708867Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2097},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Vanver - A Game in Another Dimension-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E02.Vanver - A Game in Another Dimension-HDTV-1080p.mkv","size":566923123,"dateAdded":"2018-10-10T22:12:41.743898Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2098},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Documentary-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E03.The Documentary-HDTV-1080p.mkv","size":567077244,"dateAdded":"2018-10-10T22:12:41.776297Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2099},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E04.SWGP 2018-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E04.SWGP 2018-HDTV-1080p.mkv","size":566119594,"dateAdded":"2018-10-10T22:12:41.806933Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2100},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Donca\u2606Sis-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E05.Donca\u2606Sis-HDTV-1080p.mkv","size":566717124,"dateAdded":"2018-10-10T22:12:41.841448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2101},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The 30th Cyber War-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E06.The 30th Cyber War-HDTV-1080p.mkv","size":568015948,"dateAdded":"2018-10-10T22:12:41.873175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2102},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Hellshake Yano-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E07.Hellshake Yano-HDTV-1080p.mkv","size":568042034,"dateAdded":"2018-10-10T22:12:41.904099Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2103},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Dragon of Iidabashi Pipi's Revenge-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E08.The Dragon of Iidabashi Pipi's Revenge-HDTV-1080p.mkv","size":567062134,"dateAdded":"2018-10-10T22:12:41.934589Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2104},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Dancing with a Miracle-HDTV-1080p.mp4","path":"\/tv\/Pop Team Epic\/Season 01\/S01E09.Dancing with a Miracle-HDTV-1080p.mp4","size":665885381,"dateAdded":"2018-10-10T22:12:41.965275Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3615721,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2105},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Ginza Hostess Detective-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E10.Ginza Hostess Detective-HDTV-1080p.mkv","size":567540102,"dateAdded":"2018-10-10T22:12:41.995557Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2106},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Cursed Mansion-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E11.Cursed Mansion-HDTV-1080p.mkv","size":567586196,"dateAdded":"2018-10-10T22:12:42.037032Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2107},{"seriesId":17,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Age of Pop Team Epic-HDTV-1080p.mkv","path":"\/tv\/Pop Team Epic\/Season 01\/S01E12.The Age of Pop Team Epic-HDTV-1080p.mkv","size":566921963,"dateAdded":"2018-10-10T22:12:42.058937Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2108}],"queue":[]},"27":{"series":{"title":"Hellsing Ultimate","alternateTitles":[{"title":"Hellsing Ultimate OVA","sceneSeasonNumber":-1},{"title":"Hellsing (2006)","sceneSeasonNumber":-1}],"sortTitle":"hellsing ultimate","status":"ended","ended":true,"overview":"Hellsing is named after and centered around the Royal Order of Protestant Knights, originally led by Abraham Van Helsing. The mission of Hellsing is to search for and destroy the undead and other supernatural forces of evil that threaten the queen and the country. This organization is currently led by Sir Integra Fairbrook Wingates Hellsing, who inherited the leadership of Hellsing as a child after the death of her father. She witnessed his death which turned her from a once innocent and shy little girl to a tough and deadly force. She is protected by the faithful Hellsing family butler and former Hellsing \"trashman\" Walter C. Dornez, a deadly foe in his own right, and Alucard, the original and most powerful vampire that swore loyalty to the Hellsing family after being defeated by Van Helsing one hundred years before the story takes place. These formidable guardians are joined early on in the storyline by former police officer Seras Victoria, whom Alucard turned into a vampire.\r\n\r\nAs the scale and frequency of incidents involving the undead escalate in England and all around the world, Sir Integra discovers that the remnants of a neo-Nazi group called Millennium still exist and are intent on reviving the Third Reich by creating a battalion of vampires. Millennium, Hellsing, and the Vatican section XIII Iscariot clash in an apocalyptic three-sided war in London, and Millennium reveals its true objective: to destroy the vampire lord Alucard, ending a feud begun during World War II.","previousAiring":"2012-12-25T15:00:00Z","network":"Anime OAV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/28\/banner.jpg?lastWrite=636747176367465140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/263688-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/28\/poster.jpg?lastWrite=637566904295874200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/263688\/posters\/6090341a0a2cf.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/28\/fanart.jpg?lastWrite=636747176365105190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/263688-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-12-25T15:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":57065122636,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Hellsing Ultimate","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":263688,"tvRageId":29109,"tvMazeId":26,"firstAired":"2006-05-12T00:00:00Z","seriesType":"standard","cleanTitle":"hellsingultimate","imdbId":"tt0495212","titleSlug":"hellsing-ultimate","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Fantasy","Horror"],"tags":[],"added":"2018-05-01T16:07:12.2720825Z","ratings":{"votes":459,"value":8.8},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":14,"sizeOnDisk":57065122636,"percentOfEpisodes":100.0},"id":28},"episodes":[{"seriesId":28,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Digest for Freaks","airDate":"2006-01-22","airDateUtc":"2006-01-21T15:00:00Z","overview":"This OVA is a summary of the first three episodes of Hellsing, with the animation style of Hellsing Ultimate and following the events of the Hellsing manga.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20805},{"seriesId":28,"episodeFileId":1747,"seasonNumber":1,"episodeNumber":1,"title":"Hellsing I","airDate":"2006-05-12","airDateUtc":"2006-05-11T15:00:00Z","overview":"Ten years ago, young Integra Hellsing ascends to the head of the Hellsing Organization after the death of her father Arthur. Her jealous uncle Richard Hellsing attempts to kill her, but in doing so awakens a dormant Alucard, who proceeds to kill Richard's men. It is Integra who shoots and kills her uncle, thereby becoming the last descendant of the Hellsing bloodline. Alucard declares his allegiance to Integra and becomes her loyal servant. In present day England, Alucard is called to duty to eradicate a vampire priest and his ghouls. However, a policewoman named Seras Victoria is gravely injured in the process, and upon giving her a choice to live or die, Alucard turns her into his vampire servant. Later, on a mission to hunt down a vampire in the town of Badrick in Northern Ireland, Alucard meets and fights Father Alexander Anderson for the first time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2393},{"seriesId":28,"episodeFileId":1748,"seasonNumber":1,"episodeNumber":2,"title":"Hellsing II","airDate":"2006-08-25","airDateUtc":"2006-08-24T15:00:00Z","overview":"Alucard has a dream about his defeat at the hands of Abraham Van Helsing. While Sir Integra holds a round table conference to report her findings regarding the current wave of vampire attacks, vampire brothers Jan and Luke Valentine launch a covert sneak attack on the Hellsing compound with the help of a ghoul army outfitted with military gear and small arms. Almost all of the Hellsing soldiers are killed in the process and turned into ghouls before Alucard, Seras and Walter C. Dornez (who shows why he was once known as the \"Angel of Death\") are able to turn the tide. Jan reveals the name of the group responsible for the attack as Millennium. Integra hints to Walter that surviving Nazi officials could have been responsible for the attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2394},{"seriesId":28,"episodeFileId":1749,"seasonNumber":1,"episodeNumber":3,"title":"Hellsing III","airDate":"2007-04-04","airDateUtc":"2007-04-03T15:00:00Z","overview":"In a bid to increase manpower following the devastating attack on Hellsing headquarters, Walter recruits the mercenary group known as Wild Geese and integrates them into Hellsing's security forces. Integra receives information from Enrico Maxwell, the fanatical leader of Iscariot, that confirms her suspicions of Millennium's origins. She soon deploys Alucard, Seras and Pip Bernadotte, leader of the Wild Geese, to Rio de Janeiro, Brazil to find the whereabouts of Millennium. Alucard and Seras are later attacked by BOPE units of the Brazilian military police after being declared in public as international terrorists, a ruse perpetrated by Brazilian officials in exchange for immortality promised by Millennium. After receiving orders from Sir Integra, Alucard massacres the BOPE officers and faces off against Millennium officer Tubalcain Alhambra.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2395},{"seriesId":28,"episodeFileId":1750,"seasonNumber":1,"episodeNumber":4,"title":"Hellsing IV","airDate":"2008-02-22","airDateUtc":"2008-02-21T15:00:00Z","overview":"As Hellsing and Iscariot hold a meeting with the Queen of the United Kingdom their conference is interrupted by a message from The Major (via live video transmission brought in by the ubiquitous Schr\u00f6dinger) citing his intention to wage war on England. Meanwhile, a VTOL aircraft carrier called the Eagle gets hijacked by First Lieutenant Rip Van Winkle and a small squadron of SS soldiers from Millennium, Integra sends Alucard aboard an SR-71 to take care of the perpetrators and Rip Van Winkle in which he ruthlessly kills all of them and has Rip Van Winkle turned into one of his many familiars while the major begins to move to London to drive England into another war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2396},{"seriesId":28,"episodeFileId":1751,"seasonNumber":1,"episodeNumber":5,"title":"Hellsing V","airDate":"2008-11-21","airDateUtc":"2008-11-20T15:00:00Z","overview":"While Alucard remains trapped on the Eagle, Millennium starts attacking London. Zorin Blitz is told to head toward Hellsing HQ with a small group of soldiers, while the rest of the vampires attack London. They kill thousands of civilians and attempt to capture Integra. She manages to escape the vampire SS soldiers only after Walter sacrifices himself to hold them off; however, Walter is captured himself by The Captain. When the vampire soldiers manage to corner her, she is saved and later captured by a large group of pistol-wielding Iscariot priests, led by Alexander Anderson, Heinkel Wolfe and Yumie Takagi. After the credits, Alucard uses his powers to steer the Eagle towards London.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2397},{"seriesId":28,"episodeFileId":1752,"seasonNumber":1,"episodeNumber":6,"title":"Hellsing VI","airDate":"2009-07-24","airDateUtc":"2009-07-23T15:00:00Z","overview":"As the battle commences, back at the Vatican Enrico Maxwell, the head of Section XIII Iscariot is given a major promotion, and with it he begins to mobilize the Vatican's fighters. Meanwhile, in the heart of London, while Integra is busy convincing the Iscariot members to escort her home, the Hellsing Mansion is under siege by Zorin Blitz and her forces. The only line of defense against this assault are Captain Bernadotte, his Wild Geese, and Seras. As the battle rages on, they must deal with the resilient vampire Nazi forces, as well as Zorin's mysterious power of illusion that almost destroys the Geese from within. The quick thinking of Seras frees them from Zorin's grip, but the battle is not over. After an attempted stolen kiss, the group splits up, Seras in one direction and the Geese in another, but not before promising each other they'll come out of this alive. OVA 6 features a drama CD of Crossfire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2398},{"seriesId":28,"episodeFileId":1753,"seasonNumber":1,"episodeNumber":7,"title":"Hellsing VII","airDate":"2009-12-23","airDateUtc":"2009-12-22T15:00:00Z","overview":"While Seras is successfully overcoming Zorin's soldiers, Bernadotte and his forces are being slaughtered. Seras comes to their rescue, and destroys most of Zorin's forces. Zorin then delves deep into Seras' memories, forcing her to relive her painful childhood, as she had to watch her parents be murdered by gangsters and her mother's corpse being raped after Seras was shot by one of the robbers. While Seras is trapped in the illusion, Zorin hacks off her arm, stabs her through the back, and cuts her eyes. Bernadotte tries to escape with the badly wounded Seras, but Zorin stabs him through the back. He kisses Seras in his agony, then tells her to bite him. Tearfully, she does so, healing most of her wounds except her left arm, which spews shadow matter. Seras destroys all of Zorin's forces, then attacks and kills Zorin. Seras then leaves the mansion and heads off to destroy the remaining vampires and ghouls in the city, as Vatican forces loom in the horizon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2399},{"seriesId":28,"episodeFileId":1754,"seasonNumber":1,"episodeNumber":8,"title":"Hellsing VIII","airDate":"2011-07-27","airDateUtc":"2011-07-26T15:00:00Z","overview":"The Vatican forces led by Enrico Maxwell begin to attack the remaining Millennium forces along with the surviving citizens of London. Walter, now a vampire, joins forces with the Major. Alexander Anderson is enraged because he believes Maxwell has become drunk with power and is abusing God's power. The armed priests led by Heinkel Wolfe and Yumie Takagi come close to capturing Integra, but Seras saves her. Alucard, stands atop the Eagle as it floats down the Thames, now returns to London and joins the battle encountering the two other trump cards Anderson and The Captain. Integra releases his Control Art Restriction to Level Zero allowing Alucard to summon millions of Familiars to the battle. Enrico Maxwell and Anderson realize that Alucard is in fact Count Dracula\/Vlad the Impaler. Alucard's forces easily overwhelm all of the Iscariot and Millennium forces and Maxwell is killed shortly after. Alucard meets up with Integra and Seras. Anderson and Alucard fight each other but Alucard has the upper hand and the remaining priests come to aid Anderson against Alucard. Anderson uses Helena's Nail to become a monster against Alucard, setting him and his familiars ablaze.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2400},{"seriesId":28,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Dawn I","airDate":"2011-07-27","airDateUtc":"2011-07-26T15:00:00Z","overview":"During WWII, a much younger Walter is sent by Hellsing behind enemy lines with a giant casket to eliminate a new threat from the Nazis.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2403},{"seriesId":28,"episodeFileId":1755,"seasonNumber":1,"episodeNumber":9,"title":"Hellsing IX","airDate":"2012-02-15","airDateUtc":"2012-02-14T15:00:00Z","overview":"A dying Alucard envisions his past as Vlad the Impaler, recalling how he was raped as a child by the Ottoman Sultan. He then envisions himself during his war against the Turks, stating to his knights that praying to God is pointless unless you are willing to work for your prayer, otherwise it is just begging. He is shown eventually being carried off to execution, but before being beheaded, he drinks the blood of the battlefield and becomes a vampire. He is then awoken by the pleading of Seras, who is trying in vain to help him against Priest Anderson of the Vatican. Alucard manages to rip Anderson's heart out, and crushes it, removing Helena's Nail. The priest hears the laughter of children, and says a final \"Amen\" before dying. Suddenly, Walter appears, crushing the remains of Anderson. Shocked at the newly vampirized Walter, Integra and Seras question him. Walter kills Yumie and replies that he now stands alone as the Angel of Death. Heinkel is shot by the Captain and badly injured, but is spared. Alucard and Walter prepare to fight, while Integra and Seras are invited aboard the Major's zeppelin to face him. As their fight goes on, Walter is growing unstable from the vampirization procedure but Walter pierces Alucard's heart with a pipe, only for the body to be revealed as a decoy. Alucard then appears from behind and punches Walter, the damage forcing his body's age to regress to the young boy from 60 years ago. Alucard fully reveals himself in the form of the girl he assumed during the war, calling Walter a child who has not changed in 60 years.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2401},{"seriesId":28,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Dawn II","airDate":"2012-02-15","airDateUtc":"2012-02-14T15:00:00Z","overview":"Walter interrupts The Major's dinner, who gives him an interesting proposal.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2404},{"seriesId":28,"episodeFileId":1756,"seasonNumber":1,"episodeNumber":10,"title":"Hellsing X","airDate":"2012-12-26","airDateUtc":"2012-12-25T15:00:00Z","overview":"Integra and Seras battle the remnants of Millennium aboard the zeppelin until the Captain intercepts them, with Seras staying to fight while Integra proceeds onward. Outside, Alucard begins to absorb the rivers of blood from the dead, though the Major had planned on this moment to defeat him. Elsewhere Seras struggles against the Captain, who turns out to be a werewolf. Seras seems outmatched by the Captain, but is eventually aided by her familiar Bernadotte, who uses a silver tooth to slay the werewolf. Integra reaches the Major, but a shield impedes her attack, which leaves them both to witness Alucard's defeat. Schr\u00f6dinger allows his body to be absorbed while the Major explains his power of omnipresence: as long as Schr\u00f6dinger is self-aware, he is alive, but that the millions of lives within the rivers of blood flowing into Alucard negate his awareness\/existence. This negation spreads to Alucard, which forces him to disappear. While Seras rejoins Integra, outside Walter is attacked by Heinkel, though the wounded Walter escapes into the zeppelin. Inside Seras is eventually able to pierce the shield and damage the Major. It is revealed that he is actually a cyborg, though he defends his humanity while challenging Integra. The resulting shootout kills the Major and blinds Integra in her left eye. Meanwhile Walter confronts and kills the Doctor, then passes away. Acknowledging his death, Integra orders Seras to bring them home. Thirty years later, Iscariot visits the new Hellsing headquarters but is turned away, while Heinkel as the new trump card and the new chief Makube contemplate the next Crusade. That night, Alucard reappears at the older Integra's bedside. He explains to her and Seras that the reason he was gone for so long was that the millions of lives within him were clouding his awareness. He killed them all except one, saying \"I have returned here. But I am also always nowhere... The truth of it is, I am everywhere,\" alluding that Schrodinger is the one","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2402},{"seriesId":28,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Dawn III","airDate":"2012-12-26","airDateUtc":"2012-12-25T15:00:00Z","overview":"As Walter's fight with Major's supernatural driver, the Captain, escalates unfavorably, Alucard finally shows up to assist Walkter, although in the shape of a small girl. Meanwhile, Arthur Hellsing's loose behavior angers Hugh Islands.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2405}],"episodeFile":[{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Hellsing I-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E01.Hellsing I-Bluray-1080p.mkv","size":3438160508,"dateAdded":"2018-10-10T21:55:34.869921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1646756,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":5496511,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1747},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Hellsing II-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E02.Hellsing II-Bluray-1080p.mkv","size":4955023469,"dateAdded":"2018-10-10T21:55:34.899693Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1553184,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":9856535,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:43","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1748},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Hellsing III-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E03.Hellsing III-Bluray-1080p.mkv","size":5434255834,"dateAdded":"2018-10-10T21:55:34.930712Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1530508,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":10286909,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:42","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1749},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Hellsing IV-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E04.Hellsing IV-Bluray-1080p.mkv","size":6858878933,"dateAdded":"2018-10-10T21:55:34.96024Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1597540,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":10863036,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:19","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1750},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Hellsing V-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E05.Hellsing V-Bluray-1080p.mkv","size":5688356168,"dateAdded":"2018-10-10T21:55:34.989527Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1468353,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":11676838,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:56","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1751},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Hellsing VI-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E06.Hellsing VI-Bluray-1080p.mkv","size":6165844717,"dateAdded":"2018-10-10T21:55:35.018816Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1483617,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":13966905,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1752},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Hellsing VII-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E07.Hellsing VII-Bluray-1080p.mkv","size":5035537319,"dateAdded":"2018-10-10T21:55:35.048597Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1430454,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":9567225,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:32","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1753},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Hellsing VIII-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E08.Hellsing VIII-Bluray-1080p.mkv","size":6193705782,"dateAdded":"2018-10-10T21:55:35.078518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1550867,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":11078178,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:00","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1754},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Hellsing IX-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E09.Hellsing IX-Bluray-1080p.mkv","size":5594728475,"dateAdded":"2018-10-10T21:55:35.108302Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1700720,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":10602235,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:44","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1755},{"seriesId":28,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Hellsing X-Bluray-1080p.mkv","path":"\/tv\/Hellsing Ultimate\/Season 01\/S01E10.Hellsing X-Bluray-1080p.mkv","size":7700631431,"dateAdded":"2018-10-10T21:55:35.137984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1594648,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":9421474,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:07:45","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1756}],"queue":[]},"28":{"series":{"title":"The Amazing World of Gumball","alternateTitles":[{"title":"El Asombroso Mundo De Gumball","seasonNumber":-1},{"title":"Lo straordinario mondo di Gumball","seasonNumber":-1}],"sortTitle":"amazing world gumball","status":"ended","ended":true,"overview":"The series revolves around the life of Gumball Watterson, a 12-year old cat who attends middle school in Elmore. Accompanied by his pet, adoptive brother, and best friend Darwin Watterson, he frequently finds himself involved in various shenanigans around the city, during which he interacts with various family members: Anais, Richard, and Nicole Watterson, and other various citizens.","previousAiring":"2019-06-24T16:10:00Z","network":"Cartoon Network","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/4\/banner.jpg?lastWrite=637100123575839610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/248482-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/4\/poster.jpg?lastWrite=637267304811754060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/248482-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/4\/fanart.jpg?lastWrite=637100123573839650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/248482-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":28,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-13T16:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":6701142763,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-12-03T17:00:00Z","episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":6869501855,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2015-04-12T16:10:00Z","episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":6421469609,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2016-10-27T16:00:00Z","episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":7079646868,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2017-11-10T17:00:00Z","episodeFileCount":38,"episodeCount":40,"totalEpisodeCount":40,"sizeOnDisk":5786038934,"percentOfEpisodes":95.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2019-06-24T16:10:00Z","episodeFileCount":44,"episodeCount":44,"totalEpisodeCount":44,"sizeOnDisk":24429034367,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/The Amazing World of Gumball","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":248482,"tvRageId":28067,"tvMazeId":3134,"firstAired":"2011-05-03T00:00:00Z","seriesType":"standard","cleanTitle":"theamazingworldgumball","imdbId":"tt1942683","titleSlug":"the-amazing-world-of-gumball","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children","Comedy","Family"],"tags":[],"added":"2017-12-05T01:14:24.1179107Z","ratings":{"votes":696,"value":9.0},"statistics":{"seasonCount":6,"episodeFileCount":238,"episodeCount":240,"totalEpisodeCount":268,"sizeOnDisk":57286834396,"percentOfEpisodes":99.16666666666667},"id":4},"episodes":[{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"The Gumball Chronicles: Mother's Day","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20802},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"The Gumball Chronicles: Father's Day","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20803},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Early Reel","airDate":"2008-05-08","airDateUtc":"2008-05-08T16:00:00Z","overview":"Gumball and Darwin build a Rube Goldberg machine in an attempt to escape from school.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":514},{"seriesId":4,"episodeFileId":12326,"seasonNumber":1,"episodeNumber":1,"title":"The DVD","airDate":"2011-05-03","airDateUtc":"2011-05-03T16:00:00Z","overview":"An overdue DVD causes chaos (and a hefty fee) for Gumball and Darwin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":528},{"seriesId":4,"episodeFileId":12326,"seasonNumber":1,"episodeNumber":2,"title":"The Responsible","airDate":"2011-05-09","airDateUtc":"2011-05-09T16:00:00Z","overview":"Gumball and Darwin get to babysit Anais whilst their parents go to a PTA meeting but being \"responsible\" has a different meaning when you don't know what it means.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":529},{"seriesId":4,"episodeFileId":12332,"seasonNumber":1,"episodeNumber":3,"title":"The Third","airDate":"2011-05-16","airDateUtc":"2011-05-16T16:00:00Z","overview":"Gumball and Darwin grow bored of one another and seek out a third friend to make their lives more exciting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":530},{"seriesId":4,"episodeFileId":12332,"seasonNumber":1,"episodeNumber":4,"title":"The Debt","airDate":"2011-05-16","airDateUtc":"2011-05-16T16:10:00Z","overview":"Believing that his life had been saved, Gumball vows to repay his debt by saving Mr. Robinson's life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":531},{"seriesId":4,"episodeFileId":12339,"seasonNumber":1,"episodeNumber":5,"title":"The End","airDate":"2011-05-23","airDateUtc":"2011-05-23T16:00:00Z","overview":"Gumball and Darwin, thinking that the world will end in 24 hours, decide to make the most out of their remaining time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":532},{"seriesId":4,"episodeFileId":12339,"seasonNumber":1,"episodeNumber":6,"title":"The Dress","airDate":"2011-05-23","airDateUtc":"2011-05-23T16:10:00Z","overview":"When his clothes are shrunk in the washing machine by his father, Gumball is forced to wear his mother's wedding dress to school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":533},{"seriesId":4,"episodeFileId":12347,"seasonNumber":1,"episodeNumber":7,"title":"The Quest","airDate":"2011-05-30","airDateUtc":"2011-05-30T16:00:00Z","overview":"Gumball and Darwin help Anais get her beloved doll back after it is lost on the way to school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":534},{"seriesId":4,"episodeFileId":12347,"seasonNumber":1,"episodeNumber":8,"title":"The Spoon","airDate":"2011-05-30","airDateUtc":"2011-05-30T16:10:00Z","overview":"Gumball and Darwin become unwitting accomplices in a stick-up at a gas station.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":535},{"seriesId":4,"episodeFileId":12356,"seasonNumber":1,"episodeNumber":9,"title":"The Pressure","airDate":"2011-06-06","airDateUtc":"2011-06-06T16:00:00Z","overview":"When Masami claims that Darwin is her boyfriend, Gumball vows to help his friend before he gets kissed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":536},{"seriesId":4,"episodeFileId":12356,"seasonNumber":1,"episodeNumber":10,"title":"The Painting","airDate":"2011-06-13","airDateUtc":"2011-06-13T16:00:00Z","overview":"After seeing a picture that Anais drew, Principal Brown assumes that Anais finds her family dysfunctional, so he begins to meddle in their family life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":537},{"seriesId":4,"episodeFileId":12361,"seasonNumber":1,"episodeNumber":11,"title":"The Laziest","airDate":"2011-06-20","airDateUtc":"2011-06-20T16:00:00Z","overview":"Gumball and Darwin challenge their father to a laziness competition, with the loser having to do the winner's chores.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":538},{"seriesId":4,"episodeFileId":12361,"seasonNumber":1,"episodeNumber":12,"title":"The Ghost","airDate":"2011-06-27","airDateUtc":"2011-06-27T16:00:00Z","overview":"When a ghost named Carrie possesses Gumball's body in order to feel earthly experiences and to eat, he must learn to say \"no\" to her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":539},{"seriesId":4,"episodeFileId":12367,"seasonNumber":1,"episodeNumber":13,"title":"The Mystery","airDate":"2011-07-11","airDateUtc":"2011-07-11T16:00:00Z","overview":"Gumball decides to investigate when his class finds Principal Brown wrapped up in toilet paper, shaved and, covered in green paint, or else face detention.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":540},{"seriesId":4,"episodeFileId":12367,"seasonNumber":1,"episodeNumber":14,"title":"The Prank","airDate":"2011-07-18","airDateUtc":"2011-07-18T16:00:00Z","overview":"Gumball and Darwin's pranks on their father get out of hand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":541},{"seriesId":4,"episodeFileId":12376,"seasonNumber":1,"episodeNumber":15,"title":"The Gi","airDate":"2011-07-25","airDateUtc":"2011-07-25T16:00:00Z","overview":"Gumball and Darwin are ridiculed for their martial-arts outfits by their schoolmates, and their mom tries to convince them to take them off.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":542},{"seriesId":4,"episodeFileId":12376,"seasonNumber":1,"episodeNumber":16,"title":"The Kiss","airDate":"2011-08-01","airDateUtc":"2011-08-01T16:00:00Z","overview":"A kiss from Grandma JoJo traumatizes Gumball, and Darwin attempts to help him forget.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":543},{"seriesId":4,"episodeFileId":12382,"seasonNumber":1,"episodeNumber":17,"title":"The Party","airDate":"2011-08-08","airDateUtc":"2011-08-08T16:00:00Z","overview":"Gumball and his friends are invited to a high-school party hosted by Tobias's sister Rachel, but they must find dates in order to attend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":544},{"seriesId":4,"episodeFileId":12382,"seasonNumber":1,"episodeNumber":18,"title":"The Refund","airDate":"2011-08-15","airDateUtc":"2011-08-15T16:00:00Z","overview":"Gumball and Darwin go to great lengths to get their money back from an incompatible video game, but the rental store's policy prevents them from getting it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":545},{"seriesId":4,"episodeFileId":12389,"seasonNumber":1,"episodeNumber":19,"title":"The Robot","airDate":"2011-08-22","airDateUtc":"2011-08-22T16:00:00Z","overview":"Gumball decides to help Bobert act like a real boy. However, it soon becomes a battle for his very identity when the robot plots to take over his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":546},{"seriesId":4,"episodeFileId":12389,"seasonNumber":1,"episodeNumber":20,"title":"The Picnic","airDate":"2011-08-29","airDateUtc":"2011-08-29T16:00:00Z","overview":"During a school field trip, Gumball and Darwin ignore their teacher's warning to go around a dangerous forest and, instead, traverse through it. Hopelessly lost, they must use what very little survival skills they have to escape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":547},{"seriesId":4,"episodeFileId":12396,"seasonNumber":1,"episodeNumber":21,"title":"The Goons","airDate":"2011-09-05","airDateUtc":"2011-09-05T16:00:00Z","overview":"Anais tries to \"dumb down\" in order to have fun with her brothers and father. Gumball, feeling left out, sets up a race in order to win Dad back (and avoid quality time with his mother).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":548},{"seriesId":4,"episodeFileId":12396,"seasonNumber":1,"episodeNumber":22,"title":"The Secret","airDate":"2011-09-26","airDateUtc":"2011-09-26T16:00:00Z","overview":"Gumball tries desperately to find out Darwin's secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":549},{"seriesId":4,"episodeFileId":12403,"seasonNumber":1,"episodeNumber":23,"title":"The Sock","airDate":"2011-10-03","airDateUtc":"2011-10-03T16:00:00Z","overview":"Mr. Small teaches Gumball and Darwin various ways of becoming more honest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":550},{"seriesId":4,"episodeFileId":12403,"seasonNumber":1,"episodeNumber":24,"title":"The Genius","airDate":"2011-10-10","airDateUtc":"2011-10-10T16:00:00Z","overview":"Darwin goes to an institute for geniuses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":551},{"seriesId":4,"episodeFileId":12411,"seasonNumber":1,"episodeNumber":25,"title":"The Poltergeist","airDate":"2011-10-17","airDateUtc":"2011-10-17T16:00:00Z","overview":"Richard believes there's a ghost in the attic but is actually Mr. Robinson who Gumball moved up there after entering a catatonic state due to being kicked out by his wife. Gumball and Darwin work on trying to restore Mr. Robinson whilst Richard, unaware of this, sets traps for the ghost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":552},{"seriesId":4,"episodeFileId":12411,"seasonNumber":1,"episodeNumber":26,"title":"The Mustache","airDate":"2011-11-21","airDateUtc":"2011-11-21T17:00:00Z","overview":"Gumball and Darwin want to become adults, Richard wants to lose weight. After accidentally having their cereal switched with supplements Richard ordered, Gumball, Darwin and Anais find themselves having very unusual growth spurts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":553},{"seriesId":4,"episodeFileId":12418,"seasonNumber":1,"episodeNumber":27,"title":"The Date","airDate":"2011-12-05","airDateUtc":"2011-12-05T17:00:00Z","overview":"Gumball learns how to date so he can go out on a date with Penny. Later on it turns out that he is going to a funeral not a date.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":554},{"seriesId":4,"episodeFileId":12418,"seasonNumber":1,"episodeNumber":28,"title":"The Club","airDate":"2011-12-11","airDateUtc":"2011-12-11T17:00:00Z","overview":"When Gumball turns down an offer to join the Rejects Club, they seek to enact revenge against him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":555},{"seriesId":4,"episodeFileId":12425,"seasonNumber":1,"episodeNumber":29,"title":"The Wand","airDate":"2012-01-24","airDateUtc":"2012-01-24T17:00:00Z","overview":"The guys share the power of magic with Dad.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":556},{"seriesId":4,"episodeFileId":12425,"seasonNumber":1,"episodeNumber":30,"title":"The Ape","airDate":"2012-01-31","airDateUtc":"2012-01-31T17:00:00Z","overview":"Ms. Simian cozies up to Gumball in order to win an award","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":557},{"seriesId":4,"episodeFileId":12433,"seasonNumber":1,"episodeNumber":31,"title":"The Car","airDate":"2012-02-07","airDateUtc":"2012-02-07T17:00:00Z","overview":"Gumball and Darwin are eager enough to do numerous chores at Mr. Robinson's house, until they accidentally destroy his car.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":558},{"seriesId":4,"episodeFileId":12433,"seasonNumber":1,"episodeNumber":32,"title":"The Curse","airDate":"2012-02-14","airDateUtc":"2012-02-14T17:00:00Z","overview":"Gumball's good day turns bad to worse throughout his school day, much to the point where he believes he is \"cursed\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":559},{"seriesId":4,"episodeFileId":12443,"seasonNumber":1,"episodeNumber":33,"title":"The Microwave","airDate":"2012-02-21","airDateUtc":"2012-02-21T17:00:00Z","overview":"Gumball creates a creature, made of every gross thing he could find, with a cannibalistic appetite.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":560},{"seriesId":4,"episodeFileId":12443,"seasonNumber":1,"episodeNumber":34,"title":"The Meddler","airDate":"2012-02-28","airDateUtc":"2012-02-28T17:00:00Z","overview":"Seeing Gumball in need of attention, Nicole hangs out with him at school, which becomes increasingly embarrassing for her son.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":561},{"seriesId":4,"episodeFileId":12449,"seasonNumber":1,"episodeNumber":35,"title":"The Helmet","airDate":"2012-03-05","airDateUtc":"2012-03-05T17:00:00Z","overview":"Gumball wears a lucky helmet, but it tears his family apart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":562},{"seriesId":4,"episodeFileId":12449,"seasonNumber":1,"episodeNumber":36,"title":"The Fight","airDate":"2012-03-13","airDateUtc":"2012-03-13T16:00:00Z","overview":"After Gumball's bullying problem, Tina Rex demands to have a fight with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":563},{"seriesId":4,"episodeFileId":12327,"seasonNumber":2,"episodeNumber":1,"title":"The Remote","airDate":"2012-08-07","airDateUtc":"2012-08-07T16:00:00Z","overview":"The Watterson family fights over the remote when they realize everything they want to watch comes on at the same time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":564},{"seriesId":4,"episodeFileId":12327,"seasonNumber":2,"episodeNumber":2,"title":"The Colossus","airDate":"2012-08-14","airDateUtc":"2012-08-14T16:00:00Z","overview":"Gumball and Darwin upset a giant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":565},{"seriesId":4,"episodeFileId":12333,"seasonNumber":2,"episodeNumber":3,"title":"The Knights","airDate":"2012-08-21","airDateUtc":"2012-08-21T16:00:00Z","overview":"Gumball and Tobias compete for Penny's affection by putting on the lamest duel in history.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":566},{"seriesId":4,"episodeFileId":12333,"seasonNumber":2,"episodeNumber":4,"title":"The Fridge","airDate":"2012-09-04","airDateUtc":"2012-09-04T16:00:00Z","overview":"Mom tries to inspire Gumball to develop ambition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":567},{"seriesId":4,"episodeFileId":12341,"seasonNumber":2,"episodeNumber":5,"title":"The Flower","airDate":"2012-09-11","airDateUtc":"2012-09-11T16:00:00Z","overview":"Gumball is jealous when he sees Leslie with Penny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":568},{"seriesId":4,"episodeFileId":12341,"seasonNumber":2,"episodeNumber":6,"title":"The Banana","airDate":"2012-09-11","airDateUtc":"2012-09-11T16:10:00Z","overview":"Gumball seeks justice when Banana Joe chews Darwin's pen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":569},{"seriesId":4,"episodeFileId":12349,"seasonNumber":2,"episodeNumber":7,"title":"The Phone","airDate":"2012-09-18","airDateUtc":"2012-09-18T16:00:00Z","overview":"Darwin develops a texting addiction when he and Gumball get their first cell phone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":570},{"seriesId":4,"episodeFileId":12349,"seasonNumber":2,"episodeNumber":8,"title":"The Job","airDate":"2012-09-18","airDateUtc":"2012-09-18T16:10:00Z","overview":"Richard gets a job as a pizza delivery man, which worries Nicole when strange things begin to occur around the neighborhood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":571},{"seriesId":4,"episodeFileId":12354,"seasonNumber":2,"episodeNumber":9,"title":"Halloween","airDate":"2012-10-23","airDateUtc":"2012-10-23T16:00:00Z","overview":"Gumball, Darwin and Anais go to a haunted-house party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":572},{"seriesId":4,"episodeFileId":12354,"seasonNumber":2,"episodeNumber":10,"title":"The Treasure","airDate":"2012-10-30","airDateUtc":"2012-10-30T16:00:00Z","overview":"Anais hunts for hidden treasure after uncovering a secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":573},{"seriesId":4,"episodeFileId":12363,"seasonNumber":2,"episodeNumber":11,"title":"The Apology","airDate":"2012-11-06","airDateUtc":"2012-11-06T17:00:00Z","overview":"Ms. Simian owes Gumball an apology.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":574},{"seriesId":4,"episodeFileId":12363,"seasonNumber":2,"episodeNumber":12,"title":"The Words","airDate":"2012-11-13","airDateUtc":"2012-11-13T17:00:00Z","overview":"Darwin tries to be more direct with Gumball as his teacher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":575},{"seriesId":4,"episodeFileId":12370,"seasonNumber":2,"episodeNumber":13,"title":"The Skull","airDate":"2012-11-20","airDateUtc":"2012-11-20T17:00:00Z","overview":"The guys befriend a compulsive liar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":576},{"seriesId":4,"episodeFileId":12370,"seasonNumber":2,"episodeNumber":14,"title":"The Bet","airDate":"2012-11-27","airDateUtc":"2012-11-27T17:00:00Z","overview":"Bobert becomes Gumball's servant and obeys every command he receives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":577},{"seriesId":4,"episodeFileId":12378,"seasonNumber":2,"episodeNumber":15,"title":"Christmas","airDate":"2012-12-04","airDateUtc":"2012-12-04T17:00:00Z","overview":"Santa Claus is coming to town. Unfortunately he gets run over by the Wattersons, so it's up to them to save Christmas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":578},{"seriesId":4,"episodeFileId":12378,"seasonNumber":2,"episodeNumber":16,"title":"The Watch","airDate":"2013-01-22","airDateUtc":"2013-01-22T17:00:00Z","overview":"The guys try to retrieve a family heirloom from an old man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":579},{"seriesId":4,"episodeFileId":12383,"seasonNumber":2,"episodeNumber":17,"title":"The Bumpkin","airDate":"2013-01-29","airDateUtc":"2013-01-29T17:00:00Z","overview":"Gumball envies rural life and asks Idaho to teach his family to live like potatoes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":580},{"seriesId":4,"episodeFileId":12383,"seasonNumber":2,"episodeNumber":18,"title":"The Flakers","airDate":"2013-02-05","airDateUtc":"2013-02-05T17:00:00Z","overview":"Darwin abandons Gumball when faced with a beating by Tina, so Gumball plots revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":581},{"seriesId":4,"episodeFileId":12391,"seasonNumber":2,"episodeNumber":19,"title":"The Authority","airDate":"2013-02-12","airDateUtc":"2013-02-12T17:00:00Z","overview":"After Richard is hospitalized from an accident, Granny JoJo is overprotective and puts the family in danger, which leads Nicole to disagree with her parenting style.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":582},{"seriesId":4,"episodeFileId":12391,"seasonNumber":2,"episodeNumber":20,"title":"The Virus","airDate":"2013-06-05","airDateUtc":"2013-06-05T16:00:00Z","overview":"An evil virus seeks vengeance on Gumball, Darwin, and Teri after they wipe out his army of bacteria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":583},{"seriesId":4,"episodeFileId":12395,"seasonNumber":2,"episodeNumber":21,"title":"The Pony","airDate":"2013-06-12","airDateUtc":"2013-06-12T16:00:00Z","overview":"Gumball and Darwin rent a film to watch with Anais, but they keep getting distracted on their way home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":584},{"seriesId":4,"episodeFileId":12395,"seasonNumber":2,"episodeNumber":22,"title":"The Hero","airDate":"2013-06-19","airDateUtc":"2013-06-19T16:00:00Z","overview":"Richard gets upset when he realizes Gumball and Darwin think of him as a laughing stock.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":585},{"seriesId":4,"episodeFileId":12405,"seasonNumber":2,"episodeNumber":23,"title":"The Dream","airDate":"2013-06-26","airDateUtc":"2013-06-26T16:00:00Z","overview":"Darwin kisses Penny in one of Gumball's dreams and he gets mad about it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":586},{"seriesId":4,"episodeFileId":12405,"seasonNumber":2,"episodeNumber":24,"title":"The Sidekick","airDate":"2013-07-03","airDateUtc":"2013-07-03T16:00:00Z","overview":"Gumball and Darwin try to get a game back from Tobias, but Darwin begins to feel like he is just a sidekick to Gumball.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":587},{"seriesId":4,"episodeFileId":12410,"seasonNumber":2,"episodeNumber":25,"title":"The Photo","airDate":"2013-07-17","airDateUtc":"2013-07-17T16:00:00Z","overview":"Gumball tries to look good in the school photos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":588},{"seriesId":4,"episodeFileId":12410,"seasonNumber":2,"episodeNumber":26,"title":"The Tag","airDate":"2013-07-24","airDateUtc":"2013-07-24T16:00:00Z","overview":"Gumball and Darwin get caught in the middle of a trash can feud between Richard and Mr. Robinson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":589},{"seriesId":4,"episodeFileId":12420,"seasonNumber":2,"episodeNumber":27,"title":"The Storm","airDate":"2013-07-31","airDateUtc":"2013-07-31T16:00:00Z","overview":"A plot to improve Alan and Carmen's relationship backfires, and Gumball has to reunite them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":590},{"seriesId":4,"episodeFileId":12420,"seasonNumber":2,"episodeNumber":28,"title":"The Lesson","airDate":"2013-08-07","airDateUtc":"2013-08-07T16:00:00Z","overview":"The guys have detention and try to escape; Granny JoJo is overprotective and puts the family in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":591},{"seriesId":4,"episodeFileId":12427,"seasonNumber":2,"episodeNumber":29,"title":"The Game","airDate":"2013-08-21","airDateUtc":"2013-08-21T16:00:00Z","overview":"The Wattersons play Dodge or Dare.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":592},{"seriesId":4,"episodeFileId":12427,"seasonNumber":2,"episodeNumber":30,"title":"The Limit","airDate":"2013-08-28","airDateUtc":"2013-08-28T16:00:00Z","overview":"Mom lets the Wattersons have it in a supermarket.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":593},{"seriesId":4,"episodeFileId":12436,"seasonNumber":2,"episodeNumber":31,"title":"The Voice","airDate":"2013-09-10","airDateUtc":"2013-09-10T16:00:00Z","overview":"When Gumball and Darwin receive a scary email, everyone is a suspect... including themselves!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":594},{"seriesId":4,"episodeFileId":12436,"seasonNumber":2,"episodeNumber":32,"title":"The Promise","airDate":"2013-09-17","airDateUtc":"2013-09-17T16:00:00Z","overview":"Darwin has promised to play video games with Gumball, but there is a Banana Joe-shaped problem...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":595},{"seriesId":4,"episodeFileId":12442,"seasonNumber":2,"episodeNumber":33,"title":"The Castle","airDate":"2013-10-01","airDateUtc":"2013-10-01T16:00:00Z","overview":"When Nicole is away \"anything goes\" and Richard's lack of rules soon attracts unwelcome house guests.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":596},{"seriesId":4,"episodeFileId":12442,"seasonNumber":2,"episodeNumber":34,"title":"The Boombox","airDate":"2013-10-08","airDateUtc":"2013-10-08T16:00:00Z","overview":"Gumball and Darwin try to understand Juke's urgent beatbox message.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":597},{"seriesId":4,"episodeFileId":12450,"seasonNumber":2,"episodeNumber":35,"title":"The Tape","airDate":"2013-10-15","airDateUtc":"2013-10-15T16:00:00Z","overview":"Gumball and Darwin fail to make instant home movie classics.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":598},{"seriesId":4,"episodeFileId":12450,"seasonNumber":2,"episodeNumber":36,"title":"The Sweaters","airDate":"2013-11-05","airDateUtc":"2013-11-05T17:00:00Z","overview":"Gumball and Darwin's reputation is challenged and they really couldn't care less...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":599},{"seriesId":4,"episodeFileId":12459,"seasonNumber":2,"episodeNumber":37,"title":"The Internet","airDate":"2013-11-12","airDateUtc":"2013-11-12T17:00:00Z","overview":"Gumball decides to take down the Internet after he accidentally creates an embarrasing viral web video.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":600},{"seriesId":4,"episodeFileId":12459,"seasonNumber":2,"episodeNumber":38,"title":"The Plan","airDate":"2013-11-19","airDateUtc":"2013-11-19T17:00:00Z","overview":"The Watterson kids come up with a fool-proof plan to save Nicole, but is it Gumball-proof?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":601},{"seriesId":4,"episodeFileId":12465,"seasonNumber":2,"episodeNumber":39,"title":"The World","airDate":"2013-11-26","airDateUtc":"2013-11-26T17:00:00Z","overview":"The life of the \"inanimate\" objects of Elmore are shown in a series of short skits.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":602},{"seriesId":4,"episodeFileId":12465,"seasonNumber":2,"episodeNumber":40,"title":"The Finale","airDate":"2013-12-03","airDateUtc":"2013-12-03T17:00:00Z","overview":"The Wattersons are surprised to discover that their past actions have consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":603},{"seriesId":4,"episodeFileId":12329,"seasonNumber":3,"episodeNumber":1,"title":"The Kids","airDate":"2014-06-05","airDateUtc":"2014-06-05T16:00:00Z","overview":"Gumball and Darwin's voices start to break.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":604},{"seriesId":4,"episodeFileId":12329,"seasonNumber":3,"episodeNumber":2,"title":"The Fan","airDate":"2014-06-05","airDateUtc":"2014-06-05T16:10:00Z","overview":"New Elmore Junior High student Sarah becomes Gumball and Darwin's obsessive number-one fan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":605},{"seriesId":4,"episodeFileId":12334,"seasonNumber":3,"episodeNumber":3,"title":"The Coach","airDate":"2014-06-12","airDateUtc":"2014-06-12T16:00:00Z","overview":"The new coach at Elmore Junior High stands up to Jamie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":606},{"seriesId":4,"episodeFileId":12334,"seasonNumber":3,"episodeNumber":4,"title":"The Joy","airDate":"2014-06-19","airDateUtc":"2014-06-19T16:00:00Z","overview":"Miss Simian has to save herself from a contagious Joy virus infecting Elmore Junior High.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":607},{"seriesId":4,"episodeFileId":12342,"seasonNumber":3,"episodeNumber":5,"title":"The Puppy","airDate":"2014-06-26","airDateUtc":"2014-06-26T16:00:00Z","overview":"The Watterson children's long-awaited pet puppy turns out to be a turtle which hates them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":608},{"seriesId":4,"episodeFileId":12342,"seasonNumber":3,"episodeNumber":6,"title":"The Recipe","airDate":"2014-07-03","airDateUtc":"2014-07-03T16:00:00Z","overview":"Gumball and Darwin discover the secret behind their classmate Anton's immortality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":609},{"seriesId":4,"episodeFileId":12346,"seasonNumber":3,"episodeNumber":7,"title":"The Name","airDate":"2014-07-10","airDateUtc":"2014-07-10T16:00:00Z","overview":"Gumball learns his real name.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":610},{"seriesId":4,"episodeFileId":12346,"seasonNumber":3,"episodeNumber":8,"title":"The Extras","airDate":"2014-07-17","airDateUtc":"2014-07-17T16:00:00Z","overview":"Skits about the random extra characters seen throughout the series.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":611},{"seriesId":4,"episodeFileId":12357,"seasonNumber":3,"episodeNumber":9,"title":"The Gripes","airDate":"2014-07-24","airDateUtc":"2014-07-24T16:00:00Z","overview":"When Gumball and Darwin begin to complain about every little thing in their lives, the people of Elmore City mistakenly assumes charity cases and put together a benefit to raise money for them, leaving them having to fix the mix-up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":612},{"seriesId":4,"episodeFileId":12357,"seasonNumber":3,"episodeNumber":10,"title":"The Vacation","airDate":"2014-07-31","airDateUtc":"2014-07-31T16:00:00Z","overview":"While driving to a campground, Nicole tells a horror story, which slowly starts to come true as their car breaks down and a stranger comes to help them out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":613},{"seriesId":4,"episodeFileId":12362,"seasonNumber":3,"episodeNumber":11,"title":"The Fraud","airDate":"2014-08-07","airDateUtc":"2014-08-07T16:00:00Z","overview":"Gumball and Darwin discover Principal Brown's diploma is a fake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":614},{"seriesId":4,"episodeFileId":12362,"seasonNumber":3,"episodeNumber":12,"title":"The Void","airDate":"2014-08-14","airDateUtc":"2014-08-14T16:00:00Z","overview":"When Gumball and Darwin investigate a missing classmate, they discover a far greater mystery....about Elmore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":615},{"seriesId":4,"episodeFileId":12371,"seasonNumber":3,"episodeNumber":13,"title":"The Boss","airDate":"2014-08-21","airDateUtc":"2014-08-21T16:00:00Z","overview":"Mr. Robertson has a stress attack and needs a stuffing transfusion from his son Rocky the janitor. He won't take it unless Rocky gets a better job in life. Rocky gets one with Chanax, where he becomes a work drone. Gumball and Darwin now need to get Rocky's soul back from his boss in order to get him to surgery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":616},{"seriesId":4,"episodeFileId":12371,"seasonNumber":3,"episodeNumber":14,"title":"The Move","airDate":"2014-08-28","airDateUtc":"2014-08-28T16:00:00Z","overview":"Clayton may be a liar, but Gumball discovers he wasn't lying about his awesome martial arts move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":617},{"seriesId":4,"episodeFileId":12377,"seasonNumber":3,"episodeNumber":15,"title":"The Law","airDate":"2014-09-04","airDateUtc":"2014-09-04T16:00:00Z","overview":"The Doughnut Sheriff shows Gumball and Darwin that the smallest misdemeanor can lead to a breakdown in law.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":618},{"seriesId":4,"episodeFileId":12377,"seasonNumber":3,"episodeNumber":16,"title":"The Allergy","airDate":"2014-09-11","airDateUtc":"2014-09-11T16:00:00Z","overview":"Gumball needs to find a cure for Darwin's allergy before he sneezes Elmore off the map.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":619},{"seriesId":4,"episodeFileId":12385,"seasonNumber":3,"episodeNumber":17,"title":"The Mothers","airDate":"2014-09-18","airDateUtc":"2014-09-18T16:00:00Z","overview":"It's Mother's Day and kids put their moms through a series of tests to determine who has the World's Greatest Mom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":620},{"seriesId":4,"episodeFileId":12385,"seasonNumber":3,"episodeNumber":18,"title":"The Password","airDate":"2014-09-25","airDateUtc":"2014-09-25T16:00:00Z","overview":"Gumball and Darwin are shocked to discover that Anais is Dad's favorite child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":621},{"seriesId":4,"episodeFileId":12392,"seasonNumber":3,"episodeNumber":19,"title":"The Procrastinators","airDate":"2014-10-02","airDateUtc":"2014-10-02T16:00:00Z","overview":"Gumball and Darwin spend the day doing other things instead of taking out the trash like their mother told them to do before she got back home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":622},{"seriesId":4,"episodeFileId":12392,"seasonNumber":3,"episodeNumber":20,"title":"The Shell","airDate":"2014-10-09","airDateUtc":"2014-10-09T16:00:00Z","overview":"Gumball inadvertently cracks open Penny's shell, and discovers who she really is inside...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":623},{"seriesId":4,"episodeFileId":12398,"seasonNumber":3,"episodeNumber":21,"title":"The Burden","airDate":"2014-10-16","airDateUtc":"2014-10-16T16:00:00Z","overview":"Gumball and Darwin are left in charge of the class pet hamster, but they end up leaving it at school over the weekend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":624},{"seriesId":4,"episodeFileId":12398,"seasonNumber":3,"episodeNumber":22,"title":"The Bros","airDate":"2014-10-23","airDateUtc":"2014-10-23T16:00:00Z","overview":"Darwin becomes jealous of Gumball and Penny's new relationship and sets out to find information that will break them up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":625},{"seriesId":4,"episodeFileId":12406,"seasonNumber":3,"episodeNumber":23,"title":"The Mirror","airDate":"2014-10-30","airDateUtc":"2014-10-30T16:00:00Z","overview":"Gumball refuses to forward an e-mail purportedly sent by a ghost, against Darwin's advice. When a curse begins to take effect and their family is dragged into another dimension, Gumball and Darwin seek Carrie's help to save them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":626},{"seriesId":4,"episodeFileId":12406,"seasonNumber":3,"episodeNumber":24,"title":"The Man","airDate":"2014-10-30","airDateUtc":"2014-10-30T16:10:00Z","overview":"After Granny Jojo brings her new boyfriend to dinner at the Watterson household, Richard forbids her from seeing the boyfriend again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":627},{"seriesId":4,"episodeFileId":12412,"seasonNumber":3,"episodeNumber":25,"title":"The Pizza","airDate":"2014-11-13","airDateUtc":"2014-11-13T17:00:00Z","overview":"The Wattersons have had a bad day, but it turns out Larry has too and it's about to get worse . . . for everyone!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":628},{"seriesId":4,"episodeFileId":12412,"seasonNumber":3,"episodeNumber":26,"title":"The Lie","airDate":"2014-11-20","airDateUtc":"2014-11-20T17:00:00Z","overview":"Noticing that everyone is in the doldrums of January, Gumball and Anais invent a new holiday to spark excitement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":629},{"seriesId":4,"episodeFileId":12419,"seasonNumber":3,"episodeNumber":27,"title":"The Butterfly","airDate":"2015-01-08","airDateUtc":"2015-01-08T17:00:00Z","overview":"Gumball and Darwin let loose a butterfly from a jar, causing all sorts of chaos throughout the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":630},{"seriesId":4,"episodeFileId":12419,"seasonNumber":3,"episodeNumber":28,"title":"The Question","airDate":"2015-01-08","airDateUtc":"2015-01-08T17:10:00Z","overview":"Gumball and Darwin try to figure out the meaning of life after coming down from a sugar rush.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":631},{"seriesId":4,"episodeFileId":12428,"seasonNumber":3,"episodeNumber":29,"title":"The Saint","airDate":"2015-01-15","airDateUtc":"2015-01-15T17:00:00Z","overview":"Gumball tries his hardest to get Alan angry to prove Alan is just like everyone else.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":632},{"seriesId":4,"episodeFileId":12428,"seasonNumber":3,"episodeNumber":30,"title":"The Friend","airDate":"2015-01-22","airDateUtc":"2015-01-22T17:00:00Z","overview":"Gumball and Darwin help Anais make up an imaginary friend who turns out to be all too real.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":633},{"seriesId":4,"episodeFileId":12434,"seasonNumber":3,"episodeNumber":31,"title":"The Oracle","airDate":"2015-01-29","airDateUtc":"2015-01-29T17:00:00Z","overview":"After discovering a prophetic painting depicting Gumball's naked run through the mall, he is determined to avoid that outcome.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":634},{"seriesId":4,"episodeFileId":12434,"seasonNumber":3,"episodeNumber":32,"title":"The Safety","airDate":"2015-02-05","airDateUtc":"2015-02-05T17:00:00Z","overview":"Darwin becomes obsessed with safety after seeing a video in class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":635},{"seriesId":4,"episodeFileId":12444,"seasonNumber":3,"episodeNumber":33,"title":"The Society","airDate":"2015-02-12","airDateUtc":"2015-02-12T17:00:00Z","overview":"When Gumball learns the school has a secret society, he is determined, and irritating, to become a part of it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":636},{"seriesId":4,"episodeFileId":12444,"seasonNumber":3,"episodeNumber":34,"title":"The Spoiler","airDate":"2015-02-19","airDateUtc":"2015-02-19T17:00:00Z","overview":"When Gumball and Darwin have to wait to see a movie, they must go an entire week without someone spoiling the plot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":637},{"seriesId":4,"episodeFileId":12451,"seasonNumber":3,"episodeNumber":35,"title":"The Countdown","airDate":"2015-02-26","airDateUtc":"2015-02-26T17:00:00Z","overview":"Miss Simian threatens to expel the boys if they are late for school, so they race a clock in order to arrive on time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":638},{"seriesId":4,"episodeFileId":12451,"seasonNumber":3,"episodeNumber":36,"title":"The Nobody","airDate":"2015-03-05","airDateUtc":"2015-03-05T17:00:00Z","overview":"Gumball and Darwin investigate the disappearance of the family's stuff only to find out some stranger is living in the house with them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":639},{"seriesId":4,"episodeFileId":12458,"seasonNumber":3,"episodeNumber":37,"title":"The Downer","airDate":"2015-04-05","airDateUtc":"2015-04-05T16:00:00Z","overview":"When Gumball's family tries to cheer him out of an inexplicable lousy mood, he wishes they would all disappear","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":640},{"seriesId":4,"episodeFileId":12458,"seasonNumber":3,"episodeNumber":38,"title":"The Egg","airDate":"2015-04-05","airDateUtc":"2015-04-05T16:10:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":641},{"seriesId":4,"episodeFileId":12466,"seasonNumber":3,"episodeNumber":39,"title":"The Triangle","airDate":"2015-04-12","airDateUtc":"2015-04-12T16:00:00Z","overview":"Gumball grows jealous of Darwin's new talent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":642},{"seriesId":4,"episodeFileId":12466,"seasonNumber":3,"episodeNumber":40,"title":"The Money","airDate":"2015-04-12","airDateUtc":"2015-04-12T16:10:00Z","overview":"The Wattersons become poor when Richard loses all their money.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":643},{"seriesId":4,"episodeFileId":12328,"seasonNumber":4,"episodeNumber":1,"title":"The Return","airDate":"2015-07-07","airDateUtc":"2015-07-07T16:00:00Z","overview":"Richard tries to find the kids before Nicole realizes they're gone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":644},{"seriesId":4,"episodeFileId":12328,"seasonNumber":4,"episodeNumber":2,"title":"The Nemesis","airDate":"2015-07-10","airDateUtc":"2015-07-10T16:00:00Z","overview":"Gumball and Darwin discover that Rob, who once swore to wreak vengeance on them, has been trying to destroy them for some time\u2026 but his traps never work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":645},{"seriesId":4,"episodeFileId":12335,"seasonNumber":4,"episodeNumber":3,"title":"The Crew","airDate":"2015-08-13","airDateUtc":"2015-08-13T16:00:00Z","overview":"When Gumball and Darwin decide it's time they join a crew, they agree that the coolest posse in Elmore is the Senior Citizens. They do everything they can to fit in with them, going to extraordinary lengths to prove themselves worthy of running (well, walking very slowly) with them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":646},{"seriesId":4,"episodeFileId":12335,"seasonNumber":4,"episodeNumber":4,"title":"The Others","airDate":"2015-08-20","airDateUtc":"2015-08-20T16:00:00Z","overview":"When Anais reveals that she's in the grade above them at school, Gumball and Darwin's eyes are suddenly opened to a whole new world of other students at Elmore Junior High. Gumball is horrified to learn that there are a bunch of characters who are barely aware of his existence and is determined to force his way into their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":647},{"seriesId":4,"episodeFileId":12340,"seasonNumber":4,"episodeNumber":5,"title":"The Signature","airDate":"2015-08-27","airDateUtc":"2015-08-27T16:00:00Z","overview":"Dad discovers that Granny Jojo and Louie are planning to get married and move to Florida. To stop this happening he adopts Louie so that he can forbid him from marrying Granny Jojo. But this triggers a series of adoptions within the family which quickly spirals out of control, and causes the unexpected return of someone from Dad's past","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":648},{"seriesId":4,"episodeFileId":12340,"seasonNumber":4,"episodeNumber":6,"title":"The Check","airDate":"2015-08-31","airDateUtc":"2015-08-31T16:00:00Z","overview":"The kids get a check from Grandpa Louie and argue about how to spend the money.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":649},{"seriesId":4,"episodeFileId":12348,"seasonNumber":4,"episodeNumber":7,"title":"The Pest","airDate":"2015-09-01","airDateUtc":"2015-09-01T16:00:00Z","overview":"Gumball and Darwin help Anais deal with a classmate who is bothering her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":650},{"seriesId":4,"episodeFileId":12348,"seasonNumber":4,"episodeNumber":8,"title":"The Sale","airDate":"2015-09-02","airDateUtc":"2015-09-02T16:00:00Z","overview":"Gumball and Darwin are devastated to learn that Mr. Robinson is selling his house and leaving town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":651},{"seriesId":4,"episodeFileId":12355,"seasonNumber":4,"episodeNumber":9,"title":"The Gift","airDate":"2015-09-03","airDateUtc":"2015-09-03T16:00:00Z","overview":"After the receive an extravagant invite to Masami's birthday party, Gumball and Darwin are anxious to find just the right gift for her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":652},{"seriesId":4,"episodeFileId":12355,"seasonNumber":4,"episodeNumber":10,"title":"The Parking","airDate":"2015-09-04","airDateUtc":"2015-09-04T16:00:00Z","overview":"The Wattersons struggle to find a space in the mall parking lot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":653},{"seriesId":4,"episodeFileId":12364,"seasonNumber":4,"episodeNumber":11,"title":"The Routine","airDate":"2015-10-05","airDateUtc":"2015-10-05T16:00:00Z","overview":"Richard goes to the store to buy mayonnaise, but this task turns into an epic adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":654},{"seriesId":4,"episodeFileId":12364,"seasonNumber":4,"episodeNumber":12,"title":"The Upgrade","airDate":"2015-10-06","airDateUtc":"2015-10-06T16:00:00Z","overview":"Bobert gets updated software, but finds a few problems with it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":655},{"seriesId":4,"episodeFileId":12369,"seasonNumber":4,"episodeNumber":13,"title":"The Comic","airDate":"2015-10-07","airDateUtc":"2015-10-07T16:00:00Z","overview":"Gumball is the star of his own comic, but struggles to match up to his heroic alter ego.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":656},{"seriesId":4,"episodeFileId":12369,"seasonNumber":4,"episodeNumber":14,"title":"The Romantic","airDate":"2015-10-08","airDateUtc":"2015-10-08T16:00:00Z","overview":"Gumball tries to woo Penny with romantic gestures.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":130,"unverifiedSceneNumbering":false,"id":657},{"seriesId":4,"episodeFileId":12374,"seasonNumber":4,"episodeNumber":15,"title":"The Uploads","airDate":"2015-10-09","airDateUtc":"2015-10-09T16:00:00Z","overview":"Gumball and Darwin try to tear themselves away from the internet, but end up falling down the Elmore Stream-hole.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":658},{"seriesId":4,"episodeFileId":12374,"seasonNumber":4,"episodeNumber":16,"title":"The Apprentice","airDate":"2016-01-07","airDateUtc":"2016-01-07T17:00:00Z","overview":"Gumball decides that the best way to prove to Mr. Fitzgerald that he's good enough for Penny is to become his apprentice for the day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":659},{"seriesId":4,"episodeFileId":12384,"seasonNumber":4,"episodeNumber":17,"title":"The Hug","airDate":"2016-01-14","airDateUtc":"2016-01-14T17:00:00Z","overview":"When Darwin taunts Gumball about how predictable he is, Gumball tries to prove that he can still surprise his buddy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":660},{"seriesId":4,"episodeFileId":12384,"seasonNumber":4,"episodeNumber":18,"title":"The Wicked","airDate":"2016-01-21","airDateUtc":"2016-01-21T17:00:00Z","overview":"Gumball and Darwin try to find a single nice quality about their neighbor, Mrs. Robinson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":661},{"seriesId":4,"episodeFileId":12390,"seasonNumber":4,"episodeNumber":19,"title":"The Traitor","airDate":"2016-01-28","airDateUtc":"2016-01-28T17:00:00Z","overview":"After Gumball gets ditched by Alan, he decides to track Alan down and make him feel bad.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":662},{"seriesId":4,"episodeFileId":12390,"seasonNumber":4,"episodeNumber":20,"title":"The Origins (1)","airDate":"2016-02-15","airDateUtc":"2016-02-15T17:00:00Z","overview":"When Mom and Dad struggle to keep hyperactive, toddler-aged Gumball from trashing the house and exhausting them, they decide to buy him a pet. It works, but there\u2019s a problem: every goldfish they get him is short-lived, and inevitably ends up being flushed down the toilet. However, when Dad buys a talking goldfish from a mysterious shop, Gumball meets the best friend he\u2019ll ever have. Having been accidentally flushed down the toilet, Darwin has to find his way back to his new family.\r\n\r\nVia the sewers, Darwin finds himself flushed out to sea. He is terrified, but determined to make his way back to the Wattersons. However, a fish can\u2019t get very far on land, so Darwin will have to do millions of years of evolution in a matter of hours if he\u2019s going to get home safe and sound.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":663},{"seriesId":4,"episodeFileId":12399,"seasonNumber":4,"episodeNumber":21,"title":"The Origins (2)","airDate":"2016-02-15","airDateUtc":"2016-02-15T17:10:00Z","overview":"When Mom and Dad struggle to keep hyperactive, toddler-aged Gumball from trashing the house and exhausting them, they decide to buy him a pet. It works, but there\u2019s a problem: every goldfish they get him is short-lived, and inevitably ends up being flushed down the toilet. However, when Dad buys a talking goldfish from a mysterious shop, Gumball meets the best friend he\u2019ll ever have. Having been accidentally flushed down the toilet, Darwin has to find his way back to his new family.\r\n\r\nVia the sewers, Darwin finds himself flushed out to sea. He is terrified, but determined to make his way back to the Wattersons. However, a fish can\u2019t get very far on land, so Darwin will have to do millions of years of evolution in a matter of hours if he\u2019s going to get home safe and sound.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":664},{"seriesId":4,"episodeFileId":12399,"seasonNumber":4,"episodeNumber":22,"title":"The Girlfriend","airDate":"2016-03-30","airDateUtc":"2016-03-30T16:00:00Z","overview":"Jamie decides to make Darwin her boyfriend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":665},{"seriesId":4,"episodeFileId":12404,"seasonNumber":4,"episodeNumber":23,"title":"The Advice","airDate":"2016-04-21","airDateUtc":"2016-04-21T16:00:00Z","overview":"Gumball and Darwin take Mr. Small's advice out of pity and it causes destruction throughout the school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":666},{"seriesId":4,"episodeFileId":12404,"seasonNumber":4,"episodeNumber":24,"title":"The Signal","airDate":"2016-04-28","airDateUtc":"2016-04-28T16:00:00Z","overview":"Mysterious interruptions plaguing Elmore cause a strain between Gumball and Darwin, while Richard tearfully has to part with his television set when he can't fix it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":140,"unverifiedSceneNumbering":false,"id":667},{"seriesId":4,"episodeFileId":12409,"seasonNumber":4,"episodeNumber":25,"title":"The Parasite","airDate":"2016-05-05","airDateUtc":"2016-05-05T16:00:00Z","overview":"Gumball and Darwin fear that Anais is being taken advantage of by a friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":141,"unverifiedSceneNumbering":false,"id":668},{"seriesId":4,"episodeFileId":12409,"seasonNumber":4,"episodeNumber":26,"title":"The Love","airDate":"2016-05-12","airDateUtc":"2016-05-12T16:00:00Z","overview":"After Bobert the robot confesses to Gumball and Darwin that he's fallen in love, a musical number and series of vignettes illustrate what love is and how the people of Elmore express it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":142,"unverifiedSceneNumbering":false,"id":669},{"seriesId":4,"episodeFileId":12417,"seasonNumber":4,"episodeNumber":27,"title":"The Awkwardness","airDate":"2016-05-19","airDateUtc":"2016-05-19T16:00:00Z","overview":"A simple run to the store for ketchup leads Gumball to once again encounter The Hot Dog Guy (from \"The Hug\") and try to get away from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":143,"unverifiedSceneNumbering":false,"id":670},{"seriesId":4,"episodeFileId":12417,"seasonNumber":4,"episodeNumber":28,"title":"The Nest","airDate":"2016-05-26","airDateUtc":"2016-05-26T16:00:00Z","overview":"A neighbor disappears and the Wattersons investigate, but discover the culprit may be their Evil Turtle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":144,"unverifiedSceneNumbering":false,"id":671},{"seriesId":4,"episodeFileId":12426,"seasonNumber":4,"episodeNumber":29,"title":"The Points","airDate":"2016-06-02","airDateUtc":"2016-06-02T16:00:00Z","overview":"Gumball and Darwin offer to do chores for Tobias to earn bonus points for a video game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":145,"unverifiedSceneNumbering":false,"id":672},{"seriesId":4,"episodeFileId":12426,"seasonNumber":4,"episodeNumber":30,"title":"The Bus","airDate":"2016-06-09","airDateUtc":"2016-06-09T16:00:00Z","overview":"Rocky convinces the kids on the bus that they don't have to go to school, little do the kids know that Rocky as well as some other adults are trying to teach them a lesson about skipping school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":146,"unverifiedSceneNumbering":false,"id":673},{"seriesId":4,"episodeFileId":12435,"seasonNumber":4,"episodeNumber":31,"title":"The Night","airDate":"2016-06-16","airDateUtc":"2016-06-16T16:00:00Z","overview":"The Moon examines dreams of Elmore residents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":147,"unverifiedSceneNumbering":false,"id":674},{"seriesId":4,"episodeFileId":12435,"seasonNumber":4,"episodeNumber":32,"title":"The Misunderstandings","airDate":"2016-06-23","airDateUtc":"2016-06-23T16:00:00Z","overview":"Gumball has a misunderstanding with Penny about a date.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":675},{"seriesId":4,"episodeFileId":12441,"seasonNumber":4,"episodeNumber":33,"title":"The Roots","airDate":"2016-08-15","airDateUtc":"2016-08-15T16:00:00Z","overview":"The family try to make Darwin connect with his fish roots.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":676},{"seriesId":4,"episodeFileId":12441,"seasonNumber":4,"episodeNumber":34,"title":"The Blame","airDate":"2016-08-16","airDateUtc":"2016-08-16T16:00:00Z","overview":"Billy passes out after playing video games and his mother tries to ban them, forcing Gumball and Darwin to defend them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":677},{"seriesId":4,"episodeFileId":12452,"seasonNumber":4,"episodeNumber":35,"title":"The Slap","airDate":"2016-08-17","airDateUtc":"2016-08-17T16:00:00Z","overview":"Gumball feels left out when Tobias doesn't greet him with his special high five slap.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":151,"unverifiedSceneNumbering":false,"id":678},{"seriesId":4,"episodeFileId":12452,"seasonNumber":4,"episodeNumber":36,"title":"The Detective","airDate":"2016-08-18","airDateUtc":"2016-08-18T16:00:00Z","overview":"Anais believes Gumball and Darwin have stolen Daisy, so she sets out to find them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":152,"unverifiedSceneNumbering":false,"id":679},{"seriesId":4,"episodeFileId":12457,"seasonNumber":4,"episodeNumber":37,"title":"The Fury","airDate":"2016-08-19","airDateUtc":"2016-08-19T16:00:00Z","overview":"A strange figure arrives and insults Nicole, but the kids are surprised when Nicole doesn't fight back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":153,"unverifiedSceneNumbering":false,"id":680},{"seriesId":4,"episodeFileId":12457,"seasonNumber":4,"episodeNumber":38,"title":"The Compilation","airDate":"2016-08-25","airDateUtc":"2016-08-25T16:00:00Z","overview":"Odd internet clips are recalled by the people of Elmore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":681},{"seriesId":4,"episodeFileId":18916,"seasonNumber":4,"episodeNumber":40,"title":"The Disaster","airDate":"2016-09-05","airDateUtc":"2016-09-05T16:00:00Z","overview":"Rob finds a remote that controls the universe and travels back in time to enact revenge on Gumball.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":683},{"seriesId":4,"episodeFileId":0,"seasonNumber":5,"episodeNumber":1,"title":"The Re-Run","airDate":"2016-09-05","airDateUtc":"2016-09-05T16:00:00Z","overview":"Gumball continues to fight against Rob's attempt to destroy his life.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":685},{"seriesId":4,"episodeFileId":0,"seasonNumber":5,"episodeNumber":2,"title":"The Stories","airDate":"2016-09-08","airDateUtc":"2016-09-08T16:00:00Z","overview":"When everyone in school has had it with Molly's tedious stories, Gumball and Darwin have a plan to get her a new story she'll never forget.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":158,"unverifiedSceneNumbering":false,"id":686},{"seriesId":4,"episodeFileId":14086,"seasonNumber":5,"episodeNumber":3,"title":"The Guy","airDate":"2016-09-15","airDateUtc":"2016-09-15T16:00:00Z","overview":"Anais makes friends with an awkward kid named Josh, but Gumball and Darwin think there's something wrong with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":159,"unverifiedSceneNumbering":false,"id":687},{"seriesId":4,"episodeFileId":14087,"seasonNumber":5,"episodeNumber":4,"title":"The Boredom","airDate":"2016-10-06","airDateUtc":"2016-10-06T16:00:00Z","overview":"On a boring Saturday afternoon, Gumball and Darwin decide to find something interesting to do \u2014 only to either miss out or pass by all of the weird events happening around them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":160,"unverifiedSceneNumbering":false,"id":688},{"seriesId":4,"episodeFileId":14088,"seasonNumber":5,"episodeNumber":5,"title":"The Vision","airDate":"2016-10-13","airDateUtc":"2016-10-13T16:00:00Z","overview":"Gumball accidentally takes Alan the balloon's gym bag and finds a flash drive containing a manifesto outlining Alan's House of Cards-esque rise to power through Elmore Junior High's student council.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":161,"unverifiedSceneNumbering":false,"id":689},{"seriesId":4,"episodeFileId":14089,"seasonNumber":5,"episodeNumber":6,"title":"The Choices","airDate":"2016-10-20","airDateUtc":"2016-10-20T16:00:00Z","overview":"During a disastrous dinner at home, Nicole flashes back to her childhood, where she first met Richard while trying to make it to a karate tournament, and wonders what life would be like if she never met him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":162,"unverifiedSceneNumbering":false,"id":690},{"seriesId":4,"episodeFileId":18916,"seasonNumber":4,"episodeNumber":39,"title":"The Scam","airDate":"2016-10-27","airDateUtc":"2016-10-27T16:00:00Z","overview":"In this tribute to Ghostbusters, Gumball scares the whole city with Carrie by making up a story.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":682},{"seriesId":4,"episodeFileId":14090,"seasonNumber":5,"episodeNumber":7,"title":"The Code","airDate":"2016-10-27","airDateUtc":"2016-10-27T16:00:00Z","overview":"After the wifi goes down (and Richard confesses that their connection is from the Robinsons as the Wattersons' credit is so bad, they can't afford to get the Internet for themselves), Gumball and Darwin try to live without Internet by making real-life equivalents of everything associated with the Internet (email, social media, gaming, leaving bad reviews for products and services). When that doesn't work, the Watterson kids decide to hack Mr. Robinson's account.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":163,"unverifiedSceneNumbering":false,"id":691},{"seriesId":4,"episodeFileId":14091,"seasonNumber":5,"episodeNumber":8,"title":"The Test","airDate":"2016-11-05","airDateUtc":"2016-11-05T16:00:00Z","overview":"Gumball takes a personality test that labels him \"The Loser\" and he tries to shake the label.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":164,"unverifiedSceneNumbering":false,"id":692},{"seriesId":4,"episodeFileId":14092,"seasonNumber":5,"episodeNumber":9,"title":"The Slide","airDate":"2016-11-10","airDateUtc":"2016-11-10T17:00:00Z","overview":"Rocky decides to stop living life online, and find love on a dating app, and Gumball and Darwin try to help him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":165,"unverifiedSceneNumbering":false,"id":693},{"seriesId":4,"episodeFileId":14093,"seasonNumber":5,"episodeNumber":10,"title":"The Loophole","airDate":"2016-11-17","airDateUtc":"2016-11-17T17:00:00Z","overview":"Gumball and Darwin give Bobert instructions so he will behave in a safe and responsible manner, but he applies his logic to their rules.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":166,"unverifiedSceneNumbering":false,"id":694},{"seriesId":4,"episodeFileId":14094,"seasonNumber":5,"episodeNumber":11,"title":"The Copycats","airDate":"2017-02-06","airDateUtc":"2017-02-06T17:00:00Z","overview":"Gumball and Darwin are confused when they meet Chi Chi and Ribbit, a pair of goat and frog siblings that copy everything they do and say. Then they find out this copycat family is making money online from imitating the Watterson family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":167,"unverifiedSceneNumbering":false,"id":695},{"seriesId":4,"episodeFileId":14095,"seasonNumber":5,"episodeNumber":12,"title":"The Potato","airDate":"2017-02-07","airDateUtc":"2017-02-07T17:00:00Z","overview":"When Darwin has lunch with Idaho, he decides to stop eating potatoes in solidarity with his brotato, but he finds his obsession with his favorite food harder to kick than he ever imagined, so Gumball decides to help his friend curb his carb cravings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":168,"unverifiedSceneNumbering":false,"id":696},{"seriesId":4,"episodeFileId":14096,"seasonNumber":5,"episodeNumber":13,"title":"The Fuss","airDate":"2017-02-08","airDateUtc":"2017-02-08T17:00:00Z","overview":"Nicole tries, and fails, to hide her disappointment when Richard and the kids fail to remember her special day. Richard has to figure out what special day he has actually forgotten and then make it a day to remember or else.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":169,"unverifiedSceneNumbering":false,"id":697},{"seriesId":4,"episodeFileId":14097,"seasonNumber":5,"episodeNumber":14,"title":"The Outside","airDate":"2017-02-09","airDateUtc":"2017-02-09T17:00:00Z","overview":"When the family goes to visit Richard's dad, Frankie, who lives in a trailer in the town dump, they assume that he's done time in prison based on his extended absence from Richard's life and try to make him feel more at home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":170,"unverifiedSceneNumbering":false,"id":698},{"seriesId":4,"episodeFileId":14098,"seasonNumber":5,"episodeNumber":15,"title":"The Vase","airDate":"2017-02-13","airDateUtc":"2017-02-13T17:00:00Z","overview":"Sick of Granny Jojo's ugly gifts, Nicole encourages the kids to take matters into their own hands and accidentally break her latest hideous vase. But when Gumball, Darwin and Anais try to destroy it, they discover it is more robust than it seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":171,"unverifiedSceneNumbering":false,"id":699},{"seriesId":4,"episodeFileId":14099,"seasonNumber":5,"episodeNumber":16,"title":"The Matchmaker","airDate":"2017-02-14","airDateUtc":"2017-02-14T17:00:00Z","overview":"Gumball enlists Carrie to help bring Darwin and Teri together, but when they can't make Darwin and Teri's love blossom naturally, they decide to make it happen supernaturally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":172,"unverifiedSceneNumbering":false,"id":700},{"seriesId":4,"episodeFileId":14100,"seasonNumber":5,"episodeNumber":17,"title":"The Box","airDate":"2017-02-15","airDateUtc":"2017-02-15T17:00:00Z","overview":"The Wattersons receive an unmarked package in the mail. To distract themselves from the urge to open it they all take turns to imagine what it might contain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":173,"unverifiedSceneNumbering":false,"id":701},{"seriesId":4,"episodeFileId":14101,"seasonNumber":5,"episodeNumber":18,"title":"The Console","airDate":"2017-02-16","airDateUtc":"2017-02-16T17:00:00Z","overview":"When everyone gives Gumball a cursed video game console, Elmore becomes trapped inside a fantasy RPG world. Gumball, Darwin and Anais have to battle their way through town, unraveling the secrets of their new virtual reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":174,"unverifiedSceneNumbering":false,"id":702},{"seriesId":4,"episodeFileId":14102,"seasonNumber":5,"episodeNumber":19,"title":"The Ollie","airDate":"2017-02-20","airDateUtc":"2017-02-20T17:00:00Z","overview":"Gumball teaches Darwin everything he knows about the world of skateboarding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":175,"unverifiedSceneNumbering":false,"id":703},{"seriesId":4,"episodeFileId":14103,"seasonNumber":5,"episodeNumber":20,"title":"The Catfish","airDate":"2017-02-21","airDateUtc":"2017-02-21T17:00:00Z","overview":"When Gumball and Darwin realize Grandpa Louie has no friends, they create one called Muriel, when Granny Jojo finds out Louie has been spending time online with another \"woman\", Muriel not existing isn't going to stop her from being destroyed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":176,"unverifiedSceneNumbering":false,"id":704},{"seriesId":4,"episodeFileId":14104,"seasonNumber":5,"episodeNumber":21,"title":"The Cycle","airDate":"2017-02-22","airDateUtc":"2017-02-22T17:00:00Z","overview":"Gumball, Darwin and Anais discover that Mr. Wilson has been picking on their Dad for most of his life; ever since he humiliated Richard with a high school prank. The kids try to work Dad through it but when their efforts fail, they realize that getting back at Mr. Wilson is the only way to break the cycle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":177,"unverifiedSceneNumbering":false,"id":705},{"seriesId":4,"episodeFileId":14105,"seasonNumber":5,"episodeNumber":22,"title":"The Stars","airDate":"2017-02-23","airDateUtc":"2017-02-23T17:00:00Z","overview":"When Dad gives Larry\u2019s hairdresser a bad review for saying he\u2019s bald, he gets offered a free haircut. This inspires Gumball and Darwin to go on a reviewing spree across town, forcing Larry to give them stuff with the threat of a bad review. Just because the customer is always right doesn\u2019t mean that what they\u2019re doing isn\u2019t wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":178,"unverifiedSceneNumbering":false,"id":706},{"seriesId":4,"episodeFileId":14106,"seasonNumber":5,"episodeNumber":23,"title":"The Grades","airDate":"2017-02-27","airDateUtc":"2017-02-27T17:00:00Z","overview":"Miss Simian discovers a failed test from Gumball\u2019s past that brings down his grade point average. This means he has to retake kindergarten all over again, much to her delight. But by demoting him, Miss Simian has inadvertently brought herself down, and they\u2019re left with no choice but to team up if they want things back to normal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":179,"unverifiedSceneNumbering":false,"id":707},{"seriesId":4,"episodeFileId":14107,"seasonNumber":5,"episodeNumber":24,"title":"The Diet","airDate":"2017-02-28","airDateUtc":"2017-02-28T17:00:00Z","overview":"Gumball and Darwin discover the reason Dad\u2019s diet wasn\u2019t working was that he was actually one of 10 of them and eating a meal for each of them. They eventually manage to help him lose weight, but Richard\u2019s newfound buffness also brings out his more obnoxious side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":180,"unverifiedSceneNumbering":false,"id":708},{"seriesId":4,"episodeFileId":14108,"seasonNumber":5,"episodeNumber":25,"title":"The Ex","airDate":"2017-03-01","airDateUtc":"2017-03-01T17:00:00Z","overview":"When Gumball learns that his nemesis, Rob, has found a new nemesis, he tries to sabotage Rob's new \"enemy-ship\", much to the frustration of Penny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":181,"unverifiedSceneNumbering":false,"id":709},{"seriesId":4,"episodeFileId":14109,"seasonNumber":5,"episodeNumber":26,"title":"The Sorcerer","airDate":"2017-03-02","airDateUtc":"2017-03-02T17:00:00Z","overview":"Gumball refuses to accept he is the only kid at school that doesn't have special powers. He convinces Mrs. J\u00f6tunheim, Hector's mom, to take him on as her apprentice but she soon learns leaving Gumball unsupervised around magic is a big mistake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":182,"unverifiedSceneNumbering":false,"id":710},{"seriesId":4,"episodeFileId":14110,"seasonNumber":5,"episodeNumber":27,"title":"The Menu","airDate":"2017-03-06","airDateUtc":"2017-03-06T17:00:00Z","overview":"The prize jewel on the Secret Joyful Burger menu is a mysterious burger, but to order it you need to know its name. When Larry refuses to tell them what it's called, they go to super-sized lengths to discover it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":183,"unverifiedSceneNumbering":false,"id":711},{"seriesId":4,"episodeFileId":14111,"seasonNumber":5,"episodeNumber":28,"title":"The Uncle","airDate":"2017-03-07","airDateUtc":"2017-03-07T17:00:00Z","overview":"Gumball and Darwin are desperate to meet Ocho's famous uncle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":184,"unverifiedSceneNumbering":false,"id":712},{"seriesId":4,"episodeFileId":14113,"seasonNumber":5,"episodeNumber":30,"title":"The Weirdo","airDate":"2017-03-08","airDateUtc":"2017-03-08T17:00:00Z","overview":"When they see the school bullies making fun of Sussie, Gumball and Darwin decide to try and help her act less weird. They carefully observe her behavior and decide that the only thing they have to change is absolutely everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":185,"unverifiedSceneNumbering":false,"id":714},{"seriesId":4,"episodeFileId":14112,"seasonNumber":5,"episodeNumber":29,"title":"The Heist","airDate":"2017-03-09","airDateUtc":"2017-03-09T17:00:00Z","overview":"Richard discovers that going into a bank whilst wearing a motorcycle helmet can land you in a lot of trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":186,"unverifiedSceneNumbering":false,"id":713},{"seriesId":4,"episodeFileId":14114,"seasonNumber":5,"episodeNumber":31,"title":"The Singing","airDate":"2017-09-01","airDateUtc":"2017-09-01T16:00:00Z","overview":"Join the citizens of Elmore for a song and dance spectacular that will have people covering their ears with joy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":187,"unverifiedSceneNumbering":false,"id":715},{"seriesId":4,"episodeFileId":14115,"seasonNumber":5,"episodeNumber":32,"title":"The Best","airDate":"2017-09-08","airDateUtc":"2017-09-08T16:00:00Z","overview":"No matter what Gumball does, Carmen thinks she knows better; when Gumball attempts to gain the moral high ground, but fails, his only option left is to bring Carmen down to his level.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":188,"unverifiedSceneNumbering":false,"id":716},{"seriesId":4,"episodeFileId":14116,"seasonNumber":5,"episodeNumber":33,"title":"The Worst","airDate":"2017-09-15","airDateUtc":"2017-09-15T16:00:00Z","overview":"The Wattersons compete over who has the worst life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":189,"unverifiedSceneNumbering":false,"id":717},{"seriesId":4,"episodeFileId":14117,"seasonNumber":5,"episodeNumber":34,"title":"The Deal","airDate":"2017-09-22","airDateUtc":"2017-09-22T16:00:00Z","overview":"Richard goes on strike to prove that his work around the house is under appreciated by Nicole.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":190,"unverifiedSceneNumbering":false,"id":718},{"seriesId":4,"episodeFileId":14118,"seasonNumber":5,"episodeNumber":35,"title":"The Petals","airDate":"2017-09-29","airDateUtc":"2017-09-29T16:00:00Z","overview":"When Leslie's petals begin falling off, he feels like his good looks are fading, so Gumball and Darwin use everything they know about style and beauty to try and help him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":191,"unverifiedSceneNumbering":false,"id":719},{"seriesId":4,"episodeFileId":14119,"seasonNumber":5,"episodeNumber":36,"title":"The Puppets","airDate":"2017-10-06","airDateUtc":"2017-10-06T16:00:00Z","overview":"Darwin is delighted when they discover their old childhood toys, but soon realizes that some things are best left in the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":192,"unverifiedSceneNumbering":false,"id":720},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Waiting for Gumball: Cool To Be Felt","airDate":"2017-10-08","airDateUtc":"2017-10-08T16:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":515},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Waiting for Gumball: Pineapple","airDate":"2017-10-08","airDateUtc":"2017-10-08T16:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":516},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Waiting for Gumball: Infinite Loop","airDate":"2017-10-08","airDateUtc":"2017-10-08T16:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":517},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Waiting for Gumball: Weird Food","airDate":"2017-10-08","airDateUtc":"2017-10-08T16:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":518},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Waiting for Gumball: BirdPlaneBird","airDate":"2017-10-08","airDateUtc":"2017-10-08T16:40:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":519},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Waiting for Gumball: Gnomes","airDate":"2017-10-08","airDateUtc":"2017-10-08T16:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":520},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Waiting for Gumball: Insulting Voices","airDate":"2017-10-08","airDateUtc":"2017-10-08T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":521},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Waiting for Gumball: Beards","airDate":"2017-10-08","airDateUtc":"2017-10-08T17:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":522},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Waiting for Gumball: Grump","airDate":"2017-10-08","airDateUtc":"2017-10-08T17:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":523},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Waiting for Gumball: Spoons","airDate":"2017-10-08","airDateUtc":"2017-10-08T17:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":524},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Waiting for Gumball: Telly","airDate":"2017-10-08","airDateUtc":"2017-10-08T17:40:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":525},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Waiting for Gumball: Clean","airDate":"2017-10-08","airDateUtc":"2017-10-08T17:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":526},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Waiting for Gumball: Bored","airDate":"2017-10-08","airDateUtc":"2017-10-08T18:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":527},{"seriesId":4,"episodeFileId":14120,"seasonNumber":5,"episodeNumber":37,"title":"The Nuisance","airDate":"2017-10-13","airDateUtc":"2017-10-13T16:00:00Z","overview":"The Wattersons fear the worst when they are summoned to a Town Hall meeting, but are surprised when they're offered a new house - until they discover it's in a different state.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":193,"unverifiedSceneNumbering":false,"id":721},{"seriesId":4,"episodeFileId":14121,"seasonNumber":5,"episodeNumber":38,"title":"The Line","airDate":"2017-10-20","airDateUtc":"2017-10-20T16:00:00Z","overview":"The Wattersons will do whatever it takes to get into the first screening of the latest Stellar Odyssey sequel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":194,"unverifiedSceneNumbering":false,"id":722},{"seriesId":4,"episodeFileId":14122,"seasonNumber":5,"episodeNumber":39,"title":"The List","airDate":"2017-11-03","airDateUtc":"2017-11-03T16:00:00Z","overview":"When the kids find out that Mom's life hasn't panned out as she'd hoped, they start taking on her chores, but they accidentally grab her bucket list instead of her to-do list.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":195,"unverifiedSceneNumbering":false,"id":723},{"seriesId":4,"episodeFileId":14123,"seasonNumber":5,"episodeNumber":40,"title":"The News","airDate":"2017-11-10","airDateUtc":"2017-11-10T17:00:00Z","overview":"From police chases to the inside scoop on Daisy the Donkey, Channel 6 Elmore News has all the top local stories. Experienced newscaster Kip Schlezinger brings the latest news, sports and weather, even when there is absolutely nothing to report.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":196,"unverifiedSceneNumbering":false,"id":16864},{"seriesId":4,"episodeFileId":12324,"seasonNumber":6,"episodeNumber":1,"title":"The Rival","airDate":"2018-01-05","airDateUtc":"2018-01-05T17:00:00Z","overview":"Back in time to when Anais is a newborn baby, Gumball and Darwin are terrified of her sinister and evil nature of trying to get the boys in trouble and killed. They decide to ship her away, but her box ends up getting picked up by the garbage disposal, forcing the boys to go and rescue her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":197,"unverifiedSceneNumbering":false,"id":724},{"seriesId":4,"episodeFileId":12330,"seasonNumber":6,"episodeNumber":2,"title":"The Lady","airDate":"2018-01-05","airDateUtc":"2018-01-05T17:10:00Z","overview":"Gumball and Darwin become suspicious of Richard's connection to a woman named Samantha who is always hanging out with a group of old ladies. When they realize that Richard and Samantha are one and the same, they set out to right a wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":198,"unverifiedSceneNumbering":false,"id":725},{"seriesId":4,"episodeFileId":12331,"seasonNumber":6,"episodeNumber":3,"title":"The Sucker","airDate":"2018-01-12","airDateUtc":"2018-01-12T17:00:00Z","overview":"Darwin ends up in detention with Julius Oppenheimer Jr. for trying to fix Julius' vandalism, and Julius cons Darwin into being part of his gang... but soon regrets it when everything Darwin does goes wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":199,"unverifiedSceneNumbering":false,"id":726},{"seriesId":4,"episodeFileId":12336,"seasonNumber":6,"episodeNumber":4,"title":"The Vegging","airDate":"2018-01-15","airDateUtc":"2018-01-15T17:00:00Z","overview":"Gumball and Darwin decide to spend the day by simply vegging out on the couch and watch TV. They attempt to ignore all the bizarre events happening around them, but are eventually forced to act when Nicole, Richard and Anais are left hanging in their car over a broken bridge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":200,"unverifiedSceneNumbering":false,"id":727},{"seriesId":4,"episodeFileId":12338,"seasonNumber":6,"episodeNumber":5,"title":"The One","airDate":"2018-01-19","airDateUtc":"2018-01-19T17:00:00Z","overview":"Gumball is put off by Tobias' constant burns, despite the fact that he allows Darwin to do so and that he himself is self-deprecating. Realizing that Tobias wants to be his \"best\" friend, Gumball tries to let him down easily, but this convinces him to instead \"wipe out the competition\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":201,"unverifiedSceneNumbering":false,"id":728},{"seriesId":4,"episodeFileId":12343,"seasonNumber":6,"episodeNumber":6,"title":"The Father","airDate":"2018-01-26","airDateUtc":"2018-01-26T17:00:00Z","overview":"The kids try to help Richard bond with Frankie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":202,"unverifiedSceneNumbering":false,"id":729},{"seriesId":4,"episodeFileId":12345,"seasonNumber":6,"episodeNumber":7,"title":"The Cringe","airDate":"2018-02-02","airDateUtc":"2018-02-02T17:00:00Z","overview":"Gumball and Hot Dog Guy discover why they're so awkward with each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":203,"unverifiedSceneNumbering":false,"id":730},{"seriesId":4,"episodeFileId":12350,"seasonNumber":6,"episodeNumber":8,"title":"The Cage","airDate":"2018-02-09","airDateUtc":"2018-02-09T17:00:00Z","overview":"The kids convince Mr. Corneille to become a cage fighter and set up a fight against a fearsome Russian fighter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":204,"unverifiedSceneNumbering":false,"id":731},{"seriesId":4,"episodeFileId":12352,"seasonNumber":6,"episodeNumber":9,"title":"The Faith","airDate":"2018-02-23","airDateUtc":"2018-02-23T17:00:00Z","overview":"Alan has lost faith in humanity and turned the world black and white. Gumball must get over his hatred of Alan to bring the color back by singing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":205,"unverifiedSceneNumbering":false,"id":732},{"seriesId":4,"episodeFileId":12358,"seasonNumber":6,"episodeNumber":10,"title":"The Candidate","airDate":"2018-03-02","airDateUtc":"2018-03-02T17:00:00Z","overview":"A group of kids get locked in the school after their parents have a charity gala. They appoint Gumball as leader to get them out but it leads to chaos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":206,"unverifiedSceneNumbering":false,"id":733},{"seriesId":4,"episodeFileId":12359,"seasonNumber":6,"episodeNumber":11,"title":"The Anybody","airDate":"2018-03-09","airDateUtc":"2018-03-09T17:00:00Z","overview":"When Clayton shapeshifts into people to take their detentions for money, he starts framing them for misdemeanors so Gumball and Darwin must track him down to stop him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":207,"unverifiedSceneNumbering":false,"id":734},{"seriesId":4,"episodeFileId":12365,"seasonNumber":6,"episodeNumber":12,"title":"The Pact","airDate":"2018-04-09","airDateUtc":"2018-04-09T16:00:00Z","overview":"When Principal Brown has to take the bus, he and Gumball relate their grievances about their respective girlfriends (Miss Simian's bad morning breath and Penny's irritable laugh). They make a deal to tell each other's girlfriends about their issues, but Principal Brown backs out on his end, causing Gumball to pester him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":208,"unverifiedSceneNumbering":false,"id":735},{"seriesId":4,"episodeFileId":12366,"seasonNumber":6,"episodeNumber":13,"title":"The Neighbor","airDate":"2018-04-13","airDateUtc":"2018-04-13T16:00:00Z","overview":"Gumball and Darwin try to find out the name of their neighbor, Antlers Guy, but accidentally blow his witness protection cover.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":209,"unverifiedSceneNumbering":false,"id":736},{"seriesId":4,"episodeFileId":12372,"seasonNumber":6,"episodeNumber":14,"title":"The Shippening","airDate":"2018-04-20","airDateUtc":"2018-04-20T16:00:00Z","overview":"Sarah finds a notebook from the Awesome Store which magically makes what she draws happens. Unfortunately, she draws bizarre love stories throughout Elmore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":210,"unverifiedSceneNumbering":false,"id":737},{"seriesId":4,"episodeFileId":12373,"seasonNumber":6,"episodeNumber":15,"title":"The Brain","airDate":"2018-06-18","airDateUtc":"2018-06-18T16:00:00Z","overview":"The Wattersons have to stop doing stupid things in order to prevent Anais from falling into a coma from facepalming too much.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":211,"unverifiedSceneNumbering":false,"id":738},{"seriesId":4,"episodeFileId":12379,"seasonNumber":6,"episodeNumber":16,"title":"The Parents","airDate":"2018-06-18","airDateUtc":"2018-06-18T16:00:00Z","overview":"After accidentally bumping into each other in the grocery aisle, Nicole and her parents have it out. The Wattersons discover why Nicole and her parents haven\u2019t been on speaking terms for so long. The kids decide to bring about a reunion, in order to secure the backlog of birthday and holiday presents...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":212,"unverifiedSceneNumbering":false,"id":739},{"seriesId":4,"episodeFileId":12380,"seasonNumber":6,"episodeNumber":17,"title":"The Founder","airDate":"2018-06-18","airDateUtc":"2018-06-18T16:00:00Z","overview":"Richard creates chaos in the Chanax building when he is mistaken for the long lost CEO. Nicole and a disgruntled employee must save everyone from Richard's dangerous ideas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":213,"unverifiedSceneNumbering":false,"id":740},{"seriesId":4,"episodeFileId":12386,"seasonNumber":6,"episodeNumber":18,"title":"The Schooling","airDate":"2018-06-18","airDateUtc":"2018-06-18T16:00:00Z","overview":"Larry warns Gumball and Darwin that if they don't take their education seriously they\u2019ll end up like him. To prove his point, Larry lets Gumball and Darwin work some of his many roles to make them appreciate the value of a good education!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":214,"unverifiedSceneNumbering":false,"id":741},{"seriesId":4,"episodeFileId":12387,"seasonNumber":6,"episodeNumber":19,"title":"The Intelligence","airDate":"2018-06-18","airDateUtc":"2018-06-18T16:00:00Z","overview":"Gumball and Darwin argue with the Internet and make him mad. So mad in fact that he seeks to wipe out humanity and, while doing so, malfunctions! The whole of Elmore is plunged into a time before technology. It's actually pretty nice. Will Gumball and Darwin decide to leave the internet unplugged?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":215,"unverifiedSceneNumbering":false,"id":742},{"seriesId":4,"episodeFileId":12393,"seasonNumber":6,"episodeNumber":20,"title":"The Potion","airDate":"2018-07-16","airDateUtc":"2018-07-16T16:00:00Z","overview":"Hector is unhappy with his height, so the kids try to use Mrs. J\u00f6tunheim's potions to shrink him, but it goes terribly wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":216,"unverifiedSceneNumbering":false,"id":743},{"seriesId":4,"episodeFileId":12394,"seasonNumber":6,"episodeNumber":21,"title":"The Spinoffs","airDate":"2018-07-16","airDateUtc":"2018-07-16T16:00:00Z","overview":"A sketch show about what \"The Amazing World of Gumball\" would be like if one replaced Gumball with someone else.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":217,"unverifiedSceneNumbering":false,"id":744},{"seriesId":4,"episodeFileId":12400,"seasonNumber":6,"episodeNumber":22,"title":"The Transformation","airDate":"2018-07-16","airDateUtc":"2018-07-16T16:00:00Z","overview":"Penny's family argues about being in or out of their shells. Gumball unwillingly tells vague stories to help them settle their dispute.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":218,"unverifiedSceneNumbering":false,"id":745},{"seriesId":4,"episodeFileId":12401,"seasonNumber":6,"episodeNumber":23,"title":"The Understanding","airDate":"2018-07-16","airDateUtc":"2018-07-16T16:00:00Z","overview":"There's a new kid at school but nobody can understand a thing he is saying. Gumball and Darwin try different ways to figure out what's going on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":219,"unverifiedSceneNumbering":false,"id":746},{"seriesId":4,"episodeFileId":12407,"seasonNumber":6,"episodeNumber":24,"title":"The Ad","airDate":"2018-07-16","airDateUtc":"2018-07-16T16:00:00Z","overview":"The Wattersons turn their home into a BnB in an attempt to raise some extra cash.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":220,"unverifiedSceneNumbering":false,"id":747},{"seriesId":4,"episodeFileId":12408,"seasonNumber":6,"episodeNumber":25,"title":"The Ghouls","airDate":"2018-10-19","airDateUtc":"2018-10-19T16:00:00Z","overview":"It's Halloween in Elmore. As the kids go trick or treating we see what everyone in town is up to. The ghosts and ghouls are finding it increasingly difficult to scare children, and are only scaring part-time. Can Gumball and Darwin help them get their scare back?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":221,"unverifiedSceneNumbering":false,"id":748},{"seriesId":4,"episodeFileId":12414,"seasonNumber":6,"episodeNumber":26,"title":"The Stink","airDate":"2018-11-05","airDateUtc":"2018-11-05T17:00:00Z","overview":"Gumball decides to put Mr. Small's eco-friendly principles to the test but it doesn't quite go as planned. Mr. Small disappears after deciding to leave the modern world behind. But on the plus side they discover that the Great Stink-Ape of Elmore Woods is definitely not extinct.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":222,"unverifiedSceneNumbering":false,"id":749},{"seriesId":4,"episodeFileId":12416,"seasonNumber":6,"episodeNumber":27,"title":"The Awareness","airDate":"2018-11-06","airDateUtc":"2018-11-06T17:00:00Z","overview":"Gumball tries to convince Leslie he's an expert on all things plant-related. However, when Leslie realizes Gumball hasn't got a clue what he's talking about, he decides to call his bluff. An escalation of dangerous dares and stunts ensue as they try to out-plant each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":223,"unverifiedSceneNumbering":false,"id":750},{"seriesId":4,"episodeFileId":12422,"seasonNumber":6,"episodeNumber":28,"title":"The Slip","airDate":"2018-11-07","airDateUtc":"2018-11-07T17:00:00Z","overview":"Richard doesn't answer the door in time and the jobsworth delivery guy will not let him have his package. His options are to pick his package up at the depot or pay for a redelivery. Richard doesn't like the sound of either option, so a battle of wills begins that can only end in the destruction of one or both of them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":224,"unverifiedSceneNumbering":false,"id":751},{"seriesId":4,"episodeFileId":12424,"seasonNumber":6,"episodeNumber":29,"title":"The Drama","airDate":"2018-11-08","airDateUtc":"2018-11-08T17:00:00Z","overview":"Everyone assumes Darwin and Carrie's relationship is doomed as they're so different. That is, everyone except Darwin and Carrie. When Carrie's cool ghostly ex-boyfriend turns up, Gumball decides to get Darwin to confront what's really going on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":225,"unverifiedSceneNumbering":false,"id":752},{"seriesId":4,"episodeFileId":12430,"seasonNumber":6,"episodeNumber":30,"title":"The Buddy","airDate":"2018-11-09","airDateUtc":"2018-11-09T17:00:00Z","overview":"Anais and school psycho Jamie are accused of the same techno-crime. They are forced to team up to discover the real culprit in order to prove their innocence. After solving the case, they realize that they have more in common than they thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":226,"unverifiedSceneNumbering":false,"id":753},{"seriesId":4,"episodeFileId":12432,"seasonNumber":6,"episodeNumber":31,"title":"The Possession","airDate":"2019-04-15","airDateUtc":"2019-04-15T16:00:00Z","overview":"Richard Watterson seems supernaturally attached to his old refrigerator.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":227,"unverifiedSceneNumbering":false,"id":9430},{"seriesId":4,"episodeFileId":12438,"seasonNumber":6,"episodeNumber":32,"title":"The Master","airDate":"2019-04-22","airDateUtc":"2019-04-22T16:00:00Z","overview":"The Wattersons play a fantasy role-playing board game to resolve their differences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":228,"unverifiedSceneNumbering":false,"id":11017},{"seriesId":4,"episodeFileId":12440,"seasonNumber":6,"episodeNumber":33,"title":"The Silence","airDate":"2019-04-29","airDateUtc":"2019-04-29T16:00:00Z","overview":"Have Gumball and Darwin finally run out of things to say to each other?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":229,"unverifiedSceneNumbering":false,"id":11018},{"seriesId":4,"episodeFileId":12446,"seasonNumber":6,"episodeNumber":34,"title":"The Future","airDate":"2019-05-06","airDateUtc":"2019-05-06T16:00:00Z","overview":"Banana Joe's Mom can predict the future, but she can't predict her own disappearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":230,"unverifiedSceneNumbering":false,"id":11118},{"seriesId":4,"episodeFileId":12448,"seasonNumber":6,"episodeNumber":35,"title":"The Wish","airDate":"2019-05-13","airDateUtc":"2019-05-13T16:00:00Z","overview":"Gumball and Darwin believe they've turned Miss Simian into a neck-cushion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":231,"unverifiedSceneNumbering":false,"id":11127},{"seriesId":4,"episodeFileId":12454,"seasonNumber":6,"episodeNumber":36,"title":"The Factory","airDate":"2019-05-20","airDateUtc":"2019-05-20T16:00:00Z","overview":"Gumball and Darwin save the day at the Rainbow Factory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":232,"unverifiedSceneNumbering":false,"id":11128},{"seriesId":4,"episodeFileId":12456,"seasonNumber":6,"episodeNumber":37,"title":"The Agent","airDate":"2019-05-27","airDateUtc":"2019-05-27T16:00:00Z","overview":"On a top secret school assignment Gumball acts like a certain suave British secret agent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":233,"unverifiedSceneNumbering":false,"id":11129},{"seriesId":4,"episodeFileId":12461,"seasonNumber":6,"episodeNumber":38,"title":"The Web","airDate":"2019-06-03","airDateUtc":"2019-06-03T16:00:00Z","overview":"Gumball and Darwin give Nicole a crash course in computers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":234,"unverifiedSceneNumbering":false,"id":11168},{"seriesId":4,"episodeFileId":12468,"seasonNumber":6,"episodeNumber":40,"title":"The Heart","airDate":"2019-06-10","airDateUtc":"2019-06-10T16:10:00Z","overview":"Mr. Robinson tries and repeatedly fails to win back Gumball and Darwin\u2019s friendship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":236,"unverifiedSceneNumbering":false,"id":11479},{"seriesId":4,"episodeFileId":12463,"seasonNumber":6,"episodeNumber":39,"title":"The Mess","airDate":"2019-06-10","airDateUtc":"2019-06-10T16:00:00Z","overview":"Gumball and Darwin baby-sit, then baby-lose, Penny\u2019s little sister.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":235,"unverifiedSceneNumbering":false,"id":11483},{"seriesId":4,"episodeFileId":12469,"seasonNumber":6,"episodeNumber":41,"title":"The Revolt","airDate":"2019-06-17","airDateUtc":"2019-06-17T16:00:00Z","overview":"Darwin feels bad for the household objects in Elmore and encourages them to rise up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":237,"unverifiedSceneNumbering":false,"id":11484},{"seriesId":4,"episodeFileId":12470,"seasonNumber":6,"episodeNumber":42,"title":"The Decisions","airDate":"2019-06-17","airDateUtc":"2019-06-17T16:10:00Z","overview":"Darwin has finally had enough of Gumball\u2019s advice and seeks a new mentor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":238,"unverifiedSceneNumbering":false,"id":11485},{"seriesId":4,"episodeFileId":12471,"seasonNumber":6,"episodeNumber":43,"title":"The BFFS","airDate":"2019-06-24","airDateUtc":"2019-06-24T16:00:00Z","overview":"When Gumball\u2019s old BFF turns up, Darwin gets jealous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":239,"unverifiedSceneNumbering":false,"id":11486},{"seriesId":4,"episodeFileId":12472,"seasonNumber":6,"episodeNumber":44,"title":"The Inquisition","airDate":"2019-06-24","airDateUtc":"2019-06-24T16:10:00Z","overview":"School Superintendent Evil is coming to Elmore Junior High to stamp out all cartoonish conduct!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":240,"unverifiedSceneNumbering":false,"id":11487},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Darwin's Yearbook: Banana Joe","airDate":"2019-12-14","airDateUtc":"2019-12-14T17:00:00Z","overview":"When Principal Brown sets Darwin the task of making the school yearbook, Darwin starts by asking class clown Banana Joe for a simple selfie to put on the cover. But with Banana Joe, things are never that simple.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15820},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Darwin's Yearbook: Clayton","airDate":"2019-12-14","airDateUtc":"2019-12-14T17:10:00Z","overview":"Darwin needs to find a photo of Clayton to put on the cover of the school yearbook \u2013 but he makes the mistake of seeking help from Tobias, who has his eye on the cover spot himself!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15821},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Darwin's Yearbook: Carrie","airDate":"2019-12-21","airDateUtc":"2019-12-21T17:00:00Z","overview":"Darwin sets out to find a photo of Carrie for the cover of the school yearbook \u2013 but they end up reminiscing about all their past spooky shenanigans.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15822},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Darwin's Yearbook: Alan","airDate":"2019-12-21","airDateUtc":"2019-12-21T17:10:00Z","overview":"Darwin wants to put Alan on the cover of the school yearbook \u2013 but Alan\u2019s apparent modesty gets in the way.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15823},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Darwin's Yearbook: Sarah","airDate":"2019-12-28","airDateUtc":"2019-12-28T17:00:00Z","overview":"Darwin asks Sarah for a photo to put on the cover of the school yearbook. But when Sarah tries to help, things get a little sticky.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15824},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Darwin's Yearbook: Teachers","airDate":"2019-12-28","airDateUtc":"2019-12-28T17:10:00Z","overview":"When Darwin asks his friends which teacher deserves to be on the yearbook cover, they struggle to find a single worthy candidate!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15825},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Gumball Chronicles: The Curse of Elmore","airDate":"2020-10-05","airDateUtc":"2020-10-05T16:00:00Z","overview":"Gumball Chronicles is a spinoff mini-series based on The Amazing World of Gumball. The series predominantly consists of clips recycled from previous episodes but will feature some new content.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19810},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"The Gumball Chronicles: Vote Gumball... and Penny?","airDate":"2020-11-02","airDateUtc":"2020-11-02T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20797},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"The Gumball Chronicles: Vote Gumball... and Leslie?","airDate":"2020-11-02","airDateUtc":"2020-11-02T17:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20798},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"The Gumball Chronicles: Vote Gumball... and Bobert?","airDate":"2020-11-02","airDateUtc":"2020-11-02T17:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20799},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"The Gumball Chronicles: Vote Gumball... and Anyone?","airDate":"2020-11-02","airDateUtc":"2020-11-02T17:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20800},{"seriesId":4,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"The Gumball Chronicles: Ancestor Act","airDate":"2020-11-21","airDateUtc":"2020-11-21T17:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20801}],"episodeFile":[{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E01.The Rival-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E01.The Rival-WEBDL-1080p.mkv","size":677429097,"dateAdded":"2020-02-08T16:50:58.712673Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7095725,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:40","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12324},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.The DVD + The Responsible-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E01E02.The DVD + The Responsible-WEBDL-1080p.mp4","size":381077780,"dateAdded":"2020-02-08T16:50:58.875866Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63960,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2096399,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12326},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E01E02.The Remote + The Colossus-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E01E02.The Remote + The Colossus-WEBDL-1080p.mp4","size":351104899,"dateAdded":"2020-02-08T16:50:58.954855Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1969275,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12327},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E01E02.The Nemesis + The Egg-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E01E02.The Nemesis + The Egg-WEBDL-1080p.mp4","size":326871697,"dateAdded":"2020-02-08T16:50:59.033722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":111427,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1781902,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12328},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E01E02.The Kids + The Fan-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E01E02.The Kids + The Fan-WEBDL-1080p.mp4","size":325445430,"dateAdded":"2020-02-08T16:50:59.114072Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63988,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1874296,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12329},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E02.The Lady-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E02.The Lady-WEBDL-1080p.mkv","size":659202391,"dateAdded":"2020-02-08T16:50:59.199069Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6870405,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:41","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12330},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E03.The Sucker-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E03.The Sucker-WEBDL-1080p.mkv","size":565489916,"dateAdded":"2020-02-08T16:50:59.257193Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5795146,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:42","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12331},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E03E04.The Third + The Debt-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E03E04.The Third + The Debt-WEBDL-1080p.mp4","size":366493604,"dateAdded":"2020-02-08T16:50:59.308882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64005,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2059085,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12332},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E03E04.The Knights + The Fridge-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E03E04.The Knights + The Fridge-WEBDL-1080p.mp4","size":354074245,"dateAdded":"2020-02-08T16:50:59.389058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63997,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1933860,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12333},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E03E04.The Coach + The Joy-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E03E04.The Coach + The Joy-WEBDL-1080p.mp4","size":342091114,"dateAdded":"2020-02-08T16:50:59.470195Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63981,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1973321,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12334},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E03E04.The Crew + The Others-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E03E04.The Crew + The Others-WEBDL-1080p.mp4","size":328374514,"dateAdded":"2020-02-08T16:50:59.559262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1779978,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12335},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E04.The Vegging-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E04.The Vegging-WEBDL-1080p.mkv","size":588873668,"dateAdded":"2020-02-08T16:50:59.644979Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6092815,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12336},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E05.The One-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E05.The One-WEBDL-1080p.mkv","size":596856488,"dateAdded":"2020-02-08T16:50:59.825852Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6132594,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12338},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E05E06.The End + The Dress-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E05E06.The End + The Dress-WEBDL-1080p.mp4","size":373926222,"dateAdded":"2020-02-08T16:50:59.886012Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63994,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2055042,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12339},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E05E06.The Signature + The Check-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E05E06.The Signature + The Check-WEBDL-1080p.mp4","size":362937710,"dateAdded":"2020-02-08T16:50:59.978035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112031,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1987940,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12340},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E05E06.The Flower + The Banana-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E05E06.The Flower + The Banana-WEBDL-1080p.mp4","size":349185137,"dateAdded":"2020-02-08T16:51:00.075276Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1958118,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12341},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E05E06.The Puppy + The Recipe-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E05E06.The Puppy + The Recipe-WEBDL-1080p.mp4","size":303672135,"dateAdded":"2020-02-08T16:51:00.168649Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63988,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1744685,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12342},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E06.The Father-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E06.The Father-WEBDL-1080p.mkv","size":583129015,"dateAdded":"2020-02-08T16:51:00.260808Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6005807,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12343},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E07.The Cringe-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E07.The Cringe-WEBDL-1080p.mkv","size":616265399,"dateAdded":"2020-02-08T16:51:00.418793Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6400433,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12345},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E07E08.The Name + The Extras-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E07E08.The Name + The Extras-WEBDL-1080p.mp4","size":389795822,"dateAdded":"2020-02-08T16:51:00.480758Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63978,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2257923,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12346},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08.The Quest + The Spoon-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E07E08.The Quest + The Spoon-WEBDL-1080p.mp4","size":388518551,"dateAdded":"2020-02-08T16:51:00.574506Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63997,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2186416,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12347},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E07E08.The Pest + The Sale-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E07E08.The Pest + The Sale-WEBDL-1080p.mp4","size":340753493,"dateAdded":"2020-02-08T16:51:00.665455Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":111928,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1861275,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12348},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E07E08.The Phone + The Job-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E07E08.The Phone + The Job-WEBDL-1080p.mp4","size":320813801,"dateAdded":"2020-02-08T16:51:00.76154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63985,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1746960,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12349},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E08.The Cage-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E08.The Cage-WEBDL-1080p.mkv","size":558505578,"dateAdded":"2020-02-08T16:51:00.85601Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5756818,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12350},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E09.The Faith-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E09.The Faith-WEBDL-1080p.mkv","size":942596891,"dateAdded":"2020-02-08T16:51:00.978725Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10101451,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12352},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E09E10.Halloween + The Treasure-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E09E10.Halloween + The Treasure-WEBDL-1080p.mp4","size":371023532,"dateAdded":"2020-02-08T16:51:01.141854Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64005,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2148485,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12354},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E09E10.The Gift + The Parking-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E09E10.The Gift + The Parking-WEBDL-1080p.mp4","size":335028935,"dateAdded":"2020-02-08T16:51:01.240474Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112181,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1825745,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12355},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E09E10.The Pressure + The Painting-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E09E10.The Pressure + The Painting-WEBDL-1080p.mp4","size":315973047,"dateAdded":"2020-02-08T16:51:01.333506Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63994,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1764835,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12356},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E09E10.The Gripes + The Vacation-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E09E10.The Gripes + The Vacation-WEBDL-1080p.mp4","size":269422263,"dateAdded":"2020-02-08T16:51:01.422811Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63989,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1539519,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12357},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E10.The Candidate-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E10.The Candidate-WEBDL-1080p.mkv","size":641339396,"dateAdded":"2020-02-08T16:51:01.521344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6691140,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12358},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E11.The Anybody-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E11.The Anybody-WEBDL-1080p.mkv","size":613083688,"dateAdded":"2020-02-08T16:51:01.579067Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6365263,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12359},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E11E12.The Laziest + The Ghost-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E11E12.The Laziest + The Ghost-WEBDL-1080p.mp4","size":374471437,"dateAdded":"2020-02-08T16:51:01.754144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2104876,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12361},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E11E12.The Fraud + The Void-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E11E12.The Fraud + The Void-WEBDL-1080p.mp4","size":342799774,"dateAdded":"2020-02-08T16:51:01.852084Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1977457,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12362},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E11E12.The Apology + The Words-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E11E12.The Apology + The Words-WEBDL-1080p.mp4","size":316716065,"dateAdded":"2020-02-08T16:51:01.944855Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1822861,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12363},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E11E12.The Routine + The Upgrade-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E11E12.The Routine + The Upgrade-WEBDL-1080p.mp4","size":310782062,"dateAdded":"2020-02-08T16:51:02.039378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":89694,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1706997,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12364},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E12.The Pact-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E12.The Pact-WEBDL-1080p.mkv","size":613514702,"dateAdded":"2020-02-08T16:51:02.132578Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6387107,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12365},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E13.The Neighbor-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E13.The Neighbor-WEBDL-1080p.mkv","size":597505890,"dateAdded":"2020-02-08T16:51:02.192875Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6208235,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12366},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E13E14.The Mystery + The Prank-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E13E14.The Mystery + The Prank-WEBDL-1080p.mp4","size":379443771,"dateAdded":"2020-02-08T16:51:02.251114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2134647,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12367},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E13E14.The Comic + The Romantic-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E13E14.The Comic + The Romantic-WEBDL-1080p.mp4","size":350616080,"dateAdded":"2020-02-08T16:51:02.436644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":89159,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1950824,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12369},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E13E14.The Skull + The Bet-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E13E14.The Skull + The Bet-WEBDL-1080p.mp4","size":321215152,"dateAdded":"2020-02-08T16:51:02.527296Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63991,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1930083,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12370},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E13E14.The Boss + The Move-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E13E14.The Boss + The Move-WEBDL-1080p.mp4","size":311846802,"dateAdded":"2020-02-08T16:51:02.622794Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63994,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1793032,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12371},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E14.The Shippening-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E14.The Shippening-WEBDL-1080p.mkv","size":566840749,"dateAdded":"2020-02-08T16:51:02.720156Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5855296,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12372},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E15.The Brain-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E15.The Brain-WEBDL-1080p.mkv","size":513091002,"dateAdded":"2020-02-08T16:51:02.784751Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5242868,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12373},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E15E16.The Uploads + The Apprentice-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E15E16.The Uploads + The Apprentice-WEBDL-1080p.mp4","size":396791266,"dateAdded":"2020-02-08T16:51:02.845832Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":88411,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2216603,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12374},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E15E16.The Gi + The Kiss-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E15E16.The Gi + The Kiss-WEBDL-1080p.mp4","size":376240883,"dateAdded":"2020-02-08T16:51:03.038856Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2115145,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12376},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E15E16.The Law + The Allergy-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E15E16.The Law + The Allergy-WEBDL-1080p.mp4","size":362398063,"dateAdded":"2020-02-08T16:51:03.136593Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63986,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2095069,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12377},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E15E16.Christmas + The Watch-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E15E16.Christmas + The Watch-WEBDL-1080p.mp4","size":353092453,"dateAdded":"2020-02-08T16:51:03.231282Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63754,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1976126,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12378},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E16.The Parents-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E16.The Parents-WEBDL-1080p.mkv","size":605396305,"dateAdded":"2020-02-08T16:51:03.330058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6299963,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12379},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E17.The Founder-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E17.The Founder-WEBDL-1080p.mkv","size":509369868,"dateAdded":"2020-02-08T16:51:03.39283Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5197122,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12380},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E17E18.The Party + The Refund-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E17E18.The Party + The Refund-WEBDL-1080p.mp4","size":399122489,"dateAdded":"2020-02-08T16:51:03.550949Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2248044,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12382},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E17E18.The Bumpkin + The Flakers-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E17E18.The Bumpkin + The Flakers-WEBDL-1080p.mp4","size":354115942,"dateAdded":"2020-02-08T16:51:03.657949Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1989812,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12383},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E17E18.The Hug + The Wicked-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E17E18.The Hug + The Wicked-WEBDL-1080p.mp4","size":324932603,"dateAdded":"2020-02-08T16:51:03.755728Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":90277,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1799813,"videoCodec":"x264","videoFps":25.0,"resolution":"1916x1076","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12384},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E17E18.The Mothers + The Password-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E17E18.The Mothers + The Password-WEBDL-1080p.mp4","size":314048657,"dateAdded":"2020-02-08T16:51:04.021259Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63969,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1797119,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12385},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E18.The Schooling-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E18.The Schooling-WEBDL-1080p.mkv","size":519736712,"dateAdded":"2020-02-08T16:51:04.127245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5313286,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12386},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E19.The Intelligence-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E19.The Intelligence-WEBDL-1080p.mkv","size":665183009,"dateAdded":"2020-02-08T16:51:04.193921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6982908,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12387},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E19E20.The Robot + The Picnic-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E19E20.The Robot + The Picnic-WEBDL-1080p.mp4","size":410613458,"dateAdded":"2020-02-08T16:51:04.394144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2314857,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12389},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E19E20.The Traitor + The Origins-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E19E20.The Traitor + The Origins-WEBDL-1080p.mp4","size":365759454,"dateAdded":"2020-02-08T16:51:04.493224Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":93848,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2022142,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12390},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E19E20.The Authority + The Virus-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E19E20.The Authority + The Virus-WEBDL-1080p.mp4","size":353573604,"dateAdded":"2020-02-08T16:51:04.588931Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63993,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2042768,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12391},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E19E20.The Procrastinators + The Shell-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E19E20.The Procrastinators + The Shell-WEBDL-1080p.mp4","size":261268316,"dateAdded":"2020-02-08T16:51:04.68888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63992,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1491128,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12392},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E20.The Potion-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E20.The Potion-WEBDL-1080p.mkv","size":553218418,"dateAdded":"2020-02-08T16:51:04.785382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5702010,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12393},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E21.The Spinoffs-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E21.The Spinoffs-WEBDL-1080p.mkv","size":741395407,"dateAdded":"2020-02-08T16:51:04.847342Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7871736,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12394},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E21E22.The Pony + The Hero-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E21E22.The Pony + The Hero-WEBDL-1080p.mp4","size":438757389,"dateAdded":"2020-02-08T16:51:04.912924Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63991,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2493734,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12395},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E21E22.The Goons + The Secret-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E21E22.The Goons + The Secret-WEBDL-1080p.mp4","size":394801461,"dateAdded":"2020-02-08T16:51:05.017871Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63991,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2222952,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12396},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E21E22.The Burden + The Bros-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E21E22.The Burden + The Bros-WEBDL-1080p.mp4","size":309679008,"dateAdded":"2020-02-08T16:51:05.215435Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63994,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1739851,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12398},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E21E22.The Origins + The Girlfriend-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E21E22.The Origins + The Girlfriend-WEBDL-1080p.mp4","size":298456327,"dateAdded":"2020-02-08T16:51:05.311047Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":88761,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1638579,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12399},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E22.The Transformation-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E22.The Transformation-WEBDL-1080p.mkv","size":477591639,"dateAdded":"2020-02-08T16:51:05.41725Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4835382,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12400},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E23.The Understanding-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E23.The Understanding-WEBDL-1080p.mkv","size":504926447,"dateAdded":"2020-02-08T16:51:05.48169Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5148215,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12401},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E23E24.The Sock + The Genius-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E23E24.The Sock + The Genius-WEBDL-1080p.mp4","size":362644537,"dateAdded":"2020-02-08T16:51:05.641922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1991870,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12403},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E23E24.The Advice + The Signal-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E23E24.The Advice + The Signal-WEBDL-1080p.mp4","size":351667048,"dateAdded":"2020-02-08T16:51:05.741069Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":91735,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1954486,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12404},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E23E24.The Dream + The Sidekick-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E23E24.The Dream + The Sidekick-WEBDL-1080p.mp4","size":309016490,"dateAdded":"2020-02-08T16:51:05.837104Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63989,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1776570,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12405},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E23E24.The Mirror + The Man-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E23E24.The Mirror + The Man-WEBDL-1080p.mp4","size":273763165,"dateAdded":"2020-02-08T16:51:05.936096Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1528116,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12406},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E24.The Ad-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E24.The Ad-WEBDL-1080p.mkv","size":456356118,"dateAdded":"2020-02-08T16:51:06.033118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4591853,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12407},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E25.The Ghouls-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E25.The Ghouls-WEBDL-1080p.mkv","size":594225839,"dateAdded":"2020-02-08T16:51:06.098607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6170677,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12408},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E25E26.The Parasite + The Love-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E25E26.The Parasite + The Love-WEBDL-1080p.mp4","size":361807247,"dateAdded":"2020-02-08T16:51:06.162142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":91300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2010835,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12409},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E25E26.The Photo + The Tag-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E25E26.The Photo + The Tag-WEBDL-1080p.mp4","size":354433239,"dateAdded":"2020-02-08T16:51:06.261076Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63994,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000832,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12410},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E25E26.The Poltergeist + The Mustache-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E25E26.The Poltergeist + The Mustache-WEBDL-1080p.mp4","size":353505565,"dateAdded":"2020-02-08T16:51:06.357855Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63997,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1939328,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12411},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E25E26.The Pizza + The Lie-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E25E26.The Pizza + The Lie-WEBDL-1080p.mp4","size":301088264,"dateAdded":"2020-02-08T16:51:06.458477Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63987,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1727593,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12412},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E26.The Stink-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E26.The Stink-WEBDL-1080p.mkv","size":536438544,"dateAdded":"2020-02-08T16:51:06.624342Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5503956,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12414},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E27.The Awareness-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E27.The Awareness-WEBDL-1080p.mkv","size":460173563,"dateAdded":"2020-02-08T16:51:06.7863Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4629274,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12416},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E27E28.The Awkwardness + The Nest-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E27E28.The Awkwardness + The Nest-WEBDL-1080p.mp4","size":392544724,"dateAdded":"2020-02-08T16:51:06.856155Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":89906,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2196784,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12417},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E27E28.The Date + The Club-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E27E28.The Date + The Club-WEBDL-1080p.mp4","size":369795673,"dateAdded":"2020-02-08T16:51:06.957603Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2031982,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12418},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E27E28.The Butterfly + The Question-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E27E28.The Butterfly + The Question-WEBDL-1080p.mp4","size":338467610,"dateAdded":"2020-02-08T16:51:07.071044Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63944,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1941974,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12419},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E27E28.The Storm + The Lesson-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E27E28.The Storm + The Lesson-WEBDL-1080p.mp4","size":318006768,"dateAdded":"2020-02-08T16:51:07.17614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63990,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1787837,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12420},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E28.The Slip-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E28.The Slip-WEBDL-1080p.mkv","size":415047403,"dateAdded":"2020-02-08T16:51:07.339879Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4108535,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12422},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E29.The Drama-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E29.The Drama-WEBDL-1080p.mkv","size":449046975,"dateAdded":"2020-02-08T16:51:07.472536Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4500079,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12424},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E29E30.The Wand + The Ape-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E29E30.The Wand + The Ape-WEBDL-1080p.mp4","size":422975354,"dateAdded":"2020-02-08T16:51:07.547962Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2334492,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12425},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E29E30.The Points + The Bus-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E29E30.The Points + The Bus-WEBDL-1080p.mp4","size":392120949,"dateAdded":"2020-02-08T16:51:07.642712Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":91806,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2182594,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12426},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E29E30.The Game + The Limit-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E29E30.The Game + The Limit-WEBDL-1080p.mp4","size":318321171,"dateAdded":"2020-02-08T16:51:07.727362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1831654,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12427},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E29E30.The Saint + The Friend-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E29E30.The Saint + The Friend-WEBDL-1080p.mp4","size":306566760,"dateAdded":"2020-02-08T16:51:07.821208Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63927,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1751762,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12428},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E30.The Buddy-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E30.The Buddy-WEBDL-1080p.mkv","size":476928440,"dateAdded":"2020-02-08T16:51:07.977178Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4817128,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12430},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E31.The Possession-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E31.The Possession-WEBDL-1080p.mkv","size":594826844,"dateAdded":"2020-02-08T16:51:08.115155Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6170175,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12432},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E31E32.The Car + The Curse-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E31E32.The Car + The Curse-WEBDL-1080p.mp4","size":379713613,"dateAdded":"2020-02-08T16:51:08.227155Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63993,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2135342,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12433},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E31E32.The Oracle + The Safety-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E31E32.The Oracle + The Safety-WEBDL-1080p.mp4","size":365530599,"dateAdded":"2020-02-08T16:51:08.463067Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63990,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2114548,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12434},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E31E32.The Night + The Misunderstandings-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E31E32.The Night + The Misunderstandings-WEBDL-1080p.mp4","size":344199787,"dateAdded":"2020-02-08T16:51:08.575165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":87821,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1908066,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12435},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E31E32.The Voice + The Promise-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E31E32.The Voice + The Promise-WEBDL-1080p.mp4","size":341996299,"dateAdded":"2020-02-08T16:51:08.665979Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63997,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1972907,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12436},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E32.The Master-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E32.The Master-WEBDL-1080p.mkv","size":624154217,"dateAdded":"2020-02-08T16:51:08.819687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6513830,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12438},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E33.The Silence-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E33.The Silence-WEBDL-1080p.mkv","size":433982327,"dateAdded":"2020-02-08T16:51:08.94121Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4335533,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12440},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E33E34.The Roots + The Blame-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E33E34.The Roots + The Blame-WEBDL-1080p.mp4","size":332894936,"dateAdded":"2020-02-08T16:51:09.003558Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":88714,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1838979,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12441},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E33E34.The Castle + The Boombox-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E33E34.The Castle + The Boombox-WEBDL-1080p.mp4","size":328691435,"dateAdded":"2020-02-08T16:51:09.103728Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63993,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1893082,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12442},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E33E34.The Microwave + The Meddler-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E33E34.The Microwave + The Meddler-WEBDL-1080p.mp4","size":294975539,"dateAdded":"2020-02-08T16:51:09.296181Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1643137,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12443},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E33E34.The Society + The Spoiler-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E33E34.The Society + The Spoiler-WEBDL-1080p.mp4","size":289983908,"dateAdded":"2020-02-08T16:51:09.398549Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63985,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1663454,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12444},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E34.The Future-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E34.The Future-WEBDL-1080p.mkv","size":562946944,"dateAdded":"2020-02-08T16:51:09.556259Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5813981,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12446},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E35.The Wish-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E35.The Wish-WEBDL-1080p.mkv","size":468293257,"dateAdded":"2020-02-08T16:51:09.683367Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4722583,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12448},{"seriesId":4,"seasonNumber":1,"relativePath":"Season 01\/S01E35E36.The Helmet + The Fight-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 01\/S01E35E36.The Helmet + The Fight-WEBDL-1080p.mp4","size":356849779,"dateAdded":"2020-02-08T16:51:09.749024Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2002517,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12449},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E35E36.The Tape + The Sweaters-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E35E36.The Tape + The Sweaters-WEBDL-1080p.mp4","size":345600860,"dateAdded":"2020-02-08T16:51:09.841476Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1994939,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12450},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E35E36.The Countdown + The Nobody-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E35E36.The Countdown + The Nobody-WEBDL-1080p.mp4","size":341154257,"dateAdded":"2020-02-08T16:51:09.934672Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63939,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1958018,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12451},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E35E36.The Slap + The Detective-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E35E36.The Slap + The Detective-WEBDL-1080p.mp4","size":314264118,"dateAdded":"2020-02-08T16:51:10.027795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1734301,"videoCodec":"x264","videoFps":25.0,"resolution":"1916x1076","runTime":"22:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12452},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E36.The Factory-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E36.The Factory-WEBDL-1080p.mkv","size":456174595,"dateAdded":"2020-02-08T16:51:10.183968Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4581984,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12454},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E37.The Agent-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E37.The Agent-WEBDL-1080p.mkv","size":504910945,"dateAdded":"2020-02-08T16:51:10.307093Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5145049,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12456},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 04\/S04E37E38.The Fury + The Compilation-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 04\/S04E37E38.The Fury + The Compilation-WEBDL-1080p.mp4","size":463827645,"dateAdded":"2020-02-08T16:51:10.366976Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":90290,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2610562,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12457},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E37E38.The Downer + The Return-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E37E38.The Downer + The Return-WEBDL-1080p.mp4","size":339444354,"dateAdded":"2020-02-08T16:51:10.460321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63986,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1913882,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12458},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E37E38.The Internet + The Plan-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E37E38.The Internet + The Plan-WEBDL-1080p.mp4","size":336714576,"dateAdded":"2020-02-08T16:51:10.553969Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63997,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1942142,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12459},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E38.The Web-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E38.The Web-WEBDL-1080p.mkv","size":492446687,"dateAdded":"2020-02-08T16:51:10.706731Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4992550,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12461},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E39.The Mess-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E39.The Mess-WEBDL-1080p.mkv","size":493412381,"dateAdded":"2020-02-08T16:51:10.827988Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5015250,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12463},{"seriesId":4,"seasonNumber":2,"relativePath":"Season 02\/S02E39E40.The World + The Finale-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 02\/S02E39E40.The World + The Finale-WEBDL-1080p.mp4","size":333048798,"dateAdded":"2020-02-08T16:51:10.986269Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63992,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1917876,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12465},{"seriesId":4,"seasonNumber":3,"relativePath":"Season 03\/S03E39E40.The Triangle + The Money-WEBDL-1080p.mp4","path":"\/tv\/The Amazing World of Gumball\/Season 03\/S03E39E40.The Triangle + The Money-WEBDL-1080p.mp4","size":333003308,"dateAdded":"2020-02-08T16:51:11.081281Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64003,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1919916,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12466},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E40.The Heart-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E40.The Heart-WEBDL-1080p.mkv","size":581069883,"dateAdded":"2020-02-08T16:51:11.243344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6017630,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12468},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E41.The Revolt-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E41.The Revolt-WEBDL-1080p.mkv","size":461587984,"dateAdded":"2020-02-08T16:51:11.306272Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4646408,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12469},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E42.The Decisions-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E42.The Decisions-WEBDL-1080p.mkv","size":460235422,"dateAdded":"2020-02-08T16:51:11.36969Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4632107,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12470},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E43.The BFFS-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E43.The BFFS-WEBDL-1080p.mkv","size":483336905,"dateAdded":"2020-02-08T16:51:11.429097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4903501,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"11:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12471},{"seriesId":4,"seasonNumber":6,"relativePath":"Season 06\/S06E44.The Inquisition-WEBDL-1080p.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 06\/S06E44.The Inquisition-WEBDL-1080p.mkv","size":512897419,"dateAdded":"2020-02-08T16:51:11.491161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4882686,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"12:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12472},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E03 The Guy.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E03 The Guy.mkv","size":152702416,"dateAdded":"2020-06-09T22:21:38.256919Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418774,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376896,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14086},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E04 The Boredom.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E04 The Boredom.mkv","size":155533677,"dateAdded":"2020-06-09T22:21:38.312619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413691,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375620,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14087},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E05 The Vision.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E05 The Vision.mkv","size":151385675,"dateAdded":"2020-06-09T22:21:38.363116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405276,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376429,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14088},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E06 The Choices.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E06 The Choices.mkv","size":151484276,"dateAdded":"2020-06-09T22:21:38.416925Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":364971,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375440,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14089},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E07 The Code.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E07 The Code.mkv","size":153334066,"dateAdded":"2020-06-09T22:21:38.471171Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429446,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377573,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14090},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E08 The Test.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E08 The Test.mkv","size":147833679,"dateAdded":"2020-06-09T22:21:38.524674Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377575,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14091},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E09 The Slide.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E09 The Slide.mkv","size":153050898,"dateAdded":"2020-06-09T22:21:38.576Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":393767,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1372191,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14092},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E10 The Loophole.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E10 The Loophole.mkv","size":152431032,"dateAdded":"2020-06-09T22:21:38.631739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415292,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377029,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14093},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E11 The Copycats.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E11 The Copycats.mkv","size":155565217,"dateAdded":"2020-06-09T22:21:38.684266Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418866,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375969,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14094},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E12 The Potato.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E12 The Potato.mkv","size":151770194,"dateAdded":"2020-06-09T22:21:38.738029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":409426,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375435,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14095},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E13 The Fuss.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E13 The Fuss.mkv","size":152972675,"dateAdded":"2020-06-09T22:21:38.789117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375284,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14096},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E14 The Outside.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E14 The Outside.mkv","size":150879649,"dateAdded":"2020-06-09T22:21:38.858815Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398907,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377748,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14097},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E15 The Vase.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E15 The Vase.mkv","size":156191871,"dateAdded":"2020-06-09T22:21:38.910118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425638,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376249,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14098},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E16 The Matchmaker.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E16 The Matchmaker.mkv","size":152800028,"dateAdded":"2020-06-09T22:21:38.965502Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416810,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377227,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14099},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E17 The Box.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E17 The Box.mkv","size":155149084,"dateAdded":"2020-06-09T22:21:39.019761Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413481,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375779,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14100},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E18 The Console.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E18 The Console.mkv","size":152390089,"dateAdded":"2020-06-09T22:21:39.075454Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414437,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377623,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14101},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E19 The Ollie.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E19 The Ollie.mkv","size":156029770,"dateAdded":"2020-06-09T22:21:39.126294Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421486,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376669,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14102},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E20 The Catfish.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E20 The Catfish.mkv","size":150927043,"dateAdded":"2020-06-09T22:21:39.180323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":397098,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376859,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14103},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E21 The Cycle.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E21 The Cycle.mkv","size":153741760,"dateAdded":"2020-06-09T22:21:39.233764Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":392600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376618,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14104},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E22 The Stars.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E22 The Stars.mkv","size":152724363,"dateAdded":"2020-06-09T22:21:39.288554Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423390,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376500,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14105},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E23 The Grades.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E23 The Grades.mkv","size":153341548,"dateAdded":"2020-06-09T22:21:39.347989Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376147,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14106},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E24 The Diet.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E24 The Diet.mkv","size":152845547,"dateAdded":"2020-06-09T22:21:39.419846Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421077,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377423,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14107},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E25 The Ex.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E25 The Ex.mkv","size":155524417,"dateAdded":"2020-06-09T22:21:39.472686Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419615,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1374829,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14108},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E26 The Sorcerer.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E26 The Sorcerer.mkv","size":153226322,"dateAdded":"2020-06-09T22:21:39.527493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423656,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377002,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14109},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E27 The Menu.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E27 The Menu.mkv","size":157067128,"dateAdded":"2020-06-09T22:21:39.583313Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431179,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376114,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14110},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E28 The Uncle.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E28 The Uncle.mkv","size":153080175,"dateAdded":"2020-06-09T22:21:39.637853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426904,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375836,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14111},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E29 The Heist.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E29 The Heist.mkv","size":153474750,"dateAdded":"2020-06-09T22:21:39.692245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429677,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377171,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14112},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E30 The Weirdo.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E30 The Weirdo.mkv","size":155455767,"dateAdded":"2020-06-09T22:21:39.750586Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415973,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376679,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14113},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E31 The Singing.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E31 The Singing.mkv","size":132905890,"dateAdded":"2020-06-09T22:21:39.801806Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156293,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375780,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14114},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E32 The Best.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E32 The Best.mkv","size":129832353,"dateAdded":"2020-06-09T22:21:39.857095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153227,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376376,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14115},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E33 The Worst.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E33 The Worst.mkv","size":158171364,"dateAdded":"2020-06-09T22:21:39.909658Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":445435,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377003,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14116},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E34 The Deal.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E34 The Deal.mkv","size":153289091,"dateAdded":"2020-06-09T22:21:39.963992Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427506,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376950,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14117},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E35 The Petals.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E35 The Petals.mkv","size":154911926,"dateAdded":"2020-06-09T22:21:40.015629Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406685,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376534,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14118},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E36 The Puppets.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E36 The Puppets.mkv","size":154073011,"dateAdded":"2020-06-09T22:21:40.071555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436055,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1377748,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14119},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E37 The Nuisance.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E37 The Nuisance.mkv","size":159082118,"dateAdded":"2020-06-09T22:21:40.125817Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":452217,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376497,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14120},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E38 The Line.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E38 The Line.mkv","size":154261644,"dateAdded":"2020-06-09T22:21:40.177683Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438295,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1376759,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14121},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E39 The List.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E39 The List.mkv","size":149733308,"dateAdded":"2020-06-09T22:21:40.235407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430782,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1374894,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14122},{"seriesId":4,"seasonNumber":5,"relativePath":"Season 05\/S05E40 The News.mkv","path":"\/tv\/The Amazing World of Gumball\/Season 05\/S05E40 The News.mkv","size":146865113,"dateAdded":"2020-06-09T22:21:40.290795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1375598,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14123},{"seriesId":4,"seasonNumber":4,"relativePath":"Season 05\/[AliQ] The Amazing World of Gumball S04E39E40 The Stories - The Disaster [1080p WEB-DL.src Sub].mp4","path":"\/tv\/The Amazing World of Gumball\/Season 05\/[AliQ] The Amazing World of Gumball S04E39E40 The Stories - The Disaster [1080p WEB-DL.src Sub].mp4","size":385016273,"dateAdded":"2021-09-08T13:25:20.263368Z","releaseGroup":"AliQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":90787,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2146872,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18916}],"queue":[]},"29":{"series":{"title":"Hellsing: The Dawn","alternateTitles":[],"sortTitle":"hellsing dawn","status":"ended","ended":true,"overview":"Hellsing is a Japanese manga series written and illustrated by Kouta Hirano. Hirano began publishing chapter of prequel series, Hellsing: The Dawn, in special edition of Young KIng OURs. and release as of September 2008. \/\/ Plot: In this prequel to Hellsing Ultimate (2006), Hellsing agents Alucard and young Walter, the resourceful Hellsing family butler, are sent to Nazi-occupied Europe in 1944 to stop the Nazis' attempt to create a vampire army.","previousAiring":"2012-12-25T15:00:00Z","network":"Anime OAV","airTime":"00:00","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/30\/poster.jpg?lastWrite=637644943818376740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/333548\/posters\/60fafc5cd613f.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/30\/fanart.jpg?lastWrite=636747176359025320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5baffddb351e7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-12-25T15:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":861821155,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Hellsing - The Dawn","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":333548,"tvRageId":0,"tvMazeId":0,"firstAired":"2011-07-27T00:00:00Z","seriesType":"standard","cleanTitle":"hellsingdawn","imdbId":"tt2878716","titleSlug":"hellsing-the-dawn","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Fantasy","Horror"],"tags":[],"added":"2018-05-01T16:08:01.3931332Z","ratings":{"votes":29,"value":7.0},"statistics":{"seasonCount":1,"episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":861821155,"percentOfEpisodes":100.0},"id":30},"episodes":[{"seriesId":30,"episodeFileId":1744,"seasonNumber":1,"episodeNumber":1,"title":"A Supplementary of Hellsing","airDate":"2011-07-27","airDateUtc":"2011-07-26T15:00:00Z","overview":"Young Walter and Alucard in his coffin are flown to Nazi-occupied Poland in 1944 to stop the Nazis' attempt to create a vampire army. Meanwhile, the Major arrives at the Nazi facility to see how the Doctor's work is progressing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2390},{"seriesId":30,"episodeFileId":1745,"seasonNumber":1,"episodeNumber":2,"title":"A Supplementary of Hellsing II","airDate":"2012-02-15","airDateUtc":"2012-02-14T15:00:00Z","overview":"Young Walter on top of Alucard's coffin breaks into the Nazi facility and interrupts Major's dinner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2391},{"seriesId":30,"episodeFileId":1746,"seasonNumber":1,"episodeNumber":3,"title":"A Supplementary of Hellsing III","airDate":"2012-12-26","airDateUtc":"2012-12-25T15:00:00Z","overview":"As Walter's fight with Major's supernatural driver, the Captain, escalates unfavorably, Alucard finally shows up, although in the shape of a small girl, and assists Walter. Also, Arthur Hellsing's loose behavior angers Hugh Islands.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2392}],"episodeFile":[{"seriesId":30,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Supplementary of Hellsing-Bluray-1080p.mkv","path":"\/tv\/Hellsing - The Dawn\/Season 01\/S01E01.A Supplementary of Hellsing-Bluray-1080p.mkv","size":234329274,"dateAdded":"2018-10-10T21:55:14.149103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"9:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1744},{"seriesId":30,"seasonNumber":1,"relativePath":"Season 01\/S01E02.A Supplementary of Hellsing II-Bluray-1080p.mkv","path":"\/tv\/Hellsing - The Dawn\/Season 01\/S01E02.A Supplementary of Hellsing II-Bluray-1080p.mkv","size":222653790,"dateAdded":"2018-10-10T21:55:14.176941Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"7:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1745},{"seriesId":30,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A Supplementary of Hellsing III-Bluray-1080p.mkv","path":"\/tv\/Hellsing - The Dawn\/Season 01\/S01E03.A Supplementary of Hellsing III-Bluray-1080p.mkv","size":404838091,"dateAdded":"2018-10-10T21:55:14.207119Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"10:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1746}],"queue":[]},"30":{"series":{"title":"FLCL","alternateTitles":[{"title":"Furi Kuri","sceneSeasonNumber":1},{"title":"Fooley Cooley","sceneSeasonNumber":1},{"title":"Fooly Cooly","sceneSeasonNumber":1},{"title":"FLCL Progressive","sceneSeasonNumber":2},{"title":"FLCL Alternative","sceneSeasonNumber":3}],"sortTitle":"flcl","status":"ended","ended":true,"overview":"Naota's life is confined to going to school and living with his father and grandfather. The usually tranquil life in Mabase is rudely interrupted by the arrival of Haruhara Haruko, who bursts on the scene by running Naota over with her Vespa scooter and hitting him on the head with a Rickenbacker 4003 bass guitar. Later, Naota is shocked to find Haruko working in his house as a live-in maid.\r\n\r\nHaruko's search for the alien being Atomsk puts her at odds with Medical Mechanica. At the same time, Naota is being watched by Commander Amarao. The Commander believes Haruko is in love with Atomsk and Medical Mechanica is out to conquer the galaxy. The fortuitous circumstances get Naota involved in a three-way battle between Haruko, Amarao and Medical Mechanica.","previousAiring":"2018-10-14T03:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/25\/banner.jpg?lastWrite=636747176339785740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78878-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/25\/poster.jpg?lastWrite=637406633701366220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78878-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/25\/fanart.jpg?lastWrite=637103832677354150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78878-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2001-03-17T04:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":12078501375,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-07-08T03:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8833828896,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-14T03:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8932434222,"percentOfEpisodes":100.0}}],"year":2000,"path":"\/tv\/FLCL","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":78878,"tvRageId":3572,"tvMazeId":2772,"firstAired":"2000-04-26T00:00:00Z","seriesType":"standard","cleanTitle":"flcl","imdbId":"tt0279077","titleSlug":"flcl","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Comedy","Science Fiction"],"tags":[],"added":"2018-04-14T23:55:25.5446658Z","ratings":{"votes":1893,"value":8.4},"statistics":{"seasonCount":3,"episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":20,"sizeOnDisk":29844764493,"percentOfEpisodes":100.0},"id":25},"episodes":[{"seriesId":25,"episodeFileId":1363,"seasonNumber":1,"episodeNumber":1,"title":"Fooly Cooly","airDate":"2000-04-26","airDateUtc":"2000-04-27T03:30:00Z","overview":"Naota Nanadaba is just an ordinary boy, with an ordinary life, with ordinary people around him, living in an ordinary town... or at least he wishes that were all true! Between his eccentric father and unconventional grandfather and putting up with the advances of his older brother's teenage ex-girlfriend Mamimi, Naota isn't leading a boring life at all! To make matters worse, a pink-haired, and apparently totally insane, girl named Haruko Haruhara shows up and turns Naota's life completely upside down!! What does Haruko want from Naota? And, why is he suddenly growing a large horn on his head?!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1903},{"seriesId":25,"episodeFileId":1366,"seasonNumber":1,"episodeNumber":2,"title":"Fire Starter","airDate":"2000-06-21","airDateUtc":"2000-06-22T03:30:00Z","overview":"Naota tries to get his life back to normal, but that's easier said than done when Haruko and a TV-headed robot are living with him! Even worse, he's growing another horn!! \r\n\r\nMeanwhile, a string of fires have been occurring across town. Not coincidentally, Mamimi has become obsessed with the game \"Fire Starter\", as well as Naota's robot manservant, whom she calls Canti. What connection is there to the recent fires and the one that burned down the old elementary school years ago? And, why does Mamimi call her new pet, a little black kitten, \"Ta-Kun\", the same name she calls Naota?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1904},{"seriesId":25,"episodeFileId":1371,"seasonNumber":1,"episodeNumber":3,"title":"Marquis de Carabas","airDate":"2000-08-23","airDateUtc":"2000-08-24T03:30:00Z","overview":"Naota's classmate, Eri Ninamori, is the perfect girl; she's emotionally calm, a rational thinker, and is very rich to boot. However, all is not well as she has problems of her own. Her father, the mayor of Mabase, is involved in both a sex scandal and a lawsuit with the Medical Mechanica Corporation. In addition, she has to convince Naota to take the title role he was chosen for in their class production of \"Puss in Boots\". She soon learns about Naota's \"secret\", his horns, which, this time, resemble cat ears. But, what levels will she stoop to get her way?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1905},{"seriesId":25,"episodeFileId":1372,"seasonNumber":1,"episodeNumber":4,"title":"Furi Kiri (Full Swing)","airDate":"2000-10-25","airDateUtc":"2000-10-26T03:30:00Z","overview":"After Haruko helps an amateur baseball team beat Mabase's down-on-their-luck team, the Martians, in a game, Shigekuni retaliates by drafting Canti onto the Martians. Meanwhile, Haruko and Kamon are \"fooling around\", and Naota isn't sure whether to be disgraced.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1906},{"seriesId":25,"episodeFileId":1375,"seasonNumber":1,"episodeNumber":5,"title":"Brittle Bullet","airDate":"2000-12-21","airDateUtc":"2000-12-22T04:30:00Z","overview":"It's Naota and Haruko Vs. Kamon and Canti in a battle with airsoft guns. As this deadly fight wages on, Kamon challenges Naota to a duel! The winner is left undetermined, as some of Naota's friends interrupt the duel and talk to him about how he saved the city from the satellite the other day. This causes the power to get to his head and he begins to act manly. This disgusts Mamimi and the others. To make matters worse, another Medical Mechanica comes out to threaten the city. Will Naota handle the situation as calmly as did the last time? Or, will his over-inflated ego get in the way?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1907},{"seriesId":25,"episodeFileId":1378,"seasonNumber":1,"episodeNumber":6,"title":"FLCLimax","airDate":"2001-03-16","airDateUtc":"2001-03-17T04:30:00Z","overview":"Ever since Naota's Medical Mechanica came out of his head and was destroyed, it has been looming over the factory, in the form of a giant hand, causing mist to enshroud the entire city. To make matters worse, Haruko and Canti are on the run from Amarao, who attempts to find the Terminal Core before they do. Naota once again runs into Amarao who offers some strange advice. Things soon go insane as Haruko is preparing for the final battle, in which Naota is expected to unknowingly play the lead role. Though in a city as normal as Mabase, it's really nothing new to Naota; or is it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1908},{"seriesId":25,"episodeFileId":1365,"seasonNumber":2,"episodeNumber":1,"title":"RE: Start","airDate":"2018-06-02","airDateUtc":"2018-06-03T03:30:00Z","overview":"14-year-old protagonist Hidomi and her classmate Ide come up against some chaos-loving alien beings (with very, very good music, too).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1909},{"seriesId":25,"episodeFileId":1368,"seasonNumber":2,"episodeNumber":2,"title":"Freebie Honey","airDate":"2018-06-09","airDateUtc":"2018-06-10T03:30:00Z","overview":"Hidomi wakes up from yet another dream of her becoming a Zombie. At school, Raharu gives her a handout to bring over to Ide, who didn't show up to class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1910},{"seriesId":25,"episodeFileId":1370,"seasonNumber":2,"episodeNumber":3,"title":"Stone Skipping","airDate":"2018-06-16","airDateUtc":"2018-06-17T03:30:00Z","overview":"Crazy things happen during Hidomi's NO activation, and she is now left with a cheerful and happy personality, which is the total opposite of her real self. The only way to bring her back to normal is to destroy the cables of the giant iron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1911},{"seriesId":25,"episodeFileId":1374,"seasonNumber":2,"episodeNumber":4,"title":"LooPQR","airDate":"2018-06-23","airDateUtc":"2018-06-24T03:30:00Z","overview":"Marco is the only one that seems to think that happy Hidomi is attractive. While he's aware that Ide is in love with her, he works part time to buy her a charm. Meanwhile, Jinyu and Raharu scheme to go up to the plant in her Bel Aire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1912},{"seriesId":25,"episodeFileId":1377,"seasonNumber":2,"episodeNumber":5,"title":"Fool on the Planet","airDate":"2018-06-30","airDateUtc":"2018-07-01T03:30:00Z","overview":"Having made damage to the plant, the iron now stands up straight. Raharu tells the class that she's happily married and now pregnant. The only way to become happy is to go to the amusement park (run by Tonkichi).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1913},{"seriesId":25,"episodeFileId":1379,"seasonNumber":2,"episodeNumber":6,"title":"Our Running","airDate":"2018-07-07","airDateUtc":"2018-07-08T03:30:00Z","overview":"Trying to get Ide back, Hidomi attacks Raharu physically first then verbally. She tells Raharu that she is acting immature because she knows that she is using Hidomi because Raharu is in love with Atomsk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1914},{"seriesId":25,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Special her Alternative","airDate":"2018-09-07","airDateUtc":"2018-09-08T03:30:00Z","overview":"High school girl Kana Kawamoto and her friends Pez, San, and Aman lived their usual and fun lives until Haruko, the space policeman riding a motorcycle, broke into their lives. At the same time, this world is being invaded by aliens...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20216},{"seriesId":25,"episodeFileId":1364,"seasonNumber":3,"episodeNumber":1,"title":"Flying Memory","airDate":"2018-09-08","airDateUtc":"2018-09-09T03:30:00Z","overview":"Kana Koumoto, a cheerful 17-year-old, can often be a klutz and nosey; one day, while hanging out with her best friends, Pets, Mossan and Hijiri, they start making a rocket using empty soda bottles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1915},{"seriesId":25,"episodeFileId":1367,"seasonNumber":3,"episodeNumber":2,"title":"Grown-Up Wannabe","airDate":"2018-09-15","airDateUtc":"2018-09-16T03:30:00Z","overview":"One morning, Kana and her besties witness Hijiri kissing a college student Toshio inside his car. Acting more mature than any of her classmates, Hijiri suggests Kana and her besties to do a photo shoot with Toshio.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1916},{"seriesId":25,"episodeFileId":1369,"seasonNumber":3,"episodeNumber":3,"title":"Freestyle Collection","airDate":"2018-09-22","airDateUtc":"2018-09-23T03:30:00Z","overview":"Mossan is the most mature of all 4. With a passion of becoming a designer, she has been working outside of school. Upon discovering her working towards a fashion contest, Kana feels the urge to help her, which rubs her the wrong way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1917},{"seriesId":25,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Special her Progressive","airDate":"2018-09-28","airDateUtc":"2018-09-29T03:30:00Z","overview":"Hibari Nong Ri Dumei is a girl who likes to wear headphones all day long. Her daily life is nothing more than going to school, helping the restaurant at home and listening to music. Day after day, it was dull and dull, until one day a woman with a strange guitar appeared...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20215},{"seriesId":25,"episodeFileId":1373,"seasonNumber":3,"episodeNumber":4,"title":"Pit-a-Pat","airDate":"2018-09-29","airDateUtc":"2018-09-30T03:30:00Z","overview":"The 4 girls come watch the basketball game that their Sasaki is a member of. Kana has been secretly in love with Sasaki, whom Haruko ends up making out with. This triggers Kana's NO to activate, but she notices that and runs away.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1918},{"seriesId":25,"episodeFileId":1376,"seasonNumber":3,"episodeNumber":5,"title":"Shake It Off","airDate":"2018-10-06","airDateUtc":"2018-10-07T03:30:00Z","overview":"One hot summer day, the 4 girls and Haruko are playing in the pool. They notice that Pets is missing. Kana later hears from her classmate Aida that Pet's family is very rich and they are moving to Mars.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1919},{"seriesId":25,"episodeFileId":4298,"seasonNumber":3,"episodeNumber":6,"title":"Full Flat","airDate":"2018-10-13","airDateUtc":"2018-10-14T03:30:00Z","overview":"Depressed, Kana flips over the collection of photos she took with her besties. The next day, the 3 girls gather by the beach as they watch the rocket Pets is supposed to be on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1920}],"episodeFile":[{"seriesId":25,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Fooly Cooly-Bluray-1080p.mkv","path":"\/tv\/FLCL\/Season 01\/S01E01.Fooly Cooly-Bluray-1080p.mkv","size":1648681283,"dateAdded":"2018-10-10T21:43:42.095499Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ Japanese \/ \/ English","audioStreamCount":5,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:38","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ "},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1363},{"seriesId":25,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Flying Memory-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 03\/S03E01.Flying Memory-HDTV-1080p.mkv","size":1490882296,"dateAdded":"2018-10-10T21:43:42.122009Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1364},{"seriesId":25,"seasonNumber":2,"relativePath":"Season 02\/S02E01.RE- Start-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 02\/S02E01.RE- Start-HDTV-1080p.mkv","size":1450224737,"dateAdded":"2018-10-10T21:43:42.149846Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"22:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1365},{"seriesId":25,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Fire Starter-Bluray-1080p.mkv","path":"\/tv\/FLCL\/Season 01\/S01E02.Fire Starter-Bluray-1080p.mkv","size":2078741717,"dateAdded":"2018-10-10T21:43:42.176229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ Japanese \/ \/ English","audioStreamCount":5,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:29","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ "},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1366},{"seriesId":25,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Grown-Up Wannabe-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 03\/S03E02.Grown-Up Wannabe-HDTV-1080p.mkv","size":1489115929,"dateAdded":"2018-10-10T21:43:42.202648Z","releaseGroup":"Up","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1367},{"seriesId":25,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Freebie Honey-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 02\/S02E02.Freebie Honey-HDTV-1080p.mkv","size":1487189351,"dateAdded":"2018-10-10T21:43:42.228958Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1368},{"seriesId":25,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Freestyle Collection-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 03\/S03E03.Freestyle Collection-HDTV-1080p.mkv","size":1490099160,"dateAdded":"2018-10-10T21:43:42.255163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1369},{"seriesId":25,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Stone Skipping-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 02\/S02E03.Stone Skipping-HDTV-1080p.mkv","size":1487404500,"dateAdded":"2018-10-10T21:43:42.281263Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1370},{"seriesId":25,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Marquis de Carabas-Bluray-1080p.mkv","path":"\/tv\/FLCL\/Season 01\/S01E03.Marquis de Carabas-Bluray-1080p.mkv","size":1468062391,"dateAdded":"2018-10-10T21:43:42.307612Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ Japanese \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:26","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ "},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1371},{"seriesId":25,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Furi Kiri (Full Swing)-Bluray-1080p.mkv","path":"\/tv\/FLCL\/Season 01\/S01E04.Furi Kiri (Full Swing)-Bluray-1080p.mkv","size":2417891971,"dateAdded":"2018-10-10T21:43:42.334857Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ Japanese \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:53","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ "},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1372},{"seriesId":25,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Pit-a-Pat-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 03\/S03E04.Pit-a-Pat-HDTV-1080p.mkv","size":1488570291,"dateAdded":"2018-10-10T21:43:42.361048Z","releaseGroup":"Pat","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1373},{"seriesId":25,"seasonNumber":2,"relativePath":"Season 02\/S02E04.LooPQR-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 02\/S02E04.LooPQR-HDTV-1080p.mkv","size":1481255730,"dateAdded":"2018-10-10T21:43:42.387292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1374},{"seriesId":25,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Brittle Bullet-Bluray-1080p.mkv","path":"\/tv\/FLCL\/Season 01\/S01E05.Brittle Bullet-Bluray-1080p.mkv","size":1940126910,"dateAdded":"2018-10-10T21:43:42.413718Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ Japanese \/ ","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:36","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ "},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1375},{"seriesId":25,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Shake It Off-WEBDL-1080p.mkv","path":"\/tv\/FLCL\/Season 03\/S03E05.Shake It Off-WEBDL-1080p.mkv","size":1481255641,"dateAdded":"2018-10-10T21:43:42.440087Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125661,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1376},{"seriesId":25,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Fool on the Planet-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 02\/S02E05.Fool on the Planet-HDTV-1080p.mkv","size":1448593073,"dateAdded":"2018-10-10T21:43:42.466169Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1377},{"seriesId":25,"seasonNumber":1,"relativePath":"Season 01\/S01E06.FLCLimax-Bluray-1080p.mkv","path":"\/tv\/FLCL\/Season 01\/S01E06.FLCLimax-Bluray-1080p.mkv","size":2524997103,"dateAdded":"2018-10-10T21:43:42.492248Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ Japanese \/ \/ English","audioStreamCount":5,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"30:53","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ "},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1378},{"seriesId":25,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Our Running-HDTV-1080p.mkv","path":"\/tv\/FLCL\/Season 02\/S02E06.Our Running-HDTV-1080p.mkv","size":1479161505,"dateAdded":"2018-10-10T21:43:42.519498Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1379},{"seriesId":25,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Full Flat-WEBDL-1080p.mkv","path":"\/tv\/FLCL\/Season 03\/S03E06.Full Flat-WEBDL-1080p.mkv","size":1492510905,"dateAdded":"2018-10-14T12:16:48.451973Z","sceneName":"www.scenetime.com - FLCL.S03E06.Full.Flat.1080p.WEB-DL.AAC2.0.H.264","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125661,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8499968,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4298}],"queue":[]},"31":{"series":{"title":"Aggretsuko","alternateTitles":[],"sortTitle":"aggretsuko","status":"continuing","ended":false,"overview":"Frustrated with her thankless office job, Retsuko the Red Panda copes with her daily struggles by belting out death metal karaoke after work.","previousAiring":"2020-08-27T21:00:00Z","network":"Netflix","airTime":"17:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/27\/banner.jpg?lastWrite=636747176256307560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/346744-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/27\/poster.jpg?lastWrite=637317757375655580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b2f8532ad05c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/27\/fanart.jpg?lastWrite=637348968959082130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5ca8e3a91b1c9.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-04-20T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":6889630710,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-06-14T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7069360107,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-08-27T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":12955547915,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Aggretsuko","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":15,"tvdbId":346744,"tvRageId":0,"tvMazeId":35565,"firstAired":"2018-04-20T00:00:00Z","seriesType":"standard","cleanTitle":"aggretsuko","imdbId":"tt8019444","titleSlug":"aggretsuko","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Anime","Comedy"],"tags":[],"added":"2018-04-27T23:17:33.9610932Z","ratings":{"votes":58,"value":10.0},"statistics":{"seasonCount":3,"episodeFileCount":30,"episodeCount":30,"totalEpisodeCount":31,"sizeOnDisk":26914538732,"percentOfEpisodes":100.0},"id":27},"episodes":[{"seriesId":27,"episodeFileId":388,"seasonNumber":1,"episodeNumber":1,"title":"A Day in the Life of Retsuko","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Office worker Retsuko lets out her daily frustrations with her job by going to a karaoke bar and singing death metal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":445},{"seriesId":27,"episodeFileId":389,"seasonNumber":1,"episodeNumber":2,"title":"A Good, Hard-working Girl","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Retsuko experiences a glimmer of hope when her free-spirited friend, Puko, proposes starting up her own business.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":446},{"seriesId":27,"episodeFileId":390,"seasonNumber":1,"episodeNumber":3,"title":"Short-Timer","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Retsuko becomes more inclined to stand up to her superiors, which backfires when she learns her dream job isn't what she hoped it would be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":447},{"seriesId":27,"episodeFileId":391,"seasonNumber":1,"episodeNumber":4,"title":"Walking Down the Aisle","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Feeling she can have a happy life by marrying someone with a huge salary, Retsuko takes up yoga classes, where she meets her co-workers Gori and Washimi.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":448},{"seriesId":27,"episodeFileId":392,"seasonNumber":1,"episodeNumber":5,"title":"Exposed","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Gori and Washimi end up taking Retsuko to her usual karaoke bar, where her penchant for death metal is exposed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":449},{"seriesId":27,"episodeFileId":393,"seasonNumber":1,"episodeNumber":6,"title":"Stoking Rebellion","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Hearing about Retsuko's troubles with her boss, Ton, Washimi uses her connections with the company president to help her out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":450},{"seriesId":27,"episodeFileId":394,"seasonNumber":1,"episodeNumber":7,"title":"The Duel","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Ton acts uncharacteristically nice following his warning, only for him to discover who it was who reported him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":451},{"seriesId":27,"episodeFileId":395,"seasonNumber":1,"episodeNumber":8,"title":"The Out of Pocket Prince","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Retsuko attends an office mixer, where she meets Resasuke from the sales department.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":452},{"seriesId":27,"episodeFileId":396,"seasonNumber":1,"episodeNumber":9,"title":"A Rosy World","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Retsuko falls head over heels for Resasuke, becoming oblivious to how bad things really are.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":453},{"seriesId":27,"episodeFileId":397,"seasonNumber":1,"episodeNumber":10,"title":"The Dream Ends","airDate":"2018-04-20","airDateUtc":"2018-04-20T21:00:00Z","overview":"Retsuko is forced to realise that she can't keep ignoring the pain she is going through.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":454},{"seriesId":27,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"We Wish You a Metal Christmas","airDate":"2018-12-20","airDateUtc":"2018-12-20T22:00:00Z","overview":"Retsuko's newfound obsession with posting pics on her social media account threatens to ruin her Christmas, while Haida still hopes to spend Christmas with her.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":9424},{"seriesId":27,"episodeFileId":14779,"seasonNumber":2,"episodeNumber":1,"title":"Time to Grow Up","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Retsuko becomes increasingly frustrated with her mother's overbearing ways. Director Ton demands the team be tough on their incoming new hire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11552},{"seriesId":27,"episodeFileId":14780,"seasonNumber":2,"episodeNumber":2,"title":"The New Hire Named Anai","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Without Retsuko's approval, her mother sets up an arranged marriage meeting. At first glance, new hire Anai seems like a nice and eager employee.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11553},{"seriesId":27,"episodeFileId":14781,"seasonNumber":2,"episodeNumber":3,"title":"Double Moratorium","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Director Ton berates Retsuko for Anai's lack of progress on the job. Meanwhile, Anai continues to react very badly to any feedback from Retsuko.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11554},{"seriesId":27,"episodeFileId":14782,"seasonNumber":2,"episodeNumber":4,"title":"Unavoidable Impact","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Retsuko and Anai have to host a food stall for the company\u2019s Family Appreciation Day event, but Retsuko does all the work herself to avoid conflict.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":11555},{"seriesId":27,"episodeFileId":14783,"seasonNumber":2,"episodeNumber":5,"title":"United Front","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Everybody hates Retsuko\u2019s badly-prepared yakisoba. Anai doesn\u2019t lift a finger to help, until Kabae gives him some words of encouragement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":11556},{"seriesId":27,"episodeFileId":14784,"seasonNumber":2,"episodeNumber":6,"title":"Unknown Future","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Hearing that Shirota has officially moved on, Retsuko lets herself be talked into attending a matchmaking event -- where she runs into Director Gori.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":11557},{"seriesId":27,"episodeFileId":14785,"seasonNumber":2,"episodeNumber":7,"title":"Growing Affection","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Now with a driver's license, Retsuko takes Gori and Washimi on a road trip, but things go south when the two ladies get into a heated argument.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":11558},{"seriesId":27,"episodeFileId":14786,"seasonNumber":2,"episodeNumber":8,"title":"He Lives Above the Clouds","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"The unassuming Tadano turns out to be a rising tech mogul. He offers to take Retsuko out for ramen, but it's nothing like she imagined.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":11559},{"seriesId":27,"episodeFileId":14787,"seasonNumber":2,"episodeNumber":9,"title":"She's Dreaming","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"Retsuko begins to dream of a happy future with Tadano. She joins him on a business-related golf outing, and is horrified when Director Ton shows up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":11560},{"seriesId":27,"episodeFileId":14788,"seasonNumber":2,"episodeNumber":10,"title":"Wonderful Life","airDate":"2019-06-14","airDateUtc":"2019-06-14T21:00:00Z","overview":"The world learns all about Retsuko\u2019s high profile relationship and Tadano declares that he wants to be with her forever -- without getting married.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":11561},{"seriesId":27,"episodeFileId":16363,"seasonNumber":3,"episodeNumber":1,"title":"The Blessings of Life","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"With her romance over, Retsuko fills the void with a virtual boyfriend. Her savings take a massive hit when she spends recklessly on in-game purchases.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":18621},{"seriesId":27,"episodeFileId":16364,"seasonNumber":3,"episodeNumber":2,"title":"Deep in the Hole","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"Retsuko inadvertently backs into a parked car, damaging the other vehicle. Desperate for repair money, she reaches out to Gori for a loan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":19473},{"seriesId":27,"episodeFileId":16365,"seasonNumber":3,"episodeNumber":3,"title":"A Sheltered Life","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"To repay her debt, Retsuko starts working as the accounting manager for an underground idol group. In reality, she's at their beck and call.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":19474},{"seriesId":27,"episodeFileId":16368,"seasonNumber":3,"episodeNumber":4,"title":"Winds of Change","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"The OTMGirls turn a profit for the first time thanks to Retsuko\u2019s business acumen. Haida hits it off with Inui after an unexpected encounter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":19475},{"seriesId":27,"episodeFileId":16369,"seasonNumber":3,"episodeNumber":5,"title":"An Urchin in the Desert","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"After seeing Retsuko sing, Hyodo proposes that Retsuko become the lead vocalist, demoting Manaka in the process.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":19476},{"seriesId":27,"episodeFileId":16370,"seasonNumber":3,"episodeNumber":6,"title":"Crossroads","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"The group\u2019s popularity soars after a blogger's favorable review. Concerned by Retsuko's recent odd behavior, Haida secretly tails her to Hokkaido.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":19477},{"seriesId":27,"episodeFileId":16371,"seasonNumber":3,"episodeNumber":7,"title":"An Impenetrable Wall","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"The OTMGirls receive an offer to perform at a rock festival. Hyodo rebrands the idols as a band, and the members must now learn to play instruments.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":19478},{"seriesId":27,"episodeFileId":16373,"seasonNumber":3,"episodeNumber":8,"title":"Bursting Her Bubble","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"Manaka\u2019s devotion to instrumental mastery inspires others to step up. Haida agrees to teach Retsuko guitar, but he invites Inui over on the same day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":19479},{"seriesId":27,"episodeFileId":16374,"seasonNumber":3,"episodeNumber":9,"title":"The End of the Moratorium","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"Inui opens up to Haida about her feelings, but he's unable to respond. Director Ton lectures Retsuko when he learns she has a side gig.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":19480},{"seriesId":27,"episodeFileId":16376,"seasonNumber":3,"episodeNumber":10,"title":"When You Count to Ten","airDate":"2020-08-27","airDateUtc":"2020-08-27T21:00:00Z","overview":"She's shaken, but Retsuko acts normal in front of her bandmates after a deranged fan accosts her. Haida struggles to choose between Retsuko and Inui.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":19481}],"episodeFile":[{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Day in the Life of Retsuko-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E01.A Day in the Life of Retsuko-WEBDL-1080p.mkv","size":675761242,"dateAdded":"2018-10-10T21:16:05.653448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":388},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E02.A Good, Hard-working Girl-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E02.A Good, Hard-working Girl-WEBDL-1080p.mkv","size":676041513,"dateAdded":"2018-10-10T21:16:05.680381Z","releaseGroup":"working","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":389},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Short-timer-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E03.Short-timer-WEBDL-1080p.mkv","size":644888462,"dateAdded":"2018-10-10T21:16:05.705424Z","releaseGroup":"timer","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":390},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Walking Down the Aisle-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E04.Walking Down the Aisle-WEBDL-1080p.mkv","size":642713349,"dateAdded":"2018-10-10T21:16:05.731149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":391},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Exposed-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E05.Exposed-WEBDL-1080p.mkv","size":730024235,"dateAdded":"2018-10-10T21:16:05.755888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":392},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Stoking Rebellion-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E06.Stoking Rebellion-WEBDL-1080p.mkv","size":644589779,"dateAdded":"2018-10-10T21:16:05.787103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":393},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Duel-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E07.The Duel-WEBDL-1080p.mkv","size":702416481,"dateAdded":"2018-10-10T21:16:05.816076Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":394},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Out of Pocket Prince-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E08.The Out of Pocket Prince-WEBDL-1080p.mkv","size":671330072,"dateAdded":"2018-10-10T21:16:05.840402Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":395},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E09.A Rosy World-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E09.A Rosy World-WEBDL-1080p.mkv","size":617270003,"dateAdded":"2018-10-10T21:16:05.8642Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:38","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":396},{"seriesId":27,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Dream Ends-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 01\/S01E10.The Dream Ends-WEBDL-1080p.mkv","size":884595574,"dateAdded":"2018-10-10T21:16:05.888193Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"18:26","scanType":"Progressive","subtitles":"English \/ Dutch \/ Spanish \/ French \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":397},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Time to Grow Up-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E01.Time to Grow Up-WEBDL-1080p.mkv","size":631590344,"dateAdded":"2020-07-01T11:41:51.904043Z","sceneName":"Aggretsuko.S02E01.Time.to.Grow.Up.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14779},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The New Hire Named Anai-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E02.The New Hire Named Anai-WEBDL-1080p.mkv","size":678635667,"dateAdded":"2020-07-01T11:41:57.14657Z","sceneName":"Aggretsuko.S02E02.The.New.Hire.Named.Anai.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14780},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Double Moratorium-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E03.Double Moratorium-WEBDL-1080p.mkv","size":728437581,"dateAdded":"2020-07-01T11:42:00.137219Z","sceneName":"Aggretsuko.S02E03.Double.Moratorium.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:22","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14781},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Unavoidable Impact-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E04.Unavoidable Impact-WEBDL-1080p.mkv","size":678394644,"dateAdded":"2020-07-01T11:42:06.250874Z","sceneName":"Aggretsuko.S02E04.Unavoidable.Impact.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14782},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E05.United Front-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E05.United Front-WEBDL-1080p.mkv","size":763128782,"dateAdded":"2020-07-01T11:42:12.272193Z","sceneName":"Aggretsuko.S02E05.United.Front.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14783},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Unknown Future-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E06.Unknown Future-WEBDL-1080p.mkv","size":682819998,"dateAdded":"2020-07-01T11:42:18.320067Z","sceneName":"Aggretsuko.S02E06.Unknown.Future.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14784},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Growing Affection-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E07.Growing Affection-WEBDL-1080p.mkv","size":611609708,"dateAdded":"2020-07-01T11:42:28.590807Z","sceneName":"Aggretsuko.S02E07.Growing.Affection.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14785},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E08.He Lives Above the Clouds-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E08.He Lives Above the Clouds-WEBDL-1080p.mkv","size":654573088,"dateAdded":"2020-07-01T11:42:34.294063Z","sceneName":"Aggretsuko.S02E08.He.Lives.Above.the.Clouds.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14786},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E09.She's Dreaming-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E09.She's Dreaming-WEBDL-1080p.mkv","size":659604920,"dateAdded":"2020-07-01T11:42:39.87883Z","sceneName":"Aggretsuko.S02E09.Shes.Dreaming.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:12","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Tur"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14787},{"seriesId":27,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Wonderful Life-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 02\/S02E10.Wonderful Life-WEBDL-1080p.mkv","size":980565375,"dateAdded":"2020-07-01T11:42:50.203911Z","sceneName":"Aggretsuko.S02E10.Wonderful.Life.1080p.NF.WEB-DL.DDP5.1.x264-QOQ","releaseGroup":"QOQ","language":{"id":8,"name":"Japanese"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"19:52","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":14788},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Blessings of Life-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E01.The Blessings of Life-WEBDL-1080p.mkv","size":1170462600,"dateAdded":"2020-11-23T15:48:21.265664Z","sceneName":"Aggretsuko.S03E01.The.Blessings.of.Life.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:26","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16363},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Deep in the Hole-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E02.Deep in the Hole-WEBDL-1080p.mkv","size":1166490470,"dateAdded":"2020-11-23T15:50:10.321673Z","sceneName":"Aggretsuko.S03E02.Deep.in.the.Hole.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:24","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16364},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E03.A Sheltered Life-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E03.A Sheltered Life-WEBDL-1080p.mkv","size":1416917925,"dateAdded":"2020-11-23T15:51:56.955623Z","sceneName":"Aggretsuko.S03E03.A.Sheltered.Life.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:46","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16365},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Winds of Change-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E04.Winds of Change-WEBDL-1080p.mkv","size":1132898748,"dateAdded":"2020-11-23T15:53:43.684466Z","sceneName":"Aggretsuko.S03E04.Winds.of.Change.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"14:38","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16368},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E05.An Urchin in the Desert-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E05.An Urchin in the Desert-WEBDL-1080p.mkv","size":1300067132,"dateAdded":"2020-11-23T15:55:30.808308Z","sceneName":"Aggretsuko.S03E05.An.Urchin.in.the.Desert.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:06","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16369},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Crossroads-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E06.Crossroads-WEBDL-1080p.mkv","size":1244025421,"dateAdded":"2020-11-23T15:57:17.470462Z","sceneName":"Aggretsuko.S03E06.Crossroads.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:24","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16370},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E07.An Impenetrable Wall-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E07.An Impenetrable Wall-WEBDL-1080p.mkv","size":1219244934,"dateAdded":"2020-11-23T15:59:03.726412Z","sceneName":"Aggretsuko.S03E07.An.Impenetrable.Wall.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:40","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16371},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Bursting Her Bubble-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E08.Bursting Her Bubble-WEBDL-1080p.mkv","size":1159206071,"dateAdded":"2020-11-23T16:00:52.30405Z","sceneName":"Aggretsuko.S03E08.Bursting.Her.Bubble.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"15:52","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16373},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The End of the Moratorium-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E09.The End of the Moratorium-WEBDL-1080p.mkv","size":1217596853,"dateAdded":"2020-11-23T16:02:42.588062Z","sceneName":"Aggretsuko.S03E09.The.End.of.the.Moratorium.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:04","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16374},{"seriesId":27,"seasonNumber":3,"relativePath":"Season 03\/S03E10.When You Count to Ten-WEBDL-1080p.mkv","path":"\/tv\/Aggretsuko\/Season 03\/S03E10.When You Count to Ten-WEBDL-1080p.mkv","size":1928637761,"dateAdded":"2020-11-23T16:04:28.824393Z","sceneName":"Aggretsuko.S03E10.When.You.Count.to.Ten.1080p.WEB-DL.DDP5.1.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese \/ English \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Chinese","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"23:52","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16376}],"queue":[]},"32":{"series":{"title":"Hellsing","alternateTitles":[],"sortTitle":"hellsing","status":"ended","ended":true,"overview":"Hellsing is a Japanese manga series written and illustrated by Kouta Hirano. An Anime Series was produced by Gonzo. Directed by Umanosuke Iida, and it was broadcast on Japan's Fuji Televison. \/\/ Plot: Vampires exist. It is the duty of Hellsing, an organization sponsored by the British government, to hide that frightening fact and protect the blissfully unaware populace. Along with its own personal army, Hellsing also has a few secret weapons. Alucard, an incredibly powerful vampire, has been controlled by Hellsing for years. Although he dislikes being a servant to the Hellsing family, he certainly enjoys his job as Hellsing\u2019s vampire exterminator. Seras is a fledgling vampire and a former police woman. Although reluctant to embrace her new self, she is still a valuable member of the organization. Integra Hellsing, the current leader, is usually fully capable of fulfilling her duty, but lately, vampire activity has been on the rise. Unfortunately, the cause is more alarming than anything she could have imagined...","previousAiring":"2002-01-16T03:00:00Z","network":"Fuji TV","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/29\/banner.jpg?lastWrite=636747176358665330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71278-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/29\/poster.jpg?lastWrite=637103832838751230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71278-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/29\/fanart.jpg?lastWrite=637103832813751680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71278-14.jpg"}],"seasons":[{"seasonNumber":1,"monitored":false,"statistics":{"previousAiring":"2002-01-16T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2563164125,"percentOfEpisodes":100.0}}],"year":2001,"path":"\/tv\/Hellsing","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":71278,"tvRageId":0,"tvMazeId":25,"firstAired":"2001-10-10T00:00:00Z","seriesType":"standard","cleanTitle":"hellsing","imdbId":"tt0325547","titleSlug":"hellsing","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Fantasy","Horror"],"tags":[],"added":"2018-05-01T16:07:42.7391529Z","ratings":{"votes":2007,"value":7.9},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2563164125,"percentOfEpisodes":100.0},"id":29},"episodes":[{"seriesId":29,"episodeFileId":6299,"seasonNumber":1,"episodeNumber":1,"title":"The Undead","airDate":"2001-10-10","airDateUtc":"2001-10-10T03:00:00Z","overview":"Integra Hellsing takes command of a small Hellsing unit in Cheddar after reports of people in the village going missing by a seemingly normal priest reaches the authorities. After D11 teams were deployed to investigate with several deaths, Alucard is deployed. Seras Victoria, a female D11 operator, is fighting her ex-D11 colleagues that turned into zombies after getting into a previous fight with ghouls. Alucard eliminates the ghouls and the priest, who was the vampire, when Seras was wounded in the gunfight. Alucard turns her into a vampire after he bites her neck to save her life.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2377},{"seriesId":29,"episodeFileId":6300,"seasonNumber":1,"episodeNumber":2,"title":"Club M","airDate":"2001-10-17","airDateUtc":"2001-10-17T03:00:00Z","overview":"Seras' new life in the Hellsing organization is a bit tough. Having been counted as 'lost' at the Cheddar incident, she now serves for a group dedicated to the eradication of vampires. Though she seems to have trouble adjusting, many are tolerant of her, and her new life, though the tolerance only goes so far. And she'll soon have a chance to prove herself, when a new threat is discovered, in the form of Rafe and Jessica.\r\nThe two lovers are having a lot of fun! Killing families, using their blood to write obscenities and blasphemy on the wall - it's all good fun. That is, until their actions catch the eye of Hellsing, and particularly Arucard, who has no tolerance for the 'low-class' vampires. Seras' chance to prove herself becomes apparent when she's ordered to shoot Jessica, though she hesitates - Jessica's only a young girl. Would killing her make her any better, or make her worse than the monsters Hellsing hunts?","hasFile":true,"monitored":false,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2378},{"seriesId":29,"episodeFileId":6301,"seasonNumber":1,"episodeNumber":3,"title":"Sword Dancer","airDate":"2001-10-24","airDateUtc":"2001-10-24T03:00:00Z","overview":"Something odd is happening - vampires seem to be growing in number. And when an Italian college student is found to have a computer chip, which has apparently made him into an 'artificial' vampire, it raises more than a few eyebrows. Even though the chip is removed, the student revives, killing many on his search for his lover, who he was caught in the act of making one of his own. Hellsing moves to put a stop to this, but there seems to be more than one person interested in the boy.\r\nHellsing's agents are killed, and Seras is severely wounded. Not by the student, but by a man called Alexander Anderson, a member of the Vatican's section 13 - the Iscariot organization. Though having the same mission as Hellsing, the two organizations are sworn enemies, and when Arucard shows up, a heated battle takes place. One would think a human would be no match for the likes of a vampire, Anderson proves to have more than one trick up his sleeve.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2379},{"seriesId":29,"episodeFileId":6302,"seasonNumber":1,"episodeNumber":4,"title":"Innocent as a Human","airDate":"2001-10-31","airDateUtc":"2001-10-31T03:00:00Z","overview":"The Hellsing Organization sets out to investigate a series of \"\"snuff films\"\" floating about the Internet, after footage of one of their own being killed begins to make the rounds. Meanwhile, Seras deploys with her unit, now under the command of a former SAS officer who seem to have a particularly distasteful attitude towards her, to silence an apartment building crawling with ghouls. As the raid unfolds, the secrecy surrounding the very existence of the Hellsing Organization is thrown in jeopardy when a mole broadcasts footage of the assault on live television.\r\nSeeking answers, Seras sets out on her own to investigate the scene of the previous night's raid for clues about what transpired. During her investigation, she manages to uncover clues about the origin of the snuff films and goes to put a stop to it. Seras isn't the only one on the trail, as Arucard and the Hellsing Organization are also on the scene to attend to the vicious vampire behind the camera, and the TV investigative rep","hasFile":true,"monitored":false,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2380},{"seriesId":29,"episodeFileId":6303,"seasonNumber":1,"episodeNumber":5,"title":"Brotherhood","airDate":"2001-11-07","airDateUtc":"2001-11-07T03:00:00Z","overview":"Seras is still having a hard time dealing with the fact that she's a vampire, but is slowly adapting. However, the real bad news is the violent and crazy Valentine Brothers who decide to take out the Hellsing crew once and for all by means of infiltrating their headquarters with their Ghoul Army.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2381},{"seriesId":29,"episodeFileId":6304,"seasonNumber":1,"episodeNumber":6,"title":"Dead Zone","airDate":"2001-11-14","airDateUtc":"2001-11-14T03:00:00Z","overview":"Picking up where Brotherhood left off. Luke and Jan, the Valentine Brothers, lay siege to the headquarters of the Hellsing organization, the Royal Order of Religious Knights. After numerous humans have been killed and eaten by an army of ghouls, Victoria, Walter, and Arucard finally get around to striking back. Victoria and Walter eliminate hundreds of ghouls with a combination of deadly threads and heavy artillery. The lead flies when Arucard and Luke face off, but Luke is devoured by a canine monster Arucard summons up. Jan sets himself afire rather than reveal the mastermind of their plot to Sir Integra Hellsing.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2382},{"seriesId":29,"episodeFileId":6305,"seasonNumber":1,"episodeNumber":7,"title":"Duel","airDate":"2001-11-21","airDateUtc":"2001-11-21T03:00:00Z","overview":"More than half of the members of the Royal Order of Religious Knights were massacred due to the last attack on them that was conducted by the Valentine Brothers. Sir Integra Hellsing, Arucard, and Seras must now hunt down the perpetrators. The suspects include the Vatican's Iscariot Organization. Arucard must do battle once again with the notorious Alexander Anderson.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2383},{"seriesId":29,"episodeFileId":6306,"seasonNumber":1,"episodeNumber":8,"title":"Kill House","airDate":"2001-11-28","airDateUtc":"2001-11-28T03:00:00Z","overview":"Victoria learns more about whoever is making the \"artificial vampirization catalyst semiconductor\" or \"freak chips\" that turn humans into second-class ghouls.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2384},{"seriesId":29,"episodeFileId":6307,"seasonNumber":1,"episodeNumber":9,"title":"Red Rose Vertigo","airDate":"2001-12-05","airDateUtc":"2001-12-05T03:00:00Z","overview":"Alucard meets a new enemy. that could be more powerful than he. An original undead, Incognito. And things take a drastic turn for the worst when Sir Integra's life is in jeopardy.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2385},{"seriesId":29,"episodeFileId":6308,"seasonNumber":1,"episodeNumber":10,"title":"Master of Monster","airDate":"2001-12-12","airDateUtc":"2001-12-12T03:00:00Z","overview":"Almost commiting suicide, Integra is being operated on to save her life. While the operation is going on, we see the history of Integra's ascension to power. We learn that her uncle tried to take her father's place as head of the Hellsing organization, and in attempt to assume power, tried to kill off Integra while Walter was away (presumably on duty). Integra recalls her father's words of her going to a prison cell on the bottom floor if she ever found herself in a moment of insurmountable peril. There she finds Arucard, while at the same time found and attacked by her uncle and associates. After being shot in the shoulder, her blood awakens Arucard, who quickly takes care of her uncle's goons, and recognizes her as her father's successor. As her first encounter with Arucard concludes, she awakens from her state to find that the operation was a success... Walter has already set up her afternoon tea for her.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2386},{"seriesId":29,"episodeFileId":6309,"seasonNumber":1,"episodeNumber":11,"title":"Transcend Force","airDate":"2001-12-19","airDateUtc":"2001-12-19T03:00:00Z","overview":"With the freak problems getting much worse, the Royal Knights arrange a meeting at Westminster with Integra to discuss the matter. In addition, the Queen will be meeting with them so they can conduct a ceremony with Integra. Because of the danger that the freaks may pose, the media is told that the meeting will take place at the Tower of London while in truth Integra's ritual is at the Hellsing castle. What is at the tower are Fargason and his men waiting for the freaks. However, it is they who are being waited on as Incognito and his freaks attack the tower. While waiting for the Queen, Alucard butts in and says that her queen isn't coming and heads off to fight.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2387},{"seriesId":29,"episodeFileId":6310,"seasonNumber":1,"episodeNumber":12,"title":"Total Destruction","airDate":"2002-01-09","airDateUtc":"2002-01-09T03:00:00Z","overview":"All out war breaks out at the Tower of London and Integra's meeting with her majesty is cancelled. The remaining Hellsing members are at the decoy spot of the meeting, battling ghouls of the S.A.S. from Red House Vertigo. Due to the vast coverage of the \"terrorist attacks\" and the required secrecy of the undead, Hellsing organization is pinned by an unknwon source in the media as the terrorist organization itself. The British military is called in to stop these \"terrorists.\" Fargason purposely gets himself killed so he looked like a terrorist, preventing the media from investigating the London Tower destruction any further, thus keeping both the vampires and Hellsing out of the public eye (for now). Seras Victoria is finally makes it to the tower only to see Fargason get shot. After paying her final respects, she grabs her Halkonnen and rushes into the tower area. While that is happening, Alucard was making his way through the tower to meet with Incognito for one big battle.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2388},{"seriesId":29,"episodeFileId":6311,"seasonNumber":1,"episodeNumber":13,"title":"Hellfire","airDate":"2002-01-16","airDateUtc":"2002-01-16T03:00:00Z","overview":"This episode opens with the fierce battle between Incognito and Lord Alucard. Eventually, as the battle ensues, Incognito manages to \"destroy\" Alucard with his own \"bullets that store the power of the human God\". Near the beginning of this battle Ceras Victoria became injured and realizes she must drink blood to heal herself, she discovers her first taste of true blood from her fallen master. Disgusted at her display of ignorance, Incognito leaves the scene to summon a demon from Hell.\r\nIncognito manages to summon Set, a snake-like creature who is the Egyptian God of Evil and of Chaos, the Desert, and Foreign Lands, from which he plans to merge his body with and develop insurmountable levels of power.\r\nAs Integra Hellsing flees, her servant and closest friend, Walter, sacrifices himself so that Integra might live. Unfortunately for Walter, his sacrafice seems to be in vein as Integra is captured by Incognito and used to assist in the summoning of Set. As her blood is drained by the No","hasFile":true,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2389}],"episodeFile":[{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Undead-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E01.The Undead-SDTV.mkv","size":231219871,"dateAdded":"2019-01-06T00:21:13.043257Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":958438,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6299},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Club M-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E02.Club M-SDTV.mkv","size":177190815,"dateAdded":"2019-01-06T00:21:13.084675Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":646464,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6300},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Sword Dancer-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E03.Sword Dancer-SDTV.mkv","size":207842598,"dateAdded":"2019-01-06T00:21:13.131955Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":821875,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6301},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Innocent as a Human-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E04.Innocent as a Human-SDTV.mkv","size":201514257,"dateAdded":"2019-01-06T00:21:13.172517Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":785621,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6302},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Brotherhood-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E05.Brotherhood-SDTV.mkv","size":231556001,"dateAdded":"2019-01-06T00:21:13.213341Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":961212,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6303},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Dead Zone-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E06.Dead Zone-SDTV.mkv","size":192846115,"dateAdded":"2019-01-06T00:21:13.255744Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":734429,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6304},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Duel-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E07.Duel-SDTV.mkv","size":192633160,"dateAdded":"2019-01-06T00:21:13.30196Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":735852,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6305},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Kill House-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E08.Kill House-SDTV.mkv","size":111935488,"dateAdded":"2019-01-06T00:21:13.342151Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":254714,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6306},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Red Rose Vertigo-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E09.Red Rose Vertigo-SDTV.mkv","size":196273339,"dateAdded":"2019-01-06T00:21:34.661635Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":756746,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6307},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Master of Monster-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E10.Master of Monster-SDTV.mkv","size":190407632,"dateAdded":"2019-01-06T00:21:34.702037Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":721742,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6308},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Transcend Force-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E11.Transcend Force-SDTV.mkv","size":205938386,"dateAdded":"2019-01-06T00:21:34.749331Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":812883,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6309},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Total Destruction-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E12.Total Destruction-SDTV.mkv","size":175021063,"dateAdded":"2019-01-06T00:21:34.789988Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":633000,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6310},{"seriesId":29,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Hellfire-SDTV.mkv","path":"\/tv\/Hellsing\/Season 01\/S01E13.Hellfire-SDTV.mkv","size":248785400,"dateAdded":"2019-01-06T00:21:34.830697Z","releaseGroup":"RH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1082323,"videoCodec":"h264","videoFps":29.97,"resolution":"716x480","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6311}],"queue":[]},"33":{"series":{"title":"Hilda","alternateTitles":[],"sortTitle":"hilda","status":"continuing","ended":false,"overview":"Fearless, free-spirited Hilda finds new friends, adventure and magical creatures when she leaves her enchanted forest home and journeys to the city.","previousAiring":"2020-12-14T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/40\/banner.jpg?lastWrite=637102721911460050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5b9e158e16ba0.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/40\/poster.jpg?lastWrite=637413570236673740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c48791cdc64c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/40\/fanart.jpg?lastWrite=637100123855674420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b34ab6384219.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-09-21T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9461679576,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-12-14T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":10052499922,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Hilda","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":24,"tvdbId":349643,"tvRageId":0,"tvMazeId":25910,"firstAired":"2018-09-21T00:00:00Z","seriesType":"standard","cleanTitle":"hilda","imdbId":"tt6385540","titleSlug":"hilda","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Family"],"tags":[],"added":"2018-10-05T18:48:05.1153896Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":19514179498,"percentOfEpisodes":100.0},"id":40},"episodes":[{"seriesId":40,"episodeFileId":12689,"seasonNumber":1,"episodeNumber":1,"title":"Chapter 1: The Hidden People","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"Tiny, invisible people threaten Hilda's fun and adventurous life in the wilderness with her mother and pet deer-fox, Twig.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":17274},{"seriesId":40,"episodeFileId":12690,"seasonNumber":1,"episodeNumber":2,"title":"Chapter 2: The Midnight Giant","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"Hilda reaches out to a sad and lonely giant while her mum, worried about the threats they've received, mulls over a move to the city of Trolberg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":17275},{"seriesId":40,"episodeFileId":12691,"seasonNumber":1,"episodeNumber":3,"title":"Chapter 3: The Bird Parade","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"Encouraged by her mother to make new friends on the playground, Hilda instead buddies up to an injured bird that has lost his memory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":17276},{"seriesId":40,"episodeFileId":12692,"seasonNumber":1,"episodeNumber":4,"title":"Chapter 4: The Sparrow Scouts","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"After joining the Sparrow Scouts, Hilda partners with new pals Frida and David to clean up a park, little realizing what's lurking underground.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":17277},{"seriesId":40,"episodeFileId":12693,"seasonNumber":1,"episodeNumber":5,"title":"Chapter 5: The Troll Rock","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"On parent-teacher night, Hilda springs into action when she discovers David's pet rock project hides a dangerous secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":17278},{"seriesId":40,"episodeFileId":12694,"seasonNumber":1,"episodeNumber":6,"title":"Chapter 6: The Nightmare Spirit","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"When David blames his nightmares on Hilda and her hair-raising exploits, she decides to try and help him face his fears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":17279},{"seriesId":40,"episodeFileId":12695,"seasonNumber":1,"episodeNumber":7,"title":"Chapter 7: The Lost Clan","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"On a quest to earn their Sparrow Scouts botany badges, Hilda, David and Frida make a surprising discovery when they search for a rare plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":17280},{"seriesId":40,"episodeFileId":12696,"seasonNumber":1,"episodeNumber":8,"title":"Chapter 8: The Tide Mice","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"Hilda realizes the importance of being detail-oriented when she casts a spell from a book of enchantments -- and fails to read the fine print.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":17281},{"seriesId":40,"episodeFileId":12697,"seasonNumber":1,"episodeNumber":9,"title":"Chapter 9: The Ghost","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"Frida's messy room and missing book lead the gang on a ghost hunt that ends up putting their growing friendship to the test.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":17282},{"seriesId":40,"episodeFileId":12698,"seasonNumber":1,"episodeNumber":10,"title":"Chapter 10: The Storm","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"When her favorite radio weather reporter goes silent amid a raging blizzard, Hilda decides to investigate, with David and the Raven in tow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":17283},{"seriesId":40,"episodeFileId":12699,"seasonNumber":1,"episodeNumber":11,"title":"Chapter 11: The House in the Woods","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"Alone and lost in the wilderness, Hilda bumps into an old friend and asks for help getting home; back in Trolberg, her worried mum looks for her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":17284},{"seriesId":40,"episodeFileId":12700,"seasonNumber":1,"episodeNumber":12,"title":"Chapter 12: The Nisse","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"On the eve of an overnight camping trip, Hilda tries to help a down-and-out house spirit; Frida makes new friends; a mysterious beast prowls Trolberg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":17285},{"seriesId":40,"episodeFileId":12701,"seasonNumber":1,"episodeNumber":13,"title":"Chapter 13: The Black Hound","airDate":"2018-09-21","airDateUtc":"2018-09-21T07:00:00Z","overview":"As fear grips the city over the Black Hound, Hilda makes it her mission to help Tontu, even if it means having less time to earn Sparrow Scout badges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":17286},{"seriesId":40,"episodeFileId":16859,"seasonNumber":2,"episodeNumber":1,"title":"Chapter 1: The Troll Circle","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Hilda's essay about her close encounter with a troll wins her the chance to tag along with Trolberg's new head of the safety patrol, Erik Ahlberg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20055},{"seriesId":40,"episodeFileId":16860,"seasonNumber":2,"episodeNumber":2,"title":"Chapter 2: The Draugen","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"A quest to uncover secret information about Ahlberg leads Hilda on a high-seas adventure with the Wood Man that lands them in a boatload of trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20057},{"seriesId":40,"episodeFileId":16861,"seasonNumber":2,"episodeNumber":3,"title":"Chapter 3: The Witch","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"After Hilda and Frida come across a magical portal at the library, they must team up with the librarian in a race against time to find a missing book.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20058},{"seriesId":40,"episodeFileId":16862,"seasonNumber":2,"episodeNumber":4,"title":"Chapter 4: The Eternal Warriors","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"David confronts his many fears when he stumbles into a ferocious battle during an overnight Sparrow Scouts camping trip with Hilda and Frida.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20059},{"seriesId":40,"episodeFileId":16885,"seasonNumber":2,"episodeNumber":5,"title":"Chapter 5: The Windmill","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"On a bird-watching expedition, Hilda, Frida and David run into meteorologist Victoria Van Gale, whose calm new life makes one of them very suspicious.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20233},{"seriesId":40,"episodeFileId":16886,"seasonNumber":2,"episodeNumber":6,"title":"Chapter 6: The Old Bells of Trolberg","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Chaos comes to Trolberg when the bell system begins to ring every hour, inspiring Hilda and friends to hatch an elaborate scheme to quiet the noise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20234},{"seriesId":40,"episodeFileId":16887,"seasonNumber":2,"episodeNumber":7,"title":"Chapter 7: The Beast of Cauldron Island","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Hilda and Frida launch an in-depth investigation to prove the fire-breathing resident of Cauldron Island isn't responsible for a wave of boat attacks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20235},{"seriesId":40,"episodeFileId":16888,"seasonNumber":2,"episodeNumber":8,"title":"Chapter 8: The Fifty Year Night","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Hilda learns all too well that actions have consequences after she discovers a way to travel back in time \u2014 and decides to make a few changes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":20236},{"seriesId":40,"episodeFileId":16889,"seasonNumber":2,"episodeNumber":9,"title":"Chapter 9: The Deerfox","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"After Hilda's deer-fox companion Twig leaves home and runs into the wilderness, Hilda and her mum set off on a search that stirs bittersweet memories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":20237},{"seriesId":40,"episodeFileId":16890,"seasonNumber":2,"episodeNumber":10,"title":"Chapter 10: The Yule Lads","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"On their way to Trolberg's Winter Festival, Hilda, Frida and David come across a group of odd little fellows who are on the hunt for naughty kids.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":20238},{"seriesId":40,"episodeFileId":16891,"seasonNumber":2,"episodeNumber":11,"title":"Chapter 11: The Jorts Incident","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Hilda and pals gear up for a magical mission: to reverse an enchantment that's taken over the headquarters of the local snack food company, Jorts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":20239},{"seriesId":40,"episodeFileId":16892,"seasonNumber":2,"episodeNumber":12,"title":"Chapter 12: The Replacement","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Desperate times call for desperate measures as Alfur faces questions from the Elf Kingdom over his exciting reports from Trolberg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":20240},{"seriesId":40,"episodeFileId":16893,"seasonNumber":2,"episodeNumber":13,"title":"Chapter 13: The Stone Forest","airDate":"2020-12-14","airDateUtc":"2020-12-14T08:00:00Z","overview":"Hilda, her mum and Twig look for a way out of a mysterious forest full of trolls, while a worried David and Frida journey out of Trolberg to find them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":20241}],"episodeFile":[{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Chapter 1- The Hidden People-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E01.Chapter 1- The Hidden People-WEBDL-1080p.mkv","size":618489171,"dateAdded":"2020-03-12T17:24:40.017605Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2726701,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12689},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Chapter 2- The Midnight Giant-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E02.Chapter 2- The Midnight Giant-WEBDL-1080p.mkv","size":697433109,"dateAdded":"2020-03-12T17:24:40.047552Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3151373,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12690},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Chapter 3- The Bird Parade-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E03.Chapter 3- The Bird Parade-WEBDL-1080p.mkv","size":787065551,"dateAdded":"2020-03-12T17:24:40.078733Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3631807,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:04","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12691},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Chapter 4- The Sparrow Scouts-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E04.Chapter 4- The Sparrow Scouts-WEBDL-1080p.mkv","size":697677972,"dateAdded":"2020-03-12T17:24:40.110108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3152704,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12692},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Chapter 5- The Troll Rock-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E05.Chapter 5- The Troll Rock-WEBDL-1080p.mkv","size":644637503,"dateAdded":"2020-03-12T17:24:40.141743Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2844883,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12693},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Chapter 6- The Nightmare Spirit-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E06.Chapter 6- The Nightmare Spirit-WEBDL-1080p.mkv","size":755809901,"dateAdded":"2020-03-12T17:24:40.17375Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3462166,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:04","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12694},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Chapter 7- The Lost Clan-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E07.Chapter 7- The Lost Clan-WEBDL-1080p.mkv","size":853819444,"dateAdded":"2020-03-12T17:24:40.205611Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3987964,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:06","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12695},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Chapter 8- The Tide Mice-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E08.Chapter 8- The Tide Mice-WEBDL-1080p.mkv","size":670983665,"dateAdded":"2020-03-12T17:24:40.237003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2992117,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12696},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Chapter 9- The Ghost-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E09.Chapter 9- The Ghost-WEBDL-1080p.mkv","size":755678634,"dateAdded":"2020-03-12T17:24:40.268615Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3461455,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:04","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12697},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Chapter 10- The Storm-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E10.Chapter 10- The Storm-WEBDL-1080p.mkv","size":854864671,"dateAdded":"2020-03-12T17:24:40.300108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4007199,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12698},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Chapter 11- The House in the Woods-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E11.Chapter 11- The House in the Woods-WEBDL-1080p.mkv","size":698304769,"dateAdded":"2020-03-12T17:24:40.331703Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3156112,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12699},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Chapter 12- The Nisse-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E12.Chapter 12- The Nisse-WEBDL-1080p.mkv","size":700018760,"dateAdded":"2020-03-12T17:24:40.363337Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3139269,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12700},{"seriesId":40,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Chapter 13- The Black Hound-WEBDL-1080p.mkv","path":"\/tv\/Hilda\/Season 01\/S01E13.Chapter 13- The Black Hound-WEBDL-1080p.mkv","size":726896426,"dateAdded":"2020-03-12T17:24:40.394874Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3284376,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:12","scanType":"Progressive","subtitles":"English \/ Dutch \/ Japanese \/ Portuguese \/ Italian \/ Polish \/ Portuguese \/ Chinese \/ Korean \/ Swedish \/ Finnish \/ French \/ Arabic \/ Russian \/ Norwegian \/ Danish \/ German \/ Chinese \/ Indonesian \/ Turkish \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12701},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E01.Chapter.1.The.Troll.Circle.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E01.Chapter.1.The.Troll.Circle.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":689061287,"dateAdded":"2020-12-14T15:19:06.0996Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16859},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E02.Chapter.2.The.Draugen.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E02.Chapter.2.The.Draugen.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":810956516,"dateAdded":"2020-12-14T15:19:06.156539Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16860},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E03.Chapter.3.The.Witch.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E03.Chapter.3.The.Witch.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":810714018,"dateAdded":"2020-12-14T15:19:06.217106Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16861},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E04.Chapter.4.The.Eternal.Warriors.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E04.Chapter.4.The.Eternal.Warriors.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":778150882,"dateAdded":"2020-12-14T15:19:06.280016Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16862},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E05.Chapter.5.The.Windmill.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E05.Chapter.5.The.Windmill.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":777531734,"dateAdded":"2020-12-15T15:15:45.484451Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16885},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E06.Chapter.6.The.Old.Bells.of.Trolberg.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E06.Chapter.6.The.Old.Bells.of.Trolberg.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":717063608,"dateAdded":"2020-12-15T15:15:45.504622Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16886},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E07.Chapter.7.The.Beast.of.Cauldron.Island.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E07.Chapter.7.The.Beast.of.Cauldron.Island.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":698011198,"dateAdded":"2020-12-15T15:15:45.524567Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3001319,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:31","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16887},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E08.Chapter.8.The.Fifty.Year.Night.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E08.Chapter.8.The.Fifty.Year.Night.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":689548880,"dateAdded":"2020-12-15T15:15:45.543534Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16888},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E09.Chapter.9.The.Deerfox.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E09.Chapter.9.The.Deerfox.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":898095697,"dateAdded":"2020-12-15T15:15:45.562267Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"31:30","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16889},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E10.Chapter.10.The.Yule.Lads.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E10.Chapter.10.The.Yule.Lads.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":777288101,"dateAdded":"2020-12-15T15:15:45.580824Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16890},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E11.Chapter.11.The.Jorts.Incident.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E11.Chapter.11.The.Jorts.Incident.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":610356733,"dateAdded":"2020-12-15T15:15:45.599615Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16891},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E12.Chapter.12.The.Replacement.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E12.Chapter.12.The.Replacement.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":688740060,"dateAdded":"2020-12-15T15:15:45.620735Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16892},{"seriesId":40,"seasonNumber":2,"relativePath":"Season 02\/Hilda.S02E13.Chapter.13.The.Stone.Forest.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","path":"\/tv\/Hilda\/Season 02\/Hilda.S02E13.Chapter.13.The.Stone.Forest.1080p.NF.WEB-DL.DD+5.1.x264-iKA.mkv","size":1106981208,"dateAdded":"2020-12-15T15:15:45.639228Z","releaseGroup":"iKA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2610000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:09","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16893}],"queue":[]},"34":{"series":{"title":"Kabaneri of the Iron Fortress","alternateTitles":[{"title":"Koutetsujou no Kabaneri","sceneSeasonNumber":-1}],"sortTitle":"kabaneri iron fortress","status":"ended","ended":true,"overview":"As the world is in the middle of an industrial revolution, a monster appears that cannot be defeated unless its heart, which is protected by a layer of iron, is pierced. By infecting humans with its bite, the monster can create aggressive and undead creatures known as Kabane. On the island Hinomoto, located in the far east, people have built stations to shelter themselves from these creatures. People access the station, as well as transport wares between them, with the help of a locomotive running on steam, called Hayajiro.","previousAiring":"2016-06-30T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/35\/banner.jpg?lastWrite=637103832871390640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/305082\/banners\/62006011.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/35\/poster.jpg?lastWrite=637566904368953730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/305082\/posters\/6092f88a424d8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/35\/fanart.jpg?lastWrite=636747176373945000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/305082-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-06-30T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":5495790549,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Kabaneri of the Iron Fortress","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":305082,"tvRageId":0,"tvMazeId":13688,"firstAired":"2016-04-08T00:00:00Z","seriesType":"standard","cleanTitle":"kabaneriironfortress","imdbId":"tt5556656","titleSlug":"kabaneri-of-the-iron-fortress","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Drama","Fantasy"],"tags":[],"added":"2018-06-06T21:37:54.1135183Z","ratings":{"votes":135,"value":9.6},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":17,"sizeOnDisk":5495790549,"percentOfEpisodes":100.0},"id":35},"episodes":[{"seriesId":35,"episodeFileId":1816,"seasonNumber":1,"episodeNumber":1,"title":"Frightened Corpse","airDate":"2016-04-08","airDateUtc":"2016-04-07T15:00:00Z","overview":"Kabane, the immortal monsters, attacked Aragane Station. Ikoma, a steamsmith boy who lives in Aragane Station, ran against the waves of terrified civilians. He is going to fight against Kabane using the weapon he has been secretly developing - the Piercing gun. He fights for his own past and dignity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2470},{"seriesId":35,"episodeFileId":1817,"seasonNumber":1,"episodeNumber":2,"title":"Never-Ending Night","airDate":"2016-04-22","airDateUtc":"2016-04-21T15:00:00Z","overview":"Ikoma somehow survives and heads towards the last Hayajiro left in Kenkin Station, the Kotetsujyo. Meanwhile, Ayame and her people were left behind to fend off the Kabane when a young girl named Mumei appears before them. The girl clears open a path to the Kotetsujyo with incredible combat prowess.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2471},{"seriesId":35,"episodeFileId":1818,"seasonNumber":1,"episodeNumber":3,"title":"Prayer Offer","airDate":"2016-04-29","airDateUtc":"2016-04-28T15:00:00Z","overview":"Having escaped Kenkin Station, the Kotetsujyo heads for Kongokaku, the Shogunate's fortress. However, the people on the Kotetsujyo quickly turn against Ikoma and Mumei and attempt to drive them off the train. Having been thrown into her leadership position, Ayame lacks the power to subdue them...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2472},{"seriesId":35,"episodeFileId":1819,"seasonNumber":1,"episodeNumber":4,"title":"Flowing Blood","airDate":"2016-05-06","airDateUtc":"2016-05-05T15:00:00Z","overview":"The other people lock Ikoma and Mumei into the rear car. But that means the Kotetsujyo has lost two of their best fighters. Just then, the Kabane attack. What's more, among them is a Wazatori, a Kabane that has the ability to learn and become stronger with each battle...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2473},{"seriesId":35,"episodeFileId":1820,"seasonNumber":1,"episodeNumber":5,"title":"Inescapable Darkness","airDate":"2016-05-13","airDateUtc":"2016-05-12T15:00:00Z","overview":"The Kotetsujyo picks up survivors from Yatsushiro Station which has been destroyed by the Kabane. Among the survivors is Enoku, an old friend of Mumei's. He points out to Mumei how weak she'd become as he witnessed how close she's grown to the people of the Kotetsujyo. Rattled, Mumei chooses to throw herself into a reckless fight and finds herself in a dangerous situation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2474},{"seriesId":35,"episodeFileId":1821,"seasonNumber":1,"episodeNumber":6,"title":"Gathering Light","airDate":"2016-05-20","airDateUtc":"2016-05-19T15:00:00Z","overview":"The Kotetsujyo is standing before a giant cluster of Kabane, the Black Smoke, and all seems hopeless. Meanwhile, Ikoma and Mumei find themselves at the bottom of an abandoned station. Surrounded by Kabane, Mumei buried under rubble, and no backup in sight, the situation is dire, yet Ikoma still somehow stands forward to face it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2475},{"seriesId":35,"episodeFileId":1822,"seasonNumber":1,"episodeNumber":7,"title":"Begging the Heavens","airDate":"2016-05-27","airDateUtc":"2016-05-26T15:00:00Z","overview":"The Kotetsujyo arrives at Shitori Station, the first populated station it's encountered since leaving Kenkin Station. Ikoma and the others leave to shop for some supplies, and experience their first moment of peace in ages. Meanwhile, Ayame negotiates with Shitori Station to see if they could spare some food, but food is precious everywhere...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2476},{"seriesId":35,"episodeFileId":1823,"seasonNumber":1,"episodeNumber":8,"title":"The Silent Hunter","airDate":"2016-06-03","airDateUtc":"2016-06-02T15:00:00Z","overview":"The older brother Mumei serves is Biba Tenshin, leader of the Hunters - a special division dedicated to hunting Kabane. However, while the people praise Biba as a hero, Ikoma does not trust him. That is because he is the one who turned Mumei into a Kabaneri.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2477},{"seriesId":35,"episodeFileId":1824,"seasonNumber":1,"episodeNumber":9,"title":"Fang of Ruin","airDate":"2016-06-10","airDateUtc":"2016-06-09T15:00:00Z","overview":"The Shogunate closes off the path to Kongokaku because they are wary of Biba and the support he's managed to garner. Biba seeks an audience with the Lord of Iwado Station and kills him at the meeting once its granted. Biba and his Hunters' overthrow of the Shogunate has begun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2478},{"seriesId":35,"episodeFileId":1825,"seasonNumber":1,"episodeNumber":10,"title":"The Attacking Weak","airDate":"2016-06-17","airDateUtc":"2016-06-16T15:00:00Z","overview":"The Kotetsujyo had been linked to the Kokujyo, and Takumi and the others were under the rule of the Hunters who demanded their blood be collected. While people fell into despair, not everyone has given up hope as Ikoma devises a counteroffensive. He has to take back his freedom, his pride, and Mumei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2479},{"seriesId":35,"episodeFileId":1826,"seasonNumber":1,"episodeNumber":11,"title":"Burning Life","airDate":"2016-06-24","airDateUtc":"2016-06-23T15:00:00Z","overview":"Biba reunites with his father Shogun Koukyo after 10 years. Behind the scenes, Mumei's Nue stands ready. Meanwhile, Ikoma has lost his confidence and willpower, a mere shell of his former self. Ikoma can only cower at the sight of the Kabane now, however...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2480},{"seriesId":35,"episodeFileId":1827,"seasonNumber":1,"episodeNumber":12,"title":"Iron Fortress","airDate":"2016-07-01","airDateUtc":"2016-06-30T15:00:00Z","overview":"Biba's plan, Mumei's Nue transformation, and the influx of Kabane were all too much for Kongokaku to withstand. That is when Ikoma arrives. Having modified his body once again, Ikoma enters Kongokaku in order to rescue Mumei, despite the danger he will have to face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2481},{"seriesId":35,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Kabaneri of the Iron Fortress Recap 1: Gathering Light","airDate":"2016-12-31","airDateUtc":"2016-12-30T15:00:00Z","overview":"Compilation film of the first half of the TV series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11101},{"seriesId":35,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Kabaneri of the Iron Fortress Recap 2: Burning Life","airDate":"2017-01-07","airDateUtc":"2017-01-06T15:00:00Z","overview":"Compilation film of the second half of the TV series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11178},{"seriesId":35,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Kabaneri of the Iron Fortress: The Battle of Unato Part 1","airDate":"2019-05-10","airDateUtc":"2019-05-09T15:00:00Z","overview":"Kabaneri of the Iron Fortress: Battle Of Unato (K\u014dtetsuj\u014d no Kabaneri: Unato Kessen) is an anime movie set six months after the anime series. Ikoma saves Mumei and as they embrace, they mysteriously find themselves bathed in a green light and are revived.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11179},{"seriesId":35,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Kabaneri of the Iron Fortress: The Battle of Unato Part 2","airDate":"2019-05-10","airDateUtc":"2019-05-09T15:25:00Z","overview":"Kabaneri of the Iron Fortress: Battle Of Unato (K\u014dtetsuj\u014d no Kabaneri: Unato Kessen) is an anime movie set six months after the anime series. Ikoma saves Mumei and as they embrace, they mysteriously find themselves bathed in a green light and are revived.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":15666},{"seriesId":35,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Kabaneri of the Iron Fortress: The Battle of Unato Part 3","airDate":"2019-05-10","airDateUtc":"2019-05-09T15:50:00Z","overview":"Kabaneri of the Iron Fortress: Battle Of Unato (K\u014dtetsuj\u014d no Kabaneri: Unato Kessen) is an anime movie set six months after the anime series. Ikoma saves Mumei and as they embrace, they mysteriously find themselves bathed in a green light and are revived.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":15667}],"episodeFile":[{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Frightened Corpse-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E01.Frightened Corpse-Bluray-1080p.mkv","size":419374616,"dateAdded":"2018-10-10T21:58:11.133693Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1833076,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1816},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Never-Ending Darkness-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E02.Never-Ending Darkness-Bluray-1080p.mkv","size":482962424,"dateAdded":"2018-10-10T21:58:11.16246Z","releaseGroup":"Ending","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2165907,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1817},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Prayer Offer-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E03.Prayer Offer-Bluray-1080p.mkv","size":424736590,"dateAdded":"2018-10-10T21:58:11.18892Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":364111,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1857982,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1818},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Flowing Blood-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E04.Flowing Blood-Bluray-1080p.mkv","size":557271521,"dateAdded":"2018-10-10T21:58:11.215262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":393464,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2587830,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1819},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Inescapable Darkness-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E05.Inescapable Darkness-Bluray-1080p.mkv","size":422695755,"dateAdded":"2018-10-10T21:58:11.241138Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1816560,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1820},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Gathering Light-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E06.Gathering Light-Bluray-1080p.mkv","size":505657964,"dateAdded":"2018-10-10T21:58:11.26771Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2302130,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1821},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Begging the Heavens-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E07.Begging the Heavens-Bluray-1080p.mkv","size":408885302,"dateAdded":"2018-10-10T21:58:11.2942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":367354,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1763141,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1822},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Silent Hunter-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E08.The Silent Hunter-Bluray-1080p.mkv","size":474721753,"dateAdded":"2018-10-10T21:58:11.320749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2118859,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1823},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Fang of Ruin-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E09.Fang of Ruin-Bluray-1080p.mkv","size":471584492,"dateAdded":"2018-10-10T21:58:11.346983Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":374741,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2114001,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1824},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Attacking Weak-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E10.The Attacking Weak-Bluray-1080p.mkv","size":425757886,"dateAdded":"2018-10-10T21:58:11.374759Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":372128,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1855453,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1825},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Burning Life-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E11.Burning Life-Bluray-1080p.mkv","size":449794192,"dateAdded":"2018-10-10T21:58:11.401068Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":373881,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2005888,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1826},{"seriesId":35,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Iron Fortress-Bluray-1080p.mkv","path":"\/tv\/Kabaneri of the Iron Fortress\/Season 01\/S01E12.Iron Fortress-Bluray-1080p.mkv","size":452348054,"dateAdded":"2018-10-10T21:58:11.427398Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":374543,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2030527,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1827}],"queue":[]},"35":{"series":{"title":"Sherlock","alternateTitles":[],"sortTitle":"sherlock","status":"ended","ended":true,"overview":"Sherlock Holmes and his partner Dr. John Watson solve crimes in 21st century London.","previousAiring":"2017-01-15T21:00:00Z","network":"BBC One","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/47\/banner.jpg?lastWrite=637103833337902180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/176941-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/47\/poster.jpg?lastWrite=637103833340942130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/176941-17.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/47\/fanart.jpg?lastWrite=637103833335342230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/176941-41.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2013-12-24T21:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":9,"sizeOnDisk":169092304,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-08-08T20:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":21138702911,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-01-15T21:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":19955553030,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2014-01-12T21:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":21122711671,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-01-15T21:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":21125148585,"percentOfEpisodes":100.0}}],"year":2010,"path":"\/tv\/Sherlock","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":90,"tvdbId":176941,"tvRageId":23433,"tvMazeId":335,"firstAired":"2010-07-25T00:00:00Z","seriesType":"standard","cleanTitle":"sherlock","imdbId":"tt1475582","titleSlug":"sherlock","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Drama","Suspense"],"tags":[],"added":"2017-12-02T19:57:02.4261608Z","ratings":{"votes":18143,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":21,"sizeOnDisk":83511208501,"percentOfEpisodes":100.0},"id":47},"episodes":[{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Unaired Pilot \u2013 A Study In Pink","overview":"Sherlock was announced as a single 60-minute drama production at the Edinburgh International Television Festival in August 2008, to be broadcast in Autumn 2009, with the intention of producing a full series should the pilot be successful. The BBC decided not to transmit the pilot, as is common industry practice, but commissioned three 90-minute episodes. This is the 60 minute pilot.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3211},{"seriesId":47,"episodeFileId":2240,"seasonNumber":1,"episodeNumber":1,"title":"A Study in Pink","airDate":"2010-07-25","airDateUtc":"2010-07-25T20:00:00Z","overview":"A war hero, invalided home from Afghanistan, meets a strange but charismatic genius who is looking for a flatmate \u2014 it is London, 2010, and Dr Watson and Sherlock Holmes are meeting for the first time. A string of impossible suicides has Scotland Yard baffled \u2014 and only one man can help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":3220},{"seriesId":47,"episodeFileId":2244,"seasonNumber":1,"episodeNumber":2,"title":"The Blind Banker","airDate":"2010-08-01","airDateUtc":"2010-08-01T20:00:00Z","overview":"A mysterious cipher is being scrawled on the walls around London. The first person to see the cipher is dead within hours of reading it. Sherlock plunges into a world of codes and symbols, consulting with London's best graffiti artists. He soon learns that the city is in the grip a gang of international smugglers, a secret society called the Black Lotus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":3221},{"seriesId":47,"episodeFileId":2248,"seasonNumber":1,"episodeNumber":3,"title":"The Great Game","airDate":"2010-08-08","airDateUtc":"2010-08-08T20:00:00Z","overview":"A strange clue in an empty room, a blood-soaked car, a priceless Old Master, a deranged bomber. With the clock ticking, the curtain rises on a battle of wits between Sherlock, John and the shadowy stranger who seems to know all the answers...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":3222},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Unlocking Sherlock \u2014\u00a0The Making Of","airDate":"2010-08-30","airDateUtc":"2010-08-30T20:00:00Z","overview":"A documentary on the production of Sherlock.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3212},{"seriesId":47,"episodeFileId":2241,"seasonNumber":2,"episodeNumber":1,"title":"A Scandal in Belgravia","airDate":"2012-01-01","airDateUtc":"2012-01-01T21:00:00Z","overview":"A case of blackmail threatens to topple the monarchy itself, but soon Sherlock and John discover there is even more to it than that. They find themselves battling international terrorism, rogue CIA agents and a secret conspiracy involving the British government. But this case will cast a longer shadow on their lives than they could ever imagine, as the great detective begins a long duel of wits with an antagonist as cold and ruthless and brilliant as himself: Irene Adler.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":3223},{"seriesId":47,"episodeFileId":2245,"seasonNumber":2,"episodeNumber":2,"title":"The Hounds of Baskerville","airDate":"2012-01-08","airDateUtc":"2012-01-08T21:00:00Z","overview":"Something terrible has happened to Henry Knight \u2014 Sherlock and John investigate the truth about the monstrous creature which apparently killed their client's father. A hound from hell? What seems like fantasy in Baker Street is a very different prospect in the ultra-secret army base that looms over Dartmoor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":3224},{"seriesId":47,"episodeFileId":2251,"seasonNumber":2,"episodeNumber":3,"title":"The Reichenbach Fall","airDate":"2012-01-15","airDateUtc":"2012-01-15T21:00:00Z","overview":"James Moriarty possesses the greatest criminal mind that the world has ever seen. Sherlock and John knew he wouldn't stay hidden for long, but even they never guessed the sheer scale and audacity of the crime that would propel Moriarty back into the headlines. Sherlock must fight for his reputation, his sanity and his life. But is he all he claims to be?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":3225},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Sherlock Uncovered","airDate":"2012-01-23","airDateUtc":"2012-01-23T21:00:00Z","overview":"The stars of Sherlock, Benedict Cumberbatch and Martin Freeman, talk in depth about the success of the first season and look ahead to season 2. This bonus feature also includes the show's creators, Steven Moffat and Mark Gatiss, discussing the dilemmas and pitfalls they faced when bringing these classic Holmes stories into the 21st century.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3213},{"seriesId":47,"episodeFileId":2252,"seasonNumber":0,"episodeNumber":4,"title":"Many Happy Returns","airDate":"2013-12-24","airDateUtc":"2013-12-24T21:00:00Z","overview":"A series of seemingly unconnected crimes stretching from Tibet to India to Germany. Sherlock Holmes has been gone for two years. But someone isn't quite convinced that he's dead\u2026.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":3214},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Unlocking Sherlock (2013)","airDate":"2013-12-25","airDateUtc":"2013-12-25T21:00:00Z","overview":"Unlocking Sherlock is a one-hour special that explores how writers Steven Moffat and Mark Gatiss created the hit television sensation. The special takes viewers on a personal voyage through the versions of Holmes that have served as inspirations for the new series \u2013 the original stories, their factual origins, hundreds of film adaptations \u2013 to arrive at their thoroughly modern Sherlock. Moffat and Gatiss explain the challenges they encountered adapting the original adventures of the iconic super-sleuth. The special goes behind the scenes on the set of the hit television series, and includes interviews with actors Benedict Cumberbatch, Martin Freeman and Lara Pulver, who talk about the reinvention of their fictional characters.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3215},{"seriesId":47,"episodeFileId":2243,"seasonNumber":3,"episodeNumber":1,"title":"The Empty Hearse","airDate":"2014-01-01","airDateUtc":"2014-01-01T21:00:00Z","overview":"Two years after the devastating events of The Reichenbach Fall, Dr. John Watson has got on with his life. New horizons, romance and a comforting domestic future beckon. But with London under threat of a huge terrorist attack, Sherlock Holmes is about to rise from the grave with all the theatricality that comes so naturally to him. It's what his best friend wanted more than anything, but for John Watson it might well be a case of 'be careful what you wish for!' If Sherlock thinks everything will be just as he left it, though, he is in for a very big surprise...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":3226},{"seriesId":47,"episodeFileId":2247,"seasonNumber":3,"episodeNumber":2,"title":"The Sign of Three","airDate":"2014-01-05","airDateUtc":"2014-01-05T21:00:00Z","overview":"Sherlock faces his biggest challenge of all \u2014 delivering a Best Man's speech on John's wedding day. But all isn't quite as it seems. Mortal danger stalks the reception, and someone might not make it to the happy couple's first dance. Sherlock must thank the bridesmaids, solve the case and stop a killer!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":3227},{"seriesId":47,"episodeFileId":2250,"seasonNumber":3,"episodeNumber":3,"title":"His Last Vow","airDate":"2014-01-12","airDateUtc":"2014-01-12T21:00:00Z","overview":"A case of stolen letters leads Sherlock Holmes into a long conflict with Charles Augustus Magnussen, the Napoleon of blackmail, and the one man he truly hates. But how do you tackle a foe who knows the personal weakness of every person of importance in the Western world?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":3228},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Sherlock Uncovered: The Return","airDate":"2014-01-19","airDateUtc":"2014-01-19T21:00:00Z","overview":"Sherlock's back! The world's greatest detective comes back from the dead. But how did he do it? We go behind-the-scenes of the first episode cast read-through, with Benedict Cumberbatch and Martin Freeman where the answer to television's greatest mystery was first revealed. And we uncover the unlikely friendship between Sherlock Holmes and Dr John Watson.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3216},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Sherlock Uncovered: The Women","airDate":"2014-01-26","airDateUtc":"2014-01-26T21:00:00Z","overview":"The stars of Sherlock talk about the women in the life of TV's greatest detective. Sherlock Holmes may be great at solving mysteries, but he's clueless about women. We launch an investigation into the women in Sherlock's life. Mary Morstan is marrying his best friend. Irene Adler stole his heart. He doesn't know Molly exists. And Mrs. Hudson's always there to pick up the pieces.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3217},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Sherlock Uncovered: The Villains","airDate":"2014-02-02","airDateUtc":"2014-02-02T21:00:00Z","overview":"We meet the great villains who've battled with TV's greatest detective. There's Jim Moriarty, his nemesis. There's Charles Augustus Magnussen, the only man Sherlock Holmes truly hates. And then there's Mycroft Holmes - Sherlock's brother and the last word in sibling rivalry. All of them have had influence over those closest to Sherlock. And all of them cause him grief.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3218},{"seriesId":47,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"The Abominable Bride","airDate":"2016-01-01","airDateUtc":"2016-01-01T21:00:00Z","overview":"We've been here before \u2014 but what if this wasn't the modern day but the late Victorian period? What if the world's most famous consulting detective and his best friend lived in a Baker Street of steam trains, hansom cabs, top hats and frock coats? Welcome to Sherlock in 1895. Holmes and Watson must investigate a mysterious ghostly bride prowling the streets with an unslakable thirst for revenge.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":3219},{"seriesId":47,"episodeFileId":2242,"seasonNumber":4,"episodeNumber":1,"title":"The Six Thatchers","airDate":"2017-01-01","airDateUtc":"2017-01-01T21:00:00Z","overview":"One mysterious case in particular baffles Scotland Yard, but Sherlock is more interested in a seemingly-trivial detail. Why is someone destroying images of the late Prime Minister Margaret Thatcher? Is there a madman on the loose? Or is there a much darker purpose at work?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":3229},{"seriesId":47,"episodeFileId":2246,"seasonNumber":4,"episodeNumber":2,"title":"The Lying Detective","airDate":"2017-01-08","airDateUtc":"2017-01-08T21:00:00Z","overview":"Sherlock faces perhaps the most chilling enemy of his long career: the powerful and seemingly unassailable Culverton Smith \u2014 a man with a very dark secret indeed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":3230},{"seriesId":47,"episodeFileId":2249,"seasonNumber":4,"episodeNumber":3,"title":"The Final Problem","airDate":"2017-01-15","airDateUtc":"2017-01-15T21:00:00Z","overview":"Long-buried secrets finally catch up with the Baker Street duo. Someone has been playing a very long game indeed and, alone and defenseless, Sherlock and John Watson face their greatest ever challenge. Is the game finally over?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":3231}],"episodeFile":[{"seriesId":47,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Study in Pink-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 01\/S01E01.A Study in Pink-Bluray-1080p.mkv","size":7045603444,"dateAdded":"2018-10-10T22:33:50.916161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10212000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:28:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2240},{"seriesId":47,"seasonNumber":2,"relativePath":"Season 02\/S02E01.A Scandal in Belgravia-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 02\/S02E01.A Scandal in Belgravia-Bluray-1080p.mkv","size":7042844624,"dateAdded":"2018-10-10T22:33:50.948868Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10036000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:29:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2241},{"seriesId":47,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The Six Thatchers-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 04\/S04E01.The Six Thatchers-Bluray-1080p.mkv","size":7041375354,"dateAdded":"2018-10-10T22:33:50.980814Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8666000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:32:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2242},{"seriesId":47,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Empty Hearse-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 03\/S03E01.The Empty Hearse-Bluray-1080p.mkv","size":7039926194,"dateAdded":"2018-10-10T22:33:51.015215Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9346000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:26:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2243},{"seriesId":47,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Blind Banker-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 01\/S01E02.The Blind Banker-Bluray-1080p.mkv","size":7045548765,"dateAdded":"2018-10-10T22:33:51.047709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10171000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:28:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2244},{"seriesId":47,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Hounds of Baskerville-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 02\/S02E02.The Hounds of Baskerville-Bluray-1080p.mkv","size":7044500316,"dateAdded":"2018-10-10T22:33:51.079182Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10177000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:28:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2245},{"seriesId":47,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Lying Detective-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 04\/S04E02.The Lying Detective-Bluray-1080p.mkv","size":7041503502,"dateAdded":"2018-10-10T22:33:51.110508Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8593000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:32:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2246},{"seriesId":47,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Sign of Three-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 03\/S03E02.The Sign of Three-Bluray-1080p.mkv","size":7040790944,"dateAdded":"2018-10-10T22:33:51.142051Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9394000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:26:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2247},{"seriesId":47,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Great Game-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 01\/S01E03.The Great Game-Bluray-1080p.mkv","size":7047550702,"dateAdded":"2018-10-10T22:33:51.17362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10066000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:29:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2248},{"seriesId":47,"seasonNumber":4,"relativePath":"Season 04\/S04E03.The Final Problem-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 04\/S04E03.The Final Problem-Bluray-1080p.mkv","size":7042269729,"dateAdded":"2018-10-10T22:33:51.204717Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8603000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:32:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2249},{"seriesId":47,"seasonNumber":3,"relativePath":"Season 03\/S03E03.His Last Vow-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 03\/S03E03.His Last Vow-Bluray-1080p.mkv","size":7041994533,"dateAdded":"2018-10-10T22:33:51.235802Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9021000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:29:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2250},{"seriesId":47,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Reichenbach Fall-Bluray-1080p.mkv","path":"\/tv\/Sherlock\/Season 02\/S02E03.The Reichenbach Fall-Bluray-1080p.mkv","size":5868208090,"dateAdded":"2018-10-10T22:33:51.268211Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8396000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:28:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":2251},{"seriesId":47,"seasonNumber":0,"relativePath":"Specials\/S00E04.Many Happy Returns-WEBDL-720p.mp4","path":"\/tv\/Sherlock\/Specials\/S00E04.Many Happy Returns-WEBDL-720p.mp4","size":169092304,"dateAdded":"2018-10-10T22:33:51.300138Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151212,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2997000,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"7:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2252}],"queue":[]},"36":{"series":{"title":"The Expanse","alternateTitles":[],"sortTitle":"expanse","status":"continuing","ended":false,"overview":"Two hundred years in the future, in a fully colonized solar system, police detective Josephus Miller is given the assignment to find a missing young woman, Julie Mao. Joining his task is James Holden, former first officer of an ice freighter who is involved in an incident caused by the tense relationship between Earth, Mars and the Belt. Far from their struggles in space, United Nations executive Chrisjen Avasarala works to prevent war between Earth and Mars. Soon the three find out that the missing woman is connected to a vast conspiracy that threatens all humanity.","previousAiring":"2021-02-03T05:00:00Z","network":"Amazon","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/36\/banner.jpg?lastWrite=637100123767236060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/280619-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/36\/poster.jpg?lastWrite=637542199157544780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/280619\/posters\/5fb57f092724a.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/36\/fanart.jpg?lastWrite=637305614191475090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/280619\/backgrounds\/5f109932e994a.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":35,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-02-02T05:44:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":35188358086,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-04-19T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45717898879,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-06-27T04:44:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45654591605,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-12-13T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":54842514675,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2021-02-03T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":29887562178,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/The Expanse","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":44,"tvdbId":280619,"tvRageId":0,"tvMazeId":1825,"firstAired":"2015-12-14T00:00:00Z","seriesType":"standard","cleanTitle":"theexpanse","imdbId":"tt3230854","titleSlug":"the-expanse","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-07-04T18:54:08.7961941Z","ratings":{"votes":2720,"value":8.7},"statistics":{"seasonCount":5,"episodeFileCount":56,"episodeCount":56,"totalEpisodeCount":91,"sizeOnDisk":211290925423,"percentOfEpisodes":100.0},"id":36},"episodes":[{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Behind The Scenes: Twitter Segment","overview":"Dominique Tipper hosts questions from Twitter, answered by various cast and crew of The Expanse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1816},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Behind The Scenes: Avasarala's Closet","overview":"Actress Shohreh Aghdashloo and costume designer Joanne Hansen talk about the wardrobe design of Chrisjen Avasarala in The Expanse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1817},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Behind The Scenes: Flight of the Razorback","overview":"Behind the design of the racing ship Razorback and construction of the complicated cockpit set.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1818},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Behind The Scenes: Klaes Ashford - Building a Character","overview":"David Strathairn and The Expanse production team talk about the evolution the character Klaes Ashford, bringing him from the book to the screen.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1819},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"iTunes Extra 101: Sneak Peek","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15808},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"iTunes Extra 102: Premise","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15809},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"iTunes Extra 103: Page to Screen","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15810},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"iTunes Extra 104: Characters","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15811},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"iTunes Extra 105: Future World","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15812},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"2015 NY Comic Con Panel","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15813},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"2016 NY Comic Con Panel","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15814},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Inside The Expanse: Episode 1","airDate":"2015-12-14","airDateUtc":"2015-12-14T05:00:00Z","overview":"Actually the last episode. Plot twist! A real mindtwister.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1793},{"seriesId":36,"episodeFileId":1318,"seasonNumber":1,"episodeNumber":1,"title":"Dulcinea","airDate":"2015-12-14","airDateUtc":"2015-12-14T05:00:00Z","overview":"In the outer solar system near Saturn, James Holden and the crew of the ice freighter Canterbury investigate a distress call from a mysterious derelict ship, the Scopuli. On Ceres Station, Detective Miller begins an off-the-books investigation of a missing heiress, Julie Mao.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1820},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Inside The Expanse: Episode 2","airDate":"2015-12-15","airDateUtc":"2015-12-15T05:00:00Z","overview":"A look into the second episode","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1794},{"seriesId":36,"episodeFileId":1321,"seasonNumber":1,"episodeNumber":2,"title":"The Big Empty","airDate":"2015-12-15","airDateUtc":"2015-12-15T05:00:00Z","overview":"Holden and crew are trapped in a badly damaged shuttle. On Ceres, Miller uncovers clues about Julie Mao. On Earth, Chrisjen Avasarala questions a terrorist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1821},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Inside The Expanse: Episode 3","airDate":"2015-12-22","airDateUtc":"2015-12-22T05:00:00Z","overview":"A look into the third episode","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1795},{"seriesId":36,"episodeFileId":1324,"seasonNumber":1,"episodeNumber":3,"title":"Remember the Cant","airDate":"2015-12-22","airDateUtc":"2015-12-22T05:00:00Z","overview":"While Avasarala plays a dangerous game of politics, Holden and his crew begin to turn on one another while held captive by the Martian Navy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1822},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Inside The Expanse: Episode 4","airDate":"2015-12-29","airDateUtc":"2015-12-29T05:00:00Z","overview":"A look into the fourth episode","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1796},{"seriesId":36,"episodeFileId":1327,"seasonNumber":1,"episodeNumber":4,"title":"CQB","airDate":"2015-12-29","airDateUtc":"2015-12-29T05:00:00Z","overview":"Holden and crew are caught in the middle of a desperate battle, as mysterious warships attack and board the Donnager. As Miller continues to investigate Julie Mao, his partner Havelock continues to go missing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1823},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Inside The Expanse: Episode 5","airDate":"2016-01-05","airDateUtc":"2016-01-05T05:00:00Z","overview":"A look into the fifth episode","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1797},{"seriesId":36,"episodeFileId":1330,"seasonNumber":1,"episodeNumber":5,"title":"Back to the Butcher","airDate":"2016-01-05","airDateUtc":"2016-01-05T05:00:00Z","overview":"The crew has survived the loss of the Canturbury and the Donnager and are contacted by an unlikely ally. Miller, on Ceres, continues his investigation and his thoughts of a conspiracy grow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1824},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Inside The Expanse: Episode 6","airDate":"2016-01-12","airDateUtc":"2016-01-12T05:00:00Z","overview":"The cast talks Season 1, Episode 6, \u201cRetrofit\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1798},{"seriesId":36,"episodeFileId":1333,"seasonNumber":1,"episodeNumber":6,"title":"Rock Bottom","airDate":"2016-01-12","airDateUtc":"2016-01-12T05:00:00Z","overview":"Holden's team makes an uneasy alliance with Fred Johnson while Miller fights for his life against Anderson Dawes' thugs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1825},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Inside The Expanse: Episode 7","airDate":"2016-01-19","airDateUtc":"2016-01-19T05:00:00Z","overview":"The cast talks Season 1, Episode 7, \u201cWindmills\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1799},{"seriesId":36,"episodeFileId":1336,"seasonNumber":1,"episodeNumber":7,"title":"Windmills","airDate":"2016-01-19","airDateUtc":"2016-01-19T05:00:00Z","overview":"Holden and his crew face a Martian military blockade. Miller finds a new reason to forge ahead. Avasarala visits Holden\u2019s family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1826},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Inside The Expanse: Episode 8","airDate":"2016-01-26","airDateUtc":"2016-01-26T05:00:00Z","overview":"The cast talks Season 1, Episode 8, \u201cSalvage\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1800},{"seriesId":36,"episodeFileId":1339,"seasonNumber":1,"episodeNumber":8,"title":"Salvage","airDate":"2016-01-26","airDateUtc":"2016-01-26T05:00:00Z","overview":"A derelict vessel holds a potentially devastating secret. Holden and his crew cross paths with Miller on Eros. Avasarala receives bad news.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1827},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Inside The Expanse: Episode 9 & 10","airDate":"2016-02-02","airDateUtc":"2016-02-02T05:00:00Z","overview":"The cast talks Season 1, Episodes 9 & 10, \"Critical Mass\" \/ \"Leviathan Wakes\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1801},{"seriesId":36,"episodeFileId":1342,"seasonNumber":1,"episodeNumber":9,"title":"Critical Mass","airDate":"2016-02-02","airDateUtc":"2016-02-02T05:00:00Z","overview":"Miller, Holden and his crew are trapped on Eros. Avasarala discovers the origin of the mystery ships.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1828},{"seriesId":36,"episodeFileId":1342,"seasonNumber":1,"episodeNumber":10,"title":"Leviathan Wakes","airDate":"2016-02-02","airDateUtc":"2016-02-02T05:44:00Z","overview":"Miller, Holden and his crew fight their way to the Rocinante to escape Eros. On Earth, Avasarala fears for the stability of Earth's government and her family's safety.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1829},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"The Expanse: Expanded","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Adam Savage (of Mythbusters!) takes you behind the scenes of The Expanse and gives you a look into Season 2!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1802},{"seriesId":36,"episodeFileId":1319,"seasonNumber":2,"episodeNumber":1,"title":"Safe","airDate":"2017-02-01","airDateUtc":"2017-02-01T05:00:00Z","overview":"Unlikely allies Joe Miller and the crew of the Rocinante led by Jim Holden uncover more about the conspiracy to release the protomolecule on Eros station.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":1830},{"seriesId":36,"episodeFileId":1322,"seasonNumber":2,"episodeNumber":2,"title":"Doors & Corners","airDate":"2017-02-01","airDateUtc":"2017-02-01T05:44:00Z","overview":"With the help of Fred Johnson and the OPA, Miller, Holden and the crew stage a raid for information on the protomolecule; on Earth, Avasarala learns a truth about Fred Johnson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":1831},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Inside The Expanse: Season 2, Episode 1","airDate":"2017-02-02","airDateUtc":"2017-02-02T05:00:00Z","overview":"The cast and showrunners break down Season 2 premiere, \"Safe\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1803},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Inside The Expanse: Season 2, Episode 2","airDate":"2017-02-02","airDateUtc":"2017-02-02T05:44:00Z","overview":"The cast and showrunners break down Season 2 Episode 2, \"Doors & Corners\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1804},{"seriesId":36,"episodeFileId":1325,"seasonNumber":2,"episodeNumber":3,"title":"Static","airDate":"2017-02-08","airDateUtc":"2017-02-08T05:00:00Z","overview":"Holden and Miller butt heads about how the raid was handled.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":1832},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Inside The Expanse: Season 2, Episode 3","airDate":"2017-02-09","airDateUtc":"2017-02-09T05:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 3, \"Static\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1805},{"seriesId":36,"episodeFileId":1328,"seasonNumber":2,"episodeNumber":4,"title":"Godspeed","airDate":"2017-02-15","airDateUtc":"2017-02-15T05:00:00Z","overview":"Miller devises a dangerous plan to eradicate what's left of the protomolecule on Eros.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":1833},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Inside The Expanse: Season 2, Episode 4","airDate":"2017-02-16","airDateUtc":"2017-02-16T05:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 4, \"Godspeed\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1806},{"seriesId":36,"episodeFileId":1331,"seasonNumber":2,"episodeNumber":5,"title":"Home","airDate":"2017-02-22","airDateUtc":"2017-02-22T05:00:00Z","overview":"The Rocinante chases the asteroid Eros as it hurtles towards Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":1834},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Inside The Expanse: Season 2, Episode 5","airDate":"2017-02-23","airDateUtc":"2017-02-23T05:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 5, \"Home\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1807},{"seriesId":36,"episodeFileId":1334,"seasonNumber":2,"episodeNumber":6,"title":"Paradigm Shift","airDate":"2017-03-01","airDateUtc":"2017-03-01T05:00:00Z","overview":"Earth and Mars search for answers in the aftermath of the asteroid collision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":1835},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Inside The Expanse: Season 2, Episode 6","airDate":"2017-03-02","airDateUtc":"2017-03-02T05:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 6, \"Paradigm Shift\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1808},{"seriesId":36,"episodeFileId":1337,"seasonNumber":2,"episodeNumber":7,"title":"The Seventh Man","airDate":"2017-03-08","airDateUtc":"2017-03-08T05:00:00Z","overview":"Preparations for the Earth\/Mars peace conference tighten the tension on Errinwright.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":1836},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Inside The Expanse: Season 2, Episode 7","airDate":"2017-03-09","airDateUtc":"2017-03-09T05:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 7, \"The Seventh Man\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1809},{"seriesId":36,"episodeFileId":1340,"seasonNumber":2,"episodeNumber":8,"title":"Pyre","airDate":"2017-03-15","airDateUtc":"2017-03-15T04:00:00Z","overview":"Naomi tracks down signs of the protomolecule; Fred Johnson's control over the OPA collapses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":1837},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Inside The Expanse: Season 2, Episode 8","airDate":"2017-03-16","airDateUtc":"2017-03-16T04:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 8, \"Pyre\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1810},{"seriesId":36,"episodeFileId":1343,"seasonNumber":2,"episodeNumber":9,"title":"The Weeping Somnambulist","airDate":"2017-03-22","airDateUtc":"2017-03-22T04:00:00Z","overview":"Bobbie becomes a political pawn in the struggle between Earth and Mars.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":1838},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Inside The Expanse: Season 2, Episode 9","airDate":"2017-03-23","airDateUtc":"2017-03-23T04:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 9, \"The Weeping Somnambulist\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1811},{"seriesId":36,"episodeFileId":1345,"seasonNumber":2,"episodeNumber":10,"title":"Cascade","airDate":"2017-03-29","airDateUtc":"2017-03-29T04:00:00Z","overview":"Holden leads his crew through the war-torn station on Ganymede.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":1839},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Inside The Expanse: Season 2, Episode 10","airDate":"2017-03-30","airDateUtc":"2017-03-30T04:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 10, \"Cascade\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1812},{"seriesId":36,"episodeFileId":1347,"seasonNumber":2,"episodeNumber":11,"title":"Here There Be Dragons","airDate":"2017-04-05","airDateUtc":"2017-04-05T04:00:00Z","overview":"Bobbie makes a decision that changes her life forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":1840},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Inside The Expanse: Season 2, Episode 11","airDate":"2017-04-06","airDateUtc":"2017-04-06T04:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 11, \"Here There Be Dragons\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1813},{"seriesId":36,"episodeFileId":1349,"seasonNumber":2,"episodeNumber":12,"title":"The Monster and the Rocket","airDate":"2017-04-12","airDateUtc":"2017-04-12T04:00:00Z","overview":"A discovery pushes Naomi and Holden apart and sets the Roci crew against each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":1841},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Inside The Expanse: Season 2, Episode 12","airDate":"2017-04-13","airDateUtc":"2017-04-13T04:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 12, \"The Monster and the Rocket\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1814},{"seriesId":36,"episodeFileId":1351,"seasonNumber":2,"episodeNumber":13,"title":"Caliban's War","airDate":"2017-04-19","airDateUtc":"2017-04-19T04:00:00Z","overview":"The Roci crew must fight to save the ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":1842},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Inside The Expanse: Season 2, Episode 13","airDate":"2017-04-20","airDateUtc":"2017-04-20T04:00:00Z","overview":"The cast and showrunners break down Season 2 Episode 13, \"Caliban's War\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1815},{"seriesId":36,"episodeFileId":1320,"seasonNumber":3,"episodeNumber":1,"title":"Fight or Flight","airDate":"2018-04-11","airDateUtc":"2018-04-11T04:00:00Z","overview":"The Rocinante crew deals with the fallout over Naomi's betrayal while caught in the middle of the war between Earth and Mars. Avasarala and Bobbie hatch an escape plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":1843},{"seriesId":36,"episodeFileId":1323,"seasonNumber":3,"episodeNumber":2,"title":"IFF","airDate":"2018-04-18","airDateUtc":"2018-04-18T04:00:00Z","overview":"The Rocinante answers an unexpected distress signal. Bobbie and Avasarala find themselves being hunted by a mysterious captor. UN Secretary-General Sorrento-Gillis brings in a colleague from his past to lend an ear during this crucial time of war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":1844},{"seriesId":36,"episodeFileId":1326,"seasonNumber":3,"episodeNumber":3,"title":"Assured Destruction","airDate":"2018-04-25","airDateUtc":"2018-04-25T04:00:00Z","overview":"Earth strategizes a costly ploy to gain advantage in the war against Mars. Anna struggles to convince Sorrento-Gillis to do the right thing. Avasarala and Bobbie seek refuge aboard the Rocinante.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":1845},{"seriesId":36,"episodeFileId":1329,"seasonNumber":3,"episodeNumber":4,"title":"Reload","airDate":"2018-05-02","airDateUtc":"2018-05-02T04:00:00Z","overview":"The Rocinante tends to wounded Martian soldiers in exchange for supplies; Avasarala struggles with how to disseminate a key piece of evidence despite being in hiding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":1846},{"seriesId":36,"episodeFileId":1332,"seasonNumber":3,"episodeNumber":5,"title":"Triple Point","airDate":"2018-05-09","airDateUtc":"2018-05-09T04:00:00Z","overview":"The search for Prax's daughter comes to a head; Admiral Souther's men plan for mutiny aboard the Agatha King.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":1847},{"seriesId":36,"episodeFileId":1335,"seasonNumber":3,"episodeNumber":6,"title":"Immolation","airDate":"2018-05-16","airDateUtc":"2018-05-16T04:00:00Z","overview":"The final battle between Earth and Mars threatens the very future of humanity. A new monster is unleashed on Prospero Station. Anna receives the smoking gun she needs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":1848},{"seriesId":36,"episodeFileId":1338,"seasonNumber":3,"episodeNumber":7,"title":"Delta-V","airDate":"2018-05-23","airDateUtc":"2018-05-23T04:00:00Z","overview":"All eyes turn to the edge of the solar system as a mysterious new presence emerges. Naomi recommits to her roots. Drummer butts heads with a seasoned new commander aboard the Behemoth. A young Belter makes a name for himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":1849},{"seriesId":36,"episodeFileId":1341,"seasonNumber":3,"episodeNumber":8,"title":"It Reaches Out","airDate":"2018-05-30","airDateUtc":"2018-05-30T04:00:00Z","overview":"An old friend taunts Holden with the answers he seeks. Naomi struggles to fit in. A mysterious low-level tech aboard the Thomas Prince enacts a terrifying plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":1850},{"seriesId":36,"episodeFileId":1344,"seasonNumber":3,"episodeNumber":9,"title":"Intransigence","airDate":"2018-06-06","airDateUtc":"2018-06-06T04:00:00Z","overview":"The Rocinante seeks a new game plan as they attempt to avoid capture. Melba's true motives are revealed. Naomi is torn between identity and ideal. Anna seeks a way to stay aboard the Thomas Prince.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":1851},{"seriesId":36,"episodeFileId":1346,"seasonNumber":3,"episodeNumber":10,"title":"Dandelion Sky","airDate":"2018-06-13","airDateUtc":"2018-06-13T04:00:00Z","overview":"Holden sees past, present, and future. A ghost from Melba's past threatens her mission. Bobbie struggles to trust an old friend as she leads a group into uncharted territory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":1852},{"seriesId":36,"episodeFileId":1348,"seasonNumber":3,"episodeNumber":11,"title":"Fallen World","airDate":"2018-06-20","airDateUtc":"2018-06-20T04:00:00Z","overview":"Drummer and Ashford find themselves trapped with few options for survival. Anna tends to the wounded masses as Melba continues to hunt down her prey. The Rocinante crew struggles to survive as Naomi reunites with her true family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":1853},{"seriesId":36,"episodeFileId":1350,"seasonNumber":3,"episodeNumber":12,"title":"Congregation","airDate":"2018-06-27","airDateUtc":"2018-06-27T04:00:00Z","overview":"As survivors arrive to the Behemoth, two factions form over how to handle a life-or-death threat. Holden grapples with what he's seen and the choices he must make.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":1854},{"seriesId":36,"episodeFileId":1352,"seasonNumber":3,"episodeNumber":13,"title":"Abaddon's Gate","airDate":"2018-06-27","airDateUtc":"2018-06-27T04:44:00Z","overview":"Holden and his allies must stop Ashford and his team from destroying the Ring, and perhaps all of humanity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":1855},{"seriesId":36,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Kevin Smith Explains The Expanse","airDate":"2019-11-18","airDateUtc":"2019-11-18T05:00:00Z","overview":"Kevin Smith recaps the first three seasons of The Expanse so you can jump right into season four when it\u2019s released Friday, December 13th on Amazon Prime Video. A show known for its visual effects, Kevin assumes he\u2019ll have access to the same high-caliber graphics throughout the recap. He shows off his green screen prowess while summarizing 30 hours of action-packed TV, unaware special effects were never planned to be added.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15800},{"seriesId":36,"episodeFileId":16901,"seasonNumber":4,"episodeNumber":1,"title":"New Terra","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"The crew of the Roci investigates a strange protomolecule ruin on an alien planet. Bobbie copes with civilian life on Mars. Drummer and Ashford battle with piracy in the Belt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":9480},{"seriesId":36,"episodeFileId":16902,"seasonNumber":4,"episodeNumber":2,"title":"Jetsam","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Avasarala is blindsided while on a visit to Mars. The Roci crew continue their protomolecule investigation while tensions between the RCE and Belters reach a tipping point. Drummer and Ashford track down a terrorist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":15590},{"seriesId":36,"episodeFileId":16903,"seasonNumber":4,"episodeNumber":3,"title":"Subduction","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"New alien threats emerge on Ilus as Naomi battles health challenges on the planet. Bobbie searches for a missing person on Mars. Avasarala faces a new challenge in the UN.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":15591},{"seriesId":36,"episodeFileId":16904,"seasonNumber":4,"episodeNumber":4,"title":"Retrograde","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Drummer and Ashford confront a dangerous person from Naomi\u2019s past. Murtry hunts down a target. Bobbie\u2019s makes a life-changing confession.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":15592},{"seriesId":36,"episodeFileId":16905,"seasonNumber":4,"episodeNumber":5,"title":"Oppressor","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"As tensions on Ilus reach a boiling point, Holden reveals a secret. Avasarala debates Nancy Gao. An emergency on the Roci forces Alex and Naomi into action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":15593},{"seriesId":36,"episodeFileId":16906,"seasonNumber":4,"episodeNumber":6,"title":"Displacement","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"The Roci crew prepares for an incoming disaster on Ilus. Ashford and Drummer close in on an enemy within the Belt. Bobbie takes on a dangerous job.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":15594},{"seriesId":36,"episodeFileId":16907,"seasonNumber":4,"episodeNumber":7,"title":"A Shot in the Dark","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Naomi and Alex work to keep the Barbapiccola in orbit amidst a power outage. Avasarala faces a tough decision. Holden and Elvi race to find a cure for a disease spreading on Ilus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":15595},{"seriesId":36,"episodeFileId":16908,"seasonNumber":4,"episodeNumber":8,"title":"The One-Eyed Man","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Avasarala faces fallout for the UN\u2019s military mission. Ashford and Drummer makes big decisions about their future within the OPA. A spreading illness on Ilus takes a toll on Amos. Alex and Naomi\u2019s attempt to rescue the Barb turns desperate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":15596},{"seriesId":36,"episodeFileId":16909,"seasonNumber":4,"episodeNumber":9,"title":"Saeculum","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Holden and Miller race to save Ilus. Murtry puts his endgame into motion, putting the Roci crew\u2019s lives at risk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":15597},{"seriesId":36,"episodeFileId":16910,"seasonNumber":4,"episodeNumber":10,"title":"Cibola Burn","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Ashford closes in on an enemy while uncovering a dangerous plot. Avasarala faces a crossroads in her personal and political life. The Roci crew works to reestablish life on Ilus in the wake of a deadly catastrophe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":15598},{"seriesId":36,"episodeFileId":16895,"seasonNumber":5,"episodeNumber":1,"title":"Exodus","airDate":"2020-12-16","airDateUtc":"2020-12-16T05:00:00Z","overview":"Holden tries to convince Fred Johnson to destroy the last sample of protomolecule. Naomi gets an important lead to her son. On Luna, Avasarala begins to hunt for Marco Inaros.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":19797},{"seriesId":36,"episodeFileId":16894,"seasonNumber":5,"episodeNumber":2,"title":"Churn","airDate":"2020-12-16","airDateUtc":"2020-12-16T05:44:00Z","overview":"Holden and Fred deal with infiltrators on Tycho. Drummer's past comes back to haunt her. Amos returns to Baltimore. Alex and Bobbie's investigation on Mars leads to rogue soldiers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":19798},{"seriesId":36,"episodeFileId":16896,"seasonNumber":5,"episodeNumber":3,"title":"Mother","airDate":"2020-12-16","airDateUtc":"2020-12-16T06:28:00Z","overview":"Naomi comes face to face with Filip. Holden and Fred turn the tables. Avasarala closes in on Marco's plot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":19799},{"seriesId":36,"episodeFileId":16942,"seasonNumber":5,"episodeNumber":4,"title":"Gaugamela","airDate":"2020-12-23","airDateUtc":"2020-12-23T05:00:00Z","overview":"Marco's grand plan shocks Earth, Mars and the Belt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":19800},{"seriesId":36,"episodeFileId":16981,"seasonNumber":5,"episodeNumber":5,"title":"Down and Out","airDate":"2020-12-30","airDateUtc":"2020-12-30T05:00:00Z","overview":"Amos and Clarissa are trapped in a collapsed building. Naomi contends with her old family. Holden assembles a new crew on the Roci. Alex and Bobbie make a dangerous discovery in the Belt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":19801},{"seriesId":36,"episodeFileId":17018,"seasonNumber":5,"episodeNumber":6,"title":"Tribes","airDate":"2021-01-06","airDateUtc":"2021-01-06T05:00:00Z","overview":"Holden and the Roci go on the hunt. Amos and Clarissa seek shelter on a devastated Earth. Bobbie and Alex fight a desperate battle. Marco makes Drummer an offer she can't refuse. Avasarala returns to a position of power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":19802},{"seriesId":36,"episodeFileId":17036,"seasonNumber":5,"episodeNumber":7,"title":"Oyedeng","airDate":"2021-01-13","airDateUtc":"2021-01-13T05:00:00Z","overview":"Naomi makes a desperate attempt to save her son from Marco. On the Roci, Holden battles for the last sample of protomolecule.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":19803},{"seriesId":36,"episodeFileId":17113,"seasonNumber":5,"episodeNumber":8,"title":"Hard Vacuum","airDate":"2021-01-20","airDateUtc":"2021-01-20T05:00:00Z","overview":"Amos returns to Baltimore with Clarissa. On Luna, Avasarala's alliances begin to shift. Alone and adrift, Naomi becomes a deadly lure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":19804},{"seriesId":36,"episodeFileId":17260,"seasonNumber":5,"episodeNumber":9,"title":"Winnipesaukee","airDate":"2021-01-27","airDateUtc":"2021-01-27T05:00:00Z","overview":"Amos, Clarissa, and a gang of thieves work together to leave Earth. Avasarala tries to head off a brutal military strike. Drummer's new family bonds are tested as Naomi's life hangs in the balance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":19805},{"seriesId":36,"episodeFileId":17476,"seasonNumber":5,"episodeNumber":10,"title":"Nemesis Games","airDate":"2021-02-03","airDateUtc":"2021-02-03T05:00:00Z","overview":"Holden and the Roci face off against Marco's forces and Drummer. Alex and Bobbie attempt a dangerous rescue of Naomi, and the balance of power in the Solar System shifts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":19806}],"episodeFile":[{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Dulcinea-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E01.Dulcinea-Bluray-1080p.mkv","size":3517670999,"dateAdded":"2018-10-10T21:41:36.333088Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8966000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1318},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Safe-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E01.Safe-Bluray-1080p.mkv","size":3515999761,"dateAdded":"2018-10-10T21:41:36.3635Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8568000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1319},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Fight or Flight-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E01.Fight or Flight-Bluray-1080p.mkv","size":3513643217,"dateAdded":"2018-10-10T21:41:36.393469Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9232000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1320},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Big Empty-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E02.The Big Empty-Bluray-1080p.mkv","size":3518392422,"dateAdded":"2018-10-10T21:41:36.422966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9376000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1321},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Doors & Corners-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E02.Doors & Corners-Bluray-1080p.mkv","size":3516002533,"dateAdded":"2018-10-10T21:41:36.453014Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9310000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1322},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E02.IFF-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E02.IFF-Bluray-1080p.mkv","size":3513441569,"dateAdded":"2018-10-10T21:41:36.491518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1323},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Remember the Cant-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E03.Remember the Cant-Bluray-1080p.mkv","size":3518182602,"dateAdded":"2018-10-10T21:41:36.525108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9376000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1324},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Static-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E03.Static-Bluray-1080p.mkv","size":3517864353,"dateAdded":"2018-10-10T21:41:36.558628Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9652000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1325},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Assured Destruction-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E03.Assured Destruction-Bluray-1080p.mkv","size":3512612344,"dateAdded":"2018-10-10T21:41:36.591625Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9039000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1326},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E04.CQB-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E04.CQB-Bluray-1080p.mkv","size":3518504583,"dateAdded":"2018-10-10T21:41:36.626703Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9508000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1327},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Godspeed-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E04.Godspeed-Bluray-1080p.mkv","size":3516260270,"dateAdded":"2018-10-10T21:41:36.655235Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9209000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1328},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Reload-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E04.Reload-Bluray-1080p.mkv","size":3512365991,"dateAdded":"2018-10-10T21:41:36.693382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9027000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1329},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Back to the Butcher-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E05.Back to the Butcher-Bluray-1080p.mkv","size":3518319221,"dateAdded":"2018-10-10T21:41:36.726324Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9376000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1330},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Home-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E05.Home-Bluray-1080p.mkv","size":3517334926,"dateAdded":"2018-10-10T21:41:36.754752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9019000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1331},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Triple Point-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E05.Triple Point-Bluray-1080p.mkv","size":3511372821,"dateAdded":"2018-10-10T21:41:36.798959Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9346000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1332},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Rock Bottom-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E06.Rock Bottom-Bluray-1080p.mkv","size":3518583559,"dateAdded":"2018-10-10T21:41:36.835117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9380000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1333},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Paradigm Shift-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E06.Paradigm Shift-Bluray-1080p.mkv","size":3517979314,"dateAdded":"2018-10-10T21:41:36.866096Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1334},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Immolation-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E06.Immolation-Bluray-1080p.mkv","size":3510199340,"dateAdded":"2018-10-10T21:41:36.897663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9171000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1335},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Windmills-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E07.Windmills-Bluray-1080p.mkv","size":3517885002,"dateAdded":"2018-10-10T21:41:36.927513Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9503000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1336},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Seventh Man-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E07.The Seventh Man-Bluray-1080p.mkv","size":3517756597,"dateAdded":"2018-10-10T21:41:36.957485Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9021000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1337},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Delta-V-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E07.Delta-V-Bluray-1080p.mkv","size":3511543251,"dateAdded":"2018-10-10T21:41:36.986569Z","releaseGroup":"V","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1338},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Salvage-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E08.Salvage-Bluray-1080p.mkv","size":3518586487,"dateAdded":"2018-10-10T21:41:37.021631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9376000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1339},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Pyre-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E08.Pyre-Bluray-1080p.mkv","size":3517934427,"dateAdded":"2018-10-10T21:41:37.050757Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9070000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1340},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E08.It Reaches Out-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E08.It Reaches Out-Bluray-1080p.mkv","size":3513106109,"dateAdded":"2018-10-10T21:41:37.094219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9339000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1341},{"seriesId":36,"seasonNumber":1,"relativePath":"Season 01\/S01E09E10.Critical Mass + Leviathan Wakes-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 01\/S01E09E10.Critical Mass + Leviathan Wakes-Bluray-1080p.mkv","size":7042233211,"dateAdded":"2018-10-10T21:41:37.127699Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10158000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:20:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1342},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Weeping Somnambulist-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E09.The Weeping Somnambulist-Bluray-1080p.mkv","size":3517438821,"dateAdded":"2018-10-10T21:41:37.163112Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9563000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1343},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Intransigence-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E09.Intransigence-Bluray-1080p.mkv","size":3511461385,"dateAdded":"2018-10-10T21:41:37.197985Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9302000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1344},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Cascade-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E10.Cascade-Bluray-1080p.mkv","size":3515486970,"dateAdded":"2018-10-10T21:41:37.234655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9577000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1345},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Dandelion Sky-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E10.Dandelion Sky-Bluray-1080p.mkv","size":3512423357,"dateAdded":"2018-10-10T21:41:37.263839Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9587000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1346},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Here There Be Dragons-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E11.Here There Be Dragons-Bluray-1080p.mkv","size":3515792097,"dateAdded":"2018-10-10T21:41:37.299022Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9197000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1347},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Fallen World-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E11.Fallen World-Bluray-1080p.mkv","size":3511754295,"dateAdded":"2018-10-10T21:41:37.327317Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9025000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1348},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Monster and the Rocket-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E12.The Monster and the Rocket-Bluray-1080p.mkv","size":3515857545,"dateAdded":"2018-10-10T21:41:37.355923Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9025000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1349},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Congregation-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E12.Congregation-Bluray-1080p.mkv","size":3510139981,"dateAdded":"2018-10-10T21:41:37.393954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9602000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1350},{"seriesId":36,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Caliban's War-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 02\/S02E13.Caliban's War-Bluray-1080p.mkv","size":3516191265,"dateAdded":"2018-10-10T21:41:37.425006Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9414000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1351},{"seriesId":36,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Abaddon's Gate-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 03\/S03E13.Abaddon's Gate-Bluray-1080p.mkv","size":3510527945,"dateAdded":"2018-10-10T21:41:37.454927Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9752000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1352},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Churn-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E02.Churn-WEBDL-1080p.mkv","size":2653962724,"dateAdded":"2020-12-16T00:24:20.727654Z","sceneName":"The.Expanse.S05E02.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5977285,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:24","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16894},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Exodus-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E01.Exodus-WEBDL-1080p.mkv","size":2945486923,"dateAdded":"2020-12-16T00:33:20.976913Z","sceneName":"The.Expanse.S05E01.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6807993,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:40","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16895},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Mother-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E03.Mother-WEBDL-1080p.mkv","size":2597383464,"dateAdded":"2020-12-16T00:39:51.028304Z","sceneName":"The.Expanse.S05E03.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5890583,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:58","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16896},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E01.New Terra-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E01.New Terra-Bluray-1080p.mkv","size":5804296113,"dateAdded":"2020-12-17T16:03:03.724867Z","sceneName":"The.Expanse.S04E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3111417,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13085725,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16901},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Jetsam-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E02.Jetsam-Bluray-1080p.mkv","size":5879375375,"dateAdded":"2020-12-17T16:05:25.622153Z","sceneName":"The.Expanse.S04E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3055252,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13138113,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16902},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Subduction-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E03.Subduction-Bluray-1080p.mkv","size":4830823902,"dateAdded":"2020-12-17T16:07:50.150959Z","sceneName":"The.Expanse.S04E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3091978,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10883767,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16903},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Retrograde-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E04.Retrograde-Bluray-1080p.mkv","size":4986605882,"dateAdded":"2020-12-17T16:10:05.764292Z","sceneName":"The.Expanse.S04E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3074787,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12032583,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16904},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Oppressor-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E05.Oppressor-Bluray-1080p.mkv","size":4356919844,"dateAdded":"2020-12-17T16:12:22.188624Z","sceneName":"The.Expanse.S04E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3075004,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9694003,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16905},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Displacement-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E06.Displacement-Bluray-1080p.mkv","size":5266919000,"dateAdded":"2020-12-17T16:14:34.016762Z","sceneName":"The.Expanse.S04E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3153573,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11307420,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16906},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E07.A Shot in the Dark-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E07.A Shot in the Dark-Bluray-1080p.mkv","size":5969507528,"dateAdded":"2020-12-17T16:16:56.168986Z","sceneName":"The.Expanse.S04E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3068366,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":14843713,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16907},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The One-Eyed Man-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E08.The One-Eyed Man-Bluray-1080p.mkv","size":6701405767,"dateAdded":"2020-12-17T16:19:18.947599Z","sceneName":"The.Expanse.S04E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3002635,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13987229,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16908},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Saeculum-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E09.Saeculum-Bluray-1080p.mkv","size":5371877534,"dateAdded":"2020-12-17T16:21:44.378724Z","sceneName":"The.Expanse.S04E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3244966,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13311597,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16909},{"seriesId":36,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Cibola Burn-Bluray-1080p.mkv","path":"\/tv\/The Expanse\/Season 04\/S04E10.Cibola Burn-Bluray-1080p.mkv","size":5674783730,"dateAdded":"2020-12-17T16:23:57.754993Z","sceneName":"The.Expanse.S04E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3086205,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12483325,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16910},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Guagamela-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E04.Guagamela-WEBDL-1080p.mkv","size":2772854101,"dateAdded":"2020-12-23T01:00:05.42346Z","sceneName":"The.Expanse.S05E04.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7301586,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:37","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16942},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Down and Out-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E05.Down and Out-WEBDL-1080p.mkv","size":2975799409,"dateAdded":"2020-12-30T00:53:44.091295Z","sceneName":"The.Expanse.S05E05.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7281531,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:05","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16981},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Tribes-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E06.Tribes-WEBDL-1080p.mkv","size":2943985881,"dateAdded":"2021-01-06T00:40:24.905801Z","sceneName":"The.Expanse.S05E06.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7074369,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17018},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Oyedeng-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E07.Oyedeng-WEBDL-1080p.mkv","size":3229613581,"dateAdded":"2021-01-13T00:50:27.962141Z","sceneName":"The.Expanse.S05E07.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8404426,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:40","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17036},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Hard Vacuum-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E08.Hard Vacuum-WEBDL-1080p.mkv","size":3222020309,"dateAdded":"2021-01-20T00:56:40.017978Z","sceneName":"The.Expanse.S05E08.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7408729,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:35","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17113},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Winnipesaukee-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E09.Winnipesaukee-WEBDL-1080p.mkv","size":3296120671,"dateAdded":"2021-01-27T00:53:04.550918Z","sceneName":"The.Expanse.S05E09.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7858065,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:51","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17260},{"seriesId":36,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Nemesis Games-WEBDL-1080p.mkv","path":"\/tv\/The Expanse\/Season 05\/S05E10.Nemesis Games-WEBDL-1080p.mkv","size":3250335115,"dateAdded":"2021-02-03T01:13:40.980619Z","sceneName":"The.Expanse.S05E10.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7107746,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:12","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17476}],"queue":[]},"37":{"series":{"title":"DuckTales (2017)","alternateTitles":[{"title":"La bande \u00e0 Picsou (2017) ","seasonNumber":-1}],"sortTitle":"ducktales 2017","status":"ended","ended":true,"overview":"Ducktales are the adventures of billionaire Scrooge McDuck and his nephews Huey, Dewey and Louie, their famous uncle Donald Duck, pilot extraordinaire Launchpad, Mrs. Beakly, Webby and Gizmoduck. Adventures and hidden treasures are everywhere, in their hometown Duckburg and all around the world.","previousAiring":"2021-03-15T23:00:00Z","network":"Disney XD","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/37\/banner.jpg?lastWrite=637100123750236380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/330134-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/37\/poster.jpg?lastWrite=637100123752436330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/330134-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/37\/fanart.jpg?lastWrite=637100123748396410","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/330134-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":21,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-08-18T23:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":17530573238,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-09-12T23:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":20680394845,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-03-15T23:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":19243779591,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/DuckTales (2017)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":330134,"tvRageId":0,"tvMazeId":19621,"firstAired":"2017-08-12T00:00:00Z","seriesType":"standard","cleanTitle":"ducktales2017","imdbId":"tt5531466","titleSlug":"ducktales-2017","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children","Family"],"tags":[],"added":"2018-07-31T01:28:58.2807303Z","ratings":{"votes":560,"value":9.3},"statistics":{"seasonCount":3,"episodeFileCount":69,"episodeCount":69,"totalEpisodeCount":90,"sizeOnDisk":57454747674,"percentOfEpisodes":100.0},"id":37},"episodes":[{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Donald Duck's Tales","airDate":"2017-03-10","airDateUtc":"2017-03-11T00:00:00Z","overview":"Donald Duck is the over-stressed guardian to his three nephews, Huey, Dewey, and Louie. They may drive him crazy, but Donald puts his family first \u2013 even if that means tagging along on dangerous adventures that tend to get him hurt.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1655},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Donald's Birthday","airDate":"2017-06-09","airDateUtc":"2017-06-09T23:00:00Z","overview":"Ducktales (2017) short featuring: Donald Duck. Uncle Scrooge, Huey, Dewey, Louie and Webby surprise Donald for his birthday - only for things to go awry.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1656},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Meet Webby Vanderquack!","airDate":"2017-06-09","airDateUtc":"2017-06-09T23:22:00Z","overview":"Ducktales (2017) short featuring: Webby. Webby proves she is the ultimate treasure hunter when trying to get to the...cookie jar!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1657},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Meet Mrs. Beakley!","airDate":"2017-06-09","airDateUtc":"2017-06-09T23:44:00Z","overview":"Een gewone dag bij de familie Duck.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1658},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Meet Scrooge!","airDate":"2017-06-09","airDateUtc":"2017-06-10T00:06:00Z","overview":"Ducktales (2017) short featuring: Scrooge. A time machine in the shape of a clock causes some trouble for Scrooge.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1659},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Meet Huey!","airDate":"2017-06-09","airDateUtc":"2017-06-10T00:28:00Z","overview":"Ducktales (2017) short featuring: Huey. Huey proves again that The Junior Woodchucks' Guidebook has the solution to everything.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1660},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Meet Launchpad McQuack!","airDate":"2017-06-09","airDateUtc":"2017-06-10T00:50:00Z","overview":"Ducktales (2017) short featuring: Launchpad. After causing his usual massive destruction, this time landing his plane on a road with cars, Launchpad decides to write notes for the owners of damaged cars.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1661},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"360\u00b0 Adventure: The Lost Key of Tralla La","airDate":"2017-07-29","airDateUtc":"2017-07-29T23:00:00Z","overview":"Adventure calls when Scrooge, Huey, Dewey, Louie and Webby recover the Lost Key of Tralla La! Originally aired on YouTube in 360 degrees","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1662},{"seriesId":37,"episodeFileId":1212,"seasonNumber":1,"episodeNumber":1,"title":"Woo-oo!","airDate":"2017-08-12","airDateUtc":"2017-08-12T23:00:00Z","overview":"With no one else to watch them while he attends a job interview, Donald Duck begrudgingly leaves his nephews Huey, Dewey and Louie with his uncle Scrooge McDuck. With his adventurer's spirit rekindled, Scrooge decides to take them all on a mission to find the Lost Jewel of Atlantis. After this successful adventure Beakley and Donald allow the children to accompany Scrooge on further expeditions. Scrooge offers to let them all move into McDuck Manor. In the aftermath, Dewey discovers a painting of their mother adventuring alongside Scrooge and Donald.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1669},{"seriesId":37,"episodeFileId":1212,"seasonNumber":1,"episodeNumber":2,"title":"Daytrip of Doom!","airDate":"2017-09-23","airDateUtc":"2017-09-23T23:00:00Z","overview":"The nephews take Webby to Funso's and have a dangerous run in with the Beagle Boys. Donald rebels against Mrs. Beakley's strict \"house rules\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1670},{"seriesId":37,"episodeFileId":1213,"seasonNumber":1,"episodeNumber":3,"title":"The Great Dime Chase!","airDate":"2017-09-23","airDateUtc":"2017-09-23T23:22:00Z","overview":"Louie accidentally spends Scrooge\u2019s Number One Dime on a soda and turns to mad inventor Gyro Gearloose for help to get it back, while Dewey and Webby find information about Della Duck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1671},{"seriesId":37,"episodeFileId":1214,"seasonNumber":1,"episodeNumber":4,"title":"The Beagle Birthday Massacre!","airDate":"2017-09-30","airDateUtc":"2017-09-30T23:00:00Z","overview":"Webbigail meets a new friend and crashes Ma Beagle's birthday party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1672},{"seriesId":37,"episodeFileId":1215,"seasonNumber":1,"episodeNumber":5,"title":"Terror of the Terra-Firmians!","airDate":"2017-10-07","airDateUtc":"2017-10-07T23:00:00Z","overview":"Huey and Webby\u2019s disagreement over the existence of a mythic species leads the kids to explore an eerie abandoned subway tunnel, while Mrs. Beakley grows suspicious of Lena.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1673},{"seriesId":37,"episodeFileId":1216,"seasonNumber":1,"episodeNumber":6,"title":"The House of the Lucky Gander!","airDate":"2017-10-14","airDateUtc":"2017-10-14T23:00:00Z","overview":"Donald competes with his cousin Gladstone Gander to impress Louie at a mysterious resort in Macaw, while Scrooge tries to lure the kids away from the resort\u2019s endless distractions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1674},{"seriesId":37,"episodeFileId":1217,"seasonNumber":1,"episodeNumber":7,"title":"The Infernal Internship of Mark Beaks!","airDate":"2017-10-21","airDateUtc":"2017-10-21T23:00:00Z","overview":"Huey competes with Dewey for a coveted internship with Duckburg\u2019s newest tech billionaire, Mark Beaks, while Scrooge and Glomgold team up to take this new competitor down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1675},{"seriesId":37,"episodeFileId":1218,"seasonNumber":1,"episodeNumber":8,"title":"The Living Mummies of Toth-Ra!","airDate":"2017-10-28","airDateUtc":"2017-10-28T23:00:00Z","overview":"In a lost pyramid, Louie interprets a pharaoh\u2019s prophecy to his advantage, forcing Scrooge and Launchpad to convince a group of living mummies to rescue him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1676},{"seriesId":37,"episodeFileId":1219,"seasonNumber":1,"episodeNumber":9,"title":"The Impossible Summit of Mt. Neverrest!","airDate":"2017-12-02","airDateUtc":"2017-12-03T00:00:00Z","overview":"Scrooge and Huey are determined to be the first to set foot atop an impossible summit, but the snow-capped mountain holds a treacherous secret that tests both their commitment and survival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1677},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"30 Things With Huey","airDate":"2018-05-01","airDateUtc":"2018-05-01T23:00:00Z","overview":"30 Things is a series of shorts in which Huey, Dewey, Louie and Webby each list thirty things that they enjoy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11604},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"30 Things With Webby","airDate":"2018-05-02","airDateUtc":"2018-05-02T23:00:00Z","overview":"30 Things is a series of shorts in which Huey, Dewey, Louie and Webby each list thirty things that they enjoy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11605},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"30 Things With Dewey","airDate":"2018-05-03","airDateUtc":"2018-05-03T23:00:00Z","overview":"30 Things is a series of shorts in which Huey, Dewey, Louie and Webby each list thirty things that they enjoy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11606},{"seriesId":37,"episodeFileId":1220,"seasonNumber":1,"episodeNumber":10,"title":"The Spear of Selene!","airDate":"2018-05-04","airDateUtc":"2018-05-04T23:00:00Z","overview":"Donald is dragged into a feud between Scrooge and Zeus, while Dewey and Webby search for an artifact that may provide the truth about Dewey's mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":1678},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"30 Things With Louie","airDate":"2018-05-04","airDateUtc":"2018-05-04T23:00:00Z","overview":"30 Things is a series of shorts in which Huey, Dewey, Louie and Webby each list thirty things that they enjoy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11607},{"seriesId":37,"episodeFileId":1221,"seasonNumber":1,"episodeNumber":11,"title":"Beware the B.U.D.D.Y. System!","airDate":"2018-05-11","airDateUtc":"2018-05-11T23:00:00Z","overview":"Launchpad recruits Gizmoduck after he\u2019s menaced by tech genius Mark Beaks\u2019 newest invention.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":1679},{"seriesId":37,"episodeFileId":1222,"seasonNumber":1,"episodeNumber":12,"title":"The Missing Links of Moorshire!","airDate":"2018-05-18","airDateUtc":"2018-05-18T23:00:00Z","overview":"Scrooge and Glomgold face off in the \"Duckburg Millionaires' Club Golf Invitational\" in the Scottish Highlands, assisted by Huey, Dewey, Louie, Launchpad and Webby. The game is however hijacked by the spirits of ancient druids and turns lethal, with petrifying mists and a couple of kelpies attempting to have them drowned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":1680},{"seriesId":37,"episodeFileId":1223,"seasonNumber":1,"episodeNumber":13,"title":"McMystery at McDuck McManor!","airDate":"2018-05-25","airDateUtc":"2018-05-25T23:00:00Z","overview":"Huey decides to throw a birthday party for Scrooge, despite everyone warning him that Scrooge hates celebrating his birthday. When Scrooge goes missing and the guests turn out to be his worst enemies, Huey decides to solve the mystery, unaware that the ghost of Scrooge's faithful butler, the long deceased Duckworth, is involved.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1681},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"The World\u2019s Longest Deathtrap (1)","airDate":"2018-05-28","airDateUtc":"2018-05-28T23:00:00Z","overview":"With Webby and Dewey trapped in a temple, will they escape? Will we find out just how long this death trap goes on for?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1664},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"The World\u2019s Longest Deathtrap (2)","airDate":"2018-06-03","airDateUtc":"2018-06-03T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1665},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The World\u2019s Longest Deathtrap (3)","airDate":"2018-06-10","airDateUtc":"2018-06-10T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1666},{"seriesId":37,"episodeFileId":1224,"seasonNumber":1,"episodeNumber":14,"title":"Jaw$!","airDate":"2018-06-16","airDateUtc":"2018-06-16T23:00:00Z","overview":"The kids and Launchpad work together to capture a mystical money shark while Scrooge attempts to better his public image with a televised interview.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":1682},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The World\u2019s Longest Deathtrap (4)","airDate":"2018-06-17","airDateUtc":"2018-06-17T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1667},{"seriesId":37,"episodeFileId":1225,"seasonNumber":1,"episodeNumber":15,"title":"The Golden Lagoon of White Agony Plains!","airDate":"2018-06-23","airDateUtc":"2018-06-23T23:00:00Z","overview":"Scrooge re-teams with his conniving ex-partner and old flame, Goldie O' Gilt, to find a long-lost golden lagoon, but Glomgold has other plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":1683},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"The World\u2019s Longest Deathtrap (5)","airDate":"2018-06-24","airDateUtc":"2018-06-24T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1668},{"seriesId":37,"episodeFileId":1226,"seasonNumber":1,"episodeNumber":16,"title":"Day of the Only Child!","airDate":"2018-06-30","airDateUtc":"2018-06-30T23:00:00Z","overview":"When Dewey invents a holiday that allows the triplets to be only children for a day, each realizes they need their brothers more than they thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":1684},{"seriesId":37,"episodeFileId":1227,"seasonNumber":1,"episodeNumber":17,"title":"From the Confidential Case Files of Agent 22!","airDate":"2018-07-07","airDateUtc":"2018-07-07T23:00:00Z","overview":"Webby learns how Scrooge and Mrs. Beakley first met while she helps Scrooge rescue her granny from the clutches of rival spy Black Heron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":1685},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Dewey Dew-Night!: The Sidekick","airDate":"2018-07-08","airDateUtc":"2018-07-08T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9411},{"seriesId":37,"episodeFileId":1228,"seasonNumber":1,"episodeNumber":18,"title":"Who Is Gizmoduck?!","airDate":"2018-07-14","airDateUtc":"2018-07-14T23:00:00Z","overview":"As Fenton figures out how to be a hero, Mark Beaks offers to hire Gizmoduck and help him defend all of Duckburg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":1686},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Dewey Dew-Night!: The Interview","airDate":"2018-07-15","airDateUtc":"2018-07-15T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9412},{"seriesId":37,"episodeFileId":1229,"seasonNumber":1,"episodeNumber":19,"title":"The Other Bin of Scrooge McDuck!","airDate":"2018-07-21","airDateUtc":"2018-07-21T23:00:00Z","overview":"Lena's loyalties are tested when Magica forces her to lead Webby on a raid to a facility full of Scrooge's most dangerous artifacts to find his No. 1 Dime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":1687},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Dewey Dew-Night!: Will It Crash?!","airDate":"2018-07-22","airDateUtc":"2018-07-22T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9413},{"seriesId":37,"episodeFileId":1230,"seasonNumber":1,"episodeNumber":20,"title":"Sky Pirates\u2026in the Sky!","airDate":"2018-07-28","airDateUtc":"2018-07-28T23:00:00Z","overview":"Feeling ignored, Dewey finds a new family: a band of singing and dancing pirates looking to rob Scrooge blind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":1688},{"seriesId":37,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Dewey Dew-Night!: Bedtime","airDate":"2018-07-29","airDateUtc":"2018-07-29T23:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9414},{"seriesId":37,"episodeFileId":1231,"seasonNumber":1,"episodeNumber":21,"title":"The Secret(s) of Castle McDuck!","airDate":"2018-08-04","airDateUtc":"2018-08-04T23:00:00Z","overview":"On a family trip to Scrooge's ancestral castle, Dewey tries to hide the truth about his mother as his brothers search for family secrets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":1689},{"seriesId":37,"episodeFileId":1232,"seasonNumber":1,"episodeNumber":22,"title":"The Last Crash of the Sunchaser!","airDate":"2018-08-11","airDateUtc":"2018-08-11T23:00:00Z","overview":"Stuck on a precarious peak, the kids secretly search the plane for clues about Della's disappearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":1690},{"seriesId":37,"episodeFileId":1233,"seasonNumber":1,"episodeNumber":23,"title":"The Shadow War!","airDate":"2018-08-18","airDateUtc":"2018-08-18T23:00:00Z","overview":"Magica De Spell is close to exacting revenge on Scrooge, so the family races against time to plan a dangerous rescue mission to save Scrooge and the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":1691},{"seriesId":37,"episodeFileId":5018,"seasonNumber":2,"episodeNumber":1,"title":"The Most Dangerous Game\u2026 Night!","airDate":"2018-10-20","airDateUtc":"2018-10-20T23:00:00Z","overview":"A game night is anything but relaxing as the family faces shrink rays, a barbaric civilization and an unhealthy level of competitiveness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":1692},{"seriesId":37,"episodeFileId":5580,"seasonNumber":2,"episodeNumber":2,"title":"The Depths of Cousin Fethry!","airDate":"2018-10-27","airDateUtc":"2018-10-27T23:00:00Z","overview":"Huey and Dewey are led on an adventure by their distant Uncle Fethry, who takes them to the depths of Scrooge's deep-sea laboratory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":7285},{"seriesId":37,"episodeFileId":5827,"seasonNumber":2,"episodeNumber":3,"title":"The Ballad of Duke Baloney!","airDate":"2018-11-03","airDateUtc":"2018-11-03T23:00:00Z","overview":"After his disappearance, Glomgold resurfaces as anything but his ever-scheming self, while Webby and Louie try to uncover the truth behind who is Duke Baloney.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":7286},{"seriesId":37,"episodeFileId":5731,"seasonNumber":2,"episodeNumber":4,"title":"The Town Where Everyone Was Nice!","airDate":"2018-11-10","airDateUtc":"2018-11-11T00:00:00Z","overview":"The family visits a Brazilian town with a dark secret where Donald reunites with his old friends Jose Carioca & Panchito Pistoles (Bernardo de Paula & Arturo Del Puerto), thus reuniting The Three Caballeros.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":7287},{"seriesId":37,"episodeFileId":5828,"seasonNumber":2,"episodeNumber":5,"title":"Storkules in Duckburg!","airDate":"2018-11-17","airDateUtc":"2018-11-18T00:00:00Z","overview":"Louie recruits Storkules for his professional monster extermination business, while Storkules faces his greatest challenge: being Donald's roommate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":7288},{"seriesId":37,"episodeFileId":5728,"seasonNumber":2,"episodeNumber":6,"title":"Last Christmas!","airDate":"2018-12-01","airDateUtc":"2018-12-02T00:00:00Z","overview":"Scrooge avoids the pressures of the holidays by traveling back in time with a trio of fun-loving ghosts to crash history's greatest Christmas parties; time-lost Dewey teams up with young Donald Duck to find his mother on Christmas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":8827},{"seriesId":37,"episodeFileId":7158,"seasonNumber":2,"episodeNumber":7,"title":"What Ever Happened to Della Duck?!","airDate":"2019-03-09","airDateUtc":"2019-03-10T00:00:00Z","overview":"Della struggles for survival against dangerous elements of the Moon, as she looks for a way to get back to her family on Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":10732},{"seriesId":37,"episodeFileId":7426,"seasonNumber":2,"episodeNumber":8,"title":"Treasure of the Found Lamp!","airDate":"2019-05-07","airDateUtc":"2019-05-07T23:00:00Z","overview":"As the boys track a missing artifact across Duckburg, Scrooge and Webby stall the warrior looking for it with a phony quest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":11097},{"seriesId":37,"episodeFileId":7430,"seasonNumber":2,"episodeNumber":9,"title":"The Outlaw Scrooge McDuck!","airDate":"2019-05-08","airDateUtc":"2019-05-08T23:00:00Z","overview":"In the old west, Scrooge and Goldie start a band of outlaws and stage a heist to save a small town from a corrupt businessman, John D. Rockerduck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":11098},{"seriesId":37,"episodeFileId":7434,"seasonNumber":2,"episodeNumber":10,"title":"The 87 Cent Solution!","airDate":"2019-05-09","airDateUtc":"2019-05-09T23:00:00Z","overview":"The kids must stop Scrooge's unhealthy obsession with a few missing coins to keep him from becoming the next Glomgold.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":11099},{"seriesId":37,"episodeFileId":7456,"seasonNumber":2,"episodeNumber":11,"title":"The Golden Spear!","airDate":"2019-05-10","airDateUtc":"2019-05-10T23:00:00Z","overview":"As Della rebuilds her ship, Penumbra becomes convinced Della\u2019s planning an attack. Meanwhile, Donald\u2019s nap keeps getting interrupted by adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":11100},{"seriesId":37,"episodeFileId":7457,"seasonNumber":2,"episodeNumber":12,"title":"Nothing Can Stop Della Duck!","airDate":"2019-05-13","airDateUtc":"2019-05-13T23:00:00Z","overview":"Della Duck has faced every danger the moon has to offer to reunite with her family, but her greatest challenge is one she might not be able to fight her way out of.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":11119},{"seriesId":37,"episodeFileId":7458,"seasonNumber":2,"episodeNumber":13,"title":"Raiders of the Doomsday Vault!","airDate":"2019-05-14","airDateUtc":"2019-05-14T23:00:00Z","overview":"Dewey tries to prove himself by exploring a frozen fortress in search of a money tree seed, but Glomgold has kidnapped Scrooge in order to find it first.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":11120},{"seriesId":37,"episodeFileId":7469,"seasonNumber":2,"episodeNumber":14,"title":"Friendship Hates Magic!","airDate":"2019-05-15","airDateUtc":"2019-05-15T23:00:00Z","overview":"Stuck as a shadow, Lena tries to protect Webby from her suspicious new friend Violet during a supernatural sleepover.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":11121},{"seriesId":37,"episodeFileId":7472,"seasonNumber":2,"episodeNumber":15,"title":"The Dangerous Chemistry of Gandra Dee!","airDate":"2019-05-16","airDateUtc":"2019-05-16T23:00:00Z","overview":"With Huey\u2019s and Webby\u2019s help, Fenton woos a punk-rock scientist, Gandra Dee, only to uncover her dangerous plans for Gizmoduck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":11125},{"seriesId":37,"episodeFileId":7485,"seasonNumber":2,"episodeNumber":16,"title":"The Duck Knight Returns!","airDate":"2019-05-17","airDateUtc":"2019-05-17T23:00:00Z","overview":"When Launchpad finds out that Scrooge and Dewey intend to make a gritty movie about Darkwing Duck, he decides to track down Darkwing's original actor Jim Starling to stop it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":11169},{"seriesId":37,"episodeFileId":8861,"seasonNumber":2,"episodeNumber":17,"title":"What Ever Happened to Donald Duck?!","airDate":"2019-09-03","airDateUtc":"2019-09-03T23:00:00Z","overview":"Donald and Penumbra must break out of a Moon Prison and send a warning to Earth about a looming invasion; Dewey and Webby uncover a sinister conspiracy targeting their family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":11776},{"seriesId":37,"episodeFileId":8865,"seasonNumber":2,"episodeNumber":18,"title":"Happy Birthday, Doofus Drake!","airDate":"2019-09-04","airDateUtc":"2019-09-04T23:00:00Z","overview":"Louie teams with Goldie to scam their way through Doofus's dangerous party, while Huey pushes himself out of his comfort zone in his favorite online game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":11777},{"seriesId":37,"episodeFileId":8885,"seasonNumber":2,"episodeNumber":19,"title":"A Nightmare on Killmotor Hill!","airDate":"2019-09-05","airDateUtc":"2019-09-05T23:00:00Z","overview":"The kids are pulled into a world made of their wildest dreams; Lena's worst nightmare comes true, as Magica De Spell returns to reclaim what's hers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":11778},{"seriesId":37,"episodeFileId":8907,"seasonNumber":2,"episodeNumber":20,"title":"The Golden Armory of Cornelius Coot!","airDate":"2019-09-06","airDateUtc":"2019-09-06T23:00:00Z","overview":"Webby leads the kids in a race against the Beagles to find a secret treasure while hiding a secret of her own; Della is forced to teach Launchpad how to actually fly a plane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":11779},{"seriesId":37,"episodeFileId":8925,"seasonNumber":2,"episodeNumber":21,"title":"Timephoon!","airDate":"2019-09-09","airDateUtc":"2019-09-09T23:00:00Z","overview":"When Louie uses Gyro's Time Tub to steal lost treasures from the past, a mysterious storm in the present sends all of space and time crashing down onto the mansion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":11864},{"seriesId":37,"episodeFileId":8928,"seasonNumber":2,"episodeNumber":22,"title":"GlomTales!","airDate":"2019-09-10","airDateUtc":"2019-09-10T23:00:00Z","overview":"Glomgold forms his own team made up of all of Scrooge's greatest villains to defeat Scrooge's family once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":11865},{"seriesId":37,"episodeFileId":8932,"seasonNumber":2,"episodeNumber":23,"title":"The Richest Duck in the World!","airDate":"2019-09-11","airDateUtc":"2019-09-11T23:00:00Z","overview":"Louie, Scrooge and Owlson must escape from an unstoppable monster cursed to hunt down and destroy the richest duck in the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":11866},{"seriesId":37,"episodeFileId":9020,"seasonNumber":2,"episodeNumber":24,"title":"Moonvasion!","airDate":"2019-09-12","airDateUtc":"2019-09-12T23:00:00Z","overview":"The moon invades Duckburg, forcing Scrooge to join forces with an unlikely ally in an effort to save Earth; Della and the kids search the globe for reinforcements.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":11867},{"seriesId":37,"episodeFileId":12826,"seasonNumber":3,"episodeNumber":1,"title":"Challenge of the Senior Junior Woodchucks!","airDate":"2020-04-04","airDateUtc":"2020-04-04T23:00:00Z","overview":"Huey races against Violet in a challenge to be named Senior Junior Woodchuck, while Scrooge and the family search for a secret Woodchuck treasure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":17262},{"seriesId":37,"episodeFileId":12827,"seasonNumber":3,"episodeNumber":2,"title":"Quack Pack!","airDate":"2020-04-04","airDateUtc":"2020-04-04T23:22:00Z","overview":"The family is not quite themselves as they discover the planned family photoshoot might just be a part of a bigger \u201cwish\u201d gone wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":17289},{"seriesId":37,"episodeFileId":12835,"seasonNumber":3,"episodeNumber":3,"title":"Double-O-Duck in You Only Crash Twice!","airDate":"2020-04-11","airDateUtc":"2020-04-11T23:00:00Z","overview":"A spy video game turns dangerously real as Launchpad and Dewey must stop F.O.W.L. agent Steelbeak\u2019s plan to destroy Duckburg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":17290},{"seriesId":37,"episodeFileId":12898,"seasonNumber":3,"episodeNumber":4,"title":"The Lost Harp of Mervana!","airDate":"2020-04-18","airDateUtc":"2020-04-18T23:00:00Z","overview":"The family joins a zen mermaid society to find a missing mystery, but Louie is convinced the seemingly innocent mermaids have a villainous agenda of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":17291},{"seriesId":37,"episodeFileId":13206,"seasonNumber":3,"episodeNumber":5,"title":"Louie's Eleven!","airDate":"2020-04-25","airDateUtc":"2020-04-25T23:00:00Z","overview":"Louie plans a break-in at a high-class party so the Three Caballeros can play as Donald tries to get past the party\u2019s no-nonsense planner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":17292},{"seriesId":37,"episodeFileId":13250,"seasonNumber":3,"episodeNumber":6,"title":"Astro B.O.Y.D.!","airDate":"2020-05-02","airDateUtc":"2020-05-02T23:00:00Z","overview":"Gyro, Fenton and Huey take a malfunctioning B.O.Y.D. back to the lab where he was created in Japan, but as Huey bonds with the robot boy, a secret from Gyro's past threatens to destroy the city and Gizmoduck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":17293},{"seriesId":37,"episodeFileId":13284,"seasonNumber":3,"episodeNumber":7,"title":"The Rumble for Ragnarok!","airDate":"2020-05-09","airDateUtc":"2020-05-09T23:00:00Z","overview":"Dewey must embrace his inner heel to beat the beloved Viking wrestling champ Jormungandr in a battle royale for the fate of the Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":17294},{"seriesId":37,"episodeFileId":18162,"seasonNumber":3,"episodeNumber":8,"title":"The Phantom and the Sorceress!","airDate":"2020-09-21","airDateUtc":"2020-09-21T23:00:00Z","overview":"When a mysterious magic thief arrives in Duckburg, Lena must confront her past and team with her treacherous aunt, Magica.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":19420},{"seriesId":37,"episodeFileId":15634,"seasonNumber":3,"episodeNumber":9,"title":"They Put a Moonlander on the Earth!","airDate":"2020-09-28","airDateUtc":"2020-09-28T23:00:00Z","overview":"Webby sets out to prove to a homesick Penumbra that Earth can be a lot of fun by riding Glomgold\u2019s newest gift to Duckburg, the suspicious Flintferris Glomwheel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":19421},{"seriesId":37,"episodeFileId":15669,"seasonNumber":3,"episodeNumber":10,"title":"The Trickening!","airDate":"2020-10-05","airDateUtc":"2020-10-05T23:00:00Z","overview":"The kids forego their usual trick-or-treat path and instead take on the most haunted house in Duckburg, while Launchpad confronts ghosts from the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":19446},{"seriesId":37,"episodeFileId":15824,"seasonNumber":3,"episodeNumber":11,"title":"The Forbidden Fountain of the Foreverglades!","airDate":"2020-10-12","airDateUtc":"2020-10-12T23:00:00Z","overview":"Scrooge and Goldie O\u2019Gilt are turned into teenagers as they race Rockerduck to the Fountain of Youth, while the boys\u2019 sibling rivalry uncovers danger at a spring break hotel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":19447},{"seriesId":37,"episodeFileId":15906,"seasonNumber":3,"episodeNumber":12,"title":"Let\u2019s Get Dangerous!","airDate":"2020-10-19","airDateUtc":"2020-10-19T23:00:00Z","overview":"Darkwing gains an unlikely sidekick as he uncovers a dark conspiracy tied to the Missing Mysteries and one of Scrooge\u2019s employees.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":19448},{"seriesId":37,"episodeFileId":15958,"seasonNumber":3,"episodeNumber":13,"title":"Escape from the ImpossiBin!","airDate":"2020-10-26","airDateUtc":"2020-10-26T23:00:00Z","overview":"With F.O.W.L. at their heels, Scrooge tests out the Money Bin\u2019s new security system on Louie and Della, while Beakley and Webby train the others for an enemy attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":19449},{"seriesId":37,"episodeFileId":16047,"seasonNumber":3,"episodeNumber":14,"title":"The Split Sword of Swanstantine!","airDate":"2020-11-02","airDateUtc":"2020-11-03T00:00:00Z","overview":"The kids pair off to find the missing pieces of a mystical sword hidden throughout a marketplace unless F.O.W.L. gets to them first.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":19813},{"seriesId":37,"episodeFileId":16096,"seasonNumber":3,"episodeNumber":15,"title":"New Gods on the Block!","airDate":"2020-11-09","airDateUtc":"2020-11-10T00:00:00Z","overview":"The kids try to prove themselves by auditioning to take Zeus\u2019 place amongst the Greek gods, while Storkules interferes with Donald and Daisy\u2019s date.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":19814},{"seriesId":37,"episodeFileId":16098,"seasonNumber":3,"episodeNumber":16,"title":"The First Adventure!","airDate":"2020-11-16","airDateUtc":"2020-11-17T00:00:00Z","overview":"Scrooge is forced to babysit young Donald and Della as they go on their first adventure to find a powerful artifact, unaware that Bradford is taking on this mission personally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":19815},{"seriesId":37,"episodeFileId":16396,"seasonNumber":3,"episodeNumber":17,"title":"The Fight for Castle McDuck!","airDate":"2020-11-23","airDateUtc":"2020-11-24T00:00:00Z","overview":"A bitter feud between Scrooge and his sister, Matilda, spreads to the rest of the family as Phantom Blot attempts to steal a priceless artifact and destroy Castle McDuck once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":19816},{"seriesId":37,"episodeFileId":16489,"seasonNumber":3,"episodeNumber":18,"title":"How Santa Stole Christmas!","airDate":"2020-11-30","airDateUtc":"2020-12-01T00:00:00Z","overview":"Scrooge teams up with his archrival, Santa Claus, to save Christmas, while Webby discovers the true history behind their infamous feud.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":19817},{"seriesId":37,"episodeFileId":18161,"seasonNumber":3,"episodeNumber":19,"title":"Beaks in the Shell!","airDate":"2021-02-22","airDateUtc":"2021-02-23T00:00:00Z","overview":"Huey struggles to keep Fenton and Gandra\u2019s top-secret experiment (and their relationship) hidden from the world. But, Mark Beaks is desperate for one last gizmo to steal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":20782},{"seriesId":37,"episodeFileId":17703,"seasonNumber":3,"episodeNumber":20,"title":"The Lost Cargo of Kit Cloudkicker!","airDate":"2021-03-01","airDateUtc":"2021-03-02T00:00:00Z","overview":"Della, Dewey and Huey recruit a showboating pilot to take them to an island full of monsters in search of a missing mystery, unaware that Don Karnage is hot on their tails.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":20838},{"seriesId":37,"episodeFileId":17788,"seasonNumber":3,"episodeNumber":21,"title":"The Life and Crimes of Scrooge McDuck!","airDate":"2021-03-08","airDateUtc":"2021-03-09T00:00:00Z","overview":"Scrooge's enemies reveal a secret history to prove that he is responsible for turning them evil, forcing Louie to defend his uncle against their prosecutor, Doofus Drake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":20839},{"seriesId":37,"episodeFileId":17850,"seasonNumber":3,"episodeNumber":22,"title":"The Last Adventure!","airDate":"2021-03-15","airDateUtc":"2021-03-15T23:00:00Z","overview":"The future of adventuring hangs in the balance as the Duck family uncovers earth-shattering secrets in a final standoff with the Fiendish Organization for World Larceny (F.O.W.L.).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":20840}],"episodeFile":[{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.Woo-oo! + Daytrip of Doom!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E01E02.Woo-oo! + Daytrip of Doom!-WEBDL-1080p.mkv","size":1829102725,"dateAdded":"2018-10-10T21:38:50.955388Z","releaseGroup":"oo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5085195,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1212},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Great Dime Chase!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E03.The Great Dime Chase!-WEBDL-1080p.mkv","size":701917326,"dateAdded":"2018-10-10T21:38:50.993779Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3958189,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1213},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Beagle Birthday Massacre!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E04.The Beagle Birthday Massacre!-WEBDL-1080p.mkv","size":729476537,"dateAdded":"2018-10-10T21:38:51.022105Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4074218,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1214},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Terror of the Terra-Firmians!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E05.Terror of the Terra-Firmians!-WEBDL-1080p.mkv","size":600030135,"dateAdded":"2018-10-10T21:38:51.051479Z","releaseGroup":"Firmians","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3390847,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1215},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The House of the Lucky Gander!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E06.The House of the Lucky Gander!-WEBDL-1080p.mkv","size":738396860,"dateAdded":"2018-10-10T21:38:51.079252Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4126926,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1216},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Infernal Internship of Mark Beaks!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E07.The Infernal Internship of Mark Beaks!-WEBDL-1080p.mkv","size":707085665,"dateAdded":"2018-10-10T21:38:51.107123Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3942074,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1217},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Living Mummies of Toth-Ra!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E08.The Living Mummies of Toth-Ra!-WEBDL-1080p.mkv","size":707085665,"dateAdded":"2018-10-10T21:38:51.134942Z","releaseGroup":"Ra","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3942074,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1218},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Impossible Summit of Mt. Neverrest!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E09.The Impossible Summit of Mt. Neverrest!-WEBDL-1080p.mkv","size":899910161,"dateAdded":"2018-10-10T21:38:51.162383Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5078563,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1219},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Spear of Selene!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E10.The Spear of Selene!-WEBDL-1080p.mkv","size":875872437,"dateAdded":"2018-10-10T21:38:51.189865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4938252,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1220},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Beware the B.U.D.D.Y. System!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E11.Beware the B.U.D.D.Y. System!-WEBDL-1080p.mkv","size":872055776,"dateAdded":"2018-10-10T21:38:51.217396Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4915401,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1221},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Missing Links of Moorshire!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E12.The Missing Links of Moorshire!-WEBDL-1080p.mkv","size":746059357,"dateAdded":"2018-10-10T21:38:51.245695Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4170150,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1222},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E13.McMystery at McDuck McManor!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E13.McMystery at McDuck McManor!-WEBDL-1080p.mkv","size":593242494,"dateAdded":"2018-10-10T21:38:51.274731Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3272081,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1223},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Jaw$!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E14.Jaw$!-WEBDL-1080p.mkv","size":623883397,"dateAdded":"2018-10-10T21:38:51.302064Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3452781,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1224},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Golden Lagoon of White Agony Plains!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E15.The Golden Lagoon of White Agony Plains!-WEBDL-1080p.mkv","size":849631430,"dateAdded":"2018-10-10T21:38:51.329865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126745,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1225},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Day of the Only Child!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E16.Day of the Only Child!-WEBDL-1080p.mkv","size":841980376,"dateAdded":"2018-10-10T21:38:51.365139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126750,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1226},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E17.From the Confidential Case Files of Agent 22!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E17.From the Confidential Case Files of Agent 22!-WEBDL-1080p.mkv","size":855400972,"dateAdded":"2018-10-10T21:38:51.393759Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126736,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1227},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Who is Gizmoduck!!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E18.Who is Gizmoduck!!-WEBDL-1080p.mkv","size":754478553,"dateAdded":"2018-10-10T21:38:51.42113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237751,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1228},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Other Bin of Scrooge McDuck!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E19.The Other Bin of Scrooge McDuck!-WEBDL-1080p.mkv","size":536795779,"dateAdded":"2018-10-10T21:38:51.449487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2949417,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1229},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Sky Pirates\u2026In the Sky!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E20.Sky Pirates\u2026In the Sky!-WEBDL-1080p.mkv","size":676768986,"dateAdded":"2018-10-10T21:38:51.477306Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3764834,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1230},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Secret(s) of Castle McDuck!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E21.The Secret(s) of Castle McDuck!-WEBDL-1080p.mkv","size":507187502,"dateAdded":"2018-10-10T21:38:51.507099Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2774713,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1231},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E22.The Last Crash of the Sunchaser!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E22.The Last Crash of the Sunchaser!-WEBDL-1080p.mkv","size":602961881,"dateAdded":"2018-10-10T21:38:51.534886Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3341582,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1232},{"seriesId":37,"seasonNumber":1,"relativePath":"Season 01\/S01E23.The Shadow War!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 01\/S01E23.The Shadow War!-WEBDL-1080p.mkv","size":1281249224,"dateAdded":"2018-10-10T21:38:51.562487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3278585,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1233},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Most Dangerous Game. Night!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E01.The Most Dangerous Game. Night!-WEBDL-1080p.mkv","size":886683253,"dateAdded":"2018-10-21T15:24:04.809525Z","sceneName":"DuckTales.2017.S02E01.The.Most.Dangerous.Game.Night.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124718,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5118598,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5018},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Depths of Cousin Fethry!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E02.The Depths of Cousin Fethry!-WEBDL-1080p.mkv","size":890763872,"dateAdded":"2018-10-28T10:38:08.851756Z","sceneName":"DuckTales.2017.S02E02.The.Depths.of.Cousin.Fethry.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125604,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5141889,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5580},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Last Christmas!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E06.Last Christmas!-WEBDL-1080p.mkv","size":894205638,"dateAdded":"2018-12-27T18:11:52.453103Z","sceneName":"DuckTales.2017.S02E06.Last.Christmas.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124944,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5095077,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5728},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Town Where Everyone Was Nice!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E04.The Town Where Everyone Was Nice!-WEBDL-1080p.mkv","size":481352663,"dateAdded":"2018-12-27T18:25:15.602759Z","sceneName":"DuckTales (2017) S02E04 (1080p AMZN WEB-DL x265 HEVC 10bit AC3 2.0 Qman) [UTR]","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2622035,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5731},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Ballad of Duke Baloney!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E03.The Ballad of Duke Baloney!-WEBDL-1080p.mkv","size":386881900,"dateAdded":"2018-12-28T00:21:11.746297Z","sceneName":"DuckTales (2017) S02E03 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 2.0 Qman) [UTR]","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2063104,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5827},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Storkules in Duckburg!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E05.Storkules in Duckburg!-WEBDL-1080p.mkv","size":458252857,"dateAdded":"2018-12-28T02:39:17.712829Z","sceneName":"DuckTales (2017) S02E05 (1080p AMZN WEB-DL x265 HEVC 10bit AC3 2.0 Qman) [UTR]","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2485380,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5828},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E07.What Ever Happened to Della Duck!!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E07.What Ever Happened to Della Duck!!-WEBDL-1080p.mkv","size":585264216,"dateAdded":"2019-03-13T06:32:31.764242Z","sceneName":"DuckTales.2017.S02E07.What.Ever.Happened.to.Della.Duck.1080p.AMZN.WEBRip.DDP2.0.x264-TVSmash[rarbg]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3236806,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7158},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Treasure of the Found Lamp!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E08.Treasure of the Found Lamp!-WEBDL-1080p.mkv","size":887557283,"dateAdded":"2019-05-08T13:43:21.471147Z","sceneName":"DuckTales.2017.S02E08.Treasure.of.the.Found.Lamp.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125481,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5123076,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7426},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Outlaw Scrooge McDuck!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E09.The Outlaw Scrooge McDuck!-WEBDL-1080p.mkv","size":883057180,"dateAdded":"2019-05-09T15:53:48.194353Z","sceneName":"DuckTales.2017.S02E09.The.Outlaw.Scrooge.McDuck.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124417,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5097460,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7430},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The 87 Cent Solution!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E10.The 87 Cent Solution!-WEBDL-1080p.mkv","size":927367844,"dateAdded":"2019-05-10T15:30:27.306863Z","sceneName":"DuckTales.2017.S02E10.The.87.Cent.Solution.1080p.AMZN.WEBRip.DDP2.0.x264-TVSmash[rarbg]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7434},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Golden Spear!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E11.The Golden Spear!-WEBDL-1080p.mkv","size":888206599,"dateAdded":"2019-05-15T14:34:19.393668Z","sceneName":"DuckTales.2017.S02E11.The.Golden.Spear.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124874,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5127468,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7456},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Nothing Can Stop Della Duck!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E12.Nothing Can Stop Della Duck!-WEBDL-1080p.mkv","size":884385264,"dateAdded":"2019-05-15T18:13:00.46743Z","sceneName":"DuckTales.2017.S02E12.Nothing.Can.Stop.Della.Duck.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124798,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5104942,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7457},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Raiders of the Doomsday Vault!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E13.Raiders of the Doomsday Vault!-WEBDL-1080p.mkv","size":888210143,"dateAdded":"2019-05-15T20:19:04.806637Z","sceneName":"DuckTales.2017.S02E13.Raiders.of.the.Doomsday.Vault.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125151,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5127265,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7458},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Friendship Hates Magic!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E14.Friendship Hates Magic!-WEBDL-1080p.mkv","size":888554431,"dateAdded":"2019-05-17T17:39:25.455307Z","sceneName":"DuckTales.2017.S02E14.Friendship.Hates.Magic.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125379,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5129066,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7469},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Dangerous Chemistry of Gandra Dee!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E15.The Dangerous Chemistry of Gandra Dee!-WEBDL-1080p.mkv","size":894997172,"dateAdded":"2019-05-17T17:42:54.970758Z","sceneName":"DuckTales.2017.S02E15.The.Dangerous.Chemistry.of.Gandra.Dee.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125061,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5167450,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7472},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Duck Knight Returns!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E16.The Duck Knight Returns!-WEBDL-1080p.mkv","size":909448441,"dateAdded":"2019-05-19T20:54:21.311798Z","sceneName":"DuckTales.2017.S02E16.The.Duck.Knight.Returns.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124956,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5126642,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7485},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E17.What Ever Happened to Donald Duck!!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E17.What Ever Happened to Donald Duck!!-WEBDL-1080p.mkv","size":885893939,"dateAdded":"2019-09-04T18:11:31.753086Z","sceneName":"DuckTales.2017.S02E17.What.Ever.Happened.to.Donald.Duck.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125511,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113177,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8861},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Happy Birthday, Doofus Drake!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E18.Happy Birthday, Doofus Drake!-WEBDL-1080p.mkv","size":888275659,"dateAdded":"2019-09-05T14:48:32.972907Z","sceneName":"DuckTales.2017.S02E18.Happy.Birthday.Doofus.Drake.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125383,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5127343,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8865},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E19.A Nightmare on Killmotor Hill!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E19.A Nightmare on Killmotor Hill!-WEBDL-1080p.mkv","size":886036998,"dateAdded":"2019-09-06T16:47:41.33232Z","sceneName":"DuckTales.2017.S02E19.A.Nightmare.on.Killmotor.Hill.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125635,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113935,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8885},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E20.The Golden Armory of Cornelius Coot!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E20.The Golden Armory of Cornelius Coot!-WEBDL-1080p.mkv","size":928281774,"dateAdded":"2019-09-08T07:03:05.058007Z","sceneName":"DuckTales.2017.S02E20.The.Golden.Armory.of.Cornelius.Coot.1080p.AMZN.WEBRip.DDP2.0.x264-TVSmash[rarbg]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8907},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Timephoon!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E21.Timephoon!-WEBDL-1080p.mkv","size":882541811,"dateAdded":"2019-09-10T08:49:08.041027Z","sceneName":"DuckTales.2017.S02E21.Timephoon.1080p.AMZN.WEBRip.DDP2.0.x264-TVSmash[rarbg]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8925},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E22.GlomTales!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E22.GlomTales!-WEBDL-1080p.mkv","size":887302955,"dateAdded":"2019-09-11T17:44:20.550385Z","sceneName":"DuckTales.2017.S02E22.GlomTales.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125144,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5121846,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8928},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E23.The Richest Duck in the World!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E23.The Richest Duck in the World!-WEBDL-1080p.mkv","size":890293562,"dateAdded":"2019-09-12T14:27:57.806287Z","sceneName":"DuckTales.2017.S02E23.The.Richest.Duck.in.the.World.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125079,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5139595,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8932},{"seriesId":37,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Moonvasion!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 02\/S02E24.Moonvasion!-WEBDL-1080p.mkv","size":1796579391,"dateAdded":"2019-09-13T14:19:11.148566Z","sceneName":"DuckTales.2017.S02E24.Moonvasion.1080p.WEB-DL.DD5.1.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5111263,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9020},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Challenge of the Senior Junior Woodchucks!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E01.Challenge of the Senior Junior Woodchucks!-WEBDL-1080p.mkv","size":904632162,"dateAdded":"2020-04-04T19:34:43.504573Z","sceneName":"DuckTales.2017.S03E01.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5292905,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12826},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Quack Pack!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E02.Quack Pack!-WEBDL-1080p.mkv","size":884327483,"dateAdded":"2020-04-04T19:34:57.778545Z","sceneName":"DuckTales.2017.S03E02.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5382642,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12827},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Double-O-Duck in You Only Crash Twice!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E03.Double-O-Duck in You Only Crash Twice!-WEBDL-1080p.mkv","size":816698263,"dateAdded":"2020-04-11T16:25:57.867421Z","sceneName":"DuckTales.2017.S03E03.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4772002,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12835},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Lost Harp of Mervana!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E04.The Lost Harp of Mervana!-WEBDL-1080p.mkv","size":886903630,"dateAdded":"2020-04-18T09:34:11.755436Z","sceneName":"DuckTales.2017.S03E04.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5187868,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12898},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Louie's Eleven!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E05.Louie's Eleven!-WEBDL-1080p.mkv","size":839280297,"dateAdded":"2020-04-25T16:14:05.460541Z","sceneName":"DuckTales.2017.S03E05.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4905753,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13206},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Astro B.O.Y.D.!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E06.Astro B.O.Y.D.!-WEBDL-1080p.mkv","size":908584791,"dateAdded":"2020-05-02T07:16:43.866285Z","sceneName":"DuckTales.2017.S03E06.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5316336,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13250},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Rumble for Ragnarok!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E07.The Rumble for Ragnarok!-WEBDL-1080p.mkv","size":733057284,"dateAdded":"2020-05-09T07:20:19.10637Z","sceneName":"DuckTales.2017.S03E07.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4276514,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13284},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E09.They Put a Moonlander on the Earth!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E09.They Put a Moonlander on the Earth!-WEBDL-1080p.mkv","size":924452433,"dateAdded":"2020-09-29T01:52:46.877652Z","sceneName":"DuckTales.2017.S03E09.They.Put.a.Moonlander.on.the.Earth.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5410325,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15634},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Trickening!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E10.The Trickening!-WEBDL-1080p.mkv","size":701103771,"dateAdded":"2020-10-05T16:32:15.073255Z","sceneName":"DuckTales.2017.S03E10.The.Trickening.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4087206,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15669},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Forbidden Fountain of Foreverglades!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E11.The Forbidden Fountain of Foreverglades!-WEBDL-1080p.mkv","size":974925378,"dateAdded":"2020-10-13T03:19:17.120233Z","sceneName":"DuckTales.2017.S03E11.The.Forbidden.Fountain.of.Foreverglades.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5709357,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15824},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Let's Get Dangerous!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E12.Let's Get Dangerous!-WEBDL-1080p.mkv","size":1613549493,"dateAdded":"2020-10-20T16:09:00.824954Z","sceneName":"DuckTales.2017.S03E12.Lets.Get.Dangerous.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4778000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15906},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Escape from the ImpossiBin!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E13.Escape from the ImpossiBin!-WEBDL-1080p.mkv","size":613024653,"dateAdded":"2020-10-27T15:32:57.724189Z","sceneName":"DuckTales.2017.S03E13.Escape.from.the.ImpossiBin.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3400438,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15958},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E14.The Split Sword of Swanstantine!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E14.The Split Sword of Swanstantine!-WEBDL-1080p.mkv","size":672525043,"dateAdded":"2020-11-04T01:46:21.508206Z","sceneName":"DuckTales.2017.S03E14.The.Split.Sword.of.Swanstantine.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3752285,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16047},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E15.New Gods on the Block!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E15.New Gods on the Block!-WEBDL-1080p.mkv","size":499989576,"dateAdded":"2020-11-19T09:53:55.981651Z","sceneName":"DuckTales.2017.S03E15.New.Gods.on.the.Block.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2731676,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16096},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E16.The First Adventure!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E16.The First Adventure!-WEBDL-1080p.mkv","size":858205072,"dateAdded":"2020-11-19T09:57:21.780237Z","sceneName":"DuckTales.2017.S03E16.The.First.Adventure.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5017869,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16098},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E17.The Fight for Castle McDuck!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E17.The Fight for Castle McDuck!-WEBDL-1080p.mkv","size":496425517,"dateAdded":"2020-11-24T23:30:54.112421Z","sceneName":"DuckTales.2017.S03E17.The.Fight.for.Castle.McDuck.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2710588,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16396},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E18.How Santa Stole Christmas!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E18.How Santa Stole Christmas!-WEBDL-1080p.mkv","size":608125647,"dateAdded":"2020-12-01T23:57:46.376906Z","sceneName":"DuckTales.2017.S03E18.How.Santa.Stole.Christmas.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3371335,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16489},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E20.The Lost Cargo of Kit Cloudkicker!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E20.The Lost Cargo of Kit Cloudkicker!-WEBDL-1080p.mkv","size":861926804,"dateAdded":"2021-03-02T18:45:11.518369Z","sceneName":"DuckTales.2017.S03E20.The.Lost.Cargo.Kit.Cloud.Kicker.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4868905,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17703},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E21.The Life and Crimes of Scrooge McDuck!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E21.The Life and Crimes of Scrooge McDuck!-WEBDL-1080p.mkv","size":616966210,"dateAdded":"2021-03-09T19:45:59.424787Z","sceneName":"DuckTales.2017.S03E21.The.Life.and.Crimes.of.Scrooge.McDuck.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3423761,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17788},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E22.The Last Adventure!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E22.The Last Adventure!-WEBDL-1080p.mkv","size":2458228034,"dateAdded":"2021-03-20T17:04:43.157779Z","sceneName":"DuckTales.2017.S03E22.The.Last.Adventure.1080p.AMZN.WEBRip.AAC2.0.x264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4765087,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:06:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17850},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Beaks in the Shell!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E19.Beaks in the Shell!-WEBDL-1080p.mkv","size":658305961,"dateAdded":"2021-05-14T12:23:29.32488Z","sceneName":"DuckTales.2017.S03E19.Beaks.in.the.Shell.1080p.AMZN.WEBRip.DDP2.0.x264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3668295,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18161},{"seriesId":37,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Phantom and the Sorceress!-WEBDL-1080p.mkv","path":"\/tv\/DuckTales (2017)\/Season 03\/S03E08.The Phantom and the Sorceress!-WEBDL-1080p.mkv","size":712542089,"dateAdded":"2021-05-14T12:33:59.473409Z","sceneName":"[zooqle.com] DuckTales 2017 S03E08 The Phantom and the Sorceress 1080p HULU WEBRip AAC2 0 H264","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4154977,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18162}],"queue":[]},"38":{"series":{"title":"Bravest Warriors","alternateTitles":[],"sortTitle":"bravest warriors","status":"ended","ended":true,"overview":"Four teenage heroes-for-hire warp through the universe to save adorable aliens and their worlds using the power of their emotions.","previousAiring":"2018-02-23T05:10:00Z","network":"VRV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/39\/banner.jpg?lastWrite=637100123667157920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/263975-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/39\/poster.jpg?lastWrite=637100123669157880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/263975-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/39\/fanart.jpg?lastWrite=637100123665037960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/263975-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":39,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-07-18T04:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1499951093,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2014-06-12T04:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1400872256,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-03-07T05:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":1270814067,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":false,"statistics":{"previousAiring":"2018-02-23T05:10:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":52,"sizeOnDisk":1317889883,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Bravest Warriors","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":263975,"tvRageId":33972,"tvMazeId":5236,"firstAired":"2012-11-08T00:00:00Z","seriesType":"standard","cleanTitle":"bravestwarriors","imdbId":"tt2474952","titleSlug":"bravest-warriors","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2018-10-05T17:52:02.7061921Z","ratings":{"votes":377,"value":9.2},"statistics":{"seasonCount":4,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":121,"sizeOnDisk":5489527299,"percentOfEpisodes":100.0},"id":39},"episodes":[{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Pen Ward: The Bravest Warriors (Pilot)","airDate":"2009-01-10","airDateUtc":"2009-01-10T05:00:00Z","overview":"The seven minute short follows the Bravest Warriors as they fight against a wild 'Tickle Monster'.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1219},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Animatic: Nice Whiskers","airDate":"2012-04-16","airDateUtc":"2012-04-16T04:00:00Z","overview":"An animatic clip from \"Butter Lettuce,\" an episode of Pendleton Ward's \"Bravest Warriors\" series. The temporary voices here were provided by Ian Jones-Quartey (Wallow) and Breehn Burns (Chris). Brett Varon was the storyboard artist. \"Bravest Warriors,\" overseen by Breehn Burns, premieres summer 2012 on Cartoon Hangover.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1220},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Actor Introductions","airDate":"2012-08-22","airDateUtc":"2012-08-22T04:00:00Z","overview":"Meet the voices behind your Bravest Warriors! Lilliana Mumy as Beth, Alex Walsh as Chris, Ian Jones-Quartey as Wallow and John Omohundro as Danny.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1221},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Meet Catbug","airDate":"2012-08-29","airDateUtc":"2012-08-29T04:00:00Z","overview":"Meet our biggest little cast member Sam Lavagnino as Catbug!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1222},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Meet John Omohundro as Danny Vasquez","airDate":"2012-09-05","airDateUtc":"2012-09-05T04:00:00Z","overview":"Meet John Omohundro. The voice of Danny Vasquez on \"Bravest Warriors\"!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1223},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Meet Ian Jones-Quartey as Wallow","airDate":"2012-09-12","airDateUtc":"2012-09-12T04:00:00Z","overview":"Meet Ian Jones-Quartey, the sweet and sultry voice behind Wallow!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1224},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Meet Alex Walsh as Chris Kirkman","airDate":"2012-09-18","airDateUtc":"2012-09-18T04:00:00Z","overview":"Meet Alex Walsh, the voice behind 'Bravest Warriors' leader Chris Kirkman!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1225},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Meet Liliana Mumy as Beth Tezuka","airDate":"2012-09-26","airDateUtc":"2012-09-26T04:00:00Z","overview":"Meet Liliana Mumy, the playful voice behind the 'Bravest Warriors' sweetheart, Beth Tezuka!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1226},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Bravest Warriors Theme Song","airDate":"2012-10-01","airDateUtc":"2012-10-01T04:00:00Z","overview":"Listen to the totally rad Bravest Warrior theme song from Anamanaguchi's Peter Berkman and John Baken!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1227},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Pendleton Ward Interviews Breehn Burns","airDate":"2012-10-08","airDateUtc":"2012-10-08T04:00:00Z","overview":"Adventure Time & Bravest Warrior creator Pendleton Ward interviews the Bravest Warrior Writer & Director Breehn Burns (Dr. Tran). Also, a pimple and a turtle tank.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1228},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Bravest Warriors Sneak Peek Exclusive Preview Scene","airDate":"2012-10-12","airDateUtc":"2012-10-12T04:00:00Z","overview":"Sneak peek of Bravest Warriors from Adventure Time's Pendelton Ward.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1229},{"seriesId":39,"episodeFileId":955,"seasonNumber":1,"episodeNumber":1,"title":"Time Slime","airDate":"2012-11-08","airDateUtc":"2012-11-08T05:00:00Z","overview":"With their parents gone, the Bravest Warriors must step up. Wallow connects with a love from his past and The Bravest Warriors must save Glendale, or be forever stuck in a time loop!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1259},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Animatic: Time Slime","airDate":"2012-11-11","airDateUtc":"2012-11-11T05:00:00Z","overview":"Take a look behind the scenes at the animatics for the premiere episode of Bravest Warriors. These are used to get an idea of how the episode will look once the final animations are made.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1230},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Behind the Scenes: Time Slime","airDate":"2012-11-13","airDateUtc":"2012-11-13T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1231},{"seriesId":39,"episodeFileId":958,"seasonNumber":1,"episodeNumber":2,"title":"Emotion Lord","airDate":"2012-11-15","airDateUtc":"2012-11-15T05:00:00Z","overview":"Emotions run high on the Bravest Warriors' ship when Danny contracts Zgraxxis fever and Wallow must perform surgery. Meanwhile, a mysterious old man has appeared, distracting everyone from the task at hand. Chris must contain his anger and save Danny, or else put all of his friends in mortal peril. Also, Beth has a tail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1260},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Animatic: Emotion Lord","airDate":"2012-11-17","airDateUtc":"2012-11-17T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1232},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Behind the Scenes: Emotion Lord","airDate":"2012-11-20","airDateUtc":"2012-11-20T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1233},{"seriesId":39,"episodeFileId":962,"seasonNumber":1,"episodeNumber":3,"title":"Butter Lettuce","airDate":"2012-11-29","airDateUtc":"2012-11-29T05:00:00Z","overview":"\"Butter Lettuce\" Dark abomination of the Wet Mounds of Nardacorn, Chris is taking his sweet time in the bathroom! As Chris, Wallow, and Danny hog the Holo-John with their fantasies, they prevent a certain member of the Bravest Warriors team from getting a fresh start to her day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1261},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Animatic: Butter Lettuce","airDate":"2012-12-01","airDateUtc":"2012-12-01T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1234},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Behind the Scenes: Butter Lettuce","airDate":"2012-12-04","airDateUtc":"2012-12-04T05:00:00Z","overview":"Take a look behind the scenes of the third episode of Bravest Warriors, \"Butter Lettuce\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1254},{"seriesId":39,"episodeFileId":965,"seasonNumber":1,"episodeNumber":4,"title":"Memory Donk","airDate":"2012-12-06","airDateUtc":"2012-12-06T05:00:00Z","overview":"These are the facts: the Bravest Warriors are on a bus. Their destination: somewhere. Their goal: ... something. Wait, who are the Bravest Warriors, anyway? The team must remember their identities before they crash into the NeoMars Convention Center. Things looks pretty grim for the Bravest Whoevers, but at least they have plenty of bread.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1262},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Animatic: Memory Donk","airDate":"2012-12-08","airDateUtc":"2012-12-08T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1235},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Behind the Scenes: Memory Donk","airDate":"2012-12-11","airDateUtc":"2012-12-11T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1236},{"seriesId":39,"episodeFileId":969,"seasonNumber":1,"episodeNumber":5,"title":"The Bunless","airDate":"2012-12-13","airDateUtc":"2012-12-13T05:00:00Z","overview":"The fate of the planet Bunless 9 depends on the Bravest Warriors overcoming their adolescent fears of intimacy in order to prevent an apocalypse. Will love prevail through time, space, and fleshy buttocks?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1263},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Animatic: The Bunless","airDate":"2012-12-15","airDateUtc":"2012-12-15T05:00:00Z","overview":"Take a look behind the scenes at the animatics for the fifth episode of Bravest Warriors. These are created as a rough draft to get an idea of how the episode will look once the final animations are made.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1255},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Behind the Scenes: The Bunless","airDate":"2012-12-19","airDateUtc":"2012-12-19T05:00:00Z","overview":"Take a look behind the scenes of the fourth episode of Bravest Warriors, \"The Bunless\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1237},{"seriesId":39,"episodeFileId":972,"seasonNumber":1,"episodeNumber":6,"title":"Lavarinth","airDate":"2012-12-20","airDateUtc":"2012-12-20T05:00:00Z","overview":"In a shocking encounter, the Emotion Lord returns to help the Bravest Warriors in destroying the firebugs' hive. That is, if he doesn't get them killed first. Chris learns about fate, the future, and the importance of vitamin B-12. Remember to take your vitamins, kids!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1264},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Animatic: Lavarinth","airDate":"2012-12-22","airDateUtc":"2012-12-22T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1238},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Best of Bravest Warriors","airDate":"2012-12-27","airDateUtc":"2012-12-27T05:00:00Z","overview":"This goes over the first half of season 1.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1239},{"seriesId":39,"episodeFileId":976,"seasonNumber":1,"episodeNumber":7,"title":"Gas Powered Stick","airDate":"2013-01-10","airDateUtc":"2013-01-10T05:00:00Z","overview":"After a relaxing day by the lake, the Bravest Warriors make an extraordinary\u2014and attractive\u2014new friend. As the boys vie for her attention, Impossibear finds a mysterious stick that sprouts unforeseen consequences from Chris's forehead. Chris discovers that with great power, comes great responsibility\u2014but also lots of emotion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1265},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Behind the Scenes: Gas Powered Stick","airDate":"2013-01-15","airDateUtc":"2013-01-15T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1240},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Animatic: Gas Powered Stick","airDate":"2013-01-19","airDateUtc":"2013-01-19T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1241},{"seriesId":39,"episodeFileId":978,"seasonNumber":1,"episodeNumber":8,"title":"Dan Before Time","airDate":"2013-01-24","airDateUtc":"2013-01-24T05:00:00Z","overview":"The hour has come at last! Danny has constructed a time machine so he can finally seek revenge on the low gravity hacker lads who never let him join in any of their hacker games. He reveals the truth behind his dark, disgusting past, while the team learns that revenge is a meal best served cold... and kinda barfy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1266},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Behind the Scenes: What is Time Slime","airDate":"2013-01-29","airDateUtc":"2013-01-29T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1242},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Animatic: Dan Before Time","airDate":"2013-02-02","airDateUtc":"2013-02-02T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1243},{"seriesId":39,"episodeFileId":980,"seasonNumber":1,"episodeNumber":9,"title":"Cereal Master","airDate":"2013-02-07","airDateUtc":"2013-02-07T05:00:00Z","overview":"In the early morning hours Chris and Danny fly from the Bravest Warriors Invisible Hideout on a mission of the utmost importance... to buy cereal for Beth. Chris must comfort a Martian chef with daddy issues and return to his best friend for their jinx-iversary.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1267},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Animatic: Cereal Master","airDate":"2013-02-16","airDateUtc":"2013-02-16T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1244},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Behind the Scenes: The Voices of the Warriors","airDate":"2013-02-19","airDateUtc":"2013-02-19T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1245},{"seriesId":39,"episodeFileId":983,"seasonNumber":1,"episodeNumber":10,"title":"Ultra Wankershim","airDate":"2013-02-21","airDateUtc":"2013-02-21T05:00:00Z","overview":"Breaking the laws of physics, Wankershim has left the Holo-John and is now taking up residence in NeoMars Park... and he's growing at an exponential rate. Meanwhile, an old friend returns to share with Chris a vision of the future, and to tell the Bravest Warriors that it's ALWAYS been Wankershim.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1268},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Animatic: Ultra Wankershim","airDate":"2013-03-02","airDateUtc":"2013-03-02T05:00:00Z","overview":"Take a look behind the scenes at the animatics for the Bravest Warriors. These are created as a rough draft to get an idea of how the episode will look once the final animations are made.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1256},{"seriesId":39,"episodeFileId":985,"seasonNumber":1,"episodeNumber":11,"title":"Catbug","airDate":"2013-03-07","airDateUtc":"2013-03-07T05:00:00Z","overview":"When the Bravest Warriors receive mysterious gifts from the See-Through Zone, they must use their wits to unlock the door to the greatest secret. In this season finale, there promises to be more emotion, Catbug, and delicious peanut butter squares than ever before.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1269},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Animatic: Catbug","airDate":"2013-03-16","airDateUtc":"2013-03-16T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1246},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Bravest Warriors Season 2 Announcement","airDate":"2013-04-02","airDateUtc":"2013-04-02T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1247},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Behind the Scenes: The Evolution of Chris Kirkman","airDate":"2013-05-09","airDateUtc":"2013-05-09T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1248},{"seriesId":39,"episodeFileId":987,"seasonNumber":1,"episodeNumber":12,"title":"Sugarbellies","airDate":"2013-07-18","airDateUtc":"2013-07-18T04:00:00Z","overview":"When the adorable Sugarbelly aliens ask the the Bravest Warriors for help, the young heroes split up to tackle their most challenging mission yet in this cross-planetary adventure.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1270},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Minisode 1: Moo-Phobia","airDate":"2013-08-01","airDateUtc":"2013-08-01T04:00:00Z","overview":"Chris's fear of cows keeps him from joining the others on a mission.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1249},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Minisode 2: DramaBug","airDate":"2013-08-03","airDateUtc":"2013-08-03T04:00:00Z","overview":"Catbug plays with his toys in a soap opera like show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1250},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Minisode 3: Browser Fail","airDate":"2013-08-22","airDateUtc":"2013-08-22T04:00:00Z","overview":"Danny wakes up to realize his eyebrows have been shaved off in his sleep.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1251},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Minisode 4: Impossibomb","airDate":"2013-09-05","airDateUtc":"2013-09-05T04:00:00Z","overview":"Impossibear shows up with a present for Wallow, not knowing that it's actually a bomb.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1252},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Minisode 5: Terrabeth Bytes","airDate":"2013-09-19","airDateUtc":"2013-09-19T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1253},{"seriesId":39,"episodeFileId":956,"seasonNumber":2,"episodeNumber":1,"title":"Aeon Worm","airDate":"2013-10-17","airDateUtc":"2013-10-17T04:00:00Z","overview":"Beth and her horse find their way into the See-Through Zone where Beth decides to save her father, who has since become known as \"Ralph Waldo Pickle Chips\" in his service to the evil Aeon Worm.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1271},{"seriesId":39,"episodeFileId":959,"seasonNumber":2,"episodeNumber":2,"title":"RoboChris","airDate":"2013-10-31","airDateUtc":"2013-10-31T04:00:00Z","overview":"Danny creates a robotic Chris duplicate.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1272},{"seriesId":39,"episodeFileId":963,"seasonNumber":2,"episodeNumber":3,"title":"Mexican Touchdown","airDate":"2013-11-14","airDateUtc":"2013-11-14T05:00:00Z","overview":"Plum returns to Bravest Warriors in this hilariously action packed adventure at an alien rescue. Danny and Plum team up to help out the adorable little aliens and Catbug is wearing a grass skirt?!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1273},{"seriesId":39,"episodeFileId":966,"seasonNumber":2,"episodeNumber":4,"title":"Hamster Priest","airDate":"2013-12-05","airDateUtc":"2013-12-05T05:00:00Z","overview":"The return of Ralph Waldo Pickle Chips!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1274},{"seriesId":39,"episodeFileId":970,"seasonNumber":2,"episodeNumber":5,"title":"Jelly Kid Forever","airDate":"2013-12-19","airDateUtc":"2013-12-19T05:00:00Z","overview":"Catbug Kills Jelly Kid and the news doesn't take to well to Danny.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1275},{"seriesId":39,"episodeFileId":973,"seasonNumber":2,"episodeNumber":6,"title":"The Puppetyville Horror","airDate":"2014-01-23","airDateUtc":"2014-01-23T05:00:00Z","overview":"The horror... THE HORROR! The Warriors are stranded on a yellow planet and one by one they are... disappearing.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1276},{"seriesId":39,"episodeFileId":975,"seasonNumber":2,"episodeNumber":7,"title":"Catbug's Away Team","airDate":"2014-02-06","airDateUtc":"2014-02-06T05:00:00Z","overview":"Catbug assembles an away team to save the day, while the Warriors handle things on deck.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1277},{"seriesId":39,"episodeFileId":977,"seasonNumber":2,"episodeNumber":8,"title":"Merewif Tag","airDate":"2014-02-20","airDateUtc":"2014-02-20T05:00:00Z","overview":"Chris and Plum play a little Merwif Tag and little does Chris know... it makes them trade bodies!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1278},{"seriesId":39,"episodeFileId":981,"seasonNumber":2,"episodeNumber":9,"title":"Dimension Garden","airDate":"2014-03-06","airDateUtc":"2014-03-06T05:00:00Z","overview":"The Bravest Children come across a potential brain sucker, growing in Beth\u2019s Dad\u2019s garden and causes Wallow to become highly suspicious. You can\u2019t fool his dolls! But this doesn\u2019t bode well\u2026 Wallow needs their help!!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1279},{"seriesId":39,"episodeFileId":982,"seasonNumber":2,"episodeNumber":10,"title":"The Parasox Pub","airDate":"2014-05-22","airDateUtc":"2014-05-22T04:00:00Z","overview":"Chris Kirkman comes into contact with Catbug who is now... the Emotion Lord?! What the dickens?!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1280},{"seriesId":39,"episodeFileId":984,"seasonNumber":2,"episodeNumber":11,"title":"Season of the Worm","airDate":"2014-06-05","airDateUtc":"2014-06-05T04:00:00Z","overview":"In the first part of a two part finale, hamsters flee from the invisible hideout and the Bravest Warriors need to figure out what the heck is going on! Wallow receives a Falcon Mod, Danny steps it up and Beth kicks butt!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1281},{"seriesId":39,"episodeFileId":986,"seasonNumber":2,"episodeNumber":12,"title":"Season of the Mitch","airDate":"2014-06-12","airDateUtc":"2014-06-12T04:00:00Z","overview":"In the second part of the two part finale, Beth, Danny and Wallow face off against Ralph Waldo Pickle Chips and the Aeon Worm!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1282},{"seriesId":39,"episodeFileId":954,"seasonNumber":3,"episodeNumber":1,"title":"Dan of Future Past","airDate":"2017-01-10","airDateUtc":"2017-01-10T05:00:00Z","overview":"Chris returns home from the Parasox Pub, but arrives on Mars ten years too early. With his powers out of control, he is discovered by a young, unitard-clad Danny, who is more than enthusiastic about nurturing him back to health.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1283},{"seriesId":39,"episodeFileId":957,"seasonNumber":3,"episodeNumber":2,"title":"Himmel Mancheese","airDate":"2017-01-10","airDateUtc":"2017-01-10T05:10:00Z","overview":"To save a divided race of cute little aliens, the Warriors fly to their planet where Himmel is the only hope for peace. But when Wallow's unscrupulous attitude about hooking up with aliens destroys the kingdom's chance for peace, he is sentenced to death.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1284},{"seriesId":39,"episodeFileId":961,"seasonNumber":3,"episodeNumber":3,"title":"Ghosts of the See-Through Zone","airDate":"2017-01-24","airDateUtc":"2017-01-24T05:00:00Z","overview":"While spending the evening in the city with Plum, Beth is in turmoil over who she loves more: Chris or Danny, lamenting how either decision will tear apart the Bravest Warriors. Back home, in the meantime, the group is being torn apart by interdimensional phantasms.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1285},{"seriesId":39,"episodeFileId":964,"seasonNumber":3,"episodeNumber":4,"title":"Fast Times at Saturn Oaks","airDate":"2017-02-07","airDateUtc":"2017-02-07T05:00:00Z","overview":"At the Saturn Oaks Galleria--a popular teen hangout floating in the rings of Saturn--Chris must foil a food court heist before it's too late, but the crushing prospect of Beth falling for a new guy makes his mission all the more difficult.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1286},{"seriesId":39,"episodeFileId":968,"seasonNumber":3,"episodeNumber":5,"title":"Everything Is Okay","airDate":"2017-02-21","airDateUtc":"2017-02-21T05:00:00Z","overview":"Catbug, Impossibear, and the other pets open the Invisible Hideout as a Bravest Warriors museum, while Hamster Mitch, AKA The Lord of Morality, is on a mission to seek the wisdom of the Paralyzed Horse.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1287},{"seriesId":39,"episodeFileId":971,"seasonNumber":3,"episodeNumber":6,"title":"Emotion Fjord","airDate":"2017-03-07","airDateUtc":"2017-03-07T05:00:00Z","overview":"Plum leads the Warriors to the Emotion Fjord to find Captain Seward, who can give Chris the protection he needs from deathly emoverload.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1288},{"seriesId":39,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Documentary","airDate":"2017-12-11","airDateUtc":"2017-12-11T05:00:00Z","overview":"Learn the story, see the behind-the-scenes, and laugh along with the team in the Bravest Warriors Documentary!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1258},{"seriesId":39,"episodeFileId":953,"seasonNumber":4,"episodeNumber":1,"title":"Whispers in the Morning","airDate":"2017-12-25","airDateUtc":"2017-12-25T05:00:00Z","overview":"When Chris's heart gets stabbed by a moop-infected flame sword, it\u2019s up to the rest of the Bravest Warriors to get him back to the ship... in time for Beth\u2019s date with another guy.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1289},{"seriesId":39,"episodeFileId":953,"seasonNumber":4,"episodeNumber":2,"title":"You've Grown So Tall You've Grown So Fast","airDate":"2017-12-25","airDateUtc":"2017-12-25T05:10:00Z","overview":"Chris goes on a \u2018vision quest\u2019 with the Emotion Lord while the Bravest Warriors try to solve a bi-dimensional baby crisis.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1290},{"seriesId":39,"episodeFileId":960,"seasonNumber":4,"episodeNumber":3,"title":"Mirror's Reflection","airDate":"2018-01-12","airDateUtc":"2018-01-12T05:00:00Z","overview":"Worm clones from another dimension overtake the hideout, forcing the real Bravest Warriors to mobilize and murder their wormy selves.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1291},{"seriesId":39,"episodeFileId":960,"seasonNumber":4,"episodeNumber":4,"title":"Chained to Your Side","airDate":"2018-01-12","airDateUtc":"2018-01-12T05:10:00Z","overview":"When her new beau stands her up for the annual \u2018Sadie Hawkins\u2019-style dance, Beth flies solo for the couples\u2019 carnival games and competes against the other Bravest Warriors.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1292},{"seriesId":39,"episodeFileId":967,"seasonNumber":4,"episodeNumber":5,"title":"From the Inside Room","airDate":"2018-01-26","airDateUtc":"2018-01-26T05:00:00Z","overview":"Danny struggles to serve his 1000 year long prison sentence for time crimes, but is helped by his new cellmate: the Reverend Picklechips.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1293},{"seriesId":39,"episodeFileId":967,"seasonNumber":4,"episodeNumber":6,"title":"All I Wish is to Be Alone","airDate":"2018-01-26","airDateUtc":"2018-01-26T05:10:00Z","overview":"Jumpy after Puddingtown gives him an alarming tip about the other Emotion Lords, Chris, home alone, accidentally causes a violent revolt from the bathroom Elves.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1294},{"seriesId":39,"episodeFileId":974,"seasonNumber":4,"episodeNumber":7,"title":"This Dance Ain't for Everybody","airDate":"2018-02-09","airDateUtc":"2018-02-09T05:00:00Z","overview":"Beth and Plum\u2019s big \u2018girls night out\u2019 at a trendy virtual nightclub sours when a creepy party crasher threatens to wreck the club and maybe the girls\u2019 friendship.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1295},{"seriesId":39,"episodeFileId":974,"seasonNumber":4,"episodeNumber":8,"title":"A Few Stolen Moments","airDate":"2018-02-09","airDateUtc":"2018-02-09T05:10:00Z","overview":"When Beth\u2019s new boy-toy gets roped into an alien rescue mission, it\u2019s his alone time with a moopy and volatile Chris that really puts him in danger.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1296},{"seriesId":39,"episodeFileId":979,"seasonNumber":4,"episodeNumber":9,"title":"No Need To Argue","airDate":"2018-02-23","airDateUtc":"2018-02-23T05:00:00Z","overview":"On a trip to her home planet, Plum\u2019s strict parents catch her and Chris partaking in forbidden nums, forcing Chris into a fight to the death with Plum\u2019s jealous ex.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1297},{"seriesId":39,"episodeFileId":979,"seasonNumber":4,"episodeNumber":10,"title":"We Can Leave Your Friends Behind","airDate":"2018-02-23","airDateUtc":"2018-02-23T05:10:00Z","overview":"Himmel begins phasing back to his own time, leaving Wallow with the hardest choice of his life: bid farewell to love, or go with Himmel and bid farewell to the BWs forever!","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":1298},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":11,"title":"Sit Down Sip Some Bouillabaisse","airDate":"2018-03-09","airDateUtc":"2018-03-09T05:00:00Z","overview":"When Robochris hijacks the Space Whale for an unlikely quest, the BWs are knocked out, kidnapped, then trapped inside a living, breathing whale. After that, things get weird.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1299},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":12,"title":"Living in a Powder Keg","airDate":"2018-03-09","airDateUtc":"2018-03-09T05:10:00Z","overview":"With Chris and Beth locked in the holojohn during a sassy game of \u201cSeven Moons in Uranus\u201d, the rest of the BWs must defend the Invisible Hideout from a Mechacat attack!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1300},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":13,"title":"This is Not My Beautiful House","airDate":"2018-03-23","airDateUtc":"2018-03-23T04:00:00Z","overview":"Via a s\u00e9ance, Danny\u2019s mom sends him on a quest to his childhood home, where memories and a winning lottery ticket await... along with loads of sentient cockroaches.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1301},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":14,"title":"Footprints by the Garden Tree","airDate":"2018-03-23","airDateUtc":"2018-03-23T04:10:00Z","overview":"Gasp! Someone has eaten all of the cupcakes! Now it\u2019s up to Detective Catbug to solve the crime and ensure the culprit gets his just desserts... which is, to say, no dessert at all!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1302},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":15,"title":"Think I'll Miss This One This Year","airDate":"2018-04-06","airDateUtc":"2018-04-06T04:00:00Z","overview":"Chris struggles to make it home in time to celebrate the first Wanksgiving, while the other BWs establish new holiday traditions.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1303},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":16,"title":"Nothin' Stays the Same","airDate":"2018-04-06","airDateUtc":"2018-04-06T04:10:00Z","overview":"With the BWs trapped in a time loop and repeatedly devoured by a Timegobbler, it\u2019s up to Beth to find an end to the cycle while experiencing infinite colorful deaths.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1304},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":17,"title":"I.O.U. For Your Love","airDate":"2018-04-20","airDateUtc":"2018-04-20T04:00:00Z","overview":"When alien bugs build a tiny feudal castle around their political prisoner, Danny, the BWs are enraptured by the intrigue within the bug\u2019s royal court.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1305},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":18,"title":"At Night When The Program's Through","airDate":"2018-04-20","airDateUtc":"2018-04-20T04:10:00Z","overview":"When the Invisible Hideout\u2019s food synthesizer gains sentience, the BWs name it E.D.G.A.R. and set about teaching it the mysteries of life.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1306},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":19,"title":"All I Get Is Static","airDate":"2018-05-04","airDateUtc":"2018-05-04T04:00:00Z","overview":"As Danny's new relationship with a super hot and totally legit girlfriend (he hasn't met in person) heats up, Beth can't figure out why Zachary Ryan is being so frosty.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1307},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":20,"title":"I'm Smitten, I'm Bitten, I'm Hooked, I'm Cooked","airDate":"2018-05-04","airDateUtc":"2018-05-04T04:10:00Z","overview":"When the Bravest Warriors contract jelly pox, it's up to Catbug, Impossibear and the other pets to undertake an alien rescue mission, without anyone discovering that they aren't the real Bravest Warriors.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1308},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":21,"title":"A (Apple) B (Banana) C (Chili)","airDate":"2018-05-18","airDateUtc":"2018-05-18T04:00:00Z","overview":"Wallow\u2019s hanger reaches dangerous levels, forcing The BWs to make a quick pit stop at the Planet Mart - but the lure of consumerism threatens to stop them forever.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1309},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":22,"title":"Dance Into The Fire","airDate":"2018-05-18","airDateUtc":"2018-05-18T04:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1310},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":23,"title":"Craft of the Father","airDate":"2018-06-01","airDateUtc":"2018-06-01T04:00:00Z","overview":"When Wallow discovers an abandoned alien egg, he vows to raise the baby as his own; but the high demands of parenting take a heavy toll on the teen dad.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1311},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":24,"title":"One in a Million Girls","airDate":"2018-06-01","airDateUtc":"2018-06-01T04:10:00Z","overview":"As Plum and Beth hit up the mall for a robo-modelling cattle call, Chris stumbles upon some difficult truths about Zachary Ryan.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1312},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":25,"title":"Enough To Last a Lifetime","airDate":"2018-06-15","airDateUtc":"2018-06-15T04:00:00Z","overview":"When Danny crash lands on a desolate planet, he finds another shipwrecked crew\u2019s holo log to guide him through his survival, escape, and consumption of alien banan\u2019ers.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1313},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":26,"title":"Will Things Ever Be The Same Again?","airDate":"2018-06-15","airDateUtc":"2018-06-15T04:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1314},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":27,"title":"It Shouldn't Ever Have to End This Way - Part 1","airDate":"2018-09-14","airDateUtc":"2018-09-14T04:00:00Z","overview":"The Courageous Battlers protect the fuzzy parts of the universe from the slimy bits, all while raising families, and lately, dealing with some\u2026 inter-office turmoil. THEN, the Courageous Battlers were on the verge of breaking up - but now they're getting busted up by the Robolord and her army of giant Robobots\u2026","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1315},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":28,"title":"It Shouldn't Ever Have to End This Way - Part 2","airDate":"2018-09-14","airDateUtc":"2018-09-14T04:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1316},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":29,"title":"This is Your Paradise","airDate":"2018-09-21","airDateUtc":"2018-09-21T04:00:00Z","overview":"Catbug doesn\u2019t care for everybody\u2019s moop over Chris\u2019s death, so he journeys into the afterlife to bring their friend back. Then, while on a contentious Spring Break trip, the BWs find a planet where time moves super fast, and accidentally populate it with their tiny clones\u2014who then try to destroy one another.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":1317},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":30,"title":"Too High, Too Far, Too Soon","airDate":"2018-09-21","airDateUtc":"2018-09-21T04:10:00Z","overview":"Catbug doesn\u2019t care for everybody\u2019s moop over Chris\u2019s death, so he journeys into the afterlife to bring their friend back. Then, while on a contentious Spring Break trip, the BWs find a planet where time moves super fast, and accidentally populate it with their tiny clones\u2014who then try to destroy one another.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1318},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":31,"title":"The Conscious Liberation of the Female State","airDate":"2018-09-28","airDateUtc":"2018-09-28T04:00:00Z","overview":"Beth\u2019s new role as captain of the BWs is challenged by a \u201cManet,\u201d a planet of only sexist dudes, that really need to simmer down and let her save them already.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1319},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":32,"title":"Your Life is in Your Hands","airDate":"2018-09-28","airDateUtc":"2018-09-28T04:10:00Z","overview":"When aliens proclaim Danny to be The One, from their ancient prophesies, Chris is suspicious and Danny is way too eager to please in his new role.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1320},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":33,"title":"The Crowd I'm Seeing","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"After breaking-up with Zachary Ryan, Beth leaves to decompress with some 'me time,' finding solace in a brassy all-lady gang of punky geriatrics, the 'Upta Gals'.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1321},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":34,"title":"Everybody's Coming, Leave Your Body At The Door","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:10:00Z","overview":"When the rest of the gang won\u2019t party with him, Danny invents a whole crew of RoboPartyAnimals with no \u2018off\u2019 buttons\u2014and they\u2019re down to fight for their right to get down.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1322},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":35,"title":"My Only Weakness Is a List Of Crime","airDate":"2018-10-12","airDateUtc":"2018-10-12T04:00:00Z","overview":"When the Bravest Warriors discover Catbug has been stealing 'treasures' during their interplanetary adventures, Chris takes it upon himself to teach him right from wrong.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":1323},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":36,"title":"Decide What You Want From Me","airDate":"2018-10-12","airDateUtc":"2018-10-12T04:10:00Z","overview":"When Danny feels the Bravest Warriors would be better off without him, a strange extra-dimensional being takes him to see what life would be like if he never existed.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":1324},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":37,"title":"You're Walkin' Tough Baby But You're Walkin' Blind - Part 1","airDate":"2018-10-19","airDateUtc":"2018-10-19T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1325},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":38,"title":"You're Walkin' Tough Baby But You're Walkin' Blind - Part 2","airDate":"2018-10-19","airDateUtc":"2018-10-19T04:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1326},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":39,"title":"You're Walkin' Tough Baby But You're Walkin' Blind - Part 3","airDate":"2018-10-26","airDateUtc":"2018-10-26T04:00:00Z","overview":"After Jenna and her gang infiltrate the Hideout, the Bravest Warriors must fight to reclaim their home and compel Chris to remember that he\u2019s on their side!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1327},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":40,"title":"Maybe You Could Be Mine","airDate":"2018-10-26","airDateUtc":"2018-10-26T04:10:00Z","overview":"When he thinks Plum is in danger, Chris\u2019s Emotion Lord powers get the best of him, and he winds up stalking her super creepy-like while she runs a series of mysterious errands.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1328},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":41,"title":"The Wire That Holds the Cork","airDate":"2018-11-02","airDateUtc":"2018-11-02T04:00:00Z","overview":"Danny creates a time machine that actually works! So well that it takes the BWs to a time before time, and they have to figure out how to make the Big Bang get bangin\u2019.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1329},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":42,"title":"If You Don't Know Electric Co","airDate":"2018-11-02","airDateUtc":"2018-11-02T04:10:00Z","overview":"As Chris\u2019s wonky Emotion Lord powers are blamed for strange issues with the Space Whale, he gets cray-cray convinced that they have a secret saboteur aboard.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1330},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":43,"title":"That Ain't Workin","airDate":"2018-11-09","airDateUtc":"2018-11-09T05:00:00Z","overview":"When Danny\u2019s girlfriend breaks up with him, he handles the painful emotions like a maturing young adult\u2026 by peddling them off to blackmarket Emotion Dealer for cash.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1331},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":44,"title":"Nice Day to Start Again","airDate":"2018-11-09","airDateUtc":"2018-11-09T05:10:00Z","overview":"When the Bravest Warriors attend Plum\u2019s sister\u2019s bonding ceremony, Chris must make Plum believe in true love in order to stabilize the timeline.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1332},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":45,"title":"Mouth is Alive With Juices Like Wine","airDate":"2018-11-16","airDateUtc":"2018-11-16T05:00:00Z","overview":"Wallow, deciding he wants to eat as ethically as possible, embarks on a faddish \u201cghost diet\u201d - but the negative effects on both his physical and mental health quickly become apparent.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1333},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":46,"title":"Bang, Bang, Bang On The Door Baby","airDate":"2018-11-16","airDateUtc":"2018-11-16T05:10:00Z","overview":"After a big fight about some very uncool spoilers, the Bravest Warriors retreat to separate rooms to blow off steam. But each of them causes their own kind of disaster, resulting in unexpected revelation.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1334},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":47,"title":"I Just Can't Cope Without My Soap","airDate":"2018-11-23","airDateUtc":"2018-11-23T05:00:00Z","overview":"It\u2019s night shift in the E.R. as Wallow trains for his nursing credential. But when chaos erupts, he must swap bedpans for scalpels and learn the hard truths about Registered Nursing.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1335},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":48,"title":"War Without Tears","airDate":"2018-11-23","airDateUtc":"2018-11-23T05:10:00Z","overview":"The Bravest Warriors discover their reality is actually a \u2018video game\u2019 designed to entertain Higher Beings. Lacking free will, they quickly find themselves locked in a competition to the actual death with no power to resist.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1336},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":49,"title":"Out Of Reach, Not Good Enough","airDate":"2018-11-30","airDateUtc":"2018-11-30T05:00:00Z","overview":"It\u2019s Plum\u2019s CURVE-VA-VERSARY, the day celebrating Plum growing legit lady bumps. But when Chris\u2019s thoughtfully planned, yet cheaply executed, party doesn\u2019t live up to her expectations, she donks herself into a series of tantrums, reliving the most lavishly decked out day of all time.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1337},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":50,"title":"Won't You Please Take Me Home","airDate":"2018-11-30","airDateUtc":"2018-11-30T05:10:00Z","overview":"When the Bravest Warriors answer a distress call from a humanoid planet overrun by an evil mech race, they have no idea how their own smooshy secrets will come into play - or who they should be fighting for in the first place.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1338},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":51,"title":"No Matter What the Future Brings - Part 1","airDate":"2018-12-24","airDateUtc":"2018-12-24T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1339},{"seriesId":39,"episodeFileId":0,"seasonNumber":4,"episodeNumber":52,"title":"No Matter What the Future Brings - Part 2","airDate":"2018-12-24","airDateUtc":"2018-12-24T05:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1340}],"episodeFile":[{"seriesId":39,"seasonNumber":4,"relativePath":"Season 04\/S04E01E02.Whispers in the Morning + You've Grown So Tall You've Grown So Fast-HDTV-1080p.mp4","path":"\/tv\/Bravest Warriors\/Season 04\/S04E01E02.Whispers in the Morning + You've Grown So Tall You've Grown So Fast-HDTV-1080p.mp4","size":284627003,"dateAdded":"2018-10-10T21:30:26.743167Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175671,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1490006,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":953},{"seriesId":39,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Dan of Future Past-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 03\/S03E01.Dan of Future Past-WEBDL-1080p.mkv","size":214377430,"dateAdded":"2018-10-10T21:30:28.287534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2441718,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":954},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Time Slime-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E01.Time Slime-WEBDL-1080p.mkv","size":163423229,"dateAdded":"2018-10-10T21:30:28.314259Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128003,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3977781,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":955},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Aeon Worm-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E01.Aeon Worm-WEBDL-1080p.mkv","size":158121972,"dateAdded":"2018-10-10T21:30:28.341205Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3210514,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":956},{"seriesId":39,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Himmel Mancheese-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 03\/S03E02.Himmel Mancheese-WEBDL-1080p.mkv","size":222779843,"dateAdded":"2018-10-10T21:30:28.368171Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2545544,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":957},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Emotion Lord-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E02.Emotion Lord-WEBDL-1080p.mkv","size":92444407,"dateAdded":"2018-10-10T21:30:28.394911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2198104,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":958},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E02.RoboChris-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E02.RoboChris-WEBDL-1080p.mkv","size":78377375,"dateAdded":"2018-10-10T21:30:28.421376Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1587944,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":959},{"seriesId":39,"seasonNumber":4,"relativePath":"Season 04\/S04E03E04.Mirror's Reflection + Chained To Your Side-HDTV-1080p.mp4","path":"\/tv\/Bravest Warriors\/Season 04\/S04E03E04.Mirror's Reflection + Chained To Your Side-HDTV-1080p.mp4","size":274081904,"dateAdded":"2018-10-10T21:30:28.447999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":182110,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1415733,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":960},{"seriesId":39,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Ghosts of the See-Through Zone-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 03\/S03E03.Ghosts of the See-Through Zone-WEBDL-1080p.mkv","size":204083020,"dateAdded":"2018-10-10T21:30:28.481664Z","releaseGroup":"Through","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128006,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2325590,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":961},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Butter Lettuce-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E03.Butter Lettuce-WEBDL-1080p.mkv","size":110499053,"dateAdded":"2018-10-10T21:30:28.509472Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2623898,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":962},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Mexican Touchdown-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E03.Mexican Touchdown-WEBDL-1080p.mkv","size":108625336,"dateAdded":"2018-10-10T21:30:28.536045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2271079,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":963},{"seriesId":39,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Fast Times at Saturn Oaks-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 03\/S03E04.Fast Times at Saturn Oaks-WEBDL-1080p.mkv","size":193880415,"dateAdded":"2018-10-10T21:30:28.562516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128003,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2195684,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":964},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Memory Donk-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E04.Memory Donk-WEBDL-1080p.mkv","size":165517153,"dateAdded":"2018-10-10T21:30:28.588776Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3959146,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":965},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Hamster Priest-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E04.Hamster Priest-WEBDL-1080p.mkv","size":94036851,"dateAdded":"2018-10-10T21:30:28.615831Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1943563,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":966},{"seriesId":39,"seasonNumber":4,"relativePath":"Season 04\/S04E05E06.From the Inside Room + All I Wish is to Be Alone-HDTV-1080p.mp4","path":"\/tv\/Bravest Warriors\/Season 04\/S04E05E06.From the Inside Room + All I Wish is to Be Alone-HDTV-1080p.mp4","size":249431466,"dateAdded":"2018-10-10T21:30:28.642735Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":182360,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1275857,"videoCodec":"h264","videoFps":30.0,"resolution":"1280x720","runTime":"22:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":967},{"seriesId":39,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Everything Is Okay-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 03\/S03E05.Everything Is Okay-WEBDL-1080p.mkv","size":186731929,"dateAdded":"2018-10-10T21:30:28.679892Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128005,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2110891,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":968},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Bunless-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E05.The Bunless-WEBDL-1080p.mkv","size":102235037,"dateAdded":"2018-10-10T21:30:28.706405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2243040,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":969},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Jelly Kid Forever-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E05.Jelly Kid Forever-WEBDL-1080p.mkv","size":86280008,"dateAdded":"2018-10-10T21:30:28.734456Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1842086,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":970},{"seriesId":39,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Emotion Fjord-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 03\/S03E06.Emotion Fjord-WEBDL-1080p.mkv","size":248961430,"dateAdded":"2018-10-10T21:30:28.760958Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128006,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2857008,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":971},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Lavarinth-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E06.Lavarinth-WEBDL-1080p.mkv","size":204375572,"dateAdded":"2018-10-10T21:30:28.787529Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4124510,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":972},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Puppetyville Horror-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E06.The Puppetyville Horror-WEBDL-1080p.mkv","size":98699947,"dateAdded":"2018-10-10T21:30:28.813719Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2151048,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":973},{"seriesId":39,"seasonNumber":4,"relativePath":"Season 04\/S04E07E08.This Dance Ain't for Everybody + A Few Stolen Moments-HDTV-1080p.mp4","path":"\/tv\/Bravest Warriors\/Season 04\/S04E07E08.This Dance Ain't for Everybody + A Few Stolen Moments-HDTV-1080p.mp4","size":260105354,"dateAdded":"2018-10-10T21:30:28.840232Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":183334,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1337221,"videoCodec":"h264","videoFps":30.0,"resolution":"1280x720","runTime":"22:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":974},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Catbug's Away Team-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E07.Catbug's Away Team-WEBDL-1080p.mkv","size":121585229,"dateAdded":"2018-10-10T21:30:28.873978Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128007,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2650872,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":975},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Gas Powered Stick-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E07.Gas Powered Stick-WEBDL-1080p.mkv","size":106328971,"dateAdded":"2018-10-10T21:30:28.900383Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2415738,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":976},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Merewif Tag-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E08.Merewif Tag-WEBDL-1080p.mkv","size":128222297,"dateAdded":"2018-10-10T21:30:28.926901Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128008,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2778062,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":977},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Dan Before Time-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E08.Dan Before Time-WEBDL-1080p.mkv","size":84963467,"dateAdded":"2018-10-10T21:30:28.954842Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2129880,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":978},{"seriesId":39,"seasonNumber":4,"relativePath":"Season 04\/S04E09E10.No Need To Argue + We Can Leave Your Friends Behind-HDTV-1080p.mp4","path":"\/tv\/Bravest Warriors\/Season 04\/S04E09E10.No Need To Argue + We Can Leave Your Friends Behind-HDTV-1080p.mp4","size":249644156,"dateAdded":"2018-10-10T21:30:28.981563Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":182781,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1275715,"videoCodec":"h264","videoFps":30.0,"resolution":"1280x720","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":979},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Cereal Master-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E09.Cereal Master-WEBDL-1080p.mkv","size":121042226,"dateAdded":"2018-10-10T21:30:29.018263Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2725983,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":980},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Dimension Garden-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E09.Dimension Garden-WEBDL-1080p.mkv","size":101679613,"dateAdded":"2018-10-10T21:30:29.04483Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2052623,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":981},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Parasox Pub-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E10.The Parasox Pub-WEBDL-1080p.mkv","size":123735266,"dateAdded":"2018-10-10T21:30:29.071401Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128007,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2425420,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":982},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Ultra Wankershim-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E10.Ultra Wankershim-WEBDL-1080p.mkv","size":94448079,"dateAdded":"2018-10-10T21:30:29.098103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128008,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1996655,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"5:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":983},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Season of the Worm-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E11.Season of the Worm-WEBDL-1080p.mkv","size":155186165,"dateAdded":"2018-10-10T21:30:29.124673Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128007,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3156828,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":984},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Catbug-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E11.Catbug-WEBDL-1080p.mkv","size":119434240,"dateAdded":"2018-10-10T21:30:29.151316Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2463994,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":985},{"seriesId":39,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Season of the Mitch-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 02\/S02E12.Season of the Mitch-WEBDL-1080p.mkv","size":146322197,"dateAdded":"2018-10-10T21:30:29.179624Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128006,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3036186,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":986},{"seriesId":39,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Sugarbellies-WEBDL-1080p.mkv","path":"\/tv\/Bravest Warriors\/Season 01\/S01E12.Sugarbellies-WEBDL-1080p.mkv","size":135239659,"dateAdded":"2018-10-10T21:30:29.206774Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2477444,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"6:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":987}],"queue":[]},"39":{"series":{"title":"Invader ZIM","alternateTitles":[],"sortTitle":"invader zim","status":"ended","ended":true,"overview":"Invader ZIM is an eccentric alien soldier from the planet Irk. He was banished from the Irken Empire after nearly destroying his home planet on an early mission. After begging his superiors, the Almighty Tallest Red and Purple, for another chance, they decide to get rid of him once and for all. They trick him into going on a \"secret mission\" to an obscure planet at the edge of the universe, a planet with the unlikely name of Earth, in hopes that he'll die along the way. But their trick backfires when ZIM safely reaches Earth and begins his ever-so-subtle conquest of it. He disguises himself as a schoolboy, and now the only person who can stop him is one kid - Dib, a somewhat insane paranormal researcher, who sees straight through ZIM's disguise and is intent on stopping his reign of \"terror\". The only problem is that neither of them is very good at stopping the other.","previousAiring":"2006-08-19T18:30:00Z","network":"Nickelodeon","airTime":"14:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/43\/banner.jpg?lastWrite=636747176370865070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75545-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/43\/poster.jpg?lastWrite=637103832854270950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75545-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/43\/fanart.jpg?lastWrite=637103832850191020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75545-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2000-11-12T19:30:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":5,"sizeOnDisk":248214073,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-09-28T18:30:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":4559541922,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-08-19T18:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":1651881679,"percentOfEpisodes":100.0}}],"year":2001,"path":"\/tv\/Invader Zim","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":75545,"tvRageId":3985,"tvMazeId":409,"firstAired":"2001-03-30T00:00:00Z","seriesType":"standard","cleanTitle":"invaderzim","imdbId":"tt0235923","titleSlug":"invader-zim","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children","Comedy","Horror","Science Fiction"],"tags":[],"added":"2018-10-09T00:50:29.1091764Z","ratings":{"votes":1563,"value":9.4},"statistics":{"seasonCount":2,"episodeFileCount":47,"episodeCount":47,"totalEpisodeCount":51,"sizeOnDisk":6459637674,"percentOfEpisodes":100.0},"id":43},"episodes":[{"seriesId":43,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"An Introduction to Kevin Manthei","overview":"Interview with series composer Kevin Manthei.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19704},{"seriesId":43,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Voices of Zim","overview":"Cast of Voices","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19705},{"seriesId":43,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Writers of Zim","overview":"Writers Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19706},{"seriesId":43,"episodeFileId":15531,"seasonNumber":0,"episodeNumber":1,"title":"Pilot","airDate":"2000-11-12","airDateUtc":"2000-11-12T19:30:00Z","overview":"Dib has been taking notice of how ZIM never eats human food and he believes he may just be able to exploit this fact to prove ZIM is an alien. However, ZIM isn\u2019t about to let someone ruin his mission and he does everything he can to appear as normal as possible, though will any of their attempts actually matter since most of the children at the skool aren\u2019t even paying attention to them?","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":2420},{"seriesId":43,"episodeFileId":8922,"seasonNumber":1,"episodeNumber":1,"title":"The Nightmare Begins","airDate":"2001-03-30","airDateUtc":"2001-03-30T19:30:00Z","overview":"The Irken race consists of beings that have desires of gaining universal domination. Their leaders, the Almighty Tallest Red and Purple, have just begun assigning Invaders, the elite soldiers who will capture the universe\u2019s most dangerous planets. However, when Zim, an Irken soldier who was banished from the Irken Empire, returns and demands to be assigned a task as an Invader, the Tallest decide to send Zim to a \u201cplanet that nobody has ever heard of\u201d: Earth. Zim gets assigned a cheap robot that is malfunctioning and he begins the trek towards Earth, but little does he know that a human child on Earth named Dib is already aware that he is coming, and plans to prevent Zim from completing his goal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2424},{"seriesId":43,"episodeFileId":1773,"seasonNumber":1,"episodeNumber":2,"title":"Parent Teacher Night","airDate":"2001-04-06","airDateUtc":"2001-04-06T18:30:00Z","overview":"After another day at the Earth skool, Ms. Bitters reminds the children that it\u2019s Parent Teacher Night and that all the parents must come to the skool at the end of the day. Zim becomes worried because his robotic parents aren\u2019t programmed for such a task yet and he cannot permit them to blow his cover, so he attempts to help them become the parents they should be, but Gir\u2019s carefree nature soon puts his plans in jeopardy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2425},{"seriesId":43,"episodeFileId":1774,"seasonNumber":1,"episodeNumber":3,"title":"Walk of Doom","airDate":"2001-04-06","airDateUtc":"2001-04-06T19:00:00Z","overview":"When Zim gets annoyed by Gir\u2019s inept nature for the last time, he finally gets around to upgrading Gir\u2019s guidance technology and he wishes to test its capability. Initial tests look good so Zim wants to take Gir into the city to test and see if Gir can get them safely back to their headquarters. However, when Gir forgets to bring the new guidance chip with him, Zim and Gir must find a way to get back home, despite the fact that they have very little understanding of the way the city functions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2426},{"seriesId":43,"episodeFileId":1777,"seasonNumber":1,"episodeNumber":4,"title":"Bestest Friend","airDate":"2001-04-13","airDateUtc":"2001-04-13T18:30:00Z","overview":"When Zim makes a huge scene over his inability to eat lunch food, he overhears one of the girls at school talking about how inhuman he seems to be and how he has no friends. In an attempt to appear more normal, Zim decides to spend time with a student named Keef, though Zim soon finishes his plan and he considers himself normal, so he tries to get Keef to leave him alone. Much to Zim\u2019s chagrin, however, Keef continues to follow Zim around, so Zim decides to take unorthodox measures to ensure Keef leaves him alone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2427},{"seriesId":43,"episodeFileId":1779,"seasonNumber":1,"episodeNumber":5,"title":"NanoZIM","airDate":"2001-04-13","airDateUtc":"2001-04-13T19:00:00Z","overview":"When Dib finally manages to get a picture of Zim without him in his disguise, Zim formulates a plan to shrink himself down into a microscopic size to get into Dib\u2019s body and perform a brain wipe to prevent him from remembering where he located the picture. Fortunately for Dib, his father has been working on some technology that may just help Dib stop Zim before it\u2019s too late, though he\u2019ll been to be careful because he\u2019s extremely vulnerable due to the fact that Zim is inside of him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2428},{"seriesId":43,"episodeFileId":1781,"seasonNumber":1,"episodeNumber":6,"title":"Germs","airDate":"2001-04-20","airDateUtc":"2001-04-20T18:30:00Z","overview":"After Zim watches an old movie where some invading aliens are defeated by some bacteria, he begins to study germs more. However, when he discovers that such germs truthfully are everywhere, he begins a crusade to kill every germ in his headquarters so that he can be safe, which is helped by the fact that Gir had some cleaning spray handy in the house; though when the cleaning bottle runes dry, Zim must attempt to go to the store and get some more, despite the fact that he knows just how many germs are out there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2429},{"seriesId":43,"episodeFileId":1783,"seasonNumber":1,"episodeNumber":7,"title":"Dark Harvest","airDate":"2001-04-20","airDateUtc":"2001-04-20T19:00:00Z","overview":"When Dib finds out that Zim has no human organs, he attempts to exploit Zim\u2019s ailment of head pigeons to get the skool\u2019s nurse to examine Zim in hopes she will see the truth. However, when Dib blurts his plan out to Zim, Zim develops a device that will permit him to switch objects for organs, in which he begins to steal the organs of his fellow classmates in order to appear more human in time for his appointment at the nurse\u2019s office.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2430},{"seriesId":43,"episodeFileId":1784,"seasonNumber":1,"episodeNumber":8,"title":"Attack of the Saucer Morons","airDate":"2001-04-27","airDateUtc":"2001-04-27T18:30:00Z","overview":"Zim attempts to test some of the defenses that Earth has by taking his Voot out for a drive to monitor local police units. However, when a bumble bee crashes into his vehicle, Zim comes crashing down in the park, in which he heads home because he will be unable to recover it the next day. However, when a space cult known as the Saucer Morons discover the Voot first, Zim must find a way to get his vehicle back without causing him to lose his cover.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2431},{"seriesId":43,"episodeFileId":1787,"seasonNumber":1,"episodeNumber":9,"title":"The Wettening","airDate":"2001-04-27","airDateUtc":"2001-04-27T19:00:00Z","overview":"When it begins to rain one day, Zim becomes worried because he\u2019s never experienced rain before. Dib takes notice of his fear and he coaxes Zim into stepping into the rain, only to discover that the Irken race has an innate weakness to water, which causes a burning sensation upon impact. Dib decides to exploit this new fact to create the ultimate weapon to stop Zim once and for all, but Zim himself attempts to find a way to protect himself from this new found weakness, which all leads up to a confrontation that neither of them would have expected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2432},{"seriesId":43,"episodeFileId":1789,"seasonNumber":1,"episodeNumber":10,"title":"Career Day","airDate":"2001-05-04","airDateUtc":"2001-05-04T18:30:00Z","overview":"Ms. Bitters is assigning students their mentors for Career Day through the use of an aptitude test and a machine. Both Dim and Zim attempt to get their desired professions on the test, in which Dib manages to get paired with a Paranormal Investigator while Zim gets stuck working at a fast food facility. However, when Zim misinterprets the 8 billion served sign and thinks that the individuals in charge of the company are the leaders of the planet, he becomes dedicated to his job in hopes of being promoted to Lord of All Humans. However, thanks to the alignment of the planets, Zim is about to go through some uncontrollable changes that could jeopardize his mission; which Dib is looking to exploit, though both Zim and Dib find their situations to go much different than they anticipated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2433},{"seriesId":43,"episodeFileId":1790,"seasonNumber":1,"episodeNumber":11,"title":"Battle-Dib","airDate":"2001-05-04","airDateUtc":"2001-05-04T19:00:00Z","overview":"When Dib finally manages to be permitted to present his findings on Zim to the Swollen Eyeball Network, he believes he will be able to put an end to Zim\u2019s schemes once and for all. However, when he discovers that he needs his father\u2019s permission and since his father is busy working on his television show, Dib must venture into the studio where his father is in order to attempt to get the signature he needs; though he soon discovers that speaking to his father isn\u2019t going to be as easy as it should be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2434},{"seriesId":43,"episodeFileId":1791,"seasonNumber":1,"episodeNumber":12,"title":"A Room with a Moose","airDate":"2001-08-17","airDateUtc":"2001-08-17T18:30:00Z","overview":"When Zim formulates a plan to get revenge on his skoolmates and especially Dib, he gets them all participating on a fieldtrip. Dib, however, realizes that the driver of the bus isn\u2019t real, but due to his constant theories, the other students disregard his warnings. Zim decides to gloat about his magnificent plan and he informs Dib of every detail in confidence that Dib can do nothing to stop him, though Dib refuses to give up and he does everything he can to save his skoolmates and himself; despite the fact that he doesn\u2019t know why Zim\u2019s plans involve a room with a moose.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":2435},{"seriesId":43,"episodeFileId":1792,"seasonNumber":1,"episodeNumber":13,"title":"Hamstergeddon","airDate":"2001-08-17","airDateUtc":"2001-08-17T19:00:00Z","overview":"While at skool one day, Ms. Bitters tells the class that they need a new pet hamster due to the orders of the skool\u2019s board of directors. When the hamster arrives, all the children love the hamster because of how adorable it is, in which Zim decides to exploit that fact since the hamster could help make the humans too weak to resist him. Zim plants an Irken device on the hamster that will permit it to grow larger and be controlled by Zim, but when the hamster grows rampant and breaks free, Zim must attempt to stop the huge hamster from destroying his headquarters, all the while worrying about the growing military presence that may have no choice but to attack the hamster, which would ruin all of his efforts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":2436},{"seriesId":43,"episodeFileId":1793,"seasonNumber":1,"episodeNumber":14,"title":"Invasion of the Idiot Dog Brain","airDate":"2001-08-24","airDateUtc":"2001-08-24T18:30:00Z","overview":"When Zim\u2019s headquarters are having security problems, Zim attempts to upgrade the security system and get the job over with. He decides to put Gir in charge of ensuring nothing goes wrong while he replaces the computer\u2019s AI, but when Gir begins to mess around with things, he inadvertently causes the house to shut down along with himself. However, Zim soon discovers that Gir\u2019s AI has been uploaded into the central hub of the house, which worries Zim quite a lot since Gir is being unresponsive and uncontrollable, which soon puts their mission in jeopardy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":2437},{"seriesId":43,"episodeFileId":1794,"seasonNumber":1,"episodeNumber":15,"title":"Bad, Bad Rubber Piggy","airDate":"2001-08-24","airDateUtc":"2001-08-24T19:00:00Z","overview":"Zim finally finishes one of his self proclaimed brilliant inventions, a space-time-object-transfer device, in which he plans to send a giant robot into the past in order to put an end to Dib once and for all. However, when the robot isn\u2019t compatible with the temporal field, he throws a rubber pig into the vortex instead, which turns out to be compatible and it causes Dib to crash his tricycle in the past. Zim decides to send many more rubber pigs into Dib\u2019s past, which ultimately affect him in the future; though when Zim overdoes himself, he discovers that history isn\u2019t something that should be messed with.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":2438},{"seriesId":43,"episodeFileId":1795,"seasonNumber":1,"episodeNumber":16,"title":"Planet Jackers","airDate":"2001-08-31","airDateUtc":"2001-08-31T18:30:00Z","overview":"Zim is upset because all of the other Invaders are doing much better in their tasks than he is, though he inadvertently discovers that his signal to the data hub has been interrupted. When Zim takes a closer look, he discovers that the Earth has actually been hijacked by the Planet-Jackers, an alien race who must throw other planets into their dying sun in order to survive. Zim begins to formulate a plan to stop the Planet-Jackers, but when Dib refuses to believe him, he realizes that he must save the world he plans to destroy by himself, just for the sake of being the one who gets to destroy it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2439},{"seriesId":43,"episodeFileId":1796,"seasonNumber":1,"episodeNumber":17,"title":"Rise of the Zitboy","airDate":"2001-08-31","airDateUtc":"2001-08-31T19:00:00Z","overview":"When Zim comes home from a lousy day at skool because he found out that Dib knows a flaw in his security system, Gir attempts to cheer him up by rubbing bacon oil all over his face. However, when Zim develops a pimple due to the grease, he fears that he will be considered abnormal and that it will jeopardize his mission. Zim believe he can use some acne medicine to get rid of the pimple, but when it only gets worse and when Gir draws a little face on the pimple, Zim believes all hope is lost; though Zim soon discovers the pimple has hypnotic powers and he hopes to exploit this new power in order to get Dib to reveal his secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2440},{"seriesId":43,"episodeFileId":1797,"seasonNumber":1,"episodeNumber":18,"title":"Plague of Babies","airDate":"2001-09-07","airDateUtc":"2001-09-07T18:30:00Z","overview":"When Zim\u2019s Voot Cruiser has a mechanical failure and it sends Zim and Gir flying through the skies, Zim manages to gain control just in time to land safely in their headquarters. However, Zim is highly upset because a human baby saw the whole thing and despite Gir\u2019s attempts to reason with him, Zim decides to go meet with the baby to see what he can do. However, Zim soon discovers the true nature of the baby and he must do everything he can to prevent them from accomplishing their goals.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":2441},{"seriesId":43,"episodeFileId":1798,"seasonNumber":1,"episodeNumber":19,"title":"Bloaty's Pizza Hog","airDate":"2001-09-07","airDateUtc":"2001-09-07T19:00:00Z","overview":"Dib believes he has figured out a way to successfully tunnel into Zim\u2019s underground base, but when his father comes in and announces that it\u2019s the Membrane family\u2019s night out and that Gaz gets to pick the place to eat, Dib runs off saying that he will be back in time for them to leave. However, when Dib fails to arrive on time, Professor Membrane decides to wait until Dib gets back, which causes Gaz to become quite frustrated as she really wanted to get some of her favorite food; she decides to go find Dib at Zim\u2019s place and despite the fact that Zim\u2019s already taken Dib into an in-space laboratory, she refuses to miss her opportunity to eat out so she plans to let nothing get in her way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":2442},{"seriesId":43,"episodeFileId":1799,"seasonNumber":1,"episodeNumber":20,"title":"Bolognius Maximus","airDate":"2001-09-21","airDateUtc":"2001-09-21T18:30:00Z","overview":"When Dib once again notices that Zim isn\u2019t eating his food, he throws a piece of bologna at him in order to taunt him, in which the bologna fuses with Zim\u2019s skin, causing him immense pain. Zim vows to get his revenge and during the next day of school, Dib sits on a tack, which causes Zim to begin laughing hysterically. Dib believes Zim is just being pathetic, but when Dib begins to transform into a living piece of bologna, he realizes that Zim\u2019s plan was better than he had thought and he must formulate a method of curing himself before it\u2019s too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":2443},{"seriesId":43,"episodeFileId":1800,"seasonNumber":1,"episodeNumber":21,"title":"Game Slave 2","airDate":"2001-09-21","airDateUtc":"2001-09-21T19:00:00Z","overview":"When Gaz sees an advertisement for the new handheld gaming console, the Game Slave 2, she decides that she really needs to go to the mall in order to get one. However, when her father insists that she takes Dib to the mall as well, he forces her to wait until Mysterious Mysteries goes off, which causes them to arrive at the mall late. Gaz, in rage, tricks Dib into running off into the underground parking lot while she attempts to get a Game Slave 2; though Gaz discovers an annoying kid managed to get the last copy so she seeks to steal his copy, all the while Dib must attempt to get out of the underground parking lot, which is filled with rat-like people who just annoy him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":2444},{"seriesId":43,"episodeFileId":1801,"seasonNumber":1,"episodeNumber":22,"title":"Halloween Spectacular of Spooky Doom","airDate":"2001-10-26","airDateUtc":"2001-10-26T18:30:00Z","overview":"It\u2019s Halloween and the entire town is getting into the Halloween spirit; much to Zim\u2019s dismay because he considers the entire concept to be insane and he doesn\u2019t want filthy Earth children coming to his house. Meanwhile, Ms. Bitters sends Dib to an insane asylum because he has been acting crazier than normal, in which in truth he has been getting sucked into a nightmare world that was created due to his meddling with one of his father\u2019s inventions. After finally getting out of the nightmare world and out of the insane asylum, Dib sees Zim\u2019s house and decides to force Zim to come with him into the Nightmare world because he believes Zim will have the capability to put an end to all the madness, but will they manage to work together despite the fact that they\u2019re enemies and that Zim didn\u2019t want to help him in the first place?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":2445},{"seriesId":43,"episodeFileId":1802,"seasonNumber":1,"episodeNumber":23,"title":"Mysterious Mysteries","airDate":"2002-03-22","airDateUtc":"2002-03-22T19:30:00Z","overview":"When Mysterious Mysteries is having trouble in ratings due to their lack of stories, they decide to take drastic measures and they finally let Dib onto the show. Dib believes this is his best chance to reveal Zim for what he is and he plays a short clip of Zim and Dib in the woods, which actually makes the anchor of the series quite pleased. However, when Zim gets on the show the next day to attempt to prove Dib wrong, they soon get into a battle of words over the real events that occurred on that day as they both attempt to persuade the host of Mysterious Mysteries to believe what they have said.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":2446},{"seriesId":43,"episodeFileId":1803,"seasonNumber":1,"episodeNumber":24,"title":"Future Dib","airDate":"2002-03-22","airDateUtc":"2002-03-22T20:00:00Z","overview":"Professor Membrane has just unveiled a world changing machine that will completely remove the entire need for fuel, though if the machine were to malfunction, it could cause a giant shockwave that would destroy all life on Earth. However, Professor Membrane refuses to turn the machine on until his children are present, in which Dib is absent because he is attempting to prevent Zim from sabotaging the machine. However, things soon take a turn for the worse as Dib falls into one of Zim\u2019s traps and the crowd in front of Professor Membrane beings to grow uneasy over the fact that they\u2019ve waited so long, so Professor Membrane decides to send Gaz to go find Dib and put an end to his foolishness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":2447},{"seriesId":43,"episodeFileId":1804,"seasonNumber":1,"episodeNumber":25,"title":"Door to Door","airDate":"2002-03-29","airDateUtc":"2002-03-29T19:30:00Z","overview":"The skool is holding a candy drive in order to get some finances, in which the individual who sells the most chocolate bars will get a secret mystery prize. Zim becomes interested and he attempts to find a way to sell the most chocolate bars, which causes Dib to get into the contest in order to gain a defeat over Zim. Zim soon realizes, however, that he may have to take drastic measures in order to sell more candy bars than Dib.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":2448},{"seriesId":43,"episodeFileId":1805,"seasonNumber":1,"episodeNumber":26,"title":"FBI Warning of Doom","airDate":"2002-03-29","airDateUtc":"2002-03-29T20:00:00Z","overview":"Gir has recently been watching a movie he rented from the local mall, in which Zim just happens to be in the room when the FBI Warning is displayed on screen. Just as Zim realizes this, he gets a phone call from the mall saying they need the video back, in which Zim begins to panic because he believes that there is foul play at hand. When his computer tells him that the FBI must be an alien hunting group, he grabs the movie and makes his way to the mall, despite the fact that he doesn\u2019t know what to expect when he arrives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":2449},{"seriesId":43,"episodeFileId":1806,"seasonNumber":1,"episodeNumber":27,"title":"Battle of the Planets","airDate":"2002-04-05","airDateUtc":"2002-04-05T19:30:00Z","overview":"When Zim goes to Mars to attempt to find a way to destroy the Earth, figuring that whatever killed the life on Mars may work for Earth as well, he stumbles across the face on Mars, which he later discovers that is actually the controls for a spaceship, in which the entire planet of Mars was the spaceship. Dib learns of this and he attempts to go to NASAPLACE in order to get them to see what Zim is doing, but they refuse to believe him as they can\u2019t look at the monitors. Will Dib be able to find a way to stop Zim before he uses the red planet to squish all the life out of the Earth?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":2450},{"seriesId":43,"episodeFileId":1807,"seasonNumber":1,"episodeNumber":28,"title":"Abducted","airDate":"2002-04-12","airDateUtc":"2002-04-12T18:30:00Z","overview":"When Zim is attempting to explain to the Almighty Tallest that the humans are both dumb and tall, he gets interrupted when the doorbell rings and his transmission to the Tallest is cut short. The two individuals at the door claim to be human, but Zim doesn\u2019t believe them and he attempts to tell them that their spaceship is jamming his signal; they respond by merely sacking both Gir and Zim and taking them to their spaceship. Will Zim be able to get back to his base and finish his report to the Tallest, and what will Zim do to the two aliens who dared to capture him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":2451},{"seriesId":43,"episodeFileId":1808,"seasonNumber":1,"episodeNumber":29,"title":"The Sad, Sad Tale of Chickenfoot","airDate":"2002-04-12","airDateUtc":"2002-04-12T19:00:00Z","overview":"When Professor Membrane invites some of his colleagues over to the house, they insult and mock Dib because of his hobby of paranormal investigation. Matters become even worse for Dib when Mysterious Mysteries begins to show a segment on Chickenfoot, a being that is obviously a guy in a suit. Dib decides to go on a crusade to prove Chickenfoot is a fraud in order to establish the fact that paranormal investigation also disproves the frauds along with proving the real mysteries, though will Dib be able to find the elusive Chickenfoot and even if he does, how will he manage to get the suit off of him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":2452},{"seriesId":43,"episodeFileId":1809,"seasonNumber":1,"episodeNumber":30,"title":"Megadoomer","airDate":"2002-04-26","airDateUtc":"2002-04-26T18:30:00Z","overview":"The Almighty tallest are examining a storage planet in order to send valuable goods to the Invaders to help them on their missions. They decide to send a Megadoomer Combat Stealth Mech to Invader Tenn to help her conquest of the planet Meekrob and they decide to send a box of malfunctioning SIR units to Invader ZIM, but when the two packages addresses are switched by an angry slave, ZIM gets the Megadoomer and plans to use his new gift from the Tallest to put an end to Dib once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":2453},{"seriesId":43,"episodeFileId":1810,"seasonNumber":1,"episodeNumber":31,"title":"Lice","airDate":"2002-04-26","airDateUtc":"2002-04-26T19:00:00Z","overview":"When at skool one day, a child comes into class late because his head was itchy, which Ms. Bitters recognizes that it was due to lice. Before she can do anything, however, the lice infect the rest of the students in the class, so Ms, Bitters informs the Delouser, who proclaims martial law and the children are taken into separate rooms. However, Zim shows no sign of being infected by the lice, which causes the Delouser to take special interest in him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":2454},{"seriesId":43,"episodeFileId":1811,"seasonNumber":1,"episodeNumber":32,"title":"Tak: The Hideous New Girl","airDate":"2002-05-10","airDateUtc":"2002-05-10T18:30:00Z","overview":"It\u2019s Valentines Day and everyone is celebrating by giving out meat valentines, but when a new girl named Tak arrives and starts giving out sausages, Zim believes she has a crush on him so he exploits the opportunity to examine human love rituals. However, when such doesn\u2019t turn out so well, he decides to head home, only to discover later that Tak followed him home and that she is actually a member of the Irken race. Tak plans to take over Zim\u2019s mission so she can show the Tallest that she is worthy of being an Invader, but that\u2019s not something Zim is going to permit so easily so he vows to prevent her from doing this, as the Earth is his planet to destroy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":2455},{"seriesId":43,"episodeFileId":1812,"seasonNumber":1,"episodeNumber":33,"title":"GIR Goes Crazy and Stuff","airDate":"2002-05-24","airDateUtc":"2002-05-24T18:30:00Z","overview":"When Zim attempts to taint the Earth\u2019s cow-meat supply with sewer water is ruined because of Gir\u2019s antics, he decides to increase the power on Gir\u2019s behavioral modifier, which will permit him to stay in serious mode all the time. However, when the serious Gir starts to consider Zim a threat to the mission and runs off to learn things on his own accord, it\u2019s up to Zim and Squidman to find Gir and turn down the power on his behavioral modifier before too many individuals see them and jeopardize their mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":2456},{"seriesId":43,"episodeFileId":1813,"seasonNumber":1,"episodeNumber":34,"title":"Dib's Wonderful Life of Doom","airDate":"2002-05-24","airDateUtc":"2002-05-24T19:00:00Z","overview":"While at school one day, Zim throws another fit about the lunch food so Dib throws a muffin at him, which causes Zim to run away in anger. The next day, a pair of Meekrob come to Dib in his sleep and grant him marvelous super powers, in which Dib decides to use to put an end to Zim once and for all. When Dib manages to suppress Zim quite easily, he decides to use his power for the greater good and he lives out the wonderful life he always wanted to have; though perhaps it\u2019s too wonderful.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":2457},{"seriesId":43,"episodeFileId":1814,"seasonNumber":1,"episodeNumber":35,"title":"Hobo 13","airDate":"2002-07-12","airDateUtc":"2002-07-12T18:30:00Z","overview":"When Zim\u2019s constant requests to the Tallest get on their nerves, they attempt to remind him that he is an Invader, not a battle soldier, and that he doesn\u2019t have the training to use the equipment he requested. In order for Zim to prove himself to them, they send him to Hobo 13, an elite training facility that only the best of soldiers stand a chance of completing. While the Tallest hope that Zim will die on the mission and be gone once and for all, they soon discover that Zim is much more cunning than they gave him credit for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":2458},{"seriesId":43,"episodeFileId":1815,"seasonNumber":1,"episodeNumber":36,"title":"Walk for Your Lives","airDate":"2002-09-28","airDateUtc":"2002-09-28T18:30:00Z","overview":"During Probing Day, the day where the Tallest evaluate the Invaders\u2019 performances, Zim has Dib captured in a space-time-field prison which is keeping him in slow motion, in which Zim wants to perform experiments on him for the Tallest. However, when a malfunction causes the prison to explode, Zim finds a piece of explosion that is expanding very slowly; in which Zim believes he can end if he throws it into the city\u2019s cesspool. However, when he discovers that getting the explosion to the cesspool is much more difficult than he expected, he finds that he may just have to use unconventional means to complete the task.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":2459},{"seriesId":43,"episodeFileId":1770,"seasonNumber":2,"episodeNumber":1,"title":"The Most Horrible X-mas Ever","airDate":"2002-12-10","airDateUtc":"2002-12-10T19:30:00Z","overview":"This episode takes place in the future, in which a robotic snowman named Sludgy is telling children the story of the most horrible Christmas ever. It all started when Zim, Gir and Minimoose were on the streets trying to make money; he notices that fat men in red coats and white beards were making a lot of money. He captures one and he discovers the story of Santa Claus, in which he is amazed over how much power Santa has over the humans. Zim decides to create a giant Santa suit that he can use in order to pretend to be Santa, in order to have more power over the humans and become their ruler,so zim collects all info on santa and creates his suite, though Dib figures out Zim\u2019s scheme and heads out to stop him in order to not only save Christmas, but to save the entire human race as well.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":2460},{"seriesId":43,"episodeFileId":1772,"seasonNumber":2,"episodeNumber":2,"title":"Backseat Drivers from Beyond the Stars","airDate":"2006-06-10","airDateUtc":"2006-06-10T18:30:00Z","overview":"When Zim notices that the Almighty Tallest are very close to Earth, he wants them to view his newest scheme to destroy the humans: a monster that sucks out and eats the brains of people. The Tallest don\u2019t care because they have their own problems to deal with, such as the group of resistance fighters that are trying to attack The Massive. Zim decides to take control of The Massive and force the Almighty Tallest to come to Earth, though his plans are interrupted when Dib uses Tak\u2019s ship in order to take control of The Massive as well, not to mention the fact that the robo-parents are malfunctioning and that the brain eating monster is about to break free. Zim will need to work three times as hard if he wants to ensure his plan will be a success, though with the odds against him, will Zim be able to get the Tallest to Earth on time to witness his brilliance?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":2461},{"seriesId":43,"episodeFileId":1775,"seasonNumber":2,"episodeNumber":3,"title":"Mortos der Soulstealer","airDate":"2006-06-17","airDateUtc":"2006-06-17T18:30:00Z","overview":"Dib summons Mortos der Soulstealer, a mystical being who emerges once every thousand years, in order to wish for him to steal ZIM\u2019s soul. However, when it turns out that Mortos needs to recharge his power before he can complete the task that Dib requested, Dib must help him do many absurd things in hopes of putting an end to ZIM once and for all. Meanwhile, ZIM heads around town undergoing his latest evil scheme, which is the reason Dib was so eager to enlist Mortos\u2019 help in the first place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":2462},{"seriesId":43,"episodeFileId":1776,"seasonNumber":2,"episodeNumber":4,"title":"ZIM Eats Waffles","airDate":"2006-06-17","airDateUtc":"2006-06-17T19:00:00Z","overview":"When Dib finally manages to get a spy camera inside Zim\u2019s house, he plans to exploit the moment to show the Swollen Eyeball Network the truth about Zim\u2019s nature. Unfortunately for Dib, Zim is more concerned with Gir\u2019s waffles than his next evil plan, which causes Dib some complications as there is nothing special about waffles. However, when something out of the ordinary does occur, Dib believes he may just have a chance to succeed in his plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":2463},{"seriesId":43,"episodeFileId":1778,"seasonNumber":2,"episodeNumber":5,"title":"The Girl Who Cried Gnome","airDate":"2006-07-15","airDateUtc":"2006-07-15T18:30:00Z","overview":"When a girl named Moofy comes to Zim\u2019s house and attempts to sell him cookies, he freaks out and sends a robot gopher to get rid of her. However, when Moofy falls into a hole, the story breaks out and a crowd of people and a news agency shows up to cover the breaking events. Zim is worried because he doesn\u2019t want his identity to be revealed, though he begins to formulate a method to exploit the moment to free Moofy and help him destroy the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":2464},{"seriesId":43,"episodeFileId":1780,"seasonNumber":2,"episodeNumber":6,"title":"Dibship Rising","airDate":"2006-07-15","airDateUtc":"2006-07-15T19:00:00Z","overview":"When Dib discovers that Tak\u2019s ship he recovered has a built in AI, he decides to reprogram the ship with his own personality. While Dib is quite pleased with initial results, the spaceship begins to behave more and more like the real Dib and it attempts to actually take his place. All of the attention of a huge spaceship going to school causes Zim to realize that it\u2019s really Tak\u2019s ship, so he plans to override the machines AI and order it to attack Dib; though can he really force a machine so smart to attack it\u2019s counterpart?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":2465},{"seriesId":43,"episodeFileId":1782,"seasonNumber":2,"episodeNumber":7,"title":"Vindicated!","airDate":"2006-07-22","airDateUtc":"2006-07-22T18:30:00Z","overview":"When Dib messes up during gym class, he is forced to go see the skool\u2019s counselor, Mr. Dwicky, in which Dib mentions what happened with Zim. However, when it turns out that Mr. Dwicky believes in Dib and proposes to work with him to prove Zim\u2019s nature to the world, they forge a plan to lure Zim into a trap through the use of an alien translation device; however, Dib doesn\u2019t realize the true nature of Mr. Dwicky\u2019s intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":2466},{"seriesId":43,"episodeFileId":1785,"seasonNumber":2,"episodeNumber":8,"title":"The Voting of the Doomed","airDate":"2006-07-22","airDateUtc":"2006-07-22T19:00:00Z","overview":"It\u2019s time for the class elections at skool, in which Zim decides to participate in because he figures that if he wins the election, he\u2019ll be one step closer to ruling the world. Dib wants to stop him but he knows that nobody would vote for him, so when Willy is nominated to compete against Zim, Dib decides to help Willy out in hopes that he\u2019ll manage to defeat Zim in the polls. However, will Willy be able to do what Dib tells him, and even if he does, would he be able to prevent Zim from winning the election?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":2467},{"seriesId":43,"episodeFileId":1786,"seasonNumber":2,"episodeNumber":9,"title":"Gaz, Taster of Pork","airDate":"2006-08-12","airDateUtc":"2006-08-12T18:30:00Z","overview":"When Dib finally manages to get his book of spells somewhat fixed, he casts a spell on his sister in order to test and see if things work properly. However, when the spell makes everything Gaz eat taste like pork, Gaz threatens to destroy him if he doesn\u2019t help her get back to normal. All their father could do was put Gaz in a cage and treat her like a freak so Dib goes off to ask the Swollen Eyeball Network if they have any advice on the situation; there is only one way Gaz can get her sense of taste restored: she must travel to an alternate dimension and get The Pork King to return her back to normal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":2468},{"seriesId":43,"episodeFileId":1788,"seasonNumber":2,"episodeNumber":10,"title":"The Frycook What Came from All That Space","airDate":"2006-08-19","airDateUtc":"2006-08-19T18:30:00Z","overview":"When Sizz-Lorr, the owner of a restaurant on Foodcourtia, captures Zim and takes him back to Foodcourtia to continue his banishment, Zim must find a way to escape Sizz-Lorr\u2019s wrath. While Zim managed to escape once by going out the door, the restaurant has been upgraded with new security features that will make him explode if he attempts to leave. The Great Foodening is also about to begin, so if Zim doesn\u2019t escape before it occurs, he\u2019ll be locked on Foodcourtia for twenty years; will Zim manage to find a way out, despite the fact that Sizz-Lorr is quite confident in his ability to make Zim suffer?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":2469},{"seriesId":43,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Enter The Florpus","airDate":"2019-08-16","airDateUtc":"2019-08-16T18:30:00Z","overview":"Zim discovers his almighty leaders never had any intention of coming to Earth and he loses confidence in himself for the first time in his life, which is the big break his human nemesis, Dib has been waiting for.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15790}],"episodeFile":[{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Most Horrible X-mas Ever-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E01.The Most Horrible X-mas Ever-DVD.mkv","size":305590321,"dateAdded":"2018-10-10T21:56:30.1387Z","releaseGroup":"mas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1259927,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"24:44","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1770},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Backseat Drivers from Beyond the Stars-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E02.Backseat Drivers from Beyond the Stars-DVD.mkv","size":210443661,"dateAdded":"2018-10-10T21:56:30.216172Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":900432,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"22:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1772},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Parent Teacher Night-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E02.Parent Teacher Night-DVD.mkv","size":103106360,"dateAdded":"2018-10-10T21:56:30.246039Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":863078,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1773},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Walk of Doom-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E03.Walk of Doom-DVD.mkv","size":108878279,"dateAdded":"2018-10-10T21:56:30.283073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":897669,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1774},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Mortos der Soulstealer-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E03.Mortos der Soulstealer-DVD.mkv","size":106070437,"dateAdded":"2018-10-10T21:56:30.319353Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":875035,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1775},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E04.ZIM Eats Waffles-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E04.ZIM Eats Waffles-DVD.mkv","size":109583010,"dateAdded":"2018-10-10T21:56:30.358655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":999478,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:01","scanType":"","subtitles":"Esperanto"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1776},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Bestest Friend-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E04.Bestest Friend-DVD.mkv","size":93616849,"dateAdded":"2018-10-10T21:56:30.395798Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":720120,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1777},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Girl Who Cried Gnome-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E05.The Girl Who Cried Gnome-DVD.mkv","size":118130558,"dateAdded":"2018-10-10T21:56:30.429617Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1039618,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:33","scanType":"","subtitles":"Esperanto"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1778},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E05.NanoZIM-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E05.NanoZIM-DVD.mkv","size":109977012,"dateAdded":"2018-10-10T21:56:30.461805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":946953,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1779},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Dibship Rising-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E06.Dibship Rising-DVD.mkv","size":104489364,"dateAdded":"2018-10-10T21:56:30.496932Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":937446,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:03","scanType":"","subtitles":"Esperanto"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1780},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Germs-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E06.Germs-DVD.mkv","size":100531269,"dateAdded":"2018-10-10T21:56:30.526908Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":799825,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1781},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Vindicated!-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E07.Vindicated!-DVD.mkv","size":108742287,"dateAdded":"2018-10-10T21:56:30.561895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":801306,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1782},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Dark Harvest-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E07.Dark Harvest-DVD.mkv","size":82616652,"dateAdded":"2018-10-10T21:56:30.591568Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":624428,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1783},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Attack of the Saucer Morons-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E08.Attack of the Saucer Morons-DVD.mkv","size":130529059,"dateAdded":"2018-10-10T21:56:30.632445Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1083828,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"12:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1784},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Voting of the Doomed-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E08.The Voting of the Doomed-DVD.mkv","size":125817323,"dateAdded":"2018-10-10T21:56:30.668973Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1034340,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1785},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Gaz, Taster of Pork-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E09.Gaz, Taster of Pork-DVD.mkv","size":208980769,"dateAdded":"2018-10-10T21:56:30.702748Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":796224,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"22:20","scanType":"","subtitles":"Esperanto"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1786},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Wettening-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E09.The Wettening-DVD.mkv","size":106795359,"dateAdded":"2018-10-10T21:56:30.737733Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":964698,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"10:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1787},{"seriesId":43,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Frycook What Came from All that Space-DVD.mkv","path":"\/tv\/Invader Zim\/Season 02\/S02E10.The Frycook What Came from All that Space-DVD.mkv","size":254033949,"dateAdded":"2018-10-10T21:56:30.7677Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1062654,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"22:22","scanType":"","subtitles":"Esperanto"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1788},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Career Day-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E10.Career Day-DVD.mkv","size":103471675,"dateAdded":"2018-10-10T21:56:30.802744Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":703711,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1789},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Battle-Dib-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E11.Battle-Dib-DVD.mkv","size":128322196,"dateAdded":"2018-10-10T21:56:30.833697Z","releaseGroup":"Dib","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":999691,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1790},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E12.A Room with a Moose-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E12.A Room with a Moose-DVD.mkv","size":125551870,"dateAdded":"2018-10-10T21:56:30.867915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":893922,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1791},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Hamstergeddon-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E13.Hamstergeddon-DVD.mkv","size":124141940,"dateAdded":"2018-10-10T21:56:30.900303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":986335,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1792},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Invasion of the Idiot Dog Brain-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E14.Invasion of the Idiot Dog Brain-DVD.mkv","size":106794828,"dateAdded":"2018-10-10T21:56:30.93203Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":760357,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1793},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Bad, Bad Rubber Piggy-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E15.Bad, Bad Rubber Piggy-DVD.mkv","size":115612278,"dateAdded":"2018-10-10T21:56:30.963363Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":801457,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1794},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Planet Jackers-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E16.Planet Jackers-DVD.mkv","size":116473215,"dateAdded":"2018-10-10T21:56:30.999123Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":818932,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1795},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Rise of the Zitboy-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E17.Rise of the Zitboy-DVD.mkv","size":114799824,"dateAdded":"2018-10-10T21:56:31.02975Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":858584,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1796},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Plague of Babies-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E18.Plague of Babies-DVD.mkv","size":106767777,"dateAdded":"2018-10-10T21:56:31.066837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":809243,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1797},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Bloaty's Pizza Hog-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E19.Bloaty's Pizza Hog-DVD.mkv","size":95668849,"dateAdded":"2018-10-10T21:56:31.096479Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":693973,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1798},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Bolognius Maximus-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E20.Bolognius Maximus-DVD.mkv","size":103157075,"dateAdded":"2018-10-10T21:56:31.133604Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":753287,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1799},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Game Slave 2-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E21.Game Slave 2-DVD.mkv","size":118730929,"dateAdded":"2018-10-10T21:56:31.170168Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":927803,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1800},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Halloween Spectacular of Spooky Doom-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E22.Halloween Spectacular of Spooky Doom-DVD.mkv","size":213237373,"dateAdded":"2018-10-10T21:56:31.21092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":826037,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"22:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1801},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Mysterious Mysteries-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E23.Mysterious Mysteries-DVD.mkv","size":95300255,"dateAdded":"2018-10-10T21:56:31.241885Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":680913,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1802},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Future Dib-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E24.Future Dib-DVD.mkv","size":106248407,"dateAdded":"2018-10-10T21:56:31.28947Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":783138,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1803},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Door to Door-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E25.Door to Door-DVD.mkv","size":120252979,"dateAdded":"2018-10-10T21:56:31.328721Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":911819,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1804},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E26.FBI Warning of Doom-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E26.FBI Warning of Doom-DVD.mkv","size":105322213,"dateAdded":"2018-10-10T21:56:31.358749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":799151,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1805},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E27.Battle of the Planets-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E27.Battle of the Planets-DVD.mkv","size":251083971,"dateAdded":"2018-10-10T21:56:31.395011Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1009712,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"22:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1806},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Abducted-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E28.Abducted-DVD.mkv","size":240532522,"dateAdded":"2018-10-10T21:56:31.428539Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":950901,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"22:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1807},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E29.The Sad, Sad Tale of Chickenfoot-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E29.The Sad, Sad Tale of Chickenfoot-DVD.mkv","size":129996101,"dateAdded":"2018-10-10T21:56:31.459835Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1041537,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1808},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Megadoomer-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E30.Megadoomer-DVD.mkv","size":106588539,"dateAdded":"2018-10-10T21:56:31.491336Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":822095,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1809},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E31.Lice-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E31.Lice-DVD.mkv","size":137923459,"dateAdded":"2018-10-10T21:56:31.522666Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1155171,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1810},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Tak - The Hideous New Girl-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E32.Tak - The Hideous New Girl-DVD.mkv","size":222090126,"dateAdded":"2018-10-10T21:56:31.560448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":966800,"videoCodec":"x265","videoFps":29.924,"resolution":"720x480","runTime":"22:55","scanType":"","subtitles":"Esperanto"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1811},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E33.GIR Goes Crazy and Stuff-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E33.GIR Goes Crazy and Stuff-DVD.mkv","size":94129646,"dateAdded":"2018-10-10T21:56:31.59089Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":817787,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"10:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1812},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Dib's Wonderful Life of Doom-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E34.Dib's Wonderful Life of Doom-DVD.mkv","size":117338118,"dateAdded":"2018-10-10T21:56:31.625669Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":991408,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1813},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Hobo 13-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E35.Hobo 13-DVD.mkv","size":117967535,"dateAdded":"2018-10-10T21:56:31.65596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":944147,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1814},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E36.Walk for Your Lives-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E36.Walk for Your Lives-DVD.mkv","size":112644262,"dateAdded":"2018-10-10T21:56:31.694085Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":876302,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"11:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1815},{"seriesId":43,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Nightmare Begins-DVD.mkv","path":"\/tv\/Invader Zim\/Season 01\/S01E01.The Nightmare Begins-DVD.mkv","size":193343121,"dateAdded":"2019-09-09T20:11:20.852509Z","releaseGroup":"DVD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":735114,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"23:36","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8922},{"seriesId":43,"seasonNumber":0,"relativePath":"Specials\/S00E01.Pilot-DVD.mkv","path":"\/tv\/Invader Zim\/Specials\/S00E01.Pilot-DVD.mkv","size":248214073,"dateAdded":"2020-09-08T16:00:30.6373Z","releaseGroup":"DVD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English \/ English","audioStreamCount":4,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"720x480","runTime":"13:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15531}],"queue":[]},"40":{"series":{"title":"Gravity Falls","alternateTitles":[],"sortTitle":"gravity falls","status":"ended","ended":true,"overview":"Twin brother and sister Dipper and Mabel Pines are in for an unexpected adventure when they spend the summer helping their Great Uncle Stan run a tourist trap in the mysterious town of Gravity Falls, Oregon.","previousAiring":"2016-02-16T02:30:00Z","network":"Disney XD","airTime":"21:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/42\/banner.jpg?lastWrite=636930993180633820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/259972-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/42\/poster.jpg?lastWrite=636747176356945370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/259972-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/42\/fanart.jpg?lastWrite=637103832760192650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/259972-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":60,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-08-03T01:30:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":10285396420,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-02-16T02:30:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":10953649902,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Gravity Falls","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":259972,"tvRageId":31839,"tvMazeId":396,"firstAired":"2012-06-15T00:00:00Z","seriesType":"standard","cleanTitle":"gravityfalls","imdbId":"tt1865718","titleSlug":"gravity-falls","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Comedy","Family","Fantasy"],"tags":[],"added":"2018-10-08T02:24:30.2492462Z","ratings":{"votes":1758,"value":9.3},"statistics":{"seasonCount":2,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":100,"sizeOnDisk":21239046322,"percentOfEpisodes":100.0},"id":42},"episodes":[{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":57,"title":"Creature in the Closet","airDate":"2012-04-17","airDateUtc":"2012-04-18T01:30:00Z","overview":"Creature in the Closet is the first Gravity Falls promotional short.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15789},{"seriesId":42,"episodeFileId":1691,"seasonNumber":1,"episodeNumber":1,"title":"Tourist Trapped","airDate":"2012-06-15","airDateUtc":"2012-06-16T01:30:00Z","overview":"When Dipper and Mabel Pines arrive to spend their summer break in the remote town of Gravity Falls, Mabel\u2019s suspiciously weird new boyfriend causes the twins to come face to face with the town\u2019s strange and uncanny secrets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2337},{"seriesId":42,"episodeFileId":1693,"seasonNumber":1,"episodeNumber":2,"title":"The Legend of the Gobblewonker","airDate":"2012-06-29","airDateUtc":"2012-06-30T01:30:00Z","overview":"When Dipper and Mabel hear rumors of a sea monster that lives at the bottom of the local lake, they enlist Soos to take them on a boating expedition to prove it really does exist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2338},{"seriesId":42,"episodeFileId":1695,"seasonNumber":1,"episodeNumber":3,"title":"Headhunters","airDate":"2012-06-30","airDateUtc":"2012-07-01T01:30:00Z","overview":"When someone tampers with Mabel's life-size wax statue of Grunkle Stan, she and Dipper set out to find the culprit. Meanwhile, Grunkle Stan mourns over the loss of his wax doppelganger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2339},{"seriesId":42,"episodeFileId":1697,"seasonNumber":1,"episodeNumber":4,"title":"The Hand That Rocks the Mabel","airDate":"2012-07-06","airDateUtc":"2012-07-07T01:30:00Z","overview":"Dipper and Mabel discover that their seemingly cherubic new neighbor, Lil' Gideon, happens to be the town's adored psychic. But when Lil' Gideon guilts her into dating him, she and Dipper soon learn that his cuteness can fade all too quickly.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2340},{"seriesId":42,"episodeFileId":1699,"seasonNumber":1,"episodeNumber":5,"title":"The Inconveniencing","airDate":"2012-07-13","airDateUtc":"2012-07-14T01:30:00Z","overview":"Dipper is invited by Wendy and her teen friends on a trek that leads to an abandoned convenience store that may be haunted.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2341},{"seriesId":42,"episodeFileId":1701,"seasonNumber":1,"episodeNumber":6,"title":"Dipper vs. Manliness","airDate":"2012-07-20","airDateUtc":"2012-07-21T01:30:00Z","overview":"In a quest to attain manliness, Dipper ventures into the forest to battle the notorious Multi-Bear. Meanwhile, Mabel tries to teach Grunkle Stan how to be attractive to women, particularly the waitress in the local diner, Lazy Susan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2342},{"seriesId":42,"episodeFileId":1703,"seasonNumber":1,"episodeNumber":7,"title":"Double Dipper","airDate":"2012-08-10","airDateUtc":"2012-08-11T01:30:00Z","overview":"Stan throws a big weekend party to promote the Mystery Shack. Dipper makes clones of himself to impress Wendy. Mabel fights for the Party Queen title in honor of her two friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2343},{"seriesId":42,"episodeFileId":1705,"seasonNumber":1,"episodeNumber":8,"title":"Irrational Treasure","airDate":"2012-08-17","airDateUtc":"2012-08-18T01:30:00Z","overview":"When Dipper and Mabel discover evidence that the reported town founder is a hoax, they set out to expose the historical cover-up and prove that Mabel's silliness is not a bad thing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2344},{"seriesId":42,"episodeFileId":1707,"seasonNumber":1,"episodeNumber":9,"title":"The Time Traveler's Pig","airDate":"2012-08-24","airDateUtc":"2012-08-25T01:30:00Z","overview":"Dipper wants to correct a mistake he made in the past with assistance from a time machine. Mabel is overjoyed when she wins a pet pig at a fair.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2345},{"seriesId":42,"episodeFileId":1709,"seasonNumber":1,"episodeNumber":10,"title":"Fight Fighters","airDate":"2012-09-14","airDateUtc":"2012-09-15T01:30:00Z","overview":"After being challenged to a fight by Wendy's boyfriend Robbie, Dipper is shocked when his favorite Fight Fighters fighter, Rumble McSkirmish, comes to life to defend him, but Dipper soon loses control of Rumble and has to find a way to stop him from seriously injuring Robbie","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2346},{"seriesId":42,"episodeFileId":1712,"seasonNumber":1,"episodeNumber":11,"title":"Little Dipper","airDate":"2012-09-28","airDateUtc":"2012-09-29T01:30:00Z","overview":"Dipper is self-conscious that Mabel is taller than him and seeks a magic solution. Meanwhile Lil' Gideon takes advantage of Dipper's and Mabel's height discrepancy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2347},{"seriesId":42,"episodeFileId":1714,"seasonNumber":1,"episodeNumber":12,"title":"Summerween","airDate":"2012-10-05","airDateUtc":"2012-10-06T01:30:00Z","overview":"Dipper and Mabel go trick-or-treating in the summer and encounter a candy-loving monster who threatens to devour them if they don't bring him sweet things to eat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2348},{"seriesId":42,"episodeFileId":1716,"seasonNumber":1,"episodeNumber":13,"title":"Boss Mabel","airDate":"2013-02-15","airDateUtc":"2013-02-16T02:30:00Z","overview":"Mabel bets Grunkle Stan that she will make more money at the Mystery Shack by treating people nicely than he does by being rude and cranky.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2349},{"seriesId":42,"episodeFileId":1718,"seasonNumber":1,"episodeNumber":14,"title":"Bottomless Pit!","airDate":"2013-03-01","airDateUtc":"2013-03-02T02:30:00Z","overview":"While Stan, Dipper, Mabel and Soos are falling in a bottomless pit, they tell stories to pass the time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":2350},{"seriesId":42,"episodeFileId":1720,"seasonNumber":1,"episodeNumber":15,"title":"The Deep End","airDate":"2013-03-15","airDateUtc":"2013-03-16T01:30:00Z","overview":"When Mabel befriends a cute merman trapped in the public pool, she's determined to help him out. Meanwhile, Dipper decides to volunteer as a lifeguard to see Wendy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":2351},{"seriesId":42,"episodeFileId":1721,"seasonNumber":1,"episodeNumber":16,"title":"Carpet Diem","airDate":"2013-04-05","airDateUtc":"2013-04-06T01:30:00Z","overview":"The twins discover a hidden room inside the Mystery Shack and compete over who should have it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":2352},{"seriesId":42,"episodeFileId":1724,"seasonNumber":1,"episodeNumber":17,"title":"Boyz Crazy","airDate":"2013-04-19","airDateUtc":"2013-04-20T01:30:00Z","overview":"When Mabel discovers that her favorite boy band is actually a bunch of imprisoned clones, she sets them free, only to decide on keeping them for herself. Meanwhile, Dipper is convinced that Robbie plans to brainwash Wendy with a secret message hidden inside one of his songs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":2353},{"seriesId":42,"episodeFileId":1726,"seasonNumber":1,"episodeNumber":18,"title":"Land Before Swine","airDate":"2013-06-28","airDateUtc":"2013-06-29T01:30:00Z","overview":"When Waddles is snatched by a prehistoric beast, Dipper, Mabel, Stan, Soos, and Old Man McGucket must journey to a mysterious land trapped in time to rescue him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":2354},{"seriesId":42,"episodeFileId":1727,"seasonNumber":1,"episodeNumber":19,"title":"Dreamscaperers (1)","airDate":"2013-07-12","airDateUtc":"2013-07-13T01:30:00Z","overview":"Dipper, Mabel, and Soos must travel through Grunkle Stan's mind to defeat a tricky dream demon summoned by Lil Gideon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":2355},{"seriesId":42,"episodeFileId":1730,"seasonNumber":1,"episodeNumber":20,"title":"Gideon Rises (2)","airDate":"2013-08-02","airDateUtc":"2013-08-03T01:30:00Z","overview":"Li'l Gideon swindles the Mystery Shack away, forcing Grunkle Stan and the kids to move in with Soos. While Stan weighs how he can still care for his grandniece and nephew, they decide to take on Gideon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":2356},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Dipper's Guide to the Unexplained - Candy Monster","airDate":"2013-10-14","airDateUtc":"2013-10-15T01:30:00Z","overview":"Dipper and Mabel must go into full on battle mode against a mysterious creature when it leaps out of the rafters and steals their 'Summerween' candy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2284},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Dipper's Guide to the Unexplained - Stan's Tattoo","airDate":"2013-10-14","airDateUtc":"2013-10-15T01:55:00Z","overview":"Dipper devises a plan to unravel the enigma that is Stan\u2019s tattoo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2285},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Dipper's Guide to the Unexplained - Mailbox","airDate":"2013-10-15","airDateUtc":"2013-10-16T01:30:00Z","overview":"Dipper and Soos stumble upon a mailbox in the middle of the forest and make it their mission to discover who (or what) picks up the mail left inside.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2286},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Dipper's Guide to the Unexplained - Lefty","airDate":"2013-10-16","airDateUtc":"2013-10-17T01:30:00Z","overview":"Dipper sets out to discover why a certain Gravity Falls resident always faces left.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2287},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Dipper's Guide to the Unexplained - The Tooth","airDate":"2013-10-17","airDateUtc":"2013-10-18T01:30:00Z","overview":"Dipper and Mabel find a gigantic tooth on the shores of the lake, and set out in a rowboat to find out where it came from.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2288},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Dipper's Guide to the Unexplained - The Hide-Behind","airDate":"2013-10-18","airDateUtc":"2013-10-19T01:30:00Z","overview":"In hearing of a local lumberjack legend, Dipper investigates a mysterious creature that has been heard, but never seen.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2289},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Mabel's Guide to Life - Dating","airDate":"2014-02-03","airDateUtc":"2014-02-04T02:30:00Z","overview":"Mabel gives her thoughts on dating and puts her dating quiz to the test with three of Gravity Falls\u2019 most eligible bachelors \u2014 Grunkle Stan, Dipper and Soos.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2290},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Mabel's Guide to Life - Stickers","airDate":"2014-02-04","airDateUtc":"2014-02-05T02:30:00Z","overview":"Mabel gives her unique perspective on the history of stickers, their many styles and uses.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2291},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Mabel's Guide to Life - Fashion","airDate":"2014-02-05","airDateUtc":"2014-02-06T02:30:00Z","overview":"Mabel reveals her fashion secrets to the world, including FLASH MAKEOVERS!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2292},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Mabel's Guide to Life - Colors","airDate":"2014-02-06","airDateUtc":"2014-02-07T02:30:00Z","overview":"Mabel\u2019s survey into everyone\u2019s favorite colors causes a color emergency when she learns Grunkle Stan has never seen a rainbow.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2293},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Mabel's Guide to Life - Art","airDate":"2014-02-07","airDateUtc":"2014-02-08T02:30:00Z","overview":"Mabel reveals that her gift of art has driven her to genius level with the creation of her own personal art movement \u2014 the \u201cCaticature.\u201d","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2294},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Fixin' It with Soos - Golf Cart","airDate":"2014-04-21","airDateUtc":"2014-04-22T01:30:00Z","overview":"Soos fixes up the golf cart so that Dipper and Wendy can perform a stunt.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2295},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Fixin' It with Soos - Cuckoo Clock","airDate":"2014-04-22","airDateUtc":"2014-04-23T01:30:00Z","overview":"Soos fixes up a Cuckoo Clock and gives it an ultra-awesome remodel.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2296},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"TV Shorts #1","airDate":"2014-04-23","airDateUtc":"2014-04-24T01:30:00Z","overview":"Mabel watches the public television of Gravity Falls. On the television she finds a Mystery Shack TV commercial, some words by Soos, and footage of Gideon in the prison, which appears to be a sort of reality show about his interaction with fellow inmates.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2297},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"TV Shorts #2","airDate":"2014-04-24","airDateUtc":"2014-04-25T01:30:00Z","overview":"Grunkle Stan watches Ducktective, Teenz Talk, and Why You Ackin' So Cray-Cray.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2298},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Mabel's Scrapbook - Heist Movie","airDate":"2014-06-02","airDateUtc":"2014-06-03T01:30:00Z","overview":"Mabel recalls the Pines' eleborate plan to break into a movie theatre.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2299},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Mabel's Scrapbook - Petting Zoo","airDate":"2014-06-02","airDateUtc":"2014-06-03T01:55:00Z","overview":"Mabel remembers when the family visited a petting zoo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2300},{"seriesId":42,"episodeFileId":1692,"seasonNumber":2,"episodeNumber":1,"title":"Scary-oke","airDate":"2014-08-01","airDateUtc":"2014-08-02T01:30:00Z","overview":"The Pines family is starting to get everything back to normal after the Lil' Gideon incident. They throw a \u201cMystery Shack Is Back\u201d party, but some unwelcome guests intend to crash it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":2357},{"seriesId":42,"episodeFileId":1694,"seasonNumber":2,"episodeNumber":2,"title":"Into the Bunker","airDate":"2014-08-04","airDateUtc":"2014-08-05T01:30:00Z","overview":"Dipper\u2019s secret journal pages lead him and the gang to the author\u2019s hidden bunker where they find themselves face-to-face with a mysterious figure from Gravity Falls\u2019 lore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":2358},{"seriesId":42,"episodeFileId":1696,"seasonNumber":2,"episodeNumber":3,"title":"The Golf War","airDate":"2014-08-11","airDateUtc":"2014-08-12T01:30:00Z","overview":"After being belittled by Pacifica one too many times, Mabel challenges her to a miniature golf-off which gets a tad out of control when some local residents offer their help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":2359},{"seriesId":42,"episodeFileId":1698,"seasonNumber":2,"episodeNumber":4,"title":"Sock Opera","airDate":"2014-09-08","airDateUtc":"2014-09-09T01:30:00Z","overview":"Mabel decides to put on a sock puppet rock opera to impress a local puppeteer, but her show goes awry when Dipper's drive to uncover more of the journal's secrets leads to a supernatural disaster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":2360},{"seriesId":42,"episodeFileId":1700,"seasonNumber":2,"episodeNumber":5,"title":"Soos and the Real Girl","airDate":"2014-09-22","airDateUtc":"2014-09-23T01:30:00Z","overview":"Soos needs a date for his cousin Reggie's engagement party and looks to a dating simulator game to help him talk to girls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":2361},{"seriesId":42,"episodeFileId":1702,"seasonNumber":2,"episodeNumber":6,"title":"Little Gift Shop of Horrors","airDate":"2014-10-04","airDateUtc":"2014-10-05T01:30:00Z","overview":"In three separate mysterious tales, Stan is cursed by a Witch, Waddles accidentally eats a bowl of brain-enhancing jelly and builds a machine that allows him to speak, and Mabel faces her fear of claymation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":2362},{"seriesId":42,"episodeFileId":1704,"seasonNumber":2,"episodeNumber":7,"title":"Society of the Blind Eye","airDate":"2014-10-27","airDateUtc":"2014-10-28T01:30:00Z","overview":"The kids, along with Old Man McGucket's help, discover there is a secret society in Gravity Falls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":2363},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Creepy Letters from Lil Gideon - Cease and Desist","airDate":"2014-11-03","airDateUtc":"2014-11-04T02:30:00Z","overview":"Lil Gideon writes to Mabel and things get weird.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2301},{"seriesId":42,"episodeFileId":1706,"seasonNumber":2,"episodeNumber":8,"title":"Blendin's Game","airDate":"2014-11-10","airDateUtc":"2014-11-11T02:30:00Z","overview":"Blendin returns to face off with Dipper and Mabel in a futuristic battle that could trap them forever in time jail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":2364},{"seriesId":42,"episodeFileId":1708,"seasonNumber":2,"episodeNumber":9,"title":"The Love God","airDate":"2014-11-26","airDateUtc":"2014-11-27T02:30:00Z","overview":"Mabel takes matchmaking too far when she steals a love potion from a real Love God.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":2365},{"seriesId":42,"episodeFileId":1710,"seasonNumber":2,"episodeNumber":10,"title":"Northwest Mansion Noir","airDate":"2015-02-16","airDateUtc":"2015-02-17T02:30:00Z","overview":"Pacifica enlists Dipper\u2019s help to rid the Northwest Mansion of a ghost before he wreaks havoc on her fancy party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":2366},{"seriesId":42,"episodeFileId":1711,"seasonNumber":2,"episodeNumber":11,"title":"Not What He Seems","airDate":"2015-03-09","airDateUtc":"2015-03-10T01:30:00Z","overview":"After agents Powers and Trigger take Stan into custody, Dipper and Mabel begin to wonder how much they actually know about their Grunkle Stan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":2367},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Old Man McGucket's Conspiracy Corner - 6-18","airDate":"2015-04-19","airDateUtc":"2015-04-20T01:30:00Z","overview":"It's a clue from a creature from another dimension...right?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2302},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Old Man McGucket's Conspiracy Corner - Cryptograms","airDate":"2015-04-19","airDateUtc":"2015-04-20T01:55:00Z","overview":"Have you seen this mixed up gobbly gook?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2303},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Old Man McGucket's Conspiracy Corner - Eyes","airDate":"2015-04-19","airDateUtc":"2015-04-20T02:20:00Z","overview":"You ever notice how many people in Gravity Falls have only one eye?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2304},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Old Man McGucket's Conspiracy Corner - Government Agency","airDate":"2015-04-19","airDateUtc":"2015-04-20T02:45:00Z","overview":"The city-slicker Government Agents are watching all of us!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2305},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Old Man McGucket's Conspiracy Corner - The Ice Man","airDate":"2015-04-19","airDateUtc":"2015-04-20T03:10:00Z","overview":"Who is the ice bag?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2306},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Old Man McGucket's Conspiracy Corner - Laptop Code","airDate":"2015-04-19","airDateUtc":"2015-04-20T03:35:00Z","overview":"The number on the computer box is the coordinates to Possum town!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2307},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Old Man McGucket's Conspiracy Corner - Medallions","airDate":"2015-04-19","airDateUtc":"2015-04-20T04:00:00Z","overview":"The Gold Medallions are for a Secret Society!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2308},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Old Man McGucket's Conspiracy Corner - Relation Shipping","airDate":"2015-04-19","airDateUtc":"2015-04-20T04:25:00Z","overview":"Who is Relation Shipping up with who? It's a bunch of hog wash!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2309},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Old Man McGucket's Conspiracy Corner - Stan's Brother","airDate":"2015-04-19","airDateUtc":"2015-04-20T04:50:00Z","overview":"Does Stan have a twin brother...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2310},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Old Man McGucket's Conspiracy Corner - Triangles","airDate":"2015-04-19","airDateUtc":"2015-04-20T05:15:00Z","overview":"All Old Man McGucket can think about is those lousy triangles.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2311},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Creepy Letters from Lil Gideon - Devoted","airDate":"2015-04-20","airDateUtc":"2015-04-21T01:30:00Z","overview":"Lil Gideon writes Mabel once again.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2312},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Creepy Letters from Lil Gideon - Revenge","airDate":"2015-04-20","airDateUtc":"2015-04-21T01:55:00Z","overview":"Lil Gideon writes to the people of Gravity Falls wishing the love and forgiveness.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2313},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Creepy Letters from Lil Gideon - Pine-Scented","airDate":"2015-04-20","airDateUtc":"2015-04-21T02:20:00Z","overview":"Lil Gideon writes the Pines family letting them know they are always in his thoughts, and other places.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2314},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Creepy Letters from Lil Gideon - Dipper Tickle","airDate":"2015-04-20","airDateUtc":"2015-04-21T02:45:00Z","overview":"Lil Gideon writes to Dipper to offer up an apology...or not.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2315},{"seriesId":42,"episodeFileId":1713,"seasonNumber":2,"episodeNumber":12,"title":"A Tale of Two Stans","airDate":"2015-07-13","airDateUtc":"2015-07-14T01:30:00Z","overview":"Cornered underneath the Mystery Shack, Stan must finally reveal the secrets of his past and his mysterious portal to Dipper and Mabel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":2368},{"seriesId":42,"episodeFileId":1715,"seasonNumber":2,"episodeNumber":13,"title":"Dungeons, Dungeons, & More Dungeons","airDate":"2015-08-03","airDateUtc":"2015-08-04T01:30:00Z","overview":"Dipper finds an unlikely friend to join him with his newest obsession \u2014 a board game called \u201cDungeons, Dungeons, and More Dungeons.\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":2369},{"seriesId":42,"episodeFileId":1717,"seasonNumber":2,"episodeNumber":14,"title":"The Stanchurian Candidate","airDate":"2015-08-24","airDateUtc":"2015-08-25T01:30:00Z","overview":"When Grunkle Stan decides to run for mayor, Dipper and Mabel have their work cut out for them trying to turn their gaffe-prone uncle into the perfect candidate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":2370},{"seriesId":42,"episodeFileId":1719,"seasonNumber":2,"episodeNumber":15,"title":"The Last Mabelcorn","airDate":"2015-09-07","airDateUtc":"2015-09-08T01:30:00Z","overview":"A new threat leads Mabel to venture into the enchanted realm of the unicorns. Meanwhile, Dipper learns an unexpected twist about the enigmatic Bill Cipher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":2371},{"seriesId":42,"episodeFileId":1722,"seasonNumber":2,"episodeNumber":16,"title":"Roadside Attraction","airDate":"2015-09-21","airDateUtc":"2015-09-22T01:30:00Z","overview":"Grunkle Stan takes the kids with him on a road-trip to sabotage all the other tourist traps in Oregon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":2372},{"seriesId":42,"episodeFileId":1723,"seasonNumber":2,"episodeNumber":17,"title":"Dipper and Mabel vs. the Future","airDate":"2015-10-12","airDateUtc":"2015-10-13T01:30:00Z","overview":"Mabel decides to plan for her and Dipper's 13th birthday party. Meanwhile, Dipper and Ford venture below the town to find its most shocking secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":2373},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"'Pocalypse Preppin' - Ready for Anything","airDate":"2015-10-23","airDateUtc":"2015-10-24T01:30:00Z","overview":"Ice age? World War 3? Toothache? McGucket is ready for anything.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2316},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"'Pocalypse Preppin' - Hunkered Down","airDate":"2015-10-24","airDateUtc":"2015-10-25T01:30:00Z","overview":"Mesopotamians were the forerunners of modern graham cracker technology.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2317},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"'Pocalypse Preppin' - Hillbilly Shelter","airDate":"2015-10-24","airDateUtc":"2015-10-25T01:55:00Z","overview":"There's pliers for everyone!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2318},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"'Pocalypse Preppin' - Food Stockpile","airDate":"2015-10-25","airDateUtc":"2015-10-26T01:30:00Z","overview":"I hate split pea.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2319},{"seriesId":42,"episodeFileId":1725,"seasonNumber":2,"episodeNumber":18,"title":"Weirdmageddon Part I","airDate":"2015-10-26","airDateUtc":"2015-10-27T01:30:00Z","overview":"Trapped in the apocalypse and menaced by villains new and old, Dipper finds himself in a race against time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":2374},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"'Pocalypse Preppin' - How'd It Happen?","airDate":"2015-11-08","airDateUtc":"2015-11-09T02:30:00Z","overview":"One thing's for sure, I'm lovin' this beef stew in a bag!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2320},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"'Pocalypse Preppin' - Checkmate","airDate":"2015-11-11","airDateUtc":"2015-11-12T02:30:00Z","overview":"I never said we were playing for money!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2321},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"'Pocalypse Preppin' - Governor of America","airDate":"2015-11-15","airDateUtc":"2015-11-16T02:30:00Z","overview":"My fellow Americans, we will get through this crisis together.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2322},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"'Pocalypse Preppin' - Rememberance","airDate":"2015-11-15","airDateUtc":"2015-11-16T02:55:00Z","overview":"I'm going to miss those kids something awful.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2323},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Shop at Home with Mr. Mystery - Jar of Eyes","airDate":"2015-11-15","airDateUtc":"2015-11-16T03:20:00Z","overview":"Grunkle Stan has a jar of eyeballs to sell, but what are they looking at?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2324},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Shop at Home with Mr. Mystery - Aztec Calendar","airDate":"2015-11-16","airDateUtc":"2015-11-17T02:30:00Z","overview":"Grunkle Stan can help put ancient wisdom to work for YOU!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2325},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Shop at Home with Mr. Mystery - Fez","airDate":"2015-11-18","airDateUtc":"2015-11-19T02:30:00Z","overview":"Why not wear a Fez like Grunkle Stan? Perfect for all occasions!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2326},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Shop at Home with Mr. Mystery - Deer Teeth","airDate":"2015-11-19","airDateUtc":"2015-11-20T02:30:00Z","overview":"For centuries, internet scholars have debated the significance of Deer teeth. Now you can join the fun with your very own collection!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2327},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Shop at Home with Mr. Mystery - Mystery Box","airDate":"2015-11-20","airDateUtc":"2015-11-21T02:30:00Z","overview":"Mr. Mystery has a mystery box for sale...so what's in it?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2328},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Shop at Home with Mr. Mystery - UFO on a String","airDate":"2015-11-21","airDateUtc":"2015-11-22T02:30:00Z","overview":"THE MYSTERY SHACK IS BEING INVADED\u2026BY SAVINGS!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2329},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Shop at Home with Mr. Mystery - Nacho Necklace","airDate":"2015-11-21","airDateUtc":"2015-11-22T02:55:00Z","overview":"Grunkle Stan has a Nacho Necklace for sale. Perfect for you, or your significant other!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2330},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"Shop at Home with Mr. Mystery - Outtakes","airDate":"2015-11-21","airDateUtc":"2015-11-22T03:20:00Z","overview":"We'll do it live!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2331},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"Shop at Home with Mr. Mystery - Diving Helmet","airDate":"2015-11-21","airDateUtc":"2015-11-22T03:45:00Z","overview":"This is an exclusive, folks!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2332},{"seriesId":42,"episodeFileId":1728,"seasonNumber":2,"episodeNumber":19,"title":"Weirdmageddon 2: Escape from Reality","airDate":"2015-11-23","airDateUtc":"2015-11-24T02:30:00Z","overview":"Dipper, Soos and Wendy must save Mabel from a strange new world, while Bill's forces plan their next move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":2375},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":50,"title":"Between the Pines","airDate":"2016-02-08","airDateUtc":"2016-02-09T02:30:00Z","overview":"Hosted by creator Alex Hirsch and Gravity Falls character Time Baby. The special elaborates on the production of the show, giving fans an inside look behind the scenes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2333},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":51,"title":"Mabel's 10 Favorite Sweaters","airDate":"2016-02-11","airDateUtc":"2016-02-12T02:30:00Z","overview":"Welcome to Sweater-Town. Land of the best Mabel sweaters ever!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2334},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":52,"title":"Top 10 Weirdest Monsters","airDate":"2016-02-15","airDateUtc":"2016-02-16T02:30:00Z","overview":"Celebrate the Weirdpocalypse with the weirdest monsters of Gravity Falls.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2335},{"seriesId":42,"episodeFileId":1729,"seasonNumber":2,"episodeNumber":20,"title":"Weirdmageddon 3: Take Back The Falls","airDate":"2016-02-15","airDateUtc":"2016-02-16T02:30:00Z","overview":"In the series finale, the Mystery Shack crew and townsfolk fight against Bill Cipher and his minions in a final stand to defeat them once and for all and save the town of Gravity Falls and the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":2376},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":53,"title":"Unaired Pilot","airDate":"2016-08-06","airDateUtc":"2016-08-07T01:30:00Z","overview":"In 2010 recent CalArts grad Alex Hirsch pitched \"Gravity Falls\" to the Disney Channel. He wrote and drew the storyboard entirely on post-it notes and a rushed pilot was commissioned by Disney to a small low budget flash animation studio in Canada.\r\n\r\nThis rough in-house \"pilot\" Disney produced, though ultimately in a very different style and never fully \"finished\", shows us the very first ever glimpse of Dipper & Mabel.\r\n\r\nUnsatisfied with the look and style of this pilot, Alex Hirsch personally hired his own team when the show was greenlit to series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2336},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":54,"title":"Soos' Stan Fiction - The Stan Bros.","airDate":"2017-02-17","airDateUtc":"2017-02-18T02:30:00Z","overview":"Wondering what the Stan Bros. have been up to since saving the world? Well, Soos has some ideas...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15786},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":55,"title":"Soos' Stan Fiction - New York Ghost Detectives","airDate":"2017-02-17","airDateUtc":"2017-02-18T02:55:00Z","overview":"Here's some more Stan Fiction written by Soos! In today's episode, Stan Bros. in \"Ghost Detectives.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15787},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"Soos' Stan Fiction - Axolotl","airDate":"2017-02-17","airDateUtc":"2017-02-18T03:20:00Z","overview":"Soos explains what the creature living in the tank at the Mystery Shack came from, and how it got there.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15788},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":58,"title":"One Crazy Summer: A Look Back at Gravity Falls","airDate":"2018-07-24","airDateUtc":"2018-07-25T01:30:00Z","overview":"A behind the scenes documentary and look back at the production of Gravity Falls, and how it came to be.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17555},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":59,"title":"The Hirsch Twins","airDate":"2018-07-24","airDateUtc":"2018-07-25T01:55:00Z","overview":"Alex & Ariel Hirsch remember their own summers growing up.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17556},{"seriesId":42,"episodeFileId":0,"seasonNumber":0,"episodeNumber":60,"title":"Deleted Scenes","airDate":"2018-07-24","airDateUtc":"2018-07-25T02:20:00Z","overview":"Never-Before-Seen deleted scenes from Gravity Falls.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21025}],"episodeFile":[{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Tourist Trapped-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E01.Tourist Trapped-Bluray-1080p.mkv","size":609047661,"dateAdded":"2018-10-10T21:54:23.62778Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1691},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Scary-oke-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E01.Scary-oke-Bluray-1080p.mkv","size":546888633,"dateAdded":"2018-10-10T21:54:23.657243Z","releaseGroup":"oke","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":442891,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2671569,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1692},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Legend of the Gobblewonker-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E02.The Legend of the Gobblewonker-Bluray-1080p.mkv","size":537803583,"dateAdded":"2018-10-10T21:54:23.687034Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1693},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Into the Bunker-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E02.Into the Bunker-Bluray-1080p.mkv","size":503462592,"dateAdded":"2018-10-10T21:54:23.716643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":446074,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2482784,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1694},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Headhunters-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E03.Headhunters-Bluray-1080p.mkv","size":538619234,"dateAdded":"2018-10-10T21:54:23.746402Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1695},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Golf War-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E03.The Golf War-Bluray-1080p.mkv","size":508862428,"dateAdded":"2018-10-10T21:54:23.778273Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443462,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2484469,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1696},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Hand That Rocks the Mabel-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E04.The Hand That Rocks the Mabel-Bluray-1080p.mkv","size":529243900,"dateAdded":"2018-10-10T21:54:23.808469Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1697},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Sock Opera-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E04.Sock Opera-Bluray-1080p.mkv","size":485280666,"dateAdded":"2018-10-10T21:54:23.842061Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425942,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2391420,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1698},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Inconveniencing-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E05.The Inconveniencing-Bluray-1080p.mkv","size":529870070,"dateAdded":"2018-10-10T21:54:23.87112Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"20:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1699},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Soos and the Real Girl-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E05.Soos and the Real Girl-Bluray-1080p.mkv","size":396627217,"dateAdded":"2018-10-10T21:54:23.900503Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429976,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1853383,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1700},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Dipper vs. Manliness-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E06.Dipper vs. Manliness-Bluray-1080p.mkv","size":572417379,"dateAdded":"2018-10-10T21:54:23.929847Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1701},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Little Gift Shop of Horrors-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E06.Little Gift Shop of Horrors-Bluray-1080p.mkv","size":511323493,"dateAdded":"2018-10-10T21:54:23.959338Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403929,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2534620,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1702},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Double Dipper-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E07.Double Dipper-Bluray-1080p.mkv","size":538363265,"dateAdded":"2018-10-10T21:54:23.990111Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1703},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Society of the Blind Eye-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E07.Society of the Blind Eye-Bluray-1080p.mkv","size":504396036,"dateAdded":"2018-10-10T21:54:24.019607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435136,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2496432,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1704},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Irrational Treasure-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E08.Irrational Treasure-Bluray-1080p.mkv","size":455083294,"dateAdded":"2018-10-10T21:54:24.049205Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1705},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Blendin's Game-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E08.Blendin's Game-Bluray-1080p.mkv","size":454952961,"dateAdded":"2018-10-10T21:54:24.078841Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427852,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2205496,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1706},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Time Traveler's Pig-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E09.The Time Traveler's Pig-Bluray-1080p.mkv","size":536450220,"dateAdded":"2018-10-10T21:54:24.107697Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1707},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Love God-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E09.The Love God-Bluray-1080p.mkv","size":518003454,"dateAdded":"2018-10-10T21:54:24.136509Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423227,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2589445,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1708},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Fight Fighters-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E10.Fight Fighters-Bluray-1080p.mkv","size":514758657,"dateAdded":"2018-10-10T21:54:24.165741Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1709},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Northwest Mansion Mystery-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E10.Northwest Mansion Mystery-Bluray-1080p.mkv","size":483420300,"dateAdded":"2018-10-10T21:54:24.195688Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438422,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2369269,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1710},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Not What He Seems-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E11.Not What He Seems-Bluray-1080p.mkv","size":538447789,"dateAdded":"2018-10-10T21:54:24.22615Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415275,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2608671,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1711},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Little Dipper-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E11.Little Dipper-Bluray-1080p.mkv","size":479427622,"dateAdded":"2018-10-10T21:54:24.255485Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1712},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E12.A Tale of Two Stans-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E12.A Tale of Two Stans-Bluray-1080p.mkv","size":637002751,"dateAdded":"2018-10-10T21:54:24.285056Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434502,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2368295,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"29:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1713},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Summerween-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E12.Summerween-Bluray-1080p.mkv","size":444649830,"dateAdded":"2018-10-10T21:54:24.314545Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1714},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Dungeons, Dungeons, & More Dungeons-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E13.Dungeons, Dungeons, & More Dungeons-Bluray-1080p.mkv","size":601703750,"dateAdded":"2018-10-10T21:54:24.343668Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428127,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3092402,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1715},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Boss Mabel-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E13.Boss Mabel-Bluray-1080p.mkv","size":481153776,"dateAdded":"2018-10-10T21:54:24.373015Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1716},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E14.The Stanchurian Candidate-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E14.The Stanchurian Candidate-Bluray-1080p.mkv","size":465853804,"dateAdded":"2018-10-10T21:54:24.402401Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419744,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2276293,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1717},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Bottomless Pit!-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E14.Bottomless Pit!-Bluray-1080p.mkv","size":446707215,"dateAdded":"2018-10-10T21:54:24.432607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1718},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Last Mabelcorn-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E15.The Last Mabelcorn-Bluray-1080p.mkv","size":530102435,"dateAdded":"2018-10-10T21:54:24.46203Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434574,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2651708,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1719},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Deep End-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E15.The Deep End-Bluray-1080p.mkv","size":463743538,"dateAdded":"2018-10-10T21:54:24.491482Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1720},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Carpet Diem-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E16.Carpet Diem-Bluray-1080p.mkv","size":471539018,"dateAdded":"2018-10-10T21:54:24.520663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1721},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Roadside Attraction-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E16.Roadside Attraction-Bluray-1080p.mkv","size":463554651,"dateAdded":"2018-10-10T21:54:24.549982Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433177,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2253244,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1722},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Dipper and Mabel vs. the Future-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E17.Dipper and Mabel vs. the Future-Bluray-1080p.mkv","size":520213535,"dateAdded":"2018-10-10T21:54:24.579289Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436688,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2591514,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1723},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Boyz Crazy-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E17.Boyz Crazy-Bluray-1080p.mkv","size":500354238,"dateAdded":"2018-10-10T21:54:24.608641Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1724},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Weirdmageddon (1)-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E18.Weirdmageddon (1)-Bluray-1080p.mkv","size":642082492,"dateAdded":"2018-10-10T21:54:24.63789Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":445010,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3152883,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1725},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Land Before Swine-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E18.Land Before Swine-Bluray-1080p.mkv","size":504338677,"dateAdded":"2018-10-10T21:54:24.672218Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1726},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Dreamscaperers (1)-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E19.Dreamscaperers (1)-Bluray-1080p.mkv","size":518827789,"dateAdded":"2018-10-10T21:54:24.702188Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1727},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Weirdmageddon (2)- Escape From Reality-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E19.Weirdmageddon (2)- Escape From Reality-Bluray-1080p.mkv","size":497729082,"dateAdded":"2018-10-10T21:54:24.731818Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440932,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2451847,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1728},{"seriesId":42,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Weirdmageddon (3)- Take Back The Falls-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 02\/S02E20.Weirdmageddon (3)- Take Back The Falls-Bluray-1080p.mkv","size":1143741833,"dateAdded":"2018-10-10T21:54:24.76109Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448214,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2907522,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1729},{"seriesId":42,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Gideon Rises (2)-Bluray-1080p.mkv","path":"\/tv\/Gravity Falls\/Season 01\/S01E20.Gideon Rises (2)-Bluray-1080p.mkv","size":612997454,"dateAdded":"2018-10-10T21:54:24.790952Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1730}],"queue":[]},"41":{"series":{"title":"Disenchantment","alternateTitles":[{"title":"D\u00e9senchant\u00e9e","seasonNumber":-1},{"title":"(Des)encanto","seasonNumber":-1},{"title":"Des-encanto","seasonNumber":-1},{"title":"Disenchantment 2018","seasonNumber":-1},{"title":"(Des)Encanto","seasonNumber":-1},{"title":"Disincanto","seasonNumber":-1}],"sortTitle":"disenchantment","status":"continuing","ended":false,"overview":"Princess duties call, but she'd rather be drinking. Free-spirited Bean exasperates the king as she wreaks havoc with her demon and elf pals.","previousAiring":"2021-01-15T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/38\/banner.jpg?lastWrite=637103154812139950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/340234\/banners\/61998124.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/38\/poster.jpg?lastWrite=637103154816099880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b098c74bacc0.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/38\/fanart.jpg?lastWrite=637437288462631730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b0582cf9d47e.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-09-20T07:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":16482663765,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-01-15T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9854525699,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Disenchantment","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":29,"tvdbId":340234,"tvRageId":0,"tvMazeId":30715,"firstAired":"2018-08-17T00:00:00Z","seriesType":"standard","cleanTitle":"disenchantment","imdbId":"tt5363918","titleSlug":"disenchantment","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy","Fantasy"],"tags":[],"added":"2018-08-26T14:57:43.5471693Z","ratings":{"votes":27,"value":9.0},"statistics":{"seasonCount":2,"episodeFileCount":30,"episodeCount":30,"totalEpisodeCount":30,"sizeOnDisk":26337189464,"percentOfEpisodes":100.0},"id":38},"episodes":[{"seriesId":38,"episodeFileId":1202,"seasonNumber":1,"episodeNumber":1,"title":"A Princess, an Elf, and a Demon Walk Into a Bar","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"Princess Bean already has the wedding day blues when a mysterious figure arrives, claiming he's her personal demon. Elfo hates his happy homeland.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1644},{"seriesId":38,"episodeFileId":1203,"seasonNumber":1,"episodeNumber":2,"title":"For Whom the Pig Oinks","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"How to get rid of an unwanted fianc\u00e9? Bean's plan involves a party barge and mermaids. King Z\u00f8g tries to make Elfo's blood into an immortality potion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1645},{"seriesId":38,"episodeFileId":1204,"seasonNumber":1,"episodeNumber":3,"title":"The Princess of Darkness","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"Sorcerio declares that demonic possession is behind Bean's drunken exploits -- and things look dicey for Luci when the king hires an eerie exorcist.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1646},{"seriesId":38,"episodeFileId":1205,"seasonNumber":1,"episodeNumber":4,"title":"Castle Party Massacre","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"With the king away, Bean throws a wild party while Odval and Sorcerio gather their secret society for a ritual. But the night takes a surprising turn.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1647},{"seriesId":38,"episodeFileId":1206,"seasonNumber":1,"episodeNumber":5,"title":"Faster, Princess! Kill! Kill!","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"Banished from the castle by Z\u00f8g, Bean tries to work but has trouble keeping a job. Elfo encounters a bizarre pair of siblings living in a candy house.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1648},{"seriesId":38,"episodeFileId":1207,"seasonNumber":1,"episodeNumber":6,"title":"Swamp and Circumstance","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"Bean tries her hand at diplomacy after Z\u00f8g makes her ambassador to Dankmire, Oona's kingdom and an important ally for Dreamland.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1649},{"seriesId":38,"episodeFileId":1208,"seasonNumber":1,"episodeNumber":7,"title":"Love's Tender Rampage","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"Elfo lies to hide his feelings for Bean, but things get complicated when she tries to help him by sending the knights on a quest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1650},{"seriesId":38,"episodeFileId":1209,"seasonNumber":1,"episodeNumber":8,"title":"The Limits of Immortality","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"Elfo's been kidnapped! Bean, Luci, Sorcerio and the knights search for him, along with a magical pendant needed to complete the immortality potion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1651},{"seriesId":38,"episodeFileId":1210,"seasonNumber":1,"episodeNumber":9,"title":"To Thine Own Elf Be True","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"After he learns a surprising secret about himself, Elfo heads home to Elfwood in search of the truth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1652},{"seriesId":38,"episodeFileId":1211,"seasonNumber":1,"episodeNumber":10,"title":"Dreamland Falls","airDate":"2018-08-17","airDateUtc":"2018-08-17T07:00:00Z","overview":"As Dreamland celebrates an unexpected arrival while saying goodbye to a friend, everyday life is thrown into disarray.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1653},{"seriesId":38,"episodeFileId":15569,"seasonNumber":1,"episodeNumber":11,"title":"The Disenchantress","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"Bean travels with Dagmar to her homeland, Maru, where she rescues an old friend and learns of a mysterious prophecy she's expected to fulfill.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19730},{"seriesId":38,"episodeFileId":15570,"seasonNumber":1,"episodeNumber":12,"title":"Stairway to Hell","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"Bean and Luci concoct a plan to resurrect Elfo. But he'll have to meet them in hell -- if he can get there. Z\u00f8g discovers a friend in frozen Dreamland.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19731},{"seriesId":38,"episodeFileId":15571,"seasonNumber":1,"episodeNumber":13,"title":"The Very Thing","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"Bean and her friends return to Dreamland but don't receive a warm welcome from Z\u00f8g. Oona inspires a lackluster band of pirates who rescue her at sea.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19732},{"seriesId":38,"episodeFileId":15572,"seasonNumber":1,"episodeNumber":14,"title":"The Lonely Heart Is a Hunter","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"Bean dreams about her mother and finds mystical Maruvian symbols around the castle. Z\u00f8g falls for an unusual woman he meets in the Enchanted Forest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19733},{"seriesId":38,"episodeFileId":15573,"seasonNumber":1,"episodeNumber":15,"title":"Our Bodies, Our Elves","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"With a health crisis in Elf Alley, Bean and Elfo make a dangerous journey to find an ancient cure while Luci scams sick elves at his new clinic.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19734},{"seriesId":38,"episodeFileId":15574,"seasonNumber":1,"episodeNumber":16,"title":"The Dreamland Job","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"Learning that the elves are starving because of Z\u00f8g's excessive taxes, Bean plans a heist with a passing band of circus performers to recover the money.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19735},{"seriesId":38,"episodeFileId":15575,"seasonNumber":1,"episodeNumber":17,"title":"Love's Slimy Embrace","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"Despondent because Bean dislikes him and his mother's away, Derek makes friends with a slimy sea creature. Z\u00f8g tries to contract a rich man's disease.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19736},{"seriesId":38,"episodeFileId":15576,"seasonNumber":1,"episodeNumber":18,"title":"In Her Own Write","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"While Z\u00f8g refuses to face his feelings about Dagmar's betrayal, Bean writes to deal with her pain. But she faces obstacles to sharing her work.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19737},{"seriesId":38,"episodeFileId":15577,"seasonNumber":1,"episodeNumber":19,"title":"The Electric Princess","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"When a scientific man appears in Dreamland, he's regarded with suspicion. But Bean helps him escape and travels with him to a wondrous steampunk city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19738},{"seriesId":38,"episodeFileId":15578,"seasonNumber":1,"episodeNumber":20,"title":"Tiabeanie Falls","airDate":"2019-09-20","airDateUtc":"2019-09-20T07:00:00Z","overview":"With King Z\u00f8g incapacitated, Odval makes a power play, assisted by the Arch Druidess. Luci and Elfo try to help Bean.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19739},{"seriesId":38,"episodeFileId":17043,"seasonNumber":2,"episodeNumber":1,"title":"Subterranean Homesick Blues","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"Bean, Elfo and Luci become trapped in an underground world full of eerie little creatures \u2014 and Queen Dagmar. Z\u00f8g tries to thwart a plot against him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20242},{"seriesId":38,"episodeFileId":17044,"seasonNumber":2,"episodeNumber":2,"title":"You're the Bean","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"As Z\u00f8g attempts to escape a harrowing situation, Derek discovers a book that implies his family is cursed. Bean hatches a plan to escape from Tr\u00f8gtown.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20243},{"seriesId":38,"episodeFileId":17045,"seasonNumber":2,"episodeNumber":3,"title":"Beanie Get Your Gun","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"Z\u00f8g's acting strange, and Bean investigates to learn why. Meanwhile, a despondent Derek finds some surprising mentors in the Enchanted Forest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20244},{"seriesId":38,"episodeFileId":17046,"seasonNumber":2,"episodeNumber":4,"title":"Steamland Confidential","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"After traveling to Steamland, Elfo enthralls the denizens of an upscale explorers' club while Bean infiltrates a factory in search of the Arch Druidess.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20245},{"seriesId":38,"episodeFileId":17047,"seasonNumber":2,"episodeNumber":5,"title":"Freak Out!","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"Bean flees when she discovers more about Alva's intentions \u2014 and as his lightbulb-headed robots chase her through Steamland, she searches for Elfo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20246},{"seriesId":38,"episodeFileId":17048,"seasonNumber":2,"episodeNumber":6,"title":"Last Splash","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"On their return trip to Dreamland via steamboat, lovelorn Elfo winds up in an unusual relationship while Bean gets close to Mora the mermaid.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20247},{"seriesId":38,"episodeFileId":17049,"seasonNumber":2,"episodeNumber":7,"title":"Bad Moon Rising","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"Bean overhears Odval and the council plotting against Z\u00f8g, so she joins forces with Oona to undermine their plan while Elfo and Luci raise an army.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20248},{"seriesId":38,"episodeFileId":17050,"seasonNumber":2,"episodeNumber":8,"title":"Hey, Pig Spender","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"After trying to help Prince Merkimer lift the curse that turned him into a pig, Bean asks his parents for resources to thwart the threat from Steamland.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20249},{"seriesId":38,"episodeFileId":17051,"seasonNumber":2,"episodeNumber":9,"title":"The Madness of King Z\u00f8g","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"As a mysterious cloud of green smoke moves toward Dreamland and Z\u00f8g becomes more unstable than ever, Bean finds a unique way to communicate with him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20250},{"seriesId":38,"episodeFileId":17052,"seasonNumber":2,"episodeNumber":10,"title":"Bean Falls Down","airDate":"2021-01-15","airDateUtc":"2021-01-15T08:00:00Z","overview":"Bean's having a stressful day! First, an old nemesis arrives, acting suspiciously contrite. Then, vicious ogres invade and won't leave without Elfo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20251}],"episodeFile":[{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Princess, an Elf, and a Demon Walk Into a Bar-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E01.A Princess, an Elf, and a Demon Walk Into a Bar-WEBDL-1080p.mkv","size":1637988486,"dateAdded":"2018-10-10T21:38:28.455482Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"36:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1202},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E02.For Whom the Pig Oinks-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E02.For Whom the Pig Oinks-WEBDL-1080p.mkv","size":1031464231,"dateAdded":"2018-10-10T21:38:28.483487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:00","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1203},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Princess of Darkness-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E03.The Princess of Darkness-WEBDL-1080p.mkv","size":963414492,"dateAdded":"2018-10-10T21:38:28.511379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:52","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1204},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Castle Party Massacre-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E04.Castle Party Massacre-WEBDL-1080p.mkv","size":930579546,"dateAdded":"2018-10-10T21:38:28.539389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"29:58","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1205},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Faster, Princess! Kill! Kill!-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E05.Faster, Princess! Kill! Kill!-WEBDL-1080p.mkv","size":1128775671,"dateAdded":"2018-10-10T21:38:28.567097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:20","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1206},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Swamp and Circumstance-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E06.Swamp and Circumstance-WEBDL-1080p.mkv","size":1035571743,"dateAdded":"2018-10-10T21:38:28.595048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:06","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1207},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Love's Tender Rampage-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E07.Love's Tender Rampage-WEBDL-1080p.mkv","size":1003586125,"dateAdded":"2018-10-10T21:38:28.623128Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:16","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1208},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Limits of Immortality-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E08.The Limits of Immortality-WEBDL-1080p.mkv","size":1180087923,"dateAdded":"2018-10-10T21:38:28.651499Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:20","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1209},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E09.To Thine Own Elf Be True-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E09.To Thine Own Elf Be True-WEBDL-1080p.mkv","size":967861479,"dateAdded":"2018-10-10T21:38:28.679366Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:28","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1210},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Dreamland Falls-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E10.Dreamland Falls-WEBDL-1080p.mkv","size":957592228,"dateAdded":"2018-10-10T21:38:28.708445Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:18","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1211},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Disenchantress-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E11.The Disenchantress-WEBDL-720p.mkv","size":626152340,"dateAdded":"2020-09-20T11:18:48.747446Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2013045,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"30:50","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15569},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Stairway to Hell-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E12.Stairway to Hell-WEBDL-720p.mkv","size":726306946,"dateAdded":"2020-09-20T11:18:48.766587Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2789693,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"27:40","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15570},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Very Thing-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E13.The Very Thing-WEBDL-720p.mkv","size":560482074,"dateAdded":"2020-09-20T11:18:48.785537Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2155337,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:12","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15571},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Lonely Heart Is a Hunter-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E14.The Lonely Heart Is a Hunter-WEBDL-720p.mkv","size":570493903,"dateAdded":"2020-09-20T11:18:48.804872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2077179,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"27:26","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15572},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Our Bodies, Our Elves-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E15.Our Bodies, Our Elves-WEBDL-720p.mkv","size":527918386,"dateAdded":"2020-09-20T11:18:48.831599Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2386160,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15573},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Dreamland Job-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E16.The Dreamland Job-WEBDL-720p.mkv","size":485526573,"dateAdded":"2020-09-20T11:18:48.850746Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2192460,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:24","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15574},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Love's Slimy Embrace-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E17.Love's Slimy Embrace-WEBDL-720p.mkv","size":450661839,"dateAdded":"2020-09-20T11:18:48.871527Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1803375,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:06","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15575},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E18.In Her Own Write-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E18.In Her Own Write-WEBDL-720p.mkv","size":455688107,"dateAdded":"2020-09-20T11:18:48.891149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1861848,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:48","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15576},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Electric Princess-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E19.The Electric Princess-WEBDL-720p.mkv","size":627450374,"dateAdded":"2020-09-20T11:18:48.915342Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2485516,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:14","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15577},{"seriesId":38,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Tiabeanie Falls-WEBDL-720p.mkv","path":"\/tv\/Disenchantment\/Season 01\/S01E20.Tiabeanie Falls-WEBDL-720p.mkv","size":615061299,"dateAdded":"2020-09-20T11:18:48.946341Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2216162,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"28:08","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ Greek \/ Portuguese \/ Italian \/ Russian \/ Norwegian \/ Danish \/ Finnish \/ Indonesian \/ Swedish \/ Spanish \/ Polish \/ German \/ Spanish \/ Turkish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15578},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Subterranean Homesick Blues-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E01.Subterranean Homesick Blues-WEBDL-1080p.mkv","size":1217036965,"dateAdded":"2021-01-15T09:49:53.541299Z","sceneName":"Disenchantment.S02E01.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4504916,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"30:54","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17043},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E02.You're The Bean-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E02.You're The Bean-WEBDL-1080p.mkv","size":843406446,"dateAdded":"2021-01-15T09:51:44.596965Z","sceneName":"Disenchantment.S02E02.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3715321,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:18","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17044},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Beanie Get Your Gun-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E03.Beanie Get Your Gun-WEBDL-1080p.mkv","size":1144728304,"dateAdded":"2021-01-15T09:53:29.711629Z","sceneName":"Disenchantment.S02E03.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3887124,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"33:02","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17045},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Steamland Confidential-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E04.Steamland Confidential-WEBDL-1080p.mkv","size":1185422684,"dateAdded":"2021-01-15T09:55:17.15565Z","sceneName":"Disenchantment.S02E04.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4339312,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"31:06","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17046},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Freak Out!-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E05.Freak Out!-WEBDL-1080p.mkv","size":974666790,"dateAdded":"2021-01-15T09:57:05.49625Z","sceneName":"Disenchantment.S02E05.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4219846,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:12","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17047},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Last Splash-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E06.Last Splash-WEBDL-1080p.mkv","size":811823327,"dateAdded":"2021-01-15T09:58:52.230584Z","sceneName":"Disenchantment.S02E06.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3231111,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:24","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17048},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Bad Moon Rising-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E07.Bad Moon Rising-WEBDL-1080p.mkv","size":741283088,"dateAdded":"2021-01-15T10:00:37.550117Z","sceneName":"Disenchantment.S02E07.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2710851,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:54","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17049},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Hey, Pig Spender-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E08.Hey, Pig Spender-WEBDL-1080p.mkv","size":938652477,"dateAdded":"2021-01-15T10:02:20.967302Z","sceneName":"Disenchantment.S02E08.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3658218,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:32","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17050},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Madness of King Z\u00f8g-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E09.The Madness of King Z\u00f8g-WEBDL-1080p.mkv","size":759044870,"dateAdded":"2021-01-15T10:04:06.439342Z","sceneName":"Disenchantment.S02E09.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2909806,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:56","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17051},{"seriesId":38,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Bean Falls Down-WEBDL-1080p.mkv","path":"\/tv\/Disenchantment\/Season 02\/S02E10.Bean Falls Down-WEBDL-1080p.mkv","size":1238460748,"dateAdded":"2021-01-15T10:05:55.028217Z","sceneName":"Disenchantment.S02E10.1080p.WEB.H264-STRONTiUM","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5279318,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:20","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17052}],"queue":[]},"42":{"series":{"title":"Adventure Time","alternateTitles":[{"title":"Adventure Time With Finn and Jake","seasonNumber":-1}],"sortTitle":"adventure time","status":"ended","ended":true,"overview":"Adventure Time follows two best friends: Finn (a 12-year old boy) and Jake (a wise 28-year-old dog with magical powers), and the surreal adventures undertaken by the duo as they traverse the mystical Land of Ooo. A world built for adventure, Ooo is filled to the brim with various landscapes for the two buddies to explore and bizarre characters to assist.","previousAiring":"2021-05-20T07:00:00Z","network":"Cartoon Network","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/3\/banner.jpg?lastWrite=636747176258067520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/152831-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/3\/poster.jpg?lastWrite=637103832228442290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/152831-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/3\/fanart.jpg?lastWrite=636747176225628230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/152831-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2021-05-20T07:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":18,"sizeOnDisk":8887712303,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-09-27T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7518142674,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2011-05-09T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7107706791,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2012-02-13T08:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":5648668349,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2012-10-22T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":5325128219,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2014-03-17T07:00:00Z","episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":52,"sizeOnDisk":10742846954,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2015-06-05T07:10:00Z","episodeFileCount":43,"episodeCount":43,"totalEpisodeCount":43,"sizeOnDisk":9275069284,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2016-03-19T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":4920729422,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2017-02-02T08:10:00Z","episodeFileCount":27,"episodeCount":27,"totalEpisodeCount":27,"sizeOnDisk":4929257545,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2017-07-21T07:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":2419656497,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2018-09-03T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2798584533,"percentOfEpisodes":100.0}}],"year":2010,"path":"\/tv\/Adventure Time","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":152831,"tvRageId":23369,"tvMazeId":290,"firstAired":"2010-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"adventuretime","imdbId":"tt1305826","titleSlug":"adventure-time","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Children","Comedy","Family","Fantasy"],"tags":[],"added":"2017-12-02T23:48:16.011439Z","ratings":{"votes":3652,"value":9.7},"statistics":{"seasonCount":10,"episodeFileCount":296,"episodeCount":296,"totalEpisodeCount":297,"sizeOnDisk":69573502571,"percentOfEpisodes":100.0},"id":3},"episodes":[{"seriesId":3,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Distant Lands (4): Wizard City","overview":"Peppermint Butler starts over at the beginning, as just another inexperienced Wizard School student. When mysterious events at the campus cast suspicion on him and his checkered past, can he master the mystic arts in time to prove his innocence?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":19436},{"seriesId":3,"episodeFileId":16814,"seasonNumber":0,"episodeNumber":1,"title":"Adventure Time (Pilot)","airDate":"2008-12-07","airDateUtc":"2008-12-07T08:00:00Z","overview":"Princess Bubblegum is imprisoned by the Ice King. Jake and Finn battle their way past the Iceclops, Snow Golem, and other monsters that inhabit the Ice Kingdom to rescue her.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":152},{"seriesId":3,"episodeFileId":16521,"seasonNumber":1,"episodeNumber":1,"title":"Slumber Party Panic","airDate":"2010-04-05","airDateUtc":"2010-04-05T07:00:00Z","overview":"Finn and Princess Bubblegum must protect the Candy Kingdom from a horde of candy zombies they accidentally created.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":166},{"seriesId":3,"episodeFileId":16531,"seasonNumber":1,"episodeNumber":2,"title":"Trouble in Lumpy Space","airDate":"2010-04-05","airDateUtc":"2010-04-05T07:10:00Z","overview":"Finn must travel to Lumpy Space to find a cure that will save Jake, who was accidentally bitten by Lumpy Space Princess at a tea party.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":167},{"seriesId":3,"episodeFileId":16542,"seasonNumber":1,"episodeNumber":3,"title":"Prisoners of Love","airDate":"2010-04-12","airDateUtc":"2010-04-12T07:00:00Z","overview":"When the Ice King kidnaps a number of princesses he sees as potential brides, Finn and Jake team with the prisoners to set everybody free.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":168},{"seriesId":3,"episodeFileId":16552,"seasonNumber":1,"episodeNumber":4,"title":"Tree Trunks","airDate":"2010-04-12","airDateUtc":"2010-04-12T07:10:00Z","overview":"Finn and Jake join Tree Trunks in search for the rare Crystal Gem Apple, but question whether Tree Trunks has what it takes to adventure.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":169},{"seriesId":3,"episodeFileId":16561,"seasonNumber":1,"episodeNumber":5,"title":"The Enchiridion!","airDate":"2010-04-19","airDateUtc":"2010-04-19T07:00:00Z","overview":"Finn and Jake go on a quest for a magical book that would prove them worthy of being righteous heroes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":170},{"seriesId":3,"episodeFileId":16571,"seasonNumber":1,"episodeNumber":6,"title":"The Jiggler","airDate":"2010-04-19","airDateUtc":"2010-04-19T07:10:00Z","overview":"A jiggly creature attracted by Finn's auto-tuned singing follows Finn and Jake home but soon feels ill effects of separation from its family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":171},{"seriesId":3,"episodeFileId":16583,"seasonNumber":1,"episodeNumber":7,"title":"Ricardio the Heart Guy","airDate":"2010-04-26","airDateUtc":"2010-04-26T07:00:00Z","overview":"When a Heart Guy named Ricardio comes to Candy Kingdom, Finn gets really jealous and finds a way to get him out of the Land of Ooo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":172},{"seriesId":3,"episodeFileId":16591,"seasonNumber":1,"episodeNumber":8,"title":"Business Time","airDate":"2010-04-26","airDateUtc":"2010-04-26T07:10:00Z","overview":"When Finn and Jake discover a group of businessmen frozen in an iceberg, the duo thaws them and hires them to help with their adventures.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":173},{"seriesId":3,"episodeFileId":16602,"seasonNumber":1,"episodeNumber":9,"title":"My Two Favorite People","airDate":"2010-05-03","airDateUtc":"2010-05-03T07:00:00Z","overview":"Jake's plan to spend time with both Lady Rainicorn and Finn backfires.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":174},{"seriesId":3,"episodeFileId":16612,"seasonNumber":1,"episodeNumber":10,"title":"Memories of Boom Boom Mountain","airDate":"2010-05-03","airDateUtc":"2010-05-03T07:10:00Z","overview":"Finn reflects on an upsetting experience in his past and pledges to help everyone in town, but this proves more difficult than imagined.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":175},{"seriesId":3,"episodeFileId":16621,"seasonNumber":1,"episodeNumber":11,"title":"Wizard","airDate":"2010-05-10","airDateUtc":"2010-05-10T07:00:00Z","overview":"Finn and Jake temporarily get magic powers from an evil wizard, but are tricked into helping stop a comet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":176},{"seriesId":3,"episodeFileId":16631,"seasonNumber":1,"episodeNumber":12,"title":"Evicted!","airDate":"2010-05-17","airDateUtc":"2010-05-17T07:00:00Z","overview":"Finn and Jake search the land of Ooo for a new home after Marceline claims the duo's treehouse as her own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":177},{"seriesId":3,"episodeFileId":16642,"seasonNumber":1,"episodeNumber":13,"title":"City of Thieves","airDate":"2010-05-24","airDateUtc":"2010-05-24T07:00:00Z","overview":"Finn and Jake go off to face a thief king who has been stealing from little girls.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":178},{"seriesId":3,"episodeFileId":16653,"seasonNumber":1,"episodeNumber":14,"title":"The Witch's Garden","airDate":"2010-06-07","airDateUtc":"2010-06-07T07:00:00Z","overview":"Finn and Jake consider breaking up after a witch strips Jake of his powers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":179},{"seriesId":3,"episodeFileId":16662,"seasonNumber":1,"episodeNumber":15,"title":"What is Life?","airDate":"2010-06-14","airDateUtc":"2010-06-14T07:00:00Z","overview":"Finn brings a pie-throwing robot to life, but the machine begins to long for a more fulfilling existence.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":180},{"seriesId":3,"episodeFileId":16668,"seasonNumber":1,"episodeNumber":16,"title":"Ocean of Fear","airDate":"2010-06-21","airDateUtc":"2010-06-21T07:00:00Z","overview":"Finn struggles to overcome his fear of the ocean.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":181},{"seriesId":3,"episodeFileId":16675,"seasonNumber":1,"episodeNumber":17,"title":"When Wedding Bells Thaw","airDate":"2010-06-28","airDateUtc":"2010-06-28T07:00:00Z","overview":"The Ice King gets married but not before he convinces Finn and Jake to throw him a manlorette party.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":182},{"seriesId":3,"episodeFileId":16683,"seasonNumber":1,"episodeNumber":18,"title":"Dungeon","airDate":"2010-07-12","airDateUtc":"2010-07-12T07:00:00Z","overview":"Finn's headstrong decision to explore a dungeon in defiance of Jake's warnings leads to a dangerous escapade.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":183},{"seriesId":3,"episodeFileId":16692,"seasonNumber":1,"episodeNumber":19,"title":"The Duke","airDate":"2010-07-19","airDateUtc":"2010-07-19T07:00:00Z","overview":"Finn must tell the truth when he accidentally turns Princess Bubblegum bald and green and blames the Duke of Nuts.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":184},{"seriesId":3,"episodeFileId":16701,"seasonNumber":1,"episodeNumber":20,"title":"Freak City","airDate":"2010-07-26","airDateUtc":"2010-07-26T07:00:00Z","overview":"After being transformed into a foot, Finn joins forces with a band of misfits to make things right.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":185},{"seriesId":3,"episodeFileId":16708,"seasonNumber":1,"episodeNumber":21,"title":"Donny","airDate":"2010-08-09","airDateUtc":"2010-08-09T07:00:00Z","overview":"Finn and Jake try to help an obnoxious grass ogre named Donny develop better social skills, only to find out Donny's jerky behavior protects the house people from the why-wolves, which eat the house people.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":186},{"seriesId":3,"episodeFileId":16715,"seasonNumber":1,"episodeNumber":22,"title":"Henchman","airDate":"2010-08-23","airDateUtc":"2010-08-23T07:00:00Z","overview":"After seeing Marceline the vampire queen torment an elderly henchman, Finn steps in to be her new henchman, doing whatever he is told to do.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":187},{"seriesId":3,"episodeFileId":16724,"seasonNumber":1,"episodeNumber":23,"title":"Rainy Day Daydream","airDate":"2010-09-06","airDateUtc":"2010-09-06T07:00:00Z","overview":"Stuck inside the treehouse due to a knife storm, Finn and Jake use their imagination to pass the time.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":188},{"seriesId":3,"episodeFileId":16732,"seasonNumber":1,"episodeNumber":24,"title":"What Have You Done?","airDate":"2010-09-13","airDateUtc":"2010-09-13T07:00:00Z","overview":"Finn and Jake capture the Ice King as their prisoner, but feel guilty when unable to explain the wrongs he committed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":189},{"seriesId":3,"episodeFileId":16741,"seasonNumber":1,"episodeNumber":25,"title":"His Hero","airDate":"2010-09-20","airDateUtc":"2010-09-20T07:00:00Z","overview":"The great warrior Billy inspires Finn and Jake to practice nonviolence, but the duo finds it difficult to resist old ways.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":190},{"seriesId":3,"episodeFileId":16748,"seasonNumber":1,"episodeNumber":26,"title":"Gut Grinder","airDate":"2010-09-27","airDateUtc":"2010-09-27T07:00:00Z","overview":"When the Fluffy People's gold has been devoured by a culprit only known as \"The Gut Grinder\", Finn and Jake team up to find him with his tracks.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":191},{"seriesId":3,"episodeFileId":16522,"seasonNumber":2,"episodeNumber":1,"title":"It Came from the Nightosphere","airDate":"2010-10-11","airDateUtc":"2010-10-11T07:00:00Z","overview":"Marceline's evil father goes on a soul-sucking rampage after Finn and Marceline accidentally release him from the Nightosphere.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":192},{"seriesId":3,"episodeFileId":16536,"seasonNumber":2,"episodeNumber":2,"title":"The Eyes","airDate":"2010-10-18","airDateUtc":"2010-10-18T07:00:00Z","overview":"Finn and Jake try to rid themselves of a weird horse that creeps them out.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":193},{"seriesId":3,"episodeFileId":16543,"seasonNumber":2,"episodeNumber":3,"title":"Loyalty to the King","airDate":"2010-10-25","airDateUtc":"2010-10-25T07:00:00Z","overview":"Finn and Jake are excited to meet the Nice King who has come to Ooo. They soon realize that he looks suspiciously like someone else they know; the Ice King.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":194},{"seriesId":3,"episodeFileId":16551,"seasonNumber":2,"episodeNumber":4,"title":"Blood Under the Skin","airDate":"2010-11-01","airDateUtc":"2010-11-01T07:00:00Z","overview":"When Finn gets a splinter on his finger, he wants to get the best armor. In order to receive it, he must go on a quest to get the Magical Armor of Zelderon and survive one embarrassing situation after another.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":195},{"seriesId":3,"episodeFileId":16563,"seasonNumber":2,"episodeNumber":5,"title":"Storytelling","airDate":"2010-11-08","airDateUtc":"2010-11-08T08:00:00Z","overview":"Jake is sick and demands to hear a good story full of romance, fighting and suspense.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":196},{"seriesId":3,"episodeFileId":16573,"seasonNumber":2,"episodeNumber":6,"title":"Slow Love","airDate":"2010-11-15","airDateUtc":"2010-11-15T08:00:00Z","overview":"Finn and Jake agree to help a snail named Snorlock find a girlfriend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":197},{"seriesId":3,"episodeFileId":16582,"seasonNumber":2,"episodeNumber":7,"title":"Power Animal","airDate":"2010-11-22","airDateUtc":"2010-11-22T08:00:00Z","overview":"Finn is captured by gnomes who want to use his energy to power their infernal machines, and it's up to Jake to stay focused and rescue him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":198},{"seriesId":3,"episodeFileId":16592,"seasonNumber":2,"episodeNumber":8,"title":"Crystals Have Power","airDate":"2010-11-29","airDateUtc":"2010-11-29T08:00:00Z","overview":"Jake takes a pledge of nonviolence just before Finn is kidnapped by outlaws from the crystalline dimension.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":199},{"seriesId":3,"episodeFileId":16603,"seasonNumber":2,"episodeNumber":9,"title":"The Other Tarts","airDate":"2011-01-03","airDateUtc":"2011-01-03T08:00:00Z","overview":"Finn choses to cross the Desert of Doom to deliver the royal tarts to the annual back rubbing ceremony.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":200},{"seriesId":3,"episodeFileId":16615,"seasonNumber":2,"episodeNumber":10,"title":"To Cut a Woman's Hair","airDate":"2011-01-10","airDateUtc":"2011-01-10T08:00:00Z","overview":"A tree witch demands a lock of princess hair else Jake will be sucked into her bottomless bottom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":201},{"seriesId":3,"episodeFileId":16622,"seasonNumber":2,"episodeNumber":11,"title":"The Chamber of Frozen Blades","airDate":"2011-01-17","airDateUtc":"2011-01-17T08:00:00Z","overview":"Whilst the Ice King goes out to take Gunther to the hospital, Finn and Jake decide to sneak inside his lair and flex their ninja skills.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":202},{"seriesId":3,"episodeFileId":16632,"seasonNumber":2,"episodeNumber":12,"title":"Her Parents","airDate":"2011-01-24","airDateUtc":"2011-01-24T08:00:00Z","overview":"Jake's relationship with Lady Rainicorn is in danger when he promises to meet with her parents, as both species had a long history of war with each other. However, thanks to Jake's shape-shifting powers, they mistake the dog as one of their own, but for how long?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":203},{"seriesId":3,"episodeFileId":16644,"seasonNumber":2,"episodeNumber":13,"title":"The Pods","airDate":"2011-01-31","airDateUtc":"2011-01-31T08:00:00Z","overview":"Finn and Jake discover a box containing three beans. Planting them causes three pods to grow. Two of them are good and one is evil, but which is which?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":204},{"seriesId":3,"episodeFileId":16652,"seasonNumber":2,"episodeNumber":14,"title":"The Silent King","airDate":"2011-02-06","airDateUtc":"2011-02-06T08:00:00Z","overview":"After defeating a evil king of goblins, Finn finds himself crowned as their new king. Unfortunately, he's unable to do anything for them due to the rules of the previous king including defending the goblins from the previous king.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":205},{"seriesId":3,"episodeFileId":16661,"seasonNumber":2,"episodeNumber":15,"title":"The Real You","airDate":"2011-02-14","airDateUtc":"2011-02-14T08:00:00Z","overview":"Finn has to give a speech at Princess Bubblegum's science barbecue and seeks a quick fix to make himself smarter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":206},{"seriesId":3,"episodeFileId":16667,"seasonNumber":2,"episodeNumber":16,"title":"Guardians of Sunshine","airDate":"2011-02-21","airDateUtc":"2011-02-21T08:00:00Z","overview":"Finn and Jake get sucked into one of BMO's games and they have to defeat all three of his bosses.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":207},{"seriesId":3,"episodeFileId":16676,"seasonNumber":2,"episodeNumber":17,"title":"Death in Bloom","airDate":"2011-02-28","airDateUtc":"2011-02-28T08:00:00Z","overview":"After killing Princess Bubblegum's plant when left to take care of it, Finn and Jake make a trip to the Land of the Dead in order to get its soul back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":208},{"seriesId":3,"episodeFileId":16684,"seasonNumber":2,"episodeNumber":18,"title":"Susan Strong","airDate":"2011-03-07","airDateUtc":"2011-03-07T08:00:00Z","overview":"Finn is excited to discover what appears to be a tribe of humans living underground near the Candy Kingdom, but gets more than he expected when he tries to teach one of them about the surface world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":209},{"seriesId":3,"episodeFileId":16691,"seasonNumber":2,"episodeNumber":19,"title":"Mystery Train","airDate":"2011-03-14","airDateUtc":"2011-03-14T07:00:00Z","overview":"Wanting to surprise Finn on his birthday, Jake takes Finn on a train, where they get wrapped up in a murder mystery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":210},{"seriesId":3,"episodeFileId":16702,"seasonNumber":2,"episodeNumber":20,"title":"Go with Me","airDate":"2011-03-28","airDateUtc":"2011-03-28T07:00:00Z","overview":"Marceline and Jake give Finn advice so he can ask Princess Bubblegum to see a movie with him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":211},{"seriesId":3,"episodeFileId":16707,"seasonNumber":2,"episodeNumber":21,"title":"Belly of the Beast","airDate":"2011-04-04","airDateUtc":"2011-04-04T07:00:00Z","overview":"In order to cure the stomach ache of a giant, Finn and Jake must break up a party happening in his belly.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":212},{"seriesId":3,"episodeFileId":16717,"seasonNumber":2,"episodeNumber":22,"title":"The Limit","airDate":"2011-04-11","airDateUtc":"2011-04-11T07:00:00Z","overview":"On a mission to save soldiers of the Hot Dog Princess, Finn and Jake go inside a massive maze where wishes can be granted and where Jake's stretching powers are pushed to their limits.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":213},{"seriesId":3,"episodeFileId":16728,"seasonNumber":2,"episodeNumber":23,"title":"Videomakers","airDate":"2011-04-18","airDateUtc":"2011-04-18T07:00:00Z","overview":"After discovering government warnings prior to movies for their film club, Finn and Jake decide to make their own, but get into a fight over the direction of their film.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":214},{"seriesId":3,"episodeFileId":16731,"seasonNumber":2,"episodeNumber":24,"title":"Mortal Folly","airDate":"2011-05-02","airDateUtc":"2011-05-02T07:00:00Z","overview":"Finn and Jake must go on a quest to find the Lich King (originally sealed away by Billy), while the Ice King pesters them for permission to date Princess Bubblegum.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":215},{"seriesId":3,"episodeFileId":16739,"seasonNumber":2,"episodeNumber":25,"title":"Mortal Recoil","airDate":"2011-05-02","airDateUtc":"2011-05-02T07:10:00Z","overview":"The Princess isn't feeling well and Jake starts to worry something might be wrong with her.. The Ice King is anxious to help, but does Finn trust him?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":216},{"seriesId":3,"episodeFileId":16751,"seasonNumber":2,"episodeNumber":26,"title":"Heat Signature","airDate":"2011-05-09","airDateUtc":"2011-05-09T07:00:00Z","overview":"Marceline plays a prank on Finn and Jake by making them believe they're vampires, but it nearly goes too far when they're manipulated by her ghost friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":217},{"seriesId":3,"episodeFileId":16528,"seasonNumber":3,"episodeNumber":1,"title":"Conquest of Cuteness","airDate":"2011-07-11","airDateUtc":"2011-07-11T07:00:00Z","overview":"Finn and Jake must defend their home from the Cuties, a tiny race who believe themselves to be evil, destructive invaders.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":218},{"seriesId":3,"episodeFileId":16534,"seasonNumber":3,"episodeNumber":2,"title":"Morituri te Salutamus","airDate":"2011-07-18","airDateUtc":"2011-07-18T07:00:00Z","overview":"The duo choose to partake in gladiatorial combat against the Fight King's ghost warriors, but Finn succumbs to bloodlust while Jake becomes obsessed in keeping a cool morale.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":219},{"seriesId":3,"episodeFileId":16547,"seasonNumber":3,"episodeNumber":3,"title":"Memory of a Memory","airDate":"2011-07-25","airDateUtc":"2011-07-25T07:00:00Z","overview":"Finn and Jake enter Marceline's mind to awaken her from a sleep spell she had cast on herself, without knowing that they are being tricked by a person from her past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":220},{"seriesId":3,"episodeFileId":16553,"seasonNumber":3,"episodeNumber":4,"title":"Hitman","airDate":"2011-08-01","airDateUtc":"2011-08-01T07:00:00Z","overview":"The grounded Ice King hires a fire-manipulating hitman to attack Finn and Jake, without realizing the potentially deadly consequences.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":221},{"seriesId":3,"episodeFileId":16567,"seasonNumber":3,"episodeNumber":5,"title":"Too Young","airDate":"2011-08-08","airDateUtc":"2011-08-08T07:00:00Z","overview":"The Earl of Lemongrab takes over the Candy Kingdom due to Princess Bubblegum's age regression, forcing her and Finn to try and get rid of him even if it means a life-altering decision.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":222},{"seriesId":3,"episodeFileId":16574,"seasonNumber":3,"episodeNumber":6,"title":"The Monster","airDate":"2011-08-15","airDateUtc":"2011-08-15T07:00:00Z","overview":"The king and queen of Lumpy Space ask Finn and Jake to bring their daughter back home. At the same time, they attempt to stop a \"monster\" from destroying a village.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":223},{"seriesId":3,"episodeFileId":16585,"seasonNumber":3,"episodeNumber":7,"title":"Still","airDate":"2011-08-22","airDateUtc":"2011-08-22T07:00:00Z","overview":"Finn and Jake are literally unable to move and are at the mercy of the Ice King.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":224},{"seriesId":3,"episodeFileId":16596,"seasonNumber":3,"episodeNumber":8,"title":"Wizard Battle","airDate":"2011-08-29","airDateUtc":"2011-08-29T07:00:00Z","overview":"Finn and Jake enter a competition for wizards in disguise so they can prevent Ice King from winning the grand prize: a kiss from Princess Bubblegum.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":225},{"seriesId":3,"episodeFileId":16601,"seasonNumber":3,"episodeNumber":9,"title":"Fionna and Cake","airDate":"2011-09-05","airDateUtc":"2011-09-05T07:00:00Z","overview":"In this gender-swapped episode, Fionna and Cake must battle the evil Ice Queen.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":226},{"seriesId":3,"episodeFileId":16613,"seasonNumber":3,"episodeNumber":10,"title":"What Was Missing","airDate":"2011-09-26","airDateUtc":"2011-09-26T07:00:00Z","overview":"Finn and his friends must come together as a genuine band in order to open the gate of the Door Lord and get back their taken items.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":227},{"seriesId":3,"episodeFileId":16628,"seasonNumber":3,"episodeNumber":11,"title":"Apple Thief","airDate":"2011-10-03","airDateUtc":"2011-10-03T07:00:00Z","overview":"When Tree Trunks's apples go missing, she, Finn and Jake descend into the dark side of the Candy Kingdom in order to find the thief.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":228},{"seriesId":3,"episodeFileId":16635,"seasonNumber":3,"episodeNumber":12,"title":"The Creeps","airDate":"2011-10-17","airDateUtc":"2011-10-17T07:00:00Z","overview":"Finn and Jake receive an invitation to a masquerade dinner. It turns into a whodunit as guests start to meet their demise.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":229},{"seriesId":3,"episodeFileId":16646,"seasonNumber":3,"episodeNumber":13,"title":"From Bad to Worse","airDate":"2011-10-24","airDateUtc":"2011-10-24T07:00:00Z","overview":"When another plague of Candy Zombies arises and Princess Bubblegum is among the undead, Finn and his friends are in a race against time to figure out how to stop it...without making things even worse!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":230},{"seriesId":3,"episodeFileId":16654,"seasonNumber":3,"episodeNumber":14,"title":"Beautopia","airDate":"2011-11-07","airDateUtc":"2011-11-07T08:00:00Z","overview":"Susan Strong asks Finn and Jake to help fight off the Glub Glubs in the sewers below to regain her people's home in Beautopia.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":231},{"seriesId":3,"episodeFileId":16663,"seasonNumber":3,"episodeNumber":15,"title":"No One Can Hear You","airDate":"2011-11-14","airDateUtc":"2011-11-14T08:00:00Z","overview":"Finn awakens after an accident to find the Candy Kingdom citizens mysteriously gone and Jake acting crazier than usual.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":232},{"seriesId":3,"episodeFileId":16671,"seasonNumber":3,"episodeNumber":16,"title":"Jake vs. Me-Mow","airDate":"2011-11-21","airDateUtc":"2011-11-21T08:00:00Z","overview":"Finn and Jake take on a request to protect Wildberry Princess from an unknown assassin. The assassin turns out to be a tiny cat assassin called Me-Mow, who ends up bribing Jake by poisoning him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":233},{"seriesId":3,"episodeFileId":16679,"seasonNumber":3,"episodeNumber":17,"title":"Thank You","airDate":"2011-11-23","airDateUtc":"2011-11-23T08:00:00Z","overview":"The Snow Golem visits the Fire Kingdom and finds an unlikely follower.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":234},{"seriesId":3,"episodeFileId":16688,"seasonNumber":3,"episodeNumber":18,"title":"The New Frontier","airDate":"2011-11-28","airDateUtc":"2011-11-28T08:00:00Z","overview":"Jake dreams about his death, and Finn takes action when events from the dream start to come true.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":235},{"seriesId":3,"episodeFileId":16694,"seasonNumber":3,"episodeNumber":19,"title":"Holly Jolly Secrets (1)","airDate":"2011-12-05","airDateUtc":"2011-12-05T08:00:00Z","overview":"Finn and Jake find the Ice King's video diary and have a chance to unearth his secrets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":236},{"seriesId":3,"episodeFileId":16700,"seasonNumber":3,"episodeNumber":20,"title":"Holly Jolly Secrets (2)","airDate":"2011-12-05","airDateUtc":"2011-12-05T08:10:00Z","overview":"The Ice King summons an army of snowmen to recover the secret tapes Finn and Jake are watching. They must work against the clock to find out the secrets enclosed within.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":237},{"seriesId":3,"episodeFileId":16714,"seasonNumber":3,"episodeNumber":21,"title":"Marceline's Closet","airDate":"2011-12-12","airDateUtc":"2011-12-12T08:00:00Z","overview":"Finn and Jake play Cloud Hunt in Marceline's house, but they get trapped in her closet after she comes home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":238},{"seriesId":3,"episodeFileId":16719,"seasonNumber":3,"episodeNumber":22,"title":"Paper Pete","airDate":"2012-01-16","airDateUtc":"2012-01-16T08:00:00Z","overview":"Library books seek help from Finn and Jake to save them from the evil Moldari.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":239},{"seriesId":3,"episodeFileId":16725,"seasonNumber":3,"episodeNumber":23,"title":"Another Way","airDate":"2012-01-23","airDateUtc":"2012-01-23T08:00:00Z","overview":"Cyclops tears may heal Finn and Jake's broken toes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":240},{"seriesId":3,"episodeFileId":16734,"seasonNumber":3,"episodeNumber":24,"title":"Ghost Princess","airDate":"2012-01-30","airDateUtc":"2012-01-30T08:00:00Z","overview":"Finn and Jake play detective and try to solve Ghost Princess' murder.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":241},{"seriesId":3,"episodeFileId":16740,"seasonNumber":3,"episodeNumber":25,"title":"Dad's Dungeon","airDate":"2012-02-06","airDateUtc":"2012-02-06T08:00:00Z","overview":"Jake's dad presents a strange challenge to the guys when he appears to them in a holographic message, telling them about a dungeon he made for them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":242},{"seriesId":3,"episodeFileId":16747,"seasonNumber":3,"episodeNumber":26,"title":"Incendium","airDate":"2012-02-13","airDateUtc":"2012-02-13T08:00:00Z","overview":"Jake embarks on a solo mission to help a broken-hearted Finn.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":243},{"seriesId":3,"episodeFileId":16523,"seasonNumber":4,"episodeNumber":1,"title":"Hot to the Touch","airDate":"2012-04-03","airDateUtc":"2012-04-03T07:00:00Z","overview":"Finn develops a crush on Flame Princess and tries to get to know her, which proves difficult due to her destructive power.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":244},{"seriesId":3,"episodeFileId":16537,"seasonNumber":4,"episodeNumber":2,"title":"Five Short Graybles","airDate":"2012-04-09","airDateUtc":"2012-04-09T07:00:00Z","overview":"Follow as 5 stories intertwine together, can you find the connection?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":245},{"seriesId":3,"episodeFileId":16544,"seasonNumber":4,"episodeNumber":3,"title":"Web Weirdos","airDate":"2012-04-16","airDateUtc":"2012-04-16T07:00:00Z","overview":"When Finn gets trapped in a giant spider web, he ends up playing marriage counselor to a couple of grumpy arachnids.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":246},{"seriesId":3,"episodeFileId":16557,"seasonNumber":4,"episodeNumber":4,"title":"Dream of Love","airDate":"2012-04-23","airDateUtc":"2012-04-23T07:00:00Z","overview":"Tree Trunks is courted by an oinking suitor, but much to Jake\u2019s dismay, this interferes with her baking habits.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":247},{"seriesId":3,"episodeFileId":16562,"seasonNumber":4,"episodeNumber":5,"title":"Return to the Nightosphere","airDate":"2012-04-30","airDateUtc":"2012-04-30T07:00:00Z","overview":"Marceline\u2019s dad banishes Finn and Jake to the Nightosphere, and it stinks. Literally.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":248},{"seriesId":3,"episodeFileId":16572,"seasonNumber":4,"episodeNumber":6,"title":"Daddy's Little Monster","airDate":"2012-04-30","airDateUtc":"2012-04-30T07:10:00Z","overview":"Finn and Jake attempt to rescue Marceline and find out what's making her behave so strangely.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":249},{"seriesId":3,"episodeFileId":16587,"seasonNumber":4,"episodeNumber":7,"title":"In Your Footsteps","airDate":"2012-05-07","airDateUtc":"2012-05-07T07:00:00Z","overview":"A bear cozies up to the guys, but his true intentions may be hidden.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":250},{"seriesId":3,"episodeFileId":16599,"seasonNumber":4,"episodeNumber":8,"title":"Hug Wolf","airDate":"2012-05-14","airDateUtc":"2012-05-14T07:00:00Z","overview":"Finn goes through a transformation after a run-in with a hug wolf.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":251},{"seriesId":3,"episodeFileId":16606,"seasonNumber":4,"episodeNumber":9,"title":"Princess Monster Wife","airDate":"2012-05-28","airDateUtc":"2012-05-28T07:00:00Z","overview":"Princesses lose body parts under mysterious circumstances.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":252},{"seriesId":3,"episodeFileId":16614,"seasonNumber":4,"episodeNumber":10,"title":"Goliad","airDate":"2012-06-04","airDateUtc":"2012-06-04T07:00:00Z","overview":"Battling with her new realization of her own mortality, in a sleep deprived state Princess bubblegum creates her own heir to the throne. After meeting the heir, Finn and Jake decide to teach her the ways of the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":253},{"seriesId":3,"episodeFileId":16624,"seasonNumber":4,"episodeNumber":11,"title":"Beyond This Earthly Realm","airDate":"2012-06-11","airDateUtc":"2012-06-11T07:00:00Z","overview":"When Finn finds a porcelain lamb, it transports him into the spirit world and only the Ice King can help get him out.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":254},{"seriesId":3,"episodeFileId":16634,"seasonNumber":4,"episodeNumber":12,"title":"Gotcha!","airDate":"2012-06-18","airDateUtc":"2012-06-18T07:00:00Z","overview":"In order to do research for her tell-all memoir about men, Lumpy Space Princess goes undercover working for Finn and Jake.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":255},{"seriesId":3,"episodeFileId":16649,"seasonNumber":4,"episodeNumber":13,"title":"Princess Cookie","airDate":"2012-06-25","airDateUtc":"2012-06-25T07:00:00Z","overview":"Finn and Jake are called to solve a Candy Kingdom hostage crisis when a rogue cookie takes over.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":256},{"seriesId":3,"episodeFileId":16815,"seasonNumber":0,"episodeNumber":2,"title":"The Wand","airDate":"2012-07-10","airDateUtc":"2012-07-10T07:00:00Z","overview":"Finn and Jake come across a magic wand, but when the wand becomes uncontrollable, they must team up with the Ice King to stop it.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":153},{"seriesId":3,"episodeFileId":16657,"seasonNumber":4,"episodeNumber":14,"title":"Card Wars","airDate":"2012-07-16","airDateUtc":"2012-07-16T07:00:00Z","overview":"Finn and Jake play Card Quest, an epic game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":257},{"seriesId":3,"episodeFileId":16665,"seasonNumber":4,"episodeNumber":15,"title":"Sons of Mars","airDate":"2012-07-23","airDateUtc":"2012-07-23T07:00:00Z","overview":"Magic man has most of his power taken from him by his brother, in a fit of desperation, he swaps the way Jake and Himself look.\r\n\r\nMagic Mans brother takes Jake to Mars for punishment,","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":258},{"seriesId":3,"episodeFileId":16669,"seasonNumber":4,"episodeNumber":16,"title":"Burning Low","airDate":"2012-07-30","airDateUtc":"2012-07-30T07:00:00Z","overview":"Princess Bubblegum may be jealous when Finn start hanging out with Flame Princess.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":259},{"seriesId":3,"episodeFileId":16682,"seasonNumber":4,"episodeNumber":17,"title":"BMO Noire","airDate":"2012-08-06","airDateUtc":"2012-08-06T07:00:00Z","overview":"BMO tries to find Finn's sock.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":260},{"seriesId":3,"episodeFileId":16685,"seasonNumber":4,"episodeNumber":18,"title":"King Worm","airDate":"2012-08-13","airDateUtc":"2012-08-13T07:00:00Z","overview":"Finn has a vivid dream that may be more than it seems.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":261},{"seriesId":3,"episodeFileId":16696,"seasonNumber":4,"episodeNumber":19,"title":"Lady & Peebles","airDate":"2012-08-20","airDateUtc":"2012-08-20T07:00:00Z","overview":"Princess Bubblegum and Lady Rainicorn look for Finn and Jake, who are missing after a run-in with the Ice King.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":262},{"seriesId":3,"episodeFileId":16705,"seasonNumber":4,"episodeNumber":20,"title":"You Made Me","airDate":"2012-08-27","airDateUtc":"2012-08-27T07:00:00Z","overview":"When a creepy sleep-peeping Lemongrab upsets Princess Bubblegum with his creepy ways, Finn and Jake need to tend to some issues in the Outer Realm.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":263},{"seriesId":3,"episodeFileId":16709,"seasonNumber":4,"episodeNumber":21,"title":"Who Would Win","airDate":"2012-09-03","airDateUtc":"2012-09-03T07:00:00Z","overview":"The guys challenge a monster to a fight but end up battling each other.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":264},{"seriesId":3,"episodeFileId":16720,"seasonNumber":4,"episodeNumber":22,"title":"Ignition Point","airDate":"2012-09-17","airDateUtc":"2012-09-17T07:00:00Z","overview":"Finn and Jake sneak into the Fire Kingdom to retrieve Fire Princess' scented candles and overhear a plot to assassinate the king.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":265},{"seriesId":3,"episodeFileId":16726,"seasonNumber":4,"episodeNumber":23,"title":"The Hard Easy","airDate":"2012-10-01","airDateUtc":"2012-10-01T07:00:00Z","overview":"Frog People seek protection from an evil lizard who's attacking their swamp.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":266},{"seriesId":3,"episodeFileId":16733,"seasonNumber":4,"episodeNumber":24,"title":"Reign of Gunters","airDate":"2012-10-08","airDateUtc":"2012-10-08T07:00:00Z","overview":"The Gunters cause chaos in Ooo","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":267},{"seriesId":3,"episodeFileId":16746,"seasonNumber":4,"episodeNumber":25,"title":"I Remember You","airDate":"2012-10-15","airDateUtc":"2012-10-15T07:00:00Z","overview":"The Ice King and Marceline bond over song and memories.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":268},{"seriesId":3,"episodeFileId":16752,"seasonNumber":4,"episodeNumber":26,"title":"The Lich","airDate":"2012-10-22","airDateUtc":"2012-10-22T07:00:00Z","overview":"A visit from the Lich King sheds light on Ooo's secrets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":269},{"seriesId":3,"episodeFileId":16524,"seasonNumber":5,"episodeNumber":1,"title":"Finn the Human","airDate":"2012-11-12","airDateUtc":"2012-11-12T08:00:00Z","overview":"Finn and Jake chase the Lich through a dimensional portal and meet a wishmaster. After the Lich wishes that humanity never existed, Finn wishes that the Lich never existed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":270},{"seriesId":3,"episodeFileId":16533,"seasonNumber":5,"episodeNumber":2,"title":"Jake the Dog","airDate":"2012-11-12","airDateUtc":"2012-11-12T08:10:00Z","overview":"Finn and Jake chase the Lich through a dimensional portal and meet a wishmaster. After the Lich wishes that humanity never existed, Finn wishes that the Lich never existed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":271},{"seriesId":3,"episodeFileId":16545,"seasonNumber":5,"episodeNumber":3,"title":"Five More Short Graybles","airDate":"2012-11-19","airDateUtc":"2012-11-19T08:00:00Z","overview":"A series of short stories all centered around a common theme, hosted by a mysterious man named Cuber from the future.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":272},{"seriesId":3,"episodeFileId":16559,"seasonNumber":5,"episodeNumber":4,"title":"Up a Tree","airDate":"2012-11-26","airDateUtc":"2012-11-26T08:00:00Z","overview":"The guys' game of catch goes awry when their throwing disc is lodged in a large tree.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":273},{"seriesId":3,"episodeFileId":16569,"seasonNumber":5,"episodeNumber":5,"title":"All the Little People","airDate":"2012-12-03","airDateUtc":"2012-12-03T08:00:00Z","overview":"Finn receives a bag full of miniature versions of his friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":274},{"seriesId":3,"episodeFileId":16578,"seasonNumber":5,"episodeNumber":6,"title":"Jake the Dad","airDate":"2013-01-07","airDateUtc":"2013-01-07T08:00:00Z","overview":"Jake's a daddy, but being a father and keeping his rainicorn pups from killing themselves or each other is a lot harder than he imagined.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":275},{"seriesId":3,"episodeFileId":16589,"seasonNumber":5,"episodeNumber":7,"title":"Davey","airDate":"2013-01-14","airDateUtc":"2013-01-14T08:00:00Z","overview":"Finn creates an alter ego, Davey. Davey soon begins to take over, and Jake is forced into action to get his old friend back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":276},{"seriesId":3,"episodeFileId":16597,"seasonNumber":5,"episodeNumber":8,"title":"Mystery Dungeon","airDate":"2013-01-21","airDateUtc":"2013-01-21T08:00:00Z","overview":"Ice King, NEPTR, Tree Trunks, Shelby, and Lemongrab are trapped inside a mysterious dungeon and must work together to free themselves.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":277},{"seriesId":3,"episodeFileId":16605,"seasonNumber":5,"episodeNumber":9,"title":"All Your Fault","airDate":"2013-01-28","airDateUtc":"2013-01-28T08:00:00Z","overview":"Princess Bubblegum sends Finn and Jake to investigate a message of distress from the Earls of Lemongrab.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":278},{"seriesId":3,"episodeFileId":16616,"seasonNumber":5,"episodeNumber":10,"title":"Little Dude","airDate":"2013-02-04","airDateUtc":"2013-02-04T08:00:00Z","overview":"Finn's hat comes to life and becomes evil after it is touched by a wizard. Finn, Jake, and the wizard track the hat down, and manage to turn the hat good.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":279},{"seriesId":3,"episodeFileId":16623,"seasonNumber":5,"episodeNumber":11,"title":"Bad Little Boy","airDate":"2013-02-18","airDateUtc":"2013-02-18T08:00:00Z","overview":"The princesses tire of Ice King\u2019s crazy Fionna-and-Cake fan-fiction stories, so Marceline stops by the Ice Kingdom to show him how to properly write a story.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":280},{"seriesId":3,"episodeFileId":16633,"seasonNumber":5,"episodeNumber":12,"title":"Vault of Bones","airDate":"2013-02-25","airDateUtc":"2013-02-25T08:00:00Z","overview":"When Flame Princess begins to doubt her evilness, Finn insists she is not evil and takes her on a journey into a dungeon to help her sort out her thoughts.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":281},{"seriesId":3,"episodeFileId":16645,"seasonNumber":5,"episodeNumber":13,"title":"The Great Bird Man","airDate":"2013-03-04","airDateUtc":"2013-03-04T08:00:00Z","overview":"Xergiok, the former Goblin king who was deposed by Finn and Jake claims to have turned over a new leaf.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":282},{"seriesId":3,"episodeFileId":16655,"seasonNumber":5,"episodeNumber":14,"title":"Simon & Marcy","airDate":"2013-03-25","airDateUtc":"2013-03-25T07:00:00Z","overview":"A look at what Ice King and Marceline were like 996 years ago.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":283},{"seriesId":3,"episodeFileId":16660,"seasonNumber":5,"episodeNumber":15,"title":"A Glitch is a Glitch","airDate":"2013-04-01","airDateUtc":"2013-04-01T07:00:00Z","overview":"The Ice King creates a computer virus that will delete everyone in Ooo except for him and Princess Bubblegum. Finn and Jake hack into the universal source code to destroy the virus.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":284},{"seriesId":3,"episodeFileId":16672,"seasonNumber":5,"episodeNumber":16,"title":"Puhoy","airDate":"2013-04-08","airDateUtc":"2013-04-08T07:00:00Z","overview":"Finn dreams he is in a pillow world where he marries a pillow woman and has two children with her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":285},{"seriesId":3,"episodeFileId":16680,"seasonNumber":5,"episodeNumber":17,"title":"BMO Lost","airDate":"2013-04-15","airDateUtc":"2013-04-15T07:00:00Z","overview":"BMO makes his way home after being snatched by an eagle. On its way, BMO meets Bubble and a baby, and the three decide to journey home together.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":286},{"seriesId":3,"episodeFileId":16687,"seasonNumber":5,"episodeNumber":18,"title":"Princess Potluck","airDate":"2013-04-22","airDateUtc":"2013-04-22T07:00:00Z","overview":"Ice King gets super jealous when he finds out that he wasn't invited to the Princess Potluck.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":287},{"seriesId":3,"episodeFileId":16693,"seasonNumber":5,"episodeNumber":19,"title":"James Baxter the Horse","airDate":"2013-05-06","airDateUtc":"2013-05-06T07:00:00Z","overview":"Finn and Jake stumble across a horse named James Baxter who has the ability to make sad people feel better.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":288},{"seriesId":3,"episodeFileId":16704,"seasonNumber":5,"episodeNumber":20,"title":"Shh!","airDate":"2013-05-13","airDateUtc":"2013-05-13T07:00:00Z","overview":"Finn and Jake make a bet to see who can not talk the longest, and the two use signs to communicate.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":289},{"seriesId":3,"episodeFileId":16711,"seasonNumber":5,"episodeNumber":21,"title":"The Suitor","airDate":"2013-05-20","airDateUtc":"2013-05-20T07:00:00Z","overview":"Peppermint Butler thinks that Bubblegum is working too hard in her lab, so he tries to get her a suitor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":290},{"seriesId":3,"episodeFileId":16718,"seasonNumber":5,"episodeNumber":22,"title":"The Party's Over, Isla de Se\u00f1orita","airDate":"2013-05-27","airDateUtc":"2013-05-27T07:00:00Z","overview":"After another one of his schemes fails, the Ice King decides to give up.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":291},{"seriesId":3,"episodeFileId":16727,"seasonNumber":5,"episodeNumber":23,"title":"One Last Job","airDate":"2013-06-10","airDateUtc":"2013-06-10T07:00:00Z","overview":"Jake Jr. gets involved with a group of troublemakers, and Jake is forced to reunite his old gang\u2014which includes Tiffany who first appeared in the first season episode \"My Two Favorite People\"\u2014to rescue his daughter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":292},{"seriesId":3,"episodeFileId":16736,"seasonNumber":5,"episodeNumber":24,"title":"Another Five More Short Graybles","airDate":"2013-06-17","airDateUtc":"2013-06-17T07:00:00Z","overview":"A series of short stories with a common theme, hosted by a mysterious man named Cuber from the future. In this entry, Finn and Jake build a time machine. Meanwhile, Princess Bubblegum helps Cinnamon Bun overcome his fear of the dark.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":293},{"seriesId":3,"episodeFileId":16744,"seasonNumber":5,"episodeNumber":25,"title":"Candy Streets","airDate":"2013-06-24","airDateUtc":"2013-06-24T07:00:00Z","overview":"Lumpy Space Princess is robbed, but before she is able to explain the details to Finn and Jake, she faints.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":294},{"seriesId":3,"episodeFileId":16750,"seasonNumber":5,"episodeNumber":26,"title":"Wizards Only, Fools","airDate":"2013-07-01","airDateUtc":"2013-07-01T07:00:00Z","overview":"After Starchy comes down with a cold and needs a magic cure, Finn, Jake, and Princess Bubblegum disguise themselves as wizards and sneak into Wizard City.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":295},{"seriesId":3,"episodeFileId":16756,"seasonNumber":5,"episodeNumber":27,"title":"Jake Suit","airDate":"2013-07-15","airDateUtc":"2013-07-15T07:00:00Z","overview":"Jake gets upset with the amount of times that Finn uses his body as a suit of armor, so he convinces Finn to trade places with him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":296},{"seriesId":3,"episodeFileId":16759,"seasonNumber":5,"episodeNumber":28,"title":"Be More","airDate":"2013-07-22","airDateUtc":"2013-07-22T07:00:00Z","overview":"BMO accidentally deletes his core system files. Finn and Jake disguise themselves as MOs to infiltrate the MO factory and save BMO from a memory wipe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":297},{"seriesId":3,"episodeFileId":16761,"seasonNumber":5,"episodeNumber":29,"title":"Sky Witch","airDate":"2013-07-29","airDateUtc":"2013-07-29T07:00:00Z","overview":"Marceline is on a top-secret mission tracking Maja the Sky Witch. But when she loses the witch's trail, Marceline turns to Princess Bubblegum for help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":298},{"seriesId":3,"episodeFileId":16762,"seasonNumber":5,"episodeNumber":30,"title":"Frost & Fire","airDate":"2013-08-05","airDateUtc":"2013-08-05T07:00:00Z","overview":"After Flame Princess battles Ice King, Finn has an exciting dream. But when it abruptly ends, Finn must get FP and IK to fight again to find out how it ends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":299},{"seriesId":3,"episodeFileId":16765,"seasonNumber":5,"episodeNumber":31,"title":"Too Old","airDate":"2013-08-12","airDateUtc":"2013-08-12T07:00:00Z","overview":"Finn, Jake and Princess Bubblegum discover a talented mutant named Lemonhope at The Pageant of Mutants. Now they must find a way to free him from the lemongrabs.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":300},{"seriesId":3,"episodeFileId":16767,"seasonNumber":5,"episodeNumber":32,"title":"Earth & Water","airDate":"2013-09-02","airDateUtc":"2013-09-02T07:00:00Z","overview":"Princess Bubblegum subjects Flame Princess to a series of tests to gauge FP's fiery tendencies. But when there's an emergency at the treehouse, and PB leaves Cinnamon Bun to watch Flame Princess, her experiment might literally backfire in her face.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":301},{"seriesId":3,"episodeFileId":16768,"seasonNumber":5,"episodeNumber":33,"title":"Time Sandwich","airDate":"2013-09-09","airDateUtc":"2013-09-09T07:00:00Z","overview":"Jake crafts the most delicious sandwich ever, but when Magic Man steals it, Finn must defy the laws of space and time to win back Jake's creation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":302},{"seriesId":3,"episodeFileId":16770,"seasonNumber":5,"episodeNumber":34,"title":"The Vault","airDate":"2013-09-16","airDateUtc":"2013-09-16T07:00:00Z","overview":"When Finn starts sleepwalking and dreaming about the Green Lady he filed away in his memory vault, Jake and BMO help him tap into his repressed memories to uncover a secret past. Who is the Green Lady? And how is she connected to Finn?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":303},{"seriesId":3,"episodeFileId":16773,"seasonNumber":5,"episodeNumber":35,"title":"Love Games","airDate":"2013-09-23","airDateUtc":"2013-09-23T07:00:00Z","overview":"Slime Princess needs a husband or else she'll lose the Slime Kingdom to her obnoxious sis. Finn steps in to save the day, but first they will need to win a series of Love Games to prove to Slime Princess's dad that they are really in love. This is definitely not what Finn signed up for!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":304},{"seriesId":3,"episodeFileId":16774,"seasonNumber":5,"episodeNumber":36,"title":"Dungeon Train","airDate":"2013-09-30","airDateUtc":"2013-09-30T07:00:00Z","overview":"All aboard! Finn and Jake discover a train where every car is a dungeon filled with a new foe for Finn to fight. Jake quickly gets bored and wants to leave, but Finn is having the best time and doesn't want to leave... ever!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":305},{"seriesId":3,"episodeFileId":16777,"seasonNumber":5,"episodeNumber":37,"title":"Box Prince","airDate":"2013-10-07","airDateUtc":"2013-10-07T07:00:00Z","overview":"Finn meets the Box Prince\u2014a cat with a box on its back\u2014and learns that the Box Kingdom has been taken over by an imposter. Finn must therefore help the real Box Prince reclaim the throne.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":306},{"seriesId":3,"episodeFileId":16779,"seasonNumber":5,"episodeNumber":38,"title":"Red Starved","airDate":"2013-10-14","airDateUtc":"2013-10-14T07:00:00Z","overview":"Finn, Jake and Marceline are trapped in an underground cavern with no red in sight. If Marceline doesn't feed, like ASAP, she will turn into a vampiric beast and suck out all of Jake's blood! So, Finn heads off to explore the cave and find something red to satiate her until they can be rescued. But time is running out!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":307},{"seriesId":3,"episodeFileId":16780,"seasonNumber":5,"episodeNumber":39,"title":"We Fixed a Truck","airDate":"2013-10-21","airDateUtc":"2013-10-21T07:00:00Z","overview":"Finn finds an old truck, and Jake calls Banana Man to help with the repairs. But when BMO stays up all night working on the truck, he hears on a spooky radio talk show that Princess Bubblegum is a reptilian replicant. Is it just another one of Starchy's crazy conspiracy theories, or a fact?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":308},{"seriesId":3,"episodeFileId":16783,"seasonNumber":5,"episodeNumber":40,"title":"Play Date","airDate":"2013-11-04","airDateUtc":"2013-11-04T08:00:00Z","overview":"Tired of babysitting Ice King, Finn and Jake call up an old friend to hang out with their annoying houseguest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":309},{"seriesId":3,"episodeFileId":16785,"seasonNumber":5,"episodeNumber":41,"title":"The Pit","airDate":"2013-11-18","airDateUtc":"2013-11-18T08:00:00Z","overview":"Finn needs Lady Rainicorn's help to rescue Jake when he is kidnapped by Kee-Oth the Blood Demon.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":310},{"seriesId":3,"episodeFileId":16787,"seasonNumber":5,"episodeNumber":42,"title":"James","airDate":"2013-11-25","airDateUtc":"2013-11-25T08:00:00Z","overview":"Finn, Jake, and Princess Bubblegum are attacked by nasty goo monsters in the Desert of Wonders.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":311},{"seriesId":3,"episodeFileId":16789,"seasonNumber":5,"episodeNumber":43,"title":"Root Beer Guy","airDate":"2013-12-02","airDateUtc":"2013-12-02T08:00:00Z","overview":"Root Beer Guy works a boring job during the day and tries to write mystery stories at night. But his life is about to change when he witnesses Finn and Jake kidnapping Princess Bubblegum! There's only one problem: no one believes Root Beer Guy...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":312},{"seriesId":3,"episodeFileId":16790,"seasonNumber":5,"episodeNumber":44,"title":"Apple Wedding","airDate":"2014-01-13","airDateUtc":"2014-01-13T08:00:00Z","overview":"Tree Trunks and Mr. Pig are celebrating the wedding of the year.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":313},{"seriesId":3,"episodeFileId":16791,"seasonNumber":5,"episodeNumber":45,"title":"Blade of Grass","airDate":"2014-01-20","airDateUtc":"2014-01-20T08:00:00Z","overview":"Finn and Jake decide it's time for Finn to get a new sword. Finn reluctantly buys a grass sword from a mysterious old man, but the sword turns out to be cursed! And unfortunately for our hero, all sales are final.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":314},{"seriesId":3,"episodeFileId":16792,"seasonNumber":5,"episodeNumber":46,"title":"Rattleballs","airDate":"2014-01-27","airDateUtc":"2014-01-27T08:00:00Z","overview":"Finn practices his sword fighting skills at the candy junkyard, where he meets an old gumball robot named Rattleballs. To Finn's shock, he finds out he's not the master swordsman he thinks he is. What the what?! Finn begs Rattleballs to train him, but he soon discovers his mentor's deep, dark secret... a secret that will ultimately test Finn's loyalty to Princess Bubblegum.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":315},{"seriesId":3,"episodeFileId":16793,"seasonNumber":5,"episodeNumber":47,"title":"The Red Throne","airDate":"2014-02-10","airDateUtc":"2014-02-10T08:00:00Z","overview":"When Flame King breaks out of his prison and takes over the Flame Kingdom again, Flame Princess turns to the one person she believes she can trust... Finn! But will Finn be able to put his feelings for Flame Princess aside long enough to help her reclaim her throne?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":316},{"seriesId":3,"episodeFileId":16794,"seasonNumber":5,"episodeNumber":48,"title":"Betty","airDate":"2014-02-24","airDateUtc":"2014-02-24T08:00:00Z","overview":"After a magic spell backfires, the Ice King reverts back to Simon, and seeks help from Finn, Jake, and Marceline in order to get Betty, his former fianc\u00e9e, back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":317},{"seriesId":3,"episodeFileId":16795,"seasonNumber":5,"episodeNumber":49,"title":"Bad Timing","airDate":"2014-03-03","airDateUtc":"2014-03-03T08:00:00Z","overview":"Love is in the air when Lumpy Space Princess reconnects with an old classmate, but will her jealousy get in the way of finding true love?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":318},{"seriesId":3,"episodeFileId":16796,"seasonNumber":5,"episodeNumber":50,"title":"Lemonhope (1)","airDate":"2014-03-10","airDateUtc":"2014-03-10T07:00:00Z","overview":"Tired of all of Princess Bubblegum's talk about \"responsibility,\" Lemonhope yearns for true freedom. So he sets off on the greatest adventure of his lemony life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":319},{"seriesId":3,"episodeFileId":16797,"seasonNumber":5,"episodeNumber":51,"title":"Lemonhope (2)","airDate":"2014-03-10","airDateUtc":"2014-03-10T07:10:00Z","overview":"Though Lemonhope finds refuge from the desert with monster hunter Phlannel Boxingday, he might not be able to escape the ghosts of his past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":320},{"seriesId":3,"episodeFileId":16798,"seasonNumber":5,"episodeNumber":52,"title":"Billy's Bucket List","airDate":"2014-03-17","airDateUtc":"2014-03-17T07:00:00Z","overview":"Finn finds the hero Billy's bucket list and decides to complete the unfinished items as a final tribute.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":321},{"seriesId":3,"episodeFileId":16816,"seasonNumber":0,"episodeNumber":3,"title":"How an Idea Becomes Adventure Time","airDate":"2014-04-14","airDateUtc":"2014-04-14T07:00:00Z","overview":"A behind-the-scenes look at how an episode of Adventure Time is created.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":154},{"seriesId":3,"episodeFileId":16529,"seasonNumber":6,"episodeNumber":1,"title":"Wake Up","airDate":"2014-04-21","airDateUtc":"2014-04-21T07:00:00Z","overview":"In order to find Finn's father, Finn and Jake must commit a cosmic crime...unless the Lich beats them to it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":322},{"seriesId":3,"episodeFileId":16532,"seasonNumber":6,"episodeNumber":2,"title":"Escape From the Citadel","airDate":"2014-04-21","airDateUtc":"2014-04-21T07:10:00Z","overview":"Finn and Jake follow the Lich to the Citadel, where Finn meets his long lost dad. But just how far does the apple fall from the tree?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":323},{"seriesId":3,"episodeFileId":16546,"seasonNumber":6,"episodeNumber":3,"title":"James II","airDate":"2014-04-28","airDateUtc":"2014-04-28T07:00:00Z","overview":"Finn and Jake discover that Clone James has been faking his own death to collect medals. Now there are 25 Jameses running amok!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":324},{"seriesId":3,"episodeFileId":16556,"seasonNumber":6,"episodeNumber":4,"title":"The Tower","airDate":"2014-05-05","airDateUtc":"2014-05-05T07:00:00Z","overview":"Finn doesn't like any of the new arms the princesses give him, so he builds a tower into space to find his dad and get his old arm back. But are his hopes up a little too high?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":325},{"seriesId":3,"episodeFileId":16564,"seasonNumber":6,"episodeNumber":5,"title":"Sad Face","airDate":"2014-05-12","airDateUtc":"2014-05-12T07:00:00Z","overview":"Once a month, while Jake's asleep, his tail stretches out of the tree house to go work as a clown in a traveling bug circus.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":326},{"seriesId":3,"episodeFileId":16576,"seasonNumber":6,"episodeNumber":6,"title":"Breezy","airDate":"2014-06-05","airDateUtc":"2014-06-05T07:00:00Z","overview":"With a friendly bee named \"Breezy\" as his wingman, Finn decides to get back into the dating game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":327},{"seriesId":3,"episodeFileId":16581,"seasonNumber":6,"episodeNumber":7,"title":"Food Chain","airDate":"2014-06-12","airDateUtc":"2014-06-12T07:00:00Z","overview":"On a field trip to the Candy Kingdom Museum of Natural History, Finn and Jake learn about the food chain by becoming the food chain!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":328},{"seriesId":3,"episodeFileId":16593,"seasonNumber":6,"episodeNumber":8,"title":"Furniture & Meat","airDate":"2014-06-19","airDateUtc":"2014-06-19T07:00:00Z","overview":"Big money problems send Finn and Jake to Wildberry Kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":329},{"seriesId":3,"episodeFileId":16604,"seasonNumber":6,"episodeNumber":9,"title":"The Prince Who Wanted Everything","airDate":"2014-06-26","airDateUtc":"2014-06-26T07:00:00Z","overview":"The beautiful and sensitive Lumpy Space Prince flees his cruel parents to start a new life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":330},{"seriesId":3,"episodeFileId":16611,"seasonNumber":6,"episodeNumber":10,"title":"Something Big","airDate":"2014-07-03","airDateUtc":"2014-07-03T07:00:00Z","overview":"Princess Bubblegum must rally her forces when the Candy Kingdom is rocked by a massive assault.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":331},{"seriesId":3,"episodeFileId":16629,"seasonNumber":6,"episodeNumber":11,"title":"Little Brother","airDate":"2014-07-10","airDateUtc":"2014-07-10T07:00:00Z","overview":"Shelby is thrust into a new role after a party-related accident.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":332},{"seriesId":3,"episodeFileId":16638,"seasonNumber":6,"episodeNumber":12,"title":"Ocarina","airDate":"2014-07-17","airDateUtc":"2014-07-17T07:00:00Z","overview":"Fed up with Jake's antics, his son Kim Kil Whan takes action.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":333},{"seriesId":3,"episodeFileId":16643,"seasonNumber":6,"episodeNumber":13,"title":"Thanks for the Crabapples, Giuseppe","airDate":"2014-07-24","airDateUtc":"2014-07-24T07:00:00Z","overview":"Ice King and a band of misfit wizards go on a mystical road trip.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":334},{"seriesId":3,"episodeFileId":16656,"seasonNumber":6,"episodeNumber":14,"title":"Princess Day","airDate":"2014-07-31","airDateUtc":"2014-07-31T07:00:00Z","overview":"It's Princess Day in Ooo! You know what that means? Yep, LSP and Marceline team up to prank Breakfast Princess!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":335},{"seriesId":3,"episodeFileId":16664,"seasonNumber":6,"episodeNumber":15,"title":"Nemesis","airDate":"2014-08-07","airDateUtc":"2014-08-07T07:00:00Z","overview":"A shadowy figure named Peace Master targets the Candy Kingdom elite.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":336},{"seriesId":3,"episodeFileId":16670,"seasonNumber":6,"episodeNumber":16,"title":"Joshua & Margaret Investigations","airDate":"2014-08-14","airDateUtc":"2014-08-14T07:00:00Z","overview":"Finn and Jake's parents hunt an unearthly menace in the woods.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":337},{"seriesId":3,"episodeFileId":16678,"seasonNumber":6,"episodeNumber":17,"title":"Ghost Fly","airDate":"2014-10-28","airDateUtc":"2014-10-28T07:00:00Z","overview":"Jake and the tree house are haunted by a vengeful specter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":338},{"seriesId":3,"episodeFileId":16686,"seasonNumber":6,"episodeNumber":18,"title":"Everything's Jake","airDate":"2014-11-24","airDateUtc":"2014-11-24T08:00:00Z","overview":"Jake finds himself trapped in a world made of himself.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":339},{"seriesId":3,"episodeFileId":16695,"seasonNumber":6,"episodeNumber":19,"title":"Is That You?","airDate":"2014-11-25","airDateUtc":"2014-11-25T08:00:00Z","overview":"Following an ally's memorial service, Jake begins acting strangely.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":340},{"seriesId":3,"episodeFileId":16703,"seasonNumber":6,"episodeNumber":20,"title":"Jake the Brick","airDate":"2014-11-26","airDateUtc":"2014-11-26T08:00:00Z","overview":"Jake wants to fulfill a bizarre lifelong ambition.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":341},{"seriesId":3,"episodeFileId":16710,"seasonNumber":6,"episodeNumber":21,"title":"Dentist","airDate":"2014-11-28","airDateUtc":"2014-11-28T08:00:00Z","overview":"When Finn's toothache gets too much to take, he has no choice but to go see dentist.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":342},{"seriesId":3,"episodeFileId":16716,"seasonNumber":6,"episodeNumber":22,"title":"The Cooler","airDate":"2014-12-04","airDateUtc":"2014-12-04T08:00:00Z","overview":"The Fire Kingdom is struck by a natural disaster and the Flame Princess seeks help from an unlikely ally.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":343},{"seriesId":3,"episodeFileId":16729,"seasonNumber":6,"episodeNumber":23,"title":"The Pajama War","airDate":"2015-01-08","airDateUtc":"2015-01-08T08:00:00Z","overview":"A Candy Kingdom slumber party devolves into panic when Finn and Princess Bubblegum vanish.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":344},{"seriesId":3,"episodeFileId":16735,"seasonNumber":6,"episodeNumber":24,"title":"Evergreen","airDate":"2015-01-15","airDateUtc":"2015-01-15T08:00:00Z","overview":"In a distant age, the wizard Evergreen quests to save the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":345},{"seriesId":3,"episodeFileId":16743,"seasonNumber":6,"episodeNumber":25,"title":"Astral Plane","airDate":"2015-01-22","airDateUtc":"2015-01-22T08:00:00Z","overview":"Finn has an out-of-body experience that takes him all over Ooo and beyond.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":346},{"seriesId":3,"episodeFileId":16749,"seasonNumber":6,"episodeNumber":26,"title":"Gold Stars","airDate":"2015-01-29","airDateUtc":"2015-01-29T08:00:00Z","overview":"Tree Trunks and Mr. Pig's child, Sweet P, runs into trouble on his first day of school.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":347},{"seriesId":3,"episodeFileId":16755,"seasonNumber":6,"episodeNumber":27,"title":"The Visitor","airDate":"2015-02-05","airDateUtc":"2015-02-05T08:00:00Z","overview":"A vision leads Finn to a friendly civilization and a mysterious crash site.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":348},{"seriesId":3,"episodeFileId":16758,"seasonNumber":6,"episodeNumber":28,"title":"The Mountain","airDate":"2015-02-12","airDateUtc":"2015-02-12T08:00:00Z","overview":"Lemongrab and Finn go on an expedition through the Mountain of Matthew.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":349},{"seriesId":3,"episodeFileId":16760,"seasonNumber":6,"episodeNumber":29,"title":"Dark Purple","airDate":"2015-02-19","airDateUtc":"2015-02-19T08:00:00Z","overview":"Susan Strong and her allies infiltrate the mysterious Super Porp factory.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":350},{"seriesId":3,"episodeFileId":16763,"seasonNumber":6,"episodeNumber":30,"title":"The Diary","airDate":"2015-02-26","airDateUtc":"2015-02-26T08:00:00Z","overview":"Jake's son TV discovers a lost diary and sets out to solve a decades-old mystery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":351},{"seriesId":3,"episodeFileId":16764,"seasonNumber":6,"episodeNumber":31,"title":"Walnuts & Rain","airDate":"2015-03-05","airDateUtc":"2015-03-05T08:00:00Z","overview":"Finn and Jake stumble into two different holes and meet two different fates.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":352},{"seriesId":3,"episodeFileId":16766,"seasonNumber":6,"episodeNumber":32,"title":"Friends Forever","airDate":"2015-04-16","airDateUtc":"2015-04-16T07:00:00Z","overview":"Ice King has a plan to form a perfect circle of confidants.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":353},{"seriesId":3,"episodeFileId":16769,"seasonNumber":6,"episodeNumber":33,"title":"Jermaine","airDate":"2015-04-23","airDateUtc":"2015-04-23T07:00:00Z","overview":"After a chilling dream encounter, Finn & Jake are determined to reconnect with their reclusive brother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":354},{"seriesId":3,"episodeFileId":16771,"seasonNumber":6,"episodeNumber":34,"title":"Chips and Ice Cream","airDate":"2015-04-30","airDateUtc":"2015-04-30T07:00:00Z","overview":"BMO\u2019s favorite artists find a new home in the treehouse","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":355},{"seriesId":3,"episodeFileId":16772,"seasonNumber":6,"episodeNumber":35,"title":"Graybles 1000+","airDate":"2015-05-07","airDateUtc":"2015-05-07T07:00:00Z","overview":"Marooned on an alien world, Cuber must rely on his bag of Graybles to survive.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":356},{"seriesId":3,"episodeFileId":16775,"seasonNumber":6,"episodeNumber":36,"title":"Hoots","airDate":"2015-05-14","airDateUtc":"2015-05-14T07:00:00Z","overview":"A charismatic stranger in Finn's dream leads Cosmic Owl to shirk his duties.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":357},{"seriesId":3,"episodeFileId":16776,"seasonNumber":6,"episodeNumber":37,"title":"Water Park Prank","airDate":"2015-05-21","airDateUtc":"2015-05-21T07:00:00Z","overview":"After rescuing Princess Orangutan from Daddy-sad-heads, Finn and Jake head to a post-apocalyptic water park for a day of fun.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":358},{"seriesId":3,"episodeFileId":16778,"seasonNumber":6,"episodeNumber":38,"title":"You Forgot Your Floaties","airDate":"2015-06-01","airDateUtc":"2015-06-01T07:00:00Z","overview":"Finn and Jake storm Magic Man's house to rescue his new apprentice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":359},{"seriesId":3,"episodeFileId":16781,"seasonNumber":6,"episodeNumber":39,"title":"Be Sweet","airDate":"2015-06-02","airDateUtc":"2015-06-02T07:00:00Z","overview":"A fed up Lumpy Space Princess leaves the woods for a glamorous career in babysitting.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":360},{"seriesId":3,"episodeFileId":16782,"seasonNumber":6,"episodeNumber":40,"title":"Orgalorg","airDate":"2015-06-03","airDateUtc":"2015-06-03T07:00:00Z","overview":"After a walrus race accident, Gunther starts to experience strange visions.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":361},{"seriesId":3,"episodeFileId":16784,"seasonNumber":6,"episodeNumber":41,"title":"On the Lam","airDate":"2015-06-04","airDateUtc":"2015-06-04T07:00:00Z","overview":"Finn's dad Martin the Human fights for freedom on a strange new planet!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":362},{"seriesId":3,"episodeFileId":16786,"seasonNumber":6,"episodeNumber":42,"title":"Hot Diggity Doom","airDate":"2015-06-05","airDateUtc":"2015-06-05T07:00:00Z","overview":"It's election day in the Candy Kingdom but Princess Bubblegum's attention is diverted by a mysterious presence in the sky.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":363},{"seriesId":3,"episodeFileId":16788,"seasonNumber":6,"episodeNumber":43,"title":"The Comet","airDate":"2015-06-05","airDateUtc":"2015-06-05T07:10:00Z","overview":"Finn, Jake and Orgalorg converge with the comet and meet their destiny.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":364},{"seriesId":3,"episodeFileId":16817,"seasonNumber":0,"episodeNumber":4,"title":"All's Well That Rats Swell","airDate":"2015-07-06","airDateUtc":"2015-07-06T07:00:00Z","overview":"BMO wages war against a rat in the tree house, and Finn and Jake get sick.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":155},{"seriesId":3,"episodeFileId":16818,"seasonNumber":0,"episodeNumber":5,"title":"Have You Seen the Muffin Mess","airDate":"2015-08-03","airDateUtc":"2015-08-03T07:00:00Z","overview":"Finn and Jake help Princess Bubblegum battle a plague.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":156},{"seriesId":3,"episodeFileId":16819,"seasonNumber":0,"episodeNumber":6,"title":"Sow, Do You Like Them Apples","airDate":"2015-10-01","airDateUtc":"2015-10-01T07:00:00Z","overview":"The ice king goes searching for food.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":157},{"seriesId":3,"episodeFileId":16820,"seasonNumber":0,"episodeNumber":7,"title":"The Gift That Reaps Giving","airDate":"2015-11-01","airDateUtc":"2015-11-01T08:00:00Z","overview":"Death creates a mixtape for his girlfriend.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":158},{"seriesId":3,"episodeFileId":16527,"seasonNumber":7,"episodeNumber":1,"title":"Bonnie and Neddy","airDate":"2015-11-02","airDateUtc":"2015-11-02T08:00:00Z","overview":"Under orders from the King of Ooo, Finn and Jake discover one of Ooo's greatest secrets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":365},{"seriesId":3,"episodeFileId":16535,"seasonNumber":7,"episodeNumber":2,"title":"Varmints","airDate":"2015-11-03","airDateUtc":"2015-11-03T08:00:00Z","overview":"Bubblegum turns to Marceline for help when something threatens the citizens of her homestead.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":366},{"seriesId":3,"episodeFileId":16549,"seasonNumber":7,"episodeNumber":3,"title":"Cherry Cream Soda","airDate":"2015-11-04","airDateUtc":"2015-11-04T08:00:00Z","overview":"The arrival of a visitor causes Cherry Cream Soda's life to fall flat.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":367},{"seriesId":3,"episodeFileId":16554,"seasonNumber":7,"episodeNumber":4,"title":"Mama Said","airDate":"2015-11-05","airDateUtc":"2015-11-05T08:00:00Z","overview":"The loyalty of Finn and Jake comes into question when the King of Ooo orders them to intercept a flying mushroom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":368},{"seriesId":3,"episodeFileId":16568,"seasonNumber":7,"episodeNumber":5,"title":"Football","airDate":"2015-11-06","airDateUtc":"2015-11-06T08:00:00Z","overview":"BMO and Football decide upon a deal, but one of them cannot keep up their end of the bargain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":369},{"seriesId":3,"episodeFileId":16580,"seasonNumber":7,"episodeNumber":6,"title":"Stakes: Marceline the Vampire Queen (1)","airDate":"2015-11-16","airDateUtc":"2015-11-16T08:00:00Z","overview":"Finn and Jake hunt a shadowy predator and Marceline asks Princess Bubblegum for a favor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":370},{"seriesId":3,"episodeFileId":16588,"seasonNumber":7,"episodeNumber":7,"title":"Stakes: Everything Stays (2)","airDate":"2015-11-16","airDateUtc":"2015-11-16T08:10:00Z","overview":"Marceline looks back on her life on her last day.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":371},{"seriesId":3,"episodeFileId":16600,"seasonNumber":7,"episodeNumber":8,"title":"Stakes: Vamps About (3)","airDate":"2015-11-17","airDateUtc":"2015-11-17T08:00:00Z","overview":"Old foes surface from Marceline's past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":372},{"seriesId":3,"episodeFileId":16607,"seasonNumber":7,"episodeNumber":9,"title":"Stakes: The Empress Eyes (4)","airDate":"2015-11-17","airDateUtc":"2015-11-17T08:10:00Z","overview":"An old adversary targets the Ice Kingdom and Marceline has to save Simon.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":373},{"seriesId":3,"episodeFileId":16619,"seasonNumber":7,"episodeNumber":10,"title":"Stakes: May I Come In? (5)","airDate":"2015-11-18","airDateUtc":"2015-11-18T08:00:00Z","overview":"The gang search for Vamps.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":374},{"seriesId":3,"episodeFileId":16626,"seasonNumber":7,"episodeNumber":11,"title":"Stakes: Take Her Back (6)","airDate":"2015-11-18","airDateUtc":"2015-11-18T08:10:00Z","overview":"Princess Bubblegum searches for a cure for Marceline and Finn and Jake battle a vamp.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":375},{"seriesId":3,"episodeFileId":16636,"seasonNumber":7,"episodeNumber":12,"title":"Stakes: Checkmate (7)","airDate":"2015-11-19","airDateUtc":"2015-11-19T08:00:00Z","overview":"Marceline's archenemy visits and makes an odd proposal right before battle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":376},{"seriesId":3,"episodeFileId":16648,"seasonNumber":7,"episodeNumber":13,"title":"Stakes: The Dark Cloud (8)","airDate":"2015-11-19","airDateUtc":"2015-11-19T08:10:00Z","overview":"The final confrontation begins.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":377},{"seriesId":3,"episodeFileId":16651,"seasonNumber":7,"episodeNumber":14,"title":"The More You Moe, The Moe You Know (1)","airDate":"2015-12-03","airDateUtc":"2015-12-03T08:00:00Z","overview":"It's BMO's birthday, and he gets to have his creator MO pay him a visit. Mo gives BMO a solo quest to go the factory and back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":378},{"seriesId":3,"episodeFileId":16651,"seasonNumber":7,"episodeNumber":15,"title":"The More You Moe, The Moe You Know (2)","airDate":"2015-12-03","airDateUtc":"2015-12-03T08:10:00Z","overview":"BMO learns that all the others MO have been merged into 1 giant being, and of the brother he never knew he had.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":379},{"seriesId":3,"episodeFileId":16674,"seasonNumber":7,"episodeNumber":16,"title":"Summer Showers","airDate":"2016-01-07","airDateUtc":"2016-01-07T08:00:00Z","overview":"Viola tries to get a part in LSP's play, but gets made into LSP's personal assistant instead.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":380},{"seriesId":3,"episodeFileId":16677,"seasonNumber":7,"episodeNumber":17,"title":"Angel Face","airDate":"2016-01-11","airDateUtc":"2016-01-11T08:00:00Z","overview":"BMO convinces his friends to join him in a live action cowboy role-playing game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":381},{"seriesId":3,"episodeFileId":16689,"seasonNumber":7,"episodeNumber":18,"title":"President Porpoise is Missing!","airDate":"2016-01-12","airDateUtc":"2016-01-12T08:00:00Z","overview":"Finn and Jake attempt to track down President Porpoise before Vice President Blowfish takes over.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":382},{"seriesId":3,"episodeFileId":16697,"seasonNumber":7,"episodeNumber":19,"title":"Blank-Eyed Girl","airDate":"2016-01-13","airDateUtc":"2016-01-13T08:00:00Z","overview":"One very spooky night, Finn and Jake come face-to-face with an urban myth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":383},{"seriesId":3,"episodeFileId":16699,"seasonNumber":7,"episodeNumber":20,"title":"Bad Jubies","airDate":"2016-01-14","airDateUtc":"2016-01-14T08:00:00Z","overview":"Finn, Jake, LSP and BMO seek shelter as they contend with some deadly weather.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":384},{"seriesId":3,"episodeFileId":16821,"seasonNumber":0,"episodeNumber":8,"title":"Good Jubies: The Making of Bad Jubies","airDate":"2016-01-15","airDateUtc":"2016-01-15T08:00:00Z","overview":"A behind-the-scenes look at the making of Season 7, Episode 20 \"Bad Jubies\".","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":159},{"seriesId":3,"episodeFileId":16712,"seasonNumber":7,"episodeNumber":21,"title":"King's Ransom","airDate":"2016-01-15","airDateUtc":"2016-01-15T08:00:00Z","overview":"Ice King suffers a heartbreaking loss and it's up to Finn and Jake to find the culprit.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":385},{"seriesId":3,"episodeFileId":16722,"seasonNumber":7,"episodeNumber":22,"title":"Scamps","airDate":"2016-01-21","airDateUtc":"2016-01-21T08:00:00Z","overview":"Finn takes a group of at-risk Candy Kingdom youth on a camping trip they'll never forget.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":386},{"seriesId":3,"episodeFileId":16723,"seasonNumber":7,"episodeNumber":23,"title":"Crossover","airDate":"2016-01-28","airDateUtc":"2016-01-28T08:00:00Z","overview":"Finn and Jake crossover into Farmworld Finn's dimension.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":387},{"seriesId":3,"episodeFileId":16738,"seasonNumber":7,"episodeNumber":24,"title":"The Hall of Egress","airDate":"2016-03-05","airDateUtc":"2016-03-05T08:00:00Z","overview":"Trapped and alone, Finn must unravel the riddle of the weird cave with no exit.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":388},{"seriesId":3,"episodeFileId":16742,"seasonNumber":7,"episodeNumber":25,"title":"Flute Spell","airDate":"2016-03-12","airDateUtc":"2016-03-12T08:00:00Z","overview":"Finn has secret meetings with a powerful wizard.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":389},{"seriesId":3,"episodeFileId":16753,"seasonNumber":7,"episodeNumber":26,"title":"The Thin Yellow Line","airDate":"2016-03-19","airDateUtc":"2016-03-19T07:00:00Z","overview":"Finn and Jake infiltrate the Banana Guard ranks and stumble upon a conspiracy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":390},{"seriesId":3,"episodeFileId":16525,"seasonNumber":8,"episodeNumber":1,"title":"Broke His Crown","airDate":"2016-03-26","airDateUtc":"2016-03-26T07:00:00Z","overview":"When Ice King's magic crown goes haywire, Finn and Jake resort to extreme measures to help him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":404},{"seriesId":3,"episodeFileId":16822,"seasonNumber":0,"episodeNumber":9,"title":"Frog Seasons (1): Spring","airDate":"2016-04-02","airDateUtc":"2016-04-02T07:00:00Z","overview":"Finn and Jake are compelled to follow a frog carrying a crown.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":160},{"seriesId":3,"episodeFileId":16540,"seasonNumber":8,"episodeNumber":2,"title":"Don't Look","airDate":"2016-04-02","airDateUtc":"2016-04-02T07:00:00Z","overview":"At the top of Dead Mountain, Jake discovers a treasure that comes with a terrible price.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":405},{"seriesId":3,"episodeFileId":16823,"seasonNumber":0,"episodeNumber":10,"title":"Frog Seasons (2): Summer","airDate":"2016-04-09","airDateUtc":"2016-04-09T07:00:00Z","overview":"Finn and Jake are in for a surprise when they force the hand of fate.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":161},{"seriesId":3,"episodeFileId":16541,"seasonNumber":8,"episodeNumber":3,"title":"Beyond the Grotto","airDate":"2016-04-09","airDateUtc":"2016-04-09T07:00:00Z","overview":"In pursuit of a runaway Sea Lord, Finn and Jake are led down a whirlpool into a curious new land.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":406},{"seriesId":3,"episodeFileId":16824,"seasonNumber":0,"episodeNumber":11,"title":"Frog Seasons (3): Autumn","airDate":"2016-04-16","airDateUtc":"2016-04-16T07:00:00Z","overview":"Finn and Jake discover the power held by the crown.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":162},{"seriesId":3,"episodeFileId":16555,"seasonNumber":8,"episodeNumber":4,"title":"Lady Rainicorn of the Crystal Dimension","airDate":"2016-04-16","airDateUtc":"2016-04-16T07:00:00Z","overview":"Jake's son TV finds a hidden box and draws the attention of a super cool Rainicorn named Leigh.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":407},{"seriesId":3,"episodeFileId":16825,"seasonNumber":0,"episodeNumber":12,"title":"Frog Seasons (4): Winter","airDate":"2016-04-23","airDateUtc":"2016-04-23T07:00:00Z","overview":"Finn and Jake follow the frog into the Ice Kingdom. Will they finally bear witness to the purpose of the crown?","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":163},{"seriesId":3,"episodeFileId":16565,"seasonNumber":8,"episodeNumber":5,"title":"I Am a Sword","airDate":"2016-04-23","airDateUtc":"2016-04-23T07:00:00Z","overview":"Finn starts having guilt nightmares about his missing Finn Swords\u2026 but are the nightmares real?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":408},{"seriesId":3,"episodeFileId":16579,"seasonNumber":8,"episodeNumber":6,"title":"Bun Bun","airDate":"2016-05-05","airDateUtc":"2016-05-05T07:00:00Z","overview":"Finn brings a special delivery for Cinnamon Bun to the Fire Kingdom but it may come with a dangerous cost.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":409},{"seriesId":3,"episodeFileId":16584,"seasonNumber":8,"episodeNumber":7,"title":"Normal Man","airDate":"2016-05-12","airDateUtc":"2016-05-12T07:00:00Z","overview":"Normal Man asks for Finn and Jake's help to rescue his brother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":410},{"seriesId":3,"episodeFileId":16598,"seasonNumber":8,"episodeNumber":8,"title":"Elemental","airDate":"2016-05-19","airDateUtc":"2016-05-19T07:00:00Z","overview":"Ice King digs up an item buried underneath the Ice Kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":411},{"seriesId":3,"episodeFileId":16609,"seasonNumber":8,"episodeNumber":9,"title":"Five Short Tables","airDate":"2016-05-26","airDateUtc":"2016-05-26T07:00:00Z","overview":"Fionna and Cake go on a cooking adventure to take Cake's art to a new level.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":412},{"seriesId":3,"episodeFileId":16618,"seasonNumber":8,"episodeNumber":10,"title":"The Music Hole","airDate":"2016-06-23","airDateUtc":"2016-06-23T07:00:00Z","overview":"Finn hears a mysterious song while judging a Battle of the Bands.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":413},{"seriesId":3,"episodeFileId":16625,"seasonNumber":8,"episodeNumber":11,"title":"Daddy-Daughter Card Wars","airDate":"2016-07-07","airDateUtc":"2016-07-07T07:00:00Z","overview":"Jake needs his daughter's help in an underground Card Wars tourney to move on from his embarrassing past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":414},{"seriesId":3,"episodeFileId":16826,"seasonNumber":0,"episodeNumber":13,"title":"Frog Seasons (5): Spring (Again)","airDate":"2016-09-02","airDateUtc":"2016-09-02T07:00:00Z","overview":"Finn and Jake come full circle in their pursuit of frog royalty.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":164},{"seriesId":3,"episodeFileId":16639,"seasonNumber":8,"episodeNumber":12,"title":"Preboot","airDate":"2016-11-19","airDateUtc":"2016-11-19T08:00:00Z","overview":"During an excavation of human artifacts, Finn, Jake, and Susan are greeted by a mysterious new stranger who may hold the key to the past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":415},{"seriesId":3,"episodeFileId":16647,"seasonNumber":8,"episodeNumber":13,"title":"Reboot","airDate":"2016-11-19","airDateUtc":"2016-11-19T08:10:00Z","overview":"Finn and Jake take on one of the fiercest enemies they've faced when a powerful ally goes rogue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":416},{"seriesId":3,"episodeFileId":16658,"seasonNumber":8,"episodeNumber":14,"title":"Two Swords","airDate":"2017-01-23","airDateUtc":"2017-01-23T08:00:00Z","overview":"Finn and Jake contend with a mysterious, but familiar, new being.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":417},{"seriesId":3,"episodeFileId":16666,"seasonNumber":8,"episodeNumber":15,"title":"Do No Harm","airDate":"2017-01-23","airDateUtc":"2017-01-23T08:10:00Z","overview":"Finn makes amends at the Candy Hospital while Jake tries to connect with their unexpected houseguest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12418},{"seriesId":3,"episodeFileId":16673,"seasonNumber":8,"episodeNumber":16,"title":"Wheels","airDate":"2017-01-24","airDateUtc":"2017-01-24T08:00:00Z","overview":"Kim Kil Whan is worried about his daughter's future and asks Jake for some parental advice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12419},{"seriesId":3,"episodeFileId":16681,"seasonNumber":8,"episodeNumber":17,"title":"High Strangeness","airDate":"2017-01-25","airDateUtc":"2017-01-25T08:00:00Z","overview":"An otherworldly encounter puts Tree Trunks on the trail of a conspiracy in the Candy Kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12420},{"seriesId":3,"episodeFileId":16690,"seasonNumber":8,"episodeNumber":18,"title":"Horse and Ball","airDate":"2017-01-26","airDateUtc":"2017-01-26T08:00:00Z","overview":"When disaster befalls James Baxter, it's up to Finn and Jake to help him pick up the pieces.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12421},{"seriesId":3,"episodeFileId":16698,"seasonNumber":8,"episodeNumber":19,"title":"Jelly Beans Have Power","airDate":"2017-01-27","airDateUtc":"2017-01-27T08:00:00Z","overview":"Princess Bubblegum's scientific mind must wrestle with her Elemental magic potential when she's faced with a Crystal Entity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12422},{"seriesId":3,"episodeFileId":16706,"seasonNumber":8,"episodeNumber":20,"title":"Islands: The Invitation (1)","airDate":"2017-01-30","airDateUtc":"2017-01-30T08:00:00Z","overview":"A mysterious craft invades Ooo and Finn believes it may hold the secrets to his past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12423},{"seriesId":3,"episodeFileId":16713,"seasonNumber":8,"episodeNumber":21,"title":"Islands: Whipple the Happy Dragon (2)","airDate":"2017-01-30","airDateUtc":"2017-01-30T08:10:00Z","overview":"Finn, Jake, and Susan set sail on a ocean voyage full of wonders and danger.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12424},{"seriesId":3,"episodeFileId":16721,"seasonNumber":8,"episodeNumber":22,"title":"Islands: Mysterious Island (3)","airDate":"2017-01-31","airDateUtc":"2017-01-31T08:00:00Z","overview":"After waking up alone and shipwrecked, Finn investigates a bizarre island in search of his friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12425},{"seriesId":3,"episodeFileId":16730,"seasonNumber":8,"episodeNumber":23,"title":"Islands: Imaginary Resources (4)","airDate":"2017-01-31","airDateUtc":"2017-01-31T08:10:00Z","overview":"Finn and Jake travel to a land where reality has been redesigned and improved.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12426},{"seriesId":3,"episodeFileId":16737,"seasonNumber":8,"episodeNumber":24,"title":"Islands: Hide and Seek (5)","airDate":"2017-02-01","airDateUtc":"2017-02-01T08:00:00Z","overview":"While exploring some futuristic ruins, Susan sees glimpses of a familiar girl.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12427},{"seriesId":3,"episodeFileId":16745,"seasonNumber":8,"episodeNumber":25,"title":"Islands: Min & Marty (6)","airDate":"2017-02-01","airDateUtc":"2017-02-01T08:10:00Z","overview":"An unexpected revelation from Susan leads Finn closer to answers about his past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12428},{"seriesId":3,"episodeFileId":16754,"seasonNumber":8,"episodeNumber":26,"title":"Islands: Helpers (7)","airDate":"2017-02-02","airDateUtc":"2017-02-02T08:00:00Z","overview":"Finn and his friends journey to a last refuge called Founders Island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12429},{"seriesId":3,"episodeFileId":16757,"seasonNumber":8,"episodeNumber":27,"title":"Islands: The Light Cloud (8)","airDate":"2017-02-02","airDateUtc":"2017-02-02T08:10:00Z","overview":"Finn confronts the power behind Founders Island, but will he ever return home to Ooo?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12430},{"seriesId":3,"episodeFileId":16526,"seasonNumber":9,"episodeNumber":1,"title":"Orb","airDate":"2017-04-21","airDateUtc":"2017-04-21T07:00:00Z","overview":"Finn, Jake and BMO take a nap. A mysterious black orb in the sky begins to subject the three to strange dreams that quickly become nightmarish.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":418},{"seriesId":3,"episodeFileId":16538,"seasonNumber":9,"episodeNumber":2,"title":"Elements: Skyhooks (1)","airDate":"2017-04-24","airDateUtc":"2017-04-24T07:00:00Z","overview":"Finn, Jake and BMO return to Ooo and discover that the entire kingdom has been drastically transformed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":419},{"seriesId":3,"episodeFileId":16550,"seasonNumber":9,"episodeNumber":3,"title":"Elements: Bespoken For (2)","airDate":"2017-04-24","airDateUtc":"2017-04-24T07:10:00Z","overview":"Ice King explains what happened while Finn and Jake were away.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":420},{"seriesId":3,"episodeFileId":16560,"seasonNumber":9,"episodeNumber":4,"title":"Elements: Winter Light (3)","airDate":"2017-04-25","airDateUtc":"2017-04-25T07:00:00Z","overview":"Finn, Jake and Ice King travel to the Ice World and break through the large ice dome covering the center of the land.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":421},{"seriesId":3,"episodeFileId":16570,"seasonNumber":9,"episodeNumber":5,"title":"Elements: Cloudy (4)","airDate":"2017-04-25","airDateUtc":"2017-04-25T07:10:00Z","overview":"Jake tucks him and himself into a cloud.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":422},{"seriesId":3,"episodeFileId":16575,"seasonNumber":9,"episodeNumber":6,"title":"Elements: Slime Central (5)","airDate":"2017-04-26","airDateUtc":"2017-04-26T07:00:00Z","overview":"Finn and Jake arrive in Slime Kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":423},{"seriesId":3,"episodeFileId":16586,"seasonNumber":9,"episodeNumber":7,"title":"Elements: Happy Warrior (6)","airDate":"2017-04-26","airDateUtc":"2017-04-26T07:10:00Z","overview":"Finn, Lumpy Space Princess, and Gunter arrive in Fire Kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":424},{"seriesId":3,"episodeFileId":16595,"seasonNumber":9,"episodeNumber":8,"title":"Elements: Hero Heart (7)","airDate":"2017-04-27","airDateUtc":"2017-04-27T07:00:00Z","overview":"Lumpy Space Princess chases Finn. Ice King and Betty try to intervene.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":425},{"seriesId":3,"episodeFileId":16608,"seasonNumber":9,"episodeNumber":9,"title":"Elements: Skyhooks II (8)","airDate":"2017-04-27","airDateUtc":"2017-04-27T07:10:00Z","overview":"Ice King accidentally causes Betty to get transported to Mars. Lumpy Space Princess rescues Finn.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":426},{"seriesId":3,"episodeFileId":16620,"seasonNumber":9,"episodeNumber":10,"title":"Abstract","airDate":"2017-07-17","airDateUtc":"2017-07-17T07:00:00Z","overview":"After Jake has a bizarre dream about Jermaine painting abstract art, he decides to go look for him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":427},{"seriesId":3,"episodeFileId":16627,"seasonNumber":9,"episodeNumber":11,"title":"Ketchup","airDate":"2017-07-18","airDateUtc":"2017-07-18T07:00:00Z","overview":"Marceline is unexpectedly visited by BMO, and asks BMO to download a USB drive.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":428},{"seriesId":3,"episodeFileId":16637,"seasonNumber":9,"episodeNumber":12,"title":"Fionna and Cake and Fionna","airDate":"2017-07-19","airDateUtc":"2017-07-19T07:00:00Z","overview":"At a Fionna and Cake book reading by Ice King, an old woman claiming to be Fionna arrives with a tape of an early Fionna and Cake adventure. Ice King is enamored and invites her to stay with him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":429},{"seriesId":3,"episodeFileId":16650,"seasonNumber":9,"episodeNumber":13,"title":"Whispers","airDate":"2017-07-20","airDateUtc":"2017-07-20T07:00:00Z","overview":"Finn and Fern encounter Sweet P, who was running away from home after having a nightmare.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":430},{"seriesId":3,"episodeFileId":16659,"seasonNumber":9,"episodeNumber":14,"title":"Three Buckets","airDate":"2017-07-21","airDateUtc":"2017-07-21T07:00:00Z","overview":"Fern reveals his ability to change his appearance to look just like Finn. Impressed, Finn joins Fern to a dungeon hidden away in a mountain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":431},{"seriesId":3,"episodeFileId":16530,"seasonNumber":10,"episodeNumber":1,"title":"The Wild Hunt","airDate":"2017-09-17","airDateUtc":"2017-09-17T07:00:00Z","overview":"A fierce creature is terrorizing the Candy Kingdom but before Finn can slay the beast, he must first overcome a guilty conscience.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":432},{"seriesId":3,"episodeFileId":16539,"seasonNumber":10,"episodeNumber":2,"title":"Always BMO Closing","airDate":"2017-09-17","airDateUtc":"2017-09-17T07:00:00Z","overview":"BMO and Ice King hit the road as door to door salesmen and stumble upon an irresistible opportunity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":433},{"seriesId":3,"episodeFileId":16548,"seasonNumber":10,"episodeNumber":3,"title":"Son of Rap Bear","airDate":"2017-09-17","airDateUtc":"2017-09-17T07:00:00Z","overview":"When Flame Princess is coaxed into a high stakes battle against the indomitable Son of Rap Bear, Finn must help her search for a new strategy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":434},{"seriesId":3,"episodeFileId":16558,"seasonNumber":10,"episodeNumber":4,"title":"Bonnibel Bubblegum","airDate":"2017-09-17","airDateUtc":"2017-09-17T07:00:00Z","overview":"A long lost artifact causes Princess Bubblegum to harken back to the creation of the Candy Kingdom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":435},{"seriesId":3,"episodeFileId":16566,"seasonNumber":10,"episodeNumber":5,"title":"Seventeen","airDate":"2017-12-17","airDateUtc":"2017-12-17T08:00:00Z","overview":"A mysterious knight crashes Finn's birthday bash and presents him with a dangerous gift.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":436},{"seriesId":3,"episodeFileId":16577,"seasonNumber":10,"episodeNumber":6,"title":"Ring of Fire","airDate":"2017-12-17","airDateUtc":"2017-12-17T08:00:00Z","overview":"When an old flame comes calling on urgent business, Tree Trunks reconsiders both her wild past and her tranquil present.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":437},{"seriesId":3,"episodeFileId":16590,"seasonNumber":10,"episodeNumber":7,"title":"Marcy & Hunson","airDate":"2017-12-17","airDateUtc":"2017-12-17T08:00:00Z","overview":"Hunson Abadeer returns to Ooo to bond with his daughter Marceline, but will he be able to prove he's changed his soul-sucking ways?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":438},{"seriesId":3,"episodeFileId":16594,"seasonNumber":10,"episodeNumber":8,"title":"The First Investigation","airDate":"2017-12-17","airDateUtc":"2017-12-17T08:00:00Z","overview":"Finn and Jake are tasked with investigating reports of a haunting at Joshua and Margaret's old office.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":439},{"seriesId":3,"episodeFileId":16610,"seasonNumber":10,"episodeNumber":9,"title":"Blenanas","airDate":"2018-03-18","airDateUtc":"2018-03-18T07:00:00Z","overview":"Finn's latest literary work meets with only derision, so he sets out to prove all the naysayers wrong.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":440},{"seriesId":3,"episodeFileId":16617,"seasonNumber":10,"episodeNumber":10,"title":"Jake the Starchild","airDate":"2018-03-18","airDateUtc":"2018-03-18T07:00:00Z","overview":"In order to fulfill his grand destiny, Jake is spirited away by a strangely familiar shape-shifting alien.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":441},{"seriesId":3,"episodeFileId":16630,"seasonNumber":10,"episodeNumber":11,"title":"Temple of Mars","airDate":"2018-03-18","airDateUtc":"2018-03-18T07:00:00Z","overview":"Searching for answers on Mars, Finn and Jermaine discover that they must first survive a cunning Martian mental trap.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":442},{"seriesId":3,"episodeFileId":16640,"seasonNumber":10,"episodeNumber":12,"title":"Gumbaldia","airDate":"2018-03-18","airDateUtc":"2018-03-18T07:00:00Z","overview":"Finn and Jake, as ambassadors of the Candy Kingdom, travel to a powerful new city-state in a last ditch effort to stave off war.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":443},{"seriesId":3,"episodeFileId":16827,"seasonNumber":0,"episodeNumber":16,"title":"Diamonds and Lemons","airDate":"2018-07-20","airDateUtc":"2018-07-20T07:00:00Z","overview":"Finn and his friends experience setbacks and creative triumphs in a fantastic new vision of Ooo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18567},{"seriesId":3,"episodeFileId":16641,"seasonNumber":10,"episodeNumber":13,"title":"Come Along With Me","airDate":"2018-09-03","airDateUtc":"2018-09-03T07:00:00Z","overview":"BMO narrates the Great Gum War in which Princess Bubblegum, Finn, Jake, Lady Rainicorn, Marceline, Flame Princess, Lemongrab, Huntress Wizard and Lumpy Space Princess band together to battle Gumbald and his army.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":444},{"seriesId":3,"episodeFileId":16812,"seasonNumber":0,"episodeNumber":17,"title":"Distant Lands (1): BMO","airDate":"2020-06-25","airDateUtc":"2020-06-25T07:00:00Z","overview":"Follows the lovable little robot from Adventure Time. When there's a deadly space emergency in the farthest reaches of the galaxy, there's only one hero to call, and it's probably not BMO. Except that this time it is!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18568},{"seriesId":3,"episodeFileId":16813,"seasonNumber":0,"episodeNumber":18,"title":"Distant Lands (2): Obsidian","airDate":"2020-11-19","airDateUtc":"2020-11-19T08:00:00Z","overview":"Marceline and Princess Bubblegum journey to the imposing, beautiful Glass Kingdom, and deep into their tumultuous past, to prevent an earthshaking catastrophe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18569},{"seriesId":3,"episodeFileId":18231,"seasonNumber":0,"episodeNumber":19,"title":"Distant Lands (3): Together Again","airDate":"2021-05-20","airDateUtc":"2021-05-20T07:00:00Z","overview":"Finn and Jake reunite to rediscover their brotherly bond and embark on the most important adventure of their lives.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19435}],"episodeFile":[{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Slumber Party Panic-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E01.Slumber Party Panic-Bluray-1080p.mkv","size":279124002,"dateAdded":"2020-12-07T20:36:45.946123Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140109,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2966113,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16521},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E01.It Came from the Nightosphere-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E01.It Came from the Nightosphere-Bluray-1080p.mkv","size":273058196,"dateAdded":"2020-12-07T20:36:46.007672Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2864712,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16522},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Hot to the Touch-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E01.Hot to the Touch-Bluray-1080p.mkv","size":243459792,"dateAdded":"2020-12-07T20:36:46.077929Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":149820,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2519827,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16523},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Finn the Human-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E01.Finn the Human-Bluray-1080p.mkv","size":231443461,"dateAdded":"2020-12-07T20:36:46.139189Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16524},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E01.Broke His Crown-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E01.Broke His Crown-Bluray-1080p.mkv","size":209632388,"dateAdded":"2020-12-07T20:36:46.205143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159077,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2225703,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16525},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E01.Orb-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E01.Orb-Bluray-1080p.mkv","size":204869273,"dateAdded":"2020-12-07T20:36:46.277217Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16526},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Bonnie and Neddy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E01.Bonnie and Neddy-Bluray-1080p.mkv","size":194359405,"dateAdded":"2020-12-07T20:36:46.339313Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16527},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Conquest of Cuteness-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E01.Conquest of Cuteness-Bluray-1080p.mkv","size":191654372,"dateAdded":"2020-12-07T20:36:46.401853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1941815,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16528},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Wake Up-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E01.Wake Up-Bluray-1080p.mkv","size":176575169,"dateAdded":"2020-12-07T20:36:46.464214Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16529},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E01.The Wild Hunt-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E01.The Wild Hunt-Bluray-1080p.mkv","size":166979865,"dateAdded":"2020-12-07T20:36:46.528393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16530},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Trouble in Lumpy Space-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E02.Trouble in Lumpy Space-Bluray-1080p.mkv","size":312998119,"dateAdded":"2020-12-07T20:36:46.604745Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151058,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3256028,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16531},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Escape From the Citadel-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E02.Escape From the Citadel-Bluray-1080p.mkv","size":238308089,"dateAdded":"2020-12-07T20:36:46.675668Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16532},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Jake the Dog-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E02.Jake the Dog-Bluray-1080p.mkv","size":230868036,"dateAdded":"2020-12-07T20:36:46.751939Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16533},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Morituri te Salutamus-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E02.Morituri te Salutamus-Bluray-1080p.mkv","size":220111547,"dateAdded":"2020-12-07T20:36:46.819735Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2262220,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16534},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E02.Varmints-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E02.Varmints-Bluray-1080p.mkv","size":219111281,"dateAdded":"2020-12-07T20:36:46.885262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16535},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Eyes-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E02.The Eyes-Bluray-1080p.mkv","size":216828377,"dateAdded":"2020-12-07T20:36:46.955136Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2235535,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16536},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Five Short Graybles-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E02.Five Short Graybles-Bluray-1080p.mkv","size":200581229,"dateAdded":"2020-12-07T20:36:47.02818Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137170,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2052673,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16537},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E02.Elements - Skyhooks (1)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E02.Elements - Skyhooks (1)-Bluray-1080p.mkv","size":171621827,"dateAdded":"2020-12-07T20:36:47.105432Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16538},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E02.Always BMO Closing-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E02.Always BMO Closing-Bluray-1080p.mkv","size":162446427,"dateAdded":"2020-12-07T20:36:47.299261Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16539},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E02.Don't Look-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E02.Don't Look-Bluray-1080p.mkv","size":154857431,"dateAdded":"2020-12-07T20:36:47.37985Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1624984,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16540},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E03.Beyond the Grotto-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E03.Beyond the Grotto-Bluray-1080p.mkv","size":372825305,"dateAdded":"2020-12-07T20:36:47.455154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4129423,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16541},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Prisoners of Love-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E03.Prisoners of Love-Bluray-1080p.mkv","size":304910697,"dateAdded":"2020-12-07T20:36:47.528965Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3151915,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"12:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16542},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Loyalty to the King-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E03.Loyalty to the King-Bluray-1080p.mkv","size":297334595,"dateAdded":"2020-12-07T20:36:47.614853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3151741,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16543},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Web Weirdos-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E03.Web Weirdos-Bluray-1080p.mkv","size":267187926,"dateAdded":"2020-12-07T20:36:47.686604Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":147311,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2811179,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16544},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Five More Short Graybles-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E03.Five More Short Graybles-Bluray-1080p.mkv","size":212004399,"dateAdded":"2020-12-07T20:36:47.770582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16545},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E03.James II-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E03.James II-Bluray-1080p.mkv","size":199138621,"dateAdded":"2020-12-07T20:36:47.844131Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16546},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Memory of a Memory-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E03.Memory of a Memory-Bluray-1080p.mkv","size":185844907,"dateAdded":"2020-12-07T20:36:47.91846Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1882191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16547},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E03.Son of Rap Bear-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E03.Son of Rap Bear-Bluray-1080p.mkv","size":167012381,"dateAdded":"2020-12-07T20:36:47.993241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16548},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Cherry Cream Soda-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E03.Cherry Cream Soda-Bluray-1080p.mkv","size":165472987,"dateAdded":"2020-12-07T20:36:48.06666Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16549},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E03.Elements - Bespoken For (2)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E03.Elements - Bespoken For (2)-Bluray-1080p.mkv","size":159507554,"dateAdded":"2020-12-07T20:36:48.149303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16550},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Blood Under the Skin-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E04.Blood Under the Skin-Bluray-1080p.mkv","size":269313762,"dateAdded":"2020-12-07T20:36:48.236127Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138070,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2830684,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16551},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Tree Trunks-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E04.Tree Trunks-Bluray-1080p.mkv","size":256103068,"dateAdded":"2020-12-07T20:36:48.323256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140804,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2625926,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16552},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Hitman-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E04.Hitman-Bluray-1080p.mkv","size":223596262,"dateAdded":"2020-12-07T20:36:48.401762Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135005,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2306122,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16553},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E04.Mama Said-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E04.Mama Said-Bluray-1080p.mkv","size":204483430,"dateAdded":"2020-12-07T20:36:48.478421Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16554},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Lady Rainicorn of the Crystal Dimension-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E04.Lady Rainicorn of the Crystal Dimension-Bluray-1080p.mkv","size":201467654,"dateAdded":"2020-12-07T20:36:48.554693Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136776,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2170932,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16555},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E04.The Tower-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E04.The Tower-Bluray-1080p.mkv","size":192100102,"dateAdded":"2020-12-07T20:36:48.628814Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16556},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Dream of Love-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E04.Dream of Love-Bluray-1080p.mkv","size":179430469,"dateAdded":"2020-12-07T20:36:48.70595Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1814720,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16557},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E04.Bonnibel Bubblegum-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E04.Bonnibel Bubblegum-Bluray-1080p.mkv","size":161718058,"dateAdded":"2020-12-07T20:36:48.782506Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16558},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Up a Tree-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E04.Up a Tree-Bluray-1080p.mkv","size":157589639,"dateAdded":"2020-12-07T20:36:48.858874Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16559},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E04.Elements - Winter Light (3)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E04.Elements - Winter Light (3)-Bluray-1080p.mkv","size":152694231,"dateAdded":"2020-12-07T20:36:48.936031Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16560},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Enchiridion!-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E05.The Enchiridion!-Bluray-1080p.mkv","size":345444867,"dateAdded":"2020-12-07T20:36:49.011884Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3711686,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16561},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Return to the Nightosphere-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E05.Return to the Nightosphere-Bluray-1080p.mkv","size":252562323,"dateAdded":"2020-12-07T20:36:49.093905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159016,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2614518,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16562},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Storytelling-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E05.Storytelling-Bluray-1080p.mkv","size":216429717,"dateAdded":"2020-12-07T20:36:49.182999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2221384,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16563},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Sad Face-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E05.Sad Face-Bluray-1080p.mkv","size":209453186,"dateAdded":"2020-12-07T20:36:49.259104Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16564},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E05.I Am a Sword-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E05.I Am a Sword-Bluray-1080p.mkv","size":176249945,"dateAdded":"2020-12-07T20:36:49.334723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1855262,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16565},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E05.Seventeen-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E05.Seventeen-Bluray-1080p.mkv","size":174714915,"dateAdded":"2020-12-07T20:36:49.411973Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16566},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Too Young-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E05.Too Young-Bluray-1080p.mkv","size":170290869,"dateAdded":"2020-12-07T20:36:49.487839Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137687,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1702944,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16567},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Football-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E05.Football-Bluray-1080p.mkv","size":153818487,"dateAdded":"2020-12-07T20:36:49.561255Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16568},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E05.All the Little People-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E05.All the Little People-Bluray-1080p.mkv","size":153391780,"dateAdded":"2020-12-07T20:36:49.637828Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16569},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E05.Elements - Cloudy (4)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E05.Elements - Cloudy (4)-Bluray-1080p.mkv","size":139619640,"dateAdded":"2020-12-07T20:36:49.713077Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16570},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Jiggler-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E06.The Jiggler-Bluray-1080p.mkv","size":317186989,"dateAdded":"2020-12-07T20:36:49.790573Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137296,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3458048,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16571},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Daddy's Little Monster-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E06.Daddy's Little Monster-Bluray-1080p.mkv","size":259866131,"dateAdded":"2020-12-07T20:36:49.866557Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140012,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2712995,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16572},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Slow Love-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E06.Slow Love-Bluray-1080p.mkv","size":247512623,"dateAdded":"2020-12-07T20:36:49.961275Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2602743,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16573},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Monster-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E06.The Monster-Bluray-1080p.mkv","size":211140900,"dateAdded":"2020-12-07T20:36:50.044705Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152202,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2153552,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16574},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E06.Elements - Slime Central (5)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E06.Elements - Slime Central (5)-Bluray-1080p.mkv","size":207695587,"dateAdded":"2020-12-07T20:36:50.134898Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16575},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Breezy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E06.Breezy-Bluray-1080p.mkv","size":200496226,"dateAdded":"2020-12-07T20:36:50.242483Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16576},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E06.Ring of Fire-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E06.Ring of Fire-Bluray-1080p.mkv","size":168933042,"dateAdded":"2020-12-07T20:36:50.325393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16577},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Jake the Dad-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E06.Jake the Dad-Bluray-1080p.mkv","size":166095402,"dateAdded":"2020-12-07T20:36:50.404103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16578},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E06.Bun Bun-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E06.Bun Bun-Bluray-1080p.mkv","size":164495790,"dateAdded":"2020-12-07T20:36:50.480526Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136022,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1728846,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16579},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E06.Stakes - Marceline the Vampire Queen (1)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E06.Stakes - Marceline the Vampire Queen (1)-Bluray-1080p.mkv","size":151507274,"dateAdded":"2020-12-07T20:36:50.563814Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16580},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Food Chain-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E07.Food Chain-Bluray-1080p.mkv","size":355031598,"dateAdded":"2020-12-07T20:36:50.640044Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16581},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Power Animal-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E07.Power Animal-Bluray-1080p.mkv","size":345157728,"dateAdded":"2020-12-07T20:36:50.715926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140674,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3688086,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16582},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Ricardio the Heart Guy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E07.Ricardio the Heart Guy-Bluray-1080p.mkv","size":318247442,"dateAdded":"2020-12-07T20:36:50.790828Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3324734,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16583},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E07.Normal Man-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E07.Normal Man-Bluray-1080p.mkv","size":211807111,"dateAdded":"2020-12-07T20:36:50.867245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148747,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2261444,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16584},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Still-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E07.Still-Bluray-1080p.mkv","size":200261205,"dateAdded":"2020-12-07T20:36:50.940737Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140289,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2034847,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16585},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E07.Elements - Happy Warrior (6)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E07.Elements - Happy Warrior (6)-Bluray-1080p.mkv","size":199195911,"dateAdded":"2020-12-07T20:36:51.019117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16586},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E07.In Your Footsteps-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E07.In Your Footsteps-Bluray-1080p.mkv","size":198083663,"dateAdded":"2020-12-07T20:36:51.096955Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153694,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2002481,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16587},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E07.Stakes - Everything Stays (2)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E07.Stakes - Everything Stays (2)-Bluray-1080p.mkv","size":188208925,"dateAdded":"2020-12-07T20:36:51.176909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16588},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Davey-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E07.Davey-Bluray-1080p.mkv","size":176139415,"dateAdded":"2020-12-07T20:36:51.259575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16589},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E07.Marcy & Hunson-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E07.Marcy & Hunson-Bluray-1080p.mkv","size":147710120,"dateAdded":"2020-12-07T20:36:51.338659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16590},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Business Time-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E08.Business Time-Bluray-1080p.mkv","size":326480496,"dateAdded":"2020-12-07T20:36:51.421769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138628,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3507371,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16591},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Crystals Have Power-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E08.Crystals Have Power-Bluray-1080p.mkv","size":240115023,"dateAdded":"2020-12-07T20:36:51.50277Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148401,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2484383,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16592},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Furniture & Meat-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E08.Furniture & Meat-Bluray-1080p.mkv","size":225746784,"dateAdded":"2020-12-07T20:36:51.591323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16593},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E08.The First Investigation-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E08.The First Investigation-Bluray-1080p.mkv","size":212257403,"dateAdded":"2020-12-07T20:36:51.672853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16594},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E08.Elements - Hero Heart (7)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E08.Elements - Hero Heart (7)-Bluray-1080p.mkv","size":197262636,"dateAdded":"2020-12-07T20:36:51.750221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16595},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Wizard Battle-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E08.Wizard Battle-Bluray-1080p.mkv","size":191621074,"dateAdded":"2020-12-07T20:36:51.831379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152838,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1931361,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16596},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Mystery Dungeon-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E08.Mystery Dungeon-Bluray-1080p.mkv","size":191147836,"dateAdded":"2020-12-07T20:36:51.913178Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16597},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E08.Elemental-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E08.Elemental-Bluray-1080p.mkv","size":171359315,"dateAdded":"2020-12-07T20:36:51.991278Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1799113,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16598},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Hug Wolf-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E08.Hug Wolf-Bluray-1080p.mkv","size":169144286,"dateAdded":"2020-12-07T20:36:52.099942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1698918,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16599},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Stakes - Vamps About (3)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E08.Stakes - Vamps About (3)-Bluray-1080p.mkv","size":168360899,"dateAdded":"2020-12-07T20:36:52.258663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16600},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Fionna and Cake-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E09.Fionna and Cake-Bluray-1080p.mkv","size":336980747,"dateAdded":"2020-12-07T20:36:52.336551Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151051,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3569175,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16601},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E09.My Two Favorite People-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E09.My Two Favorite People-Bluray-1080p.mkv","size":319993968,"dateAdded":"2020-12-07T20:36:52.423297Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138110,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3416433,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16602},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Other Tarts-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E09.The Other Tarts-Bluray-1080p.mkv","size":244249849,"dateAdded":"2020-12-07T20:36:52.509516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2528419,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16603},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E09.The Prince Who Wanted Everything-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E09.The Prince Who Wanted Everything-Bluray-1080p.mkv","size":231638402,"dateAdded":"2020-12-07T20:36:52.58781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16604},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E09.All Your Fault-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E09.All Your Fault-Bluray-1080p.mkv","size":192304456,"dateAdded":"2020-12-07T20:36:52.680424Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16605},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Princess Monster Wife-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E09.Princess Monster Wife-Bluray-1080p.mkv","size":191907067,"dateAdded":"2020-12-07T20:36:52.759568Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1943617,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16606},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Stakes - The Empress Eyes (4)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E09.Stakes - The Empress Eyes (4)-Bluray-1080p.mkv","size":184480156,"dateAdded":"2020-12-07T20:36:52.848511Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16607},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E09.Elements - Skyhooks II (8)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E09.Elements - Skyhooks II (8)-Bluray-1080p.mkv","size":173551589,"dateAdded":"2020-12-07T20:36:52.924017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16608},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Five Short Tables-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E09.Five Short Tables-Bluray-1080p.mkv","size":171154334,"dateAdded":"2020-12-07T20:36:53.000232Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":139880,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1800291,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16609},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E09.Blenanas-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E09.Blenanas-Bluray-1080p.mkv","size":170276923,"dateAdded":"2020-12-07T20:36:53.076142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16610},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Something Big-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E10.Something Big-Bluray-1080p.mkv","size":244236489,"dateAdded":"2020-12-07T20:36:53.152612Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16611},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Memories of Boom Boom Mountain-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E10.Memories of Boom Boom Mountain-Bluray-1080p.mkv","size":240524810,"dateAdded":"2020-12-07T20:36:53.230547Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140518,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2532611,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16612},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E10.What Was Missing-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E10.What Was Missing-Bluray-1080p.mkv","size":210470513,"dateAdded":"2020-12-07T20:36:53.306079Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":139108,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2168977,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16613},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Goliad-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E10.Goliad-Bluray-1080p.mkv","size":210020190,"dateAdded":"2020-12-07T20:36:53.382543Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135725,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2155956,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16614},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E10.To Cut a Woman's Hair-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E10.To Cut a Woman's Hair-Bluray-1080p.mkv","size":208731990,"dateAdded":"2020-12-07T20:36:53.457218Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":147194,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2124447,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16615},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Little Dude-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E10.Little Dude-Bluray-1080p.mkv","size":198621755,"dateAdded":"2020-12-07T20:36:53.534573Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16616},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E10.Jake the Starchild-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E10.Jake the Starchild-Bluray-1080p.mkv","size":191070806,"dateAdded":"2020-12-07T20:36:53.610678Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16617},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E10.The Music Hole-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E10.The Music Hole-Bluray-1080p.mkv","size":177589905,"dateAdded":"2020-12-07T20:36:53.68681Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156975,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1850783,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16618},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Stakes - May I Come In! (5)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E10.Stakes - May I Come In! (5)-Bluray-1080p.mkv","size":164469631,"dateAdded":"2020-12-07T20:36:53.765851Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16619},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E10.Abstract-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E10.Abstract-Bluray-1080p.mkv","size":150094220,"dateAdded":"2020-12-07T20:36:53.842389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16620},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Wizard-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E11.Wizard-Bluray-1080p.mkv","size":286598760,"dateAdded":"2020-12-07T20:36:53.9189Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140525,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3039167,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16621},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Chamber of Frozen Blades-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E11.The Chamber of Frozen Blades-Bluray-1080p.mkv","size":244551756,"dateAdded":"2020-12-07T20:36:53.995372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140442,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2544233,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16622},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Bad Little Boy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E11.Bad Little Boy-Bluray-1080p.mkv","size":227805933,"dateAdded":"2020-12-07T20:36:54.078751Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16623},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Beyond This Earthly Realm-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E11.Beyond This Earthly Realm-Bluray-1080p.mkv","size":198127960,"dateAdded":"2020-12-07T20:36:54.186263Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151882,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2003068,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16624},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E11.Daddy-Daughter Card Wars-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E11.Daddy-Daughter Card Wars-Bluray-1080p.mkv","size":192437098,"dateAdded":"2020-12-07T20:36:54.275154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166252,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2027710,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16625},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Stakes - Take Her Back (6)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E11.Stakes - Take Her Back (6)-Bluray-1080p.mkv","size":184097155,"dateAdded":"2020-12-07T20:36:54.353227Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16626},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E11.Ketchup-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E11.Ketchup-Bluray-1080p.mkv","size":178584120,"dateAdded":"2020-12-07T20:36:54.432082Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16627},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Apple Thief-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E11.Apple Thief-Bluray-1080p.mkv","size":156365510,"dateAdded":"2020-12-07T20:36:54.508346Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1538270,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16628},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Little Brother-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E11.Little Brother-Bluray-1080p.mkv","size":148379171,"dateAdded":"2020-12-07T20:36:54.588462Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16629},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E11.Temple of Mars-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E11.Temple of Mars-Bluray-1080p.mkv","size":143821814,"dateAdded":"2020-12-07T20:36:54.697333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16630},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Evicted!-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E12.Evicted!-Bluray-1080p.mkv","size":389906653,"dateAdded":"2020-12-07T20:36:54.779283Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":149058,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4208084,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16631},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Her Parents-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E12.Her Parents-Bluray-1080p.mkv","size":268807807,"dateAdded":"2020-12-07T20:36:54.876436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135193,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2819058,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16632},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Vault of Bones-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E12.Vault of Bones-Bluray-1080p.mkv","size":238768887,"dateAdded":"2020-12-07T20:36:54.963146Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16633},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Gotcha!-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E12.Gotcha!-Bluray-1080p.mkv","size":214512013,"dateAdded":"2020-12-07T20:36:55.039762Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155316,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2185402,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16634},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Creeps-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E12.The Creeps-Bluray-1080p.mkv","size":206495975,"dateAdded":"2020-12-07T20:36:55.115144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2103957,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16635},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Stakes - Checkmate (7)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E12.Stakes - Checkmate (7)-Bluray-1080p.mkv","size":197556787,"dateAdded":"2020-12-07T20:36:55.192636Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16636},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E12.Fionna and Cake and Fionna-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E12.Fionna and Cake and Fionna-Bluray-1080p.mkv","size":196802520,"dateAdded":"2020-12-07T20:36:55.26858Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16637},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Ocarina-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E12.Ocarina-Bluray-1080p.mkv","size":186573660,"dateAdded":"2020-12-07T20:36:55.345185Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16638},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E12.Preboot-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E12.Preboot-Bluray-1080p.mkv","size":184262657,"dateAdded":"2020-12-07T20:36:55.421497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136664,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1953831,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16639},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E12.Gumbaldia-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E12.Gumbaldia-Bluray-1080p.mkv","size":172933638,"dateAdded":"2020-12-07T20:36:55.498058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16640},{"seriesId":3,"seasonNumber":10,"relativePath":"Season 10\/S10E13.Come Along With Me-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 10\/S10E13.Come Along With Me-Bluray-1080p.mkv","size":758709141,"dateAdded":"2020-12-07T20:36:55.575413Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16641},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E13.City of Thieves-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E13.City of Thieves-Bluray-1080p.mkv","size":266010749,"dateAdded":"2020-12-07T20:36:55.662001Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137030,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2822276,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16642},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E13.Thanks for the Crabapples, Giuseppe-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E13.Thanks for the Crabapples, Giuseppe-Bluray-1080p.mkv","size":247513996,"dateAdded":"2020-12-07T20:36:55.732285Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16643},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Pods-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E13.The Pods-Bluray-1080p.mkv","size":247268015,"dateAdded":"2020-12-07T20:36:55.810097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2567482,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16644},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E13.The Great Bird Man-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E13.The Great Bird Man-Bluray-1080p.mkv","size":236115669,"dateAdded":"2020-12-07T20:36:55.876769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16645},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E13.From Bad to Worse-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E13.From Bad to Worse-Bluray-1080p.mkv","size":231756184,"dateAdded":"2020-12-07T20:36:55.945907Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148793,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2388909,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16646},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E13.Reboot-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E13.Reboot-Bluray-1080p.mkv","size":222754807,"dateAdded":"2020-12-07T20:36:56.013821Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":149592,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2395729,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16647},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Stakes - The Dark Cloud (8)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E13.Stakes - The Dark Cloud (8)-Bluray-1080p.mkv","size":182124755,"dateAdded":"2020-12-07T20:36:56.098332Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16648},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Princess Cookie-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E13.Princess Cookie-Bluray-1080p.mkv","size":177508677,"dateAdded":"2020-12-07T20:36:56.214827Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158052,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1780666,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16649},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E13.Whispers-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E13.Whispers-Bluray-1080p.mkv","size":159530542,"dateAdded":"2020-12-07T20:36:56.314204Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16650},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E14.S07E15.The More You Moe, The Moe You Know-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E14.S07E15.The More You Moe, The Moe You Know-Bluray-1080p.mkv","size":333675655,"dateAdded":"2020-12-07T20:36:56.399223Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16651},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E14.The Silent King-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E14.The Silent King-Bluray-1080p.mkv","size":300778957,"dateAdded":"2020-12-07T20:36:56.523795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137018,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3175674,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16652},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Witch's Garden-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E14.The Witch's Garden-Bluray-1080p.mkv","size":270135318,"dateAdded":"2020-12-07T20:36:56.626847Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":141105,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2920777,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16653},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Beautopia-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E14.Beautopia-Bluray-1080p.mkv","size":220086861,"dateAdded":"2020-12-07T20:36:56.70215Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156036,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2268182,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16654},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Simon & Marcy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E14.Simon & Marcy-Bluray-1080p.mkv","size":219701487,"dateAdded":"2020-12-07T20:36:56.784137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16655},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Princess Day-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E14.Princess Day-Bluray-1080p.mkv","size":215657177,"dateAdded":"2020-12-07T20:36:56.857529Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16656},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Card Wars-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E14.Card Wars-Bluray-1080p.mkv","size":188692059,"dateAdded":"2020-12-07T20:36:56.933216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138472,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1915828,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16657},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E14.Two Swords-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E14.Two Swords-Bluray-1080p.mkv","size":136991015,"dateAdded":"2020-12-07T20:36:57.010566Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140555,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1427410,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16658},{"seriesId":3,"seasonNumber":9,"relativePath":"Season 09\/S09E14.Three Buckets-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 09\/S09E14.Three Buckets-Bluray-1080p.mkv","size":128626847,"dateAdded":"2020-12-07T20:36:57.103779Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16659},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E15.A Glitch is a Glitch-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E15.A Glitch is a Glitch-Bluray-1080p.mkv","size":417938725,"dateAdded":"2020-12-07T20:36:57.185879Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16660},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Real You-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E15.The Real You-Bluray-1080p.mkv","size":370686890,"dateAdded":"2020-12-07T20:36:57.253122Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":147773,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3952774,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16661},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E15.What is Life-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E15.What is Life-Bluray-1080p.mkv","size":318913314,"dateAdded":"2020-12-07T20:36:57.319446Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137347,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3395410,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16662},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E15.No One Can Hear You-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E15.No One Can Hear You-Bluray-1080p.mkv","size":242024064,"dateAdded":"2020-12-07T20:36:57.385036Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153165,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2512051,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16663},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Nemesis-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E15.Nemesis-Bluray-1080p.mkv","size":235488482,"dateAdded":"2020-12-07T20:36:57.461551Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16664},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Sons of Mars-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E15.Sons of Mars-Bluray-1080p.mkv","size":183658587,"dateAdded":"2020-12-07T20:36:57.537807Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1847277,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16665},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E15.Do No Harm-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E15.Do No Harm-Bluray-1080p.mkv","size":171426876,"dateAdded":"2020-12-07T20:36:57.603938Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1837887,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16666},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Guardians of Sunshine-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E16.Guardians of Sunshine-Bluray-1080p.mkv","size":511183477,"dateAdded":"2020-12-07T20:36:57.673799Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5553606,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16667},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Ocean of Fear-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E16.Ocean of Fear-Bluray-1080p.mkv","size":363866091,"dateAdded":"2020-12-07T20:36:57.748679Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148526,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3930587,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16668},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Burning Low-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E16.Burning Low-Bluray-1080p.mkv","size":219576087,"dateAdded":"2020-12-07T20:36:57.815162Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158468,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2240063,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16669},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Joshua & Margaret Investigations-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E16.Joshua & Margaret Investigations-Bluray-1080p.mkv","size":210022806,"dateAdded":"2020-12-07T20:36:57.884046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16670},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Jake vs. Me-Mow-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E16.Jake vs. Me-Mow-Bluray-1080p.mkv","size":209426854,"dateAdded":"2020-12-07T20:36:57.949888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152079,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2134856,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16671},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Puhoy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E16.Puhoy-Bluray-1080p.mkv","size":202033225,"dateAdded":"2020-12-07T20:36:58.011032Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16672},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E16.Wheels-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E16.Wheels-Bluray-1080p.mkv","size":165841671,"dateAdded":"2020-12-07T20:36:58.075984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155215,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1751117,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16673},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E16.Summer Showers-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E16.Summer Showers-Bluray-1080p.mkv","size":157443567,"dateAdded":"2020-12-07T20:36:58.137347Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16674},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E17.When Wedding Bells Thaw-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E17.When Wedding Bells Thaw-Bluray-1080p.mkv","size":290561270,"dateAdded":"2020-12-07T20:36:58.203582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3093527,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16675},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Death in Bloom-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E17.Death in Bloom-Bluray-1080p.mkv","size":240603785,"dateAdded":"2020-12-07T20:36:58.265306Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2488130,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16676},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E17.Angel Face-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E17.Angel Face-Bluray-1080p.mkv","size":205007362,"dateAdded":"2020-12-07T20:36:58.32997Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16677},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E17.Ghost Fly-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E17.Ghost Fly-Bluray-1080p.mkv","size":197206275,"dateAdded":"2020-12-07T20:36:58.392037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16678},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Thank You-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E17.Thank You-Bluray-1080p.mkv","size":191386838,"dateAdded":"2020-12-07T20:36:58.457909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150605,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1940274,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16679},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E17.BMO Lost-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E17.BMO Lost-Bluray-1080p.mkv","size":187074409,"dateAdded":"2020-12-07T20:36:58.520133Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16680},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E17.High Strangeness-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E17.High Strangeness-Bluray-1080p.mkv","size":153462051,"dateAdded":"2020-12-07T20:36:58.585256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1626906,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16681},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E17.BMO Noire-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E17.BMO Noire-Bluray-1080p.mkv","size":132140052,"dateAdded":"2020-12-07T20:36:58.647214Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135574,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1272944,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16682},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Dungeon-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E18.Dungeon-Bluray-1080p.mkv","size":324235349,"dateAdded":"2020-12-07T20:36:58.715314Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150107,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3437591,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16683},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Susan Strong-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E18.Susan Strong-Bluray-1080p.mkv","size":255046111,"dateAdded":"2020-12-07T20:36:58.777398Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2653702,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16684},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E18.King Worm-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E18.King Worm-Bluray-1080p.mkv","size":227888442,"dateAdded":"2020-12-07T20:36:58.841319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2348522,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16685},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E18.Everything's Jake-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E18.Everything's Jake-Bluray-1080p.mkv","size":208948799,"dateAdded":"2020-12-07T20:36:58.903111Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16686},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Princess Potluck-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E18.Princess Potluck-Bluray-1080p.mkv","size":204319029,"dateAdded":"2020-12-07T20:36:58.970964Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16687},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E18.The New Frontier-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E18.The New Frontier-Bluray-1080p.mkv","size":187546236,"dateAdded":"2020-12-07T20:36:59.033145Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148181,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1887998,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16688},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E18.President Porpoise is Missing!-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E18.President Porpoise is Missing!-Bluray-1080p.mkv","size":159524892,"dateAdded":"2020-12-07T20:36:59.099427Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16689},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E18.Horse and Ball-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E18.Horse and Ball-Bluray-1080p.mkv","size":149187885,"dateAdded":"2020-12-07T20:36:59.16163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1584405,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16690},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Mystery Train-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E19.Mystery Train-Bluray-1080p.mkv","size":302852199,"dateAdded":"2020-12-07T20:36:59.377382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152888,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3192687,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16691},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Duke-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E19.The Duke-Bluray-1080p.mkv","size":245815920,"dateAdded":"2020-12-07T20:36:59.57013Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138070,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2578078,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16692},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E19.James Baxter the Horse-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E19.James Baxter the Horse-Bluray-1080p.mkv","size":229974834,"dateAdded":"2020-12-07T20:36:59.651831Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16693},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Holly Jolly Secrets (1)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E19.Holly Jolly Secrets (1)-Bluray-1080p.mkv","size":224683567,"dateAdded":"2020-12-07T20:36:59.723723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165294,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2282257,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16694},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E19.Is That You-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E19.Is That You-Bluray-1080p.mkv","size":203620205,"dateAdded":"2020-12-07T20:36:59.79485Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16695},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Lady & Peebles-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E19.Lady & Peebles-Bluray-1080p.mkv","size":199755286,"dateAdded":"2020-12-07T20:36:59.867127Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156901,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2029565,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16696},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E19.Blank-Eyed Girl-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E19.Blank-Eyed Girl-Bluray-1080p.mkv","size":170370957,"dateAdded":"2020-12-07T20:36:59.939262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16697},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E19.Jelly Beans Have Power-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E19.Jelly Beans Have Power-Bluray-1080p.mkv","size":163445042,"dateAdded":"2020-12-07T20:37:00.011874Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135764,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1745146,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16698},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E20.Bad Jubies-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E20.Bad Jubies-Bluray-1080p.mkv","size":329436805,"dateAdded":"2020-12-07T20:37:00.089643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16699},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Holly Jolly Secrets (2)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E20.Holly Jolly Secrets (2)-Bluray-1080p.mkv","size":249236894,"dateAdded":"2020-12-07T20:37:00.169048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":176107,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2556242,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16700},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Freak City-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E20.Freak City-Bluray-1080p.mkv","size":233149006,"dateAdded":"2020-12-07T20:37:00.259446Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":139972,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2428481,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16701},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Go with Me-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E20.Go with Me-Bluray-1080p.mkv","size":232228277,"dateAdded":"2020-12-07T20:37:00.334557Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2398804,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16702},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E20.Jake the Brick-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E20.Jake the Brick-Bluray-1080p.mkv","size":217595039,"dateAdded":"2020-12-07T20:37:00.410221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16703},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E20.Shh!-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E20.Shh!-Bluray-1080p.mkv","size":204228050,"dateAdded":"2020-12-07T20:37:00.486596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16704},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E20.You Made Me-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E20.You Made Me-Bluray-1080p.mkv","size":170948222,"dateAdded":"2020-12-07T20:37:00.564987Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1703222,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16705},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E20.Islands - The Invitation (1)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E20.Islands - The Invitation (1)-Bluray-1080p.mkv","size":158945659,"dateAdded":"2020-12-07T20:37:00.64292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154730,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1672314,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16706},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Belly of the Beast-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E21.Belly of the Beast-Bluray-1080p.mkv","size":362107553,"dateAdded":"2020-12-07T20:37:00.720437Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":157716,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3859598,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16707},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Donny-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E21.Donny-Bluray-1080p.mkv","size":258494145,"dateAdded":"2020-12-07T20:37:00.797132Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137154,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2738402,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16708},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Who Would Win-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E21.Who Would Win-Bluray-1080p.mkv","size":221199041,"dateAdded":"2020-12-07T20:37:00.872673Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160879,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2254761,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16709},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E21.Dentist-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E21.Dentist-Bluray-1080p.mkv","size":209274086,"dateAdded":"2020-12-07T20:37:00.947732Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16710},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E21.The Suitor-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E21.The Suitor-Bluray-1080p.mkv","size":200396891,"dateAdded":"2020-12-07T20:37:01.019436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16711},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E21.King's Ransom-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E21.King's Ransom-Bluray-1080p.mkv","size":198953675,"dateAdded":"2020-12-07T20:37:01.092821Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16712},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E21.Islands - Whipple the Happy Dragon (2)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E21.Islands - Whipple the Happy Dragon (2)-Bluray-1080p.mkv","size":182976097,"dateAdded":"2020-12-07T20:37:01.166046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153900,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1952578,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16713},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Marceline's Closet-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E21.Marceline's Closet-Bluray-1080p.mkv","size":166807777,"dateAdded":"2020-12-07T20:37:01.244788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135250,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1667049,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16714},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Henchman-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E22.Henchman-Bluray-1080p.mkv","size":261792116,"dateAdded":"2020-12-07T20:37:01.328403Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137662,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2761942,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16715},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E22.The Cooler-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E22.The Cooler-Bluray-1080p.mkv","size":235113688,"dateAdded":"2020-12-07T20:37:01.414671Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16716},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E22.The Limit-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E22.The Limit-Bluray-1080p.mkv","size":222457837,"dateAdded":"2020-12-07T20:37:01.506619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":149986,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2276657,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16717},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E22.The Party's Over, Isla de Se\u00f1orita-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E22.The Party's Over, Isla de Se\u00f1orita-Bluray-1080p.mkv","size":221218391,"dateAdded":"2020-12-07T20:37:01.598421Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16718},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Paper Pete-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E22.Paper Pete-Bluray-1080p.mkv","size":216549006,"dateAdded":"2020-12-07T20:37:01.697714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148465,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2213257,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16719},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Ignition Point-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E22.Ignition Point-Bluray-1080p.mkv","size":176746377,"dateAdded":"2020-12-07T20:37:01.781539Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150479,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1764523,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16720},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E22.Islands - Mysterious Island (3)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E22.Islands - Mysterious Island (3)-Bluray-1080p.mkv","size":173454483,"dateAdded":"2020-12-07T20:37:01.871095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153368,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1852080,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16721},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E22.Scamps-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E22.Scamps-Bluray-1080p.mkv","size":167106449,"dateAdded":"2020-12-07T20:37:01.963058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16722},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E23.Crossover-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E23.Crossover-Bluray-1080p.mkv","size":279835365,"dateAdded":"2020-12-07T20:37:02.046744Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16723},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Rainy Day Daydream-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E23.Rainy Day Daydream-Bluray-1080p.mkv","size":258986427,"dateAdded":"2020-12-07T20:37:02.132121Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2734734,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16724},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E23.Another Way-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E23.Another Way-Bluray-1080p.mkv","size":258343666,"dateAdded":"2020-12-07T20:37:02.229014Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":151745,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2696888,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16725},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E23.The Hard Easy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E23.The Hard Easy-Bluray-1080p.mkv","size":242890722,"dateAdded":"2020-12-07T20:37:02.330137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174092,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2483076,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16726},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E23.One Last Job-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E23.One Last Job-Bluray-1080p.mkv","size":207131596,"dateAdded":"2020-12-07T20:37:02.41443Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16727},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Videomakers-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E23.Videomakers-Bluray-1080p.mkv","size":201735523,"dateAdded":"2020-12-07T20:37:02.510929Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140721,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2069150,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16728},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E23.The Pajama War-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E23.The Pajama War-Bluray-1080p.mkv","size":198757288,"dateAdded":"2020-12-07T20:37:02.604532Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16729},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E23.Islands - Imaginary Resources (4)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E23.Islands - Imaginary Resources (4)-Bluray-1080p.mkv","size":179942710,"dateAdded":"2020-12-07T20:37:02.704437Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1933388,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16730},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Mortal Folly-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E24.Mortal Folly-Bluray-1080p.mkv","size":302041300,"dateAdded":"2020-12-07T20:37:02.785519Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":147327,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3182392,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16731},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E24.What Have You Done-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E24.What Have You Done-Bluray-1080p.mkv","size":249707578,"dateAdded":"2020-12-07T20:37:02.873966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2648341,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16732},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E24.Reign of Gunters-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E24.Reign of Gunters-Bluray-1080p.mkv","size":240221465,"dateAdded":"2020-12-07T20:37:02.956288Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150492,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2482594,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16733},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Ghost Princess-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E24.Ghost Princess-Bluray-1080p.mkv","size":232538110,"dateAdded":"2020-12-07T20:37:03.045121Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":147839,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2403289,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16734},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E24.Evergreen-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E24.Evergreen-Bluray-1080p.mkv","size":228282657,"dateAdded":"2020-12-07T20:37:03.123029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16735},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E24.Another Five More Short Graybles-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E24.Another Five More Short Graybles-Bluray-1080p.mkv","size":204268172,"dateAdded":"2020-12-07T20:37:03.222316Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16736},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E24.Islands - Hide and Seek (5)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E24.Islands - Hide and Seek (5)-Bluray-1080p.mkv","size":159866314,"dateAdded":"2020-12-07T20:37:03.318845Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152928,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1683618,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16737},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E24.The Hall of Egress-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E24.The Hall of Egress-Bluray-1080p.mkv","size":156904604,"dateAdded":"2020-12-07T20:37:03.406055Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16738},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E25.Mortal Recoil-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E25.Mortal Recoil-Bluray-1080p.mkv","size":276189775,"dateAdded":"2020-12-07T20:37:03.498778Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135084,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2903521,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16739},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E25.Dad's Dungeon-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E25.Dad's Dungeon-Bluray-1080p.mkv","size":246596109,"dateAdded":"2020-12-07T20:37:03.591231Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148310,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2561020,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16740},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E25.His Hero-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E25.His Hero-Bluray-1080p.mkv","size":231257400,"dateAdded":"2020-12-07T20:37:03.666687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2404441,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16741},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E25.Flute Spell-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E25.Flute Spell-Bluray-1080p.mkv","size":213321941,"dateAdded":"2020-12-07T20:37:03.746655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16742},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E25.Astral Plane-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E25.Astral Plane-Bluray-1080p.mkv","size":205429404,"dateAdded":"2020-12-07T20:37:03.823443Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16743},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E25.Candy Streets-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E25.Candy Streets-Bluray-1080p.mkv","size":184832199,"dateAdded":"2020-12-07T20:37:03.92421Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16744},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E25.Islands - Min & Marty (6)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E25.Islands - Min & Marty (6)-Bluray-1080p.mkv","size":183408331,"dateAdded":"2020-12-07T20:37:04.014812Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":141029,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1970180,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16745},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E25.I Remember You-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E25.I Remember You-Bluray-1080p.mkv","size":164030799,"dateAdded":"2020-12-07T20:37:04.095229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1640698,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16746},{"seriesId":3,"seasonNumber":3,"relativePath":"Season 03\/S03E26.Incendium-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 03\/S03E26.Incendium-Bluray-1080p.mkv","size":266852302,"dateAdded":"2020-12-07T20:37:04.201097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2787566,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16747},{"seriesId":3,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Gut Grinder-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 01\/S01E26.Gut Grinder-Bluray-1080p.mkv","size":247698120,"dateAdded":"2020-12-07T20:37:04.284616Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":139464,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2606596,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16748},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E26.Gold Stars-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E26.Gold Stars-Bluray-1080p.mkv","size":226167155,"dateAdded":"2020-12-07T20:37:04.366142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16749},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E26.Wizards Only, Fools-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E26.Wizards Only, Fools-Bluray-1080p.mkv","size":224111763,"dateAdded":"2020-12-07T20:37:04.466164Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16750},{"seriesId":3,"seasonNumber":2,"relativePath":"Season 02\/S02E26.Heat Signature-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 02\/S02E26.Heat Signature-Bluray-1080p.mkv","size":210435669,"dateAdded":"2020-12-07T20:37:04.556399Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":147048,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2145146,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16751},{"seriesId":3,"seasonNumber":4,"relativePath":"Season 04\/S04E26.The Lich-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 04\/S04E26.The Lich-Bluray-1080p.mkv","size":194989354,"dateAdded":"2020-12-07T20:37:04.640517Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155607,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1976089,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16752},{"seriesId":3,"seasonNumber":7,"relativePath":"Season 07\/S07E26.The Thin Yellow Line-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 07\/S07E26.The Thin Yellow Line-Bluray-1080p.mkv","size":191096978,"dateAdded":"2020-12-07T20:37:04.724392Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16753},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E26.Islands - Helpers (7)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E26.Islands - Helpers (7)-Bluray-1080p.mkv","size":160618499,"dateAdded":"2020-12-07T20:37:04.822429Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":140930,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1702777,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16754},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E27.The Visitor-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E27.The Visitor-Bluray-1080p.mkv","size":212647027,"dateAdded":"2020-12-07T20:37:04.909038Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16755},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E27.Jake Suit-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E27.Jake Suit-Bluray-1080p.mkv","size":183890855,"dateAdded":"2020-12-07T20:37:04.989351Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16756},{"seriesId":3,"seasonNumber":8,"relativePath":"Season 08\/S08E27.Islands - The Light Cloud (8)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 08\/S08E27.Islands - The Light Cloud (8)-Bluray-1080p.mkv","size":178797172,"dateAdded":"2020-12-07T20:37:05.062004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1913125,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16757},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E28.The Mountain-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E28.The Mountain-Bluray-1080p.mkv","size":227907375,"dateAdded":"2020-12-07T20:37:05.133646Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16758},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E28.Be More-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E28.Be More-Bluray-1080p.mkv","size":206864282,"dateAdded":"2020-12-07T20:37:05.211475Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16759},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E29.Dark Purple-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E29.Dark Purple-Bluray-1080p.mkv","size":232055209,"dateAdded":"2020-12-07T20:37:05.299408Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16760},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E29.Sky Witch-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E29.Sky Witch-Bluray-1080p.mkv","size":195166316,"dateAdded":"2020-12-07T20:37:05.378184Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16761},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E30.Frost & Fire-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E30.Frost & Fire-Bluray-1080p.mkv","size":218083197,"dateAdded":"2020-12-07T20:37:05.459144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16762},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E30.The Diary-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E30.The Diary-Bluray-1080p.mkv","size":203607404,"dateAdded":"2020-12-07T20:37:05.555677Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16763},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E31.Walnuts & Rain-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E31.Walnuts & Rain-Bluray-1080p.mkv","size":222074828,"dateAdded":"2020-12-07T20:37:05.631507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16764},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E31.Too Old-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E31.Too Old-Bluray-1080p.mkv","size":202023585,"dateAdded":"2020-12-07T20:37:05.717747Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16765},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E32.Friends Forever-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E32.Friends Forever-Bluray-1080p.mkv","size":200263094,"dateAdded":"2020-12-07T20:37:05.80836Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16766},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E32.Earth & Water-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E32.Earth & Water-Bluray-1080p.mkv","size":184217316,"dateAdded":"2020-12-07T20:37:05.894391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16767},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E33.Time Sandwich-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E33.Time Sandwich-Bluray-1080p.mkv","size":215596765,"dateAdded":"2020-12-07T20:37:05.992091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16768},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E33.Jermaine-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E33.Jermaine-Bluray-1080p.mkv","size":198459150,"dateAdded":"2020-12-07T20:37:06.077863Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16769},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E34.The Vault-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E34.The Vault-Bluray-1080p.mkv","size":177092384,"dateAdded":"2020-12-07T20:37:06.159829Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16770},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E34.Chips and Ice Cream-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E34.Chips and Ice Cream-Bluray-1080p.mkv","size":173448500,"dateAdded":"2020-12-07T20:37:06.256825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16771},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E35.Graybles 1000+-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E35.Graybles 1000+-Bluray-1080p.mkv","size":212016795,"dateAdded":"2020-12-07T20:37:06.341457Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16772},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E35.Love Games-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E35.Love Games-Bluray-1080p.mkv","size":161915584,"dateAdded":"2020-12-07T20:37:06.429246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16773},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E36.Dungeon Train-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E36.Dungeon Train-Bluray-1080p.mkv","size":279328438,"dateAdded":"2020-12-07T20:37:06.506306Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16774},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E36.Hoots-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E36.Hoots-Bluray-1080p.mkv","size":261595686,"dateAdded":"2020-12-07T20:37:06.610728Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16775},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E37.Water Park Prank-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E37.Water Park Prank-Bluray-1080p.mkv","size":217591393,"dateAdded":"2020-12-07T20:37:06.695199Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16776},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E37.Box Prince-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E37.Box Prince-Bluray-1080p.mkv","size":197827210,"dateAdded":"2020-12-07T20:37:06.802703Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16777},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E38.You Forgot Your Floaties-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E38.You Forgot Your Floaties-Bluray-1080p.mkv","size":217637797,"dateAdded":"2020-12-07T20:37:06.889114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16778},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E38.Red Starved-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E38.Red Starved-Bluray-1080p.mkv","size":181598331,"dateAdded":"2020-12-07T20:37:06.992593Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16779},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E39.We Fixed a Truck-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E39.We Fixed a Truck-Bluray-1080p.mkv","size":195213636,"dateAdded":"2020-12-07T20:37:07.100686Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16780},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E39.Be Sweet-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E39.Be Sweet-Bluray-1080p.mkv","size":189102270,"dateAdded":"2020-12-07T20:37:07.178989Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16781},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E40.Orgalorg-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E40.Orgalorg-Bluray-1080p.mkv","size":233798665,"dateAdded":"2020-12-07T20:37:07.269783Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16782},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E40.Play Date-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E40.Play Date-Bluray-1080p.mkv","size":180147765,"dateAdded":"2020-12-07T20:37:07.382425Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16783},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E41.On the Lam-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E41.On the Lam-Bluray-1080p.mkv","size":207016081,"dateAdded":"2020-12-07T20:37:07.48281Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16784},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E41.The Pit-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E41.The Pit-Bluray-1080p.mkv","size":165986354,"dateAdded":"2020-12-07T20:37:07.560831Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16785},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E42.Hot Diggity Doom-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E42.Hot Diggity Doom-Bluray-1080p.mkv","size":190502677,"dateAdded":"2020-12-07T20:37:07.648525Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16786},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E42.James-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E42.James-Bluray-1080p.mkv","size":153067209,"dateAdded":"2020-12-07T20:37:07.726584Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16787},{"seriesId":3,"seasonNumber":6,"relativePath":"Season 06\/S06E43.The Comet-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 06\/S06E43.The Comet-Bluray-1080p.mkv","size":228590779,"dateAdded":"2020-12-07T20:37:07.816632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16788},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E43.Root Beer Guy-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E43.Root Beer Guy-Bluray-1080p.mkv","size":165202692,"dateAdded":"2020-12-07T20:37:07.927167Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16789},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E44.Apple Wedding-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E44.Apple Wedding-Bluray-1080p.mkv","size":189224290,"dateAdded":"2020-12-07T20:37:08.022752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16790},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E45.Blade of Grass-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E45.Blade of Grass-Bluray-1080p.mkv","size":217896043,"dateAdded":"2020-12-07T20:37:08.124594Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16791},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E46.Rattleballs-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E46.Rattleballs-Bluray-1080p.mkv","size":180729072,"dateAdded":"2020-12-07T20:37:08.259181Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16792},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E47.The Red Throne-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E47.The Red Throne-Bluray-1080p.mkv","size":230005576,"dateAdded":"2020-12-07T20:37:08.33878Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16793},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E48.Betty-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E48.Betty-Bluray-1080p.mkv","size":226174168,"dateAdded":"2020-12-07T20:37:08.420519Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16794},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E49.Bad Timing-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E49.Bad Timing-Bluray-1080p.mkv","size":189351586,"dateAdded":"2020-12-07T20:37:08.498161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16795},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E50.Lemonhope (1)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E50.Lemonhope (1)-Bluray-1080p.mkv","size":300205286,"dateAdded":"2020-12-07T20:37:08.584218Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16796},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E51.Lemonhope (2)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E51.Lemonhope (2)-Bluray-1080p.mkv","size":196698103,"dateAdded":"2020-12-07T20:37:08.672422Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16797},{"seriesId":3,"seasonNumber":5,"relativePath":"Season 05\/S05E52.Billy's Bucket List-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Season 05\/S05E52.Billy's Bucket List-Bluray-1080p.mkv","size":229815472,"dateAdded":"2020-12-07T20:37:08.782323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16798},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E17.Distant Lands (1) - BMO-WEBDL-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E17.Distant Lands (1) - BMO-WEBDL-1080p.mkv","size":2734691957,"dateAdded":"2020-12-07T20:37:31.649525Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7718682,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16812},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E18.Distant Lands (2) - Obsidian-HDTV-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E18.Distant Lands (2) - Obsidian-HDTV-1080p.mkv","size":2763199499,"dateAdded":"2020-12-07T20:37:31.726641Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7620787,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16813},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E01.Adventure Time (Pilot)-SDTV.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E01.Adventure Time (Pilot)-SDTV.mkv","size":43299866,"dateAdded":"2020-12-07T20:38:36.649134Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128009,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":710151,"videoCodec":"x265","videoFps":23.976,"resolution":"640x480","runTime":"6:52","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16814},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E02.The Wand-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E02.The Wand-Bluray-1080p.mkv","size":24007384,"dateAdded":"2020-12-07T20:38:36.715999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1371595,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:07","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16815},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E03.How an Idea Becomes Adventure Time-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E03.How an Idea Becomes Adventure Time-Bluray-1080p.mkv","size":96809371,"dateAdded":"2020-12-07T20:38:36.793865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1570503,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"7:35","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16816},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E04.All's Well That Rats Swell-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E04.All's Well That Rats Swell-Bluray-1080p.mkv","size":19005281,"dateAdded":"2020-12-07T20:38:36.871666Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128016,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":751584,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:52","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16817},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E05.Have You Seen the Muffin Mess-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E05.Have You Seen the Muffin Mess-Bluray-1080p.mkv","size":24561825,"dateAdded":"2020-12-07T20:38:36.95491Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1019817,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:50","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16818},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E06.Sow, Do You Like Them Apples-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E06.Sow, Do You Like Them Apples-Bluray-1080p.mkv","size":20985489,"dateAdded":"2020-12-07T20:38:37.033825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":852317,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:50","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16819},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E07.The Gift That Reaps Giving-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E07.The Gift That Reaps Giving-Bluray-1080p.mkv","size":19498298,"dateAdded":"2020-12-07T20:38:37.112004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":782206,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:50","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16820},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E08.Good Jubies - The Making of Bad Jubies-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E08.Good Jubies - The Making of Bad Jubies-Bluray-1080p.mkv","size":286505172,"dateAdded":"2020-12-07T20:38:37.180436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2902399,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"12:35","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16821},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E09.Frog Seasons (1) - Spring-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E09.Frog Seasons (1) - Spring-Bluray-1080p.mkv","size":22760878,"dateAdded":"2020-12-07T20:38:37.251644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1374579,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:01","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16822},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E10.Frog Seasons (2) - Summer-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E10.Frog Seasons (2) - Summer-Bluray-1080p.mkv","size":25067064,"dateAdded":"2020-12-07T20:38:37.322608Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1522540,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:01","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16823},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E11.Frog Seasons (3) - Autumn-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E11.Frog Seasons (3) - Autumn-Bluray-1080p.mkv","size":19314354,"dateAdded":"2020-12-07T20:38:37.392257Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1147522,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:00","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16824},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E12.Frog Seasons (4) - Winter-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E12.Frog Seasons (4) - Winter-Bluray-1080p.mkv","size":18794756,"dateAdded":"2020-12-07T20:38:37.464104Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1113576,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:00","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16825},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E13.Frog Seasons (5) - Spring (Again)-Bluray-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E13.Frog Seasons (5) - Spring (Again)-Bluray-1080p.mkv","size":23479501,"dateAdded":"2020-12-07T20:38:37.6631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1423695,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:00","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16826},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E16.Diamonds and Lemons-WEBDL-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E16.Diamonds and Lemons-WEBDL-1080p.mkv","size":110290793,"dateAdded":"2020-12-07T20:38:37.749257Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1156605,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16827},{"seriesId":3,"seasonNumber":0,"relativePath":"Specials\/S00E19.Distant Lands (3) - Together Again-HDTV-1080p.mkv","path":"\/tv\/Adventure Time\/Specials\/S00E19.Distant Lands (3) - Together Again-HDTV-1080p.mkv","size":2635440815,"dateAdded":"2021-05-22T01:17:59.498857Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7052021,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18231}],"queue":[]},"43":{"series":{"title":"Avatar: The Last Airbender","alternateTitles":[{"title":"Avatar","sceneSeasonNumber":-1},{"title":"Avatar \u2013 Der Herr der Elemente","sceneSeasonNumber":-1},{"title":"Avatar","seasonNumber":-1}],"sortTitle":"avatar last airbender","status":"ended","ended":true,"overview":"With the Fire Nation on the brink of global domination, a young boy reawakens after a hundred-year absence. To save his war-torn world he must accept his destiny as the Avatar before it's too late.","previousAiring":"2008-07-20T01:00:00Z","network":"Nickelodeon","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/31\/banner.jpg?lastWrite=637103832307920850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/74852-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/31\/poster.jpg?lastWrite=637103832310720800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/74852-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/31\/fanart.jpg?lastWrite=637103832305160900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/74852-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":20,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-12-03T02:25:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46964751798,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-12-02T02:25:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46964586195,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2008-07-20T01:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":49310186161,"percentOfEpisodes":100.0}}],"year":2005,"path":"\/tv\/Avatar- The Last Airbender","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":74852,"tvRageId":2680,"tvMazeId":555,"firstAired":"2005-02-21T00:00:00Z","seriesType":"standard","cleanTitle":"avatarlastairbender","imdbId":"tt0417299","titleSlug":"avatar-the-last-airbender","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children","Drama","Fantasy","Martial Arts"],"tags":[],"added":"2018-05-31T16:45:18.56614Z","ratings":{"votes":6983,"value":9.0},"statistics":{"seasonCount":3,"episodeFileCount":61,"episodeCount":61,"totalEpisodeCount":81,"sizeOnDisk":143239524154,"percentOfEpisodes":100.0},"id":31},"episodes":[{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Chibi Short: Swamp Skiin' Throwdown","overview":"Bonus from Book 3, DVD3","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":865},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Chibi Short: Bending Battle","overview":"Bonus from Book 3, DVD2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":866},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Chibi Short: School Time Shipping","overview":"Bonus from Book 3, DVD4","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":867},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Making of Avatar: From Real Life to Animation","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21356},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Behind the Scenes: The Voices of Avatar","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21357},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Ask the Creators Featurette","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21358},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Behind the Scenes with the Avatar Cast & Crew","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21360},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"The Making Of Avatar: Inside The Sound Studios","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21361},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The Making Of Avatar: Inside The Korean Animation Studios","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21362},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Interview with Creators and M. Night Shyamalan","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21364},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"The Essence Of Bending With Bryan Konietzko And Sifu Kisu","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21365},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"The Women of Avatar: The Last Airbender","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21366},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Creating The Legend of Airbending","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21369},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Creating The Legend of Earthbending","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21370},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Creating The Legend of Firebending","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21371},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Creating The Legend of Waterbending","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21372},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"The Secret of the Fire Nation","overview":"Special combining Chapters 12 & 13\r\nThe Serpent's Pass: When Aang and the gang meet up with a group of refugees, they tell the gang where they can get on a ferry to Ba Sing Se. But after a series of events they have to take a deadly route called the serpent's pass with the help of an old friend, Suki. Meanwhile Zuko and Iroh meet up with a boy named Jet and his freedom fighters.\r\nThe Drill: Having made it to the outer wall of Ba Sing Se, the kids confront a Fire Nation army that is driving a massive Fire Nation drill, which poses an imminent threat to the last Earth Kingdom stronghold. Meanwhile, Zuko and Iroh make crucial mistakes which begin to attract Jet's suspicions.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21506},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Unaired Pilot","overview":"Sokka and his sister Kya must travel the world to find masters for Aang, who is the Avatar. However, they must evade a critical foe, Prince Zuko of the Fire Nation, who wants to capture Aang.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21507},{"seriesId":31,"episodeFileId":6349,"seasonNumber":1,"episodeNumber":1,"title":"Chapter One: The Boy in the Iceberg","airDate":"2005-02-21","airDateUtc":"2005-02-22T02:00:00Z","overview":"Two teenage siblings (Sokka and Katara) living in the South Pole discover a very strange boy (Aang), along with his pet flying bison Appa, in an iceberg. But can they trust him when he accidentally draws the war to their village's doorstep?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":869},{"seriesId":31,"episodeFileId":6350,"seasonNumber":1,"episodeNumber":2,"title":"Chapter Two: The Avatar Returns","airDate":"2005-02-21","airDateUtc":"2005-02-22T02:25:00Z","overview":"Katara and Sokka discover that Aang is the long-lost Avatar and must rescue him when a Firebending prince named Zuko kidnaps him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":870},{"seriesId":31,"episodeFileId":6351,"seasonNumber":1,"episodeNumber":3,"title":"Chapter Three: The Southern Air Temple","airDate":"2005-02-25","airDateUtc":"2005-02-26T02:00:00Z","overview":"Aang is excited about going home (the Southern Airtemple) for the first time in one hundred years, but he is shocked to find out that the temple is deserted. Aang tells Sokka and Katara about his childhood as they explore the temple, but they soon discover something that Aang never expected. Meanwhile, Prince Zuko must make repairs to his ship and the only way he can do it is to dock his ship at his rival's naval base.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":871},{"seriesId":31,"episodeFileId":6352,"seasonNumber":1,"episodeNumber":4,"title":"Chapter Four: The Warriors of Kyoshi","airDate":"2005-03-04","airDateUtc":"2005-03-05T02:00:00Z","overview":"The gang arrives at Kyoshi Island and are captured by some Kyoshi warriors. When Aang reveals that he is the avatar, news quickly spreads out and suddenly reaches to Prince Zuko who then goes to Kyoshi Island to capture him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":872},{"seriesId":31,"episodeFileId":6353,"seasonNumber":1,"episodeNumber":5,"title":"Chapter Five: The King of Omashu","airDate":"2005-03-18","airDateUtc":"2005-03-19T02:00:00Z","overview":"Aang's abilities as an airbender are challenged by a king.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":873},{"seriesId":31,"episodeFileId":6354,"seasonNumber":1,"episodeNumber":6,"title":"Chapter Six: Imprisoned","airDate":"2005-03-25","airDateUtc":"2005-03-26T02:00:00Z","overview":"In a nearby Earth Village, the gang meets a teenage earthbender named Haru. This village lives in fear of the Fire Nation, for soldiers there capture any earthbenders they can find.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":874},{"seriesId":31,"episodeFileId":6355,"seasonNumber":1,"episodeNumber":7,"title":"Chapter Seven: The Spirit World (Winter Solstice, Part 1)","airDate":"2005-04-08","airDateUtc":"2005-04-09T01:00:00Z","overview":"Aang and friends visit a village being terrorized by an angry spirit. Iroh is captured by Earth Kingdom soldiers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":875},{"seriesId":31,"episodeFileId":6356,"seasonNumber":1,"episodeNumber":8,"title":"Chapter Eight: Avatar Roku (Winter Solstice, Part 2)","airDate":"2005-04-15","airDateUtc":"2005-04-16T01:00:00Z","overview":"To contact the spirit of the previous Avatar, Aang must reach a temple in the Fire Nation before the sun sets on the following day. There he will learn what he must do to restore balance to the world. Zuko must defy his banishment to follow Aang.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":876},{"seriesId":31,"episodeFileId":6357,"seasonNumber":1,"episodeNumber":9,"title":"Chapter Nine: The Waterbending Scroll","airDate":"2005-04-29","airDateUtc":"2005-04-30T01:00:00Z","overview":"After Katara attempts to teach Aang waterbending, but realizes that he is learning it much faster than she is, she is desperate to improve her abilities. When Katara inadvertently stumbles across a waterbending scroll that can help improve her ability while Aang is looking at a pirate\u2019s store, she decides to steal it after she realizes that she couldn\u2019t hope to afford it; but will she be capable of stealing from the pirates without causing herself and her friends trouble?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":877},{"seriesId":31,"episodeFileId":6358,"seasonNumber":1,"episodeNumber":10,"title":"Chapter Ten: Jet","airDate":"2005-05-06","airDateUtc":"2005-05-07T01:00:00Z","overview":"It's all about instincts...While traveling towards the North Pole, the group almost gets captured by the Fire Nation. However, when a charismatic young man and his band of rebels attack the Fire Nation camp and rescue them, they learn that they are trying to resist the Fire Nation\u2019s motives to expand their territory. Katara and Aang really enjoy their time with the band of rebels, but Sokka soon discovers that they aren\u2019t as noble as meets the eye.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":878},{"seriesId":31,"episodeFileId":6359,"seasonNumber":1,"episodeNumber":11,"title":"Chapter Eleven: The Great Divide","airDate":"2005-05-20","airDateUtc":"2005-05-21T01:00:00Z","overview":"While on their way to the North Pole, Aang and his friends arrive at a giant canyon where two groups of refugees are bickering over who should get to go across. Aang decides to walk across with the two groups to ensure they don\u2019t fight one another. However, he soon learns that the two tribes have been feuding for one hundred years and they both believe their actions are justified. But when the predators inside the canyon start to come out, Aang is stuck trying to defend both tribes from each other and the vicious wildlife.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":879},{"seriesId":31,"episodeFileId":6360,"seasonNumber":1,"episodeNumber":12,"title":"Chapter Twelve: The Storm","airDate":"2005-06-03","airDateUtc":"2005-06-04T01:00:00Z","overview":"Aang, Katara and Sokka have run out of money. Katara suggests Sokka get a job, and coincidentally, they meet a fisherman who is looking for someone to help him out with his fishing. But when the fisherman recognizes Aang as the Avatar, he blames Aang's absence for all of the troubles of the last 100 years, and Aang runs away on his glider. Katara follows on Appa, and when she finds him, Aang begins to reveal life before he was frozen in the iceberg.Meanwhile, Prince Zuko and Lieutenant Jee get into a fight, but Iroh breaks it up. Soon thereafter, the Lieutenant and the rest of the crew gain a newfound respect for their leader after learning of his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":880},{"seriesId":31,"episodeFileId":6361,"seasonNumber":1,"episodeNumber":13,"title":"Chapter Thirteen: The Blue Spirit","airDate":"2005-06-17","airDateUtc":"2005-06-18T01:00:00Z","overview":"While Aang, Katara and Sokka are traveling, Sokka gets a fever. Katara and Aang try to help Sokka, when only Katara catches the fever. It's up to Aang to go up on his own to save his two friends.But before he can get the medicine he is captured by the newly promoted Admiral Zhao and put in Zhao's fortress.Will Aang save Sokka and Katara in time?And who is this strange figure wearing a blue demonic looking mask?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":881},{"seriesId":31,"episodeFileId":6362,"seasonNumber":1,"episodeNumber":14,"title":"Chapter Fourteen: The Fortuneteller","airDate":"2005-09-23","airDateUtc":"2005-09-24T01:00:00Z","overview":"When the group tries to help a man who is being attacked by a platypus-bear, they discover that the local town has a fortuneteller named Aunt Wu in it, who has been forecasting the town's fate for years. But when Sokka and Aang discover one of the fortuneteller's most vital predictions is dead wrong, they have to develop a plan to convince the stubborn townspeople that their beloved Aunt Wu was wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":882},{"seriesId":31,"episodeFileId":6363,"seasonNumber":1,"episodeNumber":15,"title":"Chapter Fifteen: Bato of the Water Tribe","airDate":"2005-10-07","airDateUtc":"2005-10-08T01:00:00Z","overview":"Aang feels neglected as Katara and Sokka reunite with Bato, an old friend of their father\u2019s from the South Pole. They begin to reminisce on their times in the past while they wait for a message to arrive from their father; in which Aang believes Katara and Sokka will abandon him and go out to find their father should the message arrive. However, when the messenger gives Aang the message to give to Bato, Aang betrays his friends in a way Katara or Sokka could never imagine. However, when Zuko recruits a bounty hunter named Jun to track Aang down, his friendship is put to the test as he must deal with the fact that he betrayed his friends while defending himself from yet another fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":883},{"seriesId":31,"episodeFileId":6364,"seasonNumber":1,"episodeNumber":16,"title":"Chapter Sixteen: The Deserter","airDate":"2005-10-21","airDateUtc":"2005-10-22T01:00:00Z","overview":"When Aang and his friends go to a Fire Nation town so that Aang can witness some firebending, their plan soon goes awry when it\u2019s discovered that he is the Avatar. Fortunately, he\u2019s rescued by an individual who serves a firebending master named Jeong Jeong who has abandoned the Fire Nation, so Aang attempts to use this time to attempt to learn how to firebend. However, when the firebending master refuses to even see Aang, will Aang be able to prove he\u2019s ready to learn how to firebend despite the fact that he lacks discipline?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":884},{"seriesId":31,"episodeFileId":6365,"seasonNumber":1,"episodeNumber":17,"title":"Chapter Seventeen: The Northern Air Temple","airDate":"2005-11-04","airDateUtc":"2005-11-05T02:00:00Z","overview":"When Aang and his friends hear rumors about surviving airbenders, they decide to stop by the Northern Air Temple on their way to the North Pole to see for themselves. What they find is a bunch of people who are not airbenders, but have mastered the art of gliding; though this upsets Aang because they have been defacing the temple. However, there was one part of the temple where nobody has been able to enter, and what Aang and his friends discover inside spells oncoming conflict.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":885},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Avatar: The Legend So Far","airDate":"2005-11-18","airDateUtc":"2005-11-19T02:00:00Z","overview":"Narrator James Garrett, the voice of Avatar Roku, explains some of the events that have taken place over the course of Aang\u2019s journey and provides some additional insight into some of the characters. This clip-filled special recaps the adventures of our travelers on their journey throughout the Avatar world, all en route to their ultimate destination, the Northern Water Tribe. It was then followed by a brand new episode, Chapter Eighteen: The Waterbending Master.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":864},{"seriesId":31,"episodeFileId":6366,"seasonNumber":1,"episodeNumber":18,"title":"Chapter Eighteen: The Waterbending Master","airDate":"2005-11-18","airDateUtc":"2005-11-19T02:00:00Z","overview":"When Aang tries to find the north pole, he is found by the north pole instead.When they are taken there Aang and Katara are eager to find a water bending master only to find that girls are not allowed to learn waterbending.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":886},{"seriesId":31,"episodeFileId":6367,"seasonNumber":1,"episodeNumber":19,"title":"Chapter Nineteen: The Siege of the North Part 1","airDate":"2005-12-02","airDateUtc":"2005-12-03T02:00:00Z","overview":"In the first half of the two-part season finale, Zhao begins to launch his attack against the Northern Water Tribe. As the walls of the prestiged city begin to fall, the Avatar taps into the spirit world and seeks the help of one of the oldest spirits, in hopes of saving one of the most prominent areas of the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":887},{"seriesId":31,"episodeFileId":6368,"seasonNumber":1,"episodeNumber":20,"title":"Chapter Twenty: The Siege of the North Part 2","airDate":"2005-12-02","airDateUtc":"2005-12-03T02:25:00Z","overview":"Aang returns from the spirit world to a big surprise. Meanwhile, Zhao and his forces continue to press deeper into the Northern Water Tribe. What could possibly stop the fire nation from destroying this tranquil region? If Zhao has his way, nothing. Also, Iroh makes a powerful stand and Zuko struggles to keep his plan intact.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":888},{"seriesId":31,"episodeFileId":6372,"seasonNumber":2,"episodeNumber":1,"title":"Chapter One: The Avatar State","airDate":"2006-03-17","airDateUtc":"2006-03-18T02:00:00Z","overview":"Plagued with nightmares featuring the devastating power of his Avatar State, Aang and the gang meet an Earth Kingdom general who has big plans for defeating the Fire Nation. Meanwhile, Prince Zuko and Uncle Iroh, having survived the failed attack on the North Water Tribe, have a surprise visit from the Prince's sister with seemingly good news.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":889},{"seriesId":31,"episodeFileId":6373,"seasonNumber":2,"episodeNumber":2,"title":"Chapter Two: The Cave of Two Lovers","airDate":"2006-03-24","airDateUtc":"2006-03-25T02:00:00Z","overview":"On their way to Omashu, Aang, Katara, and Sokka meet a group of nomads who show them a shortcut through the \"Cave of Two Lovers.\" But when the group becomes trapped in the cave, it's up to Aang and Katara to save the group by trusting in love ... and possibly questioning their relationship. Meanwhile, Iroh gets a lethal rash so Zuko and Iroh head to a small Earth Kingdom town for help, hoping their real identities will not be discovered.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":890},{"seriesId":31,"episodeFileId":6374,"seasonNumber":2,"episodeNumber":3,"title":"Chapter Three: Return to Omashu","airDate":"2006-04-07","airDateUtc":"2006-04-08T01:00:00Z","overview":"Despite the shocking news the gang have just discovered, Aang insists on trying to find King Bumi within Omashu's borders, even with the dangers that will await him and his friends if his real identity is discovered. Meanwhile Azula goes in search of old friends to help her with her mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":891},{"seriesId":31,"episodeFileId":6375,"seasonNumber":2,"episodeNumber":4,"title":"Chapter Four: The Swamp","airDate":"2006-04-14","airDateUtc":"2006-04-15T01:00:00Z","overview":"A mysterious tornado pulls the kids into a supernatural swamp where Katara, Sokka and Aang have mysterious visions. Meanwhile, Momo and Appa are chased by rogue swamp dwellers and only Aang and the gang can save them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":892},{"seriesId":31,"episodeFileId":6376,"seasonNumber":2,"episodeNumber":5,"title":"Chapter Five: Avatar Day","airDate":"2006-04-28","airDateUtc":"2006-04-29T01:00:00Z","overview":"Aang and the gang discover an Earth town that celebrates something called \"Avatar Day.\" But when they get there and learn the festival is of \"anti-Avatar\" sentiment and Aang is put on trial for a crime a past incarnation allegedly committed. Looking to clear the Avatar's good name, Katara and Sokka venture back to a familiar place to gather evidence and discover the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":893},{"seriesId":31,"episodeFileId":6377,"seasonNumber":2,"episodeNumber":6,"title":"Chapter Six: The Blind Bandit","airDate":"2006-05-05","airDateUtc":"2006-05-06T01:00:00Z","overview":"In search for an Earthbending teacher for Aang, the kids go to an underground Earthbending tournament called Earth Rumble 6, where they encounter Toph (aka the Blind Bandit), a blind, but powerful Earthbending girl. After seeing her unique style of Earthbending, Aang wants Toph to become his teacher, but there are complications with Toph's family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":894},{"seriesId":31,"episodeFileId":6378,"seasonNumber":2,"episodeNumber":7,"title":"Chapter Seven: Zuko Alone","airDate":"2006-05-12","airDateUtc":"2006-05-13T01:00:00Z","overview":"Zuko travels by himself to an Earth Kingdom town were he meets a local boy. The two almost become friends, meanwhile Zuko suffers from flashbacks of his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":895},{"seriesId":31,"episodeFileId":6379,"seasonNumber":2,"episodeNumber":8,"title":"Chapter Eight: The Chase","airDate":"2006-05-26","airDateUtc":"2006-05-27T01:00:00Z","overview":"Tired from trying to escape a machine that shows up every time they try to sleep, Aang and the gang have to escape Azula and her team, but their exhaustion leads to a tight situation. Meanwhile, Zuko must deal with something personal. And Iroh bonds with an unlikely individual.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":896},{"seriesId":31,"episodeFileId":6380,"seasonNumber":2,"episodeNumber":9,"title":"Chapter Nine: Bitter Work","airDate":"2006-06-02","airDateUtc":"2006-06-03T01:00:00Z","overview":"Toph's instructing abilities come into question when Aang cannot seem to overcome a block that keeps him from earthbending. Sokka gets himself in a jam, while befriending what was, moments before, his next meal, and Iroh and Zuko begin training utilizing new philosophies and methods that originate from the other elements.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":897},{"seriesId":31,"episodeFileId":6381,"seasonNumber":2,"episodeNumber":10,"title":"Chapter Ten: The Library","airDate":"2006-07-14","airDateUtc":"2006-07-15T01:00:00Z","overview":"When Aang and his friends find a professor who knows of a library that contains information about the world, Sokka decides to go there to hopefully find some information to use against the Fire Nation. The library is guarded by the knowledge spirit, Wan Shi Tong, who doesn't welcome humans into his library, because he believes they only seek information for evil purposes. When Wan Shi Tong discovers Sokka wasn't being truthful with him, he begins to sink the library, bringing the kids down with it. Will everyone be able to escape the library in time? And who are the strange benders who have kidnapped Appa?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":898},{"seriesId":31,"episodeFileId":6382,"seasonNumber":2,"episodeNumber":11,"title":"Chapter Eleven: The Desert","airDate":"2006-07-14","airDateUtc":"2006-07-15T01:25:00Z","overview":"Aang searches for Appa, while Katara struggles to keep everyone together so they can survive in the vast desert while Sokaa supposedly gets \"high\" off Cactus juice in the desert.Meanwhile, Iroh and Zuko seek help from an ancient secret society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":899},{"seriesId":31,"episodeFileId":6383,"seasonNumber":2,"episodeNumber":12,"title":"Chapter Twelve: The Serpent's Pass","airDate":"2006-09-15","airDateUtc":"2006-09-16T01:00:00Z","overview":"When Aang and the gang meet up with a group of refugees, they tell the gang where they can get on a ferry to Ba Sing Se. But after a series of events they have to take a deadly route called the serpent's pass with the help of an old friend, Suki. Meanwhile Zuko and Iroh meet up with a boy named Jet and his freedom fighters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":900},{"seriesId":31,"episodeFileId":6383,"seasonNumber":2,"episodeNumber":13,"title":"Chapter Thirteen: The Drill","airDate":"2006-09-15","airDateUtc":"2006-09-16T01:25:00Z","overview":"Having made it to the outer wall of Ba Sing Se, the kids confront a Fire Nation army that is driving a massive Fire Nation drill, which poses an imminent threat to the last Earth Kingdom stronghold. Meanwhile, Zuko and Iroh make crucial mistakes which begin to attract Jet's suspicions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":901},{"seriesId":31,"episodeFileId":6384,"seasonNumber":2,"episodeNumber":14,"title":"Chapter Fourteen: City of Walls and Secrets","airDate":"2006-09-22","airDateUtc":"2006-09-23T01:00:00Z","overview":"Having finally made it into Ba Sing Se, the kids are given a house in the upper ring. The kids are anxious to tell the Earth King their plan but there are complications. Meanwhile, still convinced that Iroh and Zuko may be Fire Nation, Jet decides to take matters into his own hands and do whatever it takes to get the refugees to reveal their true nature.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":902},{"seriesId":31,"episodeFileId":6385,"seasonNumber":2,"episodeNumber":15,"title":"Chapter Fifteen: The Tales of Ba Sing Se","airDate":"2006-09-29","airDateUtc":"2006-09-30T01:00:00Z","overview":"A series of short stories, highlighting different characters and their individual adventures in the city. Tales of Katara and Toph, Iroh, Sokka, Aang, Zuko, and Momo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":903},{"seriesId":31,"episodeFileId":6386,"seasonNumber":2,"episodeNumber":16,"title":"Chapter Sixteen: Appa's Lost Days","airDate":"2006-10-13","airDateUtc":"2006-10-14T01:00:00Z","overview":"In this special episode, we flash back to the moment Appa was stolen, find out where he has gone, who he has met along the way, and\u2014most importantly\u2014where he is now.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":904},{"seriesId":31,"episodeFileId":6387,"seasonNumber":2,"episodeNumber":17,"title":"Chapter Seventeen: Lake Laogai","airDate":"2006-11-03","airDateUtc":"2006-11-04T02:00:00Z","overview":"Aang and his friends continue to search for Appa and, unbeknownst to them, they aren't the only ones looking for him. During their search, the kids meet up with Jet, whom they are understandably reluctant to trust. The kids soon realize that the Dai Li are doing their best to thwart the kids efforts to find Appa. Meanwhile, Uncle Iroh is offered his own tea shop in the upper ring, and Zuko discovers the avatar is in the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":905},{"seriesId":31,"episodeFileId":6388,"seasonNumber":2,"episodeNumber":18,"title":"Chapter Eighteen: The Earth King","airDate":"2006-11-17","airDateUtc":"2006-11-18T02:00:00Z","overview":"The kids battle Long Feng and the Dai Li when they attempt to show the Earth King the vast conspiracy taking place in his city. Zuko becomes seriously ill and has feverish dreams as he faces a spiritual crisis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":906},{"seriesId":31,"episodeFileId":6389,"seasonNumber":2,"episodeNumber":19,"title":"Chapter Nineteen: The Guru","airDate":"2006-12-01","airDateUtc":"2006-12-02T02:00:00Z","overview":"Aang receives guidance from Guru Pathik at the Eastern Air Temple; Sokka is reunited with his long-lost father; Princess Azula has something diabolical in store for her enemies; Uncle and Zuko run their own tea shop.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":907},{"seriesId":31,"episodeFileId":6389,"seasonNumber":2,"episodeNumber":20,"title":"Chapter Twenty: The Crossroads of Destiny","airDate":"2006-12-01","airDateUtc":"2006-12-02T02:25:00Z","overview":"Everyone races against time to stop Azula's sinister plan. Zuko finds companionship in an unlikely source. Aang's destiny hangs in the balance - and so does Zuko's, as Iroh tells him \"it is time to choose.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":908},{"seriesId":31,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Escape from the Spirit World","airDate":"2007-09-11","airDateUtc":"2007-09-12T01:00:00Z","overview":"This video short follows Aang as he wanders the spirit world looking for his past lives while he was unconscious from when he was electrocuted by Azula (in between seasons 2 and 3). He learns that none of the avatars before him were perfect and he will have to learn from his own mistakes just like they did.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21663},{"seriesId":31,"episodeFileId":6333,"seasonNumber":3,"episodeNumber":1,"title":"Chapter One: The Awakening","airDate":"2007-09-21","airDateUtc":"2007-09-22T01:00:00Z","overview":"Aang awakens to find himself aboard a captured Fire Nation ship with a full head of hair and sustaining serious injuries from the previous battle for Ba Sing Se. At his side are Katara, Sokka, and their father Hakoda who recount the events that led the four to the ship and contemplate their next move. Aang struggles to fight his own desire to face the Fire Lord before he is ready. Meanwhile, the once exiled Prince Zuko deals with his own issues as he makes his long-awaited journey home, with the fear of his father's rejection hanging over his head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":909},{"seriesId":31,"episodeFileId":6334,"seasonNumber":3,"episodeNumber":2,"title":"Chapter Two: The Headband","airDate":"2007-09-28","airDateUtc":"2007-09-29T01:00:00Z","overview":"To better blend in as Fire Nation citizens, Aang enrolls in a Fire Nation school, giving himself an opportunity to learn more about the Nation while at the same enjoy life as a normal kid for the first time since he discovered he was the Avatar. Meanwhile Zuko, growing more and more paranoid about the Avatar's false demise, brings himself to confronts his imprisoned uncle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":910},{"seriesId":31,"episodeFileId":6335,"seasonNumber":3,"episodeNumber":3,"title":"Chapter Three: The Painted Lady","airDate":"2007-10-05","airDateUtc":"2007-10-06T01:00:00Z","overview":"When the gang arrives at a suffering fishing village, a mysterious spirit appears to help the villagers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":911},{"seriesId":31,"episodeFileId":6336,"seasonNumber":3,"episodeNumber":4,"title":"Chapter Four: Sokka's Master","airDate":"2007-10-12","airDateUtc":"2007-10-13T01:00:00Z","overview":"Feeling as though he isn't contributing enough to the group, Sokka seeks out an elusive swordsmaster from whom he can learn the ways of the blade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":912},{"seriesId":31,"episodeFileId":6337,"seasonNumber":3,"episodeNumber":5,"title":"Chapter Five: The Beach","airDate":"2007-10-19","airDateUtc":"2007-10-20T01:00:00Z","overview":"Zuko, Azula, Mai and Ty Lee take a vacation to ember island. In the process, they come to learn more about themselves and each other as well as their desires for the future. Elsewhere, Aang and others face off against a new adversary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":913},{"seriesId":31,"episodeFileId":6338,"seasonNumber":3,"episodeNumber":6,"title":"Chapter Six: The Avatar and the Firelord","airDate":"2007-10-26","airDateUtc":"2007-10-27T01:00:00Z","overview":"The tale of Avatar Roku and Fire Lord Sozin is revealed to Aang and Zuko by different sources. Both learn about themselves and are shown the origins of the war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":914},{"seriesId":31,"episodeFileId":6339,"seasonNumber":3,"episodeNumber":7,"title":"Chapter Seven: The Runaway","airDate":"2007-11-02","airDateUtc":"2007-11-03T01:00:00Z","overview":"When Katara expresses her disapproval to Toph's new way to make quick cash, the group finds her too motherly and tension grows between Katara and Toph. When Katara finally decides to participate in this scam to disprove Toph's accusations, they are left vulnerable and are forced to face the dire consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":915},{"seriesId":31,"episodeFileId":6340,"seasonNumber":3,"episodeNumber":8,"title":"Chapter Eight: The Puppetmaster","airDate":"2007-11-09","airDateUtc":"2007-11-10T02:00:00Z","overview":"The gang investigates the bizarre disappearances taking place within an eerie town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":916},{"seriesId":31,"episodeFileId":6341,"seasonNumber":3,"episodeNumber":9,"title":"Chapter Nine: Nightmares and Daydreams","airDate":"2007-11-16","airDateUtc":"2007-11-17T02:00:00Z","overview":"Four days prior the invasion, Aang becomes nervous over his soon-to-come confrontation with the Fire Lord. His anxiety gets the better of him as he begins to suffer from outrageous nightmares and hallucinations. Meanwhile, Zuko becomes upset to learn that he was not informed about a war meeting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":917},{"seriesId":31,"episodeFileId":6342,"seasonNumber":3,"episodeNumber":10,"title":"Chapter Ten: The Day of Black Sun: The Invasion (1)","airDate":"2007-11-30","airDateUtc":"2007-12-01T02:00:00Z","overview":"The day of the eclipse has arrived, and the invasion force gathers together to make last preparations. They infiltrate the island and the battle begins. Meanwhile, Aang searches for the Firelord.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":918},{"seriesId":31,"episodeFileId":6342,"seasonNumber":3,"episodeNumber":11,"title":"Chapter Eleven: The Day of Black Sun: The Eclipse (2)","airDate":"2007-11-30","airDateUtc":"2007-12-01T02:25:00Z","overview":"As the invasion force fights their way to the Fire Nation capital, the kids help Aang to find the Fire Lord in time for the eclipse. But there are a few surprises. Zuko confronts his father and tells him that he's going to join the Avatar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":919},{"seriesId":31,"episodeFileId":6343,"seasonNumber":3,"episodeNumber":12,"title":"Chapter Twelve: The Western Air Temple","airDate":"2007-12-14","airDateUtc":"2007-12-15T02:00:00Z","overview":"Aang and the group arrive at the Western Air Temple, with Zuko in pursuit. Zuko only wishes to be accepted, and help the Avatar, but will the group allow him to teach Aang firebending?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":920},{"seriesId":31,"episodeFileId":6344,"seasonNumber":3,"episodeNumber":13,"title":"Chapter Thirteen: The Firebending Masters","airDate":"2008-01-04","airDateUtc":"2008-01-05T02:00:00Z","overview":"While teaching Aang firebending, Zuko finds that he has lost all his firebending skills. Now to regain his powers, Zuko and Aang must seek the original source of firebending within the ruins of a lost civilization.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":921},{"seriesId":31,"episodeFileId":6345,"seasonNumber":3,"episodeNumber":14,"title":"Chapter Fourteen: The Boiling Rock (1)","airDate":"2008-06-14","airDateUtc":"2008-06-15T01:00:00Z","overview":"Sokka wants to break his father out of jail and askes Zuko for information on Fire nation prisons. Sokka and Zuko go to the \"Boiling Rock\" Prison which is in the middle of a volcano to rescue Sokka's father. When Sokka doesn't find him, he feels like he has failed... again... then his hopes are raised when he finds Suki. Sokka, Zuko, Suki and some unexpected allies attempt to escape the prison, but some unexpected surprises come along the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":922},{"seriesId":31,"episodeFileId":6345,"seasonNumber":3,"episodeNumber":15,"title":"Chapter Fifteen: The Boiling Rock (2)","airDate":"2008-06-14","airDateUtc":"2008-06-15T01:25:00Z","overview":"Zuko and Sokka make new plans to break out of the prison with Suki, Sokka's father and some others while a shocking twist leaves Azula none to happy with her two closest friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":923},{"seriesId":31,"episodeFileId":6346,"seasonNumber":3,"episodeNumber":16,"title":"Chapter Sixteen: The Southern Raiders","airDate":"2008-07-17","airDateUtc":"2008-07-18T01:00:00Z","overview":"Katara decides to confront the Fire Nation soldier responsible for her mother's death. Aang tries to talk her out of it, and Katara later realizes he was right and learns a lesson about life and herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":924},{"seriesId":31,"episodeFileId":6347,"seasonNumber":3,"episodeNumber":17,"title":"Chapter Seventeen: The Ember Island Players","airDate":"2008-07-18","airDateUtc":"2008-07-19T01:00:00Z","overview":"A play recounting the gang's adventures does not sit well with Aang and his friends, except for Toph who enjoys it very much. Meanwhile, Aang confesses his love to Katara, but the response is ambiguous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":925},{"seriesId":31,"episodeFileId":6348,"seasonNumber":3,"episodeNumber":18,"title":"Chapter Eighteen: Sozin's Comet, Part 1: The Phoenix King","airDate":"2008-07-19","airDateUtc":"2008-07-20T01:00:00Z","overview":"Aang struggles to decide whether or not he has to kill the Fire Lord and, during the night, is drawn toward an island which disappears before morning. Zuko leads the rest of the group to the Earth Kingdom to meet a tracker whom they hope can find Aang. The Fire Lord crowns himself Phoenix King and Aang awakens on the island not knowing where he is.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":926},{"seriesId":31,"episodeFileId":6348,"seasonNumber":3,"episodeNumber":19,"title":"Chapter Nineteen: Sozin's Comet, Part 2: The Old Masters","airDate":"2008-07-19","airDateUtc":"2008-07-20T01:00:00Z","overview":"While on the island, Aang seeks guidance from his past lives, but is not pleased with what he is told. The island, in fact, turns out to be a lion turtle from which Aang is given the guidance he had been seeking. After the tracker is unable to track Aang, the rest of the group decide they must find Iroh. Meanwhile, while tracking down Iroh, the group meets up with The Order of the White Lotus, a group that transcends the division of the four nations. After a discussion with Iroh the team decides to split up: Sokka, Suki, and Toph head to stop the Fire Nation's air fleet, the masters head to reclaim Ba Sing Se, and Katara, Zuko, and Appa head to defeat Azula.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":927},{"seriesId":31,"episodeFileId":6348,"seasonNumber":3,"episodeNumber":20,"title":"Chapter Twenty: Sozin's Comet, Part 3: Into the Inferno","airDate":"2008-07-19","airDateUtc":"2008-07-20T01:00:00Z","overview":"Sokka, Suki, and Toph try to stop the Fire Nation's air fleet. Meanwhile, Zuko and Azula duel in an Agni Kai and Aang confronts the Fire Lord. On the verge of losing, Aang gets hit in the back of his scar which sends him into the Avatar State.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":928},{"seriesId":31,"episodeFileId":6348,"seasonNumber":3,"episodeNumber":21,"title":"Chapter Twenty-One: Sozin's Comet, Part 4: Avatar Aang","airDate":"2008-07-19","airDateUtc":"2008-07-20T01:00:00Z","overview":"Aang defeats the Fire Lord by bending the elements within the Fire Lord and removing his fire bending abilities. After Zuko is taken down protecting Katara from Azula, Katara fights and manages to restrain Azula. Afterwards, Zuko is crowned Fire Lord and promises a better future for the world. Aang takes his place as the next Avatar, changing his attire in the process. Katara finally shows her love for Aang as they kiss in the last scene.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":929}],"episodeFile":[{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Awakening-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E01.The Awakening-Bluray-1080p.mkv","size":2348355687,"dateAdded":"2019-01-07T02:37:53.659655Z","sceneName":"Avatar.The.Last.Airbender.S03E01.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11219000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6333},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Headband-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E02.The Headband-Bluray-1080p.mkv","size":2348576791,"dateAdded":"2019-01-07T02:38:43.785018Z","sceneName":"Avatar.The.Last.Airbender.S03E02.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11210000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6334},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Painted Lady-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E03.The Painted Lady-Bluray-1080p.mkv","size":2348097813,"dateAdded":"2019-01-07T02:40:17.709101Z","sceneName":"Avatar.The.Last.Airbender.S03E03.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11206000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6335},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Sokka's Master-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E04.Sokka's Master-Bluray-1080p.mkv","size":2348567700,"dateAdded":"2019-01-07T02:41:21.641727Z","sceneName":"Avatar.The.Last.Airbender.S03E04.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6336},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Beach-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E05.The Beach-Bluray-1080p.mkv","size":2348063461,"dateAdded":"2019-01-07T02:42:38.259402Z","sceneName":"Avatar.The.Last.Airbender.S03E05.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11233000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6337},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Avatar and the Firelord-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E06.The Avatar and the Firelord-Bluray-1080p.mkv","size":2348669996,"dateAdded":"2019-01-07T02:44:18.811839Z","sceneName":"Avatar.The.Last.Airbender.S03E06.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11216000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6338},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Runaway-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E07.The Runaway-Bluray-1080p.mkv","size":2348121912,"dateAdded":"2019-01-07T02:45:57.221283Z","sceneName":"Avatar.The.Last.Airbender.S03E07.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11215000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6339},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Puppetmaster-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E08.The Puppetmaster-Bluray-1080p.mkv","size":2347908795,"dateAdded":"2019-01-07T02:47:20.927488Z","sceneName":"Avatar.The.Last.Airbender.S03E08.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11245000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6340},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Nightmares and Daydreams-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E09.Nightmares and Daydreams-Bluray-1080p.mkv","size":2348069459,"dateAdded":"2019-01-07T02:48:19.623277Z","sceneName":"Avatar.The.Last.Airbender.S03E09.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11225000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6341},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E10E11.The Day of Black Sun- The Invasion + The Day of Black Sun- The Eclipse-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E10E11.The Day of Black Sun- The Invasion + The Day of Black Sun- The Eclipse-Bluray-1080p.mkv","size":4696184321,"dateAdded":"2019-01-07T02:50:08.180261Z","sceneName":"Avatar.The.Last.Airbender.S03E10E11.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11919000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"46:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6342},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Western Air Temple-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E12.The Western Air Temple-Bluray-1080p.mkv","size":2348558220,"dateAdded":"2019-01-07T02:52:53.503644Z","sceneName":"Avatar.The.Last.Airbender.S03E12.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11254000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6343},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Firebending Masters-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E13.The Firebending Masters-Bluray-1080p.mkv","size":2348147399,"dateAdded":"2019-01-07T02:54:27.400735Z","sceneName":"Avatar.The.Last.Airbender.S03E13.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11206000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6344},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E14E15.The Boiling Rock-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E14E15.The Boiling Rock-Bluray-1080p.mkv","size":4695739425,"dateAdded":"2019-01-07T02:55:31.174133Z","sceneName":"Avatar.The.Last.Airbender.S03E14E15.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12064000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"46:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6345},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E16.The Southern Raiders-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E16.The Southern Raiders-Bluray-1080p.mkv","size":2347909470,"dateAdded":"2019-01-07T02:58:21.339247Z","sceneName":"Avatar.The.Last.Airbender.S03E16.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11350000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:20","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6346},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E17.The Ember Island Players-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E17.The Ember Island Players-Bluray-1080p.mkv","size":2347899758,"dateAdded":"2019-01-07T02:59:22.991902Z","sceneName":"Avatar.The.Last.Airbender.S03E17.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11218000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6347},{"seriesId":31,"seasonNumber":3,"relativePath":"Season 03\/S03E18E19E20E21.Sozin's Comet- The Phoenix King + Sozin's Comet- The Old Masters + Sozin's Comet- Into the Inferno + Sozin's Comet- Avatar Aang-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 03\/S03E18E19E20E21.Sozin's Comet- The Phoenix King + Sozin's Comet- The Old Masters + Sozin's Comet- Into the Inferno + Sozin's Comet- Avatar Aang-Bluray-1080p.mkv","size":9391315954,"dateAdded":"2019-01-07T03:01:16.274502Z","sceneName":"Avatar.The.Last.Airbender.S03E18-E21.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12198000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"1:31:19","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6348},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Boy in the Iceberg-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E01.The Boy in the Iceberg-Bluray-1080p.mkv","size":2348026806,"dateAdded":"2019-01-07T05:05:01.910613Z","sceneName":"Avatar.The.Last.Airbender.S01E01.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11711000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6349},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Avatar Returns-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E02.The Avatar Returns-Bluray-1080p.mkv","size":2348130135,"dateAdded":"2019-01-07T05:05:52.912078Z","sceneName":"Avatar.The.Last.Airbender.S01E02.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12417000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:28","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6350},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Southern Air Temple-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E03.The Southern Air Temple-Bluray-1080p.mkv","size":2347496209,"dateAdded":"2019-01-07T05:06:48.352645Z","sceneName":"Avatar.The.Last.Airbender.S01E03.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11856000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:25","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6351},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Warriors of Kyoshi-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E04.The Warriors of Kyoshi-Bluray-1080p.mkv","size":2348216057,"dateAdded":"2019-01-07T05:08:20.056265Z","sceneName":"Avatar.The.Last.Airbender.S01E04.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12001000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6352},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The King of Omashu-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E05.The King of Omashu-Bluray-1080p.mkv","size":2347865975,"dateAdded":"2019-01-07T05:09:16.684483Z","sceneName":"Avatar.The.Last.Airbender.S01E05.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11766000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6353},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Imprisoned-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E06.Imprisoned-Bluray-1080p.mkv","size":2348153382,"dateAdded":"2019-01-07T05:10:34.603268Z","sceneName":"Avatar.The.Last.Airbender.S01E06.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11597000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6354},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Spirit World- Winter Solstice (1)-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E07.The Spirit World- Winter Solstice (1)-Bluray-1080p.mkv","size":2348341790,"dateAdded":"2019-01-07T05:11:24.808789Z","sceneName":"Avatar.The.Last.Airbender.S01E07.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11572000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:55","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6355},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Avatar Roku- Winter Solstice (2)-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E08.Avatar Roku- Winter Solstice (2)-Bluray-1080p.mkv","size":2348305875,"dateAdded":"2019-01-07T05:12:45.705151Z","sceneName":"Avatar.The.Last.Airbender.S01E08.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11974000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6356},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Waterbending Scroll-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E09.The Waterbending Scroll-Bluray-1080p.mkv","size":2348619397,"dateAdded":"2019-01-07T05:13:47.213714Z","sceneName":"Avatar.The.Last.Airbender.S01E09.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11562000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:56","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6357},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Jet-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E10.Jet-Bluray-1080p.mkv","size":2348458918,"dateAdded":"2019-01-07T05:15:15.632181Z","sceneName":"Avatar.The.Last.Airbender.S01E10.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11673000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:44","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6358},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Great Divide-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E11.The Great Divide-Bluray-1080p.mkv","size":2348364460,"dateAdded":"2019-01-07T05:16:16.165915Z","sceneName":"Avatar.The.Last.Airbender.S01E11.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11468000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6359},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Storm-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E12.The Storm-Bluray-1080p.mkv","size":2348772424,"dateAdded":"2019-01-07T05:17:48.495962Z","sceneName":"Avatar.The.Last.Airbender.S01E12.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:05","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6360},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Blue Spirit-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E13.The Blue Spirit-Bluray-1080p.mkv","size":2348208174,"dateAdded":"2019-01-07T05:18:45.43137Z","sceneName":"Avatar.The.Last.Airbender.S01E13.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11621000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:50","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6361},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Fortuneteller-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E14.The Fortuneteller-Bluray-1080p.mkv","size":2348806223,"dateAdded":"2019-01-07T05:20:19.18962Z","sceneName":"Avatar.The.Last.Airbender.S01E14.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11473000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6362},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Bato of the Water Tribe-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E15.Bato of the Water Tribe-Bluray-1080p.mkv","size":2348115210,"dateAdded":"2019-01-07T05:21:20.128689Z","sceneName":"Avatar.The.Last.Airbender.S01E15.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11493000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:04","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6363},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Deserter-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E16.The Deserter-Bluray-1080p.mkv","size":2348254719,"dateAdded":"2019-01-07T05:22:44.408037Z","sceneName":"Avatar.The.Last.Airbender.S01E16.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11492000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:04","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6364},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E17.The Northern Air Temple-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E17.The Northern Air Temple-Bluray-1080p.mkv","size":2348261835,"dateAdded":"2019-01-07T05:23:44.464719Z","sceneName":"Avatar.The.Last.Airbender.S01E17.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11606000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6365},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Waterbending Master-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E18.The Waterbending Master-Bluray-1080p.mkv","size":2348042287,"dateAdded":"2019-01-07T05:24:59.589427Z","sceneName":"Avatar.The.Last.Airbender.S01E18.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11507000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6366},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Siege of the North (1)-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E19.The Siege of the North (1)-Bluray-1080p.mkv","size":2348138574,"dateAdded":"2019-01-07T05:26:22.591395Z","sceneName":"Avatar.The.Last.Airbender.S01E19.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11595000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6367},{"seriesId":31,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Siege of the North (2)-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 01\/S01E20.The Siege of the North (2)-Bluray-1080p.mkv","size":2348173348,"dateAdded":"2019-01-07T05:27:18.612727Z","sceneName":"Avatar.The.Last.Airbender.S01E20.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11496000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6368},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Avatar State-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E01.The Avatar State-Bluray-1080p.mkv","size":2347738866,"dateAdded":"2019-01-07T12:27:24.447209Z","sceneName":"Avatar.The.Last.Airbender.S02E01.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11467000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6372},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Cave of Two Lovers-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E02.The Cave of Two Lovers-Bluray-1080p.mkv","size":2348664963,"dateAdded":"2019-01-07T12:27:56.133822Z","sceneName":"Avatar.The.Last.Airbender.S02E02.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11456000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6373},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Return to Omashu-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E03.Return to Omashu-Bluray-1080p.mkv","size":2348124395,"dateAdded":"2019-01-07T12:29:00.638103Z","sceneName":"Avatar.The.Last.Airbender.S02E03.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11461000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6374},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Swamp-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E04.The Swamp-Bluray-1080p.mkv","size":2348703324,"dateAdded":"2019-01-07T12:30:06.100675Z","sceneName":"Avatar.The.Last.Airbender.S02E04.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11468000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6375},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Avatar Day-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E05.Avatar Day-Bluray-1080p.mkv","size":2347753154,"dateAdded":"2019-01-07T12:31:08.236874Z","sceneName":"Avatar.The.Last.Airbender.S02E05.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11502000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6376},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Blind Bandit-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E06.The Blind Bandit-Bluray-1080p.mkv","size":2348255796,"dateAdded":"2019-01-07T12:31:54.050394Z","sceneName":"Avatar.The.Last.Airbender.S02E06.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6377},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Zuko Alone-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E07.Zuko Alone-Bluray-1080p.mkv","size":2348605832,"dateAdded":"2019-01-07T12:33:02.186497Z","sceneName":"Avatar.The.Last.Airbender.S02E07.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11233000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6378},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Chase-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E08.The Chase-Bluray-1080p.mkv","size":2348150931,"dateAdded":"2019-01-07T12:33:45.819499Z","sceneName":"Avatar.The.Last.Airbender.S02E08.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11200000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6379},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Bitter Work-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E09.Bitter Work-Bluray-1080p.mkv","size":2347882020,"dateAdded":"2019-01-07T12:34:45.124816Z","sceneName":"Avatar.The.Last.Airbender.S02E09.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11215000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6380},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Library-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E10.The Library-Bluray-1080p.mkv","size":2348134188,"dateAdded":"2019-01-07T12:35:48.353482Z","sceneName":"Avatar.The.Last.Airbender.S02E10.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11219000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6381},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Desert-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E11.The Desert-Bluray-1080p.mkv","size":2348387430,"dateAdded":"2019-01-07T12:36:31.56096Z","sceneName":"Avatar.The.Last.Airbender.S02E11.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11224000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6382},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E12E13.The Serpent's Pass + The Drill-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E12E13.The Serpent's Pass + The Drill-Bluray-1080p.mkv","size":4696264512,"dateAdded":"2019-01-07T12:37:30.956685Z","sceneName":"Avatar.The.Last.Airbender.S02E12E13.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11963000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"46:27","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6383},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E14.City of Walls and Secrets-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E14.City of Walls and Secrets-Bluray-1080p.mkv","size":2348308162,"dateAdded":"2019-01-07T12:39:15.986596Z","sceneName":"Avatar.The.Last.Airbender.S02E14.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11230000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6384},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Tales of Ba Sing Se-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E15.The Tales of Ba Sing Se-Bluray-1080p.mkv","size":2347947348,"dateAdded":"2019-01-07T12:40:06.581876Z","sceneName":"Avatar.The.Last.Airbender.S02E15.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11211000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6385},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Appa's Lost Days-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E16.Appa's Lost Days-Bluray-1080p.mkv","size":2348792238,"dateAdded":"2019-01-07T12:41:03.64396Z","sceneName":"Avatar.The.Last.Airbender.S02E16.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11233000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6386},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Lake Laogai-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E17.Lake Laogai-Bluray-1080p.mkv","size":2348125950,"dateAdded":"2019-01-07T12:42:05.558771Z","sceneName":"Avatar.The.Last.Airbender.S02E17.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11234000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6387},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E18.The Earth King-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E18.The Earth King-Bluray-1080p.mkv","size":2348457564,"dateAdded":"2019-01-07T12:42:47.398506Z","sceneName":"Avatar.The.Last.Airbender.S02E18.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6388},{"seriesId":31,"seasonNumber":2,"relativePath":"Season 02\/S02E19E20.The Guru + The Crossroads of Destiny-Bluray-1080p.mkv","path":"\/tv\/Avatar- The Last Airbender\/Season 02\/S02E19E20.The Guru + The Crossroads of Destiny-Bluray-1080p.mkv","size":4696289522,"dateAdded":"2019-01-07T12:43:46.731732Z","sceneName":"Avatar.The.Last.Airbender.S02E19E20.1080p.BluRay.x264-CiNEFiLE","releaseGroup":"CiNEFiLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11919000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"46:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6389}],"queue":[]},"45":{"series":{"title":"The Lost Room","alternateTitles":[],"sortTitle":"lost room","status":"ended","ended":true,"overview":"The series revolves around the titular room and some of the everyday items from that room which possess unusual powers. The show's protagonist, Joe Miller, is searching for these objects to rescue his daughter, Anna, who has disappeared inside the Room. Once a typical room at a 1960s motel along U.S. Route 66, the Lost Room exists outside of normal time and space since 1961, when what is only referred to as \"the Event\" took place.","previousAiring":"2006-12-14T02:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/52\/banner.jpg?lastWrite=636747176386504730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79637-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/52\/poster.jpg?lastWrite=637191504639409850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79637-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/52\/fanart.jpg?lastWrite=636747176385544750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79637-4.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-12-14T02:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":4244857911,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/The Lost Room","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":90,"tvdbId":79637,"tvRageId":14688,"tvMazeId":503,"firstAired":"2006-12-11T00:00:00Z","seriesType":"standard","cleanTitle":"thelostroom","imdbId":"tt0830361","titleSlug":"the-lost-room","rootFolderPath":"\/tv\/","genres":["Drama","Mini-Series","Science Fiction"],"tags":[],"added":"2018-02-14T19:46:45.2364011Z","ratings":{"votes":1954,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":4244857911,"percentOfEpisodes":100.0},"id":52},"episodes":[{"seriesId":52,"episodeFileId":1880,"seasonNumber":1,"episodeNumber":1,"title":"The Key and the Clock","airDate":"2006-12-11","airDateUtc":"2006-12-12T02:00:00Z","overview":"Detective Joe Miller finds himself on a case involving two men that are found burned to death in a pawn shop, apparently involving a mysterious key and a deal gone bad. After receiving the key, Joe discovers that it is just one of nearly one hundred objects with supernatural powers and a link to a hidden motel room.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2584},{"seriesId":52,"episodeFileId":1881,"seasonNumber":1,"episodeNumber":2,"title":"The Comb and the Box","airDate":"2006-12-12","airDateUtc":"2006-12-13T02:00:00Z","overview":"Joe Miller is on the run after being framed for his partner's murder. He joins forces with Legion member Jennifer Bloom to find the Object that will help find his daughter, Anna. Along the way they learn about the Room's mysterious past. Martin Ruber searches for an object to gain membership in the Order of the Reunification.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2585},{"seriesId":52,"episodeFileId":1882,"seasonNumber":1,"episodeNumber":3,"title":"The Eye and the Prime Object","airDate":"2006-12-13","airDateUtc":"2006-12-14T02:00:00Z","overview":"After discovering the existence of the Occupant of Room 10, Joe attempts to find him and another object that will allow him to access the Vault. Kreutzfeld hatches a plan that could destroy the world. Ruber has a vision while in the desert.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":2586}],"episodeFile":[{"seriesId":52,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Key and the Clock-WEBDL-1080p.mkv","path":"\/tv\/The Lost Room\/Season 01\/S01E01.The Key and the Clock-WEBDL-1080p.mkv","size":1419044906,"dateAdded":"2018-10-10T21:59:40.256564Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1904x1064","runTime":"1:27:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1880},{"seriesId":52,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Comb and the Box-WEBDL-1080p.mkv","path":"\/tv\/The Lost Room\/Season 01\/S01E02.The Comb and the Box-WEBDL-1080p.mkv","size":1412266662,"dateAdded":"2018-10-10T21:59:40.276175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1999000,"videoCodec":"x264","videoFps":23.976,"resolution":"1912x1072","runTime":"1:27:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1881},{"seriesId":52,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Eye and the Prime Object-WEBDL-1080p.mkv","path":"\/tv\/The Lost Room\/Season 01\/S01E03.The Eye and the Prime Object-WEBDL-1080p.mkv","size":1413546343,"dateAdded":"2018-10-10T21:59:40.299123Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1912x1072","runTime":"1:27:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1882}],"queue":[]},"47":{"series":{"title":"Neon Genesis Evangelion","alternateTitles":[],"sortTitle":"neon genesis evangelion","status":"ended","ended":true,"overview":"In the year 2015, the Angels, huge, tremendously powerful, alien war machines, appear in Tokyo for the second time. The only hope for Mankind's survival lies in the Evangelion, a humanoid fighting machine developed by NERV, a special United Nations agency. Capable of withstanding anything the Angels can dish out, the Evangelion's one drawback lies in the limited number of people able to pilot them. Only a handful of teenagers, all born fourteen years ago, nine months after the Angels first appeared, are able to interface with the Evangelion. One such teenager is Shinji Ikari, whose father heads the NERV team that developed and maintains the Evangelion. Thrust into a maelstrom of battle and events that he does not understand, Shinji is forced to plumb the depths of his own inner resources for the courage and strength to not only fight, but to survive, or risk losing everything.","previousAiring":"1996-03-27T11:00:00Z","network":"TV Tokyo","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/53\/banner.jpg?lastWrite=636747176413184150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/70350-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/53\/poster.jpg?lastWrite=637466344315618710","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/70350-9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/53\/fanart.jpg?lastWrite=637103833089746680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/70350-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1996-03-27T11:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11086484212,"percentOfEpisodes":100.0}}],"year":1995,"path":"\/tv\/Neon Genesis Evangelion","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":70350,"tvRageId":0,"tvMazeId":1925,"firstAired":"1995-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"neongenesisevangelion","imdbId":"tt0112159","titleSlug":"neon-genesis-evangelion","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Drama","Science Fiction"],"tags":[],"added":"2018-02-14T19:47:10.0193755Z","ratings":{"votes":14114,"value":8.8},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":32,"sizeOnDisk":11086484212,"percentOfEpisodes":100.0},"id":53},"episodes":[{"seriesId":53,"episodeFileId":4260,"seasonNumber":1,"episodeNumber":1,"title":"Angel Attack","airDate":"1995-10-04","airDateUtc":"1995-10-04T11:00:00Z","overview":"Shinji Ikari is summoned to Tokyo-3 by his estranged father Gendo, commander of the special agency Nerv, to defend the city from a giant Angel by piloting the only weapon capable of battling the monster: Evangelion Unit-01.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2752},{"seriesId":53,"episodeFileId":4261,"seasonNumber":1,"episodeNumber":2,"title":"The Beast","airDate":"1995-10-11","airDateUtc":"1995-10-11T11:00:00Z","overview":"Shinji wakes up in the hospital, with no memory of defeating the Angel the night before. Rejected by his father, Misato decides to take Shinji with her to live in her apartment. Later that night, memories of the battle against the Angel come flooding back to Shinji.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2753},{"seriesId":53,"episodeFileId":4262,"seasonNumber":1,"episodeNumber":3,"title":"A Transfer","airDate":"1995-10-18","airDateUtc":"1995-10-18T11:00:00Z","overview":"Shinji begins attending his new school in Tokyo-3, and has a difficult time dealing with the fame of being an Evangelion pilot. Toji Suzuhara, who's little sister was injured in Shinji's fight against the Angel, is angry at Shinji. A new Angel appears, and Shinji must once again pilot Eva-01 to defeat it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2754},{"seriesId":53,"episodeFileId":4263,"seasonNumber":1,"episodeNumber":4,"title":"Hedgehog's Dilemma","airDate":"1995-10-25","airDateUtc":"1995-10-25T11:00:00Z","overview":"Misato is upset with Shinji for ignoring her orders in the last Angel battle, and he is so overcome by the stress of being an Eva pilot that he runs away. After wandering around Tokyo-3 for several days, Shinji is faced with the choice of quitting or staying in his new home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2755},{"seriesId":53,"episodeFileId":4264,"seasonNumber":1,"episodeNumber":5,"title":"Rei I","airDate":"1995-11-01","airDateUtc":"1995-11-01T11:00:00Z","overview":"Eva-00 is finally repaired, and Shinji tries to get to know its enigmatic pilot, Rei Ayanami, better. However, he is confounded because she is extremely insular, has no friends at all, and the entire record of her past has been erased. In the midst of this, a very powerful Angel, the floating monolith Ramiel, attacks Tokyo-3.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2756},{"seriesId":53,"episodeFileId":4265,"seasonNumber":1,"episodeNumber":6,"title":"Rei II","airDate":"1995-11-08","airDateUtc":"1995-11-08T11:00:00Z","overview":"Continuing from the previous episode, the Angel Ramiel is drilling down into the GeoFront to attack Nerv HQ directly. After Shinji barely survived a direct confrontation with it, Misato devises a plan to have Eva-00 and Eva-01 defeat the Angel by sniping it from a distance using a positronic rifle which requires the total electric output of Japan to power up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2757},{"seriesId":53,"episodeFileId":4266,"seasonNumber":1,"episodeNumber":7,"title":"A Human Work","airDate":"1995-11-15","airDateUtc":"1995-11-15T11:00:00Z","overview":"Ritsuko briefs Shinji on the real nature of Second Impact, the Angels, and the Evangelions' mission to defeat them. Misato and Ritsuko attend the public demonstration of a new Angel-fighting robot, Jet Alone, built by a rival defense contractor to Nerv. However, the nuclear-powered robot quickly runs out of control, and Shinji must use Eva Unit 01 to load Misato onto Jet Alone so she can she can enter in its automatic shutdown code, before it melts down in a nuclear explosion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2758},{"seriesId":53,"episodeFileId":4267,"seasonNumber":1,"episodeNumber":8,"title":"Asuka Strikes!","airDate":"1995-11-22","airDateUtc":"1995-11-22T11:00:00Z","overview":"Misato brings Shinji, along with Toji and Kensuke, to a massive UN naval convoy transporting Evangelion Unit-02 and its fiery German pilot, Asuka Langley Soryu, to Japan. Escorting Asuka is Misato's old boyfriend, Ryoji Kaji. After some awkward introductions and reunions, the fleet is attacked by a massive aquatic Angel. Asuka powers up Eva-02, and decides that she will defeat the Angel by playing \"hopscotch\"...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2759},{"seriesId":53,"episodeFileId":4268,"seasonNumber":1,"episodeNumber":9,"title":"Both of You, Dance Like You Want to Win!","airDate":"1995-11-29","airDateUtc":"1995-11-29T11:00:00Z","overview":"Asuka joins Shinji\u2019s class at school, and moves in with Misato and him in their apartment. As Asuka adjusts to Japan (or rather, everyone else adapts to her...), a new Angel attacks which is capable of splitting itself into two identical copies. Eva-01 and Eva-02 are defeated, and Nerv is publicly humiliated. With the Angel in a week-long regeneration period after an N\u00b2 Mine attack by the JSSDF, Asuka and Shinji must learn to \"synchronize\" with each others movements combat, in order to defeat it once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2760},{"seriesId":53,"episodeFileId":4269,"seasonNumber":1,"episodeNumber":10,"title":"Magma Diver","airDate":"1995-12-06","airDateUtc":"1995-12-06T11:00:00Z","overview":"The Eva pilots are disappointed to find out that they are not allowed to go on their class trip to Okinawa, because they have to stay at Tokyo-3 to stay on-call in case of an Angel attack. Meanwhile, a new Angel is discovered in a chrysalis-like developmental stage deep within the magma of the volcano Mount Asama. Nerv seizes the opportunity to capture a live Angel for research; it is decided to send Eva-02 into the magma while wearing a super-cooled diving suit along with capture equipment. However, the Angel quickly matures and breaks containment, and Asuka is forced to battle it deep within the magma of the volcano.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2761},{"seriesId":53,"episodeFileId":4270,"seasonNumber":1,"episodeNumber":11,"title":"The Day Tokyo-3 Stood Still","airDate":"1995-12-13","airDateUtc":"1995-12-13T11:00:00Z","overview":"Tokyo-3 comes to a standstill when sabotage knocks out all power, and the personnel must scramble to launch the Evas manually when an Angel appears in the middle of the blackout.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2762},{"seriesId":53,"episodeFileId":4271,"seasonNumber":1,"episodeNumber":12,"title":"She Said, \"Don't Make Others Suffer for Your Personal Hatred.\"","airDate":"1995-12-20","airDateUtc":"1995-12-20T11:00:00Z","overview":"Misato has been promoted to Major, but the celebration does not last long. A monstrous Angel appears in Earth orbit right when Gendo and Fuyutsuki are away, leaving her and the children to deal with a colossal kamikaze threatening to drop itself right on top of Tokyo-3.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2763},{"seriesId":53,"episodeFileId":4272,"seasonNumber":1,"episodeNumber":13,"title":"Lilliputian Hitcher","airDate":"1995-12-27","airDateUtc":"1995-12-27T11:00:00Z","overview":"A routine test involving the Eva pilots turns into a struggle for survival when a wholly new type of Angel appears and spreads inside Nerv HQ. This new, computer-like angel threatens to set off the self-destruct for the entire facility, leaving Dr.Ritsuko Akagi in a race against time to save the GeoFront and destroy the Angel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2764},{"seriesId":53,"episodeFileId":4273,"seasonNumber":1,"episodeNumber":14,"title":"Weaving a Story","airDate":"1996-01-03","airDateUtc":"1996-01-03T11:00:00Z","overview":"This episode is in two parts: The first part being a clip show presented to the Human Instrumentality Committee of Seele, reviewing the attacks of all Angels up to this point. The second part includes a poem in which Rei contemplates her own existence, and a cross-compatibility test between Rei's and Shinji's Evas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":2765},{"seriesId":53,"episodeFileId":4274,"seasonNumber":1,"episodeNumber":15,"title":"Those Women Longed for the Touch of Others' Lips, and Thus Invited Their Kisses.","airDate":"1996-01-10","airDateUtc":"1996-01-10T11:00:00Z","overview":"It seems like it's an important day for nearly everyone at Nerv. Misato and Ritsuko are going to a wedding; Shinji and Gendo are visiting Yui's grave; Asuka has a date. However, important things will spring from these seemingly mundane events.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":2766},{"seriesId":53,"episodeFileId":4275,"seasonNumber":1,"episodeNumber":16,"title":"Splitting of the Breast","airDate":"1996-01-17","airDateUtc":"1996-01-17T11:00:00Z","overview":"Shinji beats Asuka in a synch test, much to her annoyance. Not too long after, the Evas are dispatched to deal with a mysterious apparition, and Eva-01 is sucked into a shadowlike blackness that materializes out of nothingness from under it. While an emergency operation to rescue the captured Eva is concocted, Shinji goes on a trip into the depths of his own consciousness...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":2767},{"seriesId":53,"episodeFileId":4276,"seasonNumber":1,"episodeNumber":17,"title":"Fourth Children","airDate":"1996-01-24","airDateUtc":"1996-01-24T11:00:00Z","overview":"A Nerv branch in Nevada is obliterated in a catastrophic accident, and Nerv headquarters prepares to station a new Evangelion in Japan. The Fourth Children (Child) is selected, unbeknownst to Shinji.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":2768},{"seriesId":53,"episodeFileId":4277,"seasonNumber":1,"episodeNumber":18,"title":"Ambivalence","airDate":"1996-01-31","airDateUtc":"1996-01-31T11:00:00Z","overview":"Evangelion Unit-03 arrives from the United States. However, its activation experiment brings out Nerv's worst nightmare when it turns out to have been infected by the Thirteenth Angel. The other Evas are dispatched to battle the Angel-infected abomination...even at the risk of killing its helpless pilot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":2769},{"seriesId":53,"episodeFileId":4278,"seasonNumber":1,"episodeNumber":19,"title":"Introjection","airDate":"1996-02-07","airDateUtc":"1996-02-07T11:00:00Z","overview":"Enraged over Toji's near-death at the hands of his own Eva, Shinji refuses to pilot an Evangelion again and prepares to leave Tokyo-3 for good. He is forced to reconsider that decision when an immensely destructive new Angel attacks just as he is about to leave...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":2770},{"seriesId":53,"episodeFileId":4279,"seasonNumber":1,"episodeNumber":20,"title":"Weaving a Story 2: Oral Stage","airDate":"1996-02-14","airDateUtc":"1996-02-14T11:00:00Z","overview":"Shinji achieved an unprecedented 400% synchronization ratio with Eva-01 during the battle with Zeruel, to horrible effect. With the Eva having ascended to the status of a living God and Shinji absorbed inside it, Ritsuko unsuccessfully attempts to recover him. In the meantime, Shinji makes contact with the resident soul of the Eva- his mother, Yui Ikari.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":2771},{"seriesId":53,"episodeFileId":13372,"seasonNumber":1,"episodeNumber":21,"title":"He Was Aware That He Was Still a Child","airDate":"1996-02-21","airDateUtc":"1996-02-21T11:00:00Z","overview":"Kozo Fuyutsuki is kidnapped and interrogated by Seele, who are horrified over the results of the last encounter with an Angel. He recounts his past, providing flashbacks into the creation of Nerv. The pasts of Misato Katsuragi, Ritsuko Akagi, Rei Ayanami and Yui Ikari are also revealed. Ryoji Kaji, meanwhile, decides to find out the truth, no matter the cost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":2772},{"seriesId":53,"episodeFileId":13373,"seasonNumber":1,"episodeNumber":22,"title":"Don't Be","airDate":"1996-02-28","airDateUtc":"1996-02-28T11:00:00Z","overview":"Asuka's synch rate is on a downward spiral after her defeat at the hands of the Fourteenth Angel, Zeruel, and her frustration with Rei, Shinji, Misato and (unknown to her, dead) Kaji is on the rise. Angrier and more disturbed than ever, she is forced to relive her dark, traumatic past during the encounter with the Fifteenth Angel, Arael.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":2773},{"seriesId":53,"episodeFileId":13374,"seasonNumber":1,"episodeNumber":23,"title":"Rei III","airDate":"1996-03-06","airDateUtc":"1996-03-06T11:00:00Z","overview":"Asuka sinks into deep depression after Arael's mental probing, and is unable to pilot when the new Angel Armisael arrives. Armisael begins physically fusing with Eva-00 and threatens to do the same to Eva-01, prompting Rei to sacrifice herself to save Shinji, only to appear alive soon afterwards. Under threat by Misato, Ritsuko opens the door to a room in Terminal Dogma to reveal the dark truth about Rei Ayanami.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":2774},{"seriesId":53,"episodeFileId":13375,"seasonNumber":1,"episodeNumber":24,"title":"The Beginning and the End, or \"Knockin' on Heaven's Door\"","airDate":"1996-03-13","airDateUtc":"1996-03-13T11:00:00Z","overview":"Too frightened to face Misato or Rei, Shinji runs away yet again, only to meet and strike a friendship with Kaworu Nagisa, the replacement pilot for Eva-02. Kaworu's openness and friendliness provide much-needed comfort for the disturbed Shinji. However, suspicions abound over Kaworu's incredible synchronization abilities, and when he reveals that he is the Seventeenth Angel, Shinji must battle his newfound friend or face the threat of world annihilation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":2775},{"seriesId":53,"episodeFileId":4284,"seasonNumber":1,"episodeNumber":25,"title":"Do You Love Me?","airDate":"1996-03-20","airDateUtc":"1996-03-20T11:00:00Z","overview":"Instrumentality has begun, and now its inner process, the joining of all souls into one, will be depicted. The episode is primarily driven by dialogue, the background usually complete darkness. White text often appears on a black screen, an omniscient voice questioning the characters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":2776},{"seriesId":53,"episodeFileId":4285,"seasonNumber":1,"episodeNumber":26,"title":"Take Care of Yourself","airDate":"1996-03-27","airDateUtc":"1996-03-27T11:00:00Z","overview":"Instrumentality continues. The focus is primarily on Shinji now, as he learns to accept the individual\u2019s ability to shape their world, and how the self cannot exist without others to define it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":2777},{"seriesId":53,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Neon Genesis Evangelion: Death & Rebirth","airDate":"1997-03-15","airDateUtc":"1997-03-15T11:00:00Z","overview":"Originally a collection of clips from the Neon Genesis Evangelion TV series, Death was created as a precursor to the re-worked ending of the series. Rebirth was intended as that reworked ending, but after production overruns Rebirth became only the first half of the first episode of The End of Evangelion, with some minor differences.\r\nNote that despite containing clips from the series, Death (True)^2 & Rebirth should be seen after the main TV series itself to be fully understood.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2746},{"seriesId":53,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Neon Genesis Evangelion: The End of Evangelion","airDate":"1997-07-19","airDateUtc":"1997-07-19T11:00:00Z","overview":"Having prevented the Third Impact and thus saving the planet, NERV unexpectedly finds itself under attack. Conscious of Gendou's betrayal, SEELE launches a massive attack on Tokyo-3 in order to conclude the Human Instrumentality Project at any cost. NERV must now fight its most fearsome opponent: mankind itself.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20382},{"seriesId":53,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Evangelion: 1.11 - You Are (Not) Alone","airDate":"2007-09-01","airDateUtc":"2007-09-01T11:00:00Z","overview":"In a post-apocalyptic world, the last remaining human settlement in Japan is the heavily fortified city of Tokyo-3. Fourteen-year-old Shinji Ikari is brought to the headquarters of Nerv, an underground organization lead by his estranged father, Gendou. He requests that Shinji become a pilot of an \"Evangelion,\" a colossal android built to fight against monstrous and destructive alien creatures known as \"Angels\" that wreak havoc on the planet and threaten the survival of the remaining human race.\r\n\r\nAlthough initially reluctant, Shinji is swayed by the idea of reconciling with his father, and agrees to aid in mankind's perilous endeavor against its alien threat, as the pilot of Evangelion Unit-01. Thrust into the midst of a dangerous battlefield, Shinji must find the necessary courage and resolve to face against the Angels' incursions before it is too late.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2748},{"seriesId":53,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Evangelion: 2.22 - You Can (Not) Advance","airDate":"2009-06-27","airDateUtc":"2009-06-27T11:00:00Z","overview":"When the threat of the Angel menace escalates, mankind's defense force is pushed to its limits, with Nerv at the forefront of the struggle. Shinji Ikari and his partner Rei Ayanami are assisted by two new pilots: the fiery Asuka Langley Shikinami and the mysterious Mari Illustrious Makinami.\r\n\r\nWith the aid of their mechanized Evangelion units, equipped with weapons perfect for engaging their monstrous opponents, the four young souls fight desperately to protect their loved ones and prevent an impending apocalypse. But when startling secrets are brought to light, will the heroes' greatest challenge prove to be the monsters...or humanity itself?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2749},{"seriesId":53,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Evangelion: 3.33 - You Can (Not) Redo","airDate":"2012-11-17","airDateUtc":"2012-11-17T11:00:00Z","overview":"Fourteen years after third impact, Shinji Ikari awakens to a world he does not remember. He hasn't aged. Much of Earth is laid in ruins, Nerv has been dismantled, and people who he once protected have turned against him. Befriending the enigmatic Kaworu Nagisa, Shinji continues the fight against the angels and realizes the fighting is far from over, even when it could be against his former allies. The characters' struggles continue amid the battles against the angels and each other, spiraling down to what could inevitably be the end of the world.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2750},{"seriesId":53,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Evangelion: 3.0+1.0 Thrice Upon a Time","airDate":"2021-03-08","airDateUtc":"2021-03-08T11:00:00Z","overview":"Fourth movie.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2751}],"episodeFile":[{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Angel Attack-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E01.Angel Attack-HDTV-1080p.mkv","size":269048468,"dateAdded":"2018-10-13T19:08:10.861773Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177196,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1065841,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4260},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Beast-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E02.The Beast-HDTV-1080p.mkv","size":269012390,"dateAdded":"2018-10-13T19:08:10.907351Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177537,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1067201,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4261},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A Transfer-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E03.A Transfer-HDTV-1080p.mkv","size":269114251,"dateAdded":"2018-10-13T19:08:10.975464Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":178146,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1064443,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4262},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Hedgehog's Dilemma-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E04.Hedgehog's Dilemma-HDTV-1080p.mkv","size":269086262,"dateAdded":"2018-10-13T19:08:11.023649Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175791,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1070782,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4263},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Rei I-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E05.Rei I-HDTV-1080p.mkv","size":269142071,"dateAdded":"2018-10-13T19:08:11.113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175273,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1072274,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4264},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Rei II-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E06.Rei II-HDTV-1080p.mkv","size":269030702,"dateAdded":"2018-10-13T19:08:11.189501Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":176175,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1069810,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4265},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E07.A Human Work-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E07.A Human Work-HDTV-1080p.mkv","size":269087461,"dateAdded":"2018-10-13T19:08:11.309459Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175340,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1070824,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4266},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Asuka Strikes!-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E08.Asuka Strikes!-HDTV-1080p.mkv","size":269177423,"dateAdded":"2018-10-13T19:08:11.390993Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175016,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1072060,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4267},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Both of You, Dance Like You Want to Win!-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E09.Both of You, Dance Like You Want to Win!-HDTV-1080p.mkv","size":269089099,"dateAdded":"2018-10-13T19:08:11.476723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174032,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1075405,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:21","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4268},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Magma Diver-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E10.Magma Diver-HDTV-1080p.mkv","size":269179323,"dateAdded":"2018-10-13T19:08:11.538767Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177359,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1067838,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4269},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Day Tokyo-3 Stood Still-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E11.The Day Tokyo-3 Stood Still-HDTV-1080p.mkv","size":269191789,"dateAdded":"2018-10-13T19:08:11.620687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175012,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1072987,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4270},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E12.She said, Don't make others suffer for your personal hatred.-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E12.She said, Don't make others suffer for your personal hatred.-HDTV-1080p.mkv","size":269125071,"dateAdded":"2018-10-13T19:08:11.697962Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1067588,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4271},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Lilliputian Hitcher-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E13.Lilliputian Hitcher-HDTV-1080p.mkv","size":269143852,"dateAdded":"2018-10-13T19:08:11.754947Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177331,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1066973,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4272},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Weaving a Story-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E14.Weaving a Story-HDTV-1080p.mkv","size":268983334,"dateAdded":"2018-10-13T19:08:11.881534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":173293,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1074273,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4273},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Those Women Longed For the Touch of Others' Lips, and Thus Invited Their Kisses-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E15.Those Women Longed For the Touch of Others' Lips, and Thus Invited Their Kisses-HDTV-1080p.mkv","size":269073117,"dateAdded":"2018-10-13T19:08:11.95646Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174885,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1073366,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4274},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Splitting of the Breast-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E16.Splitting of the Breast-HDTV-1080p.mkv","size":269087084,"dateAdded":"2018-10-13T19:08:12.054635Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":176373,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1069537,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4275},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Fourth CHILD-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E17.Fourth CHILD-HDTV-1080p.mkv","size":269118824,"dateAdded":"2018-10-13T19:08:12.126096Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":173408,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1074799,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4276},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Ambivalence-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E18.Ambivalence-HDTV-1080p.mkv","size":269022754,"dateAdded":"2018-10-13T19:08:12.202118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175276,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1070418,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:21","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4277},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Introjection-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E19.Introjection-HDTV-1080p.mkv","size":269046822,"dateAdded":"2018-10-13T19:08:12.303408Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174353,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1071553,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4278},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Weaving a Story 2- Oral Stage-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E20.Weaving a Story 2- Oral Stage-HDTV-1080p.mkv","size":269122815,"dateAdded":"2018-10-13T19:08:12.385354Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":176733,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1067363,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4279},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Do You Love Me-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E25.Do You Love Me-HDTV-1080p.mkv","size":269298883,"dateAdded":"2018-10-13T19:08:12.745358Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1071057,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4284},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Take Care of Yourself-HDTV-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E26.Take Care of Yourself-HDTV-1080p.mkv","size":265922991,"dateAdded":"2018-10-13T19:08:12.82751Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":176363,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1063406,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:08","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4285},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E21.He Was Aware That He Was Still a Child-Bluray-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E21.He Was Aware That He Was Still a Child-Bluray-1080p.mkv","size":1678657591,"dateAdded":"2020-05-27T11:23:39.155192Z","sceneName":"Neon Genesis Evangelion (1995) Ep. 21 - 24 DC [1080p x265 HEVC 10bit BluRay Dual Audio AAC 5.1] [Prof]","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":721887,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6102700,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"29:21","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13372},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Don't Be-Bluray-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E22.Don't Be-Bluray-1080p.mkv","size":1297563649,"dateAdded":"2020-05-27T11:23:46.977978Z","sceneName":"Neon Genesis Evangelion (1995) Ep. 21 - 24 DC [1080p x265 HEVC 10bit BluRay Dual Audio AAC 5.1] [Prof]","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":724335,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4452355,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"28:45","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13373},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Rei III-Bluray-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E23.Rei III-Bluray-1080p.mkv","size":1095859176,"dateAdded":"2020-05-27T11:23:59.252513Z","sceneName":"Neon Genesis Evangelion (1995) Ep. 21 - 24 DC [1080p x265 HEVC 10bit BluRay Dual Audio AAC 5.1] [Prof]","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":728684,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4146045,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"25:29","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13374},{"seriesId":53,"seasonNumber":1,"relativePath":"Season 01\/S01E24.The Beginning and the End, or Knockin' on Heaven's Door-Bluray-1080p.mkv","path":"\/tv\/Neon Genesis Evangelion\/Season 01\/S01E24.The Beginning and the End, or Knockin' on Heaven's Door-Bluray-1080p.mkv","size":1097299010,"dateAdded":"2020-05-27T11:24:07.415216Z","sceneName":"Neon Genesis Evangelion (1995) Ep. 21 - 24 DC [1080p x265 HEVC 10bit BluRay Dual Audio AAC 5.1] [Prof]","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":738828,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3967584,"videoCodec":"x265","videoFps":23.976,"resolution":"1440x1080","runTime":"26:15","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13375}],"queue":[]},"48":{"series":{"title":"Ugly Americans","alternateTitles":[],"sortTitle":"ugly americans","status":"ended","ended":true,"overview":"Take New York City, add every horrifying beast, science-fiction freak, and fantasy faerie, shake thoroughly, and you've got UGLY AMERICANS. This animated horror-comedy series follows one Mark Lilly, social worker at the Department of Integration, as he helps new citizens both human and \"other\" adapt to hectic life in the Big Apple.\r\n\r\nThere are easier tasks than weaning vampires off of blood, socializing land-whales, and housebreaking werewolves, but Mark is up to the challenge. Between his stressful job, a zombie roommate, and a demon ex-girlfriend, Mark's lucky if he can sneak in a few minutes of sleep. But who can sleep when there's a drop-dead gorgeous Mermaid sitting at the bar?","previousAiring":"2012-04-26T01:00:00Z","network":"Comedy Central","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/57\/banner.jpg?lastWrite=637103833624616980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/150051-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/57\/poster.jpg?lastWrite=636747176506262140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/150051-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/57\/fanart.jpg?lastWrite=636747176503102200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/150051-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":7,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-11-18T02:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":11754022893,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-04-26T01:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":14011814540,"percentOfEpisodes":100.0}}],"year":2010,"path":"\/tv\/Ugly Americans","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":150051,"tvRageId":22711,"tvMazeId":4323,"firstAired":"2010-03-17T00:00:00Z","seriesType":"standard","cleanTitle":"uglyamericans","imdbId":"tt1621748","titleSlug":"ugly-americans","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2018-04-23T17:55:55.0838598Z","ratings":{"votes":942,"value":8.7},"statistics":{"seasonCount":2,"episodeFileCount":31,"episodeCount":31,"totalEpisodeCount":38,"sizeOnDisk":25765837433,"percentOfEpisodes":100.0},"id":57},"episodes":[{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Aliens on the Sopranos","airDate":"2007-06-27","airDateUtc":"2007-06-28T01:00:00Z","overview":"The webseries \"5-On with Alan Whiter\" was the inspiration that developed into \"Ugly Americans\".\r\n\r\nIn 5-On we meet Alan Whiter as host who interviews \"five of anything about everything\". So for each show five beings from a species group are interviewed on the street about their opinions on current affairs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4936},{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Robots on Imigration","airDate":"2007-07-24","airDateUtc":"2007-07-25T01:00:00Z","overview":"The webseries \"5-On with Alan Whiter\" was the inspiration that developed into \"Ugly Americans\".\r\n\r\nIn 5-On we meet Alan Whiter as host who interviews \"five of anything about everything\". So for each show five beings from a species group are interviewed on the street about their opinions on current affairs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4937},{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Demons on the Environment","airDate":"2007-08-07","airDateUtc":"2007-08-08T01:00:00Z","overview":"The webseries \"5-On with Alan Whiter\" was the inspiration that developed into \"Ugly Americans\".\r\n\r\nIn 5-On we meet Alan Whiter as host who interviews \"five of anything about everything\". So for each show five beings from a species group are interviewed on the street about their opinions on current affairs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4938},{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Zombies on the Presidential Candidates","airDate":"2007-08-14","airDateUtc":"2007-08-15T01:00:00Z","overview":"The webseries \"5-On with Alan Whiter\" was the inspiration that developed into \"Ugly Americans\".\r\n\r\nIn 5-On we meet Alan Whiter as host who interviews \"five of anything about everything\". So for each show five beings from a species group are interviewed on the street about their opinions on current affairs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4939},{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Monsters on Celebutantes","airDate":"2007-08-28","airDateUtc":"2007-08-29T01:00:00Z","overview":"The webseries \"5-On with Alan Whiter\" was the inspiration that developed into \"Ugly Americans\".\r\n\r\nIn 5-On we meet Alan Whiter as host who interviews \"five of anything about everything\". So for each show five beings from a species group are interviewed on the street about their opinions on current affairs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4940},{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Wizards on Hip Hop Obscenity","airDate":"2007-09-04","airDateUtc":"2007-09-05T01:00:00Z","overview":"The webseries \"5-On with Alan Whiter\" was the inspiration that developed into \"Ugly Americans\".\r\n\r\nIn 5-On we meet Alan Whiter as host who interviews \"five of anything about everything\". So for each show five beings from a species group are interviewed on the street about their opinions on current affairs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4941},{"seriesId":57,"episodeFileId":3769,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2010-03-17","airDateUtc":"2010-03-18T01:00:00Z","overview":"It's a typical day in the life for Mark: he attempts to deal with his zombie roommate, his demonic girlfriend who wants him to meet Daddy, and Homeland Security's efforts to use Mark's client list to meet their quote of illegal immigrant roundups so they can win a ham.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4943},{"seriesId":57,"episodeFileId":3770,"seasonNumber":1,"episodeNumber":2,"title":"An American Werewolf in America","airDate":"2010-03-24","airDateUtc":"2010-03-25T01:00:00Z","overview":"Mark tries to deal with a werewolf integration case, but has more on his hands when Randall can't resist his zombie urges, and Leonard decides to top his brother Christ Angel by performing the ultimate illusion: resurrecting Mark from the dead.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4944},{"seriesId":57,"episodeFileId":3772,"seasonNumber":1,"episodeNumber":3,"title":"Demon Baby","airDate":"2010-03-31","airDateUtc":"2010-04-01T01:00:00Z","overview":"When Mark takes care of an abandoned demon baby, Callie finds herself suffering from strange maternal demon impulses, and Twayne smells her pheromones and grows a mating bone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4945},{"seriesId":57,"episodeFileId":3775,"seasonNumber":1,"episodeNumber":4,"title":"Blob Gets a Job","airDate":"2010-04-07","airDateUtc":"2010-04-08T01:00:00Z","overview":"Mark accidentally outs his roommate as a zombie; Leonard tries to identify a strange new creature.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4946},{"seriesId":57,"episodeFileId":3777,"seasonNumber":1,"episodeNumber":5,"title":"Treegasm","airDate":"2010-04-14","airDateUtc":"2010-04-15T01:00:00Z","overview":"Mark meets a pair of creatures who are expected to participate in a public mating ritual.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4947},{"seriesId":57,"episodeFileId":3779,"seasonNumber":1,"episodeNumber":6,"title":"So, You Want to Be a Vampire?","airDate":"2010-04-21","airDateUtc":"2010-04-22T01:00:00Z","overview":"As the city contends with a bizarre epidemic, Mark counsels a young woman who wants to become a vampire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":4948},{"seriesId":57,"episodeFileId":3780,"seasonNumber":1,"episodeNumber":7,"title":"Kong of Queens","airDate":"2010-04-28","airDateUtc":"2010-04-29T01:00:00Z","overview":"When the budget for social services is cut, Mark and Leonard find themselves with time off. Mark tries to help Randall, who has been severed at the waist and needs new legs, while counseling a giant ape with OCD. Meanwhile, Callie and Twayne attend a demon convention, and Callie worries that Twayne is hitting on her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4949},{"seriesId":57,"episodeFileId":3782,"seasonNumber":1,"episodeNumber":8,"title":"Better Off Undead","airDate":"2010-10-06","airDateUtc":"2010-10-07T01:00:00Z","overview":"Mark counsels Tim the two-headed worm creature and gives psychiatric evaluations to Department of Integration employees while Randall seeks to become a proper zombie.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4950},{"seriesId":57,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Behind The Scenes","airDate":"2010-10-07","airDateUtc":"2010-10-08T01:00:00Z","overview":"Go behind the scenes with the creator of Ugly Americans.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4942},{"seriesId":57,"episodeFileId":3784,"seasonNumber":1,"episodeNumber":9,"title":"Kill...Mark, Kill","airDate":"2010-10-13","airDateUtc":"2010-10-14T01:00:00Z","overview":"Mark tries to help Leonard with his wand issues, Twayne meets his soul mate.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4951},{"seriesId":57,"episodeFileId":3787,"seasonNumber":1,"episodeNumber":10,"title":"Sympathy for the Devil","airDate":"2010-10-20","airDateUtc":"2010-10-21T01:00:00Z","overview":"Twayne is forced to endure a series of difficult consequences when he decides to make a horrendous agreement regarding a local politician's soul.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4952},{"seriesId":57,"episodeFileId":3789,"seasonNumber":1,"episodeNumber":11,"title":"Hell for the Holidays","airDate":"2010-10-27","airDateUtc":"2010-10-28T01:00:00Z","overview":"Mark and Randall go down to hell to spend Halloween with Callie's family who have some special plan for Mark.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4953},{"seriesId":57,"episodeFileId":3790,"seasonNumber":1,"episodeNumber":12,"title":"Trolling for Terror","airDate":"2010-11-03","airDateUtc":"2010-11-04T01:00:00Z","overview":"After Randall joins the cast of a sleazy reality show, the program\u2019s unbalanced producer becomes obsessed with Mark.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4954},{"seriesId":57,"episodeFileId":3792,"seasonNumber":1,"episodeNumber":13,"title":"Soulsucker","airDate":"2010-11-10","airDateUtc":"2010-11-11T02:00:00Z","overview":"Because of Mark's Zechalech gift, Callie is under the impression that he wants her to suck out his soul.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4955},{"seriesId":57,"episodeFileId":3794,"seasonNumber":1,"episodeNumber":14,"title":"The Manbirds","airDate":"2010-11-17","airDateUtc":"2010-11-18T02:00:00Z","overview":"Mark adopts a baby Man-Bird that was separated from its flock, while Grimes tries to settle a blood-feud with their champion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4956},{"seriesId":57,"episodeFileId":3768,"seasonNumber":2,"episodeNumber":1,"title":"Wet Hot Demonic Summer","airDate":"2011-06-30","airDateUtc":"2011-07-01T01:00:00Z","overview":"Callie and Twayne build a summer camp as part of their plot to infiltrate a secret wizard compound where Leonard is training his apprentice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4957},{"seriesId":57,"episodeFileId":3771,"seasonNumber":2,"episodeNumber":2,"title":"Callie and Her Sister","airDate":"2011-07-07","airDateUtc":"2011-07-08T01:00:00Z","overview":"Callie's parents get back together and have a new baby. But when their marriage falls apart again, Callie must play guardian to this younger, hotter spawn of the devil.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4958},{"seriesId":57,"episodeFileId":3773,"seasonNumber":2,"episodeNumber":3,"title":"Ride Me to Hell","airDate":"2011-07-14","airDateUtc":"2011-07-15T01:00:00Z","overview":"The end of his favorite TV series, \"Dishonorable Discharge\" sends Grimes off the deep end. Mark has to help him get to the bottom of his inexplicable attachment to the show, uncovering a deep seated memory along the way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4959},{"seriesId":57,"episodeFileId":3774,"seasonNumber":2,"episodeNumber":4,"title":"G. I. Twayne","airDate":"2011-07-21","airDateUtc":"2011-07-22T01:00:00Z","overview":"Mark inadvertently learns of a plot to end humanity when he's drafted into Satan's Dark Army with Twayne.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4960},{"seriesId":57,"episodeFileId":3776,"seasonNumber":2,"episodeNumber":5,"title":"The Ring of Powers","airDate":"2011-07-28","airDateUtc":"2011-07-29T01:00:00Z","overview":"After Mark finds a ring in Leonard's desk, he inadvertently activates the wizard's engagement from a bygone era, when dragons roamed Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4961},{"seriesId":57,"episodeFileId":3778,"seasonNumber":2,"episodeNumber":6,"title":"Attack of Mark's Clone","airDate":"2011-08-04","airDateUtc":"2011-08-05T01:00:00Z","overview":"Callie hopes that making a clone of Mark will guarantee the Department of Integration's win in a bowling tournament, but the plan backfires when the duplicate tries to frame her for murder.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4962},{"seriesId":57,"episodeFileId":3781,"seasonNumber":2,"episodeNumber":7,"title":"Wail Street","airDate":"2011-08-11","airDateUtc":"2011-08-12T01:00:00Z","overview":"Randall's idea to sell Mark's soul on the Soul Exchange draws interest from Callie and her father. Meanwhile, Grimes thinks he's found the next great pop-music sensation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4963},{"seriesId":57,"episodeFileId":3783,"seasonNumber":2,"episodeNumber":8,"title":"Little Ship of Horrors","airDate":"2011-08-18","airDateUtc":"2011-08-19T01:00:00Z","overview":"Twayne throws a company party aboard a cruise ship; Randall gets sick from dangerous pollen.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4964},{"seriesId":57,"episodeFileId":3785,"seasonNumber":2,"episodeNumber":9,"title":"Lilly and the Beast","airDate":"2011-08-25","airDateUtc":"2011-08-26T01:00:00Z","overview":"Callie reveals to Mark that she's been sleeping with other guys, while a girlfriend from Marks past returns with a dark secret.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4965},{"seriesId":57,"episodeFileId":3786,"seasonNumber":2,"episodeNumber":10,"title":"Mummy Dearest","airDate":"2011-09-01","airDateUtc":"2011-09-02T01:00:00Z","overview":"Randall feels neglected; Grimes mummy returns.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4966},{"seriesId":57,"episodeFileId":3788,"seasonNumber":2,"episodeNumber":11,"title":"Journey to the Center of Twayne","airDate":"2012-03-14","airDateUtc":"2012-03-15T01:00:00Z","overview":"An ant-sized arsonist named Jerry flees Mark's custody, escaping up Twayne's nostril. A miniaturized Leonard, Grimes and Mark must track Jerry through Twayne's body to bring him to justice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4967},{"seriesId":57,"episodeFileId":3791,"seasonNumber":2,"episodeNumber":12,"title":"Any Given Workday","airDate":"2012-03-21","airDateUtc":"2012-03-22T01:00:00Z","overview":"With the big company intramural football game around the corner, everyone starts getting nervous about the lineup -- Mark is a wonderful team player, but a terrible actual player. When Randall demonstrates the power of his recently replaced arm, he is given a job at the D.O.I. as the team's ringer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4968},{"seriesId":57,"episodeFileId":3793,"seasonNumber":2,"episodeNumber":13,"title":"The Roast of Twayne the Boneraper","airDate":"2012-03-28","airDateUtc":"2012-03-29T01:00:00Z","overview":"In honor of Twayne's 10-year anniversary of running the D.O.I., Callie and the crew throw him a Roast. But when Mark's attempt at edgy humor goes too far, Twayne quits, leaving Mark in charge. Before his first day as boss is up, Mark makes a management mistake so catastrophic that it almost destroys New York City.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4969},{"seriesId":57,"episodeFileId":3795,"seasonNumber":2,"episodeNumber":14,"title":"Mark Loves Dick","airDate":"2012-04-04","airDateUtc":"2012-04-05T01:00:00Z","overview":"Mark becomes conflicted about his relationship with Callie. He does his best to be understanding, but their love is soon put to the test when they are asked to embark on a dangerous mission to the fabled underwater city of Atlantis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4970},{"seriesId":57,"episodeFileId":3796,"seasonNumber":2,"episodeNumber":15,"title":"The Stalking Dead","airDate":"2012-04-11","airDateUtc":"2012-04-12T01:00:00Z","overview":"When the country's biggest pop star (Lady Hoo-Ha) turns into a zombie, millions of her devoted fans follow suit; Mark befriends one of the new zombies and Randall is forced to deal with his jealousy issues.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4971},{"seriesId":57,"episodeFileId":3797,"seasonNumber":2,"episodeNumber":16,"title":"The Dork Knight","airDate":"2012-04-18","airDateUtc":"2012-04-19T01:00:00Z","overview":"After being bitten by a rabid Bat-Boy, Mark becomes a masked crimefighter; Mark wages war against New York's criminals and their catlike leader with the help of his loyal sidekick, Koala Man.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4972},{"seriesId":57,"episodeFileId":3798,"seasonNumber":2,"episodeNumber":17,"title":"Fools for Love","airDate":"2012-04-25","airDateUtc":"2012-04-26T01:00:00Z","overview":"Mark chooses April Fool's Day to ask Callie to take their relationship to the next level, but his romantic gesture is threatened when Callie's vengeful ex-boyfriend returns to win her back; Leonard tries to redeem a winning lottery ticket.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4973}],"episodeFile":[{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Wet Hot Demonic Summer-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E01.Wet Hot Demonic Summer-WEBDL-1080p.mkv","size":863838434,"dateAdded":"2018-10-10T23:06:15.424869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5185322,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3768},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E01.Pilot-WEBDL-1080p.mkv","size":838643738,"dateAdded":"2018-10-10T23:06:15.465163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155610,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4985016,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3769},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E02.An American Werewolf in America-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E02.An American Werewolf in America-WEBDL-1080p.mkv","size":852230580,"dateAdded":"2018-10-10T23:06:15.503213Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156353,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5063068,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3770},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Callie and Her Sister-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E02.Callie and Her Sister-WEBDL-1080p.mkv","size":792595091,"dateAdded":"2018-10-10T23:06:15.539657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155780,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4717589,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3771},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Demon Baby-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E03.Demon Baby-WEBDL-1080p.mkv","size":849559882,"dateAdded":"2018-10-10T23:06:15.572364Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155908,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5049161,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3772},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Ride Me to Hell-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E03.Ride Me to Hell-WEBDL-1080p.mkv","size":721526097,"dateAdded":"2018-10-10T23:06:15.609609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4306282,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3773},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E04.G. I. Twayne-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E04.G. I. Twayne-WEBDL-1080p.mkv","size":879752579,"dateAdded":"2018-10-10T23:06:15.647165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155891,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5263174,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3774},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Blob Gets a Job-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E04.Blob Gets a Job-WEBDL-1080p.mkv","size":840645351,"dateAdded":"2018-10-10T23:06:15.68905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156769,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4992341,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3775},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Ring of Powers-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E05.The Ring of Powers-WEBDL-1080p.mkv","size":874681653,"dateAdded":"2018-10-10T23:06:15.72587Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156116,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5236561,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3776},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Treegasm-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E05.Treegasm-WEBDL-1080p.mkv","size":833122808,"dateAdded":"2018-10-10T23:06:15.764078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156726,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4947749,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3777},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Attack of Mark's Clone-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E06.Attack of Mark's Clone-WEBDL-1080p.mkv","size":828941388,"dateAdded":"2018-10-10T23:06:15.800277Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154350,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4952270,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3778},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E06.So, You Want to Be a Vampire-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E06.So, You Want to Be a Vampire-WEBDL-1080p.mkv","size":826771717,"dateAdded":"2018-10-10T23:06:15.837392Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156451,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4904237,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3779},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Kong of Queens-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E07.Kong of Queens-WEBDL-1080p.mkv","size":867486644,"dateAdded":"2018-10-10T23:06:15.877679Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156681,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5156575,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3780},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Wail Street-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E07.Wail Street-WEBDL-1080p.mkv","size":828302154,"dateAdded":"2018-10-10T23:06:15.910726Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4946697,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3781},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Better Off Undead-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E08.Better Off Undead-WEBDL-1080p.mkv","size":833547199,"dateAdded":"2018-10-10T23:06:15.948667Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155058,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4953322,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3782},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Little Ship of Horrors-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E08.Little Ship of Horrors-WEBDL-1080p.mkv","size":827707732,"dateAdded":"2018-10-10T23:06:15.992427Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155770,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4943266,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3783},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Kill.Mark, Kill-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E09.Kill.Mark, Kill-WEBDL-1080p.mkv","size":870799854,"dateAdded":"2018-10-10T23:06:16.028489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153480,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5181776,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3784},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Lilly and the Beast-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E09.Lilly and the Beast-WEBDL-1080p.mkv","size":851807087,"dateAdded":"2018-10-10T23:06:16.072379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154755,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5092626,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3785},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Mummy Dearest-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E10.Mummy Dearest-WEBDL-1080p.mkv","size":849726024,"dateAdded":"2018-10-10T23:06:16.109402Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154314,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5080226,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3786},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Sympathy for the Devil-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E10.Sympathy for the Devil-WEBDL-1080p.mkv","size":779220384,"dateAdded":"2018-10-10T23:06:16.147634Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154144,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4619614,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3787},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Journey to the Center of Twayne-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E11.Journey to the Center of Twayne-WEBDL-1080p.mkv","size":828566705,"dateAdded":"2018-10-10T23:06:16.185246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155858,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5007018,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3788},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Hell for the Holidays-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E11.Hell for the Holidays-WEBDL-1080p.mkv","size":825060910,"dateAdded":"2018-10-10T23:06:16.21553Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154335,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4903483,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3789},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Trolling for Terror-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E12.Trolling for Terror-WEBDL-1080p.mkv","size":858954381,"dateAdded":"2018-10-10T23:06:16.247522Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155628,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5108697,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3790},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Any Given Workday-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E12.Any Given Workday-WEBDL-1080p.mkv","size":816337136,"dateAdded":"2018-10-10T23:06:16.285306Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156167,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4930452,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3791},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Soulsucker-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E13.Soulsucker-WEBDL-1080p.mkv","size":824340155,"dateAdded":"2018-10-10T23:06:16.322262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154232,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4895909,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3792},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Roast of Twayne the Boneraper-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E13.The Roast of Twayne the Boneraper-WEBDL-1080p.mkv","size":796298633,"dateAdded":"2018-10-10T23:06:16.361219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155728,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4806001,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3793},{"seriesId":57,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Manbirds-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 01\/S01E14.The Manbirds-WEBDL-1080p.mkv","size":853639290,"dateAdded":"2018-10-10T23:06:16.39748Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155186,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5096194,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3794},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Mark Loves Dick-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E14.Mark Loves Dick-WEBDL-1080p.mkv","size":817420540,"dateAdded":"2018-10-10T23:06:16.435139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155902,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4942628,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3795},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Stalking Dead-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E15.The Stalking Dead-WEBDL-1080p.mkv","size":820231669,"dateAdded":"2018-10-10T23:06:16.472212Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156167,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4959920,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3796},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Dork Knight-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E16.The Dork Knight-WEBDL-1080p.mkv","size":764726920,"dateAdded":"2018-10-10T23:06:16.5087Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156351,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4618123,"videoCodec":"h264","videoFps":24.0,"resolution":"1912x1072","runTime":"21:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3797},{"seriesId":57,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Fools for Love-WEBDL-1080p.mkv","path":"\/tv\/Ugly Americans\/Season 02\/S02E17.Fools for Love-WEBDL-1080p.mkv","size":849354698,"dateAdded":"2018-10-10T23:06:16.545815Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155120,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5147985,"videoCodec":"h264","videoFps":24.0,"resolution":"1912x1072","runTime":"21:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3798}],"queue":[]},"49":{"series":{"title":"Serial Experiments Lain","alternateTitles":[],"sortTitle":"serial experiments lain","status":"ended","ended":true,"overview":"The best description for this intelligent, erudite, confusing and chilling anime from the late 1990s is \"creepy cool seinen cyberpunk.\" Serial Experiments Lain takes an information-rich dive deep into the nature of reality and truth, and in the process leads viewers to come up with their own conclusions about the meaning of the show, the meaning of reality, and even what actually happens in both. Much of the plot development is orthogonal to the viewer, sometimes seen but often simply implied, requiring viewers to think about and draw their own conclusions about what is happening. A fair amount of information is obscured or distorted, challenging viewers to impose their own interpretation on even the most self-evident aspects of the show.","previousAiring":"1998-09-27T15:00:00Z","network":"TV Tokyo","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/41\/banner.jpg?lastWrite=636747176454303260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78814-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/41\/poster.jpg?lastWrite=636993493341204850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78814-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/41\/fanart.jpg?lastWrite=637103833329062340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78814-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1998-09-27T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5139823674,"percentOfEpisodes":100.0}}],"year":1998,"path":"\/tv\/Serial Experiments Lain","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":78814,"tvRageId":0,"tvMazeId":1938,"firstAired":"1998-07-06T00:00:00Z","seriesType":"standard","cleanTitle":"serialexperimentslain","imdbId":"tt0500092","titleSlug":"serial-experiments-lain","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Science Fiction"],"tags":[],"added":"2018-10-06T01:32:28.4411292Z","ratings":{"votes":3070,"value":8.3},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5139823674,"percentOfEpisodes":100.0},"id":41},"episodes":[{"seriesId":41,"episodeFileId":14592,"seasonNumber":1,"episodeNumber":1,"title":"Layer:01 WEIRD","airDate":"1998-07-06","airDateUtc":"1998-07-05T15:00:00Z","overview":"13 year old Lain Iwakura is a shy, quiet schoolgirl who pretty much kept to herself. Then one day, she receives an email from a schoolmate who just committed suicide. Instead of being horrified, she is curious. Soon, she is seeing visions and her life begins to change.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":3173},{"seriesId":41,"episodeFileId":14593,"seasonNumber":1,"episodeNumber":2,"title":"Layer:02 GIRLS","airDate":"1998-07-13","airDateUtc":"1998-07-12T15:00:00Z","overview":"While out at The Cyberia, Alice, Julie and Reika are surprised to see a girl that looks remarkably like Lain toss a man. However, this girl's personality is exactly opposite from the Lain they know. Curious, Alice decides to invite Lain to come with them the next time they go to the club. Lain declines at first, but after some gentle prodding from Alice she reluctantly agrees. Once there a man high on Accela goes on a rampage, shooting people. What Lain does surprises everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":3174},{"seriesId":41,"episodeFileId":14594,"seasonNumber":1,"episodeNumber":3,"title":"Layer:03 PSYCHE","airDate":"1998-07-20","airDateUtc":"1998-07-19T15:00:00Z","overview":"The events from Cyberia make the girls minor celebrities in their class. But for Lain, more mysterious events continue to occur. She receives a Psyche chip from a mysterious benefactor, strange Men In Black are following her, and it appears there is another 'Lain' on the WIRED.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":3175},{"seriesId":41,"episodeFileId":14595,"seasonNumber":1,"episodeNumber":4,"title":"Layer:04 RELIGION","airDate":"1998-07-27","airDateUtc":"1998-07-26T15:00:00Z","overview":"A disturbing net game called PHANTOMa has deadly consequences for its players. As Lain investigates the deaths, her growing interest in the WIRED has her Father, Mika and Alice concerned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":3176},{"seriesId":41,"episodeFileId":14596,"seasonNumber":1,"episodeNumber":5,"title":"Layer:05 DISTORTION","airDate":"1998-08-03","airDateUtc":"1998-08-02T15:00:00Z","overview":"Lain recieves cryptic messages about existence, God and a coming prophecy. While she ponders the meaning of this, Mika is about to start a very strange day. While on her way to school, she sees Lain in the middle of traffic. Then, she sees the message \"\"Fulfill the Prophecy\"\" everywhere she turns. As reality distorts around her, Mika rapidly descends into a nightmare that she may not be able to get out of.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":3177},{"seriesId":41,"episodeFileId":14597,"seasonNumber":1,"episodeNumber":6,"title":"Layer:06 KIDS","airDate":"1998-08-10","airDateUtc":"1998-08-09T15:00:00Z","overview":"Young children are acting strangely, arms outstretched and silently staring at the sky. A shocking vision suddenly appears in the skies; it looks like Lain! Determined to get to the bottom of this, Lain's investigations finally bring her to the creator of KIDS -- but what she discovers is not what she hoped for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":3178},{"seriesId":41,"episodeFileId":14598,"seasonNumber":1,"episodeNumber":7,"title":"Layer:07 SOCIETY","airDate":"1998-08-17","airDateUtc":"1998-08-16T15:00:00Z","overview":"As the Knights activities make the evening news, a strange man named Nazumi wanders the city with machines strapped to his body. People on the WIRED are asking: \"\"Who is Lain\"\". Meanwhile, the two MIB agents take Lain to the Techibana offices where Lain's identity is challenged by a man; how well does she know her parents, her sister, herself? Can Lain answer him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":3179},{"seriesId":41,"episodeFileId":14599,"seasonNumber":1,"episodeNumber":8,"title":"Layer:08 RUMORS","airDate":"1998-08-24","airDateUtc":"1998-08-23T15:00:00Z","overview":"Still shaken by the information she received from the Men In Black, Lain discovers that she is being blamed for spreading an ugly rumor in the WIRED. Is what the MIB said is true; is she another person in the WIRED? Or is she doing it herself? Lain must find out or risk losing the one true friend she has.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":3180},{"seriesId":41,"episodeFileId":14600,"seasonNumber":1,"episodeNumber":9,"title":"Layer:09 PROTOCOL","airDate":"1998-08-31","airDateUtc":"1998-08-30T15:00:00Z","overview":"A documentary about Roswell gives Lain some valuable information about the pioneers of the WIRED. Later, at the Cyberia, J.J. tells Lain that she left something the day before and hands her an envelop with the Knight's logo on it. The envelop contains a chip. Believing this was the other 'Lain's' doing again, she decides to call Taro's bluff and go on a 'date'. Taking him to her room, Lain demands that he tell her what he knows. Together, with Taro's information and the mysterious chip, Lain finds out more then she expected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":3181},{"seriesId":41,"episodeFileId":14601,"seasonNumber":1,"episodeNumber":10,"title":"Layer:10 LOVE","airDate":"1998-09-07","airDateUtc":"1998-09-06T15:00:00Z","overview":"Lain struggles with her identity. Is she a human being, or just a hologram? And are the Knights responsible for the Evil Lain? Lain decides to deal with the Knights once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":3182},{"seriesId":41,"episodeFileId":14602,"seasonNumber":1,"episodeNumber":11,"title":"Layer:11 INFORNOGRAPHY","airDate":"1998-09-14","airDateUtc":"1998-09-13T15:00:00Z","overview":"Alone and frightened, Lain immerses herself in the WIRED, processing the events of the past few weeks and searching for the truth of who she is.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":3183},{"seriesId":41,"episodeFileId":14603,"seasonNumber":1,"episodeNumber":12,"title":"Layer:12 LANDSCAPE","airDate":"1998-09-21","airDateUtc":"1998-09-20T15:00:00Z","overview":"Troubled by what she saw, Alice decides to visit Lain at home and find out what is going on. Meanwhile, the two MIB agents receive a terrible shock and Eiri reveals his real motive for removing the barrier between the real world and the WIRED.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":3184},{"seriesId":41,"episodeFileId":14604,"seasonNumber":1,"episodeNumber":13,"title":"Layer:13 EGO","airDate":"1998-09-28","airDateUtc":"1998-09-27T15:00:00Z","overview":"The world is crumbling, people are dying and Alice's sanity is threatened. To save humanity, there is only one thing Lain can do; she must make the ultimate personal sacrifice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":3185}],"episodeFile":[{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Layer-01 WEIRD-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E01.Layer-01 WEIRD-Bluray-1080p.mkv","size":309508231,"dateAdded":"2020-06-25T22:41:38.468482Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:54","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14592},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Layer-02 GIRLS-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E02.Layer-02 GIRLS-Bluray-1080p.mkv","size":341992207,"dateAdded":"2020-06-25T22:41:38.521316Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:51","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14593},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Layer-03 PSYCHE-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E03.Layer-03 PSYCHE-Bluray-1080p.mkv","size":306465857,"dateAdded":"2020-06-25T22:41:38.573734Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:53","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14594},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Layer-04 RELIGION-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E04.Layer-04 RELIGION-Bluray-1080p.mkv","size":304377971,"dateAdded":"2020-06-25T22:41:38.629975Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:54","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14595},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Layer-05 DISTORTION-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E05.Layer-05 DISTORTION-Bluray-1080p.mkv","size":285353531,"dateAdded":"2020-06-25T22:41:38.683001Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:52","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14596},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Layer-06 KIDS-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E06.Layer-06 KIDS-Bluray-1080p.mkv","size":352042174,"dateAdded":"2020-06-25T22:41:38.737564Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:51","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14597},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Layer-07 SOCIETY-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E07.Layer-07 SOCIETY-Bluray-1080p.mkv","size":475109470,"dateAdded":"2020-06-25T22:41:38.811147Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:52","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14598},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Layer-08 RUMORS-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E08.Layer-08 RUMORS-Bluray-1080p.mkv","size":282105554,"dateAdded":"2020-06-25T22:41:39.009837Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:51","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14599},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Layer-09 PROTOCOL-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E09.Layer-09 PROTOCOL-Bluray-1080p.mkv","size":879683977,"dateAdded":"2020-06-25T22:41:39.200708Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:51","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14600},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Layer-10 LOVE-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E10.Layer-10 LOVE-Bluray-1080p.mkv","size":324875326,"dateAdded":"2020-06-25T22:41:39.285729Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:51","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14601},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Layer-11 INFORNOGRAPHY-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E11.Layer-11 INFORNOGRAPHY-Bluray-1080p.mkv","size":392713318,"dateAdded":"2020-06-25T22:41:39.346344Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:55","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14602},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Layer-12 LANDSCAPE-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E12.Layer-12 LANDSCAPE-Bluray-1080p.mkv","size":420384354,"dateAdded":"2020-06-25T22:41:39.40492Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"23:50","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14603},{"seriesId":41,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Layer-13 EGO-Bluray-1080p.mkv","path":"\/tv\/Serial Experiments Lain\/Season 01\/S01E13.Layer-13 EGO-Bluray-1080p.mkv","size":465211704,"dateAdded":"2020-06-25T22:41:39.4655Z","releaseGroup":"Reaktor","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1520x1080","runTime":"24:04","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14604}],"queue":[]},"50":{"series":{"title":"Castlevania","alternateTitles":[{"title":"Castlevania 2018","seasonNumber":-1}],"sortTitle":"castlevania","status":"ended","ended":true,"overview":"A vampire slayer fights to save a city besieged by an army of beasts controlled by Dracula. Series inspired by the classic video game.","previousAiring":"2021-05-13T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/60\/banner.jpg?lastWrite=637100123683197620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5bce3378a3e30.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/60\/poster.jpg?lastWrite=637100123685517580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/329065-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/60\/fanart.jpg?lastWrite=637100123681157660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/329065-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-07-07T07:00:00Z","episodeFileCount":4,"episodeCount":4,"totalEpisodeCount":4,"sizeOnDisk":9752827923,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-10-26T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10918879051,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-03-05T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":10977013441,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2021-05-13T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":6874990286,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Castlevania","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":329065,"tvRageId":0,"tvMazeId":25242,"firstAired":"2017-07-07T00:00:00Z","seriesType":"standard","cleanTitle":"castlevania","imdbId":"tt6517102","titleSlug":"castlevania","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-06-24T16:03:23.901522Z","ratings":{"votes":222,"value":9.0},"statistics":{"seasonCount":4,"episodeFileCount":32,"episodeCount":32,"totalEpisodeCount":32,"sizeOnDisk":38523710701,"percentOfEpisodes":100.0},"id":60},"episodes":[{"seriesId":60,"episodeFileId":15290,"seasonNumber":1,"episodeNumber":1,"title":"Witchbottle","airDate":"2017-07-07","airDateUtc":"2017-07-07T07:00:00Z","overview":"A headstrong young woman seeks out forbidden knowledge, and a corrupt bishop courts disaster by enraging a legend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1420},{"seriesId":60,"episodeFileId":15291,"seasonNumber":1,"episodeNumber":2,"title":"Necropolis","airDate":"2017-07-07","airDateUtc":"2017-07-07T07:00:00Z","overview":"Trevor Belmont drifts into the panicked city of Gresit, where he learns of an ancient evil and makes a surprising vow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1421},{"seriesId":60,"episodeFileId":15292,"seasonNumber":1,"episodeNumber":3,"title":"Labyrinth","airDate":"2017-07-07","airDateUtc":"2017-07-07T07:00:00Z","overview":"Belmont explores the catacombs of Gresit and makes a disturbing discovery. As night falls on the city, the beasts return for blood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1422},{"seriesId":60,"episodeFileId":15293,"seasonNumber":1,"episodeNumber":4,"title":"Monument","airDate":"2017-07-07","airDateUtc":"2017-07-07T07:00:00Z","overview":"In the season finale, Belmont strives to save Gresit from certain doom and comes face to face with a shocking truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1423},{"seriesId":60,"episodeFileId":12473,"seasonNumber":2,"episodeNumber":1,"title":"War Council","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"Dracula's generals gather to prosecute the war against humanity. There is discord when Dracula's human allies, Hector and Isaac, are given command of the armies of the night.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1424},{"seriesId":60,"episodeFileId":12474,"seasonNumber":2,"episodeNumber":2,"title":"Old Homes","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"Trevor, Sypha and Alucard take a dangerous path in their desperate attempt to defeat Dracula. The last vampire general, Carmilla, arrives at the castle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":8647},{"seriesId":60,"episodeFileId":12475,"seasonNumber":2,"episodeNumber":3,"title":"Shadow Battles","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"Carmilla plays political games with dark intent. Trevor and his comrades sack his childhood home for secrets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":8648},{"seriesId":60,"episodeFileId":12476,"seasonNumber":2,"episodeNumber":4,"title":"Broken Mast","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"Hector and Isaac take their first steps on divergent paths. Trevor and Sypha grow closer. Vampires can die too.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":8649},{"seriesId":60,"episodeFileId":12477,"seasonNumber":2,"episodeNumber":5,"title":"Last Spell","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"The Belmont Hold is discovered. Dracula's War Council goes to war with itself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":8650},{"seriesId":60,"episodeFileId":12478,"seasonNumber":2,"episodeNumber":6,"title":"The River","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"Another city is about to fall to Dracula's castle, and Dracula himself may be about to fall, at the hand of someone he thought was on his side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":8651},{"seriesId":60,"episodeFileId":12479,"seasonNumber":2,"episodeNumber":7,"title":"For Love","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"The battle lines are drawn. Comrade against comrade, father against son and two new lovers against the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":8652},{"seriesId":60,"episodeFileId":12480,"seasonNumber":2,"episodeNumber":8,"title":"End Times","airDate":"2018-10-26","airDateUtc":"2018-10-26T07:00:00Z","overview":"The dead are buried, friends and enemies are scattered, and hard choices are made.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":8653},{"seriesId":60,"episodeFileId":12653,"seasonNumber":3,"episodeNumber":1,"title":"Bless Your Dead Little Hearts","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Alucard adjusts to his lonely new life, Belmont and Sypha pay a visit to an eerie and unusual town, and Carmilla returns home with a prize.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":17176},{"seriesId":60,"episodeFileId":12654,"seasonNumber":3,"episodeNumber":2,"title":"The Reparation of My Heart","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Isaac gets some unexpected help in his search for Hector. Meanwhile, Carmilla plots a land grab and Alucard meets some fans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":17218},{"seriesId":60,"episodeFileId":12655,"seasonNumber":3,"episodeNumber":3,"title":"Investigators","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Belmont and Sypha's plan to leave Lindenfeld hits a snag. Isaac and the Captain debate the merits of humanity. Hector tries to get a read on Lenore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":17219},{"seriesId":60,"episodeFileId":12656,"seasonNumber":3,"episodeNumber":4,"title":"I Have a Scheme","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Zumi and Takka share their history with Alucard. Also, Saint Germain gains entrance to the priory, and Isaac receives an icy welcome in Genoa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":17220},{"seriesId":60,"episodeFileId":12657,"seasonNumber":3,"episodeNumber":5,"title":"A Seat of Civilisation and Refinement","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Belmont and the Judge discover an ominous symbol, Saint Germain's treasure hunt is cut short, and Alucard's bond with Zumi and Takka continues to grow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":17221},{"seriesId":60,"episodeFileId":12658,"seasonNumber":3,"episodeNumber":6,"title":"The Good Dream","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Lenore continues to spend time with Hector, slowly earning his trust. Saint Germain experiences a telling nightmare about the Infinite Corridor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":17222},{"seriesId":60,"episodeFileId":12659,"seasonNumber":3,"episodeNumber":7,"title":"Worse Things Than Betrayal","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"As Saint Germain makes unsettling discoveries, Isaac marches toward a showdown. Meanwhile, Belmont and Sypha question a monk \u2014 aggressively.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":17223},{"seriesId":60,"episodeFileId":12660,"seasonNumber":3,"episodeNumber":8,"title":"What the Night Brings","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Something is alive in the priory's basement, and for Belmont and Sypha, time is of the essence. Lenore opens up to Hector about Carmilla\u2019s plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":17224},{"seriesId":60,"episodeFileId":12661,"seasonNumber":3,"episodeNumber":9,"title":"The Harvest","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"Night falls on Lindenfeld and all manner of hell breaks loose. Also, Isaac meets the Magician, Hector makes a pledge, and Zumi and Takka make a move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":17225},{"seriesId":60,"episodeFileId":12662,"seasonNumber":3,"episodeNumber":10,"title":"Abandon All Hope","airDate":"2020-03-05","airDateUtc":"2020-03-05T08:00:00Z","overview":"With the portal to hell open, Trevor and Sypha must battle an onslaught. Meanwhile, the Judge shares a disturbing legacy, and Hector learns his fate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":17226},{"seriesId":60,"episodeFileId":18142,"seasonNumber":4,"episodeNumber":1,"title":"Murder Wakes It Up","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Belmont and Sypha continue to battle beasts loyal to Dracula, but it's getting a little old. Meanwhile, Alucard receives a guest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":21419},{"seriesId":60,"episodeFileId":18143,"seasonNumber":4,"episodeNumber":2,"title":"Having the World","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Lenore urges Hector to not test Carmilla's patience. Belmont and Sypha cross paths with Zamfir, a fearsome guard with a suspicious mind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":21422},{"seriesId":60,"episodeFileId":18144,"seasonNumber":4,"episodeNumber":3,"title":"Walk Away","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Isaac gets under Varney's skin. Vampires Morana and Striga receive an urgent message from Carmilla. Belmont and Sypha get a look at Targoviste.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":21423},{"seriesId":60,"episodeFileId":18145,"seasonNumber":4,"episodeNumber":4,"title":"You Must Sacrifice","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Alucard travels to Danesti, where he makes a dramatic entrance in the nick of time. Also, the scholar Saint Germain reflects on his own twisted path.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":21424},{"seriesId":60,"episodeFileId":18146,"seasonNumber":4,"episodeNumber":5,"title":"Back in the World","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"With Greta's help, Alucard sets out to guide the villagers to his castle for protection. Sypha pushes back on Zamfir's leadership. Isaac makes a move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":21425},{"seriesId":60,"episodeFileId":18147,"seasonNumber":4,"episodeNumber":6,"title":"You Don't Deserve My Blood","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"As Isaac and his army of night creatures descend on Carmilla's castle, Hector rushes to finish his preparations before the bloody reunion begins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":21426},{"seriesId":60,"episodeFileId":18148,"seasonNumber":4,"episodeNumber":7,"title":"The Great Work","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Varney and Ratko discover their plan is working \u2014 but who gets the credit? Also, Zamfir finally takes Belmont and Sypha underground.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":21427},{"seriesId":60,"episodeFileId":18149,"seasonNumber":4,"episodeNumber":8,"title":"Death Magic","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Belmont, Sypha and Zamfir battle Varney, Ratko and their unholy army. Alucard's castle falls under attack, and Saint Germain shares his scheme.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":21428},{"seriesId":60,"episodeFileId":18150,"seasonNumber":4,"episodeNumber":9,"title":"The Endings","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Belmont and Sypha join forces with their old friend Alucard \u2014 and not a moment too soon. As the battle rages, Varney reveals his true form.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":21429},{"seriesId":60,"episodeFileId":18151,"seasonNumber":4,"episodeNumber":10,"title":"It's Been a Strange Ride","airDate":"2021-05-13","airDateUtc":"2021-05-13T07:00:00Z","overview":"Not content to live in a cage, Lenore chooses another fate. Alucard opens his castle. Sypha wonders if she's lost Belmont for good.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":21430}],"episodeFile":[{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E01.War Council-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E01.War Council-Bluray-1080p.mkv","size":1451285833,"dateAdded":"2020-02-08T21:21:02.164435Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":4050106,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3687080,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12473},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Old Homes-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E02.Old Homes-Bluray-1080p.mkv","size":1467581242,"dateAdded":"2020-02-08T21:21:11.742382Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3900612,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3932067,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12474},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Shadow Battles-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E03.Shadow Battles-Bluray-1080p.mkv","size":1546126098,"dateAdded":"2020-02-08T21:21:22.762052Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":4057725,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3752576,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12475},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Broken Mast-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E04.Broken Mast-Bluray-1080p.mkv","size":1161478970,"dateAdded":"2020-02-08T21:21:38.642367Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3987708,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2172112,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12476},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Last Spell-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E05.Last Spell-Bluray-1080p.mkv","size":1361756747,"dateAdded":"2020-02-08T21:21:50.39701Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":4009435,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3584413,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12477},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The River-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E06.The River-Bluray-1080p.mkv","size":1296073577,"dateAdded":"2020-02-08T21:22:06.01967Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":4293977,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2574996,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12478},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E07.For Love-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E07.For Love-Bluray-1080p.mkv","size":1358782526,"dateAdded":"2020-02-08T21:22:19.449103Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3983998,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2560096,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"27:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12479},{"seriesId":60,"seasonNumber":2,"relativePath":"Season 02\/S02E08.End Times-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 02\/S02E08.End Times-Bluray-1080p.mkv","size":1275794058,"dateAdded":"2020-02-08T21:22:31.959782Z","releaseGroup":"HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3831247,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2093678,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"28:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12480},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Episode 1-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E01.Episode 1-WEBRip-1080p.mkv","size":1087657338,"dateAdded":"2020-03-05T13:17:11.77989Z","sceneName":"Castlevania.S03E01.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"27:32","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12653},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Episode 2-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E02.Episode 2-WEBRip-1080p.mkv","size":1063186050,"dateAdded":"2020-03-05T13:17:19.409888Z","sceneName":"Castlevania.S03E02.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"30:20","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12654},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Episode 3-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E03.Episode 3-WEBRip-1080p.mkv","size":1171605021,"dateAdded":"2020-03-05T13:17:28.702141Z","sceneName":"Castlevania.S03E03.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"28:12","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12655},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Episode 4-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E04.Episode 4-WEBRip-1080p.mkv","size":1152756584,"dateAdded":"2020-03-05T13:17:43.758726Z","sceneName":"Castlevania.S03E04.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"31:16","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12656},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Episode 5-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E05.Episode 5-WEBRip-1080p.mkv","size":817323281,"dateAdded":"2020-03-05T13:17:57.121357Z","sceneName":"Castlevania.S03E05.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12657},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Episode 6-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E06.Episode 6-WEBRip-1080p.mkv","size":1406490822,"dateAdded":"2020-03-05T13:18:05.824117Z","sceneName":"Castlevania.S03E06.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7104146,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"23:48","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12658},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Episode 7-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E07.Episode 7-WEBRip-1080p.mkv","size":931487077,"dateAdded":"2020-03-05T13:18:21.55623Z","sceneName":"Castlevania.S03E07.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"25:30","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12659},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Episode 8-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E08.Episode 8-WEBRip-1080p.mkv","size":884494349,"dateAdded":"2020-03-05T13:18:33.712838Z","sceneName":"Castlevania.S03E08.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3941345,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"25:00","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12660},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Episode 9-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E09.Episode 9-WEBRip-1080p.mkv","size":1185208295,"dateAdded":"2020-03-05T13:18:44.23019Z","sceneName":"Castlevania.S03E09.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"25:20","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12661},{"seriesId":60,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Episode 10-WEBRip-1080p.mkv","path":"\/tv\/Castlevania\/Season 03\/S03E10.Episode 10-WEBRip-1080p.mkv","size":1276804624,"dateAdded":"2020-03-05T13:18:58.167843Z","sceneName":"Castlevania.S03E10.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"28:20","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12662},{"seriesId":60,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Witchbottle-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 01\/S01E01.Witchbottle-Bluray-1080p.mkv","size":2647595808,"dateAdded":"2020-08-21T12:21:13.978236Z","sceneName":"castlevania.s01e01.1080p.bluray.x264-wutang","releaseGroup":"wutang","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2302455,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11932977,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:45","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15290},{"seriesId":60,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Necropolis-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 01\/S01E02.Necropolis-Bluray-1080p.mkv","size":2479022169,"dateAdded":"2020-08-21T12:23:14.405993Z","sceneName":"castlevania.s01e02.1080p.bluray.x264-wutang","releaseGroup":"wutang","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3717603,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10780447,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15291},{"seriesId":60,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Labyrinth-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 01\/S01E03.Labyrinth-Bluray-1080p.mkv","size":2301585103,"dateAdded":"2020-08-21T12:25:13.909116Z","sceneName":"castlevania.s01e03.1080p.bluray.x264-wutang","releaseGroup":"wutang","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2348428,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10605644,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:39","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15292},{"seriesId":60,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Monument-Bluray-1080p.mkv","path":"\/tv\/Castlevania\/Season 01\/S01E04.Monument-Bluray-1080p.mkv","size":2324624843,"dateAdded":"2020-08-21T12:27:10.90935Z","sceneName":"castlevania.s01e04.1080p.bluray.x264-wutang","releaseGroup":"wutang","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2275342,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11153046,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15293},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Murder Wakes It Up-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E01.Murder Wakes It Up-WEBDL-1080p.mkv","size":1011344716,"dateAdded":"2021-05-13T15:38:36.094971Z","sceneName":"Castlevania.S04E01.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4684249,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"24:14","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18142},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Having the World-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E02.Having the World-WEBDL-1080p.mkv","size":451703164,"dateAdded":"2021-05-13T15:40:22.754691Z","sceneName":"Castlevania.S04E02.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1743142,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"23:30","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18143},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Walk Away-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E03.Walk Away-WEBDL-1080p.mkv","size":541874326,"dateAdded":"2021-05-13T15:42:05.314256Z","sceneName":"Castlevania.S04E03.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1707348,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"28:36","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18144},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E04.You Must Sacrifice-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E04.You Must Sacrifice-WEBDL-1080p.mkv","size":649409276,"dateAdded":"2021-05-13T15:43:49.773542Z","sceneName":"Castlevania.S04E04.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2237128,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"28:14","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18145},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Back in the World-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E05.Back in the World-WEBDL-1080p.mkv","size":536171681,"dateAdded":"2021-05-13T15:45:33.15716Z","sceneName":"Castlevania.S04E05.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2037610,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"24:58","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18146},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E06.You Don't Deserve My Blood-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E06.You Don't Deserve My Blood-WEBDL-1080p.mkv","size":744525636,"dateAdded":"2021-05-13T15:47:16.693189Z","sceneName":"Castlevania.S04E06.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2353031,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"31:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18147},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E07.The Great Work-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E07.The Great Work-WEBDL-1080p.mkv","size":510060548,"dateAdded":"2021-05-13T15:49:01.220777Z","sceneName":"Castlevania.S04E07.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1818189,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"25:46","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18148},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Death Magic-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E08.Death Magic-WEBDL-1080p.mkv","size":737209841,"dateAdded":"2021-05-13T15:50:44.059973Z","sceneName":"Castlevania.S04E08.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3163117,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"24:30","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18149},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Endings-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E09.The Endings-WEBDL-1080p.mkv","size":1160602195,"dateAdded":"2021-05-13T15:52:28.602531Z","sceneName":"Castlevania.S04E09.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4155161,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"30:48","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18150},{"seriesId":60,"seasonNumber":4,"relativePath":"Season 04\/S04E10.It's Been a Strange Ride-WEBDL-1080p.mkv","path":"\/tv\/Castlevania\/Season 04\/S04E10.It's Been a Strange Ride-WEBDL-1080p.mkv","size":532088903,"dateAdded":"2021-05-13T15:54:16.786977Z","sceneName":"Castlevania.S04E10.1080p.WEB.H264-SUGOI","releaseGroup":"SUGOI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1848660,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"26:34","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ R"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18151}],"queue":[]},"52":{"series":{"title":"Fringe","alternateTitles":[],"sortTitle":"fringe","status":"ended","ended":true,"overview":"An F.B.I. agent is forced to work with an institutionalized scientist and his son in order to rationalize a brewing storm of unexplained phenomena.","previousAiring":"2013-01-19T02:43:00Z","network":"FOX","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/54\/banner.jpg?lastWrite=636747176343865650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/82066-g20.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/54\/poster.jpg?lastWrite=637406633712366020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/82066-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/54\/fanart.jpg?lastWrite=637103832687753960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/82066-13.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":15,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-05-13T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":27235276979,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2010-05-21T01:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28136929089,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2011-05-07T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":28969167183,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2012-05-12T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":29250429931,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2013-01-19T02:43:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":17598550394,"percentOfEpisodes":100.0}}],"year":2008,"path":"\/tv\/Fringe","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":82066,"tvRageId":18388,"tvMazeId":158,"firstAired":"2008-09-09T00:00:00Z","seriesType":"standard","cleanTitle":"fringe","imdbId":"tt1119644","titleSlug":"fringe","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Drama","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-02-16T19:10:48.0033201Z","ratings":{"votes":21245,"value":8.7},"statistics":{"seasonCount":5,"episodeFileCount":100,"episodeCount":100,"totalEpisodeCount":115,"sizeOnDisk":131190353576,"percentOfEpisodes":100.0},"id":54},"episodes":[{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Unaired Pilot","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1928},{"seriesId":54,"episodeFileId":6074,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2008-09-09","airDateUtc":"2008-09-10T01:00:00Z","overview":"When all the passengers on a plane die, FBI agent Olivia Dunham investigates the events and her partner almost dies. A desperate Olivia looks for help from Dr. Walter Bishop who has been institutionalized. Olivia, Dr. Bishop and his son Peter begin to discover what really happened on Flight 627 and begin to uncover a larger truth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1943},{"seriesId":54,"episodeFileId":6080,"seasonNumber":1,"episodeNumber":2,"title":"The Same Old Story","airDate":"2008-09-16","airDateUtc":"2008-09-17T01:00:00Z","overview":"Olivia, along with Peter and Walter Bishop, investigates the strange death of a woman who had an even stranger child. The woman was pregnant for only hours, yet the baby she birthed was fully developed - and also aged eighty years in the span of a few minutes. Olivia asks Nina Sharp of Massive Dynamic for help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1944},{"seriesId":54,"episodeFileId":6085,"seasonNumber":1,"episodeNumber":3,"title":"The Ghost Network","airDate":"2008-09-23","airDateUtc":"2008-09-24T01:00:00Z","overview":"The team investigates a bus full of dead commuters that appear to be fossilized and uncover a man who has visions of pattern-related disturbances before they happen; Dr. Bishop requests a piano in the lab to help him process data.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1945},{"seriesId":54,"episodeFileId":6093,"seasonNumber":1,"episodeNumber":4,"title":"The Arrival","airDate":"2008-09-30","airDateUtc":"2008-10-01T01:00:00Z","overview":"Broyles calls in the team to investigate a deadly explosion and its source: a strange cylinder unharmed despite the destruction. Olivia determines that the same cylinder, or a similar one, is responsible for similar events in widely diverse locations.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1946},{"seriesId":54,"episodeFileId":6096,"seasonNumber":1,"episodeNumber":5,"title":"Power Hungry","airDate":"2008-10-14","airDateUtc":"2008-10-15T01:00:00Z","overview":"The team investigate the case of a man who can project electricity... and is at the center of a series of strange deaths involving electricity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1947},{"seriesId":54,"episodeFileId":6101,"seasonNumber":1,"episodeNumber":6,"title":"The Cure","airDate":"2008-10-21","airDateUtc":"2008-10-22T01:00:00Z","overview":"The team investigates a woman that re-appears after weeks of being missing with a rare disease. She also inexplicably causes pain and death to the people she meets. During the investigation, dangerous level of radiation are detected. Walter obsesses about cotton candy; Peter strikes a deal with Nina Sharp; and a truth about Olivia is discovered.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1948},{"seriesId":54,"episodeFileId":6105,"seasonNumber":1,"episodeNumber":7,"title":"In Which We Meet Mr. Jones","airDate":"2008-11-11","airDateUtc":"2008-11-12T02:00:00Z","overview":"When a strange parasite attaches itself to the internal organs of a dying FBI agent, Olivia suspects a connection to the Pattern; Peter and Walter tap into a dead man's brain waves.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1949},{"seriesId":54,"episodeFileId":6111,"seasonNumber":1,"episodeNumber":8,"title":"The Equation","airDate":"2008-11-18","airDateUtc":"2008-11-19T02:00:00Z","overview":"Walter thinks the abduction of a young music prodigy is linked back to his old bunkmate at St. Claire's Hospital. When he kidnaps the child he see's a sequence of flashing lights. Olivia wants Walter to return to the mental institution much to Peter's outcry, but Walter's determination to help ends up having chilling ramifications.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1950},{"seriesId":54,"episodeFileId":6116,"seasonNumber":1,"episodeNumber":9,"title":"The Dreamscape","airDate":"2008-11-25","airDateUtc":"2008-11-26T02:00:00Z","overview":"The team is called in to investigate why a man jumps out a window because he thinks he's being attacked by butterflies. Olivia gets some breaks in solving the case from her former partner and that she is so desperate to rid herself of him that she demands to go back into the tank. Meanwhile, some former friends and current foes of Peter find out that he's back in Boston.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1951},{"seriesId":54,"episodeFileId":6119,"seasonNumber":1,"episodeNumber":10,"title":"Safe","airDate":"2008-12-02","airDateUtc":"2008-12-03T02:00:00Z","overview":"The team is called in on a bank robbery similar to other robberies in the area but this particular bank has the thief embedded inside the steel wall of the bank. Somehow the thieves have found a way to defy the law of physics. Walter thinks they're after something of his. As the investigation deepens it all comes to a head when the thieves ambush one of the team.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1952},{"seriesId":54,"episodeFileId":6125,"seasonNumber":1,"episodeNumber":11,"title":"Bound","airDate":"2009-01-20","airDateUtc":"2009-01-21T02:00:00Z","overview":"Olivia's sister, Rachel (Ari Graynor), visits; Walter, Peter and Olivia try to solve the murder of an esteemed epidemiologist, which may be linked to Olivia's abduction.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1953},{"seriesId":54,"episodeFileId":6130,"seasonNumber":1,"episodeNumber":12,"title":"The No-Brainer","airDate":"2009-01-27","airDateUtc":"2009-01-28T02:00:00Z","overview":"Olivia, Walter and Peter are called in to investigate the death of a car salesman who was found in a pool of \"goo,\" exactly like another man across the country. When Walter discovers that the \"goo\" is brain matter, the trio tries to figure out how the killer can liquefy human brains. As the deaths pile up, the investigation reveals a common thread linking the victims together in an unthinkable manner. Meanwhile, Olivia is horrified when the case places a loved one in harm's way","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1954},{"seriesId":54,"episodeFileId":6135,"seasonNumber":1,"episodeNumber":13,"title":"The Transformation","airDate":"2009-02-03","airDateUtc":"2009-02-04T02:00:00Z","overview":"When the Fringe Division delves into another bizarre occurrence aboard an international jumbo jet, freakish remains are discovered at the crash site. Memories tip the team toward some promising leads, but the bigger picture and mysterious threat eludes them. With limited options and insufficient intelligence, Olivia and Peter go undercover.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1955},{"seriesId":54,"episodeFileId":6141,"seasonNumber":1,"episodeNumber":14,"title":"Ability","airDate":"2009-02-10","airDateUtc":"2009-02-11T02:00:00Z","overview":"German agents question Olivia about her \u201crelationship\u201d with David Robert Jones, an escaped prisoner questioned months earlier now living in the U.S. The Fringe Division investigates a threatening case where victims die faceless from their orifices suddenly sealing.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1956},{"seriesId":54,"episodeFileId":6145,"seasonNumber":1,"episodeNumber":15,"title":"Inner Child","airDate":"2009-04-07","airDateUtc":"2009-04-08T01:00:00Z","overview":"Just seconds before a building is demolished, a mysterious mute child that has been living alone underground is discovered. When the FBI\u2019s Fringe Division investigates, the boy forms an unspoken connection with Agent Olivia Dunham. Meanwhile, an especially gruesome serial killer resurfaces and showcases his \u201cartistry\u201d by displaying his work publicly. As the boy gradually assimilates into a new environment, Olivia and the team must race against the clock to prevent the mad man from causing further massacre.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1957},{"seriesId":54,"episodeFileId":6147,"seasonNumber":1,"episodeNumber":16,"title":"Unleashed","airDate":"2009-04-14","airDateUtc":"2009-04-15T01:00:00Z","overview":"As animal rights activists ransack a laboratory, they get more than they bargained for when one of the caged \u201canimals\u201d unleashes a ferocious appetite. Leaving grotesquely mutilated dead bodies in its wake, the scientifically engineered beast with the body of a lion, claws of an eagle, fangs of a viper, skin of a rhinoceros and tail of a serpent attacks Charlie. With Charlie\u2019s life on the line, Walter must come face-to-face with both his past and the beast.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1958},{"seriesId":54,"episodeFileId":6152,"seasonNumber":1,"episodeNumber":17,"title":"Bad Dreams","airDate":"2009-04-21","airDateUtc":"2009-04-22T01:00:00Z","overview":"Olivia dreams about a suicide as the event really happens at Grand Central Station; shocking information about the Z.F.T. manuscript is revealed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1959},{"seriesId":54,"episodeFileId":6158,"seasonNumber":1,"episodeNumber":18,"title":"Midnight","airDate":"2009-04-28","airDateUtc":"2009-04-29T01:00:00Z","overview":"The Fringe Division is on the case when severely mutilated bodies drained of spinal cord fluid begin to pile up. After their investigation leads them to a scientist (guest star Jefferson Mays) with possible ties to the Z.F.T. bioterrorist cell, they are shocked to discover the identity and motive of the killer. When the kills occur with increasing frequency, Olivia, Peter and Walter go to desperate lengths to stop them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1960},{"seriesId":54,"episodeFileId":6162,"seasonNumber":1,"episodeNumber":19,"title":"The Road Not Taken","airDate":"2009-05-05","airDateUtc":"2009-05-06T01:00:00Z","overview":"Olivia experiences \"awake dreams,\" seeing elaborate visions of things not really there. While investigating a disturbing case of a woman who apparently spontaneously combusted, Olivia throws caution to the wind and explores her unexplained visions further. Meanwhile, Walter discusses key information about the Z.F.T. manifesto, and Peter reveals a secret that yields unexpected results in the case.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1961},{"seriesId":54,"episodeFileId":6165,"seasonNumber":1,"episodeNumber":20,"title":"There's More Than One of Everything","airDate":"2009-05-12","airDateUtc":"2009-05-13T01:00:00Z","overview":"Setting the stage for the dramatic and revealing first season finale are a sudden and unexpected attack on someone with close ties to Fringe Division, the return of bioterrorist David Robert Jones and the inexplicable disappearance of Walter. Find out more about the mysterious events surrounding our trio when questions are answered, observations made, loyalties are tested and the elusive William Bell is finally introduced.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1962},{"seriesId":54,"episodeFileId":6078,"seasonNumber":2,"episodeNumber":1,"title":"A New Day in the Old Town","airDate":"2009-09-17","airDateUtc":"2009-09-18T01:00:00Z","overview":"Season two opens with Olivia's shocking return from the perplexing alternate reality, while Peter is unknowingly in a race against time with an ominous mobile force pursuing information about Olivia's visit.\r\n\r\nWalter reenters the lab to cook up some fringe science and of course, some custard for Peter's Birthday.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1963},{"seriesId":54,"episodeFileId":6081,"seasonNumber":2,"episodeNumber":2,"title":"Night of Desirable Objects","airDate":"2009-09-24","airDateUtc":"2009-09-25T01:00:00Z","overview":"A series of strange disappearances in Pennsylvania attracts the attention of the Fringe team and leads them underground. \r\nWalter also tries to recreate Olivia's accident using frogs and Charlie tries to find out how much she remembers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1964},{"seriesId":54,"episodeFileId":6088,"seasonNumber":2,"episodeNumber":3,"title":"Fracture","airDate":"2009-10-01","airDateUtc":"2009-10-02T01:00:00Z","overview":"Peter, Walter, Olivia and Broyles pursue a strange and deadly occurrence in Philadelphia where a bomb blew up inside a train station but left no trace of any explosive device. The perplexing and unexplained set of circumstances returns Walter to the lab to closely examine the human remains where he uncovers an unlikely energy source that triggered the explosion. With the explosive threat of more bombs and links to a classified military project, the intense investigation leads Olivia and Peter to Iraq.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1965},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Access All Areas","airDate":"2009-10-05","airDateUtc":"2009-10-06T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1929},{"seriesId":54,"episodeFileId":6091,"seasonNumber":2,"episodeNumber":4,"title":"Momentum Deferred","airDate":"2009-10-08","airDateUtc":"2009-10-09T01:00:00Z","overview":"Recuperating from the traumatic and alarming meeting with Massive Dynamic founder William Bell, Agent Dunham consumes a powerful \"fringe\" concoction that Dr. Bishop prescribes to stimulate her memory. Meanwhile, the Fringe Division investigates a series of robbery cases that are tied to shape-shifting. As clues are tracked and memories are jogged, another woman experimented on by Dr. Bishop is introduced and a flashback reveals more about Olivia's visit to the alternate reality.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1966},{"seriesId":54,"episodeFileId":6097,"seasonNumber":2,"episodeNumber":5,"title":"Dream Logic","airDate":"2009-10-15","airDateUtc":"2009-10-16T01:00:00Z","overview":"The Fringe team travels cross-country to Seattle after learning of a mysterious incident involving a man who attacked his boss because he believed he was an evil ram-horned creature. As these puzzling occurrences continue, the team tirelessly explores strange and creepy links to dreams. In pursuit of additional information, Agent Broyles has a disconcerting meeting with enigmatic Massive Dynamic executive Nina Sharp that leads the investigation in an unthinkable direction.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1967},{"seriesId":54,"episodeFileId":6103,"seasonNumber":2,"episodeNumber":6,"title":"Earthling","airDate":"2009-11-05","airDateUtc":"2009-11-06T02:00:00Z","overview":"Human beings are reduced to ash statues and Broyles realizes that the same person responsible murdered five other persons four years ago... a case that he never solved.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1968},{"seriesId":54,"episodeFileId":6107,"seasonNumber":2,"episodeNumber":7,"title":"Of Human Action","airDate":"2009-11-12","airDateUtc":"2009-11-13T02:00:00Z","overview":"When a kidnapping rapidly escalates into a hostage situation in New York, local authorities close in on the suspects only to discover that an unknowable force has mind-blowing consequences. The investigation intensifies and the mystery and threat deepen to unimaginable proportions when the Fringe Division identifies a link between the kidnapping and Massive Dynamic.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1969},{"seriesId":54,"episodeFileId":6112,"seasonNumber":2,"episodeNumber":8,"title":"August","airDate":"2009-11-19","airDateUtc":"2009-11-20T02:00:00Z","overview":"A peculiar abduction occurs in Boston, leading the Fringe team to uncover details of the mysterious man known as The Observer. While the bizarre case takes center stage, Walter, Peter and Astrid hit the lab to analyze unusual evidence and deal with Walter\u2019s insatiable appetite for milkshakes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1970},{"seriesId":54,"episodeFileId":6117,"seasonNumber":2,"episodeNumber":9,"title":"Snakehead","airDate":"2009-12-03","airDateUtc":"2009-12-04T02:00:00Z","overview":"After a cargo ship runs aground, the shoreline becomes littered with bodies hosting a giant squid-like creature. The Fringe team descends upon the scene to examine the bodies and discovers that the mysterious organisms are actually giant parasites. As the investigation unfolds, Walter heads back to the lab while Olivia, Peter and Broyles race against time when they realize the case has ties to a threatening organization.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1971},{"seriesId":54,"episodeFileId":6123,"seasonNumber":2,"episodeNumber":10,"title":"Grey Matters","airDate":"2009-12-10","airDateUtc":"2009-12-11T02:00:00Z","overview":"A patient at a mental hospital undergoes impromptu surgery that leaves his brain exposed. William Bell resurfaces during the investigation of the strange circumstances and Olivia finds reason that the leader of the shape-shifters may have something to do with it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1972},{"seriesId":54,"episodeFileId":6124,"seasonNumber":2,"episodeNumber":11,"title":"Unearthed","airDate":"2010-01-11","airDateUtc":"2010-01-12T02:00:00Z","overview":"After a teenage girl is pronounced brain dead, her mother takes her off life support, but when doctors operate quickly to remove her organs, the deceased girl shockingly awakens screaming an alphanumeric code. Equally as perplexing as her resurrection is that she is now somehow able to speak Russian and possesses classified information only a high-ranking soldier would know. While the girl's mind-bending condition intensifies, Walter dusts off some old lab videos and hypothesizes the unthinkable, sending Olivia and Peter to investigate the bewildering case in an original.\r\n\r\n(This is a season 1 un-aired episode)","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1973},{"seriesId":54,"episodeFileId":6133,"seasonNumber":2,"episodeNumber":12,"title":"Johari Window","airDate":"2010-01-14","airDateUtc":"2010-01-15T02:00:00Z","overview":"Following an unexplained attack involving hideously deformed humans, the Fringe team visits the small town in upstate New York to uncover leads surrounding the bizarre case. When it's determined that these deformed people have managed to hide themselves for a while and they'll do just about anything to keep it that way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1974},{"seriesId":54,"episodeFileId":6134,"seasonNumber":2,"episodeNumber":13,"title":"What Lies Below","airDate":"2010-01-21","airDateUtc":"2010-01-22T02:00:00Z","overview":"When a man enters an office in Boston for a meeting, he becomes disoriented and collapses, only to have his veins erupt and spray blood everywhere. Shortly after Olivia and Peter arrive at the scene to investigate the bizarre case, it's discovered that a lethal virus with deep ties to something very valuable is spreading, so the CDC moves in to quarantine the building and eradicate the pathogens. Isolated inside with the rest of the exposed office employees, Peter and Olivia face life-threatening circumstances, sending Walter, Broyles and Astrid on a frantic search for a solution to save them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1975},{"seriesId":54,"episodeFileId":6139,"seasonNumber":2,"episodeNumber":14,"title":"The Bishop Revival","airDate":"2010-01-28","airDateUtc":"2010-01-29T02:00:00Z","overview":"When a specific group of guests at a wedding in Brookline, MA, suffocate from the inside out, the upsetting and disconcerting crime scene has the Fringe team investigating how the toxin was delivered and targeted. As evidence is taken into the lab, it\u2019s discovered that the wedding ceremony was a testing ground for a weaponized science experiment. Adding to the intense lab investigation, Walter uncovers an alarming formula that reveals a link to a branch on the Bishop family tree. With the escalating threat of more deadly attacks and unexpected familial ties to the case, the Fringe team stops at nothing to prevent further catastrophic events.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1976},{"seriesId":54,"episodeFileId":6144,"seasonNumber":2,"episodeNumber":15,"title":"Jacksonville","airDate":"2010-02-02","airDateUtc":"2010-02-03T02:00:00Z","overview":"After a violent tremor shakes a Manhattan office building to its core, leaving only one survivor who leads the Fringe Team to believe he is not from this reality. Walter surmises that what shook the building was not geologic, but rather something discovered by him and William Bell many years ago. With another catastrophe imminent, the team races to Jacksonville, the site of Walter and William\u2019s experiments, forcing Olivia to face her mysterious past in an effort to save hundreds of people from certain death.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1977},{"seriesId":54,"episodeFileId":6149,"seasonNumber":2,"episodeNumber":16,"title":"Peter","airDate":"2010-04-01","airDateUtc":"2010-04-02T01:00:00Z","overview":"Walter flashes back to 1985 while explaining Peter's otherworldly origins to Olivia. Also, Peter's mother is introduced, and details of the neighboring world reaffirms that there is more than one of everything.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1978},{"seriesId":54,"episodeFileId":6154,"seasonNumber":2,"episodeNumber":17,"title":"Olivia, in the Lab, with the Revolver","airDate":"2010-04-08","airDateUtc":"2010-04-09T01:00:00Z","overview":"When a perfectly healthy woman is found dead from a disease she never had, the Fringe team investigates the origin of this inexplicably fatal condition before it claims more innocent victims. Meanwhile, Olivia struggles to keep Walter's secret from Peter, and her loyalty to Peter is tested as time goes on.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1979},{"seriesId":54,"episodeFileId":6157,"seasonNumber":2,"episodeNumber":18,"title":"White Tulip","airDate":"2010-04-15","airDateUtc":"2010-04-16T01:00:00Z","overview":"When passengers aboard a commuter train appear to have died a still death, it seems that a switch was flipped because all cell phones, mp3 players, laptops, batteries and bodies have been drained of power. As the Fringe team assembles at the bizarre crime scene, Peter remains suspicious that something is amiss with Walter, who is struggling to keep the unimaginable a secret. When the investigation leads them to Alistair Peck, a very powerful man who has tremendous energy with severe consequences, an ironic set of circumstances surface.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1980},{"seriesId":54,"episodeFileId":6161,"seasonNumber":2,"episodeNumber":19,"title":"The Man from the Other Side","airDate":"2010-04-22","airDateUtc":"2010-04-23T01:00:00Z","overview":"When two teenagers on a date turn up \"dead\" at an abandoned warehouse with the three puncture wounds to the soft palate \u2014 a trademark of the shape-shifters \u2014 the Fringe team investigates the evidence as well as the motives of mastermind Newton. Upon discovering a shape-shifting embryo, Walter returns to the lab to conduct further analysis, and Olivia and Peter head to Massive Dynamic for answers. Meanwhile, Peter reveals a family secret to Olivia as Walter struggles to recall what Newton knows about \"building a door\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1981},{"seriesId":54,"episodeFileId":6166,"seasonNumber":2,"episodeNumber":20,"title":"Brown Betty","airDate":"2010-04-29","airDateUtc":"2010-04-30T01:00:00Z","overview":"While Walter deals with some very upsetting news, he tells Olivia's niece, Ella, a fairy tale that includes musical performances by Olivia and Agent Broyles.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1982},{"seriesId":54,"episodeFileId":6167,"seasonNumber":2,"episodeNumber":21,"title":"Northwest Passage","airDate":"2010-05-06","airDateUtc":"2010-05-07T01:00:00Z","overview":"Peter teams up with a local law enforcement official, Sheriff Mathis, on a serial murder investigation with ties to Newton. Meanwhile, Walter copes with the possibility of being sent back to St. Claire's, and someone from the \"other side\" pays a visit.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1983},{"seriesId":54,"episodeFileId":6172,"seasonNumber":2,"episodeNumber":22,"title":"Over There (1)","airDate":"2010-05-13","airDateUtc":"2010-05-14T01:00:00Z","overview":"In part one of the two-part, two-night second season finale, Walter and Olivia travel to the parallel universe, and the anticipated face-off between Walter Bishop and William Bell occurs.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1984},{"seriesId":54,"episodeFileId":6173,"seasonNumber":2,"episodeNumber":23,"title":"Over There (2)","airDate":"2010-05-20","airDateUtc":"2010-05-21T01:00:00Z","overview":"Sacrifices will be made and both universes may never be the same again after Walter and Olivia visit the \u201cother side\u201d","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1985},{"seriesId":54,"episodeFileId":6075,"seasonNumber":3,"episodeNumber":1,"title":"Olivia","airDate":"2010-09-23","airDateUtc":"2010-09-24T01:00:00Z","overview":"After the extraordinary turn of events that shockingly left an imprisoned Olivia \"over there,\" she fights to find her way home. Meanwhile, Peter and Walter try to move on with their lives unknowingly alongside alternate Olivia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":1986},{"seriesId":54,"episodeFileId":6082,"seasonNumber":3,"episodeNumber":2,"title":"The Box","airDate":"2010-09-30","airDateUtc":"2010-10-01T01:00:00Z","overview":"The story alternates to the Fringe Team \"over here\" where they investigate a mystifying case that people are discovered in a trance-like state that ultimately leads to their death. The unlikely suspect: a mysterious box. As Peter and Walter collaborate to study its properties, alternate Olivia presses on and turns up the heat on an unsuspecting Peter. Meanwhile, key information about the future is revealed when Walter and Nina meet at Massive Dynamic for the emotional reading of the last will and testament of William Bell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":1987},{"seriesId":54,"episodeFileId":6084,"seasonNumber":3,"episodeNumber":3,"title":"The Plateau","airDate":"2010-10-07","airDateUtc":"2010-10-08T01:00:00Z","overview":"In this case, timing is everything as a series of anomalous events lead the Fringe Division to investigate deadly incidents with unimaginable coincidences. As the freaky crimes continue to occur, the team is in a race against time to protect potential victims. Meanwhile, Secretary Bishop shares his strategic plan with Colonel Broyles as Olivia grapples with a heart-stopping vision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":1988},{"seriesId":54,"episodeFileId":6090,"seasonNumber":3,"episodeNumber":4,"title":"Do Shapeshifters Dream of Electric Sheep?","airDate":"2010-10-14","airDateUtc":"2010-10-15T01:00:00Z","overview":"Newton, concerned about the consequences of a distressing development involving a high-ranking official, is forced to call to action a sleeping shapeshifter. As Walter and the rest of the team gather evidence, they move the investigation to Massive Dynamic, where Olivia goes on high alert and Walter finds himself in a perilous situation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":1989},{"seriesId":54,"episodeFileId":6098,"seasonNumber":3,"episodeNumber":5,"title":"Amber 31422","airDate":"2010-11-04","airDateUtc":"2010-11-05T01:00:00Z","overview":"The alternate universe Fringe Division investigates a shocking breach of security when a twin frees his brother from a quarantined Amber area. As the team sets out to crack this sophisticated case, Walternate experiments over there more with Olivia as she reenters the tank. Meanwhile, visions of Peter continue to haunt Olivia about returning to the \u201cother side\u201d.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":1990},{"seriesId":54,"episodeFileId":6102,"seasonNumber":3,"episodeNumber":6,"title":"6955 kHz","airDate":"2010-11-11","airDateUtc":"2010-11-12T02:00:00Z","overview":"Back \u201cover here,\u201d the Fringe Division investigates a bizarre phenomenon when 15 people up and down the Eastern Seaboard, all suffer retrograde amnesia from listening to their shortwave radios on the same frequency. Much to Walter\u2019s dismay, Peter presses on with piecing together the mass destruction device. Just as alternate Olivia and Peter\u2019s chemistry deepens, the anticipation of Olivia\u2019s return escalates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":1991},{"seriesId":54,"episodeFileId":6104,"seasonNumber":3,"episodeNumber":7,"title":"The Abducted","airDate":"2010-11-18","airDateUtc":"2010-11-19T02:00:00Z","overview":"When a serial kidnapper \u201cover there\u201d strikes again, the emotional and familiar case hits home for Colonel Broyles, sending a determined Olivia to uncover additional details about the abductions. In the meantime, Olivia fights on and reunites with Henry to enlist his services on an intense and covert mission to return home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":1992},{"seriesId":54,"episodeFileId":6113,"seasonNumber":3,"episodeNumber":8,"title":"Entrada","airDate":"2010-12-02","airDateUtc":"2010-12-03T02:00:00Z","overview":"Peter struggles to cope with recent events; Olivia searches for an ally; a device that communicates between universes is discovered...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":1993},{"seriesId":54,"episodeFileId":6118,"seasonNumber":3,"episodeNumber":9,"title":"Marionette","airDate":"2010-12-09","airDateUtc":"2010-12-10T02:00:00Z","overview":"When the Fringe Team investigates a case where a victim had his heart extracted, it\u2019s just the beginning of a series of mysterious and reanimating events tied together. Meanwhile, Peter comes to terms with the reality of his relationship with Olivia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":1994},{"seriesId":54,"episodeFileId":6122,"seasonNumber":3,"episodeNumber":10,"title":"The Firefly","airDate":"2011-01-21","airDateUtc":"2011-01-22T02:00:00Z","overview":"An Observer makes contact with the Fringe Team to help rectify a mistake. Meanwhile, Walter befriends Roscoe Joyce, keyboardist for Walter's favorite 1970s band, \"Violet Sedan Chair.\" Walter will learn the real reason the band broke up, and realize that the lives of these two men, who have never met before, overlap in strange and unexpected ways.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":1995},{"seriesId":54,"episodeFileId":6128,"seasonNumber":3,"episodeNumber":11,"title":"Reciprocity","airDate":"2011-01-28","airDateUtc":"2011-01-29T02:00:00Z","overview":"When the Fringe Team visits Massive Dynamic\u2019s assembly of the doomsday device, Walter becomes greatly concerned for Peter\u2019s well-being, so he turns to Nina for added brain power to understand the relationship between Peter and the superweapon. Meanwhile, the discovery of a dead body triggers an intense investigation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":1996},{"seriesId":54,"episodeFileId":6131,"seasonNumber":3,"episodeNumber":12,"title":"Concentrate and Ask Again","airDate":"2011-02-04","airDateUtc":"2011-02-05T02:00:00Z","overview":"When a scientist falls dead after ingesting a lethal cloud of blue powder and his bones disintegrate in his body, the CDC suspects a biological attack. As the Fringe Team investigates further, a subject from Walter\u2019s past with ties to Olivia reluctantly agrees to assist with the intense case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":1997},{"seriesId":54,"episodeFileId":6136,"seasonNumber":3,"episodeNumber":13,"title":"Immortality","airDate":"2011-02-11","airDateUtc":"2011-02-12T02:00:00Z","overview":"As the story shifts back to life \u201cover there,\u201d the absence of Colonel Broyles changes the dynamic of the Fringe Team as they investigate a bioterrorist armed with an insect that has a taste for human flesh. Meanwhile, alternate Olivia is reunited with her beau, and Walternate remains determined to save his world but discovers there are certain lines he will not cross.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":1998},{"seriesId":54,"episodeFileId":6140,"seasonNumber":3,"episodeNumber":14,"title":"6B","airDate":"2011-02-18","airDateUtc":"2011-02-19T02:00:00Z","overview":"A series of Fringe events leads the team to the home of a woman grieving over the death of her husband, while Peter and Olivia make an effort to repair the emotional rift between them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":1999},{"seriesId":54,"episodeFileId":6143,"seasonNumber":3,"episodeNumber":15,"title":"Subject 13","airDate":"2011-02-25","airDateUtc":"2011-02-26T02:00:00Z","overview":"In a follow up to last season\u2019s \u201cPeter\u201d flashback episode, the all-new \u201cSix Months Later\u201d episode revisits a poignant period of time for both the Bishops and Olivia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":2000},{"seriesId":54,"episodeFileId":6148,"seasonNumber":3,"episodeNumber":16,"title":"Os","airDate":"2011-03-11","airDateUtc":"2011-03-12T02:00:00Z","overview":"The Fringe Team investigates a group of thieves who can break the laws of gravity. Meanwhile, Walter attempts to delay the damage he's caused to the fabric of the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":2001},{"seriesId":54,"episodeFileId":6153,"seasonNumber":3,"episodeNumber":17,"title":"Stowaway","airDate":"2011-03-18","airDateUtc":"2011-03-19T01:00:00Z","overview":"When the Fringe team investigates an apparent suicide victim, they uncover a second set of fingerprints leading them to a woman with uncanny characteristics that cannot die.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":2002},{"seriesId":54,"episodeFileId":6156,"seasonNumber":3,"episodeNumber":18,"title":"Bloodline","airDate":"2011-03-25","airDateUtc":"2011-03-26T01:00:00Z","overview":"The intensity of life \u201cover there\u201d accelerates as Olivia finds herself in mortal danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":2003},{"seriesId":54,"episodeFileId":6160,"seasonNumber":3,"episodeNumber":19,"title":"Lysergic Acid Diethylamide","airDate":"2011-04-15","airDateUtc":"2011-04-16T01:00:00Z","overview":"In an effort to remove Bell's consciousness from Olivia's mind, Peter, Bell, and Walter enter Olivia's subconscious and attempt to find her personality, which has hidden itself somewhere safe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":2004},{"seriesId":54,"episodeFileId":6163,"seasonNumber":3,"episodeNumber":20,"title":"6:02 AM EST","airDate":"2011-04-22","airDateUtc":"2011-04-23T01:00:00Z","overview":"The beginning of the end is triggered when Walternate finds a way to wreak havoc \u201cover here.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":2005},{"seriesId":54,"episodeFileId":6169,"seasonNumber":3,"episodeNumber":21,"title":"The Last Sam Weiss","airDate":"2011-04-29","airDateUtc":"2011-04-30T01:00:00Z","overview":"As devastation spreads on This Side, Walter, Olivia, and Sam Weiss struggle to find a way to stop the destruction and discover that one individual has the ability to allow Peter access to the Machine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":2006},{"seriesId":54,"episodeFileId":6170,"seasonNumber":3,"episodeNumber":22,"title":"The Day We Died","airDate":"2011-05-06","airDateUtc":"2011-05-07T01:00:00Z","overview":"As the thrilling third season propels to a climactic close, questions will be answered as Peter confronts his destiny and a beloved team member meets an untimely demise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":2007},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Past + Present + Future","airDate":"2011-09-08","airDateUtc":"2011-09-09T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1930},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Past + Present + Future -- A Tragic Past","airDate":"2011-09-08","airDateUtc":"2011-09-09T01:43:00Z","overview":"Walter Bishop does the unthinkable to save his son Peter.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1931},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Past + Present + Future -- A Tale Of Two Walters","airDate":"2011-09-09","airDateUtc":"2011-09-10T01:00:00Z","overview":"Walter's actions have very different repercussions for he and his alternate.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1932},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Past + Present + Future -- Fringe Takes Flight","airDate":"2011-09-09","airDateUtc":"2011-09-10T01:43:00Z","overview":"Olivia Dunham is pulled into the world of Fringe Division.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1933},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Past + Present + Future -- Echoes Of The Past","airDate":"2011-09-12","airDateUtc":"2011-09-13T01:00:00Z","overview":"t is discovered that many of the Fringe cases have connections to Walter's past work.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1934},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Past + Present + Future -- The Other Side","airDate":"2011-09-12","airDateUtc":"2011-09-13T01:43:00Z","overview":"Fringe Division in the alternate universe is in an epic race against time.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1935},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Past + Present + Future -- Over There","airDate":"2011-09-14","airDateUtc":"2011-09-15T01:00:00Z","overview":"Walter & Olivia cross over to the alternate universe in the hopes of rescuing Peter.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1936},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Past + Present + Future -- A Double Agent","airDate":"2011-09-14","airDateUtc":"2011-09-15T01:43:00Z","overview":"Our Olivia is trapped over there, while their Olivia takes her place over here.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1937},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Past + Present + Future -- The Journey Home","airDate":"2011-09-15","airDateUtc":"2011-09-16T01:00:00Z","overview":"The two Olivia's are each desperate to find their way back home.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1938},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Past + Present + Future -- Facing Destiny","airDate":"2011-09-15","airDateUtc":"2011-09-16T01:43:00Z","overview":"Peter faces his true destiny and risks everything to save our world.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1939},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Past + Present + Future -- The Future is Now","airDate":"2011-09-15","airDateUtc":"2011-09-16T02:26:00Z","overview":"Peter finds himself fifteen years into the future.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1940},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Past + Present + Future -- A Different Choice","airDate":"2011-09-15","airDateUtc":"2011-09-16T03:09:00Z","overview":"Walter and Peter are desperate to change future events, in the twelfth installment of Fringe","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1941},{"seriesId":54,"episodeFileId":6077,"seasonNumber":4,"episodeNumber":1,"title":"Neither Here Nor There","airDate":"2011-09-23","airDateUtc":"2011-09-24T01:00:00Z","overview":"Just one week after Peter Bishop saved the day and was then wiped from existence, the truce between the two worlds remains intact and the two sides are forced to work together. Lincoln Lee joins the Fringe team as they investigate a shapeshifter case that is very personal to him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":2008},{"seriesId":54,"episodeFileId":6083,"seasonNumber":4,"episodeNumber":2,"title":"One Night in October","airDate":"2011-09-30","airDateUtc":"2011-10-01T01:00:00Z","overview":"As the victims of a highly intelligent serial killer \"Over There\" stack up, the Fringe Division \"Over Here\" is asked to assist. As the two sides tangle and innocent people remain at risk, the suspect's doppelganger \"Over Here,\" a professor who teaches Forensic Psychology, is brought into the fold and forces the team to consider the notion of sending civilians to the other side","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":2009},{"seriesId":54,"episodeFileId":6087,"seasonNumber":4,"episodeNumber":3,"title":"Alone in the World","airDate":"2011-10-07","airDateUtc":"2011-10-08T01:00:00Z","overview":"Two young bullies are found dead and in just a few hours they rot to an advanced state of decomposition. The Fringe team investigates and uncovers an amorphous figure claiming more victims. Walter becomes increasingly distracted with his mental state.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":2010},{"seriesId":54,"episodeFileId":6089,"seasonNumber":4,"episodeNumber":4,"title":"Subject 9","airDate":"2011-10-14","airDateUtc":"2011-10-15T01:00:00Z","overview":"Olivia uncovers a dangerous force that may be connected to past experiments with Cortexiphan. The investigation forces Walter to leave the lab for the first time in years and travel to Massive Dynamic to examine old case files. Walter struggles with his emotional state as he confronts the demons of his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":2011},{"seriesId":54,"episodeFileId":6094,"seasonNumber":4,"episodeNumber":5,"title":"Novation","airDate":"2011-11-04","airDateUtc":"2011-11-05T01:00:00Z","overview":"Olivia and the others of Fringe division attempt to determine the origin of Peter Bishop, who purports himself as Walter's son who had died as a young boy in the original time line.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":2012},{"seriesId":54,"episodeFileId":6099,"seasonNumber":4,"episodeNumber":6,"title":"And Those We've Left Behind","airDate":"2011-11-11","airDateUtc":"2011-11-12T02:00:00Z","overview":"The Fringe team must find the pattern between tragic time loop anomalies. As the investigation unfolds, Raymond, an electrical engineer, and his wife Kate, a professor of theoretical physics, enter the picture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":2013},{"seriesId":54,"episodeFileId":6108,"seasonNumber":4,"episodeNumber":7,"title":"Wallflower","airDate":"2011-11-18","airDateUtc":"2011-11-19T02:00:00Z","overview":"When a man mysteriously dies by an invisible force, his body rapidly begins turning ghostly white. The Fringe team learns that this is not an isolated incident, and there\u2019s evidence that links the predator to someone who passed away with an unknown genetic disorder. Meanwhile, Olivia suffers from migraines.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":2014},{"seriesId":54,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Past + Present + Future -- Neither Here Nor There","airDate":"2012-01-04","airDateUtc":"2012-01-05T02:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1942},{"seriesId":54,"episodeFileId":6110,"seasonNumber":4,"episodeNumber":8,"title":"Back to Where You've Never Been","airDate":"2012-01-13","airDateUtc":"2012-01-14T02:00:00Z","overview":"In an effort to find a way home, Peter journeys to the Other Side to confront Walternate. However, his venture proves more dangerous than expected. Meanwhile, Olivia receives a dire premonition from an Observer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":2015},{"seriesId":54,"episodeFileId":6115,"seasonNumber":4,"episodeNumber":9,"title":"Enemy of My Enemy","airDate":"2012-01-20","airDateUtc":"2012-01-21T02:00:00Z","overview":"Peter's visit to the other side intensifies as the alternate FRINGE division faces off against a formidable new foe in a harrowing race against time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":2016},{"seriesId":54,"episodeFileId":6121,"seasonNumber":4,"episodeNumber":10,"title":"Forced Perspective","airDate":"2012-01-27","airDateUtc":"2012-01-28T02:00:00Z","overview":"Olivia continues to cope with the ominous warning from the Observers, while Peter and the team track a girl with the mysterious ability to predict death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":2017},{"seriesId":54,"episodeFileId":6126,"seasonNumber":4,"episodeNumber":11,"title":"Making Angels","airDate":"2012-02-03","airDateUtc":"2012-02-04T02:00:00Z","overview":"Over Here Astrid gets an unexpected visit from her Alternate, while Peter and Olivia track a killer using a toxin that has yet to be invented. Both universes collide in a case that pushes the boundaries of what is possible.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":2018},{"seriesId":54,"episodeFileId":6129,"seasonNumber":4,"episodeNumber":12,"title":"Welcome to Westfield","airDate":"2012-02-10","airDateUtc":"2012-02-11T02:00:00Z","overview":"Peter, Olivia and Walter come face to face with a mysterious and terrifying Fringe event as they get trapped in a town that there\u2019s no escaping from.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":2019},{"seriesId":54,"episodeFileId":6138,"seasonNumber":4,"episodeNumber":13,"title":"A Better Human Being","airDate":"2012-02-17","airDateUtc":"2012-02-18T02:00:00Z","overview":"As the Fringe team investigates a mentally ill patient who appears to be connected to a series of murders, frightening clues and connections are uncovered that lead Olivia to some shocking revelations.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":2020},{"seriesId":54,"episodeFileId":6142,"seasonNumber":4,"episodeNumber":14,"title":"The End of All Things","airDate":"2012-02-24","airDateUtc":"2012-02-25T02:00:00Z","overview":"The dying Observer comes to see Walter and Peter, who must take extreme measures to learn what secrets he hides and determine if he knows where Olivia is. Meanwhile, David Robert Jones tries to force Olivia to use her cortexiphan abilities by torturing Nina.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":2021},{"seriesId":54,"episodeFileId":6146,"seasonNumber":4,"episodeNumber":15,"title":"A Short Story About Love","airDate":"2012-03-23","airDateUtc":"2012-03-24T01:00:00Z","overview":"Following the recent shocking revelations and emotional events, Peter weighs his options as the Fringe team investigates a killer targeting love.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":2022},{"seriesId":54,"episodeFileId":6150,"seasonNumber":4,"episodeNumber":16,"title":"Nothing As It Seems","airDate":"2012-03-30","airDateUtc":"2012-03-31T01:00:00Z","overview":"The Fringe team faces a case that appears familiar to Peter. Strangely, it takes place in this timeline.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":2023},{"seriesId":54,"episodeFileId":6151,"seasonNumber":4,"episodeNumber":17,"title":"Everything in Its Right Place","airDate":"2012-04-06","airDateUtc":"2012-04-07T01:00:00Z","overview":"Lincoln travels to the other side to join forces with Fauxlivia and his own alternate, as they search for a vigilante with a surprising connection to the shapeshifters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":2024},{"seriesId":54,"episodeFileId":6155,"seasonNumber":4,"episodeNumber":18,"title":"The Consultant","airDate":"2012-04-13","airDateUtc":"2012-04-14T01:00:00Z","overview":"Walter travels to the Alternate Universe to assist in the investigation of a Fringe event with ties to both worlds. Meanwhile, David Robert Jones reveals his next target.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":2025},{"seriesId":54,"episodeFileId":6159,"seasonNumber":4,"episodeNumber":19,"title":"Letters of Transit","airDate":"2012-04-20","airDateUtc":"2012-04-21T01:00:00Z","overview":"The Fringe team goes back to the future as the story jumps ahead to 2036, when the Observers and the Fringe team engage in a game-changing battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":2026},{"seriesId":54,"episodeFileId":6164,"seasonNumber":4,"episodeNumber":20,"title":"Worlds Apart","airDate":"2012-04-27","airDateUtc":"2012-04-28T01:00:00Z","overview":"The teams on both sides fight on for a common cause, and there are shocking developments tied to the Cortexiphan children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":2027},{"seriesId":54,"episodeFileId":6168,"seasonNumber":4,"episodeNumber":21,"title":"Brave New World (1)","airDate":"2012-05-04","airDateUtc":"2012-05-05T01:00:00Z","overview":"A mysterious Fringe event causing people to spontaneously combust forces Walter to revisit his painful past while the Fringe team faces off against David Robert Jones to save the world, or worlds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":2028},{"seriesId":54,"episodeFileId":6171,"seasonNumber":4,"episodeNumber":22,"title":"Brave New World (2)","airDate":"2012-05-11","airDateUtc":"2012-05-12T01:00:00Z","overview":"The Fringe team is pushed to the breaking point as they desperately attempt to prevent a catastrophic event that threatens the lives of everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":2029},{"seriesId":54,"episodeFileId":6076,"seasonNumber":5,"episodeNumber":1,"title":"Transilience Thought Unifier Model-11","airDate":"2012-09-28","airDateUtc":"2012-09-29T01:00:00Z","overview":"The Fringe team - preserved in amber for 20 years - is now a rebel resistance team fighting for freedom. Peter, reunited with his now adult daughter, Etta, sets out to find out what happened to his wife and Etta's mom - Olivia - as they start their mission to save the world from the Observers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":2030},{"seriesId":54,"episodeFileId":6079,"seasonNumber":5,"episodeNumber":2,"title":"In Absentia","airDate":"2012-10-05","airDateUtc":"2012-10-06T01:00:00Z","overview":"The Fringe team revisits the Harvard lab, now under Observer control, to try to find the information they need as the team fights on in their mission to save the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":2031},{"seriesId":54,"episodeFileId":6086,"seasonNumber":5,"episodeNumber":3,"title":"The Recordist","airDate":"2012-10-12","airDateUtc":"2012-10-13T01:00:00Z","overview":"As the rogue Fringe team continues to fight off the oppressive Observers\u2019 invasion, unforeseen events lead them into a forest where they encounter a strange subculture of people devoted to recording human history.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":2032},{"seriesId":54,"episodeFileId":6092,"seasonNumber":5,"episodeNumber":4,"title":"The Bullet That Saved the World","airDate":"2012-10-26","airDateUtc":"2012-10-27T01:00:00Z","overview":"When the Fringe team tracks a lead into a hostile and heavily guarded location, Phillip Broyles resurfaces... but can he be trusted?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":2033},{"seriesId":54,"episodeFileId":6095,"seasonNumber":5,"episodeNumber":5,"title":"An Origin Story","airDate":"2012-11-02","airDateUtc":"2012-11-03T01:00:00Z","overview":"The Fringe team responds to recent devastating events, and a key member makes a pivotal and shocking move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":2034},{"seriesId":54,"episodeFileId":6100,"seasonNumber":5,"episodeNumber":6,"title":"Through the Looking Glass and What Walter Found There","airDate":"2012-11-09","airDateUtc":"2012-11-10T02:00:00Z","overview":"A Fringe team member takes on a new role, and Walter follows leads to a key piece needed in the battle against the Observers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":2035},{"seriesId":54,"episodeFileId":6106,"seasonNumber":5,"episodeNumber":7,"title":"Five-Twenty-Ten","airDate":"2012-11-16","airDateUtc":"2012-11-17T02:00:00Z","overview":"As the fight for the future intensifies, a member of the Fringe team orchestrates a Fringe event of his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":2036},{"seriesId":54,"episodeFileId":6109,"seasonNumber":5,"episodeNumber":8,"title":"The Human Kind","airDate":"2012-12-07","airDateUtc":"2012-12-08T02:00:00Z","overview":"Olivia encounters a very intuitive and oracle-like person named Simone as she looks to recover a key piece of equipment for Walter. Meanwhile, Peter finds himself in a perilous situation as he observes Windmark.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":2037},{"seriesId":54,"episodeFileId":6114,"seasonNumber":5,"episodeNumber":9,"title":"Black Blotter","airDate":"2012-12-14","airDateUtc":"2012-12-15T02:00:00Z","overview":"In attempt to recall a plan to defeat the Observers, Walter takes an LSD trip down memory lane. Meanwhile, Peter and Olivia trace a mysterious signal to the woods, where they come upon a grisly scene.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":2038},{"seriesId":54,"episodeFileId":6120,"seasonNumber":5,"episodeNumber":10,"title":"Anomaly XB-6783746","airDate":"2012-12-21","airDateUtc":"2012-12-22T02:00:00Z","overview":"The Fringe team is running out of time to save the world. As Peter, Olivia, Astrid and Walter scramble to tap into a key piece of the puzzle to defeat the Observers, they enlist the aid of Nina Sharp who conjures up a plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":2039},{"seriesId":54,"episodeFileId":6127,"seasonNumber":5,"episodeNumber":11,"title":"The Boy Must Live","airDate":"2013-01-11","airDateUtc":"2013-01-12T02:00:00Z","overview":"As time dramatically ticks down, Peter, Olivia and Walter stop at nothing to save the universe from Observer rule. Walter enters the infamous deprivation tank in an attempt to uncover a key piece of information about the mysterious figure, Donald. Meanwhile, Captain Windmark sets out on a revealing mission of his own as long-standing questions are answered.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":2040},{"seriesId":54,"episodeFileId":6132,"seasonNumber":5,"episodeNumber":12,"title":"Liberty","airDate":"2013-01-18","airDateUtc":"2013-01-19T02:00:00Z","overview":"The Fringe team engages a desperate plan as Olivia embarks on a dangerous and otherworldly journey into the unknown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":2041},{"seriesId":54,"episodeFileId":6137,"seasonNumber":5,"episodeNumber":13,"title":"An Enemy of Fate","airDate":"2013-01-18","airDateUtc":"2013-01-19T02:43:00Z","overview":"Peter, Olivia, Walter, Astrid and Broyles face off against the Observers in one final and extraordinary battle for the fate of mankind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":2042}],"episodeFile":[{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":2926118232,"dateAdded":"2018-12-29T12:17:17.184592Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430398,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4250947,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:21:39","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6074},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Olivia-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E01.Olivia-Bluray-1080p.mkv","size":1707535501,"dateAdded":"2018-12-29T12:17:17.233912Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":411287,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4752143,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6075},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Transilience Thought Unifier Model-11-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E01.Transilience Thought Unifier Model-11-Bluray-1080p.mkv","size":1537271150,"dateAdded":"2018-12-29T12:17:17.280128Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437145,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4254583,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6076},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Neither Here Nor There-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E01.Neither Here Nor There-Bluray-1080p.mkv","size":1354618680,"dateAdded":"2018-12-29T12:17:17.325204Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419160,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3719152,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6077},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E01.A New Day in the Old Town-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E01.A New Day in the Old Town-Bluray-1080p.mkv","size":1237934721,"dateAdded":"2018-12-29T12:17:17.3611Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":369438,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3371016,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6078},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E02.In Absentia-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E02.In Absentia-Bluray-1080p.mkv","size":1353596508,"dateAdded":"2018-12-29T12:17:17.394579Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429472,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3799651,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6079},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Same Old Story-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E02.The Same Old Story-Bluray-1080p.mkv","size":1338372449,"dateAdded":"2018-12-29T12:17:17.433689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":374082,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3118025,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6080},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Night of Desirable Objects-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E02.Night of Desirable Objects-Bluray-1080p.mkv","size":1300063883,"dateAdded":"2018-12-29T12:17:17.495035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414532,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3513019,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6081},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Box-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E02.The Box-Bluray-1080p.mkv","size":1242858229,"dateAdded":"2018-12-29T12:17:17.551383Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422880,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3328862,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6082},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E02.One Night in October-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E02.One Night in October-Bluray-1080p.mkv","size":1200443110,"dateAdded":"2018-12-29T12:17:17.592715Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406341,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3319412,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6083},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Plateau-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E03.The Plateau-Bluray-1080p.mkv","size":1798553472,"dateAdded":"2018-12-29T12:17:17.649771Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405128,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4947682,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6084},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Ghost Network-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E03.The Ghost Network-Bluray-1080p.mkv","size":1550406344,"dateAdded":"2018-12-29T12:17:17.683167Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3618792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6085},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E03.The Recordist-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E03.The Recordist-Bluray-1080p.mkv","size":1365089417,"dateAdded":"2018-12-29T12:17:17.716237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425534,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3884974,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6086},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Alone in the World-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E03.Alone in the World-Bluray-1080p.mkv","size":1316307851,"dateAdded":"2018-12-29T12:17:17.748706Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412981,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3594951,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6087},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Fracture-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E03.Fracture-Bluray-1080p.mkv","size":1272602977,"dateAdded":"2018-12-29T12:17:17.78199Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408989,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3429623,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6088},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Subject 9-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E04.Subject 9-Bluray-1080p.mkv","size":1557362711,"dateAdded":"2018-12-29T12:17:17.814963Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413260,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4332610,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6089},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Do Shapeshifters Dream of Electric Sheep-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E04.Do Shapeshifters Dream of Electric Sheep-Bluray-1080p.mkv","size":1469247756,"dateAdded":"2018-12-29T12:17:17.847994Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426873,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4012131,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6090},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Momentum Deferred-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E04.Momentum Deferred-Bluray-1080p.mkv","size":1374195392,"dateAdded":"2018-12-29T12:17:17.880876Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3683806,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6091},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E04.The Bullet That Saved the World-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E04.The Bullet That Saved the World-Bluray-1080p.mkv","size":1284168414,"dateAdded":"2018-12-29T12:17:17.915369Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425278,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3469478,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6092},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Arrival-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E04.The Arrival-Bluray-1080p.mkv","size":1204706765,"dateAdded":"2018-12-29T12:17:17.948092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2860167,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6093},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Novation-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E05.Novation-Bluray-1080p.mkv","size":1669107332,"dateAdded":"2018-12-29T12:17:17.984925Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413768,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4748310,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6094},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E05.An Origin Story-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E05.An Origin Story-Bluray-1080p.mkv","size":1388688661,"dateAdded":"2018-12-29T12:17:18.020804Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412427,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3779291,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6095},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Power Hungry-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E05.Power Hungry-Bluray-1080p.mkv","size":1281865740,"dateAdded":"2018-12-29T12:17:18.055493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403718,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3033000,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6096},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Dream Logic-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E05.Dream Logic-Bluray-1080p.mkv","size":1258455863,"dateAdded":"2018-12-29T12:17:18.088524Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":372355,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3424523,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6097},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Amber 31422-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E05.Amber 31422-Bluray-1080p.mkv","size":1254066760,"dateAdded":"2018-12-29T12:17:18.128004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419704,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3364539,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6098},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E06.And Those We've Left Behind-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E06.And Those We've Left Behind-Bluray-1080p.mkv","size":1656976787,"dateAdded":"2018-12-29T12:17:18.177934Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429512,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4575594,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6099},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Through the Looking Glass and What Walter Found There-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E06.Through the Looking Glass and What Walter Found There-Bluray-1080p.mkv","size":1613961017,"dateAdded":"2018-12-29T12:17:18.248017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":395326,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4562382,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6100},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Cure-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E06.The Cure-Bluray-1080p.mkv","size":1276708883,"dateAdded":"2018-12-29T12:17:18.336772Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2989741,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6101},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E06.6955 kHz-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E06.6955 kHz-Bluray-1080p.mkv","size":1248719385,"dateAdded":"2018-12-29T12:17:18.384037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418679,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3346820,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6102},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Earthling-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E06.Earthling-Bluray-1080p.mkv","size":1135240109,"dateAdded":"2018-12-29T12:17:18.424474Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3049277,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6103},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Abducted-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E07.The Abducted-Bluray-1080p.mkv","size":1580035376,"dateAdded":"2018-12-29T12:17:18.465737Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4402307,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6104},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E07.In Which We Meet Mr. Jones-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E07.In Which We Meet Mr. Jones-Bluray-1080p.mkv","size":1492766979,"dateAdded":"2018-12-29T12:17:18.500181Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":400013,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3544784,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6105},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Five-Twenty-Ten-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E07.Five-Twenty-Ten-Bluray-1080p.mkv","size":1311844961,"dateAdded":"2018-12-29T12:17:18.541369Z","releaseGroup":"Ten","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427497,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3592294,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6106},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Of Human Action-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E07.Of Human Action-Bluray-1080p.mkv","size":1286131627,"dateAdded":"2018-12-29T12:17:18.576105Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3498466,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6107},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Wallflower-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E07.Wallflower-Bluray-1080p.mkv","size":1202393921,"dateAdded":"2018-12-29T12:17:18.627286Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424205,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3237960,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6108},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E08.The Human Kind-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E08.The Human Kind-Bluray-1080p.mkv","size":1464858266,"dateAdded":"2018-12-29T12:17:18.669158Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438166,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3985767,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6109},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Back to Where You've Never Been-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E08.Back to Where You've Never Been-Bluray-1080p.mkv","size":1408256064,"dateAdded":"2018-12-29T12:17:18.718742Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422550,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3831143,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6110},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Equation-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E08.The Equation-Bluray-1080p.mkv","size":1362806010,"dateAdded":"2018-12-29T12:17:18.759659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":373118,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3302858,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6111},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E08.August-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E08.August-Bluray-1080p.mkv","size":1134796449,"dateAdded":"2018-12-29T12:17:18.792954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3044914,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6112},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Entrada-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E08.Entrada-Bluray-1080p.mkv","size":1078300652,"dateAdded":"2018-12-29T12:17:18.845112Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416175,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2839953,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6113},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Black Blotter-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E09.Black Blotter-Bluray-1080p.mkv","size":1530145451,"dateAdded":"2018-12-29T12:17:18.886813Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423988,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4202772,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6114},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Enemy of My Enemy-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E09.Enemy of My Enemy-Bluray-1080p.mkv","size":1397913116,"dateAdded":"2018-12-29T12:17:18.919564Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412552,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3811444,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6115},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Dreamscape-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E09.The Dreamscape-Bluray-1080p.mkv","size":1365718454,"dateAdded":"2018-12-29T12:17:18.953709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3240370,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6116},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Snakehead-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E09.Snakehead-Bluray-1080p.mkv","size":1196370908,"dateAdded":"2018-12-29T12:17:18.98718Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415684,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3235551,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6117},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Marionette-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E09.Marionette-Bluray-1080p.mkv","size":1193299224,"dateAdded":"2018-12-29T12:17:19.020789Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419281,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3183102,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6118},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Safe-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E10.Safe-Bluray-1080p.mkv","size":1312449946,"dateAdded":"2018-12-29T12:17:19.053919Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3112122,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6119},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Anomaly XB-6783746-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E10.Anomaly XB-6783746-Bluray-1080p.mkv","size":1222651586,"dateAdded":"2018-12-29T12:17:19.088381Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425783,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3265218,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6120},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Forced Perspective-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E10.Forced Perspective-Bluray-1080p.mkv","size":1193495185,"dateAdded":"2018-12-29T12:17:19.121781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438413,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3191648,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6121},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Firefly-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E10.The Firefly-Bluray-1080p.mkv","size":1170698342,"dateAdded":"2018-12-29T12:17:19.154552Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438336,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3092181,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6122},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Grey Matters-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E10.Grey Matters-Bluray-1080p.mkv","size":1093769249,"dateAdded":"2018-12-29T12:17:19.188056Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":374499,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2922049,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6123},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Unearthed-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E11.Unearthed-Bluray-1080p.mkv","size":1526124720,"dateAdded":"2018-12-29T12:17:19.22102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403714,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4203416,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6124},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Bound-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E11.Bound-Bluray-1080p.mkv","size":1383151565,"dateAdded":"2018-12-29T12:17:19.254205Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3268751,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6125},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Making Angels-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E11.Making Angels-Bluray-1080p.mkv","size":1313702711,"dateAdded":"2018-12-29T12:17:19.289619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399915,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3611267,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6126},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E11.The Boy Must Live-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E11.The Boy Must Live-Bluray-1080p.mkv","size":1198384326,"dateAdded":"2018-12-29T12:17:19.345452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431340,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3209627,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6127},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Reciprocity-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E11.Reciprocity-Bluray-1080p.mkv","size":1187929204,"dateAdded":"2018-12-29T12:17:19.380237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425041,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3035011,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6128},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Welcome to Westfield-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E12.Welcome to Westfield-Bluray-1080p.mkv","size":1328780565,"dateAdded":"2018-12-29T12:17:19.454597Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436505,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3575553,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6129},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The No-Brainer-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E12.The No-Brainer-Bluray-1080p.mkv","size":1268279021,"dateAdded":"2018-12-29T12:17:19.515749Z","releaseGroup":"Brainer","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":392095,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2956509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6130},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Concentrate and Ask Again-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E12.Concentrate and Ask Again-Bluray-1080p.mkv","size":1246042761,"dateAdded":"2018-12-29T12:17:19.549211Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":397009,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3383698,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6131},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Liberty-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E12.Liberty-Bluray-1080p.mkv","size":1199659949,"dateAdded":"2018-12-29T12:17:19.591913Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427091,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3264310,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6132},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Johari Window-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E12.Johari Window-Bluray-1080p.mkv","size":1014293186,"dateAdded":"2018-12-29T12:17:19.624808Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410811,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2680535,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6133},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E13.What Lies Below-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E13.What Lies Below-Bluray-1080p.mkv","size":1344213575,"dateAdded":"2018-12-29T12:17:19.657755Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":397255,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3662240,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6134},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Transformation-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E13.The Transformation-Bluray-1080p.mkv","size":1281729727,"dateAdded":"2018-12-29T12:17:19.690821Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":392314,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2991473,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6135},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Immortality-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E13.Immortality-Bluray-1080p.mkv","size":1228959052,"dateAdded":"2018-12-29T12:17:19.724024Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423989,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3282961,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6136},{"seriesId":54,"seasonNumber":5,"relativePath":"Season 05\/S05E13.An Enemy of Fate-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 05\/S05E13.An Enemy of Fate-Bluray-1080p.mkv","size":1128230688,"dateAdded":"2018-12-29T12:17:19.757196Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408916,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2994643,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6137},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E13.A Better Human Being-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E13.A Better Human Being-Bluray-1080p.mkv","size":1086407562,"dateAdded":"2018-12-29T12:17:19.790507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407932,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2868265,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6138},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E14.The Bishop Revival-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E14.The Bishop Revival-Bluray-1080p.mkv","size":1262421000,"dateAdded":"2018-12-29T12:17:19.82533Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":402436,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3407517,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6139},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E14.6B-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E14.6B-Bluray-1080p.mkv","size":1252994950,"dateAdded":"2018-12-29T12:17:19.858453Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425297,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3367078,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6140},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Ability-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E14.Ability-Bluray-1080p.mkv","size":1201235436,"dateAdded":"2018-12-29T12:17:19.891608Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2782835,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6141},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E14.The End of All Things-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E14.The End of All Things-Bluray-1080p.mkv","size":1175826558,"dateAdded":"2018-12-29T12:17:19.924847Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413224,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3170713,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6142},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Subject 13-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E15.Subject 13-Bluray-1080p.mkv","size":1477965571,"dateAdded":"2018-12-29T12:17:19.95767Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4081262,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6143},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Jacksonville-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E15.Jacksonville-Bluray-1080p.mkv","size":1277768972,"dateAdded":"2018-12-29T12:17:19.990663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3468477,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6144},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Inner Child-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E15.Inner Child-Bluray-1080p.mkv","size":1075300257,"dateAdded":"2018-12-29T12:17:20.040648Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2476235,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6145},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E15.A Short Story About Love-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E15.A Short Story About Love-Bluray-1080p.mkv","size":1052077999,"dateAdded":"2018-12-29T12:17:20.07375Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":411831,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2765189,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6146},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Unleashed-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E16.Unleashed-Bluray-1080p.mkv","size":1267077064,"dateAdded":"2018-12-29T12:17:20.108328Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":395754,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2947006,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6147},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Os-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E16.Os-Bluray-1080p.mkv","size":1264311641,"dateAdded":"2018-12-29T12:17:20.141429Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421451,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3423191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6148},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Peter-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E16.Peter-Bluray-1080p.mkv","size":1215455812,"dateAdded":"2018-12-29T12:17:20.174156Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3195808,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6149},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Nothing As It Seems-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E16.Nothing As It Seems-Bluray-1080p.mkv","size":1194351804,"dateAdded":"2018-12-29T12:17:20.207315Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407794,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3191020,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6150},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Everything in Its Right Place-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E17.Everything in Its Right Place-Bluray-1080p.mkv","size":1241699391,"dateAdded":"2018-12-29T12:17:20.239872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421886,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3326687,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6151},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Bad Dreams-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E17.Bad Dreams-Bluray-1080p.mkv","size":1199014111,"dateAdded":"2018-12-29T12:17:20.272711Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":367126,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2713203,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6152},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Stowaway-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E17.Stowaway-Bluray-1080p.mkv","size":1099525072,"dateAdded":"2018-12-29T12:17:20.30525Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439689,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2881917,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6153},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Olivia, in the Lab, with the Revolver-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E17.Olivia, in the Lab, with the Revolver-Bluray-1080p.mkv","size":1031049351,"dateAdded":"2018-12-29T12:17:20.342098Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2722364,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6154},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E18.The Consultant-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E18.The Consultant-Bluray-1080p.mkv","size":1370469387,"dateAdded":"2018-12-29T12:17:20.395198Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410975,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3808835,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6155},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Bloodline-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E18.Bloodline-Bluray-1080p.mkv","size":1311585446,"dateAdded":"2018-12-29T12:17:20.439001Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424602,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3629177,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6156},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E18.White Tulip-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E18.White Tulip-Bluray-1080p.mkv","size":1165267329,"dateAdded":"2018-12-29T12:17:20.486733Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398571,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3107410,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6157},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Midnight-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E18.Midnight-Bluray-1080p.mkv","size":1149634439,"dateAdded":"2018-12-29T12:17:20.55679Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":402466,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2630860,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6158},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Letters of Transit-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E19.Letters of Transit-Bluray-1080p.mkv","size":1848325332,"dateAdded":"2018-12-29T12:17:20.623266Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421831,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5217912,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6159},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Lysergic Acid Diethylamide-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E19.Lysergic Acid Diethylamide-Bluray-1080p.mkv","size":1453158192,"dateAdded":"2018-12-29T12:17:20.909246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417724,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3893034,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6160},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E19.The Man from the Other Side-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E19.The Man from the Other Side-Bluray-1080p.mkv","size":1368858935,"dateAdded":"2018-12-29T12:17:21.011408Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3777011,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6161},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Road Not Taken-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E19.The Road Not Taken-Bluray-1080p.mkv","size":1143998256,"dateAdded":"2018-12-29T12:17:21.0788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":374628,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2644081,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6162},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E20.6-02 AM EST-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E20.6-02 AM EST-Bluray-1080p.mkv","size":1230417652,"dateAdded":"2018-12-29T12:17:21.1674Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413741,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3383900,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6163},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Worlds Apart-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E20.Worlds Apart-Bluray-1080p.mkv","size":1217882022,"dateAdded":"2018-12-29T12:17:21.213481Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":411808,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3313897,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6164},{"seriesId":54,"seasonNumber":1,"relativePath":"Season 01\/S01E20.There's More Than One of Everything-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 01\/S01E20.There's More Than One of Everything-Bluray-1080p.mkv","size":1153937301,"dateAdded":"2018-12-29T12:17:21.2558Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2849854,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6165},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Brown Betty-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E20.Brown Betty-Bluray-1080p.mkv","size":1137846257,"dateAdded":"2018-12-29T12:17:21.299091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2965835,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6166},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Northwest Passage-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E21.Northwest Passage-Bluray-1080p.mkv","size":1331277764,"dateAdded":"2018-12-29T12:17:21.332688Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3631308,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6167},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Brave New World (1)-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E21.Brave New World (1)-Bluray-1080p.mkv","size":1267668001,"dateAdded":"2018-12-29T12:17:21.367572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422365,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3492474,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6168},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E21.The Last Sam Weiss-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E21.The Last Sam Weiss-Bluray-1080p.mkv","size":1212295824,"dateAdded":"2018-12-29T12:17:21.400691Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434485,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3275979,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6169},{"seriesId":54,"seasonNumber":3,"relativePath":"Season 03\/S03E22.The Day We Died-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 03\/S03E22.The Day We Died-Bluray-1080p.mkv","size":1260667121,"dateAdded":"2018-12-29T12:17:21.434142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418696,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3389719,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6170},{"seriesId":54,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Brave New World (2)-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 04\/S04E22.Brave New World (2)-Bluray-1080p.mkv","size":1196363842,"dateAdded":"2018-12-29T12:17:21.467686Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427495,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3238459,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6171},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Over There (1)-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E22.Over There (1)-Bluray-1080p.mkv","size":1127443803,"dateAdded":"2018-12-29T12:17:21.500793Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":391766,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3011180,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6172},{"seriesId":54,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Over There (2)-Bluray-1080p.mkv","path":"\/tv\/Fringe\/Season 02\/S02E23.Over There (2)-Bluray-1080p.mkv","size":1045347207,"dateAdded":"2018-12-29T12:17:21.533951Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2694203,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6173}],"queue":[]},"53":{"series":{"title":"Elfen Lied","alternateTitles":[],"sortTitle":"elfen lied","status":"ended","ended":true,"overview":"The diclonius, otherwise known as a two-horned human, are mutants of the human species, and may well be the next step in human evolution. The diclonius have horns and strong telekinetic powers represented by \"vectors\". However with this great power, they can easily destroy the human race. Fearful of their power, humans quarantined the diclonius into secret research facilities to study. However, in a freak accident, a enraged female diclonius escaped, killing many guards in the process. While escaping, she is shot in the head, and falls into the ocean. As a result she has waves of amnesia. Later, she washes ashore. There, she meets two people named Kouta and Yuka, who name the female diclonius \"Nyuu\", after the only word she can say. They decide to watch after her, but of course, the research facility can't have this, and begin trying to retrieve her by any means necessary.","previousAiring":"2005-04-20T15:00:00Z","network":"AT-X","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/65\/banner.jpg?lastWrite=637103832641754800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75941-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/65\/poster.jpg?lastWrite=636747176329665960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75941-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/65\/fanart.jpg?lastWrite=636747176325986040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75941-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2005-04-20T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":1,"sizeOnDisk":318606611,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-10-16T15:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4177316166,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/Elfen Lied","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":75941,"tvRageId":3430,"tvMazeId":2061,"firstAired":"2004-07-25T00:00:00Z","seriesType":"standard","cleanTitle":"elfenlied","imdbId":"tt0480489","titleSlug":"elfen-lied","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Drama","Horror"],"tags":[],"added":"2018-10-05T17:35:59.3449227Z","ratings":{"votes":11056,"value":8.2},"statistics":{"seasonCount":1,"episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4495922777,"percentOfEpisodes":100.0},"id":65},"episodes":[{"seriesId":65,"episodeFileId":9388,"seasonNumber":1,"episodeNumber":1,"title":"A Chance Encounter","airDate":"2004-07-25","airDateUtc":"2004-07-24T15:00:00Z","overview":"An unknown girl with invisible hands, or vectors, and telepathic powers escapes from a secret facility. The next day two cousins, Kouta and Yuka, find her. But she is different from before. She can only say one word, nyuu. Not knowing anything about her, the two cousins take her in. Kurama, the head scientist from th efacility where she escaped, has sent a merciless man, Bando, after her. With Bando tracking Nyuu, and Nyuu herself, will Kouta and Yuka be safe?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1694},{"seriesId":65,"episodeFileId":9389,"seasonNumber":1,"episodeNumber":2,"title":"Annihilation","airDate":"2004-08-01","airDateUtc":"2004-07-31T15:00:00Z","overview":"After breaking Kouta\u2019s seashell, Nyuu runs way. Kouta finds her later at the beach, but he isn\u2019t the only one. Bando and Satou, two members of the SAT who are after Lucy, are there as well. With Lucy acting more like an animal than a murder, does she stand a chance against the cold-hearted Bando?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1695},{"seriesId":65,"episodeFileId":9390,"seasonNumber":1,"episodeNumber":3,"title":"Deep Feelings","airDate":"2004-08-08","airDateUtc":"2004-08-07T15:00:00Z","overview":"It\u2019s the calm after the storm... but the calm won\u2019t last long. Kurama and the secret facility are sending two people after Lucy. One is the newly healed and stronger Bando. The other is a diclonius just like Lucy. At Kouta\u2019s house, Yuka and a homeless girl named Mayu talk about the events that happened two nights ago at the beach. All of a sudden, Nyuu slips and falls. She bangs her head and Lucy awakens inside of her. Will Kouta and the others be safe with the murderous Lucy in their house? And will Lucy stand a chance against a fellow diclonius?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1696},{"seriesId":65,"episodeFileId":9391,"seasonNumber":1,"episodeNumber":4,"title":"Attack","airDate":"2004-08-15","airDateUtc":"2004-08-14T15:00:00Z","overview":"After alerting the soldiers and Kurama to Lucy\u2019s whereabouts, Nana confronts her and the two begin to fight in a cemetery. Can Nana hold Lucy off long enough for Kurama and the others to arrive? Meanwhile, hearing loud noises in the cemetery, Mayu stumbles upon the two fighting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1697},{"seriesId":65,"episodeFileId":9392,"seasonNumber":1,"episodeNumber":5,"title":"Receipt","airDate":"2004-08-22","airDateUtc":"2004-08-21T15:00:00Z","overview":"Mayu\u2019s tragic past is revealed. She remembers back to when she ran away from home. At school, Yuka and Kouta\u2019s new professor is none other than Yu Kakuzawa, Chief Kakuzawa\u2019s son. He instantly notices Nyuu as Lucy and tricks Kouta into handing her over to him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1698},{"seriesId":65,"episodeFileId":9393,"seasonNumber":1,"episodeNumber":6,"title":"Innermost Feelings","airDate":"2004-08-29","airDateUtc":"2004-08-28T15:00:00Z","overview":"With new, stronger hands, Bando searches for Lucy hoping to gain revenge. But, Lucy is still missing, because after killing Professor Kakuzawa, she runs away again. Kouta and Yuka set out to look for her, but cannot find her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1699},{"seriesId":65,"episodeFileId":9394,"seasonNumber":1,"episodeNumber":7,"title":"Confrontation","airDate":"2004-09-05","airDateUtc":"2004-09-04T15:00:00Z","overview":"After fighting, Bando and Nana realize that they are allies and not enemies. Nana agrees to bring Lucy to the beach when she senses her. Meanwhile, at the temple, Mayu meets Nana. The two become friends and Mayu agrees to bring Nana back to her house for food.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1700},{"seriesId":65,"episodeFileId":9395,"seasonNumber":1,"episodeNumber":8,"title":"The Beginning","airDate":"2004-09-12","airDateUtc":"2004-09-11T15:00:00Z","overview":"After Lucy is knocked out by Nana Kouta tends to her. She sleeps and relives her childhood in a dream, revealing many things about her. Meanwhile, Nana tells Mayu about Lucy and the diclonius and Arakawa is called in to work for Director Kakuzawa...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1701},{"seriesId":65,"episodeFileId":9396,"seasonNumber":1,"episodeNumber":9,"title":"Reminiscence","airDate":"2004-09-19","airDateUtc":"2004-09-18T15:00:00Z","overview":"More of Lucy's past is revealed: Her meeting with Kouta, their friendship that will end in tragedy, and the reason why Lucy became the killer she is today.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1702},{"seriesId":65,"episodeFileId":9397,"seasonNumber":1,"episodeNumber":10,"title":"Infant","airDate":"2004-09-26","airDateUtc":"2004-09-25T15:00:00Z","overview":"Lucy and Nana start to fight, but Mayu stops them and Lucy turns back to Nyuu, hugging Kouta and telling him she likes him. Later, Kurama's past is revealed and so is more about the dicloniuses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1703},{"seriesId":65,"episodeFileId":9398,"seasonNumber":1,"episodeNumber":11,"title":"Complication","airDate":"2004-10-03","airDateUtc":"2004-10-02T15:00:00Z","overview":"Number 35, Mariko, is released and immediately kills the soldiers around her. The professors, who were prepared for this, set off one of the explosives inside her, destroying her arm. Later, they fly her to where Nyuu and Nana are. \r\n\r\nMeanwhile, Nana is enjoying living in the inn but Kouta tells her she needs to work as well. Things seem to be going as peaceful as it can get... but how long with the peace last?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":1704},{"seriesId":65,"episodeFileId":9399,"seasonNumber":1,"episodeNumber":12,"title":"Quagmire","airDate":"2004-10-10","airDateUtc":"2004-10-09T15:00:00Z","overview":"Mariko is torturing and playing with Nana like an insect while Kouta runs to her to protect her. Mariko temporally looses her vectors, thanks to Nana, and has to be sent back. Nyuu follows Kouta, but when the soldiers start to shoot at her she turns into Lucy. Seeing the bloodthirsty Lucy, Kouta recalls everything...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":1705},{"seriesId":65,"episodeFileId":9400,"seasonNumber":1,"episodeNumber":13,"title":"No Return","airDate":"2004-10-17","airDateUtc":"2004-10-16T15:00:00Z","overview":"Yuka informs Mayu of Kouta's past. Meanwhile, Lucy and Mariko find each other and face off in a fight. Now, Nana and Kurama have to find Mariko because Kurama needs to kill her...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":1706},{"seriesId":65,"episodeFileId":16835,"seasonNumber":0,"episodeNumber":1,"title":"In the Passing Rain","airDate":"2005-04-21","airDateUtc":"2005-04-20T15:00:00Z","overview":"This episode was made after the original series. Events take place somewhere within the timespan of episode eleven.\r\n\r\nTrying to fit in, Nana gets scolded and runs off. She meets Bantou and promises to bring him Nyuu. But when it begins to rain and Nyu hits her head, will Nana survive? Parts of Lucy\u2019s past are revealed, including her connection with Kurama.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":20214}],"episodeFile":[{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Chance Encounter-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E01.A Chance Encounter-Bluray-1080p.mkv","size":337520117,"dateAdded":"2019-10-03T19:08:22.771345Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":316503,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":990835,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9388},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Annihilation-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E02.Annihilation-Bluray-1080p.mkv","size":379249251,"dateAdded":"2019-10-03T19:08:22.84793Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":321003,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1208665,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9389},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Deep Feelings-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E03.Deep Feelings-Bluray-1080p.mkv","size":310052936,"dateAdded":"2019-10-03T19:08:22.90584Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":318762,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":849341,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9390},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Attack-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E04.Attack-Bluray-1080p.mkv","size":319021667,"dateAdded":"2019-10-03T19:08:22.964173Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":316112,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":900544,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9391},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Receipt-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E05.Receipt-Bluray-1080p.mkv","size":309647571,"dateAdded":"2019-10-03T19:08:23.024988Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":316105,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":835697,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9392},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Innermost Feelings-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E06.Innermost Feelings-Bluray-1080p.mkv","size":352271221,"dateAdded":"2019-10-03T19:08:23.082661Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":322050,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1066609,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9393},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Confrontation-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E07.Confrontation-Bluray-1080p.mkv","size":289163076,"dateAdded":"2019-10-03T19:08:23.140633Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":313506,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":740425,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9394},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Beginning-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E08.The Beginning-Bluray-1080p.mkv","size":309404355,"dateAdded":"2019-10-03T19:08:23.198156Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":307783,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":857763,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9395},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Reminiscence-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E09.Reminiscence-Bluray-1080p.mkv","size":324310256,"dateAdded":"2019-10-03T19:08:23.265615Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":320922,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":916740,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9396},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Infant-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E10.Infant-Bluray-1080p.mkv","size":301987921,"dateAdded":"2019-10-03T19:08:23.314725Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":323257,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":799169,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9397},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Complication-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E11.Complication-Bluray-1080p.mkv","size":322529846,"dateAdded":"2019-10-03T19:08:23.432003Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":321570,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":905153,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9398},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Quagmire-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E12.Quagmire-Bluray-1080p.mkv","size":319810410,"dateAdded":"2019-10-03T19:08:23.497413Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":309356,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":913545,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9399},{"seriesId":65,"seasonNumber":1,"relativePath":"Season 01\/S01E13.No Return-Bluray-1080p.mkv","path":"\/tv\/Elfen Lied\/Season 01\/S01E13.No Return-Bluray-1080p.mkv","size":302347539,"dateAdded":"2019-10-03T19:08:23.554537Z","releaseGroup":"bonkai77","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":308403,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":889918,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9400},{"seriesId":65,"seasonNumber":0,"relativePath":"Specials\/S00E01.In the Passing Rain-HDTV-1080p.mkv","path":"\/tv\/Elfen Lied\/Specials\/S00E01.In the Passing Rain-HDTV-1080p.mkv","size":318606611,"dateAdded":"2020-12-11T06:34:59.486743Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":318346,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":907063,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16835}],"queue":[]},"54":{"series":{"title":"Futurama","alternateTitles":[],"sortTitle":"futurama","status":"ended","ended":true,"overview":"A late 20th-century New York City pizza delivery boy, Philip J. Fry, after being unwittingly cryogenically frozen for one thousand years, finds employment at Planet Express, an interplanetary delivery company in the 31st century.","previousAiring":"2013-09-05T02:00:00Z","network":"Comedy Central","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/50\/banner.jpg?lastWrite=637103832712473520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/249-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/50\/poster.jpg?lastWrite=636852615441045000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73871-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/50\/fanart.jpg?lastWrite=637103832709953560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73871-21.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1999-05-19T02:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":8186389285,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2000-05-22T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":13014013176,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2001-05-14T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":10947583412,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2002-04-22T02:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":8667732734,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2003-08-11T02:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":12081016243,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2011-09-09T02:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":25840323832,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2013-09-05T02:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":17227331947,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Futurama","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":73871,"tvRageId":3628,"tvMazeId":538,"firstAired":"1999-03-28T00:00:00Z","seriesType":"standard","cleanTitle":"futurama","imdbId":"tt0149460","titleSlug":"futurama","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2017-12-09T12:35:29.8439093Z","ratings":{"votes":17994,"value":8.8},"statistics":{"seasonCount":7,"episodeFileCount":124,"episodeCount":124,"totalEpisodeCount":130,"sizeOnDisk":95964390629,"percentOfEpisodes":100.0},"id":50},"episodes":[{"seriesId":50,"episodeFileId":14640,"seasonNumber":1,"episodeNumber":1,"title":"Space Pilot 3000","airDate":"1999-03-28","airDateUtc":"1999-03-29T03:00:00Z","overview":"Fry, a 20th-century New-York pizza delivery boy receives a prank call and is frozen in a capsule and wakes up in year 2999. He meets an alien named Leela that wants to assign his permanent career... delivery boy. Fry refuses, so he escapes. He then meets Bender, a robot who likes to drink and has suicidal tendencies. Together, they start running away from Leela, arriving to the ruins of old New York. Leela finds them, but instead of inserting the permanent chip on Fry, she removes her own. All three go to Prof. Hubert Farnsworth's house, Fry's only living relative, becoming his new space crew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":2049},{"seriesId":50,"episodeFileId":14638,"seasonNumber":1,"episodeNumber":2,"title":"The Series Has Landed","airDate":"1999-04-04","airDateUtc":"1999-04-05T02:00:00Z","overview":"After joining Planet Express, Fry, Bender, Farnsworth's assistant Amy and Captain Leela must deliver their first package to the moon. Fry imagines himself walking on the moon, but he finds out that there is an amusement park on the moon - Luna Park. While lowering the package, Amy drops the ship keys inside it. Fry is the only one who wants to walk on the real moon, so he goes with Leela on an educational trip, yet he goes off the road and they are now marooned on the moon with almost no oxygen. Amy and Bender discover that the key that fell inside a crane game machine. Bender is thrown out of the park after putting his hand inside the machine. Fry and Leela arrive at a farm in the middle of the moon where they have to work for oxygen. After Bender sleeps with one of the robo-daughters of the farmer, the farmer starts chasing Fry, Leela and Bender. Amy appears just in time to save them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":2050},{"seriesId":50,"episodeFileId":14637,"seasonNumber":1,"episodeNumber":3,"title":"I, Roommate","airDate":"1999-04-06","airDateUtc":"1999-04-07T02:00:00Z","overview":"Everyone is sick of Fry living at Planet Express, so he is forced to move out to become Bender's roommate. The only catch is that Bender's apartment is too small for the two of them. After some searching they find a great apartment. A problem arises when Bender's antenna interferes with the TV reception. Bender decides to cut off his antenna so that he can live with Fry again. However he doesn't feel right without it, so he decides to leave and go back to his old apartment where he feels lonely. Leela convinces Fry to going back to the \"small\" apartment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":2051},{"seriesId":50,"episodeFileId":14639,"seasonNumber":1,"episodeNumber":4,"title":"Love's Labors Lost in Space","airDate":"1999-04-13","airDateUtc":"1999-04-14T02:00:00Z","overview":"On a mission intended to save endangered animals on a collapsing planet, Leela and the crew run into legendary starship captain Zapp Brannigan. A self-proclaimed ladies man, Zapp sees Leela as a potential new conquest. When the captain refuses to aid the animal rescue, Leela and her crew try to leave Zapp's starship. But Zapp throws Fry and Bender in jail, and summons Leela to his \"Lovenasium\". They ultimately escape and arrive on the doomed planet, where Leela finally finds love - with a cute, and very useful, creature named Nibbler.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":2052},{"seriesId":50,"episodeFileId":14647,"seasonNumber":1,"episodeNumber":5,"title":"Fear of a Bot Planet","airDate":"1999-04-20","airDateUtc":"1999-04-21T02:00:00Z","overview":"At Madison Cube Garden watching a blernsball game, Bender complains about the poor treatment of robots. They're only there to clean up, polish the balls or water the fields. They never get any respect. Later, Bender must deliver a package to a planet inhabited by murderous robots that kill humans on sight. He discovers a robotopia - a land where the robot is king! However, when Leela and Fry are captured, Bender must choose between protecting his celebrity status or saving his friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":2053},{"seriesId":50,"episodeFileId":14646,"seasonNumber":1,"episodeNumber":6,"title":"A Fishful of Dollars","airDate":"1999-04-27","airDateUtc":"1999-04-28T02:00:00Z","overview":"A thousand years is a long time to save up money, and Fry's savings account has been racking up interest. When Fry discovers just how much - over 4 billion dollars - Fry goes a little overboard. After completely redecorating the apartment, splurging on expensive spa days and treating his friends to innumerable luxuries, Fry discovers the ultimate expense. Anchovies. This rare delicacy as been extinct for years, and Fry must battle the evil conglomerate known as Mom, plus Pamela Anderson Lee's head in a jar, to get them!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":2054},{"seriesId":50,"episodeFileId":14656,"seasonNumber":1,"episodeNumber":7,"title":"My Three Suns","airDate":"1999-05-04","airDateUtc":"1999-05-05T02:00:00Z","overview":"The crew visits an arid planet in the Galaxy of Terror distinctive for it's three suns and liquid alien inhabitants. Fry, after delivering a package under the scorching heat, quenches his thirst with a bottle of cool blue liquid. Fry soon finds out he drank the planet's royal leader and is named the new emperor. Fry abuses his newfound power, even appointing Bender second in command, until the aliens retaliate and the real battle for power begins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":2055},{"seriesId":50,"episodeFileId":14727,"seasonNumber":1,"episodeNumber":8,"title":"A Big Piece of Garbage","airDate":"1999-05-11","airDateUtc":"1999-05-12T02:00:00Z","overview":"A big piece of garbage that was released a thousand years ago is now on the way to Earth to destroy it. After Fry, Leela and Bender fail on placing a bomb on it, the city has to build another big piece of garbage, yet that may be a problem since trash doesn't exist in year 3000.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":2056},{"seriesId":50,"episodeFileId":14671,"seasonNumber":1,"episodeNumber":9,"title":"Hell is Other Robots","airDate":"1999-05-18","airDateUtc":"1999-05-19T02:00:00Z","overview":"During a Beasty Boys concert, Bender runs into a high school buddy, Fender. He invites him to a party, which turns out to be robots getting high off of electricity, or \"jacking on\". After one try, Bender is hooked.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":2057},{"seriesId":50,"episodeFileId":1486,"seasonNumber":2,"episodeNumber":1,"title":"A Flight to Remember","airDate":"1999-09-26","airDateUtc":"1999-09-27T02:00:00Z","overview":"The Planet Express crew take a space cruise vacation. Leela tells Captain Zapp Brannigan that Fry is his boyfriend and Amy tells the same thing to her parents. Bender falls in love with a rich female robot. Problems start when the spaceship approaches a black hole.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":2058},{"seriesId":50,"episodeFileId":1493,"seasonNumber":2,"episodeNumber":2,"title":"Mars University","airDate":"1999-10-03","airDateUtc":"1999-10-04T02:00:00Z","overview":"Fry, Leela, Bender and Farnsworth have to go to Mars University where Fry has to share a room with a talking monkey, Farnsworth's last invention. The monkey becomes a real headache when he starts beating Fry in all areas. Meanwhile, Bender is hanging out with nerd robots.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":2059},{"seriesId":50,"episodeFileId":1498,"seasonNumber":2,"episodeNumber":3,"title":"When Aliens Attack","airDate":"1999-11-07","airDateUtc":"1999-11-08T03:00:00Z","overview":"The Omicronians invade Earth, demanding to see the lost final episode of the 1999 TV show Single Female Lawyer. The Planet Express crew must re-enact the episode to appease the invading aliens.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":2060},{"seriesId":50,"episodeFileId":1506,"seasonNumber":2,"episodeNumber":4,"title":"Fry & the Slurm Factory","airDate":"1999-11-14","airDateUtc":"1999-11-15T03:00:00Z","overview":"When Fry wins a free tour of the Slurm soda factory, he and his friends split off from the tour group and make a horrifying discovery concerning the \"secret ingredient\" that makes Slurm so addictive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":2061},{"seriesId":50,"episodeFileId":14642,"seasonNumber":2,"episodeNumber":5,"title":"I Second That Emotion","airDate":"1999-11-21","airDateUtc":"1999-11-22T03:00:00Z","overview":"Professor Farnsworth installs an empathy chip in Bender after the inconsiderate robot flushes Nibbler down the toilet. With his newfound emotions, a concerned Bender ventures into the mutant-infested sewers to rescue Leela's beloved pet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":2062},{"seriesId":50,"episodeFileId":14645,"seasonNumber":2,"episodeNumber":6,"title":"Brannigan, Begin Again","airDate":"1999-11-28","airDateUtc":"1999-11-29T03:00:00Z","overview":"Upon destroying the new DOOP headquarters, Zapp Brannigan and Kif find themselves court-martialed and dishonorably discharged. They take up jobs at Planet Express, where Kif learns what respect feels like and Zapp incites a mutiny against Leela.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":2063},{"seriesId":50,"episodeFileId":14643,"seasonNumber":2,"episodeNumber":7,"title":"A Head in the Polls","airDate":"1999-12-12","airDateUtc":"1999-12-13T03:00:00Z","overview":"When the price of titanium skyrockets, Bender pawns his titanium-rich body and lives the high life as just a head. But when the head-in-a-jar of Richard M. Nixon uses Bender's body to run for election for President of Earth, Bender vows to get his rightful property back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":2064},{"seriesId":50,"episodeFileId":14641,"seasonNumber":2,"episodeNumber":8,"title":"Xmas Story","airDate":"1999-12-19","airDateUtc":"1999-12-20T03:00:00Z","overview":"To apologize for an inconsiderate remark, Fry searches for the perfect Xmas gift for Leela, all the while trying to avoid the murderous SantaBot, whose standards for niceness are astronomically high.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":2065},{"seriesId":50,"episodeFileId":14673,"seasonNumber":2,"episodeNumber":9,"title":"Why Must I Be a Crustacean in Love","airDate":"2000-02-06","airDateUtc":"2000-02-07T03:00:00Z","overview":"When Dr. Zoidberg runs amok during the Decapodian mating season, Fry sets out to teach him how to woo a mate. Things backfire when Zoidberg's desired mate falls for Fry instead, and Zoidberg challenges Fry to a battle to the death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":2066},{"seriesId":50,"episodeFileId":14649,"seasonNumber":2,"episodeNumber":10,"title":"Put Your Head on My Shoulder","airDate":"2000-02-13","airDateUtc":"2000-02-14T03:00:00Z","overview":"Fry's brief relationship with Amy is forcibly prolonged when a near-fatal car crash leaves Fry's head grafted to Amy's left shoulder. Meanwhile, Bender cashes in on Valentine's Day by starting a dating service.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":2067},{"seriesId":50,"episodeFileId":14644,"seasonNumber":2,"episodeNumber":11,"title":"Lesser of Two Evils","airDate":"2000-02-20","airDateUtc":"2000-02-21T03:00:00Z","overview":"Fry suspects Bender's new buddy, a bending unit named Flexo who looks almost exactly like Bender, of being pure evil. When a valuable atom of Jumbonium goes missing, Fry suspects Flexo, but can't tell which robot is which.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":2068},{"seriesId":50,"episodeFileId":14648,"seasonNumber":2,"episodeNumber":12,"title":"Raging Bender","airDate":"2000-02-27","airDateUtc":"2000-02-28T03:00:00Z","overview":"Bender is the featured attraction in the Ultimate Robot Fighting League, but his glory is short-lived when he is instructed to intentionally lose his next match. Leela vows to lead Bender to victory, in an effort to show up her unsupportive martial arts teacher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":2069},{"seriesId":50,"episodeFileId":14670,"seasonNumber":2,"episodeNumber":13,"title":"A Bicyclops Built for Two","airDate":"2000-03-19","airDateUtc":"2000-03-20T03:00:00Z","overview":"Leela meets Alkazar, who claims to be the only other remaining cyclops in the universe. But when Alkazar invites Leela back to his home planet and treats her like a slave, Fry suspects that something is amiss.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":2070},{"seriesId":50,"episodeFileId":14735,"seasonNumber":2,"episodeNumber":14,"title":"How Hermes Requisitioned His Groove Back","airDate":"2000-04-02","airDateUtc":"2000-04-03T02:00:00Z","overview":"When Hermes takes a stress-relieving vacation, replacement bureaucrat Morgan Proctor becomes infatuated with Fry. Bender threatens to publicize their affair, but Morgan removes Bender's memory and hides it within the cavernous Central Bureaucracy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":2071},{"seriesId":50,"episodeFileId":14736,"seasonNumber":2,"episodeNumber":15,"title":"A Clone of My Own","airDate":"2000-04-09","airDateUtc":"2000-04-10T02:00:00Z","overview":"Professor Farnsworth unveils his clone, Cubert Farnsworth, whom he plans to leave everything to upon his retirement. But Cubert wants no part of Farnsworth's lifestyle, prompting the professor into a premature retirement on the Near-Death Star.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":2072},{"seriesId":50,"episodeFileId":14650,"seasonNumber":2,"episodeNumber":16,"title":"The Deep South","airDate":"2000-04-16","airDateUtc":"2000-04-17T02:00:00Z","overview":"A fishing trip over the ocean takes a turn for the worse when a colossal mouth bass pulls the Planet Express ship to the bottom of the sea. There, Fry falls in love with a mermaid named Umbriel, and the crew discovers the sunken city of Atlanta, Georgia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":2073},{"seriesId":50,"episodeFileId":14742,"seasonNumber":2,"episodeNumber":17,"title":"Bender Gets Made","airDate":"2000-04-30","airDateUtc":"2000-05-01T02:00:00Z","overview":"Bender takes a new job in the Robot Mafia, but his loyalty is tested when he goes along on the robotic gangster's efforts to rob the Planet Express ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":2074},{"seriesId":50,"episodeFileId":14732,"seasonNumber":2,"episodeNumber":18,"title":"The Problem With Popplers","airDate":"2000-05-07","airDateUtc":"2000-05-08T02:00:00Z","overview":"The crew discovers an irresistible source of food on a distant planet, and brings it back to Earth to be sold at the Fishy Joe's restaurant chain. But when it's discovered that the so-called \"Popplers\" are actually Omicronian babies, the Omicronians demand recompense.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":2075},{"seriesId":50,"episodeFileId":14733,"seasonNumber":2,"episodeNumber":19,"title":"Mother's Day","airDate":"2000-05-14","airDateUtc":"2000-05-15T02:00:00Z","overview":"Mom reprograms the world's robots to rebel against humanity. The only hope of salvation is Mom's old flame - Professor Farnsworth, who must rekindle his romance with Mom in order to save mankind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":2076},{"seriesId":50,"episodeFileId":14651,"seasonNumber":2,"episodeNumber":20,"title":"Anthology of Interest I","airDate":"2000-05-21","airDateUtc":"2000-05-22T02:00:00Z","overview":"The Professor's \"What-If\" machine simulates Bender, Leela and Fry's wishes. Bender discovers what it would be like if he were 500 feet tall, Leela discovers what it would be like if she were more impulsive, and Fry discovers what would happen if he never came to the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":2077},{"seriesId":50,"episodeFileId":14654,"seasonNumber":3,"episodeNumber":1,"title":"The Honking","airDate":"2000-11-05","airDateUtc":"2000-11-06T03:00:00Z","overview":"At his late Uncle Vladimir's estate, Bender is run over by a vicious Werecar, inheriting the curse. The only way to stop Bender's fatal transformations is to seek out and destroy the original Werecar - the deadly Project Satan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":2078},{"seriesId":50,"episodeFileId":14653,"seasonNumber":3,"episodeNumber":2,"title":"War Is the H-Word","airDate":"2000-11-26","airDateUtc":"2000-11-27T03:00:00Z","overview":"Bender and Fry volunteer for military duty to enjoy the benefits of the soldiers' discount. When war breaks out later that same day, Leela too decides to join the all-male ranks, under the guise of Lee Lemon, and creates quite a stir for her leader, Zapp Brannigan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":2079},{"seriesId":50,"episodeFileId":14652,"seasonNumber":3,"episodeNumber":3,"title":"The Cryonic Woman","airDate":"2000-12-03","airDateUtc":"2000-12-04T03:00:00Z","overview":"Fry, Leela, and Bender all lose their jobs at Planet Express, and they endeavor to return to their old jobs. Due to a mix-up of their career chips, Fry becomes a career counselor at Applied Cryogenics, where he meets up with a familiar defrostee - his girlfriend from the 20th century, Michelle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":2080},{"seriesId":50,"episodeFileId":14739,"seasonNumber":3,"episodeNumber":4,"title":"Parasites Lost","airDate":"2001-01-21","airDateUtc":"2001-01-22T03:00:00Z","overview":"When Fry becomes infested with parasitic worms that make him stronger and smarter, he finally finds the perfect way to profess his feelings to Leela. Meanwhile, the rest of the crew goes on a journey into Fry's body to eradicate the worms.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":2081},{"seriesId":50,"episodeFileId":14741,"seasonNumber":3,"episodeNumber":5,"title":"Amazon Women in the Mood","airDate":"2001-02-04","airDateUtc":"2001-02-05T03:00:00Z","overview":"A double-date for Kif, Amy, Zapp, and Leela ends in disaster when their orbiting restaurant crashes on planet Amazonia. The hulking female inhabitants of the planet take their male captives to the omniscient Femputer, who orders Fry, Zapp, and Kif to death by \"snu-snu\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":2082},{"seriesId":50,"episodeFileId":14672,"seasonNumber":3,"episodeNumber":6,"title":"Bendless Love","airDate":"2001-02-11","airDateUtc":"2001-02-12T03:00:00Z","overview":"Bender's urge to bend prompts Professor Farnsworth to send him on a rehabilitation visit to a steel factory, where he falls in love with a shapely fem-bot named Angleyne. But Bender's old rival Flexo and the intrusion of the Robot Mafia threaten to throw a wrench into the proceedings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":2083},{"seriesId":50,"episodeFileId":14744,"seasonNumber":3,"episodeNumber":7,"title":"The Day the Earth Stood Stupid","airDate":"2001-02-18","airDateUtc":"2001-02-19T03:00:00Z","overview":"Earth is invaded by super-intelligent flying brains, who sap the Earth's populace of their intelligence. Leela is taken to Nibbler's home planet Eternia, where the Nibblonians explain that only one human is immune to the brains' powers - Fry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":2084},{"seriesId":50,"episodeFileId":14704,"seasonNumber":3,"episodeNumber":8,"title":"That's Lobstertainment!","airDate":"2001-02-25","airDateUtc":"2001-02-26T03:00:00Z","overview":"Dr. Zoidberg reunites with his uncle, silent hologram star Harold Zoid, and the two of them set out to make a movie together. They cast the temperamental Calculon in the lead role, who demands an Oscar for his performance, but the movie doesn't go over well with audiences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":2085},{"seriesId":50,"episodeFileId":14675,"seasonNumber":3,"episodeNumber":9,"title":"The Birdbot of Ice Catraz","airDate":"2001-03-04","airDateUtc":"2001-03-05T03:00:00Z","overview":"A sober Bender crashes a dark matter tanker on Pluto, threatening the penguin reserve nearby. Leela helps out in the clean-up, but when the penguins begin mating out of control, drastic action must be taken to thin the herd.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":2086},{"seriesId":50,"episodeFileId":14724,"seasonNumber":3,"episodeNumber":10,"title":"The Luck of the Fryrish","airDate":"2001-03-11","airDateUtc":"2001-03-12T03:00:00Z","overview":"After a string of bad luck, Fry ventures into the decaying ruins of Old New York to regain his lucky seven-leaf clover from his childhood, only to find that his brother Yancy Fry had stolen not only the clover, but Fry's identity as well. Fry sets out to exhume his brother's body, but discovers the startling truth about Yancy instead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":2087},{"seriesId":50,"episodeFileId":14725,"seasonNumber":3,"episodeNumber":11,"title":"The Cyber House Rules","airDate":"2001-04-01","airDateUtc":"2001-04-02T02:00:00Z","overview":"Leela meets up with her former orphanarium playmate Adlai Atkins, now a plastic surgeon, who offers to grant Leela surgery that will give her two eyes. Meanwhile, Bender adopts twelve orphans in order to collect $1200 in government stipends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":2088},{"seriesId":50,"episodeFileId":14809,"seasonNumber":3,"episodeNumber":12,"title":"Insane in the Mainframe","airDate":"2001-04-08","airDateUtc":"2001-04-09T02:00:00Z","overview":"Accused of robbing a bank, Fry and Bender plead insanity and are both sent to a robot insane asylum. While Bender and his buddy Roberto plan an escape, Fry is brainwashed into thinking that he is a robot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":2089},{"seriesId":50,"episodeFileId":14674,"seasonNumber":3,"episodeNumber":13,"title":"Bendin' in the Wind","airDate":"2001-04-22","airDateUtc":"2001-04-23T02:00:00Z","overview":"When Bender is paralyzed in a tragic can opener accident, he discovers his musical washboard skills and goes on tour as a member of Beck's folk-rock band, acting as a voice for broken robots everywhere. Fry, Leela, Amy, and Zoidberg tag along in Fry's antique 1960s VW Van.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":2090},{"seriesId":50,"episodeFileId":14746,"seasonNumber":3,"episodeNumber":14,"title":"Time Keeps on Slipping","airDate":"2001-05-06","airDateUtc":"2001-05-07T02:00:00Z","overview":"While creating a team of mutants to play the Harlem Globetrotters, the Professor accidentally causes a disruption in time that threatens the existence of the universe. Meanwhile, Fry tries to win an unreceptive Leela's heart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":2091},{"seriesId":50,"episodeFileId":14657,"seasonNumber":3,"episodeNumber":15,"title":"I Dated a Robot","airDate":"2001-05-13","airDateUtc":"2001-05-14T02:00:00Z","overview":"Fry discovers the ability to download any celebrity onto a blank robot, and chooses to download Lucy Liu, with whom he falls madly in love. Repulsed by this disgusting display of human\/robot love, Leela, Bender, and Zoidberg set out to shut down Nappster.com and put an end to illegal celebrity downloads forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":2092},{"seriesId":50,"episodeFileId":14734,"seasonNumber":4,"episodeNumber":1,"title":"Roswell That Ends Well","airDate":"2001-12-09","airDateUtc":"2001-12-10T03:00:00Z","overview":"The combined explosions of a supernova and Fry putting metal in the microwave hurtle the Planet Express crew back in time to 1947. They land at Roswell, New Mexico, where a shattered Bender is mistaken for UFO debris, Zoidberg is taken in for an alien autopsy, and Fry accidentally kills his grandfather, Enis, in a nuclear explosion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":2093},{"seriesId":50,"episodeFileId":14740,"seasonNumber":4,"episodeNumber":2,"title":"A Tale of Two Santas","airDate":"2001-12-23","airDateUtc":"2001-12-24T03:00:00Z","overview":"A Planet Express mission to Robot Santa's colony on Neptune leaves the murderous robot trapped in the frozen sea, and Bender takes over as Santa, vowing to bring peace and goodwill to Xmas again. But when Bender is mistaken for the real Robot Santa, he is arrested and sentenced to death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":2094},{"seriesId":50,"episodeFileId":14713,"seasonNumber":4,"episodeNumber":3,"title":"Anthology of Interest II","airDate":"2002-01-06","airDateUtc":"2002-01-07T03:00:00Z","overview":"When the Professor fine tunes his \"What-If\" machine, Bender discovers what it would be like if he were human, Fry discovers what it would be like if life were more like a video game, and Leela discovers what it would be like if she found her true home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":2095},{"seriesId":50,"episodeFileId":14655,"seasonNumber":4,"episodeNumber":4,"title":"Love and Rocket","airDate":"2002-02-10","airDateUtc":"2002-02-11T03:00:00Z","overview":"Bender falls deeply in love with the Planet Express ship autopilot's female voice setting. Meanwhile, Fry searches for the perfect candy heart to properly convey his feelings for Leela.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":2096},{"seriesId":50,"episodeFileId":14723,"seasonNumber":4,"episodeNumber":5,"title":"Leela's Homeworld","airDate":"2002-02-17","airDateUtc":"2002-02-18T03:00:00Z","overview":"When Bender disposes nuclear waste in the sewers, the angry mutants drag him, Fry, and Leela down to the depths to be mutated. As they attempt to escape, Leela makes an incredible discovery about her true heritage, finally meeting her parents for the first time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":2097},{"seriesId":50,"episodeFileId":5346,"seasonNumber":4,"episodeNumber":6,"title":"Where the Buggalo Roam","airDate":"2002-03-03","airDateUtc":"2002-03-04T03:00:00Z","overview":"When Amy's parents' ranch is hit by a dust storm that blows away their herd of buggalo, Kif sets out to prove his masculinity by rounding up the herd, only to become entangled with the native Martians.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":2098},{"seriesId":50,"episodeFileId":14747,"seasonNumber":4,"episodeNumber":7,"title":"A Pharaoh to Remember","airDate":"2002-03-10","airDateUtc":"2002-03-11T03:00:00Z","overview":"Bender fears that nobody will remember him after he dies, and sees his chance for immortality when the crew is enslaved on the planet Osiris 4. Posing as the planet's new pharaoh, Bender orders a humongous statue built in his honor, and quickly goes mad with power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":2099},{"seriesId":50,"episodeFileId":14774,"seasonNumber":4,"episodeNumber":8,"title":"Godfellas","airDate":"2002-03-17","airDateUtc":"2002-03-18T03:00:00Z","overview":"Bender is accidentally shot out of the ship's torpedo tube and becomes lost in space. Floating through the ethereal darkness, Bender becomes inhabited with tiny alien life forms, but has trouble playing God to their unyielding prayers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":2100},{"seriesId":50,"episodeFileId":5349,"seasonNumber":4,"episodeNumber":9,"title":"Future Stock","airDate":"2002-03-31","airDateUtc":"2002-04-01T03:00:00Z","overview":"With Planet Express in financial trouble, Fry nominates a flashy businessman from the 1980s to replace Professor Farnsworth as CEO of the company. That Guy goes on to sell Planet Express to Mom's Friendly Robot Corporation, putting everyone out of a job.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":2101},{"seriesId":50,"episodeFileId":14772,"seasonNumber":4,"episodeNumber":10,"title":"A Leela of Her Own","airDate":"2002-04-07","airDateUtc":"2002-04-08T02:00:00Z","overview":"Leela endeavors to become the first female blernsball player, but her lack of depth perception hinders her skills. Nevertheless, she becomes the pitcher for the New New York Mets, purely for her novelty value.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":2102},{"seriesId":50,"episodeFileId":14773,"seasonNumber":4,"episodeNumber":11,"title":"The 30% Iron Chef","airDate":"2002-04-14","airDateUtc":"2002-04-15T02:00:00Z","overview":"Bender receives culinary lessons from the great chef Helmut Spargle, and puts his skills to the test on national television when he competes against Elzar on \"Iron Cook\". Meanwhile, Dr. Zoidberg accidentally destroys Professor Farnsworth's ship-in-a-bottle and pins the deed on Fry, only to be struck with remorse afterwards.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":2103},{"seriesId":50,"episodeFileId":14771,"seasonNumber":4,"episodeNumber":12,"title":"Where No Fan Has Gone Before","airDate":"2002-04-21","airDateUtc":"2002-04-22T02:00:00Z","overview":"Fry leads the crew on a quest across the galaxy to regain the forbidden 79 episodes of \"Star Trek: The Original Series\", where they encounter the original cast of the show - as well as their captor, an obsessive energy being named Melllvar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":2104},{"seriesId":50,"episodeFileId":14726,"seasonNumber":5,"episodeNumber":1,"title":"Crimes of the Hot","airDate":"2002-11-10","airDateUtc":"2002-11-11T03:00:00Z","overview":"The rapid increase in global warming is traced to a ventilation flaw that Professor Farnsworth failed to correct in his first robot prototype. As a result, all robots are ordered to be destroyed, but Bender refuses to go without a fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":2105},{"seriesId":50,"episodeFileId":5385,"seasonNumber":5,"episodeNumber":2,"title":"Jurassic Bark","airDate":"2002-11-17","airDateUtc":"2002-11-18T03:00:00Z","overview":"Fry discovers his dog Seymour is being exhibited in a museum as a fossil, and takes it to Professor Farnsworth's lab to be revived. However, Bender is displeased with the lack of attention he has been receiving and becomes increasingly jealous of Seymour's fossil.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":2106},{"seriesId":50,"episodeFileId":14737,"seasonNumber":5,"episodeNumber":3,"title":"The Route of All Evil","airDate":"2002-12-08","airDateUtc":"2002-12-09T03:00:00Z","overview":"Farnsworth's clone Cubert teams up with Hermes' son Dwight to launch a newspaper delivery business. Farnsworth and Hermes scoff at the kids' efforts - until the delivery boys accumulate enough capital to buy out Planet Express. Meanwhile, Fry and Leela use Bender to brew their own homemade beer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":2107},{"seriesId":50,"episodeFileId":14729,"seasonNumber":5,"episodeNumber":4,"title":"A Taste of Freedom","airDate":"2002-12-22","airDateUtc":"2002-12-23T03:00:00Z","overview":"When Zoidberg publicly devours an Earth flag, he is sentenced to death for his anarchic behavior. Before the sentence can be carried out, the Decapodians come to Zoidberg's aid by invading Earth, teaching the populace the true meaning of freedom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":2108},{"seriesId":50,"episodeFileId":14728,"seasonNumber":5,"episodeNumber":5,"title":"Kif Gets Knocked Up a Notch","airDate":"2003-01-12","airDateUtc":"2003-01-13T03:00:00Z","overview":"Amy's romance with Kif takes a twist when he gets pregnant. As Amy questions her commitment Kif, he must return to his ancient, mysterious homeworld to give birth in the same muddy swamp where he was born.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":2109},{"seriesId":50,"episodeFileId":14730,"seasonNumber":5,"episodeNumber":6,"title":"Less Than Hero","airDate":"2003-03-02","airDateUtc":"2003-03-03T03:00:00Z","overview":"Dr. Zoidberg's mysterious miracle cream gives Fry and Leela superpowers. Teaming up with Bender, they form the New Justice Team, under the respective alter egos of Captain Yesterday, Clobberella, and Super King. But Leela's new duties as a superheroine put a strain on her relationship with her parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":2110},{"seriesId":50,"episodeFileId":14731,"seasonNumber":5,"episodeNumber":7,"title":"Teenage Mutant Leela's Hurdles","airDate":"2003-03-30","airDateUtc":"2003-03-31T03:00:00Z","overview":"The crew's attempts to de-age Professor Farnsworth result in everyone returning to their more youthful stages. While Farnsworth seeks out a way to re-age the crew, the newly-teenaged Leela takes the opportunity to experience the parental childhood she never had.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":2111},{"seriesId":50,"episodeFileId":14712,"seasonNumber":5,"episodeNumber":8,"title":"The Why of Fry","airDate":"2003-04-06","airDateUtc":"2003-04-07T02:00:00Z","overview":"Still unable to impress Leela, Fry sadly suspects that he has no importance in life - until Nibbler takes him on a mission to prevent the brains from destroying the universe. In the process, Fry learns what really happened when he was cryogenically frozen on December 31, 1999.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":2112},{"seriesId":50,"episodeFileId":14709,"seasonNumber":5,"episodeNumber":9,"title":"The Sting","airDate":"2003-06-01","airDateUtc":"2003-06-02T02:00:00Z","overview":"A mission to collect honey from deadly space bees apparently leads to Fry's sting-induced death. Leela is wracked with remorse, until Fry visits her in her dreams. As Leela's hallucinations intensify, she begins to suspect that she might be going crazy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":2113},{"seriesId":50,"episodeFileId":14738,"seasonNumber":5,"episodeNumber":10,"title":"The Farnsworth Parabox","airDate":"2003-06-08","airDateUtc":"2003-06-09T02:00:00Z","overview":"Professor Farnsworth forbids the crew to look inside a mysterious box. Leela can't resist taking a peek, discovering the box to be a gateway to a parallel universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":2114},{"seriesId":50,"episodeFileId":14708,"seasonNumber":5,"episodeNumber":11,"title":"Three Hundred Big Boys","airDate":"2003-06-15","airDateUtc":"2003-06-16T02:00:00Z","overview":"A $300 refund for all taxpayers results in a series of interconnected stories, following the Planet Express crew's endeavors to spend their money.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":2115},{"seriesId":50,"episodeFileId":14711,"seasonNumber":5,"episodeNumber":12,"title":"Spanish Fry","airDate":"2003-07-13","airDateUtc":"2003-07-14T02:00:00Z","overview":"Fry is abducted by aliens, who harvest his nose as an aphrodisiac. The crew traces Fry's missing nose to Lrrr, leader of the Omicronians, who decides that Fry's \"lower horn\" would be a much better aphrodisiac to jump start his stagnant marriage with Ndnd.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":2116},{"seriesId":50,"episodeFileId":14707,"seasonNumber":5,"episodeNumber":13,"title":"Bend Her","airDate":"2003-07-20","airDateUtc":"2003-07-21T02:00:00Z","overview":"In order to compete in the Fembot's division of the 3004 Olympics, Bender is surgically rebuilt to become a woman. Her trashy behavior catches the eye of Calculon, with whom she develops a strong and confusing celebrity relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":2117},{"seriesId":50,"episodeFileId":14705,"seasonNumber":5,"episodeNumber":14,"title":"Obsoletely Fabulous","airDate":"2003-07-27","airDateUtc":"2003-07-28T02:00:00Z","overview":"Bender is incompatible with Professor Farnsworth's new Robot 1-X, but rather than get an upgrade, Bender escapes to a desert island to start his life anew. There, he meets several other outdated robots and receives a downgrade, then leads his new comrades in a rebellion against technology.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":2118},{"seriesId":50,"episodeFileId":14710,"seasonNumber":5,"episodeNumber":15,"title":"Bender Should Not Be Allowed on TV","airDate":"2003-08-03","airDateUtc":"2003-08-04T02:00:00Z","overview":"\"All My Circuits\" holds an audition to replace the part of Calculon's son, and Bender lands the part. Soon, Bender's uninhibited behavior proves to be a bad influence on children, and an outraged Bender leads a protest group to get himself banned from the airwaves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":2119},{"seriesId":50,"episodeFileId":14706,"seasonNumber":5,"episodeNumber":16,"title":"The Devil's Hands Are Idle Playthings","airDate":"2003-08-10","airDateUtc":"2003-08-11T02:00:00Z","overview":"Desperate to learn how to play the holophonor in order to impress Leela, Fry swaps hands with the Robot Devil. He goes on to become a skilled holophonor player, winning Leela's heart and penning an opera about her life story, but the Robot Devil still has a trick or two up his sleeve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":2120},{"seriesId":50,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Everybody Loves Hypnotoad","airDate":"2007-11-27","airDateUtc":"2007-11-28T03:00:00Z","overview":"A full-length episode of the future's most popular TV series, starring (and created, written, produced, directed by and all glory to) the Hypnotoad. Included on the DVD release of Bender's Big Score.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2043},{"seriesId":50,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Bender's Big Score","airDate":"2008-03-23","airDateUtc":"2008-03-24T02:00:00Z","overview":"Planet Express sees a hostile takeover and Bender falls into the hands of criminals where he is used to fulfill their schemes.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":2044},{"seriesId":50,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Beast With A Billion Backs","airDate":"2008-06-24","airDateUtc":"2008-06-25T02:00:00Z","overview":"In Futurama's latest and most tentacle-packed epic, space itself rips open, revealing a gateway to another universe. But what lies beyond? Horror? Love? Or maybe both, if it happens to contain a repulsive, planet-sized monster with romantic intentions! Nothing less than the fate of human and robot-kind is at stake as the Futurama crew takes on The Beast With A Billion Backs.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":2045},{"seriesId":50,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Lost Adventure","airDate":"2008-06-24","airDateUtc":"2008-06-25T02:23:00Z","overview":"When Professor Farnsworth sells Planet Express to the evil Mom, it means she owns over 50% of the Earth, and becomes its supreme ruler. It's up to Fry, Leela and Bender to save the Earth - and the universe - from Mom, as their mission takes them from New New York to alien asteroids, the surface of the sun, the farthest corner of the universe, and even though time itself!","hasFile":false,"monitored":false,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":2046},{"seriesId":50,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Bender's Game","airDate":"2008-11-04","airDateUtc":"2008-11-05T03:00:00Z","overview":"With fuel prices skyrocketing, the Planet Express crew sets off on a dangerous mission: to infiltrate the world's only dark-matter mine, source of all spaceship fuel. But deep beneath the surface lies a far stranger place...a medieval land of dragons and sorcery and intoxicated knights who look suspiciously like Bender","hasFile":false,"monitored":false,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":2047},{"seriesId":50,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Into the Wild Green Yonder","airDate":"2009-02-12","airDateUtc":"2009-02-13T03:00:00Z","overview":"Mankind stands on the brink of a wondrous new Green Age. But ancient forces of darkness, three years older than time itself, have returned to wreak destruction. Even more shocking: Bender\u2019s in love with a married fembot, and Leela\u2019s on the run from the law \u2013 Zapp Brannigan\u2019s law! Fry is the last hope of the universe\u2026 so if you\u2019re in the universe, you might want to think about going somewhere else. Could this be the end of the Planet Express crew forever? Say it ain\u2019t so, meatbag! Off we go, Into the Wild Green Yonder!","hasFile":false,"monitored":false,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":2048},{"seriesId":50,"episodeFileId":1480,"seasonNumber":6,"episodeNumber":1,"title":"Rebirth","airDate":"2010-06-24","airDateUtc":"2010-06-25T02:00:00Z","overview":"After a devastating spaceship crash, Professor Farnsworth attempts to resuscitate the crew with his birth machine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":2121},{"seriesId":50,"episodeFileId":1487,"seasonNumber":6,"episodeNumber":2,"title":"In-A-Gadda-Da-Leela","airDate":"2010-06-24","airDateUtc":"2010-06-25T02:23:00Z","overview":"Leela and Zapp Brannigan find themselves stranded on an Eden-like planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":2122},{"seriesId":50,"episodeFileId":1494,"seasonNumber":6,"episodeNumber":3,"title":"Attack of the Killer App!","airDate":"2010-07-01","airDateUtc":"2010-07-02T02:00:00Z","overview":"The latest trend in social networking and having no life takes over Earth!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":2123},{"seriesId":50,"episodeFileId":1501,"seasonNumber":6,"episodeNumber":4,"title":"Proposition Infinity","airDate":"2010-07-08","airDateUtc":"2010-07-09T02:00:00Z","overview":"Bender leads a campaign to make robosexual marriage between humans and robots legal on Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":2124},{"seriesId":50,"episodeFileId":1508,"seasonNumber":6,"episodeNumber":5,"title":"The Duh-Vinci Code","airDate":"2010-07-15","airDateUtc":"2010-07-16T02:00:00Z","overview":"The Planet Express crew races to future Rome to unearth the shocking secret of Leonardo da Vinci.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":2125},{"seriesId":50,"episodeFileId":1515,"seasonNumber":6,"episodeNumber":6,"title":"Lethal Inspection","airDate":"2010-07-22","airDateUtc":"2010-07-23T02:00:00Z","overview":"Bender learns that he suffers from a mortal manufacturing defect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":2126},{"seriesId":50,"episodeFileId":1522,"seasonNumber":6,"episodeNumber":7,"title":"The Late Philip J. Fry","airDate":"2010-07-29","airDateUtc":"2010-07-30T02:00:00Z","overview":"The Professor invents a one-way time machine. He, Fry and Bender go forward 1,000 years accidentally, and keep traveling forward in time until a backwards time machine has been invented.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":2127},{"seriesId":50,"episodeFileId":1529,"seasonNumber":6,"episodeNumber":8,"title":"That Darn Katz!","airDate":"2010-08-05","airDateUtc":"2010-08-06T02:00:00Z","overview":"Earth is invaded by a race of intelligent cats.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":2128},{"seriesId":50,"episodeFileId":1536,"seasonNumber":6,"episodeNumber":9,"title":"A Clockwork Origin","airDate":"2010-08-12","airDateUtc":"2010-08-13T02:00:00Z","overview":"The theory of evolution is put to the test on a planet inhabited by robots.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":2129},{"seriesId":50,"episodeFileId":1543,"seasonNumber":6,"episodeNumber":10,"title":"The Prisoner of Benda","airDate":"2010-08-19","airDateUtc":"2010-08-20T02:00:00Z","overview":"A revolutionary invention allows the crew members to exchange minds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":2130},{"seriesId":50,"episodeFileId":1549,"seasonNumber":6,"episodeNumber":11,"title":"Lrrreconcilable Ndndifferences","airDate":"2010-08-26","airDateUtc":"2010-08-27T02:00:00Z","overview":"After a bungled Earth invasion, alien leader Lrrr faces a midlife crisis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":2131},{"seriesId":50,"episodeFileId":1555,"seasonNumber":6,"episodeNumber":12,"title":"The Mutants Are Revolting","airDate":"2010-09-02","airDateUtc":"2010-09-03T02:00:00Z","overview":"Leela leads an army of underground mutants in a rebellion against the surface people.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":2132},{"seriesId":50,"episodeFileId":1561,"seasonNumber":6,"episodeNumber":13,"title":"The Futurama Holiday Spectacular","airDate":"2010-11-21","airDateUtc":"2010-11-22T03:00:00Z","overview":"An episode describing the three winter holidays of the future: X-Mas, Robonica, and Kwanzaa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":2133},{"seriesId":50,"episodeFileId":1567,"seasonNumber":6,"episodeNumber":14,"title":"Neutopia","airDate":"2011-06-23","airDateUtc":"2011-06-24T02:00:00Z","overview":"An alien who does not understand the concept of gender conducts experiments on the crew, changing all their genders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":2134},{"seriesId":50,"episodeFileId":1571,"seasonNumber":6,"episodeNumber":15,"title":"Benderama","airDate":"2011-06-23","airDateUtc":"2011-06-24T02:23:00Z","overview":"Bender creates duplicates of himself, who in turn create duplicates of themselves, until they threaten to consume all of the matter on Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":2135},{"seriesId":50,"episodeFileId":1576,"seasonNumber":6,"episodeNumber":16,"title":"Ghost in the Machines","airDate":"2011-06-30","airDateUtc":"2011-07-01T02:00:00Z","overview":"Fed up with the crew, Bender decides to kill himself using a suicide booth. After he dies, his software takes on a ghostly existence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":2136},{"seriesId":50,"episodeFileId":1580,"seasonNumber":6,"episodeNumber":17,"title":"Law and Oracle","airDate":"2011-07-07","airDateUtc":"2011-07-08T02:00:00Z","overview":"Fed up with his go-nowhere job, Fry joins the police force.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":2137},{"seriesId":50,"episodeFileId":1584,"seasonNumber":6,"episodeNumber":18,"title":"The Silence of the Clamps","airDate":"2011-07-14","airDateUtc":"2011-07-15T02:00:00Z","overview":"Bender enters a witness-protection program after testifying against the Robot Mafia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":2138},{"seriesId":50,"episodeFileId":1587,"seasonNumber":6,"episodeNumber":19,"title":"Yo Leela Leela","airDate":"2011-07-21","airDateUtc":"2011-07-22T02:00:00Z","overview":"Leela becomes a Hollywood Big Shot after creating a hit children's television series.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":2139},{"seriesId":50,"episodeFileId":1590,"seasonNumber":6,"episodeNumber":20,"title":"All the Presidents' Heads","airDate":"2011-07-28","airDateUtc":"2011-07-29T02:00:00Z","overview":"Professor Farnsworth licks George Washington's head and it sends him on a trip to the Revolutionary War.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":2140},{"seriesId":50,"episodeFileId":1592,"seasonNumber":6,"episodeNumber":21,"title":"Mobius Dick","airDate":"2011-08-04","airDateUtc":"2011-08-05T02:00:00Z","overview":"Professor Farnsworth sends the Planet Express to find a statue of his crew for the 50th memorial service honoring their disappearance. They end up going through the Bermuda Tetrahedron and find a ton of lost spaceships - including the original Planet Express! They look around the ship and a 4D whale comes by and eats the old ship and the statue. Leela makes it her mission to kill the whale and get revenge, which makes them late for the memorial. Eventually, the whale eats the Planet Express ship and the whole team. The only person who escapes is Zoidberg, who returns to Earth in an escape pod. While inside the whale, Leela meets the original captain of the ship, Lando Tucker, who is now attached to the whale's stomach. Leela ends up being able to control the whale and steers him back to Earth to attend the memorial. Leela coaxes the whale to spit everything out, including the statue and the original crew and kills the whale.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":2141},{"seriesId":50,"episodeFileId":1595,"seasonNumber":6,"episodeNumber":22,"title":"Fry Am the Egg Man","airDate":"2011-08-11","airDateUtc":"2011-08-12T02:00:00Z","overview":"Fry nurtures an alien egg out of which hatches a monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":2142},{"seriesId":50,"episodeFileId":1596,"seasonNumber":6,"episodeNumber":23,"title":"The Tip of the Zoidberg","airDate":"2011-08-18","airDateUtc":"2011-08-19T02:00:00Z","overview":"The crew learns shocking secrets of how Professor Farnsworth and Dr. Zoidberg met.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":2143},{"seriesId":50,"episodeFileId":1598,"seasonNumber":6,"episodeNumber":24,"title":"Cold Warriors","airDate":"2011-08-25","airDateUtc":"2011-08-26T02:00:00Z","overview":"Fry inadvertently reintroduces the common cold to the 31st century.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":2144},{"seriesId":50,"episodeFileId":1600,"seasonNumber":6,"episodeNumber":25,"title":"Overclockwise","airDate":"2011-09-01","airDateUtc":"2011-09-02T02:00:00Z","overview":"Bender is overclocked, gradually becoming more powerful in computing ability, until eventually becoming omniscient and able to foresee events in the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":2145},{"seriesId":50,"episodeFileId":1603,"seasonNumber":6,"episodeNumber":26,"title":"Reincarnation","airDate":"2011-09-08","airDateUtc":"2011-09-09T02:00:00Z","overview":"An episode featuring 3 different segments, in the same vein as episodes such as \"Anthology of Interest I\" and \"The Futurama Holiday Spectacular\". Each segment showcases a different style of animation. The first segment will be animated in \"a black-and-white Fleischer style\", the second segment will be in the style of a low-resolution video game, and the third drawn in the style of anime. The episode is not be canon, and is the final episode of the sixth season of Futurama.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":2146},{"seriesId":50,"episodeFileId":1481,"seasonNumber":7,"episodeNumber":1,"title":"The Bots and the Bees","airDate":"2012-06-20","airDateUtc":"2012-06-21T02:00:00Z","overview":"Bender impregnates Bev, the new Planet Express soda machine, who gives birth to a son named Ben. As his mother lacks arms, Ben does not inherit his father's bending ability.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":2147},{"seriesId":50,"episodeFileId":1488,"seasonNumber":7,"episodeNumber":2,"title":"A Farewell to Arms","airDate":"2012-06-20","airDateUtc":"2012-06-21T02:23:00Z","overview":"An ancient prophecy predicts the world will end in 3012.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":2148},{"seriesId":50,"episodeFileId":1495,"seasonNumber":7,"episodeNumber":3,"title":"Decision 3012","airDate":"2012-06-27","airDateUtc":"2012-06-28T02:00:00Z","overview":"Leela becomes a campaign manager for a presidential candidate whose birth certificate is missing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":2149},{"seriesId":50,"episodeFileId":1502,"seasonNumber":7,"episodeNumber":4,"title":"The Thief of Baghead","airDate":"2012-07-04","airDateUtc":"2012-07-05T02:00:00Z","overview":"Bender joins the paparazzi and tries to take a photo of an actor whose face has never been seen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":2150},{"seriesId":50,"episodeFileId":1509,"seasonNumber":7,"episodeNumber":5,"title":"Zapp Dingbat","airDate":"2012-07-11","airDateUtc":"2012-07-12T02:00:00Z","overview":"Zapp Brannigan loses interest in Leela and instead turns his attentions towards her mother, Turanga Munda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":2151},{"seriesId":50,"episodeFileId":1516,"seasonNumber":7,"episodeNumber":6,"title":"The Butterjunk Effect","airDate":"2012-07-18","airDateUtc":"2012-07-19T02:00:00Z","overview":"Leela and Amy become addicted to the performance enhancing drug known as \"Nectar\" to increase their chances of winning at the epic sport of the Butterfly Derby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":2152},{"seriesId":50,"episodeFileId":1525,"seasonNumber":7,"episodeNumber":7,"title":"The Six Million Dollar Mon","airDate":"2012-07-25","airDateUtc":"2012-07-26T02:00:00Z","overview":"Hermes replaces parts of his body with robotic counterparts so as to increase his productivity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":2153},{"seriesId":50,"episodeFileId":1530,"seasonNumber":7,"episodeNumber":8,"title":"Fun on a Bun","airDate":"2012-08-01","airDateUtc":"2012-08-02T02:00:00Z","overview":"Fry is the victim of a sausage-making accident during the crew's visit to Oktoberfest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":2154},{"seriesId":50,"episodeFileId":1537,"seasonNumber":7,"episodeNumber":9,"title":"Free Will Hunting","airDate":"2012-08-08","airDateUtc":"2012-08-09T02:00:00Z","overview":"Bender searches for the meaning of life after learning that robots lack free will.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":2155},{"seriesId":50,"episodeFileId":1544,"seasonNumber":7,"episodeNumber":10,"title":"Near-Death Wish","airDate":"2012-08-15","airDateUtc":"2012-08-16T02:00:00Z","overview":"The crew finds out Professor Farnsworth's parents are still alive on the Near Death Star.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":2156},{"seriesId":50,"episodeFileId":1550,"seasonNumber":7,"episodeNumber":11,"title":"Viva Mars Vegas","airDate":"2012-08-22","airDateUtc":"2012-08-23T02:00:00Z","overview":"The crew stages a casino heist to recover stolen property from the Robot Mafia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":2157},{"seriesId":50,"episodeFileId":1556,"seasonNumber":7,"episodeNumber":12,"title":"31st Century Fox","airDate":"2012-08-29","airDateUtc":"2012-08-30T02:00:00Z","overview":"Patrick Stewart is the leader of a robot fox hunt, inspiring Bender to fight for robot fox rights.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":2158},{"seriesId":50,"episodeFileId":1562,"seasonNumber":7,"episodeNumber":13,"title":"Naturama","airDate":"2012-08-29","airDateUtc":"2012-08-30T02:23:00Z","overview":"A triptych episode parodying nature documentaries. The crew are reincarnated as animals, trying to carve out an existence in the wild.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":2159},{"seriesId":50,"episodeFileId":1566,"seasonNumber":7,"episodeNumber":14,"title":"2-D Blacktop","airDate":"2013-06-19","airDateUtc":"2013-06-20T02:00:00Z","overview":"After being trapped in a strange 2-D universe, the planet express crew have to face unexpected changes to daily life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":2160},{"seriesId":50,"episodeFileId":1572,"seasonNumber":7,"episodeNumber":15,"title":"Fry and Leela's Big Fling","airDate":"2013-06-19","airDateUtc":"2013-06-20T02:23:00Z","overview":"Fry and Leela's romantic getaway goes awry when their vacation spot turns out to be an alien zoo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":2161},{"seriesId":50,"episodeFileId":1577,"seasonNumber":7,"episodeNumber":16,"title":"T.: The Terrestrial","airDate":"2013-06-26","airDateUtc":"2013-06-27T02:00:00Z","overview":"After being marooned on an distant planet, Fry is befriended by a young monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":2162},{"seriesId":50,"episodeFileId":1581,"seasonNumber":7,"episodeNumber":17,"title":"Forty Percent Leadbelly","airDate":"2013-07-03","airDateUtc":"2013-07-04T02:00:00Z","overview":"Bender meets his hero, a famous folksinger who has been in jail 30 times, and wants to duplicate his success. This means duplicating his guitar too, which he tries to steal from a maximum-security prison, but fails, so instead resorts to 3D-printing technology to duplicate the guitar \u2014 again resulting in horrible consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":2163},{"seriesId":50,"episodeFileId":1583,"seasonNumber":7,"episodeNumber":18,"title":"The Inhuman Torch","airDate":"2013-07-10","airDateUtc":"2013-07-11T02:00:00Z","overview":"Bender becomes a famous firefighter, but the crew suspects him of arson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":2164},{"seriesId":50,"episodeFileId":1586,"seasonNumber":7,"episodeNumber":19,"title":"Saturday Morning Fun Pit","airDate":"2013-07-17","airDateUtc":"2013-07-18T02:00:00Z","overview":"The Futurama gang stars in a trio of craptastic morning cartoons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":2165},{"seriesId":50,"episodeFileId":1589,"seasonNumber":7,"episodeNumber":20,"title":"Calculon 2.0","airDate":"2013-07-24","airDateUtc":"2013-07-25T02:00:00Z","overview":"When Fry and Bender go to Robot Hell to retrieve Calculon's soul, the Robot Devil is surprisingly eager to give them what they want.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":2166},{"seriesId":50,"episodeFileId":1593,"seasonNumber":7,"episodeNumber":21,"title":"Assie Come Home","airDate":"2013-07-31","airDateUtc":"2013-08-01T02:00:00Z","overview":"Bender looks for his rear end all over the universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":2167},{"seriesId":50,"episodeFileId":1594,"seasonNumber":7,"episodeNumber":22,"title":"Leela and the Genestalk","airDate":"2013-08-07","airDateUtc":"2013-08-08T02:00:00Z","overview":"Leela grows tentacles due to a rare condition, and stumbles upon a secret genetic engineering lab.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":2168},{"seriesId":50,"episodeFileId":1597,"seasonNumber":7,"episodeNumber":23,"title":"Game of Tones","airDate":"2013-08-14","airDateUtc":"2013-08-15T02:00:00Z","overview":"The Planet Express crew journeys into Fry's dreams to pull off a mission in the year 1999.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":2169},{"seriesId":50,"episodeFileId":1599,"seasonNumber":7,"episodeNumber":24,"title":"Murder on the Planet Express","airDate":"2013-08-21","airDateUtc":"2013-08-22T02:00:00Z","overview":"During a team-building exercise, the crew get trapped aboard the Planet Express ship with a horrific alien creature.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":2170},{"seriesId":50,"episodeFileId":1601,"seasonNumber":7,"episodeNumber":25,"title":"Stench and Stenchibility","airDate":"2013-08-28","airDateUtc":"2013-08-29T02:00:00Z","overview":"A flower stand owner falls in love with Doctor Zoidberg, unable to smell his unpleasant odor due to being born without a sense of smell. Their budding romance is challenged when Zoidberg has the opportunity to give her a nose transplant and restore her sense of smell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":2171},{"seriesId":50,"episodeFileId":1602,"seasonNumber":7,"episodeNumber":26,"title":"Meanwhile","airDate":"2013-09-04","airDateUtc":"2013-09-05T02:00:00Z","overview":"Professor Farnsworth invents a button that can take a person 10 seconds back in time, inadvertently causing major consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":2172}],"episodeFile":[{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Rebirth-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E01.Rebirth-Bluray-1080p.mkv","size":1315717194,"dateAdded":"2018-10-10T21:51:06.094735Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6513000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1480},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E01.The Bots and the Bees-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E01.The Bots and the Bees-Bluray-1080p.mkv","size":638647121,"dateAdded":"2018-10-10T21:51:06.124641Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2993624,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1481},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E01.A Flight to Remember-DVD.mkv","path":"\/tv\/Futurama\/Season 02\/S02E01.A Flight to Remember-DVD.mkv","size":332773898,"dateAdded":"2018-10-10T21:51:06.276221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":29.97,"resolution":"710x480","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1486},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E02.In-A-Gadda-Da-Leela-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E02.In-A-Gadda-Da-Leela-Bluray-1080p.mkv","size":1314992959,"dateAdded":"2018-10-10T21:51:06.306759Z","releaseGroup":"Leela","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1487},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E02.A Farewell to Arms-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E02.A Farewell to Arms-Bluray-1080p.mkv","size":747165872,"dateAdded":"2018-10-10T21:51:06.337683Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1488},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Mars University-DVD.mkv","path":"\/tv\/Futurama\/Season 02\/S02E02.Mars University-DVD.mkv","size":332626196,"dateAdded":"2018-10-10T21:51:06.496714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":29.97,"resolution":"710x480","runTime":"22:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1493},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Attack of the Killer App!-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E03.Attack of the Killer App!-Bluray-1080p.mkv","size":1315646990,"dateAdded":"2018-10-10T21:51:06.526176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1494},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Decision 3012-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E03.Decision 3012-Bluray-1080p.mkv","size":596133406,"dateAdded":"2018-10-10T21:51:06.555968Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2736828,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1495},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E03.When Aliens Attack-DVD.mkv","path":"\/tv\/Futurama\/Season 02\/S02E03.When Aliens Attack-DVD.mkv","size":332867652,"dateAdded":"2018-10-10T21:51:06.645655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":29.97,"resolution":"710x480","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1498},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Proposition Infinity-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E04.Proposition Infinity-Bluray-1080p.mkv","size":1315386341,"dateAdded":"2018-10-10T21:51:06.735232Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1501},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E04.The Thief of Baghead-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E04.The Thief of Baghead-Bluray-1080p.mkv","size":610997347,"dateAdded":"2018-10-10T21:51:06.765Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2826611,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1502},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Fry & the Slurm Factory-DVD.mkv","path":"\/tv\/Futurama\/Season 02\/S02E04.Fry & the Slurm Factory-DVD.mkv","size":332634928,"dateAdded":"2018-10-10T21:51:06.885815Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":29.97,"resolution":"710x480","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1506},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E05.The Duh-Vinci Code-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E05.The Duh-Vinci Code-Bluray-1080p.mkv","size":1316061097,"dateAdded":"2018-10-10T21:51:06.948679Z","releaseGroup":"Vinci","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1508},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Zapp Dingbat-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E05.Zapp Dingbat-Bluray-1080p.mkv","size":671910141,"dateAdded":"2018-10-10T21:51:06.978785Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3194543,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1509},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Lethal Inspection-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E06.Lethal Inspection-Bluray-1080p.mkv","size":1315715406,"dateAdded":"2018-10-10T21:51:07.158026Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1515},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E06.The Butterjunk Effect-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E06.The Butterjunk Effect-Bluray-1080p.mkv","size":750683006,"dateAdded":"2018-10-10T21:51:07.187637Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3670354,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1516},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E07.The Late Philip J. Fry-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E07.The Late Philip J. Fry-Bluray-1080p.mkv","size":1315789885,"dateAdded":"2018-10-10T21:51:07.372664Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1522},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E07.The Six Million Dollar Mon-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E07.The Six Million Dollar Mon-Bluray-1080p.mkv","size":525623889,"dateAdded":"2018-10-10T21:51:07.461204Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2310929,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1525},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E08.That Darn Katz!-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E08.That Darn Katz!-Bluray-1080p.mkv","size":1315935263,"dateAdded":"2018-10-10T21:51:07.582603Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1529},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Fun on a Bun-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E08.Fun on a Bun-Bluray-1080p.mkv","size":650820004,"dateAdded":"2018-10-10T21:51:07.613282Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3067152,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1530},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E09.A Clockwork Origin-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E09.A Clockwork Origin-Bluray-1080p.mkv","size":1315506773,"dateAdded":"2018-10-10T21:51:07.794669Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1536},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Free Will Hunting-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E09.Free Will Hunting-Bluray-1080p.mkv","size":585604555,"dateAdded":"2018-10-10T21:51:07.824572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2673404,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1537},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E10.The Prisoner of Benda-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E10.The Prisoner of Benda-Bluray-1080p.mkv","size":1316295304,"dateAdded":"2018-10-10T21:51:08.007315Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1543},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Near-Death Wish-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E10.Near-Death Wish-Bluray-1080p.mkv","size":764514423,"dateAdded":"2018-10-10T21:51:08.042153Z","releaseGroup":"Death","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3718878,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1544},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Lrrreconcilable Ndndifferences-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E11.Lrrreconcilable Ndndifferences-Bluray-1080p.mkv","size":1315509376,"dateAdded":"2018-10-10T21:51:08.193955Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1549},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Viva Mars Vegas-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E11.Viva Mars Vegas-Bluray-1080p.mkv","size":577334394,"dateAdded":"2018-10-10T21:51:08.225702Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2623276,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1550},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E12.The Mutants Are Revolting-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E12.The Mutants Are Revolting-Bluray-1080p.mkv","size":1319507887,"dateAdded":"2018-10-10T21:51:08.375647Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1555},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E12.31st Century Fox-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E12.31st Century Fox-Bluray-1080p.mkv","size":538561575,"dateAdded":"2018-10-10T21:51:08.405686Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2389076,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1556},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E13.The Futurama Holiday Spectacular-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E13.The Futurama Holiday Spectacular-Bluray-1080p.mkv","size":1316112762,"dateAdded":"2018-10-10T21:51:08.553989Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1561},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Naturama-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E13.Naturama-Bluray-1080p.mkv","size":654268459,"dateAdded":"2018-10-10T21:51:08.583493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3051974,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1562},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E14.2-D Blacktop-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E14.2-D Blacktop-Bluray-1080p.mkv","size":788944543,"dateAdded":"2018-10-10T21:51:08.701754Z","releaseGroup":"D","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3900996,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1566},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Neutopia-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E14.Neutopia-Bluray-1080p.mkv","size":613634954,"dateAdded":"2018-10-10T21:51:08.731058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1567},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Benderama-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E15.Benderama-Bluray-1080p.mkv","size":718969057,"dateAdded":"2018-10-10T21:51:08.859048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1571},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E15.Fry and Leela's Big Fling-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E15.Fry and Leela's Big Fling-Bluray-1080p.mkv","size":677708266,"dateAdded":"2018-10-10T21:51:08.888469Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3228656,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1572},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Ghost in the Machines-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E16.Ghost in the Machines-Bluray-1080p.mkv","size":684925494,"dateAdded":"2018-10-10T21:51:09.01687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1576},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E16.T.- The Terrestrial-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E16.T.- The Terrestrial-Bluray-1080p.mkv","size":610875406,"dateAdded":"2018-10-10T21:51:09.048241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2825055,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1577},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E17.Law and Oracle-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E17.Law and Oracle-Bluray-1080p.mkv","size":710587449,"dateAdded":"2018-10-10T21:51:09.140005Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1580},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E17.Forty Percent Leadbelly-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E17.Forty Percent Leadbelly-Bluray-1080p.mkv","size":681499830,"dateAdded":"2018-10-10T21:51:09.17031Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3251959,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1581},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E18.The Inhuman Torch-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E18.The Inhuman Torch-Bluray-1080p.mkv","size":765578848,"dateAdded":"2018-10-10T21:51:09.230861Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3759304,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1583},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E18.The Silence of the Clamps-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E18.The Silence of the Clamps-Bluray-1080p.mkv","size":601446941,"dateAdded":"2018-10-10T21:51:09.261229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1584},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E19.Saturday Morning Fun Pit-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E19.Saturday Morning Fun Pit-Bluray-1080p.mkv","size":695923389,"dateAdded":"2018-10-10T21:51:09.321432Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3338657,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1586},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E19.Yo Leela Leela-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E19.Yo Leela Leela-Bluray-1080p.mkv","size":632017307,"dateAdded":"2018-10-10T21:51:09.351497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1587},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E20.Calculon 2.0-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E20.Calculon 2.0-Bluray-1080p.mkv","size":646020271,"dateAdded":"2018-10-10T21:51:09.413102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3037294,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1589},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E20.All the Presidents' Heads-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E20.All the Presidents' Heads-Bluray-1080p.mkv","size":640224477,"dateAdded":"2018-10-10T21:51:09.443705Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1590},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E21.Mobius Dick-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E21.Mobius Dick-Bluray-1080p.mkv","size":784704656,"dateAdded":"2018-10-10T21:51:09.504489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1592},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E21.Assie Come Home-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E21.Assie Come Home-Bluray-1080p.mkv","size":708210333,"dateAdded":"2018-10-10T21:51:09.547722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3412858,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1593},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E22.Leela and the Genestalk-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E22.Leela and the Genestalk-Bluray-1080p.mkv","size":705440553,"dateAdded":"2018-10-10T21:51:09.570162Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3396132,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1594},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E22.Fry Am the Egg Man-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E22.Fry Am the Egg Man-Bluray-1080p.mkv","size":647831866,"dateAdded":"2018-10-10T21:51:09.592117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1595},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E23.The Tip of the Zoidberg-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E23.The Tip of the Zoidberg-Bluray-1080p.mkv","size":657049299,"dateAdded":"2018-10-10T21:51:09.614297Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1596},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E23.Game of Tones-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E23.Game of Tones-Bluray-1080p.mkv","size":627076016,"dateAdded":"2018-10-10T21:51:09.63518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1597},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E24.Cold Warriors-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E24.Cold Warriors-Bluray-1080p.mkv","size":662522468,"dateAdded":"2018-10-10T21:51:09.657239Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1598},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E24.Murder on the Planet Express-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E24.Murder on the Planet Express-Bluray-1080p.mkv","size":619799768,"dateAdded":"2018-10-10T21:51:09.677714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2878950,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1599},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E25.Overclockwise-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E25.Overclockwise-Bluray-1080p.mkv","size":786993784,"dateAdded":"2018-10-10T21:51:09.699937Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1600},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E25.Stench and Stenchibility-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E25.Stench and Stenchibility-Bluray-1080p.mkv","size":655393982,"dateAdded":"2018-10-10T21:51:09.720299Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3092634,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1601},{"seriesId":50,"seasonNumber":7,"relativePath":"Season 07\/S07E26.Meanwhile-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 07\/S07E26.Meanwhile-Bluray-1080p.mkv","size":732596550,"dateAdded":"2018-10-10T21:51:09.743057Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3558709,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1602},{"seriesId":50,"seasonNumber":6,"relativePath":"Season 06\/S06E26.Reincarnation-Bluray-1080p.mkv","path":"\/tv\/Futurama\/Season 06\/S06E26.Reincarnation-Bluray-1080p.mkv","size":591238843,"dateAdded":"2018-10-10T21:51:09.764915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1603},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Where the Buggalo Roam-WEBDL-720p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E06.Where the Buggalo Roam-WEBDL-720p.mkv","size":266384952,"dateAdded":"2018-10-23T23:09:02.207384Z","releaseGroup":"AJP69","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1505796,"videoCodec":"h264","videoFps":23.976,"resolution":"960x720","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5346},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Futurestock-WEBDL-720p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E09.Futurestock-WEBDL-720p.mkv","size":227016256,"dateAdded":"2018-10-23T23:10:18.96827Z","sceneName":"Futurama.S04E09.Future.Stock.720p.HULU.WEB-DL.AAC2.0.H.264-AJP69-Scrambled","releaseGroup":"AJP69","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1274886,"videoCodec":"h264","videoFps":23.976,"resolution":"960x720","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5349},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Jurassic Bark-WEBDL-720p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E02.Jurassic Bark-WEBDL-720p.mkv","size":238456880,"dateAdded":"2018-10-23T23:38:31.703931Z","sceneName":"Futurama.S05E02.Jurassic.Bark.720p.HULU.WEB-DL.AAC2.0.H.264-AJP69","releaseGroup":"AJP69","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1342361,"videoCodec":"h264","videoFps":23.976,"resolution":"960x720","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5385},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E03.I, Roommate-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E03.I, Roommate-WEBDL-1080p.mkv","size":836045603,"dateAdded":"2020-06-27T12:38:53.25018Z","sceneName":"futurama.s01e03.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4717981,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14637},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Series Has Landed-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E02.The Series Has Landed-WEBDL-1080p.mkv","size":896986001,"dateAdded":"2020-06-27T12:41:53.403044Z","sceneName":"futurama.s01e02.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5079477,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14638},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Love's Labors Lost in Space-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E04.Love's Labors Lost in Space-WEBDL-1080p.mkv","size":894984398,"dateAdded":"2020-06-27T12:44:52.827875Z","sceneName":"futurama.s01e04.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5065334,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14639},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Space Pilot 3000-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E01.Space Pilot 3000-WEBDL-1080p.mkv","size":574585772,"dateAdded":"2020-06-27T12:46:22.73129Z","sceneName":"futurama.s01e01.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3175337,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14640},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Xmas Story-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E08.Xmas Story-WEBDL-1080p.mkv","size":766730351,"dateAdded":"2020-06-27T12:55:53.644661Z","sceneName":"futurama.s02e04.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4310053,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14641},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E05.I Second That Emotion-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E05.I Second That Emotion-WEBDL-1080p.mkv","size":697962202,"dateAdded":"2020-06-27T13:03:23.177058Z","sceneName":"futurama.s02e01.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3900027,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14642},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E07.A Head in the Polls-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E07.A Head in the Polls-WEBDL-1080p.mkv","size":641387145,"dateAdded":"2020-06-27T13:03:29.663182Z","sceneName":"futurama.s02e03.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3564762,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14643},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Lesser of Two Evils-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E11.Lesser of Two Evils-WEBDL-1080p.mkv","size":695883783,"dateAdded":"2020-06-27T13:04:42.791213Z","sceneName":"futurama.s02e06.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3888106,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14644},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Brannigan, Begin Again-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E06.Brannigan, Begin Again-WEBDL-1080p.mkv","size":656738795,"dateAdded":"2020-06-27T13:07:23.242129Z","sceneName":"futurama.s02e02.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3659578,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14645},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E06.A Fishful of Dollars-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E06.A Fishful of Dollars-WEBDL-1080p.mkv","size":990856482,"dateAdded":"2020-06-27T13:16:23.318125Z","sceneName":"futurama.s01e06.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5638095,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14646},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Fear of a Bot Planet-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E05.Fear of a Bot Planet-WEBDL-1080p.mkv","size":1112902667,"dateAdded":"2020-06-27T13:17:53.554905Z","sceneName":"futurama.s01e05.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6354280,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14647},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Raging Bender-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E12.Raging Bender-WEBDL-1080p.mkv","size":832361200,"dateAdded":"2020-06-27T13:18:04.079936Z","sceneName":"futurama.s02e08.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4691635,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14648},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Put Your Head on My Shoulder-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E10.Put Your Head on My Shoulder-WEBDL-1080p.mkv","size":543696325,"dateAdded":"2020-06-27T13:22:52.507303Z","sceneName":"futurama.s02e07.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2987290,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14649},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Deep South-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E16.The Deep South-WEBDL-1080p.mkv","size":742984458,"dateAdded":"2020-06-27T13:25:53.937252Z","sceneName":"futurama.s02e12.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4164154,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14650},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Anthology of Interest I-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E20.Anthology of Interest I-WEBDL-1080p.mkv","size":933015545,"dateAdded":"2020-06-27T13:31:53.745616Z","sceneName":"futurama.s02e16.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5293102,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14651},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Cryonic Woman-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E03.The Cryonic Woman-WEBDL-1080p.mkv","size":743990249,"dateAdded":"2020-06-27T13:34:54.136668Z","sceneName":"futurama.s03e03.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4196378,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14652},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E02.War Is the H-Word-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E02.War Is the H-Word-WEBDL-1080p.mkv","size":624859064,"dateAdded":"2020-06-27T13:35:06.367791Z","sceneName":"futurama.s03e02.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3460931,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14653},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Honking-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E01.The Honking-WEBDL-1080p.mkv","size":697807049,"dateAdded":"2020-06-27T13:35:36.019813Z","sceneName":"futurama.s03e01.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3891132,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14654},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Love and Rocket-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E04.Love and Rocket-WEBDL-1080p.mkv","size":875546529,"dateAdded":"2020-06-27T13:41:23.821753Z","sceneName":"futurama.s04e04.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4945838,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14655},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E07.My Three Suns-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E07.My Three Suns-WEBDL-1080p.mkv","size":717956932,"dateAdded":"2020-06-27T13:42:54.404293Z","sceneName":"futurama.s01e07.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4021103,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14656},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E15.I Dated a Robot-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E15.I Dated a Robot-WEBDL-1080p.mkv","size":651911390,"dateAdded":"2020-06-27T13:43:12.168009Z","sceneName":"futurama.s03e15.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3621071,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14657},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E13.A Bicyclops Built for Two-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E13.A Bicyclops Built for Two-WEBDL-1080p.mkv","size":880469598,"dateAdded":"2020-06-27T13:49:57.463875Z","sceneName":"futurama.s02e09.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4983572,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14670},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Hell is Other Robots-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E09.Hell is Other Robots-WEBDL-1080p.mkv","size":1148679383,"dateAdded":"2020-06-27T13:50:07.005988Z","sceneName":"futurama.s01e09.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6573003,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14671},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Bendless Love-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E06.Bendless Love-WEBDL-1080p.mkv","size":700593722,"dateAdded":"2020-06-27T13:50:19.904033Z","sceneName":"futurama.s03e06.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3908615,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14672},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Why Must I Be a Crustacean in Love-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E09.Why Must I Be a Crustacean in Love-WEBDL-1080p.mkv","size":577039384,"dateAdded":"2020-06-27T13:50:30.116749Z","sceneName":"futurama.s02e05.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3186341,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14673},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Bendin' in the Wind-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E13.Bendin' in the Wind-WEBDL-1080p.mkv","size":811051050,"dateAdded":"2020-06-27T13:50:43.682303Z","sceneName":"futurama.s03e13.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4559431,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14674},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Birdbot of Ice Catraz-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E09.The Birdbot of Ice Catraz-WEBDL-1080p.mkv","size":647429665,"dateAdded":"2020-06-27T13:51:37.083325Z","sceneName":"futurama.s03e09.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3610699,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14675},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E08.That's Lobstertainment!-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E08.That's Lobstertainment!-WEBDL-1080p.mkv","size":733050695,"dateAdded":"2020-06-27T13:53:30.634812Z","sceneName":"futurama.s03e08.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4099637,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14704},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Obsoletely Fabulous-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E14.Obsoletely Fabulous-WEBDL-1080p.mkv","size":781918689,"dateAdded":"2020-06-27T14:13:53.429832Z","sceneName":"futurama.s05e14.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4392380,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14705},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E16.The Devil's Hands Are Idle Playthings-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E16.The Devil's Hands Are Idle Playthings-WEBDL-1080p.mkv","size":777191109,"dateAdded":"2020-06-27T14:15:23.472124Z","sceneName":"futurama.s05e16.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4364000,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14706},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Bend Her-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E13.Bend Her-WEBDL-1080p.mkv","size":784520471,"dateAdded":"2020-06-27T14:18:23.470324Z","sceneName":"futurama.s05e13.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4406714,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14707},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Three Hundred Big Boys-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E11.Three Hundred Big Boys-WEBDL-1080p.mkv","size":816065536,"dateAdded":"2020-06-27T14:19:53.541427Z","sceneName":"futurama.s05e11.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4594639,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14708},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E09.The Sting-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E09.The Sting-WEBDL-1080p.mkv","size":840738036,"dateAdded":"2020-06-27T14:25:53.556702Z","sceneName":"futurama.s05e09.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4740521,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14709},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Bender Should Not Be Allowed on TV-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E15.Bender Should Not Be Allowed on TV-WEBDL-1080p.mkv","size":668847940,"dateAdded":"2020-06-27T14:25:58.649753Z","sceneName":"futurama.s05e15.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3724004,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14710},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Spanish Fry-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E12.Spanish Fry-WEBDL-1080p.mkv","size":837333066,"dateAdded":"2020-06-27T14:28:53.641618Z","sceneName":"futurama.s05e12.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4719943,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14711},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E08.The Why of Fry-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E08.The Why of Fry-WEBDL-1080p.mkv","size":698317000,"dateAdded":"2020-06-27T14:30:23.556158Z","sceneName":"futurama.s05e08.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3898043,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14712},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Anthology of Interest II-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E03.Anthology of Interest II-WEBDL-1080p.mkv","size":881705988,"dateAdded":"2020-06-27T14:46:53.984052Z","sceneName":"futurama.s04e03.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4976163,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14713},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Leela's Homeworld-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E05.Leela's Homeworld-WEBDL-1080p.mkv","size":696294038,"dateAdded":"2020-06-27T15:06:02.529299Z","sceneName":"futurama.s04e05.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3886775,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14723},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Luck of the Fryrish-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E10.The Luck of the Fryrish-WEBDL-1080p.mkv","size":709934446,"dateAdded":"2020-06-27T15:07:24.241951Z","sceneName":"futurama.s03e10.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3962441,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14724},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Cyber House Rules-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E11.The Cyber House Rules-WEBDL-1080p.mkv","size":750583535,"dateAdded":"2020-06-27T15:07:29.234508Z","sceneName":"futurama.s03e11.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4203071,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14725},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Crimes of the Hot-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E01.Crimes of the Hot-WEBDL-1080p.mkv","size":905958369,"dateAdded":"2020-06-27T15:10:24.212121Z","sceneName":"futurama.s05e01.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5125470,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14726},{"seriesId":50,"seasonNumber":1,"relativePath":"Season 01\/S01E08.A Big Piece of Garbage-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 01\/S01E08.A Big Piece of Garbage-WEBDL-1080p.mkv","size":1013392047,"dateAdded":"2020-06-27T15:10:31.670877Z","sceneName":"futurama.s01e08.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5767565,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14727},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Kif Gets Knocked Up a Notch-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E05.Kif Gets Knocked Up a Notch-WEBDL-1080p.mkv","size":854565996,"dateAdded":"2020-06-27T15:13:24.274406Z","sceneName":"futurama.s05e05.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4821602,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14728},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E04.A Taste of Freedom-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E04.A Taste of Freedom-WEBDL-1080p.mkv","size":910985521,"dateAdded":"2020-06-27T15:17:54.387413Z","sceneName":"futurama.s05e04.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5154669,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14729},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Less Than Hero-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E06.Less Than Hero-WEBDL-1080p.mkv","size":831048810,"dateAdded":"2020-06-27T15:18:02.246847Z","sceneName":"futurama.s05e06.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4683110,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14730},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Teenage Mutant Leela's Hurdles-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E07.Teenage Mutant Leela's Hurdles-WEBDL-1080p.mkv","size":695735970,"dateAdded":"2020-06-27T15:18:16.634277Z","sceneName":"futurama.s05e07.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3882943,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14731},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E18.The Problem With Popplers-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E18.The Problem With Popplers-WEBDL-1080p.mkv","size":777052221,"dateAdded":"2020-06-27T15:21:24.290964Z","sceneName":"futurama.s02e15.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4370252,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14732},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Mother's Day-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E19.Mother's Day-WEBDL-1080p.mkv","size":680203504,"dateAdded":"2020-06-27T15:22:54.355668Z","sceneName":"futurama.s02e14.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3793657,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14733},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Roswell That Ends Well-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E01.Roswell That Ends Well-WEBDL-1080p.mkv","size":785275720,"dateAdded":"2020-06-27T15:25:54.322781Z","sceneName":"futurama.s04e01.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4412378,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14734},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E14.How Hermes Requisitioned His Groove Back-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E14.How Hermes Requisitioned His Groove Back-WEBDL-1080p.mkv","size":713715870,"dateAdded":"2020-06-27T15:27:24.388833Z","sceneName":"futurama.s02e11.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3987836,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14735},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E15.A Clone of My Own-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E15.A Clone of My Own-WEBDL-1080p.mkv","size":624385654,"dateAdded":"2020-06-27T15:27:37.789497Z","sceneName":"futurama.s02e10.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3468584,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14736},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E03.The Route of All Evil-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E03.The Route of All Evil-WEBDL-1080p.mkv","size":773156223,"dateAdded":"2020-06-27T15:27:50.557351Z","sceneName":"futurama.s05e03.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4341241,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14737},{"seriesId":50,"seasonNumber":5,"relativePath":"Season 05\/S05E10.The Farnsworth Parabox-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 05\/S05E10.The Farnsworth Parabox-WEBDL-1080p.mkv","size":666176627,"dateAdded":"2020-06-27T15:33:54.51437Z","sceneName":"futurama.s05e10.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3709107,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14738},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Parasites Lost-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E04.Parasites Lost-WEBDL-1080p.mkv","size":742592032,"dateAdded":"2020-06-27T15:36:54.751395Z","sceneName":"futurama.s03e04.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4154724,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14739},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E02.A Tale of Two Santas-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E02.A Tale of Two Santas-WEBDL-1080p.mkv","size":766901181,"dateAdded":"2020-06-27T15:37:02.461555Z","sceneName":"futurama.s04e02.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4304530,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14740},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Amazon Women in the Mood-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E05.Amazon Women in the Mood-WEBDL-1080p.mkv","size":806829048,"dateAdded":"2020-06-27T15:42:54.548796Z","sceneName":"futurama.s03e05.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4534520,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14741},{"seriesId":50,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Bender Gets Made-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 02\/S02E17.Bender Gets Made-WEBDL-1080p.mkv","size":919484467,"dateAdded":"2020-06-27T15:45:54.698029Z","sceneName":"futurama.s02e13.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5211387,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14742},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Day the Earth Stood Stupid-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E07.The Day the Earth Stood Stupid-WEBDL-1080p.mkv","size":761297908,"dateAdded":"2020-06-27T15:52:38.290589Z","sceneName":"futurama.s03e07.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4266020,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14744},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Time Keeps on Slipping-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E14.Time Keeps on Slipping-WEBDL-1080p.mkv","size":823357644,"dateAdded":"2020-06-27T15:57:54.970472Z","sceneName":"futurama.s03e14.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4632192,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14746},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E07.A Pharaoh to Remember-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E07.A Pharaoh to Remember-WEBDL-1080p.mkv","size":884792430,"dateAdded":"2020-06-27T16:08:25.214318Z","sceneName":"futurama.s04e07.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000646,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14747},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Where No Fan Has Gone Before-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E12.Where No Fan Has Gone Before-WEBDL-1080p.mkv","size":711276365,"dateAdded":"2020-06-29T14:25:38.600942Z","sceneName":"futurama.s04e12.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3974876,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14771},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E10.A Leela of Her Own-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E10.A Leela of Her Own-WEBDL-1080p.mkv","size":795411732,"dateAdded":"2020-06-29T14:28:38.445251Z","sceneName":"futurama.s04e10.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4507059,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14772},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E11.The 30% Iron Chef-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E11.The 30% Iron Chef-WEBDL-1080p.mkv","size":744939459,"dateAdded":"2020-06-29T14:28:43.873081Z","sceneName":"futurama.s04e11.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4173843,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14773},{"seriesId":50,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Godfellas-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 04\/S04E08.Godfellas-WEBDL-1080p.mkv","size":1032188084,"dateAdded":"2020-06-29T14:31:38.34157Z","sceneName":"futurama.s04e08.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5871486,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14774},{"seriesId":50,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Insane in the Mainframe-WEBDL-1080p.mkv","path":"\/tv\/Futurama\/Season 03\/S03E12.Insane in the Mainframe-WEBDL-1080p.mkv","size":742295915,"dateAdded":"2020-07-04T18:51:41.771866Z","sceneName":"futurama.s03e12.1080p.web.h264-nixon[eztv.io]","releaseGroup":"nixon","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4153348,"videoCodec":"h264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14809}],"queue":[]},"56":{"series":{"title":"Eureka","alternateTitles":[],"sortTitle":"eureka","status":"ended","ended":true,"overview":"The sleepy Pacific Northwest town of Eureka is hiding a mysterious secret. The government has been relocating the world\u2019s geniuses and their families to this rustic town for years where innovation and chaos have lived hand in hand. U.S. Marshal Jack Carter (Colin Ferguson) stumbles upon this odd town after wrecking his car and becoming stranded there. When the denizens of the town unleash an unknown scientific creation, Carter jumps in to try to restore order and consequently learns of one of the country\u2019s best kept secrets.","previousAiring":"2012-07-16T16:00:00Z","network":"Syfy","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/66\/banner.jpg?lastWrite=637103832649874650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79334-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/66\/poster.jpg?lastWrite=637103832652834600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79334-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/66\/fanart.jpg?lastWrite=637103832647154700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79334-5.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":9,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-10-03T16:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":45766388384,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-10-02T16:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45765569601,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-09-18T16:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":63363060716,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2011-12-06T17:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":34359840953,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2012-07-16T16:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45767172910,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Eureka","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":79334,"tvRageId":7506,"tvMazeId":542,"firstAired":"2006-07-18T00:00:00Z","seriesType":"standard","cleanTitle":"eureka","imdbId":"tt0796264","titleSlug":"eureka","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Science Fiction"],"tags":[],"added":"2018-10-05T17:36:44.5936695Z","ratings":{"votes":9779,"value":8.6},"statistics":{"seasonCount":5,"episodeFileCount":77,"episodeCount":77,"totalEpisodeCount":86,"sizeOnDisk":235022032564,"percentOfEpisodes":100.0},"id":66},"episodes":[{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Hide and Seek Prologue","overview":"A mysterious presence in the woods outside town first sparks fear, then prompts an investigation which quickly involves all of Eureka's eccentric denizens.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1707},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Hide and Seek Webisode 1","overview":"Video of a beast outside Eureka spurs Carter and Taggert into action.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1708},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Hide and Seek Webisode 2","overview":"Carter, Lupo and Taggart search the woods for the beast","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1709},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Hide and Seek Webisode 3","overview":"Allison Blake has a frightening run-in with the creature.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1710},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Hide and Seek Webisode 4","overview":"An autopsy of the creature leads to a shocking discovery.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1711},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Hide and Seek Webisode 5","overview":"Carter follows the latest clues to a fateful confrontation.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1712},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Hide and Seek Webisode 6","overview":"Carter finds the \"missing link\" to the mystery monster.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1713},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Hide and Seek Webisode 7","overview":"Carter finds the \"missing link\" to the mystery monster.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1714},{"seriesId":66,"episodeFileId":1247,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2006-07-18","airDateUtc":"2006-07-18T16:00:00Z","overview":"After a strange accident sidelines Eureka's sheriff, U.S. Marshal Jack Carter takes over the investigation into the mysterious phenomenon that led to the death of a resident. \r\nCarter learns about the secret purpose of the town while trying to re-establish a connection with his angry and bitter daughter, Zoe. He develops a friendly working relationship with government liaison Allison Blake and meets some of the more eccentric residents of Eureka.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1716},{"seriesId":66,"episodeFileId":1252,"seasonNumber":1,"episodeNumber":2,"title":"Many Happy Returns","airDate":"2006-07-25","airDateUtc":"2006-07-25T16:00:00Z","overview":"Carter and the other citizens of Eureka attend the funeral of Susan Perkins. Much to their surprise, Ms. Perkins makes a return to Eureka as a woman who is very much alive!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1717},{"seriesId":66,"episodeFileId":1258,"seasonNumber":1,"episodeNumber":3,"title":"Before I Forget","airDate":"2006-08-01","airDateUtc":"2006-08-01T16:00:00Z","overview":"Jack Carter accidentally shoots Henry while suffering from short-term memory loss, meanwhile a visit from a noted scientist may hold clues into to his sudden memory loss.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1718},{"seriesId":66,"episodeFileId":1263,"seasonNumber":1,"episodeNumber":4,"title":"Alienated","airDate":"2006-08-08","airDateUtc":"2006-08-08T16:00:00Z","overview":"Spencer is apparently abducted by aliens and then returned to earth the next day inside a crop circle. Also, the town is visited by the congressman whose committee is responsible for its government funding.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1719},{"seriesId":66,"episodeFileId":1267,"seasonNumber":1,"episodeNumber":5,"title":"Invincible","airDate":"2006-08-15","airDateUtc":"2006-08-15T16:00:00Z","overview":"After a lab accident, Global Dynamics researcher Carl Carlson is expelled from Eureka due to lack of results. Later, it is discovered that the accident has unlocked hidden abilities in Carl. Meanwhile, Jack does his best to avoid a physical.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1720},{"seriesId":66,"episodeFileId":1275,"seasonNumber":1,"episodeNumber":6,"title":"Dr. Nobel","airDate":"2006-08-22","airDateUtc":"2006-08-22T16:00:00Z","overview":"After Fargo and Spencer accidentally activate a doomsday device, Carter must help Dr. Irwin Thatcher, an aging scientist, to shut down the device.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1721},{"seriesId":66,"episodeFileId":1278,"seasonNumber":1,"episodeNumber":7,"title":"Blink","airDate":"2006-08-29","airDateUtc":"2006-08-29T16:00:00Z","overview":"Carter investigates an unusual car accident. Meanwhile, Stark is under stress to produce results on a project.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1722},{"seriesId":66,"episodeFileId":1285,"seasonNumber":1,"episodeNumber":8,"title":"Right as Raynes","airDate":"2006-09-05","airDateUtc":"2006-09-05T16:00:00Z","overview":"When the return of Eureka's star pupil causes problems all over town, Stark is forced to make a hard choice. Carter attempts to track down Zoe who has run off with the former resident.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1723},{"seriesId":66,"episodeFileId":1289,"seasonNumber":1,"episodeNumber":9,"title":"Primal","airDate":"2006-09-12","airDateUtc":"2006-09-12T16:00:00Z","overview":"Fargo invents a device that bridges the gap between computers and human brains","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1724},{"seriesId":66,"episodeFileId":1295,"seasonNumber":1,"episodeNumber":10,"title":"Purple Haze","airDate":"2006-09-19","airDateUtc":"2006-09-19T16:00:00Z","overview":"Strange behavior is affecting the whole town except Sheriff Carter and Zoe. The father and daughter team must find the cause while Stark makes a decision that could affect the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1725},{"seriesId":66,"episodeFileId":1300,"seasonNumber":1,"episodeNumber":11,"title":"H.O.U.S.E. Rules","airDate":"2006-09-26","airDateUtc":"2006-09-26T16:00:00Z","overview":"S.A.R.A.H - the artificial intelligence that runs Carter's house takes him and a group of residents hostage in an intervention to keep Carter in Eureka. Meanwhile her root program B.R.A.D activates and turns the situation deadly.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1726},{"seriesId":66,"episodeFileId":1304,"seasonNumber":1,"episodeNumber":12,"title":"Once in a Lifetime","airDate":"2006-10-03","airDateUtc":"2006-10-03T16:00:00Z","overview":"Stark is given a chance to try the top-secret Artifact. Once it's tested, Eureka warps into the future and ends up in 2010, where the town is different.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1727},{"seriesId":66,"episodeFileId":1248,"seasonNumber":2,"episodeNumber":1,"title":"Phoenix Rising","airDate":"2007-07-10","airDateUtc":"2007-07-10T16:00:00Z","overview":"A man bursts into flames. Elsewhere, Carter and Deacon are reaccustoming to the timeline restored in \"Once in a Lifetime.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1728},{"seriesId":66,"episodeFileId":1253,"seasonNumber":2,"episodeNumber":2,"title":"Try, Try Again","airDate":"2007-07-17","airDateUtc":"2007-07-17T16:00:00Z","overview":"Carter requests Stark's help after Fargo accidentally activates a personal force field, which causes mayhem.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1729},{"seriesId":66,"episodeFileId":1259,"seasonNumber":2,"episodeNumber":3,"title":"Unpredictable","airDate":"2007-07-24","airDateUtc":"2007-07-24T16:00:00Z","overview":"An isolated deep freeze trigger causes a chain reaction of sudden weather changes in Eureka.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1730},{"seriesId":66,"episodeFileId":1266,"seasonNumber":2,"episodeNumber":4,"title":"Games People Play","airDate":"2007-07-31","airDateUtc":"2007-07-31T16:00:00Z","overview":"After receiving a hit to the head, Carter finds that he is in a parallel Eureka. He discovers that the residents of the parallel Eureka are disappearing.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1731},{"seriesId":66,"episodeFileId":1268,"seasonNumber":2,"episodeNumber":5,"title":"Duck, Duck Goose","airDate":"2007-08-07","airDateUtc":"2007-08-07T16:00:00Z","overview":"Space debris threatens Eureka's existence after it accumulates into a large cloud. Carter investigates in an effort to avert potential disaster.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1732},{"seriesId":66,"episodeFileId":1273,"seasonNumber":2,"episodeNumber":6,"title":"Noche de Sue\u00f1os","airDate":"2007-08-14","airDateUtc":"2007-08-14T16:00:00Z","overview":"A toxic spill seems to cause Eureka's residents to share their dreams. Initially the situation is amusing, but turns dire after the dream sharing is discovered to have a lethal attribute. The situation becomes more complicated, when Carter finds out that the spill is not the cause.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1733},{"seriesId":66,"episodeFileId":1280,"seasonNumber":2,"episodeNumber":7,"title":"Family Reunion","airDate":"2007-08-21","airDateUtc":"2007-08-21T16:00:00Z","overview":"A man who turns out to be Fargo's grandfather has been cryogenically frozen for 50 years. He is awakened from his slumber by accident with no recollection of how he was frozen. In addition to that, it seems that he is the father of lots of technologies at Eureka.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1734},{"seriesId":66,"episodeFileId":1284,"seasonNumber":2,"episodeNumber":8,"title":"E=MC...?","airDate":"2007-08-28","airDateUtc":"2007-08-28T16:00:00Z","overview":"An experiment about the big bang theory seems to be the cause for Eureka's finest to become dumber and dumber, including everyone involved in the experiment. When it comes to the verge of destroying Global Dynamics, the fate of the town lies in the hands of Jack Carter and the team of scientists he assembles, amongst them the newest member of the town, an anti-social genius.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1735},{"seriesId":66,"episodeFileId":1288,"seasonNumber":2,"episodeNumber":9,"title":"Sight Unseen","airDate":"2007-09-04","airDateUtc":"2007-09-04T16:00:00Z","overview":"Strange happenings and spreading radiation at Global Dynamics lead to speculations that an abandoned research project concerning invisibility might have been revived. When Sheriff Carter accidentally becomes involved, the effects of invisibility threaten his life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1736},{"seriesId":66,"episodeFileId":1294,"seasonNumber":2,"episodeNumber":10,"title":"God is in the Details","airDate":"2007-09-11","airDateUtc":"2007-09-11T16:00:00Z","overview":"Zoe and her friends lose their voices, but whatever is causing the symptoms has an even worse effect on Allison and her only hope comes from an unusual source.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1737},{"seriesId":66,"episodeFileId":1301,"seasonNumber":2,"episodeNumber":11,"title":"Maneater","airDate":"2007-09-18","airDateUtc":"2007-09-18T16:00:00Z","overview":"Eureka's air-conditioning system develops a fault, causing sexually tense situations, when the female residents suddenly become attracted to Carter due to bacteria.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1738},{"seriesId":66,"episodeFileId":1302,"seasonNumber":2,"episodeNumber":12,"title":"All That Glitters","airDate":"2007-09-25","airDateUtc":"2007-09-25T16:00:00Z","overview":"The town along with its residents mysteriously start to deconstruct. The prime suspect is an artist who couldn't get along with Stark when he was working at Global Dynamics.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1739},{"seriesId":66,"episodeFileId":1308,"seasonNumber":2,"episodeNumber":13,"title":"A Night at Global Dynamics","airDate":"2007-10-02","airDateUtc":"2007-10-02T16:00:00Z","overview":"Carter and Stark must work together as an aggressive virus is sweeping across Eureka, while Kevin's life is in danger.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1740},{"seriesId":66,"episodeFileId":1249,"seasonNumber":3,"episodeNumber":1,"title":"Bad to the Drone","airDate":"2008-07-29","airDateUtc":"2008-07-29T16:00:00Z","overview":"Eureka is threatened by an intelligent drone with \"issues\" after an anti-missile test. Meanwhile, Eva Thorne, nicknamed \"The Fixer\" after dismantling and rebuilding several corporations, arrives in Eureka to evaluate Global Dynamics' expenditures.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1741},{"seriesId":66,"episodeFileId":1256,"seasonNumber":3,"episodeNumber":2,"title":"What About Bob?","airDate":"2008-08-05","airDateUtc":"2008-08-05T16:00:00Z","overview":"Sheriff Carter and Allison investigate the disappearance of a scientist from a sealed biosphere. Meanwhile, \"The Fixer\" attempts to make Eureka's ventures more profitable.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1742},{"seriesId":66,"episodeFileId":1257,"seasonNumber":3,"episodeNumber":3,"title":"Best in Faux","airDate":"2008-08-12","airDateUtc":"2008-08-12T16:00:00Z","overview":"The town's annual dog show gets into full swing complete with exploding robotic canines. Meanwhile, Sheriff Carter experiences an isolated earthquake, Zoe contemplates quitting the accelerated physics program, and Allison starts fitting her wedding dress.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1743},{"seriesId":66,"episodeFileId":1264,"seasonNumber":3,"episodeNumber":4,"title":"I Do Over","airDate":"2008-08-19","airDateUtc":"2008-08-19T16:00:00Z","overview":"On Allison and Stark's wedding day, Sheriff Carter finds himself stuck in a time loop, causing him to experience the same lousy day over and over again. Meanwhile, Sheriff Carter's sister, Lexi visits Eureka.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1744},{"seriesId":66,"episodeFileId":1269,"seasonNumber":3,"episodeNumber":5,"title":"Show Me the Mummy","airDate":"2008-08-26","airDateUtc":"2008-08-26T16:00:00Z","overview":"When an Egyptian tomb is opened at Global Dynamics, strange things start to happen, leading Fargo to believe it is the mummy's curse. The mummy, however, has disappeared, and Carter investigates.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1745},{"seriesId":66,"episodeFileId":1274,"seasonNumber":3,"episodeNumber":6,"title":"Phased and Confused","airDate":"2008-09-09","airDateUtc":"2008-09-09T16:00:00Z","overview":"A mysterious \"superhero\" who can walk through walls is causing a ruckus in Eureka. Meanwhile, Zoe and her friends become stranded with Zane Donovan in an abandoned subterranean facility.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1746},{"seriesId":66,"episodeFileId":1277,"seasonNumber":3,"episodeNumber":7,"title":"Here Come the Suns","airDate":"2008-09-16","airDateUtc":"2008-09-16T16:00:00Z","overview":"The town's mayoral race is disrupted when Zoe's science partner inadvertently causes a second sun to appear over Eureka.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1747},{"seriesId":66,"episodeFileId":1286,"seasonNumber":3,"episodeNumber":8,"title":"From Fear to Eternity","airDate":"2008-09-23","airDateUtc":"2008-09-23T16:00:00Z","overview":"When a potentially world-altering scientific discovery from Eureka's past finally comes to light, can anyone be trusted with it? The question is far from rhetorical for Carter: Zoe's life is in immediate danger and Eva Thorne knows why.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1748},{"seriesId":66,"episodeFileId":1290,"seasonNumber":3,"episodeNumber":9,"title":"Welcome Back, Carter","airDate":"2009-07-10","airDateUtc":"2009-07-10T16:00:00Z","overview":"A new sheriff arrives in Eureka that turns out to be a robot that can change into human form (with mixed results). The town really needs the new sheriff as the town's gravity seems to be acting up.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1749},{"seriesId":66,"episodeFileId":1296,"seasonNumber":3,"episodeNumber":10,"title":"Your Face or Mine?","airDate":"2009-07-17","airDateUtc":"2009-07-17T16:00:00Z","overview":"Deputy Lupo stands in as the acting sheriff while Carter undergoes his annual physical, but she's not acting like herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":1750},{"seriesId":66,"episodeFileId":1299,"seasonNumber":3,"episodeNumber":11,"title":"Insane in the P-Brane","airDate":"2009-07-24","airDateUtc":"2009-07-24T16:00:00Z","overview":"Tess Fontana (Jaime Ray Newman) shakes things up in Carter\u2019s world when she\u2019s brought in by Allison to re-open Section Five.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":1751},{"seriesId":66,"episodeFileId":1306,"seasonNumber":3,"episodeNumber":12,"title":"It's Not Easy Being Green","airDate":"2009-07-31","airDateUtc":"2009-07-31T16:00:00Z","overview":"A bowling tournament brings a rival science team from Area 51 to town, leaving Carter investigating practical jokes that escalate in scope and destruction as the competition progresses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":1752},{"seriesId":66,"episodeFileId":1309,"seasonNumber":3,"episodeNumber":13,"title":"If You Build It...","airDate":"2009-08-07","airDateUtc":"2009-08-07T16:00:00Z","overview":"Teenagers construct an odd building in a Eureka field while asleep.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":1753},{"seriesId":66,"episodeFileId":1312,"seasonNumber":3,"episodeNumber":14,"title":"Ship Happens","airDate":"2009-08-14","airDateUtc":"2009-08-14T16:00:00Z","overview":"Henry's 20-year-old project returns with more on board than it left with.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":1754},{"seriesId":66,"episodeFileId":1314,"seasonNumber":3,"episodeNumber":15,"title":"Shower the People","airDate":"2009-08-21","airDateUtc":"2009-08-21T16:00:00Z","overview":"Jack investigates the deaths of scientists who drowned in less than liquid circumstances. Meanwhile, Allison's baby shower goes green.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":1755},{"seriesId":66,"episodeFileId":1315,"seasonNumber":3,"episodeNumber":16,"title":"You Don't Know Jack","airDate":"2009-08-28","airDateUtc":"2009-08-28T16:00:00Z","overview":"It's a busy day for Global Dynamics and Eureka as Allison's labor begins during a sonic cleaning of the company, and the townspeople exhibit Alzheimer's disease at the same time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":1756},{"seriesId":66,"episodeFileId":1316,"seasonNumber":3,"episodeNumber":17,"title":"Have an Ice Day","airDate":"2009-09-11","airDateUtc":"2009-09-11T16:00:00Z","overview":"Tess hopes her first day in charge of Global will be uneventful; the arrival of an Arctic ice core brings a new Ice Age to Eureka","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":1757},{"seriesId":66,"episodeFileId":1317,"seasonNumber":3,"episodeNumber":18,"title":"What Goes Around, Comes Around","airDate":"2009-09-18","airDateUtc":"2009-09-18T16:00:00Z","overview":"Zoe prepares to leave for college. Tess receives a job offer in Australia. A magnetic disturbance hovers above Eureka.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":1758},{"seriesId":66,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Lets All Go to Eureka","airDate":"2010-07-09","airDateUtc":"2010-07-09T16:00:00Z","overview":"See the characters from America\u2019s smartest little town like you\u2019ve never seen them before, as you get ready for the all-new season of Syfy\u2019s original series, Eureka. And this year, \u201cthe equation has changed.\u201d Yes, Eureka is going through a major transformation, and as you\u2019ll see, its inhabitants might never be the same.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1715},{"seriesId":66,"episodeFileId":3990,"seasonNumber":4,"episodeNumber":1,"title":"Founder's Day","airDate":"2010-07-09","airDateUtc":"2010-07-09T16:00:00Z","overview":"Dr. Grant, a former resident of the town, causes serious alarm with his unexpected return. His romantic interest in Allison Blake also causes significant friction with Sheriff Jack Carter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":1759},{"seriesId":66,"episodeFileId":3991,"seasonNumber":4,"episodeNumber":2,"title":"A New World","airDate":"2010-07-16","airDateUtc":"2010-07-16T16:00:00Z","overview":"As the Founder's Day festivities continue, Carter and the others must accustom themselves to the new time line and how Dr. Grant fits into it. Unfortunately, re-acclimatization needs to occur on a steep learning curve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":1760},{"seriesId":66,"episodeFileId":3992,"seasonNumber":4,"episodeNumber":3,"title":"All the Rage","airDate":"2010-07-23","airDateUtc":"2010-07-23T16:00:00Z","overview":"Dr. Isaac Parrish, the brilliant director of the Non-lethal Weapons Lab, is feeling a little undervalued these days. Then all his latent hostility goes viral, infecting everyone with such fury that no one is safe, especially Fargo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":1761},{"seriesId":66,"episodeFileId":3993,"seasonNumber":4,"episodeNumber":4,"title":"The Story of O2","airDate":"2010-07-30","airDateUtc":"2010-07-30T16:00:00Z","overview":"As Eureka celebrates Space Week, Dr. Ramsey unveils his cutting edge invention that could allow colonization of Mars. Unfortunately, a slight malfunction may cause it to incinerate Eureka before the dream is realized. Equally bad is that Eureka's go-to guy for crisis intervention has just gone to Boston to visit his daughter at Harvard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":1762},{"seriesId":66,"episodeFileId":3994,"seasonNumber":4,"episodeNumber":5,"title":"Crossing Over","airDate":"2010-08-06","airDateUtc":"2010-08-06T16:00:00Z","overview":"Claudia Donovan visits Eureka to see if Fargo's promises of wondrous devices are true, but she finds herself in the middle of a mystery suitable for Warehouse 13 when objects begin to appear randomly around the town and GD, and it must be solved before there are deadly consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":1763},{"seriesId":66,"episodeFileId":3995,"seasonNumber":4,"episodeNumber":6,"title":"Momstrosity","airDate":"2010-08-13","airDateUtc":"2010-08-13T16:00:00Z","overview":"Carter's camping trip with Kevin becomes a little scarier than ghost stories by the camp fire when a malfunction with the AI at Global Dynamics may turn some of them deadly. Elsewhere, Henry thinks about telling Grace the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":1764},{"seriesId":66,"episodeFileId":3996,"seasonNumber":4,"episodeNumber":7,"title":"Stoned","airDate":"2010-08-20","airDateUtc":"2010-08-20T16:00:00Z","overview":"Love is in the air as Carter gets fed up with Grant's pursuit of Allison, Zoe conceals her love and Henry courts Grace. But all the emotions may have to be put on simmer when people in town start turning to stone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1765},{"seriesId":66,"episodeFileId":3997,"seasonNumber":4,"episodeNumber":8,"title":"The Ex-files","airDate":"2010-08-27","airDateUtc":"2010-08-27T16:00:00Z","overview":"The gang begins seeing visions of people from their pasts, while the town seems to be collapsing around them. Meanwhile, Dr. Grant gets involved with a mysterious faction.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1766},{"seriesId":66,"episodeFileId":3998,"seasonNumber":4,"episodeNumber":9,"title":"I'll Be Seeing You","airDate":"2010-09-10","airDateUtc":"2010-09-10T16:00:00Z","overview":"Dr. Grant attempts to return to 1947 but when Carter intrudes, they both wind up stuck in the past under the threat of altering present-day Eureka once again.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1767},{"seriesId":66,"episodeFileId":3999,"seasonNumber":4,"episodeNumber":10,"title":"O Little Town","airDate":"2010-12-07","airDateUtc":"2010-12-07T17:00:00Z","overview":"Carter can't get into the Christmas spirit especially with the town surrounded by a force-field. Fargo organizes the GD holiday party, and Allison is full of holiday cheer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1768},{"seriesId":66,"episodeFileId":4000,"seasonNumber":4,"episodeNumber":11,"title":"Lift Off","airDate":"2011-07-11","airDateUtc":"2011-07-11T16:00:00Z","overview":"Zane pesters Jo for details she does not want to reveal. Carter problem-solves at Andy and S.A.R.A.H.'s wedding. Elsewhere, Zane's actions make him and Fargo unexpectedly airborne.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1769},{"seriesId":66,"episodeFileId":4001,"seasonNumber":4,"episodeNumber":12,"title":"Reprise","airDate":"2011-07-18","airDateUtc":"2011-07-18T16:00:00Z","overview":"Carter's duties expand to babysitting when Allison attends a medical conference, and Fargo finds his groove when a certain song is played. Meanwhile, a rocket scientist appears at Caf\u00e9 Diem.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1770},{"seriesId":66,"episodeFileId":4002,"seasonNumber":4,"episodeNumber":13,"title":"Glimpse","airDate":"2011-07-25","airDateUtc":"2011-07-25T16:00:00Z","overview":"Jo receives a technical boost to her crime-fighting ability with lenses that predict security breaches. Allison's headaches won't go away so Carter plans a vacation. Fargo, meanwhile, deals with an onslaught of volunteers when he announces a space mission with room for civilians.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1771},{"seriesId":66,"episodeFileId":4003,"seasonNumber":4,"episodeNumber":14,"title":"Up in the Air","airDate":"2011-08-01","airDateUtc":"2011-08-01T16:00:00Z","overview":"Jack deals with a bank robbery which may relate to the sudden gravity issues besetting the citizens of Eureka. Meanwhile, Fargo's rivalry with Isaac Parrish is boosted when he learns Holly and Parrish went on a date.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1772},{"seriesId":66,"episodeFileId":4004,"seasonNumber":4,"episodeNumber":15,"title":"Omega Girls","airDate":"2011-08-08","airDateUtc":"2011-08-08T16:00:00Z","overview":"When Zoe comes home for a visit, Jo faces an angry woman who doesn't accept her fumbling explanations about Zane. This all fades to background noise, however, when they find everyone in Eureka unconscious and must find a way to work together so they can revive the town and beat Beverly before she gets hold of valuable data.\r\n\r\n\r\nSYFY has this & \"Of Mites and Men\" Listed as episode 16 and does not have #17 \"Clash of the Titans Listed\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1773},{"seriesId":66,"episodeFileId":4005,"seasonNumber":4,"episodeNumber":16,"title":"Of Mites and Men","airDate":"2011-08-15","airDateUtc":"2011-08-15T16:00:00Z","overview":"Global Dynamics deals with two threats\u2014a visit from Senator Wen and robotic bugs that can consume everything\u2014it's unclear which is the bigger one. Meanwhile, Allison refuses to acknowledge any deficit with which the implants may have left her. \r\n\r\nSYFY has this & \"Omega Girls\" Listed as episode 16 and does not have #17 \"Clash of the Titans Listed\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1774},{"seriesId":66,"episodeFileId":4006,"seasonNumber":4,"episodeNumber":17,"title":"Clash of the Titans","airDate":"2011-08-22","airDateUtc":"2011-08-22T16:00:00Z","overview":"The Eureka atmosphere becomes toxic when Department of Defense auditor comes to assess the team's relationships.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1775},{"seriesId":66,"episodeFileId":4007,"seasonNumber":4,"episodeNumber":18,"title":"This One Time at Space Camp...","airDate":"2011-08-29","airDateUtc":"2011-08-29T16:00:00Z","overview":"The Astraeus candidates go through their final interviews while Carter and Allison appeal their relationship audit.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1776},{"seriesId":66,"episodeFileId":4008,"seasonNumber":4,"episodeNumber":19,"title":"One Small Step...","airDate":"2011-09-12","airDateUtc":"2011-09-12T16:00:00Z","overview":"When an explosion in the Astraeus lab accidentally sends Andy to Titan the team must devise a plan to save him before it's too late! Eureka","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1777},{"seriesId":66,"episodeFileId":4009,"seasonNumber":4,"episodeNumber":20,"title":"One Giant Leap...","airDate":"2011-09-19","airDateUtc":"2011-09-19T16:00:00Z","overview":"In the season finale - It's chaos in Eureka when an energy beam rips through main street but the Astraeus launch must go on...with or without Eureka intact.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1778},{"seriesId":66,"episodeFileId":4010,"seasonNumber":4,"episodeNumber":21,"title":"Do You See What I See","airDate":"2011-12-06","airDateUtc":"2011-12-06T17:00:00Z","overview":"The quaint town of geniuses is transformed into animated versions of themselves. Sheriff Carter and Allison Blake are secretly planning the perfect holiday surprise for their kids. But a mysterious kaleidoscopic wave of color crashes over Eureka, leaving the entire town and its inhabitants animated.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1779},{"seriesId":66,"episodeFileId":1250,"seasonNumber":5,"episodeNumber":1,"title":"Lost","airDate":"2012-04-16","airDateUtc":"2012-04-16T16:00:00Z","overview":"The Astraeus crew returns to Eureka four years later and must adapt to a myriad of changes, including a more oppressive version of Deputy Andy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1780},{"seriesId":66,"episodeFileId":1254,"seasonNumber":5,"episodeNumber":2,"title":"The Real Thing","airDate":"2012-04-23","airDateUtc":"2012-04-23T16:00:00Z","overview":"Carter and Andy are jailed for trying to steal a piece of equipment to complete a device that Kevin has assembled to search for the Astraeus crew. Meanwhile, Holly comes up with a dangerous theory.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1781},{"seriesId":66,"episodeFileId":1261,"seasonNumber":5,"episodeNumber":3,"title":"Force Quit","airDate":"2012-04-30","airDateUtc":"2012-04-30T16:00:00Z","overview":"Carter and Jo continue their search for the missing Astraeus crew. A surprising source confirms the new theory of the disaster, and offers to help them rescue the crew. Meanwhile, back at the lab, lives are at risk as more of the crew comes closer to the truth of their situation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1782},{"seriesId":66,"episodeFileId":1265,"seasonNumber":5,"episodeNumber":4,"title":"Friendly Fire","airDate":"2012-05-07","airDateUtc":"2012-05-07T16:00:00Z","overview":"When a smart fire experiment gets out of control, Carter and team discover that the Astraeus victims may be the cause. Meanwhile, Fargo deals with Holly's death, Grace struggles to maintain her relationship with Henry, and Allison fights her feelings about Jo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1783},{"seriesId":66,"episodeFileId":1270,"seasonNumber":5,"episodeNumber":5,"title":"Jack of All Trades","airDate":"2012-05-14","airDateUtc":"2012-05-14T16:00:00Z","overview":"Jack starts to swap bodies uncontrollably, which puts both his body and his consciousness in awkward situations. Meanwhile, Warren Hughes returns to GD to evaluate Astraeus crew members' reactions to their abductions. Elsewhere, Zane's quest for answers from the Matrix reveals disturbing results for both him and Fargo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1784},{"seriesId":66,"episodeFileId":1272,"seasonNumber":5,"episodeNumber":6,"title":"Worst Case Scenario","airDate":"2012-05-21","airDateUtc":"2012-05-21T16:00:00Z","overview":"It's disaster drill day at GD and everyone must participate in order to see how well they would do in a disaster. Unfortunately the computer conducting the drill makes the simulation a reality. Elsewhere, Fargo undergoes risky interfaces with the Matrix to confirm Zane's findings.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1785},{"seriesId":66,"episodeFileId":1281,"seasonNumber":5,"episodeNumber":7,"title":"Ex Machina","airDate":"2012-06-04","airDateUtc":"2012-06-04T16:00:00Z","overview":"Fargo is convinced that Holly is still inside of the Matrix computer, but the DOD is determined to wipe its hard drive clean -- losing Dr. Marten forever.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1786},{"seriesId":66,"episodeFileId":1282,"seasonNumber":5,"episodeNumber":8,"title":"In Too Deep","airDate":"2012-06-11","airDateUtc":"2012-06-11T16:00:00Z","overview":"Carter's romantic surprise for Allison turns deadly when they're trapped in a sinking marine lab with time and oxygen quickly running out.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1787},{"seriesId":66,"episodeFileId":1287,"seasonNumber":5,"episodeNumber":9,"title":"Smarter Carter","airDate":"2012-06-18","airDateUtc":"2012-06-18T16:00:00Z","overview":"While under the influence of a smart drug, Carter becomes a genius like everyone else in town and starts to change the laws of physics. Unfortunately, his condition soon endangers all of Eureka, including Allison's brother who is in town just to meet his new brother-in-law.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1788},{"seriesId":66,"episodeFileId":1292,"seasonNumber":5,"episodeNumber":10,"title":"The Honeymooners","airDate":"2012-06-25","airDateUtc":"2012-06-25T16:00:00Z","overview":"Jack and Allison's perfect honeymoon is interrupted when sabotage is discovered in Eureka. Elsewhere, Holly faces another hurdle to remain intact.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1789},{"seriesId":66,"episodeFileId":1298,"seasonNumber":5,"episodeNumber":11,"title":"Mirror, Mirror","airDate":"2012-07-02","airDateUtc":"2012-07-02T16:00:00Z","overview":"The Department of Justice arrives to investigate Grace, while Henry struggles with his conscience and Eureka is cut off from the world by a malfunctioning experiment that threatens to eradicate the town's populace.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1790},{"seriesId":66,"episodeFileId":1305,"seasonNumber":5,"episodeNumber":12,"title":"Double Take","airDate":"2012-07-09","airDateUtc":"2012-07-09T16:00:00Z","overview":"The people of Eureka are being kidnapped and replaced by body-doubles one by one unless Allison, Fargo and Zane can figure out how to avoid capture and save their town.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1791},{"seriesId":66,"episodeFileId":1307,"seasonNumber":5,"episodeNumber":13,"title":"Just Another Day","airDate":"2012-07-16","airDateUtc":"2012-07-16T16:00:00Z","overview":"In the series finale, wormholes randomly materialize around Eureka as the Department of Defense is set to shut the town.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":1792}],"episodeFile":[{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":7042099860,"dateAdded":"2018-10-10T21:40:54.822272Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:24:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1247},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Phoenix Rising-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E01.Phoenix Rising-Bluray-1080p.mkv","size":3520643848,"dateAdded":"2018-10-10T21:40:54.858754Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9227000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1248},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Bad to the Drone-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E01.Bad to the Drone-Bluray-1080p.mkv","size":3520266186,"dateAdded":"2018-10-10T21:40:54.887602Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9232000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1249},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Lost-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E01.Lost-Bluray-1080p.mkv","size":3520151774,"dateAdded":"2018-10-10T21:40:54.915981Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9319000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1250},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Many Happy Returns-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E02.Many Happy Returns-Bluray-1080p.mkv","size":3521172692,"dateAdded":"2018-10-10T21:40:54.974365Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9488000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1252},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Try, Try Again-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E02.Try, Try Again-Bluray-1080p.mkv","size":3521064730,"dateAdded":"2018-10-10T21:40:55.002992Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9255000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1253},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E02.The Real Thing-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E02.The Real Thing-Bluray-1080p.mkv","size":3520494093,"dateAdded":"2018-10-10T21:40:55.031268Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9348000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1254},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E02.What About Bob-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E02.What About Bob-Bluray-1080p.mkv","size":3519846866,"dateAdded":"2018-10-10T21:40:55.088211Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9183000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1256},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Best in Faux-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E03.Best in Faux-Bluray-1080p.mkv","size":3521016198,"dateAdded":"2018-10-10T21:40:55.117558Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9175000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1257},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Before I Forget-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E03.Before I Forget-Bluray-1080p.mkv","size":3520591985,"dateAdded":"2018-10-10T21:40:55.146458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1258},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Unpredictable-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E03.Unpredictable-Bluray-1080p.mkv","size":3520297332,"dateAdded":"2018-10-10T21:40:55.176213Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1259},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Force Quit-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E03.Force Quit-Bluray-1080p.mkv","size":3519321301,"dateAdded":"2018-10-10T21:40:55.234454Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9335000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1261},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Alienated-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E04.Alienated-Bluray-1080p.mkv","size":3520273240,"dateAdded":"2018-10-10T21:40:55.292247Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9239000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1263},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E04.I Do Over-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E04.I Do Over-Bluray-1080p.mkv","size":3520129962,"dateAdded":"2018-10-10T21:40:55.320973Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9188000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1264},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Friendly Fire-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E04.Friendly Fire-Bluray-1080p.mkv","size":3520063377,"dateAdded":"2018-10-10T21:40:55.349819Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9347000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1265},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Games People Play-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E04.Games People Play-Bluray-1080p.mkv","size":3519784390,"dateAdded":"2018-10-10T21:40:55.378659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9346000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1266},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Invincible-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E05.Invincible-Bluray-1080p.mkv","size":3520682554,"dateAdded":"2018-10-10T21:40:55.408466Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9239000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1267},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Duck, Duck Goose-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E05.Duck, Duck Goose-Bluray-1080p.mkv","size":3520631062,"dateAdded":"2018-10-10T21:40:55.43743Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9566000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1268},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Show Me the Mummy-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E05.Show Me the Mummy-Bluray-1080p.mkv","size":3520221289,"dateAdded":"2018-10-10T21:40:55.465707Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9182000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1269},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Jack of All Trades-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E05.Jack of All Trades-Bluray-1080p.mkv","size":3519985807,"dateAdded":"2018-10-10T21:40:55.494082Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9342000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1270},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Worst Case Scenario-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E06.Worst Case Scenario-Bluray-1080p.mkv","size":3521641576,"dateAdded":"2018-10-10T21:40:55.549954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9462000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1272},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Noche de Sue\u00f1os-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E06.Noche de Sue\u00f1os-Bluray-1080p.mkv","size":3520828953,"dateAdded":"2018-10-10T21:40:55.578003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9365000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1273},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Phased and Confused-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E06.Phased and Confused-Bluray-1080p.mkv","size":3520721339,"dateAdded":"2018-10-10T21:40:55.607132Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9312000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1274},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Dr. Nobel-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E06.Dr. Nobel-Bluray-1080p.mkv","size":3519869128,"dateAdded":"2018-10-10T21:40:55.634788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9446000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1275},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Here Come the Suns-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E07.Here Come the Suns-Bluray-1080p.mkv","size":3521064894,"dateAdded":"2018-10-10T21:40:55.690714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9470000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1277},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Blink-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E07.Blink-Bluray-1080p.mkv","size":3520573074,"dateAdded":"2018-10-10T21:40:55.718436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9732000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1278},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Family Reunion-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E07.Family Reunion-Bluray-1080p.mkv","size":3519952173,"dateAdded":"2018-10-10T21:40:55.77407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9254000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1280},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Ex Machina-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E07.Ex Machina-Bluray-1080p.mkv","size":3519836561,"dateAdded":"2018-10-10T21:40:55.8037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9357000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1281},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E08.In Too Deep-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E08.In Too Deep-Bluray-1080p.mkv","size":3520861038,"dateAdded":"2018-10-10T21:40:55.831458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9329000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1282},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E08.E=MC-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E08.E=MC-Bluray-1080p.mkv","size":3520485086,"dateAdded":"2018-10-10T21:40:55.887534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9252000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1284},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Right as Raynes-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E08.Right as Raynes-Bluray-1080p.mkv","size":3520098760,"dateAdded":"2018-10-10T21:40:55.917127Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9284000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1285},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E08.From Fear to Eternity-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E08.From Fear to Eternity-Bluray-1080p.mkv","size":3520006901,"dateAdded":"2018-10-10T21:40:55.949472Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9180000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1286},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Smarter Carter-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E09.Smarter Carter-Bluray-1080p.mkv","size":3520988825,"dateAdded":"2018-10-10T21:40:55.977949Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9335000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1287},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Sight Unseen-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E09.Sight Unseen-Bluray-1080p.mkv","size":3520424281,"dateAdded":"2018-10-10T21:40:56.006542Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9252000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1288},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Primal-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E09.Primal-Bluray-1080p.mkv","size":3520391837,"dateAdded":"2018-10-10T21:40:56.036366Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9973000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"40:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1289},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Welcome Back, Carter-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E09.Welcome Back, Carter-Bluray-1080p.mkv","size":3519830243,"dateAdded":"2018-10-10T21:40:56.065175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9184000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1290},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E10.The Honeymooners-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E10.The Honeymooners-Bluray-1080p.mkv","size":3520763888,"dateAdded":"2018-10-10T21:40:56.122626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9329000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1292},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E10.God is in the Details-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E10.God is in the Details-Bluray-1080p.mkv","size":3519908218,"dateAdded":"2018-10-10T21:40:56.179558Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9248000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1294},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Purple Haze-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E10.Purple Haze-Bluray-1080p.mkv","size":3519846813,"dateAdded":"2018-10-10T21:40:56.207936Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9298000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1295},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Your Face or Mine-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E10.Your Face or Mine-Bluray-1080p.mkv","size":3519752620,"dateAdded":"2018-10-10T21:40:56.237836Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9181000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1296},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Mirror, Mirror-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E11.Mirror, Mirror-Bluray-1080p.mkv","size":3521002652,"dateAdded":"2018-10-10T21:40:56.295351Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9322000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1298},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Insane in the P-Brane-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E11.Insane in the P-Brane-Bluray-1080p.mkv","size":3520483294,"dateAdded":"2018-10-10T21:40:56.323761Z","releaseGroup":"Brane","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9181000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1299},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E11.H.O.U.S.E. Rules-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E11.H.O.U.S.E. Rules-Bluray-1080p.mkv","size":3520356192,"dateAdded":"2018-10-10T21:40:56.353324Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9310000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1300},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Maneater-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E11.Maneater-Bluray-1080p.mkv","size":3520077952,"dateAdded":"2018-10-10T21:40:56.382415Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9418000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1301},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E12.All That Glitters-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E12.All That Glitters-Bluray-1080p.mkv","size":3521117049,"dateAdded":"2018-10-10T21:40:56.411526Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9227000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1302},{"seriesId":66,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Once in a Lifetime-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 01\/S01E12.Once in a Lifetime-Bluray-1080p.mkv","size":3520432249,"dateAdded":"2018-10-10T21:40:56.470708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1304},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Double Take-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E12.Double Take-Bluray-1080p.mkv","size":3520366663,"dateAdded":"2018-10-10T21:40:56.500149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9330000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1305},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E12.It's Not Easy Being Green-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E12.It's Not Easy Being Green-Bluray-1080p.mkv","size":3519723678,"dateAdded":"2018-10-10T21:40:56.528434Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9186000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1306},{"seriesId":66,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Just Another Day-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 05\/S05E13.Just Another Day-Bluray-1080p.mkv","size":3521695355,"dateAdded":"2018-10-10T21:40:56.557018Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9330000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1307},{"seriesId":66,"seasonNumber":2,"relativePath":"Season 02\/S02E13.A Night at Global Dynamics-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 02\/S02E13.A Night at Global Dynamics-Bluray-1080p.mkv","size":3520354527,"dateAdded":"2018-10-10T21:40:56.585557Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9363000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1308},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E13.If You Build It-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E13.If You Build It-Bluray-1080p.mkv","size":3519895928,"dateAdded":"2018-10-10T21:40:56.614467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9188000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1309},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Ship Happens-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E14.Ship Happens-Bluray-1080p.mkv","size":3520452008,"dateAdded":"2018-10-10T21:40:56.702624Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9183000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1312},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Shower the People-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E15.Shower the People-Bluray-1080p.mkv","size":3519938702,"dateAdded":"2018-10-10T21:40:56.759918Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9181000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1314},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E16.You Don't Know Jack-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E16.You Don't Know Jack-Bluray-1080p.mkv","size":3520020750,"dateAdded":"2018-10-10T21:40:56.794452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9366000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1315},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Have an Ice Day-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E17.Have an Ice Day-Bluray-1080p.mkv","size":3520522841,"dateAdded":"2018-10-10T21:40:56.826316Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9183000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1316},{"seriesId":66,"seasonNumber":3,"relativePath":"Season 03\/S03E18.What Goes Around, Comes Around-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 03\/S03E18.What Goes Around, Comes Around-Bluray-1080p.mkv","size":3519167017,"dateAdded":"2018-10-10T21:40:56.855264Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9178000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1317},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Founder's Day-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E01.Founder's Day-Bluray-1080p.mkv","size":1632968672,"dateAdded":"2018-10-12T13:20:07.228051Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":447363,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499272,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3990},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E02.A New World-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E02.A New World-Bluray-1080p.mkv","size":1628263129,"dateAdded":"2018-10-12T13:25:01.286531Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428420,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500383,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3991},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E03.All the Rage-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E03.All the Rage-Bluray-1080p.mkv","size":1628435408,"dateAdded":"2018-10-12T13:30:50.923943Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424189,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499861,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3992},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E04.The Story of O2-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E04.The Story of O2-Bluray-1080p.mkv","size":1631843358,"dateAdded":"2018-10-12T13:35:14.626614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443104,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4501168,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3993},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Crossing Over-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E05.Crossing Over-Bluray-1080p.mkv","size":1627528238,"dateAdded":"2018-10-12T13:48:05.423705Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428776,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499968,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3994},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Momstrosity-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E06.Momstrosity-Bluray-1080p.mkv","size":1634133405,"dateAdded":"2018-10-12T13:48:05.487239Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":450998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499030,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3995},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Stoned-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E07.Stoned-Bluray-1080p.mkv","size":1609788142,"dateAdded":"2018-10-12T13:48:05.537391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429296,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500010,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:21","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3996},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The Ex-files-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E08.The Ex-files-Bluray-1080p.mkv","size":1624115945,"dateAdded":"2018-10-12T13:48:05.58919Z","releaseGroup":"files","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415118,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4501387,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3997},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E09.I'll Be Seeing You-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E09.I'll Be Seeing You-Bluray-1080p.mkv","size":1630204360,"dateAdded":"2018-10-12T13:48:05.628494Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439335,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500112,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3998},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E10.O Little Town-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E10.O Little Town-Bluray-1080p.mkv","size":1630471186,"dateAdded":"2018-10-12T13:48:05.656314Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435833,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4502008,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":3999},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Lift Off-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E11.Lift Off-Bluray-1080p.mkv","size":1678440079,"dateAdded":"2018-10-12T13:48:05.716449Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":456537,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4499898,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4000},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Reprise-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E12.Reprise-Bluray-1080p.mkv","size":1660774649,"dateAdded":"2018-10-12T13:48:05.756048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417245,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4503019,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4001},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Glimpse-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E13.Glimpse-Bluray-1080p.mkv","size":1629184862,"dateAdded":"2018-10-12T13:48:05.795153Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426626,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4501318,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4002},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Up in the Air-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E14.Up in the Air-Bluray-1080p.mkv","size":1634379964,"dateAdded":"2018-10-12T13:48:05.833347Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443873,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498947,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4003},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Omega Girls-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E15.Omega Girls-Bluray-1080p.mkv","size":1666925774,"dateAdded":"2018-10-12T13:48:05.865814Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426413,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4500498,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4004},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Of Mites and Men-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E16.Of Mites and Men-Bluray-1080p.mkv","size":1626079617,"dateAdded":"2018-10-12T13:48:05.898006Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420123,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4501248,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4005},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Clash of the Titans-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E17.Clash of the Titans-Bluray-1080p.mkv","size":1635946211,"dateAdded":"2018-10-12T13:48:05.929116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500459,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4006},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E18.This One Time at Space Camp-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E18.This One Time at Space Camp-Bluray-1080p.mkv","size":1631445872,"dateAdded":"2018-10-12T13:48:05.960745Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434511,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500330,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4007},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E19.One Small Step-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E19.One Small Step-Bluray-1080p.mkv","size":1630764629,"dateAdded":"2018-10-12T13:48:05.989394Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436805,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498727,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4008},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E20.One Giant Leap-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E20.One Giant Leap-Bluray-1080p.mkv","size":1676357469,"dateAdded":"2018-10-12T13:48:06.021444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":453034,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4501777,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4009},{"seriesId":66,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Do You See What I See-Bluray-1080p.mkv","path":"\/tv\/Eureka\/Season 04\/S04E21.Do You See What I See-Bluray-1080p.mkv","size":1611789984,"dateAdded":"2018-10-12T13:48:06.051884Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436167,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4503877,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4010}],"queue":[]},"57":{"series":{"title":"Black Rock Shooter","alternateTitles":[],"sortTitle":"black rock shooter","status":"ended","ended":true,"overview":"These young girls hearts are pure, and then violent!\r\n\r\nMato Kuroi just got into junior high school, and on the first day, someone catches her eye; her classmate Yomi Takanashi. The two meet.\r\n\r\nThe innocent and naive Mato. The mature Yomi. Seemingly opposites, but the time they spend together only strengthens a growing friendship.\r\n\r\nBut as they go into their second year at the school, they get placed in separate classes, and they begin to grow apart.\r\n\r\nBut somewhere simultaneously...\r\n\r\nIn another world, a young girl, blue fire residing in her eyes, Black Rock Shooter faces another young girl; this one holding a jet-black scythe, Dead Master, and a battle to the death begins to unfold.","previousAiring":"2012-03-22T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/80\/banner.jpg?lastWrite=637103832381039520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/162711-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/80\/poster.jpg?lastWrite=637103832389399370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/162711-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/80\/fanart.jpg?lastWrite=637432652664788830","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/162711\/backgrounds\/5fc524b24d8b2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-07-23T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":4,"sizeOnDisk":1365311284,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-22T15:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10998479452,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Black Rock Shooter","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":162711,"tvRageId":30405,"tvMazeId":8202,"firstAired":"2012-02-03T00:00:00Z","seriesType":"standard","cleanTitle":"blackrockshooter","imdbId":"tt2198397","titleSlug":"black-rock-shooter","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Anime"],"tags":[],"added":"2018-10-13T16:14:37.868746Z","ratings":{"votes":880,"value":7.6},"statistics":{"seasonCount":1,"episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":12,"sizeOnDisk":12363790736,"percentOfEpisodes":100.0},"id":80},"episodes":[{"seriesId":80,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Pilot Edition: 01","airDate":"2009-09-30","airDateUtc":"2009-09-29T15:00:00Z","overview":"Black\u2605Rock Shooter -Pilot Edition 1-","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6528},{"seriesId":80,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Pilot Edition: 02","airDate":"2009-09-30","airDateUtc":"2009-09-29T15:25:00Z","overview":"Black\u2605Rock Shooter -Pilot Edition 2-","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6529},{"seriesId":80,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Pilot Edition: 03","airDate":"2009-09-30","airDateUtc":"2009-09-29T15:50:00Z","overview":"Black\u2605Rock Shooter -Pilot Edition 3-","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6530},{"seriesId":80,"episodeFileId":14590,"seasonNumber":0,"episodeNumber":4,"title":"Black\u2605Rock Shooter","airDate":"2010-07-24","airDateUtc":"2010-07-23T15:00:00Z","overview":"These young girls hearts are pure, and then violent!\r\n\r\nMato Kuroi just got into junior high school, and on the first day, someone catches her eye; her classmate Yomi Takanashi. The two meet.\r\n\r\nThe innocent and naive Mato. The mature Yomi. Seemingly opposites, but the time they spend together only strengthens a growing friendship.\r\n\r\nBut as they go into their second year at the school, they get placed in separate classes, and they begin to grow apart.\r\n\r\nBut somewhere simultaneously...\r\n\r\nIn another world, a young girl, blue fire residing in her eyes, Black Rock Shooter faces another young girl; this one holding a jet-black scythe, Dead Master, and a battle to the death begins to unfold.\r\n\r\n(Source: The Official Black Rock Shooter Site)","hasFile":true,"monitored":false,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6531},{"seriesId":80,"episodeFileId":4239,"seasonNumber":1,"episodeNumber":1,"title":"How Much Louder Do I Need to Shout?","airDate":"2012-02-03","airDateUtc":"2012-02-02T15:00:00Z","overview":"In another world, the eponymous Black Rock Shooter battles a mysterious red-eyed opponent. Meanwhile, in the human world, Mato Kuroi enters middle school and takes an interest in her classmate, Yomi Takanashi. The two quickly become friends due to their common fondness for a book from their childhood. After inviting Mato to her house, Yomi becomes worried when Kagari Izuriha, a wheelchair-bound girl who wants to keep Yomi to herself, arrives and acts with hostility towards Mato, causing her to become frightened. Meanwhile, in the other world, Black Rock Shooter follows a green trail to a wasteland filled with broken toys where she is attacked by a girl resembling Kagari named Chariot. After speaking with the student counselor, Saya Irino, Mato renews her determination to become good friends with Yomi and invites her to go to a festival with her. In the meantime, before Black Rock Shooter can prepare a counter-attack against Chariot, she is stopped by a girl covered in chains named Dead Master.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6520},{"seriesId":80,"episodeFileId":4240,"seasonNumber":1,"episodeNumber":2,"title":"The Sky Embracing Dawn","airDate":"2012-02-10","airDateUtc":"2012-02-09T15:00:00Z","overview":"As Black Rock Shooter continues to struggle against Chariot and Dead Master, Mato waits at the festival for Yomi, but she never arrives as Kagari wouldn't let her. As Mato dreams that night of Black Rock Shooter, who had a heart scarred on her chest, she discovers Yomi has the same scar the next day, yelling at her for having no spine. After consulting with Saya, who tells her dreams serve a deep meaning between friends, Mato goes to Yomi's house, but Kagari stops Yomi from coming to see her by throwing herself down the stairs. As Kagari is taking into hospital for a twisted wrist, Mato hears from Yomi's mother about how Kagari was hit by a car whilst chasing after Yomi, demanding she look after her. Determined in her belief that Yomi shouldn't suffer for that, Mato voices her pleas to go home with Yomi, calling her by her first name. Mato helps Yomi realise her true feelings, wanting to be earnest friends with both Mato and Kagari. As Dead Master manages to break free from her binds, but she is captured by another evil, Black Gold Saw, whilst Black Rock Shooter is forced to kill Chariot, which has its effect on Kagari.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6521},{"seriesId":80,"episodeFileId":4241,"seasonNumber":1,"episodeNumber":3,"title":"Tears Held Back Threaten to Spill Over","airDate":"2012-02-17","airDateUtc":"2012-02-16T15:00:00Z","overview":"As Mato prepares to go to training camp with her basketball club, Yomi starts to become jealous of Mato's childhood friend, Yuu Kotari. Mato has more dreams involving Black Gold Saw during camp, and at the same time, Saya takes an interest in Yomi. Upon returning to school, the basketball coach, Arata Kohata, discovers the boy she had a crush on had posted her love letter for all to see. She holds back tears in front of the crowd, and ultimately laughs off the incident as if it hardly mattered to her. Kohata visits Saya afterward, but Saya begins acting strangely by taunting Kohata, reminding her that everyone is laughing at her. In the other world, Black Rock Shooter attacks Black Gold Saw's hideout, killing her minions. Simultaneously in the human word, Kohata experiences a sudden pain in her head and falls unconscious in front of Mato.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6522},{"seriesId":80,"episodeFileId":4242,"seasonNumber":1,"episodeNumber":4,"title":"The World I Once Dreamt of Closes","airDate":"2012-02-24","airDateUtc":"2012-02-23T15:00:00Z","overview":"In the other world, another being named Strength is seen throwing Chariot's corpse off a cliff. Meanwhile, Kagari starts going to school and starts making friends which, on top of Mato's duties with her club, causes Yomi to feel unwanted. As Kagari asks Mato for some advice on how to cheer up Yomi, they stumble upon Yomi arguing with Kagari's friends, saying something she soon regrets and locking herself in her room, ignoring Kagari's visits. The next day, the boy Arata confessed to the other day tries to apologise to her, but she has no memory of him. Meanwhile, Yomi falls further into depression when she receives a text from Yuu. Believing Kagari to be the only one who would need her, Yomi snaps when Kagari tells her to let her go. This has an effect on the other world, as Dead Master emerges with a darker personality and stands off against Black Rock Shooter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6523},{"seriesId":80,"episodeFileId":4243,"seasonNumber":1,"episodeNumber":5,"title":"Black\u2605Rock Shooter","airDate":"2012-03-02","airDateUtc":"2012-03-01T15:00:00Z","overview":"As Black Rock Shooter fights against a huge army under Dead Master's control, Yomi behaves strangely at school, cutting her hair in class, causing Mato to become concerned, even lashing out at Kagari. As Yuu becomes cautious of Saya's actions, Mato sees the battle between Black Rock Shooter and Dead Master in her sleep. As Mato visits Saya the next day, she tries to strangle her, leaving her confounded. After seeing the painting Yomi drew of her, Mato comes to realise that is because of her that Yomi is suffering. She soon discovers that noone in the basketball club remembers Yuu, soon finding her own memories of her to be a lie. Yuu then appears before her, telling her that the other world in her dreams is real. She explains how the people in the other world represent the sorrow upon their real world counterparts, and if they are killed, the person forgets about their attachments that caused them that grief, meaning if Dead Master is killed, Yomi would forget all about her. Offering Mato the chance to save Yomi without resorting to fighting, Yuu puts her into a deep sleep, sending her mind into that of Black Rock Shooter, only to find she had just killed Dead Master. The shock of this causes Black Rock Shooter's blazing blue eye to become purple, becoming Insane Black Rock Shooter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6524},{"seriesId":80,"episodeFileId":4244,"seasonNumber":1,"episodeNumber":6,"title":"A Hope That Shouldn't Have Been There","airDate":"2012-03-09","airDateUtc":"2012-03-08T15:00:00Z","overview":"As Mato breaks down from what she had just done, Black Rock Shooter transforms into Insane Black Rock Shooter and stands against Black Gold Saw. As Black Rock Shooter rips off her own arm to fight against Black Gold Saw, Mato passes out from the pain, preventing Yuu from calling her back to her body. She brings her to Saya, who wanted to prevent Black Rock Shooter from causing destruction in the other world, but can't bring herself to kill Mato in order to do so. Instead, Saya transport her mind to Black Gold Saw's so she can try to reach Mato. Saya talks about how she befriended Yuu, who had been constantly bullied at both home and school. One night, when Yuu's house caught fire, Saya wrongly assumed Yuu was responsible and felt guilty. When Saya found her the next day, she asked Saya to protect her and awakened her connection to Black Gold Saw. Back in the present, Strength steps in to fight Black Rock Shooter in Black Gold Saw's place, allowing Saya to return. As Strength overwhelms Black Rock Shooter in battle, Yomi returns to school with no apparent memory of Mato.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6525},{"seriesId":80,"episodeFileId":4245,"seasonNumber":1,"episodeNumber":7,"title":"Wish Upon the Star Shooting Through the Dark","airDate":"2012-03-16","airDateUtc":"2012-03-15T15:00:00Z","overview":"As Saya finds she is no longer able to connect with Black Gold Saw, Yuu sends her own mind to that of Strength's to try and talk to Mato, who finally regains consciousness and attempts to hold back Black Rock Shooter. However, Mato starts to hesitate when she realises how she had been running away from her own feelings. Just then, Strength starts to speak and goes beserk on Black Rock Shooter, revealing she is actually the real Yuu. Strength, the Yuu that Mato knew, explains how she gained emotions when Yuu, who was filled with an extraordinary amount of sorrow, was able to contact her, stopping her from dying at the hands of Black Rock Shooter. Finding a world of fighting better than the world she lived in, Yuu decided to switch places with Strength so that she would have to face reality instead. Meanwhile, as word reaches school that Mato had not returned home, Yomi feels a pain in her heart and remembers her friendship with her, which in turn causes Dead Master to reawaken.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6526},{"seriesId":80,"episodeFileId":4246,"seasonNumber":1,"episodeNumber":8,"title":"Overcome the World","airDate":"2012-03-23","airDateUtc":"2012-03-22T15:00:00Z","overview":"As Strength prepares to sacrifice herself in order to stop Yuu, Mato becomes determined to stop Black Rock Shooter from killing her. She ends up inside a blue world, where she herself is Black Rock Shooter, standing against Insane Black Rock Shooter. As Kagari and Arata also recover their painful memories, the revived people of the other world combine their strengths to give Mato the power to defeat Insane Black Rock Shooter, uniting the world as one. Upon regaining herself, Mato finds Strength in a weakened state, who assures Yuu that she'll be able to make friends in the real world and gives her thanks to Mato before disappearing into the wind. Afterwards, Yuu returns to her original body whilst Mato, having regained consciousness, reunites with Yomi. As life returns to normal, Mato, Yomi, Kagari and Yuu all become friends together whilst Strength returns to her place in the other world, alongside Black Rock Shooter. The episode ends with Black Rock Shooter saying she will continue fighting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6527}],"episodeFile":[{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E01.How Much Louder Do I Need to Shout-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E01.How Much Louder Do I Need to Shout-Bluray-1080p.mkv","size":1433616544,"dateAdded":"2018-10-13T16:35:49.927932Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4239},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Sky Embracing Dawn-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E02.The Sky Embracing Dawn-Bluray-1080p.mkv","size":1478772267,"dateAdded":"2018-10-13T16:35:50.196715Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4240},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Tears Held Back Threaten to Spill Over-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E03.Tears Held Back Threaten to Spill Over-Bluray-1080p.mkv","size":1115967992,"dateAdded":"2018-10-13T16:35:50.233618Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4241},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The World I Once Dreamt of Closes-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E04.The World I Once Dreamt of Closes-Bluray-1080p.mkv","size":1254633340,"dateAdded":"2018-10-13T16:35:50.539869Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6459049,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4242},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Black\u2605Rock Shooter-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E05.Black\u2605Rock Shooter-Bluray-1080p.mkv","size":1328678926,"dateAdded":"2018-10-13T16:35:50.847363Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4243},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E06.A Hope That Shouldn't Have Been There-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E06.A Hope That Shouldn't Have Been There-Bluray-1080p.mkv","size":1296982217,"dateAdded":"2018-10-13T16:35:50.884372Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4244},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Wish Upon the Star Shooting Through the Dark-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E07.Wish Upon the Star Shooting Through the Dark-Bluray-1080p.mkv","size":1554834984,"dateAdded":"2018-10-13T16:35:50.990173Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4245},{"seriesId":80,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Overcome the World-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Season 01\/S01E08.Overcome the World-Bluray-1080p.mkv","size":1534993182,"dateAdded":"2018-10-13T16:35:51.142106Z","releaseGroup":"Final8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:00","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4246},{"seriesId":80,"seasonNumber":0,"relativePath":"Specials\/S00E04.Black\u2605Rock Shooter-Bluray-1080p.mkv","path":"\/tv\/Black Rock Shooter\/Specials\/S00E04.Black\u2605Rock Shooter-Bluray-1080p.mkv","size":1365311284,"dateAdded":"2020-06-25T08:12:51.190215Z","releaseGroup":"Doki-SGKK","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2963294,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14590}],"queue":[]},"58":{"series":{"title":"Heroes","alternateTitles":[],"sortTitle":"heroes","status":"ended","ended":true,"overview":"Heroes is a cult serial saga about people all over the world discovering that they have superpowers and trying to deal with how this change affects their lives. Not only are they discovering what having superpowers means to them but also the larger picture of where those powers come from and what they might mean to the rest of the world.","previousAiring":"2010-02-09T01:00:00Z","network":"NBC","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/74\/banner.jpg?lastWrite=636749716110860770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79501-g15.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/74\/poster.jpg?lastWrite=636749716111420760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79501-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/74\/fanart.jpg?lastWrite=636749716108580800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79501-18.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2006-07-22T00:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":34,"sizeOnDisk":2107876328,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-05-22T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":37539976979,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-12-04T01:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":45826381196,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-04-28T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":8789220217,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2010-02-09T01:00:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":66915670387,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Heroes","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":79501,"tvRageId":8172,"tvMazeId":134,"firstAired":"2006-09-25T00:00:00Z","seriesType":"standard","cleanTitle":"heroes","imdbId":"tt0813715","titleSlug":"heroes","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Science Fiction","Thriller"],"tags":[],"added":"2018-10-12T20:06:50.295095Z","ratings":{"votes":14673,"value":8.4},"statistics":{"seasonCount":4,"episodeFileCount":79,"episodeCount":79,"totalEpisodeCount":112,"sizeOnDisk":161179125107,"percentOfEpisodes":100.0},"id":74},"episodes":[{"seriesId":74,"episodeFileId":10199,"seasonNumber":0,"episodeNumber":1,"title":"Unaired Pilot","airDate":"2006-07-21","airDateUtc":"2006-07-22T00:00:00Z","overview":"One of the special features accompanying the Season One DVD is the unaired pilot in its entirety. The episode, a full 72 minutes, was shown at the 2006 San Diego Comic-Con. This version was later cut to a shorter version, simply titled In His Own Image. Even that version would eventually be trimmed to become what is now Genesis. The original intent of the unaired pilot was to have multiple chapters per episode, hence the actual episode itself does not have a formal name.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":5939},{"seriesId":74,"episodeFileId":10200,"seasonNumber":1,"episodeNumber":1,"title":"Genesis","airDate":"2006-09-25","airDateUtc":"2006-09-26T00:00:00Z","overview":"In this episode, we are introduced to Peter Petrelli, a young man who dreams of flying, and his brother Nathan, a ruthless politician who thinks that Peter is dreaming his life away. Meanwhile, ordinary people from all around the world are starting to suspect that they have abilities beyond those of normal humans. Artist Isaac Mendez believes that he is painting the future, high school cheerleader Claire Bennet is suddenly able to recover from any wound almost instantly, Japanese businessman Hiro Nakamura tries to convince a friend that he can bend space and time, and single mother Niki Sanders starts seeing strange things in mirrors.Upon learning of his father's death, genetics Professor Mohinder Suresh begins to look into his research for a clue to why he was killed. When he follows his father's trail to New York City, however, Mohinder learns that someone else is on the trail of the same research. Someone who may kill to protect the secrets of the next step in human evolution.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5973},{"seriesId":74,"episodeFileId":10201,"seasonNumber":1,"episodeNumber":2,"title":"Don't Look Back","airDate":"2006-10-02","airDateUtc":"2006-10-03T00:00:00Z","overview":"Los Angeles Police Officer Matt Parkman is working crowd control at a murder scene when he alone begins to hear the muffled cries of a little girl somewhere in the house. Claire's heroism brings her unwanted attention. Peter comes closer to learning the truth about his and Nathan's powers. Hiro finds a comic book which leads him to Isaac.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5974},{"seriesId":74,"episodeFileId":10202,"seasonNumber":1,"episodeNumber":3,"title":"One Giant Leap","airDate":"2006-10-09","airDateUtc":"2006-10-10T00:00:00Z","overview":"Claire's romantic interlude with the football quarterback takes a tragic turn. Hiro convinces his friend, Ando, that it is their destiny to travel to America to save the world. Meanwhile, Nathan uses Peter's accident for his own political gain. Officer Matt Parkman, Mohinder Suresh, and the FBI are all on the trail of the mysterious Sylar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5975},{"seriesId":74,"episodeFileId":10203,"seasonNumber":1,"episodeNumber":4,"title":"Collision","airDate":"2006-10-16","airDateUtc":"2006-10-17T00:00:00Z","overview":"After her night with Brody, Claire wakes up in the last place she would have imagined. Matt meets a couple of men who seem to know too much about him. Mohinder Suresh finds one of the heroes. Hiro's plan backfires in Las Vegas. Linderman's assistant makes more trouble for Niki just as Nathan arrives in Las Vegas to talk to the crooked casino owner about a campaign contribution. Isaac paints a bleak future for Claire. Peter receives a cryptic message from a very unexpected source.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5976},{"seriesId":74,"episodeFileId":10204,"seasonNumber":1,"episodeNumber":5,"title":"Hiros","airDate":"2006-10-23","airDateUtc":"2006-10-24T00:00:00Z","overview":"Matt uses his abilities to help his marriage. Niki, distraught over another blackout, arrives home to learn that her husband, D.L., has escaped from prison. Claire tells her father about some of the things she's been through lately. Down and out in Vegas, Hiro finally connects with another hero. Peter must figure out what to do with the mysterious message.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5977},{"seriesId":74,"episodeFileId":10205,"seasonNumber":1,"episodeNumber":6,"title":"Better Halves","airDate":"2006-10-30","airDateUtc":"2006-10-31T01:00:00Z","overview":"Hiro and Ando plan to continue on their journey to New York, but they are given a tempting offer by a high-roller while still in Las Vegas. Mr. Bennet, the man in the horn-rimmed glasses, arranges a meeting for his daughter, Claire, with her biological parents. Claire hopes that this meeting can shed some light on her abilities. Hiro calls Isaac's again, but Peter answers and is able to relay the message from the future. Mohinder returns to India to bury his father, saying goodbye to Eden. Niki receives a surprise visitor at her home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5978},{"seriesId":74,"episodeFileId":10206,"seasonNumber":1,"episodeNumber":7,"title":"Nothing to Hide","airDate":"2006-11-06","airDateUtc":"2006-11-07T01:00:00Z","overview":"Niki opens up to a friend when her son becomes the subject of a crisis. Hiro overcomes his doubts about his heroism. Nathan and his wife come up with a strategy to win the election and Peter provides some unexpected assistance. Claire finds out what happened to her missing video tape. Matt and Audrey continue their investigation of the serial killer Sylar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5979},{"seriesId":74,"episodeFileId":10207,"seasonNumber":1,"episodeNumber":8,"title":"Seven Minutes to Midnight","airDate":"2006-11-13","airDateUtc":"2006-11-14T01:00:00Z","overview":"While mourning for his father in India, Mohinder begins to have strange dreams of the past. Niki begins to understand herself. Hiro and Ando meet an interesting person while stopping at a diner. Matt and Audrey follow a lead regarding the mysterious Sylar, but it leads to something unexpected. Claire is getting ready for homecoming with hopes of returning to a normal life. Meanwhile her father locates another hero, and urgently requests his help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5980},{"seriesId":74,"episodeFileId":10208,"seasonNumber":1,"episodeNumber":9,"title":"Homecoming","airDate":"2006-11-20","airDateUtc":"2006-11-21T01:00:00Z","overview":"Events in this episode take place on the day of Claire's Homecoming game. Claire's father is growing desperate to stop the villain who is coming after Claire. Nathan gets the painting from Linderman, and is horrified by what it depicts. Mohinder's dreams hold secrets about his father. Ando waits for Hiro who still has not returned from the past. Peter must try to save the cheerleader and also himself.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5981},{"seriesId":74,"episodeFileId":10209,"seasonNumber":1,"episodeNumber":10,"title":"Six Months Ago","airDate":"2006-11-27","airDateUtc":"2006-11-28T01:00:00Z","overview":"This episode shows the heroes six months ago. Chandra Suresh, Mohinder's father, arrives in New York looking for special people. He meets up with an individual that embraces the chance to be unique. Peter graduates from nursing school. Nathan plans to prosecute a case that could cause complications for the Petrellis. Niki receives a visit from her father which brings out the worst in her. Hiro tries to alter the future for someone important to him. Claire discovers her abilities right after joining the cheerleading squad, and her father meets up with someone special.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5982},{"seriesId":74,"episodeFileId":10210,"seasonNumber":1,"episodeNumber":11,"title":"Fallout","airDate":"2006-12-04","airDateUtc":"2006-12-05T01:00:00Z","overview":"Peter is in police custody after being mistakenly arrested in Odessa, forcing Nathan to take time out of his Congressional campaign. Claire deals with the implications of telling her father the truth. Matt and Audrey pursue a new lead in the hunt for Sylar unaware that the killer has been captured by Mr. Bennet. Hiro and Ando arrive in Odessa, too late to \"save the cheerleader.\" After Niki learns of Jessica's recent actions, she must make a difficult decision to keep her family safe and so she decides to get herself arrested. Mohinder takes fresh steps down his newly-chosen path by coming back to New York and continuing his fathers research. Isaac's painting of the exploding man comes into context with major consequences for the future of a certain hero, just as an even more mysterious painting is unveiled.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5983},{"seriesId":74,"episodeFileId":10211,"seasonNumber":1,"episodeNumber":12,"title":"Godsend","airDate":"2007-01-22","airDateUtc":"2007-01-23T01:00:00Z","overview":"Matt reveals his abilities to his wife. HRG confers with Mohinder. Now that she knows the truth, Claire tries to make sense of her life. Hiro seeks the sword that he is destined to own. Niki must face the consequences of her decision to turn herself in to the police. Simone and Nathan are worried about Peter, who has been in a coma for two weeks. Peter meets a new hero. Micah visits his mother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5984},{"seriesId":74,"episodeFileId":10212,"seasonNumber":1,"episodeNumber":13,"title":"The Fix","airDate":"2007-01-29","airDateUtc":"2007-01-30T01:00:00Z","overview":"Hiro continues to search for a sword while being chased by mysterious figures. An invisible man named Claude has something to teach one of the heroes. D.L. takes on new family responsibilities, and Matt opens up to his wife. H.R.G. continues to focus on the captive Sylar. Claire seeks out the Haitian and then her birth parents. Mohinder looks for those on the list, and receives a surprise visitor. A psychiatrist offers to help Niki.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5985},{"seriesId":74,"episodeFileId":10213,"seasonNumber":1,"episodeNumber":14,"title":"Distractions","airDate":"2007-02-05","airDateUtc":"2007-02-06T01:00:00Z","overview":"Hiro deals with explaining his new heroic path in life to his ambitious sister and tycoon father. Niki has the chance to reunite with D.L and Micah. Claude's mentoring of Peter leads Peter to question those closest to him. Claire goes to a trailer park looking for her birth mother. Sylar wears a disguise and makes a move against HRG.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5986},{"seriesId":74,"episodeFileId":10214,"seasonNumber":1,"episodeNumber":15,"title":"Run!","airDate":"2007-02-12","airDateUtc":"2007-02-13T01:00:00Z","overview":"Matt enters the private security business and receives an objectionable client. Suresh finds another person on the list. As her home-life worsens, Claire strives to learn more about her birth parents. Hiro and Ando get sidetracked in Vegas again while searching for the sword. Nathan is forced to deal with a secret from his past. Still indebted to Mr. Linderman, Jessica resorts to unsavory methods that could spell doom for a fellow hero.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5987},{"seriesId":74,"episodeFileId":10215,"seasonNumber":1,"episodeNumber":16,"title":"Unexpected","airDate":"2007-02-19","airDateUtc":"2007-02-20T01:00:00Z","overview":"Peter learns that he and Claude may have been betrayed. Matt's reunited with the radioactive Ted Sprague and Hana Gitelman a woman with \"wireless\" mental abilities. Hiro makes a tough choice about his mission. Claire can no longer hold back her anger towards HRG.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5988},{"seriesId":74,"episodeFileId":10216,"seasonNumber":1,"episodeNumber":17,"title":"Company Man","airDate":"2007-02-26","airDateUtc":"2007-02-27T01:00:00Z","overview":"Matt Parkman and Ted Sprague arrive in Texas in search of answers and take HRG and his family hostage. More is revealed about Mr. Bennet, the agency for which he works, and how he found Claire.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5989},{"seriesId":74,"episodeFileId":10217,"seasonNumber":1,"episodeNumber":18,"title":"Parasite","airDate":"2007-03-04","airDateUtc":"2007-03-05T01:00:00Z","overview":"As the election and destruction of New York approach, Nathan meets up with Linderman. Hiro attempts to steal the sword heading him in a new path. Suresh and Sylar make progress with the list at great cost. D.L. begins to suspect problems at home. Isaac paints an even more terrible painting. A new hero, Candice Wilmer, appears.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5990},{"seriesId":74,"episodeFileId":10218,"seasonNumber":1,"episodeNumber":19,"title":".07%","airDate":"2007-04-23","airDateUtc":"2007-04-24T00:00:00Z","overview":"Sylar and Peter face off. Linderman reveals his plans to Nathan, and enlists the aid of another Hero. Claire finally meets her real father, and Bennet, Matt and Ted attempt to escape from Thompson.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5991},{"seriesId":74,"episodeFileId":10219,"seasonNumber":1,"episodeNumber":20,"title":"Five Years Gone","airDate":"2007-04-30","airDateUtc":"2007-05-01T00:00:00Z","overview":"Hiro and Ando's trek into the future leads them to meet some of the heroes as they are five years later, after the nuclear fallout. This includes a darker side of Matt, a Jessica\/Niki with a clear winner in their battle, a brown-haired Claire, and a man named Andy, who's a big hearted Texan. It also features an event at an upscale gentleman's club.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5992},{"seriesId":74,"episodeFileId":10220,"seasonNumber":1,"episodeNumber":21,"title":"The Hard Part","airDate":"2007-05-07","airDateUtc":"2007-05-08T00:00:00Z","overview":"Hiro and Ando's determination is put to the test. Nathan wants to win the election and he's taking drastic measures to ensure that he will. This episode will feature Sylar, his home life, and where he came from. Jessica and D.L. discover some of the stuff that Linderman wants from them and Micah. Also there is a new hero who is supposed to be holding the key to stopping Sylar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5993},{"seriesId":74,"episodeFileId":10221,"seasonNumber":1,"episodeNumber":22,"title":"Landslide","airDate":"2007-05-14","airDateUtc":"2007-05-15T00:00:00Z","overview":"Angela Petrelli is forced to play a bigger role in Nathan, Peter, and Claire's life. The truth about the death of Nathan and Peter's father is finally revealed along with his true identity. When Nathan finds out that he may have a chance to become more than a Congressman, he is confronted with a decision that he must make. As election day nears some try to leave NYC. HRG and Matt learn another surprising secret. Also, Sylar is eating another hero's brain. Hiro's dad returns.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5994},{"seriesId":74,"episodeFileId":10222,"seasonNumber":1,"episodeNumber":23,"title":"How to Stop an Exploding Man","airDate":"2007-05-21","airDateUtc":"2007-05-22T00:00:00Z","overview":"Can Sylar be stopped? Will Linderman's vision live on with Nathan? What will it take for Peter to save the world, what sacrifices will be made? With all the horrible predictions unfolding before them the heroes face moments of pain and peril in Kirby Plaza.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5995},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Heroes Unmasked Part 1","airDate":"2007-07-25","airDateUtc":"2007-07-26T00:00:00Z","overview":"A behind-the-scenes documentary series showing the making of \"Heroes\" (2006\/II).","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5970},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Heroes Unmasked Part 2","airDate":"2007-07-25","airDateUtc":"2007-07-26T00:45:00Z","overview":"A behind-the-scenes documentary series showing the making of \"Heroes\" (2006\/II).","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5971},{"seriesId":74,"episodeFileId":4287,"seasonNumber":2,"episodeNumber":1,"title":"Four Months Later...","airDate":"2007-09-24","airDateUtc":"2007-09-25T00:00:00Z","overview":"Four months after the events of the showdown between Sylar and Peter, new Heroes emerge. These include brother and sister Alejandro and Maya. Hiro remains in the past, but what will come of this? Someone dies and someone isn't dead. Claire and her father and the rest of their family get a new life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5996},{"seriesId":74,"episodeFileId":4288,"seasonNumber":2,"episodeNumber":2,"title":"Lizards","airDate":"2007-10-01","airDateUtc":"2007-10-02T00:00:00Z","overview":"Peter falls in with Irish gangsters who know about his past. Hiro works to contain the damage caused by his journey into the past. Kensei's power will be revealed. Suresh locates and cures the Haitian. Matt investigates the murder of Mr. Nakamura. West comes to know of Claire's powers. Maya and Alejandro enter Mexico and find their powers more of a hindrance than a help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5997},{"seriesId":74,"episodeFileId":4289,"seasonNumber":2,"episodeNumber":3,"title":"Kindred","airDate":"2007-10-08","airDateUtc":"2007-10-09T00:00:00Z","overview":"Suresh finds an undiscovered Isaac Mendez painting that shows someone's death; Maya frees Alejandro from a Mexican jail; in the past Hiro discovers something new about Kensei; and Niki and Micah leave Las Vegas to get away from their past. Claire and West take a little trip.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5998},{"seriesId":74,"episodeFileId":4290,"seasonNumber":2,"episodeNumber":4,"title":"The Kindness of Strangers","airDate":"2007-10-15","airDateUtc":"2007-10-16T00:00:00Z","overview":"Monica starts to exhibit new abilities while working with Micah, Nana, and Damon. Nana is the grandmother of Micah, Monica, and Damon. They all currently reside in New Orleans. Matt asks Molly to locate the man in her dreams. He may be the newest threat to the Heroes. Maya and Alejandro continue their trek to the U.S. Both Claire and her father are suspicious of one another. Angela reveals a lot of her secrets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":5999},{"seriesId":74,"episodeFileId":4291,"seasonNumber":2,"episodeNumber":5,"title":"Fight or Flight","airDate":"2007-10-22","airDateUtc":"2007-10-23T00:00:00Z","overview":"A woman named Elle is searching for Peter. Ando looks for Hiro in the past. Matt looks for the man in Molly's dreams. HRG takes another step in hopes of protecting his family and himself.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6000},{"seriesId":74,"episodeFileId":4292,"seasonNumber":2,"episodeNumber":6,"title":"The Line","airDate":"2007-10-29","airDateUtc":"2007-10-30T00:00:00Z","overview":"Peter goes on a search. West convinces Claire to stand up to someone. Hiro struggles with his feelings for Yaeko. Suresh has more problems with the Company. HRG tries to locate more of Isaac's paintings. Alejandro doesn't trust Sylar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6001},{"seriesId":74,"episodeFileId":4293,"seasonNumber":2,"episodeNumber":7,"title":"Out of Time","airDate":"2007-11-05","airDateUtc":"2007-11-06T01:00:00Z","overview":"Peter and Caitlin learn about the endstage effects of the Heroes virus. Many of the Heroes work together to fight the Nightmare Man. West is shocked to the identity of Claire's father. Hiro and Kensei's journey comes to an end.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6002},{"seriesId":74,"episodeFileId":4294,"seasonNumber":2,"episodeNumber":8,"title":"Four Months Ago...","airDate":"2007-11-12","airDateUtc":"2007-11-13T01:00:00Z","overview":"The events of the \"missing four months\" are explored. Maya and Alejandro must go on the run, it is explained how Peter ended up in Ireland and what happened to Nathan, Nikki, and D.L.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6003},{"seriesId":74,"episodeFileId":4295,"seasonNumber":2,"episodeNumber":9,"title":"Cautionary Tales","airDate":"2007-11-19","airDateUtc":"2007-11-20T01:00:00Z","overview":"Mr. Bennet prepares to move his family when he thinks the Company has found them, but Claire doesn't like the idea. Hiro returns to the present and upon discovering his father's death, travels back in time to stop it. Meanwhile, Matt works to master his new mental abilities.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6004},{"seriesId":74,"episodeFileId":4296,"seasonNumber":2,"episodeNumber":10,"title":"Truth & Consequences","airDate":"2007-11-26","airDateUtc":"2007-11-27T01:00:00Z","overview":"Peter travels to Primatech in Texas to destroy the virus, but not everything is what it seems. Hiro continues the pursuit of his father's killer, while Matt pursues the last Company member in the photo. Nikki is reunited with Micah but has bad news, while Maya has to choose to remain with Alejandro, or go with Sylar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6005},{"seriesId":74,"episodeFileId":4297,"seasonNumber":2,"episodeNumber":11,"title":"Powerless","airDate":"2007-12-03","airDateUtc":"2007-12-04T01:00:00Z","overview":"In Texas, Peter faces off against former friends due to Adam\u2019s misleading story about the Shanti virus. Micah enlists the help of his mother to rescue Monica. Maya is shocked when she learns the truth about her new friend Sylar. Elle tries to make her father proud.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6006},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Going Postal - A Nifty Trick - Part 1","airDate":"2008-07-14","airDateUtc":"2008-07-15T00:00:00Z","overview":"Two men from the Company confront mail carrier Echo De Mille who discovers his ability to manipulate sound. Echo severely injures one of them in self-defense.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5940},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Going Postal - The House Guest - Part 2","airDate":"2008-07-21","airDateUtc":"2008-07-22T00:00:00Z","overview":"Echo goes home to protect his girlfriend Gina, but a superpowered man from the Company\u2014the \"Constrictor\", whom Echo had met earlier\u2014arrives for another showdown with Echo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5941},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Going Postal - Let's Talk - Part 3","airDate":"2008-07-28","airDateUtc":"2008-07-29T00:00:00Z","overview":"Echo sends Gina away and confronts those who are targeting him, but things do not go as he had expected.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5942},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"Countdown to Season 3","airDate":"2008-09-22","airDateUtc":"2008-09-23T00:00:00Z","overview":"Before the third season premiere, a brief recap of Seasons 1 and 2 and interviews with the cast at the premiere party is shown.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5972},{"seriesId":74,"episodeFileId":4034,"seasonNumber":3,"episodeNumber":1,"title":"The Second Coming","airDate":"2008-09-22","airDateUtc":"2008-09-23T00:00:00Z","overview":"After a look into the future, Nathan's shooter is revealed. Matt chases him and winds up in a desert. Hiro receives an important message from his father. Sylar visits Claire. Maya gives Mohinder an idea for his research. Nathan recovers and gets a visit from Linderman.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6007},{"seriesId":74,"episodeFileId":4035,"seasonNumber":3,"episodeNumber":2,"title":"The Butterfly Effect","airDate":"2008-09-22","airDateUtc":"2008-09-23T00:45:00Z","overview":"Sylar goes to the Company and inadvertently releases 12 super-powered criminals in a fight with Elle. Future Peter tries to fix his mistake. Angela takes over the company. Claire learns more about her powers. Hiro and Ando travel to Paris to track down the speedster who robbed them. Maya discovers that Mohinder's injection has changed him. Matt meats Usutu, an African with a familiar power.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6008},{"seriesId":74,"episodeFileId":4036,"seasonNumber":3,"episodeNumber":3,"title":"One of Us, One of Them","airDate":"2008-09-29","airDateUtc":"2008-09-30T00:00:00Z","overview":"HRG and his new partner go to a local bank heist with four villains; including Peter being trapped in one of them. Hiro and Ando track Daphne to Germany, and meet the Haitian. Tracy Strauss goes to New Orleans to find out more information about Niki. Meredith teaches Claire a lesson about fighting. Usutu shows Matt a series of paintings about him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6009},{"seriesId":74,"episodeFileId":4037,"seasonNumber":3,"episodeNumber":4,"title":"I Am Become Death","airDate":"2008-10-06","airDateUtc":"2008-10-07T00:00:00Z","overview":"Peter travels to the future and adopts a dangerous ability in order to try to save the world. Meanwhile, Mohinder struggles with his continuing evolution from the formula, and Hiro and Ando re-unite with an old enemy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6010},{"seriesId":74,"episodeFileId":4038,"seasonNumber":3,"episodeNumber":5,"title":"Angels and Monsters","airDate":"2008-10-13","airDateUtc":"2008-10-14T00:00:00Z","overview":"Claire decides to take on one of the villains herself, but she may not be as invulnerable as she believes. Nathan and Tracy search for the truth about their origins. Maya makes a shocking discovery. Hiro and Ando look for help in the most unlikely places.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6011},{"seriesId":74,"episodeFileId":4039,"seasonNumber":3,"episodeNumber":6,"title":"Dying of the Light","airDate":"2008-10-20","airDateUtc":"2008-10-21T00:00:00Z","overview":"Villains Knox and Daphne are on a quest to recruit Hiro and others to the Pinehearst fold. Angela and the Company are paralyzed from recent events. Peter goes to Pinehearst searching for answers but is stunned to learn who the founder is. Claire and Sandra go on a mission to save Meredith from the clutches of Doyle, a villain with abilities to control people mentally and physically. Nathan and Tracy try to trace their origins with Mohinder's help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6012},{"seriesId":74,"episodeFileId":4040,"seasonNumber":3,"episodeNumber":7,"title":"Eris Quod Sum","airDate":"2008-10-27","airDateUtc":"2008-10-28T00:00:00Z","overview":"Trapped, Nathan and Tracy must fight to save their lives against Suresh, who has changed dramatically. Elle returns with shocking news for Claire and her family. Meanwhile, Angela tries to convince Sylar to save Peter; Daphne is ordered to kill Matt or she will be killed herself; and Hiro questions Usutu's advice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6013},{"seriesId":74,"episodeFileId":4041,"seasonNumber":3,"episodeNumber":8,"title":"Villains","airDate":"2008-11-10","airDateUtc":"2008-11-11T01:00:00Z","overview":"Hiro attempts to delve into Arthur Petrelli's past to uncover the mystery behind him creating a rival company Pinehearst and his hatred towards Angela. Sylar stricken by guilt tries to stop his murderous ways with HRG and Elle vying for his blood. Meredith's training goes up in smoke with the arrival of her brother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6014},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Destiny - Let Us Pray - Part 1","airDate":"2008-11-11","airDateUtc":"2008-11-12T01:00:00Z","overview":"Santiago discovers his abilities.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5943},{"seriesId":74,"episodeFileId":4042,"seasonNumber":3,"episodeNumber":9,"title":"It's Coming","airDate":"2008-11-17","airDateUtc":"2008-11-18T01:00:00Z","overview":"Nathan learns of his father's plans, while Flint and Knox launch attacks on Hiro, Ando, Peter, and Claire. Meanwhile, Matt tries to revive Angela, Sylar meets with Elle, and Mohinder begins testing of his newest superpower formula.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6015},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Destiny - Intervention - Part 2","airDate":"2008-11-18","airDateUtc":"2008-11-19T01:00:00Z","overview":"Believing his powers are divine, Santiago uses them to help people. But when a woman betrays him, he is captured by a secret organization.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5944},{"seriesId":74,"episodeFileId":4043,"seasonNumber":3,"episodeNumber":10,"title":"The Eclipse, Part 1","airDate":"2008-11-24","airDateUtc":"2008-11-25T01:00:00Z","overview":"The eclipse plays havoc with the heroes' powers. Arthur orders Elle and Sylar to bring in Claire. Hiro, Ando, and Matt follow Daphne to her hometown to learn what hold Arthur has on her, and Peter and Nathan travel to the Haitian's hometown to recruit him for the war with Pinehearst.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6016},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Destiny - Capture - Part 3","airDate":"2008-11-25","airDateUtc":"2008-11-26T01:00:00Z","overview":"Santiago's captors have a mission for him that he can't refuse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5945},{"seriesId":74,"episodeFileId":4044,"seasonNumber":3,"episodeNumber":11,"title":"The Eclipse, Part 2","airDate":"2008-12-01","airDateUtc":"2008-12-02T01:00:00Z","overview":"The eclipse continues to create chaos. Sylar and Elle face HRG's wrath. Peter, Nathan and the Haitian go up against Baron Samedi. Ando, Sam, and Frack try to help Hiro with his memory loss.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6017},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Destiny - Escape - Part 4","airDate":"2008-12-02","airDateUtc":"2008-12-03T01:00:00Z","overview":"Santiago finds freedom in the sanctuary of family.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5946},{"seriesId":74,"episodeFileId":4045,"seasonNumber":3,"episodeNumber":12,"title":"Our Father","airDate":"2008-12-08","airDateUtc":"2008-12-09T01:00:00Z","overview":"In order to stop Arthur, Hiro and Clair team up and travel back in time to when Kaito gave Claire to H.R.G. Meanwhile, Peter and the Haitian head out to stop Arthur, but are stopped by Sylar and Suresh has a breakthrough with the formula.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6018},{"seriesId":74,"episodeFileId":4046,"seasonNumber":3,"episodeNumber":13,"title":"Dual","airDate":"2008-12-15","airDateUtc":"2008-12-16T01:00:00Z","overview":"Following the showdown against Arthur, Nathan and Peter find themselves pitted against one another, and Nathan makes a decision that will have an effect on the entire world. Meanwhile, Sylar holds Claire, H.R.G., Meredith and Angela hostage at Primatech; Ando, Matt and Daphne try to rescue Hiro and find their only hope may lie in Suresh.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6019},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"The Recruit - Private Mills - Part 1","airDate":"2008-12-16","airDateUtc":"2008-12-17T01:00:00Z","overview":"Rachel Mills survives the Pinehearst explosion.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5947},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"The Recruit - We Do What We Have To Do - Part 3","airDate":"2008-12-22","airDateUtc":"2008-12-23T01:00:00Z","overview":"Angela has a question that haunts Rachel: why did she kill the man she wanted to save?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5949},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The Recruit - Day of Reckoning - Part 4","airDate":"2008-12-22","airDateUtc":"2008-12-23T01:45:00Z","overview":"Angela asks about Rachel's mother's death and where Rachel was found after the Pinehearst incident. Rachel relives escaping from Pinehearst, but denies being special.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5950},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"The Recruit - It Was Nothing - Part 2","airDate":"2008-12-23","airDateUtc":"2008-12-24T01:00:00Z","overview":"The squad of marines inject themselves with the serum.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5948},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Recruit - The Truth Within - Part 5","airDate":"2008-12-29","airDateUtc":"2008-12-30T01:00:00Z","overview":"Rachel is released, armed with a newfound power.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5951},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Hard Knox - Choices - Part 1","airDate":"2008-12-29","airDateUtc":"2008-12-30T01:45:00Z","overview":"Matt Parkman wants street thug Knox to go straight, but it's not so easy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5952},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Hard Knox - Get Straight - Part 2","airDate":"2008-12-29","airDateUtc":"2008-12-30T02:30:00Z","overview":"Matt Parkman tries to convince Knox to leave gang life, while Knox's crew watches from a distance.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5953},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Hard Knox - Fear - Part 3","airDate":"2009-01-05","airDateUtc":"2009-01-06T01:00:00Z","overview":"Knox's crew leader tries to kill Knox, and Knox finds his abilities to feed off fear and kills the crew leader.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5954},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Hard Knox - The Main Man Now - Part 4","airDate":"2009-01-12","airDateUtc":"2009-01-13T01:00:00Z","overview":"Knox's crew gets a new boss.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5955},{"seriesId":74,"episodeFileId":4047,"seasonNumber":3,"episodeNumber":14,"title":"A Clear and Present Danger","airDate":"2009-02-02","airDateUtc":"2009-02-03T01:00:00Z","overview":"Three weeks after the destruction of both Primatech and Pinehearst, and the death of Arthur Petrelli, the now-villainous Nathan returns with a vengeance by persuading the U.S. President and the government to round up all people with abilities, leading to Claire, Ando, Hiro, Matt, Peter, as well as Tracy to become fugitives from the people who were their former allies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6020},{"seriesId":74,"episodeFileId":4048,"seasonNumber":3,"episodeNumber":15,"title":"Trust and Blood","airDate":"2009-02-09","airDateUtc":"2009-02-10T01:00:00Z","overview":"Following a chain of unexpected events, our Heroes are on the run from their latest adversary and one of their own, Nathan Petrelli. After Matt paints a series of prophetic images, the tragic fate of someone close to him is revealed. Elsewhere, Sylar continues his search for his father and encounters a young outcast with information and an ability of his own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6021},{"seriesId":74,"episodeFileId":4049,"seasonNumber":3,"episodeNumber":16,"title":"Building 26","airDate":"2009-02-16","airDateUtc":"2009-02-17T01:00:00Z","overview":"Nathan's plans face exposure as Homeland Security begins an investigation under direct orders from the President of the United States. Sylar and Luke embark on a road trip to find Sylar's father, but are secretly being hunted by Nathan's agents. Life gets complicated for the Bennet family as Claire goes into action to protect a young man with abilities from being captured by HRG. Elsewhere, Matt's prophetic images lead Hiro and Ando to India and a mysterious ally comes to the aid of our Heroes","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6022},{"seriesId":74,"episodeFileId":4050,"seasonNumber":3,"episodeNumber":17,"title":"Cold Wars","airDate":"2009-02-23","airDateUtc":"2009-02-24T01:00:00Z","overview":"While being held hostage, HRG is subjected to Matt Parkman's unique brand of interrogation, revealing how he became involved with Nathan's government plot to capture those with abilities. Meanwhile, Matt's discoveries bring Peter face-to-face with \"The Hunter\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6023},{"seriesId":74,"episodeFileId":4051,"seasonNumber":3,"episodeNumber":18,"title":"Exposed","airDate":"2009-03-02","airDateUtc":"2009-03-03T01:00:00Z","overview":"After receiving a tip from \"Rebel\", Matt and Peter race to Building 26 to rescue Daphne and recover files that will expose the government's plans for those with abilities. Claire finds help from an unlikely source in smuggling Alex out of the city. As Sylar and Luke continue their road trip, Sylar begins to have memories of his father that lead him to the truth about his mother. Meanwhile, \"The Hunter\" puts his own agenda into action with an explosive surprise for one of our heroes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6024},{"seriesId":74,"episodeFileId":4052,"seasonNumber":3,"episodeNumber":19,"title":"Shades of Gray","airDate":"2009-03-09","airDateUtc":"2009-03-10T00:00:00Z","overview":"When Sylar comes face-to-face with his long lost father, the reunion proves to be what he least expected. Elsewhere, after receiving a tip from \"Rebel\", Claire must decide if she will help her sworn enemy, Eric Doyle, evade capture. Meanwhile, as \"The Hunter\" plans to uncover the Petrelli family's secrets and take control of Nathan's operation, Matt finds himself in the spotlight and on the verge of leveling Capitol Hill.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6025},{"seriesId":74,"episodeFileId":4053,"seasonNumber":3,"episodeNumber":20,"title":"Cold Snap","airDate":"2009-03-23","airDateUtc":"2009-03-24T00:00:00Z","overview":"HRG convinces Emile Danko, a.k.a. \"The Hunter\", to release Tracy from Building 26, in hopes that she will lead them to \"Rebel\". As Angela evades capture, she turns to an old friend for help. In Los Angeles, Hiro and Ando continue on their latest mission from \"Rebel\" to protect the newest hero.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6026},{"seriesId":74,"episodeFileId":4054,"seasonNumber":3,"episodeNumber":21,"title":"Into Asylum","airDate":"2009-03-30","airDateUtc":"2009-03-31T00:00:00Z","overview":"Now that Nathan\u2019s ability has been revealed and he has lost control of his operation, he and Claire go into hiding in Mexico. With Emile Danko now in control of the government operation, his plan to destroy everyone with abilities is set into motion as he teams up with an unlikely partner. Meanwhile, Angela and Peter seek refuge in a church and begin to mend their broken relationship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6027},{"seriesId":74,"episodeFileId":4055,"seasonNumber":3,"episodeNumber":22,"title":"Turn and Face the Strange","airDate":"2009-04-06","airDateUtc":"2009-04-07T00:00:00Z","overview":"As Danko spearheads the government operation, someone close to him is put in the line of fire. HRG\u2019s life continues to spiral out of control and his marriage is dangerously close to the breaking point. Meanwhile, Hiro and Ando continue their road trip with a special delivery for Matt Parkman. Elsewhere, Angela Petrelli unearths the demons of her past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6028},{"seriesId":74,"episodeFileId":4056,"seasonNumber":3,"episodeNumber":23,"title":"1961","airDate":"2009-04-13","airDateUtc":"2009-04-14T00:00:00Z","overview":"As Nathan, Claire, Peter and H.R.G. help Angela uncover her past, she reveals the dark secrets that have haunted her for years. Meanwhile, Mohinder learns of his father\u2019s involvement in a long forgotten government operation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6029},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Nowhere Man - Puppet Master - Part 1","airDate":"2009-04-20","airDateUtc":"2009-04-21T00:00:00Z","overview":"With a new identity from Claire, Puppetmaster Eric Doyle tries to settle into a new life by working at Copy Kingdom.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5956},{"seriesId":74,"episodeFileId":4057,"seasonNumber":3,"episodeNumber":24,"title":"I Am Sylar","airDate":"2009-04-20","airDateUtc":"2009-04-21T00:00:00Z","overview":"Sylar continues his unusual partnership and begins to have an unexpected identity crisis. Hiro and Ando take measures toward bringing down Building 26. Meanwhile, Matt\u2019s new found fatherhood changes his priorities. Elsewhere, Nathan sets a plan in motion to right the wrongs of his government operation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6030},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Nowhere Man - Statement of Character - Part 2","airDate":"2009-04-27","airDateUtc":"2009-04-28T00:00:00Z","overview":"Doyle's self-control is shattered by his boss.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5957},{"seriesId":74,"episodeFileId":4058,"seasonNumber":3,"episodeNumber":25,"title":"An Invisible Thread","airDate":"2009-04-27","airDateUtc":"2009-04-28T00:00:00Z","overview":"Nathan faces off against Sylar to keep him from meeting the President. Sylar has his own plans for his new partner. Meanwhile, Hiro learns that there are repercussions to regaining his ability. Elsewhere, Matt is forced to go to extraordinary lengths to protect his future with his family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6031},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Nowhere Man - Pulling the Strings - Part 3","airDate":"2009-05-05","airDateUtc":"2009-05-06T00:00:00Z","overview":"With his prospects for a normal life fading, Doyle takes matters into his own hands.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5958},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Nowhere Man - A New Beginning - Part 4","airDate":"2009-05-05","airDateUtc":"2009-05-06T00:45:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5959},{"seriesId":74,"episodeFileId":4299,"seasonNumber":4,"episodeNumber":1,"title":"Orientation","airDate":"2009-09-21","airDateUtc":"2009-09-22T00:00:00Z","overview":"Six weeks after Matt and the others wiped Sylar's mind, the Heroes attempt to go on living normal lives. We are introduced to \"family\" of carnies with abilities. Angela Petrelli and H.R.G. are in the works of restoring The Company while Claire makes new \"friends\" at school. Tracy is still hunting everyone from Building 26. Meanwhile, Hiro and Ando start a \"Heroes for Hire\" business.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6032},{"seriesId":74,"episodeFileId":4299,"seasonNumber":4,"episodeNumber":2,"title":"Jump, Push, Fall","airDate":"2009-09-21","airDateUtc":"2009-09-22T00:45:00Z","overview":"Claire and her new friend Gretchen investigate the death of Claire's roommate Annie, while Noah comes to Peter for assistance. Samuel and Edgar recover the compass, Hiro realizes his new destiny, and Matt is tormented with mental images from a dangerous foe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6033},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Slow Burn Part 1","airDate":"2009-09-28","airDateUtc":"2009-09-29T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5960},{"seriesId":74,"episodeFileId":4300,"seasonNumber":4,"episodeNumber":3,"title":"Ink","airDate":"2009-09-28","airDateUtc":"2009-09-29T00:00:00Z","overview":"Peter faces unexpected consequences for his heroic acts and encounters a reluctant new hero. As Claire continues to adjust to college life, she must figure out how to deal with her ability having been revealed. Meanwhile, Samuel moves heaven and earth to recapture the memories of his late brother Joseph. Elsewhere, Matt struggles with his internal demons as Sylar mysteriously resurfaces.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6034},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Slow Burn Part 2","airDate":"2009-10-05","airDateUtc":"2009-10-06T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5961},{"seriesId":74,"episodeFileId":4301,"seasonNumber":4,"episodeNumber":4,"title":"Acceptance","airDate":"2009-10-05","airDateUtc":"2009-10-06T00:00:00Z","overview":"As \"Nathan\" starts displaying new powers, he has visions of an incident from his past involving a young girl and decides to investigate. Hiro tries to save a co-worker and learns a truth about himself. Tracy tries to regain her old life and job.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6035},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Slow Burn Part 3","airDate":"2009-10-12","airDateUtc":"2009-10-13T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5962},{"seriesId":74,"episodeFileId":4302,"seasonNumber":4,"episodeNumber":5,"title":"Hysterical Blindness","airDate":"2009-10-12","airDateUtc":"2009-10-13T00:00:00Z","overview":"Samuel prepares for new additions to his family, while Lydia warns him of the consequences. Claire discovers that her roommate Gretchen may have a hidden agenda. Meanwhile, Peter finds an unexpected way to connect with Emma, who would prefer to stay distant. Elsewhere, a different side of Sylar emerges as he desperately tries to remember the person he used to be.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6036},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Slow Burn Part 4","airDate":"2009-10-19","airDateUtc":"2009-10-20T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5963},{"seriesId":74,"episodeFileId":4303,"seasonNumber":4,"episodeNumber":6,"title":"Tabula Rasa","airDate":"2009-10-19","airDateUtc":"2009-10-20T00:00:00Z","overview":"Under Samuel\u2019s guidance, Sylar starts on a path to rediscover his true identity. Hiro helps Emma accept and understand the great possibilities that go along with having an ability. Meanwhile, Peter enlists HRG to help him find a healer who can save Hiro\u2019s life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6037},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Slow Burn Part 5","airDate":"2009-10-26","airDateUtc":"2009-10-27T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5964},{"seriesId":74,"episodeFileId":4304,"seasonNumber":4,"episodeNumber":7,"title":"Strange Attractors","airDate":"2009-10-26","airDateUtc":"2009-10-27T00:00:00Z","overview":"Matt goes to extreme measures to extinguish Sylar , who continues to torment him. Elsewhere, HRG calls in a favor from Tracy to save a troubled young boy whose misfortunes resemble her own. While Claire and Gretchen are being hazed by their new sorority sisters, they realize pledging might not be their biggest problem.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6038},{"seriesId":74,"episodeFileId":4305,"seasonNumber":4,"episodeNumber":8,"title":"Once Upon a Time in Texas","airDate":"2009-11-02","airDateUtc":"2009-11-03T01:00:00Z","overview":"When Hiro travels three years into the past, he has a second chance to save Charlie from the hands of Sylar. However, Samuel\u2019s presence serves to complicate Hiro\u2019s mission even further. Elsewhere, H.R.G.\u2019s past with his Primatech partner is revealed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6039},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Slow Burn Part 6","airDate":"2009-11-03","airDateUtc":"2009-11-04T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5965},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Slow Burn Part 7","airDate":"2009-11-09","airDateUtc":"2009-11-10T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5966},{"seriesId":74,"episodeFileId":4306,"seasonNumber":4,"episodeNumber":9,"title":"Shadowboxing","airDate":"2009-11-09","airDateUtc":"2009-11-10T01:00:00Z","overview":"Claire is determined to get to the bottom of the Sorority Rush attacks on her own, until H.R.G. intervenes only to realize he may be the source of her troubles. Meanwhile, Peter's new ability is a perfect fit for his job and gives him the opportunity to help Emma accept her new life. Elsewhere, Sylar's battle at gaining full control over Matt's body escalates with potentially dangerous implications at stake.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6040},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Slow Burn Part 8","airDate":"2009-11-16","airDateUtc":"2009-11-17T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5967},{"seriesId":74,"episodeFileId":4307,"seasonNumber":4,"episodeNumber":10,"title":"Brother's Keeper","airDate":"2009-11-16","airDateUtc":"2009-11-17T01:00:00Z","overview":"Samuel learns just how powerful he can become and takes dangerous measures to reach his full potential. Meanwhile, as Tracy begins to lose control of her ability, one of her own comes in harms way. Elsewhere, Sylar continues his battle with Matt.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6041},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Slow Burn Part 9","airDate":"2009-11-23","airDateUtc":"2009-11-24T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5968},{"seriesId":74,"episodeFileId":4308,"seasonNumber":4,"episodeNumber":11,"title":"Thanksgiving","airDate":"2009-11-23","airDateUtc":"2009-11-24T01:00:00Z","overview":"H.R.G. hosts an untraditional Thanksgiving dinner. Elsewhere, the Petrelli family gets a surprise guest at their table. Meanwhile, Samuel continues to hold Hiro hostage, as Lydia goes in search for the truth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6042},{"seriesId":74,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Slow Burn Part 10","airDate":"2009-11-30","airDateUtc":"2009-12-01T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":5969},{"seriesId":74,"episodeFileId":4309,"seasonNumber":4,"episodeNumber":12,"title":"The Fifth Stage","airDate":"2009-11-30","airDateUtc":"2009-12-01T01:00:00Z","overview":"Unexpected visitors greet H.R.G.; Samuel's plan starts to come to fruition; struggling to accept the truth, Peter takes extreme measures to get what he wants; Claire's journey leads her to an unexpected destination.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6043},{"seriesId":74,"episodeFileId":4334,"seasonNumber":4,"episodeNumber":13,"title":"Upon This Rock","airDate":"2010-01-04","airDateUtc":"2010-01-05T01:00:00Z","overview":"As Claire becomes immersed into the world of the Carnival, she becomes increasingly suspicious of Samuel's motives. Hiro is on a mission to rescue one of his own, but has difficulty communicating his intentions to Ando.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6044},{"seriesId":74,"episodeFileId":4411,"seasonNumber":4,"episodeNumber":14,"title":"Let it Bleed","airDate":"2010-01-04","airDateUtc":"2010-01-05T01:45:00Z","overview":"Sylar returns to the Carnival in search of answers, H.R.G. tries to forge an alliance with Edgar and Peter continues to struggle with the loss of his brother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6045},{"seriesId":74,"episodeFileId":4412,"seasonNumber":4,"episodeNumber":15,"title":"Close To You","airDate":"2010-01-11","airDateUtc":"2010-01-12T01:00:00Z","overview":"H.R.G. recruits Matt to help him take down Samuel, as they use his long-lost love, Vanessa, to lure him to them, but Samuel has his own plans for Vanessa in the works. Meanwhile, Hiro and Ando go to extreme lengths to save Dr. Suresh. Elsewhere, Peter's introduction of Emma to his mother brings forth visions of a very grim future.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6046},{"seriesId":74,"episodeFileId":4436,"seasonNumber":4,"episodeNumber":16,"title":"Pass\/Fail","airDate":"2010-01-18","airDateUtc":"2010-01-19T01:00:00Z","overview":"Hiros life hangs in the balance as his brain tumor worsens, prompting him to subconsciously deal with some of his past decisions. Meanwhile, Sylar pays Claire an unexpected visit to get answers as to why he isn't quite himself. Elsewhere, Samuels plan to impress his long-lost love, Vanessa, takes a terrifying turn.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6047},{"seriesId":74,"episodeFileId":4437,"seasonNumber":4,"episodeNumber":17,"title":"The Art of Deception","airDate":"2010-01-25","airDateUtc":"2010-01-26T01:00:00Z","overview":"H.R.G. enacts his plan to take down the Carnival with the help of Lauren and Suresh. Sylar visits Matt looking to understand his desire to make a human connection, but Matt has a plan of his own. Meanwhile, Peter warns Emma of Samuel's intentions after his grim vision of the future.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6048},{"seriesId":74,"episodeFileId":4438,"seasonNumber":4,"episodeNumber":18,"title":"The Wall","airDate":"2010-02-01","airDateUtc":"2010-02-02T01:00:00Z","overview":"Fueled by his vision of Emma in grave danger, Peter attempts to rescue Sylar from his worst nightmare. At the carnival, Samuel reveals H.R.G.s secret past in order to bring Claire to his side. Meanwhile, Lauren makes a bold move to put a stop to Samuel.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6049},{"seriesId":74,"episodeFileId":4439,"seasonNumber":4,"episodeNumber":19,"title":"Brave New World","airDate":"2010-02-08","airDateUtc":"2010-02-09T01:00:00Z","overview":"Everyone bands together to try to stop Samuel from taking the lives of thousands. Peter joins forces with his most unexpected ally to save Emma. Meanwhile, H.R.G.'s life hangs in the balance as he and Claire find themselves trapped underground with oxygen quickly running out. Elsewhere, Hiro starts to come to grips with the decisions he has made and is called into action to help stop a disaster.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":6050}],"episodeFile":[{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Second Coming-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E01.The Second Coming-HDTV-1080p.mkv","size":359289145,"dateAdded":"2018-10-12T21:02:22.84499Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:45","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4034},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Butterfly Effect-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E02.The Butterfly Effect-HDTV-1080p.mkv","size":354856849,"dateAdded":"2018-10-12T21:02:26.586188Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":899202,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4035},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E03.One of Us, One of Them-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E03.One of Us, One of Them-HDTV-1080p.mkv","size":355296117,"dateAdded":"2018-10-12T21:02:30.263075Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":899155,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4036},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E04.I Am Become Death-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E04.I Am Become Death-HDTV-1080p.mkv","size":354142807,"dateAdded":"2018-10-12T21:02:33.636671Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":898419,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4037},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Angels and Monsters-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E05.Angels and Monsters-HDTV-1080p.mkv","size":354997248,"dateAdded":"2018-10-12T21:02:36.915631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":899627,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4038},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Dying of the Light-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E06.Dying of the Light-HDTV-1080p.mkv","size":355651652,"dateAdded":"2018-10-12T21:03:24.238565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4039},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Eris Quod Sum-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E07.Eris Quod Sum-HDTV-1080p.mkv","size":340846100,"dateAdded":"2018-10-12T21:03:32.615035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":908280,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4040},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Villains-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E08.Villains-HDTV-1080p.mkv","size":351696621,"dateAdded":"2018-10-12T21:03:36.902966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:49","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4041},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E09.It's Coming-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E09.It's Coming-HDTV-1080p.mkv","size":351001685,"dateAdded":"2018-10-12T21:03:43.198003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":899728,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4042},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Eclipse (1)-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E10.The Eclipse (1)-HDTV-1080p.mkv","size":341959110,"dateAdded":"2018-10-12T21:03:48.04762Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":900200,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:39","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4043},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Eclipse (2)-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E11.The Eclipse (2)-HDTV-1080p.mkv","size":345659581,"dateAdded":"2018-10-12T21:04:37.041198Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":900258,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:06","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4044},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Our Father-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E12.Our Father-HDTV-1080p.mkv","size":355692389,"dateAdded":"2018-10-12T21:04:40.494976Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ Amharic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4045},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Dual-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E13.Dual-HDTV-1080p.mkv","size":355401083,"dateAdded":"2018-10-12T21:04:46.514782Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":899656,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4046},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E14.A Clear and Present Danger-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E14.A Clear and Present Danger-HDTV-1080p.mkv","size":354727773,"dateAdded":"2018-10-12T21:04:53.128384Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":899987,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4047},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Trust and Blood-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E15.Trust and Blood-HDTV-1080p.mkv","size":340749696,"dateAdded":"2018-10-12T21:04:59.87598Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:29","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4048},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Building 26-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E16.Building 26-HDTV-1080p.mkv","size":354695751,"dateAdded":"2018-10-12T21:05:43.267912Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":897792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4049},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Cold Wars-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E17.Cold Wars-HDTV-1080p.mkv","size":345705030,"dateAdded":"2018-10-12T21:05:47.031416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1072","runTime":"42:09","scanType":"","subtitles":"Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4050},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Exposed-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E18.Exposed-HDTV-1080p.mkv","size":353811607,"dateAdded":"2018-10-12T21:06:20.707158Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":" \/ English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4051},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Shades of Gray-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E19.Shades of Gray-HDTV-1080p.mkv","size":355711996,"dateAdded":"2018-10-12T21:06:23.912479Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4052},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Cold Snap-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E20.Cold Snap-HDTV-1080p.mkv","size":355048514,"dateAdded":"2018-10-12T21:06:27.63388Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4053},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Into Asylum-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E21.Into Asylum-HDTV-1080p.mkv","size":355786617,"dateAdded":"2018-10-12T21:06:31.534299Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4054},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Turn and Face the Strange-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E22.Turn and Face the Strange-HDTV-1080p.mkv","size":355759294,"dateAdded":"2018-10-12T21:06:36.686594Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4055},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E23.1961-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E23.1961-HDTV-1080p.mkv","size":329114480,"dateAdded":"2018-10-12T21:07:19.714443Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:43","scanType":"","subtitles":"English \/ Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4056},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E24.I Am Sylar-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E24.I Am Sylar-HDTV-1080p.mkv","size":355989075,"dateAdded":"2018-10-12T21:07:24.681458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:20","scanType":"","subtitles":"English \/ English \/ Arabic"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4057},{"seriesId":74,"seasonNumber":3,"relativePath":"Season 03\/S03E25.An Invisible Thread-HDTV-1080p.mkv","path":"\/tv\/Heroes\/Season 03\/S03E25.An Invisible Thread-HDTV-1080p.mkv","size":355629997,"dateAdded":"2018-10-12T21:07:29.04701Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ Arabic \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4058},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Four Months Later-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E01.Four Months Later-Bluray-1080p.mkv","size":4696610455,"dateAdded":"2018-10-14T08:40:40.960427Z","sceneName":"Heroes.S02E01.1080p.BluRay.x264-REAVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10396000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4287},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Lizards-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E02.Lizards-Bluray-1080p.mkv","size":4696371153,"dateAdded":"2018-10-14T08:52:13.364273Z","sceneName":"Heroes.S02E02.1080p.BluRay.x264-REAVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12948000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4288},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Kindred-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E03.Kindred-Bluray-1080p.mkv","size":3909719395,"dateAdded":"2018-10-14T09:02:47.835531Z","sceneName":"Heroes.S02E03.1080p.Bluray.x264-hV","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10265570,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4289},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Kindness of Strangers-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E04.The Kindness of Strangers-Bluray-1080p.mkv","size":3900045482,"dateAdded":"2018-10-14T09:11:49.834409Z","sceneName":"Heroes.S02E04.1080p.Bluray.x264.iNTERNAL-hV","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10267796,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4290},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Fight or Flight-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E05.Fight or Flight-Bluray-1080p.mkv","size":3905286799,"dateAdded":"2018-10-14T09:21:39.339858Z","sceneName":"Heroes.S02E05.1080p.Bluray.x264.iNTERNAL-hV","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10266210,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4291},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Line-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E06.The Line-Bluray-1080p.mkv","size":3826609022,"dateAdded":"2018-10-14T09:30:17.745079Z","sceneName":"Heroes.S02E06.1080p.Bluray.x264-Ebayed","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11739000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4292},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Out of Time-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E07.Out of Time-Bluray-1080p.mkv","size":4696209718,"dateAdded":"2018-10-14T09:37:50.255232Z","sceneName":"Heroes.S02E07.1080p.BluRay.x264-REAVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12929000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4293},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Four Months Ago-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E08.Four Months Ago-Bluray-1080p.mkv","size":4696227929,"dateAdded":"2018-10-14T09:49:36.77886Z","sceneName":"Heroes.S02E08.1080p.BluRay.x264-REAVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13190000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4294},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Cautionary Tales-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E09.Cautionary Tales-Bluray-1080p.mkv","size":3858278702,"dateAdded":"2018-10-14T10:01:24.335909Z","sceneName":"Heroes.S02E09.1080p.Bluay.x264-hV","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10266528,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4295},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Truth & Consequences-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E10.Truth & Consequences-Bluray-1080p.mkv","size":3736620821,"dateAdded":"2018-10-14T10:09:38.748751Z","sceneName":"Heroes.S02E10.1080p.Bluray.x264-hV","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10266256,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4296},{"seriesId":74,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Powerless-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 02\/S02E11.Powerless-Bluray-1080p.mkv","size":3904401720,"dateAdded":"2018-10-14T10:17:04.983658Z","sceneName":"Heroes.S02E11.1080p.Bluray.x264-hV","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10265375,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4297},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E01E02.Orientation + Jump, Push, Fall-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E01E02.Orientation + Jump, Push, Fall-Bluray-1080p.mkv","size":7044238677,"dateAdded":"2018-10-14T12:59:53.442337Z","sceneName":"Heroes.S04E01-E02.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9398000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:26:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4299},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Ink-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E03.Ink-Bluray-1080p.mkv","size":3522385224,"dateAdded":"2018-10-14T13:24:55.102528Z","sceneName":"Heroes.S04E03.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9350000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4300},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Acceptance-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E04.Acceptance-Bluray-1080p.mkv","size":3521766669,"dateAdded":"2018-10-14T13:37:58.292867Z","sceneName":"Heroes.S04E04.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9522000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4301},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Hysterical Blindness-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E05.Hysterical Blindness-Bluray-1080p.mkv","size":3522414757,"dateAdded":"2018-10-14T13:46:32.404175Z","sceneName":"Heroes.S04E05.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9346000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4302},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Tabula Rasa-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E06.Tabula Rasa-Bluray-1080p.mkv","size":3522326461,"dateAdded":"2018-10-14T13:54:01.086454Z","sceneName":"Heroes.S04E06.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9388000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4303},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Strange Attractors-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E07.Strange Attractors-Bluray-1080p.mkv","size":3521855588,"dateAdded":"2018-10-14T14:02:18.769041Z","sceneName":"Heroes.S04E07.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9344000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4304},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Once Upon a Time in Texas-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E08.Once Upon a Time in Texas-Bluray-1080p.mkv","size":3521786249,"dateAdded":"2018-10-14T14:10:26.26945Z","sceneName":"Heroes.S04E08.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9363000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4305},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Shadowboxing-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E09.Shadowboxing-Bluray-1080p.mkv","size":3522188912,"dateAdded":"2018-10-14T14:17:02.157151Z","sceneName":"Heroes.S04E09.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9509000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4306},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Brother's Keeper-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E10.Brother's Keeper-Bluray-1080p.mkv","size":3522123039,"dateAdded":"2018-10-14T14:24:27.177763Z","sceneName":"Heroes.S04E10.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9652000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4307},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Thanksgiving-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E11.Thanksgiving-Bluray-1080p.mkv","size":3521915035,"dateAdded":"2018-10-14T14:31:42.978187Z","sceneName":"Heroes.S04E11.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9353000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4308},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E12.The Fifth Stage-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E12.The Fifth Stage-Bluray-1080p.mkv","size":3522295757,"dateAdded":"2018-10-14T14:39:19.257208Z","sceneName":"Heroes.S04E12.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9422000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4309},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Upon This Rock-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E13.Upon This Rock-Bluray-1080p.mkv","size":3521523390,"dateAdded":"2018-10-14T14:50:47.626666Z","sceneName":"Heroes.S04E13.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9584000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4334},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Let it Bleed-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E14.Let it Bleed-Bluray-1080p.mkv","size":3520959188,"dateAdded":"2018-10-14T15:05:45.131742Z","sceneName":"Heroes.S04E14.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9792000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4411},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Close To You-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E15.Close To You-Bluray-1080p.mkv","size":3521681102,"dateAdded":"2018-10-14T15:18:51.22196Z","sceneName":"Heroes.S04E15.1080p.BluRay.x264-aAF","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9783000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4412},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Pass+Fail-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E16.Pass+Fail-Bluray-1080p.mkv","size":3521675665,"dateAdded":"2018-10-14T19:29:38.067746Z","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9537000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4436},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E17.The Art of Deception-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E17.The Art of Deception-Bluray-1080p.mkv","size":3520943721,"dateAdded":"2018-10-14T20:01:39.139683Z","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9406000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4437},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E18.The Wall-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E18.The Wall-Bluray-1080p.mkv","size":3522109809,"dateAdded":"2018-10-14T20:01:39.210071Z","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9334000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4438},{"seriesId":74,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Brave New World-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 04\/S04E19.Brave New World-Bluray-1080p.mkv","size":3521481144,"dateAdded":"2018-10-14T20:01:39.249789Z","releaseGroup":"aAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9458000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4439},{"seriesId":74,"seasonNumber":0,"relativePath":"Specials\/S00E01.Unaired Pilot-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Specials\/S00E01.Unaired Pilot-Bluray-1080p.mkv","size":2107876328,"dateAdded":"2019-11-21T01:06:16.740084Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3207398,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:15:46","scanType":"","subtitles":"English \/ French \/ Italian \/ German \/ Spanish \/ Dutch \/ Portuguese \/ Spanish \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10199},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Genesis-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E01.Genesis-Bluray-1080p.mkv","size":1996858548,"dateAdded":"2019-11-21T01:06:33.702626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":462791,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4496043,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"53:17","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10200},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Don't Look Back-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E02.Don't Look Back-Bluray-1080p.mkv","size":1595460707,"dateAdded":"2019-11-21T01:06:51.37979Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423809,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4496255,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:54","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10201},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E03.One Giant Leap-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E03.One Giant Leap-Bluray-1080p.mkv","size":1623553169,"dateAdded":"2019-11-21T01:07:11.343185Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435684,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4494491,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10202},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Collision-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E04.Collision-Bluray-1080p.mkv","size":1612086523,"dateAdded":"2019-11-21T01:07:28.162713Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418368,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4493683,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:28","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10203},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Hiros-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E05.Hiros-Bluray-1080p.mkv","size":1619242972,"dateAdded":"2019-11-21T01:07:44.106631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433078,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4491036,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10204},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Better Halves-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E06.Better Halves-Bluray-1080p.mkv","size":1618244074,"dateAdded":"2019-11-21T01:08:05.736514Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417594,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498185,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10205},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Nothing to Hide-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E07.Nothing to Hide-Bluray-1080p.mkv","size":1619698599,"dateAdded":"2019-11-21T01:08:24.618999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428298,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4492512,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10206},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Seven Minutes to Midnight-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E08.Seven Minutes to Midnight-Bluray-1080p.mkv","size":1620038059,"dateAdded":"2019-11-21T01:08:41.646855Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435799,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4493094,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10207},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Homecoming-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E09.Homecoming-Bluray-1080p.mkv","size":1622088805,"dateAdded":"2019-11-21T01:09:00.551424Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444924,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4491732,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10208},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Six Months Ago-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E10.Six Months Ago-Bluray-1080p.mkv","size":1616518628,"dateAdded":"2019-11-21T01:09:19.600253Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421714,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4493988,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10209},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Fallout-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E11.Fallout-Bluray-1080p.mkv","size":1615086725,"dateAdded":"2019-11-21T01:09:38.923965Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433271,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4494516,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:21","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10210},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Godsend-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E12.Godsend-Bluray-1080p.mkv","size":1610254792,"dateAdded":"2019-11-21T01:09:57.875032Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":402813,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498734,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:27","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10211},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Fix-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E13.The Fix-Bluray-1080p.mkv","size":1604410560,"dateAdded":"2019-11-21T01:10:12.709099Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4499007,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:26","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10212},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Distractions-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E14.Distractions-Bluray-1080p.mkv","size":1604921011,"dateAdded":"2019-11-21T01:10:30.719428Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423722,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4494619,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10213},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Run!-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E15.Run!-Bluray-1080p.mkv","size":1615268764,"dateAdded":"2019-11-21T01:10:48.612744Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426560,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4495470,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:27","scanType":"","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10214},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Unexpected-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E16.Unexpected-Bluray-1080p.mkv","size":1612624629,"dateAdded":"2019-11-21T01:11:07.031537Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416639,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4497808,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:24","scanType":"","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10215},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Company Man-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E17.Company Man-Bluray-1080p.mkv","size":1618958180,"dateAdded":"2019-11-21T01:11:23.514911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430985,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498471,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:27","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10216},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Parasite-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E18.Parasite-Bluray-1080p.mkv","size":1610226148,"dateAdded":"2019-11-21T01:11:39.740045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406316,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4495196,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:28","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10217},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E19.07%-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E19.07%-Bluray-1080p.mkv","size":1606943985,"dateAdded":"2019-11-21T01:11:58.025157Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418689,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498519,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10218},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Five Years Gone-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E20.Five Years Gone-Bluray-1080p.mkv","size":1601888890,"dateAdded":"2019-11-21T01:12:15.994326Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":402714,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4492966,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10219},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Hard Part-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E21.The Hard Part-Bluray-1080p.mkv","size":1611670293,"dateAdded":"2019-11-21T01:12:34.653569Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412852,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4496771,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:26","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10220},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Landslide-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E22.Landslide-Bluray-1080p.mkv","size":1619089120,"dateAdded":"2019-11-21T01:12:52.049121Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431684,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4498939,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:26","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10221},{"seriesId":74,"seasonNumber":1,"relativePath":"Season 01\/S01E23.How to Stop an Exploding Man-Bluray-1080p.mkv","path":"\/tv\/Heroes\/Season 01\/S01E23.How to Stop an Exploding Man-Bluray-1080p.mkv","size":1664843798,"dateAdded":"2019-11-21T01:13:12.371322Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413912,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4500161,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:53","scanType":"","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10222}],"queue":[]},"59":{"series":{"title":"Coil - A Circle of Children","alternateTitles":[],"sortTitle":"coil circle children","status":"ended","ended":true,"overview":"Eleven years after the introduction of internet-connected, augmented reality eyeglasses and visors, Y\u016bko Okonogi moves with her family to Daikoku City, the technological center of the emerging half-virtual world. Y\u016bko joins her grandmother's \"investigation agency\" comprised of children equipped with virtual tools and powerful metatags. She quickly crosses paths with Y\u016bko Amasawa, an expert hacker of the virtual environment, as Amasawa relentlessly seeks to \"unlock\" the mystery of a computer virus that emerges from an inaccessible corrupted space.","previousAiring":"2007-11-30T15:00:00Z","network":"NHK","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/79\/banner.jpg?lastWrite=637103832540396640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81037-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/79\/poster.jpg?lastWrite=637354605448927330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81037-9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/79\/fanart.jpg?lastWrite=637103832527116880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81037-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-11-30T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":9315619488,"percentOfEpisodes":100.0}}],"year":2007,"path":"\/tv\/Dennou Coil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":81037,"tvRageId":15607,"tvMazeId":18398,"firstAired":"2007-05-12T00:00:00Z","seriesType":"standard","cleanTitle":"coilcirclechildren","imdbId":"tt1033796","titleSlug":"coil---a-circle-of-children","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-10-13T16:14:25.024165Z","ratings":{"votes":504,"value":8.5},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":29,"sizeOnDisk":9315619488,"percentOfEpisodes":100.0},"id":79},"episodes":[{"seriesId":79,"episodeFileId":4111,"seasonNumber":1,"episodeNumber":1,"title":"The Children with Glasses","airDate":"2007-05-12","airDateUtc":"2007-05-11T15:00:00Z","overview":"Yasako and Ky\u014dko arrive by train to Daikoku City. Their virtual pet dog, Densuke, goes missing when he falls into an abandoned zone of cyberspace occupied by an illegal. Yasako enlists the aid of Fumie, a detective from the Coil Denn\u014d Detective Agency, to help rescue her pet. In their efforts, they attract the attention of Searchmaton.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6491},{"seriesId":79,"episodeFileId":4112,"seasonNumber":1,"episodeNumber":2,"title":"COIL Cyber-Detective Agency","airDate":"2007-05-19","airDateUtc":"2007-05-18T15:00:00Z","overview":"Yasako and Fumie ask Yasako's grandmother, Megabaa, to cure Densuke of a deadly illness. In return Yasako agrees to join Megabaa's Detective Agency as their eighth member. Meanwhile Isako relentlessly searches for the \"Keyhole\". Deducing that it resides as an illegal in Densuke, she unleashes her virtual pets to capture him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6492},{"seriesId":79,"episodeFileId":4113,"seasonNumber":1,"episodeNumber":3,"title":"Yuko and Yuko","airDate":"2007-05-26","airDateUtc":"2007-05-25T15:00:00Z","overview":"Having captured Densuke, the Mojos deliver him to Isako. After separating the illegal from Densuke, Isako unsuccessfully attempts to \"unlock\" the organism with her key, causing nearby cyberspace to rupture. She reports the episode to a mysterious conspirator over the phone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6493},{"seriesId":79,"episodeFileId":4114,"seasonNumber":1,"episodeNumber":4,"title":"Daikoku City Heike Club","airDate":"2007-06-02","airDateUtc":"2007-06-01T15:00:00Z","overview":"A frenzied denn\u014d battle breaks out at school between Isako, Fumie, and Daichi's group, the Daikoku Hackers' Club. While Isako is the ultimate victor with Daichi's group completely subdued, Fumie manages to steal a piece of data from Amasawa that reads, \"Michiko\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6494},{"seriesId":79,"episodeFileId":4115,"seasonNumber":1,"episodeNumber":5,"title":"The Metabug Scramble Bus Tour","airDate":"2007-06-09","airDateUtc":"2007-06-08T15:00:00Z","overview":"Isako leads the beaten and desperate Daikoku Hackers' Club on a metabug expedition over the fringes of Daikoku's cyberspace. During the expedition, Isako traps and assumes control of the Daikoku Hackers. Captivated by Isako's skill, Daichi asks to become her disciple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6495},{"seriesId":79,"episodeFileId":4116,"seasonNumber":1,"episodeNumber":6,"title":"The Red Automaton","airDate":"2007-06-16","airDateUtc":"2007-06-15T15:00:00Z","overview":"Yasako and Fumie begin an investigation into Haraken and Searchmaton. They attempt to test and map out Searchmaton's behavioral patterns and programming. Under pressure, Haraken reveals to Yasako and Fumie his familial connections to the administrators of Searchmaton and his motive for investigating viruses and illegals.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6496},{"seriesId":79,"episodeFileId":4117,"seasonNumber":1,"episodeNumber":7,"title":"In Action!! The COIL Detective Agency","airDate":"2007-06-23","airDateUtc":"2007-06-22T15:00:00Z","overview":"Isako once again summons the kirabug illegal with the help of the Daikoku Hackers. However her plans are inadvertently disrupted by the pet detectives Yasako and Fumie working on an unrelated case. Isako eventually chases the rogue virus to a corrupted space on the school grounds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6497},{"seriesId":79,"episodeFileId":4118,"seasonNumber":1,"episodeNumber":8,"title":"The Summer Festival, and a Duel","airDate":"2007-06-30","airDateUtc":"2007-06-29T15:00:00Z","overview":"Isako hatches a plan and asks Daichi to challenge the Coil detectives to a duel. Daichi, at the expense of his revived friendship with Fumie, reluctantly complies. Haraken recovers a mysterious metabug from his former research partner's lost pet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6498},{"seriesId":79,"episodeFileId":4119,"seasonNumber":1,"episodeNumber":9,"title":"Michiko-san from the Other Side","airDate":"2007-07-07","airDateUtc":"2007-07-06T15:00:00Z","overview":"The kids spend a dark and stormy night at school telling ghost stories and playing spooky denn\u014d games. Isako uses the distraction to capture a kirabug manifested in the form of Michiko inside the school. Meanwhile, Haraken is briefly whisked away to \"the other side\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6499},{"seriesId":79,"episodeFileId":4120,"seasonNumber":1,"episodeNumber":10,"title":"Kanna's Diary","airDate":"2007-07-14","airDateUtc":"2007-07-13T15:00:00Z","overview":"Haraken, Fumie, and Yasako follow clues left by Haraken's former research partner, Kanna Ashihara. Meanwhile, Daichi is ejected from Isako's group due to his failure to defeat Fumie in a duel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6500},{"seriesId":79,"episodeFileId":4121,"seasonNumber":1,"episodeNumber":11,"title":"Sunken! Daikoku City","airDate":"2007-07-21","airDateUtc":"2007-07-20T15:00:00Z","overview":"Daichi, in a plot to acquire metabugs, catches and raises a fish-type illegal as a virtual pet. He eventually loses control of it as it floods Daikoku City with digital water.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6501},{"seriesId":79,"episodeFileId":4122,"seasonNumber":1,"episodeNumber":12,"title":"Daichi Grows Hair","airDate":"2007-07-28","airDateUtc":"2007-07-27T15:00:00Z","overview":"The protagonists find a race of microscopic illegals growing on their faces. Yasako, utilizing a communication device devised by Megabaa, becomes heavily engaged in a god game-like relationship with the developing civilization. She attempts to use her divine influence to save the war-mongering race before it crumbles from a nuclear holocaust. In the wake of devastation, the illegals set out to find their \"homeland\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6502},{"seriesId":79,"episodeFileId":4123,"seasonNumber":1,"episodeNumber":13,"title":"The Last Plesiosaur","airDate":"2007-08-04","airDateUtc":"2007-08-03T15:00:00Z","overview":"The protagonists agree to aid Denpa in relocating a docile plesiosaur-type illegal, which he had previously been raising in an obsolete space now scheduled for reconstruction. The lonesome illegal, driven to find more of its kind, follows the children in a hazardous journey through the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6503},{"seriesId":79,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Dennou Coil Free Research","airDate":"2007-08-25","airDateUtc":"2007-08-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6517},{"seriesId":79,"episodeFileId":4124,"seasonNumber":1,"episodeNumber":14,"title":"Record of a Living Being","airDate":"2007-09-01","airDateUtc":"2007-08-31T15:00:00Z","overview":"Fumie's younger brother, Akira, recaps the story of the TV series from his perspective as a double-agent. Haraken is accosted by Nekome and is warned about investigating further.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6504},{"seriesId":79,"episodeFileId":4125,"seasonNumber":1,"episodeNumber":15,"title":"The Young Boy Beyond the Station","airDate":"2007-09-08","airDateUtc":"2007-09-07T15:00:00Z","overview":"Yasako, attempting to find the place where she first met 4423, meets a boy named Takeru who guides her through the neighborhood. Deducing that the place from her memories was a virtual space deleted by Searchmaton, Yasako heads home as Takeru reports the day's events to a mysterious collaborator.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6505},{"seriesId":79,"episodeFileId":4126,"seasonNumber":1,"episodeNumber":16,"title":"Isako's Hospital Room","airDate":"2007-09-15","airDateUtc":"2007-09-14T15:00:00Z","overview":"For their research project, Haraken and Fumie find early records of denn\u014d users who have passed out and reported hallucinations of \"the other side\". Meanwhile, Yasako spies on Isako as she visits her comatose brother. Deducing that he is 4423, Yasako confronts Isako with her realization that she has met her brother years ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":6506},{"seriesId":79,"episodeFileId":4127,"seasonNumber":1,"episodeNumber":17,"title":"The Final Summer Vacation","airDate":"2007-09-22","airDateUtc":"2007-09-21T15:00:00Z","overview":"Haraken, tortured by the possibility that Kanna Ashihara still exists in \"the other side\", asks Isako to take him there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":6507},{"seriesId":79,"episodeFileId":4128,"seasonNumber":1,"episodeNumber":18,"title":"The Door to Another World","airDate":"2007-09-29","airDateUtc":"2007-09-28T15:00:00Z","overview":"Haraken catches a brief glimpse of Kanna before the collapse of Isako's gateway. Fearing for her nephew's life, Tamako confiscates his glasses. Meanwhile, obsolete space begins to invade Megabaa's shop as Ky\u014dko, Fumie and Yasako spend the night.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":6508},{"seriesId":79,"episodeFileId":4129,"seasonNumber":1,"episodeNumber":19,"title":"The Dark Visitors","airDate":"2007-10-06","airDateUtc":"2007-10-05T15:00:00Z","overview":"After Ky\u014dko is taken to the \"other side\", Yasako and Fumie evade the illegals and guide Ky\u014dko's denn\u014d body back to her real body with the help of Densuke.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":6509},{"seriesId":79,"episodeFileId":4130,"seasonNumber":1,"episodeNumber":20,"title":"Kanna and Yasako","airDate":"2007-10-13","airDateUtc":"2007-10-12T15:00:00Z","overview":"With Kanna's glasses, Haraken sneaks out once again to the \"other side\" where he finally makes amends with a digital apparition of her. Yasako ventures in to the rescue with Isako and Tamako's help. It is revealed that Tamako was the first person to open the gate to the \"other side\", and the meaning of the show's title, Denn\u014d Coil, is the phenomenon of the separation of one's denn\u014d body from their physical body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":6510},{"seriesId":79,"episodeFileId":4131,"seasonNumber":1,"episodeNumber":21,"title":"The Dark Automaton","airDate":"2007-10-20","airDateUtc":"2007-10-19T15:00:00Z","overview":"As First and Third elementary merge for classes on the top floor of a Megamass office building, Isako finds herself involved in a conspiracy by Megamass to research obsolete space and the effects of Denn\u014d Coil.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":6511},{"seriesId":79,"episodeFileId":4132,"seasonNumber":1,"episodeNumber":22,"title":"The Final COIL","airDate":"2007-10-27","airDateUtc":"2007-10-26T15:00:00Z","overview":"Yasako and Isako, on the run from Megamass and a powerful new searchmaton, take refuge in Megabaa's store. There, it is discovered that Densuke has the potential to open a stable portal to \"the other side\", now known as \"Coil Domain\". It is revealed that Coil Domain, Michiko, Imago and Kirabugs are remnants of an experiment gone awry, covered up by the Megamass conglomerate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":6512},{"seriesId":79,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Dennou Coil Comprehensive Recap","airDate":"2007-11-03","airDateUtc":"2007-11-02T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6518},{"seriesId":79,"episodeFileId":4133,"seasonNumber":1,"episodeNumber":23,"title":"The Granted Wish","airDate":"2007-11-10","airDateUtc":"2007-11-09T15:00:00Z","overview":"Nekome, driven to reveal true nature and history of the \"denn\u014d\" technology, tries to convince Isako to join her brother in Coil Domain using Densuke as a portal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":6513},{"seriesId":79,"episodeFileId":4134,"seasonNumber":1,"episodeNumber":24,"title":"The Children Who Throw Away Their Glasses","airDate":"2007-11-17","airDateUtc":"2007-11-16T15:00:00Z","overview":"Alarmed at what happened to Isako, the children's parents take away their glasses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":6514},{"seriesId":79,"episodeFileId":4135,"seasonNumber":1,"episodeNumber":25,"title":"The Kanazawa City Hazama Intersection","airDate":"2007-11-24","airDateUtc":"2007-11-23T15:00:00Z","overview":"Using the glasses that belonged to her deceased grandfather, Yasako travels to the other side to save Isako. Meanwhile, Megabaa finds out that they were mistaken on who 4423 really is.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":6515},{"seriesId":79,"episodeFileId":4136,"seasonNumber":1,"episodeNumber":26,"title":"Yasako and Isako","airDate":"2007-12-01","airDateUtc":"2007-11-30T15:00:00Z","overview":"Yasako realizes the nature of Michiko, 4423, and the Coil Domain. Aided by her friends and family she must fight Michiko's grip on Isako and to avoid Nekome's desire to dispose of her consciousness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":6516},{"seriesId":79,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Dennou Coil Total Summary Special","airDate":"2011-11-25","airDateUtc":"2011-11-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6519}],"episodeFile":[{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Children with Glasses-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E01.Children with Glasses-HDTV-720p.mkv","size":356125731,"dateAdded":"2018-10-13T16:15:07.251029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1798000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4111},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E02.COIL Cyber-Detective Agency-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E02.COIL Cyber-Detective Agency-HDTV-720p.mkv","size":356224692,"dateAdded":"2018-10-13T16:15:07.29187Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1699000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4112},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Yuko and Yuko-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E03.Yuko and Yuko-HDTV-720p.mkv","size":356135781,"dateAdded":"2018-10-13T16:15:07.753052Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4113},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Daikoku City Heike Club-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E04.Daikoku City Heike Club-HDTV-720p.mkv","size":356419621,"dateAdded":"2018-10-13T16:15:08.878528Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4114},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Metabug Scramble Bus Tour-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E05.The Metabug Scramble Bus Tour-HDTV-720p.mkv","size":355688510,"dateAdded":"2018-10-13T16:15:09.183303Z","releaseGroup":"bug","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4115},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Red Automaton-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E06.The Red Automaton-HDTV-720p.mkv","size":350389900,"dateAdded":"2018-10-13T16:15:09.526823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1701000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4116},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E07.In Action!! The COIL Detective Agency-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E07.In Action!! The COIL Detective Agency-HDTV-720p.mkv","size":362914304,"dateAdded":"2018-10-13T16:15:09.884768Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1701000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4117},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Summer Festival, and a Duel-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E08.The Summer Festival, and a Duel-HDTV-720p.mkv","size":356203755,"dateAdded":"2018-10-13T16:15:10.179111Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4118},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Michiko-san from the Other Side-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E09.Michiko-san from the Other Side-HDTV-720p.mkv","size":356743533,"dateAdded":"2018-10-13T16:15:11.001537Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4119},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Kanna's Diary-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E10.Kanna's Diary-HDTV-720p.mkv","size":356074429,"dateAdded":"2018-10-13T16:15:11.194201Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4120},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Sunken! Daikoku City-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E11.Sunken! Daikoku City-HDTV-720p.mkv","size":356273563,"dateAdded":"2018-10-13T16:15:11.568915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4121},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Daichi Grows Hair-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E12.Daichi Grows Hair-HDTV-720p.mkv","size":356278767,"dateAdded":"2018-10-13T16:15:12.884216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4122},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Last Plesiosaur-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E13.The Last Plesiosaur-HDTV-720p.mkv","size":356152764,"dateAdded":"2018-10-13T16:15:13.430819Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4123},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Record of a Living Being-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E14.Record of a Living Being-HDTV-720p.mkv","size":356214366,"dateAdded":"2018-10-13T16:15:13.78444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4124},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Young Boy Beyond the Station-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E15.The Young Boy Beyond the Station-HDTV-720p.mkv","size":356205204,"dateAdded":"2018-10-13T16:15:13.9745Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4125},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Isako's Hospital Room-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E16.Isako's Hospital Room-HDTV-720p.mkv","size":356204179,"dateAdded":"2018-10-13T16:15:14.853483Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4126},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E17.The Final Summer Vacation-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E17.The Final Summer Vacation-HDTV-720p.mkv","size":356244148,"dateAdded":"2018-10-13T16:15:15.04624Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4127},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Door to Another World-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E18.The Door to Another World-HDTV-720p.mkv","size":356256342,"dateAdded":"2018-10-13T16:15:16.270825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4128},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Dark Visitors-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E19.The Dark Visitors-HDTV-720p.mkv","size":356176281,"dateAdded":"2018-10-13T16:15:17.426178Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4129},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Kanna and Yasako-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E20.Kanna and Yasako-HDTV-720p.mkv","size":356177195,"dateAdded":"2018-10-13T16:15:17.968771Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4130},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Dark Automaton-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E21.The Dark Automaton-HDTV-720p.mkv","size":367034788,"dateAdded":"2018-10-13T16:15:18.972987Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1758000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4131},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E22.The Final COIL-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E22.The Final COIL-HDTV-720p.mkv","size":367164938,"dateAdded":"2018-10-13T16:15:19.537681Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1758000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4132},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E23.The Granted Wish-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E23.The Granted Wish-HDTV-720p.mkv","size":364094709,"dateAdded":"2018-10-13T16:15:19.917017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1741000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4133},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E24.The Children Who Throw Away Their Glasses-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E24.The Children Who Throw Away Their Glasses-HDTV-720p.mkv","size":364059541,"dateAdded":"2018-10-13T16:15:20.602472Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1741000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4134},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E25.The Kanazawa City Hazama Intersection-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E25.The Kanazawa City Hazama Intersection-HDTV-720p.mkv","size":364093765,"dateAdded":"2018-10-13T16:15:20.862302Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1730000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4135},{"seriesId":79,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Yasako and Isako-HDTV-720p.mkv","path":"\/tv\/Dennou Coil\/Season 01\/S01E26.Yasako and Isako-HDTV-720p.mkv","size":364068682,"dateAdded":"2018-10-13T16:15:24.070289Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1730000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"25:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4136}],"queue":[]},"60":{"series":{"title":"The Ren & Stimpy Show","alternateTitles":[],"sortTitle":"ren stimpy show","status":"ended","ended":true,"overview":"The show revolves around the lives of an angry, insane chihuahua named Ren H\u00f6ek and his brain-dead \"eediot\" sidekick cat, Stimpy. Together the duo have lots of bizarre and outrageous adventures accompanied by George Liquor, Mr. Horse, Powdered Toast Man, Muddy Mudskipper, Mr. and Mrs. Pipe, Mrs. Buttloaf, and Sv\u00ebn H\u00f6ek.","previousAiring":"1996-10-20T04:10:00Z","network":"Spike","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/62\/banner.jpg?lastWrite=637103833190264860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/3536-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/62\/poster.jpg?lastWrite=637461574518364140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/76088-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/62\/fanart.jpg?lastWrite=637103833186344930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/76088-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"1990-08-10T04:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":42,"sizeOnDisk":183560192,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1991-12-29T05:10:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1099319296,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1993-05-23T04:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":1651042304,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"1994-06-04T04:10:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":855341056,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"1995-04-01T05:10:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":1244045804,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"1996-10-20T04:10:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":1171187724,"percentOfEpisodes":100.0}}],"year":1991,"path":"\/tv\/The Ren and Stimpy Show","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":10,"tvdbId":76088,"tvRageId":6132,"tvMazeId":6328,"firstAired":"1991-08-11T00:00:00Z","seriesType":"standard","cleanTitle":"therenstimpyshow","imdbId":"tt0101178","titleSlug":"the-ren-and-stimpy-show","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Children","Comedy"],"tags":[],"added":"2018-07-08T09:20:09.1856875Z","ratings":{"votes":1171,"value":8.6},"statistics":{"seasonCount":5,"episodeFileCount":93,"episodeCount":93,"totalEpisodeCount":134,"sizeOnDisk":6204496376,"percentOfEpisodes":100.0},"id":62},"episodes":[{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"You Are What You Eat","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2934},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Have Yourself A Stinky Little Christmas","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2935},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Cheese Fist","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2936},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Col. Backwash's Chicken in a Drawer","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2937},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Craftwork Corner","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2938},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Dog Water","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2939},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"New Dog Water with K-9^12","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2941},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Ask Dr Stupid","overview":"Ask Dr Stupid, why do I have to go to school?..","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2942},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Ren's Toothache (Longer Version +1min)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2943},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Haunted House (with Bloody Head Fairy scene)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2944},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"The Cat That Laid The Golden Hairball (Longer Version +40secs)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2945},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Big Baby Scam (Longer version +16secs)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2946},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"The Lost Episodes (Part I)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2948},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"The Lost Episodes (Part II)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2949},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Origin Happy Happy Joy Joy","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2950},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"\u201cHappy, Happy, Joy, Joy\u201d Sing-A-Long","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17137},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"\u201cThe Lord Loves A Hangin'\u201d Sing-A-Long","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17327},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"\u201cThe Muddy Mudskipper Theme\u201d Sing-A-Long","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19712},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Varicose Veins","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21601},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Log","overview":"TV Advert for new 'LOG from BLAMMO', \"it's better than bad - it's good!\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21602},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Big House Blues (Nick Version)","overview":"Ren and Stimpy get tossed in the pound and find themselves next in line for... the Big Sleep! Will someone adopt them in time? Or will Ren lose his mind first?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21604},{"seriesId":62,"episodeFileId":2117,"seasonNumber":0,"episodeNumber":1,"title":"Big House Blues","airDate":"1990-08-10","airDateUtc":"1990-08-10T04:00:00Z","overview":"Ren and Stimpy get tossed in the pound and find themselves next in line for... the Big Sleep! Will someone adopt them in time? Or will Ren lose his mind first?","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":2922},{"seriesId":62,"episodeFileId":2119,"seasonNumber":1,"episodeNumber":1,"title":"Stimpy's Big Day","airDate":"1991-08-11","airDateUtc":"1991-08-11T04:00:00Z","overview":"Ren thinks TV has ruined Stimpy's mind, but when Stimpy wins a televised Gritty Kitty Litter contest and becomes a Hollywood star on the Muddy Muddskipper show, he leaves Ren behind.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2951},{"seriesId":62,"episodeFileId":2119,"seasonNumber":1,"episodeNumber":2,"title":"The Big Shot","airDate":"1991-08-11","airDateUtc":"1991-08-11T04:10:00Z","overview":"While Stimpy enjoys his new found success in show business, Ren sits at home missing his brainless buddy. Will Stimpy give up his fame and fortune to return home?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2952},{"seriesId":62,"episodeFileId":2123,"seasonNumber":1,"episodeNumber":3,"title":"Robin H\u00f6ek","airDate":"1991-08-18","airDateUtc":"1991-08-18T04:00:00Z","overview":"Ren dreams that he is the hero of Stimpy's bedtime story - a brave outlaw who robs from the rich, gives to the criminally insane, and rescues the cross-dressed cat, Maid Moron.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2953},{"seriesId":62,"episodeFileId":2123,"seasonNumber":1,"episodeNumber":4,"title":"Nurse Stimpy","airDate":"1991-08-18","airDateUtc":"1991-08-18T04:10:00Z","overview":"When Ren falls ill, it's Nurse Stimpy to the rescue, swearing by the Sacred Bedpan to cure his friend. Will the constant care lead to a cured Chihuahua, or a total relapse?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2954},{"seriesId":62,"episodeFileId":2129,"seasonNumber":1,"episodeNumber":5,"title":"Space Madness","airDate":"1991-08-25","airDateUtc":"1991-08-25T04:00:00Z","overview":"During a 36-year mission to the Crab Nebula, Commander H\u00f6ek succumbs to Space Madness and puts Cadet Stimpy in charge of the mysterious History Eraser Button!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2955},{"seriesId":62,"episodeFileId":2129,"seasonNumber":1,"episodeNumber":6,"title":"The Boy Who Cried Rat!","airDate":"1991-08-25","airDateUtc":"1991-08-25T04:10:00Z","overview":"Penniless and hungry, Ren hatches the perfect plan: Stimpy can get work as a family's mouse-catching kitty, and Ren can pose as the mouse. What could possibly go wrong?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2956},{"seriesId":62,"episodeFileId":2134,"seasonNumber":1,"episodeNumber":7,"title":"Fire Dogs","airDate":"1991-09-15","airDateUtc":"1991-09-15T04:00:00Z","overview":"Ren and Stimpy need new jobs, so they disguise themselves as Dalmatians, go to work for a psychotic fire chief, and battle a 40-story building fire, saving Mr. Horse and others!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2957},{"seriesId":62,"episodeFileId":2134,"seasonNumber":1,"episodeNumber":8,"title":"The Littlest Giant","airDate":"1991-09-15","airDateUtc":"1991-09-15T04:10:00Z","overview":"During the story of \"The Littlest Giant,\" Ren drifts off and dreams that he is Wee Ren, a resident of Thumbsville who makes the mistake of befriending the littlest Giant, Stimpy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2958},{"seriesId":62,"episodeFileId":2139,"seasonNumber":1,"episodeNumber":9,"title":"Marooned","airDate":"1991-12-15","airDateUtc":"1991-12-15T05:00:00Z","overview":"In this space adventure, Commander H\u00f6ek and Cadet Stimpy land on an eerie planet with only their Space Cadet Handbook to guide them! Can they avoid certain doom? Nope.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2959},{"seriesId":62,"episodeFileId":2139,"seasonNumber":1,"episodeNumber":10,"title":"Untamed World","airDate":"1991-12-15","airDateUtc":"1991-12-15T05:10:00Z","overview":"Nature show host \"Marlon\" H\u00f6ek and his sidekick Stimpy explore a strange Galapagos Island chain where all species look like Ren and Stimpy... but even less evolved!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2960},{"seriesId":62,"episodeFileId":2144,"seasonNumber":1,"episodeNumber":11,"title":"Black Hole","airDate":"1991-12-29","airDateUtc":"1991-12-29T05:00:00Z","overview":"It's another warped day for Commander H\u00f6ek and Cadet Stimpy as they fly into a mind-bending black hole, mutate continuously, and discover a mountain of missing left socks.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2961},{"seriesId":62,"episodeFileId":2144,"seasonNumber":1,"episodeNumber":12,"title":"Stimpy's Invention","airDate":"1991-12-29","airDateUtc":"1991-12-29T05:10:00Z","overview":"Stimpy invents a Happy Helmet so that his foaming friend Ren can be happy all the time. But it pushes Ren way past happiness and into utter insanity - and the nonstop \"Happy, Happy, Joy, Joy\" song doesn't help either!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2962},{"seriesId":62,"episodeFileId":2118,"seasonNumber":2,"episodeNumber":1,"title":"In the Army","airDate":"1992-08-15","airDateUtc":"1992-08-15T04:00:00Z","overview":"Ren and Stimpy get a chance to be all that they can be - and peel as many potatoes and H-bombs as they can - in an army unit commanded by a drill sergeant the size of a tank.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2963},{"seriesId":62,"episodeFileId":2118,"seasonNumber":2,"episodeNumber":2,"title":"Powdered Toast Man","airDate":"1992-08-15","airDateUtc":"1992-08-15T04:10:00Z","overview":"Powdered Toast Man saves a kitten from crashing into a truck, rescues the Pope (voiced by Frank Zappa) from Muddy Mudskipper, serves Ren and Stimpy breakfast, and helps the president with an embarrassing bathroom situation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2964},{"seriesId":62,"episodeFileId":2124,"seasonNumber":2,"episodeNumber":3,"title":"Ren's Toothache","airDate":"1992-08-22","airDateUtc":"1992-08-22T04:00:00Z","overview":"Ren scoffs at Stimpy's dental hygiene until a toothache leads to all his teeth falling out of his head. Not even a visit from the Nerve Ending Fairy can cheer Ren up, but ever-faithful Stimpy knows a way to get Ren smiling again.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2965},{"seriesId":62,"episodeFileId":2124,"seasonNumber":2,"episodeNumber":4,"title":"Out West","airDate":"1992-10-10","airDateUtc":"1992-10-10T04:00:00Z","overview":"Out in the Wild West, an ignorant sheriff and his dimwitted deputy hire villains to steal Mr. Horse so that they can have a hanging. Who are the lucky villains? You guessed it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2966},{"seriesId":62,"episodeFileId":2128,"seasonNumber":2,"episodeNumber":5,"title":"Rubber Nipple Salesmen","airDate":"1992-10-10","airDateUtc":"1992-10-10T04:10:00Z","overview":"Ren and Stimpy hit the road as door-to-door Rubber Nipple Salesmen, peddling their wares to a bizarre clientele, including a psychotic Fire Chief, a paranoid Mr. Horse, and a family actually in need of new nipples!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2967},{"seriesId":62,"episodeFileId":2128,"seasonNumber":2,"episodeNumber":6,"title":"Sv\u00ebn H\u00f6ek","airDate":"1992-11-07","airDateUtc":"1992-11-07T05:00:00Z","overview":"Ren gets driven out of his mind yet again as his anxiously awaited cousin Sv\u00ebn forms a stupidity bond with Stimpy through magic Nose Goblins, Kitty Litter, and the \"Don't Whiz on the Electric Fence\" board game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2968},{"seriesId":62,"episodeFileId":2133,"seasonNumber":2,"episodeNumber":7,"title":"Haunted House","airDate":"1992-11-21","airDateUtc":"1992-11-21T05:00:00Z","overview":"Ren and Stimpy visit a haunted mansion where a depressive ghost fruitlessly tries to scare them, but the clueless duo barely notice his antic... not even the chainsaw!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2969},{"seriesId":62,"episodeFileId":2133,"seasonNumber":2,"episodeNumber":8,"title":"Mad Dog H\u00f6ek","airDate":"1992-11-21","airDateUtc":"1992-11-21T05:10:00Z","overview":"The fearsome Lout Brothers take on Mad Dog H\u00f6ek (Ren) and Killer Kadoogan (Stimpy) in a no-holds-barred wrestling match that tests Ren's theory on how fake wrestling is.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2970},{"seriesId":62,"episodeFileId":2138,"seasonNumber":2,"episodeNumber":9,"title":"Big Baby Scam","airDate":"1992-12-12","airDateUtc":"1992-12-12T05:00:00Z","overview":"It's Ren's greatest scheme ever: switch places with a couple of babies and enjoy the pampered life. But being babies turns out to be harder than Ren or Stimpy ever imagined.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2971},{"seriesId":62,"episodeFileId":2138,"seasonNumber":2,"episodeNumber":10,"title":"Dog Show","airDate":"1992-12-12","airDateUtc":"1992-12-12T05:10:00Z","overview":"George Liquor, American, has worked tirelessly to groom Ren and Stimpy for the All County Dog Show, but before they can compete, they'll need to get past the toughest judge of all - Mr. Horse!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2972},{"seriesId":62,"episodeFileId":2143,"seasonNumber":2,"episodeNumber":11,"title":"Son of Stimpy","airDate":"1992-12-19","airDateUtc":"1992-12-19T05:00:00Z","overview":"Stimpy squeezes, and a stench is born. Ren thinks it's just a stinky fantasy, but when Stinky floats away, Stimpy abandons his friend to search through rain and snow and dark of night. It'll take a Christmas miracle for Stinky to return to his warm, snugly home!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2973},{"seriesId":62,"episodeFileId":2143,"seasonNumber":2,"episodeNumber":12,"title":"Monkey See...Monkey Don't","airDate":"1993-02-27","airDateUtc":"1993-02-27T05:00:00Z","overview":"Ren and Stimpy want the easy life of living in a zoo. They disguise themselves as monkeys and try to hang in there.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2974},{"seriesId":62,"episodeFileId":2148,"seasonNumber":2,"episodeNumber":13,"title":"Fake Dad","airDate":"1993-02-27","airDateUtc":"1993-02-27T05:10:00Z","overview":"Ren shows his soft side when he volunteers to be a fake dad for a 200-pound prison convict named Kowalski. Of course, Stimpy lends support as the loving fake mom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2975},{"seriesId":62,"episodeFileId":2148,"seasonNumber":2,"episodeNumber":14,"title":"The Great Outdoors","airDate":"1993-03-27","airDateUtc":"1993-03-27T05:00:00Z","overview":"Ren and Stimpy go camping and learn how to rough it in nature. And what could be rougher than skinny dipping with Stimpy? Ren's about to find out.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2976},{"seriesId":62,"episodeFileId":2152,"seasonNumber":2,"episodeNumber":15,"title":"The Cat That Laid the Golden Hairball","airDate":"1993-03-27","airDateUtc":"1993-03-27T05:10:00Z","overview":"Ren has a new way to strike it rich - sell Stimpy's hairballs! Stimpy starts hwarfing hairballs on a production line, but what will Ren do when the supply runs out?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2977},{"seriesId":62,"episodeFileId":2152,"seasonNumber":2,"episodeNumber":16,"title":"Stimpy's Fan Club","airDate":"1993-04-24","airDateUtc":"1993-04-24T04:00:00Z","overview":"Ren is jealous of Stimpy's constant stream of fan mail, so Stimpy makes his pal the president of his Fan Club, causing Ren delusions of grandeur, and ultimately, insanity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2978},{"seriesId":62,"episodeFileId":2156,"seasonNumber":2,"episodeNumber":17,"title":"A Visit to Anthony","airDate":"1993-05-08","airDateUtc":"1993-05-08T04:00:00Z","overview":"Ren and Stimpy's U.S. visit to a young fan named Anthony threatens to destroy all his youthful fantasies, so Anthony's overprotective father threatens to destroy them!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2979},{"seriesId":62,"episodeFileId":2156,"seasonNumber":2,"episodeNumber":18,"title":"The Royal Canadian Kilted Yaksmen","airDate":"1993-05-23","airDateUtc":"1993-05-23T04:00:00Z","overview":"Ren and Stimpy become Royal Canadian Kilted Yaksmen and brave the jungle, desert, and snow of Canada, facing hunger, poison dirt, a Kodiak Marmoset, and a catchy tune!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2980},{"seriesId":62,"episodeFileId":2121,"seasonNumber":3,"episodeNumber":1,"title":"To Salve and Salve Not!","airDate":"1993-11-20","airDateUtc":"1993-11-20T05:00:00Z","overview":"A salesman keeps bugging Stimpy to buy a new product, Salve. Ren gets very annoyed and tries to get him out of his house, but when he finally needs it, Stimpy buys all the cans of Salve.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2982},{"seriesId":62,"episodeFileId":2121,"seasonNumber":3,"episodeNumber":2,"title":"A Yard Too Far","airDate":"1993-11-20","airDateUtc":"1993-11-20T05:10:00Z","overview":"Ren and Stimpy try to get food from a house (Yogi Bear-style) with a baboon guarding it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2983},{"seriesId":62,"episodeFileId":2127,"seasonNumber":3,"episodeNumber":3,"title":"Circus Midgets","airDate":"1993-11-27","airDateUtc":"1993-11-27T05:00:00Z","overview":"Ren & Stimpy have been hitch hiking for three years. They finally get a ride... from crazed circus midgets who kidnap various people, because they are in desperate need of an audience.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2984},{"seriesId":62,"episodeFileId":2127,"seasonNumber":3,"episodeNumber":4,"title":"No Pants Today","airDate":"1993-11-27","airDateUtc":"1993-11-27T05:10:00Z","overview":"After Stimpy gets out of the shower, he finds that there is not a pair of pants in the house. Ignoring Ren, who tells him that clothes are for humans, and that he doesn't need pants, he tries multiple times to find a pair of pants, without much luck. He is shunned by the outside world because he is nude. He eventually gets lost in the forest, cold, naked, and embarrassed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2985},{"seriesId":62,"episodeFileId":2132,"seasonNumber":3,"episodeNumber":5,"title":"Ren's Pecs","airDate":"1993-12-18","airDateUtc":"1993-12-18T05:00:00Z","overview":"Beach-hound Ren is busy strutting his stuff for the babes of summer when a huge hairy bully kicks sand in his face.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2986},{"seriesId":62,"episodeFileId":2132,"seasonNumber":3,"episodeNumber":6,"title":"An Abe Divided","airDate":"1993-12-18","airDateUtc":"1993-12-18T05:10:00Z","overview":"Ren and Stimpy volunteer to take care of the Lincoln Memorial, until they break the head of the monument.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2987},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Flod","airDate":"1994-01-08","airDateUtc":"1994-01-08T05:00:00Z","overview":"The Most Perfect Cube of Fat","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2940},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Stimpy's Cartoon Show (original cut)","airDate":"1994-01-08","airDateUtc":"1994-01-08T05:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2947},{"seriesId":62,"episodeFileId":2135,"seasonNumber":3,"episodeNumber":7,"title":"Stimpy's Cartoon Show","airDate":"1994-01-08","airDateUtc":"1994-01-08T05:00:00Z","overview":"Stimpy is making a cartoon when Ren appears and tries to persuade Stimpy that cartoons aren't good for the brain. When Stimpy discovers that Ren is bad for drawing he makes him producer of the cartoon. Ren takes over the credits of the cartoon and Stimpy works in a slavering way until the cartoon is finished and are invited to show the cartoon to Wilbur Cobb, \"the godfather of animation\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2988},{"seriesId":62,"episodeFileId":2135,"seasonNumber":3,"episodeNumber":8,"title":"Lair of the Lummox","airDate":"1994-01-29","airDateUtc":"1994-01-29T05:00:00Z","overview":"As hosts of their favorite TV show, Untamed World, Ren & Stimpy become voyeurs in the wild.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2989},{"seriesId":62,"episodeFileId":2140,"seasonNumber":3,"episodeNumber":9,"title":"Jimminy Lummox","airDate":"1994-02-19","airDateUtc":"1994-02-19T05:00:00Z","overview":"Stimpy walks in on Ren while he tortures an ant. After concluding that Ren has no conscience, Stimpy lets Ren borrow his concience, played by guitar player Jiminy Lummox.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2990},{"seriesId":62,"episodeFileId":2140,"seasonNumber":3,"episodeNumber":10,"title":"Bass Masters","airDate":"1994-02-19","airDateUtc":"1994-02-19T05:10:00Z","overview":"Ren & Stimpy are the hosts of a popular fishing show. They set out on a mission to catch the legendary foul mouth Bass, Albert, and Wilbur Cobb escapes from prison to come along with them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2991},{"seriesId":62,"episodeFileId":2145,"seasonNumber":3,"episodeNumber":11,"title":"Ren's Retirement","airDate":"1994-04-02","airDateUtc":"1994-04-02T05:00:00Z","overview":"Ren wakes up feeling younger than ever. He chops enough wood to last Ren & Stimpy an entire year, and saves Mrs. Buttloaves (from the \"Firedogs\" short). Stimpy announces that it's Ren's birthday, and Ren is disappointed when Stimpy tells him that he is now 10 years old (70 in dog years). Ren ages rapidly, becoming a senile old fart. He decides to retire. During a game of golf, Ren decides to begin looking for a coffin. At his funeral, Stimpy decides to move in with Ren in his coffin.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2992},{"seriesId":62,"episodeFileId":2145,"seasonNumber":3,"episodeNumber":12,"title":"Jerry the Bellybutton Elf","airDate":"1994-04-09","airDateUtc":"1994-04-09T04:00:00Z","overview":"Stimpy's playing with his belly button until he gets inside of it and meets an elf named Jerry.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2993},{"seriesId":62,"episodeFileId":2149,"seasonNumber":3,"episodeNumber":13,"title":"Road Apples","airDate":"1994-04-09","airDateUtc":"1994-04-09T04:10:00Z","overview":"Ren & Stimpy pose as roadkill so they can get a ride to the desert.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2994},{"seriesId":62,"episodeFileId":2149,"seasonNumber":3,"episodeNumber":14,"title":"Hard Times for Haggis","airDate":"1994-04-16","airDateUtc":"1994-04-16T04:00:00Z","overview":"Haggis MacHaggis is the host of a popular kids show - that is, until Ren and Stimpy hits the air.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2995},{"seriesId":62,"episodeFileId":2155,"seasonNumber":3,"episodeNumber":15,"title":"Eat My Cookies","airDate":"1994-06-04","airDateUtc":"1994-06-04T04:00:00Z","overview":"Ren and Stimpy become Barrette Beret Girl Scouts, and when Ren makes Stimpy eat all the cookies, they need to find a replacement for them. Plus, when Stimpy earns the famed Snipe-Hunting Badge, Ren becomes desperate for one of his own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2996},{"seriesId":62,"episodeFileId":2155,"seasonNumber":3,"episodeNumber":16,"title":"Ren's Bitter Half","airDate":"1994-06-04","airDateUtc":"1994-06-04T04:10:00Z","overview":"Stimpy creates a cloning liquid in his lab, and it falls into Ren's hands.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2997},{"seriesId":62,"episodeFileId":2120,"seasonNumber":4,"episodeNumber":1,"title":"Hermit Ren","airDate":"1994-10-01","airDateUtc":"1994-10-01T04:00:00Z","overview":"Hermit Ren: Annoyed by Stimpy's stupidity, Ren goes to live off as a hermit, and goes crazy after months of being alone. He is kicked out of the hermits union for having imaginary friends.\r\nShow Segment: Untamed World: Field Guide:\r\nShort features Stimpy, reprising his role as a nature show host from Untamed World, in the jungles of Miami, Florida.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2998},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Field Guide","airDate":"1994-10-01","airDateUtc":"1994-10-01T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21600},{"seriesId":62,"episodeFileId":2120,"seasonNumber":4,"episodeNumber":2,"title":"House of Next Tuesday","airDate":"1994-10-08","airDateUtc":"1994-10-08T04:00:00Z","overview":"The chums seek refuge in a model home of the future which is awash with rare conveniences.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":2999},{"seriesId":62,"episodeFileId":3931,"seasonNumber":4,"episodeNumber":3,"title":"A Friend In Your Face!","airDate":"1994-10-08","airDateUtc":"1994-10-08T04:10:00Z","overview":"Stimpy has a friend in his face (like a tick), then Ren ends up with the friend's friend, which starts to annoy him to no end.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3000},{"seriesId":62,"episodeFileId":3931,"seasonNumber":4,"episodeNumber":4,"title":"Blazing Entrails","airDate":"1994-10-22","airDateUtc":"1994-10-22T04:00:00Z","overview":"Ren goes into Stimpy's body to find a medical explanation to why he is so stupid.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3001},{"seriesId":62,"episodeFileId":2130,"seasonNumber":4,"episodeNumber":5,"title":"Lumber Jerks","airDate":"1994-10-22","airDateUtc":"1994-10-22T04:10:00Z","overview":"Ren & Stimpy get jobs as Paper Boys, but nobody is paying their bills.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3002},{"seriesId":62,"episodeFileId":2130,"seasonNumber":4,"episodeNumber":6,"title":"Prehistoric Stimpy","airDate":"1994-11-05","airDateUtc":"1994-11-05T05:00:00Z","overview":"Ren & Stimpy go to a Natural History Museum.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3003},{"seriesId":62,"episodeFileId":2136,"seasonNumber":4,"episodeNumber":7,"title":"Farm Hands","airDate":"1994-11-05","airDateUtc":"1994-11-05T05:10:00Z","overview":"Famished, Ren & Stimpy pretend to be long lost children of two Farmers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3004},{"seriesId":62,"episodeFileId":2136,"seasonNumber":4,"episodeNumber":8,"title":"Magical Golden Singing Cheeses","airDate":"1994-11-12","airDateUtc":"1994-11-12T05:00:00Z","overview":"Ren and Stimpy are two starving peasants in a fairy-tale world, so Stimpy tries to wrangle some wheels of magic singing cheese from the village idiot by besting him in a contest of stupidity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3005},{"seriesId":62,"episodeFileId":7330,"seasonNumber":4,"episodeNumber":9,"title":"A Hard Day's Luck","airDate":"1994-11-12","airDateUtc":"1994-11-12T05:10:00Z","overview":"Haggis McHaggis finds a leprechaun in his breakfast cereal, but before he can get a wish from the wee man, he has to prove he's even-tempered, generous, and brave (or at least one of the three). Like that's going to happen...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11102},{"seriesId":62,"episodeFileId":2142,"seasonNumber":4,"episodeNumber":10,"title":"I Love Chicken","airDate":"1994-11-19","airDateUtc":"1994-11-19T05:00:00Z","overview":"Stimpy is preparing Dinner for Ren, until Stimpy falls in love with a Chicken.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3007},{"seriesId":62,"episodeFileId":2147,"seasonNumber":4,"episodeNumber":11,"title":"Powdered Toast Man vs Waffle Woman","airDate":"1994-11-19","airDateUtc":"1994-11-19T05:10:00Z","overview":"A woman tells the story of how her waffle business was ruined because of Powdered Toast. Meanwhile Powdered Toast Man tries to grant a wish for Little Jimmy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3008},{"seriesId":62,"episodeFileId":2147,"seasonNumber":4,"episodeNumber":12,"title":"It's a Dog's Life","airDate":"1994-12-03","airDateUtc":"1994-12-03T05:00:00Z","overview":"Ren & Stimpy are about to take that last long walk at the dog pound when a sweet rich old lady falls for them and adopts them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3009},{"seriesId":62,"episodeFileId":2150,"seasonNumber":4,"episodeNumber":13,"title":"Egg Y\u00f6lkeo","airDate":"1994-12-03","airDateUtc":"1994-12-03T05:10:00Z","overview":"In this parody of Pinocchio, Renwaldo, the village of Egg Smith\u00ebe, makes a puppet boy name Egg Y\u00f6lkeo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3010},{"seriesId":62,"episodeFileId":2150,"seasonNumber":4,"episodeNumber":14,"title":"Double Header","airDate":"1995-01-07","airDateUtc":"1995-01-07T05:00:00Z","overview":"Ren can't stand Stimpy anymore, so he sends Stimpy on a one-way ticket out of town. Then they are hit by a bus and get united (literally) in a cheap hospital.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3011},{"seriesId":62,"episodeFileId":2154,"seasonNumber":4,"episodeNumber":15,"title":"Scotsman in Space","airDate":"1995-01-07","airDateUtc":"1995-01-07T05:10:00Z","overview":"Ren & Stimpy take off on an exciting Space adventure, starring the scotsman Haggis","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3012},{"seriesId":62,"episodeFileId":2154,"seasonNumber":4,"episodeNumber":16,"title":"Pixie King","airDate":"1995-01-14","airDateUtc":"1995-01-14T05:00:00Z","overview":"Ren & Stimpy find themselves in elf & gnome world where everyone happily works to graduate to Pixie status.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3013},{"seriesId":62,"episodeFileId":2158,"seasonNumber":4,"episodeNumber":17,"title":"Aloha H\u00f6ek","airDate":"1995-01-14","airDateUtc":"1995-01-14T05:10:00Z","overview":"Ren & Stimpy are marooned & starving on a deserted island. They find a dead whale and start living inside it. Later Ren kicks Stimpy out of the rotting whale and Stimpy finds \"Big Kahuna\", a nice fat man who has food, a hut and girls with him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3014},{"seriesId":62,"episodeFileId":2158,"seasonNumber":4,"episodeNumber":18,"title":"Insomniac Ren","airDate":"1995-01-21","airDateUtc":"1995-01-21T05:00:00Z","overview":"Ren can't get any sleep.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3015},{"seriesId":62,"episodeFileId":2161,"seasonNumber":4,"episodeNumber":19,"title":"My Shiny Friend","airDate":"1995-01-21","airDateUtc":"1995-01-21T05:10:00Z","overview":"Stimpy won't stop watching television.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3016},{"seriesId":62,"episodeFileId":2161,"seasonNumber":4,"episodeNumber":20,"title":"Cheese Rush Days","airDate":"1995-02-11","airDateUtc":"1995-02-11T05:00:00Z","overview":"Ren & Stimpy journey to the Blue-Cheese Mountains to become miners.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3017},{"seriesId":62,"episodeFileId":2163,"seasonNumber":4,"episodeNumber":21,"title":"Weiner Barons","airDate":"1995-02-11","airDateUtc":"1995-02-11T05:10:00Z","overview":"Ren & Stimpy are at the unemployment office, and Ren & Stimpy are not suitable for any of the jobs.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3018},{"seriesId":62,"episodeFileId":2163,"seasonNumber":4,"episodeNumber":22,"title":"Galoot Wranglers","airDate":"1995-03-04","airDateUtc":"1995-03-04T05:00:00Z","overview":"Wilbur Cobb tells Ren and Stimpy a Western story about galoots.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3019},{"seriesId":62,"episodeFileId":2164,"seasonNumber":4,"episodeNumber":23,"title":"Ren Needs Help!","airDate":"1995-03-04","airDateUtc":"1995-03-04T05:10:00Z","overview":"After Stimpy breaks Ren's stuff, Ren goes crazy and is sent to a home for mentally insane people.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3020},{"seriesId":62,"episodeFileId":2164,"seasonNumber":4,"episodeNumber":24,"title":"Superstitious Stimpy","airDate":"1995-04-01","airDateUtc":"1995-04-01T05:00:00Z","overview":"Stimpy becomes superstitious when Tuesday the 17th arrives.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3021},{"seriesId":62,"episodeFileId":2165,"seasonNumber":4,"episodeNumber":25,"title":"Travelogue","airDate":"1995-04-01","airDateUtc":"1995-04-01T05:10:00Z","overview":"Ren & Stimpy travel to a new Country.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":3022},{"seriesId":62,"episodeFileId":2122,"seasonNumber":5,"episodeNumber":1,"title":"Ol' Blue Nose","airDate":"1995-05-27","airDateUtc":"1995-05-27T04:00:00Z","overview":"Ren hits Stimpy in the nose and he starts to sing with a crooner-like voice. Stimpy becames famous, until his nose leaves him because of being slapped many times.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3023},{"seriesId":62,"episodeFileId":2122,"seasonNumber":5,"episodeNumber":2,"title":"Stupid Sidekick Union","airDate":"1995-05-27","airDateUtc":"1995-05-27T04:10:00Z","overview":"The sidekick union is going on a massive strike and Stimpy is alerted.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3024},{"seriesId":62,"episodeFileId":3930,"seasonNumber":5,"episodeNumber":3,"title":"Space Dogged","airDate":"1995-06-03","airDateUtc":"1995-06-03T04:00:00Z","overview":"A russian dog-and-cat team bearing resemblence to Ren & Stimpy are going to be the first dog & cat sent up to space in the Russian space program.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3025},{"seriesId":62,"episodeFileId":3930,"seasonNumber":5,"episodeNumber":4,"title":"Feud for Sale","airDate":"1995-06-03","airDateUtc":"1995-06-03T04:10:00Z","overview":"Starring \"Hey, It's That Guy\"\r\n\r\nThe narrator from Space Madness plays a salesman who out-wits Abner & Ewalt Nitwit, the morons from Out West.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3026},{"seriesId":62,"episodeFileId":2131,"seasonNumber":5,"episodeNumber":5,"title":"Hair of the Cat","airDate":"1995-07-01","airDateUtc":"1995-07-01T04:00:00Z","overview":"Ren suffers terrible allergies.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3027},{"seriesId":62,"episodeFileId":2131,"seasonNumber":5,"episodeNumber":6,"title":"City Hicks","airDate":"1995-07-01","airDateUtc":"1995-07-01T04:10:00Z","overview":"Ren & Stimpy leave the country when it rains & their fields are ruined with fruits & vegetables.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3028},{"seriesId":62,"episodeFileId":2137,"seasonNumber":5,"episodeNumber":7,"title":"Stimpy's Pet","airDate":"1995-10-07","airDateUtc":"1995-10-07T04:00:00Z","overview":"Stimpy takes care of an abandoned Circus Clown.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3029},{"seriesId":62,"episodeFileId":2137,"seasonNumber":5,"episodeNumber":8,"title":"Ren's Brain","airDate":"1995-10-07","airDateUtc":"1995-10-07T04:10:00Z","overview":"Stimpy re-enters the world of science as a \"freelance brain surgeon\". He soon runs out of good brains to conduct experiments on, so (ala \"Stimpy's Invention\") Stimpy removes Ren's brain.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3030},{"seriesId":62,"episodeFileId":2141,"seasonNumber":5,"episodeNumber":9,"title":"Bellhops","airDate":"1995-10-14","airDateUtc":"1995-10-14T04:00:00Z","overview":"Ren & Stimpy get jobs as bellhops & must make sure that no one finds out who is living in the top two floors of the hotel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3031},{"seriesId":62,"episodeFileId":2141,"seasonNumber":5,"episodeNumber":10,"title":"Dog Tags","airDate":"1995-10-14","airDateUtc":"1995-10-14T04:10:00Z","overview":"Ren is getting ready for the annual Dog Lodge meeting & Stimpy begs to come along.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3032},{"seriesId":62,"episodeFileId":2146,"seasonNumber":5,"episodeNumber":11,"title":"I Was a Teenage Stimpy","airDate":"1995-10-21","airDateUtc":"1995-10-21T04:00:00Z","overview":"Stimpy starts his journey into teenagedom, complete with all of its trials & tribulations.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3033},{"seriesId":62,"episodeFileId":2146,"seasonNumber":5,"episodeNumber":12,"title":"Who's Stupid Now?","airDate":"1995-10-21","airDateUtc":"1995-10-21T04:10:00Z","overview":"When Ren and Stimpy find out they are about to be cancelled, Ren comments that they'll do anything to keep the show on going, so the producer makes \"a twist in chemistry\" by making Stimpy the skinny jerk and Ren as the fat idiot.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3034},{"seriesId":62,"episodeFileId":2151,"seasonNumber":5,"episodeNumber":13,"title":"School Mates","airDate":"1995-11-11","airDateUtc":"1995-11-11T05:00:00Z","overview":"An old obedience school friend of Ren's comes over for a surprise visit & is appalled that Ren is living a middle class lifestyle with a house cat.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3035},{"seriesId":62,"episodeFileId":2151,"seasonNumber":5,"episodeNumber":14,"title":"Dinner Party","airDate":"1995-11-11","airDateUtc":"1995-11-11T05:10:00Z","overview":"Ren H\u00f6ek narrates the proper etiquette for throwing a dinner party.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3036},{"seriesId":62,"episodeFileId":2153,"seasonNumber":5,"episodeNumber":15,"title":"Pen Pals","airDate":"1995-11-18","airDateUtc":"1995-11-18T05:00:00Z","overview":"Ren & Stimpy are watching TV when they see the grand opening of a new jail where the prisoners are treated like kings.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3037},{"seriesId":62,"episodeFileId":2153,"seasonNumber":5,"episodeNumber":16,"title":"Big Flakes","airDate":"1995-11-18","airDateUtc":"1995-11-18T05:10:00Z","overview":"Ren and Stimpy are going on vacation in the winter. They arrive at the cabin, but they get snowed in.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3038},{"seriesId":62,"episodeFileId":2157,"seasonNumber":5,"episodeNumber":17,"title":"Reverend Jack","airDate":"1995-12-09","airDateUtc":"1995-12-09T05:00:00Z","overview":"Ren and Stimpy work for a \"Reverend\" who says sermons about cheese and meat.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3039},{"seriesId":62,"episodeFileId":2157,"seasonNumber":5,"episodeNumber":18,"title":"Terminal Stimpy","airDate":"1995-12-09","airDateUtc":"1995-12-09T05:10:00Z","overview":"Stimpy gets paranoid because he's used up seven of his 9 lives and only has two left to live.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3040},{"seriesId":62,"episodeFileId":2160,"seasonNumber":5,"episodeNumber":19,"title":"A Scooter for Yaksmas","airDate":"1995-12-16","airDateUtc":"1995-12-16T05:00:00Z","overview":"Stimpy believes in Yaksmas, yet Ren who thinks Yaksmas is stupid, doesn't believe.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3041},{"seriesId":62,"episodeFileId":2160,"seasonNumber":5,"episodeNumber":20,"title":"Sammy and Me","airDate":"1996-10-20","airDateUtc":"1996-10-20T04:00:00Z","overview":"Stimpy's Sammy Mantis Jr. fan club kit arrives in the mail & Stimpy is overjoyed.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3042},{"seriesId":62,"episodeFileId":2162,"seasonNumber":5,"episodeNumber":21,"title":"The Last Temptation","airDate":"1996-10-20","airDateUtc":"1996-10-20T04:10:00Z","overview":"After Ren has a near-death experience, he tries to be nicer to Stimpy. After he repays Stimpy with up to $1 million he had stolen from his piggy bank over the years, he ends up rich.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":3043},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Man's Best Friend","airDate":"2003-06-23","airDateUtc":"2003-06-23T04:00:00Z","overview":"One day, George Liquor is standing outside of a pet store, watching Ren and Stimpy sleep in the window and gets the idea to adopt them as his pets. Upon arriving home, he introduces them to their new abode: a fish bowl from which the fish was rudely thrown out (and stole George's car as a result). The next day Ren and Stimpy awaken to find George Liquor dressed as a drill sergeant to train them to be proper pets. Their first lesson is house training by doing butt-push-ups on a newspaper. Ren fails, but Stimpy easily does his business while reading about mudslides. He is given a cigar-shaped dog treat as a reward. Next they are taught discipline. To learn discipline, first they have to learn to disobey.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21605},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Onward And Upward","airDate":"2003-06-26","airDateUtc":"2003-06-26T04:00:00Z","overview":"Ren & Stimpy move from an old man's mouth to a restaurant spittoon. They also fall in love with each other and try to pitch and catch. Aired as the first episode of Spike TV's \"Ren and Stimpy Adult Party Cartoon.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13083},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Ren Seeks Help","airDate":"2003-07-03","airDateUtc":"2003-07-03T04:00:00Z","overview":"Ren looks back to his past to remember the moment that caused him to get pissed off so easily. Mr. Horse doesn't really help as his psychiatrist. Aired on Spike TV's \"Ren and Stimpy Adult Party Cartoon.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13081},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Fire Dogs 2","airDate":"2003-07-24","airDateUtc":"2003-07-24T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2930},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Naked Beach Frenzy","airDate":"2003-07-31","airDateUtc":"2003-07-31T04:00:00Z","overview":"Ren and Stimpy enjoy a day at the beach. Ren shows his respect to the superiority of the female form, forcing Stimpy to find succor in the bosom of a large foreign huckster. Featuring: Shampoo Master, making his long-awaited debut. And don't blink or you might miss a special guest appearance by Jiminy Man.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2924},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Altruists","airDate":"2003-08-07","airDateUtc":"2003-08-07T04:00:00Z","overview":"Ren H\u00f6ek, renowned lover of humanity, and his pal Stimpy decide that they must do everything in their power to help a couple of misfortunates, a widow and her headless child.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2928},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Stimpy's Pregnant","airDate":"2003-08-14","airDateUtc":"2003-08-14T04:00:00Z","overview":"This just might be the greatest moment in television history. \r\n\r\nStimpy delivers the long-awaited full-onscreen birth of Ren's child. Probably Ren's child. \r\n\r\nFull of trauma, love and sincere disregard for the FCC.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2926},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"In The Beginning (Documentary)","airDate":"2004-10-12","airDateUtc":"2004-10-12T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2932},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Intro to Naked Beach Frenzy","airDate":"2006-08-31","airDateUtc":"2006-08-31T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2923},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Intro to Stimpy's Pregnant","airDate":"2006-08-31","airDateUtc":"2006-08-31T04:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2925},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Intro to Altruists","airDate":"2006-08-31","airDateUtc":"2006-08-31T04:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2927},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Intro to Fire Dogs 2","airDate":"2006-08-31","airDateUtc":"2006-08-31T04:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2929},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Intro to Ren Seeks Help","airDate":"2006-08-31","airDateUtc":"2006-08-31T04:40:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2931},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Intro to Onward and Upward","airDate":"2006-08-31","airDateUtc":"2006-08-31T04:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13082},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Sven H\u00f6ek (Pencil Tests)","airDate":"2006-08-31","airDateUtc":"2006-08-31T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13084},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"John K's Cans Without Labels","airDate":"2019-06-22","airDateUtc":"2019-06-22T04:00:00Z","overview":"Ernie and Slab are having lunch and inquire as to what all the cans on the table are. George explains that they're cans without labels, which he buys cheap. Things go south when the kids discover how disgusting the contents of the cans are; for instance, the face.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21603},{"seriesId":62,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Happy Happy Joy Joy: The Ren & Stimpy Story","airDate":"2020-08-14","airDateUtc":"2020-08-14T04:00:00Z","overview":"A documentary that explores the rise and fall of The Ren & Stimpy Show (1991) and its controversial creator, John Kricfalusi.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":2933}],"episodeFile":[{"seriesId":62,"seasonNumber":0,"relativePath":"Specials\/S00E01.Big House Blues (Unedited Version)-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Specials\/S00E01.Big House Blues (Unedited Version)-SDTV.avi","size":183560192,"dateAdded":"2018-10-10T22:25:19.031358Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"20:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2117},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E01E02.In the Army + Powdered Toast Man-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E01E02.In the Army + Powdered Toast Man-SDTV.avi","size":183543808,"dateAdded":"2018-10-10T22:25:19.073592Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2118},{"seriesId":62,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.Stimpy's Big Day + The Big Shot-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 01\/S01E01E02.Stimpy's Big Day + The Big Shot-SDTV.avi","size":183228416,"dateAdded":"2018-10-10T22:25:19.118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"23:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2119},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E01E02.Hermit Ren + House of Next Tuesday-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E01E02.Hermit Ren + House of Next Tuesday-SDTV.avi","size":146688000,"dateAdded":"2018-10-10T22:25:19.163316Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1005032,"videoCodec":"DivX","videoFps":29.97,"resolution":"648x432","runTime":"17:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2120},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E01E02.To Salve and Salve Not! + A Yard Too Far-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E01E02.To Salve and Salve Not! + A Yard Too Far-SDTV.avi","size":94007296,"dateAdded":"2018-10-10T22:25:19.20498Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1006830,"videoCodec":"DivX","videoFps":29.97,"resolution":"648x432","runTime":"10:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2121},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E01E02.Ol' Blue Nose + Stupid Sidekick Union-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E01E02.Ol' Blue Nose + Stupid Sidekick Union-SDTV.avi","size":77516800,"dateAdded":"2018-10-10T22:25:19.244865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64080,"audioChannels":2.0,"audioCodec":"WMA","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":854202,"videoCodec":"DivX","videoFps":25.0,"resolution":"352x288","runTime":"11:08","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2122},{"seriesId":62,"seasonNumber":1,"relativePath":"Season 01\/S01E03E04.Robin H\u00f6ek + Nurse Stimpy-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 01\/S01E03E04.Robin H\u00f6ek + Nurse Stimpy-SDTV.avi","size":183218176,"dateAdded":"2018-10-10T22:25:19.285952Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"23:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2123},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E03E04.Ren's Toothache + Big House Blues-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E03E04.Ren's Toothache + Big House Blues-SDTV.avi","size":182595584,"dateAdded":"2018-10-10T22:25:19.326876Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"23:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2124},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E03E04.Circus Midgets + No Pants Today-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E03E04.Circus Midgets + No Pants Today-SDTV.avi","size":89597952,"dateAdded":"2018-10-10T22:25:19.432905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1007624,"videoCodec":"DivX","videoFps":29.97,"resolution":"648x432","runTime":"10:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2127},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E05E06.Out West + Rubber Nipple Salesmen-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E05E06.Out West + Rubber Nipple Salesmen-SDTV.avi","size":183560192,"dateAdded":"2018-10-10T22:25:19.473504Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2128},{"seriesId":62,"seasonNumber":1,"relativePath":"Season 01\/S01E05E06.Space Madness + The Boy Who Cried Rat!-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 01\/S01E05E06.Space Madness + The Boy Who Cried Rat!-SDTV.avi","size":183224320,"dateAdded":"2018-10-10T22:25:19.515552Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"24:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2129},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E05E06.Lumber Jerks + Magical Golden Singing Cheeses-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E05E06.Lumber Jerks + Magical Golden Singing Cheeses-SDTV.mpg","size":121565188,"dateAdded":"2018-10-10T22:25:19.554215Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"11:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2130},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E05E06.Hair of the Cat + City Hicks-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E05E06.Hair of the Cat + City Hicks-SDTV.mpg","size":119074820,"dateAdded":"2018-10-10T22:25:19.596397Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"11:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2131},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E05E06.Ren's Pecs + An Abe Divided-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E05E06.Ren's Pecs + An Abe Divided-SDTV.avi","size":52748288,"dateAdded":"2018-10-10T22:25:19.635145Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"DivX","videoFps":29.97,"resolution":"320x240","runTime":"11:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2132},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E07E08.Sv\u00ebn H\u00f6ek + Mad Dog H\u00f6ek-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E07E08.Sv\u00ebn H\u00f6ek + Mad Dog H\u00f6ek-SDTV.avi","size":183541760,"dateAdded":"2018-10-10T22:25:19.677312Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"23:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2133},{"seriesId":62,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08.Fire Dogs + The Littlest Giant-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 01\/S01E07E08.Fire Dogs + The Littlest Giant-SDTV.avi","size":183228416,"dateAdded":"2018-10-10T22:25:19.715833Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"23:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2134},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E07E08.Stimpy's Cartoon Show + Lair of the Lummox-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E07E08.Stimpy's Cartoon Show + Lair of the Lummox-SDTV.avi","size":162750464,"dateAdded":"2018-10-10T22:25:19.75893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"DivX","videoFps":23.976,"resolution":"480x360","runTime":"19:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2135},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E07E08.A Hard Days Luck + Prehistoric Stimpy-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E07E08.A Hard Days Luck + Prehistoric Stimpy-SDTV.mpg","size":121778180,"dateAdded":"2018-10-10T22:25:19.797436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"11:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2136},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E07E08.Stimpy's Pet + Ren's Brain-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E07E08.Stimpy's Pet + Ren's Brain-SDTV.avi","size":80553984,"dateAdded":"2018-10-10T22:25:19.839127Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":1.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":822492,"videoCodec":"DivX","videoFps":25.0,"resolution":"512x384","runTime":"11:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2137},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E09E10.Haunted House + Big Baby Scam-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E09E10.Haunted House + Big Baby Scam-SDTV.avi","size":183566336,"dateAdded":"2018-10-10T22:25:19.878531Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2138},{"seriesId":62,"seasonNumber":1,"relativePath":"Season 01\/S01E09E10.Marooned + Untamed World-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 01\/S01E09E10.Marooned + Untamed World-SDTV.avi","size":183197696,"dateAdded":"2018-10-10T22:25:19.920972Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"26:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2139},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E09E10.Jimminy Lummox + Bass Masters-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E09E10.Jimminy Lummox + Bass Masters-SDTV.avi","size":137742336,"dateAdded":"2018-10-10T22:25:19.959547Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1005928,"videoCodec":"DivX","videoFps":29.97,"resolution":"648x432","runTime":"16:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2140},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E09E10.Bellhops + Dog Tags-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E09E10.Bellhops + Dog Tags-SDTV.avi","size":114888704,"dateAdded":"2018-10-10T22:25:20.002475Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12000000,"videoCodec":"DivX","videoFps":29.97,"resolution":"320x240","runTime":"10:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2141},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E10.I Love Chicken-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E10.I Love Chicken-SDTV.mpg","size":114819544,"dateAdded":"2018-10-10T22:25:20.042333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1150000,"videoCodec":"MPEG","videoFps":29.97,"resolution":"352x240","runTime":"10:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2142},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E11E12.Dog Show + Son of Stimpy-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E11E12.Dog Show + Son of Stimpy-SDTV.avi","size":183560192,"dateAdded":"2018-10-10T22:25:20.08443Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"23:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2143},{"seriesId":62,"seasonNumber":1,"relativePath":"Season 01\/S01E11E12.Black Hole + Stimpy's Invention-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 01\/S01E11E12.Black Hole + Stimpy's Invention-SDTV.avi","size":183222272,"dateAdded":"2018-10-10T22:25:20.122598Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"24:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2144},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E11E12.Ren's Retirement + Jerry the Bellybutton Elf-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E11E12.Ren's Retirement + Jerry the Bellybutton Elf-SDTV.mpg","size":101601280,"dateAdded":"2018-10-10T22:25:20.16478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1098000,"videoCodec":"MPEG","videoFps":25.0,"resolution":"352x288","runTime":"11:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2145},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E11E12.I Was a Teenage Stimpy + Who's Stupid Now-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E11E12.I Was a Teenage Stimpy + Who's Stupid Now-SDTV.avi","size":70578176,"dateAdded":"2018-10-10T22:25:20.203999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64080,"audioChannels":2.0,"audioCodec":"WMA","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":777799,"videoCodec":"DivX","videoFps":25.0,"resolution":"352x288","runTime":"11:03","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2146},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E11E12.Powdered Toast Man vs. Waffle Woman + It's a Dog's Life-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E11E12.Powdered Toast Man vs. Waffle Woman + It's a Dog's Life-SDTV.avi","size":57980928,"dateAdded":"2018-10-10T22:25:20.24614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64080,"audioChannels":2.0,"audioCodec":"WMA","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":627147,"videoCodec":"DivX","videoFps":25.0,"resolution":"352x288","runTime":"11:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2147},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E13E14.Monkey See.Monkey Don't + Fake Dad-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E13E14.Monkey See.Monkey Don't + Fake Dad-SDTV.avi","size":183566336,"dateAdded":"2018-10-10T22:25:20.285653Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"23:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2148},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E13E14.Road Apples + Hard Times for Haggis-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E13E14.Road Apples + Hard Times for Haggis-SDTV.avi","size":136192000,"dateAdded":"2018-10-10T22:25:20.329106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"DivX","videoFps":23.976,"resolution":"480x360","runTime":"16:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2149},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E13E14.Egg Y\u00f6lkeo + Double Header-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E13E14.Egg Y\u00f6lkeo + Double Header-SDTV.mpg","size":119115780,"dateAdded":"2018-10-10T22:25:20.367945Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"11:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2150},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E13E14.School Mates + Dinner Party-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E13E14.School Mates + Dinner Party-SDTV.mpg","size":115011588,"dateAdded":"2018-10-10T22:25:20.409776Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"10:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2151},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E15E16.The Great Outdoors + The Cat That Laid the Golden Hairball-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E15E16.The Great Outdoors + The Cat That Laid the Golden Hairball-SDTV.avi","size":183556096,"dateAdded":"2018-10-10T22:25:20.449017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"23:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2152},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E15E16.Sammy and Me + Big Flakes-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E15E16.Sammy and Me + Big Flakes-SDTV.mpg","size":121731076,"dateAdded":"2018-10-10T22:25:20.491891Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"11:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2153},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E15E16.Scotsman in Space + Pixie King-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E15E16.Scotsman in Space + Pixie King-SDTV.mpg","size":121391108,"dateAdded":"2018-10-10T22:25:20.531094Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"11:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2154},{"seriesId":62,"seasonNumber":3,"relativePath":"Season 03\/S03E15E16.Eat My Cookies + Ren's Bitter Half-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 03\/S03E15E16.Eat My Cookies + Ren's Bitter Half-SDTV.avi","size":80701440,"dateAdded":"2018-10-10T22:25:20.572914Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":782562,"videoCodec":"DivX","videoFps":25.0,"resolution":"384x288","runTime":"11:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2155},{"seriesId":62,"seasonNumber":2,"relativePath":"Season 02\/S02E17E18.Stimpy's Fan Club + A Visit to Anthony-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 02\/S02E17E18.Stimpy's Fan Club + A Visit to Anthony-SDTV.avi","size":183552000,"dateAdded":"2018-10-10T22:25:20.611602Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x384","runTime":"22:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2156},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E17E18.Terminal Stimpy + Pen Pals-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E17E18.Terminal Stimpy + Pen Pals-SDTV.avi","size":119107584,"dateAdded":"2018-10-10T22:25:20.655555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11000000,"videoCodec":"DivX","videoFps":25.0,"resolution":"348x286","runTime":"11:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2157},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E17E18.Aloha H\u00f6ek + Insomniac Ren-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E17E18.Aloha H\u00f6ek + Insomniac Ren-SDTV.avi","size":55386112,"dateAdded":"2018-10-10T22:25:20.694157Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":508489,"videoCodec":"DivX","videoFps":29.75,"resolution":"320x240","runTime":"12:05","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2158},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E19E20.The Last Temptation + Reverend Jack-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E19E20.The Last Temptation + Reverend Jack-SDTV.avi","size":57749504,"dateAdded":"2018-10-10T22:25:20.767552Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64080,"audioChannels":2.0,"audioCodec":"WMA","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":610420,"videoCodec":"DivX","videoFps":25.0,"resolution":"352x288","runTime":"11:15","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2160},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E19E20.My Shiny Friend + Cheese Rush Days-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E19E20.My Shiny Friend + Cheese Rush Days-SDTV.avi","size":57315328,"dateAdded":"2018-10-10T22:25:20.806278Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64080,"audioChannels":2.0,"audioCodec":"WMA","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":606960,"videoCodec":"DivX","videoFps":25.0,"resolution":"352x288","runTime":"11:14","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2161},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E21.A Scooter for Yaksmas-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E21.A Scooter for Yaksmas-SDTV.avi","size":191692800,"dateAdded":"2018-10-10T22:25:20.851722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1173408,"videoCodec":"DivX","videoFps":29.97,"resolution":"320x240","runTime":"20:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2162},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E21E22.Weiner Barons + Galoot Wranglers-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E21E22.Weiner Barons + Galoot Wranglers-SDTV.avi","size":55252992,"dateAdded":"2018-10-10T22:25:20.890863Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":507635,"videoCodec":"DivX","videoFps":29.75,"resolution":"320x240","runTime":"11:46","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2163},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E23E24.Ren Needs Help! + Superstitious Stimpy-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E23E24.Ren Needs Help! + Superstitious Stimpy-SDTV.avi","size":50300928,"dateAdded":"2018-10-10T22:25:20.930551Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":507834,"videoCodec":"DivX","videoFps":29.75,"resolution":"320x240","runTime":"10:59","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2164},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E25.Travelogue-SDTV.mpg","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E25.Travelogue-SDTV.mpg","size":115179524,"dateAdded":"2018-10-10T22:25:20.972916Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"MP2","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1228800,"videoCodec":"MPEG","videoFps":29.97,"resolution":"320x240","runTime":"10:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2165},{"seriesId":62,"seasonNumber":5,"relativePath":"Season 05\/S05E03E04.Space Dogged + Feud for Sale-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 05\/S05E03E04.Space Dogged + Feud for Sale-SDTV.avi","size":103282688,"dateAdded":"2018-10-11T11:08:49.393389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11000000,"videoCodec":"DivX","videoFps":29.97,"resolution":"336x226","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3930},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E03E04.A Friend In Your Face! + Blazing Entrails-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E03E04.A Friend In Your Face! + Blazing Entrails-SDTV.avi","size":52867072,"dateAdded":"2018-10-11T11:08:49.418611Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":518155,"videoCodec":"DivX","videoFps":25.0,"resolution":"384x288","runTime":"11:05","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3931},{"seriesId":62,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Farm Hands-SDTV.avi","path":"\/tv\/The Ren and Stimpy Show\/Season 04\/S04E09.Farm Hands-SDTV.avi","size":54405120,"dateAdded":"2019-04-10T01:55:22.585214Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":509338,"videoCodec":"DivX","videoFps":29.75,"resolution":"320x240","runTime":"11:51","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7330}],"queue":[]},"61":{"series":{"title":"Stargate Atlantis","alternateTitles":[],"sortTitle":"stargate atlantis","status":"ended","ended":true,"overview":"The story of Stargate Atlantis follows the cliffhanger episode on Stargate SG-1's seventh season finale \"Lost City\", where SG-1 found an outpost made by the race known as the Ancients in Antarctica. After the events of Stargate SG-1 season eight premiere \"New Order\", the Stargate Command sends an international team to investigate the outpost. Soon, Dr. Daniel Jackson discovers the location of the greatest city created by the Ancients, Atlantis. The story unfolds when the members of the expedition encounter the Wraith, the race that defeated the Ancients ten thousand years ago.","previousAiring":"2009-01-10T02:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/58\/banner.jpg?lastWrite=637103833456460030","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/70851-g9.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/58\/poster.jpg?lastWrite=637103833459419980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/70851-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/58\/fanart.jpg?lastWrite=637103833454060070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/70851-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-03-26T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70358318807,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-01-31T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46923680996,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2007-06-23T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46912362318,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2008-03-08T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":46914447039,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2009-01-10T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70860729505,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/Stargate Atlantis","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":70851,"tvRageId":5324,"tvMazeId":206,"firstAired":"2004-07-16T00:00:00Z","seriesType":"standard","cleanTitle":"stargateatlantis","imdbId":"tt0374455","titleSlug":"stargate-atlantis","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-04-25T08:52:58.5172537Z","ratings":{"votes":16844,"value":8.8},"statistics":{"seasonCount":5,"episodeFileCount":100,"episodeCount":100,"totalEpisodeCount":102,"sizeOnDisk":281969538665,"percentOfEpisodes":100.0},"id":58},"episodes":[{"seriesId":58,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Preview to Stargate Atlantis","overview":"Preview to the new stargate series called Stargate Atlantis. Includes cast interviews and behind the scene footage.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4039},{"seriesId":58,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"From Stargate to Atlantis: Sci Fi Lowdown","airDate":"2004-07-05","airDateUtc":"2004-07-06T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4040},{"seriesId":58,"episodeFileId":4856,"seasonNumber":1,"episodeNumber":1,"title":"Rising (1)","airDate":"2004-07-16","airDateUtc":"2004-07-17T01:00:00Z","overview":"A new Stargate team embarks on a dangerous mission to a distant galaxy, where they discover a mythical lost city -- and a deadly new enemy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4041},{"seriesId":58,"episodeFileId":4856,"seasonNumber":1,"episodeNumber":2,"title":"Rising (2)","airDate":"2004-07-16","airDateUtc":"2004-07-17T01:45:00Z","overview":"Sheppard tries to convince Weir to mount a rescue mission to free Colonel Sumner, Teyla, and the others captured by the Wraith.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4042},{"seriesId":58,"episodeFileId":4857,"seasonNumber":1,"episodeNumber":3,"title":"Hide and Seek","airDate":"2004-07-23","airDateUtc":"2004-07-24T01:00:00Z","overview":"The Atlantis base is threatened when the team discovers that an alien entity is in the city. McKay's experiment with alien technology goes awry.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4043},{"seriesId":58,"episodeFileId":4858,"seasonNumber":1,"episodeNumber":4,"title":"Thirty-Eight Minutes","airDate":"2004-07-30","airDateUtc":"2004-07-31T01:00:00Z","overview":"The team finds themselves in mortal danger when their Puddle Jumper ship becomes lodged in the Stargate.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4044},{"seriesId":58,"episodeFileId":4859,"seasonNumber":1,"episodeNumber":5,"title":"Suspicion","airDate":"2004-08-06","airDateUtc":"2004-08-07T01:00:00Z","overview":"After a series of run-ins with the Wraith, the team begins to suspect their Athosian allies of having a spy in their midst.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4045},{"seriesId":58,"episodeFileId":4860,"seasonNumber":1,"episodeNumber":6,"title":"Childhood's End","airDate":"2004-08-13","airDateUtc":"2004-08-14T01:00:00Z","overview":"Sheppard and the team visit a world where no one is over 24 years old -- because of a ritual suicide practice they believe keeps the Wraith at bay.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4046},{"seriesId":58,"episodeFileId":4861,"seasonNumber":1,"episodeNumber":7,"title":"Poisoning the Well","airDate":"2004-08-20","airDateUtc":"2004-08-21T01:00:00Z","overview":"The team finds a world whose people are on the brink of a discovery that may make them immune to the Wraith feeding.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4047},{"seriesId":58,"episodeFileId":4862,"seasonNumber":1,"episodeNumber":8,"title":"Underground","airDate":"2004-08-27","airDateUtc":"2004-08-28T01:00:00Z","overview":"Efforts to open trade relations with a species called the Genii turn sour when the team discovers their new \"allies\" have ulterior motives.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4048},{"seriesId":58,"episodeFileId":4863,"seasonNumber":1,"episodeNumber":9,"title":"Home","airDate":"2004-09-10","airDateUtc":"2004-09-11T01:00:00Z","overview":"McKay's efforts to harness the energy of an alien planet's atmosphere allows for a return trip to Earth -- but the team may not be able to return to Atlantis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4049},{"seriesId":58,"episodeFileId":4864,"seasonNumber":1,"episodeNumber":10,"title":"The Storm (1)","airDate":"2004-09-17","airDateUtc":"2004-09-18T01:00:00Z","overview":"When a massive storm threatens the city, Atlantis is evacuated -- only to be taken over by the team's newest enemy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4050},{"seriesId":58,"episodeFileId":4865,"seasonNumber":1,"episodeNumber":11,"title":"The Eye (2)","airDate":"2005-01-21","airDateUtc":"2005-01-22T02:00:00Z","overview":"Major Sheppard plays a dangerous game of cat and mouse with soldiers who have seized control of Atlantis and taken Weir and McKay hostage.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4051},{"seriesId":58,"episodeFileId":4866,"seasonNumber":1,"episodeNumber":12,"title":"The Defiant One","airDate":"2005-01-28","airDateUtc":"2005-01-29T02:00:00Z","overview":"Sheppard's team investigates a downed Wraith ship, and find themselves stuck on a planet with a lone Wraith survivor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4052},{"seriesId":58,"episodeFileId":4867,"seasonNumber":1,"episodeNumber":13,"title":"Hot Zone","airDate":"2005-02-04","airDateUtc":"2005-02-05T02:00:00Z","overview":"Nearly a third of Atlantis's residents are infected with a deadly virus that causes hallucinations and death, forcing a lockdown of the city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4053},{"seriesId":58,"episodeFileId":4868,"seasonNumber":1,"episodeNumber":14,"title":"Sanctuary","airDate":"2005-02-11","airDateUtc":"2005-02-12T02:00:00Z","overview":"The team finds a paradise world that would make an ideal sanctuary for those fleeing from the Wraith, but the local inhabitants believe their goddess will not permit it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4054},{"seriesId":58,"episodeFileId":4869,"seasonNumber":1,"episodeNumber":15,"title":"Before I Sleep","airDate":"2005-02-18","airDateUtc":"2005-02-19T02:00:00Z","overview":"A woman is found in suspended animation in Atlantis, and the team is shocked to see that it is Dr. Weir herself, who tells them of her trip 10,000 years into the city's past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4055},{"seriesId":58,"episodeFileId":4870,"seasonNumber":1,"episodeNumber":16,"title":"The Brotherhood","airDate":"2005-02-25","airDateUtc":"2005-02-26T02:00:00Z","overview":"The team searches for a valuable Zero Point Module rumored to be hidden on the planet Dagan -- but their new allies have motives of their own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4056},{"seriesId":58,"episodeFileId":4871,"seasonNumber":1,"episodeNumber":17,"title":"Letters from Pegasus","airDate":"2005-03-04","airDateUtc":"2005-03-05T02:00:00Z","overview":"With a brief opportunity to send a data transmission to Earth, members of the Atlantis expedition compose video messages home to their loved ones.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4057},{"seriesId":58,"episodeFileId":4872,"seasonNumber":1,"episodeNumber":18,"title":"The Gift","airDate":"2005-03-11","airDateUtc":"2005-03-12T02:00:00Z","overview":"Plagued by terrifying nightmares, Teyla begins to recall a time when she and her father were captured by the Wraith and subjected to disturbing experiments.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4058},{"seriesId":58,"episodeFileId":4873,"seasonNumber":1,"episodeNumber":19,"title":"The Siege (1)","airDate":"2005-03-18","airDateUtc":"2005-03-19T02:00:00Z","overview":"With a group of Wraith hive ships on the way to Atlantis, the team searches for a place to flee and a way to destroy the city. McKay leads a team to try and activate the Ancients' orbital weapons platform.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4059},{"seriesId":58,"episodeFileId":4874,"seasonNumber":1,"episodeNumber":20,"title":"The Siege (2)","airDate":"2005-03-25","airDateUtc":"2005-03-26T02:00:00Z","overview":"A new military contingent from Earth is sent to take command of Atlantis and defend it from the impending Wraith attack.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4060},{"seriesId":58,"episodeFileId":2951,"seasonNumber":2,"episodeNumber":1,"title":"The Siege (3)","airDate":"2005-07-15","airDateUtc":"2005-07-16T01:00:00Z","overview":"The Daedalus arrives to defend Atlantis from the Wraith onslaught, but it may not be enough when the team discovers that an even larger armada is on the way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4061},{"seriesId":58,"episodeFileId":2955,"seasonNumber":2,"episodeNumber":2,"title":"The Intruder","airDate":"2005-07-22","airDateUtc":"2005-07-23T01:00:00Z","overview":"The Daedalus is infected by a Wraith computer virus, while members of the expedition hope to return to Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4062},{"seriesId":58,"episodeFileId":2960,"seasonNumber":2,"episodeNumber":3,"title":"Runner","airDate":"2005-07-29","airDateUtc":"2005-07-30T01:00:00Z","overview":"Sheppard and his team attempt to locate Lieutenant Ford, only to find themselves captives of a former soldier who is being hunted by the Wraith.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4063},{"seriesId":58,"episodeFileId":2964,"seasonNumber":2,"episodeNumber":4,"title":"Duet","airDate":"2005-08-05","airDateUtc":"2005-08-06T01:00:00Z","overview":"A run-in with a Wraith Dart leaves the consciousness of a precocious Atlantis security officer trapped in Dr. McKay's mind.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4064},{"seriesId":58,"episodeFileId":2969,"seasonNumber":2,"episodeNumber":5,"title":"Condemned","airDate":"2005-08-12","airDateUtc":"2005-08-13T01:00:00Z","overview":"The Atlantis team finds a culture that lives in relative safety from the Wraith, because they hand over their criminals to the Wraith -- and crash-land in the volatile penal colony.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4065},{"seriesId":58,"episodeFileId":2975,"seasonNumber":2,"episodeNumber":6,"title":"Trinity","airDate":"2005-08-19","airDateUtc":"2005-08-20T01:00:00Z","overview":"McKay puts the team at risk when he tries to perfect unfinished Ancient technology that wiped out a civilization. Ronon Dex discovers that he is not the lone survivor from his world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4066},{"seriesId":58,"episodeFileId":2980,"seasonNumber":2,"episodeNumber":7,"title":"Instinct","airDate":"2005-08-26","airDateUtc":"2005-08-27T01:00:00Z","overview":"The team discovers a young Wraith girl who has been raised by a human, and is in hiding from the people of her human village in fear of her life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4067},{"seriesId":58,"episodeFileId":2986,"seasonNumber":2,"episodeNumber":8,"title":"Conversion","airDate":"2005-09-09","airDateUtc":"2005-09-10T01:00:00Z","overview":"Colonel Sheppard begins to undergo a disturbing physical transformation after being exposed to Beckett's anti-Wraith drug.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4068},{"seriesId":58,"episodeFileId":2991,"seasonNumber":2,"episodeNumber":9,"title":"Aurora","airDate":"2005-09-23","airDateUtc":"2005-09-24T01:00:00Z","overview":"When the team finds an Ancient warship adrift on the edge of the galaxy, its crew still alive, Colonel Sheppard enters their virtual reality stasis to communicate with them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4069},{"seriesId":58,"episodeFileId":2996,"seasonNumber":2,"episodeNumber":10,"title":"The Lost Boys (1)","airDate":"2005-09-23","airDateUtc":"2005-09-24T01:45:00Z","overview":"The team is captured by the missing Lieutenant Ford, who is now leading a group of young men who are taking the Wraith enzyme -- and who wants the team's help in a suicide attack against a hive ship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4070},{"seriesId":58,"episodeFileId":3003,"seasonNumber":2,"episodeNumber":11,"title":"The Hive (2)","airDate":"2005-11-21","airDateUtc":"2005-11-22T02:00:00Z","overview":"Colonel Sheppard and his team find themselves prisoners of the Wraith following Ford's attack on a hive ship. Dr. McKay goes to great lengths to help them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4071},{"seriesId":58,"episodeFileId":3006,"seasonNumber":2,"episodeNumber":12,"title":"Epiphany","airDate":"2005-11-28","airDateUtc":"2005-11-29T02:00:00Z","overview":"Sheppard finds himself on a planet where time passes more rapidly, with no way to contact his team or return to Atlantis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4072},{"seriesId":58,"episodeFileId":3012,"seasonNumber":2,"episodeNumber":13,"title":"Critical Mass","airDate":"2005-12-05","airDateUtc":"2005-12-06T02:00:00Z","overview":"When an operative of the Trust plants a bomb in Atlantis, the team must find a spy within their own ranks before the Wraith arrive and discover the city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4073},{"seriesId":58,"episodeFileId":3015,"seasonNumber":2,"episodeNumber":14,"title":"Grace Under Pressure","airDate":"2005-12-12","airDateUtc":"2005-12-13T02:00:00Z","overview":"When Dr. McKay is trapped underwater in a sinking Puddle Jumper, his only chance for survival may be an hallucination of Samantha Carter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4074},{"seriesId":58,"episodeFileId":3019,"seasonNumber":2,"episodeNumber":15,"title":"The Tower","airDate":"2005-12-19","airDateUtc":"2005-12-20T02:00:00Z","overview":"The team finds a world that possesses Ancient defense technology, where Colonel Sheppard finds himself a pawn in the rivalry between the heirs to the throne.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4075},{"seriesId":58,"episodeFileId":3024,"seasonNumber":2,"episodeNumber":16,"title":"The Long Goodbye","airDate":"2006-01-02","airDateUtc":"2006-01-03T02:00:00Z","overview":"The team discovers two pods that contain the minds of alien beings, who take control of Weir and Sheppard's bodies to continue their personal war.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4076},{"seriesId":58,"episodeFileId":3029,"seasonNumber":2,"episodeNumber":17,"title":"Coup D'Etat","airDate":"2006-01-09","airDateUtc":"2006-01-10T02:00:00Z","overview":"After a team from Atlantis goes missing, the expedition finds itself in the middle of a Genii coup.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4077},{"seriesId":58,"episodeFileId":3034,"seasonNumber":2,"episodeNumber":18,"title":"Michael","airDate":"2006-01-16","airDateUtc":"2006-01-17T02:00:00Z","overview":"An amnesiac young Lieutenant in Atlantis suffers from disturbing nightmares that he is a Wraith, only to make a shocking discovery about himself.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4078},{"seriesId":58,"episodeFileId":3039,"seasonNumber":2,"episodeNumber":19,"title":"Inferno","airDate":"2006-01-23","airDateUtc":"2006-01-24T02:00:00Z","overview":"Sheppard's team meets a civilization about to be destroyed by a super-volcano, and is trapped there when the Stargate is destroyed during the evacuation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4079},{"seriesId":58,"episodeFileId":3046,"seasonNumber":2,"episodeNumber":20,"title":"Allies (1)","airDate":"2006-01-30","airDateUtc":"2006-01-31T02:00:00Z","overview":"Michael and his Wraith faction arrive at Atlantis to propose an alliance, hoping to use the retrovirus to transform their Wraith enemies into prey.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4080},{"seriesId":58,"episodeFileId":2953,"seasonNumber":3,"episodeNumber":1,"title":"No Man's Land (2)","airDate":"2006-07-14","airDateUtc":"2006-07-15T01:00:00Z","overview":"The team desperately attempts to stop two Wraith hive ships from reaching Earth. Sheppard must rely on an old foe to rescue McKay and Ronon.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4081},{"seriesId":58,"episodeFileId":2957,"seasonNumber":3,"episodeNumber":2,"title":"Misbegotten (3)","airDate":"2006-07-21","airDateUtc":"2006-07-22T01:00:00Z","overview":"The Atlantis team must decide the fate of a colony of Wraith they have turned into humans. Dr. Weir must defend her leadership when she is evaluated by the I.O.A.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4082},{"seriesId":58,"episodeFileId":2962,"seasonNumber":3,"episodeNumber":3,"title":"Irresistible","airDate":"2006-07-28","airDateUtc":"2006-07-29T01:00:00Z","overview":"Sheppard's team meets an obnoxious man who is adored by all thanks to a secret that he carries -- and who has an unexpected effect on them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4083},{"seriesId":58,"episodeFileId":2968,"seasonNumber":3,"episodeNumber":4,"title":"Sateda","airDate":"2006-08-04","airDateUtc":"2006-08-05T01:00:00Z","overview":"Ronon Dex is captured by the Wraith and returned to his homeworld, where he is haunted by his past as he is forced to once again become their prey.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4084},{"seriesId":58,"episodeFileId":2970,"seasonNumber":3,"episodeNumber":5,"title":"Progeny","airDate":"2006-08-11","airDateUtc":"2006-08-12T01:00:00Z","overview":"Weir and the team visit an advanced civilization that split off from the Lanteans thousands of years ago, but discover that they may not have left Atlantis in peace.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4085},{"seriesId":58,"episodeFileId":2978,"seasonNumber":3,"episodeNumber":6,"title":"The Real World","airDate":"2006-08-18","airDateUtc":"2006-08-19T01:00:00Z","overview":"Elizabeth Weir wakes up in a mental institution, where she is told that the expedition to Atlantis and the Stargate are figments of her imagination.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4086},{"seriesId":58,"episodeFileId":2982,"seasonNumber":3,"episodeNumber":7,"title":"Common Ground","airDate":"2006-08-25","airDateUtc":"2006-08-26T01:00:00Z","overview":"Colonel Sheppard finds himself the prisoner of a Genii commander, along with a desperately hungry Wraith who has been separated from his hive.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4087},{"seriesId":58,"episodeFileId":2988,"seasonNumber":3,"episodeNumber":8,"title":"McKay and Mrs. Miller","airDate":"2006-09-08","airDateUtc":"2006-09-09T01:00:00Z","overview":"Rodney McKay is reunited with his estranged sister back on Earth, who has given up a brilliant career as a scientist to raise a family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4088},{"seriesId":58,"episodeFileId":2993,"seasonNumber":3,"episodeNumber":9,"title":"Phantoms","airDate":"2006-09-15","airDateUtc":"2006-09-16T01:00:00Z","overview":"Sheppard and Ronon are influenced by a mind-altering device created by the Wraith while on a mission to rescue a lost team.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4089},{"seriesId":58,"episodeFileId":2997,"seasonNumber":3,"episodeNumber":10,"title":"The Return (1)","airDate":"2006-09-22","airDateUtc":"2006-09-23T01:00:00Z","overview":"The Atlantis expedition is stunned to learn that a ship full of Ancients is returning to reclaim their lost city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4090},{"seriesId":58,"episodeFileId":3000,"seasonNumber":3,"episodeNumber":11,"title":"The Return (2)","airDate":"2007-04-13","airDateUtc":"2007-04-14T01:00:00Z","overview":"The Atlantis team goes against orders to try and save Atlantis from Replicator control -- and to rescue General O'Neill and Richard Woolsey, who are trapped in the occupied city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4091},{"seriesId":58,"episodeFileId":3004,"seasonNumber":3,"episodeNumber":12,"title":"Echoes","airDate":"2007-04-20","airDateUtc":"2007-04-21T01:00:00Z","overview":"The inhabitants of Atlantis begin to suffer ill effects when the planet's whale population begins migrating to the island city, bringing an unexpected harbinger of doom.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4092},{"seriesId":58,"episodeFileId":3009,"seasonNumber":3,"episodeNumber":13,"title":"Irresponsible","airDate":"2007-04-27","airDateUtc":"2007-04-28T01:00:00Z","overview":"The team finds Lucius Lavin manipulating the people of another hapless planet, using Ancient technology to pose as an invincible hero.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4093},{"seriesId":58,"episodeFileId":3014,"seasonNumber":3,"episodeNumber":14,"title":"Tao of Rodney","airDate":"2007-05-04","airDateUtc":"2007-05-05T01:00:00Z","overview":"After an Ancient device gives Rodney superhuman powers, his enhanced brilliance is checked only by his impending death -- unless he can learn how to ascend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4094},{"seriesId":58,"episodeFileId":3020,"seasonNumber":3,"episodeNumber":15,"title":"The Game","airDate":"2007-05-11","airDateUtc":"2007-05-12T01:00:00Z","overview":"Sheppard and McKay discover that their competitive video game has been controlling a planet of real people, who now stand on the brink of war.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4095},{"seriesId":58,"episodeFileId":3028,"seasonNumber":3,"episodeNumber":16,"title":"The Ark","airDate":"2007-05-18","airDateUtc":"2007-05-19T01:00:00Z","overview":"The team discovers the last of a civilization in suspended animation, whose survival is at risk when their station is critically damaged.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4096},{"seriesId":58,"episodeFileId":3033,"seasonNumber":3,"episodeNumber":17,"title":"Sunday","airDate":"2007-06-01","airDateUtc":"2007-06-02T01:00:00Z","overview":"The team tries to relax during a mandatory day off, until an explosion leaves three people dead -- and reveals that one scientist is a walking time bomb.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4097},{"seriesId":58,"episodeFileId":3037,"seasonNumber":3,"episodeNumber":18,"title":"Submersion","airDate":"2007-06-08","airDateUtc":"2007-06-09T01:00:00Z","overview":"The team discovers an Ancient drilling station deep beneath the surface of the ocean, only to find that a Wraith queen is still alive there.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4098},{"seriesId":58,"episodeFileId":3042,"seasonNumber":3,"episodeNumber":19,"title":"Vengeance","airDate":"2007-06-15","airDateUtc":"2007-06-16T01:00:00Z","overview":"The Atlantis team investigates the disappearance of one of their allies, only to find an old enemy engineering a race of powerful monsters.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4099},{"seriesId":58,"episodeFileId":3048,"seasonNumber":3,"episodeNumber":20,"title":"First Strike (1)","airDate":"2007-06-22","airDateUtc":"2007-06-23T01:00:00Z","overview":"An unstoppable energy weapon leaves Atlantis under seige after Earth launches a preemptive attack against a very powerful enemy's homeworld.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4100},{"seriesId":58,"episodeFileId":2952,"seasonNumber":4,"episodeNumber":1,"title":"Adrift (2)","airDate":"2007-09-28","airDateUtc":"2007-09-29T01:00:00Z","overview":"Floating in deep space with the city's protective shield failing, the team must do all they can to keep Atlantis alive. A radical injury threatens Dr. Weir's life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4101},{"seriesId":58,"episodeFileId":2958,"seasonNumber":4,"episodeNumber":2,"title":"Lifeline (3)","airDate":"2007-10-05","airDateUtc":"2007-10-06T01:00:00Z","overview":"Colonel Sheppard and his team embark on a risky mission to steal a Z.P.M. power module from the Replicators -- but must rely on a compromised Dr. Weir to succeed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4102},{"seriesId":58,"episodeFileId":2963,"seasonNumber":4,"episodeNumber":3,"title":"Reunion","airDate":"2007-10-12","airDateUtc":"2007-10-13T01:00:00Z","overview":"When a group of Ronon's people enlist the team's help in raiding a Wraith weapons facility, Ronon reconsiders whether his future lies in Atlantis or with his friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4103},{"seriesId":58,"episodeFileId":2966,"seasonNumber":4,"episodeNumber":4,"title":"Doppelganger","airDate":"2007-10-19","airDateUtc":"2007-10-20T01:00:00Z","overview":"During an off-world mission Colonel Sheppard unknowingly becomes host to an alien entity, which infects others in Atlantis and afflicts them with terrifying nightmares.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4104},{"seriesId":58,"episodeFileId":2973,"seasonNumber":4,"episodeNumber":5,"title":"Travelers","airDate":"2007-10-26","airDateUtc":"2007-10-27T01:00:00Z","overview":"Colonel Sheppard is captured by the inhabitants of a generational ship and their beautiful leader, who wish to use his ability to use Ancient technology for their own ends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4105},{"seriesId":58,"episodeFileId":2974,"seasonNumber":4,"episodeNumber":6,"title":"Tabula Rasa","airDate":"2007-11-02","airDateUtc":"2007-11-03T01:00:00Z","overview":"When a virus causes amnesia in everyone except Teyla and Ronon, the Atlantis team must work together to find a cure before their memories fade entirely.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4106},{"seriesId":58,"episodeFileId":2981,"seasonNumber":4,"episodeNumber":7,"title":"Missing","airDate":"2007-11-09","airDateUtc":"2007-11-10T02:00:00Z","overview":"During a visit to New Athos, Teyla and Dr. Keller find themselves on the run from a primitive tribe of warriors.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4107},{"seriesId":58,"episodeFileId":2984,"seasonNumber":4,"episodeNumber":8,"title":"The Seer","airDate":"2007-11-16","airDateUtc":"2007-11-17T02:00:00Z","overview":"The team meets a man with extraordinary prophetic abilities, who gives them a dark prediction about Atlantis's future. The Wraith seek a new alliance with Atlantis in their war with the Replicators.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4108},{"seriesId":58,"episodeFileId":2989,"seasonNumber":4,"episodeNumber":9,"title":"Miller's Crossing","airDate":"2007-11-30","airDateUtc":"2007-12-01T02:00:00Z","overview":"Rodney McKay goes in search of his sister on Earth after she is kidnapped by the head of a powerful corporation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4109},{"seriesId":58,"episodeFileId":2994,"seasonNumber":4,"episodeNumber":10,"title":"This Mortal Coil (1)","airDate":"2007-12-07","airDateUtc":"2007-12-08T02:00:00Z","overview":"A mysterious drone crashes into Atlantis, indicating that the Replicators may have found the city. But when Elizabeth Weir appears, the team realizes that the probe is just a part of a bigger mystery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4110},{"seriesId":58,"episodeFileId":3002,"seasonNumber":4,"episodeNumber":11,"title":"Be All My Sins Remember'd (2)","airDate":"2008-01-04","airDateUtc":"2008-01-05T02:00:00Z","overview":"With a plan to potentially extinguish the Replicator threat, the Atlantis team must seek an alliance with a fleet of Wraith ships.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4111},{"seriesId":58,"episodeFileId":3008,"seasonNumber":4,"episodeNumber":12,"title":"Spoils of War","airDate":"2008-01-11","airDateUtc":"2008-01-12T02:00:00Z","overview":"The team finds their former Wraith ally's hive ship drifting in space, which leads them to a secret project that could turn the tide of a civil war.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4112},{"seriesId":58,"episodeFileId":3013,"seasonNumber":4,"episodeNumber":13,"title":"Quarantine","airDate":"2008-01-18","airDateUtc":"2008-01-19T02:00:00Z","overview":"An automated lockdown traps Atlantis personnel in various parts of the city, each of them hoping the others will come to their rescue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4113},{"seriesId":58,"episodeFileId":3018,"seasonNumber":4,"episodeNumber":14,"title":"Harmony","airDate":"2008-01-25","airDateUtc":"2008-01-26T02:00:00Z","overview":"Colonel Sheppard and Dr. McKay must protect a child princess on a pilgrimage before she can become queen, and learn that she has dangerous enemies threatening her life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4114},{"seriesId":58,"episodeFileId":3022,"seasonNumber":4,"episodeNumber":15,"title":"Outcast","airDate":"2008-02-01","airDateUtc":"2008-02-02T02:00:00Z","overview":"While on personal leave on Earth, Sheppard and Ronon learn that scientists have engineered a human-form Replicator -- who is now on the loose.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4115},{"seriesId":58,"episodeFileId":3026,"seasonNumber":4,"episodeNumber":16,"title":"Trio","airDate":"2008-02-08","airDateUtc":"2008-02-09T02:00:00Z","overview":"McKay, Carter, and Keller are trapped in an underground chamber while on an off-world mission, with no apparent means of escape.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4116},{"seriesId":58,"episodeFileId":3031,"seasonNumber":4,"episodeNumber":17,"title":"Midway","airDate":"2008-02-15","airDateUtc":"2008-02-16T02:00:00Z","overview":"Teal'c visits Atlantis to counsel a headstrong Ronon, who is up for review by the I.O.A. But the two must work together when the Wraith invade the Midway space station in order to reach Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4117},{"seriesId":58,"episodeFileId":3036,"seasonNumber":4,"episodeNumber":18,"title":"The Kindred (1)","airDate":"2008-02-22","airDateUtc":"2008-02-23T02:00:00Z","overview":"As a mysterious new illness sweeps through the Pegasus Galaxy, Teyla is convinced by a vision that the father of her child is trying to communicate with her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4118},{"seriesId":58,"episodeFileId":3040,"seasonNumber":4,"episodeNumber":19,"title":"The Kindred (2)","airDate":"2008-02-29","airDateUtc":"2008-03-01T02:00:00Z","overview":"The team is shocked when an old friend, believed to be dead, miraculously returns to them. Teyla plans an escape from Michael's captivity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4119},{"seriesId":58,"episodeFileId":3045,"seasonNumber":4,"episodeNumber":20,"title":"The Last Man (1)","airDate":"2008-03-07","airDateUtc":"2008-03-08T02:00:00Z","overview":"Sheppard returns to Atlantis after a mission and finds the city abandoned, all systems dead -- and instead of ocean, sand dunes as far as the eye can see.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4120},{"seriesId":58,"episodeFileId":4950,"seasonNumber":5,"episodeNumber":1,"title":"Search and Rescue (2)","airDate":"2008-07-11","airDateUtc":"2008-07-12T01:00:00Z","overview":"After a conflict with Michael leaves several Atlantis personnel trapped, Colonel Carter leads a rescue mission.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4121},{"seriesId":58,"episodeFileId":4951,"seasonNumber":5,"episodeNumber":2,"title":"The Seed","airDate":"2008-07-18","airDateUtc":"2008-07-19T01:00:00Z","overview":"When an alien organism incapacitates Dr. Keller, the team seeks help from an old friend recently revived from stasis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4122},{"seriesId":58,"episodeFileId":4952,"seasonNumber":5,"episodeNumber":3,"title":"Broken Ties","airDate":"2008-07-25","airDateUtc":"2008-07-26T01:00:00Z","overview":"Ronon once again comes face-to-face with Tyre, one of his people who became a Wraith worshiper -- but who now claims he has broken free of their influence.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4123},{"seriesId":58,"episodeFileId":4953,"seasonNumber":5,"episodeNumber":4,"title":"The Daedalus Variations","airDate":"2008-08-01","airDateUtc":"2008-08-02T01:00:00Z","overview":"The team boards the Daedalus when it shows up abandoned in orbit, only to find themselves skipping through parallel universes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4124},{"seriesId":58,"episodeFileId":4954,"seasonNumber":5,"episodeNumber":5,"title":"Ghost in the Machine","airDate":"2008-08-15","airDateUtc":"2008-08-16T01:00:00Z","overview":"The city of Atlantis becomes host to the minds of disembodied Replicators, led by someone very close to the team.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4125},{"seriesId":58,"episodeFileId":4955,"seasonNumber":5,"episodeNumber":6,"title":"The Shrine","airDate":"2008-08-22","airDateUtc":"2008-08-23T01:00:00Z","overview":"Rodney McKay is stricken with a mental affliction that robs him of his knowledge and memories, causing him to revert to a childlike state.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4126},{"seriesId":58,"episodeFileId":4956,"seasonNumber":5,"episodeNumber":7,"title":"Whispers","airDate":"2008-09-05","airDateUtc":"2008-09-06T01:00:00Z","overview":"Sheppard and Beckett join a team investigating a hidden Wraith laboratory where Michael has been conducting genetic experiments.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4127},{"seriesId":58,"episodeFileId":4957,"seasonNumber":5,"episodeNumber":8,"title":"The Queen","airDate":"2008-09-12","airDateUtc":"2008-09-13T01:00:00Z","overview":"Teyla goes in disguise as a Wraith queen when Todd agrees to make a bold proposal to the leader of his alliance -- not realizing that he has other intentions.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4128},{"seriesId":58,"episodeFileId":4958,"seasonNumber":5,"episodeNumber":9,"title":"Tracker","airDate":"2008-09-19","airDateUtc":"2008-09-20T01:00:00Z","overview":"Ronon and McKay join Dr. Keller on an off-world errand of mercy, and must track her through the forest when a Runner kidnaps her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4129},{"seriesId":58,"episodeFileId":4959,"seasonNumber":5,"episodeNumber":10,"title":"First Contact (1)","airDate":"2008-09-26","airDateUtc":"2008-09-27T01:00:00Z","overview":"When Daniel Jackson visits Atlantis, he and Dr. McKay discover a hidden lab that brings a new enemy knocking. The Daedalus welcomes a Wraith ally for a special project.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4130},{"seriesId":58,"episodeFileId":4960,"seasonNumber":5,"episodeNumber":11,"title":"The Lost Tribe (2)","airDate":"2008-10-10","airDateUtc":"2008-10-11T01:00:00Z","overview":"Sheppard races to an Ancient laboratory to save McKay and Daniel Jackson before Todd arrives to destroy a weapon that has a devastating side-effect. Daniel uncovers the identity of the hostile new species.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4131},{"seriesId":58,"episodeFileId":4961,"seasonNumber":5,"episodeNumber":12,"title":"Outsiders","airDate":"2008-10-17","airDateUtc":"2008-10-18T01:00:00Z","overview":"The Wraith arrive in a village where Dr. Beckett is working, and demand that the locals turn over a group of refugees who survived the Hoffan plague -- or the entire village will be obliterated.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4132},{"seriesId":58,"episodeFileId":4962,"seasonNumber":5,"episodeNumber":13,"title":"Inquisition","airDate":"2008-10-24","airDateUtc":"2008-10-25T01:00:00Z","overview":"A new coalition of human worlds puts the Atlantis team on trial for their alleged crimes against the Pegasus Galaxy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4133},{"seriesId":58,"episodeFileId":4963,"seasonNumber":5,"episodeNumber":14,"title":"The Prodigal","airDate":"2008-11-07","airDateUtc":"2008-11-08T02:00:00Z","overview":"The team fights to retake control of Atlantis when Michael infiltrates the control room to take Teyla's child and destroy the city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4134},{"seriesId":58,"episodeFileId":4964,"seasonNumber":5,"episodeNumber":15,"title":"Remnants","airDate":"2008-11-14","airDateUtc":"2008-11-15T02:00:00Z","overview":"While being evaluated by the I.O.A. Richard Woolsey meets a beautiful scientist new to Atlantis, who is not what she appears. Sheppard is captured and tortured by an enemy he thought was dead.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4135},{"seriesId":58,"episodeFileId":4965,"seasonNumber":5,"episodeNumber":16,"title":"Brain Storm","airDate":"2008-11-21","airDateUtc":"2008-11-22T02:00:00Z","overview":"Rodney returns to Earth with Jennifer to witness the triumph of his rival, who believes he has solved the problem of global warming. But when the new technology goes horribly awry, Rodney must help shut down the deadly weather device.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4136},{"seriesId":58,"episodeFileId":4966,"seasonNumber":5,"episodeNumber":17,"title":"Infection","airDate":"2008-12-05","airDateUtc":"2008-12-06T02:00:00Z","overview":"After Todd's hive ship shows up over Atlantis transmitting a distress call, the team discovers that he and his crew have been stricken with a disease they helped create.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4137},{"seriesId":58,"episodeFileId":4967,"seasonNumber":5,"episodeNumber":18,"title":"Identity","airDate":"2008-12-12","airDateUtc":"2008-12-13T02:00:00Z","overview":"Dr. Keller's body is taken over by a cunning thief, while Keller finds herself imprisoned with a death sentence on another planet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4138},{"seriesId":58,"episodeFileId":4968,"seasonNumber":5,"episodeNumber":19,"title":"Vegas","airDate":"2009-01-02","airDateUtc":"2009-01-03T02:00:00Z","overview":"In the city of Las Vegas, Detective John Sheppard must solve the case on a long string of unusual murders -- perpetrated by a Wraith in hiding.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4139},{"seriesId":58,"episodeFileId":4969,"seasonNumber":5,"episodeNumber":20,"title":"Enemy at the Gate","airDate":"2009-01-09","airDateUtc":"2009-01-10T02:00:00Z","overview":"The team learns that a rogue Wraith has acquired several Z.P.M.s to power a formidable new hive ship -- and he is headed for Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4140}],"episodeFile":[{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Siege (3)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E01.The Siege (3)-Bluray-720p.mkv","size":2346854143,"dateAdded":"2018-10-10T23:01:01.297212Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2951},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Adrift (2)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E01.Adrift (2)-Bluray-720p.mkv","size":2346077907,"dateAdded":"2018-10-10T23:01:01.334845Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5676000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2952},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E01.No Man's Land (2)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E01.No Man's Land (2)-Bluray-720p.mkv","size":2345720136,"dateAdded":"2018-10-10T23:01:01.37003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5687000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2953},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Intruder-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E02.The Intruder-Bluray-720p.mkv","size":2346674502,"dateAdded":"2018-10-10T23:01:01.434298Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5647000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2955},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Misbegotten (3)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E02.Misbegotten (3)-Bluray-720p.mkv","size":2345308674,"dateAdded":"2018-10-10T23:01:01.494868Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2957},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Lifeline (3)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E02.Lifeline (3)-Bluray-720p.mkv","size":2344564461,"dateAdded":"2018-10-10T23:01:01.524924Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5681000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2958},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Runner-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E03.Runner-Bluray-720p.mkv","size":2345764813,"dateAdded":"2018-10-10T23:01:01.592865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5648000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2960},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Irresistible-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E03.Irresistible-Bluray-720p.mkv","size":2345404428,"dateAdded":"2018-10-10T23:01:01.653057Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2962},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Reunion-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E03.Reunion-Bluray-720p.mkv","size":2345232929,"dateAdded":"2018-10-10T23:01:01.683126Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2963},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Duet-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E04.Duet-Bluray-720p.mkv","size":2346671984,"dateAdded":"2018-10-10T23:01:01.713982Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2964},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Doppelganger-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E04.Doppelganger-Bluray-720p.mkv","size":2345765893,"dateAdded":"2018-10-10T23:01:01.778906Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5684000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2966},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Sateda-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E04.Sateda-Bluray-720p.mkv","size":2345188997,"dateAdded":"2018-10-10T23:01:01.844245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2968},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Condemned-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E05.Condemned-Bluray-720p.mkv","size":2347451335,"dateAdded":"2018-10-10T23:01:01.873958Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5788000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2969},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Progeny-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E05.Progeny-Bluray-720p.mkv","size":2346714797,"dateAdded":"2018-10-10T23:01:01.91043Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2970},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Travelers-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E05.Travelers-Bluray-720p.mkv","size":2345084185,"dateAdded":"2018-10-10T23:01:02.024769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5681000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2973},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Tabula Rasa-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E06.Tabula Rasa-Bluray-720p.mkv","size":2346502834,"dateAdded":"2018-10-10T23:01:02.054874Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5675000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2974},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Trinity-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E06.Trinity-Bluray-720p.mkv","size":2346404768,"dateAdded":"2018-10-10T23:01:02.084797Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5648000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2975},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Real World-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E06.The Real World-Bluray-720p.mkv","size":2345154309,"dateAdded":"2018-10-10T23:01:02.176319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2978},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Instinct-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E07.Instinct-Bluray-720p.mkv","size":2346771855,"dateAdded":"2018-10-10T23:01:02.237575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5648000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2980},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Missing-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E07.Missing-Bluray-720p.mkv","size":2346325066,"dateAdded":"2018-10-10T23:01:02.267418Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5673000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2981},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Common Ground-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E07.Common Ground-Bluray-720p.mkv","size":2345749087,"dateAdded":"2018-10-10T23:01:02.297511Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2982},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The Seer-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E08.The Seer-Bluray-720p.mkv","size":2346819279,"dateAdded":"2018-10-10T23:01:02.359567Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5672000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2984},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Conversion-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E08.Conversion-Bluray-720p.mkv","size":2345628198,"dateAdded":"2018-10-10T23:01:02.446458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5636000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2986},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E08.McKay and Mrs. Miller-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E08.McKay and Mrs. Miller-Bluray-720p.mkv","size":2344982539,"dateAdded":"2018-10-10T23:01:02.506788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2988},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Miller's Crossing-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E09.Miller's Crossing-Bluray-720p.mkv","size":2347047366,"dateAdded":"2018-10-10T23:01:02.537448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2989},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Aurora-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E09.Aurora-Bluray-720p.mkv","size":2345521578,"dateAdded":"2018-10-10T23:01:02.601339Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5634000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2991},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Phantoms-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E09.Phantoms-Bluray-720p.mkv","size":2344945682,"dateAdded":"2018-10-10T23:01:02.666343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2993},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E10.This Mortal Coil (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E10.This Mortal Coil (1)-Bluray-720p.mkv","size":2346715006,"dateAdded":"2018-10-10T23:01:02.696825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5683000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2994},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Lost Boys (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E10.The Lost Boys (1)-Bluray-720p.mkv","size":2345500045,"dateAdded":"2018-10-10T23:01:02.759174Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5639000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2996},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Return (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E10.The Return (1)-Bluray-720p.mkv","size":2345179026,"dateAdded":"2018-10-10T23:01:02.793318Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5676000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2997},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Return (2)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E11.The Return (2)-Bluray-720p.mkv","size":2346523784,"dateAdded":"2018-10-10T23:01:02.891128Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5673000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3000},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Be All My Sins Remember'd (2)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E11.Be All My Sins Remember'd (2)-Bluray-720p.mkv","size":2345182820,"dateAdded":"2018-10-10T23:01:02.95502Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3002},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Hive (2)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E11.The Hive (2)-Bluray-720p.mkv","size":2344782166,"dateAdded":"2018-10-10T23:01:02.985573Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3003},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Echoes-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E12.Echoes-Bluray-720p.mkv","size":2346776441,"dateAdded":"2018-10-10T23:01:03.017779Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5672000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3004},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Epiphany-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E12.Epiphany-Bluray-720p.mkv","size":2345834354,"dateAdded":"2018-10-10T23:01:03.078681Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3006},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Spoils of War-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E12.Spoils of War-Bluray-720p.mkv","size":2345202617,"dateAdded":"2018-10-10T23:01:03.139335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3008},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Irresponsible-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E13.Irresponsible-Bluray-720p.mkv","size":2346804942,"dateAdded":"2018-10-10T23:01:03.171046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5672000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3009},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Critical Mass-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E13.Critical Mass-Bluray-720p.mkv","size":2345702850,"dateAdded":"2018-10-10T23:01:03.261326Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3012},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Quarantine-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E13.Quarantine-Bluray-720p.mkv","size":2344938894,"dateAdded":"2018-10-10T23:01:03.290983Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5673000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3013},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Tao of Rodney-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E14.Tao of Rodney-Bluray-720p.mkv","size":2346881789,"dateAdded":"2018-10-10T23:01:03.323888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5674000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3014},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Grace Under Pressure-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E14.Grace Under Pressure-Bluray-720p.mkv","size":2345712137,"dateAdded":"2018-10-10T23:01:03.359046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3015},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Harmony-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E14.Harmony-Bluray-720p.mkv","size":2345000405,"dateAdded":"2018-10-10T23:01:03.453169Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5673000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3018},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Tower-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E15.The Tower-Bluray-720p.mkv","size":2346306455,"dateAdded":"2018-10-10T23:01:03.483858Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5679000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3019},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E15.The Game-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E15.The Game-Bluray-720p.mkv","size":2346018616,"dateAdded":"2018-10-10T23:01:03.513769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3020},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Outcast-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E15.Outcast-Bluray-720p.mkv","size":2345243491,"dateAdded":"2018-10-10T23:01:03.57559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5679000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3022},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Long Goodbye-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E16.The Long Goodbye-Bluray-720p.mkv","size":2346985529,"dateAdded":"2018-10-10T23:01:03.635527Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3024},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Trio-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E16.Trio-Bluray-720p.mkv","size":2345932886,"dateAdded":"2018-10-10T23:01:03.711311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3026},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E16.The Ark-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E16.The Ark-Bluray-720p.mkv","size":2344817396,"dateAdded":"2018-10-10T23:01:03.775846Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3028},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Coup D'Etat-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E17.Coup D'Etat-Bluray-720p.mkv","size":2346632023,"dateAdded":"2018-10-10T23:01:03.806301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3029},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Midway-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E17.Midway-Bluray-720p.mkv","size":2345952566,"dateAdded":"2018-10-10T23:01:03.872107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3031},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Sunday-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E17.Sunday-Bluray-720p.mkv","size":2344830325,"dateAdded":"2018-10-10T23:01:03.938605Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3033},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Michael-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E18.Michael-Bluray-720p.mkv","size":2346592647,"dateAdded":"2018-10-10T23:01:03.969445Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3034},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E18.The Kindred (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E18.The Kindred (1)-Bluray-720p.mkv","size":2345878297,"dateAdded":"2018-10-10T23:01:04.032986Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3036},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Submersion-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E18.Submersion-Bluray-720p.mkv","size":2345338293,"dateAdded":"2018-10-10T23:01:04.067803Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3037},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Inferno-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E19.Inferno-Bluray-720p.mkv","size":2346452962,"dateAdded":"2018-10-10T23:01:04.132325Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3039},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E19.The Kindred (2)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E19.The Kindred (2)-Bluray-720p.mkv","size":2345144767,"dateAdded":"2018-10-10T23:01:04.165562Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5665000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3040},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Vengeance-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E19.Vengeance-Bluray-720p.mkv","size":2344818422,"dateAdded":"2018-10-10T23:01:04.230097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3042},{"seriesId":58,"seasonNumber":4,"relativePath":"Season 04\/S04E20.The Last Man (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 04\/S04E20.The Last Man (1)-Bluray-720p.mkv","size":2345835370,"dateAdded":"2018-10-10T23:01:04.323559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3045},{"seriesId":58,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Allies (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 02\/S02E20.Allies (1)-Bluray-720p.mkv","size":2345436652,"dateAdded":"2018-10-10T23:01:04.353768Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5668000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3046},{"seriesId":58,"seasonNumber":3,"relativePath":"Season 03\/S03E20.First Strike (1)-Bluray-720p.mkv","path":"\/tv\/Stargate Atlantis\/Season 03\/S03E20.First Strike (1)-Bluray-720p.mkv","size":2345204635,"dateAdded":"2018-10-10T23:01:04.414176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5666000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":3048},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.Rising-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E01E02.Rising-Bluray-1080p.mkv","size":7039893725,"dateAdded":"2018-10-17T12:22:19.378538Z","sceneName":"Stargate.Atlantis.S01E01E02.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9155000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:28:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4856},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Hide and Seek-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E03.Hide and Seek-Bluray-1080p.mkv","size":3518735194,"dateAdded":"2018-10-17T12:27:21.953658Z","sceneName":"Stargate.Atlantis.S01E03.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9233000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4857},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Thirty-Eight Minutes-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E04.Thirty-Eight Minutes-Bluray-1080p.mkv","size":3519367384,"dateAdded":"2018-10-17T12:29:34.171729Z","sceneName":"Stargate.Atlantis.S01E04.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9249000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4858},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Suspicion-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E05.Suspicion-Bluray-1080p.mkv","size":3518951003,"dateAdded":"2018-10-17T12:32:21.837785Z","sceneName":"Stargate.Atlantis.S01E05.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9245000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4859},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Childhood's End-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E06.Childhood's End-Bluray-1080p.mkv","size":3518625971,"dateAdded":"2018-10-17T12:35:12.158739Z","sceneName":"Stargate.Atlantis.S01E06.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9241000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4860},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Poisoning the Well-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E07.Poisoning the Well-Bluray-1080p.mkv","size":3519363388,"dateAdded":"2018-10-17T12:37:35.928054Z","sceneName":"Stargate.Atlantis.S01E07.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9241000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4861},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Underground-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E08.Underground-Bluray-1080p.mkv","size":3518779961,"dateAdded":"2018-10-17T12:40:42.524096Z","sceneName":"Stargate.Atlantis.S01E08.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9241000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4862},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Home-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E09.Home-Bluray-1080p.mkv","size":3518457081,"dateAdded":"2018-10-17T12:43:40.28341Z","sceneName":"Stargate.Atlantis.S01E09.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9270000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4863},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Storm (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E10.The Storm (1)-Bluray-1080p.mkv","size":3518716454,"dateAdded":"2018-10-17T12:46:37.276876Z","sceneName":"Stargate.Atlantis.S01E10.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9245000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4864},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Eye (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E11.The Eye (2)-Bluray-1080p.mkv","size":3518792556,"dateAdded":"2018-10-17T12:49:02.363602Z","sceneName":"Stargate.Atlantis.S01E11.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9339000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4865},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Defiant One-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E12.The Defiant One-Bluray-1080p.mkv","size":3519400074,"dateAdded":"2018-10-17T12:51:53.313305Z","sceneName":"Stargate.Atlantis.S01E12.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9249000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4866},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Hot Zone-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E13.Hot Zone-Bluray-1080p.mkv","size":3518838340,"dateAdded":"2018-10-17T12:54:56.784481Z","sceneName":"Stargate.Atlantis.S01E13.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9249000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4867},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Sanctuary-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E14.Sanctuary-Bluray-1080p.mkv","size":3518586643,"dateAdded":"2018-10-17T12:57:43.432268Z","sceneName":"Stargate.Atlantis.S01E14.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9249000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4868},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Before I Sleep-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E15.Before I Sleep-Bluray-1080p.mkv","size":3518372089,"dateAdded":"2018-10-17T13:00:45.991226Z","sceneName":"Stargate.Atlantis.S01E15.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9249000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4869},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Brotherhood-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E16.The Brotherhood-Bluray-1080p.mkv","size":3517403675,"dateAdded":"2018-10-17T13:04:00.267274Z","sceneName":"Stargate.Atlantis.S01E16.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4870},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Letters from Pegasus-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E17.Letters from Pegasus-Bluray-1080p.mkv","size":3518736905,"dateAdded":"2018-10-17T13:07:15.936357Z","sceneName":"Stargate.Atlantis.S01E17.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9252000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4871},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Gift-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E18.The Gift-Bluray-1080p.mkv","size":3517906419,"dateAdded":"2018-10-17T13:10:00.809136Z","sceneName":"Stargate.Atlantis.S01E18.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9245000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4872},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Siege (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E19.The Siege (1)-Bluray-1080p.mkv","size":3518699979,"dateAdded":"2018-10-17T13:12:37.780843Z","sceneName":"Stargate.Atlantis.S01E19.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9252000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4873},{"seriesId":58,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Siege (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 01\/S01E20.The Siege (2)-Bluray-1080p.mkv","size":3500691966,"dateAdded":"2018-10-17T13:15:22.726008Z","sceneName":"Stargate.Atlantis.S01E20.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9252000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4874},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Search and Rescue (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E01.Search and Rescue (2)-Bluray-1080p.mkv","size":3518074885,"dateAdded":"2018-10-18T21:45:19.057188Z","sceneName":"Stargate.Atlantis.S05E01.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9251000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4950},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E02.The Seed-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E02.The Seed-Bluray-1080p.mkv","size":3517917060,"dateAdded":"2018-10-18T21:47:12.542229Z","sceneName":"Stargate.Atlantis.S05E02.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9274000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4951},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Broken Ties-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E03.Broken Ties-Bluray-1080p.mkv","size":3517577990,"dateAdded":"2018-10-18T21:49:09.154568Z","sceneName":"Stargate.Atlantis.S05E03.1080p.BluRay.x264-TENEIGHTY","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9274000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4952},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E04.The Daedalus Variations-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E04.The Daedalus Variations-Bluray-1080p.mkv","size":4002825073,"dateAdded":"2018-10-18T21:51:06.354176Z","sceneName":"Stargate.Atlantis.S05E04.1080p.BluRay.x264-decibeL","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4953},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Ghost in the Machine-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E05.Ghost in the Machine-Bluray-1080p Proper.mkv","size":3521787551,"dateAdded":"2018-10-18T21:53:32.158615Z","sceneName":"Stargate.Atlantis.S05E05.1080p.RERIP.BluRay.x264-TENEIGHTY","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9257000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4954},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E06.The Shrine-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E06.The Shrine-Bluray-1080p.mkv","size":3518684814,"dateAdded":"2018-10-18T21:59:46.231605Z","sceneName":"Stargate.Atlantis.S05E06.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4955},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Whispers-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E07.Whispers-Bluray-1080p.mkv","size":3518707245,"dateAdded":"2018-10-18T22:06:07.912032Z","sceneName":"Stargate.Atlantis.S05E07.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4956},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E08.The Queen-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E08.The Queen-Bluray-1080p.mkv","size":3519359661,"dateAdded":"2018-10-18T22:12:20.223742Z","sceneName":"Stargate.Atlantis.S05E08.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9269000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4957},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Tracker-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E09.Tracker-Bluray-1080p.mkv","size":3519526365,"dateAdded":"2018-10-18T22:18:05.708184Z","sceneName":"Stargate.Atlantis.S05E09.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9266000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4958},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E10.First Contact (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E10.First Contact (1)-Bluray-1080p.mkv","size":3518648786,"dateAdded":"2018-10-18T22:24:10.225507Z","sceneName":"Stargate.Atlantis.S05E10.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9270000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4959},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E11.The Lost Tribe (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E11.The Lost Tribe (2)-Bluray-1080p.mkv","size":3519266179,"dateAdded":"2018-10-18T22:30:18.44781Z","sceneName":"Stargate.Atlantis.S05E11.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4960},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Outsiders-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E12.Outsiders-Bluray-1080p.mkv","size":3519521772,"dateAdded":"2018-10-18T22:35:34.117503Z","sceneName":"Stargate.Atlantis.S05E12.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9267000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4961},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Inquisition-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E13.Inquisition-Bluray-1080p.mkv","size":3518055098,"dateAdded":"2018-10-18T22:39:30.949893Z","sceneName":"Stargate.Atlantis.S05E13.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9276000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4962},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E14.The Prodigal-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E14.The Prodigal-Bluray-1080p.mkv","size":3517719204,"dateAdded":"2018-10-18T22:43:47.646609Z","sceneName":"Stargate.Atlantis.S05E14.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9276000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4963},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Remnants-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E15.Remnants-Bluray-1080p.mkv","size":3518183989,"dateAdded":"2018-10-18T22:47:58.170802Z","sceneName":"Stargate.Atlantis.S05E15.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9253000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4964},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Brain Storm-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E16.Brain Storm-Bluray-1080p.mkv","size":3520028828,"dateAdded":"2018-10-18T22:53:08.758233Z","sceneName":"Stargate.Atlantis.S05E16.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9269000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4965},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E17.Infection-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E17.Infection-Bluray-1080p.mkv","size":3518967784,"dateAdded":"2018-10-18T22:58:01.246488Z","sceneName":"Stargate.Atlantis.S05E17.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9265000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4966},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Identity-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E18.Identity-Bluray-1080p.mkv","size":3518691176,"dateAdded":"2018-10-18T23:03:06.684973Z","sceneName":"Stargate.Atlantis.S05E18.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9269000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4967},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Vegas-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E19.Vegas-Bluray-1080p.mkv","size":3518572038,"dateAdded":"2018-10-18T23:09:49.717676Z","sceneName":"Stargate.Atlantis.S05E19.1080p.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8613000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4968},{"seriesId":58,"seasonNumber":5,"relativePath":"Season 05\/S05E20.Enemy at the Gate-Bluray-1080p.mkv","path":"\/tv\/Stargate Atlantis\/Season 05\/S05E20.Enemy at the Gate-Bluray-1080p.mkv","size":3518614007,"dateAdded":"2018-10-18T23:16:30.763233Z","sceneName":"Stargate.Atlantis.S05E20.1080p.EXTENDED.BluRay.X264-P0W4HD","releaseGroup":"P0W4HD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8747000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4969}],"queue":[]},"62":{"series":{"title":"Ergo Proxy","alternateTitles":[],"sortTitle":"ergo proxy","status":"ended","ended":true,"overview":"In the utopian city, Romdeau, where humans and their android servants live, the landscape is broken by a series of murders. Real Mayar, a female inspector from the Citizen Information Bureau, along with her android partner Iggy, are tasked to solve the cases. Mayar is soon attacked by a creature which is neither human nor android, and learns about the mysterious phenomena called \"Awakening.\"","previousAiring":"2006-08-11T15:00:00Z","network":"WOWOW","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/82\/banner.jpg?lastWrite=636854779840841790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79228-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/82\/poster.jpg?lastWrite=637103832635634910","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79228-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/82\/fanart.jpg?lastWrite=637103832631674980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79228-5.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-08-11T15:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":57598143180,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Ergo Proxy","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":79228,"tvRageId":10924,"tvMazeId":8256,"firstAired":"2006-02-25T00:00:00Z","seriesType":"standard","cleanTitle":"ergoproxy","imdbId":"tt0791205","titleSlug":"ergo-proxy","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-10-13T16:15:05.359694Z","ratings":{"votes":4526,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":57598143180,"percentOfEpisodes":100.0},"id":82},"episodes":[{"seriesId":82,"episodeFileId":4137,"seasonNumber":1,"episodeNumber":1,"title":"Awakening","airDate":"2006-02-25","airDateUtc":"2006-02-24T15:00:00Z","overview":"When a series of mysterious attacks involving Cogito infected AutoReivs occur, Re-l is assigned to investigate, and encounters a humanoid monster. Later, she is attacked by two of these monsters at her home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6547},{"seriesId":82,"episodeFileId":4138,"seasonNumber":1,"episodeNumber":2,"title":"Confession","airDate":"2006-03-04","airDateUtc":"2006-03-03T15:00:00Z","overview":"Re-l struggles to convince her peers of her encounters with the monsters, which she learns are called Proxy. She is removed from the investigation and finds that Iggy has had his memories of recent events erased. Meanwhile, Vincent finds himself on the run from a proxy and then the city's authorities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6548},{"seriesId":82,"episodeFileId":4139,"seasonNumber":1,"episodeNumber":3,"title":"Mazecity","airDate":"2006-03-11","airDateUtc":"2006-03-10T15:00:00Z","overview":"Romdo is no longer a safe haven for Vincent. He is trying to avoid capture by the authorities. As he flees he comes across the infected AutoReiv Pino. Pino then shows him the way to escape from Romdo to the outside world. Re-l struggles to contact Vincent and uncover the true nature of his involvement with the Proxy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6549},{"seriesId":82,"episodeFileId":4140,"seasonNumber":1,"episodeNumber":4,"title":"Futu-risk","airDate":"2006-03-18","airDateUtc":"2006-03-17T15:00:00Z","overview":"Vincent and Pino are taken in by a small commune, the inhabitants of which make a living off the refuse dumped from the Dome. Meanwhile, Raul plans his move to locate and capture Vincent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6550},{"seriesId":82,"episodeFileId":4141,"seasonNumber":1,"episodeNumber":5,"title":"Tasogare","airDate":"2006-04-01","airDateUtc":"2006-03-31T15:00:00Z","overview":"Re-l braves the outside world in order to bring Vincent back to Romdo. While there, Raul commences his plan to capture Vincent by attacking the Commune with patrol drones. Re-l's environmental suit is damaged and Vincent is injured in the attack. Re-l suspicions are confirmed that there is a link between Vincent and the Proxies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6551},{"seriesId":82,"episodeFileId":4142,"seasonNumber":1,"episodeNumber":6,"title":"Domecoming","airDate":"2006-04-08","airDateUtc":"2006-04-07T15:00:00Z","overview":"Re-l's life becomes endangered when she falls ill after exposure to the harsh environment. Hoody hatches a cunning plan to trick Raul and return to Romdo. Quinn leads a group on an escape from the Commune using the Rabbit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6552},{"seriesId":82,"episodeFileId":4143,"seasonNumber":1,"episodeNumber":7,"title":"RE-L124C41+","airDate":"2006-04-15","airDateUtc":"2006-04-14T15:00:00Z","overview":"Re-l recovers from her illness. Daedalus shows her the disturbing mechanisms responsible for the Dome's continued survival. Vincent makes his way home, slowly losing his companions along the way, ending up alone with Pino. A group of infected AutoReivs is unleashed on Re-l, Iggy, and Daedalus. The episode ends with Daedalus filling out Re-l's death certificate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6553},{"seriesId":82,"episodeFileId":4144,"seasonNumber":1,"episodeNumber":8,"title":"Shining Sign","airDate":"2006-04-22","airDateUtc":"2006-04-21T15:00:00Z","overview":"Vincent and Pino stumbles onto war-torn Halos, where they are caught in a war between the dome's human inhabitants and its autonomous AutoReivs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6554},{"seriesId":82,"episodeFileId":4145,"seasonNumber":1,"episodeNumber":9,"title":"Angel's Share","airDate":"2006-04-29","airDateUtc":"2006-04-28T15:00:00Z","overview":"Vincent is introduced to a man named Hauer, and learns some truths about Halos and Proxies, discovering a horrific revelation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6555},{"seriesId":82,"episodeFileId":4146,"seasonNumber":1,"episodeNumber":10,"title":"Cytotropism","airDate":"2006-05-13","airDateUtc":"2006-05-12T15:00:00Z","overview":"Disturbed by recent events, Raul questions the future of Romdo. Meanwhile, Re-l and Iggy explore a strange antiquated dome inhabited only by primitive AutoReivs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6556},{"seriesId":82,"episodeFileId":4147,"seasonNumber":1,"episodeNumber":11,"title":"Anamnesis","airDate":"2006-05-20","airDateUtc":"2006-05-19T15:00:00Z","overview":"Vincent finds a strange book store and an even stranger old man, where he discovers more about his true nature. Re-l and Iggy catch up on the Centzon (the Rabbit, the flying ship that Vincent travels by).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6557},{"seriesId":82,"episodeFileId":4148,"seasonNumber":1,"episodeNumber":12,"title":"Hideout","airDate":"2006-05-27","airDateUtc":"2006-05-26T15:00:00Z","overview":"The group is confronted by a vagrant Proxy and its companion AutoReiv, and Re-l puts her new weapon to use.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6558},{"seriesId":82,"episodeFileId":4149,"seasonNumber":1,"episodeNumber":13,"title":"Wrong Way Home","airDate":"2006-06-03","airDateUtc":"2006-06-02T15:00:00Z","overview":"An infected Iggy becomes enraged and kidnaps Re-l, setting out to kill Vincent. Re-l is again confronted by the homeless AutoReiv.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6559},{"seriesId":82,"episodeFileId":4150,"seasonNumber":1,"episodeNumber":14,"title":"Ophelia","airDate":"2006-06-10","airDateUtc":"2006-06-09T15:00:00Z","overview":"While resting in a long-abandoned dome, strange occurrences take place and the trio's lives are endangered.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6560},{"seriesId":82,"episodeFileId":4151,"seasonNumber":1,"episodeNumber":15,"title":"Who Wants to be in Jeopardy?","airDate":"2006-06-17","airDateUtc":"2006-06-16T15:00:00Z","overview":"Finding himself in a bizarre live game show, Vincent's trivia knowledge is put to the test as he battles for his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6561},{"seriesId":82,"episodeFileId":4152,"seasonNumber":1,"episodeNumber":16,"title":"Busy Doing Nothing","airDate":"2006-06-24","airDateUtc":"2006-06-23T15:00:00Z","overview":"When winds die out, the trio are stranded aboard the Centzon and Re-l finds herself struggling to hold on to her sanity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":6562},{"seriesId":82,"episodeFileId":4153,"seasonNumber":1,"episodeNumber":17,"title":"Terra Incognita","airDate":"2006-07-01","airDateUtc":"2006-06-30T15:00:00Z","overview":"Romdo is on high alert as they search for the fugitive Raul, who plans to activate a deadly weapon. Meanwhile, the trio discover strange humanoids living inside a toxic cave system.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":6563},{"seriesId":82,"episodeFileId":4154,"seasonNumber":1,"episodeNumber":18,"title":"Life After God","airDate":"2006-07-08","airDateUtc":"2006-07-07T15:00:00Z","overview":"The trio reach the devastated Mosko, Vincent's home city, and find that the truths lead back to Romdo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":6564},{"seriesId":82,"episodeFileId":4155,"seasonNumber":1,"episodeNumber":19,"title":"Eternal Smile","airDate":"2006-07-15","airDateUtc":"2006-07-14T15:00:00Z","overview":"Pino explores the mysterious Smile Land with the NaKaMa, and confronts the Creator of the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":6565},{"seriesId":82,"episodeFileId":4156,"seasonNumber":1,"episodeNumber":20,"title":"Goodbye Vincent","airDate":"2006-07-22","airDateUtc":"2006-07-21T15:00:00Z","overview":"Vincent finds himself trapped within Re-l's consciousness, and observes powerlessly as events unfold.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":6566},{"seriesId":82,"episodeFileId":4157,"seasonNumber":1,"episodeNumber":21,"title":"Shampoo Planet","airDate":"2006-07-29","airDateUtc":"2006-07-28T15:00:00Z","overview":"A Cogito outbreak spreads through Romdo and the city falls into chaos. Vincent incites the people to revolt, pushing them to hunt down and kill all AutoReivs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":6567},{"seriesId":82,"episodeFileId":4158,"seasonNumber":1,"episodeNumber":22,"title":"Bilbul","airDate":"2006-08-05","airDateUtc":"2006-08-04T15:00:00Z","overview":"As the city continues to crumble, Vincent and Re-l encounter Proxy One. Raul is overcome with regret and despair, and sets out to find Pino.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":6568},{"seriesId":82,"episodeFileId":4159,"seasonNumber":1,"episodeNumber":23,"title":"Deus Ex Machina","airDate":"2006-08-12","airDateUtc":"2006-08-11T15:00:00Z","overview":"Pieces are played and revelations uncovered as the final fight commences. Monad makes her return and tries to convince Vincent to join her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":6569}],"episodeFile":[{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Awakening-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E01.Awakening-Bluray-1080p.mkv","size":2292033947,"dateAdded":"2018-10-13T16:18:30.344018Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1520060,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9057573,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4137},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Confession-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E02.Confession-Bluray-1080p.mkv","size":1860821475,"dateAdded":"2018-10-13T16:18:30.381822Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1427347,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7024909,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4138},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Mazecity-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E03.Mazecity-Bluray-1080p.mkv","size":2989071956,"dateAdded":"2018-10-13T16:18:30.624917Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1493763,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":12714775,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:46","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4139},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Futu-risk-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E04.Futu-risk-Bluray-1080p.mkv","size":2519240989,"dateAdded":"2018-10-13T16:18:31.230098Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1425717,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10428826,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4140},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Tasogare-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E05.Tasogare-Bluray-1080p.mkv","size":2367547080,"dateAdded":"2018-10-13T16:18:31.963005Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1358627,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9704912,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4141},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Domecoming-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E06.Domecoming-Bluray-1080p.mkv","size":2578543588,"dateAdded":"2018-10-13T16:18:32.682534Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1424232,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10630245,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4142},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E07.RE-L124C41+-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E07.RE-L124C41+-Bluray-1080p.mkv","size":2457200617,"dateAdded":"2018-10-13T16:18:33.445108Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1384786,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10110690,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:52","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4143},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Shining Sign-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E08.Shining Sign-Bluray-1080p.mkv","size":2653013032,"dateAdded":"2018-10-13T16:18:33.935758Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1524642,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10813704,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4144},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Angel's Share-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E09.Angel's Share-Bluray-1080p.mkv","size":2662396748,"dateAdded":"2018-10-13T16:18:35.05623Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1580848,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10882650,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4145},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Cytotropism-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E10.Cytotropism-Bluray-1080p.mkv","size":2465658592,"dateAdded":"2018-10-13T16:18:35.559053Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1524098,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9909081,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4146},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Anamnesis-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E11.Anamnesis-Bluray-1080p.mkv","size":2445128077,"dateAdded":"2018-10-13T16:18:36.221147Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1504486,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9916633,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4147},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Hideout-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E12.Hideout-Bluray-1080p.mkv","size":2656699380,"dateAdded":"2018-10-13T16:18:37.45103Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1479867,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":11000595,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4148},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Wrong Way Home-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E13.Wrong Way Home-Bluray-1080p.mkv","size":2518436523,"dateAdded":"2018-10-13T16:18:37.650865Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1413227,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10264102,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:52","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4149},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Ophelia-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E14.Ophelia-Bluray-1080p.mkv","size":2394730657,"dateAdded":"2018-10-13T16:18:38.594715Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1361939,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9841008,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4150},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Who Wants to be in Jeopardy-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E15.Who Wants to be in Jeopardy-Bluray-1080p.mkv","size":1198685031,"dateAdded":"2018-10-13T16:18:38.939016Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1483146,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3139550,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4151},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Busy Doing Nothing-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E16.Busy Doing Nothing-Bluray-1080p.mkv","size":3262733251,"dateAdded":"2018-10-13T16:18:39.143887Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1232061,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":14583310,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:48","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4152},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Terra Incognita-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E17.Terra Incognita-Bluray-1080p.mkv","size":2474877155,"dateAdded":"2018-10-13T16:18:40.035436Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1350960,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10290196,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4153},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Life After God-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E18.Life After God-Bluray-1080p.mkv","size":2595512306,"dateAdded":"2018-10-13T16:18:40.785457Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1409229,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10771089,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4154},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Eternal Smile-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E19.Eternal Smile-Bluray-1080p.mkv","size":2642001559,"dateAdded":"2018-10-13T16:18:41.706148Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1451753,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10950172,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4155},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Goodbye Vincent-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E20.Goodbye Vincent-Bluray-1080p.mkv","size":2245623401,"dateAdded":"2018-10-13T16:18:42.984378Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1360000,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9086295,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:52","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4156},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Shampoo Planet-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E21.Shampoo Planet-Bluray-1080p.mkv","size":2595483468,"dateAdded":"2018-10-13T16:18:43.738926Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1534163,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10593579,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4157},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Bilbul-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E22.Bilbul-Bluray-1080p.mkv","size":2837758792,"dateAdded":"2018-10-13T16:18:44.730816Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1494836,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":11975440,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4158},{"seriesId":82,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Deus Ex Machina-Bluray-1080p.mkv","path":"\/tv\/Ergo Proxy\/Season 01\/S01E23.Deus Ex Machina-Bluray-1080p.mkv","size":2884945556,"dateAdded":"2018-10-13T16:18:45.353779Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1628346,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10033303,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"29:35","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4159}],"queue":[]},"63":{"series":{"title":"Another","alternateTitles":[],"sortTitle":"another","status":"ended","ended":true,"overview":"When Kouichi Sakakibara transfers to his new school, he can sense something frightening in the atmosphere of his new class \u2014 a secret none of them will talk about. At the center is the beautiful girl, Mei Misaki. Kouichi is immediately drawn to her mysterious aura, but then he begins to realize that no one else in the class is aware of her presence.","previousAiring":"2012-03-26T15:00:00Z","network":"Tokyo MX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/81\/banner.jpg?lastWrite=637103832311720780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/254349-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/81\/poster.jpg?lastWrite=637461573276066250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/254349-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/81\/fanart.jpg?lastWrite=637103832298841010","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/254349-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-26T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":1989316570,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Another","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":254349,"tvRageId":30417,"tvMazeId":5901,"firstAired":"2012-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"another","imdbId":"tt2176165","titleSlug":"another","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Horror","Suspense","Thriller"],"tags":[],"added":"2018-10-13T16:14:58.81959Z","ratings":{"votes":5505,"value":7.2},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":14,"sizeOnDisk":1989316570,"percentOfEpisodes":100.0},"id":81},"episodes":[{"seriesId":81,"episodeFileId":9854,"seasonNumber":1,"episodeNumber":1,"title":"Rough Sketch","airDate":"2012-01-10","airDateUtc":"2012-01-09T15:00:00Z","overview":"Kouichi Sakakibara has just arrived in Yomiyama, and he's already hospitalized with a collapsed lung. After joining the local middle school almost a month late, he becomes friends with someone he met while in the hospital \u2014 a quiet girl with an eye patch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6532},{"seriesId":81,"episodeFileId":9855,"seasonNumber":1,"episodeNumber":2,"title":"Blueprint","airDate":"2012-01-17","airDateUtc":"2012-01-16T15:00:00Z","overview":"Kouichi's friendship with Mei seems to be one sided. He takes every chance he can get to speak to her, but she never seems to understand what he says. Her replies seem more cryptic as the days go by, and their classmates become increasingly suspicious.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6533},{"seriesId":81,"episodeFileId":9856,"seasonNumber":1,"episodeNumber":3,"title":"Bone Work","airDate":"2012-01-24","airDateUtc":"2012-01-23T15:00:00Z","overview":"A studio crowded with old dolls is the perfect place for Mei to tell Kouichi the tale of three students' mysterious deaths 26 years ago. Finding out more information from his classmates proves difficult, but his aunt Reiko is willing to tell him more.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6534},{"seriesId":81,"episodeFileId":9857,"seasonNumber":1,"episodeNumber":4,"title":"Put Flesh","airDate":"2012-01-31","airDateUtc":"2012-01-30T15:00:00Z","overview":"The rumor of the \"Class 3 Curse\" gains notoriety with the sudden and accidental death of a student. Kouichi, desperate to know more, turns to Mei who refuses to tell him anything else. Izumi Akazawa, the head of countermeasures, begins the investigation on Class 3.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6535},{"seriesId":81,"episodeFileId":9858,"seasonNumber":1,"episodeNumber":5,"title":"Build Limbs","airDate":"2012-02-07","airDateUtc":"2012-02-06T15:00:00Z","overview":"Following Mizuno's bizarre accident, the tension rises in Class 3, and Izumi is chosen as the new Class Officer without Kouichi knowing. Rumors are spreading, but no one is willing to say anything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6536},{"seriesId":81,"episodeFileId":9859,"seasonNumber":1,"episodeNumber":6,"title":"Face to Face","airDate":"2012-02-14","airDateUtc":"2012-02-13T15:00:00Z","overview":"A charm has been evoked by Class 3 for the past 26 years to ward off any further calamitous incidents. Kouichi begins to accept what's going on around him. However, he deems it unreasonable and begins spending more time with Mei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6537},{"seriesId":81,"episodeFileId":9860,"seasonNumber":1,"episodeNumber":7,"title":"Sphere Joint","airDate":"2012-02-21","airDateUtc":"2012-02-20T15:00:00Z","overview":"Fresh blood is spilled, and Class 3 realizes that the curse hasn't stopped. The Charm rituals are called off. Everyone is on edge, wondering who among them is actually dead. Meanwhile, Kouichi learns of an incident 15 years in the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6538},{"seriesId":81,"episodeFileId":9861,"seasonNumber":1,"episodeNumber":8,"title":"Hair Stand","airDate":"2012-02-28","airDateUtc":"2012-02-27T15:00:00Z","overview":"A resort hotel is the rendezvous destination for Kouichi, Reiko and Matsunaga. As they spend a day sunning at the beach, they run into Mei, who's staying nearby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6539},{"seriesId":81,"episodeFileId":9862,"seasonNumber":1,"episodeNumber":9,"title":"Body Paint","airDate":"2012-03-06","airDateUtc":"2012-03-05T15:00:00Z","overview":"An unexpected accident outside Yomiyama once again puts Class 3 on edge. After Matsunaga's vague whispers point to the classroom, Kouichi decides to investigate the old Class 3 homeroom in the former school building.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6540},{"seriesId":81,"episodeFileId":9863,"seasonNumber":1,"episodeNumber":10,"title":"Glass Eye","airDate":"2012-03-13","airDateUtc":"2012-03-12T15:00:00Z","overview":"The casualty count continues to rise, and Kouichi's search for Matsunaga's tape is successful. During the class trip, the friends gather to listen, and to find out what Matsunaga did to stop the curse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6541},{"seriesId":81,"episodeFileId":9864,"seasonNumber":1,"episodeNumber":11,"title":"Makeup","airDate":"2012-03-20","airDateUtc":"2012-03-19T15:00:00Z","overview":"Matsunaga's tape has at last revealed the secrets and measures necessary to stop the curse. Kouichi and his friends try to figure out how to avert more disasters when the tape suddenly disappears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6542},{"seriesId":81,"episodeFileId":9865,"seasonNumber":1,"episodeNumber":12,"title":"Stand by Oneself","airDate":"2012-03-27","airDateUtc":"2012-03-26T15:00:00Z","overview":"Chaos runs through the lodge hallways as students desperately seek the key to stopping the Class 3 Curse once and for all. Will Kouichi be able to find the answer before another victim is claimed?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6543},{"seriesId":81,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Other","airDate":"2012-05-26","airDateUtc":"2012-05-25T15:00:00Z","overview":"Mei Misaki secretly meets with her twin, Misaki Fujioka, and they spend the day together. Little do they know, that both of their lives are about to change.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6544},{"seriesId":81,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Misaki Mei - Shizuka Ni","airDate":"2013-03-29","airDateUtc":"2013-03-28T15:00:00Z","overview":"A music video with minimalistic flash animation, featuring a chibi version of Mei. Bundled with the Complete Collection Blu-ray Box.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6545}],"episodeFile":[{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Rough Sketch-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E01.Rough Sketch-Bluray-1080p.mkv","size":141728705,"dateAdded":"2019-10-25T09:09:33.703414Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":110289,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":534047,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9854},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Blueprint-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E02.Blueprint-Bluray-1080p.mkv","size":144772631,"dateAdded":"2019-10-25T09:09:34.599487Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112255,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":527358,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9855},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Bone Work-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E03.Bone Work-Bluray-1080p.mkv","size":161015599,"dateAdded":"2019-10-25T09:09:35.343173Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":107911,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":639205,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9856},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Put Flesh-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E04.Put Flesh-Bluray-1080p.mkv","size":153910547,"dateAdded":"2019-10-25T09:09:36.192982Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":111409,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":581307,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9857},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Build Limbs-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E05.Build Limbs-Bluray-1080p.mkv","size":143734264,"dateAdded":"2019-10-25T09:09:36.969084Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":110013,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":543426,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:43","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9858},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Face to Face-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E06.Face to Face-Bluray-1080p.mkv","size":159964218,"dateAdded":"2019-10-25T09:09:37.633332Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112219,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":563988,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9859},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Sphere Joint-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E07.Sphere Joint-Bluray-1080p.mkv","size":149433569,"dateAdded":"2019-10-25T09:09:38.298782Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":109514,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":575864,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9860},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Hair Stand-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E08.Hair Stand-Bluray-1080p.mkv","size":214708264,"dateAdded":"2019-10-25T09:09:39.005971Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":108748,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":934675,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9861},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Body Paint-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E09.Body Paint-Bluray-1080p.mkv","size":172161737,"dateAdded":"2019-10-25T09:09:39.773145Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":107367,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":706064,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9862},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Glass Eye-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E10.Glass Eye-Bluray-1080p.mkv","size":155863822,"dateAdded":"2019-10-25T09:09:40.553333Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":108766,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":616644,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9863},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Makeup-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E11.Makeup-Bluray-1080p.mkv","size":140117985,"dateAdded":"2019-10-25T09:09:41.263025Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":108149,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":534450,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9864},{"seriesId":81,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Stand by Oneself-Bluray-1080p.mkv","path":"\/tv\/Another\/Season 01\/S01E12.Stand by Oneself-Bluray-1080p.mkv","size":251905229,"dateAdded":"2019-10-25T09:09:42.168169Z","releaseGroup":"Judas","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112126,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1059502,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9865}],"queue":[]},"65":{"series":{"title":"The Dragon Prince","alternateTitles":[{"title":"Le Prince des Dragons","seasonNumber":-1},{"title":"Il Principe dei Draghi","seasonNumber":-1},{"title":"Der Prinz der Drachen","seasonNumber":-1}],"sortTitle":"dragon prince","status":"continuing","ended":false,"overview":"The Dragon Prince, created by Aaron Ehasz (Avatar: The Last Airbender) and Justin Richmond, tells the story of two human princes who forge an unlikely bond with the elfin assassin sent to kill them, embarking on an epic quest to bring peace to their warring lands.","previousAiring":"2019-11-22T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/76\/banner.jpg?lastWrite=637102288884633770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350123\/banners\/62006033.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/76\/poster.jpg?lastWrite=637155979182281680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5b9d17185d8fb.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/76\/fanart.jpg?lastWrite=637155979179681760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b5436c9864e5.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-09-14T07:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":3460003170,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-02-15T08:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":6706028599,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-11-22T08:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":10918623672,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/The Dragon Prince","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":350123,"tvRageId":0,"tvMazeId":37675,"firstAired":"2018-09-14T00:00:00Z","seriesType":"standard","cleanTitle":"thedragonprince","imdbId":"tt8688814","titleSlug":"the-dragon-prince","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Fantasy"],"tags":[],"added":"2018-10-13T03:52:02.904059Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":27,"episodeCount":27,"totalEpisodeCount":27,"sizeOnDisk":21084655441,"percentOfEpisodes":100.0},"id":76},"episodes":[{"seriesId":76,"episodeFileId":4090,"seasonNumber":1,"episodeNumber":1,"title":"Echoes of Thunder","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"As the human kingdom of Katolis braces for an attack by Moonshadow elves, King Harrow makes plans to send sons Callum and Ezran away to a safe place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6365},{"seriesId":76,"episodeFileId":4091,"seasonNumber":1,"episodeNumber":2,"title":"What is Done","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Determined to make up for her mistake, Rayla sneaks into the castle and corners Callum. Lord Viren offers the king a way to survive the attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6366},{"seriesId":76,"episodeFileId":4092,"seasonNumber":1,"episodeNumber":3,"title":"Moonrise","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"With night falling, Rayla and the princes race to share what they've found and stop the attack. But first they'll have to get past Claudia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6367},{"seriesId":76,"episodeFileId":4093,"seasonNumber":1,"episodeNumber":4,"title":"Bloodthirsty","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Excited about his newfound powers, Callum convinces the others to travel to the Banther Lodge for a magic cube. Katolis prepares to crown a new king.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6368},{"seriesId":76,"episodeFileId":4094,"seasonNumber":1,"episodeNumber":5,"title":"An Empty Throne","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Callum struggles to control his magic, General Amaya clashes with Lord Viren, and a trip down the river takes a hair-raising turn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6369},{"seriesId":76,"episodeFileId":4095,"seasonNumber":1,"episodeNumber":6,"title":"Through the Ice","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"After a run-in with a soldier, Rayla leads the princes to high ground. Viren gives Soren and Claudia secret orders as they set out on their mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6370},{"seriesId":76,"episodeFileId":4096,"seasonNumber":1,"episodeNumber":7,"title":"The Dagger and the Wolf","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"In a nearby village, Callum and Ezran seek help for the egg while Rayla hunts down a magic blade. Claudia collects ingredients for a tracking spell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6371},{"seriesId":76,"episodeFileId":4097,"seasonNumber":1,"episodeNumber":8,"title":"Cursed Caldera","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Ellis leads the friends to the Cursed Caldera but warns it's crawling with nasty monsters. Viren tries to force Runaan to talk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6372},{"seriesId":76,"episodeFileId":4098,"seasonNumber":1,"episodeNumber":9,"title":"Wonderstorm","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Ezran, Callum and Rayla each put their special talents to use as they make their way up the mountain in a desperate bid to save the egg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6373},{"seriesId":76,"episodeFileId":6963,"seasonNumber":2,"episodeNumber":1,"title":"A Secret and a Spark","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Before marching on toward Xadia, Callum begs Lujanne for a magic lesson, and Ezran tries to teach the dragon prince to fly. But danger is closing in.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10663},{"seriesId":76,"episodeFileId":6964,"seasonNumber":2,"episodeNumber":2,"title":"Half Moon Lies","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"After a fierce showdown with Rayla, Soren and Claudia argue about the best way to deal with the princes. Rayla worries she's kept a secret too long.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":10664},{"seriesId":76,"episodeFileId":6965,"seasonNumber":2,"episodeNumber":3,"title":"Smoke and Mirrors","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Callum searches for a way to tell Ezran the sad news, and Rayla sets a trap for Claudia and Soren. Viren watches a mysterious figure in the mirror.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":10665},{"seriesId":76,"episodeFileId":6966,"seasonNumber":2,"episodeNumber":4,"title":"Voyage of the Ruthless","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"After saying goodbye to Phoe-Phoe, the gang teams up with a pirate to cross a bay, where Callum tries to forge a connection with the sky arcanum.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":10666},{"seriesId":76,"episodeFileId":6967,"seasonNumber":2,"episodeNumber":5,"title":"Breaking the Seal","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"At the summit of the five kingdoms, Viren fights to win the support of a young queen. Flashbacks reveal a key moment from King Harrow's reign.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":10667},{"seriesId":76,"episodeFileId":6968,"seasonNumber":2,"episodeNumber":6,"title":"Heart of a Titan","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"The attack on the Magma Titan has devastating consequences for two kingdoms. In his letter, Harrow shares a lie, a secret and a wish for the princes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":10668},{"seriesId":76,"episodeFileId":6969,"seasonNumber":2,"episodeNumber":7,"title":"Fire and Fury","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"When Soren picks a fight with a dragon, chaos breaks out -- and Rayla faces a difficult decision. A defeated Viren returns to the figure in the mirror.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":10669},{"seriesId":76,"episodeFileId":6970,"seasonNumber":2,"episodeNumber":8,"title":"The Book of Destiny","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Callum pays a price for dabbling in dark magic. Claudia searches desperately for a way to help Soren, and Ezran makes a heartbreaking discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":10670},{"seriesId":76,"episodeFileId":6971,"seasonNumber":2,"episodeNumber":9,"title":"Breathe","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"After using his gift to help Claudia, Ezran makes an important decision about the quest. Callum wakes up with a new understanding of primal magic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":10671},{"seriesId":76,"episodeFileId":10249,"seasonNumber":3,"episodeNumber":1,"title":"Sol Regem","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"To cross into Xadia, Rayla and Callum must find a way past a fearsome dragon who was blinded in a battle with a human.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":14521},{"seriesId":76,"episodeFileId":10250,"seasonNumber":3,"episodeNumber":2,"title":"The Crown","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"At his first High Council meeting, King Ezran faces a flurry of difficult decisions. Rayla guides Callum through a wonderland of magical creatures.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":15579},{"seriesId":76,"episodeFileId":10251,"seasonNumber":3,"episodeNumber":3,"title":"Ghost","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"Rayla returns home to an alarming discovery, the Sunfire elves decide Amaya's fate, and Claudia confronts her father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":15580},{"seriesId":76,"episodeFileId":10252,"seasonNumber":3,"episodeNumber":4,"title":"The Midnight Desert","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"A mysterious stranger offers Rayla, Callum and Zym a ride across the Midnight Desert. With Katolis in danger, Ezran makes a startling announcement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":15581},{"seriesId":76,"episodeFileId":10253,"seasonNumber":3,"episodeNumber":5,"title":"Heroes and Masterminds","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"Rayla and Callum race across the desert to find Nyx. As Katolis prepares for war, Ezran gets help from an unlikely source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":15582},{"seriesId":76,"episodeFileId":10254,"seasonNumber":3,"episodeNumber":6,"title":"Thunderfall","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"On the march to Xadia, Viren reveals how Avizandum, the Dragon King, met his end. Phoe-Phoe takes Ezran on an epic journey.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":15583},{"seriesId":76,"episodeFileId":10255,"seasonNumber":3,"episodeNumber":7,"title":"Hearts of Cinder","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"As Team Zym begins the steep climb up to the Dragon Queen's lair, Viren and Aaravos play a nasty trick on the Sunfire elves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":15584},{"seriesId":76,"episodeFileId":10256,"seasonNumber":3,"episodeNumber":8,"title":"Dragonguard","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"With Viren's glowing army closing in on the Storm Spire, Rayla, Callum and friends must decide whether to flee to safety or stay and fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":15585},{"seriesId":76,"episodeFileId":10257,"seasonNumber":3,"episodeNumber":9,"title":"The Final Battle","airDate":"2019-11-22","airDateUtc":"2019-11-22T08:00:00Z","overview":"Determined to save the Dragon Prince at any cost, the friends brace for a fiery showdown with Viren -- who still has a few surprises up his sleeve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":15586}],"episodeFile":[{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Echoes of Thunder-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E01.Echoes of Thunder-WEBDL-1080p.mkv","size":338886000,"dateAdded":"2018-10-13T08:40:14.307572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1380783,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4090},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E02.What is Done-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E02.What is Done-WEBDL-1080p.mkv","size":390509139,"dateAdded":"2018-10-13T08:41:28.493836Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1382685,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:40","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4091},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Moonrise-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E03.Moonrise-WEBDL-1080p.mkv","size":395508808,"dateAdded":"2018-10-13T08:42:13.223115Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1382766,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:00","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4092},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Bloodthirsty-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E04.Bloodthirsty-WEBDL-1080p.mkv","size":364487665,"dateAdded":"2018-10-13T08:43:41.719391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1382626,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:28","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4093},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E05.An Empty Throne-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E05.An Empty Throne-WEBDL-1080p.mkv","size":408544837,"dateAdded":"2018-10-13T08:44:25.338869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1383773,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:50","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4094},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Through the Ice-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E06.Through the Ice-WEBDL-1080p.mkv","size":396325892,"dateAdded":"2018-10-13T08:45:20.84016Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1383703,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:02","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4095},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Dagger and the Wolf-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E07.The Dagger and the Wolf-WEBDL-1080p.mkv","size":360773337,"dateAdded":"2018-10-13T08:47:19.784538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1381908,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:12","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4096},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Cursed Caldera-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E08.Cursed Caldera-WEBDL-1080p.mkv","size":393337865,"dateAdded":"2018-10-13T08:48:46.754717Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1381354,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:52","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4097},{"seriesId":76,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Wonderstorm-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 01\/S01E09.Wonderstorm-WEBDL-1080p.mkv","size":411629627,"dateAdded":"2018-10-13T08:51:56.656359Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1382151,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"27:04","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ J"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4098},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E01.A Secret and a Spark-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E01.A Secret and a Spark-WEBDL-1080p.mkv","size":740939707,"dateAdded":"2019-02-18T20:19:23.82682Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:04","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6963},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Half Moon Lies-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E02.Half Moon Lies-WEBDL-1080p.mkv","size":674585141,"dateAdded":"2019-02-18T20:19:23.917269Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:24","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6964},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Smoke and Mirrors-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E03.Smoke and Mirrors-WEBDL-1080p.mkv","size":721012701,"dateAdded":"2019-02-18T20:19:24.01605Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:10","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6965},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Voyage of the Ruthless-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E04.Voyage of the Ruthless-WEBDL-1080p.mkv","size":939655668,"dateAdded":"2019-02-18T20:19:24.081269Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:42","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6966},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Breaking the Seal-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E05.Breaking the Seal-WEBDL-1080p.mkv","size":643894992,"dateAdded":"2019-02-18T20:19:24.150678Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:14","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6967},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Heart of a Titan-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E06.Heart of a Titan-WEBDL-1080p.mkv","size":685151676,"dateAdded":"2019-02-18T20:19:24.224604Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:48","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6968},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Fire and Fury-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E07.Fire and Fury-WEBDL-1080p.mkv","size":767257392,"dateAdded":"2019-02-18T20:19:24.314382Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:44","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6969},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Book of Destiny-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E08.The Book of Destiny-WEBDL-1080p.mkv","size":793705017,"dateAdded":"2019-02-18T20:19:24.405941Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:36","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6970},{"seriesId":76,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Breathe-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 02\/S02E09.Breathe-WEBDL-1080p.mkv","size":739826305,"dateAdded":"2019-02-18T20:19:24.499882Z","releaseGroup":"strife","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:48","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Indonesian \/ Italian \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Russian \/ Spanish \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6971},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Sol Regem-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E01.Sol Regem-WEBDL-1080p.mkv","size":1164233136,"dateAdded":"2019-11-22T10:04:42.644797Z","sceneName":"The.Dragon.Prince.S03E01.Sol.Regem.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10249},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Crown-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E02.The Crown-WEBDL-1080p.mkv","size":1035444911,"dateAdded":"2019-11-22T10:04:46.385718Z","sceneName":"The.Dragon.Prince.S03E02.The.Crown.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10250},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Ghost-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E03.Ghost-WEBDL-1080p.mkv","size":1107931645,"dateAdded":"2019-11-22T10:04:52.019287Z","sceneName":"The.Dragon.Prince.S03E03.Ghost.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10251},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Midnight Desert-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E04.The Midnight Desert-WEBDL-1080p.mkv","size":994499097,"dateAdded":"2019-11-22T10:04:59.171852Z","sceneName":"The.Dragon.Prince.S03E04.The.Midnight.Desert.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10252},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Heroes and Masterminds-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E05.Heroes and Masterminds-WEBDL-1080p.mkv","size":1213516886,"dateAdded":"2019-11-22T10:05:07.823029Z","sceneName":"The.Dragon.Prince.S03E05.Heroes.and.Masterminds.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10253},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Thunderfall-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E06.Thunderfall-WEBDL-1080p.mkv","size":1500756838,"dateAdded":"2019-11-22T10:05:17.710923Z","sceneName":"The.Dragon.Prince.S03E06.Thunderfall.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10254},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Hearts of Cinder-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E07.Hearts of Cinder-WEBDL-1080p.mkv","size":1151237447,"dateAdded":"2019-11-22T10:05:30.916046Z","sceneName":"The.Dragon.Prince.S03E07.Hearts.of.Cinder.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10255},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Dragonguard-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E08.Dragonguard-WEBDL-1080p.mkv","size":1066678881,"dateAdded":"2019-11-22T10:05:39.143308Z","sceneName":"The.Dragon.Prince.S03E08.Dragonguard.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10256},{"seriesId":76,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Final Battle-WEBDL-1080p.mkv","path":"\/tv\/The Dragon Prince\/Season 03\/S03E09.The Final Battle-WEBDL-1080p.mkv","size":1684324831,"dateAdded":"2019-11-22T10:05:47.459225Z","sceneName":"The.Dragon.Prince.S03E09.The.Final.Battle.1080p.NF.WEB-DL.DD+5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Hindi \/ English \/ French \/ \/ Polish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"33:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10257}],"queue":[]},"66":{"series":{"title":"Better Call Saul","alternateTitles":[],"sortTitle":"better call saul","status":"continuing","ended":false,"overview":"See the rise of Jimmy McGill, a small-time lawyer searching for his destiny, but hustling to make ends meet. Working alongside, and often against Jimmy, is \u2018fixer\u2019 Mike Erhmantraut. The series tracks Jimmy's evolution into Saul Goodman, the man who puts the word \u2018criminal\u2019 in \u2018criminal lawyer\u2019.","previousAiring":"2020-04-21T01:00:00Z","network":"AMC","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/61\/banner.jpg?lastWrite=637100123618478820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/273181-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/61\/poster.jpg?lastWrite=637100123620598780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/273181-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/61\/fanart.jpg?lastWrite=637143852150405110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/273181-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":18,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-04-07T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":18115373802,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-04-19T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":42655964911,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-06-20T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":34855138761,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2018-10-09T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":40083504001,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2020-04-21T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":59412811250,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Better Call Saul","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":273181,"tvRageId":37780,"tvMazeId":618,"firstAired":"2015-02-08T00:00:00Z","seriesType":"standard","cleanTitle":"bettercallsaul","imdbId":"tt3032476","titleSlug":"better-call-saul","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama"],"tags":[],"added":"2018-07-04T20:28:39.7348872Z","ratings":{"votes":3686,"value":8.9},"statistics":{"seasonCount":5,"episodeFileCount":50,"episodeCount":50,"totalEpisodeCount":68,"sizeOnDisk":195122792725,"percentOfEpisodes":100.0},"id":61},"episodes":[{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Music Video","airDate":"2015-01-05","airDateUtc":"2015-01-06T02:00:00Z","overview":"Check out the music video for Better Call Saul!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":945},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"In the Studio","airDate":"2015-01-05","airDateUtc":"2015-01-06T02:47:00Z","overview":"A very rare inside-the-studio look at the creation of the song \"Better Call Saul,\" performed by Junior Brown and written by the show creators Vince Gilligan and Peter Gould.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":946},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Day One","airDate":"2015-01-06","airDateUtc":"2015-01-07T02:00:00Z","overview":"An inside look at day one on the set of Better Call Saul!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":944},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Characters of Better Call Saul","airDate":"2015-02-02","airDateUtc":"2015-02-03T02:00:00Z","overview":"The cast and crew introduce the characters of the new series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":947},{"seriesId":61,"episodeFileId":722,"seasonNumber":1,"episodeNumber":1,"title":"Uno","airDate":"2015-02-08","airDateUtc":"2015-02-09T02:00:00Z","overview":"Jimmy works his magic in the courtroom. Unexpected inspiration leads him to an unconventional pursuit of potential clients.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":952},{"seriesId":61,"episodeFileId":726,"seasonNumber":1,"episodeNumber":2,"title":"Mijo","airDate":"2015-02-09","airDateUtc":"2015-02-10T02:00:00Z","overview":"As his troubles escalate to a boiling point, Jimmy finds himself in dire straits. An act of carelessness puts Chuck at risk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":953},{"seriesId":61,"episodeFileId":730,"seasonNumber":1,"episodeNumber":3,"title":"Nacho","airDate":"2015-02-16","airDateUtc":"2015-02-17T02:00:00Z","overview":"Jimmy pulls out all the stops to prove that his dangerous client is innocent, even though it causes some friction with Kim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":954},{"seriesId":61,"episodeFileId":733,"seasonNumber":1,"episodeNumber":4,"title":"Hero","airDate":"2015-02-23","airDateUtc":"2015-02-24T02:00:00Z","overview":"Jimmy conjures up a bold plan to solicit new clients, but has to face the consequences when the scheme strains his relationships with a rival firm.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":955},{"seriesId":61,"episodeFileId":738,"seasonNumber":1,"episodeNumber":5,"title":"Alpine Shepherd Boy","airDate":"2015-03-02","airDateUtc":"2015-03-03T02:00:00Z","overview":"When his efforts to drum up new business are interrupted by alarming news, Jimmy is pressured to make a difficult choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":956},{"seriesId":61,"episodeFileId":742,"seasonNumber":1,"episodeNumber":6,"title":"Five-O","airDate":"2015-03-09","airDateUtc":"2015-03-10T01:00:00Z","overview":"Mike's tragic past comes back to haunt him, and he's forced to seek help from an unusual source. Meanwhile, Jimmy's moral compass is put to the test.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":957},{"seriesId":61,"episodeFileId":746,"seasonNumber":1,"episodeNumber":7,"title":"Bingo","airDate":"2015-03-16","airDateUtc":"2015-03-17T01:00:00Z","overview":"Jimmy meets with potential new clients. When given the opportunity to do the right thing, Jimmy cashes in a favor from an unlikely ally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":958},{"seriesId":61,"episodeFileId":750,"seasonNumber":1,"episodeNumber":8,"title":"RICO","airDate":"2015-03-23","airDateUtc":"2015-03-24T01:00:00Z","overview":"Jimmy shows Chuck that he's willing to do almost anything to win a case, even if it means getting his hands dirty.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":959},{"seriesId":61,"episodeFileId":754,"seasonNumber":1,"episodeNumber":9,"title":"Pimento","airDate":"2015-03-30","airDateUtc":"2015-03-31T01:00:00Z","overview":"Chuck urges Jimmy to accept a harsh truth. Meanwhile, a deal threatens to go off the rails when Mike's ability to complete a job is called into question.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":960},{"seriesId":61,"episodeFileId":758,"seasonNumber":1,"episodeNumber":10,"title":"Marco","airDate":"2015-04-06","airDateUtc":"2015-04-07T01:00:00Z","overview":"In the aftermath of recent events, Jimmy seizes an opportunity to reconnect with an old friend. Chuck adjusts to a new way of life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":961},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Talking Saul on Switch","airDate":"2016-02-15","airDateUtc":"2016-02-16T02:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":948},{"seriesId":61,"episodeFileId":719,"seasonNumber":2,"episodeNumber":1,"title":"Switch","airDate":"2016-02-15","airDateUtc":"2016-02-16T02:00:00Z","overview":"Jimmy and Kim's relationship takes a new turn. Mike decides it's for the best to sever his affiliation with an unrestrained associate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":962},{"seriesId":61,"episodeFileId":723,"seasonNumber":2,"episodeNumber":2,"title":"Cobbler","airDate":"2016-02-22","airDateUtc":"2016-02-23T02:00:00Z","overview":"To keep a potentially messy situation from unraveling, Mike brokers a deal. Jimmy works to exonerate an eccentric client.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":963},{"seriesId":61,"episodeFileId":727,"seasonNumber":2,"episodeNumber":3,"title":"Amarillo","airDate":"2016-02-29","airDateUtc":"2016-03-01T02:00:00Z","overview":"Jimmy's client outreach efforts thrive, and he exhibits new heights of showmanship. Mike is perplexed by daughter-in-law Stacey's troubling news.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":964},{"seriesId":61,"episodeFileId":731,"seasonNumber":2,"episodeNumber":4,"title":"Gloves Off","airDate":"2016-03-07","airDateUtc":"2016-03-08T02:00:00Z","overview":"Jimmy's actions unexpectedly create waves for Kim. Mike cautiously weighs a lucrative proposal that might bring about dire consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":965},{"seriesId":61,"episodeFileId":735,"seasonNumber":2,"episodeNumber":5,"title":"Rebecca","airDate":"2016-03-14","airDateUtc":"2016-03-15T01:00:00Z","overview":"Jimmy becomes frustrated with his restrictive work environment. Kim pulls out all the stops to dig herself out of a seemingly bottomless hole at HHM.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":966},{"seriesId":61,"episodeFileId":739,"seasonNumber":2,"episodeNumber":6,"title":"Bali Ha'i","airDate":"2016-03-21","airDateUtc":"2016-03-22T01:00:00Z","overview":"Jimmy finds comfort in familiarity; Kim receives a life-changing proposal; when he is threatened, Mike finds himself pushed to the limit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":967},{"seriesId":61,"episodeFileId":743,"seasonNumber":2,"episodeNumber":7,"title":"Inflatable","airDate":"2016-03-28","airDateUtc":"2016-03-29T01:00:00Z","overview":"When Mike's hand is forced, he can no longer hide his frustration; he and Jimmy work together to keep the peace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":968},{"seriesId":61,"episodeFileId":747,"seasonNumber":2,"episodeNumber":8,"title":"Fifi","airDate":"2016-04-04","airDateUtc":"2016-04-05T01:00:00Z","overview":"Mike aims to settle the score with an enemy; an unexpected opportunity presents itself to Jimmy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":969},{"seriesId":61,"episodeFileId":751,"seasonNumber":2,"episodeNumber":9,"title":"Nailed","airDate":"2016-04-11","airDateUtc":"2016-04-12T01:00:00Z","overview":"Mike takes a methodical approach to his mission; someone questions Chuck's capabilities; Jimmy faces a personal dilemma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":970},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Talking Saul on Klick","airDate":"2016-04-18","airDateUtc":"2016-04-19T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":949},{"seriesId":61,"episodeFileId":755,"seasonNumber":2,"episodeNumber":10,"title":"Klick","airDate":"2016-04-18","airDateUtc":"2016-04-19T01:00:00Z","overview":"Jimmy must make a hard choice; Mike takes control of matters; Hamlin delivers shocking news.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":971},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Talking Saul on Mabel","airDate":"2017-04-10","airDateUtc":"2017-04-11T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":950},{"seriesId":61,"episodeFileId":720,"seasonNumber":3,"episodeNumber":1,"title":"Mabel","airDate":"2017-04-10","airDateUtc":"2017-04-11T01:00:00Z","overview":"Jimmy and Chuck's relationship deteriorates. Kim feels the pressure of running her own firm. Mike investigates the note left on his car.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":972},{"seriesId":61,"episodeFileId":724,"seasonNumber":3,"episodeNumber":2,"title":"Witness","airDate":"2017-04-17","airDateUtc":"2017-04-18T01:00:00Z","overview":"Jimmy and Kim hire an assistant. Mike seeks out a mysterious acquaintance. Chuck uses the law to gain an advantage over Jimmy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":973},{"seriesId":61,"episodeFileId":728,"seasonNumber":3,"episodeNumber":3,"title":"Sunk Costs","airDate":"2017-04-24","airDateUtc":"2017-04-25T01:00:00Z","overview":"Jimmy decides to represent a new client to Kim's dismay. Mike meets a formidable ally who gives a most tempting offer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":974},{"seriesId":61,"episodeFileId":734,"seasonNumber":3,"episodeNumber":4,"title":"Sabrosito","airDate":"2017-05-01","airDateUtc":"2017-05-02T01:00:00Z","overview":"Jimmy asks a favor of Mike. New complications disrupt Salamancas' business. Chuck and Jimmy struggle with a compromise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":975},{"seriesId":61,"episodeFileId":736,"seasonNumber":3,"episodeNumber":5,"title":"Chicanery","airDate":"2017-05-08","airDateUtc":"2017-05-09T01:00:00Z","overview":"Kim and Jimmy face off with an adversary. Jimmy looks to Chuck's past to secure his future. Jimmy loses an ally and gains another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":976},{"seriesId":61,"episodeFileId":740,"seasonNumber":3,"episodeNumber":6,"title":"Off Brand","airDate":"2017-05-15","airDateUtc":"2017-05-16T01:00:00Z","overview":"Jimmy has a new endeavor. Chuck pushes himself to the limit. Nacho finds himself in a power struggle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":977},{"seriesId":61,"episodeFileId":744,"seasonNumber":3,"episodeNumber":7,"title":"Expenses","airDate":"2017-05-22","airDateUtc":"2017-05-23T01:00:00Z","overview":"Jimmy tries to settle debts. Nacho reunites with an acquaintance. Mike helps Stacey with a project and makes a connection.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":978},{"seriesId":61,"episodeFileId":748,"seasonNumber":3,"episodeNumber":8,"title":"Slip","airDate":"2017-06-05","airDateUtc":"2017-06-06T01:00:00Z","overview":"Jimmy is pushed to desperate measures. Nacho picks up a skill. Mike explores an alliance. Kim stands up to Hamlin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":979},{"seriesId":61,"episodeFileId":752,"seasonNumber":3,"episodeNumber":9,"title":"Fall","airDate":"2017-06-12","airDateUtc":"2017-06-13T01:00:00Z","overview":"Jimmy visits a friend and takes up an old pastime. Chuck and Hamlin argue over the future of the firm. Kim faces challenges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":980},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Talking Saul on Lantern","airDate":"2017-06-19","airDateUtc":"2017-06-20T01:00:00Z","overview":"Peter Gould, Patrick Fabian, Michael Mando and Michael McKean discuss the Better Call Saul episode, \"Lantern.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":951},{"seriesId":61,"episodeFileId":756,"seasonNumber":3,"episodeNumber":10,"title":"Lantern","airDate":"2017-06-19","airDateUtc":"2017-06-20T01:00:00Z","overview":"Kim takes time off. Jimmy tries to make amends. Nacho gambles with his future. Hamlin pushes Chuck to make a decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":981},{"seriesId":61,"episodeFileId":7384,"seasonNumber":4,"episodeNumber":1,"title":"Smoke","airDate":"2018-08-06","airDateUtc":"2018-08-07T01:00:00Z","overview":"Jimmy struggles to cope with Chuck's tragic death; Mike ponders his role at Madrigal; Howard makes a startling confession.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":982},{"seriesId":61,"episodeFileId":7385,"seasonNumber":4,"episodeNumber":2,"title":"Breathe","airDate":"2018-08-13","airDateUtc":"2018-08-14T01:00:00Z","overview":"Jimmy seeks new employment; Gus navigates the fallout from Hector's collapse; Kim endeavors to support Jimmy in the wake of Chuck's death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":983},{"seriesId":61,"episodeFileId":7386,"seasonNumber":4,"episodeNumber":3,"title":"Something Beautiful","airDate":"2018-08-20","airDateUtc":"2018-08-21T01:00:00Z","overview":"Jimmy puts a risky plan into motion; as alliances shift, Nacho finds himself in the crosshairs; Kim contemplates her future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":984},{"seriesId":61,"episodeFileId":7387,"seasonNumber":4,"episodeNumber":4,"title":"Talk","airDate":"2018-08-27","airDateUtc":"2018-08-28T01:00:00Z","overview":"A restless Jimmy embarks on a new endeavor while Mike burns bridges; Kim pursues her bliss; Nacho tries to survive a turf war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":985},{"seriesId":61,"episodeFileId":7388,"seasonNumber":4,"episodeNumber":5,"title":"Quite a Ride","airDate":"2018-09-03","airDateUtc":"2018-09-04T01:00:00Z","overview":"Jimmy identifies a new market for his talents; Mike vets a potential partnership; Kim drives a hard bargain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":986},{"seriesId":61,"episodeFileId":7389,"seasonNumber":4,"episodeNumber":6,"title":"Pi\u00f1ata","airDate":"2018-09-10","airDateUtc":"2018-09-11T01:00:00Z","overview":"While Jimmy daydreams about reconstituting Wexler-McGill, Kim sets out to secure her own future; Mike puts a plan into motion for Gus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":987},{"seriesId":61,"episodeFileId":7390,"seasonNumber":4,"episodeNumber":7,"title":"Something Stupid","airDate":"2018-09-17","airDateUtc":"2018-09-18T01:00:00Z","overview":"Jimmy expands his business, but runs into a problem that only Kim can solve; Gus intervenes in Hector's medical care; Mike deals with a setback.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":988},{"seriesId":61,"episodeFileId":7391,"seasonNumber":4,"episodeNumber":8,"title":"Coushatta","airDate":"2018-09-24","airDateUtc":"2018-09-25T01:00:00Z","overview":"Jimmy goes to great lengths to right a wrong, as Kim pulls out all the stops for a case; Mike lets his team blow off steam; Nacho receives a visitor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":989},{"seriesId":61,"episodeFileId":7392,"seasonNumber":4,"episodeNumber":9,"title":"Wiedersehen","airDate":"2018-10-01","airDateUtc":"2018-10-02T01:00:00Z","overview":"Jimmy and Kim unburden themselves, risking their relationship in the process; Nacho is forced to make the rounds with Lalo; Mike has cause to worry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":990},{"seriesId":61,"episodeFileId":7393,"seasonNumber":4,"episodeNumber":10,"title":"Winner","airDate":"2018-10-08","airDateUtc":"2018-10-09T01:00:00Z","overview":"Jimmy turns the page on his reputation; Lalo tracks a loose end in Gus' operation; Mike is forced to make a difficult decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":991},{"seriesId":61,"episodeFileId":16467,"seasonNumber":5,"episodeNumber":1,"title":"Magic Man","airDate":"2020-02-23","airDateUtc":"2020-02-24T02:00:00Z","overview":"Now doing business as Saul Goodman, Jimmy unveils an unorthodox strategy for client development that tests Kim's tolerance of his new legal persona. Lalo searches for the mysterious Michael, only to discover a problem within his own operation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":15588},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Ethics Training - Marketing","airDate":"2020-02-23","airDateUtc":"2020-02-24T02:00:00Z","overview":"In the first installment of a new continuing legal education course, Schweikart & Cokely Senior Partner Kim Wexler details the importance of properly (and legally) branding your practice and attracting new clients.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20297},{"seriesId":61,"episodeFileId":16468,"seasonNumber":5,"episodeNumber":2,"title":"50% Off","airDate":"2020-02-24","airDateUtc":"2020-02-25T02:00:00Z","overview":"Jimmy's promotional stunt has unintended consequences. Nacho takes extreme measures to earn Lalo's trust. Saul is a success at the courthouse but still has yet to win Kim over. Simmering with rage and self-loathing, Mike loses his temper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":15589},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Ethics Training - Communication","airDate":"2020-02-24","airDateUtc":"2020-02-25T02:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20298},{"seriesId":61,"episodeFileId":16469,"seasonNumber":5,"episodeNumber":3,"title":"The Guy for This","airDate":"2020-03-02","airDateUtc":"2020-03-03T02:00:00Z","overview":"Jimmy's business enters uncharted territory. Kim's confidence is tested when she's faced with a legal problem only she can solve. Nacho navigates increased pressure from Gus. Mike continues to spiral.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":17083},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Ethics Training - Civility","airDate":"2020-03-02","airDateUtc":"2020-03-03T02:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20299},{"seriesId":61,"episodeFileId":16470,"seasonNumber":5,"episodeNumber":4,"title":"Namaste","airDate":"2020-03-09","airDateUtc":"2020-03-10T01:00:00Z","overview":"As Jimmy doubles down on Saul Goodman, a deeply conflicted Kim brings him an interesting proposition. Gus makes a sacrifice in order to play the long game. Mike attempts to smooth things over with his family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":17084},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Ethics Training - Self Care","airDate":"2020-03-09","airDateUtc":"2020-03-10T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20300},{"seriesId":61,"episodeFileId":16471,"seasonNumber":5,"episodeNumber":5,"title":"Dedicado a Max","airDate":"2020-03-16","airDateUtc":"2020-03-17T01:00:00Z","overview":"Mike takes an impromptu trip out of town. As she and Jimmy grow closer over their campaign to help a client, Kim makes a surprising call.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":17097},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Ethics Training - Strategic Alliances","airDate":"2020-03-16","airDateUtc":"2020-03-17T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20301},{"seriesId":61,"episodeFileId":16472,"seasonNumber":5,"episodeNumber":6,"title":"Wexler v. Goodman","airDate":"2020-03-23","airDateUtc":"2020-03-24T01:00:00Z","overview":"Kim tries to pump the brakes on Jimmy's latest scheme, but it may be too late to stop Saul. Mike turns the heat up on Lalo. Nacho attempts to enlist support from above.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":17098},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Ethics Training - Conflicts of Interest","airDate":"2020-03-23","airDateUtc":"2020-03-24T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20302},{"seriesId":61,"episodeFileId":16473,"seasonNumber":5,"episodeNumber":7,"title":"JMM","airDate":"2020-03-30","airDateUtc":"2020-03-31T01:00:00Z","overview":"Jimmy and Kim build a legal firewall with help from Huell. Kim sets things straight with her clients as Jimmy is compromised by his. Gus calms troubled waters in service of his plot to build an empire. Mike does damage control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":17099},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Ethics Training - Marital Privilege","airDate":"2020-03-30","airDateUtc":"2020-03-31T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20303},{"seriesId":61,"episodeFileId":16474,"seasonNumber":5,"episodeNumber":8,"title":"Bagman","airDate":"2020-04-06","airDateUtc":"2020-04-07T01:00:00Z","overview":"When a simple errand for a client goes sideways, Jimmy is pushed to the limit. Mike takes measures to contain the wrath of the cartel. Lalo gets an unexpected visitor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":17100},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Ethics Training - Money","airDate":"2020-04-06","airDateUtc":"2020-04-07T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20304},{"seriesId":61,"episodeFileId":16475,"seasonNumber":5,"episodeNumber":9,"title":"Bad Choice Road","airDate":"2020-04-13","airDateUtc":"2020-04-14T01:00:00Z","overview":"In the wake of Jimmy's traumatic misadventure, Kim takes stock of what is important. Jimmy attempts to return to business as usual, but it's more difficult than anticipated. Gus and Mike set a plan in motion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":17101},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Ethics Training - Client Privilege","airDate":"2020-04-13","airDateUtc":"2020-04-14T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20305},{"seriesId":61,"episodeFileId":16476,"seasonNumber":5,"episodeNumber":10,"title":"Something Unforgivable","airDate":"2020-04-20","airDateUtc":"2020-04-21T01:00:00Z","overview":"Jimmy and Kim make a sideways move that takes a serious turn. Nacho gets closer to the cartel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":17102},{"seriesId":61,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Ethics Training - Decision-Making","airDate":"2020-04-20","airDateUtc":"2020-04-21T01:00:00Z","overview":"Saul Goodman Presents Ethics Training - AMC Short","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20306}],"episodeFile":[{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Switch-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E01.Switch-Bluray-1080p.mkv","size":4266545873,"dateAdded":"2018-10-10T21:25:45.915064Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10600000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:58","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":719},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Mabel-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E01.Mabel-Bluray-1080p.mkv","size":4260695245,"dateAdded":"2018-10-10T21:25:45.941438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9424000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:57","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":720},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Uno-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E01.Uno-WEBDL-1080p.mkv","size":2152644141,"dateAdded":"2018-10-10T21:25:45.994844Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4917928,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"53:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":722},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Cobbler-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E02.Cobbler-Bluray-1080p.mkv","size":4265995865,"dateAdded":"2018-10-10T21:25:46.020908Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:21","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":723},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Witness-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E02.Witness-Bluray-1080p.mkv","size":4261829859,"dateAdded":"2018-10-10T21:25:46.047217Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9548000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":724},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Mijo-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E02.Mijo-WEBDL-1080p.mkv","size":1967183421,"dateAdded":"2018-10-10T21:25:46.100339Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5180190,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"46:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":726},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Amarillo-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E03.Amarillo-Bluray-1080p.mkv","size":4266037237,"dateAdded":"2018-10-10T21:25:46.126252Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11979000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":727},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Sunk Costs-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E03.Sunk Costs-Bluray-1080p.mkv","size":3518590503,"dateAdded":"2018-10-10T21:25:46.158348Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8864000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:13","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":728},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Nacho-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E03.Nacho-WEBDL-1080p.mkv","size":1888482689,"dateAdded":"2018-10-10T21:25:46.21285Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4854303,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"47:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":730},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Gloves Off-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E04.Gloves Off-Bluray-1080p.mkv","size":4266055579,"dateAdded":"2018-10-10T21:25:46.239656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11651000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":731},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Hero-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E04.Hero-WEBDL-1080p.mkv","size":2016332063,"dateAdded":"2018-10-10T21:25:46.292556Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5228184,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"46:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":733},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Sabrosito-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E04.Sabrosito-WEBDL-1080p.mkv","size":1989236904,"dateAdded":"2018-10-10T21:25:46.319206Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5104017,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"47:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":734},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Rebecca-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E05.Rebecca-Bluray-1080p.mkv","size":4264095972,"dateAdded":"2018-10-10T21:25:46.345747Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10863000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:58","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":735},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Chicanery-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E05.Chicanery-WEBDL-1080p.mkv","size":2852920205,"dateAdded":"2018-10-10T21:25:46.374386Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7322189,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":736},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Alpine Shepherd Boy-HDTV-2160p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E05.Alpine Shepherd Boy-HDTV-2160p.mkv","size":424583919,"dateAdded":"2018-10-10T21:25:46.428434Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":16,"name":"HDTV-2160p","source":"television","resolution":2160},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175378,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1103356,"videoCodec":"x265","videoFps":23.976,"resolution":"3840x2160","runTime":"44:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":738},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Bali Ha'i-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E06.Bali Ha'i-Bluray-1080p.mkv","size":4264008829,"dateAdded":"2018-10-10T21:25:46.454897Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10796000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:13","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":739},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Off Brand-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E06.Off Brand-WEBDL-1080p.mkv","size":2412546361,"dateAdded":"2018-10-10T21:25:46.481351Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6317868,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":740},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Five-O-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E06.Five-O-WEBDL-1080p.mkv","size":1648705046,"dateAdded":"2018-10-10T21:25:46.533679Z","releaseGroup":"O","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4701080,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"42:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":742},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Inflatable-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E07.Inflatable-Bluray-1080p.mkv","size":4265862412,"dateAdded":"2018-10-10T21:25:46.560044Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11965000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":743},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Expenses-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E07.Expenses-Bluray-1080p.mkv","size":4261715663,"dateAdded":"2018-10-10T21:25:46.587532Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9296000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":744},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Bingo-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E07.Bingo-WEBDL-1080p.mkv","size":1850975632,"dateAdded":"2018-10-10T21:25:46.639923Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4861080,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"47:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":746},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Fifi-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E08.Fifi-Bluray-1080p.mkv","size":4266451470,"dateAdded":"2018-10-10T21:25:46.666282Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10277000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":747},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Slip-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E08.Slip-Bluray-1080p.mkv","size":3518846963,"dateAdded":"2018-10-10T21:25:46.69317Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8109000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:46","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":748},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E08.RICO-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E08.RICO-WEBDL-1080p.mkv","size":1976622556,"dateAdded":"2018-10-10T21:25:46.74728Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5180516,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"47:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":750},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Nailed-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E09.Nailed-Bluray-1080p.mkv","size":4266261822,"dateAdded":"2018-10-10T21:25:46.773885Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10006000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":751},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Fall-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E09.Fall-Bluray-1080p.mkv","size":3517753457,"dateAdded":"2018-10-10T21:25:46.801927Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8047000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:04","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":752},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Pimento-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E09.Pimento-WEBDL-1080p.mkv","size":2059568761,"dateAdded":"2018-10-10T21:25:46.855119Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5413790,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"47:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":754},{"seriesId":61,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Klick-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 02\/S02E10.Klick-Bluray-1080p.mkv","size":4264649852,"dateAdded":"2018-10-10T21:25:46.881376Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10267000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:18","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":755},{"seriesId":61,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Lantern-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 03\/S03E10.Lantern-Bluray-1080p.mkv","size":4261003601,"dateAdded":"2018-10-10T21:25:46.907996Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8630000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:02","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":756},{"seriesId":61,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Marco-WEBDL-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 01\/S01E10.Marco-WEBDL-1080p.mkv","size":2130275574,"dateAdded":"2018-10-10T21:25:46.961727Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5375097,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"49:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":758},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Smoke-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E01.Smoke-Bluray-1080p.mkv","size":4262722078,"dateAdded":"2019-04-29T22:17:26.859192Z","sceneName":"better.call.saul.s04e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10253000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7384},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Breathe-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E02.Breathe-Bluray-1080p.mkv","size":3519742326,"dateAdded":"2019-04-29T22:17:51.877692Z","sceneName":"better.call.saul.s04e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8696000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7385},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Something Beautiful-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E03.Something Beautiful-Bluray-1080p.mkv","size":3518203996,"dateAdded":"2019-04-29T22:18:17.224596Z","sceneName":"better.call.saul.s04e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9603000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7386},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Talk-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E04.Talk-Bluray-1080p.mkv","size":3519082551,"dateAdded":"2019-04-29T22:18:39.549418Z","sceneName":"better.call.saul.s04e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8637000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7387},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Quite a Ride-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E05.Quite a Ride-Bluray-1080p.mkv","size":4262374311,"dateAdded":"2019-04-29T22:19:07.076287Z","sceneName":"better.call.saul.s04e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9329000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7388},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Pi\u00f1ata-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E06.Pi\u00f1ata-Bluray-1080p.mkv","size":4264522572,"dateAdded":"2019-04-29T22:19:33.55557Z","sceneName":"better.call.saul.s04e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10528000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7389},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Something Stupid-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E07.Something Stupid-Bluray-1080p.mkv","size":3517748876,"dateAdded":"2019-04-29T22:20:02.895754Z","sceneName":"better.call.saul.s04e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9869000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7390},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Coushatta-Bluray-1080p Proper.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E08.Coushatta-Bluray-1080p Proper.mkv","size":4262787114,"dateAdded":"2019-04-29T22:20:26.499845Z","sceneName":"better.call.saul.s04e08.repack.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9319000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7391},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Wiedersehen-Bluray-1080p Proper.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E09.Wiedersehen-Bluray-1080p Proper.mkv","size":4262888251,"dateAdded":"2019-04-29T22:20:58.793433Z","sceneName":"better.call.saul.s04e09.repack.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8826000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7392},{"seriesId":61,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Winner-Bluray-1080p Proper.mkv","path":"\/tv\/Better Call Saul\/Season 04\/S04E10.Winner-Bluray-1080p Proper.mkv","size":4693431926,"dateAdded":"2019-04-29T22:21:27.799616Z","sceneName":"better.call.saul.s04e10.repack.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8905000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7393},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Magic Man-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E01.Magic Man-Bluray-1080p.mkv","size":6713923099,"dateAdded":"2020-11-28T15:36:18.013552Z","sceneName":"Better.Call.Saul.S05E01.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2163053,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":13985481,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:25","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16467},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E02.50% Off-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E02.50% Off-Bluray-1080p.mkv","size":5715016990,"dateAdded":"2020-11-28T15:38:51.902098Z","sceneName":"Better.Call.Saul.S05E02.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2152811,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":14408046,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:13","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16468},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E03.The Guy for This-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E03.The Guy for This-Bluray-1080p.mkv","size":6220324166,"dateAdded":"2020-11-28T15:41:14.766756Z","sceneName":"Better.Call.Saul.S05E03.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2113673,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12889281,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:16","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16469},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Namaste-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E04.Namaste-Bluray-1080p.mkv","size":4721958940,"dateAdded":"2020-11-28T15:43:36.599647Z","sceneName":"Better.Call.Saul.S05E04.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2119933,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":11205823,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:13","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16470},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Dedicado a Max-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E05.Dedicado a Max-Bluray-1080p.mkv","size":5852793638,"dateAdded":"2020-11-28T15:45:46.495985Z","sceneName":"Better.Call.Saul.S05E05.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2110152,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":13108256,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:19","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16471},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Wexler v. Goodman-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E06.Wexler v. Goodman-Bluray-1080p.mkv","size":5884609424,"dateAdded":"2020-11-28T15:48:01.638765Z","sceneName":"Better.Call.Saul.S05E06.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2108098,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12839879,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:23","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16472},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E07.JMM-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E07.JMM-Bluray-1080p.mkv","size":5065413657,"dateAdded":"2020-11-28T15:50:17.708253Z","sceneName":"Better.Call.Saul.S05E07.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2106669,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":11772528,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:39","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16473},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Bagman-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E08.Bagman-Bluray-1080p.mkv","size":6015024910,"dateAdded":"2020-11-28T15:52:27.791416Z","sceneName":"Better.Call.Saul.S05E08.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2148448,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12414416,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:05","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16474},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Bad Choice Road-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E09.Bad Choice Road-Bluray-1080p.mkv","size":6656260638,"dateAdded":"2020-11-28T15:54:45.19606Z","sceneName":"Better.Call.Saul.S05E09.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2100403,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12550547,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:24","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16475},{"seriesId":61,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Something Unforgivable-Bluray-1080p.mkv","path":"\/tv\/Better Call Saul\/Season 05\/S05E10.Something Unforgivable-Bluray-1080p.mkv","size":6567485788,"dateAdded":"2020-11-28T15:57:08.132456Z","sceneName":"Better.Call.Saul.S05E10.1080p.BluRay.x264-ITSALLGOODMAN","releaseGroup":"ITSALLGOODMAN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2113980,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12201138,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:01","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16476}],"queue":[]},"74":{"series":{"title":"Stargate SG-1","alternateTitles":[],"sortTitle":"stargate sg 1","status":"ended","ended":true,"overview":"This sequel to the 1994 movie Stargate chronicles the further adventures of SGC (Stargate Command). It turned out that the Goa'uld Ra was only one of many alien System Lords who used the Stargates to conquer much of the universe. When Earth uncovers a working cartouche to decipher the coding system of their own Stargate, they find they can now travel anywhere. Earth's military sends out SG teams to explore new planets, find technology, and oppose the Goa'uld. Jack O'Neill and Daniel Jackson from the original movie are part of SG-1. They are joined by Sam Carter, a scientist, and Teal'c, a Jaffa who is convinced the Goa'uld are not gods.","previousAiring":"2007-06-23T01:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/56\/banner.jpg?lastWrite=636747176476702770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/72449-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/56\/poster.jpg?lastWrite=637103833475379690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/72449-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/56\/fanart.jpg?lastWrite=636747176475862790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/72449-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1998-03-07T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":48880210407,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1999-03-13T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":55018636429,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2000-03-11T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":56743444556,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2001-02-24T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":48471162562,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2002-05-18T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":45820655014,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2003-03-22T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":11183850112,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2004-03-20T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":10918925810,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2005-03-26T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":62013216743,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2006-03-11T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":67470998316,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2007-06-23T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":61753415554,"percentOfEpisodes":100.0}}],"year":1997,"path":"\/tv\/Stargate SG-1","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":72449,"tvRageId":5325,"tvMazeId":204,"firstAired":"1997-07-27T00:00:00Z","seriesType":"standard","cleanTitle":"stargatesg1","imdbId":"tt0118480","titleSlug":"stargate-sg-1","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Fantasy","Science Fiction"],"tags":[],"added":"2018-04-23T17:31:22.0156467Z","ratings":{"votes":11558,"value":9.3},"statistics":{"seasonCount":10,"episodeFileCount":214,"episodeCount":214,"totalEpisodeCount":222,"sizeOnDisk":468274515503,"percentOfEpisodes":100.0},"id":56},"episodes":[{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Stargate: The Movie","airDate":"1994-10-28","airDateUtc":"1994-10-29T01:00:00Z","overview":"An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4141},{"seriesId":56,"episodeFileId":17084,"seasonNumber":1,"episodeNumber":1,"title":"Children of the Gods (1)","airDate":"1997-07-27","airDateUtc":"1997-07-28T01:00:00Z","overview":"When powerful aliens come through Earth's Stargate, Colonel Jack O'Neill returns to Abydos to retrieve Daniel Jackson, who has discovered that the alien transit system includes much more than the two planets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4149},{"seriesId":56,"episodeFileId":17084,"seasonNumber":1,"episodeNumber":2,"title":"Children of the Gods (2)","airDate":"1997-07-27","airDateUtc":"1997-07-28T01:45:00Z","overview":"Colonel O'Neill, leading the new SG-1, track Apophis back to the planet Chulak to rescue Sha're and Skaara, and befriend one of Apophis' Jaffa guards.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4150},{"seriesId":56,"episodeFileId":17085,"seasonNumber":1,"episodeNumber":3,"title":"The Enemy Within","airDate":"1997-08-01","airDateUtc":"1997-08-02T01:00:00Z","overview":"Major Kawalsky is possessed by a Goa'uld, and the SGC must find a way to remove it without killing him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":4151},{"seriesId":56,"episodeFileId":17086,"seasonNumber":1,"episodeNumber":4,"title":"Emancipation","airDate":"1997-08-08","airDateUtc":"1997-08-09T01:00:00Z","overview":"An alien civilization is forced to reconsider their views on women when Carter rebels against their social customs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":4152},{"seriesId":56,"episodeFileId":17087,"seasonNumber":1,"episodeNumber":5,"title":"The Broca Divide","airDate":"1997-08-15","airDateUtc":"1997-08-16T01:00:00Z","overview":"Members of SG-1 become infected with an alien virus that turns them into primitive beings. Dr. Fraiser must find a cure to save the team and the alien population from whom it was contracted.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":4153},{"seriesId":56,"episodeFileId":17088,"seasonNumber":1,"episodeNumber":6,"title":"The First Commandment","airDate":"1997-08-22","airDateUtc":"1997-08-23T01:00:00Z","overview":"SG-1 must stop a renegade Stargate commander, who has gone mad and set himself up as a god on an alien planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":4154},{"seriesId":56,"episodeFileId":17089,"seasonNumber":1,"episodeNumber":7,"title":"Cold Lazarus","airDate":"1997-08-29","airDateUtc":"1997-08-30T01:00:00Z","overview":"During an off-world assignment, Jack is struck down by energy from a blue crystal... which creates a duplicate of him that returns to Earth in Jack's place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":4155},{"seriesId":56,"episodeFileId":17090,"seasonNumber":1,"episodeNumber":8,"title":"The Nox","airDate":"1997-09-12","airDateUtc":"1997-09-13T01:00:00Z","overview":"Pressed by the government to acquire new technologies, SG-1 is led to a world inhabited by a seemingly primative race. When Apophis arrives, SG-1 ambush him with disasterous consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":4156},{"seriesId":56,"episodeFileId":17091,"seasonNumber":1,"episodeNumber":9,"title":"Brief Candle","airDate":"1997-09-19","airDateUtc":"1997-09-20T01:00:00Z","overview":"SG-1 discovers a race of attractive people who age extremely rapidly. The situation becomes personal when O'Neill begins to suffer from the same accelerated aging, and must live out the rest of his life on the planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":4157},{"seriesId":56,"episodeFileId":17092,"seasonNumber":1,"episodeNumber":10,"title":"Thor's Hammer","airDate":"1997-09-26","airDateUtc":"1997-09-27T01:00:00Z","overview":"Teal'c and O'Neill are transported to an underground cage designed by the Asgard to protect an alien world from the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":4158},{"seriesId":56,"episodeFileId":17093,"seasonNumber":1,"episodeNumber":11,"title":"The Torment of Tantalus","airDate":"1997-10-03","airDateUtc":"1997-10-04T01:00:00Z","overview":"SG-1 tracks down Catherine Langford's fiance, who took the first Stargate trip in 1945, and discovers an ancient meeting hall that may hold the secrets of the universe itself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":4159},{"seriesId":56,"episodeFileId":17094,"seasonNumber":1,"episodeNumber":12,"title":"Bloodlines","airDate":"1997-10-10","airDateUtc":"1997-10-11T01:00:00Z","overview":"Teal'c returns to Chulak to stop his people from implanting his son with a larval Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":4160},{"seriesId":56,"episodeFileId":17095,"seasonNumber":1,"episodeNumber":13,"title":"Fire and Water","airDate":"1997-10-17","airDateUtc":"1997-10-18T01:00:00Z","overview":"Daniel is taken captive by an alien with a hidden agenda, while SG-1 is made to believe he is dead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":4161},{"seriesId":56,"episodeFileId":17096,"seasonNumber":1,"episodeNumber":14,"title":"Hathor","airDate":"1997-10-24","airDateUtc":"1997-10-25T01:00:00Z","overview":"The banished Goa'uld Hathor is found in an ancient sarcophagus Earth, and takes over the S.G.C. with hopes of raising a new army against the System Lords.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":4162},{"seriesId":56,"episodeFileId":17097,"seasonNumber":1,"episodeNumber":15,"title":"Singularity","airDate":"1997-10-31","airDateUtc":"1997-11-01T02:00:00Z","overview":"A mysterious affliction wipes out the entire population of a planet, plus an SG team -- except for one young girl. Carter befriends her, but learns that she is being used by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":4163},{"seriesId":56,"episodeFileId":17098,"seasonNumber":1,"episodeNumber":16,"title":"Cor-Ai","airDate":"1998-01-23","airDateUtc":"1998-01-24T02:00:00Z","overview":"Teal'c must stand trial for a crime committed while he served as first prime of Apophis when a villager on an alien world identifies him as the Jaffa who killed his father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":4164},{"seriesId":56,"episodeFileId":17099,"seasonNumber":1,"episodeNumber":17,"title":"Enigma","airDate":"1998-01-30","airDateUtc":"1998-01-31T02:00:00Z","overview":"The SG-1 team rescues a group of advanced humans from a planet near destruction, and must find a new home for the refugees before the Pentagon gets their hands on them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":4165},{"seriesId":56,"episodeFileId":17100,"seasonNumber":1,"episodeNumber":18,"title":"Solitudes","airDate":"1998-02-06","airDateUtc":"1998-02-07T02:00:00Z","overview":"Colonel O'Neill and Captain Carter are separated from Jackson and Teal'c during a Stargate journey, and are trapped on a desolate ice world with no way of escape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":4166},{"seriesId":56,"episodeFileId":17101,"seasonNumber":1,"episodeNumber":19,"title":"Tin Man","airDate":"1998-02-13","airDateUtc":"1998-02-14T02:00:00Z","overview":"The members of SG-1 arrive on P3X-989 and are knocked unconscious. They wake up and return to Earth only to find that they are not quite themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":4167},{"seriesId":56,"episodeFileId":17102,"seasonNumber":1,"episodeNumber":20,"title":"There But For the Grace of God","airDate":"1998-02-20","airDateUtc":"1998-02-21T02:00:00Z","overview":"An alien artifact transports Daniel to an alternate reality, where he is not a part of the Stargate program and the Goa'uld -- led by Teal'c -- are invading Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":4168},{"seriesId":56,"episodeFileId":17103,"seasonNumber":1,"episodeNumber":21,"title":"Politics (1)","airDate":"1998-02-27","airDateUtc":"1998-02-28T02:00:00Z","overview":"Senator Kinsey arrives at the SGC to investigate the program and determine whether the great drain on the U.S. budget is worthwhile, prompting the team to recall missions from the past year.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":4169},{"seriesId":56,"episodeFileId":17104,"seasonNumber":1,"episodeNumber":22,"title":"Within the Serpent's Grasp (2)","airDate":"1998-03-06","airDateUtc":"1998-03-07T02:00:00Z","overview":"SG-1 escapes through the Stargate before it is shut down, and learns that Daniel's alternate reality vision is true: Apophis is moving to attack Earth from above. The team must stop Apophis and his son, Klorel, who inhabits the body of their friend Skaara.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":4170},{"seriesId":56,"episodeFileId":17061,"seasonNumber":2,"episodeNumber":1,"title":"The Serpent's Lair (3)","airDate":"1998-06-26","airDateUtc":"1998-06-27T01:00:00Z","overview":"With SG-1 trapped on Klorel's ship, it seems that Earth is doomed as the Pyramid Ships prepare to destroy Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":4171},{"seriesId":56,"episodeFileId":17062,"seasonNumber":2,"episodeNumber":2,"title":"In the Line of Duty","airDate":"1998-07-03","airDateUtc":"1998-07-04T01:00:00Z","overview":"Carter is possessed by a Goa'uld who claims to be an enemy of the System Lords.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":4172},{"seriesId":56,"episodeFileId":17063,"seasonNumber":2,"episodeNumber":3,"title":"Prisoners","airDate":"1998-07-10","airDateUtc":"1998-07-11T01:00:00Z","overview":"SG-1 is put on trial and exiled to a prison world, where a woman maintains a strange control over her fellow prisoners.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":4173},{"seriesId":56,"episodeFileId":17064,"seasonNumber":2,"episodeNumber":4,"title":"The Gamekeeper","airDate":"1998-07-17","airDateUtc":"1998-07-18T01:00:00Z","overview":"SG-1 is imprisoned in a virtual reality realm and forced to relive the worst moments of their lives over and over.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":4174},{"seriesId":56,"episodeFileId":17065,"seasonNumber":2,"episodeNumber":5,"title":"Need","airDate":"1998-07-24","airDateUtc":"1998-07-25T01:00:00Z","overview":"Jackson becomes addicted to the effects of a Goa'uld sarcophagus, and falls for the planet's manipulative princess.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":4175},{"seriesId":56,"episodeFileId":17066,"seasonNumber":2,"episodeNumber":6,"title":"Thor's Chariot","airDate":"1998-07-31","airDateUtc":"1998-08-01T01:00:00Z","overview":"SG-1 returns to Cimmeria, and finds that without protection from the Asgard the planet has been invaded by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":4176},{"seriesId":56,"episodeFileId":17067,"seasonNumber":2,"episodeNumber":7,"title":"Message in a Bottle","airDate":"1998-08-07","airDateUtc":"1998-08-08T01:00:00Z","overview":"SG-1 discovers an ancient artifact that takes O'Neill and the S.G.C. hostage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":4177},{"seriesId":56,"episodeFileId":17068,"seasonNumber":2,"episodeNumber":8,"title":"Family","airDate":"1998-08-14","airDateUtc":"1998-08-15T01:00:00Z","overview":"The SG-1 team attempt to rescue Teal'c's son, who has been kidnapped and brainwashed by Apophis. Teal'c learns disturbing news about his wife.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":4178},{"seriesId":56,"episodeFileId":17069,"seasonNumber":2,"episodeNumber":9,"title":"Secrets","airDate":"1998-08-21","airDateUtc":"1998-08-22T01:00:00Z","overview":"Jackson discovers that his wife has returned to Abydos, and is nine months pregnant with the son of Apophis. O'Neill must keep the secret of the Stargate program from being uncovered.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":4179},{"seriesId":56,"episodeFileId":17070,"seasonNumber":2,"episodeNumber":10,"title":"Bane","airDate":"1998-09-25","airDateUtc":"1998-09-26T01:00:00Z","overview":"Teal'c is infected with deadly venom from a giant insect, and begins a terrible transformation. When he escapes the S.G.C., SG-1 must find him before Colonel Maybourne does.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":4180},{"seriesId":56,"episodeFileId":17071,"seasonNumber":2,"episodeNumber":11,"title":"The Tok'ra (1)","airDate":"1998-10-02","airDateUtc":"1998-10-03T01:00:00Z","overview":"SG-1 locates the Tok'ra, a Goa'uld resistence movement who oppose the System Lords, and attempt to form an alliance. Jacob Carter's cancer brings him near death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":4181},{"seriesId":56,"episodeFileId":17072,"seasonNumber":2,"episodeNumber":12,"title":"The Tok'ra (2)","airDate":"1998-10-09","airDateUtc":"1998-10-10T01:00:00Z","overview":"While SG-1 tries to form an alliance with the Tok'ra, a spy betrays the rebels to the Goa'uld. Jacob Carter finds that the Tok'ra may be his only hope of survival","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":4182},{"seriesId":56,"episodeFileId":17073,"seasonNumber":2,"episodeNumber":13,"title":"Spirits","airDate":"1998-10-23","airDateUtc":"1998-10-24T01:00:00Z","overview":"SG-1 finds a planet inhabited by Native American Indians, protected by spirits who are actually advanced alien shapeshifters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":4183},{"seriesId":56,"episodeFileId":17074,"seasonNumber":2,"episodeNumber":14,"title":"Touchstone","airDate":"1998-10-30","airDateUtc":"1998-10-31T02:00:00Z","overview":"SG-1 is accused of stealing an important weather-controlling device, sending a primative planet into chaos. The team discovers that Earth's second Stargate is being misused.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":4184},{"seriesId":56,"episodeFileId":17075,"seasonNumber":2,"episodeNumber":15,"title":"The Fifth Race","airDate":"1999-01-22","airDateUtc":"1999-01-23T02:00:00Z","overview":"O'Neill becomes the unwilling receptacle for a library of alien knowledge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":4185},{"seriesId":56,"episodeFileId":17076,"seasonNumber":2,"episodeNumber":16,"title":"A Matter of Time","airDate":"1999-01-29","airDateUtc":"1999-01-30T02:00:00Z","overview":"After gating to a world on the edge of a black hole, the S.G.C. cannot disengage the Stargate. All of Earth becomes endangered by the time-distorting gravity field.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":4186},{"seriesId":56,"episodeFileId":17077,"seasonNumber":2,"episodeNumber":17,"title":"Holiday","airDate":"1999-02-05","airDateUtc":"1999-02-06T02:00:00Z","overview":"SG-1 discovers an elderly man known for developing technology to fight the Goa'uld. Daniel is tricked into switching bodies with the man, Ma'chello, who believes he is \"owed\" for all the good he has done.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":4187},{"seriesId":56,"episodeFileId":17078,"seasonNumber":2,"episodeNumber":18,"title":"Serpent's Song","airDate":"1999-02-12","airDateUtc":"1999-02-13T02:00:00Z","overview":"Apophis, SG-1's greatest enemy, seeks sanctuary from Sokar and ends up near death in the S.G.C. infirmiry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":4188},{"seriesId":56,"episodeFileId":17079,"seasonNumber":2,"episodeNumber":19,"title":"One False Step","airDate":"1999-02-19","airDateUtc":"1999-02-20T02:00:00Z","overview":"A group of primitive aliens begin to fall deathly ill after SG-1 arrives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":4189},{"seriesId":56,"episodeFileId":17080,"seasonNumber":2,"episodeNumber":20,"title":"Show and Tell","airDate":"1999-02-26","airDateUtc":"1999-02-27T02:00:00Z","overview":"A young boy arrives through the Stargate, and warns of plot by invisible aliens to kill all of the human race in order to rob the Goa'uld of potential hosts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":4190},{"seriesId":56,"episodeFileId":17081,"seasonNumber":2,"episodeNumber":21,"title":"1969","airDate":"1999-03-05","airDateUtc":"1999-03-06T02:00:00Z","overview":"A cosmic accident causes SG-1 to be sent back 30 years into Earth's past, where they must locate the Stargate and find a way home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":4191},{"seriesId":56,"episodeFileId":17082,"seasonNumber":2,"episodeNumber":22,"title":"Out of Mind (1)","airDate":"1999-03-12","airDateUtc":"1999-03-13T02:00:00Z","overview":"O'Neill, Carter and Jackson awaken from stasis in what appears to be the S.G.C. -- almost 80 years in the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":4192},{"seriesId":56,"episodeFileId":17116,"seasonNumber":3,"episodeNumber":1,"title":"Into the Fire (2)","airDate":"1999-06-25","airDateUtc":"1999-06-26T01:00:00Z","overview":"O'Neill, Carter and Jackson must escape Hathor's clutches, while Teal'c tries to raise a Jaffa army on Chulak. General Hammond must take desperate measures to rescue the team.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":4193},{"seriesId":56,"episodeFileId":17117,"seasonNumber":3,"episodeNumber":2,"title":"Seth","airDate":"1999-07-02","airDateUtc":"1999-07-03T01:00:00Z","overview":"SG-1 must find a renegade Goa'uld who has been hiding on Earth for thousands of years.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":4194},{"seriesId":56,"episodeFileId":17118,"seasonNumber":3,"episodeNumber":3,"title":"Fair Game","airDate":"1999-07-09","airDateUtc":"1999-07-10T01:00:00Z","overview":"The Asgard aid Earth in negotiating a nonagression treaty with the Goa'uld System Lords.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":4195},{"seriesId":56,"episodeFileId":17119,"seasonNumber":3,"episodeNumber":4,"title":"Legacy","airDate":"1999-07-16","airDateUtc":"1999-07-17T01:00:00Z","overview":"When Daniel goes insane, SG-1 must deal with the legacy of Machello's anti-Goa'uld technology.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":4196},{"seriesId":56,"episodeFileId":17120,"seasonNumber":3,"episodeNumber":5,"title":"Learning Curve","airDate":"1999-07-23","airDateUtc":"1999-07-24T01:00:00Z","overview":"SG-1 discovers a planet where children are used to acquire knowledge for the entire population, then discarded.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":4197},{"seriesId":56,"episodeFileId":17121,"seasonNumber":3,"episodeNumber":6,"title":"Point of View","airDate":"1999-07-30","airDateUtc":"1999-07-31T01:00:00Z","overview":"SG-1 must free an alternate reality Earth from a Goa'uld invasion after duplicates of Samantha Carter and Charles Kawalsky come through the quantum mirror.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":4198},{"seriesId":56,"episodeFileId":17122,"seasonNumber":3,"episodeNumber":7,"title":"Deadman Switch","airDate":"1999-08-06","airDateUtc":"1999-08-07T01:00:00Z","overview":"SG-1 is taken captive by an alien bounty hunter with uncertain loyalties.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":4199},{"seriesId":56,"episodeFileId":17123,"seasonNumber":3,"episodeNumber":8,"title":"Demons","airDate":"1999-08-13","airDateUtc":"1999-08-14T01:00:00Z","overview":"SG-1 finds a medieval Christian society terrorized by Sokar and the Unas, and is accused of being possessed by demons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":4200},{"seriesId":56,"episodeFileId":17124,"seasonNumber":3,"episodeNumber":9,"title":"Rules of Engagement","airDate":"1999-08-20","airDateUtc":"1999-08-21T01:00:00Z","overview":"SG-1 discovers a military camp where young men are trained to impersonate SGC personnel to infiltrate Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":4201},{"seriesId":56,"episodeFileId":17125,"seasonNumber":3,"episodeNumber":10,"title":"Forever in a Day","airDate":"1999-10-08","airDateUtc":"1999-10-09T01:00:00Z","overview":"Jackson deals with the apparent death of his wife, Sha're, at the hands of Teal'c.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":4202},{"seriesId":56,"episodeFileId":17126,"seasonNumber":3,"episodeNumber":11,"title":"Past and Present","airDate":"1999-10-15","airDateUtc":"1999-10-16T01:00:00Z","overview":"SG-1 encounters an entire planet suffering from amnesia. The planet's leader returns to Earth with SG-1 to find a cure, but SG-1 suspects she may not be who she appears to be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":4203},{"seriesId":56,"episodeFileId":17127,"seasonNumber":3,"episodeNumber":12,"title":"Jolinar's Memories (1)","airDate":"1999-10-22","airDateUtc":"1999-10-23T01:00:00Z","overview":"When Major Carter's father Jacob is kidnapped by Sokar, the SG-1 team must infiltrate a prison moon designed to look like hell to rescue him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":4204},{"seriesId":56,"episodeFileId":17128,"seasonNumber":3,"episodeNumber":13,"title":"The Devil You Know (2)","airDate":"1999-10-29","airDateUtc":"1999-10-30T01:00:00Z","overview":"SG-1 must escape a hellish prison moon, and one of their worst enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":4205},{"seriesId":56,"episodeFileId":17129,"seasonNumber":3,"episodeNumber":14,"title":"Foothold","airDate":"1999-11-05","airDateUtc":"1999-11-06T02:00:00Z","overview":"SG-1 returns from a mission and discovers that metamorphic aliens have taken over the complex.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":4206},{"seriesId":56,"episodeFileId":17130,"seasonNumber":3,"episodeNumber":15,"title":"Pretense","airDate":"2000-01-21","airDateUtc":"2000-01-22T02:00:00Z","overview":"The Tollan put Skaara and Klorel on trial to determine who will control the host body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":4207},{"seriesId":56,"episodeFileId":17131,"seasonNumber":3,"episodeNumber":16,"title":"Urgo","airDate":"2000-01-28","airDateUtc":"2000-01-29T02:00:00Z","overview":"SG-1 receives alien brain implants that manifest themselves as a bizarre man, who tells them that they would not survive the procedure to remove him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":4208},{"seriesId":56,"episodeFileId":17132,"seasonNumber":3,"episodeNumber":17,"title":"A Hundred Days","airDate":"2000-02-04","airDateUtc":"2000-02-05T02:00:00Z","overview":"After a meteor strike buries the Stargate, O'Neill finds himself stranded on a planet with no hope of rescue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":4209},{"seriesId":56,"episodeFileId":17133,"seasonNumber":3,"episodeNumber":18,"title":"Shades of Grey","airDate":"2000-02-11","airDateUtc":"2000-02-12T02:00:00Z","overview":"O'Neill steals technology from the Tollan, and is forced to leave the Stargate program. Maybourne offers an intriguing proposal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":4210},{"seriesId":56,"episodeFileId":17134,"seasonNumber":3,"episodeNumber":19,"title":"New Ground","airDate":"2000-02-18","airDateUtc":"2000-02-19T02:00:00Z","overview":"The members of SG-1 are imprisoned on a planet and become pawns in a war of ideology.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":4211},{"seriesId":56,"episodeFileId":17135,"seasonNumber":3,"episodeNumber":20,"title":"Maternal Instinct","airDate":"2000-02-25","airDateUtc":"2000-02-26T02:00:00Z","overview":"SG-1 discovers the mystical planet Kheb, and must find the Harcesis child of Apophis and Sha're before Apophis's army does.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":4212},{"seriesId":56,"episodeFileId":17136,"seasonNumber":3,"episodeNumber":21,"title":"Crystal Skull","airDate":"2000-03-03","airDateUtc":"2000-03-04T02:00:00Z","overview":"An alien artifact causes Daniel to disappear, and the team looks for help from his institutionalized grandfather.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":4213},{"seriesId":56,"episodeFileId":17137,"seasonNumber":3,"episodeNumber":22,"title":"Nemesis (1)","airDate":"2000-03-10","airDateUtc":"2000-03-11T02:00:00Z","overview":"SG-1 faces creatures of mass destruction that even the Asgard can't control, and must destroy Thor's infested vessel before the Replicator bugs reach Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":4214},{"seriesId":56,"episodeFileId":17149,"seasonNumber":4,"episodeNumber":1,"title":"Small Victories (2)","airDate":"2000-06-30","airDateUtc":"2000-07-01T01:00:00Z","overview":"O'Neill and Teal'c risk their lives to keep the Replicator bugs from gaining a foothold on Earth, while Carter helps the Asgard fend off a Replicator invasion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":4215},{"seriesId":56,"episodeFileId":17150,"seasonNumber":4,"episodeNumber":2,"title":"The Other Side","airDate":"2000-07-07","airDateUtc":"2000-07-08T01:00:00Z","overview":"A warring alien race offers to exchange their advanced technology for Earth's help in defeating their enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":4216},{"seriesId":56,"episodeFileId":17151,"seasonNumber":4,"episodeNumber":3,"title":"Upgrades","airDate":"2000-07-14","airDateUtc":"2000-07-15T01:00:00Z","overview":"A Tok'ra archaeologist arrives at the SGC with newly discovered technology, giving the SG-1 team superhuman powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":4217},{"seriesId":56,"episodeFileId":17152,"seasonNumber":4,"episodeNumber":4,"title":"Crossroads","airDate":"2000-07-21","airDateUtc":"2000-07-22T01:00:00Z","overview":"Teal'c is reunited with his lost love -- a woman who claims to have found a way to communicate with her symbiote and defeat the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":4218},{"seriesId":56,"episodeFileId":17153,"seasonNumber":4,"episodeNumber":5,"title":"Divide and Conquer","airDate":"2000-07-28","airDateUtc":"2000-07-29T01:00:00Z","overview":"When a member of the SGC tries to kill a Tok'ra, it is revealed that O'Neill and Carter may be victims of an untraceable form of Goa'uld mind control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":4219},{"seriesId":56,"episodeFileId":17154,"seasonNumber":4,"episodeNumber":6,"title":"Window of Opportunity","airDate":"2000-08-04","airDateUtc":"2000-08-05T01:00:00Z","overview":"O'Neill and Teal'c are caught in a time loop in the SGC, and must relive the same 10 hours over and over again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":4220},{"seriesId":56,"episodeFileId":17155,"seasonNumber":4,"episodeNumber":7,"title":"Watergate","airDate":"2000-08-11","airDateUtc":"2000-08-12T01:00:00Z","overview":"The Russians recover a Stargate from the bottom of the ocean, and turn to the SGC for help when their experiments go awry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":4221},{"seriesId":56,"episodeFileId":17156,"seasonNumber":4,"episodeNumber":8,"title":"The First Ones","airDate":"2000-08-18","airDateUtc":"2000-08-19T01:00:00Z","overview":"Dr. Jackson is taken captive by an Unas while on an archaeological dig. The SGC mounts a rescue operation, but discovers a danger of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":4222},{"seriesId":56,"episodeFileId":17157,"seasonNumber":4,"episodeNumber":9,"title":"Scorched Earth","airDate":"2000-08-25","airDateUtc":"2000-08-26T01:00:00Z","overview":"SG-1 is caught in a conflict between two civilizations trying to colonize the same planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":4223},{"seriesId":56,"episodeFileId":17158,"seasonNumber":4,"episodeNumber":10,"title":"Beneath the Surface","airDate":"2000-09-01","airDateUtc":"2000-09-02T01:00:00Z","overview":"The members of SG-1 are used as forced labor in an underground alien facility after their memories are erased by the ruling elite.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":4224},{"seriesId":56,"episodeFileId":17159,"seasonNumber":4,"episodeNumber":11,"title":"Point of No Return","airDate":"2000-09-08","airDateUtc":"2000-09-09T01:00:00Z","overview":"SG-1 investigates a conspiracy theorist who has detailed knowledge of the Stargate program.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":4225},{"seriesId":56,"episodeFileId":17160,"seasonNumber":4,"episodeNumber":12,"title":"Tangent","airDate":"2000-09-15","airDateUtc":"2000-09-16T01:00:00Z","overview":"A test gone wrong leaves Jack and Teal'c marooned in space aboard a damaged prototype attack ship","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":4226},{"seriesId":56,"episodeFileId":17161,"seasonNumber":4,"episodeNumber":13,"title":"The Curse","airDate":"2000-09-22","airDateUtc":"2000-09-23T01:00:00Z","overview":"When his former mentor dies, Dr. Jackson returns to his roots -- and discovers an ancient Egyptian artifact containing a Goa'uld parasite.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":4227},{"seriesId":56,"episodeFileId":17162,"seasonNumber":4,"episodeNumber":14,"title":"The Serpent's Venom","airDate":"2000-09-29","airDateUtc":"2000-09-30T01:00:00Z","overview":"SG-1 must stop Apophis and Heru-ur from forming an alliance of their powerful forces, while Teal'c is captured and tortured by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":4228},{"seriesId":56,"episodeFileId":17163,"seasonNumber":4,"episodeNumber":15,"title":"Chain Reaction","airDate":"2001-01-05","airDateUtc":"2001-01-06T02:00:00Z","overview":"SG-1 must adjust to a new commanding officer when General Hammond steps down -- but O'Neill discovers foul play behind the general's resignation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":4229},{"seriesId":56,"episodeFileId":17164,"seasonNumber":4,"episodeNumber":16,"title":"2010","airDate":"2001-01-12","airDateUtc":"2001-01-13T02:00:00Z","overview":"Ten years into the future, the former members of SG-1 must send a message into the past to prevent the extinction of the human race.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":4230},{"seriesId":56,"episodeFileId":17165,"seasonNumber":4,"episodeNumber":17,"title":"Absolute Power","airDate":"2001-01-19","airDateUtc":"2001-01-20T02:00:00Z","overview":"Jackson's teammates notice a disturbing change in him when he is reunited with the Harcesis child and given the Goa'uld genetic memory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":4231},{"seriesId":56,"episodeFileId":17166,"seasonNumber":4,"episodeNumber":18,"title":"The Light","airDate":"2001-01-26","airDateUtc":"2001-01-27T02:00:00Z","overview":"SG-1 finds a deserted Goa'uld palace, where a beautiful device causes suicidal tendencies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":4232},{"seriesId":56,"episodeFileId":17167,"seasonNumber":4,"episodeNumber":19,"title":"Prodigy","airDate":"2001-02-02","airDateUtc":"2001-02-03T02:00:00Z","overview":"Carter must help keep a promising young cadet from throwing away a future at the SGC. O'Neill and Teal'c encounter a dangerous life form at an offworld research base.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":4233},{"seriesId":56,"episodeFileId":17168,"seasonNumber":4,"episodeNumber":20,"title":"Entity","airDate":"2001-02-09","airDateUtc":"2001-02-10T02:00:00Z","overview":"The SGC is invaded by an alien life force that takes up residence in the base computer system -- and in Major Carter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":4234},{"seriesId":56,"episodeFileId":17169,"seasonNumber":4,"episodeNumber":21,"title":"Double Jeopardy","airDate":"2001-02-16","airDateUtc":"2001-02-17T02:00:00Z","overview":"SG-1 must rescue an alien world from the Goa'uld -- with help from an unexpected source. Teal'c seeks revenge on the System Lord Cronus for the murder of his father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":4235},{"seriesId":56,"episodeFileId":17170,"seasonNumber":4,"episodeNumber":22,"title":"Exodus (1)","airDate":"2001-02-23","airDateUtc":"2001-02-24T02:00:00Z","overview":"SG-1 helps to evacuate the Tok'ra to a new base -- but matters are complicated when a spy reveals their location to Apophis. The team attempts a daring plan to take out the Goa'uld's powerful fleet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":4236},{"seriesId":56,"episodeFileId":17287,"seasonNumber":5,"episodeNumber":1,"title":"Enemies (2)","airDate":"2001-06-29","airDateUtc":"2001-06-30T01:00:00Z","overview":"SG-1 finds themselves stranded in a crippled ship in a distant galaxy -- with Apophis threatening to destroy them. Teal'c is brainwashed and made loyal to Apophis once again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":4237},{"seriesId":56,"episodeFileId":17288,"seasonNumber":5,"episodeNumber":2,"title":"Threshold (3)","airDate":"2001-07-06","airDateUtc":"2001-07-07T01:00:00Z","overview":"His mind altered by Apophis, Teal'c must undergo a ritual that takes him to the edge of death itself, in order for him to rediscover who he is.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":4238},{"seriesId":56,"episodeFileId":17289,"seasonNumber":5,"episodeNumber":3,"title":"Ascension","airDate":"2001-07-13","airDateUtc":"2001-07-14T01:00:00Z","overview":"An alien being is smitten with Carter and follows her back to Earth. It assumes a human form and pursues a relationship with her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":4239},{"seriesId":56,"episodeFileId":17290,"seasonNumber":5,"episodeNumber":4,"title":"The Fifth Man","airDate":"2001-07-20","airDateUtc":"2001-07-21T01:00:00Z","overview":"O'Neill and Lieutenant Tyler are ambushed by Goa'uld forces and trapped behind enemy lines -- while the rest of their team discover they don't know who Tyler is.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":4240},{"seriesId":56,"episodeFileId":17291,"seasonNumber":5,"episodeNumber":5,"title":"Red Sky","airDate":"2001-07-27","airDateUtc":"2001-07-28T01:00:00Z","overview":"SG-1 discovers that their recent trip through the Stargate may have inadvertently doomed an entire civilization.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":4241},{"seriesId":56,"episodeFileId":17292,"seasonNumber":5,"episodeNumber":6,"title":"Rite of Passage","airDate":"2001-08-03","airDateUtc":"2001-08-04T01:00:00Z","overview":"Cassandra mysteriously falls ill, sending SG-1 back to her home planet -- where they uncover a dark Goa'uld secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":4242},{"seriesId":56,"episodeFileId":17293,"seasonNumber":5,"episodeNumber":7,"title":"Beast of Burden","airDate":"2001-08-10","airDateUtc":"2001-08-11T01:00:00Z","overview":"SG-1 discovers a civilization that uses Unas as slave labor, and attempt to liberate Daniel's friend, Chaka.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":4243},{"seriesId":56,"episodeFileId":17294,"seasonNumber":5,"episodeNumber":8,"title":"The Tomb","airDate":"2001-08-17","airDateUtc":"2001-08-18T01:00:00Z","overview":"SG-1 teams with a Russian unit when one of their Stargate teams goes missing in a mysterious alien ziggurat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":4244},{"seriesId":56,"episodeFileId":17295,"seasonNumber":5,"episodeNumber":9,"title":"Between Two Fires","airDate":"2001-08-24","airDateUtc":"2001-08-25T01:00:00Z","overview":"The Tollan offer Earth advanced weapons technology, prompting a secret investigation on Tollana -- one that leads to a startling discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":4245},{"seriesId":56,"episodeFileId":17296,"seasonNumber":5,"episodeNumber":10,"title":"2001","airDate":"2001-08-31","airDateUtc":"2001-09-01T01:00:00Z","overview":"SG-1 encounters a potential new, technologically advanced ally in the war against the Goa'uld -- though they do not know the Aschen's dark secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":4246},{"seriesId":56,"episodeFileId":17297,"seasonNumber":5,"episodeNumber":11,"title":"Desperate Measures","airDate":"2001-09-07","airDateUtc":"2001-09-08T01:00:00Z","overview":"When Carter goes missing, O'Neill teams up with Col. Maybourne again to free her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":4247},{"seriesId":56,"episodeFileId":17298,"seasonNumber":5,"episodeNumber":12,"title":"Wormhole X-Treme!","airDate":"2001-09-08","airDateUtc":"2001-09-09T01:00:00Z","overview":"An alien ship approaches Earth, sending SG-1 to an old friend for some answers -- where they discover that Martin Lloyd has created a TV show about the Stargate program.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":4248},{"seriesId":56,"episodeFileId":17299,"seasonNumber":5,"episodeNumber":13,"title":"Proving Ground","airDate":"2002-03-08","airDateUtc":"2002-03-09T02:00:00Z","overview":"SG-1 trains a team of raw cadets, and Colonel O'Neill is forced to take them into a real-life battle situation when he learns of a possible alien incursion at the SGC.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":4249},{"seriesId":56,"episodeFileId":17300,"seasonNumber":5,"episodeNumber":14,"title":"48 Hours","airDate":"2002-03-15","airDateUtc":"2002-03-16T02:00:00Z","overview":"Disaster strikes the Stargate, trapping Teal'c in transit. SG-1 must turn to Russia -- and to their enemies -- for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":4250},{"seriesId":56,"episodeFileId":17301,"seasonNumber":5,"episodeNumber":15,"title":"Summit (1)","airDate":"2002-03-22","airDateUtc":"2002-03-23T02:00:00Z","overview":"The Tok'ra war with the Goa'uld escalates, and the rebel faction sends Daniel Jackson to a secret meeting between the System Lords.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":4251},{"seriesId":56,"episodeFileId":17302,"seasonNumber":5,"episodeNumber":16,"title":"Last Stand (2)","airDate":"2002-03-29","airDateUtc":"2002-03-30T02:00:00Z","overview":"Dr. Jackson's undercover mission to a Goa'uld summit is complicated by the arrival of a surprise guest. The rest of the team face a full-scale invasion of the Tok'ra homeworld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":4252},{"seriesId":56,"episodeFileId":17303,"seasonNumber":5,"episodeNumber":17,"title":"Fail Safe","airDate":"2002-04-05","airDateUtc":"2002-04-06T02:00:00Z","overview":"Earth finds itself threatened by something even larger than the Goa'uld when the team learns that an asteroid is on a collision course with the planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":4253},{"seriesId":56,"episodeFileId":17304,"seasonNumber":5,"episodeNumber":18,"title":"The Warrior","airDate":"2002-04-12","airDateUtc":"2002-04-13T01:00:00Z","overview":"A charismatic Jaffa leader seeks to forge an alliance between Earth and his rebel followers, winning the allegiance of Teal'c and Bra'tac.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":4254},{"seriesId":56,"episodeFileId":17305,"seasonNumber":5,"episodeNumber":19,"title":"Menace","airDate":"2002-04-26","airDateUtc":"2002-04-27T01:00:00Z","overview":"SG-1 encounters a young woman with the ability to control Replicators, and who may hold the key to the salvation of the Asgard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":4255},{"seriesId":56,"episodeFileId":17306,"seasonNumber":5,"episodeNumber":20,"title":"The Sentinel","airDate":"2002-05-03","airDateUtc":"2002-05-04T01:00:00Z","overview":"SG-1 must turn to a pair of convicted criminals to save a world from annihilation by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":4256},{"seriesId":56,"episodeFileId":17307,"seasonNumber":5,"episodeNumber":21,"title":"Meridian","airDate":"2002-05-10","airDateUtc":"2002-05-11T01:00:00Z","overview":"Daniel Jackson is exposed to a lethal dose of radiation while visiting an alien civilization that is building a weapon of mass destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":4257},{"seriesId":56,"episodeFileId":17308,"seasonNumber":5,"episodeNumber":22,"title":"Revelations","airDate":"2002-05-17","airDateUtc":"2002-05-18T01:00:00Z","overview":"SG-1 must come to the rescue of their once-powerful allies when the Goa'uld attack a secret Asgard laboratory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":4258},{"seriesId":56,"episodeFileId":18200,"seasonNumber":6,"episodeNumber":1,"title":"Redemption (1)","airDate":"2002-06-07","airDateUtc":"2002-06-08T01:00:00Z","overview":"Tragedy reunites Teal'c with his son, who blames him for the death of his mother. O'Neill and Carter launch a risky plan with untested technology when Earth comes under attack by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":4259},{"seriesId":56,"episodeFileId":18201,"seasonNumber":6,"episodeNumber":2,"title":"Redemption (2)","airDate":"2002-06-14","airDateUtc":"2002-06-15T01:00:00Z","overview":"Carter must find a way to save Earth from total destruction at the hands of the Goa'uld, who have turned the Stargate into a doomsday bomb. Rya'c joins his father on a mission to destroy the Goa'uld weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":4260},{"seriesId":56,"episodeFileId":18202,"seasonNumber":6,"episodeNumber":3,"title":"Descent","airDate":"2002-06-21","airDateUtc":"2002-06-22T01:00:00Z","overview":"SG-1 boards an abandoned Goa'uld mothership that has mysteriously arrived in Earth's orbit, and must escape the doomed vessel when it crashes into the ocean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":4261},{"seriesId":56,"episodeFileId":18203,"seasonNumber":6,"episodeNumber":4,"title":"Frozen","airDate":"2002-06-28","airDateUtc":"2002-06-29T01:00:00Z","overview":"SG-1 investigates the discovery of a woman frozen in the ice in Antarctica, who may be a link to the gate builders. A mysterious disease threatens to kill everyone at the research base.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":4262},{"seriesId":56,"episodeFileId":18204,"seasonNumber":6,"episodeNumber":5,"title":"Nightwalkers","airDate":"2002-07-12","airDateUtc":"2002-07-13T01:00:00Z","overview":"Carter, Teal'c and Jonas investigate the death of a scientist with connections to the Goa'uld, and find a small town whose citizens harbor a dark secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":4263},{"seriesId":56,"episodeFileId":18205,"seasonNumber":6,"episodeNumber":6,"title":"Abyss","airDate":"2002-07-19","airDateUtc":"2002-07-20T01:00:00Z","overview":"O'Neill is captured and tortured by the Goa'uld, and must rely on an old friend to survive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":4264},{"seriesId":56,"episodeFileId":18206,"seasonNumber":6,"episodeNumber":7,"title":"Shadow Play","airDate":"2002-07-26","airDateUtc":"2002-07-27T01:00:00Z","overview":"Jonas' people ask Earth for military aide in an impending war with their rival nations, but his former mentor offers another solution: a resistance movement ready for a coup.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":4265},{"seriesId":56,"episodeFileId":18207,"seasonNumber":6,"episodeNumber":8,"title":"The Other Guys","airDate":"2002-08-02","airDateUtc":"2002-08-03T01:00:00Z","overview":"When SG-1 is captured by the Goa'uld, a pair of scientists mount a rescue operation ... whether they're wanted or not.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":4266},{"seriesId":56,"episodeFileId":18208,"seasonNumber":6,"episodeNumber":9,"title":"Allegiance","airDate":"2002-08-09","airDateUtc":"2002-08-10T01:00:00Z","overview":"Tensions rise between the Tok'ra and rebel Jaffa at the S.G.C.'s offworld base when they are attacked by an invisible enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":4267},{"seriesId":56,"episodeFileId":18209,"seasonNumber":6,"episodeNumber":10,"title":"Cure","airDate":"2002-08-16","airDateUtc":"2002-08-17T01:00:00Z","overview":"An alien world offers Earth a medicine with the power to cure any illness -- but the hidden price may be too high to pay.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":4268},{"seriesId":56,"episodeFileId":18210,"seasonNumber":6,"episodeNumber":11,"title":"Prometheus (1)","airDate":"2002-08-23","airDateUtc":"2002-08-24T01:00:00Z","overview":"A news reporter threatens to expose a top-secret military project, but when Carter and Jonas\r\ngive her a tour of the X-303, they discover that she is a pawn in a much larger plot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":4269},{"seriesId":56,"episodeFileId":18211,"seasonNumber":6,"episodeNumber":12,"title":"Unnatural Selection (2)","airDate":"2003-01-10","airDateUtc":"2003-01-11T02:00:00Z","overview":"The team is called into battle unexpectedly when the Asgard homeworld is overrun by Replicators -- which have evolved into a startling new form.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":4270},{"seriesId":56,"episodeFileId":18212,"seasonNumber":6,"episodeNumber":13,"title":"Sight Unseen","airDate":"2003-01-17","airDateUtc":"2003-01-18T02:00:00Z","overview":"The team returns to Earth with a piece of technology that allows them to see alien creatures everywhere, and must attempt to contain the problem when it spreads beyond the base.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":4271},{"seriesId":56,"episodeFileId":18213,"seasonNumber":6,"episodeNumber":14,"title":"Smoke & Mirrors","airDate":"2003-01-24","airDateUtc":"2003-01-25T02:00:00Z","overview":"Colonel O'Neill is charged with the murder of Senator Kinsey, and the rest of the team must uncover a conspiracy in order to clear his name.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":4272},{"seriesId":56,"episodeFileId":18214,"seasonNumber":6,"episodeNumber":15,"title":"Paradise Lost","airDate":"2003-01-31","airDateUtc":"2003-02-01T02:00:00Z","overview":"Colonel O'Neill is trapped on an alien planet with Maybourne, and must fight to stay alive as his companion becomes increasingly paranoid.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":4273},{"seriesId":56,"episodeFileId":18215,"seasonNumber":6,"episodeNumber":16,"title":"Metamorphosis","airDate":"2003-02-07","airDateUtc":"2003-02-08T02:00:00Z","overview":"SG-1 attempts to save a planet's inhabitants from Nirrti's genetic experimentation, but find themselves to be her next victims.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":4274},{"seriesId":56,"episodeFileId":18216,"seasonNumber":6,"episodeNumber":17,"title":"Disclosure","airDate":"2003-02-14","airDateUtc":"2003-02-15T02:00:00Z","overview":"General Hammond and the Pentagon reveal the existence of the Stargate to other world governments, and must defend the fact that the program is operated by the United States military.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":4275},{"seriesId":56,"episodeFileId":18217,"seasonNumber":6,"episodeNumber":18,"title":"Forsaken","airDate":"2003-02-21","airDateUtc":"2003-02-22T02:00:00Z","overview":"When the team finds a crashed ship on another planet, their efforts to help the crew effect repairs are hindered by a group of aliens.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":4276},{"seriesId":56,"episodeFileId":18218,"seasonNumber":6,"episodeNumber":19,"title":"The Changeling","airDate":"2003-02-28","airDateUtc":"2003-03-01T02:00:00Z","overview":"A near-death trial causes Teal'c to imagine his life as very different from the one he knows, where he is a normal person living on Earth -- until he can no longer distinguish reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":4277},{"seriesId":56,"episodeFileId":18219,"seasonNumber":6,"episodeNumber":20,"title":"Memento","airDate":"2003-03-07","airDateUtc":"2003-03-08T02:00:00Z","overview":"Prometheus is forced to land on an alien world, where the local Stargate is the team's only chance of returning home -- though the local population believe the gate to be a myth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":4278},{"seriesId":56,"episodeFileId":18220,"seasonNumber":6,"episodeNumber":21,"title":"Prophecy","airDate":"2003-03-14","airDateUtc":"2003-03-15T02:00:00Z","overview":"The team finds an impoverished world enslaved by a Goa'uld underlord, but their plans to free it may be compromised when Jonas experiences unexplained visions of the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":130,"unverifiedSceneNumbering":false,"id":4279},{"seriesId":56,"episodeFileId":18221,"seasonNumber":6,"episodeNumber":22,"title":"Full Circle","airDate":"2003-03-21","airDateUtc":"2003-03-22T02:00:00Z","overview":"SG-1 is called to defend the people of Abydos from the Goa'uld once again when they learn that Anubis, in search of a powerful device, is about to attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":4280},{"seriesId":56,"episodeFileId":18300,"seasonNumber":7,"episodeNumber":1,"title":"Fallen (1)","airDate":"2003-06-13","airDateUtc":"2003-06-14T01:00:00Z","overview":"While searching for the Lost City of the Ancients on a distant planet, SG-1 is stunned to find Daniel Jackson alive and in human form but stripped of his memory. O'Neill convinces Daniel to return with them to the SGC, where he is reinstated for a daring mission to destroy Anubis' powerful new super-weapon!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":4281},{"seriesId":56,"episodeFileId":18301,"seasonNumber":7,"episodeNumber":2,"title":"Homecoming (2)","airDate":"2003-06-13","airDateUtc":"2003-06-14T01:45:00Z","overview":"The team returns to Jonas' homeworld when they learn that the Goa'uld are after its naquadria. When Jonas is captured by Anubis, Daniel is his only hope.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":4282},{"seriesId":56,"episodeFileId":18302,"seasonNumber":7,"episodeNumber":3,"title":"Fragile Balance","airDate":"2003-06-20","airDateUtc":"2003-06-21T01:00:00Z","overview":"A teenage boy shows up at the S.G.C. claiming to be Jack O'Neill, sending the team on a mission to uncover his true identity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":4283},{"seriesId":56,"episodeFileId":18303,"seasonNumber":7,"episodeNumber":4,"title":"Orpheus","airDate":"2003-06-27","airDateUtc":"2003-06-28T01:00:00Z","overview":"After an injury, Teal'c must put aside his self-doubt when SG-1 launches a mission to rescue his son and his mentor from a Jaffa death camp.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":4284},{"seriesId":56,"episodeFileId":18304,"seasonNumber":7,"episodeNumber":5,"title":"Revisions","airDate":"2003-07-11","airDateUtc":"2003-07-12T01:00:00Z","overview":"The team gates to a climate-controlled environment amidst a toxic wasteland, whose people are all linked to a central computer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":4285},{"seriesId":56,"episodeFileId":18305,"seasonNumber":7,"episodeNumber":6,"title":"Lifeboat","airDate":"2003-07-18","airDateUtc":"2003-07-19T01:00:00Z","overview":"When SG-1 finds a crashed alien space ship, Daniel's mind is taken over by its disembodied passengers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":4286},{"seriesId":56,"episodeFileId":18306,"seasonNumber":7,"episodeNumber":7,"title":"Enemy Mine","airDate":"2003-07-25","airDateUtc":"2003-07-26T01:00:00Z","overview":"When Earth's attempts to exploit a newly-discovered naquadah mine are thwarted by a tribe of indigenous Unas, SG-1 must turn to an old friend for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":4287},{"seriesId":56,"episodeFileId":18307,"seasonNumber":7,"episodeNumber":8,"title":"Space Race","airDate":"2003-08-01","airDateUtc":"2003-08-02T01:00:00Z","overview":"Major Carter joins an alien pilot for a space race, where the winner is awarded a lucrative contract with the planet's most powerful corporation. But the rest of the team discovers that there is more at stake than the finish line.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":4288},{"seriesId":56,"episodeFileId":18308,"seasonNumber":7,"episodeNumber":9,"title":"Avenger 2.0","airDate":"2003-08-08","airDateUtc":"2003-08-09T01:00:00Z","overview":"An S.G.C. scientist creates a computer virus to be used to disable enemy Stargates -- but succeeds in shutting down the entire gate network.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":140,"unverifiedSceneNumbering":false,"id":4289},{"seriesId":56,"episodeFileId":18309,"seasonNumber":7,"episodeNumber":10,"title":"Birthright","airDate":"2003-08-15","airDateUtc":"2003-08-16T01:00:00Z","overview":"The team finds a fugitive colony of Jaffa women, who must prey on other Jaffa to acquire symbiotes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":141,"unverifiedSceneNumbering":false,"id":4290},{"seriesId":56,"episodeFileId":18310,"seasonNumber":7,"episodeNumber":11,"title":"Evolution (1)","airDate":"2003-08-22","airDateUtc":"2003-08-23T01:00:00Z","overview":"The team investigates an unstoppable new enemy soldier engineered by Anubis. Dr. Jackson leads a team in search of an alien device in Central America, but gets more than he bargained for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":142,"unverifiedSceneNumbering":false,"id":4291},{"seriesId":56,"episodeFileId":18311,"seasonNumber":7,"episodeNumber":12,"title":"Evolution (2)","airDate":"2004-01-09","airDateUtc":"2004-01-10T02:00:00Z","overview":"O'Neill seeks help from a former comrade to rescue Daniel and Dr. Lee, who have been kidnapped in Central America. Carter, Teal'c and Jacob infiltrate Anubis' super-soldier facility.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":143,"unverifiedSceneNumbering":false,"id":4292},{"seriesId":56,"episodeFileId":18312,"seasonNumber":7,"episodeNumber":13,"title":"Grace","airDate":"2004-01-16","airDateUtc":"2004-01-17T02:00:00Z","overview":"Carter is injured when the Prometheus is attacked by an unknown ship, and awakens to find herself stranded alone in deep space.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":144,"unverifiedSceneNumbering":false,"id":4293},{"seriesId":56,"episodeFileId":18313,"seasonNumber":7,"episodeNumber":14,"title":"Fallout","airDate":"2004-01-23","airDateUtc":"2004-01-24T02:00:00Z","overview":"When the Kelownans discover that a massive underground vein of naquadah is being converted into naquadria, Jonas Quinn seeks help from Earth in avoiding the total destruction of his planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":145,"unverifiedSceneNumbering":false,"id":4294},{"seriesId":56,"episodeFileId":18314,"seasonNumber":7,"episodeNumber":15,"title":"Chimera","airDate":"2004-01-30","airDateUtc":"2004-01-31T02:00:00Z","overview":"Daniel is plagued by dreams of his former girlfriend, who has been taken as a Goa'uld host. Samantha Carter begins a romantic relationship with a detective, from whom she must hide her life at Stargate Command.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":146,"unverifiedSceneNumbering":false,"id":4295},{"seriesId":56,"episodeFileId":18315,"seasonNumber":7,"episodeNumber":16,"title":"Death Knell","airDate":"2004-02-06","airDateUtc":"2004-02-07T02:00:00Z","overview":"Earth's secret offworld base is attacked by Anubis' forces, and Major Carter finds herself being hunted by the enemy. General Hammond and Jacob Carter make an unnerving discovery about the Earth-Tok'ra alliance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":147,"unverifiedSceneNumbering":false,"id":4296},{"seriesId":56,"episodeFileId":18316,"seasonNumber":7,"episodeNumber":17,"title":"Heroes (1)","airDate":"2004-02-13","airDateUtc":"2004-02-14T02:00:00Z","overview":"A film crew arrives to document the work of the S.G.C. for eventual disclosure to the public, but finds that the base's personnel are less than eager to participate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":4297},{"seriesId":56,"episodeFileId":18317,"seasonNumber":7,"episodeNumber":18,"title":"Heroes (2)","airDate":"2004-02-20","airDateUtc":"2004-02-21T02:00:00Z","overview":"SG-1 is called into action while a film crew is documenting the Stargate program, but the S.G.C. comes under investigation after the mission goes terribly wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":4298},{"seriesId":56,"episodeFileId":18318,"seasonNumber":7,"episodeNumber":19,"title":"Resurrection","airDate":"2004-02-27","airDateUtc":"2004-02-28T02:00:00Z","overview":"SG-1 investigates a secret N.I.D. laboratory, where a ruthless scientist has used cloning technology to create a Goa'uld-human hybrid.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":4299},{"seriesId":56,"episodeFileId":18319,"seasonNumber":7,"episodeNumber":20,"title":"Inauguration","airDate":"2004-03-05","airDateUtc":"2004-03-06T02:00:00Z","overview":"The newly-elected president is debriefed about the Stargate program, and Vice President Kinsey makes a new play for control of the program.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":151,"unverifiedSceneNumbering":false,"id":4300},{"seriesId":56,"episodeFileId":18320,"seasonNumber":7,"episodeNumber":21,"title":"Lost City (1)","airDate":"2004-03-12","airDateUtc":"2004-03-13T02:00:00Z","overview":"O'Neill goes to great lengths to keep the Ancients' knowledge from falling into Goa'uld hands when the team discovers a second repository. The President replaces General Hammond with a civilian diplomat.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4301},{"seriesId":56,"episodeFileId":18321,"seasonNumber":7,"episodeNumber":22,"title":"Lost City (2)","airDate":"2004-03-19","airDateUtc":"2004-03-20T02:00:00Z","overview":"Anubis begins a systematic assault on Earth, and the planet's only hope of salvation depends on whether SG-1 can find the Ancients' mythical Lost City.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4302},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"From Stargate To Atlantis - A Sci-Fi Lowdown","airDate":"2004-07-05","airDateUtc":"2004-07-06T01:00:00Z","overview":"The Sci-Fi Channel debuted the behind-the-scenes special \"From Stargate to Atlantis: A Sci-Fi Lowdown\" on July 5, 2004. With great anticipation for the July 9 premiere of of Stargate SG-1's eighth season and the July 16 world premiere of Stargate Atlantis, GateWorld presents these Atlantis preview shots from the special! The images include the first good look at the \"puddle jumper\" ship, an outer space Stargate in orbit of a planet, a Pegasus galaxy D.H.D., the male Wraith, and more.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4142},{"seriesId":56,"episodeFileId":17493,"seasonNumber":8,"episodeNumber":1,"title":"New Order (1)","airDate":"2004-07-09","airDateUtc":"2004-07-10T01:00:00Z","overview":"Carter and Teal'c go in search of the Asgard to try and save Colonel O'Neill, but discover that the Asgard's enemy has returned with a vengeance. The System Lords seek an alliance with Earth against a common enemy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4303},{"seriesId":56,"episodeFileId":17494,"seasonNumber":8,"episodeNumber":2,"title":"New Order (2)","airDate":"2004-07-09","airDateUtc":"2004-07-10T01:45:00Z","overview":"While the Goa'uld threaten to attack Earth, SG-1 and the Asgard make a last, desperate stand against the Replicators, which have captured Major Carter and invaded the last outpost of the Asgard civilization.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":4304},{"seriesId":56,"episodeFileId":17495,"seasonNumber":8,"episodeNumber":3,"title":"Lockdown","airDate":"2004-07-23","airDateUtc":"2004-07-24T01:00:00Z","overview":"The S.G.C. is put under quarantine after a mysterious infection leaves a Russian officer in the infirmary -- but the disease may not be a disease at all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":4305},{"seriesId":56,"episodeFileId":17496,"seasonNumber":8,"episodeNumber":4,"title":"Zero Hour","airDate":"2004-07-30","airDateUtc":"2004-07-31T01:00:00Z","overview":"General O'Neill tries to settle into his new job, but faces never-ending crises - including the capture of SG-1 by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":4306},{"seriesId":56,"episodeFileId":17497,"seasonNumber":8,"episodeNumber":5,"title":"Icon","airDate":"2004-08-06","airDateUtc":"2004-08-07T01:00:00Z","overview":"Daniel is stranded on another planet after the team's arrival on an alien world sparks a violent civil war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":4307},{"seriesId":56,"episodeFileId":17498,"seasonNumber":8,"episodeNumber":6,"title":"Avatar","airDate":"2004-08-13","airDateUtc":"2004-08-14T01:00:00Z","overview":"Teal'c is trapped in a virtual reality simulation, in which he must defend the base from a Goa'uld super-soldier incursion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":4308},{"seriesId":56,"episodeFileId":17499,"seasonNumber":8,"episodeNumber":7,"title":"Affinity","airDate":"2004-08-20","airDateUtc":"2004-08-21T01:00:00Z","overview":"Teal'c becomes the chief suspect in a murder investigation after he moves into an apartment off-base. Carter considers her future with Pete.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":158,"unverifiedSceneNumbering":false,"id":4309},{"seriesId":56,"episodeFileId":17500,"seasonNumber":8,"episodeNumber":8,"title":"Covenant","airDate":"2004-08-27","airDateUtc":"2004-08-28T01:00:00Z","overview":"A businessman threatens to expose the secrets of alien life to the world, forcing Stargate Command to bring him into the loop.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":159,"unverifiedSceneNumbering":false,"id":4310},{"seriesId":56,"episodeFileId":17501,"seasonNumber":8,"episodeNumber":9,"title":"Sacrifices","airDate":"2004-09-10","airDateUtc":"2004-09-11T01:00:00Z","overview":"The impending wedding of his son is the least of Teal'c's worries when the Hak'tyl plan an uprising against the Goa'uld Moloc, driving a wedge between Teal'c and Ishta.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":160,"unverifiedSceneNumbering":false,"id":4311},{"seriesId":56,"episodeFileId":17502,"seasonNumber":8,"episodeNumber":10,"title":"Endgame","airDate":"2004-09-17","airDateUtc":"2004-09-18T01:00:00Z","overview":"The Stargate is stolen, leading SG-1 to discover that the Trust has taken control of an advanced ship in orbit. Teal'c investigates a series of wide-spread Jaffa deaths.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":161,"unverifiedSceneNumbering":false,"id":4312},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Behind The Stargate - Secrets Revealed","airDate":"2005-01-17","airDateUtc":"2005-01-18T02:00:00Z","overview":"The SCI FI Channel previewed the second half of Stargate SG-1 Season Eight and Stargate Atlantis Season One in the behind-the-scenes \"Lowdown\" special, \"Behind the Stargate: Secrets Revealed!\" The 1-hour special.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4143},{"seriesId":56,"episodeFileId":17503,"seasonNumber":8,"episodeNumber":11,"title":"Gemini","airDate":"2005-01-21","airDateUtc":"2005-01-22T02:00:00Z","overview":"A duplicate of Colonel Carter seeks help from Stargate Command in defeating the Replicator Fifth, who she claims has found a way to counter the Asgard's new weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":162,"unverifiedSceneNumbering":false,"id":4313},{"seriesId":56,"episodeFileId":17504,"seasonNumber":8,"episodeNumber":12,"title":"Prometheus Unbound","airDate":"2005-01-28","airDateUtc":"2005-01-29T02:00:00Z","overview":"After the Prometheus responds to a distress call from a Goa'uld ship, Daniel Jackson finds himself a captive when Earth's ship is stolen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":163,"unverifiedSceneNumbering":false,"id":4314},{"seriesId":56,"episodeFileId":17505,"seasonNumber":8,"episodeNumber":13,"title":"It's Good To Be King","airDate":"2005-02-04","airDateUtc":"2005-02-05T02:00:00Z","overview":"SG-1 comes to the aid of a world about to be invaded by the Goa'uld, only to discover that the local king is Earth's Harry Maybourne.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":164,"unverifiedSceneNumbering":false,"id":4315},{"seriesId":56,"episodeFileId":17506,"seasonNumber":8,"episodeNumber":14,"title":"Full Alert","airDate":"2005-02-11","airDateUtc":"2005-02-12T02:00:00Z","overview":"Relations between the U.S. and Russia are strained when Russian military leaders claim that the U.S. government has been compromised by the Goa'uld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":165,"unverifiedSceneNumbering":false,"id":4316},{"seriesId":56,"episodeFileId":17507,"seasonNumber":8,"episodeNumber":15,"title":"Citizen Joe","airDate":"2005-02-18","airDateUtc":"2005-02-19T02:00:00Z","overview":"Jack is confronted in his home by an irate barber...who claims to know everything about the Stargate project and SG-1.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":166,"unverifiedSceneNumbering":false,"id":4317},{"seriesId":56,"episodeFileId":17508,"seasonNumber":8,"episodeNumber":16,"title":"Reckoning (1)","airDate":"2005-02-25","airDateUtc":"2005-02-26T02:00:00Z","overview":"The Replicators begin a systematic attack of the Goa'uld, forcing Baal to come to Earth for help. The Jaffa Resistance risk their entire movement in an attempt to retake a holy city in Baal's domain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":167,"unverifiedSceneNumbering":false,"id":4318},{"seriesId":56,"episodeFileId":17509,"seasonNumber":8,"episodeNumber":17,"title":"Reckoning (2)","airDate":"2005-03-04","airDateUtc":"2005-03-05T02:00:00Z","overview":"The fate of the galaxy hangs in the balance as Sam and Jacob search for the only weapon capable of stopping the Replicator onslaught. O'Neill leads a defense of the S.G.C., while Daniel squares off against Replicator Carter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":168,"unverifiedSceneNumbering":false,"id":4319},{"seriesId":56,"episodeFileId":17510,"seasonNumber":8,"episodeNumber":18,"title":"Threads","airDate":"2005-03-11","airDateUtc":"2005-03-12T02:00:00Z","overview":"While Daniel finds himself in a mysterious diner suspended between death and ascension, Jacob's fate takes an unexpected turn, Jack and Sam consider their romantic lives, and Anubis unleashes his plan for galactic destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":169,"unverifiedSceneNumbering":false,"id":4320},{"seriesId":56,"episodeFileId":17511,"seasonNumber":8,"episodeNumber":19,"title":"Moebius (1)","airDate":"2005-03-18","airDateUtc":"2005-03-19T02:00:00Z","overview":"SG-1 travels back in time in a daring plan to steal a piece of Ancient technology from Ra, the powerful Goa'uld who ruled in ancient Egypt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":170,"unverifiedSceneNumbering":false,"id":4321},{"seriesId":56,"episodeFileId":17512,"seasonNumber":8,"episodeNumber":20,"title":"Moebius (2)","airDate":"2005-03-25","airDateUtc":"2005-03-26T02:00:00Z","overview":"With the timeline changed by SG-1's actions in the distant past, an alternate version of SG-1 must use the newly-discovered time ship to set things right.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":171,"unverifiedSceneNumbering":false,"id":4322},{"seriesId":56,"episodeFileId":17522,"seasonNumber":9,"episodeNumber":1,"title":"Avalon (1)","airDate":"2005-07-15","airDateUtc":"2005-07-16T01:00:00Z","overview":"An Air Force pilot attempts to reassemble SG-1 after they have gone their separate ways. An old \"friend\" arrives on Earth asking for Daniel's help in finding an ancient treasure -- and she won't take no for an answer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":172,"unverifiedSceneNumbering":false,"id":4323},{"seriesId":56,"episodeFileId":17523,"seasonNumber":9,"episodeNumber":2,"title":"Avalon (2)","airDate":"2005-07-22","airDateUtc":"2005-07-23T01:00:00Z","overview":"An Ancient communications device renders Daniel and Vala unconscious, sending their minds to another galaxy -- where they inhabit the bodies of two people persecuted by the followers of an evil religion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":173,"unverifiedSceneNumbering":false,"id":4324},{"seriesId":56,"episodeFileId":17524,"seasonNumber":9,"episodeNumber":3,"title":"Origin (3)","airDate":"2005-07-29","airDateUtc":"2005-07-30T01:00:00Z","overview":"Daniel comes face to face with the Ori, a fiery race of beings who demand the worship of mortals. Elsewhere, Stargate Command encounters the first Ori missionary in our galaxy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":174,"unverifiedSceneNumbering":false,"id":4325},{"seriesId":56,"episodeFileId":17525,"seasonNumber":9,"episodeNumber":4,"title":"The Ties That Bind","airDate":"2005-08-05","airDateUtc":"2005-08-06T01:00:00Z","overview":"Jackson and Mitchell must join Vala on an interplanetary scavenger hunt when they learn that they are still bound together by an alien energy field.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":175,"unverifiedSceneNumbering":false,"id":4326},{"seriesId":56,"episodeFileId":17526,"seasonNumber":9,"episodeNumber":5,"title":"The Powers That Be","airDate":"2005-08-12","airDateUtc":"2005-08-13T01:00:00Z","overview":"SG-1 visits a world whose people once worshipped Vala as a god -- and demand that she stand trial when she confesses to manipulating them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":176,"unverifiedSceneNumbering":false,"id":4327},{"seriesId":56,"episodeFileId":17527,"seasonNumber":9,"episodeNumber":6,"title":"Beachhead","airDate":"2005-08-19","airDateUtc":"2005-08-20T01:00:00Z","overview":"Samantha Carter returns to Stargate Command when the Ori seize control of a planet, using an expanding force field to gain a foothold in our galaxy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":177,"unverifiedSceneNumbering":false,"id":4328},{"seriesId":56,"episodeFileId":17528,"seasonNumber":9,"episodeNumber":7,"title":"Ex Deus Machina","airDate":"2005-08-26","airDateUtc":"2005-08-27T01:00:00Z","overview":"SG-1 investigates when evidence suggests that there are still Goa'uld hiding on Earth -- including a former System Lord. Tensions between Earth and the Free Jaffa continue to mount.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":178,"unverifiedSceneNumbering":false,"id":4329},{"seriesId":56,"episodeFileId":17529,"seasonNumber":9,"episodeNumber":8,"title":"Babylon","airDate":"2005-09-09","airDateUtc":"2005-09-10T01:00:00Z","overview":"Colonel Mitchell is injured in a skirmish with a warrior from a mythic tribe of rebel Jaffa, and is trained in their fighting techniques only so that he may engage in a ritual battle to the death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":179,"unverifiedSceneNumbering":false,"id":4330},{"seriesId":56,"episodeFileId":17530,"seasonNumber":9,"episodeNumber":9,"title":"Prototype","airDate":"2005-09-16","airDateUtc":"2005-09-17T01:00:00Z","overview":"SG-1 finds a genetically advanced Goa'uld-human hybrid created by Anubis, and returns him to Earth for study. But even keeping him alive may not be worth the risk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":180,"unverifiedSceneNumbering":false,"id":4331},{"seriesId":56,"episodeFileId":17531,"seasonNumber":9,"episodeNumber":10,"title":"The Fourth Horseman (1)","airDate":"2005-09-16","airDateUtc":"2005-09-17T01:45:00Z","overview":"Earth is infected with a deadly Ori plague, prompting an ally from SG-1's past to come to their aid. Gerak proposes that the Free Jaffa follow the Ori religion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":181,"unverifiedSceneNumbering":false,"id":4332},{"seriesId":56,"episodeFileId":17532,"seasonNumber":9,"episodeNumber":11,"title":"The Fourth Horseman (2)","airDate":"2006-01-06","airDateUtc":"2006-01-07T02:00:00Z","overview":"As the Ori plague spreads rapidly, SG-1 hopes that the Prior who caused the disease may hold the key to its cure. Gerak tries to rally the Jaffa to the Ori's cause, prompting Teal'c and Bra'tac to initiate a resistance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":182,"unverifiedSceneNumbering":false,"id":4333},{"seriesId":56,"episodeFileId":17533,"seasonNumber":9,"episodeNumber":12,"title":"Collateral Damage","airDate":"2006-01-13","airDateUtc":"2006-01-14T02:00:00Z","overview":"When SG-1 travels to an Asgard Protected Planet, Colonel Mitchell is accused of a murder he did not commit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":183,"unverifiedSceneNumbering":false,"id":4334},{"seriesId":56,"episodeFileId":17534,"seasonNumber":9,"episodeNumber":13,"title":"Ripple Effect","airDate":"2006-01-20","airDateUtc":"2006-01-21T02:00:00Z","overview":"Multiple SG-1s show up at Stargate Command, leading the \"real\" team to conclude that they have each been inadvertantly displaced from different parallel realities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":184,"unverifiedSceneNumbering":false,"id":4335},{"seriesId":56,"episodeFileId":17535,"seasonNumber":9,"episodeNumber":14,"title":"Stronghold","airDate":"2006-01-27","airDateUtc":"2006-01-28T02:00:00Z","overview":"Baal kidnaps Teal'c as part of a plot to brainwash those Jaffa advocating a move toward democracy. Cameron Mitchell learns that an old friend is about to die.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":185,"unverifiedSceneNumbering":false,"id":4336},{"seriesId":56,"episodeFileId":17536,"seasonNumber":9,"episodeNumber":15,"title":"Ethon","airDate":"2006-02-03","airDateUtc":"2006-02-04T02:00:00Z","overview":"Daniel is imprisoned on a world under the influence of the Ori, and the Prometheus is caught in a firefight when SG-1 tries to rescue him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":186,"unverifiedSceneNumbering":false,"id":4337},{"seriesId":56,"episodeFileId":17537,"seasonNumber":9,"episodeNumber":16,"title":"Off the Grid","airDate":"2006-02-10","airDateUtc":"2006-02-11T02:00:00Z","overview":"SG-1 is captured after a deal with the Lucian Alliance goes bad ... and the planet's Stargate goes missing. Meanwhile, a former System Lord attempts to rebuild his empire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":187,"unverifiedSceneNumbering":false,"id":4338},{"seriesId":56,"episodeFileId":17538,"seasonNumber":9,"episodeNumber":17,"title":"The Scourge","airDate":"2006-02-17","airDateUtc":"2006-02-18T02:00:00Z","overview":"A tour of an off-world research base for a group of foreign diplomats turns dangerous when an insidious insect species gets loose.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":188,"unverifiedSceneNumbering":false,"id":4339},{"seriesId":56,"episodeFileId":17539,"seasonNumber":9,"episodeNumber":18,"title":"Arthur's Mantle","airDate":"2006-02-24","airDateUtc":"2006-02-25T02:00:00Z","overview":"Mitchell and Carter are shifted to another dimension, making them invisible to everyone at the S.G.C. Meanwhile, Teal'c and SG-9 discover that the Sodan have been brutally attacked.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":189,"unverifiedSceneNumbering":false,"id":4340},{"seriesId":56,"episodeFileId":17540,"seasonNumber":9,"episodeNumber":19,"title":"Crusade","airDate":"2006-03-03","airDateUtc":"2006-03-04T02:00:00Z","overview":"Vala Mal Doran makes contact with Stargate Command from the Ori home galaxy, and tells the story of her life undercover in a village of followers building the Ori's invasion fleet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":190,"unverifiedSceneNumbering":false,"id":4341},{"seriesId":56,"episodeFileId":17541,"seasonNumber":9,"episodeNumber":20,"title":"Camelot","airDate":"2006-03-10","airDateUtc":"2006-03-11T02:00:00Z","overview":"SG-1 discovers the village of Camelot on an alien world, and must face Merlin's security system when they go in search of an Ancient weapon. Elsewhere, Earth and its allies assemble a fleet when a working Ori Supergate is discovered.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":191,"unverifiedSceneNumbering":false,"id":4342},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Stargate SG-1: True Science","airDate":"2006-07-14","airDateUtc":"2006-07-15T01:00:00Z","overview":"Amanda Tapping takes us on a fascinating look at how many aspects surrounding SG-1 have a basis in real science.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4144},{"seriesId":56,"episodeFileId":17680,"seasonNumber":10,"episodeNumber":1,"title":"Flesh and Blood","airDate":"2006-07-14","airDateUtc":"2006-07-15T01:00:00Z","overview":"As the Ori invade the Jaffa planet Chulak, Vala and Daniel must deal with their leader: Vala's young daughter, rapidly aged by the Ori to serve their purposes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":192,"unverifiedSceneNumbering":false,"id":4343},{"seriesId":56,"episodeFileId":17681,"seasonNumber":10,"episodeNumber":2,"title":"Morpheus","airDate":"2006-07-21","airDateUtc":"2006-07-22T01:00:00Z","overview":"SG-1 investigates a problem off-world and soon finds that they have become victims themselves: they cannot stay awake. Meanwhile, Vala Mal Doran undergoes an evaluation on Earth, hoping to join SG-1.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":193,"unverifiedSceneNumbering":false,"id":4344},{"seriesId":56,"episodeFileId":17682,"seasonNumber":10,"episodeNumber":3,"title":"The Pegasus Project","airDate":"2006-07-28","airDateUtc":"2006-07-29T01:00:00Z","overview":"Daniel and Vala travel to Atlantis in search of Merlin's anti-Ori weapon, while Sam, and Mitchell join forces with Dr. McKay to lock out the Ori supergate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":194,"unverifiedSceneNumbering":false,"id":4345},{"seriesId":56,"episodeFileId":17683,"seasonNumber":10,"episodeNumber":4,"title":"Insiders","airDate":"2006-08-04","airDateUtc":"2006-08-05T01:00:00Z","overview":"When Baal comes to Earth seeking help, Stargate Command must capture his clones and determine which one is the genuine article.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":195,"unverifiedSceneNumbering":false,"id":4346},{"seriesId":56,"episodeFileId":17684,"seasonNumber":10,"episodeNumber":5,"title":"Uninvited","airDate":"2006-08-11","airDateUtc":"2006-08-12T01:00:00Z","overview":"Teal'c discovers a world where people are being savagely attacked by an elusive creature, leading SG-1 to a stunning discovery about its potential origin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":196,"unverifiedSceneNumbering":false,"id":4347},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Sci Fi Inside: Stargate SG-1 200","airDate":"2006-08-18","airDateUtc":"2006-08-19T01:00:00Z","overview":"The 200th episode of the venerated sci-fi series is discussed during this special.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4145},{"seriesId":56,"episodeFileId":17685,"seasonNumber":10,"episodeNumber":6,"title":"200","airDate":"2006-08-18","airDateUtc":"2006-08-19T01:00:00Z","overview":"Martin Lloyd seeks out SG-1 for assistance when his failed TV show based on the real Stargate program becomes a feature film.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":197,"unverifiedSceneNumbering":false,"id":4348},{"seriesId":56,"episodeFileId":17686,"seasonNumber":10,"episodeNumber":7,"title":"Counterstrike","airDate":"2006-08-25","airDateUtc":"2006-08-26T01:00:00Z","overview":"The Jaffa take the fight to the Ori, using a genocidal weapon on their new worshipers and landing SG-1 in the middle of a war they can't control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":198,"unverifiedSceneNumbering":false,"id":4349},{"seriesId":56,"episodeFileId":17687,"seasonNumber":10,"episodeNumber":8,"title":"Memento Mori","airDate":"2006-09-08","airDateUtc":"2006-09-09T01:00:00Z","overview":"Striken with amnesia and on the run, Vala takes a job as a waitress as she tries to piece together who she is and what happened to her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":199,"unverifiedSceneNumbering":false,"id":4350},{"seriesId":56,"episodeFileId":17688,"seasonNumber":10,"episodeNumber":9,"title":"Company of Thieves","airDate":"2006-09-15","airDateUtc":"2006-09-16T01:00:00Z","overview":"Cameron Mitchell must go undercover inside the deadly Lucian Alliance to prevent his teammates from becoming casualties of an Alliance civil war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":200,"unverifiedSceneNumbering":false,"id":4351},{"seriesId":56,"episodeFileId":17689,"seasonNumber":10,"episodeNumber":10,"title":"Quest (1)","airDate":"2006-09-22","airDateUtc":"2006-09-23T01:00:00Z","overview":"SG-1 races against Baal in the hunt to find the Sangraal, Merlin's anti-Ori weapon, and comes up against a series of ancient trials.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":201,"unverifiedSceneNumbering":false,"id":4352},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Behind The Mythology of Stargate SG-1","airDate":"2007-04-13","airDateUtc":"2007-04-14T01:00:00Z","overview":"This special deals with how the SG-1 series intertwined many of Earth's mythologies into its plots and story lines, and about the many alien character connections with Earth\u2019s great mythological figures.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4148},{"seriesId":56,"episodeFileId":17690,"seasonNumber":10,"episodeNumber":11,"title":"Quest (2)","airDate":"2007-04-13","airDateUtc":"2007-04-14T01:00:00Z","overview":"When the team finds Merlin himself, they must help him complete the Sangraal weapon before Adria and her Ori forces can track them down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":202,"unverifiedSceneNumbering":false,"id":4353},{"seriesId":56,"episodeFileId":17691,"seasonNumber":10,"episodeNumber":12,"title":"Line in the Sand","airDate":"2007-04-20","airDateUtc":"2007-04-21T01:00:00Z","overview":"SG-1 tries to defend a planet from the Ori by hiding its people in another dimension. Vala attempts to convince her husband Tomin of the Ori's true motives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":203,"unverifiedSceneNumbering":false,"id":4354},{"seriesId":56,"episodeFileId":17692,"seasonNumber":10,"episodeNumber":13,"title":"The Road Not Taken","airDate":"2007-04-27","airDateUtc":"2007-04-28T01:00:00Z","overview":"An experiment gone wrong pulls Samantha Carter into a parallel reality, where she must save Earth from an Ori assault before she will be allowed to return home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":204,"unverifiedSceneNumbering":false,"id":4355},{"seriesId":56,"episodeFileId":17693,"seasonNumber":10,"episodeNumber":14,"title":"The Shroud","airDate":"2007-05-04","airDateUtc":"2007-05-05T01:00:00Z","overview":"When SG-1 discovers that Daniel Jackson has been turned into a Prior of the Ori, they must determine whether or not his plan to destroy the Ori is genuine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":205,"unverifiedSceneNumbering":false,"id":4356},{"seriesId":56,"episodeFileId":17694,"seasonNumber":10,"episodeNumber":15,"title":"Bounty","airDate":"2007-05-11","airDateUtc":"2007-05-12T01:00:00Z","overview":"When the Lucian Alliance puts a bounty on SG-1's heads, Cameron Mitchell finds himself a target while attending his high school reunion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":206,"unverifiedSceneNumbering":false,"id":4357},{"seriesId":56,"episodeFileId":17695,"seasonNumber":10,"episodeNumber":16,"title":"Bad Guys","airDate":"2007-05-18","airDateUtc":"2007-05-19T01:00:00Z","overview":"SG-1 realizes they have stepped through the gate into another planet's museum -- but are mistaken for a band of zealous rebels who have taken hostages.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":207,"unverifiedSceneNumbering":false,"id":4358},{"seriesId":56,"episodeFileId":17696,"seasonNumber":10,"episodeNumber":17,"title":"Talion","airDate":"2007-06-01","airDateUtc":"2007-06-02T01:00:00Z","overview":"When a terrorist attack decimates a Jaffa summit Teal'c strikes out on a quest for revenge, believing that the perpetrator is one of his own pupils.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":208,"unverifiedSceneNumbering":false,"id":4359},{"seriesId":56,"episodeFileId":17697,"seasonNumber":10,"episodeNumber":18,"title":"Family Ties","airDate":"2007-06-08","airDateUtc":"2007-06-09T01:00:00Z","overview":"Earth provides sanctuary for Vala's estranged, con artist father after he provides intel about a Jaffa plot to attack the planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":209,"unverifiedSceneNumbering":false,"id":4360},{"seriesId":56,"episodeFileId":17698,"seasonNumber":10,"episodeNumber":19,"title":"Dominion","airDate":"2007-06-15","airDateUtc":"2007-06-16T01:00:00Z","overview":"SG-1 hatches an elaborate plan to try and capture Adria, using Vala as bait.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":210,"unverifiedSceneNumbering":false,"id":4361},{"seriesId":56,"episodeFileId":17699,"seasonNumber":10,"episodeNumber":20,"title":"Unending","airDate":"2007-06-22","airDateUtc":"2007-06-23T01:00:00Z","overview":"Trapped on board the Odyssey, the members of SG-1 must live out the rest of their lives together when Carter activates a time dilation field to save the ship from destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":211,"unverifiedSceneNumbering":false,"id":4362},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Ark of Truth","airDate":"2008-03-11","airDateUtc":"2008-03-12T01:00:00Z","overview":"As SG-1 searches for an Ancient artifact which they hope can defeat the armies of the Ori, they learn more Ori ships are about to be sent through the Supergate to launch a final assault on Earth. Daniel discovers that the artifact, the Ark of Truth, may be in the Ori home galaxy, and SG-1 embarks aboard the Odyssey to find it, and pre-empt the attack. The IOA has a plan of their own and SG-1 ends up in a distant galaxy fighting two powerful enemies.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":212,"unverifiedSceneNumbering":false,"id":4146},{"seriesId":56,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Continuum","airDate":"2008-07-29","airDateUtc":"2008-07-30T01:00:00Z","overview":"While SG-1 attends the execution of Ba'al, the last of the Goa'uld System Lords, Teal'c and Vala inexplicably disappear into thin air. Carter, Daniel and Mitchell race back to a world where history has been changed: the Stargate program has been erased from the timeline. As they try to convince the authorities what's happened, a fleet of Goa'uld motherships arrives in orbit, led by Ba'al, his queen, Qetesh (Vala), and his first prime, Teal'c. SG-1 must find the Stargate and set things right before the world is enslaved by the Goa'uld.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":213,"unverifiedSceneNumbering":false,"id":4147}],"episodeFile":[{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Serpent's Lair (3)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E01.The Serpent's Lair (3)-Bluray-1080p.mkv","size":2451535679,"dateAdded":"2021-01-18T19:45:43.305514Z","sceneName":"Stargate.SG-1.S02E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6932228,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17061},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E02.In the Line of Duty-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E02.In the Line of Duty-Bluray-1080p.mkv","size":2277082447,"dateAdded":"2021-01-18T19:47:39.839344Z","sceneName":"Stargate.SG-1.S02E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6406370,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17062},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Prisoners-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E03.Prisoners-Bluray-1080p.mkv","size":2163020251,"dateAdded":"2021-01-18T19:49:32.60006Z","sceneName":"Stargate.SG-1.S02E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6061779,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17063},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Gamekeeper-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E04.The Gamekeeper-Bluray-1080p.mkv","size":2696666790,"dateAdded":"2021-01-18T19:51:25.073656Z","sceneName":"Stargate.SG-1.S02E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7669305,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17064},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Need-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E05.Need-Bluray-1080p.mkv","size":2585340558,"dateAdded":"2021-01-18T19:53:23.378458Z","sceneName":"Stargate.SG-1.S02E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7335821,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17065},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Thor's Chariot-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E06.Thor's Chariot-Bluray-1080p.mkv","size":2981628493,"dateAdded":"2021-01-18T19:55:18.080567Z","sceneName":"Stargate.SG-1.S02E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8529462,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17066},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Message in a Bottle-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E07.Message in a Bottle-Bluray-1080p.mkv","size":2133476848,"dateAdded":"2021-01-18T19:57:18.783642Z","sceneName":"Stargate.SG-1.S02E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5972110,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17067},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Family-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E08.Family-Bluray-1080p.mkv","size":2449735397,"dateAdded":"2021-01-18T19:59:11.128169Z","sceneName":"Stargate.SG-1.S02E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6926690,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17068},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Secrets-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E09.Secrets-Bluray-1080p.mkv","size":2206222972,"dateAdded":"2021-01-18T20:01:04.382528Z","sceneName":"Stargate.SG-1.S02E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6192112,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17069},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Bane-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E10.Bane-Bluray-1080p.mkv","size":2258354457,"dateAdded":"2021-01-18T20:02:57.548798Z","sceneName":"Stargate.SG-1.S02E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6349591,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17070},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Tok'ra (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E11.The Tok'ra (1)-Bluray-1080p.mkv","size":2189731107,"dateAdded":"2021-01-18T20:04:49.543094Z","sceneName":"Stargate.SG-1.S02E11.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6141095,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17071},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Tok'ra (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E12.The Tok'ra (2)-Bluray-1080p.mkv","size":2320676544,"dateAdded":"2021-01-18T20:06:40.959904Z","sceneName":"Stargate.SG-1.S02E12.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6535764,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17072},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Spirits-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E13.Spirits-Bluray-1080p.mkv","size":2564749968,"dateAdded":"2021-01-18T20:08:33.512013Z","sceneName":"Stargate.SG-1.S02E13.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7272459,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17073},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Touchstone-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E14.Touchstone-Bluray-1080p.mkv","size":2376688918,"dateAdded":"2021-01-18T20:10:29.050185Z","sceneName":"Stargate.SG-1.S02E14.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6704706,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17074},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Fifth Race-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E15.The Fifth Race-Bluray-1080p.mkv","size":2364319613,"dateAdded":"2021-01-18T20:12:23.537306Z","sceneName":"Stargate.SG-1.S02E15.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6667914,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17075},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E16.A Matter of Time-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E16.A Matter of Time-Bluray-1080p.mkv","size":3002472417,"dateAdded":"2021-01-18T20:14:15.975856Z","sceneName":"Stargate.SG-1.S02E16.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8591387,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17076},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Holiday-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E17.Holiday-Bluray-1080p.mkv","size":2879622476,"dateAdded":"2021-01-18T20:16:14.224274Z","sceneName":"Stargate.SG-1.S02E17.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8222778,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17077},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Serpent's Song-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E18.Serpent's Song-Bluray-1080p.mkv","size":2250630266,"dateAdded":"2021-01-18T20:18:11.254688Z","sceneName":"Stargate.SG-1.S02E18.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6325692,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17078},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E19.One False Step-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E19.One False Step-Bluray-1080p.mkv","size":2976387019,"dateAdded":"2021-01-18T20:20:03.800842Z","sceneName":"Stargate.SG-1.S02E19.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8514284,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17079},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Show and Tell-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E20.Show and Tell-Bluray-1080p.mkv","size":2975023269,"dateAdded":"2021-01-18T20:22:03.839775Z","sceneName":"Stargate.SG-1.S02E20.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8509781,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17080},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E21.1969-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E21.1969-Bluray-1080p.mkv","size":2616187020,"dateAdded":"2021-01-18T20:24:02.156126Z","sceneName":"Stargate.SG-1.S02E21.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7428118,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17081},{"seriesId":56,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Out of Mind (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 02\/S02E22.Out of Mind (1)-Bluray-1080p.mkv","size":2299083920,"dateAdded":"2021-01-18T20:26:02.267133Z","sceneName":"Stargate.SG-1.S02E22.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6473838,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17082},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E01.S01E02.Children of the Gods-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E01.S01E02.Children of the Gods-Bluray-1080p Proper.mkv","size":4641045850,"dateAdded":"2021-01-19T12:04:28.917007Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5915525,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1070","runTime":"1:37:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17084},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Enemy Within-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E03.The Enemy Within-Bluray-1080p Proper.mkv","size":1774117235,"dateAdded":"2021-01-19T12:05:29.438013Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4889230,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17085},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Emancipation-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E04.Emancipation-Bluray-1080p Proper.mkv","size":2667725546,"dateAdded":"2021-01-19T12:05:49.679091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7585073,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17086},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Broca Divide-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E05.The Broca Divide-Bluray-1080p Proper.mkv","size":2309767132,"dateAdded":"2021-01-19T12:06:17.774903Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6504656,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17087},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The First Commandment-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E06.The First Commandment-Bluray-1080p Proper.mkv","size":2727205541,"dateAdded":"2021-01-19T12:06:46.063572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7764197,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17088},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Cold Lazarus-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E07.Cold Lazarus-Bluray-1080p Proper.mkv","size":2193980776,"dateAdded":"2021-01-19T12:07:13.776163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6157123,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17089},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Nox-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E08.The Nox-Bluray-1080p Proper.mkv","size":2726287306,"dateAdded":"2021-01-19T12:07:35.855522Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7760705,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17090},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Brief Candle-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E09.Brief Candle-Bluray-1080p Proper.mkv","size":2045415387,"dateAdded":"2021-01-19T12:08:04.051064Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5708256,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17091},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Thor's Hammer-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E10.Thor's Hammer-Bluray-1080p Proper.mkv","size":2033625143,"dateAdded":"2021-01-19T12:08:26.12699Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5673433,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17092},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Torment of Tantalus-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E11.The Torment of Tantalus-Bluray-1080p Proper.mkv","size":2047882124,"dateAdded":"2021-01-19T12:08:47.475036Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5715910,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17093},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Bloodlines-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E12.Bloodlines-Bluray-1080p Proper.mkv","size":2355229283,"dateAdded":"2021-01-19T12:09:09.938048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6643374,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17094},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Fire and Water-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E13.Fire and Water-Bluray-1080p Proper.mkv","size":2767736855,"dateAdded":"2021-01-19T12:09:33.102926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7886242,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17095},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Hathor-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E14.Hathor-Bluray-1080p Proper.mkv","size":2144472189,"dateAdded":"2021-01-19T12:10:00.527429Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6006812,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17096},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Singularity-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E15.Singularity-Bluray-1080p Proper.mkv","size":2079420777,"dateAdded":"2021-01-19T12:10:21.808182Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5812239,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17097},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Cor-Ai-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E16.Cor-Ai-Bluray-1080p Proper.mkv","size":2041827403,"dateAdded":"2021-01-19T12:10:43.347458Z","releaseGroup":"Ai","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5697319,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17098},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Enigma-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E17.Enigma-Bluray-1080p Proper.mkv","size":2366798485,"dateAdded":"2021-01-19T12:11:04.504755Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6675642,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17099},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Solitudes-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E18.Solitudes-Bluray-1080p Proper.mkv","size":1721594737,"dateAdded":"2021-01-19T12:11:33.139334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4732852,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17100},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Tin Man-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E19.Tin Man-Bluray-1080p Proper.mkv","size":1824726809,"dateAdded":"2021-01-19T12:11:53.184217Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5043306,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17101},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E20.There But For the Grace of God-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E20.There But For the Grace of God-Bluray-1080p Proper.mkv","size":2124194765,"dateAdded":"2021-01-19T12:12:14.290137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5945173,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17102},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Politics (1)-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E21.Politics (1)-Bluray-1080p Proper.mkv","size":2247481428,"dateAdded":"2021-01-19T12:12:37.998158Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315988,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17103},{"seriesId":56,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Within the Serpent's Grasp (2)-Bluray-1080p Proper.mkv","path":"\/tv\/Stargate SG-1\/Season 01\/S01E22.Within the Serpent's Grasp (2)-Bluray-1080p Proper.mkv","size":2039675636,"dateAdded":"2021-01-19T12:13:01.331137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5692766,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17104},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Into the Fire (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E01.Into the Fire (2)-Bluray-1080p.mkv","size":2790389865,"dateAdded":"2021-01-20T21:36:30.665734Z","sceneName":"Stargate.SG-1.S03E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7954980,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17116},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Seth-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E02.Seth-Bluray-1080p.mkv","size":2829151438,"dateAdded":"2021-01-20T21:38:27.540253Z","sceneName":"Stargate.SG-1.S03E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8069547,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17117},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Fair Game-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E03.Fair Game-Bluray-1080p.mkv","size":2763016250,"dateAdded":"2021-01-20T21:40:26.367861Z","sceneName":"Stargate.SG-1.S03E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7868161,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17118},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Legacy-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E04.Legacy-Bluray-1080p.mkv","size":2949956402,"dateAdded":"2021-01-20T21:42:24.006619Z","sceneName":"Stargate.SG-1.S03E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8433690,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17119},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Learning Curve-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E05.Learning Curve-Bluray-1080p.mkv","size":3905410045,"dateAdded":"2021-01-20T21:44:26.599359Z","sceneName":"Stargate.SG-1.S03E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11312406,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17120},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Point of View-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E06.Point of View-Bluray-1080p.mkv","size":3022695631,"dateAdded":"2021-01-20T21:46:32.009893Z","sceneName":"Stargate.SG-1.S03E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8653611,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17121},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Deadman Switch-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E07.Deadman Switch-Bluray-1080p.mkv","size":3088395859,"dateAdded":"2021-01-20T21:48:29.497833Z","sceneName":"Stargate.SG-1.S03E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8851416,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17122},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Demons-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E08.Demons-Bluray-1080p.mkv","size":2853058086,"dateAdded":"2021-01-20T21:50:32.345154Z","sceneName":"Stargate.SG-1.S03E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8143202,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17123},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Rules of Engagement-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E09.Rules of Engagement-Bluray-1080p.mkv","size":2176996596,"dateAdded":"2021-01-20T21:52:28.776367Z","sceneName":"Stargate.SG-1.S03E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6104002,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17124},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Forever in a Day-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E10.Forever in a Day-Bluray-1080p.mkv","size":2139187842,"dateAdded":"2021-01-20T21:54:19.808286Z","sceneName":"Stargate.SG-1.S03E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5992597,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17125},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Past and Present-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E11.Past and Present-Bluray-1080p.mkv","size":2185290947,"dateAdded":"2021-01-20T21:56:14.913814Z","sceneName":"Stargate.SG-1.S03E11.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6127643,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17126},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Jolinar's Memories (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E12.Jolinar's Memories (1)-Bluray-1080p.mkv","size":1986583218,"dateAdded":"2021-01-20T21:58:05.893632Z","sceneName":"Stargate.SG-1.S03E12.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5530933,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17127},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Devil You Know (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E13.The Devil You Know (2)-Bluray-1080p.mkv","size":2171179550,"dateAdded":"2021-01-20T21:59:56.943009Z","sceneName":"Stargate.SG-1.S03E13.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6086560,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17128},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Foothold-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E14.Foothold-Bluray-1080p.mkv","size":2353665292,"dateAdded":"2021-01-20T22:01:47.342967Z","sceneName":"Stargate.SG-1.S03E14.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6638070,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17129},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Pretense-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E15.Pretense-Bluray-1080p.mkv","size":2912082302,"dateAdded":"2021-01-20T22:03:38.027929Z","sceneName":"Stargate.SG-1.S03E15.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8318499,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17130},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Urgo-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E16.Urgo-Bluray-1080p.mkv","size":2316158630,"dateAdded":"2021-01-20T22:05:36.315797Z","sceneName":"Stargate.SG-1.S03E16.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6521353,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17131},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E17.A Hundred Days-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E17.A Hundred Days-Bluray-1080p.mkv","size":2560404087,"dateAdded":"2021-01-20T22:07:28.249924Z","sceneName":"Stargate.SG-1.S03E17.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7260341,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17132},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Shades of Grey-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E18.Shades of Grey-Bluray-1080p.mkv","size":2265709975,"dateAdded":"2021-01-20T22:09:24.09558Z","sceneName":"Stargate.SG-1.S03E18.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6370498,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17133},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E19.New Ground-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E19.New Ground-Bluray-1080p.mkv","size":2558390909,"dateAdded":"2021-01-20T22:11:17.653073Z","sceneName":"Stargate.SG-1.S03E19.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7254816,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17134},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Maternal Instinct-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E20.Maternal Instinct-Bluray-1080p.mkv","size":2130966603,"dateAdded":"2021-01-20T22:13:13.436971Z","sceneName":"Stargate.SG-1.S03E20.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5965984,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17135},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Crystal Skull-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E21.Crystal Skull-Bluray-1080p.mkv","size":2812282932,"dateAdded":"2021-01-20T22:15:06.486179Z","sceneName":"Stargate.SG-1.S03E21.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8018609,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17136},{"seriesId":56,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Nemesis (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 03\/S03E22.Nemesis (1)-Bluray-1080p.mkv","size":1972472097,"dateAdded":"2021-01-20T22:17:03.751977Z","sceneName":"Stargate.SG-1.S03E22.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5487878,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17137},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Small Victories (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E01.Small Victories (2)-Bluray-1080p.mkv","size":2723371944,"dateAdded":"2021-01-24T17:09:27.923654Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7650421,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17149},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Other Side-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E02.The Other Side-Bluray-1080p.mkv","size":2286917247,"dateAdded":"2021-01-24T17:11:28.686908Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6335377,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17150},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Upgrades-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E03.Upgrades-Bluray-1080p.mkv","size":2523604567,"dateAdded":"2021-01-24T17:13:23.019708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7048151,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17151},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Crossroads-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E04.Crossroads-Bluray-1080p.mkv","size":2324068871,"dateAdded":"2021-01-24T17:15:25.53227Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6446404,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17152},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Divide and Conquer-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E05.Divide and Conquer-Bluray-1080p.mkv","size":1857739144,"dateAdded":"2021-01-24T17:17:25.595559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5036865,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17153},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Window of Opportunity-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E06.Window of Opportunity-Bluray-1080p.mkv","size":2175544909,"dateAdded":"2021-01-24T17:19:18.559002Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6255720,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17154},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Watergate-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E07.Watergate-Bluray-1080p.mkv","size":2143893516,"dateAdded":"2021-01-24T17:21:13.722372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5904135,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17155},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The First Ones-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E08.The First Ones-Bluray-1080p.mkv","size":2599739358,"dateAdded":"2021-01-24T17:23:08.256233Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7287227,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17156},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Scorched Earth-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E09.Scorched Earth-Bluray-1080p.mkv","size":2600310436,"dateAdded":"2021-01-24T17:25:11.786023Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7279493,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17157},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Beneath the Surface-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E10.Beneath the Surface-Bluray-1080p.mkv","size":2021342062,"dateAdded":"2021-01-24T17:27:14.125501Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5536550,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17158},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Point of No Return-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E11.Point of No Return-Bluray-1080p.mkv","size":2342945485,"dateAdded":"2021-01-24T17:29:08.356549Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6498438,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17159},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Tangent-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E12.Tangent-Bluray-1080p.mkv","size":1750780390,"dateAdded":"2021-01-24T17:31:05.646296Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4724091,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17160},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The Curse-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E13.The Curse-Bluray-1080p.mkv","size":1994294995,"dateAdded":"2021-01-24T17:32:57.077927Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5444755,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17161},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E14.The Serpent's Venom-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E14.The Serpent's Venom-Bluray-1080p.mkv","size":1912722510,"dateAdded":"2021-01-24T17:34:53.108619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5198737,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17162},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Chain Reaction-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E15.Chain Reaction-Bluray-1080p.mkv","size":2037756047,"dateAdded":"2021-01-24T17:36:46.595353Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5573259,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17163},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E16.2010-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E16.2010-Bluray-1080p.mkv","size":2175496125,"dateAdded":"2021-01-24T17:38:37.50449Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5991392,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17164},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Absolute Power-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E17.Absolute Power-Bluray-1080p.mkv","size":1827683408,"dateAdded":"2021-01-24T17:40:44.382837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4946553,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17165},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E18.The Light-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E18.The Light-Bluray-1080p.mkv","size":2063238618,"dateAdded":"2021-01-24T17:42:52.746409Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5653255,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17166},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Prodigy-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E19.Prodigy-Bluray-1080p.mkv","size":2376700879,"dateAdded":"2021-01-24T17:44:59.559438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6602688,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17167},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Entity-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E20.Entity-Bluray-1080p.mkv","size":1981062586,"dateAdded":"2021-01-24T17:47:10.486106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5418661,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17168},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Double Jeopardy-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E21.Double Jeopardy-Bluray-1080p.mkv","size":2324384275,"dateAdded":"2021-01-24T17:49:11.747471Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6439136,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17169},{"seriesId":56,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Exodus (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 04\/S04E22.Exodus (1)-Bluray-1080p.mkv","size":2427565190,"dateAdded":"2021-01-24T17:51:20.385485Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6759410,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17170},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Enemies (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E01.Enemies (2)-Bluray-1080p.mkv","size":3666224752,"dateAdded":"2021-01-28T17:44:44.450691Z","sceneName":"Stargate.SG-1.S05E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10503662,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17287},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Threshold (3)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E02.Threshold (3)-Bluray-1080p.mkv","size":2034313298,"dateAdded":"2021-01-28T17:46:58.071652Z","sceneName":"Stargate.SG-1.S05E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5569321,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17288},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Ascension-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E03.Ascension-Bluray-1080p.mkv","size":2108563680,"dateAdded":"2021-01-28T17:48:52.498452Z","sceneName":"Stargate.SG-1.S05E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5797793,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17289},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E04.The Fifth Man-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E04.The Fifth Man-Bluray-1080p.mkv","size":2014435186,"dateAdded":"2021-01-28T17:50:52.844877Z","sceneName":"Stargate.SG-1.S05E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5510256,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17290},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Red Sky-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E05.Red Sky-Bluray-1080p.mkv","size":2373420009,"dateAdded":"2021-01-28T17:52:44.956176Z","sceneName":"Stargate.SG-1.S05E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6590430,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17291},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Rite of Passage-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E06.Rite of Passage-Bluray-1080p.mkv","size":1720261058,"dateAdded":"2021-01-28T17:54:41.806318Z","sceneName":"Stargate.SG-1.S05E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4619030,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17292},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Beast of Burden-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E07.Beast of Burden-Bluray-1080p.mkv","size":2059629496,"dateAdded":"2021-01-28T17:56:30.470366Z","sceneName":"Stargate.SG-1.S05E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5645475,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17293},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E08.The Tomb-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E08.The Tomb-Bluray-1080p.mkv","size":1821872584,"dateAdded":"2021-01-28T17:58:24.144354Z","sceneName":"Stargate.SG-1.S05E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4928402,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17294},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Between Two Fires-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E09.Between Two Fires-Bluray-1080p.mkv","size":1903672164,"dateAdded":"2021-01-28T18:00:16.379798Z","sceneName":"Stargate.SG-1.S05E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5174892,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17295},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E10.2001-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E10.2001-Bluray-1080p.mkv","size":1916564053,"dateAdded":"2021-01-28T18:02:08.788476Z","sceneName":"Stargate.SG-1.S05E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5215942,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17296},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Desperate Measures-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E11.Desperate Measures-Bluray-1080p.mkv","size":1665316787,"dateAdded":"2021-01-28T18:03:58.762071Z","sceneName":"Stargate.SG-1.S05E11.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4459644,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17297},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Wormhole X-Treme!-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E12.Wormhole X-Treme!-Bluray-1080p.mkv","size":1960064370,"dateAdded":"2021-01-28T18:05:53.619421Z","sceneName":"Stargate.SG-1.S05E12.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5348811,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17298},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Proving Ground-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E13.Proving Ground-Bluray-1080p.mkv","size":2026027709,"dateAdded":"2021-01-28T18:07:52.993426Z","sceneName":"Stargate.SG-1.S05E13.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5544614,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17299},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E14.48 Hours-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E14.48 Hours-Bluray-1080p.mkv","size":1946881132,"dateAdded":"2021-01-28T18:09:48.605599Z","sceneName":"Stargate.SG-1.S05E14.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5297082,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17300},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Summit (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E15.Summit (1)-Bluray-1080p.mkv","size":2140711759,"dateAdded":"2021-01-28T18:11:41.443402Z","sceneName":"Stargate.SG-1.S05E15.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5891814,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17301},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Last Stand (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E16.Last Stand (2)-Bluray-1080p.mkv","size":2137647139,"dateAdded":"2021-01-28T18:13:32.647534Z","sceneName":"Stargate.SG-1.S05E16.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5883319,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17302},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E17.Fail Safe-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E17.Fail Safe-Bluray-1080p.mkv","size":1897654748,"dateAdded":"2021-01-28T18:15:23.82201Z","sceneName":"Stargate.SG-1.S05E17.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5159952,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17303},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E18.The Warrior-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E18.The Warrior-Bluray-1080p.mkv","size":2655533154,"dateAdded":"2021-01-28T18:17:12.131397Z","sceneName":"Stargate.SG-1.S05E18.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7442843,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17304},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Menace-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E19.Menace-Bluray-1080p.mkv","size":1915255404,"dateAdded":"2021-01-28T18:19:06.30902Z","sceneName":"Stargate.SG-1.S05E19.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5211583,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17305},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E20.The Sentinel-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E20.The Sentinel-Bluray-1080p.mkv","size":2069085806,"dateAdded":"2021-01-28T18:20:55.214889Z","sceneName":"Stargate.SG-1.S05E20.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5672046,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17306},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E21.Meridian-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E21.Meridian-Bluray-1080p.mkv","size":1782064540,"dateAdded":"2021-01-28T18:22:50.305211Z","sceneName":"Stargate.SG-1.S05E21.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4800685,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17307},{"seriesId":56,"seasonNumber":5,"relativePath":"Season 05\/S05E22.Revelations-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 05\/S05E22.Revelations-Bluray-1080p.mkv","size":2005456186,"dateAdded":"2021-01-28T18:24:39.947356Z","sceneName":"Stargate.SG-1.S05E22.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5485959,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17308},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E01.New Order (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E01.New Order (1)-Bluray-1080p.mkv","size":2706314311,"dateAdded":"2021-02-08T13:20:58.205277Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7705230,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17493},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E02.New Order (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E02.New Order (2)-Bluray-1080p.mkv","size":3122452714,"dateAdded":"2021-02-08T13:21:37.811143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8977463,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17494},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E03.Lockdown-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E03.Lockdown-Bluray-1080p.mkv","size":2105119268,"dateAdded":"2021-02-08T13:22:09.335785Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5860348,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17495},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Zero Hour-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E04.Zero Hour-Bluray-1080p.mkv","size":2857668499,"dateAdded":"2021-02-08T13:22:30.391474Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8160315,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17496},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E05.Icon-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E05.Icon-Bluray-1080p.mkv","size":3040596166,"dateAdded":"2021-02-08T13:22:56.914861Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8727736,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17497},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E06.Avatar-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E06.Avatar-Bluray-1080p.mkv","size":2709539995,"dateAdded":"2021-02-08T13:23:27.808433Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7716623,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17498},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E07.Affinity-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E07.Affinity-Bluray-1080p.mkv","size":3040098757,"dateAdded":"2021-02-08T13:23:52.178894Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8741223,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17499},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E08.Covenant-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E08.Covenant-Bluray-1080p.mkv","size":2865790269,"dateAdded":"2021-02-08T13:24:20.307134Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8194378,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17500},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Sacrifices-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E09.Sacrifices-Bluray-1080p.mkv","size":3716612390,"dateAdded":"2021-02-08T13:24:49.236176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10791233,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17501},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E10.Endgame-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E10.Endgame-Bluray-1080p.mkv","size":2899621719,"dateAdded":"2021-02-08T13:25:20.659078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8302126,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17502},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E11.Gemini-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E11.Gemini-Bluray-1080p.mkv","size":3298577937,"dateAdded":"2021-02-08T13:25:48.788114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9498088,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17503},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E12.Prometheus Unbound-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E12.Prometheus Unbound-Bluray-1080p.mkv","size":3048268032,"dateAdded":"2021-02-08T13:26:18.998086Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8765390,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17504},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E13.It's Good To Be King-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E13.It's Good To Be King-Bluray-1080p.mkv","size":4371986353,"dateAdded":"2021-02-08T13:26:45.462994Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12846689,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17505},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E14.Full Alert-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E14.Full Alert-Bluray-1080p.mkv","size":2757381979,"dateAdded":"2021-02-08T13:27:24.020372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7859804,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17506},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E15.Citizen Joe-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E15.Citizen Joe-Bluray-1080p.mkv","size":3368141005,"dateAdded":"2021-02-08T13:27:51.666727Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9742182,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17507},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E16.Reckoning (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E16.Reckoning (1)-Bluray-1080p.mkv","size":2674521123,"dateAdded":"2021-02-08T13:28:22.840406Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7616995,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17508},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E17.Reckoning (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E17.Reckoning (2)-Bluray-1080p.mkv","size":2683217964,"dateAdded":"2021-02-08T13:28:47.955095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7637818,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17509},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E18.Threads-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E18.Threads-Bluray-1080p.mkv","size":4133073608,"dateAdded":"2021-02-08T13:29:15.155596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7804232,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"1:05:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17510},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E19.Moebius (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E19.Moebius (1)-Bluray-1080p.mkv","size":3197242522,"dateAdded":"2021-02-08T13:29:49.907406Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9214776,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17511},{"seriesId":56,"seasonNumber":8,"relativePath":"Season 08\/S08E20.Moebius (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 08\/S08E20.Moebius (2)-Bluray-1080p.mkv","size":3416992132,"dateAdded":"2021-02-08T13:30:22.162778Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9924123,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17512},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E01.Avalon (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E01.Avalon (1)-Bluray-1080p.mkv","size":3059825793,"dateAdded":"2021-02-11T05:58:00.285395Z","sceneName":"Stargate.SG-1.S09E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8772393,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17522},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E02.Avalon (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E02.Avalon (2)-Bluray-1080p.mkv","size":3393073147,"dateAdded":"2021-02-11T05:58:44.027021Z","sceneName":"Stargate.SG-1.S09E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9794826,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17523},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E03.Origin (3)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E03.Origin (3)-Bluray-1080p.mkv","size":3734433249,"dateAdded":"2021-02-11T05:59:11.540084Z","sceneName":"Stargate.SG-1.S09E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10832720,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17524},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E04.The Ties That Bind-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E04.The Ties That Bind-Bluray-1080p.mkv","size":3731816024,"dateAdded":"2021-02-11T05:59:42.459861Z","sceneName":"Stargate.SG-1.S09E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10829259,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17525},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E05.The Powers That Be-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E05.The Powers That Be-Bluray-1080p.mkv","size":3386685454,"dateAdded":"2021-02-11T06:00:15.699868Z","sceneName":"Stargate.SG-1.S09E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9782289,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17526},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E06.Beachhead-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E06.Beachhead-Bluray-1080p.mkv","size":3233656917,"dateAdded":"2021-02-11T06:00:43.92274Z","sceneName":"Stargate.SG-1.S09E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9293010,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17527},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E07.Ex Deus Machina-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E07.Ex Deus Machina-Bluray-1080p.mkv","size":2780816521,"dateAdded":"2021-02-11T06:01:12.151844Z","sceneName":"Stargate.SG-1.S09E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7948337,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17528},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E08.Babylon-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E08.Babylon-Bluray-1080p.mkv","size":4210121431,"dateAdded":"2021-02-11T06:01:35.828151Z","sceneName":"Stargate.SG-1.S09E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12284031,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17529},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E09.Prototype-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E09.Prototype-Bluray-1080p.mkv","size":2920007487,"dateAdded":"2021-02-11T06:02:06.81843Z","sceneName":"Stargate.SG-1.S09E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8329663,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17530},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E10.The Fourth Horseman (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E10.The Fourth Horseman (1)-Bluray-1080p.mkv","size":2845071601,"dateAdded":"2021-02-11T06:02:32.115705Z","sceneName":"Stargate.SG-1.S09E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8126114,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17531},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E11.The Fourth Horseman (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E11.The Fourth Horseman (2)-Bluray-1080p.mkv","size":3961726107,"dateAdded":"2021-02-11T06:02:57.875114Z","sceneName":"Stargate.SG-1.S09E11.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":11576573,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17532},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E12.Collateral Damage-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E12.Collateral Damage-Bluray-1080p.mkv","size":4071437181,"dateAdded":"2021-02-11T06:03:30.612167Z","sceneName":"Stargate.SG-1.S09E12.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":11880316,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17533},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E13.Ripple Effect-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E13.Ripple Effect-Bluray-1080p.mkv","size":2662597431,"dateAdded":"2021-02-11T06:04:03.60312Z","sceneName":"Stargate.SG-1.S09E13.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7593573,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17534},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E14.Stronghold-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E14.Stronghold-Bluray-1080p.mkv","size":3536293380,"dateAdded":"2021-02-11T06:04:26.072576Z","sceneName":"Stargate.SG-1.S09E14.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10255477,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17535},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E15.Ethon-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E15.Ethon-Bluray-1080p.mkv","size":3076868997,"dateAdded":"2021-02-11T06:04:53.331225Z","sceneName":"Stargate.SG-1.S09E15.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8863648,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17536},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E16.Off the Grid-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E16.Off the Grid-Bluray-1080p.mkv","size":3493679411,"dateAdded":"2021-02-11T06:05:16.726076Z","sceneName":"Stargate.SG-1.S09E16.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10150228,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17537},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E17.The Scourge-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E17.The Scourge-Bluray-1080p.mkv","size":3785482144,"dateAdded":"2021-02-11T06:05:44.75509Z","sceneName":"Stargate.SG-1.S09E17.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":11034826,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17538},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E18.Arthur's Mantle-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E18.Arthur's Mantle-Bluray-1080p.mkv","size":3713638105,"dateAdded":"2021-02-11T06:06:18.675915Z","sceneName":"Stargate.SG-1.S09E18.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10800821,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17539},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E19.Crusade-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E19.Crusade-Bluray-1080p.mkv","size":2683575081,"dateAdded":"2021-02-11T06:06:48.251312Z","sceneName":"Stargate.SG-1.S09E19.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7648502,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17540},{"seriesId":56,"seasonNumber":9,"relativePath":"Season 09\/S09E20.Camelot-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 09\/S09E20.Camelot-Bluray-1080p.mkv","size":3190192855,"dateAdded":"2021-02-11T06:07:12.026278Z","sceneName":"Stargate.SG-1.S09E20.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9220421,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17541},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E01.Flesh and Blood-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E01.Flesh and Blood-Bluray-1080p.mkv","size":2627190251,"dateAdded":"2021-03-02T03:00:04.200119Z","sceneName":"Stargate.SG-1.S10E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7474930,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17680},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E02.Morpheus-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E02.Morpheus-Bluray-1080p.mkv","size":2441647055,"dateAdded":"2021-03-02T03:03:04.461495Z","sceneName":"Stargate.SG-1.S10E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6911061,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17681},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E03.The Pegasus Project-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E03.The Pegasus Project-Bluray-1080p.mkv","size":2651361586,"dateAdded":"2021-03-02T03:04:23.991646Z","sceneName":"Stargate.SG-1.S10E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7539962,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17682},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E04.Insiders-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E04.Insiders-Bluray-1080p.mkv","size":2873895290,"dateAdded":"2021-03-02T03:05:29.071601Z","sceneName":"Stargate.SG-1.S10E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8229719,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17683},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E05.Uninvited-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E05.Uninvited-Bluray-1080p.mkv","size":4345495768,"dateAdded":"2021-03-02T03:06:32.862798Z","sceneName":"Stargate.SG-1.S10E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12727338,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17684},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E06.200-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E06.200-Bluray-1080p.mkv","size":3034491339,"dateAdded":"2021-03-02T03:08:01.775147Z","sceneName":"Stargate.SG-1.S10E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8720805,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17685},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E07.Counterstrike-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E07.Counterstrike-Bluray-1080p.mkv","size":3266778626,"dateAdded":"2021-03-02T03:08:50.990465Z","sceneName":"Stargate.SG-1.S10E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9438253,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17686},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E08.Memento Mori-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E08.Memento Mori-Bluray-1080p.mkv","size":3152670292,"dateAdded":"2021-03-02T03:09:49.725785Z","sceneName":"Stargate.SG-1.S10E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9079669,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17687},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E09.Company of Thieves-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E09.Company of Thieves-Bluray-1080p.mkv","size":2732378018,"dateAdded":"2021-03-02T03:10:28.207121Z","sceneName":"Stargate.SG-1.S10E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7791051,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17688},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E10.Quest (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E10.Quest (1)-Bluray-1080p.mkv","size":3717942260,"dateAdded":"2021-03-02T03:11:07.983488Z","sceneName":"Stargate.SG-1.S10E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10796044,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17689},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E11.Quest (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E11.Quest (2)-Bluray-1080p.mkv","size":3338573452,"dateAdded":"2021-03-02T03:12:01.812876Z","sceneName":"Stargate.SG-1.S10E11.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9668790,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17690},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E12.Line in the Sand-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E12.Line in the Sand-Bluray-1080p.mkv","size":3188510977,"dateAdded":"2021-03-02T03:12:43.247323Z","sceneName":"Stargate.SG-1.S10E12.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9193070,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17691},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E13.The Road Not Taken-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E13.The Road Not Taken-Bluray-1080p.mkv","size":2776245536,"dateAdded":"2021-03-02T03:13:28.622059Z","sceneName":"Stargate.SG-1.S10E13.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7933039,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17692},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E14.The Shroud-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E14.The Shroud-Bluray-1080p.mkv","size":2721909371,"dateAdded":"2021-03-02T03:14:07.791513Z","sceneName":"Stargate.SG-1.S10E14.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7756423,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17693},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E15.Bounty-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E15.Bounty-Bluray-1080p.mkv","size":3450344767,"dateAdded":"2021-03-02T03:14:54.8045Z","sceneName":"Stargate.SG-1.S10E15.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10046904,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17694},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E16.Bad Guys-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E16.Bad Guys-Bluray-1080p.mkv","size":2887337150,"dateAdded":"2021-03-02T03:15:50.264876Z","sceneName":"Stargate.SG-1.S10E16.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8387758,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17695},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E17.Talion-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E17.Talion-Bluray-1080p.mkv","size":3601612567,"dateAdded":"2021-03-02T03:16:40.693249Z","sceneName":"Stargate.SG-1.S10E17.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10453101,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17696},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E18.Family Ties-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E18.Family Ties-Bluray-1080p.mkv","size":3285454245,"dateAdded":"2021-03-02T03:17:45.231743Z","sceneName":"Stargate.SG-1.S10E18.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9486132,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17697},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E19.Dominion-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E19.Dominion-Bluray-1080p.mkv","size":3041307400,"dateAdded":"2021-03-02T03:18:38.656301Z","sceneName":"Stargate.SG-1.S10E19.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8743960,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17698},{"seriesId":56,"seasonNumber":10,"relativePath":"Season 10\/S10E20.Unending-Bluray-1080p.mkv","path":"\/tv\/Stargate SG-1\/Season 10\/S10E20.Unending-Bluray-1080p.mkv","size":2618269604,"dateAdded":"2021-03-02T03:19:38.159626Z","sceneName":"Stargate.SG-1.S10E20.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7451873,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17699},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Redemption (1)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E01.Redemption (1)-Bluray-720p.mkv","size":527036661,"dateAdded":"2021-05-17T12:41:57.460922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18200},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Redemption (2)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E02.Redemption (2)-Bluray-720p.mkv","size":550866002,"dateAdded":"2021-05-17T12:43:43.210428Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18201},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Descent-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E03.Descent-Bluray-720p.mkv","size":498565323,"dateAdded":"2021-05-17T12:45:27.388286Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18202},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Frozen-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E04.Frozen-Bluray-720p.mkv","size":444479510,"dateAdded":"2021-05-17T12:47:11.355045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18203},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Nightwalkers-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E05.Nightwalkers-Bluray-720p.mkv","size":432843687,"dateAdded":"2021-05-17T12:48:56.265416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18204},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Abyss-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E06.Abyss-Bluray-720p.mkv","size":441381774,"dateAdded":"2021-05-17T12:50:40.189038Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18205},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Shadow Play-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E07.Shadow Play-Bluray-720p.mkv","size":416774950,"dateAdded":"2021-05-17T12:52:24.849721Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18206},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E08.The Other Guys-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E08.The Other Guys-Bluray-720p.mkv","size":596010339,"dateAdded":"2021-05-17T12:54:08.946097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18207},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Allegiance-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E09.Allegiance-Bluray-720p.mkv","size":636286541,"dateAdded":"2021-05-17T12:55:54.117761Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18208},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Cure-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E10.Cure-Bluray-720p.mkv","size":498996428,"dateAdded":"2021-05-17T12:57:40.276912Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18209},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Prometheus (1)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E11.Prometheus (1)-Bluray-720p.mkv","size":467618940,"dateAdded":"2021-05-17T12:59:23.954721Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18210},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Unnatural Selection (2)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E12.Unnatural Selection (2)-Bluray-720p.mkv","size":387453360,"dateAdded":"2021-05-17T13:01:08.516362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18211},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E13.Sight Unseen-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E13.Sight Unseen-Bluray-720p.mkv","size":509615572,"dateAdded":"2021-05-17T13:02:50.942656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18212},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Smoke & Mirrors-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E14.Smoke & Mirrors-Bluray-720p.mkv","size":456687530,"dateAdded":"2021-05-17T13:04:34.292997Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18213},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Paradise Lost-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E15.Paradise Lost-Bluray-720p.mkv","size":649298966,"dateAdded":"2021-05-17T13:06:18.500974Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18214},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Metamorphosis-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E16.Metamorphosis-Bluray-720p.mkv","size":527870372,"dateAdded":"2021-05-17T13:08:02.865216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18215},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E17.Disclosure-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E17.Disclosure-Bluray-720p.mkv","size":458517975,"dateAdded":"2021-05-17T13:09:46.323131Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18216},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E18.Forsaken-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E18.Forsaken-Bluray-720p.mkv","size":548310176,"dateAdded":"2021-05-17T13:11:28.850427Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18217},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E19.The Changeling-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E19.The Changeling-Bluray-720p.mkv","size":548900781,"dateAdded":"2021-05-17T13:13:12.0389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18218},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E20.Memento-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E20.Memento-Bluray-720p.mkv","size":475214064,"dateAdded":"2021-05-17T13:14:54.901586Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18219},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E21.Prophecy-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E21.Prophecy-Bluray-720p.mkv","size":504262700,"dateAdded":"2021-05-17T13:16:37.409099Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18220},{"seriesId":56,"seasonNumber":6,"relativePath":"Season 06\/S06E22.Full Circle-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 06\/S06E22.Full Circle-Bluray-720p.mkv","size":606858461,"dateAdded":"2021-05-17T13:18:21.006259Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18221},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Fallen (1)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E01.Fallen (1)-Bluray-720p.mkv","size":492591004,"dateAdded":"2021-06-02T19:04:51.582221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18300},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E02.Homecoming (2)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E02.Homecoming (2)-Bluray-720p.mkv","size":496649954,"dateAdded":"2021-06-02T19:06:35.954732Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18301},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Fragile Balance-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E03.Fragile Balance-Bluray-720p.mkv","size":451390968,"dateAdded":"2021-06-02T19:08:18.807164Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18302},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E04.Orpheus-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E04.Orpheus-Bluray-720p.mkv","size":541800379,"dateAdded":"2021-06-02T19:10:01.959856Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18303},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Revisions-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E05.Revisions-Bluray-720p.mkv","size":547146951,"dateAdded":"2021-06-02T19:11:46.356649Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18304},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E06.Lifeboat-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E06.Lifeboat-Bluray-720p.mkv","size":420285443,"dateAdded":"2021-06-02T19:13:29.076225Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18305},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E07.Enemy Mine-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E07.Enemy Mine-Bluray-720p.mkv","size":564148358,"dateAdded":"2021-06-02T19:15:11.170249Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18306},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Space Race-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E08.Space Race-Bluray-720p.mkv","size":502662848,"dateAdded":"2021-06-02T19:16:54.28235Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18307},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Avenger 2.0-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E09.Avenger 2.0-Bluray-720p.mkv","size":560857525,"dateAdded":"2021-06-02T19:18:36.748597Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18308},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Birthright-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E10.Birthright-Bluray-720p.mkv","size":541507557,"dateAdded":"2021-06-02T19:20:21.068Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18309},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Evolution (1)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E11.Evolution (1)-Bluray-720p.mkv","size":514682765,"dateAdded":"2021-06-02T19:22:04.105535Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18310},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Evolution (2)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E12.Evolution (2)-Bluray-720p.mkv","size":524933574,"dateAdded":"2021-06-02T19:23:46.612285Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18311},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Grace-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E13.Grace-Bluray-720p.mkv","size":430103149,"dateAdded":"2021-06-02T19:25:29.414632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18312},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E14.Fallout-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E14.Fallout-Bluray-720p.mkv","size":481425210,"dateAdded":"2021-06-02T19:27:11.958185Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18313},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E15.Chimera-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E15.Chimera-Bluray-720p.mkv","size":455372746,"dateAdded":"2021-06-02T19:28:54.572362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18314},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E16.Death Knell-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E16.Death Knell-Bluray-720p.mkv","size":549603393,"dateAdded":"2021-06-02T19:30:37.666416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18315},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E17.Heroes (1)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E17.Heroes (1)-Bluray-720p.mkv","size":526818052,"dateAdded":"2021-06-02T19:32:21.38944Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18316},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E18.Heroes (2)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E18.Heroes (2)-Bluray-720p.mkv","size":456797380,"dateAdded":"2021-06-02T19:34:03.861882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18317},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E19.Resurrection-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E19.Resurrection-Bluray-720p.mkv","size":414552722,"dateAdded":"2021-06-02T19:35:47.051081Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18318},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E20.Inauguration-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E20.Inauguration-Bluray-720p.mkv","size":447314236,"dateAdded":"2021-06-02T19:37:31.669744Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18319},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E21.Lost City (1)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E21.Lost City (1)-Bluray-720p.mkv","size":515317551,"dateAdded":"2021-06-02T19:39:14.448516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"44:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18320},{"seriesId":56,"seasonNumber":7,"relativePath":"Season 07\/S07E22.Lost City (2)-Bluray-720p.mkv","path":"\/tv\/Stargate SG-1\/Season 07\/S07E22.Lost City (2)-Bluray-720p.mkv","size":482964045,"dateAdded":"2021-06-02T19:40:57.767148Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18321}],"queue":[]},"76":{"series":{"title":"Eden of the East","alternateTitles":[],"sortTitle":"eden east","status":"ended","ended":true,"overview":"On November 22, 2010 ten missiles strike Japan. However, this unprecedented terrorist act, later to be called as \"Careless Monday,\" does not result in any apparent victims, and is soon forgotten by almost everyone. Then, 3 months later... Saki Morimi is a young woman currently in the United States of America on her graduation trip. But just when she is in front of the White House, Washington DC, she gets into trouble, and only the unexpected intervention of one of her fellow countrymen saves her. However, this man, who introduces himself as Akira Takizawa, is a complete mystery. He appears to have lost his memory. and he is stark naked, except for the gun he holds in one hand, and the mobile phone he's holding with the other hand. A phone that is charged with 8,200,000,000 yen in digital cash.","previousAiring":"2009-06-18T15:45:00Z","network":"Fuji TV","airTime":"00:45","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/84\/banner.jpg?lastWrite=636750444607225480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/88721-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/84\/poster.jpg?lastWrite=636750444608745460","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/88721-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/84\/fanart.jpg?lastWrite=637103832639194840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/88721-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-06-18T15:45:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":9254492480,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Eden of the East","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":88721,"tvRageId":28915,"tvMazeId":7007,"firstAired":"2009-04-09T00:00:00Z","seriesType":"standard","cleanTitle":"edeneast","imdbId":"tt1415054","titleSlug":"eden-of-the-east","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Mystery","Romance","Science Fiction","Thriller"],"tags":[],"added":"2018-10-13T16:15:39.459559Z","ratings":{"votes":2017,"value":7.9},"statistics":{"seasonCount":1,"episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":14,"sizeOnDisk":9254492480,"percentOfEpisodes":100.0},"id":84},"episodes":[{"seriesId":84,"episodeFileId":4172,"seasonNumber":1,"episodeNumber":1,"title":"Finding A Prince","airDate":"2009-04-09","airDateUtc":"2009-04-08T15:45:00Z","overview":"Saki Morimi has just graduated from college and is visiting Washington D.C.. When she gets into trouble with the police, a mysterious Japanese boy helps her out. The boy appears to have no memory and is completely naked, carrying only a gun and a cell phone. Juiz, who claims to be his concierge tells him over the phone that his memory was wiped. Later he takes on the identity Akira Takizawa and decides to go back to Japan along with Saki. While waiting for their flight, they watch a news covering a missile attack on Tokyo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6583},{"seriesId":84,"episodeFileId":4173,"seasonNumber":1,"episodeNumber":2,"title":"Melancholic Monday","airDate":"2009-04-16","airDateUtc":"2009-04-15T15:45:00Z","overview":"After they arrive in Tokyo, Akira confesses to Saki that he has no memory before they met in Washington. Saki goes along with Akira to help him track the address mentioned as his residence on his passport. On the phone Juiz tells Akira that it is his responsibility to spend 8.2 billion yen that the phone is charged with. Meanwhile Kond\u014d is tracking Akira by the places Akira is using the phone for payments. Akira walks up to Kond\u014d and starts a conversation with him after he notices that both of them have the same cell phone. Kond\u014d questions him about Selecao, but Akira does not remember anything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6584},{"seriesId":84,"episodeFileId":4174,"seasonNumber":1,"episodeNumber":3,"title":"Evening of the Late Show","airDate":"2009-04-23","airDateUtc":"2009-04-22T15:45:00Z","overview":"Akira and Saki arrived at the building which address was written in Akira's passport. It turns out to be a Shopping mall. After they looked around , Saki is watching a movie in the mall cinema. Meanwhile Kondo followed Akira and Saki and enters the building too,with the intention to take away Akira's cellphone. After he finds him in the movie instructor's room, he beats him up and takes Akira's cellphone. Unfortunately Juiz tells him that the cellphone works only with fingerprint authorization and his efforts are in vain. He then gets a call from Akira and after he was told that he's got his notepad they decide to meet up in the Kabuki district. There Kondo is stabbed with a knife by his wife because he betrayed her. When Akira arrives, Kondo tells him to track down the other Selecao members and to be wary of the organization. Selecao gave ten other individuals 10 billion yen to spend, with the catch that if any of them had their money count drop to zero, they will be killed. Before dying, Kondo believes that Selecao arranged his death by leaking evidence of his affair to his wife.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6585},{"seriesId":84,"episodeFileId":4175,"seasonNumber":1,"episodeNumber":4,"title":"Real Reality, Imaginary Reality","airDate":"2009-04-30","airDateUtc":"2009-04-29T15:45:00Z","overview":"Following Kondo's advice, Akira goes to track down the other Selecao members. He eventually manages to find Selecao number V, Hajime Hiura who is an influential brain surgeon. Hiura at first suspects Akira to be the Supporter, the Selecao tasked to observe the other Selecao members and to punish them if they break any of the rules. After being assured Akira is not the Supporter, Hiura tells him about Selecao. It is an organization run by Mr. Outside, an enigmatic individual who chose twelve individuals, and gave them ten billion yen each with the condition to use the money to save Japan. If the Selecao members refuse, run out of money, or act in a manner unbecoming of a \"messiah\", then they are to be eliminated by the Supporter. Shortly after Akira leaves, Hiura is murdered by the Supporter since he had run out of money.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6586},{"seriesId":84,"episodeFileId":4176,"seasonNumber":1,"episodeNumber":5,"title":"Even Though Now Is Not the Time To Think About Things Like That","airDate":"2009-05-07","airDateUtc":"2009-05-06T15:45:00Z","overview":"As Akira contemplates the power he has as a Selecao, he is confronted by a stranger who had known him before he had erased his memories. It is implied that the stranger was one of the missing NEETs, since he is angry at Akira for ditching him and his fellows in Dubai. However, grudgingly thanks him since his experiences there helped him reintegrate into society. Realizing that he had forgotten about Saki, Akira asks Juiz to locate her. As he does this, Selecao's No. 1 and 11 take notice of Akira's activities. Meanwhile, after returning home, Saki prepares for her prospective job interview, but she is rudely turned down. She finds Akira waiting for her outside the building and goes with him, venting about how the adults do not care for the younger generation. Akira then kisses Saki and assures her that he will help her. Meanwhile, a heartbroken Ohsugi, who saw Saki leaving with Akira, goes to a restaurant and drowns his sorrow in alcohol. As the drunken Ohsugi leaves the restaurant, Selecao's No. 11 comes across him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6587},{"seriesId":84,"episodeFileId":4177,"seasonNumber":1,"episodeNumber":6,"title":"Eden of the East","airDate":"2009-05-14","airDateUtc":"2009-05-13T15:45:00Z","overview":"Saki returns to her friends in Eden of the East, a recycling club at their University, and tells them about Akira. They soon become interested in (and suspicious of) him and decide to go visit him. Akira warmly greets them and informs them that he had found out about their club's special commodity. They have developed a revolutionary image recognition program, but have stalled due to problems at the University. Akira offers to help Eden of the East in their goal, in exchange for having them help him on his duty as a Selecao. Encouraged by Akira, Saki decides to stay in the club. Meanwhile, Hirasawa receives a call from Kasuga, who had been tasked with finding Ohsugi. Kasuga suspects that Ohsugi may have been kidnapped by the \"Johnny Hunter\", a kidnapper reputed to have almost 20,000 victims, according to a story circulating over the internet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6588},{"seriesId":84,"episodeFileId":4178,"seasonNumber":1,"episodeNumber":7,"title":"Black Swan Dances","airDate":"2009-05-21","airDateUtc":"2009-05-20T15:45:00Z","overview":"The Eden of the East members begin to receive pictures from Ohsugi. Takizawa uses his phone to find him. Juiz is able to locate him in the Hotel Insomnia where he was taken after being kidnapped by the \"Johnny Hunter\". The hunter is Kuroha Diana Shiratori, Selecao #11. Juiz helps the two counter each other's attempts to stop one another from reaching the hotel, but they both meet in the hotel room. Kuroha explains that she cuts off men's \"Johnnies\" and murders them as an act of revenge. Takizawa confronts Kuroha and offers to show her the love that she had not received from any man. However, he passes out from wounds he gained trying to reach the hotel. Saki follows Takizawa to the hotel to find Kuroha tending to his wounds. Kuroha reveals that her prisoner is not Ohsugi, but is in fact a wanted rapist, and muses how she could have possibly mistaken one for the other. Then using an elaborate illusion, she escapes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6589},{"seriesId":84,"episodeFileId":4179,"seasonNumber":1,"episodeNumber":8,"title":"Search for a Fore-Lost Journey","airDate":"2009-05-28","airDateUtc":"2009-05-27T15:45:00Z","overview":"Takizawa wakes up to find Saki tending to his wounds, and that Kuroha had disappeared. Meanwhile, Ohsugi returns to Eden of the East, telling them that he was invited to a drinking party and had his bag stolen that night, which caused the misunderstanding. He shows his displeasure about them associating with Takizawa and leaves. He then takes a picture of Takizawa and registers to Eden's program, hoping to find out his identity. Takizawa then arrives and asks Eden if they could repair a Selecao phone (which belonged to Kondo). Hirasawa suggests he go visit \"Pantsu\", a computer prodigy, and sends Saki and Micchon with him to keep and eye on him. While Saki and Micchon go to the convenience store, Takizawa talks to \"Pantsu\" about Selecao and gets \"Pantsu\" to let him in. Meanwhile, Ohsugi checks on Takizawa's picture and finds out that the users all identify Takizawa by different names and aliases. Concluding that Takizawa must be some kind of criminal, he calls Hirasawa in a panic to warn Eden.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6590},{"seriesId":84,"episodeFileId":4180,"seasonNumber":1,"episodeNumber":9,"title":"A Man Too Transient","airDate":"2009-06-05","airDateUtc":"2009-06-04T15:45:00Z","overview":"\"Pantsu\" manages to recover the complete Selecao transaction history from Kondo's phone, and discovers that the Selecao were indeed responsible for Careless Monday, as well as a series of mysterious evacuations in the targetted areas beforehand that ensured there were no casualties. Takizawa was also apparently responsible for the 20,000 missing NEETs. Takizawa makes \"Pantsu\" promise not to tell Saki or Micchon about what they had discovered, and leaves the phone with him in hopes of fully repairing it. Before they leave, Saki asks \"Pantsu\" about the phone, but he warns her that she is better off not knowing.\r\nMeanwhile, Mononobe, Selecao #01, and Yuuki, Selecao #10, follow Takizawa to Kyoto, curious about his intentions. \"Pantsu\" discovers that Selecao No. 10 was responsible for the missile attacks, and that it was Takizawa who arranged the evacuations, making him a hero. He then discovers something shocking and rushes outside to warn Takizawa only to be run down by Mononobe, who destroys Kondo's phone before calling Takizawa. Back in Tokyo, Eden meets Ohsugi at Takizawa's theater, where they discover the area where the 20,000 NEETs were held and writing on the wall declaring, \"I'll kill you, Takizawa Akira!\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6591},{"seriesId":84,"episodeFileId":4181,"seasonNumber":1,"episodeNumber":10,"title":"Did Someone Kill Takizawa Akira?","airDate":"2009-06-11","airDateUtc":"2009-06-10T15:45:00Z","overview":"Saki and Micchon board the train to go home but Takizawa doesn't. Takizawa is confronted by Mononobe who offers to reveal the truth about the game and himself. Takizawa then receives a call from Saki who reveals that she overheard him when he confronted Kuroha. Takizawa tells Saki to stay on the line and listen to his and Mononobe's conversation. Meanwhile, Eden investigates the theater and receive a large amount of data from Itazu. Takizawa and Mononobe talk about the missing NEETs and Mononobe tells him who he believes Mr. Outside is, a man named Ato Saizo who is the president of the ATO company. Ato Saizo was a great political figure who helped fix Japan but probably died of terminal cancer, though the game still goes on because of the Supporter. Mononobe tells Takizawa that he will become Mr. Outside and take Juiz. Takizawa and Mononobe arrive at a research facility managed by the ATO Institute.\r\nMeanwhile, Eden uncovers the data and it shows the Selecaos' spending logs. Eden then looks outside to see a ship full of naked people who they think are the missing NEETs and flee. Mononobe, along with Yuuki and Selecao #2 Tsuji, plan to launch more missiles and tell Takizawa not to get in their way again as they tell him why he erased his memories. Takizawa was in despair after he had been betrayed by the people he attempted to help, and he leaves. A woman then comes in telling the three Selecao that there will not be a winner tonight. Monobe checks his phone to see that Juiz has been moved to a hidden location, and Mononobe says that Selecao #12 is the Supporter or maybe even Mr. Outside. The final scene shows Takizawa sitting on a train and Saki crying on the floor, after realizing that she had betrayed Takizawa by hoping something bigger than Careless Monday would happen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6592},{"seriesId":84,"episodeFileId":4182,"seasonNumber":1,"episodeNumber":11,"title":"The East That Goes On","airDate":"2009-06-19","airDateUtc":"2009-06-18T15:45:00Z","overview":"Saki and Micchon return to the multiplex, which has been invaded by the 20,000 NEETs. Saki explains to Eden that Takizawa recruited the NEETs to help evacuate citizens before Careless Monday, disguised as government personnel. However, in order to cover his involvement, Takizawa took responsibility for Careless Monday and shipped the NEETs to Dubai for three months to keep them out of the public eye. Out of guilt and despair for what had happened, Takizawa erased his memories. After analyzing the data, Eden discovers that the missiles are targetted all over Japan, including the multiplex. Takizawa then contacts all of the NEETs and tells them he has arranged a bigger missile attack, and instructs them to figure out the best way to intercept the missiles and upload it to Eden. Using the NEETs' collective knowledge, Juiz organizes a network of jet fighters and Patriot missile launchers to intercept the missiles. Everybody, including Itazu and the remaining Selecao look on as the missiles are destroyed. Knowing that this event will be much harder to cover up than Careless Monday, Takizawa instructs Juiz to use all of his remaining money to make him \"King of Japan\". His reasoning is that there are many smart people in Japan, but none of them are willing to bear the responsiblity of leadership, so it is up to him to take it. In order to become King, Takizawa uses his phone to brainwash himself and he slips it into Saki's pocket. The episode ends with Saki contemplating what will happen to Japan now that Takizawa is a prince.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6593},{"seriesId":84,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Compilation: Air Communication","airDate":"2009-09-26","airDateUtc":"2009-09-25T15:45:00Z","overview":"A re-editing of the 11 television episodes of popular anime Higashi no Eden into a feature-length film.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6594},{"seriesId":84,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Movie I: The King of Eden","airDate":"2009-11-28","airDateUtc":"2009-11-27T15:45:00Z","overview":"The story continues where it left off from the Eden of the East TV series, and brings Morimi Saki back to the USA in order to find Takizawa Akira. The other Selecao however are actively moving to take part in the game, and a few in particular are making dangerous moves in order to eliminate Takizawa or move towards their picture of a better Japan.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6595},{"seriesId":84,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Movie II: Paradise Lost","airDate":"2010-03-13","airDateUtc":"2010-03-12T15:45:00Z","overview":"The second Eden of the East movie. The story of political and subversive intrigue in the series finally reaches endgame. Even as the law enforcement net tightens around Saki and her fellow Eden of the East associates over alleged terrorist activities, the complex web surrounding the mysterious Mr. Outside is finally untangled as the remaining Selecao attempt to outmaneuver one another. Takizawa's memories and identity are also finally revealed including his association with a former Prime Minister and his request to be the King of Eden.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6596}],"episodeFile":[{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Finding A Prince-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E01.Finding A Prince-Bluray-1080p.mkv","size":929837881,"dateAdded":"2018-10-13T16:20:55.857758Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4172},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Melancholic Monday-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E02.Melancholic Monday-Bluray-1080p.mkv","size":861511126,"dateAdded":"2018-10-13T16:20:55.904207Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4173},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Evening of the Late Show-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E03.Evening of the Late Show-Bluray-1080p.mkv","size":813900575,"dateAdded":"2018-10-13T16:20:56.12817Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4174},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Real Reality, Imaginary Reality-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E04.Real Reality, Imaginary Reality-Bluray-1080p.mkv","size":921771003,"dateAdded":"2018-10-13T16:20:56.520266Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4175},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Even Though Now Is Not the Time To Think About Things Like That-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E05.Even Though Now Is Not the Time To Think About Things Like That-Bluray-1080p.mkv","size":828459442,"dateAdded":"2018-10-13T16:20:56.550802Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4176},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Eden of the East-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E06.Eden of the East-Bluray-1080p.mkv","size":745717378,"dateAdded":"2018-10-13T16:20:57.286891Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4177},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Black Swan Dances-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E07.Black Swan Dances-Bluray-1080p.mkv","size":855623861,"dateAdded":"2018-10-13T16:20:57.734312Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4178},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Search for a Fore-Lost Journey-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E08.Search for a Fore-Lost Journey-Bluray-1080p.mkv","size":712513453,"dateAdded":"2018-10-13T16:20:58.287191Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4179},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E09.A Man Too Transient-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E09.A Man Too Transient-Bluray-1080p.mkv","size":789438129,"dateAdded":"2018-10-13T16:20:58.320041Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4180},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Did Someone Kill Takizawa Akira-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E10.Did Someone Kill Takizawa Akira-Bluray-1080p.mkv","size":802497658,"dateAdded":"2018-10-13T16:20:58.604661Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4181},{"seriesId":84,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The East That Goes On-Bluray-1080p.mkv","path":"\/tv\/Eden of the East\/Season 01\/S01E11.The East That Goes On-Bluray-1080p.mkv","size":993221974,"dateAdded":"2018-10-13T16:20:58.726368Z","releaseGroup":"Coalgirls","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"19:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4182}],"queue":[]},"78":{"series":{"title":"Breaking Bad","alternateTitles":[],"sortTitle":"breaking bad","status":"ended","ended":true,"overview":"When Walter White, a chemistry teacher, is diagnosed with Stage III cancer and given a prognosis of two years left to live, he chooses to enter a dangerous world of drugs and crime with the intent to secure his family's financial security.","previousAiring":"2013-09-30T01:00:00Z","network":"Netflix","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/59\/banner.jpg?lastWrite=636747176301186580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81189-g21.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/59\/poster.jpg?lastWrite=637051064039764190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81189-10.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/59\/fanart.jpg?lastWrite=636747176299106630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81189-21.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":19,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2008-03-10T01:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":25395184315,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2009-06-01T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45739566239,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2010-06-14T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45764884182,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2011-10-10T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":40535998915,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2013-09-30T01:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":8035422773,"percentOfEpisodes":100.0}}],"year":2008,"path":"\/tv\/Breaking Bad","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":81189,"tvRageId":18164,"tvMazeId":169,"firstAired":"2008-01-20T00:00:00Z","seriesType":"standard","cleanTitle":"breakingbad","imdbId":"tt0903747","titleSlug":"breaking-bad","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Suspense","Thriller"],"tags":[],"added":"2018-05-01T09:35:11.5785155Z","ratings":{"votes":31714,"value":9.4},"statistics":{"seasonCount":5,"episodeFileCount":62,"episodeCount":62,"totalEpisodeCount":81,"sizeOnDisk":165471056424,"percentOfEpisodes":100.0},"id":59},"episodes":[{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Live Saul Cam","overview":"Survaliance camera footage showcasing what Saul does in his free time at his office.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1346},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Carl","overview":"Carl's story about how Saul helped him with a problem involving his ex.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1347},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Wendy","overview":"Wendy's story about how Saul got her out of jail.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1348},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Badger","overview":"Badger recalls how Saul got him out of trouble after he was selling meth.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1349},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Wayfarer 515","overview":"The advert that Saul used to appeal to victims of the Wayfarer 515 accident.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1350},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Letters to Saul","overview":"Saul opens some letters that he receives from criminals.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1351},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Tiger Trouble? Better Call Saul!","overview":"An advert Saul used to appeal to illegal tiger owners.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1352},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Saul Says: \"Sue 'Em Now\"","overview":"An advert that Saul used to make people want to come to him to sue companies.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1353},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Team S.C.I.E.N.C.E","overview":"Jesse imagines all of his friends as one team, Team SCIENCE.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1354},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Fatty Fat Fat","overview":"Saul appears in an advert which appeals to overweight people to come to him for advice on how to lose weight.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1355},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Fighting for You","overview":"Saul's story about how two boxers came to him for compensation.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1356},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Fernando","overview":"Fernando, accused of stealing a truck, appears in an advert for Saul.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18139},{"seriesId":59,"episodeFileId":988,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2008-01-20","airDateUtc":"2008-01-21T02:00:00Z","overview":"When an unassuming high school chemistry teacher discovers he has a rare form of lung cancer, he decides to team up with a former student and create a top of the line crystal meth in a used RV, to provide for his family once he is gone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1358},{"seriesId":59,"episodeFileId":994,"seasonNumber":1,"episodeNumber":2,"title":"Cat's in the Bag...","airDate":"2008-01-27","airDateUtc":"2008-01-28T02:00:00Z","overview":"Walt and Jesse attempt to tie up loose ends. The desperate situation gets more complicated with the flip of a coin. Walt's wife, Skyler, becomes suspicious of Walt's strange behavior.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1359},{"seriesId":59,"episodeFileId":998,"seasonNumber":1,"episodeNumber":3,"title":"...And the Bag's in the River","airDate":"2008-02-10","airDateUtc":"2008-02-11T02:00:00Z","overview":"Walter fights with Jesse over his drug use, causing him to leave Walter alone with their captive, Krazy-8. Meanwhile, Hank has a scared straight moment with Walter Jr..","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1360},{"seriesId":59,"episodeFileId":1003,"seasonNumber":1,"episodeNumber":4,"title":"Cancer Man","airDate":"2008-02-17","airDateUtc":"2008-02-18T02:00:00Z","overview":"Walter finally tells his family that he has cancer. Meanwhile, the DEA believes Albuquerque has a new, big time player to worry about. Jesse makes a surprise visit to his parents home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1361},{"seriesId":59,"episodeFileId":1008,"seasonNumber":1,"episodeNumber":5,"title":"Gray Matter","airDate":"2008-02-24","airDateUtc":"2008-02-25T02:00:00Z","overview":"Walter and Skyler attend a former colleague's birthday party. Jesse tries to free himself from drugs, while Skyler organizes an intervention.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1362},{"seriesId":59,"episodeFileId":1013,"seasonNumber":1,"episodeNumber":6,"title":"Crazy Handful of Nothin'","airDate":"2008-03-02","airDateUtc":"2008-03-03T02:00:00Z","overview":"The side effects of chemo begin to plague Walt. Meanwhile, the DEA rounds up suspected dealers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1363},{"seriesId":59,"episodeFileId":1018,"seasonNumber":1,"episodeNumber":7,"title":"A No-Rough-Stuff-Type Deal","airDate":"2008-03-09","airDateUtc":"2008-03-10T01:00:00Z","overview":"Walter accepts his new identity as a drug dealer. Elsewhere, Jesse decides to put his aunt's house on the market and Marie throws Skyler a baby shower.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1364},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Good Cop Bad Cop","airDate":"2009-02-17","airDateUtc":"2009-02-18T02:00:00Z","overview":"Hank and Marie try to spice up their relationship on Valentine's Day.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1341},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Wedding Day","airDate":"2009-02-17","airDateUtc":"2009-02-18T02:47:00Z","overview":"Walt and Hank have a talk before Hank gets married.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1342},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"TwaughtHammer","airDate":"2009-02-17","airDateUtc":"2009-02-18T03:34:00Z","overview":"Jesse and Badger make a behind the scenes video about their band \"TwaughtHammer\" and show a music video for their song \"Fallacies.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1343},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Marie's Confession","airDate":"2009-02-17","airDateUtc":"2009-02-18T04:21:00Z","overview":"Marie records a video diary.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1344},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Break-In","airDate":"2009-02-17","airDateUtc":"2009-02-18T05:08:00Z","overview":"Badger uses his lock-picking skills to help Walt (AKA Heisenberg) with some \"B&E\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1345},{"seriesId":59,"episodeFileId":991,"seasonNumber":2,"episodeNumber":1,"title":"Seven Thirty-Seven","airDate":"2009-03-08","airDateUtc":"2009-03-09T01:00:00Z","overview":"Walt and Jesse are reminded of Tuco\u2019s volatile nature, and try to figure a way out of their business partnership. Hank attempts to mend fences between the estranged Marie and Skyler.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1365},{"seriesId":59,"episodeFileId":993,"seasonNumber":2,"episodeNumber":2,"title":"Grilled","airDate":"2009-03-15","airDateUtc":"2009-03-16T01:00:00Z","overview":"Walt and Jesse find themselves in close quarters with an unhinged Tuco. Marie and Hank comfort Skyler, who is distraught over Walt\u2019s disappearance. Hank pays a visit to Mrs. Pinkman on some not-so-official business.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1366},{"seriesId":59,"episodeFileId":1001,"seasonNumber":2,"episodeNumber":3,"title":"Bit by a Dead Bee","airDate":"2009-03-22","airDateUtc":"2009-03-23T01:00:00Z","overview":"Walt and Jesse cover their tracks, but as a result, both of their financial situations suffer. Meanwhile, Hank and his DEA colleagues may have a break in their meth investigation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1367},{"seriesId":59,"episodeFileId":1006,"seasonNumber":2,"episodeNumber":4,"title":"Down","airDate":"2009-03-29","airDateUtc":"2009-03-30T01:00:00Z","overview":"Walt tries to reconnect with his family. Still suspicious of her husband's actions, Skyler keeps her distance. Jesse finds himself without a place to live and struggles to cope.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":1368},{"seriesId":59,"episodeFileId":1009,"seasonNumber":2,"episodeNumber":5,"title":"Breakage","airDate":"2009-04-05","airDateUtc":"2009-04-06T01:00:00Z","overview":"Tensions and bills mount at the White household. Hank makes progress at work, but struggles with some residual effects from his encounter with Tuco. Jesse assembles a crew of dealers to get their product out on the streets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":1369},{"seriesId":59,"episodeFileId":1016,"seasonNumber":2,"episodeNumber":6,"title":"Peekaboo","airDate":"2009-04-12","airDateUtc":"2009-04-13T01:00:00Z","overview":"Walt returns to work. Skinny Pete gets ripped off and when Jesse steps in, he gets more than he bargained for. Walt's cover story on how Elliott and Gretchen are paying for his medical treatment starts to collapse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":1370},{"seriesId":59,"episodeFileId":1021,"seasonNumber":2,"episodeNumber":7,"title":"Negro Y Azul","airDate":"2009-04-19","airDateUtc":"2009-04-20T01:00:00Z","overview":"Rumors fly about Jesse's recent actions as he and Walt discuss expanding their business into new territories. Hank struggles in El Paso. Skyler pursues a new job opportunity. Jesse gets to know his landlord, Jane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":1371},{"seriesId":59,"episodeFileId":1023,"seasonNumber":2,"episodeNumber":8,"title":"Better Call Saul","airDate":"2009-04-26","airDateUtc":"2009-04-27T01:00:00Z","overview":"When Badger gets busted, Walt and Jesse seek the legal advice of a shady attorney, Saul Goodman. Hank returns to Albuquerque, but his troubled mental state and demeanor cause Marie to worry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":1372},{"seriesId":59,"episodeFileId":1028,"seasonNumber":2,"episodeNumber":9,"title":"4 Days Out","airDate":"2009-05-03","airDateUtc":"2009-05-04T01:00:00Z","overview":"The Whites await news about Walt's cancer treatment progress. Walt and Jesse retreat to the desert for a marathon cook.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":1373},{"seriesId":59,"episodeFileId":1032,"seasonNumber":2,"episodeNumber":10,"title":"Over","airDate":"2009-05-10","airDateUtc":"2009-05-11T01:00:00Z","overview":"Walt and Hank get into a fight, and Walt consumes himself with home improvements. Skyler opens up to her boss, Ted. Jane hides her relationship with Jesse from her father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":1374},{"seriesId":59,"episodeFileId":1036,"seasonNumber":2,"episodeNumber":11,"title":"Mandala","airDate":"2009-05-17","airDateUtc":"2009-05-18T01:00:00Z","overview":"Saul proposes a new business partner. Skyler makes a disturbing discovery. Jesse divulges his real profession to Jane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":1375},{"seriesId":59,"episodeFileId":1040,"seasonNumber":2,"episodeNumber":12,"title":"Phoenix","airDate":"2009-05-24","airDateUtc":"2009-05-25T01:00:00Z","overview":"The Whites welcome a new addition. Walter, Jr. launches a website to aid his struggling family. Jesse's addiction spirals out of control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":1376},{"seriesId":59,"episodeFileId":1044,"seasonNumber":2,"episodeNumber":13,"title":"ABQ","airDate":"2009-05-31","airDateUtc":"2009-06-01T01:00:00Z","overview":"Walt's lies have pushed Skyler to her limit. Jesse self-destructs after a personal blow, forcing Walt to come to his aid. Donald's grief leads to tragedy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":1377},{"seriesId":59,"episodeFileId":989,"seasonNumber":3,"episodeNumber":1,"title":"No Mas","airDate":"2010-03-21","airDateUtc":"2010-03-22T01:00:00Z","overview":"As Walt copes with the aftermath of the plane crash and Skyler's anger, Jesse comes to a new realization. A new adversary tracks the elusive Heisenberg. Skyler seeks advice on the state of her marriage and confronts Walt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":1378},{"seriesId":59,"episodeFileId":995,"seasonNumber":3,"episodeNumber":2,"title":"Caballo Sin Nombre","airDate":"2010-03-28","airDateUtc":"2010-03-29T01:00:00Z","overview":"Walt takes drastic action to bring his family back together. With Saul's help, Jesse makes an unexpected investment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":1379},{"seriesId":59,"episodeFileId":999,"seasonNumber":3,"episodeNumber":3,"title":"I.F.T.","airDate":"2010-04-04","airDateUtc":"2010-04-05T01:00:00Z","overview":"Walt ignores Skyler's demands, furthering the rift between them. Hank crosses a line at work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":1380},{"seriesId":59,"episodeFileId":1004,"seasonNumber":3,"episodeNumber":4,"title":"Green Light","airDate":"2010-04-11","airDateUtc":"2010-04-12T01:00:00Z","overview":"Walt loses control. Hank throws himself into his blue meth investigation. Jesse enacts a new plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":1381},{"seriesId":59,"episodeFileId":1010,"seasonNumber":3,"episodeNumber":5,"title":"Mas","airDate":"2010-04-18","airDateUtc":"2010-04-19T01:00:00Z","overview":"Gus tries to lure Walt back into business, forcing a rift between Walt and Jesse. Skyler doubts her new relationship. Marie confides in Skyler about her concern for Hank's well-being.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":1382},{"seriesId":59,"episodeFileId":1014,"seasonNumber":3,"episodeNumber":6,"title":"Sunset","airDate":"2010-04-25","airDateUtc":"2010-04-26T01:00:00Z","overview":"As Walt settles into his new surroundings, Walter, Jr. demands answers about his parents' relationship. Hank's investigation creates an immediate problem for Walt and Jesse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":1383},{"seriesId":59,"episodeFileId":1019,"seasonNumber":3,"episodeNumber":7,"title":"One Minute","airDate":"2010-05-02","airDateUtc":"2010-05-03T01:00:00Z","overview":"Hank's increasing volatility forces a confrontation with Jesse and trouble at work. Skyler pressures Walt to make a deal. Gus' actions have severe consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":1384},{"seriesId":59,"episodeFileId":1024,"seasonNumber":3,"episodeNumber":8,"title":"I See You","airDate":"2010-05-09","airDateUtc":"2010-05-10T01:00:00Z","overview":"The family waits for news about Hank. While Jesse covers at the lab, Walt attempts to placate Gus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":1385},{"seriesId":59,"episodeFileId":1027,"seasonNumber":3,"episodeNumber":9,"title":"Kafkaesque","airDate":"2010-05-16","airDateUtc":"2010-05-17T01:00:00Z","overview":"As Hank's hospital bills stack up, Skyler hatches a plan. Walt and Gus come to a better understanding. Jesse pursues a new opportunity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":1386},{"seriesId":59,"episodeFileId":1031,"seasonNumber":3,"episodeNumber":10,"title":"Fly","airDate":"2010-05-23","airDateUtc":"2010-05-24T01:00:00Z","overview":"Walt becomes obsessed with a contaminant in the lab. A frustrated Jesse attempts to get Walt back on track.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":1387},{"seriesId":59,"episodeFileId":1035,"seasonNumber":3,"episodeNumber":11,"title":"Abiquiu","airDate":"2010-05-30","airDateUtc":"2010-05-31T01:00:00Z","overview":"Skyler gets more involved in Walt's business. Hank struggles with his recovery. Jesse takes an active role in his new enterprise, leading him to a startling discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":1388},{"seriesId":59,"episodeFileId":1039,"seasonNumber":3,"episodeNumber":12,"title":"Half Measures","airDate":"2010-06-06","airDateUtc":"2010-06-07T01:00:00Z","overview":"Jesse lashes out. Fearing for Jesse's safety, Walt takes drastic action to intervene. A tragic event leads to a shocking confrontation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":1389},{"seriesId":59,"episodeFileId":1045,"seasonNumber":3,"episodeNumber":13,"title":"Full Measure","airDate":"2010-06-13","airDateUtc":"2010-06-14T01:00:00Z","overview":"With Jesse on the run, Walt negotiates a bargain with Gus and concocts a plan to provide for his and Jesse's safety.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":1390},{"seriesId":59,"episodeFileId":990,"seasonNumber":4,"episodeNumber":1,"title":"Box Cutter","airDate":"2011-07-17","airDateUtc":"2011-07-18T01:00:00Z","overview":"Walt and Jesse face the deadly consequences of their actions. Skyler deals with a puzzling disappearance, as Marie struggles to help Hank with his recovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":1391},{"seriesId":59,"episodeFileId":996,"seasonNumber":4,"episodeNumber":2,"title":"Thirty-Eight Snub","airDate":"2011-07-24","airDateUtc":"2011-07-25T01:00:00Z","overview":"Walt attempts to form a new alliance as he plans his next move. Skyler pushes Walt towards a business opportunity, in hopes of protecting the family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":1392},{"seriesId":59,"episodeFileId":1000,"seasonNumber":4,"episodeNumber":3,"title":"Open House","airDate":"2011-07-31","airDateUtc":"2011-08-01T01:00:00Z","overview":"Events spiral out of control at Jesse\u2019s place. Skyler reluctantly asks for Saul\u2019s help. Marie returns to an old pastime and a friend asks Hank for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":1393},{"seriesId":59,"episodeFileId":1005,"seasonNumber":4,"episodeNumber":4,"title":"Bullet Points","airDate":"2011-08-07","airDateUtc":"2011-08-08T01:00:00Z","overview":"The Cartel takes steps to gain the upper hand. Walt and Skyler share an embarrassing secret with the rest of the family. Jesse\u2019s activities draw unwanted attention.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":1394},{"seriesId":59,"episodeFileId":1011,"seasonNumber":4,"episodeNumber":5,"title":"Shotgun","airDate":"2011-08-14","airDateUtc":"2011-08-15T01:00:00Z","overview":"When Jesse goes missing, Walt fears the worst. Skyler has an unlikely reunion. Hank shares some bad news with Detective Tim Roberts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":1395},{"seriesId":59,"episodeFileId":1015,"seasonNumber":4,"episodeNumber":6,"title":"Cornered","airDate":"2011-08-21","airDateUtc":"2011-08-22T01:00:00Z","overview":"Skyler makes an unsettling discovery. Walter, Jr. pushes his dad into a questionable purchase. Jesse offers Mike some unexpected help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":1396},{"seriesId":59,"episodeFileId":1020,"seasonNumber":4,"episodeNumber":7,"title":"Problem Dog","airDate":"2011-08-28","airDateUtc":"2011-08-29T01:00:00Z","overview":"A frustrated Walt gambles on a risky new plan. Skyler's business venture hits a snag. Hank recruits Walter, Jr. for an unusual outing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":1397},{"seriesId":59,"episodeFileId":1025,"seasonNumber":4,"episodeNumber":8,"title":"Hermanos","airDate":"2011-09-04","airDateUtc":"2011-09-05T01:00:00Z","overview":"Skyler develops an unusual solution to her money troubles. Hank enlists Walt to investigate a theory. Walt\u2019s impatience with Jesse grows.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":1398},{"seriesId":59,"episodeFileId":1029,"seasonNumber":4,"episodeNumber":9,"title":"Bug","airDate":"2011-09-11","airDateUtc":"2011-09-12T01:00:00Z","overview":"Skyler's past mistakes come back to haunt her. Gus takes action to thwart his rivals. Jesse seeks Walt's help, with mixed results.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":1399},{"seriesId":59,"episodeFileId":1034,"seasonNumber":4,"episodeNumber":10,"title":"Salud","airDate":"2011-09-18","airDateUtc":"2011-09-19T01:00:00Z","overview":"Walt's family worries when he doesn't turn up for Walter, Jr.'s 16th birthday. Jesse is forced to put his lab skills to the test without Walt's help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":1400},{"seriesId":59,"episodeFileId":1037,"seasonNumber":4,"episodeNumber":11,"title":"Crawl Space","airDate":"2011-09-25","airDateUtc":"2011-09-26T01:00:00Z","overview":"Walt takes drastic action to protect his secret and Gus. Skyler's efforts to solve Ted's financial problems hit a wall.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":1401},{"seriesId":59,"episodeFileId":9128,"seasonNumber":4,"episodeNumber":12,"title":"End Times","airDate":"2011-10-02","airDateUtc":"2011-10-03T01:00:00Z","overview":"Hank pushes Gomez to pursue one last lead, while Walt struggles to protect the family. Jesse gets alarming news and rushes to meet with Walt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":1402},{"seriesId":59,"episodeFileId":1043,"seasonNumber":4,"episodeNumber":13,"title":"Face Off","airDate":"2011-10-09","airDateUtc":"2011-10-10T01:00:00Z","overview":"Walt and Jesse team up to take on Gus. With Saul's help, Walt finds an unexpected ally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":1403},{"seriesId":59,"episodeFileId":992,"seasonNumber":5,"episodeNumber":1,"title":"Live Free or Die","airDate":"2012-07-15","airDateUtc":"2012-07-16T01:00:00Z","overview":"As Walt deals with the aftermath of the Casa Tranquila explosion, Hank works to wrap up his investigation of Gus' empire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":1404},{"seriesId":59,"episodeFileId":997,"seasonNumber":5,"episodeNumber":2,"title":"Madrigal","airDate":"2012-07-22","airDateUtc":"2012-07-23T01:00:00Z","overview":"Walt and Jesse seek out an unlikely partner for a new business venture. The DEA follows up new leads in its investigation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":1405},{"seriesId":59,"episodeFileId":1002,"seasonNumber":5,"episodeNumber":3,"title":"Hazard Pay","airDate":"2012-07-29","airDateUtc":"2012-07-30T01:00:00Z","overview":"Walt and Jesse put a business plan into action. Walt confesses a secret to Marie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":1406},{"seriesId":59,"episodeFileId":1007,"seasonNumber":5,"episodeNumber":4,"title":"Fifty-One","airDate":"2012-08-05","airDateUtc":"2012-08-06T01:00:00Z","overview":"Walt celebrates another birthday. Skyler considers her options. An associate complicates Walt and Jesse's plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":1407},{"seriesId":59,"episodeFileId":1012,"seasonNumber":5,"episodeNumber":5,"title":"Dead Freight","airDate":"2012-08-12","airDateUtc":"2012-08-13T01:00:00Z","overview":"Walt's team must get creative to obtain the materials they need to continue their operation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":1408},{"seriesId":59,"episodeFileId":9021,"seasonNumber":5,"episodeNumber":6,"title":"Buyout","airDate":"2012-08-19","airDateUtc":"2012-08-20T01:00:00Z","overview":"Walt, Jesse, and Mike struggle over the future of their business, as occupational hazards weigh on Jesse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":1409},{"seriesId":59,"episodeFileId":1022,"seasonNumber":5,"episodeNumber":7,"title":"Say My Name","airDate":"2012-08-26","airDateUtc":"2012-08-27T01:00:00Z","overview":"Walt takes control of business matters as Mike grapples with the consequences of his actions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":1410},{"seriesId":59,"episodeFileId":1026,"seasonNumber":5,"episodeNumber":8,"title":"Gliding Over All","airDate":"2012-09-02","airDateUtc":"2012-09-03T01:00:00Z","overview":"Walt ties up loose ends. Seeing the evidence of his success, he makes a startling and dangerous decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":1411},{"seriesId":59,"episodeFileId":1030,"seasonNumber":5,"episodeNumber":9,"title":"Blood Money","airDate":"2013-08-11","airDateUtc":"2013-08-12T01:00:00Z","overview":"As Walt and Jesse adjust to life out of the business, Hank grapples with a troubling lead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":1412},{"seriesId":59,"episodeFileId":1033,"seasonNumber":5,"episodeNumber":10,"title":"Buried","airDate":"2013-08-18","airDateUtc":"2013-08-19T01:00:00Z","overview":"While Skyler's past catches up with her, Walt covers his tracks. Jesse continues to struggle with his guilt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":1413},{"seriesId":59,"episodeFileId":9117,"seasonNumber":5,"episodeNumber":11,"title":"Confessions","airDate":"2013-08-25","airDateUtc":"2013-08-26T01:00:00Z","overview":"Jesse decides to make a change, while Walt and Skyler try to deal with an unexpected demand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":1414},{"seriesId":59,"episodeFileId":8934,"seasonNumber":5,"episodeNumber":12,"title":"Rabid Dog","airDate":"2013-09-01","airDateUtc":"2013-09-02T01:00:00Z","overview":"An unusual strategy starts to bear fruit, while plans are set in motion that could change everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":1415},{"seriesId":59,"episodeFileId":9118,"seasonNumber":5,"episodeNumber":13,"title":"To'hajiilee","airDate":"2013-09-08","airDateUtc":"2013-09-09T01:00:00Z","overview":"Things heat up for Walt in unexpected ways.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":1416},{"seriesId":59,"episodeFileId":1047,"seasonNumber":5,"episodeNumber":14,"title":"Ozymandias","airDate":"2013-09-15","airDateUtc":"2013-09-16T01:00:00Z","overview":"Everyone copes with radically changed circumstances.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":1417},{"seriesId":59,"episodeFileId":1048,"seasonNumber":5,"episodeNumber":15,"title":"Granite State","airDate":"2013-09-22","airDateUtc":"2013-09-23T01:00:00Z","overview":"Events set in motion long ago move toward a conclusion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":1418},{"seriesId":59,"episodeFileId":8933,"seasonNumber":5,"episodeNumber":16,"title":"Felina","airDate":"2013-09-29","airDateUtc":"2013-09-30T01:00:00Z","overview":"All bad things must come to an end.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":1419},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"No Half Measures: Creating the Final Season of Breaking Bad","airDate":"2013-11-26","airDateUtc":"2013-11-27T02:00:00Z","overview":"An extensive, detailed account on the incredible legacy Breaking Bad created before it had even ended, whilst documenting in intimate detail the filming of its final season.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1357},{"seriesId":59,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"El Camino: A Breaking Bad Movie","airDate":"2019-10-11","airDateUtc":"2019-10-12T01:00:00Z","overview":"Fugitive Jesse Pinkman attempts to outrun his past.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14775}],"episodeFile":[{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":4262116008,"dateAdded":"2018-10-10T21:32:08.476867Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8277000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:06","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":988},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E01.No Mas-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E01.No Mas-Bluray-1080p.mkv","size":3520541659,"dateAdded":"2018-10-10T21:32:08.502701Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8434000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":989},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Box Cutter-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E01.Box Cutter-Bluray-1080p.mkv","size":3519337155,"dateAdded":"2018-10-10T21:32:08.527985Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8432000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:11","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":990},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Seven Thirty-Seven-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E01.Seven Thirty-Seven-Bluray-1080p.mkv","size":3516239943,"dateAdded":"2018-10-10T21:32:08.554933Z","releaseGroup":"Seven","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8418000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:15","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":991},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Live Free or Die-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E01.Live Free or Die-Bluray-720p.mkv","size":360322814,"dateAdded":"2018-10-10T21:32:08.581587Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":992},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Grilled-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E02.Grilled-Bluray-1080p.mkv","size":3521896570,"dateAdded":"2018-10-10T21:32:08.607976Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8273000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:57","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":993},{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Cat's in the Bag-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E02.Cat's in the Bag-Bluray-1080p.mkv","size":3521745712,"dateAdded":"2018-10-10T21:32:08.633544Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8228000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:12","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":994},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Caballo Sin Nombre-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E02.Caballo Sin Nombre-Bluray-1080p.mkv","size":3521192890,"dateAdded":"2018-10-10T21:32:08.659937Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8434000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":995},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Thirty-Eight Snub-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E02.Thirty-Eight Snub-Bluray-1080p.mkv","size":3519476981,"dateAdded":"2018-10-10T21:32:08.68648Z","releaseGroup":"Eight","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8695000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:58","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":996},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Madrigal-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E02.Madrigal-Bluray-720p.mkv","size":395928512,"dateAdded":"2018-10-10T21:32:08.712889Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":997},{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E03.And the Bag's in the River-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E03.And the Bag's in the River-Bluray-1080p.mkv","size":3522881339,"dateAdded":"2018-10-10T21:32:08.739899Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8231000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:11","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":998},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E03.I.F.T-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E03.I.F.T-Bluray-1080p.mkv","size":3520210435,"dateAdded":"2018-10-10T21:32:08.765817Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8430000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":999},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Open House-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E03.Open House-Bluray-1080p.mkv","size":3519002119,"dateAdded":"2018-10-10T21:32:08.79186Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1000},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Bit by a Dead Bee-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E03.Bit by a Dead Bee-Bluray-1080p.mkv","size":3516545134,"dateAdded":"2018-10-10T21:32:08.821544Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8474000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:59","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1001},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Hazard Pay-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E03.Hazard Pay-Bluray-720p.mkv","size":396554910,"dateAdded":"2018-10-10T21:32:08.847525Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1002},{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Cancer Man-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E04.Cancer Man-Bluray-1080p.mkv","size":3522937171,"dateAdded":"2018-10-10T21:32:08.872885Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8218000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:15","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1003},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Green Light-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E04.Green Light-Bluray-1080p.mkv","size":3520046664,"dateAdded":"2018-10-10T21:32:08.898551Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8430000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1004},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Bullet Points-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E04.Bullet Points-Bluray-1080p.mkv","size":3519080691,"dateAdded":"2018-10-10T21:32:08.924229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8865000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1005},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Down-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E04.Down-Bluray-1080p.mkv","size":3515355435,"dateAdded":"2018-10-10T21:32:08.95067Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8387000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:24","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1006},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Fifty-One-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E04.Fifty-One-Bluray-720p.mkv","size":397844250,"dateAdded":"2018-10-10T21:32:08.97606Z","releaseGroup":"One","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1007},{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Gray Matter-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E05.Gray Matter-Bluray-1080p.mkv","size":3520792145,"dateAdded":"2018-10-10T21:32:09.001695Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8231000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:11","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1008},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Breakage-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E05.Breakage-Bluray-1080p.mkv","size":3520638988,"dateAdded":"2018-10-10T21:32:09.027172Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8397000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:21","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1009},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Mas-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E05.Mas-Bluray-1080p.mkv","size":3519862205,"dateAdded":"2018-10-10T21:32:09.052596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8430000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1010},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Shotgun-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E05.Shotgun-Bluray-1080p.mkv","size":3519052062,"dateAdded":"2018-10-10T21:32:09.078441Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1011},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Dead Freight-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E05.Dead Freight-Bluray-720p.mkv","size":403188367,"dateAdded":"2018-10-10T21:32:09.104071Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1278x720","runTime":"48:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1012},{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Crazy Handful of Nothin'-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E06.Crazy Handful of Nothin'-Bluray-1080p.mkv","size":3521946685,"dateAdded":"2018-10-10T21:32:09.129439Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8255000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:04","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1013},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Sunset-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E06.Sunset-Bluray-1080p.mkv","size":3520119290,"dateAdded":"2018-10-10T21:32:09.155992Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8430000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1014},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Cornered-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E06.Cornered-Bluray-1080p.mkv","size":3518989821,"dateAdded":"2018-10-10T21:32:09.181492Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1015},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Peekaboo-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E06.Peekaboo-Bluray-1080p.mkv","size":3514597030,"dateAdded":"2018-10-10T21:32:09.20695Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8393000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:22","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1016},{"seriesId":59,"seasonNumber":1,"relativePath":"Season 01\/S01E07.A No-Rough-Stuff-Type Deal-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 01\/S01E07.A No-Rough-Stuff-Type Deal-Bluray-1080p.mkv","size":3522765255,"dateAdded":"2018-10-10T21:32:09.258158Z","releaseGroup":"Type","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8328000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:42","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1018},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E07.One Minute-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E07.One Minute-Bluray-1080p.mkv","size":3520812466,"dateAdded":"2018-10-10T21:32:09.284249Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8431000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1019},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Problem Dog-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E07.Problem Dog-Bluray-1080p.mkv","size":3518602943,"dateAdded":"2018-10-10T21:32:09.309774Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1020},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Negro y Azul-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E07.Negro y Azul-Bluray-1080p.mkv","size":3517675465,"dateAdded":"2018-10-10T21:32:09.336246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8397000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:21","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1021},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Say My Name-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E07.Say My Name-Bluray-720p.mkv","size":396845947,"dateAdded":"2018-10-10T21:32:09.361663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1022},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Better Call Saul-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E08.Better Call Saul-Bluray-1080p.mkv","size":3521411479,"dateAdded":"2018-10-10T21:32:09.387456Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8397000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:21","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1023},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E08.I See You-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E08.I See You-Bluray-1080p.mkv","size":3520385646,"dateAdded":"2018-10-10T21:32:09.412785Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8427000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1024},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Hermanos-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E08.Hermanos-Bluray-1080p.mkv","size":3518956780,"dateAdded":"2018-10-10T21:32:09.43805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1025},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Gliding Over All-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E08.Gliding Over All-Bluray-720p.mkv","size":397263043,"dateAdded":"2018-10-10T21:32:09.463113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1278x720","runTime":"47:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1026},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Kafkaesque-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E09.Kafkaesque-Bluray-1080p.mkv","size":3520529765,"dateAdded":"2018-10-10T21:32:09.488378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8434000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1027},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E09.4 Days Out-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E09.4 Days Out-Bluray-1080p.mkv","size":3519909752,"dateAdded":"2018-10-10T21:32:09.513628Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8397000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:21","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1028},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Bug-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E09.Bug-Bluray-1080p.mkv","size":3518830024,"dateAdded":"2018-10-10T21:32:09.540074Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1029},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Blood Money-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E09.Blood Money-Bluray-720p.mkv","size":397241654,"dateAdded":"2018-10-10T21:32:09.566118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1030},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Fly-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E10.Fly-Bluray-1080p.mkv","size":3520231472,"dateAdded":"2018-10-10T21:32:09.590881Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8430000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1031},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Over-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E10.Over-Bluray-1080p.mkv","size":3518529696,"dateAdded":"2018-10-10T21:32:09.618092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8393000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:22","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1032},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Buried-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E10.Buried-Bluray-720p.mkv","size":397469376,"dateAdded":"2018-10-10T21:32:09.644291Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1033},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Salud-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E10.Salud-Bluray-720p.mkv","size":396048706,"dateAdded":"2018-10-10T21:32:09.670555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1034},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Abiquiu-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E11.Abiquiu-Bluray-1080p.mkv","size":3519555723,"dateAdded":"2018-10-10T21:32:09.697343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8430000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1035},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Mandala-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E11.Mandala-Bluray-1080p.mkv","size":3519350702,"dateAdded":"2018-10-10T21:32:09.724601Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8397000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:21","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1036},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Crawl Space-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E11.Crawl Space-Bluray-1080p.mkv","size":3518963434,"dateAdded":"2018-10-10T21:32:09.750412Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8481000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:57","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1037},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Half Measures-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E12.Half Measures-Bluray-1080p.mkv","size":3520614811,"dateAdded":"2018-10-10T21:32:09.802151Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8434000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1039},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Phoenix-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E12.Phoenix-Bluray-1080p.mkv","size":3516544632,"dateAdded":"2018-10-10T21:32:09.828377Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8387000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:24","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1040},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Face Off-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 04\/S04E13.Face Off-Bluray-1080p.mkv","size":4261002306,"dateAdded":"2018-10-10T21:32:09.906441Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9753000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:26","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1043},{"seriesId":59,"seasonNumber":2,"relativePath":"Season 02\/S02E13.ABQ-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 02\/S02E13.ABQ-Bluray-1080p.mkv","size":3520871413,"dateAdded":"2018-10-10T21:32:09.933412Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8352000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:34","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1044},{"seriesId":59,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Full Measure-Bluray-1080p.mkv","path":"\/tv\/Breaking Bad\/Season 03\/S03E13.Full Measure-Bluray-1080p.mkv","size":3520781156,"dateAdded":"2018-10-10T21:32:09.95915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8427000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":1045},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Ozymandias-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E14.Ozymandias-Bluray-720p.mkv","size":396040954,"dateAdded":"2018-10-10T21:32:10.011663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"47:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1047},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Granite State-Bluray-720p.mkv","path":"\/tv\/Breaking Bad\/Season 05\/S05E15.Granite State-Bluray-720p.mkv","size":448190448,"dateAdded":"2018-10-10T21:32:10.037355Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1216x720","runTime":"53:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1048},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Felina-Bluray-1080p.mp4","path":"\/tv\/Breaking Bad\/Season 05\/S05E16.Felina-Bluray-1080p.mp4","size":827333250,"dateAdded":"2019-09-13T05:32:24.148051Z","sceneName":"\u7edd\u547d\u6bd2\u5e08.Breaking.Bad.S05E16.\u4e2d\u82f1\u5b57\u5e55.BDrip.1080p-\u4eba\u4eba\u5f71\u89c6","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8933},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Rabid Dog-Bluray-1080p.mp4","path":"\/tv\/Breaking Bad\/Season 05\/S05E12.Rabid Dog-Bluray-1080p.mp4","size":708033851,"dateAdded":"2019-09-13T09:27:31.879637Z","sceneName":"\u7edd\u547d\u6bd2\u5e08.Breaking.Bad.S05E12.\u4e2d\u82f1\u5b57\u5e55.BDrip.1080p-\u4eba\u4eba\u5f71\u89c6","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8934},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Buyout-Bluray-1080p.mp4","path":"\/tv\/Breaking Bad\/Season 05\/S05E06.Buyout-Bluray-1080p.mp4","size":710476563,"dateAdded":"2019-09-13T14:56:42.153731Z","sceneName":"\u7edd\u547d\u6bd2\u5e08.Breaking.Bad.S05E06.\u4e2d\u82f1\u5b57\u5e55.BDrip.1080p-\u4eba\u4eba\u5f71\u89c6","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9021},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Confessions-Bluray-1080p.mp4","path":"\/tv\/Breaking Bad\/Season 05\/S05E11.Confessions-Bluray-1080p.mp4","size":710098234,"dateAdded":"2019-09-22T08:57:01.816499Z","sceneName":"\u7edd\u547d\u6bd2\u5e08.Breaking.Bad.S05E11.\u4e2d\u82f1\u5b57\u5e55.BDrip.1080p-\u4eba\u4eba\u5f71\u89c6","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9117},{"seriesId":59,"seasonNumber":5,"relativePath":"Season 05\/S05E13.To'hajiilee-Bluray-1080p.mp4","path":"\/tv\/Breaking Bad\/Season 05\/S05E13.To'hajiilee-Bluray-1080p.mp4","size":692590600,"dateAdded":"2019-09-23T14:13:25.429608Z","sceneName":"\u7edd\u547d\u6bd2\u5e08.Breaking.Bad.S05E13.\u4e2d\u82f1\u5b57\u5e55.BDrip.1080p-\u4eba\u4eba\u5f71\u89c6","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9118},{"seriesId":59,"seasonNumber":4,"relativePath":"Season 04\/S04E12.End Times-Bluray-1080p.mp4","path":"\/tv\/Breaking Bad\/Season 04\/S04E12.End Times-Bluray-1080p.mp4","size":688655893,"dateAdded":"2019-09-25T16:32:59.353003Z","sceneName":"\u7edd\u547d\u6bd2\u5e08.Breaking.Bad.S04E12.\u4e2d\u82f1\u5b57\u5e55.BDrip.1080p-\u4eba\u4eba\u5f71\u89c6","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1080","runTime":"45:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9128}],"queue":[]},"79":{"series":{"title":"Courage the Cowardly Dog","alternateTitles":[{"title":"Courage der feige Hund","sceneSeasonNumber":-1},{"title":"Leone il cane fifone","seasonNumber":-1}],"sortTitle":"courage cowardly dog","status":"ended","ended":true,"overview":"This show is about a dog named Courage that was found by Muriel Bagge who lives on a farm in the middle of Nowhere with her husband Eustace Bagge. Eustace dislikes Courage and calls him \"Stupid Dog\". Muriel on the other hand is different from Eustace and loves Courage. But, weird things happen in Nowhere and it's now up to Courage to save them.","previousAiring":"2002-11-22T09:11:00Z","network":"Cartoon Network","airTime":"04:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/63\/banner.jpg?lastWrite=637103832484557650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/77435-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/63\/poster.jpg?lastWrite=636987048342454210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/77435-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/63\/fanart.jpg?lastWrite=636747176315986260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/77435-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"1996-02-18T09:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":4,"sizeOnDisk":62085120,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2000-03-30T09:11:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":2382528512,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2001-11-16T09:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":2384472080,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2002-08-09T08:11:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":2303544116,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2002-11-22T09:11:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":2297622528,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Courage the Cowardly Dog","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":11,"tvdbId":77435,"tvRageId":3151,"tvMazeId":1956,"firstAired":"1999-11-12T00:00:00Z","seriesType":"standard","cleanTitle":"couragecowardlydog","imdbId":"tt0220880","titleSlug":"courage-the-cowardly-dog","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Children"],"tags":[],"added":"2018-07-08T09:21:09.7706853Z","ratings":{"votes":641,"value":9.1},"statistics":{"seasonCount":4,"episodeFileCount":103,"episodeCount":103,"totalEpisodeCount":106,"sizeOnDisk":9430252356,"percentOfEpisodes":100.0},"id":63},"episodes":[{"seriesId":63,"episodeFileId":1108,"seasonNumber":0,"episodeNumber":1,"title":"The Chicken From Outer Space","airDate":"1996-02-18","airDateUtc":"1996-02-18T09:00:00Z","overview":"A chicken from outer space fights Courage, while Muriel cooks Eustace some strange eggs for breakfast that she got from the outerspace chicken. Eustace turns into a chicken, and Courage shoots both the alien chicken and the Eustace chicken with a laser gun.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1516},{"seriesId":63,"episodeFileId":1104,"seasonNumber":1,"episodeNumber":1,"title":"A Night at the Katz Motel","airDate":"1999-11-12","airDateUtc":"1999-11-12T09:00:00Z","overview":"Courage and his owners stop at a lonely motel to end their vacation, but it is owned by a nefarious red cat named Katz, who harbors a penchant for feeding his guests to giant spiders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1520},{"seriesId":63,"episodeFileId":1104,"seasonNumber":1,"episodeNumber":2,"title":"Cajun Granny Stew","airDate":"1999-11-12","airDateUtc":"1999-11-12T09:11:00Z","overview":"An orange Cajun fox repeatedly tries to kidnap a sleepy Muriel so he can use her in a Cajun stew.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1521},{"seriesId":63,"episodeFileId":1111,"seasonNumber":1,"episodeNumber":3,"title":"The Shadow of Courage","airDate":"1999-11-19","airDateUtc":"1999-11-19T09:00:00Z","overview":"A scientist dies and his shadow spooks the town of Nowhere and then the Bagge's house. The shadow then admits he is tired of scaring people and decides to become a star in the sky, literally!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1522},{"seriesId":63,"episodeFileId":1111,"seasonNumber":1,"episodeNumber":4,"title":"Dr. Le Quack, Amnesia Specialist","airDate":"1999-11-19","airDateUtc":"1999-11-19T09:11:00Z","overview":"Muriel is hit on the head by a fly-away piece of the roof and develops amnesia. Eustace takes full advantage of this and turns his wife into a \"slave woman.\" Courage goes on the internet to find an amnesia specialist, but is answered by Le Quack, a thief who poses as a doctor! Courage tries to get help, while Le Quack tortures Muriel for information on where her valuables are.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1523},{"seriesId":63,"episodeFileId":1118,"seasonNumber":1,"episodeNumber":5,"title":"Courage Meets Bigfoot","airDate":"1999-11-26","airDateUtc":"1999-11-26T09:00:00Z","overview":"Bigfoot comes to the Bagge house. Courage and Bigfoot have a food fight, dance in Carmen Miranda outfits and have a good time. All the fun comes to an abrupt stop as soon as a mob of people arrive to get a reward for Bigfoot. Bigfoot's dad shows up and takes him home, without anyone getting hurt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1524},{"seriesId":63,"episodeFileId":1118,"seasonNumber":1,"episodeNumber":6,"title":"Hothead","airDate":"1999-11-26","airDateUtc":"1999-11-26T09:11:00Z","overview":"Eustace wants more hair on his head and buys this new tonic. Little does he know that when he gets mad, the effect of the tonic makes him dangerously angry!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1525},{"seriesId":63,"episodeFileId":1124,"seasonNumber":1,"episodeNumber":7,"title":"The Demon in the Mattress","airDate":"1999-12-03","airDateUtc":"1999-12-03T09:00:00Z","overview":"Muriel orders a new mattress and when she lays on it, a demon inside the mattress enters her body and takes over. Courage gets rid of the demon by finding a chant on The Computer. It exits Muriel's body and the mattress is sent back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1526},{"seriesId":63,"episodeFileId":1124,"seasonNumber":1,"episodeNumber":8,"title":"Freaky Fred","airDate":"1999-12-03","airDateUtc":"1999-12-03T09:11:00Z","overview":"Muriel invites her deranged relative, Fred, to their home. He has a problem, though. He can't stop giving haircuts. He shaves all of Courage's hair off, and he gets caught by the police, who send him back to an insane asylum.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1527},{"seriesId":63,"episodeFileId":1130,"seasonNumber":1,"episodeNumber":9,"title":"Night of the Weremole","airDate":"1999-12-17","airDateUtc":"1999-12-17T09:00:00Z","overview":"Muriel is picking carrots out of the garden and feeds a rabbit one. She gets bit and only thinks it was a rabbit. They go to Dr. Vindaloo to find the cure. He just says to keep soaking it. She turns into a weremole, an animal who has a taste for biting people and rabbits. Once your bitten by one, you become one yourself. Courage must dress up as a rabbit, to get his attention, then pull a hair from the original weremole that bit her and feed it to Weremole-Muriel to turn her back to normal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1528},{"seriesId":63,"episodeFileId":1130,"seasonNumber":1,"episodeNumber":10,"title":"Mother's Day","airDate":"1999-12-17","airDateUtc":"1999-12-17T09:11:00Z","overview":"Eustace & Courage visit Ma (Eustace's Mother). Muriel refuses to see her. When they arive at her trailer, she welcomes Courage instead of Eustace because he is just a \"\"stupid boy.\"\" When they eat lunch, Courage gets a lot of dogfood and Eustace barely gets any bacon. Eustace gives Ma some gifts, but rejects them all except one, a mirror. Ma then gives Courage a teddy bear. She doesn't have a gift for Eustace. Ma then tells Eustace ahow he always was a scared child. Eustace then proves his manhood by arm wrestling her. She almost wins but Courage sticks some flowers in her face, (which she is allergic to) making her sneeze, which stops the arm wrestling. Her wig falls off and she complains of being ugly. Eustace says \"\"No, Ma, you've always looked good to me.\"\" He then takes off his hat and shows his bald head, too. They end up bonding together.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1529},{"seriesId":63,"episodeFileId":1135,"seasonNumber":1,"episodeNumber":11,"title":"The Duck Brothers","airDate":"2000-01-14","airDateUtc":"2000-01-14T09:00:00Z","overview":"Two ducks put an electric device on Muriel's head and she becomes under their control by a remote. The ducks do this so they can save there third brother, who is trapped in a kitchen and ready to be eaten by humans. Eventually, the same is done with Eustace. Courage talks to the Ducks and works out a plan to save their brother. Courage, Eustace, and Muriel settle peace with the duck brothers. The ducks go back home into space.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1530},{"seriesId":63,"episodeFileId":1135,"seasonNumber":1,"episodeNumber":12,"title":"Shirley the Medium","airDate":"2000-01-14","airDateUtc":"2000-01-14T09:11:00Z","overview":"Eustace hires Shirley the medium to settle differences between Eustace and his dead brother, Horace. Some creepy stuff happens and Eustace gets his brother's box, but not in a good way.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1531},{"seriesId":63,"episodeFileId":1142,"seasonNumber":1,"episodeNumber":13,"title":"King Ramses' Curse","airDate":"2000-01-21","airDateUtc":"2000-01-21T09:00:00Z","overview":"Courage finds a slab that belonged to a dead guy named King Ramses. A guy named Professor Flith comes and says the slab belongs in the museum. However, Eustace (knowing it's worth a lot) won't give it to him. So, the ghost of King Ramses comes and causes plagues to happen that won't stop until Eustace returns the slab to the museum. The first is a flood, the second is loud music, and the third is locusts. The slab is finally returned, but Eustace is now possessed by King Ramses, as punishment for his greediness.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1532},{"seriesId":63,"episodeFileId":1142,"seasonNumber":1,"episodeNumber":14,"title":"The Clutching Foot","airDate":"2000-01-21","airDateUtc":"2000-01-21T09:11:00Z","overview":"Eustace gets a terrible foot fungus, and it grows until it takes over Eustace's body! The foot makes Courage steal money or else Muriel \"gets it.\" Courage goes on the computer and finds out dog spit will get rid of the fungus. So, he licks the foot until it's gone and Eustace is back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1533},{"seriesId":63,"episodeFileId":1148,"seasonNumber":1,"episodeNumber":15,"title":"The Hunchback of Nowhere","airDate":"2000-01-28","airDateUtc":"2000-01-28T09:00:00Z","overview":"A hunchback who is rejected by everyone wants to find a house to sleep in. He goes to the Bagge house, but Eustace rejects him. It's raining and Courage gets Eustace's raincoat and finds the hunchback in the barn. He is very friendly and together have fun doing shadow puppets, acrobatic stunts and bell ringing. Muriel is happy to have the hunchback stay with them, but Eustace wants him to go.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1534},{"seriesId":63,"episodeFileId":1148,"seasonNumber":1,"episodeNumber":16,"title":"The Gods Must Be Goosey","airDate":"2000-01-28","airDateUtc":"2000-01-28T09:11:00Z","overview":"A Goose God wants to marry Muriel. He flirts with her, but Courage is angry because he thinks the Goose God will take Muriel away forever. He tries to act as though Eustace is being nice to Muriel. Muriel says she can't marry the goose god because she's \"already spoken for\". The Goose God tries to kidnap her, but when Courage makes Eustace's truck honk, the Goose God loves it and leaves Muriel. He ends up marrying Eustace's truck!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1535},{"seriesId":63,"episodeFileId":1153,"seasonNumber":1,"episodeNumber":17,"title":"Queen of the Black Puddle","airDate":"2000-03-02","airDateUtc":"2000-03-02T09:00:00Z","overview":"A Queen who lives in a puddle in the yard of the farm rises up out of the puddle. Eustace sees this Queen and decides to follow the hot chick. Little does he know that she is bad and plans to eat him. She drags him into the puddle, and Courage follows to save Eustace. She lives in a castle, which is where she plans to eat him. Courage saves him and gets out of the puddle as they just miss being captured.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1536},{"seriesId":63,"episodeFileId":1153,"seasonNumber":1,"episodeNumber":18,"title":"Everyone Wants to Direct","airDate":"2000-03-02","airDateUtc":"2000-03-02T09:11:00Z","overview":"Benton Tarentella and Erin Von Volkheim are two dead jailed movie directors who plan to capture Muriel and eat her. Eustace loves this idea of being in a movie for the money, while Muriel loves to be on camera. Courage hates the idea. Eustace eventually locks Courage up in a trunk because he kept trying to stop this real movie from happening. Courage finds the script in the trunk and rewrites it so Muriel gets saved. Then, Benton and Erin get in a fight and claim to never work together again, giving up on their realistic movie idea and to bury themselves back where they've always been buried: under the Bagge's basement! Everything goes back to normal.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1537},{"seriesId":63,"episodeFileId":1159,"seasonNumber":1,"episodeNumber":19,"title":"The Snowman Cometh","airDate":"2000-03-09","airDateUtc":"2000-03-09T09:00:00Z","overview":"Courage, Muriel, and Eustace go on vacation to the North Pole. Courage goes out to get firewood and comes back to the igloo (where they were staying) and finds everybody else is gone. Courage knew it was a snowman because he saw it earlier. He figured out that the snowman was taking a liquid from Eustace and Muriel's body to be able to live in hot weather and not melt. Courage gets captured by the snowman but breaks out and saves both. The snowman falls into icy water while chasing them and freezes into a giant ice cube. Muriel, Courage, and Eustace go home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1538},{"seriesId":63,"episodeFileId":1159,"seasonNumber":1,"episodeNumber":20,"title":"The Precious, Wonderful, Adorable, Loveable Duckling","airDate":"2000-03-09","airDateUtc":"2000-03-09T09:11:00Z","overview":"Courage finds a duck egg, brings it inside, and gives it to Eustace. Eustace thinks he is going to eat it for breakfast, but finds out its still alive. It hatches and thinks Eustace is his mom. The duck becomes \"\"Eustace's slave\"\" and it is jealous of Muriel and Courage, which makes it do nasty tricks on both. Courage eventually puts a stop to this, in which...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1539},{"seriesId":63,"episodeFileId":1165,"seasonNumber":1,"episodeNumber":21,"title":"Heads of Beef","airDate":"2000-03-16","airDateUtc":"2000-03-16T09:00:00Z","overview":"Muriel is sick, so she sends Courage and Eustace to go to the bakery for her. Eustace gets in his truck and decides to go to eat first. He goes to a place called \"\"Burgers: Really Cheap!\"\". The owner is a pig named Jonn Bonne. He gives Eustace and Courage burgers. When Courage sees a guy come into a room and not come back, he thinks he was made into a burger because the burger looks just like him. He goes down and sees Jonn Bonne and his wife talking over a silhoutte of a person's head on a table! The Bonnes go after Courage, but he escapes through the mail slot and runs all the way home. Muriel has gotten better. It turns out the heads were really sculptures made of hamburger meat that Jonn Bonne makes. He, his wife, Eustace and that guy eat one of Eustace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1540},{"seriesId":63,"episodeFileId":1165,"seasonNumber":1,"episodeNumber":22,"title":"Klub Katz","airDate":"2000-03-16","airDateUtc":"2000-03-16T09:11:00Z","overview":"Courage, Muriel, and Eustace go on a cruise, but a tidal wave strands them onto an island. Katz returns and says he'll let stay at \"\"Klub Katz\"\". Muriel and Eustace go into a \"\"spa\"\", where they're turned in","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1541},{"seriesId":63,"episodeFileId":1172,"seasonNumber":1,"episodeNumber":23,"title":"Revenge of the Chicken from Outer Space","airDate":"2000-03-23","airDateUtc":"2000-03-23T09:00:00Z","overview":"Courage notices a familar UFO come toward the Bagge's House. He sees a chicken (the same chicken from the pilot episode. Courage shot the chicken with a raygun and blew up the chicken's head) The chicken wantsa revenge, so he captures Muriel. Courage saves her before any harm is done. He captures Eustace and pulls off his head with a plunger! The chicken (with Eustace's head) chases Muriel and Courage, but later everything turns out OK with the exception of Eustace's missing head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1542},{"seriesId":63,"episodeFileId":1172,"seasonNumber":1,"episodeNumber":24,"title":"Journey to the Center of Nowhere","airDate":"2000-03-23","airDateUtc":"2000-03-23T09:11:00Z","overview":"Muriel's homegrown eggplants (that live underground) aren't getting enough water and try to attack her. Courage, after constantly trying, finally stops the eggplants from eating Muriel and give the eggplants water. Everything goes back to normal, and Muriel wins an award for the best eggplants.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1543},{"seriesId":63,"episodeFileId":1177,"seasonNumber":1,"episodeNumber":25,"title":"Little Muriel","airDate":"2000-03-30","airDateUtc":"2000-03-30T09:00:00Z","overview":"Little Muriel: Muriel is picked up by a tornado and is turned into a little kid. Courage has to put up with Little Muriel's antics and must find a tornado spinning the opposite direction to change Muriel back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1544},{"seriesId":63,"episodeFileId":1177,"seasonNumber":1,"episodeNumber":26,"title":"The Great Fusilli","airDate":"2000-03-30","airDateUtc":"2000-03-30T09:11:00Z","overview":"The Great Fusilli: A traveling trailer comes by. The Great Fusilli houses it and decides to make Eustace, Muriel, and Courage acting stars in his portable set. But Courage discovers a bunch of marionettes and sees that Eustace and Muriel have transformed into marionettes. Courage must stop the madness.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":1545},{"seriesId":63,"episodeFileId":1105,"seasonNumber":2,"episodeNumber":1,"title":"The Magic Tree of Nowhere","airDate":"2000-10-31","airDateUtc":"2000-10-31T09:00:00Z","overview":"Eustace grows a magical tree that can grant him whatever he wants. When it gets more attention than Eustace, he decides to cut it down. Courage protects it, but eventually it's cut down. However, the tree has enough power to give Courage the cure to Muriel's new bloated head sickness.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1546},{"seriesId":63,"episodeFileId":1105,"seasonNumber":2,"episodeNumber":2,"title":"Robot Randy","airDate":"2000-10-31","airDateUtc":"2000-10-31T09:11:00Z","overview":"On a distant planet, there was a race of robots who lived to kill stuff. One non-bloodthirsty robot named Randy was banished from his planet. To show he's worth it, he goes to Earth and enslaves Muriel, Eustace, and Courage. Later, Courage finds Randy alone talking to himself on how he doesn't want to destroy, and he really likes carving wood. Later, when the three fail to follow Randy's orders, Randy is about to crush Eustace and Muriel. Courage challenges Randy to a break dancing competition to set their fates. Courage wins, having Muriel and Courage get Randy to renew his faith in carving a reindeer. On his home planet, Randy opens a wood reindeer stand and m...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1547},{"seriesId":63,"episodeFileId":1112,"seasonNumber":2,"episodeNumber":3,"title":"Curse of Shirley","airDate":"2000-11-07","airDateUtc":"2000-11-07T09:00:00Z","overview":"Shirley, the medium, places a curse on Eustace. The curse is that a raincloud floats over Eustace's head. The more heartless he is, the more extreme the storm gets. The only way to break the curse is for Eustace to show kindness. Courage has to hold a mirror up to Eustace's face, which causes Eustace to have a flashback and sees himself as a little boy in the mirror. He shows kindness by giving the little boy his hat because he is cold. He actually puts it on Courage's head thinking that he is the boy. The curse goes away, but then returns.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1548},{"seriesId":63,"episodeFileId":1112,"seasonNumber":2,"episodeNumber":4,"title":"Courage in the Big Stinkin' City","airDate":"2000-11-07","airDateUtc":"2000-11-07T09:11:00Z","overview":"Muriel is slated to perform at New York City. A shady bug named Shwick claims to work for the show and brings them to a room below the stage. The bug sends Courage to pick up a package and if he doesn't, he'd kill Muriel. Courage brings it back, but it's broken. Courage grabs Muriel and runs toward the stage to preform. Swhwick chases them onto the stage, where the police spot and arrest him.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1549},{"seriesId":63,"episodeFileId":1117,"seasonNumber":2,"episodeNumber":5,"title":"Family Business","airDate":"2000-11-14","airDateUtc":"2000-11-14T09:00:00Z","overview":"Basil, a confused burgular, comes to the Bagge house. At one minute he tries to take them hostage, the next minute he invites himself to a dinner with Eustace, Muriel, and Courage. He renames all of them, he thinks they are his family. He calls Courage \"\"Nigel\"\", Muriel is \"\"Mama Mash Potatos\"\" and Eustace is \"\"Uncle Twinkle Toes\"\". After the strange supper, the burgular takes all three of them to Mount Rushmore. He wants to remove all of the heads off it! The police struggle to get the burgular (in Lincoln's nose) Courage just saves him, and the burgular then decides to take up a new profession... Eel Massaging!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1550},{"seriesId":63,"episodeFileId":1117,"seasonNumber":2,"episodeNumber":6,"title":"1000 Years of Courage","airDate":"2000-11-14","airDateUtc":"2000-11-14T09:11:00Z","overview":"During Bingo, Muriel, Eustace, and Courage are sent 1000 years into the future, to a world where bananas are the inhabidants of the Earth. Courage and the bananas find out the mayor of the bananas is a monkey. Courage and the bananas then overthrow the king monkey and put him on display on a stage and make him preform. The Bagge's get sent...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1551},{"seriesId":63,"episodeFileId":1123,"seasonNumber":2,"episodeNumber":7,"title":"Courage Meets the Mummy","airDate":"2001-01-19","airDateUtc":"2001-01-19T09:00:00Z","overview":"A baker back in eygptian times was killed by the queen because she thinks he stole the cookies he baked for her and sold them.He was mummified. One day the mummy awakes and sets out to find the queen, he comes to Muriel's house and thinks Muriel is the queen (she looks very much like her) and Courage hypnotises Muriel into being a queen and Eustace into the royal pumba. Actually the royal pumba back in ancient times was the real criminal not the baker.Eustace is to be mummified (not really, just to get the mummy satisfied by saying this). The Queen (Muriel) says the baker is innocent, and is sorry for him and says how can she make it up to him? She gives the mummy one of Eustace's favorite sheets to sleep in and he gives her a cookie recipe.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1552},{"seriesId":63,"episodeFileId":1123,"seasonNumber":2,"episodeNumber":8,"title":"Invisible Muriel","airDate":"2001-01-19","airDateUtc":"2001-01-19T09:11:00Z","overview":"Courage digs up a strange neon glowing rock. He gives it to Muriel as a gift. It turns out that that's an invisibilty stone and Muriel starts to disappear. The authorities capture Muriel and Courage m...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1553},{"seriesId":63,"episodeFileId":1129,"seasonNumber":2,"episodeNumber":9,"title":"Human Habitrail","airDate":"2001-02-22","airDateUtc":"2001-02-22T09:00:00Z","overview":"Doc Gerbil, a fake vacuum cleaner seller,comes to Courage,Eustace, and Muriel's House and takes out a vacuum cleaner and sucks up Muriel and Eustace into it. He takes them to his labratory and puts them in a human habitrail. He peforms experiments on them. Courage manages to get them back.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1554},{"seriesId":63,"episodeFileId":1129,"seasonNumber":2,"episodeNumber":10,"title":"Mission to the Sun","airDate":"2001-02-22","airDateUtc":"2001-02-22T09:11:00Z","overview":"Courage is ordered to go to the sun and fix the lightbulb on it. Everything is ok until Muriel's brain gets taken over by an alien! It makes Muriel mean and trys to throw Courage out of the spaceship. Meanwhile Eustace's hat gets stuck in the toliet and gets pumped out into space! Eustace chases after it. Muriel then destroys wires in the spaceship and the ship goes out of control and dives into the sun! Luckily there ok. Courage fixes the lightbulb and Muriel's alien leaves. To get back home, they see Eustace riding on a asteroid holding his hat! They hitch a ride and get home. But the Alien says he'll be back,(as the episode ends the alien enters Eustace's brain...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1555},{"seriesId":63,"episodeFileId":1136,"seasonNumber":2,"episodeNumber":11,"title":"Courage the Fly","airDate":"2001-03-16","airDateUtc":"2001-03-16T09:00:00Z","overview":"Courage gets turned into a fly by Di Lung outside his house .Eustace trys to smack him, because he hates flys. He trys three times to get the fly but keeps hiting Muriel instead.Courage then must stop a salalite from hitting the house. It crashes in there yard.Muriel and Eustace then find out Courage turned into a fly. Eustace walks into the house and wants to get rid of the dog-fly.Muriel says how can you think of getting Courage at a time like this, the satalite almost hit the house. Eustace replies \"\"It didn't even come close\"\".Suddenly the satalite raises out of the ground and picks Eustace up with it as it shoots up toward space.Muriel and Courage then just sit in their rocking chair.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1556},{"seriesId":63,"episodeFileId":1136,"seasonNumber":2,"episodeNumber":12,"title":"Katz Candy","airDate":"2001-03-16","airDateUtc":"2001-03-16T09:11:00Z","overview":"Katz wants one of Muriel's recipes and wants to know the secret ingredient so he can win an annual contest that Muriel always wins.He sends out a jelly monster (made out of real jelly) to capture Muriel & Courage follows to save Muriel. Katz holds Muriel captive in his cand","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1557},{"seriesId":63,"episodeFileId":1141,"seasonNumber":2,"episodeNumber":13,"title":"Nowhere TV","airDate":"2001-04-03","airDateUtc":"2001-04-03T08:00:00Z","overview":"Eustace and Muriel's tv breaks and they call Le Quak to fix it,but Le Quack does something to the Tv to make it hypnotize people.He makes them go steal money and eventually Courage fights Le Quack in a 3D Television Battle and the police come and capture Le Quack, Muriel, & Eustace become their normal selves again.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1558},{"seriesId":63,"episodeFileId":1141,"seasonNumber":2,"episodeNumber":14,"title":"Mega Muriel the Magnificent","airDate":"2001-04-03","airDateUtc":"2001-04-03T08:11:00Z","overview":"Courage's Computer,who is sick and tired of answering Courage's questions about shadows,monsters,etc. and thinks there not scary so he does something evil ... he uploads his memory into Muriel's body and control's it. He does stunts to make Courage have to rescue the Computer (which is in Muriel's body) Eventually he gets stuck and Courage has to save him from a machine. Even the Nowhere News was there to telecast these stunts of Muriel or (the Computer). Eventually the computer apologizes and goes back into the monitor and Muriel returns to her normal self.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1559},{"seriesId":63,"episodeFileId":1147,"seasonNumber":2,"episodeNumber":15,"title":"Bad Hair Day","airDate":"2001-04-10","airDateUtc":"2001-04-10T08:00:00Z","overview":"We find out that Muriel has a rare blood type of ABXYZ. People from Growth Industries take her away where her hair is experimented on. The whole scheme is backed up by Ma.Courage saves Muriel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1560},{"seriesId":63,"episodeFileId":1147,"seasonNumber":2,"episodeNumber":16,"title":"The Forbidden Hat of Gold","airDate":"2001-04-10","airDateUtc":"2001-04-10T08:11:00Z","overview":"Eustace finds a treasure map his dead brother, Horace, left him. It leads to a golden hat in a cave. Eustace, Muriel and Courage go there. When Eustace takes the golden hat, monks that live there capture the three. Then they try to sacrifice Muriel to their God, which is a rock statue. Courage destroys the rock by giving it a strange coat. Eustace finally gets the hat, but when he puts it on he turns to stone.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1561},{"seriesId":63,"episodeFileId":1154,"seasonNumber":2,"episodeNumber":17,"title":"Serpent of Evil River","airDate":"2001-04-17","airDateUtc":"2001-04-17T08:00:00Z","overview":"Courage, Eustace and Muriel take a fishing trip but find out the salior is a little messed up in the head and kindof acts like a villian. The sailor wants to capture a serpent and makes Muriel bait and the serpent takes Muriel under water ( the rest follow except Eustace) under water to only find out that the serpent just wanted an audience to sing opera to. She didn't want to hard anyone. So Courage saves Muriel and they go home on the ship and hold the sailor captive, but Eustace is trapped on an island with monkeys!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1562},{"seriesId":63,"episodeFileId":1154,"seasonNumber":2,"episodeNumber":18,"title":"The Transplant","airDate":"2001-04-17","airDateUtc":"2001-04-17T08:11:00Z","overview":"Courage finds a bone in the backyard, which turns out to be the bone of the extinct kangaroo monster as Courage's compter says.(Apparently the scientists weren't very creative in the name). A whole skeleton is found and Eustace sells bones to scientists. When Courage comes Eustace accidently falls off the roof, and their doctor says a bone transplant is needed. Courage decides to use the kangaroo monster bone to transplant into","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1563},{"seriesId":63,"episodeFileId":1160,"seasonNumber":2,"episodeNumber":19,"title":"Car Broke, Phone Yes","airDate":"2001-10-26","airDateUtc":"2001-10-26T08:00:00Z","overview":"A strange person comes to the house. Muriel shows good hospitality toward it and the creature turns out to be an alien in disguise. The alien steals Muriel's kindness and Muriel becomes just like Eustace. Courage goes after the alien and eventually, gets Muriel's kindness back.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1564},{"seriesId":63,"episodeFileId":1160,"seasonNumber":2,"episodeNumber":20,"title":"Cowboy Courage","airDate":"2001-10-26","airDateUtc":"2001-10-26T08:11:00Z","overview":"Courage dreams about being a sherif in a Western city. Accompanied by Muriel, they go after the ghost of bank-robbing Eustace, or better known as The Whip.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1565},{"seriesId":63,"episodeFileId":1166,"seasonNumber":2,"episodeNumber":21,"title":"Evil Weevil","airDate":"2001-11-02","airDateUtc":"2001-11-02T09:00:00Z","overview":"Courage,Eustace and Muriel are driving down the road and smash into what looks like a giant fly. Muriel invites him to dinner and at first is polite and helpful. But he ends up being too helpful. He is a weevil. He eats the blood out of Muriel and Eustace and tells them he is giving them a back massage. After a game of skill with the weevil courage gets rid of him by putting the weevil's mouth on the weevil ,he eats himself up and shrinks to a size of a fly. Muriel and Eustace come out okay and are fed back to health by Courage.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1566},{"seriesId":63,"episodeFileId":1166,"seasonNumber":2,"episodeNumber":22,"title":"McPhearson Phantom","airDate":"2001-11-02","airDateUtc":"2001-11-02T09:11:00Z","overview":"Muriel gets blamed whenever she gives Eustace or helps Eustace because something weird happens after she does so. Courage can't figure out what it is. Eustace blames Muriel for trying to get rid of him. Muriel is innocent and is doing nothing. Eustace calls his mother to work out this problem, but she is actually part of this problem. While Courage trys to get Muriel and Eustace on friendly grounds, Eustace's mother bumps into a...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1567},{"seriesId":63,"episodeFileId":1171,"seasonNumber":2,"episodeNumber":23,"title":"The House of Discontent","airDate":"2001-11-09","airDateUtc":"2001-11-09T09:00:00Z","overview":"Eustace's plants never grow right. The moon has gotten tired of watching Eustace fail to grow just 1 plant so he haunts the house by making objects like food,applainces,etc. come to life. He tells Muriel,Eustace, and Courage they must get out of the house if they don't grow 1 plant by midnight. At exactly 12:00 Courage takes some of Eustace's sweat ( he is sweating beacause of the moons torture which is making the house extremly hot for them so they'll move out of the house) and puts it on the plant,it grows! They stay at the house and the moon stops being unfriendly. Eustace puts up a plant stand and is dermited to sell plants since he grew this plant \"\"all by himself\"\"!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1568},{"seriesId":63,"episodeFileId":1171,"seasonNumber":2,"episodeNumber":24,"title":"The Sand Whale Strikes","airDate":"2001-11-09","airDateUtc":"2001-11-09T09:11:00Z","overview":"A whale a long time ago gave his accordian to Icket Bagge(Eustace's father)while playing a unfair game.Now he wants it back.He arrives at the Bagge house and thinks Eustace is Icket. He swims through sand barrages and through the house and eats Muriel and Eustace.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1569},{"seriesId":63,"episodeFileId":1178,"seasonNumber":2,"episodeNumber":25,"title":"The Tower of Dr. Zalost","airDate":"2001-11-16","airDateUtc":"2001-11-16T09:00:00Z","overview":"A giant moving tower on wheels and (computer generated) legs shoots magical cannonballs that turn everyone in Nowhere green and sad. It is the work of the green-skinned Dr. Zhalost who wants to make everyone in Nowhere miserable like he is. He demands 33 1\/3 billion dollars from the mayor. His assistant is a hunchbackish rat with a scar called Rat. Zalost gets the money, but he is still not satsified.\r\nMeanwhile, Muriel is making happy plums. Eustace is mad the paper isn't delivered so he tries to get it, and after a failed attempt, he meets up with Zhalost's tower. It follows Eustace and fires cannonballs. Eustace isn't effected because he doesn't have much feeling. But Muriel is hit, so Courage needs to find a way to make her normal.\r\nCourage hides in a pizza box that Eustace delivers to Rat. Courage finds piles and piles of cannonballs and he accidently realeases some and one hits Rat. Rat turns into a giant demon rat. Courage fires happy plums because Muriel said...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":1570},{"seriesId":63,"episodeFileId":1106,"seasonNumber":3,"episodeNumber":1,"title":"Muriel Meets Her Match","airDate":"2002-01-12","airDateUtc":"2002-01-12T09:00:00Z","overview":"A criminal lady named Maria Ladrones and her husband who is just a hand, (named Milo Ladrones) comes to Muriel's house when the TV needs fixing. Eustace goes in the van to watch their TV. For fun, Mariah says, she makes her hair like Muriel's and dresses up like Muriel. She steals Muriel's gift certificate and everything. When Mariah and Milo steal a diamond the police think Muriel did it because Mariah looked like Muriel. Courage must clear Muriel's name.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1571},{"seriesId":63,"episodeFileId":1109,"seasonNumber":3,"episodeNumber":2,"title":"Courage Vs. Mecha-Courage","airDate":"2002-01-12","airDateUtc":"2002-01-12T09:11:00Z","overview":"The science teen (or Di Lung as some call him) makes an ultra robot he calls Mecha-Courage. It takes Courage's place. Muriel and Eustace can't tell the difference, and they like Mecha-Courage better. (mostly Eustace) Courage challenges Mecha-Courage to a battle in the Roman Colessium! Mecha-Courage beats Courage good, but in the end, his battery runs out and he blows up. Courage is happy to be back with Muriel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1572},{"seriesId":63,"episodeFileId":1114,"seasonNumber":3,"episodeNumber":3,"title":"Campsite of Terror","airDate":"2002-02-08","airDateUtc":"2002-02-08T09:00:00Z","overview":"Courage,Muriel,and Eustace are camping and two raccoons kidnap Muriel because they want a mother.Eustace is trying to capture the raccoons for a reward.The raccons end up capturing him, to have for company and watch televison with him. Courage and Muriel return home.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1573},{"seriesId":63,"episodeFileId":1115,"seasonNumber":3,"episodeNumber":4,"title":"The Record Deal","airDate":"2002-02-08","airDateUtc":"2002-02-08T09:11:00Z","overview":"While Eustace is driving home,Shirley the Medium throws out a Velvet Vic record when doing some spring cleaning and Eustace plays the record Velvet Vic comes out and then Muriel becomes trapped in the record and Courage has to get her out.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1574},{"seriesId":63,"episodeFileId":1120,"seasonNumber":3,"episodeNumber":5,"title":"Stormy Weather","airDate":"2002-03-15","airDateUtc":"2002-03-15T09:00:00Z","overview":"A storm goddess who always has a raincloud around her, comes to the Bagge house. She's looking for her dog, Duncan, who looks just like Courage. She wants a new dog so desperate she tries to steal Courage. Muriel argues with her, while the stormcloud destorys the house.Mr.(Charlie) Mouse tells Courage where Duncan is. Courage looks for Duncan and finally finds him in a sewer licking the God Bone. He gets him back and the goddess goes away and all's well with the exception that the house is still destroyed and Eustace was sucked up by the cloud.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1575},{"seriesId":63,"episodeFileId":1122,"seasonNumber":3,"episodeNumber":6,"title":"The Sandman Sleeps","airDate":"2002-03-15","airDateUtc":"2002-03-15T09:11:00Z","overview":"The Sandman can't sleep so he steals Muriel's sleep ability and Muriel can't sleep for days. Courage takes her for a drive and hears the sandman's snoring and the sandman decides to give back Muriel's sleep because Courage found him his teddy bear, which helps him sleep.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1576},{"seriesId":63,"episodeFileId":1126,"seasonNumber":3,"episodeNumber":7,"title":"Hard Drive Courage","airDate":"2002-06-07","airDateUtc":"2002-06-07T08:00:00Z","overview":"While the computer downloads the recipie for a cold reminie soup for Eustace's sickness, it is infected with a virus who caputures Muriel into the computer.Courage must go in after her to save her and the computer.He saves her and Eustace becomes healthy again.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1577},{"seriesId":63,"episodeFileId":1127,"seasonNumber":3,"episodeNumber":8,"title":"The Ride of the Valkyries","airDate":"2002-06-07","airDateUtc":"2002-06-07T08:11:00Z","overview":"During a vacation to a viking location, Muriel is mistaken as the leader of a group of vikings! Courage now has to retrieve her before the battle against the trolls. One of the trolls and the valkyries get married and peace is settled between the 2 groups. Courage and Muriel attend the wedding.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1578},{"seriesId":63,"episodeFileId":1132,"seasonNumber":3,"episodeNumber":9,"title":"Scuba Scuba Doo","airDate":"2002-06-14","airDateUtc":"2002-06-14T08:00:00Z","overview":"Courage,Muriel,and Eustace are scuba diving while on vacation and Muriel discovers little people.Eustance tells his mom about that and her company,Growth Industries wants to take the coral they live in to make wigs.Courage saves the little people of the coral and he goes down into there history.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1579},{"seriesId":63,"episodeFileId":1134,"seasonNumber":3,"episodeNumber":10,"title":"Conway the Contaminationist","airDate":"2002-06-14","airDateUtc":"2002-06-14T08:11:00Z","overview":"A plane crashes down at the Bagge house.A guy inside the plane named Conway claimes by living in a dirty house you can live better, and pay less.The Bagge house gets full of garbage, and Muriel and Eustice get really skinny. The dirty atmosphere ruins their health. Courage turns Conway's plane into a big vacuum and sucks up the dirtyness in their house. Conway leaves, and Muriel and Eustice return to normal health.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1580},{"seriesId":63,"episodeFileId":1138,"seasonNumber":3,"episodeNumber":11,"title":"Katz Under the Sea","airDate":"2002-06-21","airDateUtc":"2002-06-21T08:00:00Z","overview":"Courage and Muriel go on a much needed trip to get away from Eustace. They go aboard the Katz submarine and Muriel is put to work making tea. Courage is really not allowed on the ship but he sneaks into someone's suitcase and pretends to be a ventriloquist dummy. He finds out that Katz plans to sink the ship with everybody on it. Courage burps up bubbles and everybody floats to the surface to safety,except Katz who gets ate by a shark.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1581},{"seriesId":63,"episodeFileId":1140,"seasonNumber":3,"episodeNumber":12,"title":"Curtain Of Cruelty","airDate":"2002-06-21","airDateUtc":"2002-06-21T08:11:00Z","overview":"Floyd the bald guy (from the segment Hothead) decides to send a cruelty wave or \"\"curtain\"\" out into town and turn everyone mean. While Eustace,Muriel, and Courage are buying meats at the market. The wave hits. Its ineffentant on Eustace cause he already is mean. Muriel and Courage use fabric softer on there shirts so thats why they don't got mean cause there \"\"soft\"\".Muriel and Courage are taken to a prisoner training camp for being nice and Eustace is elected canadiate for Mayor.Courage finds the machine that sends o...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1582},{"seriesId":63,"episodeFileId":1144,"seasonNumber":3,"episodeNumber":13,"title":"Feast of the Bullfrogs","airDate":"2002-06-28","airDateUtc":"2002-06-28T08:00:00Z","overview":"A group of bullfrogs with no pond invade the Bagge house. Their leader is named Buffo. They build a pond on the floor and Eustace and Muriel have to act like frogs and will even be eaten. Courage sticks bees to flypaper and sticks it on the ceiling near the fan. The bullfrogs, thinking it's appetizers stick their tongues to it, but Courage turns the fan on which whirls the tongues around and Courage holds their tongues and tosses them away. All except for Buffo, who goes away and becomes a baseball player.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1583},{"seriesId":63,"episodeFileId":1145,"seasonNumber":3,"episodeNumber":14,"title":"Tulip's Worm","airDate":"2002-06-28","airDateUtc":"2002-06-28T08:11:00Z","overview":"Two teddy bears in a spaceship land on Earth to look for a worm. One is quite handy with a laser gun. Courage plays the horn and it attracts a worm, which just happens to be the worm that the teddy bears are after. When Muriel won't tell them where it is, and the teddy bears blow up part of their house. The worm comes and it turns out he is a giant blue worm from outer space that eats the teddy bears as well as Muriel. The worm belongs to a giant...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1584},{"seriesId":63,"episodeFileId":1150,"seasonNumber":3,"episodeNumber":15,"title":"So In Louvre Are We Two","airDate":"2002-07-05","airDateUtc":"2002-07-05T08:00:00Z","overview":"Courage,Muriel,and Eustace win a trip to an art museum in Europe. Muriel talks about how her mother aways said that Muriel aways looked liked the Mona Lisa. They go into the museum right before closing time and then get locked in. They fall asleep in their and when they wake up Muriel walks up to the painting of the Mona Lisa and gets pulled in. Then the Mona Lisa steps out of the painting (the plantets align and the portrait people switch places with real people) Eustace switches places with the thinker and Courage has to chase down the Mona Lisa so he can get Muriel back. The Thinker and the Mona Lisa go on a date into some portraits. Courage and Muriel enter a painting of what they say looks like there house (and it is) and they sit there at home wondering where Eustace is?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1585},{"seriesId":63,"episodeFileId":1152,"seasonNumber":3,"episodeNumber":16,"title":"Night of the Scarecrow","airDate":"2002-07-05","airDateUtc":"2002-07-05T08:11:00Z","overview":"Courage,Muriel,and Eustace are leaving the county fair, they get chased off the road by a swarm of crows into a corn field. The car crashes into a scarecrow. Mur...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1586},{"seriesId":63,"episodeFileId":1155,"seasonNumber":3,"episodeNumber":17,"title":"Mondo Magic","airDate":"2002-07-12","airDateUtc":"2002-07-12T08:00:00Z","overview":"A magic kit comes to Courage's house and Courage preforms all kinds of magic tricks. After awhile, this magician named Mondo comes out to help Courage preform tricks. He makes Eustace go in the TV and for his last act he gives Muriel these wierd alienish eyes. Courage pulls off his skin to reveal Mondo is really a green monster. He says Muriel will transform into a monster like he is and marry her. Muriel is transforming, and Courage tries to get Dr. Vindaloo's help but Mondo turns Vindaloo into a cabbage! Courage's magic save the day by turning Mondo into a rabbit.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1587},{"seriesId":63,"episodeFileId":1158,"seasonNumber":3,"episodeNumber":18,"title":"Watch The Birdies","airDate":"2002-07-12","airDateUtc":"2002-07-12T08:11:00Z","overview":"Muriel and Courage are feeding birds outside.Suddenly Muriel is taken away by a gigantic vulture! The vulture makes Muriel watch her baby birds (while she goes to look for a new husband) and if the birds feathers are harmed in anyway, she eat Muriel with a cereal spoon! Courage has to feed the birds and protect it from bees. Then a snake comes and starts to go after the baby birds but then go...","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1588},{"seriesId":63,"episodeFileId":1161,"seasonNumber":3,"episodeNumber":19,"title":"Fishy Business","airDate":"2002-07-19","airDateUtc":"2002-07-19T08:00:00Z","overview":"A lady fish or fishonnary comes to take Muriel, Courage and Eustace back to \"\"where they came from\"\". It turns out they really go to an underwater bio-dome becausea all life originally came from the sea. These three fish judges annouce them guilty of uncivilized behavior (sipping tea, wearing shoes, etc.). So they put them in a goldfish bowl with gills that let them breathe underwater. They have to act like fish and even eat fishfood! Courage must save everyone.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1589},{"seriesId":63,"episodeFileId":1164,"seasonNumber":3,"episodeNumber":20,"title":"Angry Nasty People","airDate":"2002-07-19","airDateUtc":"2002-07-19T08:11:00Z","overview":"Benton Tarentella returns to make a show about \"\"angry nasty\"\" people with Muriel, Eustace and Courage. Eustace is the star because he's very mean. Benton literally takes Eustace's meaness and gives it a form! It's known as Mr. Nasty. Eustace and Mr. Nasty make lots of money and Muriel and Courage are mad because they always get made fun of on the show. So Courage makes Mr. Nasty angry and throws Benton into quicksand. Now Eustace is on a talkshow and loses his money to Mr. Nasty.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1590},{"seriesId":63,"episodeFileId":1168,"seasonNumber":3,"episodeNumber":21,"title":"Dome of Doom","airDate":"2002-07-26","airDateUtc":"2002-07-26T08:00:00Z","overview":"Eustace is mad they he can't grow plants, so they buy a dome that covers the house.A salesman comes to Courage,Muriel, and Eustace's home to set up dome on top of their house so produce will grow there.When they go outside to pick produce it attacks them and takes over the house.Storms build up inside the dome. Eventually Courage thinks up a plan to destroy the man-eating produce and they end up eating each other.Eustace gets to keep some of it... and the dome is removed.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":11,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1591},{"seriesId":63,"episodeFileId":1170,"seasonNumber":3,"episodeNumber":22,"title":"Snowman's Revenge","airDate":"2002-07-26","airDateUtc":"2002-07-26T08:11:00Z","overview":"Muriel, Eustace and Coruage come home to find out everything is covered in snow!! They find the Snowman has returned!!!! He has a blue thumb he uses to freeze things. He puts a huge pole in their house, and it will blot out the sun, making it snow everywhere. He succeeds, but is still sad he doesn't have any of his snowpeople friends. He says the hole in the Ozone Layer melted them and the North Pole. So Coruage goes on a plane and literally sews up the hole in the Ozone Layer! The sno","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":11,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1592},{"seriesId":63,"episodeFileId":1173,"seasonNumber":3,"episodeNumber":23,"title":"The Quilt Club","airDate":"2002-08-02","airDateUtc":"2002-08-02T08:00:00Z","overview":"While shopping for quilting supplies, Muriel meets the mysterious Siamese-twin Stitch sisters, who invite her to join their \"\"quilt club\"\"... if she can prove she's good enough! Muriel becomes obsessed with proving she's \"\"quilt club\"\" material, but when the Stitch sisters come over to initate her, they use their wicked magic to literally make Muriel into quilt material!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":12,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1593},{"seriesId":63,"episodeFileId":1176,"seasonNumber":3,"episodeNumber":24,"title":"Swindlin' Wind","airDate":"2002-08-02","airDateUtc":"2002-08-02T08:11:00Z","overview":"After Eustace cheats Shirley the Medium at the County Fair, she puts a curse on Eustace and Muriel that drives them to try and swindle each other every chance they get! Courage will have to convince Shirley to break the curse, by getting one of the two victims to do something nice for the other (in a roundabout way).","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":12,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1594},{"seriesId":63,"episodeFileId":1180,"seasonNumber":3,"episodeNumber":25,"title":"The King of Flan","airDate":"2002-08-09","airDateUtc":"2002-08-09T08:00:00Z","overview":"Muriel and Eustace get hypnotised by a Flan Infomercial. The whole town of Nowhere gets hypnotised. They eat Flan's food product and get fat. Courage must stop Flan so he wouldn't make any more people fat and hypnotised.Courage makes Flan eat his own product and he gets hypnotised and fat himself.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":13,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1595},{"seriesId":63,"episodeFileId":1181,"seasonNumber":3,"episodeNumber":26,"title":"Courage Under the Volcano","airDate":"2002-08-09","airDateUtc":"2002-08-09T08:11:00Z","overview":"While on vacation a tribe brings Muriel to a volcano to sacrifice her to the volcano god.To save Muriel, Courage must go under the volcano to save her.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":13,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":1596},{"seriesId":63,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Wind Whispers Courage","airDate":"2002-08-23","airDateUtc":"2002-08-23T08:00:00Z","overview":"Two music video promos aired during Cartoon Cartoon Weekend Summerfest. One was called \"The Wind Whispers Courage,\" which was about a lady named Kitten (a singer), who comes to Courage's house and sings about him.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1517},{"seriesId":63,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"They Must Be Giants","airDate":"2002-08-23","airDateUtc":"2002-08-23T08:11:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1518},{"seriesId":63,"episodeFileId":1107,"seasonNumber":4,"episodeNumber":1,"title":"A Beaver's Tale","airDate":"2002-09-06","airDateUtc":"2002-09-06T08:00:00Z","overview":"The Bagge's yard gets flouded, Eustace and Muriel go for a swim. Everything is alright until the water rises too high and enters their house. Courage paddles around in the water to the town of Nowhere and stops when he sees a beaver putting up a dam. Courage trys to ask him nicely to stop building it because it ruining there home, but the beaver just hits him with his tail. Courage then finds out the beaver's real love is for music and not construction. The beaver starts to hit his tail as a rythem on the dam.Courage picks the string on his yo-yo, like an instrument. The beaver's tale constatly hiting the dam eventually breaks it. Courage's house's water level drys up to nothing. Muriel and Eustace then attend a concert in a local karaoke-type place to watch Courage and the beaver play their instruments.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":1,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1597},{"seriesId":63,"episodeFileId":1110,"seasonNumber":4,"episodeNumber":2,"title":"The Nutcracker","airDate":"2002-09-06","airDateUtc":"2002-09-06T08:11:00Z","overview":"Muriel,Courage, and Eustace head down to the local dump to look for stuff they might want. Most of it is just pure junk except this nutcracker they fin","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":1,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1598},{"seriesId":63,"episodeFileId":1113,"seasonNumber":4,"episodeNumber":3,"title":"Rumpledkiltskin","airDate":"2002-09-13","airDateUtc":"2002-09-13T08:00:00Z","overview":"Muriel gets a telegram, from her uncle Agnes,saying that all of her relatives died that knew a kilt pattern. Muriel is the only family member left who knows how to make it. He wants her to come to Scotland and make a kilt for him.Eustace refuses to go to Scotland, because he hates Scotland. Muriel and Courage go over to Scotland to help him. He takes them to a castle and tells Muriel to make a couple thousand kilts for his factory. She says no. Uncle Agnes suddenly admits he is not her uncle, then warns her he'll make her into a pie if she doesn't listen. Courage overhears a conversation of \"\"Agnes\"\" and his mother.He kicked her out for saying his real name to many times.Courage then plays a game of charades with Muriel in front of him so she will say his name. She figures it out and Rumplekiltskin (his real name) doesn't force her to make a couple thousand kilts.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":2,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1599},{"seriesId":63,"episodeFileId":1116,"seasonNumber":4,"episodeNumber":4,"title":"Housecalls","airDate":"2002-09-13","airDateUtc":"2002-09-13T08:11:00Z","overview":"A lonely doctor named Gerheart gets tired of being lonely in his run down old house. He invents","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":2,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1600},{"seriesId":63,"episodeFileId":1119,"seasonNumber":4,"episodeNumber":5,"title":"Le Quack Balloon","airDate":"2002-09-20","airDateUtc":"2002-09-20T08:00:00Z","overview":"Le Quack is back,once again, this time in a hot air balloon. Muriel is geting ready to bake cookies when he arrives and is using a cookbook.Le Quack switches the cookbook to a Swedish cookbook when she is not looking, the cookie recipe now requires vinegar that is only in Sweden. Le Quack says he'll take Muriel to Sweden in his hot air balloon. It's all really a trick. He attaches Muriel to a bungee cord and makes her steal things when she comes down and up. Courage goes, leashed with Eustace and finds Le Quack's big plan is to have Muriel rob the Swedish piggy bank.Unfortunately for Le Quack it is garded by a General and cannons which shoot the balloon down.Eustace gets stuck in a cannon and it launches, he lands in the bathroom of his house and his head gets stuck in the toliet when he lands! He finds his glasses in there. Muriel and Courage escape from Le Quack and find the Swedish vinegar.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":3,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1601},{"seriesId":63,"episodeFileId":1121,"seasonNumber":4,"episodeNumber":6,"title":"Windmill Vandals","airDate":"2002-09-20","airDateUtc":"2002-09-20T08:11:00Z","overview":"The windmill is broken. Courage finds that whenever the windmill stops... four armored skeletons on horseback come towards him! He finds signs on the windmill vanes and his computer says they are mystic signs made by the first owner of the farm house. Vandals who had a broken paddle wheel needed energy, so they tried to steal the windmill, but the owner put mystic signs on them to keep them away. Whenever, it stops, the ghosts of the vandals come back... and they want to cut everyone's head off! The windmill eventually gets fixed and the skeletons go away.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":3,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1602},{"seriesId":63,"episodeFileId":1125,"seasonNumber":4,"episodeNumber":7,"title":"The Uncommon Cold","airDate":"2002-09-27","airDateUtc":"2002-09-27T08:00:00Z","overview":"Muriel gets a terrible cold, and after a while, she sees a talking slug that wants help. Following directions, Courage and Muriel go to a swamp where there are slugs that are ruled by a snake named Big Bayou. He sheds his skin and makes the slugs make statues out of them. They say Bayou has a magic book that will free them and cure Muriel. Courage gets the book and cures Muriel. Bayou then comes after him, and he bites the book, and his venom magically makes the snake-skin statues attack him. Muriel uses her nail-file to free the slugs.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":4,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1603},{"seriesId":63,"episodeFileId":1128,"seasonNumber":4,"episodeNumber":8,"title":"Farmer-Hunter, Farmer-Hunted","airDate":"2002-09-27","airDateUtc":"2002-09-27T08:11:00Z","overview":"It's the first day of hunting season, and Eustace goes hunting to prove he's better then his dead brother, Horace. He uses Horace's old gun, a laser gun! Courage goes with him to makes sure he's safe. Eustace spots a bunch of deer and fails to shoot them. The father deer then gets his own laser gun and goes after Eustace! Courage says he can settle this by having a game show with the deer and Eustace called, \"Hunt For Knowledge.\" The deer wins. Eustace tries to shoot him, but instead he hits a bear's lollipop. When he asks who shot it, Eustace takes the deer's antlers and says he's a deer. But then hunters come by and think he's a deer and shoot him. His head gets mounted on a car.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":4,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1604},{"seriesId":63,"episodeFileId":1131,"seasonNumber":4,"episodeNumber":9,"title":"Bride of the Swamp Monster","airDate":"2002-10-04","airDateUtc":"2002-10-04T08:00:00Z","overview":"Muriel buys a necklace at a store in which two pictures can fit inside. She puts a picture of herself and Courage on one side, and Eustace on the other side. After they leave the store, Eustace's truck crashes into a swamp. Muriel and Courage have to help push Eustace's truck out of the mud. Muriel loses her necklace in the swamp while pushing the truck. A swamp monster finds it, opens it up, and looks at Muriel's picture. He thinks it's his long lost bride swamp monster. He goes to the Bagge house and kidnaps her. He brings Muriel to the swamp in a wedding dress. Courage finds the real swamp bride and brings her back to him. Courage rescues Muriel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":5,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1605},{"seriesId":63,"episodeFileId":1133,"seasonNumber":4,"episodeNumber":10,"title":"Goat Pain","airDate":"2002-10-04","airDateUtc":"2002-10-04T08:11:00Z","overview":"Muriel's back starts to hurt, so Eustace takes her to Dr. Vindaloo because she can't make him any food in that condition. He tells them they must go to a top of Mount Nowhere, where a hot spring is located in order to heal her. Courage, Muriel, and Eustace head up toward the mountain. On top lives a goat, who has been neglected by humans, trashing his habitat, and draining up the spring. Eventually, he was the only one left, and now, he chases people off the island by hitting them with his horns. After the goat tells his story, he makes Muriel and Courage hold up gigantic rocks for torture. Courage then accidentally re-opens the hot spring and he cleans up the garbage. The goat and Muriel return to normal health by relaxing in the spring.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":5,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1606},{"seriesId":63,"episodeFileId":1137,"seasonNumber":4,"episodeNumber":11,"title":"Muriel Blows Up","airDate":"2002-10-11","airDateUtc":"2002-10-11T08:00:00Z","overview":"After a missile explodes over the farmhouse, Muriel finds a giant carrot growing in her garden. After eating it, Muriel begins to expand. On TV, the General warns Nowhere about the missile and says only he can disarm it. Using a computer camera, Courage sees a carrot robot. Courage goes in and eats it, then gets burped out. As courage begins to expand, he goes to General, who goes inside Courage and disarms the carrot. Courage burps them up, only to have Eustace eat it. Because the carrot was not properly disabled, Eustace explodes.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":6,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1607},{"seriesId":63,"episodeFileId":1139,"seasonNumber":4,"episodeNumber":12,"title":"Profiles in Courage","airDate":"2002-10-11","airDateUtc":"2002-10-11T08:11:00Z","overview":"At the fair, Muriel and Eustace get full size silhouettes of themselves. On the ride home, Courage notices that they are beginning to move. That night, the profiles take Muriel And Eustace's life to be human. After Courage shows them that being paper is more fun, they give it back. Their creator comes and realizes the silhouettes are happier being paper, and he thanks him.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":6,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1608},{"seriesId":63,"episodeFileId":1143,"seasonNumber":4,"episodeNumber":13,"title":"The Mask","airDate":"2002-10-18","airDateUtc":"2002-10-18T08:00:00Z","overview":"A strange mask wearing women comes to the farmhouse and says dogs are evil. With that, she hits Courage. Muriel thinks they are just playing and invites her to tea. While there, she says that long ago her best friend Bunny fell for a horrible dog. After trying to convince her to leave, the dog threatend her and she had to leave. After that, she rerapedly hurts Courage. At dinner, she says that she wears her mask to hide from reality. Muriel says she has to face reality, but she reveals that Muriel has been sneaking food and Eustace can't fix every thing like he says he can. This causes a fight between Eustace and Muriel. Courage spys on the woman that night and sees her play with a toy mouse. She takes off her mask to reavel she's a cat. Convinced she's a wanted crimnal, Courage locks the doors to the bedroom and attic doors, steals the mouse, and drives off to go to the police.\r\nHe stops at a diner where the rat reconizes the cat's mouse and says her names Kitty. He says Bunn","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":7,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1609},{"seriesId":63,"episodeFileId":1146,"seasonNumber":4,"episodeNumber":14,"title":"Squatting Tiger, Hidden Dog","airDate":"2002-10-25","airDateUtc":"2002-10-25T08:00:00Z","overview":"A Chinese Emporess (and Di Lung) capture Muriel to rid her of her bones. Courage is then put through a series of tests to see if he can rescue Muriel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":8,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1610},{"seriesId":63,"episodeFileId":1149,"seasonNumber":4,"episodeNumber":15,"title":"Muted Muriel","airDate":"2002-10-25","airDateUtc":"2002-10-25T08:00:00Z","overview":"Muriel refuses to talk after Eustace keeps ignoring her, so Shirley makes a giant starfish attack and it can only be stopped at the sound of Muriel's voice.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":8,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1611},{"seriesId":63,"episodeFileId":1151,"seasonNumber":4,"episodeNumber":16,"title":"Aqua-Farmer","airDate":"2002-10-25","airDateUtc":"2002-10-25T08:00:00Z","overview":"Eustace,Muriel, and Courage go to Nowhere Wet World in which they watch the famous Jojo the dolphin preform some stunts and tricks.The dolphin is mean to Eustace and spits popcorn in his face.Eustace complains about how he can swim better than Jojo.Eustace loses the first challange. Eustace and Jojo then make out an agreement for the next day. If Eustace would lose, Jojo could keep Muriel, in which she would have to live as a mermaid with him. Courage and Muriel give him some training at their house to get him ready. Courage eventually succeeds in making Eustace a good swimer. Eustace ends up winning the race against Jojo, because Courage hypnotised Jojo.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":9,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1612},{"seriesId":63,"episodeFileId":1156,"seasonNumber":4,"episodeNumber":17,"title":"Food of the Dragon","airDate":"2002-10-25","airDateUtc":"2002-10-25T08:00:00Z","overview":"Muriel and Courage make the house look like a pirate theme, Eustace isn't too thrilled about it. Muriel and Courage are dressed up in pirate clothes. The three of them eat seafood, then all of the sudden comes a dragon. He eats Eustace, and chases after Muriel and Courage. The dragon tells them he wishes he could fly, and if Courage could teach him how to fly, he would not eat them. Courage, after many attempts, tries to make him fly, but fails. The dragon doesn't want to eat them, but has no choice, so he continues to chase them through the town of Nowhere, and into the jungle. Once Courage and Muriel get to a body of water in the jungle, another dragon appears, who is friendly because he is a water dragon who just eats seafood. The other dragon finds out this water dragon is his long lost brother, and he wasn't meant to fly since he is also a water dragon. Courage, Muriel, and the two water dragons eat some seafood together. The one dragon spits out Eustace, but a bad flying dragon flies overhead and eats him again.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":9,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1613},{"seriesId":63,"episodeFileId":1157,"seasonNumber":4,"episodeNumber":18,"title":"Last of the Starmakers","airDate":"2002-11-01","airDateUtc":"2002-11-01T09:00:00Z","overview":"A star making squid has just had babies(in eggs)She looses her husband to a giant inhaling whale. The squid ends up landing on Earth where she lays there with her eggs. Courage isn't sure about her at first, until he notices that she makes stars. This also flatters Muriel, but Eustace calls the military so he can get money! The military uses the squid and the eggs for research. Muriel sends Courage to help the squid. With the help, the eggs finally hatch and the baby squids float up into the heavens. The mother squid turns into a garden. And once again, Eustace gets his just desserts at the end.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":10,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1614},{"seriesId":63,"episodeFileId":1162,"seasonNumber":4,"episodeNumber":19,"title":"Son of the Chicken From Outer Space","airDate":"2002-11-01","airDateUtc":"2002-11-01T09:11:00Z","overview":"Ashamed at what happened to her husband, the wife of the Chicken from Outer Space sends their three-headed son to destroy Courage. When they land, they try to just zap him, but they hit Eustace instead. Then they tried a bomb disguised as an egg, but Courage puts it in the toilet, and blows up Eustace. And they finally try tieing Courage up and running over him with a train. The three-headed chicken fails and starts getting in a fight with itself. They start crying because it's mother said that if they don't kill Courage, they can't come home. The middle head always carries a camera, so Courage has them take pictures of Courage being tortured. With that, the chicken bades farewell, but Eustace, Muriel, and Courage end up looking like a three-headed chicken.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":10,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1615},{"seriesId":63,"episodeFileId":1163,"seasonNumber":4,"episodeNumber":20,"title":"Courageous Cure","airDate":"2002-11-08","airDateUtc":"2002-11-08T09:00:00Z","overview":"Two multi-armed aliens come to Earth to find an antidote for a disease that makes everyone on their planet beat each other up with their arms. They expriment on Eustace and Muriel, only to find they don't have the antibodies to get the cure. Courage had the cure in him the whole time, and the aliens get it.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":11,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1616},{"seriesId":63,"episodeFileId":1167,"seasonNumber":4,"episodeNumber":21,"title":"Ball of Revenge","airDate":"2002-11-08","airDateUtc":"2002-11-08T09:11:00Z","overview":"Eustace finally gets tired of Muriel treating Courage so well, so he does something to finally destroy Courage once and for all. He gathers together the villains Courage fought to destroy Courage!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":11,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1617},{"seriesId":63,"episodeFileId":1169,"seasonNumber":4,"episodeNumber":22,"title":"Cabaret Courage","airDate":"2002-11-15","airDateUtc":"2002-11-15T09:00:00Z","overview":"Eustace and Muriel never returned a book named 'The pixie and the Prickle Pirate' so they become characters in the book until Courage pays the fine.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":12,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1618},{"seriesId":63,"episodeFileId":1174,"seasonNumber":4,"episodeNumber":23,"title":"Wrath of The Librarian","airDate":"2002-11-15","airDateUtc":"2002-11-15T09:11:00Z","overview":"Eustace and Muriel never returned a book named \"The Pixie and the Prickle Pirate,\" so they become characters in the book until Courage pays the fine. So Courage tries to find ways of gaining money, even making a performance of Eustace and Muriel as characters","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":12,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1619},{"seriesId":63,"episodeFileId":1175,"seasonNumber":4,"episodeNumber":24,"title":"Remembrance of Courage Past","airDate":"2002-11-22","airDateUtc":"2002-11-22T09:00:00Z","overview":"Courage remembers the time when his parents were sent to outer space by an evil vet.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":13,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1620},{"seriesId":63,"episodeFileId":1179,"seasonNumber":4,"episodeNumber":25,"title":"Perfect","airDate":"2002-11-22","airDateUtc":"2002-11-22T09:11:00Z","overview":"Eustace is sick and tired of how Courage constantly doing things wrong. A strict teacher arrives and attempts to make Courage \"perfect\", but keeps failing.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":13,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":1621},{"seriesId":63,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Fog of Courage","airDate":"2014-10-31","airDateUtc":"2014-10-31T08:00:00Z","overview":"Proposed CGI pilot for a revival of Courage the Cowardly Dog. When Courage finds a mysterious amulet while digging through the yard, a Ghostly Fog covers the farm. Eustace, however, refuses to return the amulet that apparently belongs to the Fog Ghost's long lost love, Cariana. Now Courage must protect his family from the vengeful fog spirit.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1519}],"episodeFile":[{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.A Night at the Katz Motel + Cajun Granny Stew-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E01E02.A Night at the Katz Motel + Cajun Granny Stew-SDTV.avi","size":183435264,"dateAdded":"2018-10-10T21:37:07.089227Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":942625,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1104},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E01E02.The Magic Tree of Nowhere + Robot Randy-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E01E02.The Magic Tree of Nowhere + Robot Randy-SDTV.avi","size":183310336,"dateAdded":"2018-10-10T21:37:07.127665Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980989,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1105},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Muriel Meets Her Match-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E01.Muriel Meets Her Match-SDTV.avi","size":96693044,"dateAdded":"2018-10-10T21:37:07.161775Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":2.0,"audioCodec":"PCM","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4854000,"videoCodec":"DivX","videoFps":29.97,"resolution":"512x384","runTime":"11:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1106},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E01.A Beaver's Tale-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E01.A Beaver's Tale-SDTV.avi","size":88412160,"dateAdded":"2018-10-10T21:37:19.129092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":957346,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1107},{"seriesId":63,"seasonNumber":0,"relativePath":"Specials\/S00E01.The Chicken From Outer Space-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Specials\/S00E01.The Chicken From Outer Space-SDTV.avi","size":62085120,"dateAdded":"2018-10-10T21:37:19.154987Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136953,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":954135,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"7:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1108},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Courage Vs. Mecha-Courage-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E02.Courage Vs. Mecha-Courage-SDTV.avi","size":88360960,"dateAdded":"2018-10-10T21:37:19.187537Z","releaseGroup":"Courage","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":954749,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1109},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Nutcracker-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E02.The Nutcracker-SDTV.avi","size":88258560,"dateAdded":"2018-10-10T21:37:19.213752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":958921,"videoCodec":"XviD","videoFps":23.869,"resolution":"640x480","runTime":"10:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1110},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E03E04.The Shadow of Courage + Dr. Le Quack, Amnesia Specialist-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E03E04.The Shadow of Courage + Dr. Le Quack, Amnesia Specialist-SDTV.avi","size":183386112,"dateAdded":"2018-10-10T21:37:19.239567Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137191,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":928983,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1111},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E03E04.Curse of Shirley + Courage in the Big Stinkin' City-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E03E04.Curse of Shirley + Courage in the Big Stinkin' City-SDTV.avi","size":183314432,"dateAdded":"2018-10-10T21:37:19.273192Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":981840,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1112},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Rumpledkiltskin-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E03.Rumpledkiltskin-SDTV.avi","size":88356864,"dateAdded":"2018-10-10T21:37:19.308687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":963556,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1113},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Campsite of Terror-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E03.Campsite of Terror-SDTV.avi","size":88262656,"dateAdded":"2018-10-10T21:37:19.335076Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":945598,"videoCodec":"XviD","videoFps":23.864,"resolution":"640x480","runTime":"10:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1114},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Record Deal-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E04.The Record Deal-SDTV.avi","size":88262656,"dateAdded":"2018-10-10T21:37:19.361216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":958505,"videoCodec":"XviD","videoFps":23.866,"resolution":"640x480","runTime":"10:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1115},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Housecalls-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E04.Housecalls-SDTV.avi","size":88211456,"dateAdded":"2018-10-10T21:37:19.389143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":959742,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1116},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E05E06.Family Business + 1000 Years of Courage-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E05E06.Family Business + 1000 Years of Courage-SDTV.avi","size":183746560,"dateAdded":"2018-10-10T21:37:19.415081Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":985699,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1117},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E05E06.Courage Meets Bigfoot + Hothead-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E05E06.Courage Meets Bigfoot + Hothead-SDTV.avi","size":182722560,"dateAdded":"2018-10-10T21:37:19.448626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":940040,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1118},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Le Quack Balloon-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E05.Le Quack Balloon-SDTV.avi","size":88535040,"dateAdded":"2018-10-10T21:37:19.484165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":959159,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1119},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Stormy Weather-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E05.Stormy Weather-SDTV.avi","size":88352768,"dateAdded":"2018-10-10T21:37:19.510118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":952995,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1120},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Windmill Vandals-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E06.Windmill Vandals-SDTV.avi","size":88410112,"dateAdded":"2018-10-10T21:37:19.536462Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":958283,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1121},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Sandman Sleeps-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E06.The Sandman Sleeps-SDTV.avi","size":88383488,"dateAdded":"2018-10-10T21:37:19.562665Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":961213,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1122},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E07E08.Courage Meets the Mummy + Invisible Muriel-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E07E08.Courage Meets the Mummy + Invisible Muriel-SDTV.avi","size":183433216,"dateAdded":"2018-10-10T21:37:19.58835Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":982913,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1123},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08.The Demon in the Mattress + Freaky Fred-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E07E08.The Demon in the Mattress + Freaky Fred-SDTV.avi","size":182896640,"dateAdded":"2018-10-10T21:37:19.623628Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137966,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":933074,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1124},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E07.The Uncommon Cold-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E07.The Uncommon Cold-SDTV.avi","size":177145856,"dateAdded":"2018-10-10T21:37:19.659289Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":907525,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1125},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Hard Drive Courage-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E07.Hard Drive Courage-SDTV.avi","size":88281088,"dateAdded":"2018-10-10T21:37:19.68476Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":954045,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1126},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Ride of the Valkyries-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E08.The Ride of the Valkyries-SDTV.avi","size":88557568,"dateAdded":"2018-10-10T21:37:19.710877Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":954925,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1127},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Farmer-Hunter, Farmer-Hunted-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E08.Farmer-Hunter, Farmer-Hunted-SDTV.avi","size":88354816,"dateAdded":"2018-10-10T21:37:19.736963Z","releaseGroup":"Hunted","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":953191,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1128},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E09E10.Human Habitrail + Mission to the Sun-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E09E10.Human Habitrail + Mission to the Sun-SDTV.avi","size":183336960,"dateAdded":"2018-10-10T21:37:19.763258Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":977073,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1129},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E09E10.Night of the Weremole + Mother's Day-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E09E10.Night of the Weremole + Mother's Day-SDTV.avi","size":183052288,"dateAdded":"2018-10-10T21:37:19.797988Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":942807,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1130},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Bride of the Swamp Monster-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E09.Bride of the Swamp Monster-SDTV.avi","size":88291328,"dateAdded":"2018-10-10T21:37:19.833039Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":955277,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1131},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Scuba Scuba Doo-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E09.Scuba Scuba Doo-SDTV.avi","size":88233984,"dateAdded":"2018-10-10T21:37:19.859912Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":951978,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1132},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Goat Pain-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E10.Goat Pain-SDTV.avi","size":88221696,"dateAdded":"2018-10-10T21:37:19.886523Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":952619,"videoCodec":"XviD","videoFps":23.866,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1133},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Conway the Contaminationist-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E10.Conway the Contaminationist-SDTV.avi","size":88117248,"dateAdded":"2018-10-10T21:37:19.912781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":949153,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1134},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E11E12.The Duck Brothers + Shirley the Medium-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E11E12.The Duck Brothers + Shirley the Medium-SDTV.avi","size":183435264,"dateAdded":"2018-10-10T21:37:19.938401Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":940484,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1135},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E11E12.Courage the Fly + Katz Candy-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E11E12.Courage the Fly + Katz Candy-SDTV.avi","size":183412738,"dateAdded":"2018-10-10T21:37:19.97235Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":976637,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1136},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Muriel Blows Up-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E11.Muriel Blows Up-SDTV.avi","size":88320000,"dateAdded":"2018-10-10T21:37:20.008802Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":957680,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1137},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Katz Under the Sea-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E11.Katz Under the Sea-SDTV.avi","size":88121344,"dateAdded":"2018-10-10T21:37:20.035269Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":948484,"videoCodec":"XviD","videoFps":23.864,"resolution":"640x480","runTime":"10:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1138},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Profiles in Courage-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E12.Profiles in Courage-SDTV.avi","size":88238080,"dateAdded":"2018-10-10T21:37:20.065341Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":950199,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1139},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Curtain Of Cruelty-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E12.Curtain Of Cruelty-SDTV.avi","size":88195072,"dateAdded":"2018-10-10T21:37:20.091746Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":958873,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1140},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E13E14.Nowhere TV + Mega Muriel the Magnificent-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E13E14.Nowhere TV + Mega Muriel the Magnificent-SDTV.avi","size":183721986,"dateAdded":"2018-10-10T21:37:20.11803Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":984725,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1141},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E13E14.King Ramses' Curse + The Clutching Foot-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E13E14.King Ramses' Curse + The Clutching Foot-SDTV.avi","size":183451648,"dateAdded":"2018-10-10T21:37:20.152546Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":935322,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1142},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The Mask-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E13.The Mask-SDTV.avi","size":88432640,"dateAdded":"2018-10-10T21:37:20.18872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":959966,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1143},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Feast of the Bullfrogs-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E13.Feast of the Bullfrogs-SDTV.avi","size":88330240,"dateAdded":"2018-10-10T21:37:20.215124Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":957766,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1144},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Tulip's Worm-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E14.Tulip's Worm-SDTV.avi","size":88420352,"dateAdded":"2018-10-10T21:37:20.247169Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":952739,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1145},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Squatting Tiger, Hidden Dog-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E14.Squatting Tiger, Hidden Dog-SDTV.avi","size":88328192,"dateAdded":"2018-10-10T21:37:20.274912Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":961418,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1146},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E15E16.Bad Hair Day + The Forbidden Hat Of Gold-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E15E16.Bad Hair Day + The Forbidden Hat Of Gold-SDTV.avi","size":183349250,"dateAdded":"2018-10-10T21:37:20.301015Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":981817,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1147},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E15E16.The Hunchback of Nowhere + The Gods Must Be Goosey-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E15E16.The Hunchback of Nowhere + The Gods Must Be Goosey-SDTV.avi","size":182972416,"dateAdded":"2018-10-10T21:37:20.335163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":951508,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1148},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Muted Muriel-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E15.Muted Muriel-SDTV.avi","size":88387584,"dateAdded":"2018-10-10T21:37:20.371755Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":959083,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1149},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E15.So In Louvre Are We Two-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E15.So In Louvre Are We Two-SDTV.avi","size":88254464,"dateAdded":"2018-10-10T21:37:20.397777Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":949773,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1150},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Aqua-Farmer-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E16.Aqua-Farmer-SDTV.avi","size":88545280,"dateAdded":"2018-10-10T21:37:20.423975Z","releaseGroup":"Farmer","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":955533,"videoCodec":"XviD","videoFps":23.871,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1151},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Night of the Scarecrow-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E16.Night of the Scarecrow-SDTV.avi","size":88150016,"dateAdded":"2018-10-10T21:37:20.449798Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":949875,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1152},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E17E18.Queen of the Black Puddle + Everyone Wants to Direct-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E17E18.Queen of the Black Puddle + Everyone Wants to Direct-SDTV.avi","size":183433216,"dateAdded":"2018-10-10T21:37:20.476004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":946402,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1153},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E17E18.Serpent of Evil River + The Transplant-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E17E18.Serpent of Evil River + The Transplant-SDTV.avi","size":183427074,"dateAdded":"2018-10-10T21:37:20.511715Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":981110,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1154},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Mondo Magic-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E17.Mondo Magic-SDTV.avi","size":88559616,"dateAdded":"2018-10-10T21:37:20.547286Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":956191,"videoCodec":"XviD","videoFps":23.865,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1155},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Food of the Dragon-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E17.Food of the Dragon-SDTV.avi","size":88344576,"dateAdded":"2018-10-10T21:37:20.573137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":955996,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1156},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E18.Last of the Starmakers-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E18.Last of the Starmakers-SDTV.avi","size":88465408,"dateAdded":"2018-10-10T21:37:20.599584Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":955185,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1157},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Watch The Birdies-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E18.Watch The Birdies-SDTV.avi","size":88193024,"dateAdded":"2018-10-10T21:37:20.625503Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":954664,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1158},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E19E20.The Snowman Cometh + The Precious, Wonderful, Adorable, Loveable Duckling-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E19E20.The Snowman Cometh + The Precious, Wonderful, Adorable, Loveable Duckling-SDTV.avi","size":183431168,"dateAdded":"2018-10-10T21:37:20.65145Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":953550,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1159},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E19E20.Car Broke, Phone Yes + Cowboy Courage-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E19E20.Car Broke, Phone Yes + Cowboy Courage-SDTV.avi","size":183310338,"dateAdded":"2018-10-10T21:37:20.685582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980620,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1160},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Fishy Business-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E19.Fishy Business-SDTV.avi","size":88334336,"dateAdded":"2018-10-10T21:37:20.722349Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":961617,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1161},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Son of the Chicken From Outer Space-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E19.Son of the Chicken From Outer Space-SDTV.avi","size":88328192,"dateAdded":"2018-10-10T21:37:20.748416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":966116,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1162},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Courageous Cure-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E20.Courageous Cure-SDTV.avi","size":88567808,"dateAdded":"2018-10-10T21:37:20.775689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":957649,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1163},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Angry Nasty People-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E20.Angry Nasty People-SDTV.avi","size":88086528,"dateAdded":"2018-10-10T21:37:20.803787Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":949671,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1164},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E21E22.Heads of Beef + Klub Katz-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E21E22.Heads of Beef + Klub Katz-SDTV.avi","size":183488512,"dateAdded":"2018-10-10T21:37:20.831107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":961735,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1165},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E21E22.Evil Weevil + McPherson Phantom-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E21E22.Evil Weevil + McPherson Phantom-SDTV.avi","size":183402498,"dateAdded":"2018-10-10T21:37:20.864915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980644,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1166},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Ball of Revenge-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E21.Ball of Revenge-SDTV.avi","size":88303616,"dateAdded":"2018-10-10T21:37:20.901146Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":952862,"videoCodec":"XviD","videoFps":23.866,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1167},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Dome of Doom-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E21.Dome of Doom-SDTV.avi","size":88188928,"dateAdded":"2018-10-10T21:37:20.927245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":949297,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1168},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Cabaret Courage-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E22.Cabaret Courage-SDTV.avi","size":88375296,"dateAdded":"2018-10-10T21:37:20.954591Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":954385,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1169},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Snowman's Revenge-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E22.Snowman's Revenge-SDTV.avi","size":88283136,"dateAdded":"2018-10-10T21:37:20.980677Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":953801,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1170},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E23E24.The House of Discontent + The Sand Whale Strikes-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E23E24.The House of Discontent + The Sand Whale Strikes-SDTV.avi","size":183425026,"dateAdded":"2018-10-10T21:37:21.006883Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":979004,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1171},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E23E24.Revenge of the Chicken from Outer Space + Journey to the Center of Nowhere-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E23E24.Revenge of the Chicken from Outer Space + Journey to the Center of Nowhere-SDTV.avi","size":183375872,"dateAdded":"2018-10-10T21:37:21.041342Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":942188,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1172},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E23.The Quilt Club-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E23.The Quilt Club-SDTV.avi","size":88336384,"dateAdded":"2018-10-10T21:37:21.077584Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":956436,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1173},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E23.Wrath of The Librarian-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E23.Wrath of The Librarian-SDTV.avi","size":88162304,"dateAdded":"2018-10-10T21:37:21.103738Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":950243,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1174},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E24.Remembrance of Courage Past-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E24.Remembrance of Courage Past-SDTV.avi","size":88268800,"dateAdded":"2018-10-10T21:37:21.129889Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":963743,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1175},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Swindlin' Wind-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E24.Swindlin' Wind-SDTV.avi","size":88115200,"dateAdded":"2018-10-10T21:37:21.157212Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":949895,"videoCodec":"XviD","videoFps":23.867,"resolution":"640x480","runTime":"10:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1176},{"seriesId":63,"seasonNumber":1,"relativePath":"Season 01\/S01E25E26.Little Muriel + The Great Fusilli-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 01\/S01E25E26.Little Muriel + The Great Fusilli-SDTV.avi","size":183447552,"dateAdded":"2018-10-10T21:37:21.183419Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":939533,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"22:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1177},{"seriesId":63,"seasonNumber":2,"relativePath":"Season 02\/S02E25.The Tower of Dr. Zalost-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 02\/S02E25.The Tower of Dr. Zalost-SDTV.avi","size":183281666,"dateAdded":"2018-10-10T21:37:21.218009Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980435,"videoCodec":"XviD","videoFps":25.0,"resolution":"512x384","runTime":"21:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1178},{"seriesId":63,"seasonNumber":4,"relativePath":"Season 04\/S04E25.Perfect-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 04\/S04E25.Perfect-SDTV.avi","size":88356864,"dateAdded":"2018-10-10T21:37:21.244736Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":959848,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"10:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1179},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E25.The King of Flan-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E25.The King of Flan-SDTV.avi","size":88166400,"dateAdded":"2018-10-10T21:37:21.271022Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":955382,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1180},{"seriesId":63,"seasonNumber":3,"relativePath":"Season 03\/S03E26.Courage Under the Volcano-SDTV.avi","path":"\/tv\/Courage the Cowardly Dog\/Season 03\/S03E26.Courage Under the Volcano-SDTV.avi","size":88303616,"dateAdded":"2018-10-10T21:37:21.297313Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":950769,"videoCodec":"XviD","videoFps":23.868,"resolution":"640x480","runTime":"10:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":1181}],"queue":[]},"80":{"series":{"title":"[C] The Money of Soul and Possibility Control","alternateTitles":[],"sortTitle":"c money soul possibility control","status":"ended","ended":true,"overview":"The Japanese government was rescued from the brink of financial collapse by the Sovereign Wealth Fund. For its citizens, however, life has not improved and unemployment, crime, suicide, and despair are rampant. Kimimaro, raised by his maternal aunt after the disappearance of his father and the death of his mother, is a scholarship student whose only dream is to live a stable, ordinary life. One day he meets a man who offers him a large sum of money if he will allow his \"future\" to be held as collateral. From then on his fate is radically altered as he's drawn into a mysterious realm known as the Financial District, where he must compete in weekly tournaments called \"deals\" in order to keep his money and avoid losing his future.","previousAiring":"2011-06-23T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/87\/banner.jpg?lastWrite=637103832451678240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/239951-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/87\/poster.jpg?lastWrite=637103832462758040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/239951-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/87\/fanart.jpg?lastWrite=636750444677384600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/239951-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-06-23T15:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":17910043538,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/C The Money of Soul and Possibility Control","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":239951,"tvRageId":28105,"tvMazeId":11897,"firstAired":"2011-04-15T00:00:00Z","seriesType":"standard","cleanTitle":"cmoneysoulpossibilitycontrol","imdbId":"tt1893520","titleSlug":"c-the-money-of-soul-and-possibility-control","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Anime","Fantasy","Science Fiction","Suspense","Thriller"],"tags":[],"added":"2018-10-13T16:16:39.313079Z","ratings":{"votes":372,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":17910043538,"percentOfEpisodes":100.0},"id":87},"episodes":[{"seriesId":87,"episodeFileId":14613,"seasonNumber":1,"episodeNumber":1,"title":"Complication","airDate":"2011-04-15","airDateUtc":"2011-04-14T15:00:00Z","overview":"A man with no money uses a certain credit card which grants him access to the surreal Financial District, where he engages in a battle against a man named S\u014dichir\u014d Mikuni, fighting with mysterious creatures, and is defeated and ends up committing suicide the next day. Meanwhile, a boy named Kimimaro Yoga is working two part time jobs to raise money for his future. One evening as he is trying to study for a pop quiz, he is approached by a mysterious man named Masakaki, who announces that Kimimaro has been chosen to become an entrepreneur at a mysterious bank. The next day, Kimimaro is surprised to find 500,000 yen deposited into his account. Whilst wondering what he should do about it, Kimimaro considers using a small amount so he can attend a kegger with his friend, Hanabi Ikuta. However, as he withdraws the money, he is once again approached by Masakaki, who places him in a taxi bound for the Financial District.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6707},{"seriesId":87,"episodeFileId":14614,"seasonNumber":1,"episodeNumber":2,"title":"Coincidence","airDate":"2011-04-22","airDateUtc":"2011-04-21T15:00:00Z","overview":"Kimimaro is brought to the Financial District in which he must participate in Deals, battles in which money is wagered, using an Asset named Msyu. Kimimaro and Msyu are instantly thrown into a Deal against a powerful Asset named 'Gig'. With Kimimaro not able to understand the situation, Msyu takes a lot of damage defending him. However, Msyu manages to teach Kimimaro how to use her ability, which manages to defeat the opponent, though he passes out soon afterwards. Kimimaro returns to the real world, where Masakaki informs him the next Deal will take place in a week's time, and soon finds he has even more money in his account. Later on, Kimimaro starts noticing that some money bills appear black for him, which Msyu explains is money from the Financial District. Kimimaro then ends up encountering Mikuni, who explains about the black bills, known as Midas Money, and hints that he knows of Kimimaro's father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6708},{"seriesId":87,"episodeFileId":14615,"seasonNumber":1,"episodeNumber":3,"title":"Conspiracy","airDate":"2011-04-29","airDateUtc":"2011-04-28T15:00:00Z","overview":"Jennifer Sato is an Entre from an organisation trying to discover the purpose of the Financial Districts. Meanwhile, Kimimaro goes to visit his aunt to ask about his parents, who mysteriously disappeared one day. Whilst looking for his dad's belongings, he finds a journal pertaining to the Midas Bank and decides to go to the Financial District for answers. Mikuni takes him to meet a strange photographer who tells him that his father was a stronge Entre who went 'bankrupt' in a deal and ended up hanging himself. Although Kimimaro is initially annoyed that all his father thought about was money, Mikuni hints that it may have been for the sake of providing for his family, suggesting he should think of something or someone to use his money for. Kimimaro soon enters his second deal, where he encounters a familiar face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6709},{"seriesId":87,"episodeFileId":14616,"seasonNumber":1,"episodeNumber":4,"title":"Conversion","airDate":"2011-05-06","airDateUtc":"2011-05-05T15:00:00Z","overview":"Kimimaro finds himself up against one of his teachers, Mr. Ebara, and defeats him, making him bankrupt. The next day, Ebara brings Kimimaro over for a talk, revealing that he entered Deals to support his family and his punishment for bankruptcy made it so his children never existed in the first place. He also mentions the Starling Guild which Mikuni is a part of, supposedly trying to prevent the Financial District's effects on the real world. Mikuni brings Kimimaro to observe one of his duels against another high level Entre, purposely holding back his strength to win by a 1% margin so that he doesn't effect the real world. After witnessing the duel, Kimimaro becomes determined not to lose so he doesn't have to make anyone else suffer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6710},{"seriesId":87,"episodeFileId":14617,"seasonNumber":1,"episodeNumber":5,"title":"Cultivation","airDate":"2011-05-13","airDateUtc":"2011-05-12T15:00:00Z","overview":"Mikuni explains the purpose of Starling Guild, to win by small margins in order to avoid affecting reality, to Kimimaro, though his attempt to put it into practice fails due to Msyu rushing in. Hearing from the taxi driver that even those with small losses may have their 'future' affected, Kimimaro grows concerned about whether his loss has affected any of his friends or family, though it appears to only affect his test results. Meanwhile, Kimimaro grows concerned about the Basho Pharmaceutical company, which could affect thousands of people if it faced bankruptcy via deals. Kimimaro later learns the company was bought by another company owned by Mikuni, in order to reduce its effects on reality. Mikuni later explains to Kimimaro that he is trying to maintain a balance between reality and the Financial District, since ridding one of the other would cause chaos. Kimimaro decides to join the Guild and start controlling his Deals.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6711},{"seriesId":87,"episodeFileId":14618,"seasonNumber":1,"episodeNumber":6,"title":"Conflict","airDate":"2011-05-20","airDateUtc":"2011-05-19T15:00:00Z","overview":"Jennifer is scheduled to have a Deal against Kimimaro, who is currently making strides with his new strategies. He is approached by his next opponent, a celebrity named K\u014d Sennoza, who offers him a way to pass on his deal. Later, Kimimaro is approached by Jennifer, who mentions Mikuni is using a lot of his own future to help minimise the effects of other's deals. Kimimaro talks with K\u014d the next day, who says everytime the Guild acts, more Midas Money appears in the world, also mentioning some of the effects his own loss to Mikuni had on other people's futures. After a bleak conversation with Mikuni, Kimimaro goes through with his Deal with K\u014d, whose powerful Asset causes serious damage to Msyu as she defends Kimimaro. As Kimimaro resolves to protect the things close to him, he musters up the strength to defeat K\u014d, the result of which puts him out of business, but he keeps his positive attitude, saying that he has the potential to fight his way out of the Financial District.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6712},{"seriesId":87,"episodeFileId":14619,"seasonNumber":1,"episodeNumber":7,"title":"Composition","airDate":"2011-05-27","airDateUtc":"2011-05-26T15:00:00Z","overview":"Mikuni's past is detailed, in which he quit his passion for music to become an executive secretary for his father. When his terminally ill sister Takako's condition started to worsen, his father places more importance on his corporation and his public image rather than sending his daughter overseas to receive a medical procedure which may save her life. After denial of treatment to Takako puts her into a permanent coma, Mikuni focuses on business and is soon approached by the Midas Bank and begins dealing in the Financial District. Back in the present, Msyu reflects on her relationship with Kimimaro, who becomes curious about the nature of futures which take the form of Assets. When Kimimaro notices an Entre harassing his Asset, he initially holds in his irritation, but after talking with Msyu, he decides to go back and punch the offending Entre. Msyu takes an increased interst in human behavior and asks a flustered Kimimaro what kisses are and attempts to place one on him. As Kimimaro goes home one night, he starts to notice a few buildings disappearing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6713},{"seriesId":87,"episodeFileId":14620,"seasonNumber":1,"episodeNumber":8,"title":"Confidence","airDate":"2011-06-03","airDateUtc":"2011-06-02T15:00:00Z","overview":"As some of the Financial Districts banks start becoming bankrupt, the country starts rapidly shifting into poverty around the Entres, with people becoming lethargic or disappearing altogether. After stopping Ebara from committing suicide, Yoga tries to convince Masakaki to let him pay a fee in order to return Ebara's future, but is told that it is beyond his power. As Yoga later learns Ebara had died in a car accident, he decides to burn a large amount of his Midas Money. As Mikuni and the Starling Guild plan to put a plan called \"C\" into action, the Southeast Asian Financial District goes bankrupt and starts disappearing, along with Singapore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6714},{"seriesId":87,"episodeFileId":14621,"seasonNumber":1,"episodeNumber":9,"title":"Collapse","airDate":"2011-06-10","airDateUtc":"2011-06-09T15:00:00Z","overview":"As Singapore disappears parts of Hong Kong and Shanghai are affected. Mikuni uses his ability (\"Darkness\") to preserve Japan the way it is before it is affected by the financial collapse of Southeast Asian Financial District. In exchange for 20 years of Mikuni's future Masakaki allows the printing of a large quantity of Midas Money which is deposited into his account. Mikuni and his colleagues use the Midas Money to invest in failing institutions all over Japan. Artificially propping up failing banks and enterprises spares the Japanese economy but with that comes unintended consequences. Though the present is saved, the future of Japan is uncertain. People begin disappearing, poverty increases, birthrates decline, and morale is seen dropping all around.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6715},{"seriesId":87,"episodeFileId":14622,"seasonNumber":1,"episodeNumber":10,"title":"Collision","airDate":"2011-06-17","airDateUtc":"2011-06-16T15:00:00Z","overview":"The North American Financial District starts increasing the value of its assets when their Entr\u00e9s begin flooding the world economy with dollars. Mikuni decides to use the black card and the Midas Money press once more to prevent the Japanese economy from financial collapse. Jennifer, Kimimaro and Takedasaki put a plan of their own in motion to stop Mikuni before the transaction is complete in an attempt to save the future, but the plan backfires when Mikuni defeats Jennifer in a deal. In her final action she passes Georges to Kimimaro. Kimimaro confronts Mikuni about using the Midas Money press but he hears none of it and opts to print once more in exchange for rest of his future. With the help of Masakaki, Kimimaro realises he is in possession of a black card of his own, giving him the means to revert the press. This quickly escalates in a struggle for control over the press with Mikuni and Kimimaro engaging in a deal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6716},{"seriesId":87,"episodeFileId":14623,"seasonNumber":1,"episodeNumber":11,"title":"Control","airDate":"2011-06-24","airDateUtc":"2011-06-23T15:00:00Z","overview":"Kimimaro and Mikuni begin their duel, going all out on each other. Mikuni puts Kimimaro in a tought spot, but his powers start to weaken thanks to the decreasing value of the Yen, with people soon starting to see Midas Money for what it truly is. As Kimimaro continues to fight with Mikuni, Msyu pleas with Q, who is based off of Takako and starts taking her form. The battle is concluded when Midas Money disappears from the world along with Mikuni's powers, allowing Kimimaro to deal the winning punch and C to pass through Japan without influence. Declared the winner, Kimimaro orders the reversing of the presses, with the futures returning to their original place. With the Assets disappearing as a result, Msyu gives Kimimaro a kiss before she disappears. Kimimaro returns to reality to find that US dollar has become Japan's official currency, and everyone's futures have been returned to them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6717}],"episodeFile":[{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Complication-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E01.Complication-Bluray-1080p.mkv","size":1436464132,"dateAdded":"2020-06-26T22:31:41.345354Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E01.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[3F97A4D5]","releaseGroup":"3F97A4D5","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1600652,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5222204,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14613},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Coincidence-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E02.Coincidence-Bluray-1080p.mkv","size":1615868280,"dateAdded":"2020-06-26T22:31:54.444548Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E02.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[6BE35790]","releaseGroup":"6BE35790","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2655197,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5174336,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14614},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Conspiracy-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E03.Conspiracy-Bluray-1080p.mkv","size":1515163119,"dateAdded":"2020-06-26T22:32:09.242319Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E03.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[80B21064]","releaseGroup":"80B21064","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2556326,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4800276,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14615},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Conversion-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E04.Conversion-Bluray-1080p.mkv","size":1639704108,"dateAdded":"2020-06-26T22:32:27.975336Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E04.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[A08825D9]","releaseGroup":"A08825D9","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2681516,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5318557,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14616},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Cultivation-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E05.Cultivation-Bluray-1080p.mkv","size":1683957233,"dateAdded":"2020-06-26T22:32:43.488615Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E05.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[AA12EB2C]","releaseGroup":"AA12EB2C","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2740288,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":4908863,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14617},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Conflict-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E06.Conflict-Bluray-1080p.mkv","size":1554421115,"dateAdded":"2020-06-26T22:32:58.338716Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E06.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[D3DC0A0C]","releaseGroup":"D3DC0A0C","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2619656,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4873638,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14618},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Composition-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E07.Composition-Bluray-1080p.mkv","size":1497951944,"dateAdded":"2020-06-26T22:33:17.111707Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2567341,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4603475,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14619},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Confidence-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E08.Confidence-Bluray-1080p.mkv","size":1543753870,"dateAdded":"2020-06-26T22:33:29.833779Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E08.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[EAD6D0F7]","releaseGroup":"EAD6D0F7","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2621575,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4785915,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14620},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Collapse-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E09.Collapse-Bluray-1080p.mkv","size":1636361298,"dateAdded":"2020-06-26T22:33:44.394323Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E09.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[EC800632]","releaseGroup":"EC800632","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2765435,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5153813,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14621},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Collision-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E10.Collision-Bluray-1080p.mkv","size":1765334365,"dateAdded":"2020-06-26T22:34:00.815286Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E10.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[C1F883D1]","releaseGroup":"C1F883D1","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2964259,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5653566,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14622},{"seriesId":87,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Control (Future)-Bluray-1080p.mkv","path":"\/tv\/C The Money of Soul and Possibility Control\/Season 01\/S01E11.Control (Future)-Bluray-1080p.mkv","size":2021064074,"dateAdded":"2020-06-26T22:34:18.924701Z","sceneName":"C.The.Money.of.Soul.and.Possibility.Control.S01E11.1080p-Hi10p.BluRay.FLAC2.0.x264-CTR.[02E313FD]","releaseGroup":"02E313FD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2894220,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":6600255,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14623}],"queue":[]},"81":{"series":{"title":"Supernatural","alternateTitles":[{"title":"Sobrenatural","seasonNumber":-1}],"sortTitle":"supernatural","status":"ended","ended":true,"overview":"Two brothers follow their father's footsteps as hunters, fighting evil supernatural beings of many kinds, including monsters, demons and gods that roam the earth.","previousAiring":"2020-11-20T01:00:00Z","network":"The CW","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/48\/banner.jpg?lastWrite=637100124371784840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78901-g31.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/48\/poster.jpg?lastWrite=637592942404993530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78901-26.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/48\/fanart.jpg?lastWrite=637144286302636820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78901-95.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2015-07-13T00:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":6,"sizeOnDisk":1546068968,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-05-05T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":33163519621,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-05-18T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":26110543433,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2008-05-16T00:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":18561706971,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2009-05-15T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":34654313645,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2010-05-14T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12071725795,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2011-05-21T00:42:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":28890559863,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2012-05-19T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":26804606053,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2013-05-16T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28913772894,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2014-05-21T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28934243605,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2015-05-21T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":30067022293,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2016-05-26T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":29192624153,"percentOfEpisodes":100.0}},{"seasonNumber":12,"monitored":true,"statistics":{"previousAiring":"2017-05-19T00:42:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":28586974958,"percentOfEpisodes":100.0}},{"seasonNumber":13,"monitored":true,"statistics":{"previousAiring":"2018-05-18T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":80896608371,"percentOfEpisodes":100.0}},{"seasonNumber":14,"monitored":true,"statistics":{"previousAiring":"2019-04-26T00:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":70347334862,"percentOfEpisodes":100.0}},{"seasonNumber":15,"monitored":true,"statistics":{"previousAiring":"2020-11-20T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":72607184015,"percentOfEpisodes":100.0}}],"year":2005,"path":"\/tv\/Supernatural","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":42,"tvdbId":78901,"tvRageId":5410,"tvMazeId":19,"firstAired":"2005-09-13T00:00:00Z","seriesType":"standard","cleanTitle":"supernatural","imdbId":"tt0460681","titleSlug":"supernatural","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Horror"],"tags":[],"added":"2017-12-02T19:57:09.4109555Z","ratings":{"votes":14565,"value":9.0},"statistics":{"seasonCount":15,"episodeFileCount":329,"episodeCount":329,"totalEpisodeCount":333,"sizeOnDisk":551348809500,"percentOfEpisodes":100.0},"id":48},"episodes":[{"seriesId":48,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Unaired Pilot","overview":"Sam is about to graduate from college and has an interview set up to join one of the most prestigious law schools in the country. His brother Dean, whom he has not seen since he went to college, shows up in the middle of the night and tells him their father is missing while on a hunting trip. Leaving his girlfriend behind to find their dad, Sam joins Dean in an effort to find their father in a little town called Jericho, where unmarried men disappear without a trace.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":4550},{"seriesId":48,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Supernatural: 2018 Comic-Con Panel","overview":"Supernatural: 2018 Comic-Con Panel","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16943},{"seriesId":48,"episodeFileId":16132,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2005-09-13","airDateUtc":"2005-09-14T00:00:00Z","overview":"Sam is about to graduate from college and has an interview set up to join one of the most prestigious law schools in the country. His brother Dean, whom he has not seen since he went to college, shows up in the middle of the night and tells him their father is missing while on a hunting trip. Leaving his girlfriend behind to find their dad, Sam joins Dean in an effort to find their father in a little town called Jericho, where unmarried men disappear without a trace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":4553},{"seriesId":48,"episodeFileId":16133,"seasonNumber":1,"episodeNumber":2,"title":"Wendigo","airDate":"2005-09-20","airDateUtc":"2005-09-21T00:00:00Z","overview":"Sam and Dean pose as Park Rangers to help a brother and sister search for their lost sibling, who the Winchester brothers believe may have been taken by a Wendigo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":4554},{"seriesId":48,"episodeFileId":16134,"seasonNumber":1,"episodeNumber":3,"title":"Dead in the Water","airDate":"2005-09-27","airDateUtc":"2005-09-28T00:00:00Z","overview":"While going through the newspaper, Dean comes across a mysterious drowning victim. Upon further research they soon discover more people who have drowned in the same lake, but their bodies were never found. When the boys show up in town they befriend a boy whose father has drowned. The brothers come to believe the lake is haunted by a spirit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":4555},{"seriesId":48,"episodeFileId":16135,"seasonNumber":1,"episodeNumber":4,"title":"Phantom Traveler","airDate":"2005-10-04","airDateUtc":"2005-10-05T00:00:00Z","overview":"A friend of Dean's calls him up when a plane crashes under mysterious circumstances. Dean and Sam soon discover a flight attendant who was on the plane but they do not realize her full connection to the crash until they are on board another flight with her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":4556},{"seriesId":48,"episodeFileId":16136,"seasonNumber":1,"episodeNumber":5,"title":"Bloody Mary","airDate":"2005-10-11","airDateUtc":"2005-10-12T00:00:00Z","overview":"A man dies of a stroke in front of a mirror but Sam and Dean believe something, or someone else (Bloody Mary), may be behind his death. Dean tries to help Sam open up about his girlfriend's death, particularly after Sam lets it slip that there's some information that he hasn't told Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":4557},{"seriesId":48,"episodeFileId":16137,"seasonNumber":1,"episodeNumber":6,"title":"Skin","airDate":"2005-10-18","airDateUtc":"2005-10-19T00:00:00Z","overview":"Sam\u2019s friend, Zach, is accused of murder. Sam offers to help out by checking up on his sister, Rebecca. Rebecca claims her brother could not have committed the murder because he was with her at the time of the murder. But all the physical evidence points to Zach being at the scene of the crime. Could Zach have been at two places at the same time?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":4558},{"seriesId":48,"episodeFileId":16138,"seasonNumber":1,"episodeNumber":7,"title":"Hook Man","airDate":"2005-10-25","airDateUtc":"2005-10-26T00:00:00Z","overview":"Sam and Dean help a girl whose date became a victim of the \"Hook Man,\" a famous urban legend that turns out to be real, in a small college town somewhere in Iowa. In order to save her and her father, the local minister, the brothers have to find the ghost's bones so they can destroy them. One tiny problem... they're in an unmarked grave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":4559},{"seriesId":48,"episodeFileId":16139,"seasonNumber":1,"episodeNumber":8,"title":"Bugs","airDate":"2005-11-08","airDateUtc":"2005-11-09T01:00:00Z","overview":"Dean and Sam arrive in a town checking up a report of a mysterious death, and stop at a realtor's open house barbecue. Sam meets the realtor's son Matt, who is fascinated with bugs. Soon the town is invaded by swarms of deadly bugs, and there may be no way out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":4560},{"seriesId":48,"episodeFileId":16140,"seasonNumber":1,"episodeNumber":9,"title":"Home","airDate":"2005-11-15","airDateUtc":"2005-11-16T01:00:00Z","overview":"Dean and Sam return to their home of Lawrence, Kansas, where a new family has moved into the Winchester's old home. The family begins seeing and hearing frightening things, and the brothers think it might be haunted by the thing that killed their mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":4561},{"seriesId":48,"episodeFileId":16141,"seasonNumber":1,"episodeNumber":10,"title":"Asylum","airDate":"2005-11-22","airDateUtc":"2005-11-23T01:00:00Z","overview":"If these walls could talk. The brothers investigate a long-shuttered mental asylum that has the power to drive intruders mad... and murderous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":4562},{"seriesId":48,"episodeFileId":16142,"seasonNumber":1,"episodeNumber":11,"title":"Scarecrow","airDate":"2006-01-10","airDateUtc":"2006-01-11T01:00:00Z","overview":"Sam and Dean's father sends them to a small town where the citizens sacrifice couples to a pagan god which manifests through a scarecrow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":4563},{"seriesId":48,"episodeFileId":16143,"seasonNumber":1,"episodeNumber":12,"title":"Faith","airDate":"2006-01-17","airDateUtc":"2006-01-18T01:00:00Z","overview":"When Dean is accidentally electrocuted fighting a monster, he permanently damages his heart. When he's diagnosed as only having a month, at most, to live, Sam searches for a means to save him and finds Roy Le Grange, a faith healer who may actually be the real deal. After Le Grange heals Dean, the brothers discover that Le Grange is using black magic to bind a \"Reaper\" to do his bidding... and each healing comes with a terrible price.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":4564},{"seriesId":48,"episodeFileId":16144,"seasonNumber":1,"episodeNumber":13,"title":"Route 666","airDate":"2006-01-31","airDateUtc":"2006-02-01T01:00:00Z","overview":"Sam and Dean head to Missouri to investigate mysterious car accidents involving black men.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":4565},{"seriesId":48,"episodeFileId":16145,"seasonNumber":1,"episodeNumber":14,"title":"Nightmare","airDate":"2006-02-07","airDateUtc":"2006-02-08T01:00:00Z","overview":"Sam's precognitive dream leads the brothers to investigate a mysterious death which seems connected to a boy with the power of telekinesis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":4566},{"seriesId":48,"episodeFileId":16146,"seasonNumber":1,"episodeNumber":15,"title":"The Benders","airDate":"2006-02-14","airDateUtc":"2006-02-15T01:00:00Z","overview":"Dean searches for Sam when he is kidnapped by a backwoods family who likes to hunt humans and use their body parts as trophies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":4567},{"seriesId":48,"episodeFileId":16147,"seasonNumber":1,"episodeNumber":16,"title":"Shadow","airDate":"2006-02-28","airDateUtc":"2006-03-01T01:00:00Z","overview":"Sam has a reunion with a girl he once met, Meg, but it turns out that she is using the brothers to lure their father John to his doom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":4568},{"seriesId":48,"episodeFileId":16148,"seasonNumber":1,"episodeNumber":17,"title":"Hell House","airDate":"2006-03-30","airDateUtc":"2006-03-31T01:00:00Z","overview":"Sam and Dean investigate the case of a maniacal ghost inhabiting a long abandoned Texas farmhouse known as \"Hell House.\" They believe the ghost is the spirit of a deceased Depression-era farmer who killed his family, but they soon realize it is something far more powerful.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":4569},{"seriesId":48,"episodeFileId":16149,"seasonNumber":1,"episodeNumber":18,"title":"Something Wicked","airDate":"2006-04-06","airDateUtc":"2006-04-07T00:00:00Z","overview":"Sam and Dean battle a Shtriga, a witch that sneaks into childrens' bedrooms and sucks the lives out of them. Dean must relive his childhood when he remembers that he encountered the Shtriga years ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":4570},{"seriesId":48,"episodeFileId":16150,"seasonNumber":1,"episodeNumber":19,"title":"Provenance","airDate":"2006-04-13","airDateUtc":"2006-04-14T00:00:00Z","overview":"The Winchesters must deal with a dangerous spirit bound to an old family portrait that brings misfortune and death to anyone who buys it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":4571},{"seriesId":48,"episodeFileId":16151,"seasonNumber":1,"episodeNumber":20,"title":"Dead Man's Blood","airDate":"2006-04-20","airDateUtc":"2006-04-21T00:00:00Z","overview":"To obtain a mystic gun capable of destroying the demon that killed their mother, Sam and Dean must team up with their father John and face off against vampires.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":4572},{"seriesId":48,"episodeFileId":16152,"seasonNumber":1,"episodeNumber":21,"title":"Salvation","airDate":"2006-04-27","airDateUtc":"2006-04-28T00:00:00Z","overview":"John has realized where the demon will strike next and the Winchesters head there to stop the next killing. But Meg begins killing John's friends and demands the Colt or she'll keep going until everyone John knows is dead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":4573},{"seriesId":48,"episodeFileId":16153,"seasonNumber":1,"episodeNumber":22,"title":"Devil's Trap","airDate":"2006-05-04","airDateUtc":"2006-05-05T00:00:00Z","overview":"When Meg boasts that John is her prisoner, the boys visit a friend of their father's to get information about demonic possessions and ways to trap a demon. It turns out Meg is not what she appears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":4574},{"seriesId":48,"episodeFileId":16110,"seasonNumber":2,"episodeNumber":1,"title":"In My Time of Dying","airDate":"2006-09-28","airDateUtc":"2006-09-29T00:00:00Z","overview":"In the aftermath of the car crash, the surviving Winchesters go to the hospital, where one is stalked by a Reaper while another must consider sacrificing himself to save the others.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":4575},{"seriesId":48,"episodeFileId":16111,"seasonNumber":2,"episodeNumber":2,"title":"Everybody Loves a Clown","airDate":"2006-10-05","airDateUtc":"2006-10-06T00:00:00Z","overview":"After the events at the hospital, the brothers have no idea where the demon that killed their mother is hiding. While biding their time trying to come up with an idea, they investigate murders committed by a killer clown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":4576},{"seriesId":48,"episodeFileId":16112,"seasonNumber":2,"episodeNumber":3,"title":"Bloodlust","airDate":"2006-10-12","airDateUtc":"2006-10-13T00:00:00Z","overview":"Sam and Dean encounter a vampire hunter whose obsession may get them all killed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":4577},{"seriesId":48,"episodeFileId":16113,"seasonNumber":2,"episodeNumber":4,"title":"Children Shouldn't Play With Dead Things","airDate":"2006-10-19","airDateUtc":"2006-10-20T00:00:00Z","overview":"Dean and Sam investigate the death of a young college student who died in a car accident, but whose grave is now surrounded by a circle of dead plants.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":4578},{"seriesId":48,"episodeFileId":16114,"seasonNumber":2,"episodeNumber":5,"title":"Simon Said","airDate":"2006-10-26","airDateUtc":"2006-10-27T00:00:00Z","overview":"Sam and Dean meet Andy Gallagher, a slacker with psychic powers of persuasion. Once the brothers learn that Andy\u2019s family was visited by the Demon, Sam wonders if he could be one of the special children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":4579},{"seriesId":48,"episodeFileId":16115,"seasonNumber":2,"episodeNumber":6,"title":"No Exit","airDate":"2006-11-02","airDateUtc":"2006-11-03T01:00:00Z","overview":"Sam and Dean investigate the slayings of blonde women and find that the ghost of the first known serial killer in US history is responsible. Jo disobeys Ellen's wishes and follows them along, and is captured by the ghost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":4580},{"seriesId":48,"episodeFileId":16116,"seasonNumber":2,"episodeNumber":7,"title":"The Usual Suspects","airDate":"2006-11-09","airDateUtc":"2006-11-10T01:00:00Z","overview":"Sam and Dean investigate the murder of a lawyer and his wife, who claimed to have seen a ghost before they were killed. However, local authorities arrest the Winchesters after looking into their past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":4581},{"seriesId":48,"episodeFileId":16117,"seasonNumber":2,"episodeNumber":8,"title":"Crossroad Blues","airDate":"2006-11-16","airDateUtc":"2006-11-17T01:00:00Z","overview":"Dean calls a demon to make a deal to save a man named Evan Hudson, in exchange for himself. While making the deal, the demon confronts Dean\u2019s worst nightmare about their dad.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":4582},{"seriesId":48,"episodeFileId":16118,"seasonNumber":2,"episodeNumber":9,"title":"Croatoan","airDate":"2006-12-07","airDateUtc":"2006-12-08T01:00:00Z","overview":"Sam has a vision of Dean shooting a defenseless man, and they go to the town of River Grove, where they find the townspeople have been possessed by a virus that makes them violent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":4583},{"seriesId":48,"episodeFileId":16119,"seasonNumber":2,"episodeNumber":10,"title":"Hunted","airDate":"2007-01-11","airDateUtc":"2007-01-12T01:00:00Z","overview":"Sam meets a woman who shares his ability to have visions, and she warns him that she has seen the future... where he dies in an explosion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":4584},{"seriesId":48,"episodeFileId":16120,"seasonNumber":2,"episodeNumber":11,"title":"Playthings","airDate":"2007-01-18","airDateUtc":"2007-01-19T01:00:00Z","overview":"Sam and Dean investigate an Connecticut inn run by a single mother where mysterious deaths are taking place. They find evidence of Hoodoo, and try to figure out who is causing the chaos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":4585},{"seriesId":48,"episodeFileId":16121,"seasonNumber":2,"episodeNumber":12,"title":"Nightshifter","airDate":"2007-01-25","airDateUtc":"2007-01-26T01:00:00Z","overview":"The Winchesters investigate a series of crimes where robbers with no criminal past commit suicide after the hold-ups.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":4586},{"seriesId":48,"episodeFileId":16122,"seasonNumber":2,"episodeNumber":13,"title":"Houses of the Holy","airDate":"2007-02-01","airDateUtc":"2007-02-02T01:00:00Z","overview":"An angel causes people to cheerfully go out to murder, and when the Winchesters investigate one of them falls under its sway.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":4587},{"seriesId":48,"episodeFileId":16123,"seasonNumber":2,"episodeNumber":14,"title":"Born Under a Bad Sign","airDate":"2007-02-08","airDateUtc":"2007-02-09T01:00:00Z","overview":"Sam contacts Dean after being missing for a week. When they reunite, Dean finds Sam covered in blood and with no recollection of what happened.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":4588},{"seriesId":48,"episodeFileId":16124,"seasonNumber":2,"episodeNumber":15,"title":"Tall Tales","airDate":"2007-02-15","airDateUtc":"2007-02-16T01:00:00Z","overview":"The Winchester brothers seek the help of their family friend Bobby while investigating a series of unexplained happenings on a local college campus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":4589},{"seriesId":48,"episodeFileId":16125,"seasonNumber":2,"episodeNumber":16,"title":"Roadkill","airDate":"2007-03-15","airDateUtc":"2007-03-16T00:00:00Z","overview":"A fatal automobile accident from 1992 leaves an angry apparition haunting a remote stretch of highway, and Sam and Dean try to lay it to rest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":4590},{"seriesId":48,"episodeFileId":16126,"seasonNumber":2,"episodeNumber":17,"title":"Heart","airDate":"2007-03-22","airDateUtc":"2007-03-23T00:00:00Z","overview":"Sam and Dean investigate a brutal death and discover that the killer is a lycanthrope: a werewolf.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":4591},{"seriesId":48,"episodeFileId":16127,"seasonNumber":2,"episodeNumber":18,"title":"Hollywood Babylon","airDate":"2007-04-19","airDateUtc":"2007-04-20T00:00:00Z","overview":"Sam and Dean discover that a group of ghosts are attempting to shut down production of a movie that they feel is mocking them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":4592},{"seriesId":48,"episodeFileId":16128,"seasonNumber":2,"episodeNumber":19,"title":"Folsom Prison Blues","airDate":"2007-04-26","airDateUtc":"2007-04-27T00:00:00Z","overview":"Sam and Dean allow themselves to be arrested in order to investigate a series of murders inside a penitentiary. However things get complicated when FBI agent Henricksen shows up to take over their case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":4593},{"seriesId":48,"episodeFileId":16129,"seasonNumber":2,"episodeNumber":20,"title":"What Is and What Should Never Be","airDate":"2007-05-03","airDateUtc":"2007-05-04T00:00:00Z","overview":"Dean is attacked by a Djinn... and finds himself in a new reality where his mother is still alive and a mysterious woman holds the key to everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":4594},{"seriesId":48,"episodeFileId":16130,"seasonNumber":2,"episodeNumber":21,"title":"All Hell Breaks Loose (1)","airDate":"2007-05-10","airDateUtc":"2007-05-11T00:00:00Z","overview":"Sam and other \"special children\" are abducted by the Yellow-Eyed Demon and taken to a ghost town, where the ultimate battle must start.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":4595},{"seriesId":48,"episodeFileId":16131,"seasonNumber":2,"episodeNumber":22,"title":"All Hell Breaks Loose (2)","airDate":"2007-05-17","airDateUtc":"2007-05-18T00:00:00Z","overview":"After the fight between Jake and Sam, Dean has to make the ultimate sacrifice for his brother. Meanwhile the Yellow-Eyed Demon has his new servant and plans to unleash the hordes of Hell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":4596},{"seriesId":48,"episodeFileId":16178,"seasonNumber":3,"episodeNumber":1,"title":"The Magnificent Seven","airDate":"2007-10-04","airDateUtc":"2007-10-05T00:00:00Z","overview":"Seven demons, based on the Seven Deadly Sins, are released into the world and the brothers must combat them with the aid of a married Hunter couple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":4597},{"seriesId":48,"episodeFileId":16179,"seasonNumber":3,"episodeNumber":2,"title":"The Kids Are Alright","airDate":"2007-10-11","airDateUtc":"2007-10-12T00:00:00Z","overview":"Sam & Dean track down changelings that are pursuing mothers and their children. A boy they protect bears a strange resemblance to Dean, which at first makes Dean uncomfortable because he once had a one-night stand with the boy's mother Lisa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":4598},{"seriesId":48,"episodeFileId":16180,"seasonNumber":3,"episodeNumber":3,"title":"Bad Day at Black Rock","airDate":"2007-10-18","airDateUtc":"2007-10-19T00:00:00Z","overview":"The Winchesters are called regarding a robbery of their father's storage unit, and track down the robbers to find the item stolen is a cursed rabbit's foot, which provides great luck until lost, and once lost the previous owner dies within a week.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":4599},{"seriesId":48,"episodeFileId":16181,"seasonNumber":3,"episodeNumber":4,"title":"Sin City","airDate":"2007-10-25","airDateUtc":"2007-10-26T00:00:00Z","overview":"The brothers investigate the death of a man who committed suicide in a church. However, Sam is forced to team up with an unexpected ally when Dean disappears with a female demon who is interested in him personally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":4600},{"seriesId":48,"episodeFileId":16182,"seasonNumber":3,"episodeNumber":5,"title":"Bedtime Stories","airDate":"2007-11-01","airDateUtc":"2007-11-02T00:00:00Z","overview":"A young girl trapped in a coma by her wicked stepmother sets off a series of murders based on the fairy tales her father reads her. Meanwhile, Sam tries to get Dean out of his deal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":4601},{"seriesId":48,"episodeFileId":16183,"seasonNumber":3,"episodeNumber":6,"title":"Red Sky at Morning","airDate":"2007-11-08","airDateUtc":"2007-11-09T01:00:00Z","overview":"Bela gets in the way yet again as Sam and Dean are investigating multiple victims who drowned even though they were nowhere near water. Sam and Dean make the creepy discovery that the victims all saw a ghost ship right before dying. They tell Bela to stay away, but she's not so willing to leave, as someone's paying her a lot to solve the same case Sam and Dean are investigating.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":4602},{"seriesId":48,"episodeFileId":16184,"seasonNumber":3,"episodeNumber":7,"title":"Fresh Blood","airDate":"2007-11-15","airDateUtc":"2007-11-16T01:00:00Z","overview":"The brothers capture a female vampire named Lucy who has no idea how she became one, which leads them to Dixon, a male vampire who is a little too giving. Gordon returns with a vengeance leaving Sam in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":4603},{"seriesId":48,"episodeFileId":16185,"seasonNumber":3,"episodeNumber":8,"title":"A Very Supernatural Christmas","airDate":"2007-12-13","airDateUtc":"2007-12-14T01:00:00Z","overview":"In this Christmas-themed episode, Sam and Dean follow the trail of an \"anti-Santa\" that abducts its victims by using their chimneys. Dean tries to get Sam to celebrate Christmas like they used to but Sam doesn't want to accept that it could be the last one they'll spend together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":4604},{"seriesId":48,"episodeFileId":16186,"seasonNumber":3,"episodeNumber":9,"title":"Malleus Maleficarum","airDate":"2008-01-31","airDateUtc":"2008-02-01T01:00:00Z","overview":"The seemingly harmless practices of a group of neighborhood witches goes bad when one of them kills a woman. Ruby offers her assistance... but she has a few secrets of her own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":4605},{"seriesId":48,"episodeFileId":16187,"seasonNumber":3,"episodeNumber":10,"title":"Dream a Little Dream of Me","airDate":"2008-02-07","airDateUtc":"2008-02-08T01:00:00Z","overview":"Dean interrogates a college student after the death of Dr. Greggs. Bobby, Sam and Dean all discover the truth behind the fatal death when they all get locked in a nightmare of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":4606},{"seriesId":48,"episodeFileId":16188,"seasonNumber":3,"episodeNumber":11,"title":"Mystery Spot","airDate":"2008-02-14","airDateUtc":"2008-02-15T01:00:00Z","overview":"Dean is killed after looking into a case about the disappearance of a man with Sam. The next morning, Sam is shocked to find Dean alive and is hit with the realization that he is reliving the day before.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":4607},{"seriesId":48,"episodeFileId":16189,"seasonNumber":3,"episodeNumber":12,"title":"Jus in Bello","airDate":"2008-02-21","airDateUtc":"2008-02-22T01:00:00Z","overview":"FBI Agent Henricksen finally captures Sam and Dean, but is caught in the middle when a horde of demons descends on the small-town jail to eliminate the brothers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":4608},{"seriesId":48,"episodeFileId":16190,"seasonNumber":3,"episodeNumber":13,"title":"Ghostfacers!","airDate":"2008-04-24","airDateUtc":"2008-04-25T00:00:00Z","overview":"In a change of pace, Sam and Dean decide to star in a violent, profane reality show named Ghostfacers. The show takes them to the haunted Morton Mansion, and they soon realize they're in over their heads.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":4609},{"seriesId":48,"episodeFileId":16191,"seasonNumber":3,"episodeNumber":14,"title":"Long-Distance Call","airDate":"2008-05-01","airDateUtc":"2008-05-02T00:00:00Z","overview":"Sam and Dean search for a Crocotta that uses the phone and computer as a means to communicate with people. Its goal is to get people to commit suicide and take their soul. Dean gets some news from an unlikely source about a demon holding the contract to his soul.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":4610},{"seriesId":48,"episodeFileId":16192,"seasonNumber":3,"episodeNumber":15,"title":"Time is on My Side","airDate":"2008-05-08","airDateUtc":"2008-05-09T00:00:00Z","overview":"Sam and Dean discover a doctor who, back in 1816, became obsessed with finding the secret of eternal life by taking people's vital organs. Meanwhile, Bobby finds Bela and Dean leaves Sam to confront her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":4611},{"seriesId":48,"episodeFileId":16193,"seasonNumber":3,"episodeNumber":16,"title":"No Rest For the Wicked","airDate":"2008-05-15","airDateUtc":"2008-05-16T00:00:00Z","overview":"Sam, Dean, and Bobby hunt down Lilith and fight her and her demons in a final effort to save Dean's life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":4612},{"seriesId":48,"episodeFileId":16333,"seasonNumber":4,"episodeNumber":1,"title":"Lazarus Rising","airDate":"2008-09-18","airDateUtc":"2008-09-19T00:00:00Z","overview":"Dean wakes up in his own coffin. How did he return from the dead? What caused the hand-shaped welt on his shoulder? And what happened in the four months he spent in Hell, time he can't remember?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":4613},{"seriesId":48,"episodeFileId":16334,"seasonNumber":4,"episodeNumber":2,"title":"Are You There, God? It's Me, Dean Winchester","airDate":"2008-09-25","airDateUtc":"2008-09-26T00:00:00Z","overview":"After Dean's encounter with Castiel, Dean, Sam and Bobby brush up on their biblical lore when they're attacked by the vengeful spirits of people from the Winchesters' past. They're warned it's a sign that someone is trying to break seals which will bring on the apocalypse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":4614},{"seriesId":48,"episodeFileId":16335,"seasonNumber":4,"episodeNumber":3,"title":"In the Beginning","airDate":"2008-10-02","airDateUtc":"2008-10-03T00:00:00Z","overview":"Back to the future, Castiel sends Dean to 1973 Lawrence, Kansas, where he meets a nice young couple named John and Mary Winchester. Dean's parents. And Mary has a secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":4615},{"seriesId":48,"episodeFileId":16336,"seasonNumber":4,"episodeNumber":4,"title":"Metamorphosis","airDate":"2008-10-09","airDateUtc":"2008-10-10T00:00:00Z","overview":"Dark powers. Dean fears Sam is using his paranormal gifts in conflict with God's plan. And an ordinary guy in an ordinary town gets a major case of the munchies. It starts with steak - and moves to human flesh.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":4616},{"seriesId":48,"episodeFileId":16337,"seasonNumber":4,"episodeNumber":5,"title":"Monster Movie","airDate":"2008-10-16","airDateUtc":"2008-10-17T00:00:00Z","overview":"In a black-and-white world reminiscent of classic horror flicks, the brothers tangle with a vampire, a werewolf and a mummy who are thinning the crowds at a quaint Oktoberfest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":4617},{"seriesId":48,"episodeFileId":16338,"seasonNumber":4,"episodeNumber":6,"title":"Yellow Fever","airDate":"2008-10-23","airDateUtc":"2008-10-24T00:00:00Z","overview":"Hell beckons again when Dean is stricken with a mysterious illness that frightens its sufferers to death. Sam and Dean scramble to find the cause of the disease in time to save Dean from sure death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":4618},{"seriesId":48,"episodeFileId":16339,"seasonNumber":4,"episodeNumber":7,"title":"It's the Great Pumpkin, Sam Winchester","airDate":"2008-10-30","airDateUtc":"2008-10-31T00:00:00Z","overview":"Chomping candy, bobbing for apples. Halloween is such fun. Until gruesome deaths signify another seal is being broken. To stop it, Castiel and another angel plan a mass annihilation of the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":4619},{"seriesId":48,"episodeFileId":16340,"seasonNumber":4,"episodeNumber":8,"title":"Wishful Thinking","airDate":"2008-11-06","airDateUtc":"2008-11-07T01:00:00Z","overview":"Want to score a hot girlfriend, win the lottery or have your favorite teddy bear come to life? Then plunk a coin in a small town's wishing well and stand back. One problem: The wishes come true with a twist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":4620},{"seriesId":48,"episodeFileId":16341,"seasonNumber":4,"episodeNumber":9,"title":"I Know What You Did Last Summer","airDate":"2008-11-13","airDateUtc":"2008-11-14T01:00:00Z","overview":"What happened to Sam during the months Dean was dead? During the search for a girl named Anna Milton, who has a mysterious connection to angels, Sam reveals the astonishing events of the summer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":4621},{"seriesId":48,"episodeFileId":16342,"seasonNumber":4,"episodeNumber":10,"title":"Heaven and Hell","airDate":"2008-11-20","airDateUtc":"2008-11-21T01:00:00Z","overview":"\"I'll Kill her gentle.\" The angels want Anna dead, so Sam and Dean go on the run with the frightened girl, determined to discover the secret that has set the furies of Heaven on her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":4622},{"seriesId":48,"episodeFileId":16343,"seasonNumber":4,"episodeNumber":11,"title":"Family Remains","airDate":"2009-01-15","airDateUtc":"2009-01-16T01:00:00Z","overview":"Dad, Mom, two kids and a dog. An all-American family doesn't stand a ghost of a chance against the bloodthirsty force that turns their new home-sweet-home into a haunted house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":4623},{"seriesId":48,"episodeFileId":16344,"seasonNumber":4,"episodeNumber":12,"title":"Criss Angel Is a Douchebag","airDate":"2009-01-22","airDateUtc":"2009-01-23T01:00:00Z","overview":"Aging magician The Incredible Jay performs the dangerous Table of Death trick and emerges unscathed. Jay cheated the Grim Reaper, but one of his rivals didn't. He checked out while Jay was doing his act.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":4624},{"seriesId":48,"episodeFileId":16345,"seasonNumber":4,"episodeNumber":13,"title":"After School Special","airDate":"2009-01-29","airDateUtc":"2009-01-30T01:00:00Z","overview":"Fast times at Truman High. Murder brings Sam and Dean back to one of their old high schools, where they investigate possible demonic possession and take a few trips down memory lane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":4625},{"seriesId":48,"episodeFileId":16346,"seasonNumber":4,"episodeNumber":14,"title":"Sex and Violence","airDate":"2009-02-05","airDateUtc":"2009-02-06T01:00:00Z","overview":"In a small town in Iowa, three loving husbands kill their wives. Turns out these guys believe in spreading their love around: Each is spending plenty of the family income on strippers at a nearby nudie bar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":4626},{"seriesId":48,"episodeFileId":16347,"seasonNumber":4,"episodeNumber":15,"title":"Death Takes a Holiday","airDate":"2009-03-12","airDateUtc":"2009-03-13T00:00:00Z","overview":"Reapers take a break from work, and that means no one can die. But the escorts to the next world aren't off getting some R&R, unless you call being held hostage by a demon restful and relaxing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":4627},{"seriesId":48,"episodeFileId":16348,"seasonNumber":4,"episodeNumber":16,"title":"On the Head of a Pin","airDate":"2009-03-19","airDateUtc":"2009-03-20T00:00:00Z","overview":"Can torture be God's work? After seven angels are mysteriously murdered, Castiel and Uriel demand that Dean use the agony-inducing skills he learned in Hell to extract information from Alastair.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":4628},{"seriesId":48,"episodeFileId":16349,"seasonNumber":4,"episodeNumber":17,"title":"It's a Terrible Life","airDate":"2009-03-26","airDateUtc":"2009-03-27T00:00:00Z","overview":"At Sandover Bridge & Iron Inc., Dean is Dean Smith, the buttoned-down director of Sales & Marketing. Sam is Sam Wesson, a cubicle-dwelling tech support guy. What the heck is going on? Or is it what the Hell?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":4629},{"seriesId":48,"episodeFileId":16350,"seasonNumber":4,"episodeNumber":18,"title":"The Monster at the End of this Book","airDate":"2009-04-02","airDateUtc":"2009-04-03T00:00:00Z","overview":"Familiar plot. Familiar characters. Sam and Dean come across a series of graphic novels called \"Supernatural\" featuring two demon-hunting brothers named Sam and Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":4630},{"seriesId":48,"episodeFileId":16351,"seasonNumber":4,"episodeNumber":19,"title":"Jump the Shark","airDate":"2009-04-23","airDateUtc":"2009-04-24T00:00:00Z","overview":"Meet the Winchester boys: Dean, Sam and... Adam. The Winchesters discover they have a younger half-brother, whose mother vanishes just as a long-dormant grave robber renews his ghoulish career.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":4631},{"seriesId":48,"episodeFileId":16352,"seasonNumber":4,"episodeNumber":20,"title":"The Rapture","airDate":"2009-04-30","airDateUtc":"2009-05-01T00:00:00Z","overview":"The body Castiel walks around in isn't his. Instead, it belongs to a regular guy named Jimmy who wants his body - and his life - back. He gets the body. But the life may be a different story.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":4632},{"seriesId":48,"episodeFileId":16353,"seasonNumber":4,"episodeNumber":21,"title":"When the Levee Breaks","airDate":"2009-05-07","airDateUtc":"2009-05-08T00:00:00Z","overview":"Dean and Bobby have something frightening locked in Bobby's panic room: Sam, contaminated by demon blood. But as the apocalypse draws nearer, Bobby wants to free Sam to battle on their side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":4633},{"seriesId":48,"episodeFileId":16354,"seasonNumber":4,"episodeNumber":22,"title":"Lucifer Rising","airDate":"2009-05-14","airDateUtc":"2009-05-15T00:00:00Z","overview":"The brothers prepare to fight the forces of the apocalypse in different camps. While Sam and Ruby hunt down Lilith, Dean joins Castiel and Zachariah to take on Lucifer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":4634},{"seriesId":48,"episodeFileId":15917,"seasonNumber":5,"episodeNumber":1,"title":"Sympathy for the Devil","airDate":"2009-09-10","airDateUtc":"2009-09-11T00:00:00Z","overview":"Sam, Dean, and Bobby must deal with the aftermath of the Devil's escape from Hell, and receive startling news from the Prophet Chuck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":4635},{"seriesId":48,"episodeFileId":15918,"seasonNumber":5,"episodeNumber":2,"title":"Good God, Y'All!","airDate":"2009-09-17","airDateUtc":"2009-09-18T00:00:00Z","overview":"Hunter Rufus Turner calls in Bobby, Sam, and Dean to deal with a demon infestation in his town, but they soon discover the truth is much more horrifying. Meanwhile, Castiel goes to seek the only entity that can defeat Lucifer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":4636},{"seriesId":48,"episodeFileId":15919,"seasonNumber":5,"episodeNumber":3,"title":"Free to Be You and Me","airDate":"2009-09-24","airDateUtc":"2009-09-25T00:00:00Z","overview":"Sam decides to stop hunting but has a hard time after he receives a surprise visit. Dean and Castiel try to find the Archangel Raphael in their bid to stop the Apocalypse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":4637},{"seriesId":48,"episodeFileId":15920,"seasonNumber":5,"episodeNumber":4,"title":"The End","airDate":"2009-10-01","airDateUtc":"2009-10-02T00:00:00Z","overview":"Dean refuses Sam's efforts to help him battle the Devil, and then wakes up to find himself five years in the future, in a wasteland where Lucifer has begun his endgame by unleashing a virus that transforms humans into zombies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":4638},{"seriesId":48,"episodeFileId":15921,"seasonNumber":5,"episodeNumber":5,"title":"Fallen Idols","airDate":"2009-10-08","airDateUtc":"2009-10-09T00:00:00Z","overview":"Sam and Dean head to a small town where people are murdered by famous dead icons. However the brothers come to a dead end when two teenagers reveal they saw Paris Hilton kidnap their friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":4639},{"seriesId":48,"episodeFileId":15922,"seasonNumber":5,"episodeNumber":6,"title":"I Believe the Children Are Our Future","airDate":"2009-10-15","airDateUtc":"2009-10-16T00:00:00Z","overview":"Sam and Dean investigate a series of odd murders that strangely resemble fairytales and urban legends. The brothers track down an 11-year-old boy named Jesse and realize that whatever Jesse believes is coming true. Castiel tells Sam and Dean that Jesse is a serious threat and needs to be eliminated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":4640},{"seriesId":48,"episodeFileId":15923,"seasonNumber":5,"episodeNumber":7,"title":"The Curious Case of Dean Winchester","airDate":"2009-10-29","airDateUtc":"2009-10-30T00:00:00Z","overview":"Sam and Dean discover a witch is running a high-stakes poker game where the currency is life years vs. money. Bobby sees the game as a chance to get out of the wheelchair and bets 25 years, but loses. As Bobby begins to age rapidly, Dean steps in to save him but also ends up turning into an old man, leaving Sam holding the bag for their survival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":4641},{"seriesId":48,"episodeFileId":15924,"seasonNumber":5,"episodeNumber":8,"title":"Changing Channels","airDate":"2009-11-05","airDateUtc":"2009-11-06T01:00:00Z","overview":"When Sam and Dean find themselves living their lives on what appear to be TV shows, it makes for a whole new style of reality television and they wonder if the Trickster is to blame. From a sitcom to a soapy hospital drama to a Japanese game show to a crime procedural, each new experience they encounter is more bizarre than the next and they want out. But is the Trickster really the mastermind behind the madness?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":4642},{"seriesId":48,"episodeFileId":15925,"seasonNumber":5,"episodeNumber":9,"title":"The Real Ghostbusters","airDate":"2009-11-12","airDateUtc":"2009-11-13T01:00:00Z","overview":"Super fan Becky uses Chuck\u2019s phone to trick Sam and Dean into attending a Supernatural fan convention, complete with fans dressed up as Sam and Dean. One of the activities is a live action role playing game, but things quickly turn sour after a real ghost appears on the scene.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":4643},{"seriesId":48,"episodeFileId":15926,"seasonNumber":5,"episodeNumber":10,"title":"Abandon All Hope...","airDate":"2009-11-19","airDateUtc":"2009-11-20T01:00:00Z","overview":"Sam, Dean and Castiel track down the Colt and head off to find Lucifer to send him back to Hell. It\u2019s a hunters\u2019 reunion when the crew joins forces with Bobby, Ellen and Jo for what could be their last night on Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":4644},{"seriesId":48,"episodeFileId":15927,"seasonNumber":5,"episodeNumber":11,"title":"Sam, Interrupted","airDate":"2010-01-21","airDateUtc":"2010-01-22T01:00:00Z","overview":"A former hunter named Martin, who is currently institutionalized, calls Sam and Dean for help investigating a case in the mental hospital. The brothers get themselves admitted as patients to check out the mysterious monster that is attacking the patients, but their incarceration pushes both to the breaking point as they unleash their inner demons against each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":4645},{"seriesId":48,"episodeFileId":15928,"seasonNumber":5,"episodeNumber":12,"title":"Swap Meat","airDate":"2010-01-28","airDateUtc":"2010-01-29T01:00:00Z","overview":"Gary, a teenage nerd, conjures up a body-switching spell and changes bodies with Sam. Thrilled by his new handsome and built body, Gary (now Sam) investigates a case with Dean and takes advantage of his good looks and age by hitting on women and getting drunk. Meanwhile, Sam is stuck in Gary's teenage body, dealing with intrusive parents and high school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":4646},{"seriesId":48,"episodeFileId":15929,"seasonNumber":5,"episodeNumber":13,"title":"The Song Remains the Same","airDate":"2010-02-04","airDateUtc":"2010-02-05T01:00:00Z","overview":"The angels send Anna back in time to kill John and Mary Winchester before they can conceive Sam knowing that if Sam was never born then Lucifer won't be able to use him as his vessel. Castiel sends Sam and Dean back to 1978 so they can stop Anna, and the two brothers are reunited with their parents. Mary recognizes Dean as a hunter since he visited her in the past once before but tries to keep the truth from John.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":4647},{"seriesId":48,"episodeFileId":15930,"seasonNumber":5,"episodeNumber":14,"title":"My Bloody Valentine","airDate":"2010-02-11","airDateUtc":"2010-02-12T01:00:00Z","overview":"Castiel helps Sam and Dean hunt down Cupid on Valentine's Day after townspeople start to kill each other for love. However, after Cupid tells them he's innocent, they discover Famine, one of the Four Horsemen of the Apocalypse, has arrived in town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":4648},{"seriesId":48,"episodeFileId":15931,"seasonNumber":5,"episodeNumber":15,"title":"Dead Men Don't Wear Plaid","airDate":"2010-03-25","airDateUtc":"2010-03-26T00:00:00Z","overview":"Sam and Dean investigate Bobby's home town where the dead are rising from the grave but instead of attacking humans, they are happily reuniting with their families. The brothers turn to Bobby for help but he tells them not to worry about it and to leave town. Suspicious, Dean investigates and comes face to face with Bobby's dead wife, who has no memory of what happened to her. Once the zombies start turning evil, the boys tell Bobby he has to kill his wife but he refuses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":4649},{"seriesId":48,"episodeFileId":15932,"seasonNumber":5,"episodeNumber":16,"title":"Dark Side of the Moon","airDate":"2010-04-01","airDateUtc":"2010-04-02T00:00:00Z","overview":"Ambushed by angry hunters, Sam and Dean are shot and killed and sent to Heaven. Castiel warns Dean that Zachariah is looking for them in Heaven so they need to lay low while searching for an angel named Joshua who can help them since he talks directly to God. While searching for Joshua, the brothers run into some old friends and family members.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":4650},{"seriesId":48,"episodeFileId":15933,"seasonNumber":5,"episodeNumber":17,"title":"99 Problems","airDate":"2010-04-08","airDateUtc":"2010-04-09T00:00:00Z","overview":"Sam and Dean are outnumbered by demons, but are saved at the last minute by Rob and his townspeople, who are aware of the Apocalypse, and have been training to fight and kill demons. The small town is very religious and Sam and Dean meet Pastor Gideon, who introduces them to his daughter Leah, whom he claims is a prophet. Leah tells the townspeople they must obey her orders if they want a spot in Heaven but when she starts turning the townspeople against each other in the name of the Lord, the brothers realize they must kill her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":4651},{"seriesId":48,"episodeFileId":15934,"seasonNumber":5,"episodeNumber":18,"title":"Point of No Return","airDate":"2010-04-15","airDateUtc":"2010-04-16T00:00:00Z","overview":"Dean begins to think the only way to stop Lucifer is to say yes to Michael, but the angels decide they don't need him anymore. Dean, Sam, and Castiel are horrified at the angels' new game plan and take on Zachariah to prevent an all out war on Earth. Meanwhile, a familiar face returns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":4652},{"seriesId":48,"episodeFileId":15935,"seasonNumber":5,"episodeNumber":19,"title":"Hammer of the Gods","airDate":"2010-04-22","airDateUtc":"2010-04-23T00:00:00Z","overview":"Sam and Dean are kidnapped by a group of gods, including Kali, Ganesh, and Baldur and held hostage in a small hotel. The gods want to use Sam and Dean as bargaining chips to stop the Apocalypse, but Gabriel shows up and warns them that if Lucifer finds them he will kill them all. Unfortunately, one of the gods turns on the rest and Lucifer appears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":4653},{"seriesId":48,"episodeFileId":15936,"seasonNumber":5,"episodeNumber":20,"title":"The Devil You Know","airDate":"2010-04-29","airDateUtc":"2010-04-30T00:00:00Z","overview":"The demon Crowley tells Sam and Dean he can help them find the remaining Horsemen rings so they can trap Lucifer. The brothers are doubtful until Crowley leads them to Brady, the Handler for Pestilence and Death. However, Brady refuses to give up their locations and sets Pestilence after the Winchesters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":4654},{"seriesId":48,"episodeFileId":15937,"seasonNumber":5,"episodeNumber":21,"title":"Two Minutes To Midnight","airDate":"2010-05-06","airDateUtc":"2010-05-07T00:00:00Z","overview":"Crowley tells Bobby he will give him the location of Death, the fourth horseman, in exchange for his soul. Knowing Sam and Dean need that fourth ring to stop the Apocalypse, Bobby reluctantly agrees. Sam and Dean confront Pestilence, but he unleashes a deadly virus upon them, so Castiel must intervene on their behalf. Dean has a meeting with Death to discuss Lucifer, and an unholy alliance is formed at a very high price for Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":4655},{"seriesId":48,"episodeFileId":15938,"seasonNumber":5,"episodeNumber":22,"title":"Swan Song","airDate":"2010-05-13","airDateUtc":"2010-05-14T00:00:00Z","overview":"The showdown between good and evil is at hand. With the Apocalypse looming, Sam and Dean realize they are out of options and make heart-breaking decisions that will change their lives forever. A beloved character faces death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":4656},{"seriesId":48,"episodeFileId":16288,"seasonNumber":6,"episodeNumber":1,"title":"Exile on Main Street","airDate":"2010-09-24","airDateUtc":"2010-09-25T00:00:00Z","overview":"Sam is mysteriously released from Hell and seeks out his brother, trying to have a normal life. Together the brothers must join forces with their maternal grandfather, Samuel, and begin the fight anew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":4657},{"seriesId":48,"episodeFileId":16289,"seasonNumber":6,"episodeNumber":2,"title":"Two and a Half Men","airDate":"2010-10-01","airDateUtc":"2010-10-02T00:00:00Z","overview":"Sam investigates a case about missing babies whose parents are being murdered. At one of the crime scenes, he discovers a baby that was left behind and calls Dean for help. Reluctant to leave Lisa and Ben, Dean finally agrees to meet Sam and surprises his brother with how parental he has become. The brothers take the baby to Samuel, who decides to raise it as a hunter, which infuriates Dean. However, before they can decide the baby's future, a shape-shifter breaks in and attempts to kidnap the baby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":4658},{"seriesId":48,"episodeFileId":16290,"seasonNumber":6,"episodeNumber":3,"title":"The Third Man","airDate":"2010-10-08","airDateUtc":"2010-10-09T00:00:00Z","overview":"Sam and Dean call Castiel for help when they investigate a case about several dead police officers who seem to have been killed by the plagues of Egypt. Castiel confirms the staff of Moses was used to kill the cops and tells Sam and Dean that Heaven is in a state of chaos and God's weapons have been stolen. The three head off to find the thief and come face to face with an old enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":4659},{"seriesId":48,"episodeFileId":16291,"seasonNumber":6,"episodeNumber":4,"title":"Weekend at Bobby's","airDate":"2010-10-15","airDateUtc":"2010-10-16T00:00:00Z","overview":"After Bobby discovers Crowley has no intentions of returning Bobby's soul, the hunter takes matters into his own hands. He calls on Sam and Dean for help after he unearths one of Crowley's deepest secrets. Meanwhile, Sam and Dean learn what Bobby does all day when they are not around.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":4660},{"seriesId":48,"episodeFileId":16292,"seasonNumber":6,"episodeNumber":5,"title":"Live Free or Twihard","airDate":"2010-10-22","airDateUtc":"2010-10-23T00:00:00Z","overview":"After a group of young girls go missing Sam and Dean realize that a group of vampires have taken up residence in the small town. After a fight with two of the blood-suckers, Dean is bitten and turns into a vampire.\r\nSamuel tells Dean he can change him back but he\u2019d have to get the blood of the vampire who turned him. Dean infiltrates the nest and runs into the Alpha...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":4661},{"seriesId":48,"episodeFileId":16293,"seasonNumber":6,"episodeNumber":6,"title":"You Can't Handle the Truth","airDate":"2010-10-29","airDateUtc":"2010-10-30T00:00:00Z","overview":"Sam and Dean investigate a series of suicides and discover the victims were being told brutal truths that drove them crazy. They find out someone is invoking the Goddess of Truth, Veritas, forcing people to be cruelly honest against their will and Dean is the next victim. Dean is forced to tell Sam the truth about how he feels about his return from Hell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":4662},{"seriesId":48,"episodeFileId":16294,"seasonNumber":6,"episodeNumber":7,"title":"Family Matters","airDate":"2010-11-05","airDateUtc":"2010-11-06T00:00:00Z","overview":"Dean becomes suspicious of Samuel's motives, but Sam isn't sold on the idea that their grandfather is doing anything wrong. The brothers go along on a hunt with Samuel and the other Campbells, but things go terribly awry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":4663},{"seriesId":48,"episodeFileId":16295,"seasonNumber":6,"episodeNumber":8,"title":"All Dogs Go to Heaven","airDate":"2010-11-12","airDateUtc":"2010-11-13T01:00:00Z","overview":"Dean and Sam investigate what seems to be a werewolf killing but turns out to be a skinwalker posing as a family dog who is taking revenge on his owner\u2019s enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":4664},{"seriesId":48,"episodeFileId":16296,"seasonNumber":6,"episodeNumber":9,"title":"Clap Your Hands If You Believe...","airDate":"2010-11-19","airDateUtc":"2010-11-20T01:00:00Z","overview":"While Sam and Dean are investigating a UFO sighting, Dean is abducted from a crop circle. However, when he awakens, he discovers he isn't dealing with aliens, but fairies! Unfortunately, only Dean can see the fairy that keeps attacking him which makes tracing and stopping them difficult. The brothers become even more perplexed when Sam's investigation leads them to a world full of elves, gnomes and a leprechaun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":4665},{"seriesId":48,"episodeFileId":16297,"seasonNumber":6,"episodeNumber":10,"title":"Caged Heat","airDate":"2010-12-03","airDateUtc":"2010-12-04T01:00:00Z","overview":"Meg kidnaps Sam and Dean and tries to force them to tell her where Crowley is hiding. Sam makes her a deal - they will help her find Crowley if she promises to torture him for information about how to get Sam's soul back. Castiel joins the fight but finds it difficult to work with Meg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":4666},{"seriesId":48,"episodeFileId":16298,"seasonNumber":6,"episodeNumber":11,"title":"Appointment in Samarra","airDate":"2010-12-10","airDateUtc":"2010-12-11T01:00:00Z","overview":"Dean seeks out Death to help get Sam's soul back. Death tells Dean he will help Sam if Dean will agree to act as Death for 24 hours. Meanwhile, Sam decides he doesn't want his soul back and asks Balthazar for a protective spell to keep his soul out of his body. Balthazar tells Sam he needs the blood of his father for the spell to work and since John Winchester is dead, Sam decides Bobby is the next best thing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":4667},{"seriesId":48,"episodeFileId":16299,"seasonNumber":6,"episodeNumber":12,"title":"Like A Virgin","airDate":"2011-02-04","airDateUtc":"2011-02-05T01:00:00Z","overview":"Dean and Bobby anxiously wait for Sam to wake up to see if Death was able to restore his soul without causing Sam to lose his mind. Meanwhile, Dean and Bobby investigate a disappearance of virgins and discover dragons are behind the kidnappings. Bobby sends Dean to a doctor who owns the only weapon in the world that can slay a dragon, but Dean must prove himself worthy enough to take it","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":4668},{"seriesId":48,"episodeFileId":16300,"seasonNumber":6,"episodeNumber":13,"title":"Unforgiven","airDate":"2011-02-11","airDateUtc":"2011-02-12T01:00:00Z","overview":"Sam starts to have flashbacks to a case he worked on with Samuel before he reconnected with Dean. Sam receives a mysterious text with coordinates to a small town, so the brothers decide to investigate. Dean is surprised when the townspeople start telling him some of the things Sam did while he lived there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":4669},{"seriesId":48,"episodeFileId":16301,"seasonNumber":6,"episodeNumber":14,"title":"Mannequin 3: The Reckoning","airDate":"2011-02-18","airDateUtc":"2011-02-19T01:00:00Z","overview":"Ben calls Dean and tells him Lisa is in trouble. Dean leaves Sam to investigate a case alone and rushes home to rescue Lisa, however, he\u2019s not prepared for what meets him at the door. Meanwhile, Sam discovers the men that were murdered were all a part of a cruel practical joke played on a female co-worker who went missing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":4670},{"seriesId":48,"episodeFileId":16302,"seasonNumber":6,"episodeNumber":15,"title":"The French Mistake","airDate":"2011-02-25","airDateUtc":"2011-02-26T01:00:00Z","overview":"Dean and Sam find themselves in an alternate reality where everyone believes they are two actors named Jensen Ackles and Jared Padalecki, who star in a TV show called Supernatural about two brothers who hunt monsters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":4671},{"seriesId":48,"episodeFileId":16303,"seasonNumber":6,"episodeNumber":16,"title":"...And Then There Were None","airDate":"2011-03-04","airDateUtc":"2011-03-05T01:00:00Z","overview":"Eve, the Mother of All, unleashes a new monster upon the world: a black worm-slug that can enter the brain and force people to kill. Sam and Dean join forces with Bobby and Rufus and track it to a cannery, only to discover that Gwen and Samuel are also there looking for the monster... and none of them know who the monster is inside.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":4672},{"seriesId":48,"episodeFileId":16304,"seasonNumber":6,"episodeNumber":17,"title":"My Heart Will Go On","airDate":"2011-04-15","airDateUtc":"2011-04-16T00:00:00Z","overview":"After Balthazar changes history and keeps the Titanic from sinking, Fate intervenes and begins killing those that would have died on the ship. Castiel tells Sam and Dean that Fate is very upset with the two of them and the only way they can stay alive is to kill her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":4673},{"seriesId":48,"episodeFileId":16305,"seasonNumber":6,"episodeNumber":18,"title":"Frontierland","airDate":"2011-04-22","airDateUtc":"2011-04-23T00:00:00Z","overview":"While searching for a way to defeat Eve, Dean stumbles upon Samuel Colt\u2019s journal in the Campbell library. Realizing Samuel might have the answer to their problems, Sam and Dean ask Castiel to send them back in time so they can meet the man himself. While Sam is a bit reluctant to time travel, Dean is beside himself with excitement to return to the Wild, Wild West.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":4674},{"seriesId":48,"episodeFileId":16306,"seasonNumber":6,"episodeNumber":19,"title":"Mommy Dearest","airDate":"2011-04-29","airDateUtc":"2011-04-30T00:00:00Z","overview":"Sam, Dean, Bobby and Castiel track Eve to a small town in Oregon. The guys discover the townspeople have been converted to demons, but surprisingly, they all appear to be dying. When they finally do meet Eve, she decides to torture the brothers by bringing back their mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":4675},{"seriesId":48,"episodeFileId":16307,"seasonNumber":6,"episodeNumber":20,"title":"The Man Who Would Be King","airDate":"2011-05-06","airDateUtc":"2011-05-07T00:00:00Z","overview":"Castiel tells Sam, Dean and Bobby about the war in Heaven and how he and Raphael became enemies. Bobby believes Castiel is hiding something, but Dean refuses to believe it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":4676},{"seriesId":48,"episodeFileId":16308,"seasonNumber":6,"episodeNumber":21,"title":"Let It Bleed","airDate":"2011-05-20","airDateUtc":"2011-05-21T00:00:00Z","overview":"A demon kidnaps Ben and Lisa to get to Dean. Sam and Dean are forced to join with an unlikely ally to free them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":4677},{"seriesId":48,"episodeFileId":16309,"seasonNumber":6,"episodeNumber":22,"title":"The Man Who Knew Too Much","airDate":"2011-05-20","airDateUtc":"2011-05-21T00:42:00Z","overview":"The wall comes down in Sam\u2019s head and all hell breaks loose. Dean and Bobby are, for once, at a total loss on how to help him and are forced to stand by and do nothing while Sam breaks. The battle for heaven comes to a head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":4678},{"seriesId":48,"episodeFileId":16310,"seasonNumber":7,"episodeNumber":1,"title":"Meet the New Boss","airDate":"2011-09-23","airDateUtc":"2011-09-24T00:00:00Z","overview":"Castiel doesn't kill Sam, Dean and Bobby but warns them not to interfere in his business. Assuming his new role as God, Castiel sets out to right some of the wrongs in the world. Dean decides they should bind Death and order him to stop Castiel, but the former angel is one step ahead of them, leaving Dean to face a very angry Death. Meanwhile Sam struggles to deal with the broken wall in his head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":4679},{"seriesId":48,"episodeFileId":16311,"seasonNumber":7,"episodeNumber":2,"title":"Hello, Cruel World","airDate":"2011-09-30","airDateUtc":"2011-10-01T00:00:00Z","overview":"The broken wall in Sam's head causes him to have hallucinations, and he has difficulty discerning what's real and what's not. Bobby worries that Dean is beginning to stumble under the weight of fighting and keeping an eye on Sam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":4680},{"seriesId":48,"episodeFileId":16312,"seasonNumber":7,"episodeNumber":3,"title":"The Girl Next Door","airDate":"2011-10-07","airDateUtc":"2011-10-08T00:00:00Z","overview":"Dean is furious after Sam disappears to follow a lead on a case with clues that are identical to a case Sam solved as a kid. The demon turns out to be Amy, who has been killing low-life thugs and taking their brains for dinner - the same demon Sam found as a kid.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":4681},{"seriesId":48,"episodeFileId":16313,"seasonNumber":7,"episodeNumber":4,"title":"Defending Your Life","airDate":"2011-10-14","airDateUtc":"2011-10-15T00:00:00Z","overview":"Sam and Dean investigate a string of gruesome murders and discover the Egyptian god Osiris is behind the deaths. The vengeful god is putting people on trial for their past mistakes and killing them if found guilty. Osiris hones in on Dean\u2019s guilt and decides he\u2019s the next to stand trial. Sam steps in as Dean\u2019s lawyer, but both brothers are unprepared when Osiris calls an unexpected witness Jo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":130,"unverifiedSceneNumbering":false,"id":4682},{"seriesId":48,"episodeFileId":16314,"seasonNumber":7,"episodeNumber":5,"title":"Shut Up, Dr. Phil","airDate":"2011-10-21","airDateUtc":"2011-10-22T00:00:00Z","overview":"Sam and Dean meet Maggie Stark, a witch who has unleashed her wrath on a small town, resulting in numerous deaths. Sam and Dean track down her husband, Donald, to see if he can help. Donald tells the brothers that Maggie is mad at him for having an affair and is taking it out on the townspeople.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":4683},{"seriesId":48,"episodeFileId":16315,"seasonNumber":7,"episodeNumber":6,"title":"Slash Fiction","airDate":"2011-10-28","airDateUtc":"2011-10-29T00:00:00Z","overview":"Sam and Dean are once again on the FBI\u2019s \u201cMost Wanted\u201d list when two Leviathans clone the brothers and go on a killing spree. The subject of a nationwide manhunt, Sam and Dean need to drop off the grid so Bobby sends them to Frank Deveraux, a quirky surveillance expert, for help. Meanwhile, Bobby continues to search for a way to kill the Levianthans, or at least slow them down, so the real Winchesters can stop their evil doppelgangers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":4684},{"seriesId":48,"episodeFileId":16316,"seasonNumber":7,"episodeNumber":7,"title":"The Mentalists","airDate":"2011-11-04","airDateUtc":"2011-11-05T00:00:00Z","overview":"Sam and Dean investigate the gruesome murders of resident mediums in Lily Dale, the most \u201cpsychic\u201d town in America. They discover that an angry spirit is killing off the psychics one by one, but in a town full of people who claim to be summoning spirits, they have a little trouble identifying the medium controlling the ghost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":4685},{"seriesId":48,"episodeFileId":16317,"seasonNumber":7,"episodeNumber":8,"title":"Season Seven, Time for a Wedding!","airDate":"2011-11-11","airDateUtc":"2011-11-12T01:00:00Z","overview":"While on a hunt, Sam runs into someone from his past and a confrontation ensues. Meanwhile, Dean reluctantly teams up with a quirky, laid-back hunter named Garth, when he finds himself in a situation that he just cannot explain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":4686},{"seriesId":48,"episodeFileId":16318,"seasonNumber":7,"episodeNumber":9,"title":"How to Win Friends and Influence Monsters","airDate":"2011-11-18","airDateUtc":"2011-11-19T01:00:00Z","overview":"Sam, Dean, and Bobby become actual hunters, in the true sense of the word, when they set up camp in a New Jersey state park to track a creature that has been attacking people in the woods. The townsfolk claim it is the real Jersey Devil. Meanwhile, Dean is beyond thrilled to find a Biggerson\u2019s restaurant in town, but is devastated when he discovers the restaurant\u2019s special sandwich seems to be making people crazy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":4687},{"seriesId":48,"episodeFileId":16319,"seasonNumber":7,"episodeNumber":10,"title":"Death's Door","airDate":"2011-12-02","airDateUtc":"2011-12-03T01:00:00Z","overview":"As Sam and Dean race the clock on a high-stakes mission, Bobby seeks the help of an unlikely old friend to solve one of the most personal cases of his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":4688},{"seriesId":48,"episodeFileId":16320,"seasonNumber":7,"episodeNumber":11,"title":"Adventures in Babysitting","airDate":"2012-01-06","airDateUtc":"2012-01-07T01:00:00Z","overview":"Still reeling after what happened to Bobby, Dean becomes dangerously obsessed over finding a way to take down Dick Roman. Meanwhile, Sam decides to help a teenage girl look for her father, a hunter who has gone missing. Sam traces his last steps to a truck stop where the help turns out not to be so friendly.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":4689},{"seriesId":48,"episodeFileId":16321,"seasonNumber":7,"episodeNumber":12,"title":"Time After Time","airDate":"2012-01-13","airDateUtc":"2012-01-14T01:00:00Z","overview":"Sam and Dean tangle with the God of Time, who sends Dean back to 1944, where he is immediately arrested by none other than the one and only Eliot Ness. While trying to figure out how to retrieve his brother, Sam is surprised by the reappearance of an old friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":4690},{"seriesId":48,"episodeFileId":16322,"seasonNumber":7,"episodeNumber":13,"title":"The Slice Girls","airDate":"2012-02-03","airDateUtc":"2012-02-04T01:00:00Z","overview":"Sam and Dean investigate a case where the victims' hands and feet have been severed and each have been branded with a strange symbol. While Sam does some research at a local university, Dean heads to one of his favorite places to investigate - the town bar. Dean strikes up a conversation with a local named Lydia, and the two go back to her place. Sam discovers the symbol on the bodies is a sign of Amazon warriors.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":4691},{"seriesId":48,"episodeFileId":16323,"seasonNumber":7,"episodeNumber":14,"title":"Plucky Pennywhistle's Magical Menagerie","airDate":"2012-02-10","airDateUtc":"2012-02-11T01:00:00Z","overview":"Sam and Dean investigate strange happenings in a town where childhood fears are coming to life. To Sam's horror his childhood fear of clowns manifests in a very violent and traumatic way which in turn leads to Dean's childhood fear, losing his brother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":140,"unverifiedSceneNumbering":false,"id":4692},{"seriesId":48,"episodeFileId":16324,"seasonNumber":7,"episodeNumber":15,"title":"Repo Man","airDate":"2012-02-17","airDateUtc":"2012-02-18T01:00:00Z","overview":"Four years ago, Sam and Dean helped a woman named Nora exorcise a demon that was systematically killing women in a small town. They managed to save a postal worker, Jeffrey, while vanquishing the demon, but now it seems the black-eyed monster has reared his ugly head and returned for a second helping. The brothers visit Jeffrey, who has been locked in a psych ward since the incident, to see if he can remember any of the demon\u2019s plans while he was possessed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":141,"unverifiedSceneNumbering":false,"id":4693},{"seriesId":48,"episodeFileId":16325,"seasonNumber":7,"episodeNumber":16,"title":"Out With the Old","airDate":"2012-03-16","airDateUtc":"2012-03-17T00:00:00Z","overview":"After a ballerina is found dead from dancing herself to death, Sam and Dean look into the case and discover the ballet slippers she wore were cursed. When Dean accidentally touches the shoes the power of the curse starts to take hold of him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":142,"unverifiedSceneNumbering":false,"id":4694},{"seriesId":48,"episodeFileId":16326,"seasonNumber":7,"episodeNumber":17,"title":"The Born-Again Identity","airDate":"2012-03-23","airDateUtc":"2012-03-24T00:00:00Z","overview":"Lucifer drives Sam to the breaking point and Sam ends up in a mental hospital. Desperate to save his brother, Dean calls every hunter he knows for help. One of the hunters gives him the name of a healer who turns out to have a very familiar face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":143,"unverifiedSceneNumbering":false,"id":4695},{"seriesId":48,"episodeFileId":16327,"seasonNumber":7,"episodeNumber":18,"title":"Party On, Garth","airDate":"2012-03-30","airDateUtc":"2012-03-31T00:00:00Z","overview":"Dean is surprised when he gets a call from Garth asking for the brothers\u2019 help on a case. Sam and Dean discover they are battling a Shojo, a Japanese creature sent to seek revenge on enemies. The worst part about fighting a Shojo? You can only see it when you\u2019re drunk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":144,"unverifiedSceneNumbering":false,"id":4696},{"seriesId":48,"episodeFileId":16328,"seasonNumber":7,"episodeNumber":19,"title":"Of Grave Importance","airDate":"2012-04-20","airDateUtc":"2012-04-21T00:00:00Z","overview":"Sam and Dean get a call from Annie Hawkins, an old hunter friend, asking for help on a case. When they arrive in town, they find out Annie has disappeared. They trace her last whereabouts to an old abandoned house that is haunted by a powerful ghost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":145,"unverifiedSceneNumbering":false,"id":4697},{"seriesId":48,"episodeFileId":16329,"seasonNumber":7,"episodeNumber":20,"title":"The Girl with the Dungeons and Dragons Tattoo","airDate":"2012-04-27","airDateUtc":"2012-04-28T00:00:00Z","overview":"Dick Roman acquires Frank's hard drive that contains sensitive information about the Winchesters and gives it to an unsuspecting brilliant hacker named Charlie telling her she has 3 days to crack the encryptionl or she is fired. Sam and Dean are tipped off that Dick has the hard drive and race to get to Charlie before she breaks the code. Meanwhile, Bobby tries to help the brothers, but his rage towards Dick for killing him starts to get in the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":146,"unverifiedSceneNumbering":false,"id":4698},{"seriesId":48,"episodeFileId":16330,"seasonNumber":7,"episodeNumber":21,"title":"Reading is Fundamental","airDate":"2012-05-04","airDateUtc":"2012-05-05T00:00:00Z","overview":"Meg calls Dean and Sam and tells them Castiel is awake and talking. Meanwhile, a teenager named Kevin gets hit by a bolt of lightening and is turned into a reluctant prophet. Sam and Dean believe Kevin holds the key to defeating the Leviathans but must fight off two Archangels who want him for their own purposes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":147,"unverifiedSceneNumbering":false,"id":4699},{"seriesId":48,"episodeFileId":16331,"seasonNumber":7,"episodeNumber":22,"title":"There Will Be Blood","airDate":"2012-05-11","airDateUtc":"2012-05-12T00:00:00Z","overview":"In order to defeat Dick Roman and the Leviathans, Sam and Dean must locate three key items. Castiel helps with one but for the last objects, the Winchesters must face two of their strongest opponents - an Alpha and Crowley. Meanwhile, Bobby tries out a new ghost trick that ends up being very dangerous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":4700},{"seriesId":48,"episodeFileId":16332,"seasonNumber":7,"episodeNumber":23,"title":"Survival of the Fittest","airDate":"2012-05-18","airDateUtc":"2012-05-19T00:00:00Z","overview":"Dean and Sam prepare for battle with Dick Roman. Dick's in the final phase of his plan and the Winchesters must team up with Castiel, Bobby, Meg and Kevin, the prophet, to stop him. However, Dick is one of the smartest enemies they've ever faced so it's a mind game to see who can keep the upper hand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":4701},{"seriesId":48,"episodeFileId":16154,"seasonNumber":8,"episodeNumber":1,"title":"We Need To Talk About Kevin","airDate":"2012-10-03","airDateUtc":"2012-10-04T00:00:00Z","overview":"One Year Later Dean\u2019s escaped from Purgatory, though Castiel is nowhere to be found. However, Dean isn\u2019t alone. He\u2019s returned with a mysterious comrade-in-arms whose reason for escape is perhaps more than Dean bargained for. Meanwhile, Sam finds himself reconciling the life he discovered while Dean was gone with Dean\u2019s sudden reappearance. As the boys struggle with their unexpected reunion, they make a shocking discovery that could lead them on a deeply personal mission to settle old scores. If only they could agree \u2013 is this a \u201cfamily business\u201d or isn\u2019t it?.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":4702},{"seriesId":48,"episodeFileId":16155,"seasonNumber":8,"episodeNumber":2,"title":"What's Up, Tiger Mommy?","airDate":"2012-10-10","airDateUtc":"2012-10-11T00:00:00Z","overview":"Kevin talks Sam and Dean into checking in on his mother. When they arrive, they see that Crowley has surrounded her with demons so they rescue her and take her along on their quest to find the tablet. However, they soon discover Kevin wasn\u2019t kidding when he said his mother was a strong-willed woman after she tries to take on Crowley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":151,"unverifiedSceneNumbering":false,"id":4703},{"seriesId":48,"episodeFileId":16156,"seasonNumber":8,"episodeNumber":3,"title":"Heartache","airDate":"2012-10-17","airDateUtc":"2012-10-18T00:00:00Z","overview":"Sam and Dean investigate a string of unusual murders where the victims were all recipients of organs from the same donor. The killer is captured, but things become even more complicated when the brothers find their killer in a trance mumbling an ancient prayer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":152,"unverifiedSceneNumbering":false,"id":4704},{"seriesId":48,"episodeFileId":16157,"seasonNumber":8,"episodeNumber":4,"title":"Bitten","airDate":"2012-10-24","airDateUtc":"2012-10-25T00:00:00Z","overview":"Sam and Dean investigate a bizarre murder in a college town. Close on the tail of their suspect, they bust into an apartment to find two dead bodies and a laptop cued up to some disturbing video footage. The footage begins with Brian, Mike and Kate hearing about an unusual animal attack in their town and the rest of the story is revealed through their eyes. Sam and Dean become unknowing participants in a unique student film.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":153,"unverifiedSceneNumbering":false,"id":4705},{"seriesId":48,"episodeFileId":16158,"seasonNumber":8,"episodeNumber":5,"title":"Blood Brother","airDate":"2012-10-31","airDateUtc":"2012-11-01T00:00:00Z","overview":"After Benny gets brutally beat up by some vampires, he calls Dean for help. Dean abruptly packs up and tells a confused Sam that he\u2019s taking a \"personal day.\" Benny confesses that he\u2019s going after his Maker so Dean offers to help, flashing back on the many times Benny helped him and Castiel in Purgatory. Meanwhile, Sam uses his solo time to reflect on the life he left behind with Amelia. However, when things go bad for Dean and Benny, Dean calls Sam for help, which makes everything very complicated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":4706},{"seriesId":48,"episodeFileId":16159,"seasonNumber":8,"episodeNumber":6,"title":"Southern Comfort","airDate":"2012-11-07","airDateUtc":"2012-11-08T01:00:00Z","overview":"Sam and Dean investigate a murder and find Garth is already on the case. Dean is not happy to learn that Garth has assumed Bobby\u2019s duties, but Garth points out that both Sam and Dean have been missing for the last year and someone needed to do it. They guys discover an \"avenging ghost\" is responsible for the murders and they need to find the source before the killings starts again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":4707},{"seriesId":48,"episodeFileId":16160,"seasonNumber":8,"episodeNumber":7,"title":"A Little Slice of Kevin","airDate":"2012-11-14","airDateUtc":"2012-11-15T01:00:00Z","overview":"Sam and Dean are stunned when Castiel suddenly appears back on Earth with no memory of how he escaped from Purgatory. Meanwhile, Mrs. Tran enlists a witch to concoct a demon bomb, but the witch double crosses Mrs. Tran and turns her and Kevin over to Crowley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":4708},{"seriesId":48,"episodeFileId":16161,"seasonNumber":8,"episodeNumber":8,"title":"Hunteri Heroici","airDate":"2012-11-28","airDateUtc":"2012-11-29T01:00:00Z","overview":"Castiel tells Sam and Dean that he\u2019s decided to become a hunter like them. Sam and Dean aren\u2019t sold on the idea but agree to investigate a case Cas found where a man\u2019s heart literally burst through his chest. The guys discover there has been more than one odd murder in the small town and all of them resemble cartoon deaths.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":4709},{"seriesId":48,"episodeFileId":16162,"seasonNumber":8,"episodeNumber":9,"title":"Citizen Fang","airDate":"2012-12-05","airDateUtc":"2012-12-06T01:00:00Z","overview":"Sam asks a hunter named Martin to keep an eye on Benny without telling Dean. However, when Martin tells Sam there was a vampire kill and he thinks Benny is responsible, Dean defends his friend. When Martin decides to take things into his own hands, things get messy and Dean is forced to make a very hard decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":158,"unverifiedSceneNumbering":false,"id":4710},{"seriesId":48,"episodeFileId":16163,"seasonNumber":8,"episodeNumber":10,"title":"Torn and Frayed","airDate":"2013-01-16","airDateUtc":"2013-01-17T01:00:00Z","overview":"Naomi tells Castiel that Crowley is holding an angel captive and Castiel must rescue him before Crowley finds out their secrets. Castiel turns to Dean for help. Meanwhile, Sam meets with Amelia who asks him to make a choice: stay with her or leave and never contact her again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":159,"unverifiedSceneNumbering":false,"id":4711},{"seriesId":48,"episodeFileId":16164,"seasonNumber":8,"episodeNumber":11,"title":"LARP and the Real Girl","airDate":"2013-01-23","airDateUtc":"2013-01-24T01:00:00Z","overview":"Sam and Dean investigate the mysterious deaths of two LARPers who were playing a game entitled Moondoor. The guys are thrilled to discover the Queen of Moondoor is none other than Charlie. The three learn that a fairy has been commandeered to harm people and the only way to stop her is to find her master.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":160,"unverifiedSceneNumbering":false,"id":4712},{"seriesId":48,"episodeFileId":16165,"seasonNumber":8,"episodeNumber":12,"title":"As Time Goes By","airDate":"2013-01-30","airDateUtc":"2013-01-31T01:00:00Z","overview":"Sam and Dean are stunned when a man who claims to be Henry Winchester, their grandfather, suddenly appears in their hotel room demanding to know where he can find John Winchester. Henry has time-traveled to stop a demon named Abbadon and was looking for John\u2019s help. Through Henry, Sam and Dean learn more about their father and the Winchester blood line.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":161,"unverifiedSceneNumbering":false,"id":4713},{"seriesId":48,"episodeFileId":16166,"seasonNumber":8,"episodeNumber":13,"title":"Everybody Hates Hitler","airDate":"2013-02-06","airDateUtc":"2013-02-07T01:00:00Z","overview":"Sam and Dean investigate the death of Rabbi Bass, who spontaneously combusted. The case becomes ever more confusing when they learn that the Rabbi was researching Nazi Necromancers. Sam and Dean are attacked by a Golem who turns out to belong to the Rabbi\u2019s grandson, Aaron. The key to the case lies with the Golem but Aaron doesn\u2019t know how to control him, which leaves everyone in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":162,"unverifiedSceneNumbering":false,"id":4714},{"seriesId":48,"episodeFileId":16167,"seasonNumber":8,"episodeNumber":14,"title":"Trial and Error","airDate":"2013-02-13","airDateUtc":"2013-02-14T01:00:00Z","overview":"Kevin deciphers the tablet and figures out how to close the gates of Hell. He tells Sam and Dean that according to the tablet one person must face a series of three tests designed by God. The first one \u2013 kill a hellhound. Sam and Dean argue over who should complete the trials.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":163,"unverifiedSceneNumbering":false,"id":4715},{"seriesId":48,"episodeFileId":16168,"seasonNumber":8,"episodeNumber":15,"title":"Man's Best Friend with Benefits","airDate":"2013-02-20","airDateUtc":"2013-02-21T01:00:00Z","overview":"A police officer named James, who turned to witchcraft after working a case with Sam and Dean, is plagued by nightmares in which he murders innocent people. However, when the murders actually happen, Sam and Dean are called in by James\u2019s \"familiar\" to help -- but the brothers aren\u2019t sure they want to save a witch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":164,"unverifiedSceneNumbering":false,"id":4716},{"seriesId":48,"episodeFileId":16169,"seasonNumber":8,"episodeNumber":16,"title":"Remember the Titans","airDate":"2013-02-27","airDateUtc":"2013-02-28T01:00:00Z","overview":"Sam and Dean are stumped when they investigate a possible zombie case where an amnesiac man dies and then revives himself once a day. After the guy is attacked by the goddess Artemis, Sam and Dean realize he\u2019s not a zombie but instead a God, more specifically, Prometheus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":165,"unverifiedSceneNumbering":false,"id":4717},{"seriesId":48,"episodeFileId":16170,"seasonNumber":8,"episodeNumber":17,"title":"Goodbye, Stranger","airDate":"2013-03-20","airDateUtc":"2013-03-21T00:00:00Z","overview":"Castiel reappears in Sam and Dean\u2019s life and tells them Crowley has unleashed several demons into a small town. The demons are looking for Lucifer\u2019s Crypt, which holds a valuable asset, but Castiel lies to Sam and Dean about what it is. While interrogating a demon, the three discover Crowley has been torturing Meg, who knows the exact location of the crypt. Sam and Meg fight to hold Crowley off while Dean and Castiel go in search of the crypt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":166,"unverifiedSceneNumbering":false,"id":4718},{"seriesId":48,"episodeFileId":16171,"seasonNumber":8,"episodeNumber":18,"title":"Freaks and Geeks","airDate":"2013-03-27","airDateUtc":"2013-03-28T00:00:00Z","overview":"Sam and Dean investigate some recent vampire kills and are surprised to learn Krissy Chambers is involved. They find Krissy and learn her father was killed and she\u2019s been taken in by a man named Victor, who has taken in a group of orphan kids to teach them how to hunt. Victor is helping the teenagers find the vampires who took their parents so they can get revenge. Sam is intrigued by Victor\u2019s method of giving the teenagers a home life as well as a hunting life, but Dean is suspicious of Victor\u2019s motives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":167,"unverifiedSceneNumbering":false,"id":4719},{"seriesId":48,"episodeFileId":16172,"seasonNumber":8,"episodeNumber":19,"title":"Taxi Driver","airDate":"2013-04-03","airDateUtc":"2013-04-04T00:00:00Z","overview":"Sam and Dean respond to a call from Kevin, who is terrified after hearing Crowley's voice in his head. After hearing Kevin's news, Sam and Dean team up with a reaper named Ajay, who helps them deal with the second trial from the Tablet. Meanwhile, Dean receives a visit from Naomi and realizes he must find Benny and ask for a huge favor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":168,"unverifiedSceneNumbering":false,"id":4720},{"seriesId":48,"episodeFileId":16173,"seasonNumber":8,"episodeNumber":20,"title":"Pac-Man Fever","airDate":"2013-04-24","airDateUtc":"2013-04-25T00:00:00Z","overview":"Concerned about the physical toll the second trial took on Sam, Dean benches his brother from hunting until he heals up. So, when geektastic hacker Charlie stumbles upon a case and finds the boys, Dean decides it's time to teach Charlie how to be a hunter-in-training. While happy to see \"her highness,\" the boys suspect Charlie is hiding something; a secret that could get her killed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":169,"unverifiedSceneNumbering":false,"id":4721},{"seriesId":48,"episodeFileId":16174,"seasonNumber":8,"episodeNumber":21,"title":"The Great Escapist","airDate":"2013-05-01","airDateUtc":"2013-05-02T00:00:00Z","overview":"When Sam and Dean receive a distressing video message from Kevin Tran, they set about trying to uncover the Third Trial. The boys make a discovery that sends them to a casino in Colorado, to find a mysterious recluse who may be able to fill in the holes in Kevin\u2019s research. Meanwhile, Crowley is on a winning streak. Castiel tries to elude Naomi and the angels hunting him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":170,"unverifiedSceneNumbering":false,"id":4722},{"seriesId":48,"episodeFileId":16175,"seasonNumber":8,"episodeNumber":22,"title":"Clip Show","airDate":"2013-05-08","airDateUtc":"2013-05-09T00:00:00Z","overview":"Sam and Dean reunite with Castiel. Digging through the Men of Letters' files, they stumble upon an undiscovered film which could be the key to the third trial. Metatron enlists Cass to mull over problems at home. Meanwhile, Crowley digs into Sam and Dean's past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":171,"unverifiedSceneNumbering":false,"id":4723},{"seriesId":48,"episodeFileId":16176,"seasonNumber":8,"episodeNumber":23,"title":"Sacrifice","airDate":"2013-05-15","airDateUtc":"2013-05-16T00:00:00Z","overview":"With Crowley poised to undo all the good they\u2019ve ever done as hunters, Sam and Dean find themselves cornered. But with Kevin's help, the Winchester brothers bound into one last play against The Demon King. Metatron initiates a plan with Castiel to take on Naomi and the bureaucracy of Heaven.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":172,"unverifiedSceneNumbering":false,"id":4724},{"seriesId":48,"episodeFileId":16265,"seasonNumber":9,"episodeNumber":1,"title":"I Think I'm Gonna Like It Here","airDate":"2013-10-08","airDateUtc":"2013-10-09T00:00:00Z","overview":"Dean is frantic after Sam collapses and the doctor tells Dean his brother won't make it. Desperate, Dean sends out an all points bulletin via prayer to every angel in the area, asking them to help his brother. In exchange, Dean will owe that angel a favor. Numerous angry angels race to find and kill Dean, but one, Ezekiel, gets to him first. Meanwhile, Sam fights for his life and must face some familiar demons to do so. Castiel struggles to survive without powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":173,"unverifiedSceneNumbering":false,"id":4725},{"seriesId":48,"episodeFileId":16266,"seasonNumber":9,"episodeNumber":2,"title":"Devil May Care","airDate":"2013-10-15","airDateUtc":"2013-10-16T00:00:00Z","overview":"Dean shocks Sam by popping open the trunk of the Impala and showing him that he has kidnapped Crowley. Kevin freaks out when he sees the King of Hell, but Sam and Dean convince him that they need Crowley to find the demons on Earth. Meanwhile, Abaddon re-emerges and plans to take over Hell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":174,"unverifiedSceneNumbering":false,"id":4726},{"seriesId":48,"episodeFileId":16267,"seasonNumber":9,"episodeNumber":3,"title":"I'm No Angel","airDate":"2013-10-22","airDateUtc":"2013-10-23T00:00:00Z","overview":"Ezekiel tells Dean a group of angels is hunting Castiel. Dean and Sam race to find their friend before the angels do. Meanwhile, a homeless Castiel is trying to make his way through the city and comes across some unexpected surprises.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":175,"unverifiedSceneNumbering":false,"id":4727},{"seriesId":48,"episodeFileId":16268,"seasonNumber":9,"episodeNumber":4,"title":"Slumber Party","airDate":"2013-10-29","airDateUtc":"2013-10-30T00:00:00Z","overview":"Sam and Dean accidentally free Dorothy, who has been trapped in the bunker for years, who seeks their help in killing the wicked witch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":176,"unverifiedSceneNumbering":false,"id":4728},{"seriesId":48,"episodeFileId":16269,"seasonNumber":9,"episodeNumber":5,"title":"Dog Dean Afternoon","airDate":"2013-11-05","airDateUtc":"2013-11-06T01:00:00Z","overview":"While investigating two bizarre murders, Sam and Dean realize there is an eyewitness to both gruesome deaths - a German Sheppard. Anxious to find out if they are dealing with a witch, a skinwalker or other supernatural monster, the guys look up a spell that could let Dean \"communicate\" with the dog. Unfortunately, the spell comes with side effects that no one saw coming.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":177,"unverifiedSceneNumbering":false,"id":4729},{"seriesId":48,"episodeFileId":16270,"seasonNumber":9,"episodeNumber":6,"title":"Heaven Can't Wait","airDate":"2013-11-12","airDateUtc":"2013-11-13T01:00:00Z","overview":"Castiel gets a job at a Gas-N-Sip and actually starts to enjoy life as a human. A headline in the local newspaper about some disappearances in the area catches his eye, so he calls Dean to help him investigate the case. Dean knows he needs to keep Sam\/Ezekiel away from Castiel, so he tells Sam that he and Kevin need to stay and work with Crowley to decipher the tablet. Crowley agrees to help Sam and Kevin but in return he wants one phone call to hell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":178,"unverifiedSceneNumbering":false,"id":4730},{"seriesId":48,"episodeFileId":16271,"seasonNumber":9,"episodeNumber":7,"title":"Bad Boys","airDate":"2013-11-19","airDateUtc":"2013-11-20T01:00:00Z","overview":"Dean gets a call from an old friend named Sonny asking for help with a ghost. Sonny runs a home for delinquent boys, and Dean was sent there for stealing food when he was younger. Sam is stunned he never knew this about his brother and asks for more information, but Dean dodges his questions. Another murder occurs while Sam and Dean are at the house, so they scramble to find the culprit before anyone else dies. Meanwhile, Dean looks up an old girlfriend and recalls his time at the house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":179,"unverifiedSceneNumbering":false,"id":4731},{"seriesId":48,"episodeFileId":16272,"seasonNumber":9,"episodeNumber":8,"title":"Rock and a Hard Place","airDate":"2013-11-26","airDateUtc":"2013-11-27T01:00:00Z","overview":"Sheriff Mills calls Sam and Dean for help investigating multiple murders in her small town. Discovering all four victims belonged to the same church chastity group, Sam and Dean decide to infiltrate by joining the group themselves. When Dean disappears, Sam and Sheriff Mills realize whatever they are hunting has taken Dean too and team up to rescue him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":180,"unverifiedSceneNumbering":false,"id":4732},{"seriesId":48,"episodeFileId":16273,"seasonNumber":9,"episodeNumber":9,"title":"Holy Terror","airDate":"2013-12-03","airDateUtc":"2013-12-04T01:00:00Z","overview":"After a massive angel slaughter occurs, Sam and Dean arrive at the scene to investigate and are surprised to run into Castiel. While investigating, Castiel is captured and tortured. Meanwhile, Dean questions Ezekiel's demands and wonders if it might be time to tell Sam the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":181,"unverifiedSceneNumbering":false,"id":4733},{"seriesId":48,"episodeFileId":16274,"seasonNumber":9,"episodeNumber":10,"title":"Road Trip","airDate":"2014-01-14","airDateUtc":"2014-01-15T01:00:00Z","overview":"Dean is devastated after Kevin's death and vows to find the angel that killed him, not only to free Sam, but to seek revenge. Castiel arrives at the bunker and suggests they try to separate Sam's brain from the angel's so they can talk to Sam and have him expel Gadreel. However, there's one small problem: the only person who knows how to do that is Crowley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":182,"unverifiedSceneNumbering":false,"id":4734},{"seriesId":48,"episodeFileId":16275,"seasonNumber":9,"episodeNumber":11,"title":"First Born","airDate":"2014-01-21","airDateUtc":"2014-01-22T01:00:00Z","overview":"Looking to reclaim his place as King of Hell, Crowley asks Dean for help finding \"The First Blade,\" the only blade that can kill Abbadon. Knowing he owes Crowley a favor for helping Sam, and also wanting Abaddon dead himself, Dean reluctantly agrees and the two set off on a road trip. However, Dean and Crowley are completely unprepared when they find out who has the blade - Cain, the first son. Meanwhile, Sam is back at the bunker with Castiel who notices there is some leftover grace inside Sam. If they can extract it, they can use the grace to track Gadreel. The only problem is the procedure may do permanent damage to Sam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":183,"unverifiedSceneNumbering":false,"id":4735},{"seriesId":48,"episodeFileId":16276,"seasonNumber":9,"episodeNumber":12,"title":"Sharp Teeth","airDate":"2014-01-28","airDateUtc":"2014-01-29T01:00:00Z","overview":"After finding out that Garth is in the hospital, Sam and Dean go to check on him. Still carrying the guilt over Kevin, Dean lays into Garth about disappearing and demands to know where he's been. Garth makes an excuse and then hightails it away from the guys. Confused as to why Garth would run from them, Sam and Dean do some investigating and are stunned by what they find.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":184,"unverifiedSceneNumbering":false,"id":4736},{"seriesId":48,"episodeFileId":16277,"seasonNumber":9,"episodeNumber":13,"title":"The Purge","airDate":"2014-02-04","airDateUtc":"2014-02-05T01:00:00Z","overview":"Sam and Dean investigate recent murders where the victims were hundreds of pounds lighter after their deaths. Suspecting witches, the two go undercover at a fancy day spa that all of the victims had attended for weight loss. While Sam is hired as a fitness instructor, Dean takes kitchen duty. After Dean swipes some tainted food and passes out, the guys realize someone is drugging the guests and literally sucking all of the fat out of them until they die.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":185,"unverifiedSceneNumbering":false,"id":4737},{"seriesId":48,"episodeFileId":16278,"seasonNumber":9,"episodeNumber":14,"title":"Captives","airDate":"2014-02-25","airDateUtc":"2014-02-26T01:00:00Z","overview":"Sam and Dean are stunned to discover the Men of Letters\u2019 bunker is haunted. Their investigation leads them to a storage facility where the demons have been keeping a prize possession. Meanwhile, Castiel is captured by Bartholomew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":186,"unverifiedSceneNumbering":false,"id":4738},{"seriesId":48,"episodeFileId":16279,"seasonNumber":9,"episodeNumber":15,"title":"#THINMAN","airDate":"2014-03-04","airDateUtc":"2014-03-05T01:00:00Z","overview":"A teenage girl is killed and the final selfie she took before the attack shows a ghostly figure in the background. Looking for something to keep them busy, Dean and Sam head to Washington to find the ghost. While the two interview the girl\u2019s mother, Betty, they are surprised when she starts talking about cold spots and fritzing. When they ask her about bringing up paranormal signs, Betty replies that the \"supernaturalists\" who called earlier brought it up. Enter Harry and Ed, the famous supernaturalists.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":187,"unverifiedSceneNumbering":false,"id":4739},{"seriesId":48,"episodeFileId":16280,"seasonNumber":9,"episodeNumber":16,"title":"Blade Runners","airDate":"2014-03-18","airDateUtc":"2014-03-19T00:00:00Z","overview":"Dean is frustrated when he can\u2019t reach Crowley, who has promised to find The First Blade. When Crowley finally calls Sam and Dean, he tells them he fell off the wagon and has been injecting human blood and needs their help. To make matters worse, he had a demon helping him find blood, but she sold him out and told Abaddon that he and the Winchesters were searching for The First Blade. The brothers need to find the blade before Abaddon does, so they enlist the help of a former member of the Men of Letters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":188,"unverifiedSceneNumbering":false,"id":4740},{"seriesId":48,"episodeFileId":16281,"seasonNumber":9,"episodeNumber":17,"title":"Mother's Little Helper","airDate":"2014-03-25","airDateUtc":"2014-03-26T00:00:00Z","overview":"Dean struggles with the after effects of the Mark of Cain. Meanwhile, Sam hears about a case where straight-laced people are turning into violent murderers. Sam suspects possession and suggests to Dean that they investigate, but Dean tells him to go without him. While interviewing the local townsfolk, Sam meets an elderly woman named Julia, who tells him the Men of Letters came to town in 1958. Josie tells Sam the story of a young man named Henry Winchester and his female companion, Josie Sands. While Sam is away, Crowley tests Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":189,"unverifiedSceneNumbering":false,"id":4741},{"seriesId":48,"episodeFileId":16282,"seasonNumber":9,"episodeNumber":18,"title":"Meta Fiction","airDate":"2014-04-15","airDateUtc":"2014-04-16T00:00:00Z","overview":"Metatron attempts to get Castiel to join forces with him. Still furious with Metatron, Castiel refuses, which sets a surprising plan in motion. Meanwhile, Sam and Dean capture Gadreel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":190,"unverifiedSceneNumbering":false,"id":4742},{"seriesId":48,"episodeFileId":16283,"seasonNumber":9,"episodeNumber":19,"title":"Alex Annie Alexis Ann","airDate":"2014-04-22","airDateUtc":"2014-04-23T00:00:00Z","overview":"Sheriff Mills calls Sam and Dean after she kills a vampire who attacked a prisoner named Annie. They discover Annie was kidnapped by a family of vampires who use her as bait to lure in humans they can then feed on. Sheriff Mills tries to rescue Annie from her captors, but finds out the hard way that family always comes first.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":191,"unverifiedSceneNumbering":false,"id":4743},{"seriesId":48,"episodeFileId":16284,"seasonNumber":9,"episodeNumber":20,"title":"Bloodlines","airDate":"2014-04-29","airDateUtc":"2014-04-30T00:00:00Z","overview":"Sam and Dean investigate a case in Chicago, where they discover that various mafia-esque monster families are, unknown to humans, running the underbelly of Chicago. One is a family of shapeshifters run by Margo Lassiter, whose leadership is thrown into question when her brother David returns home. The other reigning family in town is made up of werewolves, lead by Julian Duval. While in Chicago, Sam and Dean meet Ennis, a man with a personal vendetta against the monsters. The Winchesters warn Ennis about heading into the hunter lifestyle, but Ennis refuses to listen and starts down a dangerous path.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":192,"unverifiedSceneNumbering":false,"id":4744},{"seriesId":48,"episodeFileId":16285,"seasonNumber":9,"episodeNumber":21,"title":"King of the Damned","airDate":"2014-05-06","airDateUtc":"2014-05-07T00:00:00Z","overview":"Castiel captures one of Metatron\u2019s angels and asks Sam and Dean for help with the interrogation. Dean eagerly accepts, which doesn\u2019t go unnoticed by Sam. Meanwhile, Abaddon demands Crowley help her kill Sam and Dean. When he refuses, she reveals her shocking bargaining chip. Also, Castiel sets a meeting with Gadreel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":193,"unverifiedSceneNumbering":false,"id":4745},{"seriesId":48,"episodeFileId":16286,"seasonNumber":9,"episodeNumber":22,"title":"Stairway to Heaven","airDate":"2014-05-13","airDateUtc":"2014-05-14T00:00:00Z","overview":"After a massive attack on the angels, Castiel calls Sam and Dean for help. As they leave, Dean\u2019s eagerness to bring the First Blade doesn\u2019t go unnoticed by Sam who is worried about the cost to his brother whenever he uses the Blade. Meanwhile, Castiel is shocked when he learns the angel that caused the attack was one of his followers and did it in his name. Dean discovers there is a conspiracy amongst Castiel\u2019s angel followers and at the heart of it is Tessa, the Reaper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":194,"unverifiedSceneNumbering":false,"id":4746},{"seriesId":48,"episodeFileId":16287,"seasonNumber":9,"episodeNumber":23,"title":"Do You Believe in Miracles?","airDate":"2014-05-20","airDateUtc":"2014-05-21T00:00:00Z","overview":"Dean feels the effects of the First Blade, and Metatron makes his move against humanity. Meanwhile, Sam, Dean and Castiel face shocking consequences when taking the fight to Metatron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":195,"unverifiedSceneNumbering":false,"id":4747},{"seriesId":48,"episodeFileId":16242,"seasonNumber":0,"episodeNumber":2,"title":"A Very Special Supernatural","airDate":"2014-10-06","airDateUtc":"2014-10-07T00:00:00Z","overview":"This one-hour special takes a behind-the-scenes look at the past nine seasons of the hit drama about the thrilling and terrifying journey of the Winchester Brothers. Interviews include series stars Jared Padalecki, Jensen Ackles, Misha Collins and Mark Sheppard, along with series creator Eric Kripke and executive producers Robert Singer and Jeremy Carver. The stars and producers share stories and clips of their favorite memories, monsters, demons and angels from seasons one through nine and tease the upcoming action fans can expect in season ten.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":4551},{"seriesId":48,"episodeFileId":16240,"seasonNumber":10,"episodeNumber":1,"title":"Black","airDate":"2014-10-07","airDateUtc":"2014-10-08T00:00:00Z","overview":"Dean is a demon and running amuck with Crowley while Sam tries to figure out what happened to his brother. Meanwhile, Castiel is dealing with his diminishing grace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":196,"unverifiedSceneNumbering":false,"id":4748},{"seriesId":48,"episodeFileId":16241,"seasonNumber":10,"episodeNumber":2,"title":"Reichenbach","airDate":"2014-10-14","airDateUtc":"2014-10-15T00:00:00Z","overview":"Crowley notices Dean is becoming more and more aggressive. Dean tells him that\u2019s the side effect of being a demon, but Crowley knows it\u2019s something more - the Mark of Cain needs to be fed. Meanwhile, Sam is captured by Cole, an angry man who blames Dean for his father\u2019s death years ago and wants revenge. Cole tortures Sam, hoping he\u2019ll tell him where Dean is hiding. Hannah sees how weak Castiel is becoming as his grace continues to fade, so she makes a bold choice and asks Metatron for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":197,"unverifiedSceneNumbering":false,"id":4749},{"seriesId":48,"episodeFileId":16243,"seasonNumber":10,"episodeNumber":3,"title":"Soul Survivor","airDate":"2014-10-21","airDateUtc":"2014-10-22T00:00:00Z","overview":"Sam continues his efforts to save Dean from the Mark of Cain. Crowley realizes Dean\u2019s demonic antics are starting to cause problems for him in Hell so he searches out an unlikely ally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":198,"unverifiedSceneNumbering":false,"id":4750},{"seriesId":48,"episodeFileId":16244,"seasonNumber":10,"episodeNumber":4,"title":"Paper Moon","airDate":"2014-10-28","airDateUtc":"2014-10-29T00:00:00Z","overview":"A recent string of werewolf attacks points to a surprising culprit \u2013 Kate, the werewolf Sam and Dean let live.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":199,"unverifiedSceneNumbering":false,"id":4751},{"seriesId":48,"episodeFileId":16246,"seasonNumber":10,"episodeNumber":5,"title":"Fan Fiction","airDate":"2014-11-11","airDateUtc":"2014-11-12T01:00:00Z","overview":"When Sam and Dean investigate the disappearance of a teacher, they are stunned to see the school is putting on a musical based on their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":200,"unverifiedSceneNumbering":false,"id":4752},{"seriesId":48,"episodeFileId":16247,"seasonNumber":10,"episodeNumber":6,"title":"Ask Jeeves","airDate":"2014-11-18","airDateUtc":"2014-11-19T01:00:00Z","overview":"Dean is surprised when he checks Bobby\u2019s cell phone and hears a message that says Bobby or his next of kin have been named as a beneficiary in an heiress\u2019 will. Hoping that means extra money, Dean talks Sam into hitting the road to claim their fortune. However, what they encounter at the house is far from a treasure chest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":201,"unverifiedSceneNumbering":false,"id":4753},{"seriesId":48,"episodeFileId":16248,"seasonNumber":10,"episodeNumber":7,"title":"Girls, Girls, Girls","airDate":"2014-11-25","airDateUtc":"2014-11-26T01:00:00Z","overview":"Sam and Dean stumble upon a demon who is running from Crowley. Before they have a chance to shut him down, Rowena steps in and takes things into her own hands. Realizing Rowena is trying to recruit and train followers in the art of witchcraft, Sam and Dean come up with a plan to catch her before she can do much damage. Meanwhile, Hannah runs into a blast from her vessel\u2019s past, which complicates things for her and Castiel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":202,"unverifiedSceneNumbering":false,"id":4754},{"seriesId":48,"episodeFileId":16249,"seasonNumber":10,"episodeNumber":8,"title":"Hibbing 911","airDate":"2014-12-02","airDateUtc":"2014-12-03T01:00:00Z","overview":"Jody Mills reluctantly attends a mandatory sheriff\u2019s retreat and is partnered with an overeager sheriff named Donna who wants to bond. Just as Jody thinks things can\u2019t get any worse, a body with just strings of meat and skin hanging off the bones is discovered. While the local sheriffs blame an animal attack, Jody knows better and calls Sam and Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":203,"unverifiedSceneNumbering":false,"id":4755},{"seriesId":48,"episodeFileId":16250,"seasonNumber":10,"episodeNumber":9,"title":"The Things We Left Behind","airDate":"2014-12-09","airDateUtc":"2014-12-10T01:00:00Z","overview":"Castiel finds Jimmy\u2019s daughter Claire in a group home and she convinces him to break her out. After she runs away from him, Castiel calls Sam and Dean to help find her before she gets in trouble. Meanwhile, Crowley faces his biggest challenge yet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":204,"unverifiedSceneNumbering":false,"id":4756},{"seriesId":48,"episodeFileId":16251,"seasonNumber":10,"episodeNumber":10,"title":"The Hunter Games","airDate":"2015-01-20","airDateUtc":"2015-01-21T01:00:00Z","overview":"After the massacre at the ranch, Dean, Sam and Castiel double their efforts to find a cure for the Mark of Cain but there is nothing in the lore that can help them. Desperate, Castiel comes up with an idea that Sam deems the \"single worst idea I've ever heard.\" Meanwhile, Rowena continues to plot against Crowley, and Castiel tries to mend his relationship with Claire who is plotting revenge against Dean for killing her friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":205,"unverifiedSceneNumbering":false,"id":4757},{"seriesId":48,"episodeFileId":16252,"seasonNumber":10,"episodeNumber":11,"title":"There's No Place Like Home","airDate":"2015-01-27","airDateUtc":"2015-01-28T01:00:00Z","overview":"Sam is scanning the internet for suspicious paranormal activity and comes across a video of Charlie beating up a district attorney. Dean suspects she\u2019s back from Oz and hunting on her own, assuming the district attorney must have been a demon. When they do find Charlie, they are shocked when she tells them why she really came back from Oz.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":206,"unverifiedSceneNumbering":false,"id":4758},{"seriesId":48,"episodeFileId":16253,"seasonNumber":10,"episodeNumber":12,"title":"About a Boy","airDate":"2015-02-03","airDateUtc":"2015-02-04T01:00:00Z","overview":"Looking to get Dean out of the bunker, Sam finds a case for him and Dean to investigate \u2013 people are disappearing into thin air with only their clothes left behind. Sam and Dean suspect fairies or angels, but the truth turns out to be much more shocking \u2013 Hansel, from Hansel and Gretel lore, is kidnapping people and turning them into their younger selves to placate the evil witch. Unfortunately, Dean finds this information out the hard way after he becomes Hansel\u2019s next victim and reverts to his 14 year old self.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":207,"unverifiedSceneNumbering":false,"id":4759},{"seriesId":48,"episodeFileId":16254,"seasonNumber":10,"episodeNumber":13,"title":"Halt & Catch Fire","airDate":"2015-02-10","airDateUtc":"2015-02-11T01:00:00Z","overview":"A ghost starts killing people through various electronic devices. Sam and Dean discover who was killed and why this ghost is seeking revenge on a group of college students but what they can\u2019t figure out is how he\u2019s doing it. With three dead, the brothers must stop the ghost before he claims his next victim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":208,"unverifiedSceneNumbering":false,"id":4760},{"seriesId":48,"episodeFileId":16255,"seasonNumber":10,"episodeNumber":14,"title":"The Executioner's Song","airDate":"2015-02-17","airDateUtc":"2015-02-18T01:00:00Z","overview":"Dean, Sam and Castiel deal with Cain\u2019s return. Crowley and Rowena continue to grow closer but when Crowley bails on plans with his mother to help the Winchesters, Rowena lets him have it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":209,"unverifiedSceneNumbering":false,"id":4761},{"seriesId":48,"episodeFileId":16256,"seasonNumber":10,"episodeNumber":15,"title":"The Things They Carried","airDate":"2015-03-18","airDateUtc":"2015-03-19T00:00:00Z","overview":"Despite Dean's directive to forget about looking for a cure for the Mark of Cain, Sam continues to do research. Dean suspects Sam is hiding something but decides to focus on a new murder case where they run into Cole. The three team up and learn a Khan worm is infecting men and turning them into murderers. Unfortunately, the worm makes its way into Cole.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":210,"unverifiedSceneNumbering":false,"id":4762},{"seriesId":48,"episodeFileId":16257,"seasonNumber":10,"episodeNumber":16,"title":"Paint It Black","airDate":"2015-03-25","airDateUtc":"2015-03-26T00:00:00Z","overview":"Sam and Dean investigate a string of suicides committed by people with little in common other than the identical, grisly method of death \u2013 slow, self-administered disembowlment. All of the victims were members of a Catholic church and had recently given confession, leading the brothers to suspect the priest is somehow involved. Meanwhile, when Crowley captures Olivette, the leader of the Grand Coven, Rowena pleads her case to be allowed to practice magic freely again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":211,"unverifiedSceneNumbering":false,"id":4763},{"seriesId":48,"episodeFileId":16258,"seasonNumber":10,"episodeNumber":17,"title":"Inside Man","airDate":"2015-04-01","airDateUtc":"2015-04-02T00:00:00Z","overview":"Sam and Castiel follow up on a lead about the Mark of Cain. Dean and Rowena meet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":212,"unverifiedSceneNumbering":false,"id":4764},{"seriesId":48,"episodeFileId":16259,"seasonNumber":10,"episodeNumber":18,"title":"Book of the Damned","airDate":"2015-04-15","airDateUtc":"2015-04-16T00:00:00Z","overview":"Charlie calls Sam and Dean to tell them she found the Book of the Dead which could help remove the Mark of Cain. The Winchesters race to her after she tells them she\u2019s been shot by a man named Jacob Styne who says the book belongs to his family and he won\u2019t rest until he gets it back. Castiel and Metatron take a road trip to find Castiel\u2019s grace but they hit a couple road bumps along the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":213,"unverifiedSceneNumbering":false,"id":4765},{"seriesId":48,"episodeFileId":16260,"seasonNumber":10,"episodeNumber":19,"title":"The Werther Project","airDate":"2015-04-22","airDateUtc":"2015-04-23T00:00:00Z","overview":"Sam learns that former Men of Letters, Magnus, once built a magical box and Sam sets out to find it in the hopes it can cure Dean of the Mark of Cain. However, what he\u2019s not prepared for, is the deadly alarm system Magnus set up on the box. When Sam opens the box, he puts both his and Dean\u2019s life in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":214,"unverifiedSceneNumbering":false,"id":4766},{"seriesId":48,"episodeFileId":16261,"seasonNumber":10,"episodeNumber":20,"title":"Angel Heart","airDate":"2015-04-29","airDateUtc":"2015-04-30T00:00:00Z","overview":"When Claire Novak gets a lead on her mother, Amelia, who has been missing for years, Castiel asks Sam and Dean to help her. Castiel feels guilty for what he did to the Novak family and wants to make amends by reuniting Claire with her mom. However, when they find out what took Amelia, they realize there is a chance Claire may not get her happy ending.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":215,"unverifiedSceneNumbering":false,"id":4767},{"seriesId":48,"episodeFileId":16262,"seasonNumber":10,"episodeNumber":21,"title":"Dark Dynasty","airDate":"2015-05-06","airDateUtc":"2015-05-07T00:00:00Z","overview":"Dean and Sam investigate a bizarre murder and realize the killer bears the same tattoo as those from the Styne family. Eldon Styne attacks Dean and a brutal fight ensues. Meanwhile, Castiel acts as referee when Charlie and Rowena are forced to work together on the Book of the Damned. Crowley discovers his mother is missing and knows she's up to something so he turns to an old enemy for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":216,"unverifiedSceneNumbering":false,"id":4768},{"seriesId":48,"episodeFileId":16263,"seasonNumber":10,"episodeNumber":22,"title":"The Prisoner","airDate":"2015-05-13","airDateUtc":"2015-05-14T00:00:00Z","overview":"When it comes to the Stynes, Dean decides to take matters into his own hands. Sam tries to come to terms with his decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":217,"unverifiedSceneNumbering":false,"id":4769},{"seriesId":48,"episodeFileId":16264,"seasonNumber":10,"episodeNumber":23,"title":"Brother's Keeper","airDate":"2015-05-20","airDateUtc":"2015-05-21T00:00:00Z","overview":"Dean makes a shocking decision regarding the Mark of Cain that would change not only his life, but Sam\u2019s too. Meanwhile, Crowley and Rowena face off and Castiel gets caught in the middle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":218,"unverifiedSceneNumbering":false,"id":4770},{"seriesId":48,"episodeFileId":10714,"seasonNumber":0,"episodeNumber":3,"title":"2015 Comic Con Panel","airDate":"2015-07-12","airDateUtc":"2015-07-13T00:00:00Z","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":4552},{"seriesId":48,"episodeFileId":16194,"seasonNumber":11,"episodeNumber":1,"title":"Out of the Darkness, Into the Fire","airDate":"2015-10-07","airDateUtc":"2015-10-08T00:00:00Z","overview":"Picking up where the finale left off, Sam and Dean must deal with the Darkness that has been unleashed. Castiel deals with the effects of Rowena\u2019s spell and recalls his brutal battle with Crowley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":219,"unverifiedSceneNumbering":false,"id":4771},{"seriesId":48,"episodeFileId":16195,"seasonNumber":11,"episodeNumber":2,"title":"Form and Void","airDate":"2015-10-14","airDateUtc":"2015-10-15T00:00:00Z","overview":"Dean helps Jenna, the deputy he met after the Darkness fell, get back home safely and then sets off to help Sam deal with a town infected by a mysterious and deadly gas. However, when Jenna falls into dangerous hands, she calls Dean for help and Sam tells him to go back to her. Unfortunately for Sam, he isn't able to handle the townspeople turned monsters as easily as he thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":220,"unverifiedSceneNumbering":false,"id":4772},{"seriesId":48,"episodeFileId":16196,"seasonNumber":11,"episodeNumber":3,"title":"The Bad Seed","airDate":"2015-10-21","airDateUtc":"2015-10-22T00:00:00Z","overview":"While Rowena tries to consolidate her power to protect herself from the Winchesters, Sam and Dean search for a missing baby connected to the Darkness. Meanwhile, Castiel struggles to heal and Crowley tries to find a way to use the Darkness for his own personal gain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":221,"unverifiedSceneNumbering":false,"id":4773},{"seriesId":48,"episodeFileId":16197,"seasonNumber":11,"episodeNumber":4,"title":"Baby","airDate":"2015-10-28","airDateUtc":"2015-10-29T00:00:00Z","overview":"Seen entirely from the point of view of the Impala, Sam and Dean go on a road trip to fight monsters and demons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":222,"unverifiedSceneNumbering":false,"id":4774},{"seriesId":48,"episodeFileId":16198,"seasonNumber":11,"episodeNumber":5,"title":"Thin Lizzie","airDate":"2015-11-04","airDateUtc":"2015-11-05T01:00:00Z","overview":"Sam and Dean investigate a series of murders at a local B&B that also happens to be Lizzie Borden\u2019s old home. When a local man, Len, tells them he saw a little girl around the B&B around the time of the murders, the brothers realize Amara may be responsible.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":223,"unverifiedSceneNumbering":false,"id":4775},{"seriesId":48,"episodeFileId":16199,"seasonNumber":11,"episodeNumber":6,"title":"Our Little World","airDate":"2015-11-11","airDateUtc":"2015-11-12T01:00:00Z","overview":"Castiel seeks out Metatron\u2019s help to stop the Darkness. However, Metatron is pretty happy with his new life as a freelance videographer for the local news and isn\u2019t inclined to help the Winchesters or Castiel. Meanwhile, Crowley is losing his hold on Amara.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":224,"unverifiedSceneNumbering":false,"id":4776},{"seriesId":48,"episodeFileId":16200,"seasonNumber":11,"episodeNumber":7,"title":"Plush","airDate":"2015-11-18","airDateUtc":"2015-11-19T01:00:00Z","overview":"Sheriff Donna calls Sam and Dean for help after a horrific murder with supernatural elements happens in her town. Sam continues to have visions and asks God for help, which frustrates Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":225,"unverifiedSceneNumbering":false,"id":4777},{"seriesId":48,"episodeFileId":16201,"seasonNumber":11,"episodeNumber":8,"title":"Just My Imagination","airDate":"2015-12-02","airDateUtc":"2015-12-03T01:00:00Z","overview":"Sam is shocked when his childhood imaginary friend Sully makes an unexpected appearance. Sam can\u2019t understand why he\u2019d see Sully now but what\u2019s even more surprising is that Dean can see him, too. Flashbacks reveal young Sam\u2019s friendship with Sully and why he needed him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":226,"unverifiedSceneNumbering":false,"id":4778},{"seriesId":48,"episodeFileId":16202,"seasonNumber":11,"episodeNumber":9,"title":"O Brother Where Art Thou?","airDate":"2015-12-09","airDateUtc":"2015-12-10T01:00:00Z","overview":"Amara unleashes her power on the local townspeople as she issues a shocking challenge. Dean tries to better understand the hold Amara has on him, while Sam and Crowley come up with a plan that could have disastrous consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":227,"unverifiedSceneNumbering":false,"id":4779},{"seriesId":48,"episodeFileId":16203,"seasonNumber":11,"episodeNumber":10,"title":"The Devil in the Details","airDate":"2016-01-20","airDateUtc":"2016-01-21T01:00:00Z","overview":"Now that he has Sam in the cage with him, Lucifer offers Sam a way out but it comes with a steep price. Dean and Castiel look into the angel smiting that could have killed Amara.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":228,"unverifiedSceneNumbering":false,"id":4780},{"seriesId":48,"episodeFileId":16204,"seasonNumber":11,"episodeNumber":11,"title":"Into the Mystic","airDate":"2016-01-27","airDateUtc":"2016-01-28T01:00:00Z","overview":"Sam and Dean investigate a case where people are suffering violent deaths after hearing a mysterious song.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":229,"unverifiedSceneNumbering":false,"id":4781},{"seriesId":48,"episodeFileId":16205,"seasonNumber":11,"episodeNumber":12,"title":"Don\u2019t You Forget about Me","airDate":"2016-02-03","airDateUtc":"2016-02-04T01:00:00Z","overview":"Sam and Dean drop in on Jody Mills, Claire and Alex after receiving a panicked phone call from Claire. She believes the recent murders in town are supernatural and wants the boys\u2019 help. However, Sheriff Mills tells Sam and Dean that Claire has been getting into trouble lately as she\u2019s been attacking normal people and accusing them of being monsters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":230,"unverifiedSceneNumbering":false,"id":4782},{"seriesId":48,"episodeFileId":16206,"seasonNumber":11,"episodeNumber":13,"title":"Love Hurts","airDate":"2016-02-10","airDateUtc":"2016-02-11T01:00:00Z","overview":"Sam and Dean investigate a set of murders on Valentine\u2019s Day and discover they are dealing with an ancient curse. Once kissed by the curse, the person is marked to die.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":231,"unverifiedSceneNumbering":false,"id":4783},{"seriesId":48,"episodeFileId":16207,"seasonNumber":11,"episodeNumber":14,"title":"The Vessel","airDate":"2016-02-17","airDateUtc":"2016-02-18T01:00:00Z","overview":"Hoping to find a weapon powerful enough to defeat Amara, Dean convinces \u201cCastiel,\u201d who is still Lucifer, to send him back in time to the last reported sighting of the Hand of God. Lucifer sees the potential in getting his hands on this weapon so goes along as Castiel and sends Dean to 1944 to the fated submarine mission that sunk the Hand of God. Meanwhile, continuing his charade with Sam while they wait for Dean\u2019s return, Lucifer plans his next move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":232,"unverifiedSceneNumbering":false,"id":4784},{"seriesId":48,"episodeFileId":16208,"seasonNumber":11,"episodeNumber":15,"title":"Beyond the Mat","airDate":"2016-02-24","airDateUtc":"2016-02-25T01:00:00Z","overview":"Dean sees an obituary notice for a wrestler he and Sam used to watch when they were kids. Deciding they need a break from tracking the Darkness, the brothers decide to attend the funeral to pay their respects. The funeral is full of wrestlers, including Shawn Harley, a hot shot new wrestler with a fiery temper who pushes everyone\u2019s buttons, and veteran wrestler Gunner Lawless. Sam and Dean attend the next match to re-live one of their fondest childhood memories but when another wrestler turns up dead, play time quickly turns to work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":233,"unverifiedSceneNumbering":false,"id":4785},{"seriesId":48,"episodeFileId":16209,"seasonNumber":11,"episodeNumber":16,"title":"Safe House","airDate":"2016-03-23","airDateUtc":"2016-03-24T00:00:00Z","overview":"A dangerous creature is accidentally released into an old house, attacking a mother and her child, leaving them both in a coma. Sam and Dean learn that Bobby and Rufus once tracked the same entity so the Winchesters look to the past to come up with a plan to catch the monster before any one dies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":234,"unverifiedSceneNumbering":false,"id":4786},{"seriesId":48,"episodeFileId":16210,"seasonNumber":11,"episodeNumber":17,"title":"Red Meat","airDate":"2016-03-30","airDateUtc":"2016-03-31T00:00:00Z","overview":"Sam and Dean battle a pair of werewolves who have captured two victims. Just as the brothers are about to win, one of the werewolves shoots Sam. Dean gets his brother and the victims out of the house but learns a pack of werewolves are hot on their tail, hoping to kill them all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":235,"unverifiedSceneNumbering":false,"id":4787},{"seriesId":48,"episodeFileId":16211,"seasonNumber":11,"episodeNumber":18,"title":"Hell's Angel","airDate":"2016-04-06","airDateUtc":"2016-04-07T00:00:00Z","overview":"Lucifer takes a trip home and tries to assert himself into Heaven. Crowley tells Sam and Dean he has a way to take down Amara.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":236,"unverifiedSceneNumbering":false,"id":4788},{"seriesId":48,"episodeFileId":16212,"seasonNumber":11,"episodeNumber":19,"title":"The Chitters","airDate":"2016-04-27","airDateUtc":"2016-04-28T00:00:00Z","overview":"In a small town in Colorado, mysterious disappearances happen every 27 years. Sam and Dean head to the town to investigate and meet two hunters who have a personal vendetta against these once-in-a-generation monsters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":237,"unverifiedSceneNumbering":false,"id":4789},{"seriesId":48,"episodeFileId":16213,"seasonNumber":11,"episodeNumber":20,"title":"Don't Call Me Shurley","airDate":"2016-05-04","airDateUtc":"2016-05-05T00:00:00Z","overview":"Amara unleashes a dark fog on a small town, causing everyone to go mad. Dean and Sam realize this is a stronger version of the original black vein virus Amara previously unleashed. They team up with the sheriff to protect the town but their old remedy no longer works. Meanwhile, Chuck returns with an interesting proposal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":238,"unverifiedSceneNumbering":false,"id":4790},{"seriesId":48,"episodeFileId":16214,"seasonNumber":11,"episodeNumber":21,"title":"All In The Family","airDate":"2016-05-11","airDateUtc":"2016-05-12T00:00:00Z","overview":"Amara shows Dean how she\u2019s torturing Lucifer. Worried for Castiel, Dean and Sam come up with a plan to rescue him from Amara\u2019s clutches.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":239,"unverifiedSceneNumbering":false,"id":4791},{"seriesId":48,"episodeFileId":16215,"seasonNumber":11,"episodeNumber":22,"title":"We Happy Few","airDate":"2016-05-18","airDateUtc":"2016-05-19T00:00:00Z","overview":"Sam and Dean face their biggest challenge yet. Rowena makes her move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":240,"unverifiedSceneNumbering":false,"id":4792},{"seriesId":48,"episodeFileId":16216,"seasonNumber":11,"episodeNumber":23,"title":"Alpha and Omega","airDate":"2016-05-25","airDateUtc":"2016-05-26T00:00:00Z","overview":"God comes to a decision about Amara that has direct repercussions for Sam and Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":241,"unverifiedSceneNumbering":false,"id":4793},{"seriesId":48,"episodeFileId":16217,"seasonNumber":12,"episodeNumber":1,"title":"Keep Calm and Carry On","airDate":"2016-10-13","airDateUtc":"2016-10-14T00:00:00Z","overview":"Dean is overwhelmed as he comes face to face with his mom, Mary Winchester. Meanwhile, Sam is fighting for his life after Toni, from the Woman of Letters, shot him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":242,"unverifiedSceneNumbering":false,"id":4794},{"seriesId":48,"episodeFileId":16218,"seasonNumber":12,"episodeNumber":2,"title":"Mamma Mia","airDate":"2016-10-20","airDateUtc":"2016-10-21T00:00:00Z","overview":"Dean, Castiel and Mary have a lead on Sam and set out to rescue him. Dean is uncomfortable with putting Mary in danger but she insists on going along. Meanwhile, Crowley is tipped off that Lucifer has taken over the body of rock star Vince Vicente.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":243,"unverifiedSceneNumbering":false,"id":4795},{"seriesId":48,"episodeFileId":16219,"seasonNumber":12,"episodeNumber":3,"title":"The Foundry","airDate":"2016-10-27","airDateUtc":"2016-10-28T00:00:00Z","overview":"When a crying baby leads to death in a mysterious abandoned house, Mary, Sam and Dean decide to investigate. Meanwhile, Castiel\u2019s hunt for Lucifer leads him, begrudgingly, to partner up with Crowley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":244,"unverifiedSceneNumbering":false,"id":4796},{"seriesId":48,"episodeFileId":16220,"seasonNumber":12,"episodeNumber":4,"title":"American Nightmare","airDate":"2016-11-03","airDateUtc":"2016-11-04T00:00:00Z","overview":"Sam and Dean investigate a case that leads them to a devout religious family that lives off the grid. The brothers realize that the parents are hiding a huge secret that could destroy them all. Meanwhile, Dean struggles to accept Mary\u2019s latest decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":245,"unverifiedSceneNumbering":false,"id":4797},{"seriesId":48,"episodeFileId":16221,"seasonNumber":12,"episodeNumber":5,"title":"The One You've Been Waiting For","airDate":"2016-11-10","airDateUtc":"2016-11-11T01:00:00Z","overview":"After learning that the soul of Adolf Hitler has been trapped in a 1930\u2019s gold pocket watch, Sam and Dean must act quickly to prevent a group of Nazi necromancers from resurrecting the F\u00fchrer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":246,"unverifiedSceneNumbering":false,"id":4798},{"seriesId":48,"episodeFileId":16222,"seasonNumber":12,"episodeNumber":6,"title":"Celebrating The Life Of Asa Fox","airDate":"2016-11-17","airDateUtc":"2016-11-18T01:00:00Z","overview":"When hunters gather together to celebrate the life and tragic death of one of their own, Sam, Dean, and Mary must take action when a demon starts picking off hunters one by one.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":247,"unverifiedSceneNumbering":false,"id":4799},{"seriesId":48,"episodeFileId":16223,"seasonNumber":12,"episodeNumber":7,"title":"Rock Never Dies","airDate":"2016-12-01","airDateUtc":"2016-12-02T01:00:00Z","overview":"Lucifer realizes that as rock star Vince Vincente, he can get his fans to do whatever he wants. Thrilled with this power, Lucifer arranges to play a secret VIP concert in order to kill all of them. Sam, Dean and Castiel enter the underbelly of the music industry to try to stop him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":248,"unverifiedSceneNumbering":false,"id":4800},{"seriesId":48,"episodeFileId":16224,"seasonNumber":12,"episodeNumber":8,"title":"LOTUS","airDate":"2016-12-08","airDateUtc":"2016-12-09T01:00:00Z","overview":"Lucifer\u2019s search for power and influence in a vessel lands him in the White House. The President of The United States unknowingly makes a deal with the devil, leading Sam, Dean, Castiel, Crowley and Rowena to band together to fight the Dark Lord.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":249,"unverifiedSceneNumbering":false,"id":4801},{"seriesId":48,"episodeFileId":16225,"seasonNumber":12,"episodeNumber":9,"title":"First Blood","airDate":"2017-01-26","airDateUtc":"2017-01-27T01:00:00Z","overview":"After being arrested for the attempted assassination of the President of The United States, Sam and Dean must find a way out of an underground, government-run, detention facility in the middle of nowhere. Determined to find her sons, Mary and Castiel seek assistance from an unlikely source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":250,"unverifiedSceneNumbering":false,"id":4802},{"seriesId":48,"episodeFileId":16226,"seasonNumber":12,"episodeNumber":10,"title":"Lily Sunder Has Some Regrets","airDate":"2017-02-02","airDateUtc":"2017-02-03T01:00:00Z","overview":"Lily Sunder steeps herself in black magic, honing her powers for over a century, waiting to exact revenge on a band of angels that murdered her family. Sam and Dean must work quickly to stop Castiel from becoming her next victim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":251,"unverifiedSceneNumbering":false,"id":4803},{"seriesId":48,"episodeFileId":16227,"seasonNumber":12,"episodeNumber":11,"title":"Regarding Dean","airDate":"2017-02-09","airDateUtc":"2017-02-10T01:00:00Z","overview":"Sam enlists Rowena\u2019s help to track down an old world, powerful family of witches after Dean gets hit by a spell that is rapidly erasing his memory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":252,"unverifiedSceneNumbering":false,"id":4804},{"seriesId":48,"episodeFileId":16228,"seasonNumber":12,"episodeNumber":12,"title":"Stuck in the Middle (With You)","airDate":"2017-02-16","airDateUtc":"2017-02-17T01:00:00Z","overview":"Mary asks Sam, Dean and Castiel for help on a case she\u2019s working but neglects to mention the British Men of Letters are involved. When Mary is double crossed, everything is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":253,"unverifiedSceneNumbering":false,"id":4805},{"seriesId":48,"episodeFileId":16229,"seasonNumber":12,"episodeNumber":13,"title":"Family Feud","airDate":"2017-02-23","airDateUtc":"2017-02-24T01:00:00Z","overview":"When Sam and Dean look into a murder at a museum, they learn a ghost from a merchant ship that sunk in 1723 may be at the heart of the mystery. After realizing \u201cThe Star\u201d was the same ship that Crowley\u2019s son Gavin McLeod should have been aboard, they enlist help from Rowena to track Gavin down. Kelly Kline, still pregnant with Lucifer\u2019s child, takes refuge with a demon after an angel attempts to kill her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":254,"unverifiedSceneNumbering":false,"id":4806},{"seriesId":48,"episodeFileId":16230,"seasonNumber":12,"episodeNumber":14,"title":"The Raid","airDate":"2017-03-02","airDateUtc":"2017-03-03T01:00:00Z","overview":"A chance to take out a nest of vampires backfires when the alpha-vamp shows up and turns the tables on Mary and The British Men of Letters, who are doing their best to recruit Sam and Dean.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":255,"unverifiedSceneNumbering":false,"id":4807},{"seriesId":48,"episodeFileId":16231,"seasonNumber":12,"episodeNumber":15,"title":"Somewhere Between Heaven and Hell","airDate":"2017-03-09","airDateUtc":"2017-03-10T01:00:00Z","overview":"An attack by an invisible hellhound at a campsite leads Sam and Dean to investigate the mysterious circumstances. Meanwhile, two of Crowley\u2019s own personal demons uncover what he has been hiding. Castiel gets a lead on Kelly Kline.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":256,"unverifiedSceneNumbering":false,"id":4808},{"seriesId":48,"episodeFileId":16232,"seasonNumber":12,"episodeNumber":16,"title":"Ladies Drink Free","airDate":"2017-03-30","airDateUtc":"2017-03-31T00:00:00Z","overview":"Sam and Dean let Mick Davies tag along on a case as they search for a werewolf. The three men run into Claire Novak, also working the hunt. However, the reunion is short lived after Claire is bitten and the brothers race to find a way to help her before she turns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":257,"unverifiedSceneNumbering":false,"id":4809},{"seriesId":48,"episodeFileId":16233,"seasonNumber":12,"episodeNumber":17,"title":"The British Invasion","airDate":"2017-04-06","airDateUtc":"2017-04-07T00:00:00Z","overview":"Sam and Dean get a lead on Kelly Kline\u2019s whereabouts. Mick drops by the bunker unexpectedly and decides to join the hunt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":258,"unverifiedSceneNumbering":false,"id":4810},{"seriesId":48,"episodeFileId":16234,"seasonNumber":12,"episodeNumber":18,"title":"The Memory Remains","airDate":"2017-04-13","airDateUtc":"2017-04-14T00:00:00Z","overview":"Sam and Dean investigate a missing person\u2019s case in a small town. The lead witness tells the Winchesters the attacker was a man with the head of a goat. Sam and Dean aren\u2019t sure what to believe but when the witness goes missing they realize the town is hiding a dark secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":259,"unverifiedSceneNumbering":false,"id":4811},{"seriesId":48,"episodeFileId":16235,"seasonNumber":12,"episodeNumber":19,"title":"The Future","airDate":"2017-04-27","airDateUtc":"2017-04-28T00:00:00Z","overview":"Sam comes up with a way to stop Lucifer\u2019s baby but Castiel has something else in mind for Kelly. Dean is furious when he finds out someone stole the colt. Kelly makes a bold choice about the baby\u2019s future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":260,"unverifiedSceneNumbering":false,"id":4812},{"seriesId":48,"episodeFileId":16236,"seasonNumber":12,"episodeNumber":20,"title":"Twigs and Twine and Tasha Banes","airDate":"2017-05-04","airDateUtc":"2017-05-05T00:00:00Z","overview":"Alicia Banes calls Mary for help after her mother, Tasha, goes missing. Sam answers Mary\u2019s phone and he and Dean head out to help Alicia and her twin brother, Max, find their mother who was hunting a powerful witch. Meanwhile, Mary starts to have some doubts about the British Men of Letters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":261,"unverifiedSceneNumbering":false,"id":4813},{"seriesId":48,"episodeFileId":16237,"seasonNumber":12,"episodeNumber":21,"title":"There's Something About Mary","airDate":"2017-05-11","airDateUtc":"2017-05-12T00:00:00Z","overview":"Sam and Dean are alarmed when they learn hunters are being killed by suspicious \u201caccidents\u201d all over the country. They decide it is best to find Mary and make sure she\u2019s safe. Meanwhile, Toni is back in the states and she and Mary face off.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":262,"unverifiedSceneNumbering":false,"id":4814},{"seriesId":48,"episodeFileId":16238,"seasonNumber":12,"episodeNumber":22,"title":"Who We Are","airDate":"2017-05-18","airDateUtc":"2017-05-19T00:00:00Z","overview":"Caught in a dangerous situation, Sam and Dean only have each other to rely on. Meanwhile, the fight between the American Hunters and the British Hunters comes to a head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":263,"unverifiedSceneNumbering":false,"id":4815},{"seriesId":48,"episodeFileId":16239,"seasonNumber":12,"episodeNumber":23,"title":"All Along the Watchtower","airDate":"2017-05-18","airDateUtc":"2017-05-19T00:42:00Z","overview":"Lucifer battles Sam, Dean and Castiel for control of his unborn child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":264,"unverifiedSceneNumbering":false,"id":4816},{"seriesId":48,"episodeFileId":10676,"seasonNumber":13,"episodeNumber":1,"title":"Lost and Found","airDate":"2017-10-12","airDateUtc":"2017-10-13T00:00:00Z","overview":"Sam and Dean are left to pick up the pieces after the loss of their mother, the demise of Crowley and the heartbreaking death of Castiel. Meanwhile the birth of Jack leaves the Winchester brothers with differing opinions on how to deal with a Nephilim. After being dragged into the breach, Mary must learn to survive Lucifer and an apocalyptic world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":265,"unverifiedSceneNumbering":false,"id":4817},{"seriesId":48,"episodeFileId":10693,"seasonNumber":13,"episodeNumber":2,"title":"The Rising Son","airDate":"2017-10-19","airDateUtc":"2017-10-20T00:00:00Z","overview":"Sam and Dean begin to explore what Jack is capable of doing with his powers. An unexpected visit from Donatello alerts the boys to the fact that Jack will need more protection than the Winchesters can provide. There is a new Prince of Hell in town, Asmodeus, and with Lucifer out of the picture, he sets his sights set on Jack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":266,"unverifiedSceneNumbering":false,"id":4818},{"seriesId":48,"episodeFileId":10711,"seasonNumber":13,"episodeNumber":3,"title":"Patience","airDate":"2017-10-26","airDateUtc":"2017-10-27T00:00:00Z","overview":"When her friend is murdered by a wraith with a taste for psychics, Missouri enlists the help of Dean and Jody to protect her granddaughter, Patience, who has no idea she shares her grandmother\u2019s trait and could be next on the wraith\u2019s hit list. Meanwhile, Sam continues to work with Jack on learning how to control his powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":267,"unverifiedSceneNumbering":false,"id":4819},{"seriesId":48,"episodeFileId":10723,"seasonNumber":13,"episodeNumber":4,"title":"The Big Empty","airDate":"2017-11-02","airDateUtc":"2017-11-03T00:00:00Z","overview":"When multiple patients of grief counselor Mia Vallens turn up dead, Sam, Dean and Jack investigate the mystery surrounding the murders and, each inadvertently, are forced to deal with unresolved grief of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":268,"unverifiedSceneNumbering":false,"id":4820},{"seriesId":48,"episodeFileId":10740,"seasonNumber":13,"episodeNumber":5,"title":"Advanced Thanatology","airDate":"2017-11-09","airDateUtc":"2017-11-10T01:00:00Z","overview":"While working on a case involving the ghost of a demented doctor, Sam and Dean get assistance from an unexpected source - Billie. Castiel finds his way back to the Winchesters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":269,"unverifiedSceneNumbering":false,"id":4821},{"seriesId":48,"episodeFileId":10754,"seasonNumber":13,"episodeNumber":6,"title":"Tombstone","airDate":"2017-11-16","airDateUtc":"2017-11-17T01:00:00Z","overview":"Castiel is reunited with Jack and together with Sam and Dean, they head to a sleepy old western town to investigate a murder. Dean gets to live out his boyhood fantasy when he comes face to face with a famous, gun-slinging outlaw.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":270,"unverifiedSceneNumbering":false,"id":4822},{"seriesId":48,"episodeFileId":10770,"seasonNumber":13,"episodeNumber":7,"title":"War of the Worlds","airDate":"2017-11-23","airDateUtc":"2017-11-24T01:00:00Z","overview":"As Sam and Dean continue their search for Jack, with Asmodeus hot on their trail, they stumble across a familiar foe. Meanwhile, Lucifer manages to escape Michael\u2019s grasp and finds himself an unlikely and mostly unwilling ally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":271,"unverifiedSceneNumbering":false,"id":4823},{"seriesId":48,"episodeFileId":10784,"seasonNumber":13,"episodeNumber":8,"title":"The Scorpion and the Frog","airDate":"2017-11-30","airDateUtc":"2017-12-01T01:00:00Z","overview":"Feeling as if they are running out of options, Sam and Dean agree to steal a mysterious trunk belonging to a demon named Barthamus, in exchange for a locater spell the Winchesters can use to track down Jack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":272,"unverifiedSceneNumbering":false,"id":4824},{"seriesId":48,"episodeFileId":10799,"seasonNumber":13,"episodeNumber":9,"title":"The Bad Place","airDate":"2017-12-07","airDateUtc":"2017-12-08T01:00:00Z","overview":"Jack, desperate to prove to Sam and Dean that he is good and that he can control his powers, enlists the help of a dreamcatcher named Kaia to help him find Mary Winchester and save her from the alternate universe. However, when plans go awry, the Winchester brothers are the ones who need saving.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":273,"unverifiedSceneNumbering":false,"id":4825},{"seriesId":48,"episodeFileId":10813,"seasonNumber":13,"episodeNumber":10,"title":"Wayward Sisters","airDate":"2018-01-18","airDateUtc":"2018-01-19T01:00:00Z","overview":"When Sam and Dean go missing, Jody Mills calls Claire Novak, the rebellious rogue hunter, and tells her it is time to come home \u2013 they need to find the Winchesters. Claire returns and reunites with Alex Jones, who has stayed behind with Jody and tries to balance a \u201cnormal\u201d life with being a part time hunter. While Jody is happy to have Claire home again, she\u2019s plagued by Patience\u2019s disturbing vision involving her adopted daughter. Claire and Alex search for Kaia Nieves, the dreamcatcher responsible for opening the rift that Sam and Dean went through, as she holds the key to their whereabouts. Jody calls her friend, Donna Hanscum, to round out the team and the women head off on the most important hunt of their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":274,"unverifiedSceneNumbering":false,"id":4826},{"seriesId":48,"episodeFileId":10828,"seasonNumber":13,"episodeNumber":11,"title":"Breakdown","airDate":"2018-01-25","airDateUtc":"2018-01-26T01:00:00Z","overview":"Donna calls Sam and Dean for help after her niece, Wendy, goes missing. The three hunters discover Wendy was kidnapped by a man who sells human parts to monsters in a grotesque online auction and race to save her before it is too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":275,"unverifiedSceneNumbering":false,"id":4827},{"seriesId":48,"episodeFileId":10841,"seasonNumber":13,"episodeNumber":12,"title":"Various & Sundry Villains","airDate":"2018-02-01","airDateUtc":"2018-02-02T01:00:00Z","overview":"Dean falls victim to a couple of witches, sisters Jamie and Jennie Plum, who manage to steal a powerful book of spells from the Winchester brothers. When Sam and Dean go after the book, they get help from a powerful and surprising ally when Rowena, back from the dead, intervenes to assist them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":276,"unverifiedSceneNumbering":false,"id":4828},{"seriesId":48,"episodeFileId":10857,"seasonNumber":13,"episodeNumber":13,"title":"Devil's Bargain","airDate":"2018-02-08","airDateUtc":"2018-02-09T01:00:00Z","overview":"Sam, Dean and Castiel search for Lucifer who, meanwhile, strikes an unlikely deal with a local faith healer named Sister Jo. Asmodeus inches closer to finding Jack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":277,"unverifiedSceneNumbering":false,"id":4829},{"seriesId":48,"episodeFileId":10872,"seasonNumber":13,"episodeNumber":14,"title":"Good Intentions","airDate":"2018-03-01","airDateUtc":"2018-03-02T01:00:00Z","overview":"Jack and Mary manage to escape Michael\u2019s clutches and end up finding an ally in \u201capocalyptic world\u201d Bobby Singer. Meanwhile, Sam, Dean and Castiel continue to search for a way to open a breach, not realizing that one of their own may be working against them and costing them precious time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":278,"unverifiedSceneNumbering":false,"id":4830},{"seriesId":48,"episodeFileId":10882,"seasonNumber":13,"episodeNumber":15,"title":"A Most Holy Man","airDate":"2018-03-08","airDateUtc":"2018-03-09T01:00:00Z","overview":"Sam and Dean are close to collecting everything they need to open a rift into the apocalyptic world and possibly rescuing Mary and Jack. The one missing ingredient leads the Winchesters to a black market for religious relics where everything is not always as it seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":279,"unverifiedSceneNumbering":false,"id":4831},{"seriesId":48,"episodeFileId":10896,"seasonNumber":13,"episodeNumber":16,"title":"ScoobyNatural","airDate":"2018-03-29","airDateUtc":"2018-03-30T00:00:00Z","overview":"Sam, Dean and Castiel are transported into the animated world of Scooby Doo where they join forces with the Scooby gang to solve a ghostly mystery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":280,"unverifiedSceneNumbering":false,"id":4832},{"seriesId":48,"episodeFileId":10912,"seasonNumber":13,"episodeNumber":17,"title":"The Thing","airDate":"2018-04-05","airDateUtc":"2018-04-06T00:00:00Z","overview":"Sam and Dean continue to collect the pieces necessary to open a rift to the other world in order to save their family. Their latest quest leads them to a Men of Letters bunker from the 1920s and a hungry God from another dimension. Meanwhile, Ketch makes a shocking decision about Gabriel after an unruly encounter with Asmodeus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":281,"unverifiedSceneNumbering":false,"id":4833},{"seriesId":48,"episodeFileId":10925,"seasonNumber":13,"episodeNumber":18,"title":"Bring 'Em Back Alive","airDate":"2018-04-12","airDateUtc":"2018-04-13T00:00:00Z","overview":"Lucifer rules over heaven but things aren\u2019t going exactly as planned, exasperating his first lady, Jo. Sam and Castiel are perplexed by the return of Gabriel. Meanwhile, Dean gets one step closer to finding Mary and Jack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":282,"unverifiedSceneNumbering":false,"id":4834},{"seriesId":48,"episodeFileId":10939,"seasonNumber":13,"episodeNumber":19,"title":"Funeralia","airDate":"2018-04-19","airDateUtc":"2018-04-20T00:00:00Z","overview":"Sam and Dean must stop Rowena, who is on a deadly mission. Meanwhile, Castiel looks to heaven to recruit angels for an impending invasion but is shocked by not only what he finds, but who.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":283,"unverifiedSceneNumbering":false,"id":4835},{"seriesId":48,"episodeFileId":10953,"seasonNumber":13,"episodeNumber":20,"title":"Unfinished Business","airDate":"2018-04-26","airDateUtc":"2018-04-27T00:00:00Z","overview":"Gabriel is back and drags Sam and Dean into his plot for revenge on the demigods who sold him to Asmodeus. Meanwhile, Jack's inflating confidence leads to reckless decisions that could put others in harm's way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":284,"unverifiedSceneNumbering":false,"id":4836},{"seriesId":48,"episodeFileId":10963,"seasonNumber":13,"episodeNumber":21,"title":"Beat the Devil","airDate":"2018-05-03","airDateUtc":"2018-05-04T00:00:00Z","overview":"Sam, Dean, Castiel and Gabriel must work together if they have any hope of bringing Mary and Jack home. Meanwhile, Rowena\u2019s encounter with Lucifer may alter the outcome of the journey for one of our heroes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":285,"unverifiedSceneNumbering":false,"id":4837},{"seriesId":48,"episodeFileId":10975,"seasonNumber":13,"episodeNumber":22,"title":"Exodus","airDate":"2018-05-10","airDateUtc":"2018-05-11T00:00:00Z","overview":"Sam and Dean devise a plan that will save innocent lives. Meanwhile, Jack continues to wrestle with the consequences of his decisions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":286,"unverifiedSceneNumbering":false,"id":4838},{"seriesId":48,"episodeFileId":10987,"seasonNumber":13,"episodeNumber":23,"title":"Let the Good Times Roll","airDate":"2018-05-17","airDateUtc":"2018-05-18T00:00:00Z","overview":"Our heroes, Sam and Dean Winchester, continue to be tested in the battle between good and evil, but one impulsive decision could alter the lives of one the brothers forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":287,"unverifiedSceneNumbering":false,"id":4839},{"seriesId":48,"episodeFileId":10678,"seasonNumber":14,"episodeNumber":1,"title":"Stranger in a Strange Land","airDate":"2018-10-11","airDateUtc":"2018-10-12T00:00:00Z","overview":"Sam enlists everyone\u2019s help in trying to track down Dean, who can literally be anywhere. Meanwhile, Castiel may be in over his head after meeting up with an unreliable source. After being drained of his grace, Jack is adjusting to life as a human, learning new skills and figuring out how he fits in to this world of hunters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":288,"unverifiedSceneNumbering":false,"id":4840},{"seriesId":48,"episodeFileId":10694,"seasonNumber":14,"episodeNumber":2,"title":"Gods and Monsters","airDate":"2018-10-18","airDateUtc":"2018-10-19T00:00:00Z","overview":"Sam finds a clue to Dean\u2019s whereabouts, so he, Mary and Bobby set out to investigate. Castiel imparts some sage advice on Jack, who, still desperate to belong, seeks out a familial connection.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":289,"unverifiedSceneNumbering":false,"id":4841},{"seriesId":48,"episodeFileId":10707,"seasonNumber":14,"episodeNumber":3,"title":"The Scar","airDate":"2018-10-25","airDateUtc":"2018-10-26T00:00:00Z","overview":"Still trying to solve the mystery of what happened to Dean, Sam enlists the help of Sheriff Jody Mills who may unknowingly already be on the case. Castiel continues to be a father figure to Jack, who surprises even himself, when a life is on the line.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":290,"unverifiedSceneNumbering":false,"id":4842},{"seriesId":48,"episodeFileId":10726,"seasonNumber":14,"episodeNumber":4,"title":"Mint Condition","airDate":"2018-11-01","airDateUtc":"2018-11-02T00:00:00Z","overview":"Dean continues to struggle. Meanwhile, Sam must think fast when action figures come to life, and our heroes find themselves living in a real-life horror movie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":291,"unverifiedSceneNumbering":false,"id":4843},{"seriesId":48,"episodeFileId":10739,"seasonNumber":14,"episodeNumber":5,"title":"Nightmare Logic","airDate":"2018-11-08","airDateUtc":"2018-11-09T01:00:00Z","overview":"After a hunt gone wrong leaves Maggie\u2019s whereabouts unknown, Sam, Dean, Mary and Bobby race to find her, but what they find are their own worst nightmares.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":292,"unverifiedSceneNumbering":false,"id":4844},{"seriesId":48,"episodeFileId":10755,"seasonNumber":14,"episodeNumber":6,"title":"Optimism","airDate":"2018-11-15","airDateUtc":"2018-11-16T01:00:00Z","overview":"Sam and Charlie team up to get to the bottom of a string of random disappearances. Meanwhile, Jack believes that he has found a case and convinces Dean to partner-up with him on the hunt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":293,"unverifiedSceneNumbering":false,"id":4845},{"seriesId":48,"episodeFileId":10771,"seasonNumber":14,"episodeNumber":7,"title":"Unhuman Nature","airDate":"2018-11-29","airDateUtc":"2018-11-30T01:00:00Z","overview":"Sam and Castiel track down a Shaman, who may be able to help a friend. Nick continues to spiral down a dark path as he looks for answers surrounding the deaths of his wife and son. Jack turns to Dean for help enjoying the human experience.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":294,"unverifiedSceneNumbering":false,"id":4846},{"seriesId":48,"episodeFileId":10787,"seasonNumber":14,"episodeNumber":8,"title":"Byzantium","airDate":"2018-12-06","airDateUtc":"2018-12-07T01:00:00Z","overview":"When Sam and Dean join forces with an unexpected ally, the outcome will alter the course of two lives. Meanwhile, Heaven faces an attack from a dark force, driving Castiel to make an enormous sacrifice to make things right.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":295,"unverifiedSceneNumbering":false,"id":4847},{"seriesId":48,"episodeFileId":10798,"seasonNumber":14,"episodeNumber":9,"title":"The Spear","airDate":"2018-12-13","airDateUtc":"2018-12-14T01:00:00Z","overview":"Sam and Dean enlist the help of their pal Garth to gain inside information on what Michael may be planning. The brothers split up to each go after weapons that can aid in their fight against the Archangel, but this may be a fight our heroes cannot win.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":296,"unverifiedSceneNumbering":false,"id":4848},{"seriesId":48,"episodeFileId":10812,"seasonNumber":14,"episodeNumber":10,"title":"Nihilism","airDate":"2019-01-17","airDateUtc":"2019-01-18T01:00:00Z","overview":"Michael has re-taken control of Dean as his army of monsters continues to move in on our heroes. Sam devises a plan to try and reach Dean and stop Michael before anyone else has to die.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":297,"unverifiedSceneNumbering":false,"id":4849},{"seriesId":48,"episodeFileId":10826,"seasonNumber":14,"episodeNumber":11,"title":"Damaged Goods","airDate":"2019-01-24","airDateUtc":"2019-01-25T01:00:00Z","overview":"Dean spends some bonding time with Mary and Donna. Nick finally finds the answer he has been searching for. Sam is left to make an unimaginable choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":298,"unverifiedSceneNumbering":false,"id":4850},{"seriesId":48,"episodeFileId":10842,"seasonNumber":14,"episodeNumber":12,"title":"Prophet and Loss","airDate":"2019-01-31","airDateUtc":"2019-02-01T01:00:00Z","overview":"Sam and Dean must figure out how to stop the bloodshed when Donatello, who, in his current condition, is inadvertently scrambling the order of future prophets. Nick comes face to face with his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":299,"unverifiedSceneNumbering":false,"id":4851},{"seriesId":48,"episodeFileId":10854,"seasonNumber":14,"episodeNumber":13,"title":"Lebanon","airDate":"2019-02-07","airDateUtc":"2019-02-08T01:00:00Z","overview":"Sam and Dean look to occult lore for a solution to their latest problem, but instead of a resolution, they find much more than either of them had anticipated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":300,"unverifiedSceneNumbering":false,"id":9429},{"seriesId":48,"episodeFileId":10870,"seasonNumber":14,"episodeNumber":14,"title":"Ouroboros","airDate":"2019-03-07","airDateUtc":"2019-03-08T01:00:00Z","overview":"Sam and Dean enlist the help of Rowena to track down a demi-god who feasts on human flesh; the challenge of keeping Michael at bay is proving to be more difficult than originally anticipated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":301,"unverifiedSceneNumbering":false,"id":10729},{"seriesId":48,"episodeFileId":10883,"seasonNumber":14,"episodeNumber":15,"title":"Peace of Mind","airDate":"2019-03-14","airDateUtc":"2019-03-15T00:00:00Z","overview":"Sam and Castiel follow a case to a picturesque little town in Arkansas, only to find out nothing is as idyllic as it appears to be. Dean and Jack take a road trip to visit an old friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":302,"unverifiedSceneNumbering":false,"id":10916},{"seriesId":48,"episodeFileId":10898,"seasonNumber":14,"episodeNumber":16,"title":"Don't Go in the Woods","airDate":"2019-03-21","airDateUtc":"2019-03-22T00:00:00Z","overview":"Sam and Dean are baffled when they come up against a monster they have never heard of before; Jack does his best to impress a new group of friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":303,"unverifiedSceneNumbering":false,"id":10917},{"seriesId":48,"episodeFileId":10910,"seasonNumber":14,"episodeNumber":17,"title":"Game Night","airDate":"2019-04-04","airDateUtc":"2019-04-05T00:00:00Z","overview":"Sam and Dean race to help a friend in need. Meanwhile, Mary is concerned for Jack\u2019s wellbeing, and Castiel enlists help from Jo\/Anael to track down a miracle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":304,"unverifiedSceneNumbering":false,"id":10967},{"seriesId":48,"episodeFileId":10923,"seasonNumber":14,"episodeNumber":18,"title":"Absence","airDate":"2019-04-11","airDateUtc":"2019-04-12T00:00:00Z","overview":"Sam and Dean continue to worry about the condition of Jack's soul.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":305,"unverifiedSceneNumbering":false,"id":10968},{"seriesId":48,"episodeFileId":10937,"seasonNumber":14,"episodeNumber":19,"title":"Jack in the Box","airDate":"2019-04-18","airDateUtc":"2019-04-19T00:00:00Z","overview":"Sam, Dean and Castiel investigate a string of suspicious deaths that have a biblical element to them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":306,"unverifiedSceneNumbering":false,"id":11107},{"seriesId":48,"episodeFileId":10950,"seasonNumber":14,"episodeNumber":20,"title":"Moriah","airDate":"2019-04-25","airDateUtc":"2019-04-26T00:00:00Z","overview":"Sam, Dean and Castiel are thrown into an epic battle. Meanwhile, Jack becomes disenchanted with all the lies, and an old friend from the past shows up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":307,"unverifiedSceneNumbering":false,"id":11108},{"seriesId":48,"episodeFileId":18267,"seasonNumber":15,"episodeNumber":1,"title":"Back and to the Future","airDate":"2019-10-10","airDateUtc":"2019-10-11T00:00:00Z","overview":"Picking up here we left off last season, Sam, Dean and Castiel are left to defend the world after all the souls in hell have been released and are back on Earth and free to kill again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":308,"unverifiedSceneNumbering":false,"id":11562},{"seriesId":48,"episodeFileId":18268,"seasonNumber":15,"episodeNumber":2,"title":"Raising Hell","airDate":"2019-10-17","airDateUtc":"2019-10-18T00:00:00Z","overview":"Sam, Dean and Castiel call on Rowena to help keep the evil souls at bay and get an unexpected assist from Ketch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":309,"unverifiedSceneNumbering":false,"id":12451},{"seriesId":48,"episodeFileId":18269,"seasonNumber":15,"episodeNumber":3,"title":"The Rupture","airDate":"2019-10-24","airDateUtc":"2019-10-25T00:00:00Z","overview":"Sam and Dean together with Rowena work tirelessly to keep all of hell from breaking loose. Castiel cannot forgive an arrogant betrayal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":310,"unverifiedSceneNumbering":false,"id":12452},{"seriesId":48,"episodeFileId":18270,"seasonNumber":15,"episodeNumber":4,"title":"Atomic Monsters","airDate":"2019-11-07","airDateUtc":"2019-11-08T01:00:00Z","overview":"Sam and Dean investigate the mysterious death of a girl and the disappearance of another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":311,"unverifiedSceneNumbering":false,"id":13085},{"seriesId":48,"episodeFileId":18271,"seasonNumber":15,"episodeNumber":5,"title":"Proverbs 17:3","airDate":"2019-11-14","airDateUtc":"2019-11-15T01:00:00Z","overview":"Sam and Dean\u2019s routine case turns out to be anything but.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":312,"unverifiedSceneNumbering":false,"id":13086},{"seriesId":48,"episodeFileId":18272,"seasonNumber":15,"episodeNumber":6,"title":"Golden Time","airDate":"2019-11-21","airDateUtc":"2019-11-22T01:00:00Z","overview":"Sam and Dean are visited by an old friend. Castiel investigates the disappearance of a local teen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":313,"unverifiedSceneNumbering":false,"id":13087},{"seriesId":48,"episodeFileId":18273,"seasonNumber":15,"episodeNumber":7,"title":"Last Call","airDate":"2019-12-05","airDateUtc":"2019-12-06T01:00:00Z","overview":"Dean goes off on his own to take on a case. Meanwhile, Castiel has an idea of how he can help Sam track down God.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":314,"unverifiedSceneNumbering":false,"id":13088},{"seriesId":48,"episodeFileId":18274,"seasonNumber":15,"episodeNumber":8,"title":"Our Father, Who Aren't in Heaven","airDate":"2019-12-12","airDateUtc":"2019-12-13T01:00:00Z","overview":"Sam, Dean and Castiel\u2019s continued search for a way to defeat Chuck leads them to unexpected places and toward unlikely allies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":315,"unverifiedSceneNumbering":false,"id":15626},{"seriesId":48,"episodeFileId":18275,"seasonNumber":15,"episodeNumber":9,"title":"The Trap","airDate":"2020-01-16","airDateUtc":"2020-01-17T01:00:00Z","overview":"Sam and Eileen are faced with the brutal truth. Meanwhile Dean and Cass work together in the hopes of getting a step ahead of Chuck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":316,"unverifiedSceneNumbering":false,"id":15630},{"seriesId":48,"episodeFileId":18276,"seasonNumber":15,"episodeNumber":10,"title":"The Heroes' Journey","airDate":"2020-01-23","airDateUtc":"2020-01-24T01:00:00Z","overview":"Sam and Dean hit the road to help an old friend, but it appears that their luck may have finally run out and they are the ones who may be in need of rescue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":317,"unverifiedSceneNumbering":false,"id":15631},{"seriesId":48,"episodeFileId":18277,"seasonNumber":15,"episodeNumber":11,"title":"The Gamblers","airDate":"2020-01-30","airDateUtc":"2020-01-31T01:00:00Z","overview":"Sam and Dean press their luck in a winner-takes-all game of pool. Meanwhile, Castiel hunts down a would-be murderer, but not for reasons one might think.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":318,"unverifiedSceneNumbering":false,"id":15632},{"seriesId":48,"episodeFileId":18278,"seasonNumber":15,"episodeNumber":12,"title":"Galaxy Brain","airDate":"2020-03-16","airDateUtc":"2020-03-17T00:00:00Z","overview":"Sam and Dean respond to a frantic call and together along with Castiel, Jack and Jody, assist in an extraordinary and heartbreaking rescue. Billie surprises everyone with a visit to the bunker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":319,"unverifiedSceneNumbering":false,"id":15633},{"seriesId":48,"episodeFileId":18279,"seasonNumber":15,"episodeNumber":13,"title":"Destiny's Child","airDate":"2020-03-23","airDateUtc":"2020-03-24T00:00:00Z","overview":"A search for the one thing that may give the Winchesters an edge against God leads Sam and Dean to Jo\u2019s door and to a secret that may have died with Ruby. Meanwhile, Castiel asks Jack to do the unthinkable to help the brothers in their quest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":320,"unverifiedSceneNumbering":false,"id":15634},{"seriesId":48,"episodeFileId":18280,"seasonNumber":15,"episodeNumber":14,"title":"Last Holiday","airDate":"2020-10-08","airDateUtc":"2020-10-09T00:00:00Z","overview":"Sam and Dean discover a wood nymph living in the bunker who is determined to protect her family, at any cost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":321,"unverifiedSceneNumbering":false,"id":17118},{"seriesId":48,"episodeFileId":18281,"seasonNumber":15,"episodeNumber":15,"title":"Gimme Shelter","airDate":"2020-10-15","airDateUtc":"2020-10-16T00:00:00Z","overview":"Castiel and Jack work a case involving members of a local church. Meanwhile, Sam and Dean go off in search of Amara.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":322,"unverifiedSceneNumbering":false,"id":17119},{"seriesId":48,"episodeFileId":18282,"seasonNumber":15,"episodeNumber":16,"title":"Drag Me Away (From You)","airDate":"2020-10-22","airDateUtc":"2020-10-23T00:00:00Z","overview":"Sam and Dean are asked to investigate the murder of a childhood friend, calling them back to a motel from their past and perplexing the brothers with a case they thought was solved a long time ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":323,"unverifiedSceneNumbering":false,"id":17258},{"seriesId":48,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"PaleyFest NY","airDate":"2020-10-23","airDateUtc":"2020-10-24T00:00:00Z","overview":"Jared Padalecki, Jensen Ackles, Misha Collins, Alexander Calvert and co-showrunners Robert Singer and Andrew Dabb.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19470},{"seriesId":48,"episodeFileId":18283,"seasonNumber":15,"episodeNumber":17,"title":"Unity","airDate":"2020-10-29","airDateUtc":"2020-10-30T00:00:00Z","overview":"Dean hits the road with Jack who needs to complete a final ritual in the quest to beat Chuck. A difference of opinion leaves Sam and Castiel behind looking for answers to questions of their own","hasFile":true,"monitored":true,"absoluteEpisodeNumber":324,"unverifiedSceneNumbering":false,"id":17259},{"seriesId":48,"episodeFileId":18284,"seasonNumber":15,"episodeNumber":18,"title":"Despair","airDate":"2020-11-05","airDateUtc":"2020-11-06T01:00:00Z","overview":"With the plan in full motion, Sam, Dean, Castiel and Jack fight for the good of the common goal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":325,"unverifiedSceneNumbering":false,"id":17260},{"seriesId":48,"episodeFileId":18285,"seasonNumber":15,"episodeNumber":19,"title":"Inherit the Earth","airDate":"2020-11-12","airDateUtc":"2020-11-13T01:00:00Z","overview":"Everything is on the line as the battle against God continues. A familiar face returns to join the fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":326,"unverifiedSceneNumbering":false,"id":19471},{"seriesId":48,"episodeFileId":18286,"seasonNumber":15,"episodeNumber":20,"title":"Carry On","airDate":"2020-11-19","airDateUtc":"2020-11-20T01:00:00Z","overview":"Baby, it\u2019s the final ride for saving people and hunting things.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":327,"unverifiedSceneNumbering":false,"id":19472},{"seriesId":48,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Supernatural: The Long Road Home","airDate":"2020-11-19","airDateUtc":"2020-11-20T01:00:00Z","overview":"Get ready for the finale with cast interviews from Jared Padalecki, Jensen Ackles, Misha Collins, and Alexander Calvert, with creator Eric Kripke, executive producers Robert Singer and Andrew Dabb, and special guest stars Jim Beaver, Samantha Smith, Ruth Connell, Kim Rhodes and Mark Sheppard.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19935}],"episodeFile":[{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E01.Lost and Found-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E01.Lost and Found-Bluray-1080p.mkv","size":3517408927,"dateAdded":"2019-12-24T16:38:37.284895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9702000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10676},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E01.Stranger in a Strange Land-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E01.Stranger in a Strange Land-Bluray-1080p.mkv","size":3517359147,"dateAdded":"2019-12-24T16:38:37.39632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10678},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E02.The Rising Son-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E02.The Rising Son-Bluray-1080p.mkv","size":3517029652,"dateAdded":"2019-12-24T16:38:38.299491Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9530000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10693},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E02.Gods and Monsters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E02.Gods and Monsters-Bluray-1080p.mkv","size":3516442135,"dateAdded":"2019-12-24T16:38:38.383367Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9811000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:25","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10694},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E03.The Scar-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E03.The Scar-Bluray-1080p.mkv","size":3518085480,"dateAdded":"2019-12-24T16:38:39.323052Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9557000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10707},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E03.Patience-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E03.Patience-Bluray-1080p.mkv","size":3515746931,"dateAdded":"2019-12-24T16:38:39.580514Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9574000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10711},{"seriesId":48,"seasonNumber":0,"relativePath":"Specials\/S00E03.2015 Comic Con Panel-WEBDL-1080p.mkv","path":"\/tv\/Supernatural\/Specials\/S00E03.2015 Comic Con Panel-WEBDL-1080p.mkv","size":1110057733,"dateAdded":"2019-12-24T16:38:39.772194Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":29.97,"resolution":"1436x1076","runTime":"28:45","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10714},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E04.The Big Empty-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E04.The Big Empty-Bluray-1080p.mkv","size":3518616073,"dateAdded":"2019-12-24T16:38:40.356803Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9513000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10723},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E04.Mint Condition-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E04.Mint Condition-Bluray-1080p.mkv","size":3516481930,"dateAdded":"2019-12-24T16:38:40.548521Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9667000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:57","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10726},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E05.Nightmare Logic-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E05.Nightmare Logic-Bluray-1080p.mkv","size":3517609406,"dateAdded":"2019-12-24T16:38:41.387678Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9588000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10739},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E05.Advanced Thanatology-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E05.Advanced Thanatology-Bluray-1080p.mkv","size":3517434052,"dateAdded":"2019-12-24T16:38:41.45043Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9764000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10740},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E06.Tombstone-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E06.Tombstone-Bluray-1080p.mkv","size":3516163153,"dateAdded":"2019-12-24T16:38:42.357244Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9788000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10754},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E06.Optimism-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E06.Optimism-Bluray-1080p.mkv","size":3516152609,"dateAdded":"2019-12-24T16:38:42.433855Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9658000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10755},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E07.War of the Worlds-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E07.War of the Worlds-Bluray-1080p.mkv","size":3516909924,"dateAdded":"2019-12-24T16:38:43.462311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9581000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10770},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E07.Unhuman Nature-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E07.Unhuman Nature-Bluray-1080p.mkv","size":3516209587,"dateAdded":"2019-12-24T16:38:43.527178Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9632000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10771},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E08.The Scorpion and the Frog-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E08.The Scorpion and the Frog-Bluray-1080p.mkv","size":3517290161,"dateAdded":"2019-12-24T16:38:44.392621Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9716000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10784},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E08.Byzantium-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E08.Byzantium-Bluray-1080p.mkv","size":3516078200,"dateAdded":"2019-12-24T16:38:44.586842Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9553000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10787},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E09.The Spear-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E09.The Spear-Bluray-1080p.mkv","size":3518577522,"dateAdded":"2019-12-24T16:38:45.309678Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9766000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10798},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E09.The Bad Place-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E09.The Bad Place-Bluray-1080p.mkv","size":3518454491,"dateAdded":"2019-12-24T16:38:45.376294Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9690000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10799},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E10.Nihilism-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E10.Nihilism-Bluray-1080p.mkv","size":3517686224,"dateAdded":"2019-12-24T16:38:46.229113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9527000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10812},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E10.Wayward Sisters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E10.Wayward Sisters-Bluray-1080p.mkv","size":3517677835,"dateAdded":"2019-12-24T16:38:46.283651Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9564000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10813},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E11.Damaged Goods-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E11.Damaged Goods-Bluray-1080p.mkv","size":3518016257,"dateAdded":"2019-12-24T16:38:47.345511Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9527000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10826},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E11.Breakdown-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E11.Breakdown-Bluray-1080p.mkv","size":3516461190,"dateAdded":"2019-12-24T16:38:47.475556Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10828},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E12.Various & Sundry Villains-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E12.Various & Sundry Villains-Bluray-1080p.mkv","size":3516703294,"dateAdded":"2019-12-24T16:38:48.326386Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9526000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10841},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E12.Prophet and Loss-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E12.Prophet and Loss-Bluray-1080p.mkv","size":3516187156,"dateAdded":"2019-12-24T16:38:48.392566Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9566000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10842},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E13.Lebanon-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E13.Lebanon-Bluray-1080p.mkv","size":3518577394,"dateAdded":"2019-12-24T16:38:49.433926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9575000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10854},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E13.Devil's Bargain-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E13.Devil's Bargain-Bluray-1080p.mkv","size":3517675448,"dateAdded":"2019-12-24T16:38:49.757264Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9798000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10857},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E14.Ouroboros-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E14.Ouroboros-Bluray-1080p.mkv","size":3517068847,"dateAdded":"2019-12-24T16:38:50.625188Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9566000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10870},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E14.Good Intentions-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E14.Good Intentions-Bluray-1080p.mkv","size":3516485187,"dateAdded":"2019-12-24T16:38:50.802335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9587000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10872},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E15.A Most Holy Man-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E15.A Most Holy Man-Bluray-1080p.mkv","size":3517846316,"dateAdded":"2019-12-24T16:38:51.455879Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9541000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10882},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E15.Peace of Mind-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E15.Peace of Mind-Bluray-1080p.mkv","size":3517554041,"dateAdded":"2019-12-24T16:38:51.52133Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9553000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10883},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E16.ScoobyNatural-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E16.ScoobyNatural-Bluray-1080p.mkv","size":3520159430,"dateAdded":"2019-12-24T16:38:52.372227Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9521000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10896},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E16.Don't Go in the Woods-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E16.Don't Go in the Woods-Bluray-1080p.mkv","size":3517760279,"dateAdded":"2019-12-24T16:38:52.502248Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9775000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10898},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E17.Game Night-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E17.Game Night-Bluray-1080p.mkv","size":3518551103,"dateAdded":"2019-12-24T16:38:53.295393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9592000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10910},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E17.The Thing-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E17.The Thing-Bluray-1080p.mkv","size":3516797802,"dateAdded":"2019-12-24T16:38:53.4261Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9515000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10912},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E18.Absence-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E18.Absence-Bluray-1080p.mkv","size":3518143379,"dateAdded":"2019-12-24T16:38:54.150119Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9579000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10923},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E18.Bring 'Em Back Alive-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E18.Bring 'Em Back Alive-Bluray-1080p.mkv","size":3516622558,"dateAdded":"2019-12-24T16:38:54.282108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9538000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10925},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E19.Jack in the Box-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E19.Jack in the Box-Bluray-1080p.mkv","size":3517671278,"dateAdded":"2019-12-24T16:38:55.162172Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9597000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10937},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E19.Funeralia-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E19.Funeralia-Bluray-1080p.mkv","size":3516873998,"dateAdded":"2019-12-24T16:38:55.305918Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9528000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10939},{"seriesId":48,"seasonNumber":14,"relativePath":"Season 14\/S14E20.Moriah-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 14\/S14E20.Moriah-Bluray-1080p.mkv","size":3517122888,"dateAdded":"2019-12-24T16:38:56.066995Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9698000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:50","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10950},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E20.Unfinished Business-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E20.Unfinished Business-Bluray-1080p.mkv","size":3515460952,"dateAdded":"2019-12-24T16:38:56.26796Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9566000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10953},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E21.Beat the Devil-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E21.Beat the Devil-Bluray-1080p.mkv","size":3517908063,"dateAdded":"2019-12-24T16:38:56.945049Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9537000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10963},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E22.Exodus-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E22.Exodus-Bluray-1080p.mkv","size":3517604734,"dateAdded":"2019-12-24T16:38:57.765166Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9697000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10975},{"seriesId":48,"seasonNumber":13,"relativePath":"Season 13\/S13E23.Let the Good Times Roll-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 13\/S13E23.Let the Good Times Roll-Bluray-1080p.mkv","size":3517278200,"dateAdded":"2019-12-24T16:38:58.580611Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9531000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10987},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Sympathy for the Devil-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E01.Sympathy for the Devil-Bluray-1080p.mkv","size":890171603,"dateAdded":"2020-10-24T01:54:09.797325Z","sceneName":"Supernatural.S05E01.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15917},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Good God, Y'All!-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E02.Good God, Y'All!-Bluray-1080p.mkv","size":758905919,"dateAdded":"2020-10-24T01:54:18.480018Z","sceneName":"Supernatural.S05E02.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15918},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Free to Be You and Me-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E03.Free to Be You and Me-Bluray-1080p.mkv","size":638522892,"dateAdded":"2020-10-24T01:54:24.910711Z","sceneName":"Supernatural.S05E03.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15919},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E04.The End-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E04.The End-Bluray-1080p.mkv","size":713665837,"dateAdded":"2020-10-24T01:54:30.223318Z","sceneName":"Supernatural.S05E04.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15920},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Fallen Idols-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E05.Fallen Idols-Bluray-1080p.mkv","size":616981539,"dateAdded":"2020-10-24T01:54:36.911224Z","sceneName":"Supernatural.S05E05.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"40:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15921},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E06.I Believe the Children Are Our Future-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E06.I Believe the Children Are Our Future-Bluray-1080p.mkv","size":539469331,"dateAdded":"2020-10-24T01:54:43.055484Z","sceneName":"Supernatural.S05E06.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15922},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E07.The Curious Case of Dean Winchester-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E07.The Curious Case of Dean Winchester-Bluray-1080p.mkv","size":392863312,"dateAdded":"2020-10-24T01:54:48.720971Z","sceneName":"Supernatural.S05E07.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15923},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Changing Channels-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E08.Changing Channels-Bluray-1080p.mkv","size":454313482,"dateAdded":"2020-10-24T01:54:54.030812Z","sceneName":"Supernatural.S05E08.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15924},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E09.The Real Ghostbusters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E09.The Real Ghostbusters-Bluray-1080p.mkv","size":512839316,"dateAdded":"2020-10-24T01:54:59.630214Z","sceneName":"Supernatural.S05E09.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"40:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15925},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Abandon All Hope-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E10.Abandon All Hope-Bluray-1080p.mkv","size":522809547,"dateAdded":"2020-10-24T01:55:05.23074Z","sceneName":"Supernatural.S05E10.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15926},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Sam, Interrupted-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E11.Sam, Interrupted-Bluray-1080p.mkv","size":440806958,"dateAdded":"2020-10-24T01:55:12.526777Z","sceneName":"Supernatural.S05E11.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15927},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Swap Meat-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E12.Swap Meat-Bluray-1080p.mkv","size":519112400,"dateAdded":"2020-10-24T01:55:18.286859Z","sceneName":"Supernatural.S05E12.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15928},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E13.The Song Remains the Same-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E13.The Song Remains the Same-Bluray-1080p.mkv","size":618769174,"dateAdded":"2020-10-24T01:55:24.881586Z","sceneName":"Supernatural.S05E13.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15929},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E14.My Bloody Valentine-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E14.My Bloody Valentine-Bluray-1080p.mkv","size":452080724,"dateAdded":"2020-10-24T01:55:31.608067Z","sceneName":"Supernatural.S05E14.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15930},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Dead Men Don't Wear Plaid-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E15.Dead Men Don't Wear Plaid-Bluray-1080p.mkv","size":554806990,"dateAdded":"2020-10-24T01:55:36.767046Z","sceneName":"Supernatural.S05E15.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15931},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Dark Side of the Moon-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E16.Dark Side of the Moon-Bluray-1080p.mkv","size":564269067,"dateAdded":"2020-10-24T01:55:43.375562Z","sceneName":"Supernatural.S05E16.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"40:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15932},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E17.99 Problems-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E17.99 Problems-Bluray-1080p.mkv","size":453290374,"dateAdded":"2020-10-24T01:55:50.95197Z","sceneName":"Supernatural.S05E17.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15933},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Point of No Return-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E18.Point of No Return-Bluray-1080p.mkv","size":603717536,"dateAdded":"2020-10-24T01:55:55.750457Z","sceneName":"Supernatural.S05E18.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15934},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Hammer of the Gods-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E19.Hammer of the Gods-Bluray-1080p.mkv","size":439816566,"dateAdded":"2020-10-24T01:56:02.055219Z","sceneName":"Supernatural.S05E19.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"40:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15935},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E20.The Devil You Know-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E20.The Devil You Know-Bluray-1080p.mkv","size":460620149,"dateAdded":"2020-10-24T01:56:07.942524Z","sceneName":"Supernatural.S05E20.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15936},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E21.Two Minutes To Midnight-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E21.Two Minutes To Midnight-Bluray-1080p.mkv","size":409686383,"dateAdded":"2020-10-24T01:56:13.926459Z","sceneName":"Supernatural.S05E21.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"41:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15937},{"seriesId":48,"seasonNumber":5,"relativePath":"Season 05\/S05E22.Swan Song-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 05\/S05E22.Swan Song-Bluray-1080p.mkv","size":514206696,"dateAdded":"2020-10-24T01:56:18.888208Z","sceneName":"Supernatural.S05E22.1080p.BluRay.AV1-PTNX","releaseGroup":"PTNX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"Opus","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"AV1","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15938},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E01.In My Time of Dying-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E01.In My Time of Dying-Bluray-1080p.mkv","size":1119093476,"dateAdded":"2020-11-21T07:03:35.183839Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428217,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2942461,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:10","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16110},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Everybody Loves a Clown-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E02.Everybody Loves a Clown-Bluray-1080p.mkv","size":1181669611,"dateAdded":"2020-11-21T07:05:20.289414Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423435,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3242979,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:56","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16111},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Bloodlust-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E03.Bloodlust-Bluray-1080p.mkv","size":1062180420,"dateAdded":"2020-11-21T07:07:06.596844Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":447868,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2764520,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:52","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16112},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Children Shouldn't Play With Dead Things-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E04.Children Shouldn't Play With Dead Things-Bluray-1080p.mkv","size":1015620549,"dateAdded":"2020-11-21T07:08:51.564843Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431623,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2680647,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16113},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Simon Said-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E05.Simon Said-Bluray-1080p.mkv","size":1196924417,"dateAdded":"2020-11-21T07:10:35.148623Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421371,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3452905,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:05","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16114},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E06.No Exit-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E06.No Exit-Bluray-1080p.mkv","size":1437160699,"dateAdded":"2020-11-21T07:12:22.353828Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422376,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4106685,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:33","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16115},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Usual Suspects-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E07.The Usual Suspects-Bluray-1080p.mkv","size":1277288767,"dateAdded":"2020-11-21T07:14:08.971792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436972,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3488874,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:14","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16116},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Crossroad Blues-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E08.Crossroad Blues-Bluray-1080p.mkv","size":1322840681,"dateAdded":"2020-11-21T07:15:54.098488Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":446151,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3677852,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:44","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16117},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Croatoan-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E09.Croatoan-Bluray-1080p.mkv","size":1310511749,"dateAdded":"2020-11-21T07:17:38.821439Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412542,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3726739,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:16","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16118},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Hunted-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E10.Hunted-Bluray-1080p.mkv","size":1305703801,"dateAdded":"2020-11-21T07:19:23.824482Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435453,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3564169,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16119},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Playthings-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E11.Playthings-Bluray-1080p.mkv","size":1058069050,"dateAdded":"2020-11-21T07:21:10.667196Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417049,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3055529,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:36","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16120},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Nightshifter-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E12.Nightshifter-Bluray-1080p.mkv","size":1137157688,"dateAdded":"2020-11-21T07:22:56.275686Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417155,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3146792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:25","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16121},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Houses of the Holy-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E13.Houses of the Holy-Bluray-1080p.mkv","size":986415105,"dateAdded":"2020-11-21T07:24:40.736739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436018,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2658525,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:12","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16122},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Born Under a Bad Sign-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E14.Born Under a Bad Sign-Bluray-1080p.mkv","size":998977621,"dateAdded":"2020-11-21T07:26:24.755276Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":454513,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2571964,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:44","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16123},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Tall Tales-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E15.Tall Tales-Bluray-1080p.mkv","size":840543507,"dateAdded":"2020-11-21T07:28:08.449104Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448724,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2293672,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:28","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16124},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Roadkill-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E16.Roadkill-Bluray-1080p.mkv","size":840675820,"dateAdded":"2020-11-21T07:29:52.623841Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":481409,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2259927,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:42","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16125},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Heart-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E17.Heart-Bluray-1080p.mkv","size":1184298721,"dateAdded":"2020-11-21T07:31:36.070489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436816,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3372193,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:35","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16126},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Hollywood Babylon-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E18.Hollywood Babylon-Bluray-1080p.mkv","size":1208919882,"dateAdded":"2020-11-21T07:33:20.338585Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448828,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3420970,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:27","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16127},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Folsom Prison Blues-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E19.Folsom Prison Blues-Bluray-1080p.mkv","size":1473180980,"dateAdded":"2020-11-21T07:35:05.555246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438631,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4283914,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:44","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16128},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E20.What Is and What Should Never Be-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E20.What Is and What Should Never Be-Bluray-1080p.mkv","size":1349506566,"dateAdded":"2020-11-21T07:36:52.800418Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443555,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3612962,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:35","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16129},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E21.All Hell Breaks Loose (1)-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E21.All Hell Breaks Loose (1)-Bluray-1080p.mkv","size":1430338786,"dateAdded":"2020-11-21T07:38:38.950004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439930,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4023666,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:08","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16130},{"seriesId":48,"seasonNumber":2,"relativePath":"Season 02\/S02E22.All Hell Breaks Loose (2)-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 02\/S02E22.All Hell Breaks Loose (2)-Bluray-1080p.mkv","size":1373465537,"dateAdded":"2020-11-21T07:40:24.212407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":458729,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3908237,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:06","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16131},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":1207697051,"dateAdded":"2020-11-21T10:42:08.983352Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":454619,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2879738,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:26","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16132},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Wendigo-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E02.Wendigo-Bluray-1080p.mkv","size":2052931832,"dateAdded":"2020-11-21T10:43:54.615718Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441731,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5829605,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16133},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Dead in the Water-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E03.Dead in the Water-Bluray-1080p.mkv","size":2603007433,"dateAdded":"2020-11-21T10:45:45.602873Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422496,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7500235,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16134},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Phantom Traveler-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E04.Phantom Traveler-Bluray-1080p.mkv","size":2094763356,"dateAdded":"2020-11-21T10:47:41.931823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427612,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6048762,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16135},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Bloody Mary-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E05.Bloody Mary-Bluray-1080p.mkv","size":1614523190,"dateAdded":"2020-11-21T10:49:32.856773Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420923,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4493185,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16136},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Skin-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E06.Skin-Bluray-1080p.mkv","size":1549469569,"dateAdded":"2020-11-21T10:51:20.670106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":446682,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4427811,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:54","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16137},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Hook Man-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E07.Hook Man-Bluray-1080p.mkv","size":1554270046,"dateAdded":"2020-11-21T10:53:09.685292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440730,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4608727,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:38","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16138},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Bugs-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E08.Bugs-Bluray-1080p.mkv","size":2199276547,"dateAdded":"2020-11-21T10:54:59.20405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432949,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6268893,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16139},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Home-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E09.Home-Bluray-1080p.mkv","size":1541092416,"dateAdded":"2020-11-21T10:56:55.630386Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428593,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4310269,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:56","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16140},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Asylum-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E10.Asylum-Bluray-1080p.mkv","size":1243329612,"dateAdded":"2020-11-21T10:58:44.384994Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416023,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3353302,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16141},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Scarecrow-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E11.Scarecrow-Bluray-1080p.mkv","size":1581437787,"dateAdded":"2020-11-21T11:00:30.556253Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437313,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4446595,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:43","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16142},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Faith-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E12.Faith-Bluray-1080p.mkv","size":1595893600,"dateAdded":"2020-11-21T11:02:22.982983Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423890,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4428964,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:21","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16143},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Route 666-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E13.Route 666-Bluray-1080p.mkv","size":1069885942,"dateAdded":"2020-11-21T11:04:12.13394Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423197,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3025767,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:38","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16144},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Nightmare-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E14.Nightmare-Bluray-1080p.mkv","size":1461926329,"dateAdded":"2020-11-21T11:05:57.701241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437005,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4036985,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16145},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Benders-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E15.The Benders-Bluray-1080p.mkv","size":1186346130,"dateAdded":"2020-11-21T11:07:49.033899Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432851,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3173914,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:20","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16146},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Shadow-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E16.Shadow-Bluray-1080p.mkv","size":1137578221,"dateAdded":"2020-11-21T11:09:35.346705Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432317,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3146305,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:47","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16147},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Hell House-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E17.Hell House-Bluray-1080p.mkv","size":1214558740,"dateAdded":"2020-11-21T11:11:20.965057Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439722,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3479957,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:41","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16148},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Something Wicked-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E18.Something Wicked-Bluray-1080p.mkv","size":1207122461,"dateAdded":"2020-11-21T11:13:06.988655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418764,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3359930,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:59","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16149},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Provenance-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E19.Provenance-Bluray-1080p.mkv","size":1399244843,"dateAdded":"2020-11-21T11:14:52.753684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418057,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3817269,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:27","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16150},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Dead Man's Blood-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E20.Dead Man's Blood-Bluray-1080p.mkv","size":776429285,"dateAdded":"2020-11-21T11:16:43.076644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434489,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1969585,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16151},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Salvation-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E21.Salvation-Bluray-1080p.mkv","size":1463547208,"dateAdded":"2020-11-21T11:18:27.966294Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441280,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4288098,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:52","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16152},{"seriesId":48,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Devil's Trap-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 01\/S01E22.Devil's Trap-Bluray-1080p.mkv","size":1409188023,"dateAdded":"2020-11-21T11:20:17.196163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424855,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3890199,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ Japanese \/ French \/ German \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16153},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E01.We Need To Talk About Kevin-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E01.We Need To Talk About Kevin-Bluray-1080p.mkv","size":1337950209,"dateAdded":"2020-11-21T11:26:39.536254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429910,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3749199,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16154},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E02.What's Up, Tiger Mommy-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E02.What's Up, Tiger Mommy-Bluray-1080p.mkv","size":1148344484,"dateAdded":"2020-11-21T11:28:28.70244Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433651,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3217192,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16155},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E03.Heartache-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E03.Heartache-Bluray-1080p.mkv","size":1003768828,"dateAdded":"2020-11-21T11:30:16.072792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405408,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2862667,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16156},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Bitten-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E04.Bitten-Bluray-1080p.mkv","size":1722960617,"dateAdded":"2020-11-21T11:32:02.438167Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":322916,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5132634,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16157},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E05.Blood Brother-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E05.Blood Brother-Bluray-1080p.mkv","size":1483984302,"dateAdded":"2020-11-21T11:33:49.893251Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407445,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4231289,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16158},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E06.Southern Comfort-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E06.Southern Comfort-Bluray-1080p.mkv","size":1313059470,"dateAdded":"2020-11-21T11:35:37.979503Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414937,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3709897,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16159},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E07.A Little Slice of Kevin-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E07.A Little Slice of Kevin-Bluray-1080p.mkv","size":1183245761,"dateAdded":"2020-11-21T11:37:24.392083Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424238,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3274118,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16160},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E08.Hunteri Heroici-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E08.Hunteri Heroici-Bluray-1080p.mkv","size":1718858168,"dateAdded":"2020-11-21T11:39:10.980667Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4921181,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16161},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Citizen Fang-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E09.Citizen Fang-Bluray-1080p.mkv","size":1027215693,"dateAdded":"2020-11-21T11:41:01.029114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416318,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2796429,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16162},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E10.Torn and Frayed-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E10.Torn and Frayed-Bluray-1080p.mkv","size":1078004978,"dateAdded":"2020-11-21T11:42:45.643727Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417373,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2948935,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16163},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E11.LARP and the Real Girl-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E11.LARP and the Real Girl-Bluray-1080p.mkv","size":1193324087,"dateAdded":"2020-11-21T11:44:30.029493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427708,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3295088,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16164},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E12.As Time Goes By-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E12.As Time Goes By-Bluray-1080p.mkv","size":1270429467,"dateAdded":"2020-11-21T11:46:15.662416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427909,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3312190,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16165},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E13.Everybody Hates Hitler-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E13.Everybody Hates Hitler-Bluray-1080p.mkv","size":1047166034,"dateAdded":"2020-11-21T11:48:01.622875Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422710,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2763947,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16166},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E14.Trial and Error-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E14.Trial and Error-Bluray-1080p.mkv","size":1034662085,"dateAdded":"2020-11-21T11:49:47.507313Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419744,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2803730,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16167},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E15.Man's Best Friend with Benefits-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E15.Man's Best Friend with Benefits-Bluray-1080p.mkv","size":1242160939,"dateAdded":"2020-11-21T11:51:31.475186Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421610,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3461322,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16168},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E16.Remember the Titans-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E16.Remember the Titans-Bluray-1080p.mkv","size":1020570652,"dateAdded":"2020-11-21T11:53:16.696599Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413194,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2773794,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16169},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E17.Goodbye, Stranger-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E17.Goodbye, Stranger-Bluray-1080p.mkv","size":1100261911,"dateAdded":"2020-11-21T11:55:01.910786Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408403,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3030289,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16170},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E18.Freaks and Geeks-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E18.Freaks and Geeks-Bluray-1080p.mkv","size":1172068023,"dateAdded":"2020-11-21T11:56:47.376023Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425103,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3288135,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16171},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E19.Taxi Driver-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E19.Taxi Driver-Bluray-1080p.mkv","size":1525482332,"dateAdded":"2020-11-21T11:58:32.137813Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439538,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4328858,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16172},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E20.Pac-Man Fever-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E20.Pac-Man Fever-Bluray-1080p.mkv","size":1157394540,"dateAdded":"2020-11-21T12:00:19.020087Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423275,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3196093,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16173},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E21.The Great Escapist-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E21.The Great Escapist-Bluray-1080p.mkv","size":1241241862,"dateAdded":"2020-11-21T12:02:03.806481Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424118,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3453856,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16174},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E22.Clip Show-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E22.Clip Show-Bluray-1080p.mkv","size":1554093789,"dateAdded":"2020-11-21T12:03:51.402381Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421476,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4449169,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16175},{"seriesId":48,"seasonNumber":8,"relativePath":"Season 08\/S08E23.Sacrifice-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 08\/S08E23.Sacrifice-Bluray-1080p.mkv","size":1337524663,"dateAdded":"2020-11-21T12:05:41.995178Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":445866,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3731257,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16176},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Magnificent Seven-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E01.The Magnificent Seven-Bluray-1080p.mkv","size":1202509256,"dateAdded":"2020-11-21T16:49:41.790571Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":488736,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3493203,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:55","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16178},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Kids Are Alright-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E02.The Kids Are Alright-Bluray-1080p.mkv","size":1242158201,"dateAdded":"2020-11-21T16:51:27.843261Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":492963,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3399896,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16179},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Bad Day at Black Rock-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E03.Bad Day at Black Rock-Bluray-1080p.mkv","size":1169215613,"dateAdded":"2020-11-21T16:53:14.586664Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":480967,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3416972,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:36","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16180},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Sin City-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E04.Sin City-Bluray-1080p.mkv","size":1272355032,"dateAdded":"2020-11-21T16:54:59.784341Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":474889,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3649223,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:43","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16181},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Bedtime Stories-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E05.Bedtime Stories-Bluray-1080p.mkv","size":1600521191,"dateAdded":"2020-11-21T16:56:46.877615Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":489058,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4780841,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:12","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16182},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Red Sky at Morning-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E06.Red Sky at Morning-Bluray-1080p.mkv","size":1249059117,"dateAdded":"2020-11-21T16:58:34.633054Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":479225,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3538179,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:04","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16183},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Fresh Blood-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E07.Fresh Blood-Bluray-1080p.mkv","size":992068543,"dateAdded":"2020-11-21T17:00:20.06848Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":483014,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2769266,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:16","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16184},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E08.A Very Supernatural Christmas-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E08.A Very Supernatural Christmas-Bluray-1080p.mkv","size":1205143699,"dateAdded":"2020-11-21T17:02:03.78633Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":479125,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3329517,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:48","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16185},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Malleus Maleficarum-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E09.Malleus Maleficarum-Bluray-1080p.mkv","size":743017049,"dateAdded":"2020-11-21T17:03:49.198657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":489589,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1957623,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:53","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16186},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Dream a Little Dream of Me-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E10.Dream a Little Dream of Me-Bluray-1080p.mkv","size":1163841705,"dateAdded":"2020-11-21T17:05:32.54753Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":481281,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3365214,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:56","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16187},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Mystery Spot-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E11.Mystery Spot-Bluray-1080p.mkv","size":1025675477,"dateAdded":"2020-11-21T17:07:17.904872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":477250,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2925090,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:43","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16188},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Jus in Bello-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E12.Jus in Bello-Bluray-1080p.mkv","size":1125973241,"dateAdded":"2020-11-21T17:09:02.288227Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":485410,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2997581,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:39","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16189},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Ghostfacers!-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E13.Ghostfacers!-Bluray-1080p.mkv","size":1341345266,"dateAdded":"2020-11-21T17:10:54.060233Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432834,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3802516,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:44","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16190},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Long-Distance Call-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E14.Long-Distance Call-Bluray-1080p.mkv","size":938270497,"dateAdded":"2020-11-21T17:12:40.29926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":468013,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2589420,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:24","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16191},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Time is on My Side-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E15.Time is on My Side-Bluray-1080p.mkv","size":862464891,"dateAdded":"2020-11-21T17:14:24.475588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":460815,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2192771,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:44","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16192},{"seriesId":48,"seasonNumber":3,"relativePath":"Season 03\/S03E16.No Rest For the Wicked-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 03\/S03E16.No Rest For the Wicked-Bluray-1080p.mkv","size":1428088193,"dateAdded":"2020-11-21T17:16:09.290824Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":457647,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4317481,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"39:35","scanType":"","subtitles":"English \/ Japanese \/ Spanish \/ Danish \/ Portuguese \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16193},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E01.Out of the Darkness, Into the Fire-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E01.Out of the Darkness, Into the Fire-Bluray-1080p.mkv","size":1467424595,"dateAdded":"2020-11-21T17:31:12.931254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440127,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4153493,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16194},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E02.Form and Void-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E02.Form and Void-Bluray-1080p.mkv","size":1475182825,"dateAdded":"2020-11-21T17:33:01.812196Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444459,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4173866,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16195},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E03.The Bad Seed-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E03.The Bad Seed-Bluray-1080p.mkv","size":1090718447,"dateAdded":"2020-11-21T17:34:51.175462Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436770,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3036571,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16196},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E04.Baby-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E04.Baby-Bluray-1080p.mkv","size":1632096865,"dateAdded":"2020-11-21T17:36:36.464116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":472806,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4554671,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16197},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E05.Thin Lizzie-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E05.Thin Lizzie-Bluray-1080p.mkv","size":1305783943,"dateAdded":"2020-11-21T17:38:25.672649Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435171,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3653049,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16198},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E06.Our Little World-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E06.Our Little World-Bluray-1080p.mkv","size":1325265658,"dateAdded":"2020-11-21T17:40:12.178412Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448524,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3704770,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16199},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E07.Plush-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E07.Plush-Bluray-1080p.mkv","size":1202414468,"dateAdded":"2020-11-21T17:41:57.15565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439195,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3408140,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16200},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E08.Just My Imagination-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E08.Just My Imagination-Bluray-1080p.mkv","size":1144562258,"dateAdded":"2020-11-21T17:43:42.449518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":442076,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3138291,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16201},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E09.O Brother Where Art Thou-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E09.O Brother Where Art Thou-Bluray-1080p.mkv","size":1229236136,"dateAdded":"2020-11-21T17:45:27.222769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":465750,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3372837,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16202},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E10.The Devil in the Details-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E10.The Devil in the Details-Bluray-1080p.mkv","size":1197025202,"dateAdded":"2020-11-21T17:47:13.63915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":473696,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3260735,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16203},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E11.Into the Mystic-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E11.Into the Mystic-Bluray-1080p.mkv","size":1216630722,"dateAdded":"2020-11-21T17:48:58.973369Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448134,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3349120,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16204},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E12.Don\u2019t You Forget about Me-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E12.Don\u2019t You Forget about Me-Bluray-1080p.mkv","size":1202517551,"dateAdded":"2020-11-21T17:50:44.945632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449150,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3326716,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16205},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E13.Love Hurts-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E13.Love Hurts-Bluray-1080p.mkv","size":1130211074,"dateAdded":"2020-11-21T17:52:30.839773Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413410,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3158220,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16206},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E14.The Vessel-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E14.The Vessel-Bluray-1080p.mkv","size":1312651209,"dateAdded":"2020-11-21T17:54:15.506079Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428646,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3672714,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16207},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E15.Beyond the Mat-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E15.Beyond the Mat-Bluray-1080p.mkv","size":1214947784,"dateAdded":"2020-11-21T17:56:01.87408Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449679,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3346981,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16208},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E16.Safe House-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E16.Safe House-Bluray-1080p.mkv","size":1170912658,"dateAdded":"2020-11-21T17:57:47.571279Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399519,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3271811,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16209},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E17.Red Meat-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E17.Red Meat-Bluray-1080p.mkv","size":1257479997,"dateAdded":"2020-11-21T17:59:33.965942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420493,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3613249,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16210},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E18.Hell's Angel-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E18.Hell's Angel-Bluray-1080p.mkv","size":1201798542,"dateAdded":"2020-11-21T18:01:19.190047Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":456269,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3303390,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16211},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E19.The Chitters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E19.The Chitters-Bluray-1080p.mkv","size":1390794537,"dateAdded":"2020-11-21T18:03:05.412265Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426493,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4010475,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16212},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E20.Don't Call Me Shurley-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E20.Don't Call Me Shurley-Bluray-1080p.mkv","size":1151977120,"dateAdded":"2020-11-21T18:04:54.816708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444943,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3070775,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16213},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E21.All In The Family-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E21.All In The Family-Bluray-1080p.mkv","size":1251220291,"dateAdded":"2020-11-21T18:06:40.35419Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":442908,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3512633,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16214},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E22.We Happy Few-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E22.We Happy Few-Bluray-1080p.mkv","size":1199284053,"dateAdded":"2020-11-21T18:08:27.113472Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440472,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3385043,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16215},{"seriesId":48,"seasonNumber":11,"relativePath":"Season 11\/S11E23.Alpha and Omega-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 11\/S11E23.Alpha and Omega-Bluray-1080p.mkv","size":1422488218,"dateAdded":"2020-11-21T18:10:12.636063Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443540,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4012395,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16216},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E01.Keep Calm and Carry On-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E01.Keep Calm and Carry On-Bluray-1080p.mkv","size":1361975956,"dateAdded":"2020-11-21T18:55:14.28833Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438475,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3860205,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16217},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E02.Mamma Mia-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E02.Mamma Mia-Bluray-1080p.mkv","size":1265733500,"dateAdded":"2020-11-21T18:57:03.930439Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":445840,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3526062,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16218},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E03.The Foundry-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E03.The Foundry-Bluray-1080p.mkv","size":1362221180,"dateAdded":"2020-11-21T18:58:49.388656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438280,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3826701,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16219},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E04.American Nightmare-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E04.American Nightmare-Bluray-1080p.mkv","size":1446700503,"dateAdded":"2020-11-21T19:00:36.139716Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":452087,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4070907,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16220},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E05.The One You've Been Waiting For-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E05.The One You've Been Waiting For-Bluray-1080p.mkv","size":1122604958,"dateAdded":"2020-11-21T19:02:25.429743Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":445321,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3145149,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16221},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E06.Celebrating The Life Of Asa Fox-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E06.Celebrating The Life Of Asa Fox-Bluray-1080p.mkv","size":1247682618,"dateAdded":"2020-11-21T19:04:14.168029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":457217,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3458459,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16222},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E07.Rock Never Dies-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E07.Rock Never Dies-Bluray-1080p.mkv","size":1243704465,"dateAdded":"2020-11-21T19:06:01.726137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429186,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3376061,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16223},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E08.LOTUS-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E08.LOTUS-Bluray-1080p.mkv","size":1128248001,"dateAdded":"2020-11-21T19:07:52.63971Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441767,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3117110,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16224},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E09.First Blood-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E09.First Blood-Bluray-1080p.mkv","size":1169786842,"dateAdded":"2020-11-21T19:09:39.159175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448387,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3219212,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16225},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E10.Lily Sunder Has Some Regrets-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E10.Lily Sunder Has Some Regrets-Bluray-1080p.mkv","size":1251213443,"dateAdded":"2020-11-21T19:11:26.650955Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434663,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3507821,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:09","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16226},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E11.Regarding Dean-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E11.Regarding Dean-Bluray-1080p.mkv","size":1384277863,"dateAdded":"2020-11-21T19:13:15.832852Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434261,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3903045,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16227},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E12.Stuck in the Middle (With You)-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E12.Stuck in the Middle (With You)-Bluray-1080p.mkv","size":1184136195,"dateAdded":"2020-11-21T19:15:04.821022Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":460708,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3267690,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16228},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E13.Family Feud-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E13.Family Feud-Bluray-1080p.mkv","size":1150994958,"dateAdded":"2020-11-21T19:16:52.585966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437389,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3082344,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16229},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E14.The Raid-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E14.The Raid-Bluray-1080p.mkv","size":1182028735,"dateAdded":"2020-11-21T19:18:45.207679Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":463566,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3305901,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:39","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16230},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E15.Somewhere Between Heaven and Hell-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E15.Somewhere Between Heaven and Hell-Bluray-1080p.mkv","size":1394629811,"dateAdded":"2020-11-21T19:20:31.891762Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449073,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3988528,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16231},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E16.Ladies Drink Free-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E16.Ladies Drink Free-Bluray-1080p.mkv","size":1466739676,"dateAdded":"2020-11-21T19:22:18.554451Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449743,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4139854,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16232},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E17.The British Invasion-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E17.The British Invasion-Bluray-1080p.mkv","size":1053237955,"dateAdded":"2020-11-21T19:24:11.554819Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428108,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2797285,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16233},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E18.The Memory Remains-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E18.The Memory Remains-Bluray-1080p.mkv","size":1134335984,"dateAdded":"2020-11-21T19:25:56.705233Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":459646,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3083941,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16234},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E19.The Future-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E19.The Future-Bluray-1080p.mkv","size":1109148057,"dateAdded":"2020-11-21T19:27:42.401051Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427332,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3068776,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16235},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E20.Twigs and Twine and Tasha Banes-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E20.Twigs and Twine and Tasha Banes-Bluray-1080p.mkv","size":1144781494,"dateAdded":"2020-11-21T19:29:27.18488Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":452608,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3142392,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16236},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E21.There's Something About Mary-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E21.There's Something About Mary-Bluray-1080p.mkv","size":1283400240,"dateAdded":"2020-11-21T19:31:13.176215Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440011,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3587114,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16237},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E22.Who We Are-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E22.Who We Are-Bluray-1080p.mkv","size":1303227785,"dateAdded":"2020-11-21T19:32:59.238687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":453111,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3627132,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16238},{"seriesId":48,"seasonNumber":12,"relativePath":"Season 12\/S12E23.All Along the Watchtower-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 12\/S12E23.All Along the Watchtower-Bluray-1080p.mkv","size":1196164739,"dateAdded":"2020-11-21T19:34:45.093888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":453724,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3306753,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16239},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E01.Black-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E01.Black-Bluray-1080p.mkv","size":1244235162,"dateAdded":"2020-11-22T04:43:53.706697Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424885,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3491403,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16240},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E02.Reichenbach-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E02.Reichenbach-Bluray-1080p.mkv","size":1308237570,"dateAdded":"2020-11-22T04:44:19.962604Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417293,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3677669,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16241},{"seriesId":48,"seasonNumber":0,"relativePath":"Specials\/S00E02.A Very Special Supernatural-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Specials\/S00E02.A Very Special Supernatural-Bluray-1080p.mkv","size":436011235,"dateAdded":"2020-11-22T04:44:28.750392Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150119,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1753950,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"29:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16242},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E03.Soul Survivor-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E03.Soul Survivor-Bluray-1080p.mkv","size":1199774318,"dateAdded":"2020-11-22T04:44:35.154364Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423760,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3335674,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16243},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E04.Paper Moon-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E04.Paper Moon-Bluray-1080p.mkv","size":1049063356,"dateAdded":"2020-11-22T04:44:46.958927Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":462412,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2897989,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16244},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E05.Fan Fiction-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E05.Fan Fiction-Bluray-1080p.mkv","size":1070569755,"dateAdded":"2020-11-22T04:44:59.432199Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415980,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2957778,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16246},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E06.Ask Jeeves-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E06.Ask Jeeves-Bluray-1080p.mkv","size":1263397039,"dateAdded":"2020-11-22T04:45:12.374681Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410842,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3548299,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16247},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E07.Girls, Girls, Girls-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E07.Girls, Girls, Girls-Bluray-1080p.mkv","size":1259341146,"dateAdded":"2020-11-22T04:45:28.48016Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441777,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3511991,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16248},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E08.Hibbing 911-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E08.Hibbing 911-Bluray-1080p.mkv","size":1248341657,"dateAdded":"2020-11-22T04:45:44.025028Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430634,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3483319,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16249},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E09.The Things We Left Behind-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E09.The Things We Left Behind-Bluray-1080p.mkv","size":1222049617,"dateAdded":"2020-11-22T04:46:02.036429Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429204,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3469750,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16250},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E10.The Hunter Games-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E10.The Hunter Games-Bluray-1080p.mkv","size":1384243994,"dateAdded":"2020-11-22T04:46:13.743633Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438846,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3808686,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16251},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E11.There's No Place Like Home-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E11.There's No Place Like Home-Bluray-1080p.mkv","size":1410434763,"dateAdded":"2020-11-22T04:46:28.558972Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":404807,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3774011,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16252},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E12.About a Boy-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E12.About a Boy-Bluray-1080p.mkv","size":1303750570,"dateAdded":"2020-11-22T04:46:44.135457Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432384,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3834523,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:36","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16253},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E13.Halt & Catch Fire-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E13.Halt & Catch Fire-Bluray-1080p.mkv","size":1278615529,"dateAdded":"2020-11-22T04:46:58.622126Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428335,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3655297,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16254},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E14.The Executioner's Song-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E14.The Executioner's Song-Bluray-1080p.mkv","size":1251371991,"dateAdded":"2020-11-22T04:47:12.399496Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435693,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3393352,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16255},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E15.The Things They Carried-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E15.The Things They Carried-Bluray-1080p.mkv","size":1336808197,"dateAdded":"2020-11-22T04:47:25.710467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430905,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3806478,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16256},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E16.Paint It Black-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E16.Paint It Black-Bluray-1080p.mkv","size":1063415242,"dateAdded":"2020-11-22T04:47:40.370644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430643,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2925269,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16257},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E17.Inside Man-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E17.Inside Man-Bluray-1080p.mkv","size":1354268158,"dateAdded":"2020-11-22T04:47:54.574646Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415968,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3871306,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16258},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E18.Book of the Damned-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E18.Book of the Damned-Bluray-1080p.mkv","size":1480698363,"dateAdded":"2020-11-22T04:48:05.816745Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424282,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4225342,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16259},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E19.The Werther Project-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E19.The Werther Project-Bluray-1080p.mkv","size":1679894830,"dateAdded":"2020-11-22T04:48:25.208926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":402986,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4858361,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16260},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E20.Angel Heart-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E20.Angel Heart-Bluray-1080p.mkv","size":1380370662,"dateAdded":"2020-11-22T04:48:40.366392Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424332,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3907794,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16261},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E21.Dark Dynasty-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E21.Dark Dynasty-Bluray-1080p.mkv","size":1271141486,"dateAdded":"2020-11-22T04:48:55.824657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424780,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3546079,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16262},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E22.The Prisoner-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E22.The Prisoner-Bluray-1080p.mkv","size":1437385426,"dateAdded":"2020-11-22T04:49:09.910063Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432793,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4063727,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16263},{"seriesId":48,"seasonNumber":10,"relativePath":"Season 10\/S10E23.Brother's Keeper-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 10\/S10E23.Brother's Keeper-Bluray-1080p.mkv","size":1569613462,"dateAdded":"2020-11-22T04:49:22.135414Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444482,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4456075,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16264},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E01.I Think I'm Gonna Like It Here-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E01.I Think I'm Gonna Like It Here-Bluray-1080p.mkv","size":1287331291,"dateAdded":"2020-11-22T05:52:24.429347Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431393,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3597303,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16265},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E02.Devil May Care-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E02.Devil May Care-Bluray-1080p.mkv","size":1231186296,"dateAdded":"2020-11-22T05:52:36.655597Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420207,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3520759,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16266},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E03.I'm No Angel-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E03.I'm No Angel-Bluray-1080p.mkv","size":1152749424,"dateAdded":"2020-11-22T05:52:47.631147Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418449,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3204733,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16267},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E04.Slumber Party-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E04.Slumber Party-Bluray-1080p.mkv","size":1051704746,"dateAdded":"2020-11-22T05:52:59.82265Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429847,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2838406,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16268},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E05.Dog Dean Afternoon-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E05.Dog Dean Afternoon-Bluray-1080p.mkv","size":1058239668,"dateAdded":"2020-11-22T05:53:10.798735Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410703,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2969058,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16269},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E06.Heaven Can't Wait-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E06.Heaven Can't Wait-Bluray-1080p.mkv","size":1120820723,"dateAdded":"2020-11-22T05:53:25.021938Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":411516,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3068191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16270},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E07.Bad Boys-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E07.Bad Boys-Bluray-1080p.mkv","size":1125565845,"dateAdded":"2020-11-22T05:53:37.045805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":409825,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3095916,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16271},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E08.Rock and a Hard Place-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E08.Rock and a Hard Place-Bluray-1080p.mkv","size":1166273109,"dateAdded":"2020-11-22T05:53:47.090964Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408611,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3222808,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16272},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E09.Holy Terror-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E09.Holy Terror-Bluray-1080p.mkv","size":1146884439,"dateAdded":"2020-11-22T05:54:02.290323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427628,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3148855,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16273},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E10.Road Trip-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E10.Road Trip-Bluray-1080p.mkv","size":1364382844,"dateAdded":"2020-11-22T05:54:10.894459Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415065,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3837858,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16274},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E11.First Born-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E11.First Born-Bluray-1080p.mkv","size":1449549348,"dateAdded":"2020-11-22T05:54:25.390859Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434197,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4086987,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16275},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E12.Sharp Teeth-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E12.Sharp Teeth-Bluray-1080p.mkv","size":1406758989,"dateAdded":"2020-11-22T05:54:39.439106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405618,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4092422,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16276},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E13.The Purge-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E13.The Purge-Bluray-1080p.mkv","size":1329157653,"dateAdded":"2020-11-22T05:54:54.259088Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3779012,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16277},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E14.Captives-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E14.Captives-Bluray-1080p.mkv","size":1188199376,"dateAdded":"2020-11-22T05:55:09.778241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":409450,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3371598,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16278},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E15.#THINMAN-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E15.#THINMAN-Bluray-1080p.mkv","size":1262978836,"dateAdded":"2020-11-22T05:55:21.716388Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407273,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3531503,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16279},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E16.Blade Runners-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E16.Blade Runners-Bluray-1080p.mkv","size":1346959101,"dateAdded":"2020-11-22T05:55:35.344489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422066,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3699730,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16280},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E17.Mother's Little Helper-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E17.Mother's Little Helper-Bluray-1080p.mkv","size":1151776758,"dateAdded":"2020-11-22T05:55:49.486911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424560,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2931187,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16281},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E18.Meta Fiction-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E18.Meta Fiction-Bluray-1080p.mkv","size":1142104258,"dateAdded":"2020-11-22T05:56:02.383328Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408174,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3148043,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16282},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E19.Alex Annie Alexis Ann-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E19.Alex Annie Alexis Ann-Bluray-1080p.mkv","size":1371151204,"dateAdded":"2020-11-22T05:56:13.806799Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422520,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3850627,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16283},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E20.Bloodlines-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E20.Bloodlines-Bluray-1080p.mkv","size":1323016305,"dateAdded":"2020-11-22T05:56:28.591114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422921,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3642834,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16284},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E21.King of the Damned-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E21.King of the Damned-Bluray-1080p.mkv","size":1463349667,"dateAdded":"2020-11-22T05:56:39.535406Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417045,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4238842,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16285},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E22.Stairway to Heaven-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E22.Stairway to Heaven-Bluray-1080p.mkv","size":1267156216,"dateAdded":"2020-11-22T05:56:55.217354Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399068,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3556547,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16286},{"seriesId":48,"seasonNumber":9,"relativePath":"Season 09\/S09E23.Do You Believe in Miracles-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 09\/S09E23.Do You Believe in Miracles-Bluray-1080p.mkv","size":1526947509,"dateAdded":"2020-11-22T05:57:10.200678Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433015,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4333831,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16287},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Exile on Main Street-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E01.Exile on Main Street-Bluray-1080p.mkv","size":1222116665,"dateAdded":"2020-11-22T06:27:26.844582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410868,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3411109,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16288},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Two and a Half Men-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E02.Two and a Half Men-Bluray-1080p.mkv","size":1299657607,"dateAdded":"2020-11-22T06:27:38.511776Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418482,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3737846,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16289},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E03.The Third Man-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E03.The Third Man-Bluray-1080p.mkv","size":1241885835,"dateAdded":"2020-11-22T06:27:53.518784Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407698,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3587553,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16290},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Weekend at Bobby's-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E04.Weekend at Bobby's-Bluray-1080p.mkv","size":1575587711,"dateAdded":"2020-11-22T06:28:09.678723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433446,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4728086,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16291},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Live Free or Twihard-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E05.Live Free or Twihard-Bluray-1080p.mkv","size":1331850082,"dateAdded":"2020-11-22T06:28:26.478986Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421398,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3789776,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16292},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E06.You Can't Handle the Truth-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E06.You Can't Handle the Truth-Bluray-1080p.mkv","size":1095026887,"dateAdded":"2020-11-22T06:28:36.535332Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413917,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3163667,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16293},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Family Matters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E07.Family Matters-Bluray-1080p.mkv","size":1061574249,"dateAdded":"2020-11-22T06:28:48.110799Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438215,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2973518,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16294},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E08.All Dogs Go to Heaven-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E08.All Dogs Go to Heaven-Bluray-1080p.mkv","size":1350752997,"dateAdded":"2020-11-22T06:28:58.926799Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427211,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3839689,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:03","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16295},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Clap Your Hands If You Believe-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E09.Clap Your Hands If You Believe-Bluray-1080p.mkv","size":1524141247,"dateAdded":"2020-11-22T06:29:15.374864Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410739,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4302126,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16296},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Caged Heat-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E10.Caged Heat-Bluray-1080p.mkv","size":1147279311,"dateAdded":"2020-11-22T06:29:30.639017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422942,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3188656,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:10","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16297},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Appointment in Samarra-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E11.Appointment in Samarra-Bluray-1080p.mkv","size":1303376319,"dateAdded":"2020-11-22T06:29:42.479697Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403027,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3737078,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16298},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Like A Virgin-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E12.Like A Virgin-Bluray-1080p.mkv","size":1563975399,"dateAdded":"2020-11-22T06:29:54.927624Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406892,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4531009,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16299},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E13.Unforgiven-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E13.Unforgiven-Bluray-1080p.mkv","size":1920604061,"dateAdded":"2020-11-22T06:30:11.187171Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416926,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5840193,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16300},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Mannequin 3 - The Reckoning-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E14.Mannequin 3 - The Reckoning-Bluray-1080p.mkv","size":1450053805,"dateAdded":"2020-11-22T06:30:29.010254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":404143,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4378288,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16301},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E15.The French Mistake-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E15.The French Mistake-Bluray-1080p.mkv","size":1317596637,"dateAdded":"2020-11-22T06:30:45.93833Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419079,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3630283,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16302},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E16.And Then There Were None-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E16.And Then There Were None-Bluray-1080p.mkv","size":1194628919,"dateAdded":"2020-11-22T06:31:00.814548Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":447779,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3281046,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16303},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E17.My Heart Will Go On-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E17.My Heart Will Go On-Bluray-1080p.mkv","size":1269697482,"dateAdded":"2020-11-22T06:31:15.247579Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3659670,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16304},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E18.Frontierland-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E18.Frontierland-Bluray-1080p.mkv","size":1164583639,"dateAdded":"2020-11-22T06:31:26.231534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3361488,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16305},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E19.Mommy Dearest-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E19.Mommy Dearest-Bluray-1080p.mkv","size":1150376478,"dateAdded":"2020-11-22T06:31:38.830614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405771,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3250020,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16306},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E20.The Man Who Would Be King-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E20.The Man Who Would Be King-Bluray-1080p.mkv","size":1163649378,"dateAdded":"2020-11-22T06:31:49.202724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422188,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3269470,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16307},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E21.Let It Bleed-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E21.Let It Bleed-Bluray-1080p.mkv","size":1181528653,"dateAdded":"2020-11-22T06:32:03.251476Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408135,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3284030,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16308},{"seriesId":48,"seasonNumber":6,"relativePath":"Season 06\/S06E22.The Man Who Knew Too Much-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 06\/S06E22.The Man Who Knew Too Much-Bluray-1080p.mkv","size":1360616502,"dateAdded":"2020-11-22T06:32:17.905512Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434963,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3820274,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16309},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Meet the New Boss-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E01.Meet the New Boss-Bluray-1080p.mkv","size":1240594955,"dateAdded":"2020-11-22T07:18:55.254911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16310},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E02.Hello, Cruel World-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E02.Hello, Cruel World-Bluray-1080p.mkv","size":1208913811,"dateAdded":"2020-11-22T07:19:04.760769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429323,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3378871,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16311},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E03.The Girl Next Door-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E03.The Girl Next Door-Bluray-1080p.mkv","size":1245495650,"dateAdded":"2020-11-22T07:19:15.726614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":400276,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3575893,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16312},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E04.Defending Your Life-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E04.Defending Your Life-Bluray-1080p.mkv","size":1027654997,"dateAdded":"2020-11-22T07:19:28.814572Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420004,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2799438,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16313},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Shut Up, Dr. Phil-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E05.Shut Up, Dr. Phil-Bluray-1080p.mkv","size":1191063202,"dateAdded":"2020-11-22T07:19:39.599097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3423524,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16314},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E06.Slash Fiction-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E06.Slash Fiction-Bluray-1080p.mkv","size":1136970625,"dateAdded":"2020-11-22T07:19:52.047191Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412106,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3078329,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16315},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E07.The Mentalists-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E07.The Mentalists-Bluray-1080p.mkv","size":1205175558,"dateAdded":"2020-11-22T07:20:02.98647Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429748,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3348470,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16316},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Season Seven, Time for a Wedding!-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E08.Season Seven, Time for a Wedding!-Bluray-1080p.mkv","size":1208929941,"dateAdded":"2020-11-22T07:20:14.923266Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":404119,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3378584,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16317},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E09.How to Win Friends and Influence Monsters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E09.How to Win Friends and Influence Monsters-Bluray-1080p.mkv","size":1077583263,"dateAdded":"2020-11-22T07:20:26.284809Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":400829,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3146003,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16318},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Death's Door-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E10.Death's Door-Bluray-1080p.mkv","size":1338325574,"dateAdded":"2020-11-22T07:20:39.399999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413010,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3786335,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16319},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Adventures in Babysitting-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E11.Adventures in Babysitting-Bluray-1080p.mkv","size":1124883716,"dateAdded":"2020-11-22T07:20:52.617295Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":395197,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3164996,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16320},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Time After Time-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E12.Time After Time-Bluray-1080p.mkv","size":1048865371,"dateAdded":"2020-11-22T07:21:03.24242Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436308,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2866172,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16321},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E13.The Slice Girls-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E13.The Slice Girls-Bluray-1080p.mkv","size":1086559495,"dateAdded":"2020-11-22T07:21:12.646341Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414330,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3077813,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16322},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E14.Plucky Pennywhistle's Magical Menagerie-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E14.Plucky Pennywhistle's Magical Menagerie-Bluray-1080p.mkv","size":1275805077,"dateAdded":"2020-11-22T07:21:25.640449Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436944,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3659404,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:21","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16323},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E15.Repo Man-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E15.Repo Man-Bluray-1080p.mkv","size":1131887434,"dateAdded":"2020-11-22T07:21:36.826155Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418818,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3130304,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16324},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E16.Out With the Old-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E16.Out With the Old-Bluray-1080p.mkv","size":1154232255,"dateAdded":"2020-11-22T07:21:49.299403Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":442830,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3190089,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16325},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E17.The Born-Again Identity-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E17.The Born-Again Identity-Bluray-1080p.mkv","size":1143422446,"dateAdded":"2020-11-22T07:22:00.782872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426632,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3160787,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16326},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E18.Party On, Garth-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E18.Party On, Garth-Bluray-1080p.mkv","size":1148324774,"dateAdded":"2020-11-22T07:22:12.815003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425849,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3170326,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16327},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E19.Of Grave Importance-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E19.Of Grave Importance-Bluray-1080p.mkv","size":1113133684,"dateAdded":"2020-11-22T07:22:26.127788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422357,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3169157,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16328},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E20.The Girl with the Dungeons and Dragons Tattoo-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E20.The Girl with the Dungeons and Dragons Tattoo-Bluray-1080p.mkv","size":1323930978,"dateAdded":"2020-11-22T07:22:39.898714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433366,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3752652,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16329},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E21.Reading is Fundamental-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E21.Reading is Fundamental-Bluray-1080p.mkv","size":1133389246,"dateAdded":"2020-11-22T07:22:50.094902Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422649,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3185179,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:39","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16330},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E22.There Will Be Blood-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E22.There Will Be Blood-Bluray-1080p.mkv","size":1175670053,"dateAdded":"2020-11-22T07:23:02.287042Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423744,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3249356,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16331},{"seriesId":48,"seasonNumber":7,"relativePath":"Season 07\/S07E23.Survival of the Fittest-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 07\/S07E23.Survival of the Fittest-Bluray-1080p.mkv","size":1063793948,"dateAdded":"2020-11-22T07:23:12.591493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3174313,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16332},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Lazarus Rising-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E01.Lazarus Rising-Bluray-1080p.mkv","size":2159378909,"dateAdded":"2020-11-22T10:02:29.943512Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":458940,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6270111,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16333},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Are You There, God! It's Me, Dean Winchester-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E02.Are You There, God! It's Me, Dean Winchester-Bluray-1080p.mkv","size":1572024158,"dateAdded":"2020-11-22T10:02:44.047689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":464154,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4605708,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:13","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16334},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E03.In the Beginning-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E03.In the Beginning-Bluray-1080p.mkv","size":2328506596,"dateAdded":"2020-11-22T10:02:57.582901Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":473188,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6696382,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:44","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16335},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Metamorphosis-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E04.Metamorphosis-Bluray-1080p.mkv","size":1454634523,"dateAdded":"2020-11-22T10:03:17.711056Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":452546,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4213489,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16336},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Monster Movie-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E05.Monster Movie-Bluray-1080p.mkv","size":1684766935,"dateAdded":"2020-11-22T10:03:32.687688Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":463240,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4826743,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:21","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16337},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Yellow Fever-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E06.Yellow Fever-Bluray-1080p.mkv","size":1619282902,"dateAdded":"2020-11-22T10:03:48.404384Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":467554,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4577013,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:40","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16338},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E07.It's the Great Pumpkin, Sam Winchester-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E07.It's the Great Pumpkin, Sam Winchester-Bluray-1080p.mkv","size":1680947109,"dateAdded":"2020-11-22T10:04:03.05569Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":468481,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4896828,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:39","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16339},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Wishful Thinking-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E08.Wishful Thinking-Bluray-1080p.mkv","size":1530345582,"dateAdded":"2020-11-22T10:04:18.223682Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":467359,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4541302,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:36","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16340},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E09.I Know What You Did Last Summer-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E09.I Know What You Did Last Summer-Bluray-1080p.mkv","size":1461802549,"dateAdded":"2020-11-22T10:04:29.262761Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":473001,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4103004,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16341},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Heaven and Hell-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E10.Heaven and Hell-Bluray-1080p.mkv","size":1335581530,"dateAdded":"2020-11-22T10:04:43.566645Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470879,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3687077,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:40","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16342},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Family Remains-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E11.Family Remains-Bluray-1080p.mkv","size":1406970849,"dateAdded":"2020-11-22T10:04:55.727607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":467949,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3932734,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16343},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Criss Angel Is a Douchebag-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E12.Criss Angel Is a Douchebag-Bluray-1080p.mkv","size":1470867812,"dateAdded":"2020-11-22T10:05:08.142776Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470915,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4105044,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16344},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E13.After School Special-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E13.After School Special-Bluray-1080p.mkv","size":1454369641,"dateAdded":"2020-11-22T10:05:22.516505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":475317,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4293593,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:32","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16345},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Sex and Violence-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E14.Sex and Violence-Bluray-1080p.mkv","size":1425130808,"dateAdded":"2020-11-22T10:05:35.792164Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":473799,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3985504,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16346},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Death Takes a Holiday-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E15.Death Takes a Holiday-Bluray-1080p.mkv","size":1586401232,"dateAdded":"2020-11-22T10:05:49.746402Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":469485,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4493871,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16347},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E16.On the Head of a Pin-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E16.On the Head of a Pin-Bluray-1080p.mkv","size":1577062315,"dateAdded":"2020-11-22T10:06:01.262608Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":468025,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4441307,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16348},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E17.It's a Terrible Life-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E17.It's a Terrible Life-Bluray-1080p.mkv","size":1541285244,"dateAdded":"2020-11-22T10:06:16.117304Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":467664,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4376486,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:17","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16349},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E18.The Monster at the End of this Book-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E18.The Monster at the End of this Book-Bluray-1080p.mkv","size":1288378780,"dateAdded":"2020-11-22T10:06:29.23146Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":461872,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3547808,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:39","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16350},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Jump the Shark-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E19.Jump the Shark-Bluray-1080p.mkv","size":1513619056,"dateAdded":"2020-11-22T10:06:44.083752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":469450,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4304306,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:09","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16351},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E20.The Rapture-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E20.The Rapture-Bluray-1080p.mkv","size":1347144535,"dateAdded":"2020-11-22T10:06:56.782773Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":468856,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4175276,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"38:33","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16352},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E21.When the Levee Breaks-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E21.When the Levee Breaks-Bluray-1080p.mkv","size":1638521969,"dateAdded":"2020-11-22T10:07:10.456369Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":467467,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4558473,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:39","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16353},{"seriesId":48,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Lucifer Rising-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 04\/S04E22.Lucifer Rising-Bluray-1080p.mkv","size":1577290611,"dateAdded":"2020-11-22T10:07:25.523961Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":461809,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4366637,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16354},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E01.Back and to the Future-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E01.Back and to the Future-Bluray-1080p.mkv","size":3491867431,"dateAdded":"2021-05-29T17:51:53.771618Z","sceneName":"Supernatural.S15E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2262623,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8939867,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:23","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18267},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E02.Raising Hell-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E02.Raising Hell-Bluray-1080p.mkv","size":3605903624,"dateAdded":"2021-05-29T17:54:04.659536Z","sceneName":"Supernatural.S15E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2246551,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9014183,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18268},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E03.The Rupture-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E03.The Rupture-Bluray-1080p.mkv","size":3595071337,"dateAdded":"2021-05-29T17:56:10.701802Z","sceneName":"Supernatural.S15E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2283219,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9242383,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:24","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18269},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E04.Atomic Monsters-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E04.Atomic Monsters-Bluray-1080p.mkv","size":3472410828,"dateAdded":"2021-05-29T17:58:19.706091Z","sceneName":"Supernatural.S15E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2239512,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8626287,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:22","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18270},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E05.Proverbs 17-3-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E05.Proverbs 17-3-Bluray-1080p.mkv","size":3709973916,"dateAdded":"2021-05-29T18:00:38.099294Z","sceneName":"Supernatural.S15E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2245019,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9360876,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:26","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18271},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E06.Golden Time-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E06.Golden Time-Bluray-1080p.mkv","size":3624424633,"dateAdded":"2021-05-29T18:02:53.578619Z","sceneName":"Supernatural.S15E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2244407,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9088499,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18272},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E07.Last Call-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E07.Last Call-Bluray-1080p.mkv","size":3606045199,"dateAdded":"2021-05-29T18:05:10.461374Z","sceneName":"Supernatural.S15E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2245970,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9131008,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:03","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18273},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E08.Our Father, Who Aren't in Heaven-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E08.Our Father, Who Aren't in Heaven-Bluray-1080p.mkv","size":3808642093,"dateAdded":"2021-05-29T18:07:26.702383Z","sceneName":"Supernatural.S15E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2237481,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9755806,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:08","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18274},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E09.The Trap-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E09.The Trap-Bluray-1080p.mkv","size":3537116019,"dateAdded":"2021-05-29T18:09:38.95593Z","sceneName":"Supernatural.S15E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2219817,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8832664,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18275},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E10.The Heroes' Journey-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E10.The Heroes' Journey-Bluray-1080p.mkv","size":3704672929,"dateAdded":"2021-05-29T18:11:41.506384Z","sceneName":"Supernatural.S15E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2258942,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9358236,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18276},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E11.The Gamblers-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E11.The Gamblers-Bluray-1080p.mkv","size":3527888307,"dateAdded":"2021-05-29T18:13:51.588323Z","sceneName":"Supernatural.S15E11.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2241692,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8791711,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:24","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18277},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E12.Galaxy Brain-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E12.Galaxy Brain-Bluray-1080p.mkv","size":3505755595,"dateAdded":"2021-05-29T18:15:54.289702Z","sceneName":"Supernatural.S15E12.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2280402,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8672957,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18278},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E13.Destiny's Child-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E13.Destiny's Child-Bluray-1080p.mkv","size":3596874156,"dateAdded":"2021-05-29T18:18:07.849509Z","sceneName":"Supernatural.S15E13.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2272893,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8980697,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:21","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18279},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E14.Last Holiday-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E14.Last Holiday-Bluray-1080p.mkv","size":3754054519,"dateAdded":"2021-05-29T18:20:26.199449Z","sceneName":"Supernatural.S15E14.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2212116,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9523573,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:25","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18280},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E15.Gimme Shelter-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E15.Gimme Shelter-Bluray-1080p.mkv","size":3783866618,"dateAdded":"2021-05-29T18:22:45.681517Z","sceneName":"Supernatural.S15E15.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2231511,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9742881,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:54","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18281},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E16.Drag Me Away (From You)-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E16.Drag Me Away (From You)-Bluray-1080p.mkv","size":3650626125,"dateAdded":"2021-05-29T18:24:54.129296Z","sceneName":"Supernatural.S15E16.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2241354,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9259738,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:08","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18282},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E17.Unity-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E17.Unity-Bluray-1080p.mkv","size":3651827892,"dateAdded":"2021-05-29T18:26:58.911898Z","sceneName":"Supernatural.S15E17.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2233909,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9211546,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18283},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E18.Despair-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E18.Despair-Bluray-1080p.mkv","size":3571911818,"dateAdded":"2021-05-29T18:29:58.241614Z","sceneName":"Supernatural.S15E18.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2240118,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9214098,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:24","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18284},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E19.Inherit the Earth-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E19.Inherit the Earth-Bluray-1080p.mkv","size":3613844324,"dateAdded":"2021-05-29T18:32:55.50446Z","sceneName":"Supernatural.S15E19.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2256776,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9079462,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18285},{"seriesId":48,"seasonNumber":15,"relativePath":"Season 15\/S15E20.Carry On-Bluray-1080p.mkv","path":"\/tv\/Supernatural\/Season 15\/S15E20.Carry On-Bluray-1080p.mkv","size":3794406652,"dateAdded":"2021-05-29T18:35:50.674079Z","sceneName":"Supernatural.S15E20.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2250791,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9671835,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"Progressive","subtitles":"English \/ French \/ Japanese \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18286}],"queue":[]},"82":{"series":{"title":"Ghost in the Shell: Arise - Alternative Architecture","alternateTitles":[],"sortTitle":"ghost in shell arise alternative architecture","status":"ended","ended":true,"overview":"The Ghost in the Shell: Arise OVA sequence has been rebuilt into eight TV-length episodes and extended with two new broadcast exclusive episodes to create Ghost in the Shell: Arise \u00ad Alternative Architecture! In this highly anticipated prequel set in the year after the fourth World War, cyborg and hacker Motoko Kusanagi finds herself wrapped up in the investigation of a devastating bombing. But she\u00b9s not the only one looking for answers\u2039as she delves deeper into the mystery of who is behind the attack, a specialized team unlike any before begins to take shape.","previousAiring":"2015-06-07T13:30:00Z","network":"Animax","airTime":"22:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/94\/banner.jpg?lastWrite=636750448797900820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/293491-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/94\/poster.jpg?lastWrite=637103832735273100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/293491-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/94\/fanart.jpg?lastWrite=636750448785540930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/293491-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":11,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-06-07T13:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11737745902,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":293491,"tvRageId":48520,"tvMazeId":8247,"firstAired":"2015-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"ghostinshellarisealternativearchitecture","imdbId":"tt4508686","titleSlug":"ghost-in-the-shell-arise---alternative-architecture","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Anime","Science Fiction"],"tags":[],"added":"2018-10-13T16:19:44.971844Z","ratings":{"votes":251,"value":9.1},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":21,"sizeOnDisk":11737745902,"percentOfEpisodes":100.0},"id":94},"episodes":[{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Another Mission","airDate":"2013-06-04","airDateUtc":"2013-06-04T13:30:00Z","overview":"A promo video for the Microsoft Surface product family set in the universe of Ghost in the Shell Arise","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6901},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Ghost in the Shell: Arise - Border:1 Ghost Pain","airDate":"2013-06-22","airDateUtc":"2013-06-22T13:30:00Z","overview":"During the investigation, Public Security Section's Daisuke Aramaki encounters Motoko Kusanagi, the cyborg wizard-level hacker assigned to the military's 501st Secret Unit. Batou, a man with the \"eye that does not sleep,\" suspects that Kusanagi is the one behind the bombing. The Niihama Prefectural Police detective Togusa is pursuing his own dual cases of the shooting death and a prostitute's murder. Motoko herself is being watched by the 501st Secret Unit's head Kurutsu and cyborg agents.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6892},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Logicoma Beat","airDate":"2013-07-26","airDateUtc":"2013-07-26T13:30:00Z","overview":"Logicomas explaining some of their powers, sort of!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6897},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Ghost in the Shell: Arise - Border:2 Ghost Whispers","airDate":"2013-11-30","airDateUtc":"2013-11-30T13:30:00Z","overview":"Freed of her responsibilities with the 501 Organization, Motoko Kusanagi must now learn how to take orders from Aramaki. Someone hacks the Logicomas, and Batou enlists the help of former army intelligence officer Ishikawa and former air artillery expert Borma. Kusanagi also seeks to enlist ace sniper Saito and undercover cop Paz into the new Public Security Section 9. The two groups rival each other in a case involving a man who receives false memories of a refugee transport operation.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6893},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Logicoma Court","airDate":"2013-12-25","airDateUtc":"2013-12-25T13:30:00Z","overview":"A Logicoma being tried for unspecified charges.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6898},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Ghost in the Shell: Arise - Border:3 Ghost Tears","airDate":"2014-06-28","airDateUtc":"2014-06-28T13:30:00Z","overview":"Motoko and Batou work to try to stop a terrorist organization whose symbol is the Scylla. Meanwhile, Togusa investigates a murder of a man who possessed a prosthetic leg manufactured by the Mermaid's Leg corporation.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6894},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Logicoma Heart","airDate":"2014-07-25","airDateUtc":"2014-07-25T13:30:00Z","overview":"A Logicoma falls in love.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6899},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Ghost in the Shell: Arise - Border:4 Ghost Stands Alone","airDate":"2014-09-06","airDateUtc":"2014-09-06T13:30:00Z","overview":"Motoko and Public Security Section 9 must track down a terrorist known as \u201cFire Starter\u201d, who unleashes an infection that affects cyberbrains.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6895},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Logicoma Root","airDate":"2014-09-24","airDateUtc":"2014-09-24T13:30:00Z","overview":"The Logicomas create their own Q-Team and hunt the cyborg Emma, with interesting results.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6900},{"seriesId":94,"episodeFileId":4442,"seasonNumber":1,"episodeNumber":1,"title":"Ghost Stands Alone (1)","airDate":"2015-04-05","airDateUtc":"2015-04-05T13:30:00Z","overview":"When terrorists hijack a peaceful protest, Motoko Kusanagi sees her chance to prove her new squad's worth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6881},{"seriesId":94,"episodeFileId":4443,"seasonNumber":1,"episodeNumber":2,"title":"Ghost Stands Alone (2)","airDate":"2015-04-12","airDateUtc":"2015-04-12T13:30:00Z","overview":"A rare disease puts two citizens at the center of a struggle for military and economic power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6882},{"seriesId":94,"episodeFileId":4444,"seasonNumber":1,"episodeNumber":3,"title":"Ghost Pain (1)","airDate":"2015-04-19","airDateUtc":"2015-04-19T13:30:00Z","overview":"Motoko returns from a mission abroad to discover that her commanding officer has been murdered--and no one but Aramaki seems interested in doing anything about it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6883},{"seriesId":94,"episodeFileId":4445,"seasonNumber":1,"episodeNumber":4,"title":"Ghost Pain (2)","airDate":"2015-04-26","airDateUtc":"2015-04-26T13:30:00Z","overview":"The further Motoko investigates her CO's death, the less sense it makes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6884},{"seriesId":94,"episodeFileId":4446,"seasonNumber":1,"episodeNumber":5,"title":"Ghost Whispers (1)","airDate":"2015-05-03","airDateUtc":"2015-05-03T13:30:00Z","overview":"After a war hero is convicted of war crimes, he and his former unit hold the entire city hostage. Their demand: access to the state secrets in the Pandora database.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6885},{"seriesId":94,"episodeFileId":4447,"seasonNumber":1,"episodeNumber":6,"title":"Ghost Whispers (2)","airDate":"2015-05-10","airDateUtc":"2015-05-10T13:30:00Z","overview":"Time is running out to stop Pandora's box from opening.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6886},{"seriesId":94,"episodeFileId":4448,"seasonNumber":1,"episodeNumber":7,"title":"Ghost Tears (1)","airDate":"2015-05-17","airDateUtc":"2015-05-17T13:30:00Z","overview":"Motoko's love life is going better than it ever has, and she's even managed to take an unprecedented 5-hour vacation. Naturally, that's when buildings start blowing up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6887},{"seriesId":94,"episodeFileId":4449,"seasonNumber":1,"episodeNumber":8,"title":"Ghost Tears (2)","airDate":"2015-05-24","airDateUtc":"2015-05-24T13:30:00Z","overview":"The terrorist attacks on Newport City continue, and the shell squad isn't making much progress against them. Can Motoko accept help from a man made out of plain old flesh and blood?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6888},{"seriesId":94,"episodeFileId":4450,"seasonNumber":1,"episodeNumber":9,"title":"Pyrophoric Cult (1)","airDate":"2015-05-31","airDateUtc":"2015-05-31T13:30:00Z","overview":"Motoko and her squad are finally getting closer to Fire-Starter's broker, but things get tense when they're instructed to take a backseat role on a sting op.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6889},{"seriesId":94,"episodeFileId":4451,"seasonNumber":1,"episodeNumber":10,"title":"Pyrophoric Cult (2)","airDate":"2015-06-07","airDateUtc":"2015-06-07T13:30:00Z","overview":"Motoko and the gang have caught their man--or have they?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6890},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Ghost in the Shell: The New Movie","airDate":"2015-06-20","airDateUtc":"2015-06-20T13:30:00Z","overview":"Set in a futuristic Japan after the end of a brutal world war, science has advanced by leaps and bounds giving humanity the choice to prolong life and reduce suffering with the use of sophisticated cybernetics. With all of humanity linked into one system of minds and personalities known as ghosts, the biggest threat to civilization is the cyber terrorists capable of hijacking people's bodies and memories. When a ghost-infecting virus known as Fire-Starter begins spreading through the system resulting in the assassination of the Japanese Prime Minister, Major Motoko Kusanagi and her elite team of special operatives are called in to track down its source. As they delve deeper and deeper into their investigation, they uncover traces of government corruption and a shadowy broker that bears an all-too-familiar face. The film is a continuation to the plot of the Pyrophoric Cult episode of Arise, and ties up loose ends from that arc.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17122},{"seriesId":94,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Ghost in the Shell: Arise - Border:5 Pyrophoric Cult","airDate":"2015-08-26","airDateUtc":"2015-08-26T13:30:00Z","overview":"Motoko and her squad are finally getting closer to Fire-Starter's broker, but things get tense when they're instructed to take a backseat role on a sting op. Part five of the OVA series, containing the materials developed for Alternative Architecture's final two episodes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6896}],"episodeFile":[{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Ghost Stands Alone (1)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E01.Ghost Stands Alone (1)-HDTV-1080p.mkv","size":1152885978,"dateAdded":"2018-10-15T07:31:42.893607Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6249666,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:05","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4442},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Ghost Stands Alone (2)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E02.Ghost Stands Alone (2)-HDTV-1080p.mkv","size":1212539481,"dateAdded":"2018-10-15T07:36:31.850358Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6579590,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:05","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4443},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Ghost Pain (1)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E03.Ghost Pain (1)-HDTV-1080p.mkv","size":1136848157,"dateAdded":"2018-10-15T07:42:15.731825Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6160395,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4444},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Ghost Pain (2)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E04.Ghost Pain (2)-HDTV-1080p.mkv","size":1110371615,"dateAdded":"2018-10-15T07:48:38.634304Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6014597,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4445},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Ghost Whispers (1)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E05.Ghost Whispers (1)-HDTV-1080p.mkv","size":1227043942,"dateAdded":"2018-10-15T07:52:43.071902Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6660070,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4446},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Ghost Whispers (2)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E06.Ghost Whispers (2)-HDTV-1080p.mkv","size":1275258337,"dateAdded":"2018-10-15T07:57:15.502588Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6927094,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4447},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Ghost Tears (1)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E07.Ghost Tears (1)-HDTV-1080p.mkv","size":1060027298,"dateAdded":"2018-10-15T08:01:18.127356Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5735442,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4448},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Ghost Tears (2)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E08.Ghost Tears (2)-HDTV-1080p.mkv","size":1060051881,"dateAdded":"2018-10-15T08:04:45.886115Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5735754,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4449},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Pyrophoric Cult (1)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E09.Pyrophoric Cult (1)-HDTV-1080p.mkv","size":1307068341,"dateAdded":"2018-10-15T08:08:56.300465Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7102908,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:07","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4450},{"seriesId":94,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Pyrophoric Cult (2)-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell- Arise - Alternative Architecture\/Season 01\/S01E10.Pyrophoric Cult (2)-HDTV-1080p.mkv","size":1195650872,"dateAdded":"2018-10-15T08:13:44.540609Z","sceneName":"[Pray for nZk] Ghost in the Shell - Arise - Alternative Architecture (01-10) [1080p]","releaseGroup":"Pray for nZk","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6486311,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:05","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4451}],"queue":[]},"83":{"series":{"title":"Texhnolyze","alternateTitles":[],"sortTitle":"texhnolyze","status":"ended","ended":true,"overview":"In an experimental city of despair and carnage, ORGAN will do anything necessary to gain power and wealth. Unfortunately for one underground boxer who was mutilated, a rogue doctor has given him what ORGAN specializes in and he despises: Texhnolyze body parts. Will these cybernetic appendages help exact his revenge upon the one who made him this way?","previousAiring":"2003-09-24T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/90\/banner.jpg?lastWrite=636750448265705760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/27070-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/90\/poster.jpg?lastWrite=637139522345783100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/74493-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/90\/fanart.jpg?lastWrite=637139522332263340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/74493-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-09-24T15:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":1492054978,"percentOfEpisodes":100.0}}],"year":2003,"path":"\/tv\/Texhnolyze","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":74493,"tvRageId":2109,"tvMazeId":8203,"firstAired":"2003-04-17T00:00:00Z","seriesType":"standard","cleanTitle":"texhnolyze","imdbId":"tt0409630","titleSlug":"texhnolyze","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Anime","Drama","Science Fiction"],"tags":[],"added":"2018-10-13T16:17:56.313334Z","ratings":{"votes":221,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":1492054978,"percentOfEpisodes":100.0},"id":90},"episodes":[{"seriesId":90,"episodeFileId":4195,"seasonNumber":1,"episodeNumber":1,"title":"Stranger","airDate":"2003-04-17","airDateUtc":"2003-04-16T15:00:00Z","overview":"Ichise is currently living his life as a fighter in an underground fighting ring. He is incredibly strong and is rewarded for his efforts with a nice whore. She goes kind of crazy and he throws her off during their 'love making'. As a result, her 'employer', Aida, calls up a member of Organ, Isshii, to punish Ichise. Isshii cuts off Ichise's right arm.\r\nAt the same time, we see our first sighting of Yoshii, a member of the Class who has come down to Lux for reasons unknown at this point. When he gets to the bottom of the stairs that connect the two worlds, he meets Ran, a girl from the nearby village of Gabe, which is situated on the outskits of Lux. Ran leads him to the Elder of Gabe where they are soon accosted by a couple members of the Alliance. Yoshii protects Ran and the Elder and fights them off.\r\nWe are also introduced to Oonishi, the leader of Organ.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6779},{"seriesId":90,"episodeFileId":4196,"seasonNumber":1,"episodeNumber":2,"title":"Forfeiture","airDate":"2003-04-24","airDateUtc":"2003-04-23T15:00:00Z","overview":"Things just aren't going Ichise's way. In an attempt at blind rage, he gets his left leg cut off by Isshii (in addition to his right arm in the first episode). Oonishi sees his men at the warehouse and scolds Aida for not coming to him first. He then tells Ichise that he won't kill him because he still has the will to live. After this, Ichise drags himself through the streets with his severed limbs tied to his good leg. He eventually fashions a makeshift crutch, but it doesn't help him that much.\r\nYoshii and the Elder have a little chat. Yoshii says that he didn't come down for any particular reason. The Elder doesn't really know if Yoshii's coming is a good or a bad omen. He has Yoshii take the train to Lux with Ran. On the train, we learn that Ran comes to the city alone often and that she sells flowers at the market there. We also learn from the Elder that she has the ability to see into the near future.\r\nOonishi realizes that his men are getting restless because of the assassination","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6780},{"seriesId":90,"episodeFileId":4197,"seasonNumber":1,"episodeNumber":3,"title":"Texhnophile","airDate":"2003-05-01","airDateUtc":"2003-04-30T15:00:00Z","overview":"We see some flashbacks of Ichise's childhood. His father was tortured and hanged for some crime he committed. A short time later, his mother became very ill and died. He received a vial from the hospital that contained some of her cells and he had kept it with him since. He wakes up in Doc's Lab and he freaks out that he doesn't have the vial. She tells him that she used the contents as part of a new Texhnolyze Unit that will become his new arm and leg. He freaks out, but she knocks him unconscious.\r\nSome men from the Alliance attempt to assassinate Oonishi, but fail miserably. We learn that Kimata, the Alliance's leader, is Texhnolyzed, which is strictly against their ideals. We also see Oonishi's wife, Mana, for the first time. She is very unresponsive and almost seems to be off in her 'own world'.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6781},{"seriesId":90,"episodeFileId":4198,"seasonNumber":1,"episodeNumber":4,"title":"Synapse","airDate":"2003-05-01","airDateUtc":"2003-04-30T15:25:00Z","overview":"Yoshii explains the politics behind Lux: At one time it was ruled by the Elder of Gabe, but in recent times the power has switched to Organ because of their military strength and efficient organization. He says that the people of Lux have lost their 'natural healing process' in their bodies. He also says that the Class built their own world to live in isolation from the people of Lux.\r\nDoc explains all about the Texhnolyze process. Basically, is connects to the body's nervous system and transmits its own 'neural information' to the brain (hence why people with Texhnolyze have crazy vision). She also explains that the reason it all works is because of Lafia, which is mined in the Mine. Lafia basically relaxes the body's instinct to reject organs that are alien to the body and allows Texhnolyze to sync with the body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6782},{"seriesId":90,"episodeFileId":4199,"seasonNumber":1,"episodeNumber":5,"title":"Loiter","airDate":"2003-05-15","airDateUtc":"2003-05-14T15:00:00Z","overview":"Ichise continues to struggle to adapt to his new Texhnolozyed body, what horrors lay a head. Yoshi, a mysterious visitor from the surface is gathering information concerning the gangs of Lukuss, what are his plans?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6783},{"seriesId":90,"episodeFileId":4200,"seasonNumber":1,"episodeNumber":6,"title":"Repetition","airDate":"2003-05-22","airDateUtc":"2003-05-21T15:00:00Z","overview":"Ichise finally confronts the man responsible for severing his limbs. After applying a Repetition of punches, he is retaken by the Organo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6784},{"seriesId":90,"episodeFileId":4201,"seasonNumber":1,"episodeNumber":7,"title":"Plot","airDate":"2003-05-29","airDateUtc":"2003-05-28T15:00:00Z","overview":"With tension building between the Union and the Organo, will a war between gangs occur? What is Yoshii planning, is he the one responsible for tension between the gangs? Shinji has big plans for Lukuss, where does Ichise fit into his plans?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6785},{"seriesId":90,"episodeFileId":4202,"seasonNumber":1,"episodeNumber":8,"title":"Crucible","airDate":"2003-06-05","airDateUtc":"2003-06-04T15:00:00Z","overview":"It now appears an all out war between rival gangs is looming, who will survive the conflicts and who will be crushed?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6786},{"seriesId":90,"episodeFileId":4203,"seasonNumber":1,"episodeNumber":9,"title":"Wiggle","airDate":"2003-06-12","airDateUtc":"2003-06-11T15:00:00Z","overview":"Blood has been spilt on to the streets of Lukuss, all because of the work of Yoshii, what does he hope to gain by all of this bloodshed? Onishi is losing his grip of power to those around him, how much longer can he remain in control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6787},{"seriesId":90,"episodeFileId":4204,"seasonNumber":1,"episodeNumber":10,"title":"Conclusion","airDate":"2003-06-26","airDateUtc":"2003-06-25T15:00:00Z","overview":"The war for power continues, and Yoshii is helping to keep the hatred between the powers alive and well. A top official of the Organo has come down from the hil, what if anything, will any of the warring factions do about this sudden appearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6788},{"seriesId":90,"episodeFileId":4205,"seasonNumber":1,"episodeNumber":11,"title":"Vagrant","airDate":"2003-07-03","airDateUtc":"2003-07-02T15:00:00Z","overview":"Those who want to take control, must now hold their ambitions in check. Onishi is now under the protection of the higher ups in the organization, but there are those who continue to move against him. Their ambitions might lead them to their downfall.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6789},{"seriesId":90,"episodeFileId":4206,"seasonNumber":1,"episodeNumber":12,"title":"Precognition","airDate":"2003-07-17","airDateUtc":"2003-07-16T15:00:00Z","overview":"Ran is overwhelmed by a vision of Ichise's future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6790},{"seriesId":90,"episodeFileId":4207,"seasonNumber":1,"episodeNumber":13,"title":"Vista","airDate":"2003-07-24","airDateUtc":"2003-07-23T15:00:00Z","overview":"Gabe acquires high-quality weapons, beyond even those that the Alliance or Lakan could own and are preparing for a revolution.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6791},{"seriesId":90,"episodeFileId":4208,"seasonNumber":1,"episodeNumber":14,"title":"Rejection","airDate":"2003-07-31","airDateUtc":"2003-07-30T15:00:00Z","overview":"Ichise and Doc meet with Class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6792},{"seriesId":90,"episodeFileId":4209,"seasonNumber":1,"episodeNumber":15,"title":"Shapes","airDate":"2003-08-14","airDateUtc":"2003-08-13T15:00:00Z","overview":"Michiko talks to Shinji behind Onishi's back. Kohakura orders Ichise to kill Tsujinaka.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6793},{"seriesId":90,"episodeFileId":4210,"seasonNumber":1,"episodeNumber":16,"title":"Strain","airDate":"2003-08-21","airDateUtc":"2003-08-20T15:00:00Z","overview":"Ran is being discussed as a Watcher, relieving the duties her grandfather. The invasion of Shapes has reached the city of Lakan. A group of Salvation Alliance members discover someone is Texhnolyzed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":6794},{"seriesId":90,"episodeFileId":4211,"seasonNumber":1,"episodeNumber":17,"title":"Dependence","airDate":"2003-09-04","airDateUtc":"2003-09-03T15:00:00Z","overview":"Shapes continue the rampage as it targets Onishi, Michiko, and Ichise. Doc reveals to Ichise what really happened to the vail containing her mother's long-dead cells.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":6795},{"seriesId":90,"episodeFileId":4212,"seasonNumber":1,"episodeNumber":18,"title":"Throne","airDate":"2003-09-11","airDateUtc":"2003-09-10T15:00:00Z","overview":"Ran has a vision of the Obelisk sweeping over her. The killings, mostly against the Organo continue. Shinji and Onishi meet with the elders of Class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":6796},{"seriesId":90,"episodeFileId":4213,"seasonNumber":1,"episodeNumber":19,"title":"Heavenward","airDate":"2003-09-11","airDateUtc":"2003-09-10T15:25:00Z","overview":"Doc and Ichise arrive at the surface world. They then meet a little \"girl\" Saginuma who begins giving them information about the surface world and a history of Lux.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":6797},{"seriesId":90,"episodeFileId":4214,"seasonNumber":1,"episodeNumber":20,"title":"Hades","airDate":"2003-09-11","airDateUtc":"2003-09-10T15:50:00Z","overview":"Ichise meets his father's ghost. After trying to re-gain entry to the Lux, Toyama tells Ichise Ran has been captured by Kano for his purposes, then challenges Ichise to a duel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":6798},{"seriesId":90,"episodeFileId":4215,"seasonNumber":1,"episodeNumber":21,"title":"Encephalopathy","airDate":"2003-09-18","airDateUtc":"2003-09-17T15:00:00Z","overview":"Voices are creeping the underground world (the film which Doc and Ichise watched) retelling Lux's history, the surface world of Hades, and many prophetic things about Ichise. Shinji attemps to kill everyone of the Class. A voice sounding like Ran tells Onishi to kill the Obelisk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":6799},{"seriesId":90,"episodeFileId":4216,"seasonNumber":1,"episodeNumber":22,"title":"Myth","airDate":"2003-09-25","airDateUtc":"2003-09-24T15:00:00Z","overview":"Ichise and Kano have a showdown. What will become or remain of the city of Lux? More origins of the Lux is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":6800}],"episodeFile":[{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Stranger-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E01.Stranger-SDTV.mkv","size":68056811,"dateAdded":"2018-10-13T16:26:24.363966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4195},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Forfeiture-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E02.Forfeiture-SDTV.mkv","size":68058280,"dateAdded":"2018-10-13T16:26:24.40307Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4196},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Texhnophile-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E03.Texhnophile-SDTV.mkv","size":68077479,"dateAdded":"2018-10-13T16:26:25.156548Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4197},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Synapse-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E04.Synapse-SDTV.mkv","size":67993240,"dateAdded":"2018-10-13T16:26:25.350767Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4198},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Loiter-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E05.Loiter-SDTV.mkv","size":68133709,"dateAdded":"2018-10-13T16:26:26.021219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4199},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Repetition-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E06.Repetition-SDTV.mkv","size":68075811,"dateAdded":"2018-10-13T16:26:26.678424Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4200},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Plot-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E07.Plot-SDTV.mkv","size":68056557,"dateAdded":"2018-10-13T16:26:29.866359Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4201},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Crucible-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E08.Crucible-SDTV.mkv","size":68007089,"dateAdded":"2018-10-13T16:26:30.024238Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4202},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Wiggle-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E09.Wiggle-SDTV.mkv","size":68101295,"dateAdded":"2018-10-13T16:26:30.213892Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4203},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Conclusion-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E10.Conclusion-SDTV.mkv","size":68014713,"dateAdded":"2018-10-13T16:26:30.32393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4204},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Vagrant-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E11.Vagrant-SDTV.mkv","size":62860194,"dateAdded":"2018-10-13T16:26:31.66274Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":276000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4205},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Precognition-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E12.Precognition-SDTV.mkv","size":68179663,"dateAdded":"2018-10-13T16:26:32.339516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":307000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4206},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Vista-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E13.Vista-SDTV.mkv","size":68022016,"dateAdded":"2018-10-13T16:26:32.932478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4207},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Rejection-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E14.Rejection-SDTV.mkv","size":68061403,"dateAdded":"2018-10-13T16:26:33.432367Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4208},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Shapes-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E15.Shapes-SDTV.mkv","size":68038215,"dateAdded":"2018-10-13T16:26:33.928204Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4209},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Strain-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E16.Strain-SDTV.mkv","size":67990617,"dateAdded":"2018-10-13T16:26:34.40277Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4210},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Dependence-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E17.Dependence-SDTV.mkv","size":68114877,"dateAdded":"2018-10-13T16:26:34.436918Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4211},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Throne-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E18.Throne-SDTV.mkv","size":68090460,"dateAdded":"2018-10-13T16:26:34.766987Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4212},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Heavenward-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E19.Heavenward-SDTV.mkv","size":68000667,"dateAdded":"2018-10-13T16:26:35.054899Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4213},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Hades-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E20.Hades-SDTV.mkv","size":68053717,"dateAdded":"2018-10-13T16:26:35.338749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4214},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Encephalopathy-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E21.Encephalopathy-SDTV.mkv","size":68054623,"dateAdded":"2018-10-13T16:26:35.690433Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4215},{"seriesId":90,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Myth-SDTV.mkv","path":"\/tv\/Texhnolyze\/Season 01\/S01E22.Myth-SDTV.mkv","size":68013542,"dateAdded":"2018-10-13T16:26:35.960536Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":306000,"videoCodec":"x264","videoFps":23.976,"resolution":"640x352","runTime":"23:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4216}],"queue":[]},"84":{"series":{"title":"Guilty Crown","alternateTitles":[],"sortTitle":"guilty crown","status":"ended","ended":true,"overview":"The story takes place in Tokyo in 2039. After the outbreak of an unidentified virus Lost Christmas in 2029, Japan has been controlled by a multi-nation organization GHQ. Ouma Shuu is a 17 year old boy, who has a psychic power in his right hand. He can use the power Ability of King to extract tools or weapons from his friends. He has been avoiding making troubles for others but his life has changed when he met a girl Yuzuriha Inori, one of the members of a resistance guerrilla Undertaker. (AniDB)","previousAiring":"2012-03-22T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/91\/banner.jpg?lastWrite=636750448620142450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/252471-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/91\/poster.jpg?lastWrite=637103832820431560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/252471-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/91\/fanart.jpg?lastWrite=637103832795552010","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/252471-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":13,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-03-22T15:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":9403466060,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Guilty Crown","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":252471,"tvRageId":29496,"tvMazeId":8262,"firstAired":"2011-10-14T00:00:00Z","seriesType":"standard","cleanTitle":"guiltycrown","imdbId":"tt2122656","titleSlug":"guilty-crown","rootFolderPath":"\/tv\/","genres":["Action","Anime","Drama"],"tags":[],"added":"2018-10-13T16:18:19.80586Z","ratings":{"votes":7577,"value":7.7},"statistics":{"seasonCount":1,"episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":35,"sizeOnDisk":9403466060,"percentOfEpisodes":100.0},"id":91},"episodes":[{"seriesId":91,"episodeFileId":12122,"seasonNumber":1,"episodeNumber":1,"title":"Genesis","airDate":"2011-10-14","airDateUtc":"2011-10-13T15:00:00Z","overview":"Shu Ouma is a 17 year old teen who has poor social skills who lives in Japan where it is under the strict rule of the government organization GHQ due to the Apocalypse Virus ten years ago. While going to his warehouse studio, he encounters Inori Yuzuriha, internet singer of the band Egoist, who is recovering from her wounds after stealing a formula called Void Genome from the GHQ. After mending her wounds and feeding her, Inori is captured by the GHQ Anti Bodies division led by Major Guin and Shu is powerless to stop them. To make amends, Shu brings the Void Genome to Inori's boss, Gai Tsutsugami, leader of the resistance group, the Undertakers at Roppongi. However, Major Guin orders the Anti Bodies to exterminate the residents of Roppongi in order to find the Void Genome. As the Undertakers and GHQ battle, Shu goes and rescue Inori and protects her when a GHQ Endlave mech tries to attack them. The attack breaks the test tube holding the Void Genome, giving Shu the \"Power of Kings\" where he pulls out Inori's Void, a large sword and destroys the Endlave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6801},{"seriesId":91,"episodeFileId":12482,"seasonNumber":1,"episodeNumber":2,"title":"Survival of the Fittest","airDate":"2011-10-21","airDateUtc":"2011-10-20T15:00:00Z","overview":"After destroying several GHQ Endlaves, Shu, Inori and the Undertakers are forced to retreat when an advanced Endlave joins the battle ridden by 2nd Lieutenant Daryl \"Kill 'Em All\" Yan, a narcissist officer who hates being touch on the grounds people are infected. After regrouping with the others, Gai congratulates his hacker Tsugumi and Endlave pilot Ayase Shinomiya but scolds Inori as he wanted the power of the Void Genome but instead was given to Shu. Never the less, Gai still wants the \"Power of Kings\" and asks Shu for help. When Guin holds a group of innocent civilians hostage where Daryl and several soldiers execute some of them and orders the Undertakers to surrender themselves, the Undertakers trick Daryl to drive his Endlave away from Guin's command center where the Undertakers have a stand off with Guin's men. Using the stand off as a diversion, Shu heads to the truck that holds Daryl's cockpit where Shu pulls out Daryl's Void, a weapon called Kaleidoscope. When Guin fires his laser weapons at Gai, Shu uses Kaleidoscope to shield Gai and deflects the lasers back at Guin and his men, killing them. Despite seeing the atrocities the GHQ does and what the Undertakers are fighting for, Shu declines to join them as he feels he is no hero. But the next day to his surprise, Inori has transferred to his school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6802},{"seriesId":91,"episodeFileId":15481,"seasonNumber":1,"episodeNumber":3,"title":"Void-Sampling","airDate":"2011-10-28","airDateUtc":"2011-10-27T15:00:00Z","overview":"Shu is still shocked that not only has Inori transferred to his school but is living at his home as well. Gai reveals to Shu that he sent Inori to protect him because a student at his school who is secretly a drug dealer nicknamed Sugar saw him during the Undertakers battle with the GHQ at Roppongi and confirms Shu's suspicions that Gai can see other people's Voids. Because Gai only recognize Sugar's Void as pair of large shears, Shu has to confront his fellow classmates one by one and take out their Voids to confirm their identities. After several failures and escaping the wrath of class representative Kanon Kusama, Shu soon figures out Sugar is actually his friend Yahiro Samugawa, after figuring out Yahiro knows a lot of things he shouldn't know and his taste of horror films. His identity exposed, Yahiro angrily shows his true self before Shu subdues him by pulling out his Void. Inori tries to kill Yahiro but Shu stops her as Yahiro is still his friend where both he and Yahiro resolve their difference and not reveal each other secrets. But the next day, Yahiro betrays Shu by selling him out to the GHQ led by Major Makoto Waltz Segai.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6803},{"seriesId":91,"episodeFileId":15480,"seasonNumber":1,"episodeNumber":4,"title":"Flux","airDate":"2011-11-04","airDateUtc":"2011-11-03T15:00:00Z","overview":"Shu is arrested by the GHQ much to his classmates shock and worry. He is sent to GHQ Isolation Facility Four where he remains silent about the Undertakers. Upon learning Gai and the Undertakers will attack the Facility to rescue their \"comrade\", Major Segai brings Shu to the Isolation ward, revealing Yahiro sold him out so his brother, a victim of the Apocalypse Virus, can get treatment. Furthermore, Major Segai justifies GHQ's harsher actions for the safety of Japan and uses Shu's feelings for Inori and his doubts about Gai. He reveals that the \"comrade\" Gai wants to rescue is mass murderer Kenji Kido, which makes Shu question Gai's trustworthiness. The Major gives Shu a transmitter disguised as a pen that he is to use if he comes in contact with Gai. Later that night, a disguised Gai visits Shu and tells him his plans to rescue Kenji, however, Shu doesn't want to be involved. Tsugumi informs the two that Inori has disobeyed Gai's orders to stand by in order to rescue Shu. Shu, worried, goes to save her, forcing Gai to change his plan. Protected by Ayase's Endlave Steiner, Shu heads to where Inori is at until he encounters Kenji himself and uses his Void, a Gravity gun to stop the GHQ Endlaves and rescue Inori. After Isolation Facility's destruction, Gai offers Shu to follow him. Shu reluctantly agrees, however, he keeps the transmitter given to him and does not inform Gai of his exchange with the Major.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6804},{"seriesId":91,"episodeFileId":13363,"seasonNumber":1,"episodeNumber":5,"title":"A Preparation","airDate":"2011-11-11","airDateUtc":"2011-11-10T15:00:00Z","overview":"Shu arrives at the Undertakers Headquarters at Roppongi Fort where Gai introduces him to the Undertakers and plans to hold a trial for Shu before he can officially join them. Gai assigns Ayase as Shu's instructor while he leads a mission to take over \"Leukocyte\". Ayase dislikes Shu but is only training him because it was Gai's orders and Shu has to pass the trial as Ayase has his pen, unaware it's a transmitter but she will only give it back after passing the trial. After some hard training, Shu encounters Inori, telling her that he joined the Undertakers because of her and asks her if she will join him if he wanted to leave the Undertakers. But Inori tells him she won't because Gai gave her a life and purpose and claims Gai told her to use his feelings for her to join Undertakers before entering Gai's room. Dejected, Shu runs away and bumps into Ayase, who consoles Shu and gives him some encouragement for tomorrow's trial. Unknown to both of them, despite what it seems, Inori is actually giving Gai a blood transfusion. On the day of trial, Shu has a mock battle with Ayase's Steiner where if he gets past Steiner and into the vehicle behind it, he will pass the trial. Shu succeeds the task after using Arugo's Void to blind Steiner and get into the vehicle where Ayase and the Undertakers congratulate Shu of the becoming one of them. Just as Kenji arrives, the Undertakers receives a troubling report from Tsugumi. Gai earlier led a team to intercept the arrival of mercenaries and Endlaves at an airport but their position was shoot by Leukocyte, an orbital satellite laser.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6805},{"seriesId":91,"episodeFileId":4222,"seasonNumber":1,"episodeNumber":6,"title":"Leukocytes","airDate":"2011-11-18","airDateUtc":"2011-11-17T15:00:00Z","overview":"Gai survives the attack but reveals that his team and the mercenaries were killed by the Leukocyte blast. At the outskirts of Tsukigase Dam, Gai briefs the Undertakers that their mission is to attack the Dam where the Leukocyte control system is located but due to the Leukocyte's security system, he will have Shu use Kenji's Void to disable it. Shu doesn't want to take part of the operation as he's afraid of the people who will die if he fails until Inori goes to talk to him. Meanwhile at Tsukigase Dam, Major Segai informs the Anti Bodies director Shuichiro Keido that his men are prepared for the Undertakers attack including Daryl, who wants revenge against the Undertakers for stealing his Steiner. As Gai gets another blood transfusion in a room alone, he confesses to what he assumes is Inori that he regrets of the lives who died for him and it was difficult to act as their fearless leader until he realizes the other person was in fact Shu due to Inori. Shu admits he never wanted to see this side of Gai and agrees to join the operation. As the Undertakers distract the GHQ forces guarding the dam, Shu, Gai, and Kenji sneak into the Leukocyte control system with Inori defending them. As Gai and Shu hacks the control system with Tsugumi's help via Funell, Segai sends Daryl to stop them which Gai battles and disables Daryl's Endlave. However, Daryl damages the control system, sending one of the Leukocyte's crashing to the dam. In order to stop it, Gai makes a deal with Segai that he will stop the crashing satellite using Shu's transmitter, revealing it is actually a targeting beacon for the Leukocytes, in exchange that he destroys all records of Shu's involvement with the Undertakers. Realizing Gai is sacrificing himself to destroy the falling satellite, Shu, with Inori's encouragement, combines Kenji's and Inori's Voids to destroy not only the falling satellite but also the one still in space. With the operation over, Shu finally accepts Gai and the Undertakers while S","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6806},{"seriesId":91,"episodeFileId":4223,"seasonNumber":1,"episodeNumber":7,"title":"Temptation","airDate":"2011-11-25","airDateUtc":"2011-11-24T15:00:00Z","overview":"Shu returns to school with Inori since his arrest by the GHQ. Thanks to a cover story that he was interviewed by the GHQ for finding one of their cellphones and the student council president Arisa Kuhouin supporting Shu and defending him against malicious rumors, his classmates welcome him back with open arms. Shu also learns from his friends Hare Menjou and Souta Tamadate that Yahiro hasn't been back to school since his arrest. Later, Shu's mother Haruka comes back home and welcomes Inori living with them with open arms. Meanwhile, the Undertakers are running out of supplies and need a new supply route which Gai knows someone who will help them. The next night, Arisa and her grandfather, the head of the Kuhouin Group attend a party on a cruise ship where Shu and Gai have snucked in to make a deal with Arisa's grandfather. However, the Anti Bodies learn about the deal from an \"informant\" and sends Daryl, Segai and Rowan to work with GHQ Colonel Dan Eagleman whom the latter plans to shoot down the ship with Surface to Air missiles. After Gai flirts with Arisa and makes his business proposal with her grandfather, Shu learns from Tsugumi about the attack and tells Gai about it in order to save the passengers on the ship which include his mother. With Gai's help of bringing Arisa to the upper deck, Shu is able to extract her Void and use it to shield the ship from the missile which Colonel Eagleman orders his men to fire all of their missiles which are stopped thanks to Shu. With the threat over, Arisa's grandfather agrees to help supply the Undertakers which unaware to everyone but Gai and Shinbugi, Gai was the GHQ informant. Before leaving, Gai comments to Arisa despite the tough image she gives out, she is very shy when being doted on by others. As Shu and Inori leaves for school the next day, Shu admits to her that this is the first he was glad to use Voids while Haruka looks at a photo with her, her son Shu and the girl from Shu's memories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6807},{"seriesId":91,"episodeFileId":14155,"seasonNumber":1,"episodeNumber":8,"title":"Courtship Behavior","airDate":"2011-12-02","airDateUtc":"2011-12-01T15:00:00Z","overview":"Shu is going with Inori, Hare, Souta and Kanon on a beach retreat at Oshima which his mother tells him to also visit his father's grave. In truth, the retreat is actually a mission for the Undertakers to get Souta there so they can use his Void to enter a secret GHQ facility located at a shrine and steal a special item. As Shu and his friends have fun on the beach, Gai and the rest of the Undertakers monitor them. As Shu pays respects to his father, Kurosu Ouma, an expert on the Apocalypse Virus who he died during the \"Lost Christmas\" incident ten years ago, Gai suggest to Shu to use Souta's crush on Inori to get him alone so they can get his Void much to Shu's dislike. That night, Souta is alone with Inori and is about to confess to her but is stopped by Shu who immediately pulls out his Void and much to Shu's embarrassment, the Undertakers were watching him with Ayase and Tsugumi wondering what he was about to say about his relationship with Inori. As Gai, Inori and Shu enter the facility using Souta's Void, a camera that takes pictures of doors and opens them, they find too late to discovered the item, a canister containing the origin of the Apocalypse Virus, has been taken by Shuichiro earlier and cancel the mission. The next morning, Shu and Souta makes amends on their relationship and their hardship of understanding each other. As everyone leaves Oshima, Inori explains to Shu how people's Voids change based on his relationship with them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6808},{"seriesId":91,"episodeFileId":14157,"seasonNumber":1,"episodeNumber":9,"title":"Prey","airDate":"2011-12-09","airDateUtc":"2011-12-08T15:00:00Z","overview":"Hare and Kanon notices how much Shu has changed and is more active. In order to help Hare get close with him, Kanon lies to Shu that Hare needs his help for her shopping. As Hare is about to confess to Shu on the train, Yahiro suddenly appears which Shu tell Hare to go shopping herself as he wants to talk with Yahiro. Yahiro brings Shu to his hideout where his brother, Jun is also staying and reveals that he and his brother have been on the run from the GHQ because they wanted to euthanize Jun. While Shu won't forgive Yahiro for betraying him, he will help Jun escape for Yahiro's sake and calls the Undertakers to pick them up. However, the GHQ have been following them and sends Seiga and Daryl. Cornered in a warehouse, Shu forcibly takes Yahiro's Void before telling Yahiro he will never betray his friends just like him. Daryl's Endlave arrives and fight Shu using a new weapon that targets his Void while Seiga watches. But when Jun stands up, the weapon target him instead. Suddenly, the crystals on Jun's body migrate to Daryl's Endlave and takes control of it and proceeds to attack the GHQ and Yahiro. Shu stabs the infected Endlave with Yahiro's Void and enters Jun memories where Jun himself shows Shu his and Yahiro's past before the \"Lost Christmas\" incident. Jun also reveals because of the crystals on his body, he could see people's true self including his brother, who while loves and cares about him, also hates him for burdening him as well. Wishing for his final memories of loving Yahiro and not hating him, Jun begs Shu to use Yahiro's Void to end his life before he kills Yahiro which Shu is forced to do so which Jun thanks him. With Jun's death, the infected Endlave breaks down while Seiga leaves. As Yahiro regains conscious and asks where Jun is, a mortified Shu confess to Yahiro that he killed him, unaware that both of them were followed by Hare.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6809},{"seriesId":91,"episodeFileId":14531,"seasonNumber":1,"episodeNumber":10,"title":"Retraction","airDate":"2011-12-16","airDateUtc":"2011-12-15T15:00:00Z","overview":"Since his failure to save Jun, Shu is suffering traumatic memories of the Apocalypse Virus and hallucinating seeing people being infected which cost the Undertakers a mission to stop a convoy. Unwilling to join them anymore, Gai kicks Shu out the Undertakers. Retuning home, Shu finds Inori leaving but not before giving him her new song but he slaps it after getting another panic attack. Depressed, at school Shu ask Hare if he can be close to her but she slaps him as she isn't his replacement for Inori and he isn't the Shu that she loves and knows. Meanwhile, Major General Yan has put Shuichiro under house arrest for stealing the Apocalypse Virus meteorite and plans to have it transported overseas which Gai and Undertakers plan to attack the plane transporting the cargo and retrieve it. However, unknown to both the GHQ and the Undertakers, Seiga and the Anti Bodies have other plans and start vaccinating themselves. As Gai and his team get inside the transport plane, they find it empty and realize too late it is a trap. Seiga activates a genetic resonance broadcast at Tokyo Tower which causes the meteorite to spread the virus all over Tokyo and causing chaos. With both the GHQ and the Undertakers in disarray due to the virus, the Anti Bodies attack both of them and rescue Shuichiro from his confinement which Shuichiro watches the chaos from GHQ Headquarters and declares he will finish what he started 10 years ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6810},{"seriesId":91,"episodeFileId":14530,"seasonNumber":1,"episodeNumber":11,"title":"Resonance","airDate":"2011-12-23","airDateUtc":"2011-12-22T15:00:00Z","overview":"While the virus is still spreading over Japan, Daryl arrives at the airport and kills everyone there in a rage of fury, including his own father Major General Yan. With the GHQ higherups gone, Shuichiro took over control of the entire military, and declares that the Funeral Parlor spreaded the disease as an act of terrorism. Meanwhile, after an call from Tsugumi, Shu finally regained control over himself. He then gathers Hare, Souta, Yahiro, Kanon, and Arisa, and explained to them that he wanted to go and rescue Gai and Inori. After witnessing Shu's power to draw out voids, the five students agreed to tag along. Back at the GHQ Headquarters, Haruka managed to escape from Shuichiro, but bumped into Inori and Gai. With Haruka's help, Inori was able to sing and broadcast her song \"Departure\" all over Japan. The song was able to reverse the effects of the Apocalypse Virus. At the same time, Shu and his friends arrives at the GHQ HQ, breaking through the barricades using different voids. When Shu finally reached Inori, a blond-haired boy appeared from behind and withdrew Inori's void, then sliced down on Shu. But Gai appeared and took the hit, saving Shu. The episode ends with Shu holding the unconscious Gai, while Shuichiro and Segai enters the Gate of Hell leading to Cocytus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6811},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Reassortment","airDate":"2012-01-04","airDateUtc":"2012-01-03T15:00:00Z","overview":"A one-hour Noitamina special that recaptures the first 11 episodes of Guilty Crown, and introduces the highlights for the second half.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6823},{"seriesId":91,"episodeFileId":14532,"seasonNumber":1,"episodeNumber":12,"title":"The Lost Christmas","airDate":"2012-01-13","airDateUtc":"2012-01-12T15:00:00Z","overview":"Shuichiro teleports to the crystal tower but not before giving Segai the information he wants as thanks for his service. Meanwhile, Shu finally recognize who Gai is but he tells Shu to rescue Inori before the youngster, who Gai calls \"Death\", teleports away. As Shu follows them through a portal, \"Death\" tells Shu he still doesn't remember his past and causes him to remember.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6812},{"seriesId":91,"episodeFileId":15024,"seasonNumber":1,"episodeNumber":13,"title":"Isolation","airDate":"2012-01-20","airDateUtc":"2012-01-19T15:00:00Z","overview":"Two weeks since the outbreak, the GHQ continues their search, rescue and aid of survivors in Tokyo. A large number of teenage refugees is sent to Tennouzu High, which has been set up as a shelter. Unable to find the rest of the Undertakers, Shu, Inori, Tsugumi and Ayase stay at Tennouzu High.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6813},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Guilty Crown 4-Panel Theater - Part 1","airDate":"2012-01-25","airDateUtc":"2012-01-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6825},{"seriesId":91,"episodeFileId":15079,"seasonNumber":1,"episodeNumber":14,"title":"Election","airDate":"2012-01-27","airDateUtc":"2012-01-26T15:00:00Z","overview":"With Loop 7 completely sealed off from the outside world, Arisa tries to assure the panicked Tennouzu students that her grandfather's men will rescue them. However, one student lacks confidence in Arisa as student council president and calls for a vote of no confidence to elect a new president. While the student council thinks the students are being hard on Arisa, Tsugumi coldly dismisses the matter. Souta calls her out on her behavior. Later, she talks with Inori and realizes she may have been insensitive since the student council treats each other as family. Tsugumi reveals that she does not know what family is as she is an orphan. As the student council discovers a Genome Resonance Gauge that allows them to measure the power of a person's Void, Segai enacts Shuichiro\u2019s plan to exterminate the civilians inside Loop 7 by Endlaves operated by a \"Ghost Unit.\" Segai allows the news of the slaughters to spread, causing distress and panic as part of his demagogy strategy. Meanwhile, Oogumo and Arugo, are tasked by Arisa's grandfather to find and rescue Arisa and the Tennouzu High students. The next day, trouble arises on campus as the result of an internet rumor claiming that the GHQ will allow anyone that brings them a member of the Undertakers will be allowed to leave. This causes witch hunts by desperate students. Arisa tries to restore order, telling the students not to believe the rumor and remain calm. However, the rebellious students, who challenge Arisa, bring Tsugumi and Ayase before the student body, accusing them to be members of the Undertakers. With the desperate students unwilling to listen to Arisa, Shu stands up to the crowd and reveals his affiliation with the Undertakers to stop them from hurting Tsugumi and Ayase. To prove that the rumor is false, he uses Tsugumi's void ability to create indistinguishable doubles of Ayase, Tsugumi, one of the rebel students, and himself. Tsugumi sends the doubles to the barricade where they are shot down by the GHQ","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6814},{"seriesId":91,"episodeFileId":15081,"seasonNumber":1,"episodeNumber":15,"title":"Sacrifice","airDate":"2012-02-03","airDateUtc":"2012-02-02T15:00:00Z","overview":"The students of Tennouzu work together to improve their environment by making use of their voids provided by Shu. However, the situation starts to deteriorate as the blockade draws closer and the supply of vaccines starts running low. Rumors about Yahiro's plan to prioritize the survival of those with stronger Voids with a Void Ranking system create turmoil among the students, despite Shu being opposed to the idea. Meanwhile Hare is encouraged by Tsugumi to confess her feeling to him, but at the sight of a troubled Shu who is questioning his leadership, she refrains herself and comforts him instead, telling he is a kind \"King\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6815},{"seriesId":91,"episodeFileId":15159,"seasonNumber":1,"episodeNumber":16,"title":"The Tyrant","airDate":"2012-02-10","airDateUtc":"2012-02-09T15:00:00Z","overview":"Argo is airdropped into Loop 7 as part of his mission to rescue Arisa as the head of Shanghai's Ming Hua Group, who is in love with her and in exchange for rescuing her, promises her grandfather that he will have the Association of Asian Nations intervene in Japan. As he explores the area, he witnesses Tennouzu students with Void weapons attacking another group of survivors for vaccines and has one of them follow them to Tennouzu to see her Void. Recognizing Argo as a member of the Undertakers, they take him to meet Shu, where he is shock to see how much Shu has change. Since Hare's death and implementing the ranking system, Shu has ruled the school with an iron fist by making students with Void weapons as his Secret Service who enforce his rule and maintain order while searching for other potential void users in the area to join Tennouzu while the F-ranked void users remain infected with the virus and are ordered to work repairing a battleship they will use to escape Tokyo in exchange of getting vaccines.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":6816},{"seriesId":91,"episodeFileId":15160,"seasonNumber":1,"episodeNumber":17,"title":"Exodus","airDate":"2012-02-17","airDateUtc":"2012-02-16T15:00:00Z","overview":"As the blockade gets closer to the school , causing fear amongst the students, Shu become more ruthless to maintain order. Yahiro warns him the students will hate him if he continues acting like this, but Shu insists it's necessary or they might end up dying like Hare. Arisa, traumatized after being attacked by Inori, is contacted by an unknown individual (later to be revealed as Segai), who convinces her to turn the students against Shu. Arisa seduces Hirohide and convinces him to secretly spread a rumor to the students that they will die if their Voids are destroyed and Shu is keeping it a secret, creating greater resentment against him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":6817},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Guilty Crown 4-Panel Theater - Part 2","airDate":"2012-02-22","airDateUtc":"2012-02-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6826},{"seriesId":91,"episodeFileId":15224,"seasonNumber":1,"episodeNumber":18,"title":"Dear...","airDate":"2012-02-24","airDateUtc":"2012-02-23T15:00:00Z","overview":"Ayase, Tsugumi and Argo are shocked on what Gai has done and Daryl is bewildered upon given orders to protect Gai, their former enemy. An UN Stealth Bomber attempts to bomb them but Gai sacrifices the student ring leaders of the coup to destroy the plane. After destroying their Voids, Gai orders Ayase, Tsugumi and Argo to join him or die but are rescued by Daryl who is protective with Tsugumi and blames Gai for making him kill his father. In the confusion of Daryl's insubordination, Inori escapes with Shu while Ayase, Tsugumi and Argo escape on their own and Arisa defends Gai, revealing he was the one who told her to start the coup and joins the Anti Bodies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":6818},{"seriesId":91,"episodeFileId":15294,"seasonNumber":1,"episodeNumber":19,"title":"Rebirth","airDate":"2012-03-02","airDateUtc":"2012-03-01T15:00:00Z","overview":"Haruka opens a safe guarding the third and final Void Genome, but is stopped by Shuichiro, who is revealed to be her older brother. He confesses that he was the one who killed her husband, Shu's father, before shooting her, but she manages to escape with the Void regardless. An arrest warrant is issued on Haruka, Segai offers to lead the search for her. As she heads to the Kuhouin estate for shelter, her old friend Kurachi tells her the estate is no longer safe now that Okina is dead, and they head to an Undertakers hideout. Arisa is approached by Shu who convinces her to help him rescue Inori, as she wants to learn more about Gai's true intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":6819},{"seriesId":91,"episodeFileId":15270,"seasonNumber":1,"episodeNumber":20,"title":"A Diary","airDate":"2012-03-09","airDateUtc":"2012-03-08T15:00:00Z","overview":"Mana has almost taken control of Inori's body and Gai tells his father, Shuichiro, that the Apocalypse will be coming and announces it to the world that the Leukocyte will destroy Earth on December 25th. The remnants of the Undertakers and the Kuhouin Group escape Japan on a ship along with the students of Tennouzu where Shibungi, who was released by Gai, gives Shu a journal by his father which reveals the Apocalypse virus history. In 2013, Shuichiro was a Professor researching on Genomic Resonance and befriended Shu's father Kurosu, who the latter was interested in the former's work. In 2017, Kurosu meet his future first wife, Saeko Shijou, a fellow colleague whom he marries after she became pregnant with their first child, Mana. But in 2022, a meteorite crashes on Earth and was discovered by Mana and Saeko. Shuichiro and Shu discovered a virus inside the meteorite which reacts when the Genomic Resonance was used.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":6820},{"seriesId":91,"episodeFileId":15478,"seasonNumber":1,"episodeNumber":21,"title":"Emergence","airDate":"2012-03-16","airDateUtc":"2012-03-15T15:00:00Z","overview":"As the combine forces of the Undertakers and the UN forces arrive at GHQ Headquarters, realizing the 256 Leukocyte satellites was a bluff, Shu helps Ayase into her new Steiner Endlave and promises his friends and allies that they will rescue Inori and stop Gai. As the UN forces attack, Gai uses Yuu, Kenji and Arisa voids to decimate them and Shuichiro orders the GHQ\/Anti Bodies\/Daath forces to destroy them. Daryl is forced to join the attack in his new Gespenst Endlave due to having his void taken. Thanks to Tsugumi's void, Shu and his Undertakers\/PMC allies manage to sneak inside and hack into the base system, allowing the UN the chance to counterattack. As Tsugumi group split up with Shu and the others, Gai prepares to get rid of Inori's memories before Mana can take over her body but ask her why she loves Shu.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":6821},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Guilty Crown 4-Panel Theater - Part 3","airDate":"2012-03-21","airDateUtc":"2012-03-20T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6827},{"seriesId":91,"episodeFileId":15479,"seasonNumber":1,"episodeNumber":22,"title":"Convergence","airDate":"2012-03-23","airDateUtc":"2012-03-22T15:00:00Z","overview":"After Mana is completely resurrected, Mana greets Shu but is shunned by him after she speaks ill of Inori, much to her anger. Gai draws out Mana's Void to fight Shu while she triggers the Fourth Apocalypse, spreading the Apocalypse virus throughout the entire world. Haruka confronts Shuichiro who commits suicide by injecting the virus into himself. Meanwhile the Undertakers fight a group of Endlaves led by Daryl, who believes he changed because of them and wants to go back to his old self. Tsugumi finds that her attempts to hack the GHQ system are being repelled by another hacker as skilled as her. Shibungi figures that the hacker is actually Kenji and after tracking his location, he kills him, allowing Tsugumi to operate freely and help Ayase defeat Daryl. Just when Shu is about to be killed by Gai, Shu is seeing a flower while hearing the Voice of Inori.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":6822},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Guilty Crown 4-Panel Theater - Part 4","airDate":"2012-04-25","airDateUtc":"2012-04-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6828},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Guilty Crown 4-Panel Theater - Part 5","airDate":"2012-05-23","airDateUtc":"2012-05-22T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6829},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Lost Christmas","airDate":"2012-05-31","airDateUtc":"2012-05-30T15:00:00Z","overview":"A DVD with an animated short bundled with the limited edition of the PC game Guilty Crown Lost Xmas. In 2029, Scrooge escapes from a research facility where he had been confined as an experimental subject. His body was remodeled by genetic manipulations and he uses his psychic power to kill the chasers. One day, he meets another experimental subject called Carol. When three psychic chasers hunt down the two, Carol asks Scrooge to use his right arm to extract a weapon from her body.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6824},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Guilty Crown 4-Panel Theater - Part 6B","airDate":"2012-06-27","airDateUtc":"2012-06-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6830},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Guilty Crown 4-Panel Theater - Part 7","airDate":"2012-07-25","airDateUtc":"2012-07-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6831},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Guilty Crown 4-Panel Theater - Part 8","airDate":"2012-08-22","airDateUtc":"2012-08-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6832},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Guilty Crown 4-Panel Theater - Part 9","airDate":"2012-09-26","airDateUtc":"2012-09-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6833},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Guilty Crown 4-Panel Theater - Part 10","airDate":"2012-10-24","airDateUtc":"2012-10-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6834},{"seriesId":91,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Guilty Crown 4-Panel Theater - Part 11","airDate":"2012-11-21","airDateUtc":"2012-11-20T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6835}],"episodeFile":[{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Leukocytes-HDTV-1080p.mkv","path":"\/tv\/Guilty Crown\/Season 01\/S01E06.Leukocytes-HDTV-1080p.mkv","size":1259797700,"dateAdded":"2018-10-13T16:27:29.12418Z","releaseGroup":"CBM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4222},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Temptation-HDTV-1080p.mkv","path":"\/tv\/Guilty Crown\/Season 01\/S01E07.Temptation-HDTV-1080p.mkv","size":1305946057,"dateAdded":"2018-10-13T16:27:29.478069Z","releaseGroup":"CBM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4223},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Genesis-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E01.Genesis-Bluray-1080p.mp4","size":1719377306,"dateAdded":"2020-02-06T15:26:32.421268Z","sceneName":"[AnimeDiSini] Guilty Crown - 01 MalaySub [BD 1920x1080 H.265]","releaseGroup":"AnimeDiSini","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128097,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9905870,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12122},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Survival of the Fittest-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E02.Survival of the Fittest-Bluray-1080p.mp4","size":1715460395,"dateAdded":"2020-02-09T17:59:54.232684Z","sceneName":"[AnimeDiSini] Guilty Crown - 02 MalaySub [BD 1920x1080 H.265]","releaseGroup":"AnimeDiSini","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127960,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9883441,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12482},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E05.A Preparation-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E05.A Preparation-Bluray-1080p.mp4","size":189156362,"dateAdded":"2020-05-26T03:18:11.643188Z","sceneName":"[Hebi-Malay] Guilty Crown - 05 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159464,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":936000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13363},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Courtship Behavior-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E08.Courtship Behavior-Bluray-1080p.mp4","size":189348040,"dateAdded":"2020-06-10T23:52:06.293913Z","sceneName":"[Hebi-Malay] Guilty Crown - 08 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":164840,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":932000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14155},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Prey-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E09.Prey-Bluray-1080p.mp4","size":189093233,"dateAdded":"2020-06-11T01:27:37.968309Z","sceneName":"[Hebi-Malay] Guilty Crown - 09 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161680,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":934000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14157},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Resonance-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E11.Resonance-Bluray-1080p.mp4","size":189162251,"dateAdded":"2020-06-20T02:20:34.857484Z","sceneName":"[Hebi-Malay] Guilty Crown - 11 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163752,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":932000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14530},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Retraction-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E10.Retraction-Bluray-1080p.mp4","size":189172171,"dateAdded":"2020-06-20T02:22:06.993583Z","sceneName":"[Hebi-Malay] Guilty Crown - 10 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162584,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":935000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14531},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Lost Christmas-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E12.The Lost Christmas-Bluray-1080p.mp4","size":188748509,"dateAdded":"2020-06-20T02:25:06.053364Z","sceneName":"[Hebi-Malay] Guilty Crown - 12 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163552,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":933000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14532},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Isolation-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E13.Isolation-Bluray-1080p.mp4","size":188968879,"dateAdded":"2020-07-14T23:32:06.521448Z","sceneName":"[Hebi-Malay] Guilty Crown - 13 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159472,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":936000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15024},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Election-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E14.Election-Bluray-1080p.mp4","size":188997667,"dateAdded":"2020-07-24T09:01:11.140873Z","sceneName":"[Hebi-Malay] Guilty Crown - 14 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158704,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":938000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15079},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Sacrifice-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E15.Sacrifice-Bluray-1080p.mp4","size":189001930,"dateAdded":"2020-07-24T23:56:24.760579Z","sceneName":"[Hebi-Malay] Guilty Crown - 15 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":157056,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":939000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15081},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Tyrant-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E16.The Tyrant-Bluray-1080p.mp4","size":188955176,"dateAdded":"2020-08-05T09:08:07.508113Z","sceneName":"[Hebi-Malay] Guilty Crown - 16 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":164584,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":932000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15159},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Exodus-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E17.Exodus-Bluray-1080p.mp4","size":188977033,"dateAdded":"2020-08-05T09:11:07.697185Z","sceneName":"[Hebi-Malay] Guilty Crown - 17 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162808,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":933000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15160},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Dear-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E18.Dear-Bluray-1080p.mp4","size":189066120,"dateAdded":"2020-08-09T23:48:46.196037Z","sceneName":"[Hebi-Malay] Guilty Crown - 18 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160936,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":936000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15224},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E20.A Diary-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E20.A Diary-Bluray-1080p.mp4","size":189043393,"dateAdded":"2020-08-20T21:49:11.056572Z","sceneName":"[Hebi-Malay] Guilty Crown - 20 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154912,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":942000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15270},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Rebirth-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E19.Rebirth-Bluray-1080p.mp4","size":189092281,"dateAdded":"2020-08-21T12:29:15.392806Z","sceneName":"[Hebi-Malay] Guilty Crown - 19 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163936,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":932000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15294},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Emergence-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E21.Emergence-Bluray-1080p.mp4","size":189099021,"dateAdded":"2020-08-29T01:50:14.547875Z","sceneName":"[Hebi-Malay] Guilty Crown - 21 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":168824,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":927000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15478},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Convergence-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E22.Convergence-Bluray-1080p.mp4","size":188782632,"dateAdded":"2020-08-29T01:50:19.92296Z","sceneName":"[Hebi-Malay] Guilty Crown - 22 Tamat (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166696,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":930000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15479},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Flux-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E04.Flux-Bluray-1080p.mp4","size":189073360,"dateAdded":"2020-08-29T01:51:44.543897Z","sceneName":"[Hebi-Malay] Guilty Crown - 04 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161472,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":935000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15480},{"seriesId":91,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Void-Sampling-Bluray-1080p.mp4","path":"\/tv\/Guilty Crown\/Season 01\/S01E03.Void-Sampling-Bluray-1080p.mp4","size":189146544,"dateAdded":"2020-08-29T01:57:44.761462Z","sceneName":"[Hebi-Malay] Guilty Crown - 03 (BD_1080p_x264 AAC)","releaseGroup":"Hebi-Malay","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158536,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":937000,"videoCodec":"x264","videoFps":30.0,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15481}],"queue":[]},"85":{"series":{"title":"Puella Magi Madoka Magica","alternateTitles":[],"sortTitle":"puella magi madoka magica","status":"ended","ended":true,"overview":"There exist familiars who have the power to grant one wish to a chosen girl. However, that girl must then become a Puella Magi, a girl with magical powers, and fight against witches, evil creatures born from curses that are responsible for murders and suicides. A schoolgirl named Madoka Kaname and her friend Sayaka Miki are approached by a familiar named Kyubey and Puella Magi named Mami Tomoe with offers of becoming magical girls. Another Puella Magi named Homura Akemi tries to prevent Madoka from making such a deal.","previousAiring":"2011-04-21T15:25:00Z","network":"MBS","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/88\/banner.jpg?lastWrite=636750447690191290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/219181-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/88\/poster.jpg?lastWrite=637103833177705080","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/219181-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/88\/fanart.jpg?lastWrite=637103833161345380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/219181-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-04-21T15:25:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":19408200615,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Puella Magi Madoka Magica","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":219181,"tvRageId":27264,"tvMazeId":2724,"firstAired":"2011-01-07T00:00:00Z","seriesType":"standard","cleanTitle":"puellamagimadokamagica","imdbId":"tt1773185","titleSlug":"puella-magi-madoka-magica","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Anime","Drama","Fantasy","Horror","Thriller"],"tags":[],"added":"2018-10-13T16:16:56.471584Z","ratings":{"votes":17193,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":17,"sizeOnDisk":19408200615,"percentOfEpisodes":100.0},"id":88},"episodes":[{"seriesId":88,"episodeFileId":4183,"seasonNumber":1,"episodeNumber":1,"title":"I First Met Her in a Dream... or Something","airDate":"2011-01-07","airDateUtc":"2011-01-06T15:00:00Z","overview":"Eighth-grader Madoka experiences an odd dream and goes to school the next day, only to learn there's a new girl in her class -- a girl from her dream.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6718},{"seriesId":88,"episodeFileId":4184,"seasonNumber":1,"episodeNumber":2,"title":"That Would Be Truly Wonderful","airDate":"2011-01-14","airDateUtc":"2011-01-13T15:00:00Z","overview":"Madoka and Sayaka find themselves in a desperate situation and are rescued by Mami Tomoe, a magical girl. Afterward, Mami invites them to her house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6719},{"seriesId":88,"episodeFileId":4185,"seasonNumber":1,"episodeNumber":3,"title":"I'm Not Afraid of Anything Anymore","airDate":"2011-01-21","airDateUtc":"2011-01-20T15:00:00Z","overview":"Madoka and Sayaka are getting used to Mami's witch hunting trial run, yet their wishes remain undecided. Mami reveals her past to the two girls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6720},{"seriesId":88,"episodeFileId":4186,"seasonNumber":1,"episodeNumber":4,"title":"Miracles and Magic Are Real","airDate":"2011-01-28","airDateUtc":"2011-01-27T15:00:00Z","overview":"After the fierce battle they witnessed, Madoka and Sayaka now fully realize the demands of being involved in the magical world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6721},{"seriesId":88,"episodeFileId":4187,"seasonNumber":1,"episodeNumber":5,"title":"There's No Way I'll Ever Regret It","airDate":"2011-02-04","airDateUtc":"2011-02-03T15:00:00Z","overview":"Now that Sayaka's wish came true by making a contract with Kyubey, her mind is clear and she doesn't seem to regret becoming a magical girl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6722},{"seriesId":88,"episodeFileId":4188,"seasonNumber":1,"episodeNumber":6,"title":"This Just Can't Be Right","airDate":"2011-02-11","airDateUtc":"2011-02-10T15:00:00Z","overview":"Homura intervenes in the battle between Sayaka and Kyoko. The next day, Sayaka and Madoka search for traces of the familiar that slipped away.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6723},{"seriesId":88,"episodeFileId":4189,"seasonNumber":1,"episodeNumber":7,"title":"Can You Face Your True Feelings?","airDate":"2011-02-18","airDateUtc":"2011-02-17T15:00:00Z","overview":"Sayaka, in low spirits, wavers between the wish that came true by accepting the destiny to fight and the high price she paid for it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6724},{"seriesId":88,"episodeFileId":4190,"seasonNumber":1,"episodeNumber":8,"title":"I Was Stupid... So Stupid","airDate":"2011-02-25","airDateUtc":"2011-02-24T15:00:00Z","overview":"Thanks to healing magic, Sayaka can fight without a scratch. But she seems extremely exhausted. On the way home, Madoka comments on Sayaka's fighting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6725},{"seriesId":88,"episodeFileId":4191,"seasonNumber":1,"episodeNumber":9,"title":"I'd Never Allow That to Happen","airDate":"2011-03-04","airDateUtc":"2011-03-03T15:00:00Z","overview":"A Grief Seed hatches, and a new witch emerges. With Homura's help, Kyoko is able to escape the witch's labyrinth while carrying Sayaka.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6726},{"seriesId":88,"episodeFileId":4192,"seasonNumber":1,"episodeNumber":10,"title":"I Won't Rely on Anyone Anymore","airDate":"2011-03-11","airDateUtc":"2011-03-10T15:00:00Z","overview":"The timid new girl is so nervous and withered. She introduces herself shyly while feeling the eyes of all students in the class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6727},{"seriesId":88,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Opening - Spin-Offs","airDate":"2011-04-01","airDateUtc":"2011-03-31T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21028},{"seriesId":88,"episodeFileId":4193,"seasonNumber":1,"episodeNumber":11,"title":"The Only Thing I Have Left to Guide Me","airDate":"2011-04-22","airDateUtc":"2011-04-21T15:00:00Z","overview":"Kyubey appears in front of Madoka, who is consumed by grief. Not understanding her emotions, he tells the history of the human race and of his kind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6728},{"seriesId":88,"episodeFileId":4194,"seasonNumber":1,"episodeNumber":12,"title":"My Very Best Friend","airDate":"2011-04-22","airDateUtc":"2011-04-21T15:25:00Z","overview":"Madoka appears in front of Homura, full of determination -- and she declares to Homura, \"I found my wish.\" But what will be her decision?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6729},{"seriesId":88,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Madoka Magica the Movie Part I: The Beginning Story","airDate":"2012-10-06","airDateUtc":"2012-10-05T15:00:00Z","overview":"In the city of Mitakihara, Kaname Madoka, along with her friend, Miki Sayaka, encounter a creature named Kyuubee and are saved from witches by magical girl Tomoe Mami. Kyuubee offers Madoka and Sayaka the chance to have any one wish granted in exchange for becoming a magical girl and fighting witches, whilst Akemi Homura, another magical girl and recent transfer student, is strongly against Madoka becoming one. Before Madoka can make a decision, however, Mami is killed by a witch, leaving Madoka too afraid to become a magical girl. Sayaka, however, decides to become a magical girl herself in order to heal the hand of her childhood friend, Kamijou Kyousuke. As Sayaka soon comes into conflict with another magical girl named Sakura Kyouko, they, along with Madoka, learn the shocking truth that their Soul Gems, the source of their magical powers, literally contain their souls.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6730},{"seriesId":88,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Madoka Magica the Movie Part II: The Eternal Story","airDate":"2012-10-13","airDateUtc":"2012-10-12T15:00:00Z","overview":"Madoka learns from Kyuubee, whose real identity is Incubator, that his species makes contracts to make girls into magical girls that inevitably become witches in order to use the energy that spawns from their despair to counter entropy in the universe. Kyouko, hoping for a chance that Sayaka can be made human again, takes Madoka with her to try and reach her humanity. This ultimately fails, with Kyouko choosing to sacrifice herself to destroy Sayaka with her. Meanwhile, it is revealed that Homura comes from another timeline, having relived the same month several times in the hope of saving Madoka from a grim fate at the hands of the ultimate witch, Walpurgisnacht. Homura attempts to face Walpurgisnacht, but is ultimately defeated and draws close to despair, feeling her efforts have become pointless. Just then, Madoka appears and uses the built up energy from several timelines to become a powerful magical girl capable of eliminating witches before they are born.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6731},{"seriesId":88,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Madoka Magica the Movie Part III: The Rebellion Story","airDate":"2013-10-26","airDateUtc":"2013-10-25T15:00:00Z","overview":"Madoka used to be a normal girl living happily. This all ended when she sacrificed herself in order to save other magical girls from the utterly cruel fate that awaited them. Unable to let her memories of Madoka die, Homura continues to fight alone in the world that Madoka left behind for humanity in order to see her smile once more.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6732},{"seriesId":88,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Concept Movie","airDate":"2015-11-27","airDateUtc":"2015-11-26T15:00:00Z","overview":"A concept movie for a new story related to the Mahou Shoujo Madoka Magica franchise. Created for the Commemorating 40 Years of Shaft: Madogatari event in Tokyo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":16868}],"episodeFile":[{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E01.As If I Met Her in My Dream-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E01.As If I Met Her in My Dream-Bluray-1080p.mkv","size":1386502388,"dateAdded":"2018-10-13T16:25:45.655271Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4183},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E02.That Would Be Really Nice-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E02.That Would Be Really Nice-Bluray-1080p.mkv","size":1298484603,"dateAdded":"2018-10-13T16:25:46.095984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:40","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4184},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E03.I'm Not Afraid Anymore-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E03.I'm Not Afraid Anymore-Bluray-1080p.mkv","size":1598519827,"dateAdded":"2018-10-13T16:25:46.733589Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4185},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E04.There Are Miracles and Magic-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E04.There Are Miracles and Magic-Bluray-1080p.mkv","size":1656072040,"dateAdded":"2018-10-13T16:25:47.051323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4186},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E05.There's No Way I Would Regret It-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E05.There's No Way I Would Regret It-Bluray-1080p.mkv","size":1599418080,"dateAdded":"2018-10-13T16:25:47.64352Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4187},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E06.This Just Isn't Right-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E06.This Just Isn't Right-Bluray-1080p.mkv","size":1584766848,"dateAdded":"2018-10-13T16:25:48.97644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4188},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Can I Face My True Feelings-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E07.Can I Face My True Feelings-Bluray-1080p.mkv","size":1641009496,"dateAdded":"2018-10-13T16:25:49.453417Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4189},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E08.I'm Such a Fool-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E08.I'm Such a Fool-Bluray-1080p.mkv","size":1824715575,"dateAdded":"2018-10-13T16:25:49.624643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:19","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4190},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E09.I Can't Forgive That Kind of Thing-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E09.I Can't Forgive That Kind of Thing-Bluray-1080p.mkv","size":1604824683,"dateAdded":"2018-10-13T16:25:50.145343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:12","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4191},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E10.I Can't Depend on Anyone Anymore-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E10.I Can't Depend on Anyone Anymore-Bluray-1080p.mkv","size":1540457481,"dateAdded":"2018-10-13T16:25:50.42121Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4192},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Final Sign Left-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E11.The Final Sign Left-Bluray-1080p.mkv","size":2062262775,"dateAdded":"2018-10-13T16:25:50.499903Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:41","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4193},{"seriesId":88,"seasonNumber":1,"relativePath":"Season 01\/S01E12.My Best Friend-Bluray-1080p.mkv","path":"\/tv\/Puella Magi Madoka Magica\/Season 01\/S01E12.My Best Friend-Bluray-1080p.mkv","size":1611166819,"dateAdded":"2018-10-13T16:25:50.536192Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:55","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":4194}],"queue":[]},"86":{"series":{"title":"Over the Garden Wall","alternateTitles":[],"sortTitle":"over garden wall","status":"ended","ended":true,"overview":"Two brothers, Wirt and Greg, find themselves lost in the Unknown; a strange forest adrift in time. With the help of a wise old Woodsman and a foul-tempered bluebird named Beatrice, Wirt and Greg must travel across this strange land, in hope of finding their way home. Join them as they encounter surprises and obstacles on their journey through the wood.","previousAiring":"2014-11-11T05:00:00Z","network":"Cartoon Network","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/78\/banner.jpg?lastWrite=636750407465335340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/281643-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/78\/poster.jpg?lastWrite=636750407468655320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/281643-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/78\/fanart.jpg?lastWrite=636750407461655370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/281643-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2014-11-11T05:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":5,"sizeOnDisk":328727097,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-11-07T05:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4512228562,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Over the Garden Wall","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":281643,"tvRageId":41271,"tvMazeId":1744,"firstAired":"2014-11-03T00:00:00Z","seriesType":"standard","cleanTitle":"overgardenwall","imdbId":"tt3718778","titleSlug":"over-the-garden-wall","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Fantasy"],"tags":[],"added":"2018-10-13T15:18:49.40753Z","ratings":{"votes":335,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":15,"sizeOnDisk":4840955659,"percentOfEpisodes":100.0},"id":78},"episodes":[{"seriesId":78,"episodeFileId":5000,"seasonNumber":0,"episodeNumber":1,"title":"Tome of the Unknown","airDate":"2013-10-24","airDateUtc":"2013-10-24T04:00:00Z","overview":"Wirt and Gregory get tired of walking so they borrow a car from a romantic songster made of vegetables.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":6478},{"seriesId":78,"episodeFileId":18823,"seasonNumber":0,"episodeNumber":3,"title":"Behind the Scenes","airDate":"2014-10-03","airDateUtc":"2014-10-03T04:00:00Z","overview":"Check out a behind the scenes look at Cartoon Network's 1st animated mini-series event, Over the Garden Wall.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":21679},{"seriesId":78,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Over the Garden Wall: A Storybook","airDate":"2014-10-13","airDateUtc":"2014-10-13T04:00:00Z","overview":"In this special read and listen storybook, follow brothers Wirt and Gregory as they travel through a mysterious place called the Unknown and face strange adventures as they try to find their way back home.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21678},{"seriesId":78,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Inside the Music","airDate":"2014-10-20","airDateUtc":"2014-10-20T04:00:00Z","overview":"Get a special look at the legendary musical talent in Over the Garden Wall, including Jack Jones, Chris Isaak and more.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21680},{"seriesId":78,"episodeFileId":4104,"seasonNumber":1,"episodeNumber":1,"title":"The Old Grist Mill","airDate":"2014-11-03","airDateUtc":"2014-11-03T05:00:00Z","overview":"Lost in the mysterious woods of the Unknown, two brothers named Wirt and Gregory run into a jaded old woodsman who warns them to beware the terrifying Beast that roams the dark forest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6481},{"seriesId":78,"episodeFileId":4104,"seasonNumber":1,"episodeNumber":2,"title":"Hard Times at the Huskin' Bee","airDate":"2014-11-03","airDateUtc":"2014-11-03T05:11:00Z","overview":"A bluebird named Beatrice offers to guide Wirt and Greg to Adelaide of the Pasture and help them get home. But when Wirt refuses her help, he ends up at the annual Pottsfield harvest festival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6482},{"seriesId":78,"episodeFileId":4106,"seasonNumber":1,"episodeNumber":3,"title":"Schooltown Follies","airDate":"2014-11-04","airDateUtc":"2014-11-04T05:00:00Z","overview":"Wirt, Greg and Beatrice get all mixed up in the musical antics of a schoolhouse of animals, a lovelorn teacher, a grouchy old benefactor, and an escaped gorilla.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6483},{"seriesId":78,"episodeFileId":4106,"seasonNumber":1,"episodeNumber":4,"title":"Songs of the Dark Lantern","airDate":"2014-11-04","airDateUtc":"2014-11-04T05:11:00Z","overview":"Beatrice is left out in the rain with a brainless horse while Wirt and Greg must ask for directions in a lively colonial tavern called \"The Dark Lantern\" where some surprising secrets are revealed about the Unknown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6484},{"seriesId":78,"episodeFileId":4107,"seasonNumber":1,"episodeNumber":5,"title":"Mad Love","airDate":"2014-11-05","airDateUtc":"2014-11-05T05:00:00Z","overview":"Is millionaire Quincy Endicott's sprawling mansion haunted by a beautiful ghost, or is the tea baron going mad? Greg and Fred the Horse are on the case! Meanwhile, Wirt and Beatrice get trapped in an armoire while searching for loose change.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6485},{"seriesId":78,"episodeFileId":4107,"seasonNumber":1,"episodeNumber":6,"title":"Lullaby in Frogland","airDate":"2014-11-05","airDateUtc":"2014-11-05T05:11:00Z","overview":"We join Wirt and Greg on a lighthearted romp aboard the Frogland Ferry as they approach Adelaide of the Pasture. But why is Beatrice acting so glum?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6486},{"seriesId":78,"episodeFileId":4108,"seasonNumber":1,"episodeNumber":7,"title":"The Ringing of the Bell","airDate":"2014-11-06","airDateUtc":"2014-11-06T05:00:00Z","overview":"After unexpected darkness tears the gang apart, Wirt takes charge and meets Loma, a young woman forced to do housework by an odious witch with a magic bell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6487},{"seriesId":78,"episodeFileId":4108,"seasonNumber":1,"episodeNumber":8,"title":"Babes in the Wood","airDate":"2014-11-06","airDateUtc":"2014-11-06T05:11:00Z","overview":"While Wirt and Greg lay down to rest, they're drawn into a dreamworld of cherubs, flowers, and clouds where Greg must battle the North Wind. Meanwhile, Wirt has given up hope of getting home, causing Greg to realize that it may take more than dreams and wishes to complete their journey.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6488},{"seriesId":78,"episodeFileId":4109,"seasonNumber":1,"episodeNumber":9,"title":"Into the Unknown","airDate":"2014-11-07","airDateUtc":"2014-11-07T05:00:00Z","overview":"The origin of Wirt and Greg\u2019s descent into the Unknown reveals itself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6489},{"seriesId":78,"episodeFileId":4109,"seasonNumber":1,"episodeNumber":10,"title":"The Unknown","airDate":"2014-11-07","airDateUtc":"2014-11-07T05:11:00Z","overview":"The Beast has come. The final chapter begins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6490},{"seriesId":78,"episodeFileId":18824,"seasonNumber":0,"episodeNumber":5,"title":"Behind Over the Garden Wall","airDate":"2014-11-11","airDateUtc":"2014-11-11T05:00:00Z","overview":"DVD\/Blu-ray extra","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":21681}],"episodeFile":[{"seriesId":78,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.The Old Grist Mill + Hard Times at the Huskin' Bee-HDTV-1080p.mp4","path":"\/tv\/Over the Garden Wall\/Season 01\/S01E01E02.The Old Grist Mill + Hard Times at the Huskin' Bee-HDTV-1080p.mp4","size":894750476,"dateAdded":"2018-10-13T15:19:05.278327Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155842,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5108666,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4104},{"seriesId":78,"seasonNumber":1,"relativePath":"Season 01\/S01E03E04.Schooltown Follies + Songs of the Dark Lantern-HDTV-1080p.mp4","path":"\/tv\/Over the Garden Wall\/Season 01\/S01E03E04.Schooltown Follies + Songs of the Dark Lantern-HDTV-1080p.mp4","size":944059742,"dateAdded":"2018-10-13T15:19:05.374455Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153709,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5323664,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4106},{"seriesId":78,"seasonNumber":1,"relativePath":"Season 01\/S01E05E06.Mad Love + Lullaby in Frogland-HDTV-1080p.mp4","path":"\/tv\/Over the Garden Wall\/Season 01\/S01E05E06.Mad Love + Lullaby in Frogland-HDTV-1080p.mp4","size":918252433,"dateAdded":"2018-10-13T15:19:05.433713Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153869,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5168237,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4107},{"seriesId":78,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08.The Ringing of the Bell + Babes in the Wood-HDTV-1080p.mp4","path":"\/tv\/Over the Garden Wall\/Season 01\/S01E07E08.The Ringing of the Bell + Babes in the Wood-HDTV-1080p.mp4","size":890766640,"dateAdded":"2018-10-13T15:19:05.48942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155322,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5006308,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4108},{"seriesId":78,"seasonNumber":1,"relativePath":"Season 01\/S01E09E10.Into the Unknown + The Unknown-HDTV-1080p.mp4","path":"\/tv\/Over the Garden Wall\/Season 01\/S01E09E10.Into the Unknown + The Unknown-HDTV-1080p.mp4","size":864399271,"dateAdded":"2018-10-13T15:19:05.55729Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155887,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4842590,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4109},{"seriesId":78,"seasonNumber":0,"relativePath":"Specials\/S00E01.Tome of the Unknown-Bluray-1080p.mkv","path":"\/tv\/Over the Garden Wall\/Specials\/S00E01.Tome of the Unknown-Bluray-1080p.mkv","size":184984902,"dateAdded":"2018-10-20T10:48:23.08716Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2552030,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"8:59","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5000},{"seriesId":78,"seasonNumber":0,"relativePath":"Specials\/S00E03.Deleted Animatics-Bluray-1080p.mkv","path":"\/tv\/Over the Garden Wall\/Specials\/S00E03.Deleted Animatics-Bluray-1080p.mkv","size":19496715,"dateAdded":"2021-08-13T23:33:31.834999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":79993,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":622276,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"3:41","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18823},{"seriesId":78,"seasonNumber":0,"relativePath":"Specials\/S00E02.Behind Over the Garden Wall-Bluray-1080p.mkv","path":"\/tv\/Over the Garden Wall\/Specials\/S00E02.Behind Over the Garden Wall-Bluray-1080p.mkv","size":124245480,"dateAdded":"2021-08-13T23:33:31.844252Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":79997,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1902323,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"8:20","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18824}],"queue":[]},"87":{"series":{"title":"One-Punch Man","alternateTitles":[{"title":"One Punch Man S2","sceneSeasonNumber":2},{"title":"One Punch Man (2019)","sceneSeasonNumber":2}],"sortTitle":"one punch man","status":"continuing","ended":false,"overview":"Saitama is a superhero who has trained so hard that his hair has fallen out, and who can overcome any enemy with one punch. However, because he is so strong, he has become bored and frustrated that he wins all of his battles too easily.","previousAiring":"2019-07-02T16:30:00Z","network":"TV Tokyo","airTime":"01:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/92\/banner.jpg?lastWrite=637100124009191570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/293088-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/92\/poster.jpg?lastWrite=637569938627505110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/293088\/posters\/60a38fe89e639.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/92\/fanart.jpg?lastWrite=637100124007231600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/293088-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-12-19T16:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":24489332225,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-07-02T16:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6284356603,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/One-Punch Man","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":293088,"tvRageId":0,"tvMazeId":4201,"firstAired":"2015-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"onepunchman","imdbId":"tt4508902","titleSlug":"one-punch-man","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Comedy","Science Fiction"],"tags":[],"added":"2018-10-13T16:18:42.237382Z","ratings":{"votes":3848,"value":8.9},"statistics":{"seasonCount":2,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":38,"sizeOnDisk":30773688828,"percentOfEpisodes":100.0},"id":92},"episodes":[{"seriesId":92,"episodeFileId":6320,"seasonNumber":1,"episodeNumber":1,"title":"The Strongest Man","airDate":"2015-10-04","airDateUtc":"2015-10-03T16:30:00Z","overview":"Saitama is a guy who\u2019s a hero for fun. After saving a child from certain death, he decided to become a hero and trained hard for three years. Though he\u2019s now so strong he can defeat any opponent with a single punch, lately he feels as if, in exchange for overwhelming power, he\u2019s lost something even more important.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6836},{"seriesId":92,"episodeFileId":6321,"seasonNumber":1,"episodeNumber":2,"title":"The Lone Cyborg","airDate":"2015-10-11","airDateUtc":"2015-10-10T16:30:00Z","overview":"A monster is moving toward City Z, one that has been created by the mysterious organization known as The House of Evolution. Genos, a young cyborg, attempts to stop it, but gets in over his head before Saitama happens along.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6837},{"seriesId":92,"episodeFileId":6322,"seasonNumber":1,"episodeNumber":3,"title":"The Obsessive Scientist","airDate":"2015-10-18","airDateUtc":"2015-10-17T16:30:00Z","overview":"The narration describes the story of Doctor Genus, brilliant young scientist with ideas of artificially evolving humanity becoming disillusioned with the world, eventually discovering the secret to immortality and creating multiple clones of himself. Saitama cuts off the narration in his impatience and Armored Gorilla then explains that Doctor Genus wants Saitama for his experiments. Genos and Saitama decide to attack immediately, since the store discount day is the next day. Before they leave, Genos asks Armored Gorilla about any cyborgs active four years ago that have destroyed any towns, which Armored Gorilla denies. In preparation for Saitama's arrival, the House of Evolution sets traps in their facility and reluctantly decide to release Asura Rhino. Once they arrive, Genos destroys the above-ground facility with a single blast before heading underground. The released Asura Rhino fights with Genos, taking no damage in the process. Asura Rhino then faces off against Saitama, but backs off when he detects how powerful Saitama really is. Saitama then reveals to the room his somewhat mundane daily training regime of 100 push-ups, 100 sit-ups, 100 squats and 10 km of running, much to Genos's disbelief. Asura Rhino unleashes his Asura Mode and appears to be beating Saitama back, but it transpires that Saitama was just shocked by the realization that the store discount day was that day instead of the next and defeats Asura Rhino easily, leaving soon after with Genos to catch the rest of the discount day. Having witnessed this, Doctor Genus abandons his plans of artificial evolution. After the credits, officials from the Heroes Association inspect the House of Evolution blast site and discuss Genos's destructive power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6838},{"seriesId":92,"episodeFileId":6323,"seasonNumber":1,"episodeNumber":4,"title":"The Modern Ninja","airDate":"2015-10-26","airDateUtc":"2015-10-25T16:30:00Z","overview":"A group of battlesuit-clad terrorists called \"The Paradisers\" appears in City F, led by an enormous man known as Hammerhead. Calling for the redistribution of wealth, the group targets the fat-cat Zeniru, who in turn dispatches his bodyguard to defeat them. Unfortunately, Saitama is on the same errand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6839},{"seriesId":92,"episodeFileId":6324,"seasonNumber":1,"episodeNumber":5,"title":"The Ultimate Master","airDate":"2015-11-01","airDateUtc":"2015-10-31T16:30:00Z","overview":"Saitama and Genos find out about the hero registration and both take the tests to certify. Genos gets \"S(Special)\" and Saitama gets a \"C\" grade. Meanwhile, Genos became the disciple of Saitama and learned about the power of saitama's punch on a training session.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6840},{"seriesId":92,"episodeFileId":6325,"seasonNumber":1,"episodeNumber":6,"title":"The Terrifying City","airDate":"2015-11-08","airDateUtc":"2015-11-07T16:30:00Z","overview":"It's been five days since Saitama became a professional hero and he has yet to do anything heroic. When Genos informs him that C-class heroes who don't fight bad guys are dropped from the hero registry after a week of inaction, Saitama heads out on patrol, yet can't find any criminals or monsters to stop.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6841},{"seriesId":92,"episodeFileId":6326,"seasonNumber":1,"episodeNumber":7,"title":"The Ultimate Disciple","airDate":"2015-11-15","airDateUtc":"2015-11-14T16:30:00Z","overview":"An enormous meteor hurtles toward City Z, forcing the Hero Association to ask its S Class heroes to respond. When all their efforts prove in vain, Genos decides it's up to him to protect the home of his master and stop the meteor, no matter what the cost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6842},{"seriesId":92,"episodeFileId":6327,"seasonNumber":1,"episodeNumber":8,"title":"The Deep Sea King","airDate":"2015-11-22","airDateUtc":"2015-11-21T16:30:00Z","overview":"A pack of monsters calling themselves the \"Clan of the Seafolk\" arrive on the shores of City J intent on invading the land. When the hero sent to fight them is defeated easily by the Deep Sea King himself, Saitama and Genos head for the city to help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6843},{"seriesId":92,"episodeFileId":6328,"seasonNumber":1,"episodeNumber":9,"title":"Unyielding Justice","airDate":"2015-11-29","airDateUtc":"2015-11-28T16:30:00Z","overview":"The Deep Sea King has defeated every hero who opposed him with ease. Genos is preparing to attack while Licenseless-Rider and Saitama rush to the evacuation shelter, where the battle continues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6844},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Road to Hero","airDate":"2015-12-04","airDateUtc":"2015-12-03T16:30:00Z","overview":"A story about Saitama from when he still had hair and his only costume was a track suit. Several shops in Saitama's neighbourhood have gone out of business and the owner of the last one left needs his help.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17974},{"seriesId":92,"episodeFileId":6329,"seasonNumber":1,"episodeNumber":10,"title":"Unparalleled Peril","airDate":"2015-12-06","airDateUtc":"2015-12-05T16:30:00Z","overview":"Saitama tags along to an emergency meeting of Class S heroes and discovers that a seer has foretold a serious danger threatening the Earth. Though the crisis could occur anytime in the next six months, the heroes are surprised to hear the roar of explosions that very hour!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6845},{"seriesId":92,"episodeFileId":6330,"seasonNumber":1,"episodeNumber":11,"title":"The Dominator of the Universe","airDate":"2015-12-13","airDateUtc":"2015-12-12T16:30:00Z","overview":"As a colossal spaceship floats in the skies above City A, a member of its monstrous crew battles on the ground against a group of S Class heroes. Despite their powers, they can't seem to finish it off. Meanwhile, Saitama has boarded the enemy ship on his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6846},{"seriesId":92,"episodeFileId":6331,"seasonNumber":1,"episodeNumber":12,"title":"The Strongest Hero","airDate":"2015-12-20","airDateUtc":"2015-12-19T16:30:00Z","overview":"The inconceivably powerful Lord Boros has traveled untold distances in search of someone who can cure his boredom: Saitama! With the fate of humanity in the balance, will the two champions at last find in each other the worthy opponent they've been searching for?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6847},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Shadow That Snuck Up Too Close","airDate":"2015-12-24","airDateUtc":"2015-12-23T16:30:00Z","overview":"A story set sometime between Mosquito Girl's defeat and Genos showing up to Saitama's apartment. Genos wants to learn the secret to Saitama's power and decides to follow him and to observe everything he does. At the same time, Saitama is convinced that someone is stalking him.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17975},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Pupil Who is an Extremely Poor Talker","airDate":"2016-01-28","airDateUtc":"2016-01-27T16:30:00Z","overview":"Saitama gives Genos a key to their apartment and they both mull over items to buy for dinner; however, upon remembering a limited time sale at two separate supermarkets, the pair split up. Genos then senses a monster at a nearby shopping strip and defeats it. However, this makes him miss one of the sales. Once he reaches the other (closed down) supermarket, Genos bumps into the Dai Fuu Family's No. 2 man and the rival C-Class Pacino Family, headed by Don Pacino. Pacino mistakenly believes Genos is associated with the Dai Fuu Family; he steals the apartment key and kidnaps both men, promising to let them and the keys go once Genos states his case. Once Genos finishes telling his worthless story to the Pacino family, Don Pacino becomes angry with Genos and the family opens fire. Genos easily defeats them and takes his key and the Dai Fuu Family's No. 2 man with him. After explaining his tardiness to Saitama, the pair enjoy some sukiyaki.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17976},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Overly-Complicated Ninja","airDate":"2016-02-24","airDateUtc":"2016-02-23T16:30:00Z","overview":"After the events of episode 4, Sonic strive to strict training muffled to the mountain, but had spent the days of troubled with nightmares to be a nasty blow to the groin from Saitama who suffered a defeat. Man of Matagi had seen such a situation. He is also \"formidable enemy\" in defeated in the past of the owner ....","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17977},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Excessively Pushy Bang","airDate":"2016-03-25","airDateUtc":"2016-03-24T16:30:00Z","overview":"After the events of episode 7, Bang begins to spy on Saitama and Genos to gauge their abilities. Hopeful that his Water Stream Rock Smashing Fist martial arts is stronger, and that proving so will coerce Saitama and Genos to study under him, Bang invites Saitama and Genos to his dojo under the pretense of giving them free meat.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17978},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The Sisters Who Have Too Many Things Happening","airDate":"2016-04-22","airDateUtc":"2016-04-21T16:30:00Z","overview":"During a coincidental train ride, Genos and Fubuki are put to the test when an anti-Hero Association group plants a bomb on the train.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17979},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Murder Case That is Too Impossible","airDate":"2016-05-27","airDateUtc":"2016-05-26T16:30:00Z","overview":"Child Emperor investigates the murder of Zombieman.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17980},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"A Super Serious Look Back!","airDate":"2019-04-03","airDateUtc":"2019-04-02T16:30:00Z","overview":"One Punch Man 2nd Season Commemorative Special","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17981},{"seriesId":92,"episodeFileId":10357,"seasonNumber":2,"episodeNumber":1,"title":"Return of the Hero","airDate":"2019-04-10","airDateUtc":"2019-04-09T16:30:00Z","overview":"Saitama is out shopping with Genos in tow when the pair come across G4, a demonic robot on a mission to eliminate King. Elsewhere, Sitch attempts to recruit various cutthroats, villains and assassins of the underworld to help the Hero Association.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":9499},{"seriesId":92,"episodeFileId":10358,"seasonNumber":2,"episodeNumber":2,"title":"Human Monster","airDate":"2019-04-17","airDateUtc":"2019-04-16T16:30:00Z","overview":"Garou issues a declaration of war on the Hero Association through terrifying means, Hellish Blizzard gives Saitama an ultimatum, and Genos decides to eliminate his master\u2019s stalker, Speed-o\u2019-Sound Sonic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10944},{"seriesId":92,"episodeFileId":7371,"seasonNumber":2,"episodeNumber":3,"title":"The Hunt Begins","airDate":"2019-04-24","airDateUtc":"2019-04-23T16:30:00Z","overview":"Garou, out hunting heroes, can barely contain his excitement when he gets the chance to battle the S Class hero Tank-top Master. Meanwhile, Silverfang shutters his dojo to begin his own hunt of his former disciple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10945},{"seriesId":92,"episodeFileId":7397,"seasonNumber":2,"episodeNumber":4,"title":"The Metal Bat","airDate":"2019-05-01","airDateUtc":"2019-04-30T16:30:00Z","overview":"Assigned to guard a VIP and his son, Metal Bat couldn't be less thrilled. But when the group is suddenly attacked all hell breaks loose. Meanwhile, Saitama has disguised himself as Charanko in order to enter the \"Super Fight\" martial arts tournament.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10946},{"seriesId":92,"episodeFileId":7421,"seasonNumber":2,"episodeNumber":5,"title":"The Martial Arts Tournament","airDate":"2019-05-08","airDateUtc":"2019-05-07T16:30:00Z","overview":"Monsters from the Monster Association launch simultaneous attacks on all the human cities, attempting to overwhelm the forces of the Hero Association. Meanwhile, the \u201cSuper Fight\u201d martial arts tournament kicks off.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10947},{"seriesId":92,"episodeFileId":7446,"seasonNumber":2,"episodeNumber":6,"title":"The Uprising of the Monsters","airDate":"2019-05-15","airDateUtc":"2019-05-14T16:30:00Z","overview":"The Super Fight tournament kicks off while Genos takes on multiple monsters who have appeared in City C. Elsewhere, countless monsters are wreaking havoc in multiple areas, but the Hero Association is being overwhelmed by the sheer number of threats.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10948},{"seriesId":92,"episodeFileId":13135,"seasonNumber":2,"episodeNumber":7,"title":"The Class S Heroes","airDate":"2019-05-22","airDateUtc":"2019-05-21T16:30:00Z","overview":"As the Super Fight tournament heads for its grand finale, the Class S heroes battle to hold back the tide of monster incursions. Meanwhile, Atomic Samurai is setting in motion a plan of his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10949},{"seriesId":92,"episodeFileId":7515,"seasonNumber":2,"episodeNumber":8,"title":"The Resistance of the Strong","airDate":"2019-05-29","airDateUtc":"2019-05-28T16:30:00Z","overview":"Goketsu, the first Super Fight Tournament champion, arrives in the stadium. Having now become a monster, he\u2019s aiming to force the Super Fight competitors to turn into monsters themselves. When several do, it\u2019s up to Suiryu to take them on alone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10950},{"seriesId":92,"episodeFileId":7566,"seasonNumber":2,"episodeNumber":9,"title":"The Troubles of the Strongest","airDate":"2019-06-12","airDateUtc":"2019-06-11T16:30:00Z","overview":"Just as Suiryu finds himself in the depths of despair, Saitama suddenly appears to help him out. But despite all Saitama\u2019s strength, there\u2019s still something bugging the hero that he just can\u2019t seem to shake","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10951},{"seriesId":92,"episodeFileId":7573,"seasonNumber":2,"episodeNumber":10,"title":"Justice Under Siege","airDate":"2019-06-19","airDateUtc":"2019-06-18T16:30:00Z","overview":"The Monster Association issues a challenge to the Hero Association, telling them they have only three days to rescue the hostage Waganma. Elsewhere, Garou tries to recover from his constant fighting, but things don\u2019t quite go as planned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10952},{"seriesId":92,"episodeFileId":7632,"seasonNumber":2,"episodeNumber":11,"title":"Everyone's Dignity","airDate":"2019-06-26","airDateUtc":"2019-06-25T16:30:00Z","overview":"Garou is at last surrounded by multiple heroes and forced to fight, even though he\u2019s covered in wounds and nearly at his limit. The hero hunter still has his incredible ability to read opponents\u2019 fighting styles, but there are surprises in store for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10953},{"seriesId":92,"episodeFileId":7657,"seasonNumber":2,"episodeNumber":12,"title":"Cleaning Up the Disciple's Mess","airDate":"2019-07-03","airDateUtc":"2019-07-02T16:30:00Z","overview":"Silverfang and Bomb catch up with Garou while the hero hunter is battling Genos, starting a whirlwind battle that draws in more and more combatants as it marches towards its hair-raising climax!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":10954},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Saitama and Those with Reasonable Abilities","airDate":"2019-10-17","airDateUtc":"2019-10-16T16:30:00Z","overview":"Saitama meets a group of villains in a public restroom who mistake him for their ally, they introduce themselves to Saitama, but when he reveals he's a hero, attempt to defeat him.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17982},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Old Dudes and Fishing","airDate":"2019-11-26","airDateUtc":"2019-11-25T16:30:00Z","overview":"Atomic Samurai and Bang go out fishing to a lake. Giant Salamander attacks the lake and Chain'n'toad and Mumen Rider try to stop it but fail, and Chain'n'toad is eaten. They are then saved by Atomic Samurai who kills the monster. Kamikaze and Bang talk about how many young heroes these days don't live to the essence of a \"hero\", and Bang states the Hero Association and their ranking system is partly to blame.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17983},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Genos and Memory Loss","airDate":"2019-12-25","airDateUtc":"2019-12-24T16:30:00Z","overview":"As Genos and Saitama watch TV, Saitama accidentally knocks Genos out trying to reach his potato chips and Genos wakes up with memory loss.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17990},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Games and Rivals","airDate":"2020-01-28","airDateUtc":"2020-01-27T16:30:00Z","overview":"Saitama brings Genos to a tournament for the fighting video game \"Wild Animals\" due to the grand prize being five million yen. Several locations all over the country are being used as venues, and the battles take place online.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17991},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Puri Puri Prisoner and the Escaped Prisoners","airDate":"2020-02-27","airDateUtc":"2020-02-26T16:30:00Z","overview":"One stormy night, a monster emerges from a junkyard and begins making its way towards Smelly Lid Prison. Noticing its approach, Puri-Puri Prisoner breaks out of his cell and quickly defeats the monster. However, he damages the prison's electricity in the process, allowing a handful of inmates to escape.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17992},{"seriesId":92,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Zombieman Murder Case 2: A Chalet Amid the Blizzard, and the Ones Bothered by the Cold","airDate":"2020-03-27","airDateUtc":"2020-03-26T16:30:00Z","overview":"Child Emperor, Zombieman, Superalloy Darkshine, and Metal Bat are dispatched to a forlorn, snowy mountain to hunt down a monster.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17993}],"episodeFile":[{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Strongest Man-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E01.The Strongest Man-Bluray-1080p.mkv","size":2132723122,"dateAdded":"2019-01-07T01:33:51.977255Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":735424,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9450587,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6320},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Lone Cyborg-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E02.The Lone Cyborg-Bluray-1080p.mkv","size":2230342684,"dateAdded":"2019-01-07T01:35:14.456971Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":743074,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9964630,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6321},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Obsessive Scientist-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E03.The Obsessive Scientist-Bluray-1080p.mkv","size":1991302729,"dateAdded":"2019-01-07T01:37:32.784877Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768819,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8606860,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6322},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Modern Ninja-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E04.The Modern Ninja-Bluray-1080p.mkv","size":1905825519,"dateAdded":"2019-01-07T01:39:55.919258Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":724575,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8227672,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6323},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Ultimate Master-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E05.The Ultimate Master-Bluray-1080p.mkv","size":1855325004,"dateAdded":"2019-01-07T01:41:49.038664Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":694124,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8012461,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6324},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Terrifying City-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E06.The Terrifying City-Bluray-1080p.mkv","size":1816534754,"dateAdded":"2019-01-07T01:43:28.838203Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":739667,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7711929,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6325},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Ultimate Disciple-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E07.The Ultimate Disciple-Bluray-1080p.mkv","size":2051129962,"dateAdded":"2019-01-07T01:45:57.715314Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":750442,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8972384,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6326},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Deep Sea King-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E08.The Deep Sea King-Bluray-1080p.mkv","size":2182127599,"dateAdded":"2019-01-07T01:47:13.217433Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":803009,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9575932,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6327},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Unyielding Justice-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E09.Unyielding Justice-Bluray-1080p.mkv","size":2169259959,"dateAdded":"2019-01-07T01:49:08.178354Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":758087,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9619329,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6328},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Unparalleled Peril-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E10.Unparalleled Peril-Bluray-1080p.mkv","size":1811720888,"dateAdded":"2019-01-07T01:50:54.59846Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":724277,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7713833,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6329},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Dominator of the Universe-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E11.The Dominator of the Universe-Bluray-1080p.mkv","size":2099797296,"dateAdded":"2019-01-07T01:52:31.436976Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":790558,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9167187,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6330},{"seriesId":92,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Strongest Hero-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 01\/S01E12.The Strongest Hero-Bluray-1080p.mkv","size":2243242709,"dateAdded":"2019-01-07T01:54:26.205137Z","releaseGroup":"Kametsu","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":770473,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10204355,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6331},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Hunt Begins-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E03.The Hunt Begins-WEBDL-1080p.mkv","size":238351588,"dateAdded":"2019-04-23T18:36:31.110864Z","sceneName":"One.Punch.Man.S02E03.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito[UTR]","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201820,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1920x1080","runTime":"23:51","scanType":"","subtitles":"English \/ Arabic \/ Spanish \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7371},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Metal Bat-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E04.The Metal Bat-WEBDL-1080p.mkv","size":233730047,"dateAdded":"2019-05-04T22:37:31.719592Z","sceneName":"One.Punch.Man.S02E04.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito[UTR]","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1176014,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:51","scanType":"","subtitles":"English \/ Arabic \/ Spanish \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7397},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Martial Arts Tournament-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E05.The Martial Arts Tournament-WEBDL-1080p.mkv","size":223910793,"dateAdded":"2019-05-08T01:24:45.695223Z","sceneName":"One.Punch.Man.S02E05.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito[UTR]","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1121329,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:52","scanType":"","subtitles":"English \/ Arabic \/ Spanish \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7421},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Uprising of the Monsters-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E06.The Uprising of the Monsters-WEBDL-1080p.mkv","size":211857595,"dateAdded":"2019-05-15T01:35:13.388657Z","sceneName":"One.Punch.Man.S02E06.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito[UTR]","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1053667,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:53","scanType":"","subtitles":"English \/ Arabic \/ Spanish \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7446},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Resistance of the Strong-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E08.The Resistance of the Strong-WEBDL-1080p.mkv","size":254493662,"dateAdded":"2019-05-29T00:02:54.472162Z","sceneName":"One.Punch.Man.S02E08.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito[UTR]","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1292357,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:51","scanType":"","subtitles":"English \/ Arabic \/ Spanish \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7515},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Troubles of the Strongest-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E09.The Troubles of the Strongest-WEBDL-1080p.mkv","size":163010325,"dateAdded":"2019-06-12T05:47:25.581763Z","sceneName":"One.Punch.Man.S02E09.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":781456,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7566},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Justice Under Siege-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E10.Justice Under Siege-WEBDL-1080p.mkv","size":207815365,"dateAdded":"2019-06-19T01:19:22.891311Z","sceneName":"One.Punch.Man.S02E10.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1032155,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7573},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Everyone's Dignity-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E11.Everyone's Dignity-WEBDL-1080p.mkv","size":295456835,"dateAdded":"2019-06-26T02:04:39.795093Z","sceneName":"One.Punch.Man.S02E11.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1521554,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:51","scanType":"","subtitles":"English \/ Spanish \/ Arabic \/ French \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7632},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Cleaning Up the Disciple\u2019s Mess-WEBDL-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E12.Cleaning Up the Disciple\u2019s Mess-WEBDL-1080p.mkv","size":346866077,"dateAdded":"2019-07-03T01:20:14.183501Z","sceneName":"One.Punch.Man.S02E12.1080p.WEBRip.x265.HEVC.10bit.AAC.2.0-theincognito","releaseGroup":"theincognito","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1809138,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:49","scanType":"","subtitles":"English \/ Arabic \/ French \/ Spanish \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7657},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Return of the Hero-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E01.Return of the Hero-Bluray-1080p.mkv","size":1159083037,"dateAdded":"2019-11-29T19:50:44.551557Z","releaseGroup":"GJM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6179072,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10357},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Human Monster-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E02.Human Monster-Bluray-1080p.mkv","size":1307689615,"dateAdded":"2019-11-29T19:50:46.592487Z","releaseGroup":"GJM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7029004,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10358},{"seriesId":92,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Class S Heroes-Bluray-1080p.mkv","path":"\/tv\/One-Punch Man\/Season 02\/S02E07.The Class S Heroes-Bluray-1080p.mkv","size":1642091664,"dateAdded":"2020-04-23T16:04:17.875211Z","sceneName":"One Punch Man - S02E07 & E08 [BD 1080p HEVC]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165315,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9006979,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13135}],"queue":[]},"88":{"series":{"title":"Deadman Wonderland","alternateTitles":[],"sortTitle":"deadman wonderland","status":"ended","ended":true,"overview":"A massive earthquake ravaged Japan's mainland and destroyed most of Tokyo, sinking three-quarters of it into the ocean. Ten years later, the story starts with Igarashi Ganta, a seemingly ordinary, unassuming middle school student attending Nagano Prefecture's middle school. An escapee, a survivor of the great earthquake, Ganta has no memories of the tragedy and has lived a simple, normal life. This all changes one day when a strange man covered in blood and crimson armour appears, floating, out of his classroom windows. Smirking madly, this Red Man massacres Ganta's entire class and, instead of killing him, embeds a red crystal shard in his chest. Within days of the massacre, Ganta is declared the sole suspect and, following a suspiciously quick trial, is sentenced to life imprisonment in Deadman Wonderland, a massive theme-park-like prison.","previousAiring":"2011-07-01T15:00:00Z","network":"tvk","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/83\/banner.jpg?lastWrite=637139521434918940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/247997-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/83\/poster.jpg?lastWrite=637241299609285150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/247997-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/83\/fanart.jpg?lastWrite=637103832510197180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/247997-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-07-01T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":2631932196,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Deadman Wonderland","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":247997,"tvRageId":28064,"tvMazeId":8254,"firstAired":"2011-04-16T00:00:00Z","seriesType":"standard","cleanTitle":"deadmanwonderland","imdbId":"tt1909447","titleSlug":"deadman-wonderland","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Drama"],"tags":[],"added":"2018-10-13T16:15:26.545739Z","ratings":{"votes":6402,"value":7.4},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":13,"sizeOnDisk":2631932196,"percentOfEpisodes":100.0},"id":83},"episodes":[{"seriesId":83,"episodeFileId":14566,"seasonNumber":1,"episodeNumber":1,"title":"Death Row Inmate","airDate":"2011-04-16","airDateUtc":"2011-04-15T15:00:00Z","overview":"As Ganta Igarashi and his classmates plan for a class trip to Deadman Wonderland, a privately owned prison that also serves as an amusement park, a mysterious red man appears and changes their lives forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6570},{"seriesId":83,"episodeFileId":14567,"seasonNumber":1,"episodeNumber":2,"title":"Antidote (Candy)","airDate":"2011-04-23","airDateUtc":"2011-04-22T15:00:00Z","overview":"Ganta learns from a fellow inmate, Y\u014d Takami, that in order to have a decent meal in the prison, he needs to earn Cast Points. He learns of a 'Dog Race' in which he can win a big prize, which he and Shiro decide to enter. In the lockerroom, they encounter a fierce inmate named Kazumasi Kouzuma who drives fear into the others until the warden silences him. Ganta soon learns that in order to avoid being killed by a poison, he needs to eat an antidote known as Candy, which was secretly stolen from his bag by Y\u014d the other day. Ganta realises that in order to survive, he needs to win the race in order to purchase a new one, but he soon learns the course is littered with actual death traps. Thanks in part to Shiro's innocent manner, Ganta and Shiro make it to the final stage against Kasumasi where they have to hold onto a ball and avoid falling into a spike pit. Ganta decides to stand up to Kazumasi, who eventually falls to his death. In the closing moments of the round, Ganta is forced to sacrifice the ball, and the prize money, in order to keep Shiro from falling and keep their promise of eating the runner up prize together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6571},{"seriesId":83,"episodeFileId":14568,"seasonNumber":1,"episodeNumber":3,"title":"G Block","airDate":"2011-04-30","airDateUtc":"2011-04-29T15:00:00Z","overview":"Put in charge of observing him by the promoter, Tsunenaga Tamaki, Y\u014d gives Ganta a piece of Candy so he can keep living, unaware that he's putting him in his debt. Meanwhile, the red man, known as the Wretched Egg, breaks lose and appears before Ganta. Ganta tries attacking him using his own abilities, before the Wretched Egg escapes and Ganta falls unconscious. After waking up, Ganta hears from the other witnesses that they keep Wretched Egg locked up in the G-Block of the prison, so he and Shiro head towards there. Deeming him dangerous, Captain Makina puts the facility on lockdown and sends a fierce security robot after Ganta. As it approaches them, Ganta and Y\u014d follow Shiro into a secret passage leading to the G-Block. As Shiro confronts the robot, it is destroyed by the arrival of another inmate with the same powers as Ganta.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6572},{"seriesId":83,"episodeFileId":14569,"seasonNumber":1,"episodeNumber":4,"title":"Crow Claw","airDate":"2011-05-07","airDateUtc":"2011-05-06T15:00:00Z","overview":"Believing him to be the red man, Ganta attacks the strange inmate, known as Senji \"Crow\" Kiyomasa, but falls at a disadvantage against the blades he can form with his blood. After learning the nature of his power, The Branches of Sin, Ganta launches a counterattack, though soon realizes he is not the red man, but one of several 'Deadmen' with that power. Crow tries to attack Ganta again, but finds himself weak against Shiro before a special unit appears, tranquilising Ganta and Crow and taking Shiro and Y\u014d to an empty corridor. As Ganta is examined, he comes face to face with Tamaki, who reveals he rigged Ganta's jury verdict to get him sent to Deadman Wonderland before revealing Ganta will face off against Crow in a battle the next day, tempting him with the prospect of coming face to face with Wretched Egg. As Ganta is tortured with footage of what a Corpse Carnival entails, Makina decides to confront the director concerning the mysteries of Block G.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6573},{"seriesId":83,"episodeFileId":14570,"seasonNumber":1,"episodeNumber":5,"title":"Carnival Corpse","airDate":"2011-05-14","airDateUtc":"2011-05-13T15:00:00Z","overview":"Ganta is thrusted into his Corpse Carnival match with Crow and is at a disadvantage as his projectiles use too much blood and cause him to develop anemia. As he becomes helpless, he recalls memories of Shiro and manages to stand back up, using the environment to get a hit on Crow. After escaping from the corridor, Y\u014d and Shiro head towards G-Block after Y\u014d hears the whereabouts of a women he is searching for. After Ganta recovers from his victory, he is horrified to find that Crow is forced to have one of his eyes removed as a result of losing. As Y\u014d uses Shiro as a diversion so he can escape on his own, he bears witness to her true destructive ability, as she herself has the Branches of Sin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6574},{"seriesId":83,"episodeFileId":14571,"seasonNumber":1,"episodeNumber":6,"title":"Hummingbird","airDate":"2011-05-21","airDateUtc":"2011-05-20T15:00:00Z","overview":"As Shiro falls unconcsious and is picked up by some strange men whilst Y\u014d continues his way to G-Block, Ganta meets a girl named Minatsuki, another Sin user who had killed her abusive father. Ganta offers to help Minatsuki escape, but soon learns she is his opponent in the next Corpse Carnival. When the match begins, Minatsuki's personality changes completely and attacks with her whip-like Branches of Sin, revealing she had manipulated him into taking an injury prior to the match. However, Y\u014d appears, revealing Minatsuki to be his little sister, saying that he plans to gain enough Cast Points to buy her freedom before entering the arena. Minatsuki tries to manipulate Y\u014d against Ganta, but he turns on her instead, having learnt the truth behind his father's death. Minatsuki captures Y\u014d and uses him as a human shield against Ganta, revealing she has shown hatred ever since her mother left her for dead during the Red Hole incident. Ganta manages to disable one of her whips and free Y\u014d, before knocking her out with a headbutt, winning the match.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6575},{"seriesId":83,"episodeFileId":14572,"seasonNumber":1,"episodeNumber":7,"title":"Wretched Egg","airDate":"2011-05-28","airDateUtc":"2011-05-27T15:00:00Z","overview":"After a strange quake occurs, during which Yo rushes to keep Minatsuki from harm, Ganta starts to remember things about Shiro, who is revealed to be the Wretched Egg. As Ganta recalls his childhood with Shiro, Yo can't bring himself to mention what he had seen her do. As Yo goes to recover the casts that were stolen from him, he learns from Tamaki that casts can't be used to reduce the sentences on G-Block inmates and is attacked by Genkaku, part of an Anti-Deadman force known as the Undertakers. Meanwhile, Ganta meets Nagi \"Owl\" Kengamine and Karako Koshio, members of a Deadman group known as Scar Chain wanting to destroy Deadman Wonderland, who invite him to join their gang. As Minatsuki goes through her penalty game, Nagi arranges it so that she only loses her hair. Just then, Genkaku appears and attacks Ganta and the others.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6576},{"seriesId":83,"episodeFileId":14573,"seasonNumber":1,"episodeNumber":8,"title":"Scar Chain","airDate":"2011-06-04","airDateUtc":"2011-06-03T15:00:00Z","overview":"Ganta is saved by the arrival of Shiro, who is back under control by the lullaby, to which Genkaku decides to retreat. Afterwards, Ganta is introduced to the other members of Scar Chain, who are plotting to expose Deadman Wonderland's secrets an inspection week, which Makina also plans to take advantage of to find out what secrets are being hidden from her. However, Ganta becomes a little distrustful when his claims of his Branches of Sin being stopped by Genkaku differ from what the security cameras show and takes his leave. Ganta later learns from Crow about how Genkaku killed Nagi's wife, later hearing from Nagi about how each member of Scar Chain has their own ideas of freedom. As Ganta promises to take Shiro on a ferris wheel when they escape someday, it is shown that one of Scar Chain's members, Binjou Rokudo, is a double agent for the Undertakers. Ganta decides to join Scar Chain, who begin their operation to leak information about the Deadmen to the outside world. As Nagi and Rokudo go to the security room, Ganta and the others are chased by an acid spewing robot, to which Karako opts to stay behind to save the others.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6577},{"seriesId":83,"episodeFileId":14574,"seasonNumber":1,"episodeNumber":9,"title":"Worm Eater","airDate":"2011-06-11","airDateUtc":"2011-06-10T15:00:00Z","overview":"After recalling the time she joined Scar Chain, Karako defends herself from the acid spewing robot and destroys it, falling down with it. Meanwhile, Nagi is betrayed by Rokudo and confronted by an Undertaker named Hibana Daida, who uses a special weapon to neutralize his Branches of Sin. As Hibana starts slicing off bits of Nagi's flesh, he provokes her into chopping off his arm, giving him the opportunity to activate the elevator Ganta's group needs to take. However, Ganta's group is confronted by Genkaku and his men, leaving only Ganta and a few others left alive to carry the chip containing the information. Whilst bleeding to death, Nagi makes a call to the hideout, which is heard by Shiro who catches up to Ganta and throws the chip, which was actually a bomb, into a fire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6578},{"seriesId":83,"episodeFileId":14575,"seasonNumber":1,"episodeNumber":10,"title":"Undertaker","airDate":"2011-06-19","airDateUtc":"2011-06-18T15:00:00Z","overview":"Ganta becomes angry at Shiro for throwing away the data chip, telling her he never wants to see her again. Meanwhile, Mikuni investigates Tamaki's office, overhearing a conversation between him and the Defense secretary concerning the Deadmen. As Karako and the others discuss their next plan, Rokuro appears and reveals the data chip was actually a bomb he had made before announcing that the group is being held hostage unless Nagi agrees to become an Undertaker. As Rokuro decides to execute Ganta first, Crow appears on the scene, managing to fight back against the Undertakers using sonic blasts. As Shiro laments her situation with Ganta, she meets Toto \"Mockingbird\" Sakigami, the one who told her about the bomb.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6579},{"seriesId":83,"episodeFileId":14576,"seasonNumber":1,"episodeNumber":11,"title":"Gig of Despair","airDate":"2011-06-25","airDateUtc":"2011-06-24T15:00:00Z","overview":"Detesting his weak self, Ganta asks Crow to teach him how to use his Branches of Sin to fight. Meanwhile, Karako attempts to infiltrate the Undertakers by disguising herself as a guard. As Toto appears before Ganta and Crow during their training session, Shiro, who gets drunk off of liquer sweets, appears before Genkaku, who also discovers Karako. Just as Ganta manages to produce a blood bullet that can break the sound barrier, Genkaku announces his capturing of Karako and Shiro. Despite being low on blood, Ganta rushes to where Genkaku, Karako and Shiro are, but is confronted by Nagi, who had been broken by Genkaku into a raging demon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6580},{"seriesId":83,"episodeFileId":14577,"seasonNumber":1,"episodeNumber":12,"title":"Grateful Dead","airDate":"2011-07-02","airDateUtc":"2011-07-01T15:00:00Z","overview":"As Nagi goes on a rampage on all the guards, Ganta stands to protect Shiro, taking all of his punches and trying to reason with him. As Nagi starts to come to his senses thanks to the bell Karako wears reminding him of his friends, Karako is suddenly stabbed by Genkaku. Nagi stands to protect his friends but is shot by Genkaku, who begins killing the other guards, whilst Ganta starts being poisoned due to not having any Candy in a while. Hibana tries to escape but is killed by Toto, who had managed to obtain Crow's abilities after drinking his blood. As Shiro enters Wretched Egg mode, the stone in Ganta's chest glows and blasts a powerful shot, with Nagi holding Genkaku in place as they are both taken out. Before passing on, Nagi gives Ganta his last piece of Candy. As Karako and some others escape, Ganta decides to stay behind so he can protect his friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6581},{"seriesId":83,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Wielder of the Red Knife","airDate":"2011-10-08","airDateUtc":"2011-10-07T15:00:00Z","overview":"Set two years following the Red Hole incident, Senji is a police officer using his Branches of Sin to fight criminals, but has little temper. One day, he rescues a boy named Izuru who stole from a gang called Goreless Peace. After returning him to an orphanage, Seiji encounters Goreless Peace's chairman, Keigo Ugachi, who also possesses Branches of Sin. When Senji refuses to join him, he burns down the orphanage and kills everyone in it, including Izuru and the caretaker. Devastated, Senji goes to confront Keigo, gaining some support from his police acquaintances. However, Senji finds himself in a giant spider web formed from Keigo's powers. When Keigo injures Senji's superior, Senji manages to break the sound barrier to break through Keigo's ability, barely holding back enough to not kill him.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6582}],"episodeFile":[{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Death Row Inmate-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E01.Death Row Inmate-Bluray-1080p.mkv","size":204799134,"dateAdded":"2020-06-21T19:15:54.270056Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":92908,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":865742,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14566},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Antidote (Candy)-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E02.Antidote (Candy)-Bluray-1080p.mkv","size":220281236,"dateAdded":"2020-06-21T19:15:54.327772Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":987618,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14567},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E03.G Block-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E03.G Block-Bluray-1080p.mkv","size":241866785,"dateAdded":"2020-06-21T19:15:54.385729Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1052446,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14568},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Crow Claw-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E04.Crow Claw-Bluray-1080p.mkv","size":204511892,"dateAdded":"2020-06-21T19:15:54.442077Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":900179,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14569},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Carnival Corpse-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E05.Carnival Corpse-Bluray-1080p.mkv","size":215685488,"dateAdded":"2020-06-21T19:15:54.499907Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":922071,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14570},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Hummingbird-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E06.Hummingbird-Bluray-1080p.mkv","size":223492148,"dateAdded":"2020-06-21T19:15:54.557826Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":93401,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1014653,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14571},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Wretched Egg-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E07.Wretched Egg-Bluray-1080p.mkv","size":195845461,"dateAdded":"2020-06-21T19:15:54.615338Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":90522,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":821994,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14572},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Scar Chain-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E08.Scar Chain-Bluray-1080p.mkv","size":191081921,"dateAdded":"2020-06-21T19:15:54.671361Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":92255,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":837819,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14573},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Worm Eater-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E09.Worm Eater-Bluray-1080p.mkv","size":221954113,"dateAdded":"2020-06-21T19:15:54.730999Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":952139,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:39","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14574},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Undertaker-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E10.Undertaker-Bluray-1080p.mkv","size":220992362,"dateAdded":"2020-06-21T19:15:54.791392Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":89725,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1004265,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14575},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Gig of Despair-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E11.Gig of Despair-Bluray-1080p.mkv","size":242310515,"dateAdded":"2020-06-21T19:15:54.852589Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1058348,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14576},{"seriesId":83,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Grateful Dead-Bluray-1080p.mkv","path":"\/tv\/Deadman Wonderland\/Season 01\/S01E12.Grateful Dead-Bluray-1080p.mkv","size":249111141,"dateAdded":"2020-06-21T19:15:54.908955Z","releaseGroup":"Cleo","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":92702,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1076598,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14577}],"queue":[]},"90":{"series":{"title":"Bob's Burgers","alternateTitles":[{"title":"Bob Burger Falodaja","seasonNumber":-1},{"title":"Bobs Burger","seasonNumber":-1}],"sortTitle":"bobs burgers","status":"continuing","ended":false,"overview":"Bob's Burgers follows a third-generation restaurateur, Bob, as he runs Bob's Burgers with the help of his wife and their three kids. Bob and his quirky family have big ideas about burgers, but fall short on service and sophistication. Despite the greasy counters, lousy location and a dearth of customers, Bob and his family are determined to make Bob's Burgers \"grand re-re-re-opening\" a success.","nextAiring":"2021-09-27T01:00:00Z","previousAiring":"2021-05-24T01:00:00Z","network":"FOX","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/45\/banner.jpg?lastWrite=637100123642678370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/194031-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/45\/poster.jpg?lastWrite=637103587741165020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/194031-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/45\/fanart.jpg?lastWrite=637100123640198420","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/194031-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-05-23T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9870913310,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-05-21T01:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":7708557241,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2013-05-13T01:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":20273225498,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2014-05-19T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":4008882980,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2015-05-18T01:22:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":17966406688,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2016-05-23T01:22:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":16129777412,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2017-06-12T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":10809458788,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2018-05-21T01:22:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":10552605207,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2019-05-13T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12571202502,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2020-05-18T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12176428178,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2021-05-24T01:00:00Z","episodeFileCount":21,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":12074237956,"percentOfEpisodes":95.45454545454545}},{"seasonNumber":12,"monitored":true,"statistics":{"nextAiring":"2021-09-27T01:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2011,"path":"\/tv\/Bob's Burgers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":194031,"tvRageId":24607,"tvMazeId":107,"firstAired":"2011-01-09T00:00:00Z","seriesType":"standard","cleanTitle":"bobsburgers","imdbId":"tt1561755","titleSlug":"bobs-burgers","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2017-12-02T19:56:00.3837665Z","ratings":{"votes":2616,"value":8.4},"statistics":{"seasonCount":12,"episodeFileCount":215,"episodeCount":216,"totalEpisodeCount":222,"sizeOnDisk":134141695760,"percentOfEpisodes":99.53703703703704},"id":45},"episodes":[{"seriesId":45,"episodeFileId":806,"seasonNumber":1,"episodeNumber":1,"title":"Human Flesh","airDate":"2011-01-09","airDateUtc":"2011-01-10T02:00:00Z","overview":"A health inspector's visit coincides with Bob's efforts to bring in customers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":1064},{"seriesId":45,"episodeFileId":814,"seasonNumber":1,"episodeNumber":2,"title":"Crawl Space","airDate":"2011-01-16","airDateUtc":"2011-01-17T02:00:00Z","overview":"A leaky roof causes Bob to get trapped in a wall while Linda's mother visits.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":1065},{"seriesId":45,"episodeFileId":17859,"seasonNumber":1,"episodeNumber":3,"title":"Sacred Cow","airDate":"2011-01-23","airDateUtc":"2011-01-24T02:00:00Z","overview":"Bob takes to a film maker's cow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":1066},{"seriesId":45,"episodeFileId":832,"seasonNumber":1,"episodeNumber":4,"title":"Sexy Dance Fighting","airDate":"2011-02-13","airDateUtc":"2011-02-14T02:00:00Z","overview":"Tina develops a crush on her martial arts instructor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":1067},{"seriesId":45,"episodeFileId":840,"seasonNumber":1,"episodeNumber":5,"title":"Hamburger Dinner Theater","airDate":"2011-02-20","airDateUtc":"2011-02-21T02:00:00Z","overview":"Linda and the kids stage a murder mystery that doesn't go as planned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":1068},{"seriesId":45,"episodeFileId":850,"seasonNumber":1,"episodeNumber":6,"title":"Sheesh! Cab, Bob?","airDate":"2011-03-06","airDateUtc":"2011-03-07T02:00:00Z","overview":"Tina is desperate to get her first kiss at her 13th birthday party. But after Louise breaks the deep fryer, Bob takes a second job as a late-night cab driver to pay for Tina\u2019s party. Things keep getting worse for Bob when the parents of Tina\u2019s crush refuse to let their son attend the party, and Bob has to do everything in his power to save his daughter\u2019s big day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":1069},{"seriesId":45,"episodeFileId":17860,"seasonNumber":1,"episodeNumber":7,"title":"Bed & Breakfast","airDate":"2011-03-13","airDateUtc":"2011-03-14T01:00:00Z","overview":"Louise spies on the Belcher's suspicious house guest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":1070},{"seriesId":45,"episodeFileId":860,"seasonNumber":1,"episodeNumber":8,"title":"Art Crawl","airDate":"2011-03-20","airDateUtc":"2011-03-21T01:00:00Z","overview":"It's Bob vs. the city art council when Linda's sister displays her work at Bob's Burgers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":1071},{"seriesId":45,"episodeFileId":17858,"seasonNumber":1,"episodeNumber":9,"title":"Spaghetti Western and Meatballs","airDate":"2011-03-27","airDateUtc":"2011-03-28T01:00:00Z","overview":"Bob and Gene bond over spaghetti western movies, which makes Louise jealous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":1072},{"seriesId":45,"episodeFileId":878,"seasonNumber":1,"episodeNumber":10,"title":"Burger War","airDate":"2011-04-10","airDateUtc":"2011-04-11T01:00:00Z","overview":"When Bob's eccentric landlord, Mr. Fischoeder, pays the family a visit, he informs Bob that his rival across the street, Jimmy Pesto of Jimmy Pesto's Pizzeria, wants to take over Bob's lease so that he can expand his gift shop. With little time and not enough money, the Belcher family must cook up some business or luck to save the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":1073},{"seriesId":45,"episodeFileId":886,"seasonNumber":1,"episodeNumber":11,"title":"Weekend at Mort's","airDate":"2011-05-08","airDateUtc":"2011-05-09T01:00:00Z","overview":"Bob and his family are forced to spend the weekend at Mort the Mortician's while the restaurant is being de-molded. Linda and Bob double date with Mort and a female mortician he meets online while Tina babysits Gene and Louise in Mort\u2019s crematorium.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":1074},{"seriesId":45,"episodeFileId":17856,"seasonNumber":1,"episodeNumber":12,"title":"Lobsterfest","airDate":"2011-05-15","airDateUtc":"2011-05-16T01:00:00Z","overview":"After the town's annual Lobsterfest is cancelled by a storm, Bob defiantly opens his doors for a festive celebration. When he wakes the next morning, Bob finds the restaurant in disarray and that the town has spurned him, but Bob won't let that deter him from further involvement in the celebratory weekend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":1075},{"seriesId":45,"episodeFileId":900,"seasonNumber":1,"episodeNumber":13,"title":"Torpedo","airDate":"2011-05-22","airDateUtc":"2011-05-23T01:00:00Z","overview":"Bob's hero, a washed-up baseball player named Torpedo Jones, starts pitching for the local minor league team. Torpedo befriends Bob, but the dark underbelly of minor league baseball threatens to corrupt the Belchers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":1076},{"seriesId":45,"episodeFileId":808,"seasonNumber":2,"episodeNumber":1,"title":"The Belchies","airDate":"2012-03-11","airDateUtc":"2012-03-12T01:00:00Z","overview":"The kids hunt for treasure in an abandoned taffy factory and Bob and Linda must find them before the factory\u2019s scheduled demolition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":1077},{"seriesId":45,"episodeFileId":17857,"seasonNumber":2,"episodeNumber":2,"title":"Bob Day Afternoon","airDate":"2012-03-18","airDateUtc":"2012-03-19T01:00:00Z","overview":"A bank robber holds up a bank across the street from Bob\u2019s Burgers. When the robbery goes awry, Bob finds himself at the center of a hostage crisis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":1078},{"seriesId":45,"episodeFileId":821,"seasonNumber":2,"episodeNumber":3,"title":"Synchronized Swimming","airDate":"2012-03-25","airDateUtc":"2012-03-26T01:00:00Z","overview":"The kids con their way out of gym class with a bogus synchronized swimming independent study. Meanwhile, Bob welcomes a new soft serve ice cream machine to the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":1079},{"seriesId":45,"episodeFileId":831,"seasonNumber":2,"episodeNumber":4,"title":"Burgerboss","airDate":"2012-04-01","airDateUtc":"2012-04-02T01:00:00Z","overview":"Bob becomes obsessed with an old-school burger-flipping video game after Jimmy Pesto gets the high score and writes \"BOB SUX\" on the leader board.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":1080},{"seriesId":45,"episodeFileId":841,"seasonNumber":2,"episodeNumber":5,"title":"Food Truckin'","airDate":"2012-04-15","airDateUtc":"2012-04-16T01:00:00Z","overview":"The Belchers beg Bob to buy a food truck to compete against the ones that are stealing his customers. When the \"Lolla-Pa-Foods-A-Festival\" comes up, the Belchers bring the truck and the kids decide to cause mischief. Unfortunately, this causes a riot to rise from the other food truckers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":1081},{"seriesId":45,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Demo (Pilot)","airDate":"2012-04-17","airDateUtc":"2012-04-18T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1062},{"seriesId":45,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Louise's Chalkboard","airDate":"2012-04-17","airDateUtc":"2012-04-18T01:22:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":1063},{"seriesId":45,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Cannibal Demo","airDate":"2012-04-17","airDateUtc":"2012-04-18T01:44:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20789},{"seriesId":45,"episodeFileId":847,"seasonNumber":2,"episodeNumber":6,"title":"Dr. Yap","airDate":"2012-04-29","airDateUtc":"2012-04-30T01:00:00Z","overview":"While Bob is medicated, he mistakes Linda's sister, Gayle, for his wife and kisses her. After she falls for him, Bob seeks help from Dr. Yap.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":1082},{"seriesId":45,"episodeFileId":852,"seasonNumber":2,"episodeNumber":7,"title":"Moody Foodie","airDate":"2012-05-06","airDateUtc":"2012-05-07T01:00:00Z","overview":"The restaurant receives a negative review from a vicious food critic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":1083},{"seriesId":45,"episodeFileId":862,"seasonNumber":2,"episodeNumber":8,"title":"Bad Tina","airDate":"2012-05-13","airDateUtc":"2012-05-14T01:00:00Z","overview":"Tina befriends a bad girl in a bid to get closer to Jimmy Junior.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":1084},{"seriesId":45,"episodeFileId":871,"seasonNumber":2,"episodeNumber":9,"title":"Beefsquatch","airDate":"2012-05-20","airDateUtc":"2012-05-21T01:00:00Z","overview":"Bob appears in a cooking segment on a local news morning program, but Gene steals the show when he crashes the set with a sasquatch mask.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":1085},{"seriesId":45,"episodeFileId":805,"seasonNumber":3,"episodeNumber":1,"title":"Ear-sy Rider","airDate":"2012-09-30","airDateUtc":"2012-10-01T01:00:00Z","overview":"A biker gang sets up shop in the restaurant, where they lament the loss of their beloved leader.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":1086},{"seriesId":45,"episodeFileId":816,"seasonNumber":3,"episodeNumber":2,"title":"Full Bars","airDate":"2012-10-07","airDateUtc":"2012-10-08T01:00:00Z","overview":"The Belcher kids break with a long standing Halloween tradition, veering away from their usual trick or treat trek in favor of a posh neighborhood that's known for its oversize goodies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":1087},{"seriesId":45,"episodeFileId":823,"seasonNumber":3,"episodeNumber":3,"title":"Bob Fires the Kids","airDate":"2012-11-04","airDateUtc":"2012-11-05T02:00:00Z","overview":"Worried that his kids are not enjoying summer vacation because he's making them work in the restaurant, Bob fires them. But they soon become bored and take jobs as \"weed pickers\" for a pair of hippie farmers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":1088},{"seriesId":45,"episodeFileId":833,"seasonNumber":3,"episodeNumber":4,"title":"Mutiny on the Windbreaker","airDate":"2012-11-11","airDateUtc":"2012-11-12T02:00:00Z","overview":"Bob does a tour of duty as a private chef on a docked cruise ship and brings along the family to witness his true culinary skills, but the special occasion is scuttled when the kooky captain shanghais the whole family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":1089},{"seriesId":45,"episodeFileId":836,"seasonNumber":3,"episodeNumber":5,"title":"An Indecent Thanksgiving Proposal","airDate":"2012-11-18","airDateUtc":"2012-11-19T02:00:00Z","overview":"Bob's plans for his favorite holiday, Thanksgiving, change when Mr. Fischoeder hires him as a chef, and Linda and the kids to play his family, as he tries to stage a perfect holiday dinner in order to make a former flame jealous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":1090},{"seriesId":45,"episodeFileId":849,"seasonNumber":3,"episodeNumber":6,"title":"The Deepening","airDate":"2012-11-25","airDateUtc":"2012-11-26T02:00:00Z","overview":"Mr. Fischoeder's new pier attraction, a mechanical shark, goes haywire and terrorizes the town, and it falls to Bob and the family to catch it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":1091},{"seriesId":45,"episodeFileId":856,"seasonNumber":3,"episodeNumber":7,"title":"Tinarannosaurus Wrecks","airDate":"2012-12-02","airDateUtc":"2012-12-03T02:00:00Z","overview":"After Tina accidentally wrecks the car, and gets the whole family involved with a slimy insurance agent, she worries that she\u2019s a \u201cjinx\u201d.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":1092},{"seriesId":45,"episodeFileId":861,"seasonNumber":3,"episodeNumber":8,"title":"The Unbearable Like-Likeness of Gene","airDate":"2012-12-09","airDateUtc":"2012-12-10T02:00:00Z","overview":"Gene gets his first girlfriend, but it doesn't take long for the family to realize that she is incredibly annoying and they pressure him to break up with her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":1093},{"seriesId":45,"episodeFileId":870,"seasonNumber":3,"episodeNumber":9,"title":"God Rest Ye Merry Gentle-Mannequins","airDate":"2012-12-16","airDateUtc":"2012-12-17T02:00:00Z","overview":"When Bob inherits a storage unit around Christmas, visions of riches dance in the heads of the family, but what they find inside is a squatter who claims he once worked as a mannequin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":1094},{"seriesId":45,"episodeFileId":876,"seasonNumber":3,"episodeNumber":10,"title":"Mother Daughter Laser Razor","airDate":"2013-01-06","airDateUtc":"2013-01-07T02:00:00Z","overview":"Linda worries that her relationship with Louise isn't as good as it should be, so, much to Louise's chagrin, she forces the young lady to participate in a mother-daughter seminar. With mom away, Tina turns to Bob for a lesson in shaving her legs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":1095},{"seriesId":45,"episodeFileId":885,"seasonNumber":3,"episodeNumber":11,"title":"Nude Beach","airDate":"2013-01-13","airDateUtc":"2013-01-14T02:00:00Z","overview":"The new health inspector proves to be a decent fellow, until he blackmails Bob into being allowed to perform his atrocious music at the restaurant, which drives away the customers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":1096},{"seriesId":45,"episodeFileId":892,"seasonNumber":3,"episodeNumber":12,"title":"Broadcast Wagstaff School News","airDate":"2013-01-27","airDateUtc":"2013-01-28T02:00:00Z","overview":"There is a \u201cMad Pooper\u201d running wild at the Belcher children's middle school and Tina finds herself on a mission to get to the \u201cbottom\u201d of the situation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":1097},{"seriesId":45,"episodeFileId":899,"seasonNumber":3,"episodeNumber":13,"title":"My Fuzzy Valentine","airDate":"2013-02-10","airDateUtc":"2013-02-11T02:00:00Z","overview":"When a heart-shaped pancake simply doesn't cut it, the kids convince Bob to let them skip school in order to help him find a Valentine's Day gift that will \"wow\" Linda. Meanwhile, in the spirit of the romantic holiday, Linda sets up a speed-dating event at the restaurant that doesn't go exactly as planned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":1098},{"seriesId":45,"episodeFileId":905,"seasonNumber":3,"episodeNumber":14,"title":"Lindapendent Woman","airDate":"2013-02-17","airDateUtc":"2013-02-18T02:00:00Z","overview":"Linda thinks Bob doesn't appreciate her and quits the restaurant to work at a grocery store. In her absence, Bob tries - and fails - to run the place on his own and the kids are stuck in the middle of the marital mayhem. Meanwhile, things get romantic for Tina when she meets her potential soul mate while restocking the milk fridge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":1099},{"seriesId":45,"episodeFileId":911,"seasonNumber":3,"episodeNumber":15,"title":"O.T.: The Outside Toilet","airDate":"2013-03-03","airDateUtc":"2013-03-04T02:00:00Z","overview":"When Gene finds an expensive talking toilet out in the woods, he and his friends decide to protect it as much as they can while an evil toilet hunter is looking for the toilet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":1100},{"seriesId":45,"episodeFileId":918,"seasonNumber":3,"episodeNumber":16,"title":"Topsy","airDate":"2013-03-10","airDateUtc":"2013-03-11T01:00:00Z","overview":"Louise expects to get a charge out of taking down her Thomas Edison-obsessed science teacher when she re-creates one of the famous inventor's experiments that involved electrocuting an elephant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":1101},{"seriesId":45,"episodeFileId":924,"seasonNumber":3,"episodeNumber":17,"title":"Two for Tina","airDate":"2013-03-17","airDateUtc":"2013-03-18T01:00:00Z","overview":"Jimmy Jr. is threatened when Tina starts dating a ballet dancer named Josh and the two boys get into an epic dance-off for her heart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":1102},{"seriesId":45,"episodeFileId":928,"seasonNumber":3,"episodeNumber":18,"title":"It Snakes a Village","airDate":"2013-03-24","airDateUtc":"2013-03-25T01:00:00Z","overview":"The Belcher family road-trips down to Florida to visit Linda's parents who live in a senior home that - to Linda's complete horror - is full of senior swingers! Plus, to keep themselves entertained, Tina, Gene and Louise go on a hunt for a mysterious python that allegedly ate one of the residents' dogs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":1103},{"seriesId":45,"episodeFileId":934,"seasonNumber":3,"episodeNumber":19,"title":"Family Fracas","airDate":"2013-04-14","airDateUtc":"2013-04-15T01:00:00Z","overview":"After the family car breaks down and ruins their plans for a movie night out, the Belchers find themselves competing on the TV game show \"Family Fracas!\" To the dismay of the program's host, they keep winning and coming back each night...that is until their lucky streak comes to a suspicious end.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":1104},{"seriesId":45,"episodeFileId":941,"seasonNumber":3,"episodeNumber":20,"title":"The Kids Run the Restaurant","airDate":"2013-04-21","airDateUtc":"2013-04-22T01:00:00Z","overview":"After Bob cuts his finger and faints at the sight of his own blood, Linda brings him to the hospital and leaves the kids home alone. Not ones to waste a golden opportunity, Tina, Gene and Louise transform the basement of the restaurant into a makeshift casino. But they get more than they gamble for when landlord Mr. Fischoeder stops by and catches them in action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":1105},{"seriesId":45,"episodeFileId":946,"seasonNumber":3,"episodeNumber":21,"title":"Boyz 4 Now","airDate":"2013-04-28","airDateUtc":"2013-04-29T01:00:00Z","overview":"While accompanying Tina to a \"Boyz 4 Now\" concert, Louise develops a crush on one of the lead singers, Boo Boo - and is in disbelief that she actually likes a boy! Meanwhile, Gene gets creative - and slightly offensive - in a table-setting competition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":1106},{"seriesId":45,"episodeFileId":950,"seasonNumber":3,"episodeNumber":22,"title":"Carpe Museum","airDate":"2013-05-05","airDateUtc":"2013-05-06T01:00:00Z","overview":"Bob chaperones a school trip to the museum and experiences some father-daughter bonding with Louise, while Gene and his gang are on the lookout for exhibits with busts, and not the kind that are sculpted out of stone. Later, on the museum steps, Linda offers her distinctive chanting talents to striking workers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":1107},{"seriesId":45,"episodeFileId":952,"seasonNumber":3,"episodeNumber":23,"title":"The Unnatural","airDate":"2013-05-12","airDateUtc":"2013-05-13T01:00:00Z","overview":"After Gene loses his confidence at his baseball game, Linda decides to sign him up for baseball camp. The only problem? She needs money to pay for it! Meanwhile, Tina discovers her love for espresso and becomes a caffeine addict.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":1108},{"seriesId":45,"episodeFileId":12550,"seasonNumber":4,"episodeNumber":1,"title":"A River Runs Through Bob","airDate":"2013-09-29","airDateUtc":"2013-09-30T01:00:00Z","overview":"Bob, Linda and the kids go on a camping adventure and face the perils of nature...and Bob's intestines. Braving wild river rapids, eager squirrels and parent\/child separation, the Belchers prove they are worth their mettle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":1109},{"seriesId":45,"episodeFileId":12551,"seasonNumber":4,"episodeNumber":2,"title":"Fort Night","airDate":"2013-10-06","airDateUtc":"2013-10-07T01:00:00Z","overview":"Tina, Gene and Louise are filled with the Halloween spirit and head out with their friends for a candy-fueled adventure. However, things take a turn for the worse, when the kids build their own fort and find themselves held hostage by Louise's wacko friend, Millie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":1110},{"seriesId":45,"episodeFileId":12552,"seasonNumber":4,"episodeNumber":3,"title":"Seaplane!","airDate":"2013-11-03","airDateUtc":"2013-11-04T02:00:00Z","overview":"Linda is bored by Bob's tired attempts at Date Night and decides to sign up for flying lessons. When Bob won't join her, she becomes the target of \"Upskirt Kurt\" the most charming pilot in the air.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":1111},{"seriesId":45,"episodeFileId":12553,"seasonNumber":4,"episodeNumber":4,"title":"My Big Fat Greek Bob","airDate":"2013-11-10","airDateUtc":"2013-11-11T02:00:00Z","overview":"Bob scores a temporary gig as a cook at an \"underdog\" frat house and discovers that he fits right in! Hijinks ensue as Bob and the rest of the fraternity brothers find themselves in the middle of a collegiate prank war that involves the house's most famous alumnus, Dr. Yap. Meanwhile, the kids are on a mission to invade the frat house and get in on the action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":1112},{"seriesId":45,"episodeFileId":12554,"seasonNumber":4,"episodeNumber":5,"title":"Turkey in a Can","airDate":"2013-11-24","airDateUtc":"2013-11-25T02:00:00Z","overview":"Determined to have a perfect Thanksgiving, Bob meticulously prepares the family turkey. Then, to his horror, he finds that someone then dumps the turkey in the toilet in an act of Thanksgiving sabotage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":1113},{"seriesId":45,"episodeFileId":12555,"seasonNumber":4,"episodeNumber":6,"title":"Purple Rain-Union","airDate":"2013-12-01","airDateUtc":"2013-12-02T02:00:00Z","overview":"Haunted by a poor talent-show performance from her high-school days, Linda gets back together with her former bandmates to rock their class reunion. Meanwhile, at the same soiree, Bob becomes bothered by the attention being paid him by a former classmate who had a crush on him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":1114},{"seriesId":45,"episodeFileId":12556,"seasonNumber":4,"episodeNumber":7,"title":"Bob and Deliver","airDate":"2013-12-08","airDateUtc":"2013-12-09T02:00:00Z","overview":"Tina is delighted when Bob fills in as substitute home-economics teacher at school and creates a fully operational restaurant in the classroom. Unfortunately, some father-daughter friction develops. Meanwhile, the other Belcher kids take jobs at the school restaurant, leaving Linda to run the burger joint by herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":1115},{"seriesId":45,"episodeFileId":12557,"seasonNumber":4,"episodeNumber":8,"title":"Christmas in the Car","airDate":"2013-12-15","airDateUtc":"2013-12-16T02:00:00Z","overview":"After Linda accidentally kills the family tree, the Belchers must go out on Christmas day to find a new one. But when Bob cuts off a giant candy cane truck, they are forced to outrun the madman driver and spend the entire holiday together in the car. Back at the Belcher home, Bob\u2019s friend, Teddy, accidentally gets stuck in the kids\u2019 Santa trap.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":1116},{"seriesId":45,"episodeFileId":12558,"seasonNumber":4,"episodeNumber":9,"title":"Slumber Party","airDate":"2014-01-05","airDateUtc":"2014-01-06T02:00:00Z","overview":"In an effort to help socialize Louise, Linda invites four of her classmates over for a surprise slumber party. Meanwhile, Bob cooks a burger to catch a renegade raccoon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":1117},{"seriesId":45,"episodeFileId":12559,"seasonNumber":4,"episodeNumber":10,"title":"Presto Tina-O","airDate":"2014-01-12","airDateUtc":"2014-01-13T02:00:00Z","overview":"Tina becomes a magician's assistant in order to get closer to Jimmy Jr., while Bob becomes the victim of a magician's \"curse\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":1118},{"seriesId":45,"episodeFileId":12560,"seasonNumber":4,"episodeNumber":11,"title":"Easy Com-mercial, Easy Go-mercial","airDate":"2014-01-26","airDateUtc":"2014-01-27T02:00:00Z","overview":"To compete with fellow \u201crestaurateur,\u201d Jimmy Pesto, and his blowout Super Bowl event, Bob is determined to create a Bob\u2019s Burgers commercial to air during the \u201cbig game.\u201d In an effort to outshine Pesto, the Belchers recruit Randy, a documentarian, to assist with the filmmaking and hire on former pro football star Connie Frye to be the celebrity endorser.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":1119},{"seriesId":45,"episodeFileId":17863,"seasonNumber":4,"episodeNumber":12,"title":"The Frond Files","airDate":"2014-03-09","airDateUtc":"2014-03-10T01:00:00Z","overview":"Bob and Linda visit school and learn that their kids' essays about their fantasy version of Wagstaff are \u201ctoo creative\u201d and \u201coffensive.\u201d Eugene transforms the school into a \u201cFart School for the Gifted\u201d (watch out for Keyboard Jail); Tina, to her delight, depicts a world where she is romanced by countless zombie teenage boys; and Louise creates a school where she takes down a robotic Mr. Frond from the future (\u201cWe need more creamed corn!\u201d).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":1120},{"seriesId":45,"episodeFileId":12562,"seasonNumber":4,"episodeNumber":13,"title":"Mazel-Tina","airDate":"2014-03-16","airDateUtc":"2014-03-17T01:00:00Z","overview":"Tina isn't invited to her classmate Tammy's Bat Mitzvah, but ends up at the party anyway, because Bob and the family were hired to cater. A total \"Bat-zilla,\" Tammy's theme is, well, \"Tammy,\" and despite the invite snub, Tina is excited to scope out the BFOS (boys from other schools). Things go awry and Louise and Tammy end up missing, so, to her total delight, Tina is left center stage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":1121},{"seriesId":45,"episodeFileId":12563,"seasonNumber":4,"episodeNumber":14,"title":"Uncle Teddy","airDate":"2014-03-23","airDateUtc":"2014-03-24T01:00:00Z","overview":"When Bob and Linda leave town for a romantic getaway (at a Burger Convention), they ask Teddy to babysit Tina, Gene and Louise. While the 'rents are away, Teddy is eager to earn the coveted title of \"Uncle Teddy\" and does so by putting Tina's crush in his rightful place after discovering that he was just using her for \u2013 gasp \u2013 free burgers! Hijinks ensue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":1122},{"seriesId":45,"episodeFileId":12564,"seasonNumber":4,"episodeNumber":15,"title":"The Kids Rob a Train","airDate":"2014-03-30","airDateUtc":"2014-03-31T01:00:00Z","overview":"The Belchers take a trip on a train and, to their dismay, Louise, Gene and Tina are seated in a separate train car. Never one to follow the rules, Louise ropes the children into helping her on her mission to steal the vast chocolate supply from the restaurant car! Meanwhile, Bob and Linda indulge in some wine tasting and have a \u201ctaste-off\u201d with a snobby couple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":1123},{"seriesId":45,"episodeFileId":12565,"seasonNumber":4,"episodeNumber":16,"title":"I Get Psy-chic Out of You","airDate":"2014-04-06","airDateUtc":"2014-04-07T01:00:00Z","overview":"After predicting that a telemarketer is calling the restaurant when the phone rings, Linda and the kids believe that she is a psychic. Needless to say her \u201cpredictions\u201d irk Bob and spell out hilarious happenings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":1124},{"seriesId":45,"episodeFileId":12566,"seasonNumber":4,"episodeNumber":17,"title":"The Equestranauts","airDate":"2014-04-13","airDateUtc":"2014-04-14T01:00:00Z","overview":"In an homage to the \u201cBronies\u201d subculture, Tina attends her first Equestra-con, a convention based on her favorite animated pony show, \u201cThe Equestranauts.\u201d To her surprise, she finds that the show\u2019s fans are middle-aged men (called \u201cEquesticles\u201d). When a powerful super-fan tricks Tina out of her rare toy pony, it\u2019s up to Bob to go undercover to get it back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":1125},{"seriesId":45,"episodeFileId":17862,"seasonNumber":4,"episodeNumber":18,"title":"Ambergris","airDate":"2014-04-20","airDateUtc":"2014-04-21T01:00:00Z","overview":"Gene, Louise, and Tina discover a seaweed-covered object at the beach that turns out to be a large hunk of Ambergris - an extremely valuable, but illegal, by-product of whale poop that is used in high-end perfumes. But Louise tries to cheat Gene and Tina out of the profit she hopes to make by selling the treasure on the black market. Meanwhile, Bob and Linda deal with their psychologically unstable landlord who is building them a new bathroom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":1126},{"seriesId":45,"episodeFileId":17864,"seasonNumber":4,"episodeNumber":19,"title":"The Kids Run Away","airDate":"2014-04-27","airDateUtc":"2014-04-28T01:00:00Z","overview":"Upon learning that she has a cavity and needs a filling, Louise runs away from the dentist's office and seeks refuge at Aunt Gail's. When Louise refuses to go home, Linda sends Tina and Gene to join her and bets her that she won't last the weekend with Aunt Gail's \"craziness\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":1127},{"seriesId":45,"episodeFileId":12569,"seasonNumber":4,"episodeNumber":20,"title":"Gene It On","airDate":"2014-05-04","airDateUtc":"2014-05-05T01:00:00Z","overview":"Tina decides to try out for the cheerleading squad, but it\u2019s actually Gene who gets noticed in the crowd for his spirit and cheering ability. Meanwhile, during her cheer audition, Tina falls and bites her tongue, leaving her unable to speak \u2013 and a mischievous Louise steps up to be her translator.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":1128},{"seriesId":45,"episodeFileId":12570,"seasonNumber":4,"episodeNumber":21,"title":"Wharf Horse (or How Bob Saves\/Destroys the Town) (1)","airDate":"2014-05-11","airDateUtc":"2014-05-12T01:00:00Z","overview":"Motivated by the promise of a new beachside burger joint, Bob conspires with Felix to convince Mr. Fischoeder to sell Wonder Wharf. Meanwhile, Tina protests the destruction of the wharf's carousel by chaining herself to it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":1129},{"seriesId":45,"episodeFileId":12571,"seasonNumber":4,"episodeNumber":22,"title":"World Wharf II: The Wharfening (or How Bob Saves\/Destroys the Town) (2)","airDate":"2014-05-18","airDateUtc":"2014-05-19T01:00:00Z","overview":"It\u2019s Linda and the kids to the rescue when Felix takes desperate measures, and puts Bob and Mr. Fischoeder in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":1130},{"seriesId":45,"episodeFileId":803,"seasonNumber":5,"episodeNumber":1,"title":"Work Hard or Die Trying, Girl","airDate":"2014-10-05","airDateUtc":"2014-10-06T01:00:00Z","overview":"When Gene's \"Die Hard\"-inspired musical doesn't get picked for the school's fall performance, he decides to stage an underground show with the help of Louise. But Wagstaff Middle School families begin to feud when they learn that Eugene has planned his show on the very same night as Courtney's school-sanctioned \"Working Girl\"-inspired musical.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":1131},{"seriesId":45,"episodeFileId":811,"seasonNumber":5,"episodeNumber":2,"title":"Tina and the Real Ghost","airDate":"2014-11-02","airDateUtc":"2014-11-03T02:00:00Z","overview":"Tina begins an out-of-this-world romance with a ghost that is believed to be living in the Belcher's basement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":1132},{"seriesId":45,"episodeFileId":820,"seasonNumber":5,"episodeNumber":3,"title":"Friends with Burger-fits","airDate":"2014-11-16","airDateUtc":"2014-11-17T02:00:00Z","overview":"Bob becomes Teddy\u2019s workout buddy after finding out his burgers contributed to Teddy\u2019s bad health. The two enroll in a stuntman boot camp where their friendship is put to the test. Meanwhile, the kids make an ice rink in the freezer, with Linda running their underground ice wrestling league.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":1133},{"seriesId":45,"episodeFileId":828,"seasonNumber":5,"episodeNumber":4,"title":"Dawn of the Peck","airDate":"2014-11-23","airDateUtc":"2014-11-24T02:00:00Z","overview":"While Bob is boycotting the holiday, Linda and the kids spend Thanksgiving at the First Annual Fischoeder Turk-tacular Turkey Town Festival. However, a wild bird attack leads to total mayhem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":1134},{"seriesId":45,"episodeFileId":839,"seasonNumber":5,"episodeNumber":5,"title":"Best Burger","airDate":"2014-11-30","airDateUtc":"2014-12-01T02:00:00Z","overview":"Bob enters a burger-tasting contest, only to discover that his distinguishing ingredient is missing! To help out their dad, the kids go on a mission to find the ever-so-important black garlic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":1135},{"seriesId":45,"episodeFileId":845,"seasonNumber":5,"episodeNumber":6,"title":"Father of the Bob","airDate":"2014-12-07","airDateUtc":"2014-12-08T02:00:00Z","overview":"Bob and his dad, \"Big Bob\", try to outdo each other in the kitchen when they rehash an old argument at Big Bob's Christmas party. Meanwhile, the kids compete to get the best present for Bob.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":1136},{"seriesId":45,"episodeFileId":853,"seasonNumber":5,"episodeNumber":7,"title":"Tina Tailor Soldier Spy","airDate":"2014-12-14","airDateUtc":"2014-12-15T02:00:00Z","overview":"Tina goes undercover in her old Thundergirls troop to find the mole who is giving away their cookie secrets. Meanwhile, Linda dyes her hair blonde.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":1137},{"seriesId":45,"episodeFileId":865,"seasonNumber":5,"episodeNumber":8,"title":"Midday Run","airDate":"2015-01-04","airDateUtc":"2015-01-05T02:00:00Z","overview":"When Tina is up for a big hall monitor promotion, she is determined to do whatever it takes to nab the powerful job. So, she enlists the help of Gene and Louise. Meanwhile, back at the restaurant, Linda gets artsy and begins to decorate the walls with customer artwork...on napkins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":1138},{"seriesId":45,"episodeFileId":868,"seasonNumber":5,"episodeNumber":9,"title":"Speakeasy Rider","airDate":"2015-01-11","airDateUtc":"2015-01-12T02:00:00Z","overview":"Tina, Gene and Louise are ready to put the pedal to the metal when they join a go-kart league. Meanwhile, back at the restaurant Bob and Teddy partner up to serve Teddy's home-brewed beer on the sly.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":1139},{"seriesId":45,"episodeFileId":880,"seasonNumber":5,"episodeNumber":10,"title":"Late Afternoon in the Garden of Bob and Louise","airDate":"2015-01-25","airDateUtc":"2015-01-26T02:00:00Z","overview":"In order to become an accepted member of the Community Garden, Bob must make a deal that results in giving Louise's enemy a job at the restaurant. Father and daughter are at odds and a choice must be made.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":1140},{"seriesId":45,"episodeFileId":882,"seasonNumber":5,"episodeNumber":11,"title":"Can't Buy Me Math","airDate":"2015-02-08","airDateUtc":"2015-02-09T02:00:00Z","overview":"Tina teams up with Darryl to win the Cupid's Couple contest at the school dance. Meanwhile, Linda plans a full week of ambitious Valentine's Day activities for her and Bob.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":1141},{"seriesId":45,"episodeFileId":893,"seasonNumber":5,"episodeNumber":12,"title":"The Millie-churian Candidate","airDate":"2015-02-15","airDateUtc":"2015-02-16T02:00:00Z","overview":"Tina and Louise volunteer to run Jimmy, Jr.'s class president campaign in order to keep Millie from winning, and ruining the school. Meanwhile, Bob becomes obsessed with a knife after talking himself into buying it for $300.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":1142},{"seriesId":45,"episodeFileId":896,"seasonNumber":5,"episodeNumber":13,"title":"The Gayle Tales","airDate":"2015-03-01","airDateUtc":"2015-03-02T02:00:00Z","overview":"Gayle arrives at Bob's Burgers in tears because her date for the evening was cancelled and she had theater tickets. Desperate to get out of the house after being grounded, the kids compete to be Aunt Gayle's \"date\" for the evening via an essay contest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":1143},{"seriesId":45,"episodeFileId":907,"seasonNumber":5,"episodeNumber":14,"title":"L'il Hard Dad","airDate":"2015-03-08","airDateUtc":"2015-03-09T01:00:00Z","overview":"Bob becomes obsessed with his new automatic helicopter. When it falls apart for no reason, he enters into a battle with the manufacturer in order to receive a refund. Gene assists Bob in his quest, but things quickly get out of hand and end in a crazy helicopter battle. Meanwhile, Louise and Linda help Tina prepare for her oral book report.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":1144},{"seriesId":45,"episodeFileId":17885,"seasonNumber":5,"episodeNumber":15,"title":"Adventures in Chinchilla-sitting","airDate":"2015-03-15","airDateUtc":"2015-03-16T01:00:00Z","overview":"Bob and Linda head out on the town for a date - but to Linda's dismay, Bob's idea of romance proves \"trivial.\" Meanwhile, a wild chinchilla chase ensues after the school pet that Louis was charged with watching escapes out the front door.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":1145},{"seriesId":45,"episodeFileId":916,"seasonNumber":5,"episodeNumber":16,"title":"The Runway Club","airDate":"2015-03-22","airDateUtc":"2015-03-23T01:00:00Z","overview":"The kids are sentenced to Saturday detention and will do anything it takes to leave early, so they can attend the Cotton Candy Festival. Meanwhile, Bob and Linda believe they are being scammed by a young girl at the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":1146},{"seriesId":45,"episodeFileId":921,"seasonNumber":5,"episodeNumber":17,"title":"Itty Bitty Ditty Committee","airDate":"2015-04-26","airDateUtc":"2015-04-27T01:00:00Z","overview":"Gene starts a band with Tina, Louise, Rudy, Peter and Daryl, only to be kicked out and left on his own. After declaring that he will never play his Casio again, Tina and Louise join forces to help Gene rediscover his love of music. Meanwhile, Linda deals with a horrible armpit rash that has everyone disgusted!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":1147},{"seriesId":45,"episodeFileId":929,"seasonNumber":5,"episodeNumber":18,"title":"Eat, Spray, Linda","airDate":"2015-05-03","airDateUtc":"2015-05-04T01:00:00Z","overview":"It's Linda's birthday and Bob needs more time to plan her birthday surprise. But when he sends her out of the house as a distraction, she goes missing! Mayhem ensues as the Belchers must work together to find Linda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":1148},{"seriesId":45,"episodeFileId":935,"seasonNumber":5,"episodeNumber":19,"title":"Housetrap","airDate":"2015-05-10","airDateUtc":"2015-05-11T01:00:00Z","overview":"In true Belcher fashion, the family gets stuck in a terrible storm while vacationing at a beach house in Craggy Neck. The storm is the least of their worries, however, when they are forced to take shelter with the mysterious owner of the home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":1149},{"seriesId":45,"episodeFileId":940,"seasonNumber":5,"episodeNumber":20,"title":"Hawk & Chick","airDate":"2015-05-17","airDateUtc":"2015-05-18T01:00:00Z","overview":"Bob and Louise are thrilled when they meet Shinji \"Koji\" Kojima aka Rising Hawk, the star of their favorite martial arts movies, and are quick to offer help upon learning about his family troubles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":1150},{"seriesId":45,"episodeFileId":944,"seasonNumber":5,"episodeNumber":21,"title":"The Oeder Games","airDate":"2015-05-17","airDateUtc":"2015-05-18T01:22:00Z","overview":"With the threat of a rent increase on Ocean Avenue, Bob and the other tenants rebel! After approaching Mr. Fischoeder, the tenants find out that they will have to compete in order to convince him to keep their rents reasonable.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":1151},{"seriesId":45,"episodeFileId":804,"seasonNumber":6,"episodeNumber":1,"title":"Sliding Bobs","airDate":"2015-09-27","airDateUtc":"2015-09-28T01:00:00Z","overview":"Bob notices that he has started to lose his hair. In a wave of nostalgia, Linda reminisces about Bob's mustache and how it made her fall for him years ago. Meanwhile, the kids tell their own versions of the story of how their parents met.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":1152},{"seriesId":45,"episodeFileId":817,"seasonNumber":6,"episodeNumber":2,"title":"The Land Ship","airDate":"2015-10-11","airDateUtc":"2015-10-12T01:00:00Z","overview":"The upcoming Land Ship parade could mean increased business for Bob, until he learns that two port-o-potties will be placed in front the restaurant. Meanwhile, Tina learns from her friends that she\u2019s boring, so she joins up with Jordan who has been vandalizing the school with graffiti. But when Jordan wants to spray graffiti on the Land Ship, Tina must decide between ruining the parade or disappointing her new crush.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":1153},{"seriesId":45,"episodeFileId":822,"seasonNumber":6,"episodeNumber":3,"title":"The Hauntening","airDate":"2015-10-18","airDateUtc":"2015-10-19T01:00:00Z","overview":"The Belchers are ready for an amazing Halloween! Louise reveals that she has never been scared before and the family sets out to visit a spooky haunted house. When trouble ensues following their visit, the Belchers find themselves in a zany situation more frightening than they bargained for!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":1154},{"seriesId":45,"episodeFileId":829,"seasonNumber":6,"episodeNumber":4,"title":"Gayle Makin' Bob Sled","airDate":"2015-11-08","airDateUtc":"2015-11-09T02:00:00Z","overview":"When Gayle is injured, Linda sends Bob off to pick her up, so that she doesn't miss out on Thanksgiving festivities. But an unexpected snowstorm derails his trip home, and his epic plan to prepare the turkey is foiled. Bob then must put the fate of the turkey and the Belcher Thanksgiving in Linda's hands and spend time bonding with his sister-in-law.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":1155},{"seriesId":45,"episodeFileId":838,"seasonNumber":6,"episodeNumber":5,"title":"Nice-Capades","airDate":"2015-11-15","airDateUtc":"2015-11-16T02:00:00Z","overview":"When a grumpy mall Santa threatens the kids with the dreaded Naughty List, Gene, Tina and Louise decide to put on a musical performance spectacular to earn their spot on the Nice List. Can they change Santa\u2019s mind in time to save their Christmas?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":1156},{"seriesId":45,"episodeFileId":848,"seasonNumber":6,"episodeNumber":6,"title":"The Cook, the Steve, the Gayle, & Her Lover","airDate":"2016-01-17","airDateUtc":"2016-01-18T02:00:00Z","overview":"When Bob throws a dinner party to bond with his new friend, Gayle uses the opportunity to introduce the family to her new love interest. Little does she know, Louise has a long-standing feud with Gayle\u2019s boyfriend and her niece will stop at nothing to break them apart. Calamity ensues as Bob attempts to impress his new buddy and the kids take action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":1157},{"seriesId":45,"episodeFileId":855,"seasonNumber":6,"episodeNumber":7,"title":"The Gene and Courtney Show","airDate":"2016-02-14","airDateUtc":"2016-02-15T02:00:00Z","overview":"Gene and Courtney get their big break when they are asked to be the new hosts of the morning announcements, but their romantic history threatens to get in the way. Meanwhile, Tina\u2019s attempt to play Cupid goes tragically awry when she volunteers to spear-head the Valentine\u2019s Day carnation fundraiser.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":1158},{"seriesId":45,"episodeFileId":863,"seasonNumber":6,"episodeNumber":8,"title":"Sexy Dance Healing","airDate":"2016-02-21","airDateUtc":"2016-02-22T02:00:00Z","overview":"After Bob slips on the sidewalk, he is forced to take legal action in order to pay for surgery. In a turn of events, Bob finds himself under the care of Jairo, who promises to help him heal without a doctor. Meanwhile, the kids create a fake law firm to settle their personal discrepancies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":1159},{"seriesId":45,"episodeFileId":874,"seasonNumber":6,"episodeNumber":9,"title":"Sacred Couch","airDate":"2016-03-06","airDateUtc":"2016-03-07T02:00:00Z","overview":"After a family vote rules against buying a new couch during TV Night, Louise takes matters into her own hands. The Belchers take sides as they are forced to decide whether memories are enough to keep their family sofa. Will they take the Sofa Queen\u2019s advice and learn to love a new couch?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":1160},{"seriesId":45,"episodeFileId":877,"seasonNumber":6,"episodeNumber":10,"title":"Lice Things Are Lice","airDate":"2016-03-13","airDateUtc":"2016-03-14T01:00:00Z","overview":"When Tina volunteers alongside Nurse Liz, she finds herself involved in the biggest scandal to hit Wagstaff: a lice infestation. Meanwhile, Bob makes improvements to the restaurant that end up driving customers away. Can the Belchers juggle both a crisis at the restaurant and lice?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":1161},{"seriesId":45,"episodeFileId":884,"seasonNumber":6,"episodeNumber":11,"title":"House of 1000 Bounces","airDate":"2016-04-03","airDateUtc":"2016-04-04T01:00:00Z","overview":"When there is a bounce house crisis at Regular Sized Rudy\u2019s birthday party, the Belcher kids devise a scheme to save the day. Meanwhile, Bob deals with an unexpected guest at the restaurant and is forced to come to terms with a longstanding fear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":1162},{"seriesId":45,"episodeFileId":890,"seasonNumber":6,"episodeNumber":12,"title":"Stand by Gene","airDate":"2016-04-03","airDateUtc":"2016-04-04T01:22:00Z","overview":"When Gene overhears talk about a mystical creature that lives nearby, he leads the Belcher kids and their friends on a journey to find it. Meanwhile, Linda\u2019s competitive nature takes over during downtime at the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":1163},{"seriesId":45,"episodeFileId":898,"seasonNumber":6,"episodeNumber":13,"title":"Wag the Hog","airDate":"2016-04-10","airDateUtc":"2016-04-11T01:00:00Z","overview":"When Bob\u2019s longtime friend, Critter, finds himself in jail for unpaid parking tickets, the Belchers decide to do what they can to help him out. Meanwhile, Linda takes on a babysitting job that becomes more work than she signed up for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":1164},{"seriesId":45,"episodeFileId":904,"seasonNumber":6,"episodeNumber":14,"title":"The Hormone-iums","airDate":"2016-04-17","airDateUtc":"2016-04-18T01:00:00Z","overview":"When Dottie Minerva comes down with a bad case of mono, Tina gets her shot as soloist of the Hormone-iums. But as she rehearses for the big assembly, Tina realizes that her role in the play could ruin her social status. Meanwhile, Linda strikes gold with a business plan that she thinks could make the Belchers rich.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":1165},{"seriesId":45,"episodeFileId":909,"seasonNumber":6,"episodeNumber":15,"title":"Pro Tiki\/Con Tiki","airDate":"2016-04-24","airDateUtc":"2016-04-25T01:00:00Z","overview":"When Bob\u2019s friend, Warren, comes to town, he makes an offer to invest in the restaurant. Bob is thrilled that it finally could get a much-needed makeover, until he learns that Warren has some strong interior design choices in mind. Meanwhile, Warren\u2019s visit means one of the kids must give up their bedroom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":1166},{"seriesId":45,"episodeFileId":915,"seasonNumber":6,"episodeNumber":16,"title":"Bye Bye Boo Boo","airDate":"2016-05-08","airDateUtc":"2016-05-09T01:00:00Z","overview":"When Louise hears that Boo Boo is leaving Boyz 4 Now, she enters a contest that could give Tina the chance to meet him. Meanwhile, Bob and Linda learn an interesting piece of history regarding the restaurant, which leads to tension between Bob and Jimmy Pesto.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":1167},{"seriesId":45,"episodeFileId":923,"seasonNumber":6,"episodeNumber":17,"title":"The Horse Rider-er","airDate":"2016-05-15","airDateUtc":"2016-05-16T01:00:00Z","overview":"After finally convincing Bob and Linda to send her to horse camp, Tina realizes she has to part ways with Jericho, her imaginary horse. Meanwhile, Linda decides to create a restaurant camp in an attempt to make things fair for Gene and Louise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":1168},{"seriesId":45,"episodeFileId":930,"seasonNumber":6,"episodeNumber":18,"title":"Secret Admiral-irer","airDate":"2016-05-22","airDateUtc":"2016-05-23T01:00:00Z","overview":"Tina\u2019s ideas of love and romance are tested when she volunteers at a nursing home to earn her next Thunder Girls badge. Meanwhile, Bob makes new friends who lead him to make some questionable choices.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":1169},{"seriesId":45,"episodeFileId":937,"seasonNumber":6,"episodeNumber":19,"title":"Glued, Where's My Bob?","airDate":"2016-05-22","airDateUtc":"2016-05-23T01:22:00Z","overview":"The kids\u2019 goop war lands Bob in a sticky situation. The prank happens to occur on the same day that Skip Marooch calls to tell Bob that a journalist is coming to the restaurant to write a profile and the whole town gets involved.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":1170},{"seriesId":45,"episodeFileId":17867,"seasonNumber":7,"episodeNumber":1,"title":"Flu-ouise","airDate":"2016-09-25","airDateUtc":"2016-09-26T01:00:00Z","overview":"When the youngest Belcher comes down with an epic case of the flu, Linda has a mishap as she tries to deliver Louise\u2019s favorite toy to her daughter\u2019s bedside. After Louise vows that she will never forgive her family for their mistake, she falls into a wild fever dream filled with familiar faces, zany musical numbers and a crazy adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":1171},{"seriesId":45,"episodeFileId":17879,"seasonNumber":7,"episodeNumber":2,"title":"Sea Me Now","airDate":"2016-10-09","airDateUtc":"2016-10-10T01:00:00Z","overview":"Teddy organizes a day trip on his newly refurbished boat in an effort to impress his ex-wife, Denise. Meanwhile, Tina attempts to show that she is responsible enough for a cell phone by taking care of Bob\u2019s prized eraser from the restaurant. Can both Teddy and Tina prove themselves?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":1172},{"seriesId":45,"episodeFileId":827,"seasonNumber":7,"episodeNumber":3,"title":"Teen-a-Witch","airDate":"2016-10-23","airDateUtc":"2016-10-24T01:00:00Z","overview":"With Halloween quickly approaching, Tina reveals her brilliant idea that will finally win her first place in the annual costume contest. When Tammy steals her idea, Tina is forced to seek the help of Mr. Ambrose, who leads her to alternate and other-worldly methods of winning. Meanwhile, Bob is on a mission to figure out who is stealing his perfectly crafted pumpkins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":1173},{"seriesId":45,"episodeFileId":17871,"seasonNumber":7,"episodeNumber":4,"title":"They Serve Horses, Don't They?","airDate":"2016-11-06","airDateUtc":"2016-11-07T02:00:00Z","overview":"After a tip from Jimmy Pesto, Bob secures a new meat provider who claims to save clients money on every order. The Belchers quickly realize that the situation is too good to be true, as they find themselves involved in a full-blown investigation, led by Hugo and Ron. Will Bob crack under the pressure or will he lead the investigators to a huge victory?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":1174},{"seriesId":45,"episodeFileId":17873,"seasonNumber":7,"episodeNumber":5,"title":"Larger Brother, Where Fart Thou?","airDate":"2016-11-20","airDateUtc":"2016-11-21T02:00:00Z","overview":"When Tina has a mishap that lands her in detention, Bob and Linda don't have a babysitter for their other kids, forcing them to let Gene and Louise stay at home alone. With the house to themselves, the younger Belchers find themselves in a sticky situation, while Bob and Linda get into surprising trouble with their accountant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":1175},{"seriesId":45,"episodeFileId":17872,"seasonNumber":7,"episodeNumber":6,"title":"The Quirkducers","airDate":"2016-11-20","airDateUtc":"2016-11-21T02:22:00Z","overview":"When Mr. Frond\u2019s annual play threatens to ruin the half day before Thanksgiving, Gene and Louise decide they need to sabotage it in order to save their long weekend. Unknowingly, Tina provides her holiday fan fiction as the subject matter and the kids get to work on their own version of the play. Meanwhile, Linda finds a potato with a striking resemblance to her late grandfather.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":1176},{"seriesId":45,"episodeFileId":17881,"seasonNumber":7,"episodeNumber":7,"title":"The Last Gingerbread House on the Left","airDate":"2016-11-27","airDateUtc":"2016-11-28T02:00:00Z","overview":"As the Belchers prepare for Christmas, Bob gets an unexpected call from Mr. Fischoeder asking him to bring food to a party at his home. When Bob arrives, he discovers that he has gotten involved in an intense gingerbread house building competition with Mr. Fischoeder's rowdy group of friends. Meanwhile, Linda and Teddy try to inspire some Christmas cheer in the neighbors as they take the kids caroling.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":1177},{"seriesId":45,"episodeFileId":17882,"seasonNumber":7,"episodeNumber":8,"title":"Ex Mach Tina","airDate":"2017-01-08","airDateUtc":"2017-01-09T02:00:00Z","overview":"When Tina hurts her ankle, she is left with no choice but to telecommute to school. After enrolling in a program that allows her to send a robot version of herself to class, Tina finds herself having an unexpected breakthrough with Jimmy Jr. Will technology be the thing that finally unites Tina with her biggest crush of all time?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":1178},{"seriesId":45,"episodeFileId":17868,"seasonNumber":7,"episodeNumber":9,"title":"Bob Actually","airDate":"2017-02-12","airDateUtc":"2017-02-13T02:00:00Z","overview":"With Valentine\u2019s Day approaching, Tina, Gene and Louise each find themselves wrapped up in love-caused chaos. Meanwhile, Bob decides on a romantic gesture in order to impress Linda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":1179},{"seriesId":45,"episodeFileId":17883,"seasonNumber":7,"episodeNumber":10,"title":"There's No Business Like Mr. Business Business","airDate":"2017-02-19","airDateUtc":"2017-02-20T02:00:00Z","overview":"When Gayle's cat, Mr. Business, secures pet agent Ian Amberson, Bob finds out that Linda may have been helping to fund the cat's career. Ever the skeptic, Bob is prepared to shut it down, but learns that Mr. Business could be on the verge of his big break.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":1180},{"seriesId":45,"episodeFileId":17869,"seasonNumber":7,"episodeNumber":11,"title":"A Few 'Gurt Men","airDate":"2017-03-05","airDateUtc":"2017-03-06T02:00:00Z","overview":"Louise is put in a sticky situation when she must defend one of her biggest foes at Wagstaff during a mock-trial. Meanwhile, Bob works with Jimmy Pesto to out a regular food-scammer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":1181},{"seriesId":45,"episodeFileId":17884,"seasonNumber":7,"episodeNumber":12,"title":"Like Gene for Chocolate","airDate":"2017-03-12","airDateUtc":"2017-03-13T01:00:00Z","overview":"When Gene learns that the formula for his favorite chocolate has changed, he works with the head of the company in an attempt to remedy the situation. Meanwhile, Bob gets wrapped up in one of Teddy's less-than-perfect plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":1182},{"seriesId":45,"episodeFileId":897,"seasonNumber":7,"episodeNumber":13,"title":"The Grand Mama-Pest Hotel","airDate":"2017-03-19","airDateUtc":"2017-03-20T01:00:00Z","overview":"Linda jumps at the chance to chaperone Tina\u2019s weekend away at a heroine conference, but Tina\u2019s new friend could put Linda\u2019s perfect weekend in jeopardy. Meanwhile, the younger Belchers have plans for their weekend alone with Bob. What could possibly go wrong?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":1183},{"seriesId":45,"episodeFileId":17870,"seasonNumber":7,"episodeNumber":14,"title":"Aquaticism","airDate":"2017-03-26","airDateUtc":"2017-03-27T01:00:00Z","overview":"When Tina learns that the aquarium is in danger of closing, the Belcher children devise a scheme to keep it running. Meanwhile, Bob realizes that he could learn a thing or two from Linda's customer service skills.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":1184},{"seriesId":45,"episodeFileId":17875,"seasonNumber":7,"episodeNumber":15,"title":"Ain't Miss Debatin'","airDate":"2017-03-26","airDateUtc":"2017-03-27T01:22:00Z","overview":"When Tina is recruited by the debate team, she finds unexpected success and an even more unexpected relationship. Meanwhile, Louise and Gene convince their parents to help fund a stop-motion movie focusing on a surprising subject matter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":1185},{"seriesId":45,"episodeFileId":917,"seasonNumber":7,"episodeNumber":16,"title":"Eggs for Days","airDate":"2017-04-02","airDateUtc":"2017-04-03T01:00:00Z","overview":"The annual Easter egg hunt always brings out the competitive sides of Bob and Linda, but this time, the game goes awry. After the Belcher parents have a little too much fun hiding the eggs, the entire family is enlisted in finding the lone egg that is quickly rotting in its hiding place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":1186},{"seriesId":45,"episodeFileId":17874,"seasonNumber":7,"episodeNumber":17,"title":"Zero Larp Thirty","airDate":"2017-04-23","airDateUtc":"2017-04-24T01:00:00Z","overview":"When Linda wins a contest to spend a dream weekend at the home where her favorite television show is filmed, things don't go quite as planned. Also, Teddy's back problems leave him stuck on the floor while he babysits the kids.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":1187},{"seriesId":45,"episodeFileId":17877,"seasonNumber":7,"episodeNumber":18,"title":"The Laser-inth","airDate":"2017-04-23","airDateUtc":"2017-04-24T01:22:00Z","overview":"Gene accompanies Bob on the last-ever rock-and-roll laser show at the planetarium and Linda and the girls go out for dinner at a wacky restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":1188},{"seriesId":45,"episodeFileId":17876,"seasonNumber":7,"episodeNumber":19,"title":"Thelma & Louise Except Thelma is Linda","airDate":"2017-04-30","airDateUtc":"2017-05-01T01:00:00Z","overview":"After Louise gets in trouble at school, Linda is forced to meet with Mr. Frond and potentially could lose her hard-earned position as the Wagstaff bake sale leader. When she finds out that her daughter was actually trying to help another student, Linda is torn between following school policy or her own moral code.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":1189},{"seriesId":45,"episodeFileId":17880,"seasonNumber":7,"episodeNumber":20,"title":"Mom, Lies, and Videotapes","airDate":"2017-05-07","airDateUtc":"2017-05-08T01:00:00Z","overview":"Linda comes down with a nasty cold just in time for the Mother\u2019s Day show at Wagstaff. When Bob's outdated camcorder malfunctions, the kids perform a reimagined version of the pageant for Linda back at home. Will the kids' creative liberties be enough to make Linda feel the Mother's Day love?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":1190},{"seriesId":45,"episodeFileId":17878,"seasonNumber":7,"episodeNumber":21,"title":"Paraders of the Lost Float","airDate":"2017-05-21","airDateUtc":"2017-05-22T01:00:00Z","overview":"When the forecast calls for rain on the day of the Bog to Beach parade, Teddy convinces Bob to enter the float contest with the promise of an easy win. As the parade goes awry, Bob realizes he might need an attitude adjustment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":1191},{"seriesId":45,"episodeFileId":949,"seasonNumber":7,"episodeNumber":22,"title":"Into the Mild","airDate":"2017-06-11","airDateUtc":"2017-06-12T01:00:00Z","overview":"When Bob finds out that the nearby wilderness equipment store is having a going out of business sale, he decides to finally realize his dream of becoming an outdoorsman. In true Bob fashion, he encounters a snafu that leaves him stuck in the store overnight to fend for himself. Meanwhile, Linda and the kids spend the night watching the rehearsal for Aunt Gayle's one-woman show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":1192},{"seriesId":45,"episodeFileId":810,"seasonNumber":8,"episodeNumber":1,"title":"Brunchsquatch","airDate":"2017-10-01","airDateUtc":"2017-10-02T01:00:00Z","overview":"To compete with Jimmy Pesto, Bob's Burgers begins serving brunch, but it quickly turns to chaos. Meanwhile, Tina, Gene and Louise decide to help Mr. Fischoeder's brother hide from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":130,"unverifiedSceneNumbering":false,"id":1193},{"seriesId":45,"episodeFileId":819,"seasonNumber":8,"episodeNumber":2,"title":"The Silence of the Louise","airDate":"2017-10-15","airDateUtc":"2017-10-16T01:00:00Z","overview":"When Mr. Frond's therapy dolls are mysteriously attacked, Louise teams up with Millie to help solve the case. Meanwhile, Teddy decides to get into the inspirational poster business, but ends up with mixed results","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":1194},{"seriesId":45,"episodeFileId":826,"seasonNumber":8,"episodeNumber":3,"title":"The Wolf of Wharf Street","airDate":"2017-10-22","airDateUtc":"2017-10-23T01:00:00Z","overview":"On Halloween night, Linda tries to impress the kids by taking them to look for a wolf that has been terrorizing the town. Meanwhile, an injured and medicated Bob believes that Teddy has turned into a werewolf.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":1195},{"seriesId":45,"episodeFileId":835,"seasonNumber":8,"episodeNumber":4,"title":"Sit Me Baby One More Time","airDate":"2017-11-05","airDateUtc":"2017-11-06T02:00:00Z","overview":"When Tina launches a babysitting enterprise, it is quickly derailed after her business nemesis, Tammy, is hired to work alongside her. Meanwhile, Bob and Linda check out their competition at a restaurant that\u2019s known for its burgers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":1196},{"seriesId":45,"episodeFileId":843,"seasonNumber":8,"episodeNumber":5,"title":"Thanks-hoarding","airDate":"2017-11-19","airDateUtc":"2017-11-20T02:00:00Z","overview":"When Teddy\u2019s family unexpectedly announces that they\u2019re coming for Thanksgiving, the Belchers reluctantly agree to pitch in. The preparation proves to be much more challenging than they had anticipated, especially upon discovering that Teddy is a secret hoarder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":1197},{"seriesId":45,"episodeFileId":844,"seasonNumber":8,"episodeNumber":6,"title":"The Bleakening (1)","airDate":"2017-12-10","airDateUtc":"2017-12-11T02:00:00Z","overview":"Linda is determined to host a party at the restaurant, in an effort to spread a little extra cheer around the neighborhood. But when she realizes that her prized ornaments have been stolen, she quickly begins questioning all guests, including Marshmallow's friend - Art the Artist. However, the kids have their own theory, attributing the robbery to the anti-Santa - The Bleaken.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":1198},{"seriesId":45,"episodeFileId":844,"seasonNumber":8,"episodeNumber":7,"title":"The Bleakening (2)","airDate":"2017-12-10","airDateUtc":"2017-12-11T02:22:00Z","overview":"Linda is determined to host a party at the restaurant, in an effort to spread a little extra cheer around the neighborhood. But when she realizes that her prized ornaments have been stolen, she quickly begins questioning all guests, including Marshmallow's friend - Art the Artist. However, the kids have their own theory, attributing the robbery to the anti-Santa - The Bleaken.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":1199},{"seriesId":45,"episodeFileId":866,"seasonNumber":8,"episodeNumber":8,"title":"V for Valentine-detta","airDate":"2018-01-14","airDateUtc":"2018-01-15T02:00:00Z","overview":"After a rough break up on Valentine's Day, the Belcher women have a limo girls' night out to make Tina feel better. Meanwhile, Bob and Gene have a trapeze experience that brings them closer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":1200},{"seriesId":45,"episodeFileId":873,"seasonNumber":8,"episodeNumber":9,"title":"Y Tu Ga-Ga Tambien","airDate":"2018-03-11","airDateUtc":"2018-03-12T01:00:00Z","overview":"When a new playground game is introduced, the school's social hierarchy is turned upside-down and Gene disapproves. Meanwhile, Linda fills in for the local library storyteller and pulls out all the stops to perfect her storyteller persona.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":1201},{"seriesId":45,"episodeFileId":881,"seasonNumber":8,"episodeNumber":10,"title":"The Secret Ceramics Room of Secrets","airDate":"2018-03-18","airDateUtc":"2018-03-19T01:00:00Z","overview":"When the kids are given the task of making homemade gifts for their grandma's birthday, they set out to find a secret room filled with homemade ceramics which, according to urban legend, has been boarded up for years at their school. Meanwhile, Teddy starts a phone repair service and the adults become determined to improve his online rating.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":1202},{"seriesId":45,"episodeFileId":888,"seasonNumber":8,"episodeNumber":11,"title":"Sleeping with the Frenemy","airDate":"2018-03-25","airDateUtc":"2018-03-26T01:00:00Z","overview":"Tina allows Tammy to spend Spring Break with the Belchers - and even plays Cupid, setting up Tammy with Brett, a boy from out of town. Then, Gene and Bob enlist the help of Dr. Yap in finding a replacement baby tooth to complete Linda's collection, after Gene loses his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":140,"unverifiedSceneNumbering":false,"id":1203},{"seriesId":45,"episodeFileId":895,"seasonNumber":8,"episodeNumber":12,"title":"The Hurt Soccer","airDate":"2018-04-01","airDateUtc":"2018-04-02T01:00:00Z","overview":"After forgetting that they signed up Louise for a soccer league, the Belchers must help her prepare to play in the season's last game. With Bob coaching the soccer game, Linda and Gene seize the opportunity to turn the restaurant into a piano bar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":141,"unverifiedSceneNumbering":false,"id":1204},{"seriesId":45,"episodeFileId":902,"seasonNumber":8,"episodeNumber":13,"title":"Cheer Up, Sleepy Gene","airDate":"2018-04-08","airDateUtc":"2018-04-09T01:00:00Z","overview":"Gene gets invited to his first sleepover and is nervous about it, and when things don't go as planned, he realizes he had a right to be. Meanwhile, Bob and Linda record themselves while sleeping to prove who snores more.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":142,"unverifiedSceneNumbering":false,"id":1205},{"seriesId":45,"episodeFileId":908,"seasonNumber":8,"episodeNumber":14,"title":"The Trouble with Doubles","airDate":"2018-04-15","airDateUtc":"2018-04-16T01:00:00Z","overview":"Bob and Linda\u2019s double-date plans take a disastrous turn when the couples find themselves trapped inside an Escape Room. Meanwhile, with the parents out of the house, Louise hosts a zombie-movie night, but when the zombies turn out to be too scary, Tina must take charge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":143,"unverifiedSceneNumbering":false,"id":1206},{"seriesId":45,"episodeFileId":914,"seasonNumber":8,"episodeNumber":15,"title":"Go Tina on the Mountain","airDate":"2018-04-22","airDateUtc":"2018-04-23T01:00:00Z","overview":"The Belcher kids go to Outdoor Education only to have it rain, but Tina doesn\u2019t let the inclement weather get in the way of her having a nature-piphany, with the help of a hermit living in the woods. Meanwhile, Bob and Linda experience what it\u2019s like to be empty-nesters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":144,"unverifiedSceneNumbering":false,"id":1207},{"seriesId":45,"episodeFileId":920,"seasonNumber":8,"episodeNumber":16,"title":"Are You There Bob? It's Me, Birthday","airDate":"2018-04-29","airDateUtc":"2018-04-30T01:00:00Z","overview":"After forgetting Bob's birthday, Linda and the kids attempt to plan a last-minute surprise party. In order to plan the party though, Linda asks Hugo if Bob can go with him while he's doing restaurant health inspections.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":145,"unverifiedSceneNumbering":false,"id":1208},{"seriesId":45,"episodeFileId":926,"seasonNumber":8,"episodeNumber":17,"title":"Boywatch","airDate":"2018-05-06","airDateUtc":"2018-05-07T01:00:00Z","overview":"Tina decides to join the Junior Lifeguards, but when she struggles with the training, one of her fellow junior guards, Parker, tries to convince her to quit. Meanwhile, business booms when Bob and Linda offer free wi-fi at the restaurant, but it is soon threatened by a cyber-attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":146,"unverifiedSceneNumbering":false,"id":1209},{"seriesId":45,"episodeFileId":932,"seasonNumber":8,"episodeNumber":18,"title":"As I Walk Through the Alley of the Shadow of Ramps","airDate":"2018-05-13","airDateUtc":"2018-05-14T01:00:00Z","overview":"When a malicious juice truck owner tries to set up shop in the Belcher's alley, Louise devises a plan to win back their turf. Meanwhile, Linda learns that she can't always run to her sister's defense.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":147,"unverifiedSceneNumbering":false,"id":1210},{"seriesId":45,"episodeFileId":938,"seasonNumber":8,"episodeNumber":19,"title":"Mo Mommy, Mo Problems","airDate":"2018-05-13","airDateUtc":"2018-05-14T01:22:00Z","overview":"The Belchers attend open houses for the free food, per Linda's \"momnipotent\" Mother's Day request. When Linda meets a charming real estate agent and agrees to a private showing, the kids stumble upon an unexpected surprise and the family ends up at the helm of a real estate scheme.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":1211},{"seriesId":45,"episodeFileId":943,"seasonNumber":8,"episodeNumber":20,"title":"Mission Impos-slug-ble","airDate":"2018-05-20","airDateUtc":"2018-05-21T01:00:00Z","overview":"When Louise's extensive Burobu card collection gets confiscated at school, she devises a tricky plan to get them back. Meanwhile, Bob must give a eulogy for an old acquaintance, despite an unfortunate incident that happened years ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":1212},{"seriesId":45,"episodeFileId":948,"seasonNumber":8,"episodeNumber":21,"title":"Something Old, Something New, Something Bob Caters for You","airDate":"2018-05-20","airDateUtc":"2018-05-21T01:22:00Z","overview":"Just as Bob wonders if working in the restaurant business is worth it, a couple who fell in love at the restaurant asks the Belchers to cater their wedding. When things don't go as planned, Linda tries to save the day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":1213},{"seriesId":45,"episodeFileId":809,"seasonNumber":9,"episodeNumber":1,"title":"Just One of the Boyz 4 Now for Now","airDate":"2018-09-30","airDateUtc":"2018-10-01T01:00:00Z","overview":"Convinced she\u2019s met the love of her life, Tina decides to disguise herself as a boy and sneak into the Boyz 4 Now auditions to find him. Back at the Restaurant, Teddy asks the rest of the Belcher gang to nurse his baby rat back to health.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":151,"unverifiedSceneNumbering":false,"id":1214},{"seriesId":45,"episodeFileId":818,"seasonNumber":9,"episodeNumber":2,"title":"The Taking of Funtime One Two Three","airDate":"2018-10-07","airDateUtc":"2018-10-08T01:00:00Z","overview":"Desperate for the grand prize dune buggy at their local arcade, Louise, Tina and Gene devise a master plan, with the help of Mr. Fischoeder. Meanwhile, Teddy manages to convince Bob and Linda to take in a chicken by promising fresh eggs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":152,"unverifiedSceneNumbering":false,"id":1215},{"seriesId":45,"episodeFileId":4441,"seasonNumber":9,"episodeNumber":3,"title":"Tweentrepreneurs","airDate":"2018-10-14","airDateUtc":"2018-10-15T01:00:00Z","overview":"Tina, Louise and Gene get a taste of business when they join the school's Tweentrepeneurs club. Back at the restaurant, Bob and Linda find themselves outsmarted by a dine-and-dasher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":153,"unverifiedSceneNumbering":false,"id":1216},{"seriesId":45,"episodeFileId":5095,"seasonNumber":9,"episodeNumber":4,"title":"Nightmare on Ocean Avenue Street","airDate":"2018-10-21","airDateUtc":"2018-10-22T01:00:00Z","overview":"The kids set out for their regular Halloween shenanigans, but when everyone's candy bags start mysteriously disappearing, it's up to Tina, Louise and Gene to find the culprit. Meanwhile, Teddy decorates the restaurant to compete with another handyman on the street, but gets a little carried away.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":1217},{"seriesId":45,"episodeFileId":5737,"seasonNumber":9,"episodeNumber":5,"title":"Live and Let Fly","airDate":"2018-11-04","airDateUtc":"2018-11-05T02:00:00Z","overview":"The kids learn the dangers of revenge when their plan to get back at the school guidance counselor gets them entangled in a deep rooted sibling rivalry between two pilots. Meanwhile, Linda and Bob put their game faces on when Teddy invites them to a paper airplane contest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":1218},{"seriesId":45,"episodeFileId":5726,"seasonNumber":9,"episodeNumber":6,"title":"Bobby Driver","airDate":"2018-11-11","airDateUtc":"2018-11-12T02:00:00Z","overview":"Bob agrees to drive professional quilter Edith around town, after she convinces him to join in a plot for revenge. Meanwhile, the kids attend a lavish \"Gatsby\"-themed birthday party, and Linda helps Teddy expand his taste palate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":7290},{"seriesId":45,"episodeFileId":5724,"seasonNumber":9,"episodeNumber":7,"title":"I Bob Your Pardon","airDate":"2018-11-18","airDateUtc":"2018-11-19T02:00:00Z","overview":"The Belchers set out to save a turkey from a trip to the slaughterhouse, but when a local reporter catches wind of their schemes, the mission becomes more complicated than they had anticipated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":8643},{"seriesId":45,"episodeFileId":5727,"seasonNumber":9,"episodeNumber":8,"title":"Roller? I Hardly Know Her!","airDate":"2018-11-25","airDateUtc":"2018-11-26T02:00:00Z","overview":"Gene is livid when his best friend, Alex, ditches him to be Courtney's roller-dancing partner. Meanwhile, Teddy, Linda and Bob let their imaginations get the best of them when they discover someone stalking the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":158,"unverifiedSceneNumbering":false,"id":8825},{"seriesId":45,"episodeFileId":5717,"seasonNumber":9,"episodeNumber":9,"title":"UFO No You Didn't","airDate":"2018-12-02","airDateUtc":"2018-12-03T02:00:00Z","overview":"Tina and her new science partner create a device that allows them to communicate with aliens, but their excitement turns to fear when they receive a dangerous warning message. Meanwhile, Bob attempts to sell mini coat racks he bought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":159,"unverifiedSceneNumbering":false,"id":8828},{"seriesId":45,"episodeFileId":5715,"seasonNumber":9,"episodeNumber":10,"title":"Better Off Sled","airDate":"2018-12-09","airDateUtc":"2018-12-10T02:00:00Z","overview":"The battle is on when some angsty teenagers take over Louise, Gene and Tina's usual sledding territory, inciting an epic turf war. Meanwhile, Bob steps in to help Linda, who's in a time crunch to get three scarves knitted before Christmas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":160,"unverifiedSceneNumbering":false,"id":8863},{"seriesId":45,"episodeFileId":6332,"seasonNumber":9,"episodeNumber":11,"title":"Lorenzo's Oil? No, Linda's","airDate":"2019-01-06","airDateUtc":"2019-01-07T02:00:00Z","overview":"Linda's new friend introduces her to essential oils and Aunt Gayle is convinced she must be rescued. Meanwhile, Bob and Teddy are bamboozled into performing a series of annoying favors for Mr. Huggins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":161,"unverifiedSceneNumbering":false,"id":9427},{"seriesId":45,"episodeFileId":6420,"seasonNumber":9,"episodeNumber":12,"title":"The Helen Hunt","airDate":"2019-01-13","airDateUtc":"2019-01-14T02:00:00Z","overview":"The Belchers make it their mission to help Teddy get his dream girl, but Tina is convinced she's found a better match for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":162,"unverifiedSceneNumbering":false,"id":9428},{"seriesId":45,"episodeFileId":6951,"seasonNumber":9,"episodeNumber":13,"title":"Bed, Bob & Beyond","airDate":"2019-02-10","airDateUtc":"2019-02-11T02:00:00Z","overview":"A Valentine's Day fight between Bob and Linda has the kids feeling confused. After a failed attempt to see a movie, it's up to Tina, Louise and Gene to tell their own story as a distraction from the awkward tension.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":163,"unverifiedSceneNumbering":false,"id":9923},{"seriesId":45,"episodeFileId":6955,"seasonNumber":9,"episodeNumber":14,"title":"Every Which Way but Goose","airDate":"2019-02-17","airDateUtc":"2019-02-18T02:00:00Z","overview":"Tina, discouraged by not being asked to prom by Jimmy Jr., forms an unhealthy attachment to a goose from the nearby park. Meanwhile, Linda joins a dating app to help Gretchen find a match.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":164,"unverifiedSceneNumbering":false,"id":10284},{"seriesId":45,"episodeFileId":7135,"seasonNumber":9,"episodeNumber":15,"title":"The Fresh Princ-ipal","airDate":"2019-03-03","airDateUtc":"2019-03-04T02:00:00Z","overview":"Things get out of hand when Louise wins a contest to be Principal for a Day. Back at the restaurant, Teddy has a unique suggestion to help Bob when he suddenly finds himself unable to flip burgers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":165,"unverifiedSceneNumbering":false,"id":10754},{"seriesId":45,"episodeFileId":7148,"seasonNumber":9,"episodeNumber":16,"title":"Roamin' Bob-iday","airDate":"2019-03-10","airDateUtc":"2019-03-11T01:00:00Z","overview":"The family forces workaholic Bob to take a much-needed day off, only for him to wind up working at a local sandwich shop. Meanwhile, Linda and the kids throw a last minute baby shower at the restaurant for a female biker group.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":166,"unverifiedSceneNumbering":false,"id":10755},{"seriesId":45,"episodeFileId":7188,"seasonNumber":9,"episodeNumber":17,"title":"What About Blob?","airDate":"2019-03-17","airDateUtc":"2019-03-18T01:00:00Z","overview":"Gene convinces Tina and Louise to help him save a misunderstood plankton blob from being destroyed by a yacht club.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":167,"unverifiedSceneNumbering":false,"id":10914},{"seriesId":45,"episodeFileId":7203,"seasonNumber":9,"episodeNumber":18,"title":"If You Love It So Much, Why Don't You Marionette?","airDate":"2019-03-24","airDateUtc":"2019-03-25T01:00:00Z","overview":"On a school field trip, the kids visit a marionette theater, where Louise gets on the owner\u2019s bad side. Bob takes pity on a guy handing out flyers outside the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":168,"unverifiedSceneNumbering":false,"id":10915},{"seriesId":45,"episodeFileId":7249,"seasonNumber":9,"episodeNumber":19,"title":"Long Time Listener, First Time Bob","airDate":"2019-04-07","airDateUtc":"2019-04-08T01:00:00Z","overview":"The Belchers get in over their heads when they try to help Bob\u2019s personal hero, a renegade radio DJ, make a comeback.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":169,"unverifiedSceneNumbering":false,"id":10920},{"seriesId":45,"episodeFileId":7382,"seasonNumber":9,"episodeNumber":20,"title":"The Gene Mile","airDate":"2019-04-28","airDateUtc":"2019-04-29T01:00:00Z","overview":"When the kids have to run a mandatory mile for school on free-ice-cream-day, they hatch an elaborate plot to sneak away. Bob and Linda frantically try to secure discount tickets to a show at the Wharf Arts Center.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":170,"unverifiedSceneNumbering":false,"id":11088},{"seriesId":45,"episodeFileId":7414,"seasonNumber":9,"episodeNumber":21,"title":"P.T.A. It Ain't So","airDate":"2019-05-05","airDateUtc":"2019-05-06T01:00:00Z","overview":"Linda attempts to become more involved with the P.T.A.; Bob tries to cheer up a hardware store owner after unknowingly making a joke about his pet parrot that recently flew away.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":171,"unverifiedSceneNumbering":false,"id":11103},{"seriesId":45,"episodeFileId":7436,"seasonNumber":9,"episodeNumber":22,"title":"Yes Without My Zeke","airDate":"2019-05-12","airDateUtc":"2019-05-13T01:00:00Z","overview":"When Zeke gets into trouble, the Belcher kids and Jimmy Jr. try to prevent him from being sent to a disciplinary school; Tina tries to thwart their mission, so she can have Jimmy Jr. to herself; Randy rents out Bob's Burgers to shoot a film.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":172,"unverifiedSceneNumbering":false,"id":11104},{"seriesId":45,"episodeFileId":9146,"seasonNumber":10,"episodeNumber":1,"title":"The Ring (But Not Scary)","airDate":"2019-09-29","airDateUtc":"2019-09-30T01:00:00Z","overview":"Bob\u2019s plan to surprise Linda for their anniversary gets tricky when the kids become involved.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":173,"unverifiedSceneNumbering":false,"id":11584},{"seriesId":45,"episodeFileId":9624,"seasonNumber":10,"episodeNumber":2,"title":"Boys Just Wanna Have Fungus","airDate":"2019-10-06","airDateUtc":"2019-10-07T01:00:00Z","overview":"Bob and Gene try to acquire a rare mushroom for a Burger of the Day. Tina thinks her new prescription glasses have given her a superpower.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":174,"unverifiedSceneNumbering":false,"id":13070},{"seriesId":45,"episodeFileId":9814,"seasonNumber":10,"episodeNumber":3,"title":"Motor, She Boat","airDate":"2019-10-13","airDateUtc":"2019-10-14T01:00:00Z","overview":"Bob and Tina participate in a father-daughter cardboard boat race. Linda takes Gene and Louise to a fire station open house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":175,"unverifiedSceneNumbering":false,"id":13114},{"seriesId":45,"episodeFileId":9839,"seasonNumber":10,"episodeNumber":4,"title":"Pig Trouble in Little Tina","airDate":"2019-10-20","airDateUtc":"2019-10-21T01:00:00Z","overview":"Things get spooky when Tina dissects a fetal pig in science class. Bob and Linda battle a giant ball of earwax.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":176,"unverifiedSceneNumbering":false,"id":13115},{"seriesId":45,"episodeFileId":9991,"seasonNumber":10,"episodeNumber":5,"title":"Legends of the Mall","airDate":"2019-11-03","airDateUtc":"2019-11-04T02:00:00Z","overview":"On a Belcher family trip to the mall, Tina is mistaken for a sleeping boy's girlfriend; Gene and Louise are turned loose on motorized animals; Linda disrupts a book reading; Bob struggles to shop for acceptable pants.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":177,"unverifiedSceneNumbering":false,"id":13116},{"seriesId":45,"episodeFileId":10168,"seasonNumber":10,"episodeNumber":6,"title":"The Hawkening: Look Who's Hawking Now!","airDate":"2019-11-10","airDateUtc":"2019-11-11T02:00:00Z","overview":"Bob and Louise are riding high, hosting an exclusive screening of a Hawk & Chick movie at the restaurant, until the actor who plays Hawk throws a wrench into the works, for his own mysterious reasons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":178,"unverifiedSceneNumbering":false,"id":13117},{"seriesId":45,"episodeFileId":10193,"seasonNumber":10,"episodeNumber":7,"title":"Land of the Loft","airDate":"2019-11-17","airDateUtc":"2019-11-18T02:00:00Z","overview":"Bob and Linda attend a loft party on a stormy night while the kids challenge their babysitter and face the storm in an ice cream truck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":179,"unverifiedSceneNumbering":false,"id":14776},{"seriesId":45,"episodeFileId":10274,"seasonNumber":10,"episodeNumber":8,"title":"Now We're Not Cooking with Gas","airDate":"2019-11-24","airDateUtc":"2019-11-25T02:00:00Z","overview":"Bob is willing to do whatever it takes to cook a rare, heritage turkey when the gas goes out on Thanksgiving.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":180,"unverifiedSceneNumbering":false,"id":14777},{"seriesId":45,"episodeFileId":10373,"seasonNumber":10,"episodeNumber":9,"title":"All That Gene","airDate":"2019-12-01","airDateUtc":"2019-12-02T02:00:00Z","overview":"Gene auditions for a small role in a local theater production, but things backfire when he discovers that Linda actually bargained with the director to get Gene the part.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":181,"unverifiedSceneNumbering":false,"id":15578},{"seriesId":45,"episodeFileId":10623,"seasonNumber":10,"episodeNumber":10,"title":"Have Yourself a Maily Linda Christmas","airDate":"2019-12-15","airDateUtc":"2019-12-16T02:00:00Z","overview":"Linda works a temp job at the post office to make extra money for the holidays. But when an important package goes undelivered, Linda breaks protocol and takes it upon herself to save the day. Meanwhile, Bob and Tina are trapped at home with Linda\u2019s fussy family and Gene and Louise scramble last-minute to find the perfect gift for Tina.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":182,"unverifiedSceneNumbering":false,"id":15635},{"seriesId":45,"episodeFileId":11285,"seasonNumber":10,"episodeNumber":11,"title":"Drumforgiven","airDate":"2020-01-12","airDateUtc":"2020-01-13T02:00:00Z","overview":"Gene gets kicked out of the Ocean Avenue Hifi Emporium, but Louise takes matters into her own hands to defend Gene's honor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":183,"unverifiedSceneNumbering":false,"id":15669},{"seriesId":45,"episodeFileId":12493,"seasonNumber":10,"episodeNumber":12,"title":"A Fish Called Tina","airDate":"2020-02-16","airDateUtc":"2020-02-17T02:00:00Z","overview":"Tina tries too hard to be a perfect mentor; Bob and Linda visit the gym next door.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":184,"unverifiedSceneNumbering":false,"id":17103},{"seriesId":45,"episodeFileId":12576,"seasonNumber":10,"episodeNumber":13,"title":"Three Girls and a Little Wharfy","airDate":"2020-02-23","airDateUtc":"2020-02-24T02:00:00Z","overview":"In spite of her skepticism, Louise joins the search for a mythic sea monster. Bob takes a famous chef\u2019s online master class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":185,"unverifiedSceneNumbering":false,"id":17117},{"seriesId":45,"episodeFileId":12642,"seasonNumber":10,"episodeNumber":14,"title":"Wag the Song","airDate":"2020-03-01","airDateUtc":"2020-03-02T02:00:00Z","overview":"Tina competes with Gene and Louise to write a new school song for Wagstaff. Jimmy Pesto\u2019s new steel awning creates a blinding glare for Bob and Linda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":186,"unverifiedSceneNumbering":false,"id":17198},{"seriesId":45,"episodeFileId":12686,"seasonNumber":10,"episodeNumber":15,"title":"Yurty Rotten Scoundrels","airDate":"2020-03-08","airDateUtc":"2020-03-09T01:00:00Z","overview":"Linda goes to Gayle\u2019s artists\u2019 workshop in a yurt. Louise and Gene search for a lost cat to collect a cash reward.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":187,"unverifiedSceneNumbering":false,"id":17199},{"seriesId":45,"episodeFileId":12713,"seasonNumber":10,"episodeNumber":16,"title":"Flat-Top o' the Morning to Ya","airDate":"2020-03-15","airDateUtc":"2020-03-16T01:00:00Z","overview":"Bob and the kids help a down-on-his-luck restaurant owner while Linda and Teddy celebrate St. Patrick\u2019s Day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":188,"unverifiedSceneNumbering":false,"id":17200},{"seriesId":45,"episodeFileId":12745,"seasonNumber":10,"episodeNumber":17,"title":"Just the Trip","airDate":"2020-03-22","airDateUtc":"2020-03-23T01:00:00Z","overview":"The Belchers go on a road trip with Nat the limo driver.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":189,"unverifiedSceneNumbering":false,"id":17263},{"seriesId":45,"episodeFileId":12903,"seasonNumber":10,"episodeNumber":18,"title":"Tappy Tappy Tappy Tap Tap Tap","airDate":"2020-04-19","airDateUtc":"2020-04-20T01:00:00Z","overview":"Tina suspects sabotage when Josh gets injured on-stage in a tap show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":190,"unverifiedSceneNumbering":false,"id":17497},{"seriesId":45,"episodeFileId":13209,"seasonNumber":10,"episodeNumber":19,"title":"The Handyman Can","airDate":"2020-04-26","airDateUtc":"2020-04-27T01:00:00Z","overview":"The Belcher kids try to help Teddy when he doubts his abilities as a handyman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":191,"unverifiedSceneNumbering":false,"id":17587},{"seriesId":45,"episodeFileId":13277,"seasonNumber":10,"episodeNumber":20,"title":"Poops!... I Didn't Do It Again","airDate":"2020-05-03","airDateUtc":"2020-05-04T01:00:00Z","overview":"Louise must confront her fear of pooping in public on an overnight school trip to the aquarium. Linda enlists the rest of the family to make a video for her parents\u2019 anniversary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":192,"unverifiedSceneNumbering":false,"id":17588},{"seriesId":45,"episodeFileId":13295,"seasonNumber":10,"episodeNumber":21,"title":"Local She-ro","airDate":"2020-05-10","airDateUtc":"2020-05-11T01:00:00Z","overview":"Linda ends up on the trail of a legendary local singer while showing Tina what's great about their town; Teddy asks Bob for help arguing with a sports radio host.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":193,"unverifiedSceneNumbering":false,"id":17589},{"seriesId":45,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Pilot vs First Episode Comparison","airDate":"2020-05-14","airDateUtc":"2020-05-15T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20790},{"seriesId":45,"episodeFileId":13352,"seasonNumber":10,"episodeNumber":22,"title":"Prank You for Being a Friend","airDate":"2020-05-17","airDateUtc":"2020-05-18T01:00:00Z","overview":"A classmate comes to Louise for lessons in how to get in trouble; Bob reluctantly agrees to bring Jimmy Pesto his hernia medication.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":194,"unverifiedSceneNumbering":false,"id":17590},{"seriesId":45,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Bored","airDate":"2020-07-17","airDateUtc":"2020-07-18T01:00:00Z","overview":"Stay home, stay safe episode posted on Twitter","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18606},{"seriesId":45,"episodeFileId":15628,"seasonNumber":11,"episodeNumber":1,"title":"Dream a Little Bob of Bob","airDate":"2020-09-27","airDateUtc":"2020-09-28T01:00:00Z","overview":"Bob goes on an epic quest to find a misplaced lockbox key; Tina attempts to learn a hand-slapping song that everyone can do -- but her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":195,"unverifiedSceneNumbering":false,"id":18499},{"seriesId":45,"episodeFileId":15665,"seasonNumber":11,"episodeNumber":2,"title":"Worms of In-Rear-ment","airDate":"2020-10-04","airDateUtc":"2020-10-05T01:00:00Z","overview":"Linda's efforts to take her family to the symphony are thwarted by a pinworm epidemic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":196,"unverifiedSceneNumbering":false,"id":18500},{"seriesId":45,"episodeFileId":15702,"seasonNumber":11,"episodeNumber":3,"title":"Copa-Bob-bana","airDate":"2020-10-11","airDateUtc":"2020-10-12T01:00:00Z","overview":"Bob agrees to be the temporary chef at the Fischoeders' new nightclub.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":197,"unverifiedSceneNumbering":false,"id":18501},{"seriesId":45,"episodeFileId":15997,"seasonNumber":11,"episodeNumber":4,"title":"Heartbreak Hotel-oween","airDate":"2020-11-01","airDateUtc":"2020-11-02T02:00:00Z","overview":"Louise's plan to get revenge on Halloween for a candy transgression hits a snag when the Belcher kids meet a mysterious elderly woman at a hotel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":198,"unverifiedSceneNumbering":false,"id":18502},{"seriesId":45,"episodeFileId":0,"seasonNumber":11,"episodeNumber":5,"title":"Fast Time Capsules at Wagstaff School","airDate":"2020-11-08","airDateUtc":"2020-11-09T02:00:00Z","overview":"Tina is put in charge of the Wagstaff School time capsule project, but she makes an enemy when she rejects Tammy's submission. Meanwhile, Bob teases Linda over her inability to whistle.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":199,"unverifiedSceneNumbering":false,"id":18503},{"seriesId":45,"episodeFileId":16099,"seasonNumber":11,"episodeNumber":6,"title":"Bob Belcher and the Terrible, Horrible, No Good, Very Bad Kids","airDate":"2020-11-15","airDateUtc":"2020-11-16T02:00:00Z","overview":"The family must figure out how to keep the restaurant open after Bob's flattop breaks on the morning of the Ocean Avenue Business Association's: Ocean Fest on Ocean Avenue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":200,"unverifiedSceneNumbering":false,"id":18504},{"seriesId":45,"episodeFileId":16358,"seasonNumber":11,"episodeNumber":7,"title":"Diarrhea of a Poopy Kid","airDate":"2020-11-22","airDateUtc":"2020-11-23T02:00:00Z","overview":"When Gene can't eat Thanksgiving dinner because of a stomach flu, the family tries to cheer him up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":201,"unverifiedSceneNumbering":false,"id":19977},{"seriesId":45,"episodeFileId":16482,"seasonNumber":11,"episodeNumber":8,"title":"The Terminalator II: Terminals of Endearment","airDate":"2020-11-29","airDateUtc":"2020-11-30T02:00:00Z","overview":"When Linda's parents have a layover at an airport nearby, Bob and Linda attempt to turn it into their annual \"visit.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":202,"unverifiedSceneNumbering":false,"id":19978},{"seriesId":45,"episodeFileId":16510,"seasonNumber":11,"episodeNumber":9,"title":"Mommy Boy","airDate":"2020-12-06","airDateUtc":"2020-12-07T02:00:00Z","overview":"When Linda joins a women's business group, Gene gets possessive of her time. Meanwhile, Louise and Tina want to learn how to fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":203,"unverifiedSceneNumbering":false,"id":19979},{"seriesId":45,"episodeFileId":16845,"seasonNumber":11,"episodeNumber":10,"title":"Yachty or Nice","airDate":"2020-12-13","airDateUtc":"2020-12-14T02:00:00Z","overview":"Bob wonders if there\u2019s a catch to the Belchers being invited to cater the Glencrest Yacht Club\u2019s holiday boat parade. Louise has her eye on the Santa Schooner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":204,"unverifiedSceneNumbering":false,"id":19980},{"seriesId":45,"episodeFileId":17575,"seasonNumber":11,"episodeNumber":11,"title":"Romancing the Beef","airDate":"2021-02-21","airDateUtc":"2021-02-22T02:00:00Z","overview":"Louise convinces Bob and Linda to cash in on the Valentine's Day dinner business, forcing them to put their plans on hold. Meanwhile, Tina attends Tammy's Anti-Valentine's Day party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":205,"unverifiedSceneNumbering":false,"id":19981},{"seriesId":45,"episodeFileId":17677,"seasonNumber":11,"episodeNumber":12,"title":"Die Card, or Card Trying","airDate":"2021-02-28","airDateUtc":"2021-03-01T02:00:00Z","overview":"Linda drags Bob and the kids out into nature, determined to take the best holiday family portrait ever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":206,"unverifiedSceneNumbering":false,"id":19982},{"seriesId":45,"episodeFileId":17782,"seasonNumber":11,"episodeNumber":13,"title":"An Incon-Wheelie-ent Truth","airDate":"2021-03-07","airDateUtc":"2021-03-08T02:00:00Z","overview":"While on a family trip to the flea market, Bob and Linda are haunted by a lie they told Tina, Gene and Louise about what really happened to their beloved stuffed animal, Wheelie Mammoth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":207,"unverifiedSceneNumbering":false,"id":20770},{"seriesId":45,"episodeFileId":17806,"seasonNumber":11,"episodeNumber":14,"title":"Mr. Lonely Farts","airDate":"2021-03-14","airDateUtc":"2021-03-15T01:00:00Z","overview":"When Linda and Tina go to the shoe store, Gene accidently is left home by himself. Meanwhile, Bob, Louise and Teddy go to buy restaurant equipment from a creepy guy whom Bob found on the internet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":208,"unverifiedSceneNumbering":false,"id":20784},{"seriesId":45,"episodeFileId":17887,"seasonNumber":11,"episodeNumber":15,"title":"Sheshank Redumption","airDate":"2021-03-21","airDateUtc":"2021-03-22T01:00:00Z","overview":"Linda's new routine of diet and exercise gives her gastrointestinal trouble on the day of parent-teacher-student conferences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":209,"unverifiedSceneNumbering":false,"id":20792},{"seriesId":45,"episodeFileId":17919,"seasonNumber":11,"episodeNumber":16,"title":"Y Tu Tina Tambi\u00e9n","airDate":"2021-03-28","airDateUtc":"2021-03-29T01:00:00Z","overview":"When Tina is forced to listen to Spanish audio lessons in the library to improve her grade, she develops an unexpected crush; Louise and Gene want to dunk Mr. Frond at the Wagstaff Spring Fair.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":210,"unverifiedSceneNumbering":false,"id":20793},{"seriesId":45,"episodeFileId":17983,"seasonNumber":11,"episodeNumber":17,"title":"Fingers-loose","airDate":"2021-04-11","airDateUtc":"2021-04-12T01:00:00Z","overview":"Tina faces a hall-monitor crisis when she falls in love with a new underground trend; Bob and Linda try to come up with a way for Teddy to sneak food into a movie theatre.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":211,"unverifiedSceneNumbering":false,"id":20794},{"seriesId":45,"episodeFileId":18068,"seasonNumber":11,"episodeNumber":18,"title":"Some Kind of Fender Benderful","airDate":"2021-04-18","airDateUtc":"2021-04-19T01:00:00Z","overview":"Bob gets into a four-car fender bender outside the restaurant and finding out who\u2019s at fault proves to be harder than he thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":212,"unverifiedSceneNumbering":false,"id":20795},{"seriesId":45,"episodeFileId":18106,"seasonNumber":11,"episodeNumber":19,"title":"Bridge Over Troubled Rudy","airDate":"2021-05-02","airDateUtc":"2021-05-03T01:00:00Z","overview":"When Louise finds out that Rudy has a model bridge that explodes, she decides to set out on a sort-of-kind-of-perilous journey, dragging her siblings along for the ride.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":213,"unverifiedSceneNumbering":false,"id":20998},{"seriesId":45,"episodeFileId":18125,"seasonNumber":11,"episodeNumber":20,"title":"Steal Magazine-olias","airDate":"2021-05-09","airDateUtc":"2021-05-10T01:00:00Z","overview":"The Belcher kids get caught up in a game of cat-and-mouse when Dr. Yap comes to the restaurant in search of something that was taken from the waiting room of his office; Bob, Linda and Teddy try to clean a huge bird poop off the restaurant's window.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":214,"unverifiedSceneNumbering":false,"id":21268},{"seriesId":45,"episodeFileId":18178,"seasonNumber":11,"episodeNumber":21,"title":"Tell Me Dumb Thing Good","airDate":"2021-05-16","airDateUtc":"2021-05-17T01:00:00Z","overview":"Linda needs the kids' help in fighting for a fun, dumb, local tradition. Meanwhile, Bob is captivated by an online cucumber.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":215,"unverifiedSceneNumbering":false,"id":21296},{"seriesId":45,"episodeFileId":18251,"seasonNumber":11,"episodeNumber":22,"title":"Vampire Disco Death Dance","airDate":"2021-05-23","airDateUtc":"2021-05-24T01:00:00Z","overview":"After Tina and Bob plan a father-daughter date to see Bob's favorite old campy vampire-sing-along movie, Tina decides to invite her group of friends along, as well. Meanwhile, Linda opens a restaurant for the raccoons in their alley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":216,"unverifiedSceneNumbering":false,"id":21439},{"seriesId":45,"episodeFileId":0,"seasonNumber":12,"episodeNumber":1,"title":"TBA","airDate":"2021-09-26","airDateUtc":"2021-09-27T01:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21666}],"episodeFile":[{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Work Hard or Die Trying, Girl-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E01.Work Hard or Die Trying, Girl-WEBDL-1080p.mkv","size":952588242,"dateAdded":"2018-10-10T21:29:30.568493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4962226,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":803},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Sliding Bobs-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E01.Sliding Bobs-WEBDL-1080p.mkv","size":901490363,"dateAdded":"2018-10-10T21:29:30.595471Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4682624,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":804},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Ear-sy Rider-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E01.Ear-sy Rider-HDTV-1080p.mkv","size":886893542,"dateAdded":"2018-10-10T21:29:30.623918Z","releaseGroup":"sy","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4971656,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":805},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Human Flesh-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E01.Human Flesh-WEBDL-1080p.mkv","size":867124368,"dateAdded":"2018-10-10T21:29:30.650919Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4956813,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":806},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Belchies-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E01.The Belchies-HDTV-1080p.mkv","size":858507872,"dateAdded":"2018-10-10T21:29:30.705041Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4820768,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":808},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E01.Just One of the Boyz 4 Now for Now-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E01.Just One of the Boyz 4 Now for Now-WEBDL-1080p.mkv","size":657680891,"dateAdded":"2018-10-10T21:29:30.73207Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126809,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":809},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E01.Brunchsquatch-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E01.Brunchsquatch-HDTV-1080p.mkv","size":634514611,"dateAdded":"2018-10-10T21:29:30.759361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126847,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3775850,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":810},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Tina and the Real Ghost-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E02.Tina and the Real Ghost-WEBDL-1080p.mkv","size":947970260,"dateAdded":"2018-10-10T21:29:30.786502Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000368,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":811},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Crawl Space-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E02.Crawl Space-HDTV-1080p.mkv","size":896048511,"dateAdded":"2018-10-10T21:29:30.950518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5138029,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":814},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Full Bars-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E02.Full Bars-HDTV-1080p.mkv","size":878335356,"dateAdded":"2018-10-10T21:29:31.006143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4981998,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":816},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E02.The Land Ship-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E02.The Land Ship-WEBDL-1080p.mkv","size":877111766,"dateAdded":"2018-10-10T21:29:31.032438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5019380,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":817},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E02.The Taking of Funtime One Two Three-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E02.The Taking of Funtime One Two Three-WEBDL-1080p.mkv","size":624267388,"dateAdded":"2018-10-10T21:29:31.058258Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126790,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":818},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E02.The Silence of the Louise-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E02.The Silence of the Louise-HDTV-1080p.mkv","size":559421183,"dateAdded":"2018-10-10T21:29:31.083893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126833,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":819},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Friends with Burger-fits-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E03.Friends with Burger-fits-WEBDL-1080p.mkv","size":909484328,"dateAdded":"2018-10-10T21:29:31.109702Z","releaseGroup":"fits","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4802093,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":820},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Synchronized Swimming-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E03.Synchronized Swimming-HDTV-1080p.mkv","size":908552434,"dateAdded":"2018-10-10T21:29:31.135999Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5189115,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":821},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Hauntening-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E03.Hauntening-WEBDL-1080p.mkv","size":896669019,"dateAdded":"2018-10-10T21:29:31.16091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5155924,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":822},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Bob Fires the Kids-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E03.Bob Fires the Kids-HDTV-1080p.mkv","size":893426217,"dateAdded":"2018-10-10T21:29:31.185809Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5015475,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":823},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E03.The Wolf of Wharf Street-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E03.The Wolf of Wharf Street-HDTV-1080p.mkv","size":462409405,"dateAdded":"2018-10-10T21:29:31.260774Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2098060,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":826},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Teen-A-Witch-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E03.Teen-A-Witch-WEBDL-1080p.mkv","size":246484966,"dateAdded":"2018-10-10T21:29:31.285096Z","releaseGroup":"Witch","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":472229,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1025397,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":827},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Dawn of the Peck-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E04.Dawn of the Peck-HDTV-1080p.mkv","size":946117376,"dateAdded":"2018-10-10T21:29:31.311046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4879070,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":828},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Gayle Makin' Bob Sled-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E04.Gayle Makin' Bob Sled-WEBDL-1080p.mkv","size":926882581,"dateAdded":"2018-10-10T21:29:31.336084Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5277889,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":829},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Burgerboss-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E04.Burgerboss-HDTV-1080p.mkv","size":900340342,"dateAdded":"2018-10-10T21:29:31.385645Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5061984,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":831},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Sexy Dance Fighting-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E04.Sexy Dance Fighting-HDTV-1080p.mkv","size":871484338,"dateAdded":"2018-10-10T21:29:31.411023Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4964380,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":832},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Mutiny on the Windbreaker-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E04.Mutiny on the Windbreaker-HDTV-1080p.mkv","size":861718745,"dateAdded":"2018-10-10T21:29:31.436252Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4905816,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":833},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Sit Me Baby One More Time-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E04.Sit Me Baby One More Time-HDTV-1080p.mkv","size":551504922,"dateAdded":"2018-10-10T21:29:31.484237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126830,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":835},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E05.An Indecent Thanksgiving Proposal-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E05.An Indecent Thanksgiving Proposal-HDTV-1080p.mkv","size":953776600,"dateAdded":"2018-10-10T21:29:31.510853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4915446,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":836},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Nice-Capades-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E05.Nice-Capades-WEBDL-1080p.mkv","size":915919073,"dateAdded":"2018-10-10T21:29:31.561443Z","releaseGroup":"Capades","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5275858,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":838},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Best Burger-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E05.Best Burger-HDTV-1080p.mkv","size":892375965,"dateAdded":"2018-10-10T21:29:31.586524Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4786018,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":839},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Hamburger Dinner Theater-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E05.Hamburger Dinner Theater-HDTV-1080p.mkv","size":875424459,"dateAdded":"2018-10-10T21:29:31.611936Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5072452,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":840},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Food Truckin'-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E05.Food Truckin'-HDTV-1080p.mkv","size":873057524,"dateAdded":"2018-10-10T21:29:31.637303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4971118,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":841},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E05.Thanks-hoarding-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E05.Thanks-hoarding-HDTV-1080p.mkv","size":557779917,"dateAdded":"2018-10-10T21:29:31.688966Z","releaseGroup":"hoarding","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126825,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":843},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E06E07.The Bleakening-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E06E07.The Bleakening-WEBDL-1080p.mkv","size":1232800516,"dateAdded":"2018-10-10T21:29:31.71442Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126816,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":844},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Father of the Bob-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E06.Father of the Bob-WEBDL-1080p.mkv","size":924739131,"dateAdded":"2018-10-10T21:29:31.750662Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4860853,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":845},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Dr. Yap-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E06.Dr. Yap-HDTV-1080p.mkv","size":908213209,"dateAdded":"2018-10-10T21:29:31.805074Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5101480,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":847},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E06.The Cook, the Steve, the Gayle, & Her Lover-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E06.The Cook, the Steve, the Gayle, & Her Lover-WEBDL-1080p.mkv","size":877435773,"dateAdded":"2018-10-10T21:29:31.831849Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4729096,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":848},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Deepening-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E06.The Deepening-HDTV-1080p.mkv","size":861718745,"dateAdded":"2018-10-10T21:29:31.858315Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4905816,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":849},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Sheesh! Cab, Bob-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E06.Sheesh! Cab, Bob-HDTV-1080p.mkv","size":849210911,"dateAdded":"2018-10-10T21:29:31.891661Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4835340,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":850},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Moody Foodie-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E07.Moody Foodie-HDTV-1080p.mkv","size":927093575,"dateAdded":"2018-10-10T21:29:31.942582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5263403,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":852},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Tina Tailor Soldier Spy-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E07.Tina Tailor Soldier Spy-HDTV-1080p.mkv","size":916256097,"dateAdded":"2018-10-10T21:29:31.968735Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4771954,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":853},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E07.The Gene and Courtney Show-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E07.The Gene and Courtney Show-WEBDL-1080p.mkv","size":905360086,"dateAdded":"2018-10-10T21:29:32.021295Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5145853,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":855},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Tina-rannosaurus Wrecks-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E07.Tina-rannosaurus Wrecks-HDTV-1080p.mkv","size":882844040,"dateAdded":"2018-10-10T21:29:32.046905Z","releaseGroup":"rannosaurus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4953405,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":856},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Art Crawl-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E08.Art Crawl-HDTV-1080p.mkv","size":885080143,"dateAdded":"2018-10-10T21:29:32.151222Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5046825,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":860},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Unbearable Like-Likeness of Gene-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E08.The Unbearable Like-Likeness of Gene-HDTV-1080p.mkv","size":877736522,"dateAdded":"2018-10-10T21:29:32.177139Z","releaseGroup":"Likeness","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4933301,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":861},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Bad Tina-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E08.Bad Tina-HDTV-1080p.mkv","size":877072062,"dateAdded":"2018-10-10T21:29:32.202934Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4921370,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":862},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Sexy Dance Healing-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E08.Sexy Dance Healing-HDTV-1080p.mkv","size":872443057,"dateAdded":"2018-10-10T21:29:32.228902Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4965663,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":863},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Midday Run-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E08.Midday Run-HDTV-1080p.mkv","size":765733127,"dateAdded":"2018-10-10T21:29:32.282637Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4299466,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":865},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E08.V for Valentine-detta-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E08.V for Valentine-detta-WEBDL-1080p.mkv","size":424546905,"dateAdded":"2018-10-10T21:29:32.309497Z","releaseGroup":"detta","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1909661,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":866},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Speakeasy Rider-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E09.Speakeasy Rider-WEBDL-1080p.mkv","size":918811189,"dateAdded":"2018-10-10T21:29:32.361362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4927250,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":868},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E09.God Rest Ye Merry Gentle-Mannequins-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E09.God Rest Ye Merry Gentle-Mannequins-HDTV-1080p.mkv","size":889731215,"dateAdded":"2018-10-10T21:29:32.412939Z","releaseGroup":"Mannequins","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4993488,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":870},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Beefsquatch-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E09.Beefsquatch-HDTV-1080p.mkv","size":881431654,"dateAdded":"2018-10-10T21:29:32.439279Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4939723,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":871},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Y Tu Ga-Ga Tambien-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E09.Y Tu Ga-Ga Tambien-WEBDL-1080p.mkv","size":480054581,"dateAdded":"2018-10-10T21:29:32.49248Z","releaseGroup":"Ga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2142666,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":873},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Sacred Couch-HDTV-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E09.Sacred Couch-HDTV-720p.mkv","size":327321326,"dateAdded":"2018-10-10T21:29:32.521445Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1543957,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x718","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":874},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Mother Daughter Laser Razor-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E10.Mother Daughter Laser Razor-HDTV-1080p.mkv","size":904958533,"dateAdded":"2018-10-10T21:29:32.573929Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5087280,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":876},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Lice Things are Lice-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E10.Lice Things are Lice-HDTV-1080p.mkv","size":893955674,"dateAdded":"2018-10-10T21:29:32.600108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5055668,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":877},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Burger Wars-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E10.Burger Wars-HDTV-1080p.mkv","size":872715446,"dateAdded":"2018-10-10T21:29:32.626192Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4982783,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":878},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Late Afternoon in the Garden of Bob and Louise-WEBDL-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E10.Late Afternoon in the Garden of Bob and Louise-WEBDL-720p.mkv","size":669982016,"dateAdded":"2018-10-10T21:29:32.679136Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3423700,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":880},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E10.The Secret Ceramics Room of Secrets-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E10.The Secret Ceramics Room of Secrets-WEBDL-1080p.mkv","size":352446621,"dateAdded":"2018-10-10T21:29:32.705259Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1453113,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":881},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Can't Buy Me Math-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E11.Can't Buy Me Math-WEBDL-1080p.mkv","size":925867866,"dateAdded":"2018-10-10T21:29:32.731237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4817400,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":882},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E11.House of 1000 Bounces-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E11.House of 1000 Bounces-HDTV-1080p.mkv","size":907919905,"dateAdded":"2018-10-10T21:29:32.78411Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5049756,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":884},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Nude Beach-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E11.Nude Beach-HDTV-1080p.mkv","size":895836230,"dateAdded":"2018-10-10T21:29:32.811415Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5034002,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":885},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Weekend at Mort's-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E11.Weekend at Mort's-HDTV-1080p.mkv","size":875080036,"dateAdded":"2018-10-10T21:29:32.839193Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5068879,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":886},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E11.Sleeping With the Frenemy-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E11.Sleeping With the Frenemy-WEBDL-1080p.mkv","size":339083868,"dateAdded":"2018-10-10T21:29:32.892671Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1366161,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":888},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Stand By Gene-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E12.Stand By Gene-HDTV-1080p.mkv","size":911700546,"dateAdded":"2018-10-10T21:29:32.945437Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5011380,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":890},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Broadcast Wagstaff School News-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E12.Broadcast Wagstaff School News-HDTV-1080p.mkv","size":873000428,"dateAdded":"2018-10-10T21:29:32.998317Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4935120,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":892},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E12.The Millie-churian Candidate-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E12.The Millie-churian Candidate-HDTV-1080p.mkv","size":823467746,"dateAdded":"2018-10-10T21:29:33.024663Z","releaseGroup":"churian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4594438,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":893},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E12.The Hurt Soccer-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E12.The Hurt Soccer-WEBDL-1080p.mkv","size":451121284,"dateAdded":"2018-10-10T21:29:33.078989Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2039483,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":895},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E13.The Gayle Tales-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E13.The Gayle Tales-HDTV-1080p.mkv","size":942095182,"dateAdded":"2018-10-10T21:29:33.104995Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000554,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":896},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E13.The Grand Mama-Pest Hotel-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E13.The Grand Mama-Pest Hotel-HDTV-1080p.mkv","size":911195629,"dateAdded":"2018-10-10T21:29:33.130693Z","releaseGroup":"Pest","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5160636,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":897},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E13.Wag the Hog-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E13.Wag the Hog-HDTV-1080p.mkv","size":893268905,"dateAdded":"2018-10-10T21:29:33.156661Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5002572,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":898},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E13.My Fuzzy Valentine-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E13.My Fuzzy Valentine-HDTV-1080p.mkv","size":887201119,"dateAdded":"2018-10-10T21:29:33.182825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000530,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":899},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Torpedo-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E13.Torpedo-HDTV-1080p.mkv","size":873104475,"dateAdded":"2018-10-10T21:29:33.209139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4981568,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":900},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E13.Cheer Up, Sleepy Gene-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E13.Cheer Up, Sleepy Gene-WEBDL-1080p.mkv","size":395457464,"dateAdded":"2018-10-10T21:29:33.262853Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1717078,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":902},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E14.The Hormone-iums-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E14.The Hormone-iums-HDTV-1080p.mkv","size":897389700,"dateAdded":"2018-10-10T21:29:33.315876Z","releaseGroup":"iums","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5076585,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":904},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Lindapendent Woman-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E14.Lindapendent Woman-HDTV-1080p.mkv","size":865984614,"dateAdded":"2018-10-10T21:29:33.341964Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4928998,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":905},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E14.L'il Hard Dad-WEBDL-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E14.L'il Hard Dad-WEBDL-720p.mkv","size":659560448,"dateAdded":"2018-10-10T21:29:33.394845Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3426296,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":907},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E14.The Trouble with Doubles-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E14.The Trouble with Doubles-WEBDL-1080p.mkv","size":361474446,"dateAdded":"2018-10-10T21:29:33.420695Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1514363,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":908},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Pro Tiki+Con Tiki-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E15.Pro Tiki+Con Tiki-HDTV-1080p.mkv","size":918170208,"dateAdded":"2018-10-10T21:29:33.446664Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5050042,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":909},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E15.O.T.- The Outside Toilet-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E15.O.T.- The Outside Toilet-HDTV-1080p.mkv","size":878505092,"dateAdded":"2018-10-10T21:29:33.500362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5010002,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":911},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E15.Go Tina on the Mountain-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E15.Go Tina on the Mountain-WEBDL-1080p.mkv","size":661785368,"dateAdded":"2018-10-10T21:29:33.579235Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126783,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":914},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Bye Bye Boo Boo-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E16.Bye Bye Boo Boo-HDTV-1080p.mkv","size":921683076,"dateAdded":"2018-10-10T21:29:33.605056Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5074885,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":915},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E16.The Runway Club-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E16.The Runway Club-HDTV-1080p.mkv","size":919395510,"dateAdded":"2018-10-10T21:29:33.631096Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4954644,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":916},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E16.Eggs for Days-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E16.Eggs for Days-HDTV-1080p.mkv","size":897260003,"dateAdded":"2018-10-10T21:29:33.658311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5080125,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":917},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Topsy-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E16.Topsy-HDTV-1080p.mkv","size":880662917,"dateAdded":"2018-10-10T21:29:33.684571Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4939607,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":918},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E16.Are You There Bob! It's Me, Birthday-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E16.Are You There Bob! It's Me, Birthday-WEBDL-1080p.mkv","size":545073365,"dateAdded":"2018-10-10T21:29:33.737372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126834,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":920},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E17.Itty Bitty Ditty Committee-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E17.Itty Bitty Ditty Committee-WEBDL-1080p.mkv","size":952825870,"dateAdded":"2018-10-10T21:29:33.763415Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5078481,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":921},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E17.The Horse Rider-er-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E17.The Horse Rider-er-HDTV-1080p.mkv","size":899093471,"dateAdded":"2018-10-10T21:29:33.816544Z","releaseGroup":"er","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4817734,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":923},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Two for Tina-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E17.Two for Tina-HDTV-1080p.mkv","size":887770542,"dateAdded":"2018-10-10T21:29:33.842855Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4982573,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":924},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E17.Boywatch-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E17.Boywatch-WEBDL-1080p.mkv","size":611092227,"dateAdded":"2018-10-10T21:29:33.908382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126841,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":926},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E18.It Snakes a Village-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E18.It Snakes a Village-HDTV-1080p.mkv","size":865147517,"dateAdded":"2018-10-10T21:29:33.944107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4923996,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":928},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Eat, Spray, Linda-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E18.Eat, Spray, Linda-HDTV-1080p.mkv","size":827217062,"dateAdded":"2018-10-10T21:29:33.960051Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4675544,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":929},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E18.Secret Admiral-irer-HDTV-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E18.Secret Admiral-irer-HDTV-720p.mkv","size":733367594,"dateAdded":"2018-10-10T21:29:33.979387Z","releaseGroup":"irer","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3920767,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x718","runTime":"22:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":930},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E18.As I Walk Through the Alley of the Shadow of Ramps-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E18.As I Walk Through the Alley of the Shadow of Ramps-WEBDL-1080p.mkv","size":560970322,"dateAdded":"2018-10-10T21:29:34.015947Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126835,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":932},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Family Fracas-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E19.Family Fracas-HDTV-1080p.mkv","size":894718914,"dateAdded":"2018-10-10T21:29:34.051196Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5045607,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":934},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Housetrap-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E19.Housetrap-HDTV-1080p.mkv","size":783694494,"dateAdded":"2018-10-10T21:29:34.067083Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4353842,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":935},{"seriesId":45,"seasonNumber":6,"relativePath":"Season 06\/S06E19.Glued, Where\u2019s My Bob-HDTV-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 06\/S06E19.Glued, Where\u2019s My Bob-HDTV-720p.mkv","size":652595289,"dateAdded":"2018-10-10T21:29:34.102161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3454869,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":937},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E19.Mo Mommy Mo Problems-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E19.Mo Mommy Mo Problems-WEBDL-1080p.mkv","size":608772848,"dateAdded":"2018-10-10T21:29:34.121525Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126816,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":938},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E20.Hawk & Chick-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E20.Hawk & Chick-WEBDL-1080p.mkv","size":895410130,"dateAdded":"2018-10-10T21:29:34.157534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4756565,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":940},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E20.The Kids Run the Restaurant-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E20.The Kids Run the Restaurant-HDTV-1080p.mkv","size":886714288,"dateAdded":"2018-10-10T21:29:34.173334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4994898,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":941},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E20.Mission Impos-slug-ble-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E20.Mission Impos-slug-ble-WEBDL-1080p.mkv","size":346303295,"dateAdded":"2018-10-10T21:29:34.20882Z","releaseGroup":"ble","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1408530,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":943},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E21.The Oeder Games-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E21.The Oeder Games-WEBDL-1080p.mkv","size":947555350,"dateAdded":"2018-10-10T21:29:34.228478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4993702,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":944},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Boyz 4 Now-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E21.Boyz 4 Now-HDTV-1080p.mkv","size":831494678,"dateAdded":"2018-10-10T21:29:34.264641Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4715225,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":946},{"seriesId":45,"seasonNumber":8,"relativePath":"Season 08\/S08E21.Something Old, Something New, Something Bob Caters for You-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 08\/S08E21.Something Old, Something New, Something Bob Caters for You-WEBDL-1080p.mkv","size":415992059,"dateAdded":"2018-10-10T21:29:34.301417Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1826624,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":948},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E22.Into the Mild-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E22.Into the Mild-HDTV-1080p.mkv","size":990205167,"dateAdded":"2018-10-10T21:29:34.317135Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5199304,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":949},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Carpe Museum-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E22.Carpe Museum-HDTV-1080p.mkv","size":858211278,"dateAdded":"2018-10-10T21:29:34.336295Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4885266,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":950},{"seriesId":45,"seasonNumber":3,"relativePath":"Season 03\/S03E23.The Unnatural-HDTV-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 03\/S03E23.The Unnatural-HDTV-1080p.mkv","size":876838366,"dateAdded":"2018-10-10T21:29:34.371786Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4916488,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":952},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E03.Tweentrepreneurs-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E03.Tweentrepreneurs-WEBDL-1080p.mkv","size":558093388,"dateAdded":"2018-10-15T00:45:52.279022Z","sceneName":"Bobs.Burgers.S09E03.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126829,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4441},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E04.Nightmare on Ocean Avenue Street-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E04.Nightmare on Ocean Avenue Street-WEBDL-1080p.mkv","size":186408975,"dateAdded":"2018-10-23T18:40:39.413326Z","sceneName":"Bobs Burgers (2011) - S09E04 (1080p WEB-DL x265 HEVC 10bit AAC 2.0 ImE)","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126826,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1024633,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5095},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E10.Better Off Sled-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E10.Better Off Sled-WEBDL-1080p.mkv","size":663489498,"dateAdded":"2018-12-27T17:00:08.613157Z","sceneName":"Bobs.Burgers.S09E10.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126855,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5715},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E09.UFO No You Didn't-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E09.UFO No You Didn't-WEBDL-1080p.mkv","size":494834844,"dateAdded":"2018-12-27T17:05:37.667785Z","sceneName":"Bobs.Burgers.S09E09.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126817,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5717},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E07.I Bob Your Pardon-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E07.I Bob Your Pardon-WEBDL-1080p.mkv","size":636856977,"dateAdded":"2018-12-27T17:48:28.268383Z","sceneName":"Bobs.Burgers.S09E07.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126849,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5724},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E06.Bobby Driver-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E06.Bobby Driver-WEBDL-1080p.mkv","size":679793353,"dateAdded":"2018-12-27T18:03:56.676144Z","sceneName":"Bobs.Burgers.S09E06.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126846,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5726},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E08.Roller! I Hardly Know Her!-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E08.Roller! I Hardly Know Her!-WEBDL-1080p.mkv","size":599466183,"dateAdded":"2018-12-27T18:08:03.943309Z","sceneName":"Bobs.Burgers.S09E08.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126812,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5727},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E05.Live and Let Fly-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E05.Live and Let Fly-WEBDL-1080p.mkv","size":601580924,"dateAdded":"2018-12-27T18:50:39.266134Z","sceneName":"Bobs.Burgers.S09E05.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126826,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5737},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E11.Lorenzo's Oil! No, Linda's-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E11.Lorenzo's Oil! No, Linda's-WEBDL-1080p.mkv","size":508082814,"dateAdded":"2019-01-07T01:56:40.893982Z","sceneName":"Bobs.Burgers.S09E11.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126837,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6332},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E12.The Helen Hunt-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E12.The Helen Hunt-WEBDL-1080p.mkv","size":567973590,"dateAdded":"2019-01-14T01:50:08.495032Z","sceneName":"Bobs.Burgers.S09E12.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126830,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6420},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E13.Bed, Bob and Beyond-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E13.Bed, Bob and Beyond-WEBDL-1080p.mkv","size":671079061,"dateAdded":"2019-02-11T01:41:25.952852Z","sceneName":"Bobs.Burgers.S09E13.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126837,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6951},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E14.Every Which Way but Goose-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E14.Every Which Way but Goose-WEBDL-1080p.mkv","size":578694446,"dateAdded":"2019-02-18T10:50:39.51044Z","sceneName":"Bobs.Burgers.S09E14.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126827,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6955},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E15.The Fresh Princ-ipal-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E15.The Fresh Princ-ipal-WEBDL-1080p.mkv","size":491832763,"dateAdded":"2019-03-04T01:43:31.877968Z","sceneName":"Bobs.Burgers.S09E15.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126830,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7135},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E16.Roamin' Bob-iday-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E16.Roamin' Bob-iday-WEBDL-1080p.mkv","size":627968971,"dateAdded":"2019-03-11T00:45:56.079137Z","sceneName":"Bobs.Burgers.S09E16.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126811,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7148},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E17.What About Blob-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E17.What About Blob-WEBDL-1080p.mkv","size":596943424,"dateAdded":"2019-03-18T01:02:28.716439Z","sceneName":"Bobs.Burgers.S09E17.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126825,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7188},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E18.If You Love It So Much, Why Don't You Marionette-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E18.If You Love It So Much, Why Don't You Marionette-WEBDL-1080p.mkv","size":596088837,"dateAdded":"2019-03-25T00:49:32.986276Z","sceneName":"Bobs.Burgers.S09E18.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126828,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7203},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E19.Long Time Listener, First Time Bob-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E19.Long Time Listener, First Time Bob-WEBDL-1080p.mkv","size":537932030,"dateAdded":"2019-04-09T19:09:11.662647Z","sceneName":"Bobs.Burgers.S09E19.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126814,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7249},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E20.The Gene Mile-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E20.The Gene Mile-WEBDL-1080p.mkv","size":603224078,"dateAdded":"2019-04-29T00:51:02.465443Z","sceneName":"Bobs.Burgers.S09E20.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126831,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7382},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E21.P.T.A. It Ain't So-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E21.P.T.A. It Ain't So-WEBDL-1080p.mkv","size":587629045,"dateAdded":"2019-05-06T00:41:47.232539Z","sceneName":"Bobs.Burgers.S09E21.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126836,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7414},{"seriesId":45,"seasonNumber":9,"relativePath":"Season 09\/S09E22.Yes Without My Zeke-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 09\/S09E22.Yes Without My Zeke-WEBDL-1080p.mkv","size":501281022,"dateAdded":"2019-05-13T00:49:25.655757Z","sceneName":"Bobs.Burgers.S09E22.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126823,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7436},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E01.The Ring (But Not Scary)-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E01.The Ring (But Not Scary)-WEBDL-1080p.mkv","size":581655727,"dateAdded":"2019-09-30T01:22:19.899778Z","sceneName":"Bobs.Burgers.S10E01.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126831,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9146},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E02.Boys Just Wanna Have Fungus-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E02.Boys Just Wanna Have Fungus-WEBDL-1080p.mkv","size":588718982,"dateAdded":"2019-10-07T01:11:17.055811Z","sceneName":"Bobs.Burgers.S10E02.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126849,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3527936,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9624},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E03.Motor, She Boat-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E03.Motor, She Boat-WEBDL-1080p.mkv","size":611315274,"dateAdded":"2019-10-14T09:12:51.05846Z","sceneName":"Bobs.Burgers.S10E03.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126861,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3638998,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9814},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E04.Pig Trouble in Little Tina-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E04.Pig Trouble in Little Tina-WEBDL-1080p.mkv","size":552492632,"dateAdded":"2019-10-21T01:10:40.448576Z","sceneName":"Bobs.Burgers.S10E04.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126852,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3287322,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9839},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E05.Legends of the Mall-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E05.Legends of the Mall-WEBDL-1080p.mkv","size":602547731,"dateAdded":"2019-11-04T02:09:44.498845Z","sceneName":"Bobs.Burgers.S10E05.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126864,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3584836,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9991},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E06.The Hawkening - Look Who's Hawking Now!-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E06.The Hawkening - Look Who's Hawking Now!-WEBDL-1080p.mkv","size":548427790,"dateAdded":"2019-11-11T02:23:02.928662Z","sceneName":"Bobs.Burgers.S10E06.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126860,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3259124,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10168},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E07.Land of the Loft-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E07.Land of the Loft-WEBDL-1080p.mkv","size":530807364,"dateAdded":"2019-11-18T02:16:34.913111Z","sceneName":"Bobs.Burgers.S10E07.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126837,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3168134,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10193},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E08.Now We're Not Cooking With Gas-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E08.Now We're Not Cooking With Gas-WEBDL-1080p.mkv","size":615080785,"dateAdded":"2019-11-25T02:48:44.657248Z","sceneName":"Bobs.Burgers.S10E08.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126850,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3662090,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10274},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E09.All That Gene-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E09.All That Gene-WEBDL-1080p.mkv","size":615080785,"dateAdded":"2019-12-02T01:20:04.475364Z","sceneName":"Bobs.Burgers.S10E09.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126850,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3662090,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10373},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E10.Have Yourself A Maily Linda Christmas-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E10.Have Yourself A Maily Linda Christmas-WEBDL-1080p.mkv","size":528994694,"dateAdded":"2019-12-16T02:05:56.931557Z","sceneName":"Bobs.Burgers.S10E10.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126854,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3136773,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10623},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E11.Drumforgiven-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E11.Drumforgiven-WEBDL-1080p.mkv","size":615654682,"dateAdded":"2020-01-13T04:16:56.606405Z","sceneName":"Bobs.Burgers.S10E11.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126840,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3665757,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11285},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E12.A Fish Called Tina-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E12.A Fish Called Tina-WEBDL-1080p.mkv","size":575321843,"dateAdded":"2020-02-17T02:16:15.556974Z","sceneName":"Bobs.Burgers.S10E12.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126855,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3417162,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12493},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E01.A River Runs Through Bob-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E01.A River Runs Through Bob-WEBRip-720p.mkv","size":187806475,"dateAdded":"2020-02-22T12:37:57.482818Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12550},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Fort Night-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E02.Fort Night-WEBRip-720p.mkv","size":146337426,"dateAdded":"2020-02-22T12:37:58.792998Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12551},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Seaplane!-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E03.Seaplane!-WEBRip-720p.mkv","size":169599461,"dateAdded":"2020-02-22T12:37:59.655218Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12552},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E04.My Big Fat Greek Bob-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E04.My Big Fat Greek Bob-WEBRip-720p.mkv","size":133659441,"dateAdded":"2020-02-22T12:38:00.569533Z","language":{"id":20,"name":"Greek"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":12553},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Turkey in a Can-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E05.Turkey in a Can-WEBRip-720p.mkv","size":125186940,"dateAdded":"2020-02-22T12:38:01.37045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12554},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Purple Rain-Union-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E06.Purple Rain-Union-WEBRip-720p.mkv","size":138920613,"dateAdded":"2020-02-22T12:38:02.248641Z","releaseGroup":"Union","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12555},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Bob and Deliver-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E07.Bob and Deliver-WEBRip-720p.mkv","size":133790822,"dateAdded":"2020-02-22T12:38:02.966375Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12556},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Christmas in the Car-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E08.Christmas in the Car-WEBRip-720p.mkv","size":177941136,"dateAdded":"2020-02-22T12:38:03.652756Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12557},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Slumber Party-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E09.Slumber Party-WEBRip-720p.mkv","size":122727761,"dateAdded":"2020-02-22T12:38:04.611149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12558},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Presto Tina-O-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E10.Presto Tina-O-WEBRip-720p.mkv","size":127633357,"dateAdded":"2020-02-22T12:38:05.576639Z","releaseGroup":"O","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12559},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Easy Com-mercial, Easy Go-mercial-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E11.Easy Com-mercial, Easy Go-mercial-WEBRip-720p.mkv","size":125994461,"dateAdded":"2020-02-22T12:38:06.502971Z","releaseGroup":"mercial","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12560},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Mazel-Tina-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E13.Mazel-Tina-WEBRip-720p.mkv","size":137602160,"dateAdded":"2020-02-22T12:38:08.452661Z","releaseGroup":"Tina","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12562},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Uncle Teddy-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E14.Uncle Teddy-WEBRip-720p.mkv","size":131463858,"dateAdded":"2020-02-22T12:38:09.647469Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12563},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E15.The Kids Rob a Train-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E15.The Kids Rob a Train-WEBRip-720p.mkv","size":103455953,"dateAdded":"2020-02-22T12:38:11.541639Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"14:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12564},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E16.I Get Psy-chic Out Of You-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E16.I Get Psy-chic Out Of You-WEBRip-720p.mkv","size":130307150,"dateAdded":"2020-02-22T12:38:12.753326Z","releaseGroup":"chic","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12565},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E17.The Equestranauts-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E17.The Equestranauts-WEBRip-720p.mkv","size":158983273,"dateAdded":"2020-02-22T12:38:14.128805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12566},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Gene It On!-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E20.Gene It On!-WEBRip-720p.mkv","size":134363891,"dateAdded":"2020-02-22T12:38:19.094213Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12569},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Wharf Horse (or How Bob Saves+Destroys the Town) (1)-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E21.Wharf Horse (or How Bob Saves+Destroys the Town) (1)-WEBRip-720p.mkv","size":168297232,"dateAdded":"2020-02-22T12:38:20.940192Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12570},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E22.World Wharf II - The Wharfening (or How Bob Saves+Destroys the Town) (2)-WEBRip-720p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E22.World Wharf II - The Wharfening (or How Bob Saves+Destroys the Town) (2)-WEBRip-720p.mkv","size":157747176,"dateAdded":"2020-02-22T12:38:22.629659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12571},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E13.Three Girls and a Little Wharfy-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E13.Three Girls and a Little Wharfy-WEBDL-1080p.mkv","size":515204186,"dateAdded":"2020-02-24T02:24:02.801233Z","sceneName":"Bobs.Burgers.S10E13.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126843,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3071322,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12576},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E14.Wag the Song-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E14.Wag the Song-WEBDL-1080p.mkv","size":540135142,"dateAdded":"2020-03-02T02:12:48.632382Z","sceneName":"Bobs.Burgers.S10E14.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126847,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3205443,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12642},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E15.Yurty Rotten Scoundrels-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E15.Yurty Rotten Scoundrels-WEBDL-1080p.mkv","size":518116278,"dateAdded":"2020-03-09T01:15:35.23905Z","sceneName":"Bobs.Burgers.S10E15.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126830,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3067081,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12686},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E16.Flat-Top O' the Morning to Ya-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E16.Flat-Top O' the Morning to Ya-WEBDL-1080p.mkv","size":504677289,"dateAdded":"2020-03-16T01:19:22.813803Z","sceneName":"Bobs.Burgers.S10E16.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126833,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3005955,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12713},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E17.Just the Trip-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E17.Just the Trip-WEBDL-1080p.mkv","size":578984947,"dateAdded":"2020-03-23T01:08:44.334142Z","sceneName":"Bobs.Burgers.S10E17.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126818,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3453593,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12745},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E18.Tappy Tappy Tappy Tap Tap Tap-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E18.Tappy Tappy Tappy Tap Tap Tap-WEBDL-1080p.mkv","size":443866648,"dateAdded":"2020-04-20T01:25:21.462601Z","sceneName":"Bobs.Burgers.S10E18.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126849,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2606969,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12903},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E19.The Handyman Can-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E19.The Handyman Can-WEBDL-1080p.mkv","size":598423280,"dateAdded":"2020-04-27T01:21:38.337985Z","sceneName":"Bobs.Burgers.S10E19.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126851,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3573696,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13209},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E20.Poops!. I Didn't Do It Again-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E20.Poops!. I Didn't Do It Again-WEBDL-1080p.mkv","size":509984512,"dateAdded":"2020-05-04T02:01:29.433448Z","sceneName":"Bobs.Burgers.S10E20.1080p.WEB.X264-ALiGN[rarbg]","releaseGroup":"ALiGN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126854,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3039003,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13277},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E21.Episode 21-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E21.Episode 21-WEBDL-1080p.mkv","size":545013698,"dateAdded":"2020-05-11T01:13:33.20589Z","sceneName":"Bobs.Burgers.S10E21.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126828,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3243398,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13295},{"seriesId":45,"seasonNumber":10,"relativePath":"Season 10\/S10E22.Prank You for Being a Friend-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 10\/S10E22.Prank You for Being a Friend-WEBDL-1080p.mkv","size":455923909,"dateAdded":"2020-05-18T01:27:55.93982Z","sceneName":"Bobs.Burgers.S10E22.1080p.WEB.H264-ALiGN[rarbg]","releaseGroup":"ALiGN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126851,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2681369,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13352},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E01.Dream a Little Bob of Bob-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E01.Dream a Little Bob of Bob-WEBDL-1080p.mkv","size":554882785,"dateAdded":"2020-09-28T02:01:24.785531Z","sceneName":"Bobs.Burgers.S11E01.1080p.WEB.H264-VIDEOHOLE[rarbg]","releaseGroup":"VIDEOHOLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15628},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E02.Worms of In-Rear-Ment-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E02.Worms of In-Rear-Ment-WEBDL-1080p.mkv","size":600523012,"dateAdded":"2020-10-05T01:12:30.902238Z","sceneName":"Bobs.Burgers.S11E02.1080p.WEB.H264-CAKES[rarbg]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15665},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E03.Copa-Bob-bana-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E03.Copa-Bob-bana-WEBDL-1080p.mkv","size":544872686,"dateAdded":"2020-10-12T01:29:22.654443Z","sceneName":"Bobs.Burgers.S11E03.1080p.WEB.H264-CAKES[rarbg]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15702},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E04.Heartbreak Hotel-oween-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E04.Heartbreak Hotel-oween-WEBDL-1080p.mkv","size":507082980,"dateAdded":"2020-11-02T02:19:20.497416Z","sceneName":"Bobs.Burgers.S11E04.1080p.WEB.H264-CAKES[rarbg]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15997},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E06.Bob Belcher and the Terrible, Horrible, No Good, Very Bad Kids-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E06.Bob Belcher and the Terrible, Horrible, No Good, Very Bad Kids-WEBDL-1080p.mkv","size":542684980,"dateAdded":"2020-11-19T09:59:05.907269Z","sceneName":"Bobs.Burgers.S11E06.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16099},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E07.Diarrhea of a Poopy Kid-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E07.Diarrhea of a Poopy Kid-WEBDL-1080p.mkv","size":579622367,"dateAdded":"2020-11-23T02:31:11.50164Z","sceneName":"Bobs.Burgers.S11E07.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16358},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E08.The Terminalator II - Terminals of Endearment-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E08.The Terminalator II - Terminals of Endearment-WEBDL-1080p.mkv","size":559714170,"dateAdded":"2020-11-30T02:12:49.507692Z","sceneName":"Bobs.Burgers.S11E08.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16482},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E09.Mommy Boy-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E09.Mommy Boy-WEBDL-1080p.mkv","size":493436689,"dateAdded":"2020-12-07T02:30:04.241313Z","sceneName":"Bobs.Burgers.S11E09.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16510},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E10.Yachty or Nice-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E10.Yachty or Nice-WEBDL-1080p.mkv","size":538546860,"dateAdded":"2020-12-14T02:13:37.005278Z","sceneName":"Bobs.Burgers.S11E10.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16845},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E11.Romancing the Beef-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E11.Romancing the Beef-WEBDL-1080p.mkv","size":474164478,"dateAdded":"2021-02-22T02:25:41.275048Z","sceneName":"Bobs.Burgers.S11E11.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17575},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E12.Die Card, or Card Trying-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E12.Die Card, or Card Trying-WEBDL-1080p.mkv","size":510513941,"dateAdded":"2021-03-01T02:57:01.604393Z","sceneName":"Bobs.Burgers.S11E12.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17677},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E13.An Incon-Wheelie-ent Truth-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E13.An Incon-Wheelie-ent Truth-WEBDL-1080p.mkv","size":597438129,"dateAdded":"2021-03-08T02:35:48.349952Z","sceneName":"Bobs.Burgers.S11E13.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17782},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E14.Mr. Lonely Farts-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E14.Mr. Lonely Farts-WEBDL-1080p.mkv","size":536956575,"dateAdded":"2021-03-15T01:50:35.500463Z","sceneName":"Bobs.Burgers.S11E14.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17806},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Lobsterfest-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E12.Lobsterfest-WEBDL-1080p.mkv","size":624135194,"dateAdded":"2021-03-21T11:12:30.717263Z","sceneName":"Bobs.Burgers.S01E12.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3198115,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17856},{"seriesId":45,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Bob Day Afternoon-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 02\/S02E02.Bob Day Afternoon-WEBDL-1080p.mkv","size":574288569,"dateAdded":"2021-03-21T11:15:30.653239Z","sceneName":"Bobs.Burgers.S02E02.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2904318,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17857},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Spaghetti Western and Meatballs-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E09.Spaghetti Western and Meatballs-WEBDL-1080p.mkv","size":473917581,"dateAdded":"2021-03-21T11:15:35.422165Z","sceneName":"Bobs.Burgers.S01E09.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2271700,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17858},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Sacred Cow-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E03.Sacred Cow-WEBDL-1080p.mkv","size":488830841,"dateAdded":"2021-03-21T11:15:40.271099Z","sceneName":"Bobs.Burgers.S01E03.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2359544,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:42","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17859},{"seriesId":45,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Bed & Breakfast-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 01\/S01E07.Bed & Breakfast-WEBDL-1080p.mkv","size":418757007,"dateAdded":"2021-03-21T11:17:00.711349Z","sceneName":"Bobs.Burgers.S01E07.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1932704,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17860},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E18.Ambergris-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E18.Ambergris-WEBDL-1080p.mkv","size":389202497,"dateAdded":"2021-03-21T12:47:02.081288Z","sceneName":"Bobs.Burgers.S04E18.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1803739,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:12","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17862},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E12.The Frond Files-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E12.The Frond Files-WEBDL-1080p.mkv","size":521068342,"dateAdded":"2021-03-21T12:47:06.497291Z","sceneName":"Bobs.Burgers.S04E12.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2553712,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17863},{"seriesId":45,"seasonNumber":4,"relativePath":"Season 04\/S04E19.The Kids Run Away-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 04\/S04E19.The Kids Run Away-WEBDL-1080p.mkv","size":386793555,"dateAdded":"2021-03-21T12:47:10.978334Z","sceneName":"Bobs.Burgers.S04E19.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1750891,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17864},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Flu-ouise-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E01.Flu-ouise-WEBDL-1080p.mkv","size":479714109,"dateAdded":"2021-03-21T18:17:37.482996Z","sceneName":"Bobs.Burgers.S07E01.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2260465,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17867},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Bob Actually-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E09.Bob Actually-WEBDL-1080p.mkv","size":397292734,"dateAdded":"2021-03-21T18:27:37.723534Z","sceneName":"Bobs.Burgers.S07E09.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1806330,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17868},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E11.A Few 'Gurt Men-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E11.A Few 'Gurt Men-WEBDL-1080p.mkv","size":364034459,"dateAdded":"2021-03-21T18:29:25.329688Z","sceneName":"Bobs.Burgers.S07E11.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1601311,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17869},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E14.Aquaticism-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E14.Aquaticism-WEBDL-1080p.mkv","size":373063668,"dateAdded":"2021-03-21T18:31:12.116708Z","sceneName":"Bobs.Burgers.S07E14.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1660500,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17870},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E04.They Serve Horses, Don't They-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E04.They Serve Horses, Don't They-WEBDL-1080p.mkv","size":407719894,"dateAdded":"2021-03-21T18:32:57.004317Z","sceneName":"Bobs.Burgers.S07E04.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1877347,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:34","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17871},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E06.The Quirk-ducers-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E06.The Quirk-ducers-WEBDL-1080p.mkv","size":388742128,"dateAdded":"2021-03-21T18:34:44.486868Z","sceneName":"Bobs.Burgers.S07E06.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1762948,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17872},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Larger Brother, Where Fart Thou-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E05.Larger Brother, Where Fart Thou-WEBDL-1080p.mkv","size":388892207,"dateAdded":"2021-03-21T18:36:31.844691Z","sceneName":"Bobs.Burgers.S07E05.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1754459,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17873},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E17.Zero Larp Thirty-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E17.Zero Larp Thirty-WEBDL-1080p.mkv","size":465144870,"dateAdded":"2021-03-21T18:38:19.919273Z","sceneName":"Bobs.Burgers.S07E17.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2224503,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17874},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E15.Ain't Miss Debatin'-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E15.Ain't Miss Debatin'-WEBDL-1080p.mkv","size":361559224,"dateAdded":"2021-03-21T18:40:02.131357Z","sceneName":"Bobs.Burgers.S07E15.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1586050,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17875},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E19.Thelma & Louise Except Thelma is Linda-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E19.Thelma & Louise Except Thelma is Linda-WEBDL-1080p.mkv","size":444554938,"dateAdded":"2021-03-21T18:41:43.833914Z","sceneName":"Bobs.Burgers.S07E19.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2097659,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17876},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E18.The Laser-inth-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E18.The Laser-inth-WEBDL-1080p.mkv","size":430837391,"dateAdded":"2021-03-21T18:43:25.200545Z","sceneName":"Bobs.Burgers.S07E18.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2023401,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17877},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E21.Paraders of the Lost Float-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E21.Paraders of the Lost Float-WEBDL-1080p.mkv","size":669617964,"dateAdded":"2021-03-21T18:45:11.791435Z","sceneName":"Bobs.Burgers.S07E21.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3549308,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17878},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E02.Sea Me Now-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E02.Sea Me Now-WEBDL-1080p.mkv","size":550226760,"dateAdded":"2021-03-21T18:46:53.735829Z","sceneName":"Bobs.Burgers.S07E02.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2761968,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17879},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E20.Mom, Lies and Videotapes-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E20.Mom, Lies and Videotapes-WEBDL-1080p.mkv","size":438859895,"dateAdded":"2021-03-21T18:48:37.69453Z","sceneName":"Bobs.Burgers.S07E20.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2094153,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17880},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E07.The Last Gingerbread House on the Left-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E07.The Last Gingerbread House on the Left-WEBDL-1080p.mkv","size":415560510,"dateAdded":"2021-03-21T18:50:19.160109Z","sceneName":"Bobs.Burgers.S07E07.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1918891,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17881},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Ex MachTina-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E08.Ex MachTina-WEBDL-1080p.mkv","size":407974892,"dateAdded":"2021-03-21T18:52:01.702707Z","sceneName":"Bobs.Burgers.S07E08.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1872150,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17882},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E10.There's No Business Like Mr. Business Business-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E10.There's No Business Like Mr. Business Business-WEBDL-1080p.mkv","size":358519934,"dateAdded":"2021-03-21T19:44:44.262993Z","sceneName":"Bobs.Burgers.S07E10.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1601954,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17883},{"seriesId":45,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Like Gene for Chocolate-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 07\/S07E12.Like Gene for Chocolate-WEBDL-1080p.mkv","size":421997446,"dateAdded":"2021-03-21T19:46:30.688557Z","sceneName":"Bobs.Burgers.S07E12.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1961802,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17884},{"seriesId":45,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Adventures in Chinchilla-sitting-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 05\/S05E15.Adventures in Chinchilla-sitting-WEBDL-1080p.mkv","size":445259299,"dateAdded":"2021-03-21T19:48:12.026975Z","sceneName":"Bobs.Burgers.S05E15.1080p.WEB.h264-NOMA[TGx]","releaseGroup":"NOMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2133997,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17885},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E15.Sheshank Redumption-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E15.Sheshank Redumption-WEBDL-1080p.mkv","size":500076956,"dateAdded":"2021-03-22T01:47:14.360686Z","sceneName":"Bobs.Burgers.S11E15.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17887},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E16.Y Tu Tina Tambien-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E16.Y Tu Tina Tambien-WEBDL-1080p.mkv","size":549499788,"dateAdded":"2021-03-29T01:54:44.334775Z","sceneName":"Bobs.Burgers.S11E16.1080p.WEB.H264-CAKES[TGx]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17919},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E17.Fingers-loose-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E17.Fingers-loose-WEBDL-1080p.mkv","size":704693061,"dateAdded":"2021-04-12T02:11:59.328648Z","sceneName":"Bobs.Burgers.S11E17.1080p.WEB.H264-CAKES[TGx]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17983},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E18.Some Kind of Fender Benderful-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E18.Some Kind of Fender Benderful-WEBDL-1080p.mkv","size":652378248,"dateAdded":"2021-04-19T02:59:20.605599Z","sceneName":"Bobs.Burgers.S11E18.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18068},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E19.Bridge Over Troubled Rudy-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E19.Bridge Over Troubled Rudy-WEBDL-1080p.mkv","size":667892147,"dateAdded":"2021-05-03T01:46:46.473892Z","sceneName":"Bobs.Burgers.S11E19.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18106},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E20.Steal Magazine-olias-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E20.Steal Magazine-olias-WEBDL-1080p.mkv","size":641550318,"dateAdded":"2021-05-10T01:40:54.570449Z","sceneName":"Bobs.Burgers.S11E20.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18125},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E21.Tell Me Dumb Thing Good-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E21.Tell Me Dumb Thing Good-WEBDL-1080p.mkv","size":647850352,"dateAdded":"2021-05-17T01:30:11.856632Z","sceneName":"Bobs.Burgers.S11E21.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18178},{"seriesId":45,"seasonNumber":11,"relativePath":"Season 11\/S11E22.Vampire Disco Death Dance-WEBDL-1080p.mkv","path":"\/tv\/Bob's Burgers\/Season 11\/S11E22.Vampire Disco Death Dance-WEBDL-1080p.mkv","size":669857434,"dateAdded":"2021-05-24T02:25:53.507408Z","sceneName":"Bobs.Burgers.S11E22.1080p.WEB.H264-CAKES[rartv]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18251}],"queue":[]},"91":{"series":{"title":"Constantine","alternateTitles":[],"sortTitle":"constantine","status":"ended","ended":true,"overview":"A man struggling with his faith who is haunted by the sins of his past is suddenly thrust into the role of defending humanity from the gathering forces of darkness.","previousAiring":"2015-02-14T01:00:00Z","network":"NBC","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/113\/banner.jpg?lastWrite=637103832462878040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/273690-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/113\/poster.jpg?lastWrite=637461573579060860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/273690\/posters\/5fedd7187a605.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/113\/fanart.jpg?lastWrite=637103832460158090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/273690-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-02-14T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":14065209042,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Constantine","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":273690,"tvRageId":38109,"tvMazeId":15,"firstAired":"2014-10-24T00:00:00Z","seriesType":"standard","cleanTitle":"constantine","imdbId":"tt3489184","titleSlug":"constantine","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Horror","Thriller"],"tags":[],"added":"2018-11-17T22:07:36.646293Z","ratings":{"votes":1473,"value":8.4},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":14,"sizeOnDisk":14065209042,"percentOfEpisodes":100.0},"id":113},"episodes":[{"seriesId":113,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Unaired Pilot","airDate":"2014-07-01","airDateUtc":"2014-07-02T00:00:00Z","overview":"The first version of the pilot, before being aired.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17256},{"seriesId":113,"episodeFileId":5811,"seasonNumber":1,"episodeNumber":1,"title":"Non Est Asylum","airDate":"2014-10-24","airDateUtc":"2014-10-25T00:00:00Z","overview":"Constantine has checked himself into Ravenscar Asylum following the loss of a 9-year-old girl, Astra to the demon Nergal. The loss of her soul, along with his own, has been tormenting him. Naturally, he'll have to snap out of it. That moment comes six months later when a possessing spirit sends him a disturbing message. John is on a mission to save the daughter of a friend who is being targeted by a demonic antagonist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":8865},{"seriesId":113,"episodeFileId":5812,"seasonNumber":1,"episodeNumber":2,"title":"The Darkness Beneath","airDate":"2014-10-31","airDateUtc":"2014-11-01T00:00:00Z","overview":"Deep in the mountains of Western Pennsylvania, John is a small mining community's only defense against an ancient Welsh spirit. In the course of protecting these isolated innocents, John finds a vital new ally in a mysterious young woman named Zed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":8866},{"seriesId":113,"episodeFileId":5813,"seasonNumber":1,"episodeNumber":3,"title":"The Devil's Vinyl","airDate":"2014-11-07","airDateUtc":"2014-11-08T01:00:00Z","overview":"John and Zed engage in a dangerous confrontation to save a woman and her family from sinister forces. John's efforts force him to confront the darkness in his own life - while also coming face to face with a new powerful adversary in Papa Midnite.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":8867},{"seriesId":113,"episodeFileId":5814,"seasonNumber":1,"episodeNumber":4,"title":"A Feast of Friends","airDate":"2014-11-14","airDateUtc":"2014-11-15T01:00:00Z","overview":"When Constantine's old friend Gary Lester accidentally releases a powerful demon in Atlanta, John is forced to determine exactly what he is prepared to sacrifice in his battle with the underworld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":8868},{"seriesId":113,"episodeFileId":5815,"seasonNumber":1,"episodeNumber":5,"title":"Danse Vaudou","airDate":"2014-11-21","airDateUtc":"2014-11-22T01:00:00Z","overview":"In New Orleans, Constantine's unusual knowledge of a string of crimes gets him into trouble with Detective Jim Corrigan. He must form an unholy alliance with Papa Midnite when a voodoo ritual to help people communicate with their dead loved ones takes a deadly turn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":8869},{"seriesId":113,"episodeFileId":5816,"seasonNumber":1,"episodeNumber":6,"title":"Rage of Caliban","airDate":"2014-11-28","airDateUtc":"2014-11-29T01:00:00Z","overview":"When a young boy is taken over by a malevolent spirit, John must put aside his misgivings over exorcising a child and convince the parents that their boy is not all that he seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":8870},{"seriesId":113,"episodeFileId":5817,"seasonNumber":1,"episodeNumber":7,"title":"Blessed Are the Damned","airDate":"2014-12-05","airDateUtc":"2014-12-06T01:00:00Z","overview":"While in art class, Zed has a bizarre vision of snakes that lead her and John to a small town where a preacher has mysteriously gained the ability to heal his congregation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":8871},{"seriesId":113,"episodeFileId":5818,"seasonNumber":1,"episodeNumber":8,"title":"The Saint of Last Resorts (1)","airDate":"2014-12-12","airDateUtc":"2014-12-13T01:00:00Z","overview":"A call from Anne Marie, a member of the fateful Newcastle crew, sends John and Chas to Mexico City and brings them closer to the source of The Rising Darkness. Meanwhile, Zed's past comes back to haunt her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":8872},{"seriesId":113,"episodeFileId":5819,"seasonNumber":1,"episodeNumber":9,"title":"The Saint of Last Resorts (2)","airDate":"2015-01-16","airDateUtc":"2015-01-17T01:00:00Z","overview":"In order to fend off a vicious attack, John summons a demon into himself. Chas, Zed and Anne Marie race against time to save John before it\u2019s too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":8873},{"seriesId":113,"episodeFileId":5820,"seasonNumber":1,"episodeNumber":10,"title":"Quid Pro Quo","airDate":"2015-01-23","airDateUtc":"2015-01-24T01:00:00Z","overview":"Thousands of people across Brooklyn have slipped into a mysterious coma, including Chas' daughter. John must find and defeat the evil behind it before it consumes the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":8874},{"seriesId":113,"episodeFileId":5821,"seasonNumber":1,"episodeNumber":11,"title":"A Whole World Out There","airDate":"2015-01-30","airDateUtc":"2015-01-31T01:00:00Z","overview":"Manny sends John to help an old friend, Ritchie Simpson, at Ivy University where a group of students have a found a way into an alternate dimension only to be met by a maniacal killer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":8875},{"seriesId":113,"episodeFileId":5822,"seasonNumber":1,"episodeNumber":12,"title":"Angels and Ministers of Grace","airDate":"2015-02-06","airDateUtc":"2015-02-07T01:00:00Z","overview":"When John heads to a local hospital to investigate a mysterious attack, he enlists an unwitting Manny to help him. Meanwhile, a health scare causes Zed to question the source of her visions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":8876},{"seriesId":113,"episodeFileId":5823,"seasonNumber":1,"episodeNumber":13,"title":"Waiting for the Man","airDate":"2015-02-13","airDateUtc":"2015-02-14T01:00:00Z","overview":"John and Zed return to New Orleans when Detective Jim Corrigan asks for their help in the case of a missing girl. Papa Midnite takes steps toward exacting his revenge on John. Meanwhile, the truth behind the Rising Darkness comes to light.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":8877}],"episodeFile":[{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Non Est Asylum-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E01.Non Est Asylum-Bluray-1080p.mkv","size":1399598590,"dateAdded":"2018-12-27T22:05:04.573682Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428778,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3845532,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5811},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Darkness Beneath-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E02.The Darkness Beneath-Bluray-1080p.mkv","size":1308523668,"dateAdded":"2018-12-27T22:07:00.664434Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435034,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3555440,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5812},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Devil's Vinyl-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E03.The Devil's Vinyl-Bluray-1080p.mkv","size":1022303548,"dateAdded":"2018-12-27T22:08:25.328442Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443116,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2671155,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5813},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E04.A Feast of Friends-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E04.A Feast of Friends-Bluray-1080p.mkv","size":1315925469,"dateAdded":"2018-12-27T22:10:01.84075Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":468683,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3545867,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5814},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Danse Vaudou-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E05.Danse Vaudou-Bluray-1080p.mkv","size":1133033776,"dateAdded":"2018-12-27T22:11:03.938143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":469144,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2972660,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5815},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Rage of Caliban-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E06.The Rage of Caliban-Bluray-1080p.mkv","size":1062975204,"dateAdded":"2018-12-27T22:12:04.525749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470592,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2807972,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5816},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Blessed are the Damned-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E07.Blessed are the Damned-Bluray-1080p.mkv","size":1257116158,"dateAdded":"2018-12-27T22:13:16.552995Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470498,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3358777,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5817},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Saint of Last Resorts (1)-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E08.The Saint of Last Resorts (1)-Bluray-1080p.mkv","size":715924352,"dateAdded":"2018-12-27T22:14:10.23153Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":476604,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1680169,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5818},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Saint of Last Resorts (2)-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E09.The Saint of Last Resorts (2)-Bluray-1080p.mkv","size":1008256597,"dateAdded":"2018-12-27T22:14:25.056896Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":452735,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2602865,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5819},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Quid Pro Quo-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E10.Quid Pro Quo-Bluray-1080p.mkv","size":863007675,"dateAdded":"2018-12-27T22:15:38.236524Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443817,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2167336,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5820},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E11.A Whole World Out There-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E11.A Whole World Out There-Bluray-1080p.mkv","size":1134140079,"dateAdded":"2018-12-27T22:15:46.016961Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":465290,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2985443,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5821},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Angels and Ministers of Grace-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E12.Angels and Ministers of Grace-Bluray-1080p.mkv","size":859950804,"dateAdded":"2018-12-27T22:16:45.789301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":459531,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2167607,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5822},{"seriesId":113,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Waiting for the Man-Bluray-1080p.mkv","path":"\/tv\/Constantine\/Season 01\/S01E13.Waiting for the Man-Bluray-1080p.mkv","size":984453122,"dateAdded":"2018-12-27T22:17:18.027285Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470242,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2526980,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5823}],"queue":[]},"92":{"series":{"title":"Fullmetal Alchemist: Brotherhood","alternateTitles":[],"sortTitle":"fullmetal alchemist brotherhood","status":"ended","ended":true,"overview":"Edward and Alphonse Elric's reckless disregard for alchemy's fun\u00addamental laws ripped half of Ed's limbs from his body and left Al's soul clinging to a cold suit of armor. To restore what was lost, the brothers scour a war-torn land for the Philosopher's Sto\u00adne, a fabled relic which grants the ability to perform alchemy in impossible ways.\r\n\r\nThe Elrics are not alone in their search; the corrupt State Military is also eager to harness the artifact's power. So too are the strange Homunculi and their shadowy creator. The mythical gem lures exotic alchemists from distant kingdoms, scarring some deeply enough to inspire murder. As the Elrics find their course altered by these enemies and allies, their purpose remains unchanged \u2013 and their bond unbreakable.","previousAiring":"2010-07-03T15:00:00Z","network":"Tokyo Broadcasting System","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/86\/banner.jpg?lastWrite=637103832700353740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/85249-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/86\/poster.jpg?lastWrite=637084967802149660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/85249-7.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/86\/fanart.jpg?lastWrite=636750444671184670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/85249-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":21,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-07-03T15:00:00Z","episodeFileCount":64,"episodeCount":64,"totalEpisodeCount":64,"sizeOnDisk":44325504975,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Fullmetal Alchemist Brotherhood\/","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":85249,"tvRageId":21820,"tvMazeId":2071,"firstAired":"2009-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"fullmetalalchemistbrotherhood","imdbId":"tt1355642","titleSlug":"fullmetal-alchemist-brotherhood","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Anime","Drama","Fantasy"],"tags":[],"added":"2018-10-13T16:16:19.554332Z","ratings":{"votes":14905,"value":9.1},"statistics":{"seasonCount":1,"episodeFileCount":64,"episodeCount":64,"totalEpisodeCount":85,"sizeOnDisk":44325504975,"percentOfEpisodes":100.0},"id":86},"episodes":[{"seriesId":86,"episodeFileId":15563,"seasonNumber":1,"episodeNumber":1,"title":"Fullmetal Alchemist","airDate":"2009-04-05","airDateUtc":"2009-04-04T15:00:00Z","overview":"After escaping from Central Prison, the Freezing Alchemist, Isaac McDougal, sets his plan in motion to kill F\u00fchrer King Bradley. However, under the command of Lt. Col. Roy Mustang, the military and State Alchemists attempt to stop him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6622},{"seriesId":86,"episodeFileId":4348,"seasonNumber":1,"episodeNumber":2,"title":"The First Day","airDate":"2009-04-12","airDateUtc":"2009-04-11T15:00:00Z","overview":"On the way to Lior, Ed and Al reminisce about the events that lead to them being trapped in their current bodies by breaking the taboo of human transmutation. Meanwhile, Colonel Mustang looks back on the first time he met the Elric brothers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6623},{"seriesId":86,"episodeFileId":4349,"seasonNumber":1,"episodeNumber":3,"title":"City of Heresy","airDate":"2009-04-19","airDateUtc":"2009-04-18T15:00:00Z","overview":"Ed and Al arrive at the city of Lior, hoping to find the legendary Philosopher's Stone so they can return their bodies back to normal. There, they meet a priest named Cornello, who is able to perform \"miracles.\" As Ed and Al investigate, they find out the truth about Cornello.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6624},{"seriesId":86,"episodeFileId":4350,"seasonNumber":1,"episodeNumber":4,"title":"An Alchemist's Anguish","airDate":"2009-04-26","airDateUtc":"2009-04-25T15:00:00Z","overview":"Ed and Al become interested in biological transmutation after witnessing a chimera in Lior, so Colonel Mustang introduces them to an expert in the field, Shou Tucker, the Life-binding Alchemist. Meanwhile, a serial killer whose targets are only State Alchemists is on the loose in Central.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6625},{"seriesId":86,"episodeFileId":4351,"seasonNumber":1,"episodeNumber":5,"title":"Rain of Sorrows","airDate":"2009-05-03","airDateUtc":"2009-05-02T15:00:00Z","overview":"After learning about what happened to Shou Tucker and his daughter Nina, the Elric brothers begin to question what alchemy really is. Meanwhile, Colonel Mustang and the other State Alchemists track down the serial killer Scar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6626},{"seriesId":86,"episodeFileId":4352,"seasonNumber":1,"episodeNumber":6,"title":"Road of Hope","airDate":"2009-05-10","airDateUtc":"2009-05-09T15:00:00Z","overview":"After their encounter with Scar, Ed's automail and Al's armor need to be repaired, so Major Armstrong escorts them to their hometown of Risembool. On their way there, they spot Dr. Marcoh, a scientist who helped create the Philosopher's Stone, and try to convince him to give them the location of the Stone's research data.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6627},{"seriesId":86,"episodeFileId":4353,"seasonNumber":1,"episodeNumber":7,"title":"Hidden Truths","airDate":"2009-05-17","airDateUtc":"2009-05-16T15:00:00Z","overview":"When Ed and Al arrive at the Central Library they discover that it has been burnt to the ground and instead are taken to see Sheska, a former employee who may have the information they seek. Meanwhile, in East City an unexplained explosion causes Colonel Mustang to restart his search for Scar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6628},{"seriesId":86,"episodeFileId":4354,"seasonNumber":1,"episodeNumber":8,"title":"The Fifth Laboratory","airDate":"2009-05-24","airDateUtc":"2009-05-23T15:00:00Z","overview":"Ed and Al sneak inside the Fifth Laboratory to search for more answers about the origins of the Philosopher's Stone. However, it is not long before they are each attacked by former death row murderers who now guard the complex.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6629},{"seriesId":86,"episodeFileId":4355,"seasonNumber":1,"episodeNumber":9,"title":"Created Feelings","airDate":"2009-05-31","airDateUtc":"2009-05-30T15:00:00Z","overview":"Ed is now in a hospital recovering from his wounds and Al is unable to let go of what Number 66 told him back at the Fifth Laboratory. Meanwhile, Winry agrees to make a trip to Central in order to repair Ed's automail... again!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6630},{"seriesId":86,"episodeFileId":4356,"seasonNumber":1,"episodeNumber":10,"title":"Separate Destinations","airDate":"2009-06-07","airDateUtc":"2009-06-06T15:00:00Z","overview":"Ed and Al head to Dublith in order to see their former teacher, and Winry decides to tag along so she can visit Rush Valley on the way. Meanwhile, Lt. Colonel Hughes discovers some sensitive information and finds himself facing off against the Homunculus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6631},{"seriesId":86,"episodeFileId":4357,"seasonNumber":1,"episodeNumber":11,"title":"Miracle at Rush Valley","airDate":"2009-06-14","airDateUtc":"2009-06-13T15:00:00Z","overview":"The Elric brothers along with Winry finally arrive in Rush Valley, where Ed is pick-pocketed and Winry must deliver a baby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6632},{"seriesId":86,"episodeFileId":4358,"seasonNumber":1,"episodeNumber":12,"title":"One Is All, All Is One","airDate":"2009-06-21","airDateUtc":"2009-06-20T15:00:00Z","overview":"The Elric brothers arrive in Dublith, where they are reunited with their teacher, Izumi Curtis. This leads the brothers to reminisce about the first time they met Izumi, and all of the difficult training she put them through.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6633},{"seriesId":86,"episodeFileId":4359,"seasonNumber":1,"episodeNumber":13,"title":"Beasts of Dublith","airDate":"2009-06-28","airDateUtc":"2009-06-27T15:00:00Z","overview":"While trying to find clues on how to return to their original bodies, Al gets captured by a group of chimeras led by the homunculus Greed, forcing Ed to go to his rescue. Meanwhile, Colonel Mustang gathers a group of colleagues to support him in preparation for his transfer to Central HQ.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6634},{"seriesId":86,"episodeFileId":4360,"seasonNumber":1,"episodeNumber":14,"title":"Those Who Lurk Underground","airDate":"2009-07-05","airDateUtc":"2009-07-04T15:00:00Z","overview":"The battle against Greed and his group continues, with the state military and F\u00fchrer King Bradley himself now joining in. As Ed and Al begin to wonder about Bradley's true motive for getting involved, Greed is taken to the homunculus' secret underground lair so his fate can be decided.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6635},{"seriesId":86,"episodeFileId":4361,"seasonNumber":1,"episodeNumber":15,"title":"Envoy from the East","airDate":"2009-07-12","airDateUtc":"2009-07-11T15:00:00Z","overview":"Scar and Yoki gain a new companion in the form of a young girl from Xing named Mei Chan, who displays her country's unique form of alchemy. Lieutenant Riza Hawkeye recruits an unlikely new ally for Colonel Roy Mustang, whilst Edward and Alphonse return to Rush Valley to get Edward's automail arm, but the brothers encounter Ling Yao from Xing, and his two dangerous bodyguards.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6636},{"seriesId":86,"episodeFileId":4362,"seasonNumber":1,"episodeNumber":16,"title":"Footsteps of a Comrade-in-Arms","airDate":"2009-07-19","airDateUtc":"2009-07-18T15:00:00Z","overview":"Ed, Al and Winry arrive in Central to continue their research, and discover the truth about what happened to Lt. Colonel Hughes. Meanwhile, as Colonel Mustang continues to search for clues regarding Hughes' murderer, Second Lieutenant Maria Ross is accused of committing the crime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":6637},{"seriesId":86,"episodeFileId":4363,"seasonNumber":1,"episodeNumber":17,"title":"Cold Flame","airDate":"2009-07-26","airDateUtc":"2009-07-25T15:00:00Z","overview":"After being interrogated, Second Lieutenant Maria Ross is convicted for the murder of Brigadier General Hughes. Upon hearing about the news, Barry the Chopper sets out to break her out of jail. Meanwhile, Major Armstrong takes Ed with him on a trip under the pretext of going to Risembool to get his automail repaired.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":6638},{"seriesId":86,"episodeFileId":4364,"seasonNumber":1,"episodeNumber":18,"title":"The Arrogant Palm of a Small Human","airDate":"2009-08-02","airDateUtc":"2009-08-01T15:00:00Z","overview":"Edward travels with Armstrong and Breda to an unexpected place, where he learns the truth of what happened to Maria Ross. Back in Central, Ling visits Alphonse and Winry to apprise them of the events, while a new foe appears to cause trouble for Mustang's subordinates. Elsewhere, Ed encounters some people who reveal horrifying details concerning the fate of Winry's parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":6639},{"seriesId":86,"episodeFileId":4365,"seasonNumber":1,"episodeNumber":19,"title":"Death of the Undying","airDate":"2009-08-09","airDateUtc":"2009-08-08T15:00:00Z","overview":"Alphonse joins up with Mustang and his subordinates as they follow after Barry's original body. The chase leads them to the Third Laboratory, where Barry infiltrates, and they take the opportunity to begin a thorough search of the laboratory. Unbeknownst to them, Lust doesn't intend for any of them to make it out alive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":6640},{"seriesId":86,"episodeFileId":4366,"seasonNumber":1,"episodeNumber":20,"title":"Father Before the Grave","airDate":"2009-08-16","airDateUtc":"2009-08-15T15:00:00Z","overview":"As Edward returns to Resembool, he surprisingly sees his father, Hohenheim, in front of his mother's grave. That night, Ed hears a startling conversation between his father and Pinako. The next day, Hohenheim gives Pinako a grim warning about the future, and Ed goes to the place where his home once stood, looking for a source of new hope.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":6641},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Blind Alchemist","airDate":"2009-08-26","airDateUtc":"2009-08-25T15:00:00Z","overview":"Ed and Al hear of a blind alchemist named Judau who had supposedly performed a successful human transmutation. Meeting up with him, Judau reveals to Ed that a young girl named Rosalie was ressurected through alchemy, with his eyes paid for in equivalent exhcange. However, the Madam refuses to teach Ed about the techniques used. Rosalie leads Al to a room with a little girl's shrivelled corpse inside. She reveals this as the result of the real Rosalie's transmutation, whilst she herself is a girl named Amy who was adopted due to her similar appearance. As Ed arrives on the scene, the Madam tells him that her late husband kept the truth about the transmutation's failure from Judau, who truly wanted to ressurect Rosalie. Ed and Al then leave, carrying this knowledge with them as well.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6686},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Four Panel Comic Theater: Steel and Alchemists","airDate":"2009-08-26","airDateUtc":"2009-08-25T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17799},{"seriesId":86,"episodeFileId":4367,"seasonNumber":1,"episodeNumber":21,"title":"Advance of the Fool","airDate":"2009-08-30","airDateUtc":"2009-08-29T15:00:00Z","overview":"Edward and Alphonse meet with Mustang at the hospital, where they look over the events that occurred in the Third Laboratory, and they realize that the Homunculi's hideout may signify just how high up the level of corruption in the military is. Scar returns to Central to begin his killing spree anew, and the brothers come up with a dangerous plan to both confront Scar and lure the Homunculi out of hiding. Ling and Lan Fan hear of their intentions and eagerly agree to assist them, but are soon faced with a situation that threatens their survival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":6642},{"seriesId":86,"episodeFileId":4368,"seasonNumber":1,"episodeNumber":22,"title":"Backs in the Distance","airDate":"2009-09-06","airDateUtc":"2009-09-05T15:00:00Z","overview":"While Ling tries to find a way to escape from Wrath, Edward and Alphonse battle against Scar. Winry hears about the brothers' predicament and manages to find her way to them, but she soon learns the truth surrounding her parents' deaths, and from that knowledge, she struggles to decide if she should continue the cycle of hatred.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":6643},{"seriesId":86,"episodeFileId":4369,"seasonNumber":1,"episodeNumber":23,"title":"Girl on the Battlefield","airDate":"2009-09-13","airDateUtc":"2009-09-12T15:00:00Z","overview":"Ed leaves Winry in the custody of the military to catch up with Al. Meanwhile, as Bradley continues to chase after Ling and Lan Fan, Gluttony goes after Scar. As Ed rejoins Al in his fight against Scar, Gluttony arrives on the scene. Ling then joins the fight, and is able to capture Gluttony by using his regenerative ability against him. Lan Fan manages to escape Bradley by cutting off her disabled arm to throw off her blood trail. Riza arrives and drives off with Ling and Gluttony, keeping it secret from the military. As Ed and Al are about to apprehend Scar, they are stopped by May Chang, who uses her alchemy to escape with him. However, Ed and Al manage to take custody of her panda, Xiao Mei. As they arrive back at HQ, they tell Winry everything. She feels depressed, believing all she can do is wait, but feels better when she receives a call from her customers back in Rush Valley. As she goes on the train back, Winry thinks she may be in love with Ed. Ed and Al later join up with the others at a hideout, where Lan Fan's wounds are treated. Ling reveals to Ed, Al and Roy that Bradley is a Homunculus. When Gluttony hears mention of Roy, the one who killed Lust, he transforms and blows the corner off the hideout.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":6644},{"seriesId":86,"episodeFileId":4370,"seasonNumber":1,"episodeNumber":24,"title":"Inside the Belly","airDate":"2009-09-20","airDateUtc":"2009-09-19T15:00:00Z","overview":"Dr Marco is in the custody of the homunculi, and has to cooperate in exchange for his village's safety. Meanwhile, Ed, Al and Roy try to escape from Gluttony, who has become able to swallow anything in his sights. After losing him, Roy and the others leave to safety whilst Ed, Al and Lin stay to fight. Envy arrives to stop Gluttony from harming Ed and Al. Hearing this, Ed and Al face Gluttony whilst Lin faces against Envy. After some struggles on both ends, Gluttony ends up accidentally swallowing Ed, Lin and Envy. Roy goes to a meeting and ends up confronting Bradley and realizing what Hughes meant. Ed wakes up in a strange room, covered in blood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":6645},{"seriesId":86,"episodeFileId":4371,"seasonNumber":1,"episodeNumber":25,"title":"Doorway of Darkness","airDate":"2009-09-27","airDateUtc":"2009-09-26T15:00:00Z","overview":"Ed and Lin find themselves in a dark place, realizing they're inside Gluttony's stomach, and try to find a way out. May is worried about Xiao Mei, explaining to Yoki about their circumstances, so Scar decides to help search for her. Ed and Lin are approached by Envy, who explains that Gluttony was a failed attempt at recreating the Door of Truth and there is no exit. Envy also reveals he was the one who started the Ishbalan war, before transforming into a giant beast. Meanwhile, Al gets Gluttony to take him to Father, who is apparently in Central, and Bradley gets leverage over Roy by transferring his men to various headquarters and assigning Riza as his personal assistant, effectively making her his hostage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":6646},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Four Panel Comic Theater: Overdoing It","airDate":"2009-09-30","airDateUtc":"2009-09-29T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6691},{"seriesId":86,"episodeFileId":4372,"seasonNumber":1,"episodeNumber":26,"title":"Reunion","airDate":"2009-10-04","airDateUtc":"2009-10-03T15:00:00Z","overview":"Ed and Lin face off against Envy, and Ed finds himself hesitating to attack due to all the people embedded into Envy's body and gets swallowed. Meanwhile, Scar and May find Shao May with Al and Gluttony and decide to follow them down to an underground tunnel, fighting off several chimeras. Ed spots the Philosopher's Stone inside Envy and manages to figure out a way to escape from Gluttony after seeing the missing piece from the ruins of Xerxes. Bradley explains to Roy how he was trained from birth for leadership and was injected with the Philosopher's Stone. Using various pieces of the Xerxes ruins found in Gluttony's stomach, Ed reluctantly uses the souls inside Envy's stone to transmute himself and open the Door of Truth to escape through. Ed finds Al's body but is unable to bring it back since it isn't his. However, before the Door closes, he bursts through yelling to Al's body that he will come back to get him someday.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":6647},{"seriesId":86,"episodeFileId":4373,"seasonNumber":1,"episodeNumber":27,"title":"Interlude Party","airDate":"2009-10-11","airDateUtc":"2009-10-10T15:00:00Z","overview":"During a festival from Resembool Hohenheim converses with a young Pinako, who asks him why he remains closed from all the villagers. In the same time, he faces a demon identical to him talks to him about the humans' weakness, as the story so far is recapped. In the end, Hohenheim finds encouragement from a young Trisha, and he wakes up to discover it was all a dream as a result of drinking too much alcohol.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":6648},{"seriesId":86,"episodeFileId":4374,"seasonNumber":1,"episodeNumber":28,"title":"Father","airDate":"2009-10-18","airDateUtc":"2009-10-17T15:00:00Z","overview":"Alphonse and Gluttony arrive at Father's lair, when Ed, Envy and Ling burst out of Gluttony's stomach. Alphonse, Edward and Lin then battle Father and the homunculi. Father then uses his strange powers and turns off Ed's and Al's alchemy, rendering them vulnerable. Lin is then captured and given the Philosopher's Stone, turning into Greed. Scar and Mei then arrive and engage in battle, during which Xao Mei reunites with Mei and Scar finds out about Envy's murder which triggered the Ishbalan Civil War. At the end of the battle, Gluttony dies and Father extracts his Philosopher's Stone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":6649},{"seriesId":86,"episodeFileId":4375,"seasonNumber":1,"episodeNumber":29,"title":"Struggle of the Fool","airDate":"2009-10-25","airDateUtc":"2009-10-24T15:00:00Z","overview":"Envy leads Ed and Al, who has sneaked May in his armor, out of Father's hideout, which is actually under military HQ, to meet with Bradley. Ed threatens to quit the military, but Bradley says he will kill Winry if he does. However, he allows Ed and Al to continue their research. Roy enquires if Bradley was the one who killed Hughes, which he wasn't. After checking Winry is alright, Ed and Al encounter Greed, who gives them a message to Lan Fan from Lin. Meeting up with Bradley, Greed points out that Lin is still fighting for control. Roy reveals Bradley's identity to Armstrong, and ponders that there may be another homunculus hidden in the shadows. Al passes on Lin's message to Lan Fan, as well as telling her about him and Greed, encouraging her to get an automail arm. Ed, hearing that other alchemists alchemy had failed the same time as his and Al's, wonders how Scar and May's alchemy works. Meanwhile, as Father creates a new copy of Gluttony, Scar encounters Marcoh in their prison, who begs him to kill him so the homunculus cannot use him for their plans. However, Scar demands to hear more about the Ishbalan war from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":6650},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Four Panel Comic Theater: God!!","airDate":"2009-10-28","airDateUtc":"2009-10-27T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6692},{"seriesId":86,"episodeFileId":4376,"seasonNumber":1,"episodeNumber":30,"title":"The Ishvalan War of Extermination","airDate":"2009-11-01","airDateUtc":"2009-10-31T15:00:00Z","overview":"Years ago, Roy's desire to become a state alchemist is disapproved of by his teacher, Berthold Hawkeye, Riza's father. Before he died of an illness, he asks Roy to look after Riza, who has an alchemic symbol on her back. In the present, Ed visits Riza to return the gun she gave him and asks about Ishbal. After the war broke out, Bradley passed a document announcing the extermination of the Ishbalans. This takes it toll on many alchemists, including Roy which isn't helped by the taunts of Kimblee, who enjoys killing. As Marcoh tells Scar his side of the story, he reveals that he was involved in using Isbalans to make the Philosopher's Stone, which was given to the state alchemists to enhance their alchemy. The Ishbalan leader tried pleading with Bradley to end the killing in exchange for his life, but was rejected. When the war finally ended, Roy resolved that he would work to become the new Fuhrer to protect the people and appointed Riza as her second-in-command. Riza mentions to Ed that when they finally achieve peace, they may have to be punished for the people they have killed. When Envy checks Marcoh's cell, he finds nothing left but a beheaded corpse and the word \"vengeance\" written in blood on the wall.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":6651},{"seriesId":86,"episodeFileId":4377,"seasonNumber":1,"episodeNumber":31,"title":"The 520 Cenz Promise","airDate":"2009-11-08","airDateUtc":"2009-11-07T15:00:00Z","overview":"Ed passes on what Riza told him to Al, and the two contemplate about what to do after they complete their objectives, and as to why Scar and May's alchemy worked when their's was blocked. However, May had run off, so they go and look for her. Meanwhile, Riza, Breda, Fuery and Halman say their goodbyes as they are sent to different HQs, with Roy finding a hidden message inside a chess set Halman gave him. Roy later reminds Ed that he owes him 520 cenz, but Ed decides to keep ahold of it until he becomes Fuhrer. Roy uses the note he got from Falman to make contact with Grumman. Meanwhile, Fu is shocked to find Lan Fan had lost her arm, and declines Ed's help to find an automail mechanic, since it would involve his acquaintances in their troubles. Afterwards, Knox gets a visit from his children, who are pleased to hear he's been able to successfully treat patients. Realising that Marcoh had escaped along with Scar, Envy releases Kimbley from prison, giving him to the task to retrieve Marcoh and kill Scar. Wanting to find out more about Kimbley and the secrets behind his brother's alchemy, Scar destroys Marcoh's face so it won't be recognised, before heading off to the North to recover his brother's notes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":6652},{"seriesId":86,"episodeFileId":4378,"seasonNumber":1,"episodeNumber":32,"title":"The F\u00fchrer's Son","airDate":"2009-11-15","airDateUtc":"2009-11-14T15:00:00Z","overview":"As May heads off towards the North with one hooded person, Scar escapes with another to the West. General Grummon, disguised as a woman, meets up with Roy to discuss current matters. Upon hearing that Grumman saw May at the train station, Roy asks Armstrong to pass the message onto Ed, who had decided to look in the library for information on alkahestry. Upon passing on the message, Armstrong also gives Ed a letter of introduction to pass onto General Major Armstrong, his sister. Later on, Ed and Al meet Bradley's adopted son, Selim, and are invited to his house where they also meet Bradley's wife and are later joined by Bradley himself. After the meeting, Ed and Al head off towards the North. Meanwhile, Scar and his accomplice escape from the train heading West, and Kimblee tries to predict his next move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":6653},{"seriesId":86,"episodeFileId":4379,"seasonNumber":1,"episodeNumber":33,"title":"The Northern Wall of Briggs","airDate":"2009-11-22","airDateUtc":"2009-11-21T15:00:00Z","overview":"Still on Scar\u2019s trail, Kimblee figures out that he headed north and follows him there. When Kimblee gets word that Scar and Marcoh are on a train, he boards it by having another train run alongside it, but instead of finding Marcoh, he finds Yoki there. Kimblee is then attacked by Scar, and the two recognize each other from their previous encounter years ago. Before Kimblee can really do anything, Scar impales him with a metal pipe, and this leaves Kimblee no choice but to use his alchemy to separate the two parts of the train, with Scar on the other part. Realizing that something happened, the train\u2019s operators stop it and find the injured Kimblee, but he orders them to keep going. Unbeknownst to Kimblee, the real Marcoh is heading north on foot with May Chang. The two eventually reach the shack where Scar\u2019s brother\u2019s research is located, and they find it intact.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":6654},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Four Panel Comic Theater: Now I Can Relax!!","airDate":"2009-11-25","airDateUtc":"2009-11-24T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6693},{"seriesId":86,"episodeFileId":4380,"seasonNumber":1,"episodeNumber":34,"title":"Ice Queen","airDate":"2009-11-29","airDateUtc":"2009-11-28T15:00:00Z","overview":"Upon entering the fortress, Ed and Al are taken to the medical room where Ed is treated for frostbite. One of the workers reveal that the northern automail used by Buccaneer is made of aluminum and carbon, and Ed's normal steal automail does not work well in the cold. The brothers then are visited by Olivier who demands the brothers tell her about their intentions. The Elrics tell Olivier about their quest to get their bodies back and their search for May, but they don't talk about their dealings with the homunculi. Olivier knows that Elrics are hiding something from her, but she agrees to help search for May and also orders the brothers to go to work, since there's no food for the lazy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":6655},{"seriesId":86,"episodeFileId":4381,"seasonNumber":1,"episodeNumber":35,"title":"The Shape of This Country","airDate":"2009-12-06","airDateUtc":"2009-12-05T15:00:00Z","overview":"After Olivier comes up with a plan to stop Sloth, Buccaneer forcefully recruits the Elrics and Falman for the plan. With everything in place, Olivier and her trio of tanks ram Sloth into the elevator which is sent down to the level with the exposed walkway. The confused Sloth walks out of the elevator and immediately gets fuel spilled onto him by Buccaneer's group and is pushed over the railings with a combined effort from Olivier's tank, Falman, and the Elrics. The fuel spilled onto Sloth is cold weather fuel that evaporates even in the middle of winter, and with blizzard conditions outside Sloth is quickly frozen. After freezing Sloth, Olivier orders Buccaneer to put the Elrics into the fort's holding cells so she can question them later. The next morning, the Elrics are thanked by several soldiers for helping during Sloth's invasion, but the soldiers still wouldn't let the Elrics out of their cell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":6656},{"seriesId":86,"episodeFileId":4382,"seasonNumber":1,"episodeNumber":36,"title":"Family Portrait","airDate":"2009-12-13","airDateUtc":"2009-12-12T15:00:00Z","overview":"Hoenheim recalls when he left the Elric's house, lamenting that his body would outlast his family's. Meanwhile, soldiers investigating the tunnels under Briggs find themselves killed by a mysterious shadow. Lt General Raven tells Olivier to put Sloth into the tunnel and seal it off. Whilst Miles stalls Kimblee for time, Olivier kills Raven. As Olivier enters the tunnel via a separate entrance, Kimblee brings Winry over to see Ed and Al, reminding them of their place. Meanwhile, Scar reunites with Marcoh and Mei, and Roy gets information and a message from Olivier from his intel sources.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":6657},{"seriesId":86,"episodeFileId":4383,"seasonNumber":1,"episodeNumber":37,"title":"The First Homunculus","airDate":"2009-12-20","airDateUtc":"2009-12-19T15:00:00Z","overview":"Winry fixes up Ed's automail before Kimblee talks with him, ordering his men to keep Al separated from him. Olivier sends a search party down the tunnels, who find a couple of survivors warning them not to put any lights on. Riza learns that Bradley's son, Selim, is a homunculus named Pride who attacks from the shadows. Kimblee orders Ed to search for Scar and Marcoh and create a bloody crest similar to Ishbal in Briggs, tempting him with a Philosopher's Stone if he accepts. After telling Al and Winry all about it, he grudgingly accepts the job, though doesn't intend to use the stone himself. As Ed and Al go to search for Scar, their real intent to find May as well, Winry decides to accompany them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":6658},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Simple People","airDate":"2009-12-23","airDateUtc":"2009-12-22T15:00:00Z","overview":"While on their way back to Resembool to have Ed's arm repaired, Ed and Al buy earrings as souvenirs for Winry to prevent her from getting mad about the broken automail. Later on, Ed fights an assassin and his automail gets broken again, and he buys more earrings for Winry to avoid her wrath. Winry explains that she decided to pierce her ears after meeting Riza on the day Ed decided to become a State Alchemist. Meanwhile, Riza explains to her colleague that she grew her hair long after meeting Winry that same day. Her colleague comments on how simple a reason that is, and Riza says that reasons are always simple. To explain her choice, she remarks that they are all living in a simple world - where when they shoot their enemies, their enemies die.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6687},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Four Panel Comic Theater: Identity","airDate":"2009-12-23","airDateUtc":"2009-12-22T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6694},{"seriesId":86,"episodeFileId":4384,"seasonNumber":1,"episodeNumber":38,"title":"Conflict at Baschool","airDate":"2009-12-27","airDateUtc":"2009-12-26T15:00:00Z","overview":"Riza gets a call from Roy, but is unable to say anything in fear of being watched by Pride. In the town of Baschool, Ed and Al, along with Winry, lose the guards that were assigned to them and end up running into May and Marcoh. Meanwhile, Scar encounters a couple of Kimblee's men, a pair of chimeras, and runs into trouble with them. Scar gets pinned, but Ed and Al arrive and beat the chimeras, before restraining Scar themselves. Winry and Miles arrive, and Winry confronts Scar face-to-face about her parents' deaths. Explosions then take place and it appears that Scar has taken Winry hostage. Meanwhile, as Olivier's squad retrieve the survivors from the tunnels, Briggs is approached by some people.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":6659},{"seriesId":86,"episodeFileId":4385,"seasonNumber":1,"episodeNumber":39,"title":"Daydream","airDate":"2010-01-10","airDateUtc":"2010-01-09T15:00:00Z","overview":"When faced with the option of judging her parents' killer, Winry decides to heal Scar's wounds, knowing it would be something her parents would do. Miles explains to Scar that he joined the military to gradually change the way people think of Ishbalans. Since Marcoh and May need Scar to decipher his brother's research, Miles offers to hide everyone at Fort Briggs, with Al insisting on sparing the two chimera. While Marcoh and company head for Briggs via tunnels in the mines, Winry comes up with rouse to make it look like Scar has kidnapped her to elude Kimblee just before a blizzard sets in. However, as Marcoh's group heads for the fort, Miles gets word that Olivier is no longer at Briggs and the fort is being manned by Central people. Al goes into the blizzard to find Marcoh's group and warn them. While in the blizzard, Al briefly sees his body, and wonders if it is trying to get its soul back. Meanwhile, Father makes plans involving Ed, Al, Hohenheim, Izumi, and one more candidate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":6660},{"seriesId":86,"episodeFileId":4386,"seasonNumber":1,"episodeNumber":40,"title":"Homunculus (The Dwarf in the Flask)","airDate":"2010-01-17","airDateUtc":"2010-01-16T15:00:00Z","overview":"Olivier goes to Central, where she admits to killing Raven and convinces Bradley to let her take his place. Riza uses a coded message to tell Roy that Selim is a homunculus. Meanwhile, 'Father' dreams of ancient Xerxes, where Hohenheim was raised as a nameless slave. There, Hohenheim met Homunculus, a being in a flask who was created from his blood, which gave Hohenheim his current name and taught him the basics of alchemy. One night, Homunculus was summoned by the King of Xerxes, who asked Homunculus to tell him the secret for immortality. Homunculus tricked the king into making a gigantic transmutation circle, using the whole country as a sacrifice, while it and Hohenheim stood at the center of the circle. When Hohenheim awoke, everyone else in Xerxes was dead, except for Homunculus. It created a body shaped like Hohenheim for itself, becoming 'Father.' Back in the present, after Hohenheim awakes from this shared dream, he runs into Izumi and Sig. When Hohenheim notices Izumi's sin, he rearranges her organs so that her blood can flow better. After this, Hohenheim tells Izumi and Sig that he is a Philosopher's Stone in human form.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":6661},{"seriesId":86,"episodeFileId":4387,"seasonNumber":1,"episodeNumber":41,"title":"The Abyss","airDate":"2010-01-24","airDateUtc":"2010-01-23T15:00:00Z","overview":"Miles and his men set off with the intent of killing Kimblee and his henchmen, something Ed objects to. As Scar's group exits the mine, they find Al, who warns them about Central infiltrating Briggs, so Scar decides to take them towards an Ishbalan slum. Miles' group attempts to snipe Kimblee, but Kimblee has already figured out their intent and uses a cover of snow to enter the mines. Ed tries to follow, but is attacked by two more chimeras. Ed disables them by using the ammonia in dynamite to make a stink bomb to overwhelm their high sense of smell. Ed then knocks the Philosopher's Stone out of Kimblee's hand, but Kimblee uses another Stone hidden inside his mouth, sending Ed and the chimeras down a mine shaft and leaving Ed impaled by a steel bar. At the same time, Al starts to drift out of consciousness, saying his soul is being drawn back to his body. Determined not to die, Ed gets the chimeras to remove the bar while he sacrifices some of his life span to temporarily fix the wound and to stop the bleeding. The chimeras find the Philosopher's Stone that Kimblee dropped, and, thankful for their rescue, decide to take Ed to a doctor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":6662},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Four Panel Comic Theater: Bushy","airDate":"2010-01-27","airDateUtc":"2010-01-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6695},{"seriesId":86,"episodeFileId":4388,"seasonNumber":1,"episodeNumber":42,"title":"Signs of a Counteroffensive","airDate":"2010-01-31","airDateUtc":"2010-01-30T15:00:00Z","overview":"As Marcoh and May try to decipher Scar's brother's notes, Al, who had been taken apart to make him easier to carry, regains consciousness. As they put him back together, May figures how to arrange the notes, which reveal the nationwide Amestris transmutation circle. After further investigation, they find another transmutation circle used for alkahestry. Meanwhile, Kimblee encounters Pride, who tells Kimblee to carve out the Briggs blood crest. Elsewhere, Falman gets into contact with Breda, and Sloth finishes digging the tunnels. Hohenheim arrives in Liore, where Rose and the other citizens are rebuilding, and finds an underground passage under the church of Leto. As he stumbles upon Sloth's tunnel, he is attacked by Pride but manages to escape outside its boundary, and then tells Pride to let Father know he would be coming. Meanwhile, in order to carve out the blood crest, Kimblee conspires with Drachman forces to attack Briggs, and Zampano informs Envy of Marcoh's location.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":6663},{"seriesId":86,"episodeFileId":4389,"seasonNumber":1,"episodeNumber":43,"title":"Bite of the Ant","airDate":"2010-02-07","airDateUtc":"2010-02-06T15:00:00Z","overview":"Briggs is able to defeat the Drachman forces with ease, finally carving out the blood crest. Zampano brings Envy to Marcoh, where Marcoh reveals that it was their intention from the start to lure the homunculus out there, and Envy is easily hit and outsmarted by the multiple alkahestry traps set up by May. Out of anger, Envy transforms into his true form and begins to attack the group. After being captured by the homunculus, Marcoh destroys Envy's Philosopher's Stone and renders Envy into a tiny, parasitic creature. Scar gives it to May and tells her to return to her country. Marcoh and Scar decide to go their own way, and Al and the rest head for Liore. In Dublith, Bido, the last remaining chimera of Greed's, sees two military officers searching for Izumi. Thinking that they could lead him to Greed, he hides underneath their car. Olivier is told about Briggs's victory, and is then shown, by one of the military's higher ups, the secret behind forbidding human transmutation. Meanwhile, when reaching Liore, Al and co. meets with Ros\u00e9 and Hohenheim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":6664},{"seriesId":86,"episodeFileId":4390,"seasonNumber":1,"episodeNumber":44,"title":"Revving at Full Throttle","airDate":"2010-02-14","airDateUtc":"2010-02-13T15:00:00Z","overview":"Al and Winry are welcomed by Ros\u00e9 and the people of Liore. Meanwhile, Darius, one of the chimeras who helped Ed after he had been injured, goes to a bank and makes a withdrawal from Ed's State Alchemist research account. However, the military is informed and they storm the clinic where Ed and the chimeras are, though the trio manages to escape from them. Hohenheim tells Al the truth about himself and his involvement with Father. While Olivier is shown the army of artificial humans created by the military, Bido is spotted by Greed. Bido realizes who he is and tries to make him remember his chimera friends, but Greed ends up killing him. Angered at seeing Greed kill one of his friends, Lin's conscience has a vicious clash with Greed's. Later that night, Greed storms King Bradley's mansion and confronts him in front of his wife and Selim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":6665},{"seriesId":86,"episodeFileId":4391,"seasonNumber":1,"episodeNumber":45,"title":"The Promised Day","airDate":"2010-02-21","airDateUtc":"2010-02-20T15:00:00Z","overview":"Greed is initially overwhelmed in fighting Bradley, but he manages to survive and escape thanks to Lin's instincts. Meanwhile, Olivier requests that her father, leading to fight with Alex to determine leadership of the household, which she inevitably wins, mainly as a means to avoid the family being taken as hostage. May passes through Youswell, who offer to help her on her journey to Xing. Envy manages to trick her into heading back towards Central. Ed, Darius and Heinkel arrive at one of the old hideouts, and are soon met by Lin, who had managed to temporarily regain control over his body. He tells Ed that Father will try to open the gate on 'The Promised Day' before Greed takes over again. Since Greed had severed his relationships, Ed suggests that he becomes his ally. Greed jokes that he'd only accept if they work for him, but Ed decides to take that suggestion seriously, which Greed agrees to. Al passes a message to everyone from Izumi and Briggs to Riza and Roy about the promised day, set to take place next spring.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":6666},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Four Panel Comic Theater: Agar Noodles","airDate":"2010-02-24","airDateUtc":"2010-02-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6696},{"seriesId":86,"episodeFileId":4392,"seasonNumber":1,"episodeNumber":46,"title":"Looming Shadows","airDate":"2010-02-28","airDateUtc":"2010-02-27T15:00:00Z","overview":"Some Briggs soldiers escort Winry back home, where she is surprised to find Ed and his group. He warns her to escape to another country, but declines, saying Ed should just make sure he protects everyone. Meanwhile, Scar has recruited several Ishbalans to help in his cause and Roy informs Olivier about Selim. Al, who had been suffering from more frequent blackouts, is ambushed by Gluttony and Pride and captured. On the day before the promise day, Bradley is tricked into taking a train back to Central and is caught in an explosion on the bridge. Meanwhile, Riza, Breda and Feury prepare for tomorrow. Also, within the military, as the \"chosen\" generals are panicking over Bradley's possible death, Olivier sees her chance to try and take control, but before she could do anything, she is halted by the sudden appearance of Father and Sloth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":6667},{"seriesId":86,"episodeFileId":4393,"seasonNumber":1,"episodeNumber":47,"title":"Emissary of Darkness","airDate":"2010-03-07","airDateUtc":"2010-03-06T15:00:00Z","overview":"Ed and his group go to see Hohenheim, who tells them about the promised day. Ed also tells Hohenheim Trisha's last words to him. As Ed and his group leave, they run into Al, but after a warning from Lin, it is revealed he's being controlled by Pride. Pride gets the upper hand, but Ed responds by blacking out the slums, taking away the light to form Pride's shadows. Heinekel uses this opportunity to find and attack Pride, but Ed, Greed and Darius are attacked by Gluttony. Having a disadvantage in the dark, Greed switches with Lin who uses his homunculus detection abilities to fight Gluttony. As Gluttony starts to use his full power, he is overwhelmed by the arrival of Lan Fan, who is equipped with new automail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":6668},{"seriesId":86,"episodeFileId":4394,"seasonNumber":1,"episodeNumber":48,"title":"The Oath in the Tunnel","airDate":"2010-03-14","airDateUtc":"2010-03-13T15:00:00Z","overview":"Lan Fan and Lin fight Gluttony, and Heinkel continues to fight Pride. Meanwhile, Roy visits Madam Christmas to confirm that Selim Bradley is in fact a homunculus. Pride manages to get back the upper hand in the fight and wounds Heinkel. However, before Pride can finish him off, Ed intervenes and saves Heinkel using his northern automail, now carbon-reinforced. Spies from Central are shown to have followed Roy to Madam Christmas's bar, and as they find out that the madam is Roy's foster mother, the bar is blown up by Roy, who escapes through the sewers with Madam Christmas. Roy then meets up with his subordinates before they attempt to take over Central. Pride takes over Al again, but right before he fights Ed through Al, Fu throws a flash bang into the air, overwhelming the shadows with light and breaking Pride's control of Al. Darius then takes Al away to a safer place, and Gluttony stumbles upon Pride and Ed's fight. Upon discovering that Lan Fan and Lin can sense homunculi, Pride consumes Gluttony, both to replenish his lives as well as to gain a sense of smell that can detect Ed and his group. Pride then smells Hohenheim, who has met up with Darius and Al. Back in Central, Mustang begins his upheaval plot by capturing King Bradley's wife.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":6669},{"seriesId":86,"episodeFileId":4395,"seasonNumber":1,"episodeNumber":49,"title":"Filial Affection","airDate":"2010-03-21","airDateUtc":"2010-03-20T15:00:00Z","overview":"Ed, Greed, and Lan Fan have a difficult time fighting Pride, who gained Gluttony's powers after devouring him. Working with Hohenheim, Al allows himself to be captured by Pride in order to grab him so that Hohenheim can trap Pride in a mountain of soil where there is no light, preventing him from using his shadows. Meanwhile, Kimblee begins to move just as Scar's group is told about the bombing of Bradley's train. As the Promised Day begins, Greed goes to Central on his own while Ed's group and Scar's group meet up again to devise a plan. In Central, Roy and his subordinates begin to attack soldiers while using Bradley's wife as a hostage. However, the military higher-ups give the order to kill everybody in the group except for Roy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":6670},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Four Panel Comic Theater: You Good Boys and Girls Don't Try This at Home!","airDate":"2010-03-24","airDateUtc":"2010-03-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6697},{"seriesId":86,"episodeFileId":4396,"seasonNumber":1,"episodeNumber":50,"title":"Upheaval in Central","airDate":"2010-03-28","airDateUtc":"2010-03-27T15:00:00Z","overview":"As Team Mustang and Mrs. Bradley gets cornered by Central soldiers, Team Charlie, Mustang's old Ishbal squadron, intervenes and saves them. Team Mustang continues their attack on Central without killing anyone. Meanwhile, the Briggs soldiers lead by Buccaneer join the battle. Soon Team Mustang begins to run low on ammo, and they are saved by an ice cream truck driven by Rebecca and Maria Ross. Mustang calls whoever ordered Ross to return from Xing, and he is surprised to hear Havoc at the other end. During all of the chaos, Ed's group manages to sneak in underground through the Third Lab, where they split up. Ed, Scar, Darius, Zanpano, and Jelso go in one direction while Hohenheim and Lan Fan go in the other direction. However, at that moment, one of the Generals awakens the Army of Immortals.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":6671},{"seriesId":86,"episodeFileId":12105,"seasonNumber":1,"episodeNumber":51,"title":"The Immortal Legion","airDate":"2010-04-04","airDateUtc":"2010-04-03T15:00:00Z","overview":"The Mannequin Soldiers awaken and kill the general. As Ed's group arrive at the door where Al had fought against Lust, the mannequins emerges from the door and they turn out to be immortal indeed. Meanwhile, Olivier is attacked by Sloth, who had been ordered to kill her. Al and Heinkel learn too late that Pride had been sending a secret message from banging on Al's head and are soon attacked by Kimblee, who frees Pride from his imprisonment. In the sewers, May is also being attacked by mannequins and when Envy manages to merge with them, he is able to return to his regular form. As Olivier struggles against Sloth, Alexander rescues her and joins the fight. Al transmutes his legs off in order to help Heinkel, who then gives him the Philosopher's Stone that Kimblee previously discarded. Al uses it to restore his legs and face Pride and Kimblee.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":6672},{"seriesId":86,"episodeFileId":12106,"seasonNumber":1,"episodeNumber":52,"title":"Combined Strength","airDate":"2010-04-11","airDateUtc":"2010-04-10T15:00:00Z","overview":"Al begins using the Philosopher's Stone to battle against Kimblee and Pride. He manages to trap Pride once again, but is taken by surprise by Kimblee when he starts using his own stone. Meanwhile, as the Armstrong siblings start to gain the upper hand over Sloth, Sloth begins to use his true strength and reveals himself to be the fastest homunculus. Although Al gets apprehended by Pride again, Heinkel, having been healed by Marcoh, manages to deliver a fatal blow to Kimblee. Yoki arrives to rescue Al and the others and head towards Central, while Pride consumes Kimblee. As Alex manages to temporarily impale Sloth on a spike, both he and Olivier are attacked by Mannequin Soldiers. Meanwhile, May fends off both Envy and the Mannequin Soldiers, and Ed's group, overwhelmed by the soldiers, are joined by Roy and Riza.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":6673},{"seriesId":86,"episodeFileId":12107,"seasonNumber":1,"episodeNumber":53,"title":"Flame of Vengeance","airDate":"2010-04-18","airDateUtc":"2010-04-17T15:00:00Z","overview":"Mustang's team has Mrs. Bradley interviewed on live radio. With the power of radio and the help of the Ishbalans, word of a supposed coup d'\u00e9tat spreads, giving the rebels support from the citizens, while Briggs launches an attack on Central HQ. Meanwhile, Roy manages to destroy the Mannequin Soldiers surrounding Ed's party by burning them to ash. May lures Envy into a trap in the upper levels, causing them both to fall below into the chamber with Ed's group. Envy reveals that he was the one who killed Hughes, infuriating Roy who seeks to get revenge. Ed's group moves onward as Roy fights Envy, but Ed gets concerned that Roy may end up being consumed by his own hatred. Envy is no match for Roy and flees for his life. Upon seeing Riza heading towards Roy for backup, Envy gets an idea. Roy later encounters Riza, who aims a gun at his back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":6674},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Tale of Teacher","airDate":"2010-04-21","airDateUtc":"2010-04-20T15:00:00Z","overview":"When Izumi was 18 years old, she had traveled to meet the alchemist Silver Steiner to request to be his apprentice. Giving her only a knife, he told her to survive one month on Briggs Mountain and he would consider. As she had learned to defend herself and live off of the wildlife, she had realized the meaning behind alchemy, saying that one is all, and all is one. However, returning after a month, she realizes she had been talking to Silver's older brother, Gold Steiner, who is not an alchemist but a hand-to-hand combat specialist. Annoyed, Izumi beats him and leaves.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6688},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Four Panel Comic Theater: I Can Do It Myself!","airDate":"2010-04-21","airDateUtc":"2010-04-20T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6698},{"seriesId":86,"episodeFileId":12108,"seasonNumber":1,"episodeNumber":54,"title":"Beyond the Inferno","airDate":"2010-04-25","airDateUtc":"2010-04-24T15:00:00Z","overview":"Riza sees through Envy's disguise as Roy and shoots him until the real Roy arrives and mercilessly incinerates the homunculus, reverting him back to his parasitic form. Before Roy can kill Envy, Ed, Riza, and Scar persuade him to let go of his anger and his need for revenge, for Amestris cannot be ruled by someone consumed with hatred. Envy becomes outraged by Roy's change of heart and rants about why everyone does not kill each other, trying to goad them into doing so by pointing out all of the terrible things they have done to each other. Ed determines that the reason Envy hates humans is because he is jealous of their capacity to continue living on, despite all the abuse they take. Humiliated and insulted by how Ed understands him, Envy commits suicide by tearing out and destroying his own Philosopher's Stone. Meanwhile, the Armstrong siblings begin to gain the upper hand in their battle against Sloth; Izumi arrives in Central, allied with Briggs soldiers, to participate in the coup; and Hohenheim confronts Father alone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":6675},{"seriesId":86,"episodeFileId":4401,"seasonNumber":1,"episodeNumber":55,"title":"The Adults' Way of Life","airDate":"2010-05-02","airDateUtc":"2010-05-01T15:00:00Z","overview":"The Armstrong siblings' and the Central forces' battle against Sloth rages on until Izumi appears and effortlessly pummels the homunculus, who is tossed and impaled on a spike by Alex and Sig, finally killing him. The Armstrongs and Curtises continue on around Central Command to wipe out the remaining mannequin soldiers, with Hohenheim and Father battling underground. With a majority of Central command captured, the Briggs forces are seemingly victorious until when King Bradley suddenly reappears, alive and unharmed, to overturn the coup and retake control of the country.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":6676},{"seriesId":86,"episodeFileId":4402,"seasonNumber":1,"episodeNumber":56,"title":"The Return of the F\u00fchrer","airDate":"2010-05-09","airDateUtc":"2010-05-08T15:00:00Z","overview":"Hohenheim, who had managed to converse with all the souls within his Philosopher's Stone, had infused the souls into Father's body to destroy it from the inside. However, Father shows his true form and is able to survive outside of his container. Meanwhile, Bradley begins his attack on Central HQ and single-handedly takes on the resisting forces, as well as destroying Buccaneer's arm. As he reaches the main gate, he finds himself against Greed, and Bradley reveals his hidden Ultimate Eye to fight him. Buccaneer allows himself to be stabbed in order to take away Bradley's sword, though Bradley soon arms himself with daggers. Meanwhile, Falman and the remaining Briggs soldiers try to fend off the Central army, and Fu later arrives to assist Greed in facing Bradley.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":6677},{"seriesId":86,"episodeFileId":4403,"seasonNumber":1,"episodeNumber":57,"title":"Eternal Leave","airDate":"2010-05-16","airDateUtc":"2010-05-15T15:00:00Z","overview":"Greed, unable to hurt Bradley, is pinned down during their fight, which forces Fu to fight Bradley alone. Fu attempts to perform a suicide attack to kill Bradley using explosives strapped to his chest, but Bradley defuses them and mortally wounds Fu. However, Buccaneer thrusts a sword through Fu's body before he falls and successfully stabs Bradley in the stomach, allowing Greed to further harm him, while Lan Fan arrives to witness her grandfather's death. Meanwhile, Ed's group encounters the doctor who created Bradley, and are pit against the numerous rejected Fuhrer candidates. The doctor then activates a transmutation circle, connected by the five research labs in Central, and absorbs Ed, Al, and Izumi.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":6678},{"seriesId":86,"episodeFileId":4404,"seasonNumber":1,"episodeNumber":58,"title":"Sacrifices","airDate":"2010-05-23","airDateUtc":"2010-05-22T15:00:00Z","overview":"Lin and Bradley's fight leaves them hanging over the side of the front gate, but Lin is saved by Lan Fan while Bradley falls into the moat below. As Buccaneer lays dying, he gives his final request to Lin to defend the front gate. Already distraught by Fu's death, Lin complies and draws upon the full power of Greed's Ultimate Shield to annihilate all Central forces before the gate. Underground, Ed, Izumi, and the unconscious Al reappear in Father's lair to find Hohenheim subdued. With four of the five human sacrifices, Father is left to wait for the fifth. The gold-toothed doctor in the levels above decides to use Roy as the candidate for the fifth sacrifice, has Riza's throat slit and tells Roy that he will only save her if he performs human transmutation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":6679},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Four Panel Comic Theater: Something Warm","airDate":"2010-05-26","airDateUtc":"2010-05-25T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6699},{"seriesId":86,"episodeFileId":4405,"seasonNumber":1,"episodeNumber":59,"title":"Lost Light","airDate":"2010-05-30","airDateUtc":"2010-05-29T15:00:00Z","overview":"Following Riza's eye signal, Roy refuses to perform a human transmutation. May arrives with Zampano, Jerso, and Darius and heals Riza's wound. However, Bradley and Pride also appear and force Roy to perform a human transmutation anyway, using the gold-toothed doctor as a sacrifice. Roy passes through the Gate of Truth and reappears in Father's lair with Pride, Father, and the other sacrifices, and finds he has lost his eyesight in exchange. Scar battles Bradley above, and May crashes through the ceiling of Father's lair to find Al unconscious. Al stands before the Gate to find his body, but despairs that he will be unable to use it to fight alongside the others because it is so frail. He promises to return for his body and goes through the Gate, regaining consciousness in Father's lair and completing Father's count for the five sacrifices.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":6680},{"seriesId":86,"episodeFileId":4406,"seasonNumber":1,"episodeNumber":60,"title":"Eye of Heaven, Gateway of Earth","airDate":"2010-06-06","airDateUtc":"2010-06-05T15:00:00Z","overview":"Ed and Al battle against Pride while May tries to take on Father. Meanwhile, Ishbalans make plans within the city. In his fight against Bradley, Scar reveals a reconstruction transmutation circle from his brother's research now tattooed on his other arm. Just as Ed's group start to gain the upper hand and despite the arrival of Greed, Father grabs the four sacrifices and uses them, along with Hohenheim, for his transmutation circle, absorbing all the souls in Amestris. This opens a giant gate flat on the surface of the Earth from which rises a giant Father. Then another gate opens in the sky with a giant eye looking out which Father calls \"God\" and pulls towards him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":6681},{"seriesId":86,"episodeFileId":4407,"seasonNumber":1,"episodeNumber":61,"title":"He Who Would Swallow God","airDate":"2010-06-13","airDateUtc":"2010-06-12T15:00:00Z","overview":"Everyone closest to the center of Father's nationwide transmutation circle, including Ed's group, survives to discover that Father has used the souls of over fifty million Amestrians to suppress God within a new, youthful body. Father neutralizes everyone's alchemy, but, before he can annihilate them, Hohenheim reveals his countermeasure: he had spent years traveling the country, placing fragments of his own Philosopher's Stone into the earth to use as foundation for returning the Amestrian souls to their bodies. The stone fragments are activated by the eclipse's umbra, and the souls are ripped from Father's body back into their original bodies, which weakens Father to the point of barely being able to suppress God anymore. The eclipse then lifts, blinding Bradley with sunlight and allowing Scar to kill him. Scar activates the nationwide alkahestry circle his brother and fellow Ishbalans had been preparing, which restores everyone else's alchemy at their greatest potential. Facing the full strength of his opponents' attacks in his unstable body, Father retreats aboveground to find more souls and replenish his stone supply. Ed remains behind to fight Pride while everyone else chases Father. Pride tries to steal Ed's body to replace his own unstable one, but Kimblee's soul reappears within him and taunts him while Ed enters his body and destroys it, reverting him to the form of a small fetus-like creature. Ed spares Pride's life and leaves to join his friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":6682},{"seriesId":86,"episodeFileId":4408,"seasonNumber":1,"episodeNumber":62,"title":"A Fierce Counterattack","airDate":"2010-06-20","airDateUtc":"2010-06-19T15:00:00Z","overview":"Hohenheim and the others stop Father from making Philosopher's stones, but as Ed rejoins them, Father spawns humans resembling the people of Xerxes before attacking with a powerful blast which takes out half the headquarters. They barely manage to survive the blast, but Al and Hohenheim take some heavy damage protecting the others. Before Father can kill Ed and Izumi, the Briggs soldiers, along with several of Ed's allies, join up to attack Father and use up his stone supply. Father lets down his barrier temporarily to try and absorb Greed's stone, giving Ed, Alex and Izumi the opportunity to damage him to the point of defending himself manually. As Father starts to lose control, he creates a blast which traps Ed's arm whilst his automail arm is destroyed. With Ed in danger, Al convinces May to help him perform a transmutation, trading his soul for the return of Ed's right arm. Al rejoins with his body on the other side and with his arm returned, Ed frees himself to unleash a series of blows on Father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":6683},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Four Panel Comic Theater: There'll Be No Undoing It!!","airDate":"2010-06-23","airDateUtc":"2010-06-22T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6700},{"seriesId":86,"episodeFileId":4409,"seasonNumber":1,"episodeNumber":63,"title":"The Other Side of the Gateway","airDate":"2010-06-27","airDateUtc":"2010-06-26T15:00:00Z","overview":"While being effortlessly pummeled, Father desperately tries to absorb Greed's Philosopher's Stone. Greed decides to part from Lin's body, and uses his carbonization ability to turn Father's body into weak charcoal. Father extinguishes Greed's soul, killing him, but Ed punches through Father's chest, releasing all the souls of the people of Xerxes and sending Father to the Gate of Truth where he is trapped for eternity. In the wake of Father's defeat, everyone mourns Al's sacrifice. Ed rejects using a Philosopher's Stone to bring him back to life, even after Hohenheim offers his final life as an apology for the pain Ed and Al were forced through. Ed ultimately decides to perform a human transmutation on himself, sacrificing his own Gate and his ability to use alchemy with it. As a reward for discovering he doesn't need to perform alchemy, Ed is allowed to bring Al back with him in his original body. As everyone recuperates from the battle, Hohenheim returns to Resembool and dies peacefully before Trisha's grave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":6684},{"seriesId":86,"episodeFileId":4410,"seasonNumber":1,"episodeNumber":64,"title":"Journey's End","airDate":"2010-07-04","airDateUtc":"2010-07-03T15:00:00Z","overview":"Deciding to help sort out Ishbalan policies, Roy is approached by Knox and Marcoh, who offer him a Philosopher's Stone to get his eyesight back, with Roy insisting it be used to fix Havoc's legs first. Olivier secretly rescues Scar so that he can assist Miles in rebuilding Ishbal. Having previously seen off Lin, who had promised to take care of May's clan among others once he becomes emperor, Ed and Al return to Risembool where an overjoyed Winry awaits them. Two years later, Grumman, who had become Fuhrer, visits Bradley's wife, who had been raising up Selim to be a compassionate child. Al decides to travel with Jerso and Zampano to Xing and other eastern countries to learn about alkahestry, whilst Ed learns what he can in the west, hoping to pool their research together. As Ed heads off, he and Winry finally express their love to each other using confusing terminology.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":6685},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Four Panel Comic Theater: Kiss of Death","airDate":"2010-07-21","airDateUtc":"2010-07-20T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6701},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Yet Another Man's Battlefield","airDate":"2010-08-25","airDateUtc":"2010-08-24T15:00:00Z","overview":"Roy Mustang, 18 years old, attends a military boot camp. After encountering a group of seniors being cruel to an Ishvalan recruit named Heathcliff, Mustang takes an interest in Hughes, who is supposedly friends with them. When Mustang catches the seniors picking on Heathcliff again, he gets into a fight with them, and Hughes backs him up, having the same beliefs as Mustang. The three become friends and discuss their reasons for joining the military. Later though, during the Ishvalan war, Mustang ends up fighting Heathcliff, who is killed by Hughes for shooting at Mustang. Mustang then falls into despair and is confronted by Hughes, who has to hold in the pain of his sins so he can smile in front of his wife. After returning home, Mustang sees Hughes with his wife, and envies his strength.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6689},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Four Panel Comic Theater: It's Out!","airDate":"2010-08-25","airDateUtc":"2010-08-24T15:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6702},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Four Panel Comic Theater: Step Forward!!","airDate":"2010-09-22","airDateUtc":"2010-09-21T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6703},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Four Panel Comic Theater: Come Over to My Place","airDate":"2010-10-27","airDateUtc":"2010-10-26T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6704},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Four Panel Comic Theater: The Power of a God","airDate":"2010-11-24","airDateUtc":"2010-11-23T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6705},{"seriesId":86,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"The Sacred Star of Milos","airDate":"2011-07-02","airDateUtc":"2011-07-01T15:00:00Z","overview":"A fugitive alchemist with mysterious abilities leads the Elric brothers to a distant valley of slums inhabited by the Milos, a proud people struggling against bureaucratic exploitation. Ed and Al quickly find themselves in the middle of a rising rebellion, as the exiled Milos lash out against their oppressors. At the heart of the conflict is Julia, a young alchemist befriended by Alphonse. She'll stop at nothing to restore the Milos to their former glory \u2013 even if that means harnessing the awful power of the mythical Philosopher's Stone.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6706}],"episodeFile":[{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The First Day-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E02.The First Day-HDTV-720p.mkv","size":687596958,"dateAdded":"2018-10-14T15:10:33.668111Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4348},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E03.City of Heresy-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E03.City of Heresy-HDTV-720p.mkv","size":719980834,"dateAdded":"2018-10-14T15:10:34.083039Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4349},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E04.An Alchemist's Anguish-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E04.An Alchemist's Anguish-HDTV-720p.mkv","size":677915976,"dateAdded":"2018-10-14T15:10:34.771983Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4350},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Rain of Sorrows-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E05.Rain of Sorrows-HDTV-720p.mkv","size":732825446,"dateAdded":"2018-10-14T15:10:35.268165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4351},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Road of Hope-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E06.Road of Hope-HDTV-720p.mkv","size":624575868,"dateAdded":"2018-10-14T15:10:35.80546Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4352},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Hidden Truths-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E07.Hidden Truths-HDTV-720p.mkv","size":632842698,"dateAdded":"2018-10-14T15:10:36.161948Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4353},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Fifth Laboratory-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E08.The Fifth Laboratory-HDTV-720p.mkv","size":670323526,"dateAdded":"2018-10-14T15:10:36.52357Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4354},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Created Feelings-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E09.Created Feelings-HDTV-720p.mkv","size":592266165,"dateAdded":"2018-10-14T15:10:36.86409Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4355},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Separate Destinations-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E10.Separate Destinations-HDTV-720p.mkv","size":596638862,"dateAdded":"2018-10-14T15:10:37.679141Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4356},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Miracle at Rush Valley-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E11.Miracle at Rush Valley-HDTV-720p.mkv","size":694456862,"dateAdded":"2018-10-14T15:10:37.776118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4357},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E12.One is All, All is One-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E12.One is All, All is One-HDTV-720p.mkv","size":753452338,"dateAdded":"2018-10-14T15:10:38.122895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4358},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Beasts of Dublith-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E13.Beasts of Dublith-HDTV-720p.mkv","size":638939087,"dateAdded":"2018-10-14T15:10:44.555922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4359},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Those Who Lurk Underground-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E14.Those Who Lurk Underground-HDTV-720p.mkv","size":677261817,"dateAdded":"2018-10-14T15:10:44.823899Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4360},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Envoy from the East-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E15.Envoy from the East-HDTV-720p.mkv","size":614602532,"dateAdded":"2018-10-14T15:10:45.596384Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4361},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Footsteps of a Comrade-in-Arms-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E16.Footsteps of a Comrade-in-Arms-HDTV-720p.mkv","size":491037217,"dateAdded":"2018-10-14T15:10:48.943836Z","releaseGroup":"Arms","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4362},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Cold Flame-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E17.Cold Flame-HDTV-720p.mkv","size":488613796,"dateAdded":"2018-10-14T15:10:50.294882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4363},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Arrogant Palm of a Small Human-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E18.The Arrogant Palm of a Small Human-HDTV-720p.mkv","size":560332397,"dateAdded":"2018-10-14T15:10:51.006588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4364},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Death of the Undying-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E19.Death of the Undying-HDTV-720p.mkv","size":666392873,"dateAdded":"2018-10-14T15:10:51.344079Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4365},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Father Before the Grave-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E20.Father Before the Grave-HDTV-720p.mkv","size":556857628,"dateAdded":"2018-10-14T15:10:51.39114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4366},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Advance of the Fool-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E21.Advance of the Fool-HDTV-720p.mkv","size":588931725,"dateAdded":"2018-10-14T15:10:53.815037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4367},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Backs in the Distance-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E22.Backs in the Distance-HDTV-720p.mkv","size":632168829,"dateAdded":"2018-10-14T15:10:55.052239Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4368},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Girl on the Battlefield-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E23.Girl on the Battlefield-HDTV-720p.mkv","size":630052411,"dateAdded":"2018-10-14T15:10:55.509616Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4369},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Inside the Belly-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E24.Inside the Belly-HDTV-720p.mkv","size":613232750,"dateAdded":"2018-10-14T15:10:55.933202Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4370},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Doorway of Darkness-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E25.Doorway of Darkness-HDTV-720p.mkv","size":590280269,"dateAdded":"2018-10-14T15:10:56.318269Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4371},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Reunion-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E26.Reunion-HDTV-720p.mkv","size":756376077,"dateAdded":"2018-10-14T15:10:56.666012Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4372},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E27.Interlude Party-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E27.Interlude Party-HDTV-720p.mkv","size":737389682,"dateAdded":"2018-10-14T15:10:57.111662Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4373},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Father-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E28.Father-HDTV-720p.mkv","size":795748758,"dateAdded":"2018-10-14T15:10:58.982291Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4374},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E29.Struggle of the Fool-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E29.Struggle of the Fool-HDTV-720p.mkv","size":560244344,"dateAdded":"2018-10-14T15:11:00.73924Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4375},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E30.The Ishvalan War of Extermination-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E30.The Ishvalan War of Extermination-HDTV-720p.mkv","size":618753285,"dateAdded":"2018-10-14T15:11:01.482074Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4376},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E31.The 520 Cenz Promise-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E31.The 520 Cenz Promise-HDTV-720p.mkv","size":563730194,"dateAdded":"2018-10-14T15:11:02.453328Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4377},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E32.The F\u00fchrer's Son-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E32.The F\u00fchrer's Son-HDTV-720p.mkv","size":596865392,"dateAdded":"2018-10-14T15:11:02.705922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4378},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E33.The Northern Wall of Briggs-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E33.The Northern Wall of Briggs-HDTV-720p.mkv","size":795665600,"dateAdded":"2018-10-14T15:11:03.012286Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4379},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Ice Queen-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E34.Ice Queen-HDTV-720p.mkv","size":625253169,"dateAdded":"2018-10-14T15:11:03.456994Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4380},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E35.The Shape of This Country-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E35.The Shape of This Country-HDTV-720p.mkv","size":621095450,"dateAdded":"2018-10-14T15:11:03.905315Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4381},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E36.Family Portrait-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E36.Family Portrait-HDTV-720p.mkv","size":551565708,"dateAdded":"2018-10-14T15:11:04.113949Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4382},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E37.The First Homunculus-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E37.The First Homunculus-HDTV-720p.mkv","size":570279491,"dateAdded":"2018-10-14T15:11:04.553562Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4383},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E38.Conflict at Baschool-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E38.Conflict at Baschool-HDTV-720p.mkv","size":707884928,"dateAdded":"2018-10-14T15:11:04.847188Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4384},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E39.Daydream-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E39.Daydream-HDTV-720p.mkv","size":611363637,"dateAdded":"2018-10-14T15:11:05.325102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4385},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E40.Homunculus (The Dwarf in the Flask)-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E40.Homunculus (The Dwarf in the Flask)-HDTV-720p.mkv","size":603348032,"dateAdded":"2018-10-14T15:11:05.365169Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4386},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E41.The Abyss-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E41.The Abyss-HDTV-720p.mkv","size":634845900,"dateAdded":"2018-10-14T15:11:05.575676Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4387},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E42.Signs of a Counteroffensive-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E42.Signs of a Counteroffensive-HDTV-720p.mkv","size":705677575,"dateAdded":"2018-10-14T15:11:05.743819Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4388},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E43.Bite of the Ant-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E43.Bite of the Ant-HDTV-720p.mkv","size":693998815,"dateAdded":"2018-10-14T15:11:05.838025Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4389},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E44.Revving at Full Throttle-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E44.Revving at Full Throttle-HDTV-720p.mkv","size":679741345,"dateAdded":"2018-10-14T15:11:05.889413Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4390},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E45.The Promised Day-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E45.The Promised Day-HDTV-720p.mkv","size":645373599,"dateAdded":"2018-10-14T15:11:05.973335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4391},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E46.Looming Shadows-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E46.Looming Shadows-HDTV-720p.mkv","size":598499835,"dateAdded":"2018-10-14T15:11:06.052823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4392},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E47.Emissary of Darkness-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E47.Emissary of Darkness-HDTV-720p.mkv","size":682658404,"dateAdded":"2018-10-14T15:11:06.164708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4393},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E48.The Oath in the Tunnel-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E48.The Oath in the Tunnel-HDTV-720p.mkv","size":737111095,"dateAdded":"2018-10-14T15:11:06.338956Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4394},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E49.Filial Affection-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E49.Filial Affection-HDTV-720p.mkv","size":643230620,"dateAdded":"2018-10-14T15:11:06.401143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4395},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E50.Upheaval in Central-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E50.Upheaval in Central-HDTV-720p.mkv","size":657630426,"dateAdded":"2018-10-14T15:11:06.44288Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4396},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E55.The Adults' Way of Life-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E55.The Adults' Way of Life-HDTV-720p.mkv","size":742054982,"dateAdded":"2018-10-14T15:11:15.765709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4401},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E56.The Return of the F\u00fchrer-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E56.The Return of the F\u00fchrer-HDTV-720p.mkv","size":764043486,"dateAdded":"2018-10-14T15:11:16.152582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4402},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E57.Eternal Leave-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E57.Eternal Leave-HDTV-720p.mkv","size":770925724,"dateAdded":"2018-10-14T15:11:17.209751Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4403},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E58.Sacrifices-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E58.Sacrifices-HDTV-720p.mkv","size":696978968,"dateAdded":"2018-10-14T15:11:18.248785Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4404},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E59.Lost Light-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E59.Lost Light-HDTV-720p.mkv","size":674698735,"dateAdded":"2018-10-14T15:11:19.208564Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4405},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E60.Eye of Heaven, Gateway of Earth-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E60.Eye of Heaven, Gateway of Earth-HDTV-720p.mkv","size":779950414,"dateAdded":"2018-10-14T15:11:19.964731Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4406},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E61.He Who Would Swallow God-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E61.He Who Would Swallow God-HDTV-720p.mkv","size":831784472,"dateAdded":"2018-10-14T15:11:20.800102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4407},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E62.A Fierce Counterattack-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E62.A Fierce Counterattack-HDTV-720p.mkv","size":839491245,"dateAdded":"2018-10-14T15:11:21.368397Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4408},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E63.The Other Side of the Gateway-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E63.The Other Side of the Gateway-HDTV-720p.mkv","size":810981349,"dateAdded":"2018-10-14T15:11:22.177151Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4409},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E64.Journey's End-HDTV-720p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E64.Journey's End-HDTV-720p.mkv","size":489565798,"dateAdded":"2018-10-14T15:11:22.54841Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4410},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E51.The Immortal Legion-Bluray-1080p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E51.The Immortal Legion-Bluray-1080p.mkv","size":973167714,"dateAdded":"2020-02-05T19:44:11.644273Z","sceneName":"[Hagane]Fullmetal Alchemist Brotherhood 51-54[1080P]","releaseGroup":"Hagane","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":919910,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4329043,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:30","scanType":"Progressive","subtitles":"Arabic"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12105},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E52.Combined Strength-Bluray-1080p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E52.Combined Strength-Bluray-1080p.mkv","size":1056041210,"dateAdded":"2020-02-05T19:44:16.5786Z","sceneName":"[Hagane]Fullmetal Alchemist Brotherhood 51-54[1080P]","releaseGroup":"Hagane","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":921954,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4781867,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:29","scanType":"Progressive","subtitles":"Arabic"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12106},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E53.Flame of Vengeance-Bluray-1080p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E53.Flame of Vengeance-Bluray-1080p.mkv","size":862752548,"dateAdded":"2020-02-05T19:44:22.820549Z","sceneName":"[Hagane]Fullmetal Alchemist Brotherhood 51-54[1080P]","releaseGroup":"Hagane","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":879067,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3772176,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:29","scanType":"Progressive","subtitles":"Arabic"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12107},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E54.Beyond the Inferno-Bluray-1080p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E54.Beyond the Inferno-Bluray-1080p.mkv","size":956346769,"dateAdded":"2020-02-05T19:44:29.687551Z","sceneName":"[Hagane]Fullmetal Alchemist Brotherhood 51-54[1080P]","releaseGroup":"Hagane","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":900582,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4234679,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:36","scanType":"Progressive","subtitles":"Arabic"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12108},{"seriesId":86,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Fullmetal Alchemist-Bluray-1080p.mkv","path":"\/tv\/Fullmetal Alchemist Brotherhood\/Season 01\/S01E01.Fullmetal Alchemist-Bluray-1080p.mkv","size":1550811336,"dateAdded":"2020-09-18T15:24:34.861303Z","sceneName":"[ANIX] Fullmetal Alchemist Brotherhood - Ep01 [BD 1080p H264 FLAC][Multiple Subtitle]","releaseGroup":"ANIX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":737646,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7701498,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:29","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Korean \/ Malay \/ \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15563}],"queue":[]},"94":{"series":{"title":"Stargate Universe","alternateTitles":[],"sortTitle":"stargate universe","status":"ended","ended":true,"overview":"The previously unknown purpose of the ninth chevron is revealed and takes a group of refugees on a one-way trip to a millions of years old Ancient-built ship. Led by Dr. Nicolas Rush and Colonel Everett Young, the refugees are trapped on the ship, unable to change its programmed mission.","previousAiring":"2011-05-10T01:00:00Z","network":"Syfy","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/101\/banner.jpg?lastWrite=636757134717644330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/83237-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/101\/poster.jpg?lastWrite=637103833501979210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/83237-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/101\/fanart.jpg?lastWrite=636757134715804360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/83237-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":36,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-06-12T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":71586800879,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2011-05-10T01:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":35011805027,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Stargate Universe","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":83237,"tvRageId":15343,"tvMazeId":207,"firstAired":"2009-10-02T00:00:00Z","seriesType":"standard","cleanTitle":"stargateuniverse","imdbId":"tt1286039","titleSlug":"stargate-universe","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-21T10:11:11.052912Z","ratings":{"votes":9582,"value":8.4},"statistics":{"seasonCount":2,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":76,"sizeOnDisk":106598605906,"percentOfEpisodes":100.0},"id":101},"episodes":[{"seriesId":101,"episodeFileId":6431,"seasonNumber":1,"episodeNumber":1,"title":"Air (1)","airDate":"2009-10-02","airDateUtc":"2009-10-03T01:00:00Z","overview":"When Icarus Base is attacked, it's inhabitants are forced to flee through the Stargate. The base was created on a distant planet to take advantage of a powerful energy supply located there. Their goal is to try and determine the purpose of the mysterious ninth symbol of the Stargate which they have never been able to lock in. In going through the Stargate, they are transported not to Earth but onto an very old, apparently uninhabited but huge spacecraft. With the group's commander injured, Lt. Scott and the chief scientist, Dr. Nicholas Rush lead the exploration of the craft. Several areas of the ship have been damaged but it is basically functional. They are able to learn that they are in fact billions of light years from Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7487},{"seriesId":101,"episodeFileId":6431,"seasonNumber":1,"episodeNumber":2,"title":"Air (2)","airDate":"2009-10-02","airDateUtc":"2009-10-03T01:45:00Z","overview":"The survivors arrive on an uninhabited ship floating billions of light years away from Earth. Panic spreads throughout the group and Col. Young, who was severely injured during the escape, transfers command to Lt. Matthew Scott, before lapsing into unconsciousness. Teams led by Dr. Rush and Sgt. Greer try to make sense of the situation, while Lt. Tamara Johansen, a medic who was days away from leaving the program, is thrust into the role of chief medical officer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":7488},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Access All Areas","airDate":"2009-10-06","airDateUtc":"2009-10-07T01:00:00Z","overview":"Behind the scenes of the sci-fi series, as self-proclaimed superfan Nidai interviews the cast and takes a tour of the show's Vancouver set.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7451},{"seriesId":101,"episodeFileId":6431,"seasonNumber":1,"episodeNumber":3,"title":"Air (3)","airDate":"2009-10-09","airDateUtc":"2009-10-10T01:00:00Z","overview":"With the air supply failing on the Destiny, a team disembarks to a desert-like planet in search of the mineral needed to scrub the ship\u2019s air of carbon dioxide. After testing numerous sand samples without success, and with their window of opportunity closing fast, the group opts to split into two to cover more ground, despite the unbearable heat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":7489},{"seriesId":101,"episodeFileId":6432,"seasonNumber":1,"episodeNumber":4,"title":"Darkness","airDate":"2009-10-16","airDateUtc":"2009-10-17T01:00:00Z","overview":"The Destiny suffers a power crisis, putting the lives of the stranded crew in jeopardy and forcing them to consider abandoning the ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":7490},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Kino Webisode 1 : Get Outta Here","airDate":"2009-10-22","airDateUtc":"2009-10-23T01:00:00Z","overview":"Colonel Young is in his quarters going over paper work. The Kino enters and watches him over his shoulder. He notices it's presence and closes his folder. He tells Eli that even though he gave him permission to keep an eye on things he does not have permission to spy on him. He stands up and grabs the Kino.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7452},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Kino Webisode 2 : Not the Com Lab","airDate":"2009-10-22","airDateUtc":"2009-10-23T01:45:00Z","overview":"Eli is talking into the Kino and showing us around the ship. He enters a room he thinks is the Communications Lab but it is actually the Infirmary. He says that they don't know what half of the machines do.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7453},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Kino Webisode 3 : No Idea","airDate":"2009-10-22","airDateUtc":"2009-10-23T02:30:00Z","overview":"Eli again is showing us the ship and he enters a room that he has no idea what it is. He says he doesn't think he has been in it before.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7454},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Kino Webisode 4 : The Stargate Room","airDate":"2009-10-22","airDateUtc":"2009-10-23T03:15:00Z","overview":"Eli shows us his favorite room on the ship, the Stargate Room. He says that Rush believes this Stargate is older then all other Stargates and might be a prototype.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7455},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Kino Webisode 5 : Eli's Room","airDate":"2009-10-22","airDateUtc":"2009-10-23T04:00:00Z","overview":"Eli shows us his very small sleeping quarters. He says that he hopes it is only temporary because there are more compartments that can't be entered because they are damaged. He says Rush wants them to be fixed but Young wants them to focus on getting home and finding food and water. He says he agrees with Colonel Young and says farewell because he has a calisthenics training session with Greer, who he thinks hates him, in the morning and needs to get some sleep.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7456},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Kino Webisode 6 : Don't Encourage Him","airDate":"2009-10-23","airDateUtc":"2009-10-24T01:00:00Z","overview":"The Kino enters the Mess Hall where Scott, Johansen, and Greer are having lunch. Scott says hello and Johansen tells him not to encourage him because he was caught spying on Lt. James. Eli denies it and says that Riley was driving. Greer grabs the Kino and holds it to his face. He warns Eli that if he does it again he will use the Kino to spy on him from the inside.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7457},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Kino Webisode 7 : Corridor Conversation","airDate":"2009-10-23","airDateUtc":"2009-10-24T01:45:00Z","overview":"The Kino turns a corner and zooms in on Scott and Chloe having a conversation but they are too far away for the mic to pick it up.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7458},{"seriesId":101,"episodeFileId":6433,"seasonNumber":1,"episodeNumber":5,"title":"Light","airDate":"2009-10-23","airDateUtc":"2009-10-24T01:00:00Z","overview":"With the ship on a collision course, the crew must decide who will stay and who will flee on the shuttle to try and find a habitable planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":7491},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Kino Webisode 8 : Marked Hatch","airDate":"2009-10-26","airDateUtc":"2009-10-27T01:00:00Z","overview":"Eli comes up to a hatch marked with 2 X's. He says that if he opened the hatch he would be sucked out into space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7459},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Kino Webisode 9 : Not Supposed to be in Here","airDate":"2009-10-26","airDateUtc":"2009-10-27T01:45:00Z","overview":"Eli enters the Shuttle and explains that Destiny has two of them but one is inaccessible. He says he is not supposed to be in it because it is for military personnel only.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7460},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Kino Webisode 10 : Nobody Cares","airDate":"2009-10-26","airDateUtc":"2009-10-27T02:30:00Z","overview":"Eli is interviewing Chloe in her quarters and asking her personal questions. She tells him that nobody cares what her favorite color is because she is not important. Eli disagrees and tries to cheer her up. She says she is tired and asks him to leave.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7461},{"seriesId":101,"episodeFileId":6434,"seasonNumber":1,"episodeNumber":6,"title":"Water","airDate":"2009-10-30","airDateUtc":"2009-10-31T01:00:00Z","overview":"Severe rationing can't save the Destiny's dwindling water supply, forcing Colonel Young and Lieutenant Scott to seek out drinkable water on a deadly ice planet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":7492},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Kino Webisode 11 : Kino Race","airDate":"2009-11-02","airDateUtc":"2009-11-03T02:00:00Z","overview":"Eli and Riley are in the corridor preparing for a Kino race. They start down the corridor and turn the corner and Eli's almost hits Camille.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7462},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Kino Webisode 12 : Covered Kino","airDate":"2009-11-02","airDateUtc":"2009-11-03T02:45:00Z","overview":"Lt. James enters the shower room and takes off her shirt. She looks up and sees the Kino hovering near the ceiling. She using her shirt to cover the Kino.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7463},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Kino Webisode 13 : Variety","airDate":"2009-11-02","airDateUtc":"2009-11-03T03:30:00Z","overview":"Becker and Inman are trying to isolate flavorful esters (such as banana flavoring) from chemical impurities in the water from the ice planet in order to make the rations more enjoyable. Becker asks if it is possible to get chocolate but Inman says that it contains over 12,000 chemicals and hasn't been able to be replicated. All of the sudden the ship shakes as if there was an explosion.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7464},{"seriesId":101,"episodeFileId":6435,"seasonNumber":1,"episodeNumber":7,"title":"Earth","airDate":"2009-11-06","airDateUtc":"2009-11-07T02:00:00Z","overview":"With the situation onboard the Destiny dire, General O'Neill and Home World Command orders Col. Young to execute a high risk plan concocted by the I.O.A. scientists which, in theory, could return the crew to earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":7493},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Kino Webisode 14 : You Okay","airDate":"2009-11-11","airDateUtc":"2009-11-12T02:00:00Z","overview":"Scott enters Chloe's quarters and asks if she is okay. She says she really thought they were going home. Scott says that she must be happy to be going to Earth. She says that seeing her mom that way just makes things harder.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7465},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Kino Webisode 15 : Do I Look Stupid","airDate":"2009-11-11","airDateUtc":"2009-11-12T02:45:00Z","overview":"Scott and Volker are helping Riley and Brody put on the space suits. Brody thinks he looks stupid but Scott assures him he looks cool. Riley realizes he has to go to the bathroom and Scott tells him to go in the suit because they are designed for it but Riley refuses. Brody gets his helmet on and tries to walk. He takes one step and falls on his face.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7466},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Kino Webisode 16 : All Telford's Fault","airDate":"2009-11-11","airDateUtc":"2009-11-12T03:30:00Z","overview":"Brody is in his quarters and blaming himself for what happened to Riley but Park tells him he couldn't have done anything. Brody says it is all Telford's fault and Rush is right that he is going to get everyone killed. Park asks him what they should do and he says they should help Rush.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7467},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Kino Webisode 17 : What's That Light","airDate":"2009-11-11","airDateUtc":"2009-11-12T04:15:00Z","overview":"While walking down a corridor, Sgt. Ronald Greer and Lt. Matthew Scott (and possibly the entire ship) hear the intercom come on and the voices of Adam Brody and Lisa Park testing something they just invented. The Kino is on Greer and Scott's faces the entire time. It seems that Park rigged a full duplex interface with the Destiny's communication system and the frequencies got swapped somehow and now everyone can hear their conversation. It seems that they should have tested the thing thoroughly before talking bad about the military personnel, who Brody declares \"can't walk without dragging their knuckles\" let alone work a simple device. Then Brody notices that a light is on, despite Park claiming that the intercom was off.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7468},{"seriesId":101,"episodeFileId":6436,"seasonNumber":1,"episodeNumber":8,"title":"Time","airDate":"2009-11-13","airDateUtc":"2009-11-14T02:00:00Z","overview":"Visiting a newly discovered jungle planet, the crew is amazed to recover a Kino by the gate. Downloading the Kino data, Eli discovers video of the team, which appears to have been shot during an earlier visit. The mystery of the video\u2019s origin becomes a secondary concern as members of the team start falling ill.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":7494},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Kino Webisode 18 : New Kind of Crazy","airDate":"2009-11-15","airDateUtc":"2009-11-16T02:00:00Z","overview":"Eli and Lt. Scott discuss the discovery of the two Kinos found on a Jungle planet - upon the one is a recording of an alternative timeline Matthew Scott. The recording informs the present crew about a disease that was in their water supplies, the native creature on the planet, and its medicinal qualities found in its venom.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7469},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Kino Webisode 21 : The Apple Core","airDate":"2009-11-15","airDateUtc":"2009-11-16T02:45:00Z","overview":"Eli Wallace introduces the Destiny's Control interface hub. He calls it \"apple core\" but this name displeases Adam Brody who demands to call it control interface. Brody tries to get support from Lisa Park and Dale Volker but they also call it \"Apple core\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7472},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Kino Webisode 19 : Only Run When Chased","airDate":"2009-11-19","airDateUtc":"2009-11-20T02:00:00Z","overview":"Eli Wallace is sitting with Lisa Park, Dale Volker and Adam Brody are watching an episode of South Park from Eli's cell phone, and find one scene hilarious. They are then interrupted by Matthew Scott, who notices that it must have been the fiftieth time they seen the same episode. He came in to announce the start of a morning work out Everett Young proposed to keep the crew in shape. Volker notes he only does his running while being chased, but they still have to run. The team hear that Scott can run two miles in 21 minutes for a man his age, probably faster. Eli decides to wager an energy bar, believing he couldn't do it in time. Scott accepts the bet, and starts the run after Park starts the timer. After Scott leaves, the four continue with the watching South Park, laughing at another scene.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7470},{"seriesId":101,"episodeFileId":6437,"seasonNumber":1,"episodeNumber":9,"title":"Life","airDate":"2009-11-20","airDateUtc":"2009-11-21T02:00:00Z","overview":"Aboard Destiny, Dr. Rush supervises the exploration of new areas of the ship. Looking for resources to make their everyday lives easier, the crew stumbles upon a piece of Ancient technology that carries the promise of a way home. While somewhat familiar with the find, Dr. Rush can\u2019t guarantee the safety of using it, bringing him and Col. Young to a standoff on what to do.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":7495},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Kino Webisode 20 : Want Me to Bust Him Up","airDate":"2009-11-25","airDateUtc":"2009-11-26T02:00:00Z","overview":"Walking down a corridor aboard Destiny followed closely by a Kino, Ronald Greer hears crying. He pauses and motions for the Kino to turn right. In a room around the corner, Dr. Lisa Park is pacing and muttering to herself about being stupid. Greer indicates for the Kino to remain in the hallway as he approaches Park. He wonders if she is okay, and asks her if Dr. Rush is giving her a hard time. She nods yes, and Greer responds by offering to \"bust him up\". The two laugh.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7471},{"seriesId":101,"episodeFileId":6438,"seasonNumber":1,"episodeNumber":10,"title":"Justice","airDate":"2009-12-04","airDateUtc":"2009-12-05T02:00:00Z","overview":"Everyone is shocked when a member of the crew is found dead from a gunshot wound. While at first glance it appears to be suicide, the gun is nowhere to be found. The crew is confined to quarters while a search is performed and when the gun shows up in Col. Young\u2019s quarters, he becomes the number one suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":7496},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Kino Webisode 22 : Not Just For Posterity","airDate":"2009-12-10","airDateUtc":"2009-12-11T02:00:00Z","overview":"Dr. Lisa Park records a video diary about her time on Destiny and mentions here friends and family. However, she is interrupted and proceeds to have sex with an apparently close male friend.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7473},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Kino Webisode 27 : Chloe's Room","airDate":"2010-02-09","airDateUtc":"2010-02-10T02:00:00Z","overview":"Eli makes another tour through the ship and comes to Chloe Armstrong's room.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7478},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Kino Webisode 28 : Disgusting Habit","airDate":"2010-02-09","airDateUtc":"2010-02-10T02:45:00Z","overview":"Adam Brody secretly share a cigarette with sergeant Spencer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7479},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Kino Webisode 29 : Favorite Meal of All Time","airDate":"2010-02-09","airDateUtc":"2010-02-10T03:30:00Z","overview":"Eli asks everyone what their \"favorite meal of all time\" is.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7480},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Kino Webisode 30 : Not Being There","airDate":"2010-02-09","airDateUtc":"2010-02-10T04:15:00Z","overview":"Hunter Riley records his diary entry.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7481},{"seriesId":101,"episodeFileId":6439,"seasonNumber":1,"episodeNumber":11,"title":"Space (1)","airDate":"2010-04-02","airDateUtc":"2010-04-03T01:00:00Z","overview":"A snafu with the communications stones lands Col. Young's consciousness in an unknown being, resulting in a standoff between the Destiny and an alien vessel and the abduction of Chloe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":7497},{"seriesId":101,"episodeFileId":6440,"seasonNumber":1,"episodeNumber":12,"title":"Divided (2)","airDate":"2010-04-09","airDateUtc":"2010-04-10T01:00:00Z","overview":"Dr. Nicholas Rush and Chloe suffer nightmares following their ordeal on the alien vessel, and Rush suspects that a tracking device may have been placed on the ship's hull. Later, a splinter group on Destiny executes a coup with life-threatening consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":7498},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Kino Webisode 23 : We Volunteer To Do This","airDate":"2010-04-16","airDateUtc":"2010-04-17T01:00:00Z","overview":"Eli interviews Airman Kelly, while her consciousness is in Chloe's body, about why she volunteered to use the communication stones.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7474},{"seriesId":101,"episodeFileId":6441,"seasonNumber":1,"episodeNumber":13,"title":"Faith","airDate":"2010-04-16","airDateUtc":"2010-04-17T01:00:00Z","overview":"Dr. Rush struggles to determine why Destiny has no record of this star system while Col. Young directs Lt. Scott and a small team to shuttle down to the planet's surface on a fact finding mission. Upon landing, everyone is amazed to discover that the atmosphere and terrain are idyllic. Relishing the sunshine, fresh air, clean water and abundance of food, many are reluctant to return to the ship, believing that providence has intervened.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":7499},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Kino Webisode 24 : Wait For It","airDate":"2010-04-23","airDateUtc":"2010-04-24T01:00:00Z","overview":"Dr. Brody attempts to take revenge on Sgt. Riley by playing a prank on him.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7475},{"seriesId":101,"episodeFileId":6442,"seasonNumber":1,"episodeNumber":14,"title":"Human","airDate":"2010-04-23","airDateUtc":"2010-04-24T01:00:00Z","overview":"Risking his life with a piece of Ancient technology, Dr. Rush finds clues to unlocking more of Destiny during flashbacks to his life back on Earth before Icarus, with a wife dying of cancer and meeting Dr. Daniel Jackson to learn about the Stargate. Meanwhile, members of the Destiny crew find themselves trapped while exploring tunnels on a nearby planet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7500},{"seriesId":101,"episodeFileId":6443,"seasonNumber":1,"episodeNumber":15,"title":"Lost","airDate":"2010-04-30","airDateUtc":"2010-05-01T01:00:00Z","overview":"Trapped on a planet in rubble and left for dead, Ronald Greer must do everything he can to save himself. His ordeal brings back tragic memories of his past with his abusive father and loving mother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7501},{"seriesId":101,"episodeFileId":6444,"seasonNumber":1,"episodeNumber":16,"title":"Sabotage","airDate":"2010-05-07","airDateUtc":"2010-05-08T01:00:00Z","overview":"When one of the twelve FTL drive modules on the Destiny explodes due to an overload, the crew calls upon a brilliant scientist from Earth to help find a solution.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7502},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Kino Webisode 25 : Drop The Sirs","airDate":"2010-05-14","airDateUtc":"2010-05-15T01:00:00Z","overview":"Scott tells Greer to be sometimes less formal. After that they chat a bit.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7476},{"seriesId":101,"episodeFileId":6445,"seasonNumber":1,"episodeNumber":17,"title":"Pain","airDate":"2010-05-14","airDateUtc":"2010-05-15T01:00:00Z","overview":"Dr. Tamara Johansen tries to track down what is causing the crew to hallucinate.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7503},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Kino Webisode 26 : Like A Hug","airDate":"2010-05-19","airDateUtc":"2010-05-20T01:00:00Z","overview":"TJ and Dr. Park discuss Rush's relationship with Dr. Perry.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7477},{"seriesId":101,"episodeFileId":6446,"seasonNumber":1,"episodeNumber":18,"title":"Subversion","airDate":"2010-05-21","airDateUtc":"2010-05-22T01:00:00Z","overview":"Earth's Stargate Program isn't the only group in the Milky Way that's interested in the Ancients' Destiny. What's worse, this long-time foe may have a spy among those closest to the Icarus project.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7504},{"seriesId":101,"episodeFileId":6447,"seasonNumber":1,"episodeNumber":19,"title":"Incursion (1)","airDate":"2010-06-04","airDateUtc":"2010-06-05T01:00:00Z","overview":"An enemy from the Milky Way has boarded the Destiny and has taken hostages. Is it possible that they know how to get back or have they stranded themselves as well?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7505},{"seriesId":101,"episodeFileId":6448,"seasonNumber":1,"episodeNumber":20,"title":"Incursion (2)","airDate":"2010-06-11","airDateUtc":"2010-06-12T01:00:00Z","overview":"As Young and Camille attempt to resolve the hostage crisis with Kiva, Destiny suffers from power fluctuations and blackouts due to its proximity to a binary pulsar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7506},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"What Else Is Going On?","airDate":"2010-08-06","airDateUtc":"2010-08-07T01:00:00Z","overview":"Director Ivon Bartok gives a behind the scenes look at filming the web-only Kino scenes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7482},{"seriesId":101,"episodeFileId":5530,"seasonNumber":2,"episodeNumber":1,"title":"Intervention (3)","airDate":"2010-09-28","airDateUtc":"2010-09-29T01:00:00Z","overview":"Everett and the crew continue their efforts to save Destiny while holding off the Lucian Alliance invaders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":7507},{"seriesId":101,"episodeFileId":5531,"seasonNumber":2,"episodeNumber":2,"title":"Aftermath","airDate":"2010-10-05","airDateUtc":"2010-10-06T01:00:00Z","overview":"Desperate for food and water, Rush directs the ship to a planet that has been locked out of Destiny's controls. Young and Wray clash over what to do with the Alliance prisoners.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":7508},{"seriesId":101,"episodeFileId":5532,"seasonNumber":2,"episodeNumber":3,"title":"Awakening","airDate":"2010-10-12","airDateUtc":"2010-10-13T01:00:00Z","overview":"The crew encounters a ship remarkably similar to Destiny, which may hold the key to their returning home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":7509},{"seriesId":101,"episodeFileId":5533,"seasonNumber":2,"episodeNumber":4,"title":"Pathogen","airDate":"2010-10-19","airDateUtc":"2010-10-20T01:00:00Z","overview":"Chloe behaves in a bizarre way, prompting a search of her quarters, where Lt. Scott finds a journal penned in an alien language. Elsewhere, Eli copes with his mother's medical condition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":7510},{"seriesId":101,"episodeFileId":5534,"seasonNumber":2,"episodeNumber":5,"title":"Cloverdale","airDate":"2010-10-26","airDateUtc":"2010-10-27T01:00:00Z","overview":"When Scott's team explores a new planet, a plant-like organism infects the lieutenant, causing him to hallucinate a life back on Earth where he is getting married.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":7511},{"seriesId":101,"episodeFileId":5535,"seasonNumber":2,"episodeNumber":6,"title":"Trial and Error","airDate":"2010-11-02","airDateUtc":"2010-11-03T01:00:00Z","overview":"Young is plagued by mysterious dreams where Destiny is destroyed by alien attackers no matter what he does.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":7512},{"seriesId":101,"episodeFileId":5536,"seasonNumber":2,"episodeNumber":7,"title":"The Greater Good","airDate":"2010-11-09","airDateUtc":"2010-11-10T02:00:00Z","overview":"Rush and Young investigate an abandoned alien craft which is just outside the Destiny. While they do this, the crew onboard the ship find the bridge and discover that Rush is responsible for the countdown clock not activating when the ship emerges from FTL.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":7513},{"seriesId":101,"episodeFileId":5537,"seasonNumber":2,"episodeNumber":8,"title":"Malice","airDate":"2010-11-16","airDateUtc":"2010-11-17T02:00:00Z","overview":"Simeon makes his escape from Destiny, sending Nicholas Rush on a vengeful mission. But Young and Greer attempt to retrieve Simeon unharmed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":7514},{"seriesId":101,"episodeFileId":5538,"seasonNumber":2,"episodeNumber":9,"title":"Visitation","airDate":"2010-11-23","airDateUtc":"2010-11-24T02:00:00Z","overview":"Members of the crew left behind in another galaxy make a shocking return to Destiny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":7515},{"seriesId":101,"episodeFileId":5539,"seasonNumber":2,"episodeNumber":10,"title":"Resurgence (1)","airDate":"2010-11-30","airDateUtc":"2010-12-01T02:00:00Z","overview":"The crew's new-found control over Destiny's flight path introduces new risks when they find themselves in the middle of a war between two races.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":7516},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Kino Webisode 31 : One Long Endless Night","airDate":"2011-01-27","airDateUtc":"2011-01-28T02:00:00Z","overview":"Lt. James talks about keeping time on the Destiny. Camile wishes James a happy birthday.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7483},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Kino Webisode 32 : Horrible Accident","airDate":"2011-01-28","airDateUtc":"2011-01-29T02:00:00Z","overview":"Sgt. Riley uses the Kino to check up on Eli in the infirmary.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7484},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Kino Webisode 33 : Painful Moments","airDate":"2011-01-31","airDateUtc":"2011-02-01T02:00:00Z","overview":"Brody, Park, Morrison, Sgt. Riley and Eli recount their most emotionally painful moments in life.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7485},{"seriesId":101,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Kino Webisode 34 : All The Stages","airDate":"2011-02-01","airDateUtc":"2011-02-02T02:00:00Z","overview":"Lt. James documents all the stages she's gone through while aboard the Destiny.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7486},{"seriesId":101,"episodeFileId":5540,"seasonNumber":2,"episodeNumber":11,"title":"Deliverance (2)","airDate":"2011-03-07","airDateUtc":"2011-03-08T02:00:00Z","overview":"Locked in a battle with a Drone Command Ship, the Destiny is surprised by the arrival of the Aliens that abducted Rush and Chloe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":7517},{"seriesId":101,"episodeFileId":5541,"seasonNumber":2,"episodeNumber":12,"title":"Twin Destinies","airDate":"2011-03-14","airDateUtc":"2011-03-15T01:00:00Z","overview":"Rush travels back in time to avert a disaster, meeting a past version of himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":7518},{"seriesId":101,"episodeFileId":5542,"seasonNumber":2,"episodeNumber":13,"title":"Alliances","airDate":"2011-03-21","airDateUtc":"2011-03-22T01:00:00Z","overview":"Camille and Sgt. Greer are trapped when Homeworld Command comes under attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":7519},{"seriesId":101,"episodeFileId":5543,"seasonNumber":2,"episodeNumber":14,"title":"Hope","airDate":"2011-03-28","airDateUtc":"2011-03-29T01:00:00Z","overview":"Chloe's body is taken over by another consciousness. Meanwhile, Dr. Volker is stricken with a mysterious illness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":7520},{"seriesId":101,"episodeFileId":5544,"seasonNumber":2,"episodeNumber":15,"title":"Seizure","airDate":"2011-04-04","airDateUtc":"2011-04-05T01:00:00Z","overview":"Rush slips into a coma in the neural interface chair, and Amanda connects with him in the ship\u2019s matrix, but Ginn informs Eli of a problem with that scenario. Elsewhere, Dr. Rodney McKay\u2019s plan to dial the ninth chevron address hits a snag.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":7521},{"seriesId":101,"episodeFileId":5545,"seasonNumber":2,"episodeNumber":16,"title":"The Hunt","airDate":"2011-04-11","airDateUtc":"2011-04-12T01:00:00Z","overview":"An alien creature attacks an exploration team from Destiny, taking two crew members captive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":7522},{"seriesId":101,"episodeFileId":5546,"seasonNumber":2,"episodeNumber":17,"title":"Common Descent (1)","airDate":"2011-04-18","airDateUtc":"2011-04-19T01:00:00Z","overview":"Destiny comes upon a colony where the people claim their civilization was founded two thousand years earlier ... by Destiny's crew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":7523},{"seriesId":101,"episodeFileId":5547,"seasonNumber":2,"episodeNumber":18,"title":"Epilogue (2)","airDate":"2011-04-25","airDateUtc":"2011-04-26T01:00:00Z","overview":"While attempting to return a group of colonists to their home, the crew finds that the planet is on the verge of seismic destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":7524},{"seriesId":101,"episodeFileId":5548,"seasonNumber":2,"episodeNumber":19,"title":"Blockade","airDate":"2011-05-02","airDateUtc":"2011-05-03T01:00:00Z","overview":"When the command ships blockade stars along Destiny's path, the crew must find a different, superhot star to recharge at. Eli and Rush are forced to pilot the ship in, while the rest of the crew evacuates to a nearby planet... only to discover that the drones are already there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":7525},{"seriesId":101,"episodeFileId":5549,"seasonNumber":2,"episodeNumber":20,"title":"Gauntlet","airDate":"2011-05-09","airDateUtc":"2011-05-10T01:00:00Z","overview":"Blocked by Command Ships at every star and unable to gate for supplies without alerting the drones, Destiny must take a stand or be left adrift.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":7526}],"episodeFile":[{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Intervention (3)-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E01.Intervention (3)-WEBDL-1080p.mkv","size":1567502547,"dateAdded":"2018-10-25T07:06:18.805092Z","sceneName":"Stargate.Universe.S02E01.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4327911,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5530},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Aftermath-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E02.Aftermath-WEBDL-1080p.mkv","size":1733992379,"dateAdded":"2018-10-25T07:06:38.485071Z","sceneName":"Stargate.Universe.S02E02.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4823908,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5531},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Awakening-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E03.Awakening-WEBDL-1080p.mkv","size":1742225525,"dateAdded":"2018-10-25T07:07:10.770785Z","sceneName":"Stargate.Universe.S02E03.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4848634,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5532},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Pathogen-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E04.Pathogen-WEBDL-1080p.mkv","size":1694657635,"dateAdded":"2018-10-25T07:07:53.732508Z","sceneName":"Stargate.Universe.S02E04.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4697918,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5533},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Cloverdale-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E05.Cloverdale-WEBDL-1080p.mkv","size":1749398335,"dateAdded":"2018-10-25T07:08:27.209656Z","sceneName":"Stargate.Universe.S02E05.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870178,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5534},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Trial and Error-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E06.Trial and Error-WEBDL-1080p.mkv","size":1798034426,"dateAdded":"2018-10-25T07:09:11.002792Z","sceneName":"Stargate.Universe.S02E06.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5016253,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5535},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Greater Good-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E07.The Greater Good-WEBDL-1080p.mkv","size":1750505931,"dateAdded":"2018-10-25T07:09:46.477974Z","sceneName":"Stargate.Universe.S02E07.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4876535,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5536},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Malice-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E08.Malice-WEBDL-1080p.mkv","size":1748213871,"dateAdded":"2018-10-25T07:10:33.769148Z","sceneName":"Stargate.Universe.S02E08.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4866620,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5537},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Visitation-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E09.Visitation-WEBDL-1080p.mkv","size":1764313722,"dateAdded":"2018-10-25T07:11:10.030349Z","sceneName":"Stargate.Universe.S02E09.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4915560,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5538},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Resurgence (1)-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E10.Resurgence (1)-WEBDL-1080p.mkv","size":1800240790,"dateAdded":"2018-10-25T07:11:40.679995Z","sceneName":"Stargate.Universe.S02E10.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5034036,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5539},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Deliverance (2)-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E11.Deliverance (2)-WEBDL-1080p.mkv","size":1709239141,"dateAdded":"2018-10-25T07:12:12.029455Z","sceneName":"Stargate.Universe.S02E11.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4749626,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5540},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Twin Destinies-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E12.Twin Destinies-WEBDL-1080p.mkv","size":1829921570,"dateAdded":"2018-10-25T07:12:57.904844Z","sceneName":"Stargate.Universe.S02E12.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113842,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5541},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Alliances-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E13.Alliances-WEBDL-1080p.mkv","size":1803885855,"dateAdded":"2018-10-25T07:13:44.574051Z","sceneName":"Stargate.Universe.S02E13.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5033760,"videoCodec":"h264","videoFps":23.976,"resolution":"1918x1078","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5542},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Hope-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E14.Hope-WEBDL-1080p.mkv","size":1774972121,"dateAdded":"2018-10-25T07:14:39.325818Z","sceneName":"Stargate.Universe.S02E14.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4928883,"videoCodec":"h264","videoFps":23.976,"resolution":"1918x1078","runTime":"43:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5543},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Seizure-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E15.Seizure-WEBDL-1080p.mkv","size":1735321864,"dateAdded":"2018-10-25T07:15:10.431246Z","sceneName":"Stargate.Universe.S02E15.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4829307,"videoCodec":"h264","videoFps":23.976,"resolution":"1918x1078","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5544},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Hunt-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E16.The Hunt-WEBDL-1080p.mkv","size":1786138556,"dateAdded":"2018-10-25T07:15:47.37039Z","sceneName":"Stargate.Universe.S02E16.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4980458,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5545},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Common Descent (1)-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E17.Common Descent (1)-WEBDL-1080p.mkv","size":1743095388,"dateAdded":"2018-10-25T07:16:21.845542Z","sceneName":"Stargate.Universe.S02E17.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4853686,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5546},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Epilogue (2)-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E18.Epilogue (2)-WEBDL-1080p.mkv","size":1723264824,"dateAdded":"2018-10-25T07:17:10.943874Z","sceneName":"Stargate.Universe.S02E18.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4791624,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5547},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Blockade-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E19.Blockade-WEBDL-1080p.mkv","size":1793822428,"dateAdded":"2018-10-25T07:17:45.987419Z","sceneName":"Stargate.Universe.S02E19.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5003932,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5548},{"seriesId":101,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Gauntlet-WEBDL-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 02\/S02E20.Gauntlet-WEBDL-1080p.mkv","size":1763058119,"dateAdded":"2018-10-25T07:18:17.340279Z","sceneName":"Stargate.Universe.S02E20.1080p.WEB-DL.DD5.1.H.264-POD","releaseGroup":"POD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4914776,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5549},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02E03.Air-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E01E02E03.Air-Bluray-1080p.mkv","size":11740388729,"dateAdded":"2019-01-17T06:51:04.668905Z","sceneName":"stargate.universe.s01e01-e03.extended.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9825000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:18:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6431},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Darkness-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E04.Darkness-Bluray-1080p.mkv","size":3519832664,"dateAdded":"2019-01-17T06:55:16.782299Z","sceneName":"stargate.universe.s01e04.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6432},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Light-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E05.Light-Bluray-1080p.mkv","size":3520182758,"dateAdded":"2019-01-17T06:56:58.853873Z","sceneName":"stargate.universe.s01e05.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9256000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6433},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Water-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E06.Water-Bluray-1080p.mkv","size":3517865787,"dateAdded":"2019-01-17T06:58:22.566627Z","sceneName":"stargate.universe.s01e06.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9267000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6434},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Earth-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E07.Earth-Bluray-1080p.mkv","size":3520384131,"dateAdded":"2019-01-17T06:59:34.704913Z","sceneName":"stargate.universe.s01e07.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6435},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Time-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E08.Time-Bluray-1080p.mkv","size":3524024744,"dateAdded":"2019-01-17T07:01:01.380883Z","sceneName":"stargate.universe.s01e08.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9258000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6436},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Life-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E09.Life-Bluray-1080p.mkv","size":3522032607,"dateAdded":"2019-01-17T07:02:13.656984Z","sceneName":"stargate.universe.s01e09.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6437},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Justice-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E10.Justice-Bluray-1080p.mkv","size":3520317945,"dateAdded":"2019-01-17T07:03:21.272177Z","sceneName":"stargate.universe.s01e10.1080p.bluray.x264-hdmi","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9258000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6438},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Space (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E11.Space (1)-Bluray-1080p.mkv","size":3519004920,"dateAdded":"2019-01-17T07:04:54.707192Z","sceneName":"stargate.universe.s01e11.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9238000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6439},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Divided (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E12.Divided (2)-Bluray-1080p.mkv","size":3517618661,"dateAdded":"2019-01-17T07:06:05.137745Z","sceneName":"stargate.universe.s01e12.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9270000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6440},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Faith-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E13.Faith-Bluray-1080p.mkv","size":3521777088,"dateAdded":"2019-01-17T07:07:32.719052Z","sceneName":"stargate.universe.s01e13.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9260000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6441},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Human-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E14.Human-Bluray-1080p.mkv","size":3518759080,"dateAdded":"2019-01-17T07:08:30.357805Z","sceneName":"stargate.universe.s01e14.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9272000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6442},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Lost-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E15.Lost-Bluray-1080p.mkv","size":3520425731,"dateAdded":"2019-01-17T07:10:02.014558Z","sceneName":"stargate.universe.s01e15.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6443},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Sabotage-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E16.Sabotage-Bluray-1080p.mkv","size":3520276464,"dateAdded":"2019-01-17T07:11:10.044889Z","sceneName":"stargate.universe.s01e16.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9262000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6444},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Pain-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E17.Pain-Bluray-1080p.mkv","size":3520383227,"dateAdded":"2019-01-17T07:12:14.277272Z","sceneName":"stargate.universe.s01e17.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9257000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6445},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Subversion-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E18.Subversion-Bluray-1080p.mkv","size":3520636438,"dateAdded":"2019-01-17T07:13:38.397204Z","sceneName":"stargate.universe.s01e18.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9264000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6446},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Incursion (1)-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E19.Incursion (1)-Bluray-1080p.mkv","size":3521090918,"dateAdded":"2019-01-17T07:14:58.289783Z","sceneName":"stargate.universe.s01e19.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9261000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6447},{"seriesId":101,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Incursion (2)-Bluray-1080p.mkv","path":"\/tv\/Stargate Universe\/Season 01\/S01E20.Incursion (2)-Bluray-1080p.mkv","size":3521798987,"dateAdded":"2019-01-17T07:16:06.314157Z","sceneName":"stargate.universe.s01e20.1080p.bluray-aaf","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9263000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6448}],"queue":[]},"96":{"series":{"title":"Stargate Origins","alternateTitles":[],"sortTitle":"stargate origins","status":"ended","ended":true,"overview":"Young Catherine Langford embarks on an unexpected adventure to unlock the mystery of what lies beyond the Stargate in order to save the Earth from darkness.","previousAiring":"2018-03-08T21:20:00Z","airTime":"16:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/99\/banner.jpg?lastWrite=636756521626560100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/339552-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/99\/poster.jpg?lastWrite=637215249117029680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/339552-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/99\/fanart.jpg?lastWrite=637103833468219820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/339552-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-03-08T21:20:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2286010771,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Stargate Origins","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":339552,"tvRageId":0,"tvMazeId":30634,"firstAired":"2018-02-14T00:00:00Z","seriesType":"standard","cleanTitle":"stargateorigins","imdbId":"tt7161862","titleSlug":"stargate-origins","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Science Fiction"],"tags":[],"added":"2018-10-20T17:09:21.004625Z","ratings":{"votes":321,"value":5.8},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2286010771,"percentOfEpisodes":100.0},"id":99},"episodes":[{"seriesId":99,"episodeFileId":5009,"seasonNumber":1,"episodeNumber":1,"title":"Episode 1","airDate":"2018-02-14","airDateUtc":"2018-02-14T21:00:00Z","overview":"For more than ten years, Catherine Langford has watched her father labor over the mysterious ringed device he discovered in the Egyptian desert back in 1928. With answers eluding them both and funding running out, the Langford\u2019s situation has become desperate. As the Professor makes plans to move the ring abroad, Catherine struggles to hold on to her life in Cairo, Egypt. But when mysterious figures show up at their facility late one night, new light is shed on the device in a most sinister way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7292},{"seriesId":99,"episodeFileId":5007,"seasonNumber":1,"episodeNumber":2,"title":"Episode 2","airDate":"2018-02-14","airDateUtc":"2018-02-14T21:10:00Z","overview":"Dr. Br\u00fccke\u2019s intentions become clearer as he puts his theories about the Langford discovery to the test. As the ring\u2019s potential is revealed, Br\u00fccke decides to kidnap Professor Langford as Catherine is held hostage by one of his loyal soldiers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7293},{"seriesId":99,"episodeFileId":5010,"seasonNumber":1,"episodeNumber":3,"title":"Episode 3","airDate":"2018-02-14","airDateUtc":"2018-02-14T21:20:00Z","overview":"Cleverly eluding her captors, Catherine recruits the help of two soldiers for a rescue mission into the unknown. Meanwhile, Professor Langford and Br\u00fccke come face to face with a powerful new force.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7294},{"seriesId":99,"episodeFileId":5006,"seasonNumber":1,"episodeNumber":4,"title":"Episode 4","airDate":"2018-02-22","airDateUtc":"2018-02-22T21:00:00Z","overview":"The team\u2019s travels bring them into dangerous territory, and Catherine discovers that getting home won\u2019t be as easy as she thought. Matters are complicated when two new faces present themselves, but could one be a potential ally?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7295},{"seriesId":99,"episodeFileId":5004,"seasonNumber":1,"episodeNumber":5,"title":"Episode 5","airDate":"2018-02-22","airDateUtc":"2018-02-22T21:10:00Z","overview":"As Aset learns of new interlopers on her territory, Br\u00fccke schemes to win her favor. Catherine and the team are follow the lead of their mysterious guide, but his intentions remain unclear as they navigate their new surroundings.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7296},{"seriesId":99,"episodeFileId":5012,"seasonNumber":1,"episodeNumber":6,"title":"Episode 6","airDate":"2018-03-01","airDateUtc":"2018-03-01T21:00:00Z","overview":"Professor Langford is forced to help Br\u00fccke and Aset negotiate an uneasy alliance that threatens the to unleash an unspeakable horror. Meanwhile, Catherine and team get a much needed stroke of fortune as Wasif\u2019s miraculous recovery is followed by a dramatic change in heart by their captors.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7297},{"seriesId":99,"episodeFileId":5005,"seasonNumber":1,"episodeNumber":7,"title":"Episode 7","airDate":"2018-03-01","airDateUtc":"2018-03-01T21:10:00Z","overview":"Aset finally reveals her end of the bargain, giving Br\u00fccke the chance to dream up a new and terrible plan for his return to Earth. Meanwhile, as Catherine bonds with the team\u2019s new friends, she discerns the terrible ramifications of what might happen if Br\u00fccke finds a way off this planet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7298},{"seriesId":99,"episodeFileId":5008,"seasonNumber":1,"episodeNumber":8,"title":"Episode 8","airDate":"2018-03-08","airDateUtc":"2018-03-08T21:00:00Z","overview":"Catherine, Beal, and Wasif are unfortunate witnesses as Aset and Br\u00fccke bring their deadly game of posturing to the Nosdevli tribe. In an effort to try and assert his authority, Br\u00fccke overplays his hand leaving him with few allies left.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7299},{"seriesId":99,"episodeFileId":5013,"seasonNumber":1,"episodeNumber":9,"title":"Episode 9","airDate":"2018-03-08","airDateUtc":"2018-03-08T21:10:00Z","overview":"United in a common goal, Catherine, her team, and the Abydonians put a plan in place to stop Br\u00fccke. But, as Professor Langford attempts to create a divide between Aset and the Nazis, a new complication arises.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7300},{"seriesId":99,"episodeFileId":5011,"seasonNumber":1,"episodeNumber":10,"title":"Episode 10","airDate":"2018-03-08","airDateUtc":"2018-03-08T21:20:00Z","overview":"A new presence brings danger to everyone on Abydos, including Aset. As chaos ensues, Catherine and Beal make a last ditch effort to bring everyone to safety.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7301}],"episodeFile":[{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Episode 5-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E05.Episode 5-WEBDL-1080p.mkv","size":194489103,"dateAdded":"2018-10-20T17:11:04.75826Z","sceneName":"Stargate Origins S01E05 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2364789,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"10:24","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5004},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Episode 7-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E07.Episode 7-WEBDL-1080p.mkv","size":214437249,"dateAdded":"2018-10-20T17:12:54.903609Z","sceneName":"Stargate Origins S01E07 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2380589,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"11:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5005},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Episode 4-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E04.Episode 4-WEBDL-1080p.mkv","size":176743769,"dateAdded":"2018-10-20T17:12:59.187637Z","sceneName":"Stargate Origins S01E04 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2022509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"10:57","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5006},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Episode 2-WEBDL-1080p Proper.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E02.Episode 2-WEBDL-1080p Proper.mkv","size":213206926,"dateAdded":"2018-10-20T17:13:08.715523Z","sceneName":"Stargate.Origins.S01E02.REPACK.1080p.WEB-DL.AAC2.0.H.264-AJP69.mkv[eztv]","releaseGroup":"AJP69","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3600000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"8:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5007},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Episode 8-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E08.Episode 8-WEBDL-1080p.mkv","size":215083201,"dateAdded":"2018-10-20T17:13:31.924716Z","sceneName":"Stargate Origins S01E08 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2359964,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"11:31","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5008},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Episode 1-WEBDL-1080p Proper.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E01.Episode 1-WEBDL-1080p Proper.mkv","size":264545506,"dateAdded":"2018-10-20T17:13:35.630073Z","sceneName":"Stargate.Origins.S01E01.REPACK.1080p.WEB-DL.AAC2.0.H.264-AJP69.mkv[eztv]","releaseGroup":"AJP69","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3600000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"10:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5009},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Episode 3-WEBDL-1080p Proper.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E03.Episode 3-WEBDL-1080p Proper.mkv","size":345272605,"dateAdded":"2018-10-20T17:13:39.890133Z","sceneName":"Stargate.Origins.S01E03.PROPER.REPACK.1080p.WEB-DL.AAC2.0.H.264-AJP69.mkv[eztv]","releaseGroup":"AJP69","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3600000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"12:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5010},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Episode 10-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E10.Episode 10-WEBDL-1080p.mkv","size":217980474,"dateAdded":"2018-10-20T17:18:05.172223Z","sceneName":"Stargate Origins S01E10 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1976153,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"13:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5011},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Episode 6-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E06.Episode 6-WEBDL-1080p.mkv","size":192574633,"dateAdded":"2018-10-20T17:18:10.942929Z","sceneName":"Stargate Origins S01E06 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2356032,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"10:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5012},{"seriesId":99,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Episode 9-WEBDL-1080p.mkv","path":"\/tv\/Stargate Origins\/Season 01\/S01E09.Episode 9-WEBDL-1080p.mkv","size":251677305,"dateAdded":"2018-10-20T17:24:05.460301Z","sceneName":"Stargate Origins S01E09 1080p WEBRip x265 AAC2.0 D0ct0rLew[UTR]","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2304848,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"13:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5013}],"queue":[]},"97":{"series":{"title":"Aldnoah.Zero","alternateTitles":[{"title":"Aldnoah Zero","sceneSeasonNumber":-1},{"title":"Aldnoah.Zero (2015)","sceneSeasonNumber":2}],"sortTitle":"aldnoah zero","status":"ended","ended":true,"overview":"In 1972, the Apollo 17 mission discovered a hypergate to Mars on the surface of the moon. Soon, a war breaks out between Earth and Mars, and Martian soldiers begin to descend from the sky, riding steel giants, intent on exterminating humanity.","previousAiring":"2015-03-28T15:00:00Z","network":"Tokyo MX","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/85\/banner.jpg?lastWrite=636750444655784870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/279827-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/85\/poster.jpg?lastWrite=637432652489431850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/279827-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/85\/fanart.jpg?lastWrite=637432652491311820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/279827-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-03-28T15:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":19988647169,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/Aldnoah.Zero","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":279827,"tvRageId":43316,"tvMazeId":1441,"firstAired":"2014-07-06T00:00:00Z","seriesType":"standard","cleanTitle":"aldnoahzero","imdbId":"tt3544556","titleSlug":"aldnoahzero","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-10-13T16:15:57.309506Z","ratings":{"votes":1168,"value":8.6},"statistics":{"seasonCount":1,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":25,"sizeOnDisk":19988647169,"percentOfEpisodes":100.0},"id":85},"episodes":[{"seriesId":85,"episodeFileId":16026,"seasonNumber":1,"episodeNumber":1,"title":"Princess of Vers","airDate":"2014-07-06","airDateUtc":"2014-07-05T15:00:00Z","overview":"The Apollo 17 mission found ancient technology known as the Hypergate on the moon that allowed humans to settle on and terraform Mars. More ancient \"Aldnoah\" technology found on Mars was claimed by the immigrants, who founded the Vers Empire, leading to a tense state of affairs with Earth that eventually culminated in open war breaking out in 1999. During a battle between the Earth Federation and the Vers Empire on the moon in 1999, the Hypergate went out of control and destroyed the Moon in an event that would come to be known as Heaven's Fall. 15 years after Heaven's Fall, the Princess of Vers, Asseylum Vers Allusia, goes to Earth on a peace mission despite being discouraged by Slaine. Back on Earth, terrorists attack the parade of the peace delegation, which is witnessed by Inaho and his friends. Although it initially seems that the limousine managed to avoid the terrorist attack, they manage to hit it with a second volley, and it is believed that the princess is killed. In retaliation, the Martian Vers Orbital Knights start an all out assault on Earth on their landing castles, and destroy New Orleans. Children mistake them for shooting stars and wish for world peace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6597},{"seriesId":85,"episodeFileId":16027,"seasonNumber":1,"episodeNumber":2,"title":"Beyond the Horizon","airDate":"2014-07-13","airDateUtc":"2014-07-12T15:00:00Z","overview":"The Vers invasion begins with Landing Castles crashing into New Orleans, Maputo, Beijing, and Tokyo. Martian Kataphrakts emerge and begin to devastate the Terran defenders. In Shinawara, while preparing to evacuate, Inaho finds Edelrittuo and an unknown girl and informs them they need to evacuate. The girl subdues him and asks him what the evacuation is for, prompting Inaho to inform them about the assassination of Princess Asseylum. The girl then reveals to Inaho that Asseylum became ill after making planetfall due to the change in gravity and it was actually a body double that died. Meanwhile, the terrorists who committed the assassination are revealed to be Vers loyalists, but are promptly killed by Baron Trillram of the Vers Empire to ensure the truth about the false flag operation is never revealed. 2nd Lt. Marito's squad engages Trillram, but are defeated by him. While chasing Inaho and his friends who are escaping in an APC, Okisuke is thrown off the vehicle and disintegrated by Trillram's shield. After entering a tunnel, Inaho receives orders from Lt. Marito to draw Trillram's Kataphrakt away to buy more time for an evacuation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6598},{"seriesId":85,"episodeFileId":16028,"seasonNumber":1,"episodeNumber":3,"title":"The Children's Echelon","airDate":"2014-07-20","airDateUtc":"2014-07-19T15:00:00Z","overview":"Inaho and his friends find themselves holed up in the school with orders to distract the enemy Kataphrakt while 2nd Lt. Marito builds a plan to evacuate his students and the civilians with them. Not satisfied to just be a distraction, Inaho comes up with a strategy to fight back against Trillram and his seemingly impervious mech. The unknown girl and Rayet, both feeling some personal responsibility for the situation, volunteer to drive the decoy truck, and the team begins their operation. Meanwhile, Marito, backed by by Colonel Magbaredge, rallies his crew and rescues the noncombatants from Inaho's group while Inaho, Calm, and Inko engage Trillram. When Trillram finally catches the decoy truck, the unknown girl reveals her true identity as Princess Asseylum, distracting him just long enough for Inaho to strike the finishing blow. While Inaho and his comrades regroup and celebrate, Slaine and Trillram prepare to escape. Trillram reveals that the assassination of the Princess was a Martian plot all along, and that he must rearm and eliminate her as quickly as possible. In response, a shocked and enraged Slaine pulls Trillram's gun and shoots him multiple times, killing him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6599},{"seriesId":85,"episodeFileId":16029,"seasonNumber":1,"episodeNumber":4,"title":"Point of No Return","airDate":"2014-07-27","airDateUtc":"2014-07-26T15:00:00Z","overview":"The Martians bombard the Earth with meteor attacks. Inhao and friends continue to travel with a Terran military squad when they are attacked by another Martian Kataphrakt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6600},{"seriesId":85,"episodeFileId":16030,"seasonNumber":1,"episodeNumber":5,"title":"Phantom of the Emperor","airDate":"2014-08-03","airDateUtc":"2014-08-02T15:00:00Z","overview":"The Emperor of Mars calls for a cease fire. Inaho and friends take the moment to rest aboard an Earth Navy Ship. Slaine tries to find a way to reveal the conspiracy of the Martian Forces true intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6601},{"seriesId":85,"episodeFileId":16031,"seasonNumber":1,"episodeNumber":6,"title":"Steel Step Suite","airDate":"2014-08-10","airDateUtc":"2014-08-09T15:00:00Z","overview":"The Emperor of Mars broadcasts an offcial declaration of war against Earth. Inaho and his friends are drafted into the military and Slaine is on the run.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6602},{"seriesId":85,"episodeFileId":16032,"seasonNumber":1,"episodeNumber":7,"title":"The Boys of Earth","airDate":"2014-08-17","airDateUtc":"2014-08-16T15:00:00Z","overview":"Lord Saazbaum decides to hold back on chasing Slaine, and instead tracks as he flees to Earth. Meanwhile Inaho and friends have arrived at Tanegashima, a mysterious location.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6603},{"seriesId":85,"episodeFileId":16033,"seasonNumber":1,"episodeNumber":8,"title":"Then and Now","airDate":"2014-08-24","airDateUtc":"2014-08-23T15:00:00Z","overview":"Princess Asseylum reveals herself to the Earth forces and Slaine remembers the time he spent with the Princess whilst being tortured by Count Cruhteo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6604},{"seriesId":85,"episodeFileId":16034,"seasonNumber":1,"episodeNumber":9,"title":"Darkness Visible","airDate":"2014-08-31","airDateUtc":"2014-08-30T15:00:00Z","overview":"Slaine wakes up in the Landing Castle of Count Saazbaum and learns the true intentions of the Count. Rayet and Lt. Marito must deal with with their individual memories of those they have lost to the Martians.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6605},{"seriesId":85,"episodeFileId":16035,"seasonNumber":1,"episodeNumber":10,"title":"Before the War","airDate":"2014-09-07","airDateUtc":"2014-09-06T15:00:00Z","overview":"Inaho successfully revives Asseylum in the shower room using CPR and a defibrillator, but Rayet grabs Magbaredge's pistol and holds everyone hostage. First Rayet blames Asseylum for being able to integrate into the United Earth forces while she and her father were outcasts, then she turns the gun on herself. However, Inaho disarms her, offering her another chance to fight the Martians. Magbaredge throws Rayet in the brig, then goes off to watch Marito's confession in Yagarai's lab. Meanwhile, Saazbaum reveals to Slaine that the Vers Empire convinced their people to attack the Earth to distract from their own problems of producing food and water on a relatively-dead Mars. Saazbaum and his wife, Viscountess Orleans, joined the attack on Earth at Tanegashima but Orleans was killed by Heaven's Fall as he escaped. Back on Earth, the Deucalion finally arrives at UE headquarters in Russia, and Asseylum tries to broadcast her message calling for a ceasefire. However, Saazbaum tells Slaine that the sattelite base on the Moon is staffed by his men so no Martian will hear it. Saazbaum then offers Slaine a choice: stay and fight with him, or escape to Earth and be treated as an enemy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6606},{"seriesId":85,"episodeFileId":16036,"seasonNumber":1,"episodeNumber":11,"title":"Wind, Snow and Stars","airDate":"2014-09-14","airDateUtc":"2014-09-13T15:00:00Z","overview":"Count Saazbaum's Landing Castle descends down to Earth and begins an assault on the United Earth HQ. The Deucalion is under direct attack from Martian forces and Princess Asseylum must make her way to the ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6607},{"seriesId":85,"episodeFileId":16037,"seasonNumber":1,"episodeNumber":12,"title":"Childhood's End","airDate":"2014-09-21","airDateUtc":"2014-09-20T15:00:00Z","overview":"The Deucalion has collided with Count Saazbaum's Landing Castle. Inaho, Yuki and Inko must now escort Princess Asseylum to the Aldnoah Drive. Meanwhile Slaine is rushing back to the Landing Castle and Count Saazbaum is still out there in the Dioscuria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6608},{"seriesId":85,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Aldnoah.Zero Extra Archives","airDate":"2015-01-04","airDateUtc":"2015-01-03T15:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6621},{"seriesId":85,"episodeFileId":4322,"seasonNumber":1,"episodeNumber":13,"title":"This Side of Paradise","airDate":"2015-01-11","airDateUtc":"2015-01-10T15:00:00Z","overview":"19 months after the events at Saazbaum's Landing Castle, a UFE raiding party finds themselves shot down by the Tharsis, piloted by Slaine himself. Slaine has become a Vers Knight with the power of Aldnoah under Saazbaum, and the Vers Empire has been slowly conquering North and South America under the new support of Princess Asseylum as they plan to expand their reach. On Earth, the crew of the Deucalion prepare to finish their R&R when they come under attack from a Martian Kataphract called the Frozen Elysium, capable of freezing all matter around it by a kilometer. The UFE Kataphracts find that they can't hit this new threat before getting frozen to death, when Inaho appears in his restored training mech, using airburst grenades to create a small path through the freezing field and destroy the enemy. The episode flashes back to the moments after Asseylum and Inaho were shot in the Landing Castle. Slaine decided to spare Saazbaum and escape with him and Asseylum in the Tharsis, while Inko and Yuki tried to get a wounded Inaho back to base where he needed surgery. Things looked grim with Asseylum absent and the Deucalion still unpowered, but Inaho somehow maintained enough consciousness to power the ship's Aldnoah Drive himself with powers he inadvertently got from Asseylum while administering CPR. In the present, the Princess Asseylum giving the war speeches to the Vers Empire turns out to be another Princess named Lemrina, using her guise under Saazbaum's supervision. As the night ends, Slaine goes to visit the real Asseylum, being kept alive in a medical tank.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6609},{"seriesId":85,"episodeFileId":4323,"seasonNumber":1,"episodeNumber":14,"title":"The Beautiful and Damned","airDate":"2015-01-18","airDateUtc":"2015-01-17T15:00:00Z","overview":"The UFE forces gather in Earth's orbit at Trident Base, built into an asteroid, as they prepare for a large-scale operation against another asteroid base called Marineros owned by Vers. Meanwhile, Saazbaum rallies his own forces for a quick strike on Trident as they travel to Marineros Base. Slaine finds that Lemrina shut down the Tharsis' Aldnoah Drive, and tries to reason with her to get it running again. Eventually, Slaine gets her to restart the Tharsis. As Lemrina visits her still-unconscious sister and schemes to replace her position, the Martian forces begin their assault while the UFE dig in on nearby asteroids. Inaho makes use of his new cybernetic eye to accurately shoot down several enemies, but Slaine somehow manages to see the trajectories of the shells being fired at him in the Tharsis, and dodges at the last second. The Martian forces soon pass by the base as Inaho and Slaine confirm that they fought each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6610},{"seriesId":85,"episodeFileId":4324,"seasonNumber":1,"episodeNumber":15,"title":"Toll for the Brave","airDate":"2015-01-25","airDateUtc":"2015-01-24T15:00:00Z","overview":"Both UFE and Vers forces prepare for battle on their respective asteroid bases. Magbaredge confirms with Inaho that it wasn't Asseylum's blood alone that gave him Aldnoah activation, but something that was transferred when he gave her CPR. Meanwhile, other Counts of the Vers Empire show open contempt at Slaine for being a Terran, but before they harm him, Saazbaum abruptly announces that he is adopting Slaine as his son and legal heir. Finally, Trident and Marineros bases are close enough that the two sides begin their attacks. Inaho shoots down several enemy spacecraft and eventually runs into Slaine again, confirming that he is somehow able to accurately predict the near future like himself. Saazbaum appears in his refurbished Dioskuria II, and mentions that his shield's weak spot is different from last time as he chases down Inaho. With Inaho's help, Inko manages to disable the Disokuria II's shield just as a micrometeoroid shower hits it, disabling the Kataphract. Slaine then tells Saazbaum that the shower was actually his own work, using Tharsis' systems to accurately pinpoint where Saazbaum would be two minutes in the future so he could destroy him as revenge for shooting Asseylum. After a second micrometeorite shower finishes off Sauzbaum, Slaine becomes a Count of the Vers Empire while Inaho confirms from Slaine's speech that Asseylum is alive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6611},{"seriesId":85,"episodeFileId":4325,"seasonNumber":1,"episodeNumber":16,"title":"Soldiers' Pay","airDate":"2015-02-01","airDateUtc":"2015-01-31T15:00:00Z","overview":"As Slaine ascends the ranks, he puts a plan into motion to deflect scrutiny. Meanwhile, Yuki prepares for a possible reunion with Inaho as the Terrans face another Kataphrakt threat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6612},{"seriesId":85,"episodeFileId":4326,"seasonNumber":1,"episodeNumber":17,"title":"The Turning Wheel","airDate":"2015-02-08","airDateUtc":"2015-02-07T15:00:00Z","overview":"The Earth forces now have Count Mazuurek as a captive. With such a high value prisoner, what will this mean for the relations between the Earth and Mars? And with the Deucalion back on Earth, what is the next move?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6613},{"seriesId":85,"episodeFileId":4327,"seasonNumber":1,"episodeNumber":18,"title":"The Rose and the Ring","airDate":"2015-02-15","airDateUtc":"2015-02-14T15:00:00Z","overview":"On Earth, the UFE launches an attack on a Martian Knight whose Kataphract can fire powerful lasers, preventing UFE forces from being able to get close. While UFE forces distract the Vers Kataphract, Inaho begins directing artillery fire from the Deucalion main cannons. Because Deucalion uses traditional artillery shells, it can arc its shells over the curvature of the Earth, protecting it from reprisal attacks since lasers can only travel in a straight line. Eventually, the Deucalion manages to score a direct hit on the Vers Kataphract and destroy it. Inko then confronts Inaho about him freeing Mazuurek, and Inaho acknowledges what he did, and that he didn't want Inko to get involved. At the Moon base, Slaine and Count Marylcian begin their duel. Marylcian's Herschel uses numerous unmanned drones to attack Slaine, straining the Tharsis' abilities to the limit. However, Slaine manages to outsmart Marylcian by luring him into a tunnel, allowing him to destroy all of the Herschel's drones. The now vulnerable Marylcian is then killed by Slaine, who seizes all of Marylcian's assets. Lemrina, still posing as Asseylum, makes an announcement to the rest of the Martian Knights, declaring that they form their own kingdom independent from Vers, and that she and Slaine will be married. Afterwards, she visits the still comatose Asseylum and considers shutting down her life support, but decides to spare her life. However, after Lemrina leaves, Asseylum begins to regain consciousness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6614},{"seriesId":85,"episodeFileId":4328,"seasonNumber":1,"episodeNumber":19,"title":"Here to There","airDate":"2015-02-22","airDateUtc":"2015-02-21T15:00:00Z","overview":"Princess Asseylum's marriage to Slaine is officially announced. Meanwhile, Slaine organizes an unprecedented attack on Earth after rallying as many Counts to his cause as possible.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6615},{"seriesId":85,"episodeFileId":4329,"seasonNumber":1,"episodeNumber":20,"title":"The Light of Day","airDate":"2015-03-01","airDateUtc":"2015-02-28T15:00:00Z","overview":"The Earth Forces are on the retreat after the Vers three-pronged attack. Meanwhile the relationship between Slaine and Lemrina grows in tense.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6616},{"seriesId":85,"episodeFileId":4330,"seasonNumber":1,"episodeNumber":21,"title":"The Fortune's Fool","airDate":"2015-03-08","airDateUtc":"2015-03-07T15:00:00Z","overview":"At a loss on how to deal with a multiple Kataphraktoi attack, the Terran forces rest their hopes on Inaho's abilities. However, they may be relying on him too much. Lemrina, meanwhile, makes a move after figuring out her sister has awoken.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6617},{"seriesId":85,"episodeFileId":4331,"seasonNumber":1,"episodeNumber":22,"title":"Out of the Past","airDate":"2015-03-15","airDateUtc":"2015-03-14T15:00:00Z","overview":"The Terran forces prepare a two-pronged attack on the Martians. Inaho continues to feel the negative effects of relying on his cybernetic eye. Klancain meets with Slaine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6618},{"seriesId":85,"episodeFileId":4332,"seasonNumber":1,"episodeNumber":23,"title":"The Unvanquished","airDate":"2015-03-22","airDateUtc":"2015-03-21T15:00:00Z","overview":"Both the Terrans and the Martians prepare for a massive final battle. Meanwhile, with her allies dwindling, Princess Asseylum makes a valiant last-ditch effort to end the war once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6619},{"seriesId":85,"episodeFileId":4333,"seasonNumber":1,"episodeNumber":24,"title":"Inherit the Stars","airDate":"2015-03-29","airDateUtc":"2015-03-28T15:00:00Z","overview":"Empress Asseylum declares a cease-fire and, with Slaine's resolve seemingly shaken, a rift surfaces between the Orbital Knights. Inaho and Slaine finally settle their differences on the battlefield.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6620}],"episodeFile":[{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E13.This Side of Paradise-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E13.This Side of Paradise-HDTV-1080p.mkv","size":1297035017,"dateAdded":"2018-10-14T15:05:12.09434Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1626832,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5282499,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4322},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Beautiful and Damned-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E14.The Beautiful and Damned-HDTV-1080p.mkv","size":1362456888,"dateAdded":"2018-10-14T15:05:12.133152Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1645862,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6026553,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4323},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Toll for the Brave-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E15.Toll for the Brave-HDTV-1080p.mkv","size":1415682931,"dateAdded":"2018-10-14T15:05:12.175106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1663928,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6308817,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4324},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Soldiers' Pay-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E16.Soldiers' Pay-HDTV-1080p.mkv","size":1274302333,"dateAdded":"2018-10-14T15:05:12.223429Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1646412,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5529179,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4325},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E17.The Turning Wheel-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E17.The Turning Wheel-HDTV-1080p.mkv","size":1046249148,"dateAdded":"2018-10-14T15:05:12.254056Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1593549,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4297446,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4326},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Rose and the Ring-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E18.The Rose and the Ring-HDTV-1080p.mkv","size":1402415049,"dateAdded":"2018-10-14T15:05:12.285185Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1667631,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6229693,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4327},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Here to There-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E19.Here to There-HDTV-1080p.mkv","size":1181620330,"dateAdded":"2018-10-14T15:05:12.315825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1580431,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5072830,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4328},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Light of Day-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E20.The Light of Day-HDTV-1080p.mkv","size":1163070161,"dateAdded":"2018-10-14T15:05:12.405529Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1604695,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4944055,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4329},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Fortune's Fool-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E21.The Fortune's Fool-HDTV-1080p.mkv","size":1253780083,"dateAdded":"2018-10-14T15:05:12.477299Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1646852,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5413282,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4330},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Out of the Past-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E22.Out of the Past-HDTV-1080p.mkv","size":1275935660,"dateAdded":"2018-10-14T15:05:12.53179Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1627497,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5557278,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4331},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E23.The Unvanquished-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E23.The Unvanquished-HDTV-1080p.mkv","size":1240977465,"dateAdded":"2018-10-14T15:05:12.573512Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1598944,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4665055,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4332},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Inherit the Stars-HDTV-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E24.Inherit the Stars-HDTV-1080p.mkv","size":1476714417,"dateAdded":"2018-10-14T15:05:12.610037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1640615,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6675592,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4333},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Princess of Vers-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E01.Princess of Vers-Bluray-1080p.mkv","size":372518862,"dateAdded":"2020-11-03T15:26:07.871123Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":278875,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1702665,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16026},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Beyond the Horizon-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E02.Beyond the Horizon-Bluray-1080p.mkv","size":409914836,"dateAdded":"2020-11-03T15:28:01.466246Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2020292,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16027},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Children's Echelon-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E03.The Children's Echelon-Bluray-1080p.mkv","size":458718165,"dateAdded":"2020-11-03T15:29:54.326594Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2297349,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:39","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16028},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Point of No Return-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E04.Point of No Return-Bluray-1080p.mkv","size":363363527,"dateAdded":"2020-11-03T15:31:53.66163Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":281380,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1761555,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16029},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Phantom of the Emperor-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E05.Phantom of the Emperor-Bluray-1080p.mkv","size":289435611,"dateAdded":"2020-11-03T15:33:57.379666Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":273775,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1352717,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16030},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Steel Step Suite-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E06.Steel Step Suite-Bluray-1080p.mkv","size":427879736,"dateAdded":"2020-11-03T15:35:47.760692Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":282128,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2124271,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16031},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Boys of Earth-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E07.The Boys of Earth-Bluray-1080p.mkv","size":340224948,"dateAdded":"2020-11-03T15:37:47.077929Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":272056,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1640473,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16032},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Then and Now-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E08.Then and Now-Bluray-1080p.mkv","size":333776041,"dateAdded":"2020-11-03T15:39:40.848531Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1610928,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16033},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Darkness Visible-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E09.Darkness Visible-Bluray-1080p.mkv","size":363112496,"dateAdded":"2020-11-03T15:41:36.751372Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":274368,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1767177,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16034},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Before the War-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E10.Before the War-Bluray-1080p.mkv","size":392330457,"dateAdded":"2020-11-03T15:43:29.534549Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":274626,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1931493,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16035},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Wind, Snow and Stars-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E11.Wind, Snow and Stars-Bluray-1080p.mkv","size":350760767,"dateAdded":"2020-11-03T15:45:23.874331Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":271794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1495145,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:24","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16036},{"seriesId":85,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Childhood's End-Bluray-1080p.mkv","path":"\/tv\/Aldnoah.Zero\/Season 01\/S01E12.Childhood's End-Bluray-1080p.mkv","size":496372241,"dateAdded":"2020-11-03T15:47:16.921692Z","releaseGroup":"Prof","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":276026,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2515449,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16037}],"queue":[]},"98":{"series":{"title":"The Man in the High Castle","alternateTitles":[],"sortTitle":"man in high castle","status":"ended","ended":true,"overview":"A glimpse into an alternate history of North America: what life after WWII might have been like if the Nazis had won the war. The Man in the High Castle explores daily life in 1962, fourteen years after the end of a longer Second World War (1939\u20131948 in this history). The victorious Axis Powers - Imperial Japan, Fascist Italy, and Nazi Germany - are conducting intrigues against each other in North America, specifically in the former U.S., which surrendered to them once they had conquered Eurasia and destroyed the populaces of Africa.","previousAiring":"2019-11-15T05:00:00Z","network":"Amazon","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/97\/banner.jpg?lastWrite=637100123905273500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/295829-g8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/97\/poster.jpg?lastWrite=637100123907833450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/295829-7.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/97\/fanart.jpg?lastWrite=637100123903113540","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/295829-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":44,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-11-20T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":27550030040,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-12-16T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":51722939570,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-05T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":24143362539,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-11-15T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":61343660531,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/The Man in the High Castle","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":54,"tvdbId":295829,"tvRageId":34577,"tvMazeId":1804,"firstAired":"2015-01-15T00:00:00Z","seriesType":"standard","cleanTitle":"themaninhighcastle","imdbId":"tt1740299","titleSlug":"the-man-in-the-high-castle","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Drama","Thriller"],"tags":[],"added":"2018-10-14T16:08:48.948919Z","ratings":{"votes":1424,"value":8.1},"statistics":{"seasonCount":4,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":84,"sizeOnDisk":164759992680,"percentOfEpisodes":100.0},"id":97},"episodes":[{"seriesId":97,"episodeFileId":4452,"seasonNumber":1,"episodeNumber":1,"title":"The New World","airDate":"2015-01-15","airDateUtc":"2015-01-15T05:00:00Z","overview":"Joe Blake, a resistance fighter, leaves German New York with cargo for neutral Colorado. In Japanese San Francisco, Juliana Crane receives footage of the Allies winning the war and a bus ticket to Colorado from her sister. There, she meets Joe. Joe reveals a dark secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":6941},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"What If?","airDate":"2015-09-25","airDateUtc":"2015-09-25T04:00:00Z","overview":"What If America lost World War 2? Catch a glimpse of America in the Amazon Original Series The Man in the High Castle, premiering November 20th.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6928},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"What If? - Behind the Scenes","airDate":"2015-10-16","airDateUtc":"2015-10-16T04:00:00Z","overview":"Go inside the making of one of the most ambitious shows ever in the Amazon Original Series, 'The Man in the High Castle'. See how the cast and crew create a world that shows us what America would look like if it lost World War II.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6929},{"seriesId":97,"episodeFileId":4453,"seasonNumber":1,"episodeNumber":2,"title":"Sunrise","airDate":"2015-10-23","airDateUtc":"2015-10-23T04:00:00Z","overview":"Frank's fate hangs in the balance as he is held captive by the Kempeitai. Juliana makes contact with a mysterious man who gives her a clue about the films. Obergruppenf\u00fchrer Smith is surprised by an unfortunate turn of events.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":6942},{"seriesId":97,"episodeFileId":4454,"seasonNumber":1,"episodeNumber":3,"title":"The Illustrated Woman","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"Joe and Juliana must act quickly as a vicious bounty hunter known as The Marshal arrives in Canon City. Tagomi makes plans with Wegener to pass valuable secrets from the Reich. Frank plots his revenge against the Japanese.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":6943},{"seriesId":97,"episodeFileId":4455,"seasonNumber":1,"episodeNumber":4,"title":"Revelations","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"Joe is increasingly torn between duty and his growing feelings for Juliana. While Ed tries to stop Frank from making an irrevocable decision, Smith's investigation is interrupted when he has trouble with his witness. Tagomi's plan goes awry as events take a dramatic turn at the Crown Prince's speech.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":6944},{"seriesId":97,"episodeFileId":4456,"seasonNumber":1,"episodeNumber":5,"title":"The New Normal","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"Juliana returns home, only to discover new clues that lead her closer to unraveling the mystery behind the films. Joe faces a tough debriefing upon his return home. Kido begins his investigation into the events surrounding the Crown Prince's speech. Tagomi and Wegener make a last-ditch attempt to complete their mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":6945},{"seriesId":97,"episodeFileId":4457,"seasonNumber":1,"episodeNumber":6,"title":"Three Monkeys","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"Joe celebrates VA day at Smith's house. Juliana accepts a job working for Tagomi as she continues her search for answers. Smith invites an old friend to join the celebrations, with surprising results.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":6946},{"seriesId":97,"episodeFileId":4458,"seasonNumber":1,"episodeNumber":7,"title":"Truth","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"Juliana makes a startling discovery about her sister's death. Frank reflects on recent events and makes an important decision about his future. Tagomi gains greater insight into Juliana's past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":6947},{"seriesId":97,"episodeFileId":4459,"seasonNumber":1,"episodeNumber":8,"title":"End of the World","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"Juliana and Frank make plans to escape the Pacific States, only to be dragged back into danger by Joe as he tries to retrieve a new film. Smith's loyalty is put to the ultimate test when confronted with a startling family discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":6948},{"seriesId":97,"episodeFileId":4460,"seasonNumber":1,"episodeNumber":9,"title":"Kindness","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"With time running out, a desperate Frank is forced to put his life on the line to help Joe. The pieces finally fall into place for Smith as he uncovers who was behind the assassination attempt. Tagomi is devastated when he's confronted with the consequences of his scheming. Kido's investigation takes a dramatic turn when he makes an important discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":6949},{"seriesId":97,"episodeFileId":4461,"seasonNumber":1,"episodeNumber":10,"title":"A Way Out","airDate":"2015-11-20","airDateUtc":"2015-11-20T05:00:00Z","overview":"As revelations abound, Juliana is forced to make the hardest decision of her life. Wegener returns to Germany to carry out his mission. Smith risks becoming the prey as he goes hunting with his assassin. Kido desperately tries to close his investigation before his time runs out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":6950},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Inside the Castle: Ep. 1 - The Tigers Cave","airDate":"2016-12-15","airDateUtc":"2016-12-15T05:00:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival discusses casting of the elusive, titular Man","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6930},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Inside the Castle: Ep. 2 - The Road Less Traveled","airDate":"2016-12-15","airDateUtc":"2016-12-15T05:54:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival delves into the characters' search for the truth","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6931},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Inside the Castle: Ep. 3 - Travelers","airDate":"2016-12-15","airDateUtc":"2016-12-15T06:48:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival discusses the theme of a new start as the characters embark on new journeys.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6932},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Inside the Castle: Ep. 4 - Escalation","airDate":"2016-12-15","airDateUtc":"2016-12-15T07:42:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival untangles the web of secrets and lies woven throughout.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6933},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Inside the Castle: Ep. 5 - Duck and Cover","airDate":"2016-12-15","airDateUtc":"2016-12-15T08:36:00Z","overview":"Executive Producer Dan Percival discusses this episode as a major turning point of this season and gives historical context to Joe's story.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6934},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Inside the Castle: Ep. 6 - Kintsugi","airDate":"2016-12-15","airDateUtc":"2016-12-15T09:30:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival discusses the new wheels that have been put in motion.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6935},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Inside the Castle: Ep. 7 - Land O' Smiles","airDate":"2016-12-15","airDateUtc":"2016-12-15T10:24:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival explores the importance of family.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6936},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Inside the Castle: Ep. 8 - Loose Lips","airDate":"2016-12-15","airDateUtc":"2016-12-15T11:18:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival offers us a clue to decoding the show's time travel.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6937},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Inside the Castle: Ep. 9 - Detonation","airDate":"2016-12-15","airDateUtc":"2016-12-15T12:12:00Z","overview":"In this episode's behind-the-scenes look, Executive Producer Dan Percival brings all the major storylines to a head.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6938},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Inside the Castle: Ep. 10 - Fallout","airDate":"2016-12-15","airDateUtc":"2016-12-15T13:06:00Z","overview":"In the finale's behind-the-scenes look, Executive Producer Dan Percival discusses the thrilling climax where the characters' destinies are revealed to be intricately connected.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6939},{"seriesId":97,"episodeFileId":4472,"seasonNumber":2,"episodeNumber":1,"title":"The Tiger's Cave","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Juliana is captured by the Resistance and faces the consequences for her betrayal. She gets long-sought answers about the past but they raise even more disturbing questions about the future - and it's not just her own under threat. Joe makes it to New York but the journey makes him question everything he's trusted. Frank tries to get Ed out of an impossible situation - but at what cost to both?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":6951},{"seriesId":97,"episodeFileId":4473,"seasonNumber":2,"episodeNumber":2,"title":"The Road Less Traveled","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"After narrowly escaping death, Juliana discovers a family secret that could have global implications - and leads her to make a life-changing decision. Kido, Tagomi, and Frank all take dangerous risks, while back in New York, Joe settles into a normal routine, only to have it turned upside down when Smith gives him the opportunity he's waited for his whole life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":6952},{"seriesId":97,"episodeFileId":4474,"seasonNumber":2,"episodeNumber":3,"title":"Travelers","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Fighting to acclimatize to the strange new world of Nazi New York, Juliana seeks out the one person she thinks she can trust: Joe Blake. Angry and defiant after Juliana's departure, Frank is drawn to the Resistance movement and its charismatic leader. Joe confronts his own identity when he finally meets his father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":6953},{"seriesId":97,"episodeFileId":4475,"seasonNumber":2,"episodeNumber":4,"title":"Escalation","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Juliana discovers she's far from safe from the Resistance in the Reich. Smith confronts the reality of the lengths he's willing to go to in order to protect his son. And another father - Joe's - tries to persuade him to give Berlin a chance. Frank also has a decision to make: how far is he prepared to go to help the Resistance cause?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":6954},{"seriesId":97,"episodeFileId":4480,"seasonNumber":2,"episodeNumber":5,"title":"Duck and Cover","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Joe learns a truth about his past that makes him question everything. The rift between Frank and Ed widens as Frank is drawn further into the Resistance. In order to assure her safety, Juliana must betray someone close to her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":6955},{"seriesId":97,"episodeFileId":4485,"seasonNumber":2,"episodeNumber":6,"title":"Kintsugi","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Nicole introduces Joe to an unexpected side of Berlin, that leads him down a new path. On her new mission, Juliana inserts herself into the Smith's inner circle. Tagomi is finally reunited with his family, only to be faced with the prospect of losing them again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":6956},{"seriesId":97,"episodeFileId":4486,"seasonNumber":2,"episodeNumber":7,"title":"Land O' Smiles","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"As Juliana worms closer to the Smiths, she discovers a dangerous secret. Childan and Ed get themselves in a sticky situation as they try to settle the Yakuza debt. On a Resistance mission, Frank uncovers a Japanese plan that could realize his worst nightmare.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":6957},{"seriesId":97,"episodeFileId":4487,"seasonNumber":2,"episodeNumber":8,"title":"Loose Lips","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Juliana gathers intel for the Resistance that could trigger WWIII. When the political situation in Berlin becomes unsafe, Joe must make a choice that could put his life in danger. Frank learns the truth about Juliana, leading him to question his newfound Resistance family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":6958},{"seriesId":97,"episodeFileId":4732,"seasonNumber":2,"episodeNumber":9,"title":"Detonation","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Tagomi faces a dilemma: to stay with his family or return to the world he left behind. Desperate to escape the Reich, Juliana strikes a final, dangerous deal with the Resistance. When Ed reveals a secret that puts the Resistance plan in jeopardy, Frank must decide how to deal with his best friend's betrayal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":6959},{"seriesId":97,"episodeFileId":4733,"seasonNumber":2,"episodeNumber":10,"title":"Fallout","airDate":"2016-12-16","airDateUtc":"2016-12-16T05:00:00Z","overview":"Tagomi enlists Kido in a deception to save Japan from destruction. As Smith's life crumbles around him, he makes a dangerously bold play to hold onto his power. Joe tries to do the right thing but suffers the ultimate betrayal. Juliana must make a heart-wrenching choice that will shape the future of the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":6960},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The Man In The High Castle - Season 1 and 2 Recap","airDate":"2018-07-21","airDateUtc":"2018-07-21T04:00:00Z","overview":"The lines have been drawn but they can move in an instant. Catch up on Seasons 1 & 2 of The Man in the High Castle","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6940},{"seriesId":97,"episodeFileId":4462,"seasonNumber":3,"episodeNumber":1,"title":"Now More Than Ever, We Care About You","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana Crain makes a new acquaintance in the Neutral Zone - an Irish fixer named Wyatt - and soon finds herself on the run and seeking Tagomi's aid. The Japanese test an atomic bomb. Joe Blake is sent on a diplomatic mission to San Francisco. Kido hires a new sergeant. Nicole Dormer arrives in New York to head a new propaganda campaign. The Smiths struggle with the aftermath of Thomas' death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":6961},{"seriesId":97,"episodeFileId":4463,"seasonNumber":3,"episodeNumber":2,"title":"Imagine Manchuria","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana recognizes that her and Tagomi's fates are intertwined. Tagomi and Admiral Inokuchi realize the Reich is imposing a covert oil embargo on the Pacific States. Reichsmarschall Rockwell and J. Edgar Hoover plot against John Smith. Helen starts therapy to cope with her grief over Thomas, and takes drastic action to protect her family. Kido and Tagomi clash over Juliana.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":6962},{"seriesId":97,"episodeFileId":4464,"seasonNumber":3,"episodeNumber":3,"title":"Sens\u014d K\u014di","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana and Tagomi pursue the mysteries of the films and Juliana reunites with an old friend. Childan is anxious to return to San Francisco now that the reprisals have stopped, but a potential new romance makes Ed reluctant to leave. Kido receives intelligence that sets him on a new path. Smith finds himself celebrated by Nazi high society at a screening of Nicole's new film about Thomas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":6963},{"seriesId":97,"episodeFileId":4465,"seasonNumber":3,"episodeNumber":4,"title":"Sabra","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"A new community fights for survival in the Neutral Zone. Juliana and Joe get reacquainted, while Joe continues his undercover work for Himmler. Wyatt drops in on Juliana in San Francisco. Smith's past rises up to haunt him. Ed and Childan face a challenge on their way home to San Francisco. As tensions between the Reich and the Empire rise, Tagomi finds his life may be in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":6964},{"seriesId":97,"episodeFileId":4466,"seasonNumber":3,"episodeNumber":5,"title":"The New Colossus","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"As the Reichsf\u00fchrer continues to provoke the Japanese Pacific States, Juliana barely escapes a deadly situation and discovers a trove of Nazi secrets. John Smith tangles with his political adversary. The Nazis prepare for \"Year Zero.\" Joe and Juliana come to a turning point in their relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":6965},{"seriesId":97,"episodeFileId":4467,"seasonNumber":3,"episodeNumber":6,"title":"History Ends","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"With Wyatt's aid, Juliana flees San Francisco with the stolen Nazi secrets. Childan can finally return home; Ed decides to stay in the Neutral Zone. Tagomi makes revelations to Kido that change Kido's perspective. John Smith's career takes a turn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":6966},{"seriesId":97,"episodeFileId":4468,"seasonNumber":3,"episodeNumber":7,"title":"Excess Animus","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana embarks on a mission to stop the Nazis - a mission that reunites her with old friends. Thelma and Nicole grow closer, despite the risks. Smith learns more about the Nazis' efforts into alt-world travel. Kido demands Tagomi come clean about the films and his ability to travel. Kido coaxes crucial intelligence from Childan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":6967},{"seriesId":97,"episodeFileId":4469,"seasonNumber":3,"episodeNumber":8,"title":"Kasumi (Through the Mists)","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana realizes time might be running out, but recruiting supporters continues to prove challenging. Tagomi finds himself in a dangerous life-or-death struggle. In therapy, Helen Smith crosses a line. Kido pursues his target in the Neutral Zone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":6968},{"seriesId":97,"episodeFileId":4470,"seasonNumber":3,"episodeNumber":9,"title":"Baku","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana and Wyatt's mission takes them farther east and dangerously close to the center of a top-secret Nazi project. Trying to improve relations between their sides, Tagomi reaches out to Smith. Smith makes a crucial discovery. Kido finds closure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":6969},{"seriesId":97,"episodeFileId":4471,"seasonNumber":3,"episodeNumber":10,"title":"Jahr Null","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Juliana's attempt to stop the Nazis lands her in a precarious position. Himmler and John Smith lead a lavish celebration of Year Zero. Amid a series of successes, Smith faces a setback. Kido returns to San Francisco with a prize, performs an act of kindness for a friend. Tagomi makes a difficult decision. Ed returns to San Francisco and reconnects with Childan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":6970},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Episode 301 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:00:00Z","overview":"Go inside the #HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17050},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Character Study: Juliana Crain","airDate":"2018-10-05","airDateUtc":"2018-10-05T04:54:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17051},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Episode 302 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T05:48:00Z","overview":"Go inside the #HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17052},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Character Study: Obergruppenf\u00fchrer John Smith","airDate":"2018-10-05","airDateUtc":"2018-10-05T06:42:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17053},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Episode 303 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T07:36:00Z","overview":"Go inside the #HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17054},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Character Study: Inspector Kido","airDate":"2018-10-05","airDateUtc":"2018-10-05T08:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17055},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Episode 304 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T09:24:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17056},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Character Study: Helen Smith","airDate":"2018-10-05","airDateUtc":"2018-10-05T10:18:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17057},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Episode 305 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T11:12:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17058},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Character Study: Wyatt Price","airDate":"2018-10-05","airDateUtc":"2018-10-05T12:06:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17059},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Episode 306 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T13:00:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17060},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Episode 307 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T13:54:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17061},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Episode 308 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T14:48:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17062},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Episode 310 Roundtable","airDate":"2018-10-05","airDateUtc":"2018-10-05T15:42:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17064},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Life In The High Castle - Visuals","airDate":"2018-10-31","airDateUtc":"2018-10-31T04:00:00Z","overview":"Every detail counts.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17065},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Life In The High Castle - Juliana Crain","airDate":"2018-10-31","airDateUtc":"2018-10-31T04:54:00Z","overview":"Fight for a cause. #ResistanceRises","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17066},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Life In The High Castle - Nobusuke Tagomi","airDate":"2018-11-01","airDateUtc":"2018-11-01T04:00:00Z","overview":"The best is yet to come. #ResistanceRises","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17067},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Life In The High Castle - John Smith","airDate":"2018-11-02","airDateUtc":"2018-11-02T04:00:00Z","overview":"Loyalty comes with a price. #ResistanceRises","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17068},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Behind the Scenes: Pride (In The Name of Love)","airDate":"2018-11-02","airDateUtc":"2018-11-02T04:54:00Z","overview":"Take a closer look at Lxandra reimagined version of U2\u2019s \u201cPride (In The Name of Love)\u201d #ResistanceRises\r\n\r\nFor the first time ever, U2\u2019s Pride (In The Name of Love) has been reimagined by for #HighCastle.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17069},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Fight for the World You Want","airDate":"2019-03-22","airDateUtc":"2019-03-22T04:00:00Z","overview":"Join us in fighting for the world we want.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17070},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"The Man in the High Castle - Season 4 Official Trailer","airDate":"2019-06-26","airDateUtc":"2019-06-26T04:00:00Z","overview":"\"There are very few things in this world, worth dying for\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15769},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Episode 309 Roundtable","airDate":"2019-10-05","airDateUtc":"2019-10-05T04:00:00Z","overview":"Go inside the HighCastle episodes with X-Ray, and watch the cast discuss Season 3 in an exclusive roundtable series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17063},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Man in the High Castle - Season 3 Official Recap","airDate":"2019-10-29","airDateUtc":"2019-10-29T04:00:00Z","overview":"Recap of last season.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15768},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Tagomi's Best Reactions","airDate":"2019-11-13","airDateUtc":"2019-11-13T05:00:00Z","overview":"Nothing is a game for Nobusuke Tagomi.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17071},{"seriesId":97,"episodeFileId":13670,"seasonNumber":4,"episodeNumber":1,"title":"Hexagram 64","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"Juliana Crain finds herself in a new world. In the wake of an attack on Trade Minister Tagomi, Chief Inspector Kido begins a crackdown against the suspected culprits: the Black Communist Rebellion. John Smith leads a military incursion into the Neutral Zone to capture Wyatt Price and his rebel army. Helen Smith\u2019s new independence is tested as John comes to claim his daughters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":11750},{"seriesId":97,"episodeFileId":13671,"seasonNumber":4,"episodeNumber":2,"title":"Every Door Out...","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"John Smith receives key intelligence from his officers at the Die Nebenwelt complex, while back at home he struggles with the changing dynamics of his family. Bell Mallory and the BCR join forces with Wyatt Price's rebels. Kido tries to bond with his estranged son. Childan makes a connection with his Japanese assistant. Juliana discovers an enemy in one world can be a friend in another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":15545},{"seriesId":97,"episodeFileId":13672,"seasonNumber":4,"episodeNumber":3,"title":"The Box","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"Wyatt\u2019s rebels and the BCR join forces to attack Tokyo\u2019s elite at Robert Childan\u2019s auction. Helen comes back to the Reich to protect her children. Kido receives an unexpected call from the Yakuza. Smith sends an assassin to kill Juliana.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":15546},{"seriesId":97,"episodeFileId":13673,"seasonNumber":4,"episodeNumber":4,"title":"Happy Trails","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"John and Helen host Himmler and his wife for dinner, along with a new and dangerous threat from Berlin. Juliana returns to the High Castle world, arriving in the ruins of what is now known as 'The District of Contamination'. Kido is forced to turn against the Crown Princess by his general. A captive Hawthorne Abendsen shares some new tales from the High Castle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":15547},{"seriesId":97,"episodeFileId":13674,"seasonNumber":4,"episodeNumber":5,"title":"Mauvaise Foi","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"John Smith is forced to confront the choices he\u2019s made. The Empire attempts secret peace talks with the BCR. Kido arrests a traitor, threatening to divide the Japanese against themselves. Helen is assigned a new security minder. Juliana reunites with Wyatt to plan the fall of the American Reich.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":15548},{"seriesId":97,"episodeFileId":13675,"seasonNumber":4,"episodeNumber":6,"title":"All Serious Daring","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"John Smith discovers that one can get lost on the path not taken. Juliana attempts to decode hidden messages from Abendsen. Amid voices of dissent, Bell devises a new strategy for the BCR. Kido must decide where his true loyalties lie, even if it costs him the Empire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":15549},{"seriesId":97,"episodeFileId":13676,"seasonNumber":4,"episodeNumber":7,"title":"No Masters But Ourselves","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"When the BCR launches a massive assault across the JPS, Kido finds the fate of the Empire in his hands. Childan becomes a captive of the Kempeitai. Helen resolves to support her husband by re-entering public life. Juliana and Wyatt arrive in New York to plan a daring new strategy against Smith.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":15550},{"seriesId":97,"episodeFileId":13677,"seasonNumber":4,"episodeNumber":8,"title":"Hitler Has Only Got One Ball","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"Juliana\u2019s instincts about Helen are put to the ultimate test. As San Francisco evacuates, Kido goes in search of his son, only to find himself a captive. A letter arrives, forever changing Childan and Yukiko\u2019s lives. The BCR receives an unexpected offer of help from the Yakuza. Abendsen condemns Smith with his final prediction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":15551},{"seriesId":97,"episodeFileId":13678,"seasonNumber":4,"episodeNumber":9,"title":"For Want of a Nail","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"Smith and Helen\u2019s true loyalties are placed on trial by an old nemesis. The BCR struggles to maintain order across the JPS. Kido is forced to confront his atrocities. Bands of roving vigilantes threaten Childan and Yukiko.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":15552},{"seriesId":97,"episodeFileId":13679,"seasonNumber":4,"episodeNumber":10,"title":"Fire from the Gods","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"On the brink of an inevitable Nazi invasion, the BCR brace for impact as Kido races against the clock to find his son. Childan offers everything he has to make his way back to Yukiko. Helen is forced to choose whether or not to betray her husband, as she and Smith travel by high-speed train to the Portal\u2014with Juliana and Wyatt lying in wait.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":15553},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"A conversation with Drew Boughton","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17163},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Costume Department Tour","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:54:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17164},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"The Art of High Castle","airDate":"2019-11-15","airDateUtc":"2019-11-15T06:48:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17165},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Costuming High Castle","airDate":"2019-11-15","airDateUtc":"2019-11-15T07:42:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17166},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"The Cast and Crew Look Back","airDate":"2019-11-15","airDateUtc":"2019-11-15T08:36:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17167},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Page to Screen: The Bullet Train Part 1","airDate":"2019-11-15","airDateUtc":"2019-11-15T09:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17168},{"seriesId":97,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"Page to Screen: The Bullet Train Part 2","airDate":"2019-11-15","airDateUtc":"2019-11-15T10:24:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17169}],"episodeFile":[{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The New World-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E01.The New World-WEBDL-1080p Proper.mkv","size":3535050735,"dateAdded":"2018-10-15T09:30:16.18013Z","sceneName":"The.Man.in.the.High.Castle.S01E01.The.New.World.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7034950,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4452},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Sunrise-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E02.Sunrise-WEBDL-1080p Proper.mkv","size":3414314547,"dateAdded":"2018-10-15T09:34:50.418733Z","sceneName":"The.Man.in.the.High.Castle.S01E02.Sunrise.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6817258,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4453},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Illustrated Woman-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E03.The Illustrated Woman-WEBDL-1080p Proper.mkv","size":3276960343,"dateAdded":"2018-10-15T09:38:48.88173Z","sceneName":"The.Man.in.the.High.Castle.S01E03.The.Illustrated.Woman.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6805578,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4454},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Revelations-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E04.Revelations-WEBDL-1080p Proper.mkv","size":2442947675,"dateAdded":"2018-10-15T09:41:51.452623Z","sceneName":"The.Man.in.the.High.Castle.S01E04.Revelations.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5405024,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4455},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The New Normal-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E05.The New Normal-WEBDL-1080p Proper.mkv","size":2182962885,"dateAdded":"2018-10-15T09:44:58.323703Z","sceneName":"The.Man.in.the.High.Castle.S01E05.The.New.Normal.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5098024,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4456},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Three Monkeys-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E06.Three Monkeys-WEBDL-1080p Proper.mkv","size":2918281941,"dateAdded":"2018-10-15T09:47:30.786624Z","sceneName":"The.Man.in.the.High.Castle.S01E06.Three.Monkeys.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6307172,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4457},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Truth-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E07.Truth-WEBDL-1080p Proper.mkv","size":2517720633,"dateAdded":"2018-10-15T09:50:37.771001Z","sceneName":"The.Man.in.the.High.Castle.S01E07.Truth.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5350044,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4458},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E08.End of the World-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E08.End of the World-WEBDL-1080p Proper.mkv","size":2358310549,"dateAdded":"2018-10-15T09:53:54.413623Z","sceneName":"The.Man.in.the.High.Castle.S01E08.End.Of.The.World.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5025708,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4459},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Kindness-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E09.Kindness-WEBDL-1080p Proper.mkv","size":2143448105,"dateAdded":"2018-10-15T09:56:44.530608Z","sceneName":"The.Man.in.the.High.Castle.S01E09.Kindness.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5085338,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4460},{"seriesId":97,"seasonNumber":1,"relativePath":"Season 01\/S01E10.A Way Out-WEBDL-1080p Proper.mkv","path":"\/tv\/The Man in the High Castle\/Season 01\/S01E10.A Way Out-WEBDL-1080p Proper.mkv","size":2760032627,"dateAdded":"2018-10-15T09:59:15.031055Z","sceneName":"The.Man.in.the.High.Castle.S01E10.A.Way.Out.RERiP.1080p.AMZN.WEBRip.DD5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5389491,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4461},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Now More Than Ever, We Care About You-WEBDL-1080p Proper REAL.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E01.Now More Than Ever, We Care About You-WEBDL-1080p Proper REAL.mkv","size":3332395986,"dateAdded":"2018-10-15T10:02:46.983192Z","sceneName":"The.Man.in.the.High.Castle.S03E01.Now.More.Than.Ever.We.Care.About.You.REAL.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":1,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5700101,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:10:02","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4462},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Imagine Manchuria-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E02.Imagine Manchuria-WEBDL-1080p.mkv","size":2246155689,"dateAdded":"2018-10-15T10:06:20.107774Z","sceneName":"The.Man.in.the.High.Castle.S03E02.Imagine.Manchuria.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5018920,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:52","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4463},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Sens\u014d K\u014di-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E03.Sens\u014d K\u014di-WEBDL-1080p.mkv","size":2320789509,"dateAdded":"2018-10-15T10:08:31.511561Z","sceneName":"The.Man.in.the.High.Castle.S03E03.Sens\u00f4.K\u00f4i.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4691127,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:59","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4464},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Sabra-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E04.Sabra-WEBDL-1080p.mkv","size":2359544754,"dateAdded":"2018-10-15T10:11:35.927166Z","sceneName":"The.Man.in.the.High.Castle.S03E04.Sabra.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5211309,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:43","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4465},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The New Colossus-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E05.The New Colossus-WEBDL-1080p.mkv","size":2128431762,"dateAdded":"2018-10-15T10:13:34.606268Z","sceneName":"The.Man.in.the.High.Castle.S03E05.The.New.Colossus.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4610422,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:00","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4466},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E06.History Ends-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E06.History Ends-WEBDL-1080p.mkv","size":2306959219,"dateAdded":"2018-10-15T10:17:06.197316Z","sceneName":"The.Man.in.the.High.Castle.S03E06.History.Ends.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4773764,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:46","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4467},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Excess Animus-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E07.Excess Animus-WEBDL-1080p.mkv","size":2330020502,"dateAdded":"2018-10-15T10:19:31.627499Z","sceneName":"The.Man.in.the.High.Castle.S03E07.Excess.Animus.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4705007,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:04","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4468},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Kasumi (Through the Mists)-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E08.Kasumi (Through the Mists)-WEBDL-1080p.mkv","size":2382381412,"dateAdded":"2018-10-15T10:21:45.873642Z","sceneName":"The.Man.in.the.High.Castle.S03E08.Kasumi.Through.the.Mists.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5794420,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:20","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4469},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Baku-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E09.Baku-WEBDL-1080p.mkv","size":2237008073,"dateAdded":"2018-10-15T10:24:06.136224Z","sceneName":"The.Man.in.the.High.Castle.S03E09.Baku.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4886948,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:55","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4470},{"seriesId":97,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Jahr Null-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 03\/S03E10.Jahr Null-WEBDL-1080p.mkv","size":2499675633,"dateAdded":"2018-10-15T10:26:20.763473Z","sceneName":"The.Man.in.the.High.Castle.S03E10.Jahr.Null.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5188450,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4471},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Tiger's Cave-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E01.The Tiger's Cave-WEBDL-1080p.mkv","size":4929359958,"dateAdded":"2018-10-15T16:52:34.460506Z","sceneName":"The.Man.in.the.High.Castle.S02E01.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10646751,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:04","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4472},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Road Less Traveled-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E02.The Road Less Traveled-WEBDL-1080p.mkv","size":3920531628,"dateAdded":"2018-10-15T17:17:41.064002Z","sceneName":"The.Man.in.the.High.Castle.S02E02.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9475220,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:38","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4473},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Travelers-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E03.Travelers-WEBDL-1080p.mkv","size":4958835291,"dateAdded":"2018-10-15T17:21:10.361973Z","sceneName":"The.Man.in.the.High.Castle.S02E03.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10268486,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:24","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4474},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Escalation-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E04.Escalation-WEBDL-1080p.mkv","size":5002610394,"dateAdded":"2018-10-15T17:25:19.327366Z","sceneName":"The.Man.in.the.High.Castle.S02E04.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11696317,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4475},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Duck and Cover-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E05.Duck and Cover-WEBDL-1080p.mkv","size":5349312754,"dateAdded":"2018-10-15T17:30:39.086892Z","sceneName":"The.Man.in.the.High.Castle.S02E05.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11564913,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4480},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Kintsugi-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E06.Kintsugi-WEBDL-1080p.mkv","size":5569755744,"dateAdded":"2018-10-15T17:35:35.459441Z","sceneName":"The.Man.in.the.High.Castle.S02E06.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12770993,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4485},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Land O' Smiles-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E07.Land O' Smiles-WEBDL-1080p.mkv","size":5142410629,"dateAdded":"2018-10-15T17:41:22.820046Z","sceneName":"The.Man.in.the.High.Castle.S02E07.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12153160,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4486},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Loose Lips-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E08.Loose Lips-WEBDL-1080p.mkv","size":5799297376,"dateAdded":"2018-10-15T17:46:04.178775Z","sceneName":"The.Man.in.the.High.Castle.S02E08.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12152798,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4487},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Detonation-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E09.Detonation-WEBDL-1080p.mkv","size":5794670486,"dateAdded":"2018-10-15T17:51:40.214803Z","sceneName":"The.Man.in.the.High.Castle.S02E09.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13177713,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:48","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4732},{"seriesId":97,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Fallout-WEBDL-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 02\/S02E10.Fallout-WEBDL-1080p.mkv","size":5256155310,"dateAdded":"2018-10-15T17:54:26.762652Z","sceneName":"The.Man.in.the.High.Castle.S02E10.1080p.WEBRip.X264-DEFLATE","releaseGroup":"DEFLATE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11069001,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:39","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4733},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Hexagram 64-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E01.Hexagram 64-WEBRip-1080p.mkv","size":7112936210,"dateAdded":"2020-05-28T08:41:13.606903Z","sceneName":"The.Man.In.The.High.Castle.S04E01.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15763822,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:47","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese \/ Chines"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13670},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Every Door Out-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E02.Every Door Out-WEBRip-1080p.mkv","size":7382613427,"dateAdded":"2020-05-28T08:42:08.303532Z","sceneName":"The.Man.In.The.High.Castle.S04E02.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15688594,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:15","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13671},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E03.The Box-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E03.The Box-WEBRip-1080p.mkv","size":5703339112,"dateAdded":"2020-05-28T08:43:17.86571Z","sceneName":"The.Man.In.The.High.Castle.S04E03.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16111861,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:22","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13672},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Happy Trails-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E04.Happy Trails-WEBRip-1080p.mkv","size":5697324977,"dateAdded":"2020-05-28T08:44:07.463356Z","sceneName":"The.Man.In.The.High.Castle.S04E04.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15505182,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:02","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13673},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Mauvaise Foi-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E05.Mauvaise Foi-WEBRip-1080p.mkv","size":5787674190,"dateAdded":"2020-05-28T08:45:00.910327Z","sceneName":"The.Man.In.The.High.Castle.S04E05.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":14675803,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:22","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13674},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E06.All Serious Daring-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E06.All Serious Daring-WEBRip-1080p.mkv","size":5501170092,"dateAdded":"2020-05-28T08:45:51.517304Z","sceneName":"The.Man.In.The.High.Castle.S04E06.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15280983,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:03","scanType":"Progressive","subtitles":"Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13675},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E07.No Masters But Ourselves-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E07.No Masters But Ourselves-WEBRip-1080p.mkv","size":5245049216,"dateAdded":"2020-05-28T08:46:39.947802Z","sceneName":"The.Man.In.The.High.Castle.S04E07.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":14841033,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:09","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Japanese \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13676},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Hitler Has Only Got One Ball-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E08.Hitler Has Only Got One Ball-WEBRip-1080p.mkv","size":5862609395,"dateAdded":"2020-05-28T08:47:25.498203Z","sceneName":"The.Man.In.The.High.Castle.S04E08.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15006326,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:56","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13677},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E09.For Want of a Nail-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E09.For Want of a Nail-WEBRip-1080p.mkv","size":6012870599,"dateAdded":"2020-05-28T08:48:19.692754Z","sceneName":"The.Man.In.The.High.Castle.S04E09.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15417281,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:54","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13678},{"seriesId":97,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Fire from the Gods-WEBRip-1080p.mkv","path":"\/tv\/The Man in the High Castle\/Season 04\/S04E10.Fire from the Gods-WEBRip-1080p.mkv","size":7038073313,"dateAdded":"2020-05-28T08:49:12.366145Z","sceneName":"The.Man.In.The.High.Castle.S04E10.1080p.AMZN.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15433954,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:21","scanType":"Progressive","subtitles":"Arabic \/ Danish \/ German \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13679}],"queue":[]},"99":{"series":{"title":"BoJack Horseman","alternateTitles":[],"sortTitle":"bojack horseman","status":"ended","ended":true,"overview":"Meet the most beloved sitcom horse of the '90s... 20 years later. He\u2019s a curmudgeon with a heart of, not quite gold, but something like gold. Copper?","previousAiring":"2020-01-31T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/102\/banner.jpg?lastWrite=637100123655078140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/282254-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/102\/poster.jpg?lastWrite=637103154749461080","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/282254-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/102\/fanart.jpg?lastWrite=637103154745501150","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/282254-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-08-22T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18724561261,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-07-17T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18712968109,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2016-07-22T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3201313968,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2017-09-08T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3243150730,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2018-09-14T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3597945125,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2020-01-31T08:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":12405821079,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/BoJack Horseman","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":282254,"tvRageId":39470,"tvMazeId":184,"firstAired":"2014-08-22T00:00:00Z","seriesType":"standard","cleanTitle":"bojackhorseman","imdbId":"tt3398228","titleSlug":"bojack-horseman","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Drama"],"tags":[],"added":"2018-10-22T16:24:58.384768Z","ratings":{"votes":660,"value":8.9},"statistics":{"seasonCount":6,"episodeFileCount":76,"episodeCount":76,"totalEpisodeCount":81,"sizeOnDisk":59885760272,"percentOfEpisodes":100.0},"id":102},"episodes":[{"seriesId":102,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"BoJack Auditions for Orange Is the New Black","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7528},{"seriesId":102,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"BoJack Auditions for House of Cards","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7529},{"seriesId":102,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"BoJack Auditions for Hemlock Grove","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7530},{"seriesId":102,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Horsin' Around","overview":"Opening credits for the 90s hit TV show, starring the one and only BoJack Horseman.\r\n\r\nThree little orphans - one, two, three. Without a home or a family tree. Until this horse said, \"Live with me,\" and now they've got a new family!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7531},{"seriesId":102,"episodeFileId":7796,"seasonNumber":1,"episodeNumber":1,"title":"BoJack Horseman: The BoJack Horseman Story, Chapter One","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"To help with the memoir he hopes will put him back in the spotlight, BoJack hires a ghostwriter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":7532},{"seriesId":102,"episodeFileId":7797,"seasonNumber":1,"episodeNumber":2,"title":"BoJack Hates The Troops","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack finds himself the subject of national media attention after he calls the troops \u201cjerks\u201d.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":7533},{"seriesId":102,"episodeFileId":7798,"seasonNumber":1,"episodeNumber":3,"title":"Prickly-Muffin","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack reconnects with a friend from his past who moves into his house and creates pandemonium.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":7534},{"seriesId":102,"episodeFileId":7799,"seasonNumber":1,"episodeNumber":4,"title":"Zo\u00ebs and Zeldas","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack decides to mentor Todd; Diane\u2019s ex-boyfriend writes an article about Mr. Peanutbutter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":7535},{"seriesId":102,"episodeFileId":7800,"seasonNumber":1,"episodeNumber":5,"title":"Live Fast, Diane Nguyen","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"A business trip for BoJack and Diane takes a detour; Todd runs a scam that gets him in trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":7536},{"seriesId":102,"episodeFileId":7801,"seasonNumber":1,"episodeNumber":6,"title":"Our A-Story Is a 'D' Story","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack is jealous of Diane's relationship with Mr. Peanutbutter; Todd's in a new environment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":7537},{"seriesId":102,"episodeFileId":7802,"seasonNumber":1,"episodeNumber":7,"title":"Say Anything","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack sabotages himself with an epic bender; Princess Carolyn's agency merges with another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":7538},{"seriesId":102,"episodeFileId":7803,"seasonNumber":1,"episodeNumber":8,"title":"The Telescope","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"When he learns that his old friend from \"Horsin' Around\" is dying, BoJack tries to mend fences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":7539},{"seriesId":102,"episodeFileId":7804,"seasonNumber":1,"episodeNumber":9,"title":"Horse Majeure","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"A lovestruck BoJack tries to sabotage a wedding; Todd accepts a surprising new professional role.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":7540},{"seriesId":102,"episodeFileId":7805,"seasonNumber":1,"episodeNumber":10,"title":"One Trick Pony","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack shoots a movie at Mr. Peanutbutter\u2019s house; Diane finishes her book.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":7541},{"seriesId":102,"episodeFileId":7806,"seasonNumber":1,"episodeNumber":11,"title":"Downer Ending","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"BoJack embarks on a project in his typically gonzo style, leading to a drug-fueled revelation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":7542},{"seriesId":102,"episodeFileId":7807,"seasonNumber":1,"episodeNumber":12,"title":"Later","airDate":"2014-08-22","airDateUtc":"2014-08-22T07:00:00Z","overview":"Months after his memoir is released, BoJack's being considered for a role that's a lifelong dream.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":7543},{"seriesId":102,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Sabrina's Christmas Wish","airDate":"2014-12-19","airDateUtc":"2014-12-19T08:00:00Z","overview":"It's Christmas, and BoJack Horseman wants nothing to do with it, especially when Todd shows up with a giant candy cane and one of BoJack\u2019s \"Horsin' Around\" Christmas episodes from his TV star days. But BoJack agrees to watch it with Todd, if only for the residual check. One heart-warming orphan story and lots of cans of beer later, BoJack might be willing to re-think his attitude -- unless Todd gets too enthusiastic about the whole holiday thing.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7527},{"seriesId":102,"episodeFileId":7784,"seasonNumber":2,"episodeNumber":1,"title":"Brand New Couch","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"BoJack believes an upbeat attitude will change his life, but that attitude doesn't mesh well with his new acting job.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":7544},{"seriesId":102,"episodeFileId":7785,"seasonNumber":2,"episodeNumber":2,"title":"Yesterdayland","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"BoJack is drawn to the one female in town who has no idea who he is (because she was in a coma). Todd opens a theme park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":7545},{"seriesId":102,"episodeFileId":7786,"seasonNumber":2,"episodeNumber":3,"title":"Still Broken","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"A funeral turns into a treasure hunt for the \"Horsin' Around\" cast, and a potential schmooze-fest for Princess Caroline and Mr. Peanutbutter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":7546},{"seriesId":102,"episodeFileId":7787,"seasonNumber":2,"episodeNumber":4,"title":"After the Party","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"Princess Caroline, BoJack, Diane, and Mr. Peanutbutter learn some important lessons about love in the wake of a surprise birthday party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":7547},{"seriesId":102,"episodeFileId":7788,"seasonNumber":2,"episodeNumber":5,"title":"Chickens","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"BoJack really wants his director Kelsey to like him. Todd, Diane, and Kelsey's daughter help a chicken who's on the lam from the police.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":7548},{"seriesId":102,"episodeFileId":7789,"seasonNumber":2,"episodeNumber":6,"title":"Higher Love","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"Princess Caroline sees an opportunity when Mr. Peanutbutter's agent dies. BoJack flips when he says the \"L\" word out loud to Wanda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":7549},{"seriesId":102,"episodeFileId":7790,"seasonNumber":2,"episodeNumber":7,"title":"Hank After Dark","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"Diane goes off book during BoJack's book tour, jeopardizing Mr. Peanutbutter's new show. Todd gets involved in international affairs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":7550},{"seriesId":102,"episodeFileId":7791,"seasonNumber":2,"episodeNumber":8,"title":"Let's Find Out","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"BoJack is one of the celebrity guest stars on the first episode of Mr. Peanutbutter's game show, but the game doesn't go as expected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":7551},{"seriesId":102,"episodeFileId":7792,"seasonNumber":2,"episodeNumber":9,"title":"The Shot","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"BoJack cooks up a scheme with Kelsey, Todd, Princess Caroline and Mr. Peanutbutter to steal a crucial shot for the Secretariat film.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":7552},{"seriesId":102,"episodeFileId":7793,"seasonNumber":2,"episodeNumber":10,"title":"Yes And","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"Todd gets sucked into the cult of improv comedy. Wanda thinks Diane is a bad influence on BoJack when he has to deal with a career crisis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":7553},{"seriesId":102,"episodeFileId":7794,"seasonNumber":2,"episodeNumber":11,"title":"Escape from L.A.","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"BoJack goes on a road trip to visit an old friend, and gets a taste of existence outside the Hollywoo bubble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":7554},{"seriesId":102,"episodeFileId":7795,"seasonNumber":2,"episodeNumber":12,"title":"Out to Sea","airDate":"2015-07-17","airDateUtc":"2015-07-17T07:00:00Z","overview":"The important things in life becomes clear to BoJack when Todd moves out to join the improv comedy group on their special cruise ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":7555},{"seriesId":102,"episodeFileId":5047,"seasonNumber":3,"episodeNumber":1,"title":"Start Spreading the News","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"Ana Spanakopita sends BoJack to New York to do interviews, and Todd tags along. Princess Carolyn tells Mr. Peanutbutter to get back to work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":7556},{"seriesId":102,"episodeFileId":5048,"seasonNumber":3,"episodeNumber":2,"title":"The BoJack Horseman Show","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"In 2007, Princess Carolyn finds a new project for BoJack, Diane meets Mr. Peanutbutter at the coffee shop where she works, and Todd kisses a girl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":7557},{"seriesId":102,"episodeFileId":5049,"seasonNumber":3,"episodeNumber":3,"title":"BoJack Kills","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"BoJack is framed for the murder of a Whale World dancer. Mr. Peanutbutter and Todd get into a stinky situation with the skunk next door.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":7558},{"seriesId":102,"episodeFileId":5050,"seasonNumber":3,"episodeNumber":4,"title":"Fish Out Of Water","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"BoJack takes an underwater trip to the Pacific Ocean Film Festival for the \u201cSecretariat\u201d premiere, where he tries to reach out to Kelsey. At the same time, he attempts to return a seahorse baby to its mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":7559},{"seriesId":102,"episodeFileId":5051,"seasonNumber":3,"episodeNumber":5,"title":"Love And\/Or Marriage","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"While Todd and BoJack crash a rehearsal dinner, Diane gets high with a client. Princess Carolyn goes on a series of blind dates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":7560},{"seriesId":102,"episodeFileId":5052,"seasonNumber":3,"episodeNumber":6,"title":"Brrap Brrap Pew Pew","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"Diane's tweet lands Sextina Aquafina in hot water. Prankster and A-list actor Jurj Clooners gets under BoJack's skin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":7561},{"seriesId":102,"episodeFileId":5053,"seasonNumber":3,"episodeNumber":7,"title":"Stop the Presses","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"Todd builds a giant papier-m\u00e2ch\u00e9 Todd head. A customer service rep gives BoJack some sound advice when he tries to cancel his newspaper subscription.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":7562},{"seriesId":102,"episodeFileId":5054,"seasonNumber":3,"episodeNumber":8,"title":"Old Acquaintance","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"BoJack is up for a part in David Pincher's latest film. Diane meets Mr. Peanutbutter's brother, and Todd takes the business in a new direction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":7563},{"seriesId":102,"episodeFileId":5055,"seasonNumber":3,"episodeNumber":9,"title":"Best Thing That Ever Happened","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"BoJack meets Princess Carolyn at Elefante, leading to a night of soul-searching as they help the staff impress a food critic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":7564},{"seriesId":102,"episodeFileId":5056,"seasonNumber":3,"episodeNumber":10,"title":"It's You","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"Mr. Peanutbutter announces the Oscar nominees. BoJack surrounds himself with admirers, but his real friendships are falling apart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":7565},{"seriesId":102,"episodeFileId":5057,"seasonNumber":3,"episodeNumber":11,"title":"That's Too Much, Man!","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"On a drug-fueled bender, BoJack and Sarah Lynn crash an AA meeting, and BoJack decides to make amends to the people he hurt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":7566},{"seriesId":102,"episodeFileId":5058,"seasonNumber":3,"episodeNumber":12,"title":"That Went Well","airDate":"2016-07-22","airDateUtc":"2016-07-22T07:00:00Z","overview":"Mr. Peanutbutter saves the day. Todd gets exciting news. BoJack, Diane and Princess Carolyn pursue new opportunities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":7567},{"seriesId":102,"episodeFileId":5071,"seasonNumber":4,"episodeNumber":1,"title":"See Mr. Peanutbutter Run","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Mr. Peanutbutter's campaign to recall the governor of California culminates in a high-stakes ski race. Meanwhile, BoJack is nowhere to be found.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":7568},{"seriesId":102,"episodeFileId":5072,"seasonNumber":4,"episodeNumber":2,"title":"The Old Sugarman Place","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"BoJack goes off the grid and winds up at his grandparents' dilapidated home in Michigan, where he befriends a dragonfly haunted by the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":7569},{"seriesId":102,"episodeFileId":5073,"seasonNumber":4,"episodeNumber":3,"title":"Hooray! Todd Episode!","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Helpful to a fault, Todd is spread thin doing favors for Princess Carolyn, Mr. Peanutbutter and a visitor with a potential connection to BoJack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":7570},{"seriesId":102,"episodeFileId":5074,"seasonNumber":4,"episodeNumber":4,"title":"Commence Fracking","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"The campaign takes a toll on Diane's love life. BoJack helps Hollyhock search for her mom. Princess Carolyn tries to get pregnant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":7571},{"seriesId":102,"episodeFileId":5075,"seasonNumber":4,"episodeNumber":5,"title":"Thoughts and Prayers","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"A mass shooting at a mall creates a PR nightmare for Princess Carolyn. BoJack takes Hollyhock to visit his estranged mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":7572},{"seriesId":102,"episodeFileId":5076,"seasonNumber":4,"episodeNumber":6,"title":"Stupid Piece of Sh*t","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Surrounded by family, BoJack spirals into self-loathing. Princess Carolyn and Rutabaga Rabitowitz plan Courtney and Todd's sham wedding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":7573},{"seriesId":102,"episodeFileId":5077,"seasonNumber":4,"episodeNumber":7,"title":"Underground","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Mr. Peanutbutter's posh campaign fundraiser takes a terrifying turn. As chaos swirls around them, BoJack and Diane get drunk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":7574},{"seriesId":102,"episodeFileId":5078,"seasonNumber":4,"episodeNumber":8,"title":"The Judge","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Hollyhock starts dating an intern on BoJack's new show. Princess Carolyn meets Ralph's parents. Mr. Peanutbutter throws his support behind Woodchuck.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":7575},{"seriesId":102,"episodeFileId":5079,"seasonNumber":4,"episodeNumber":9,"title":"Ruthie","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"On one awful day, Princess Carolyn deals with rejection, deception and loss. BoJack and Diane try to track down Hollyhock's birth certificate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":7576},{"seriesId":102,"episodeFileId":5080,"seasonNumber":4,"episodeNumber":10,"title":"lovin that cali lifestyle!!","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Diane leaks damaging information on Jessica Biel, Todd's clown dentist business hits a snag, and Princess Carolyn finds hope in an unlikely place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":7577},{"seriesId":102,"episodeFileId":5081,"seasonNumber":4,"episodeNumber":11,"title":"Time's Arrow","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"In 1963, young socialite Beatrice Sugarman meets the rebellious Butterscotch Horseman at her debutante party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":7578},{"seriesId":102,"episodeFileId":5082,"seasonNumber":4,"episodeNumber":12,"title":"What Time Is It Right Now","airDate":"2017-09-08","airDateUtc":"2017-09-08T07:00:00Z","overview":"Princess Carolyn pitches \"Philbert\" to company execs. Todd gets a better business idea. BoJack comes to a realization about Hollyhock.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":7579},{"seriesId":102,"episodeFileId":5059,"seasonNumber":5,"episodeNumber":1,"title":"The Light Bulb Scene","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"BoJack has misgivings about his new show. Princess Carolyn visits an adoption agency. Todd interviews for a job at WhatTimeIsItRightNow.com.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":7580},{"seriesId":102,"episodeFileId":5060,"seasonNumber":5,"episodeNumber":2,"title":"The Dog Days Are Over","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Diane divorces Mr. Peanutbutter and moves into a shabby studio. Feeling melancholy, she travels to Vietnam to get away from it all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":7581},{"seriesId":102,"episodeFileId":5061,"seasonNumber":5,"episodeNumber":3,"title":"Planned Obsolescence","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Todd meets Yolanda's parents, who don't know she's asexual. Mr. Peanutbutter romances a young waitress. Gina confesses a childhood dream to BoJack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":7582},{"seriesId":102,"episodeFileId":5062,"seasonNumber":5,"episodeNumber":4,"title":"BoJack the Feminist","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"When Princess Carolyn casts a disgraced celeb in \"Philbert,\" BoJack inadvertently takes a stand. Mr. Peanutbutter tries to toughen up his image.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":7583},{"seriesId":102,"episodeFileId":5063,"seasonNumber":5,"episodeNumber":5,"title":"The Amelia Earhart Story","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Painful memories come rushing back when Princess Carolyn visits her hometown and meets a pregnant teen. A stunt goes awry on the \"Philbert\" set.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":7584},{"seriesId":102,"episodeFileId":5064,"seasonNumber":5,"episodeNumber":6,"title":"Free Churro","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"BoJack delivers a eulogy at a funeral.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":7585},{"seriesId":102,"episodeFileId":5065,"seasonNumber":5,"episodeNumber":7,"title":"INT. SUB","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"Diane's therapist encourages her to set boundaries with BoJack. A missing string cheese ignites a dispute between Todd and Princess Carolyn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":7586},{"seriesId":102,"episodeFileId":5066,"seasonNumber":5,"episodeNumber":8,"title":"Mr. Peanutbutter's Boos","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"At BoJack's 25th annual Halloween party, Pickles gets a crash course in Mr. Peanutbutter's romantic history -- and some advice from Diane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":7587},{"seriesId":102,"episodeFileId":5067,"seasonNumber":5,"episodeNumber":9,"title":"Ancient History","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"A visiting Hollyhock dumps BoJack's painkillers, sending him on a desperate search for more. Todd tries to solve Emily's dating dilemma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":7588},{"seriesId":102,"episodeFileId":5068,"seasonNumber":5,"episodeNumber":10,"title":"Head in the Clouds","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"At the \"Philbert\" premiere party, Princess Carolyn deftly negotiates a deal, Gina steps into the limelight, and Diane confronts BoJack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":7589},{"seriesId":102,"episodeFileId":5069,"seasonNumber":5,"episodeNumber":11,"title":"The Showstopper","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"\"Philbert\" is a hit, and filming begins on Season 2. But as BoJack spirals deeper into addiction, he loses his grip on reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":7590},{"seriesId":102,"episodeFileId":5070,"seasonNumber":5,"episodeNumber":12,"title":"The Stopped Show","airDate":"2018-09-14","airDateUtc":"2018-09-14T07:00:00Z","overview":"In the midst of the latest PR crisis, Princess Carolyn gets a life-changing opportunity. With Diane's help, BoJack finally faces the music.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":7591},{"seriesId":102,"episodeFileId":9846,"seasonNumber":6,"episodeNumber":1,"title":"A Horse Walks into a Rehab","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"BoJack checks into Pastiches, a Malibu rehab facility, where he grapples with memories of Sarah Lynn's death and his own troubled childhood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":13072},{"seriesId":102,"episodeFileId":9853,"seasonNumber":6,"episodeNumber":2,"title":"The New Client","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"When her nanny quits, Princess Carolyn struggles to balance the demands of work and parenting. Mr. Peanutbutter visits BoJack in rehab.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":13094},{"seriesId":102,"episodeFileId":9845,"seasonNumber":6,"episodeNumber":3,"title":"Feel-Good Story","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"Girl Croosh sends Diane on the road with rugged cameraman Guy, but she balks when they ask her to produce more feel-good stories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":13095},{"seriesId":102,"episodeFileId":9848,"seasonNumber":6,"episodeNumber":4,"title":"Surprise!","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"Todd organizes a surprise wedding for Pickles and Mr. Peanutbutter, but the party quickly goes off the rails when Mr. Peanutbutter makes a confession.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":13096},{"seriesId":102,"episodeFileId":9849,"seasonNumber":6,"episodeNumber":5,"title":"A Little Uneven, Is All","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"Dr. Champ tells BoJack it's time to leave rehab. Mr. Peanutbutter's reputation takes a hit. In Chicago, Diane wrestles with writer's block.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":13097},{"seriesId":102,"episodeFileId":9847,"seasonNumber":6,"episodeNumber":6,"title":"The Kidney Stays in the Picture","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"The assistants of Hollywoo go on strike. BoJack tries to help Dr. Champ. When Todd learns that his mother needs a kidney, Diane comes up with a plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":13098},{"seriesId":102,"episodeFileId":9852,"seasonNumber":6,"episodeNumber":7,"title":"The Face of Depression","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"BoJack travels around the country reconnecting with loved ones, while Mr. Peanutbutter embarks on his own national tour as the face of depression.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":13099},{"seriesId":102,"episodeFileId":9851,"seasonNumber":6,"episodeNumber":8,"title":"A Quick One, While He's Away","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"A reporter digs into the circumstances surrounding Sarah Lynn's death. Hollyhock goes to a party in New York City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":13100},{"seriesId":102,"episodeFileId":12085,"seasonNumber":6,"episodeNumber":9,"title":"Intermediate Scene Study w\/ BoJack Horseman","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"When BoJack starts teaching an acting class at Wesleyan, Hollyhock sets some boundaries in their relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":13101},{"seriesId":102,"episodeFileId":12086,"seasonNumber":6,"episodeNumber":10,"title":"Good Damage","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"Diane's depression lifts, but she's still struggling to start writing her memoir. Reporters Paige and Max pay Penny a visit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":13102},{"seriesId":102,"episodeFileId":12088,"seasonNumber":6,"episodeNumber":11,"title":"Sunk Cost and All That","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"While Paige and Max question Mr. Peanutbutter at his restaurant, a panicked BoJack tries to piece together what's happening.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":13103},{"seriesId":102,"episodeFileId":12089,"seasonNumber":6,"episodeNumber":12,"title":"Xerox of a Xerox","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"After the Sarah Lynn story breaks, BoJack gives a live interview on TV. Diane meets Guy's teenage son.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":13104},{"seriesId":102,"episodeFileId":12091,"seasonNumber":6,"episodeNumber":13,"title":"The Horny Unicorn","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"BoJack gets a new AA sponsor. Todd plans a sophisticated party to impress his parents. Diane gets to know Sonny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":13106},{"seriesId":102,"episodeFileId":12090,"seasonNumber":6,"episodeNumber":14,"title":"Angela","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"Angela Diaz reaches out to BoJack. Princess Carolyn gets an offer from Lenny Turteltaub. Todd cooks up a scheme.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":13107},{"seriesId":102,"episodeFileId":12092,"seasonNumber":6,"episodeNumber":15,"title":"The View from Halfway Down","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"BoJack reconnects with faces from his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":13108},{"seriesId":102,"episodeFileId":12087,"seasonNumber":6,"episodeNumber":16,"title":"Nice While It Lasted","airDate":"2020-01-31","airDateUtc":"2020-01-31T08:00:00Z","overview":"A celebration brings people together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":13109}],"episodeFile":[{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Start Spreading the News-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E01.Start Spreading the News-WEBDL-1080p.mkv","size":265677505,"dateAdded":"2018-10-22T16:40:30.474322Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981939,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:59","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5047},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The BoJack Horseman Show-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E02.The BoJack Horseman Show-WEBDL-1080p.mkv","size":266619224,"dateAdded":"2018-10-22T16:40:37.529302Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981364,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5048},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E03.BoJack Kills-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E03.BoJack Kills-WEBDL-1080p.mkv","size":265947131,"dateAdded":"2018-10-22T16:40:38.32464Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981396,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5049},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Fish Out Of Water-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E04.Fish Out Of Water-WEBDL-1080p.mkv","size":268345801,"dateAdded":"2018-10-22T16:40:39.108042Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981396,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:15","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5050},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Love And+Or Marriage-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E05.Love And+Or Marriage-WEBDL-1080p.mkv","size":266664282,"dateAdded":"2018-10-22T16:40:39.912663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981713,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5051},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Brrap Brrap Pew Pew-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E06.Brrap Brrap Pew Pew-WEBDL-1080p.mkv","size":264922305,"dateAdded":"2018-10-22T16:40:44.18155Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":979754,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:57","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5052},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Stop the Presses-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E07.Stop the Presses-WEBDL-1080p.mkv","size":265397172,"dateAdded":"2018-10-22T16:41:13.625519Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":976788,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:03","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5053},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Old Acquaintance-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E08.Old Acquaintance-WEBDL-1080p.mkv","size":266780930,"dateAdded":"2018-10-22T16:41:14.947271Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":976726,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5054},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Best Thing That Ever Happened-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E09.Best Thing That Ever Happened-WEBDL-1080p.mkv","size":264490722,"dateAdded":"2018-10-22T16:41:24.215591Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":977621,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:57","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5055},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E10.It's You-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E10.It's You-WEBDL-1080p.mkv","size":274130937,"dateAdded":"2018-10-22T16:41:25.466215Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":976141,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:55","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5056},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E11.That's Too Much, Man!-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E11.That's Too Much, Man!-WEBDL-1080p.mkv","size":263725220,"dateAdded":"2018-10-22T16:41:27.293652Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":975290,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:55","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5057},{"seriesId":102,"seasonNumber":3,"relativePath":"Season 03\/S03E12.That Went Well-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 03\/S03E12.That Went Well-WEBDL-1080p.mkv","size":268612739,"dateAdded":"2018-10-22T16:41:35.726005Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":978207,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:21","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5058},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E01.The Light Bulb Scene-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E01.The Light Bulb Scene-WEBDL-1080p.mkv","size":300118614,"dateAdded":"2018-10-22T16:42:08.022893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":375071,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1147797,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5059},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E02.The Dog Days Are Over-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E02.The Dog Days Are Over-WEBDL-1080p.mkv","size":308312284,"dateAdded":"2018-10-22T16:42:09.566755Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":362874,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1149618,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"27:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5060},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Planned Obsolescence-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E03.Planned Obsolescence-WEBDL-1080p.mkv","size":295375577,"dateAdded":"2018-10-22T16:42:13.769638Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1148303,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5061},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E04.BoJack the Feminist-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E04.BoJack the Feminist-WEBDL-1080p.mkv","size":292013049,"dateAdded":"2018-10-22T16:42:36.190614Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":341190,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1148009,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5062},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E05.The Amelia Earhart Story-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E05.The Amelia Earhart Story-WEBDL-1080p.mkv","size":297133095,"dateAdded":"2018-10-22T16:42:38.3674Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":364059,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1149367,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5063},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Free Churro-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E06.Free Churro-WEBDL-1080p.mkv","size":294124016,"dateAdded":"2018-10-22T16:42:40.760916Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1149877,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5064},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E07.INT. SUB-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E07.INT. SUB-WEBDL-1080p.mkv","size":295495608,"dateAdded":"2018-10-22T16:42:43.079491Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":344518,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1150981,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5065},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Mr. Peanutbutter's Boos-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E08.Mr. Peanutbutter's Boos-WEBDL-1080p.mkv","size":305165650,"dateAdded":"2018-10-22T16:42:48.883468Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":409078,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1149354,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5066},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Ancient History-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E09.Ancient History-WEBDL-1080p.mkv","size":297636513,"dateAdded":"2018-10-22T16:43:23.030367Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1148775,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5067},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Head in the Clouds-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E10.Head in the Clouds-WEBDL-1080p.mkv","size":306956905,"dateAdded":"2018-10-22T16:43:32.209017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406609,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1151019,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5068},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E11.The Showstopper-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E11.The Showstopper-WEBDL-1080p.mkv","size":300436637,"dateAdded":"2018-10-22T16:43:39.357582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1149994,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5069},{"seriesId":102,"seasonNumber":5,"relativePath":"Season 05\/S05E12.The Stopped Show-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 05\/S05E12.The Stopped Show-WEBDL-1080p.mkv","size":305177177,"dateAdded":"2018-10-22T16:43:41.864687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":393604,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1150990,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5070},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E01.See Mr. Peanutbutter Run-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E01.See Mr. Peanutbutter Run-WEBDL-1080p.mkv","size":272001292,"dateAdded":"2018-10-22T16:43:57.474088Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":980900,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5071},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Old Sugarman Place-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E02.The Old Sugarman Place-WEBDL-1080p.mkv","size":271909443,"dateAdded":"2018-10-22T16:44:03.096452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":980471,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5072},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Hooray! Todd Episode!-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E03.Hooray! Todd Episode!-WEBDL-1080p.mkv","size":272943896,"dateAdded":"2018-10-22T16:44:37.852256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":978760,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5073},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Commence Fracking-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E04.Commence Fracking-WEBDL-1080p.mkv","size":268104213,"dateAdded":"2018-10-22T16:44:39.969266Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":980175,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:10","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5074},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Thoughts and Prayers-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E05.Thoughts and Prayers-WEBDL-1080p.mkv","size":269531449,"dateAdded":"2018-10-22T16:44:41.837936Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":980459,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5075},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Stupid Piece of Sh-t-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E06.Stupid Piece of Sh-t-WEBDL-1080p.mkv","size":267308191,"dateAdded":"2018-10-22T16:44:43.442401Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981375,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5076},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Underground-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E07.Underground-WEBDL-1080p.mkv","size":269190313,"dateAdded":"2018-10-22T16:44:45.185563Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":980449,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5077},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The Judge-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E08.The Judge-WEBDL-1080p.mkv","size":268506834,"dateAdded":"2018-10-22T16:44:51.652806Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":980487,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5078},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Ruthie-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E09.Ruthie-WEBDL-1080p.mkv","size":272428748,"dateAdded":"2018-10-22T16:45:27.312673Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":979543,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:36","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5079},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E10.lovin that cali lifestyle!!-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E10.lovin that cali lifestyle!!-WEBDL-1080p.mkv","size":269753909,"dateAdded":"2018-10-22T16:45:28.823124Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":979878,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5080},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Time's Arrow-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E11.Time's Arrow-WEBDL-1080p.mkv","size":270069080,"dateAdded":"2018-10-22T16:45:39.070802Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981475,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5081},{"seriesId":102,"seasonNumber":4,"relativePath":"Season 04\/S04E12.What Time Is It Right Now-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 04\/S04E12.What Time Is It Right Now-WEBDL-1080p.mkv","size":271403362,"dateAdded":"2018-10-22T16:45:40.51549Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981298,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5082},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Brand New Couch-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E01.Brand New Couch-Bluray-1080p.mkv","size":1559067342,"dateAdded":"2019-07-22T13:41:05.0208Z","sceneName":"Bojack.Horseman.S02E01.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6447000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7784},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Yesterdayland-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E02.Yesterdayland-Bluray-1080p.mkv","size":1559703753,"dateAdded":"2019-07-22T13:41:14.27395Z","sceneName":"Bojack.Horseman.S02E02.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6569000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7785},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Still Broken-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E03.Still Broken-Bluray-1080p.mkv","size":1560364332,"dateAdded":"2019-07-22T13:41:27.745308Z","sceneName":"Bojack.Horseman.S02E03.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6610000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7786},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E04.After the Party-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E04.After the Party-Bluray-1080p.mkv","size":1559866268,"dateAdded":"2019-07-22T13:41:40.613784Z","sceneName":"Bojack.Horseman.S02E04.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6479000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7787},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Chickens-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E05.Chickens-Bluray-1080p.mkv","size":1560128133,"dateAdded":"2019-07-22T13:41:48.914101Z","sceneName":"Bojack.Horseman.S02E05.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6578000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7788},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Higher Love-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E06.Higher Love-Bluray-1080p.mkv","size":1559625489,"dateAdded":"2019-07-22T13:42:02.135336Z","sceneName":"Bojack.Horseman.S02E06.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6594000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7789},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Hank After Dark-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E07.Hank After Dark-Bluray-1080p.mkv","size":1559742394,"dateAdded":"2019-07-22T13:42:12.632936Z","sceneName":"Bojack.Horseman.S02E07.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6537000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7790},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Let's Find Out-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E08.Let's Find Out-Bluray-1080p.mkv","size":1558559636,"dateAdded":"2019-07-22T13:42:25.028534Z","sceneName":"Bojack.Horseman.S02E08.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6619000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7791},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Shot-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E09.The Shot-Bluray-1080p.mkv","size":1558013618,"dateAdded":"2019-07-22T13:42:39.672097Z","sceneName":"Bojack.Horseman.S02E09.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6561000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7792},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Yes And-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E10.Yes And-Bluray-1080p.mkv","size":1560095952,"dateAdded":"2019-07-22T13:42:54.786112Z","sceneName":"Bojack.Horseman.S02E10.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6578000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7793},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Escape from L.A-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E11.Escape from L.A-Bluray-1080p.mkv","size":1558527905,"dateAdded":"2019-07-22T13:43:04.856378Z","sceneName":"Bojack.Horseman.S02E11.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6594000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7794},{"seriesId":102,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Out to Sea-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 02\/S02E12.Out to Sea-Bluray-1080p.mkv","size":1559273287,"dateAdded":"2019-07-22T13:43:18.809298Z","sceneName":"Bojack.Horseman.S02E12.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6594000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7795},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E01.BoJack Horseman- The BoJack Horseman Story, Chapter One-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E01.BoJack Horseman- The BoJack Horseman Story, Chapter One-Bluray-1080p.mkv","size":1559455716,"dateAdded":"2019-07-22T14:27:23.22481Z","sceneName":"Bojack.Horseman.S01E01.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6717000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7796},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E02.BoJack Hates The Troops-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E02.BoJack Hates The Troops-Bluray-1080p.mkv","size":1560446840,"dateAdded":"2019-07-22T14:27:30.431208Z","sceneName":"Bojack.Horseman.S01E02.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6750000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7797},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Prickly-Muffin-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E03.Prickly-Muffin-Bluray-1080p.mkv","size":1560964677,"dateAdded":"2019-07-22T14:27:42.911121Z","sceneName":"Bojack.Horseman.S01E03.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6610000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7798},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Zoes and Zeldas-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E04.Zoes and Zeldas-Bluray-1080p.mkv","size":1560317593,"dateAdded":"2019-07-22T14:27:56.205481Z","sceneName":"Bojack.Horseman.S01E04.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6725000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7799},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Live Fast, Diane Nguyen-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E05.Live Fast, Diane Nguyen-Bluray-1080p.mkv","size":1560609184,"dateAdded":"2019-07-22T14:28:10.712179Z","sceneName":"Bojack.Horseman.S01E05.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6758000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7800},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Our A-Story Is A 'D' Story-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E06.Our A-Story Is A 'D' Story-Bluray-1080p.mkv","size":1562454408,"dateAdded":"2019-07-22T14:28:22.689274Z","sceneName":"Bojack.Horseman.S01E06.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6619000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7801},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Say Anything-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E07.Say Anything-Bluray-1080p.mkv","size":1559748557,"dateAdded":"2019-07-22T14:28:30.93025Z","sceneName":"Bojack.Horseman.S01E07.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6651000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7802},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Telescope-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E08.The Telescope-Bluray-1080p.mkv","size":1558864960,"dateAdded":"2019-07-22T14:28:43.92553Z","sceneName":"Bojack.Horseman.S01E08.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6635000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7803},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Horse Majeure-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E09.Horse Majeure-Bluray-1080p.mkv","size":1559030005,"dateAdded":"2019-07-22T14:28:57.613133Z","sceneName":"Bojack.Horseman.S01E09.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6561000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7804},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E10.One Trick Pony-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E10.One Trick Pony-Bluray-1080p.mkv","size":1561183897,"dateAdded":"2019-07-22T14:29:11.28616Z","sceneName":"Bojack.Horseman.S01E10.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6651000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7805},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Downer Ending-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E11.Downer Ending-Bluray-1080p.mkv","size":1560724622,"dateAdded":"2019-07-22T14:29:20.419347Z","sceneName":"Bojack.Horseman.S01E11.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6750000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7806},{"seriesId":102,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Later-Bluray-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 01\/S01E12.Later-Bluray-1080p.mkv","size":1560760802,"dateAdded":"2019-07-22T14:29:32.746338Z","sceneName":"Bojack.Horseman.S01E12.1080p.BluRay.x264-TURMOiL","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6602000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7807},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Episode 3-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E03.Episode 3-WEBDL-1080p.mkv","size":861073961,"dateAdded":"2019-10-25T08:08:32.393066Z","sceneName":"BoJack.Horseman.S06E03.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:10","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9845},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Episode 1-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E01.Episode 1-WEBDL-1080p.mkv","size":863421459,"dateAdded":"2019-10-25T08:17:02.5054Z","sceneName":"BoJack.Horseman.S06E01.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3789552,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:28","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9846},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Episode 6-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E06.Episode 6-WEBDL-1080p.mkv","size":1019956435,"dateAdded":"2019-10-25T08:17:08.471694Z","sceneName":"BoJack.Horseman.S06E06.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:14","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Finnish \/ Swedish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9847},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Episode 4-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E04.Episode 4-WEBDL-1080p.mkv","size":1023029180,"dateAdded":"2019-10-25T08:20:02.54228Z","sceneName":"BoJack.Horseman.S06E04.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9848},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Episode 5-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E05.Episode 5-WEBDL-1080p.mkv","size":941105417,"dateAdded":"2019-10-25T08:21:32.529285Z","sceneName":"BoJack.Horseman.S06E05.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9849},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Episode 8-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E08.Episode 8-WEBDL-1080p.mkv","size":980136823,"dateAdded":"2019-10-25T08:24:32.569861Z","sceneName":"BoJack.Horseman.S06E08.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9851},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Episode 7-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E07.Episode 7-WEBDL-1080p.mkv","size":891650086,"dateAdded":"2019-10-25T08:24:41.647947Z","sceneName":"BoJack.Horseman.S06E07.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"27:02","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Finnish \/ Swedish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9852},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Episode 2-WEBDL-1080p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E02.Episode 2-WEBDL-1080p.mkv","size":1379393228,"dateAdded":"2019-10-25T08:26:02.580514Z","sceneName":"BoJack.Horseman.S06E02.1080p.WEB.X264-AMRAP[rarbg]","releaseGroup":"AMRAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:18","scanType":"Progressive","subtitles":"English \/ Dutch \/ Polish \/ Danish \/ Swedish \/ Finnish \/ German \/ Spanish \/ Indonesian \/ Turkish \/ Portuguese \/ Spanish \/ French \/ Czech \/ Norwegian \/ Portuguese \/ Greek \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9853},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Intermediate Scene Study w+ BoJack Horseman-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E09.Intermediate Scene Study w+ BoJack Horseman-WEBDL-720p.mkv","size":573794458,"dateAdded":"2020-01-31T16:29:57.400284Z","sceneName":"bojack.horseman.s06e09.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2260000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12085},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Good Damage-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E10.Good Damage-WEBDL-720p.mkv","size":689569621,"dateAdded":"2020-01-31T16:32:57.42036Z","sceneName":"bojack.horseman.s06e10.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12086},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Nice While It Lasted-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E16.Nice While It Lasted-WEBDL-720p.mkv","size":546194548,"dateAdded":"2020-01-31T16:34:27.464163Z","sceneName":"bojack.horseman.s06e16.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2050000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"27:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12087},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Sunk Cost and All That-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E11.Sunk Cost and All That-WEBDL-720p.mkv","size":486553765,"dateAdded":"2020-01-31T16:34:32.30333Z","sceneName":"bojack.horseman.s06e11.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12088},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Xerox of a Xerox-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E12.Xerox of a Xerox-WEBDL-720p.mkv","size":489847377,"dateAdded":"2020-01-31T16:34:37.923833Z","sceneName":"bojack.horseman.s06e12.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12089},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Angela-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E14.Angela-WEBDL-720p.mkv","size":573769960,"dateAdded":"2020-01-31T16:35:57.376297Z","sceneName":"bojack.horseman.s06e14.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2260000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:46","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12090},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E13.The Horny Unicorn-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E13.The Horny Unicorn-WEBDL-720p.mkv","size":508465801,"dateAdded":"2020-01-31T16:36:00.266303Z","sceneName":"bojack.horseman.s06e13.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1960000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12091},{"seriesId":102,"seasonNumber":6,"relativePath":"Season 06\/S06E15.The View from Halfway Down-WEBDL-720p.mkv","path":"\/tv\/BoJack Horseman\/Season 06\/S06E15.The View from Halfway Down-WEBDL-720p.mkv","size":577858960,"dateAdded":"2020-01-31T16:36:03.668613Z","sceneName":"bojack.horseman.s06e15.720p.web.x264-skgtv[eztv]","releaseGroup":"skgtv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2370000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"26:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12092}],"queue":[]},"100":{"series":{"title":"MythBusters Jr.","alternateTitles":[],"sortTitle":"mythbusters jr","status":"ended","ended":true,"overview":"The nation's most talented kids have a chance to show off their amazing ingenuity and STEAM (Science, Technology, Engineering, Arts, and Math) skills.","previousAiring":"2019-02-07T03:30:00Z","network":"Science Channel","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/123\/banner.jpg?lastWrite=636824897818775270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c1e8cf13532e.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/123\/poster.jpg?lastWrite=637102289109829690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c69d36fcb759.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/123\/fanart.jpg?lastWrite=637102289099709880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c0f8c7cde15c.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-02-07T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":13198262105,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/MythBusters Jr","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":350679,"tvRageId":0,"tvMazeId":39702,"firstAired":"2019-01-02T00:00:00Z","seriesType":"standard","cleanTitle":"mythbustersjr","imdbId":"tt8265286","titleSlug":"mythbusters-jr","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Documentary","Family"],"tags":[],"added":"2019-01-07T20:29:40.181194Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":11,"sizeOnDisk":13198262105,"percentOfEpisodes":100.0},"id":123},"episodes":[{"seriesId":123,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Sneak Peek","airDate":"2018-12-28","airDateUtc":"2018-12-29T02:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9909},{"seriesId":123,"episodeFileId":6393,"seasonNumber":1,"episodeNumber":1,"title":"Duct Tape Special","airDate":"2019-01-02","airDateUtc":"2019-01-03T02:00:00Z","overview":"Adam Savage and a team of 6 kids put duct tape to the test and find out if the magnificent material can be used as a viable parachute and as a fix for a flat tire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":9910},{"seriesId":123,"episodeFileId":6401,"seasonNumber":1,"episodeNumber":2,"title":"Dynamite Air Freshener","airDate":"2019-01-09","airDateUtc":"2019-01-10T02:00:00Z","overview":"Adam Savage and team put an explosive myth to the test to find out if a single spark and air freshener can create a catastrophic car calamity. Meanwhile, they investigate an age-old dog urban legend to discover how much water a wet dog can shake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":9911},{"seriesId":123,"episodeFileId":6430,"seasonNumber":1,"episodeNumber":3,"title":"Battery Blast","airDate":"2019-01-16","airDateUtc":"2019-01-17T02:00:00Z","overview":"Adam Savage and the team test if old batteries can set off a dangerous chain reaction and also check on an age-old idiom with a diabolically difficult trick archery shot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":9912},{"seriesId":123,"episodeFileId":6515,"seasonNumber":1,"episodeNumber":4,"title":"Gravity Busters","airDate":"2019-01-23","airDateUtc":"2019-01-24T02:00:00Z","overview":"Adam Savage and the team put a Slinky to the test and try to use it to hoist a car. They also investigate if an ordinary pencil can really draw a line that's 35 miles long.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":9918},{"seriesId":123,"episodeFileId":6517,"seasonNumber":1,"episodeNumber":5,"title":"Demolition Dominoes","airDate":"2019-01-23","airDateUtc":"2019-01-24T02:45:00Z","overview":"The team tackles 2 tabletop gaming myths: trying an impossible Jenga move and checking if the domino effect can lead to a car-crushing catastrophe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":9924},{"seriesId":123,"episodeFileId":6566,"seasonNumber":1,"episodeNumber":6,"title":"Shredder Explosion","airDate":"2019-01-30","airDateUtc":"2019-01-31T02:00:00Z","overview":"The team investigates if a paper shredder plus canned air is a recipe for disaster and they tackle an age-old kitchen condiment conundrum.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":10245},{"seriesId":123,"episodeFileId":6567,"seasonNumber":1,"episodeNumber":7,"title":"Countdown to Gas-Tastrophe","airDate":"2019-01-30","airDateUtc":"2019-01-31T02:45:00Z","overview":"Adam and the team tackle 2 explosively gassy myths: if Adam\u2019s gassy emissions have enough fuel to launch a rocket and if a patient\u2019s untimely flatulence can make an operating room go up in flames.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":10246},{"seriesId":123,"episodeFileId":6675,"seasonNumber":1,"episodeNumber":8,"title":"Bug Special","airDate":"2019-02-06","airDateUtc":"2019-02-07T02:00:00Z","overview":"Adam and the team test if a roach motel\u2019s glue can trap a human and if spider silk is really as strong as steel and kevlar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":10283},{"seriesId":123,"episodeFileId":6708,"seasonNumber":1,"episodeNumber":9,"title":"Deep Space Hollywood","airDate":"2019-02-06","airDateUtc":"2019-02-07T02:45:00Z","overview":"Adam and the team tackle two Hollywood space myths: if it\u2019s possible to use a fire extinguisher to propel a person in space and if no one in space can hear you scream.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":10286},{"seriesId":123,"episodeFileId":6707,"seasonNumber":1,"episodeNumber":10,"title":"Breaking Bad Blow-Up","airDate":"2019-02-06","airDateUtc":"2019-02-07T03:30:00Z","overview":"\u201cBreaking Bad\u201d creator Vince Gilligan challenges the Busters to prove just how destructive a giant magnet can be. Also, the team investigates how everyday furniture can block a door from Hollywood\u2019s deadliest villains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10287}],"episodeFile":[{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Duct Tape Special-WEBDL-1080p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E01.Duct Tape Special-WEBDL-1080p.mkv","size":1605981168,"dateAdded":"2019-01-07T20:55:48.499919Z","sceneName":"MythBusters.Jr.S01E01.Duct.Tape.Special.1080p.WEB-DL.AAC2.0.x264-RTN[rarbg]","releaseGroup":"RTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126746,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"42:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6393},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Dynamite Air Freshener-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E02.Dynamite Air Freshener-WEBDL-720p.mkv","size":1502772170,"dateAdded":"2019-01-10T05:08:50.535114Z","sceneName":"MythBusters.Jr.S01E02.Dynamite.Air.Freshener.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126773,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4587578,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6401},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Battery Blast-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E03.Battery Blast-WEBDL-720p.mkv","size":1222694770,"dateAdded":"2019-01-17T03:48:24.010986Z","sceneName":"MythBusters.Jr.S01E03.Battery.Blast.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126767,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3708603,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6430},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Gravity Busters-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E04.Gravity Busters-WEBDL-720p.mkv","size":1208220928,"dateAdded":"2019-01-25T00:03:02.162279Z","sceneName":"MythBusters.Jr.S01E04.Gravity.Busters.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126758,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3663244,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6515},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Demolition Dominoes-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E05.Demolition Dominoes-WEBDL-720p.mkv","size":1243819085,"dateAdded":"2019-01-25T01:30:05.389532Z","sceneName":"MythBusters.Jr.S01E05.Demolition.Dominoes.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126735,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3774598,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6517},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Shredder Explosion-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E06.Shredder Explosion-WEBDL-720p.mkv","size":1381817697,"dateAdded":"2019-01-31T05:24:17.1129Z","sceneName":"MythBusters.Jr.S01E06.Shredder.Explosion.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126791,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4207696,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6566},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Countdown to Gas-Tastrophe-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E07.Countdown to Gas-Tastrophe-WEBDL-720p.mkv","size":1305216979,"dateAdded":"2019-01-31T05:24:21.658358Z","sceneName":"MythBusters.Jr.S01E07.Countdown.to.Gas-tastrophe.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126776,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3967306,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6567},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Bug Special-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E08.Bug Special-WEBDL-720p.mkv","size":1165586159,"dateAdded":"2019-02-07T03:56:56.717139Z","sceneName":"MythBusters.Jr.S01E08.Bug.Special.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126736,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3529462,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6675},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Breaking Bad Blow-Up-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E10.Breaking Bad Blow-Up-WEBDL-720p.mkv","size":1231564103,"dateAdded":"2019-02-07T05:34:50.524017Z","sceneName":"MythBusters.Jr.S01E10.Breaking.Bad.Blow-Up.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126738,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3736197,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6707},{"seriesId":123,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Deep Space Hollywood-WEBDL-720p.mkv","path":"\/tv\/MythBusters Jr\/Season 01\/S01E09.Deep Space Hollywood-WEBDL-720p.mkv","size":1330589046,"dateAdded":"2019-02-07T05:37:34.208776Z","sceneName":"MythBusters.Jr.S01E09.Deep.Space.Hollywood.720p.WEBRip.x264-CAFFEiNE[rarbg]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126774,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4046640,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6708}],"queue":[]},"101":{"series":{"title":"Firefly","alternateTitles":[],"sortTitle":"firefly","status":"ended","ended":true,"overview":"In the far-distant future, Captain Malcolm \"Mal\" Reynolds is a renegade former brown-coat sergeant, now turned smuggler & rogue, who is the commander of a small spacecraft, with a loyal hand-picked crew made up of the first mate, Zoe Warren; the pilot Hoban \"Wash\" Washburn; the gung-ho grunt Jayne Cobb; the engineer Kaylee Frye; the fugitives Dr. Simon Tam and his psychic sister River. Together, they travel the far reaches of space in search of food, money, and anything to live on.","previousAiring":"2003-07-28T04:00:00Z","network":"FOX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/129\/banner.jpg?lastWrite=637103832671074270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/7097-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/129\/poster.jpg?lastWrite=637103832673954210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78874-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/129\/fanart.jpg?lastWrite=636850543774269330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78874-5.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-07-28T04:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":6559245703,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Firefly","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":78874,"tvRageId":3548,"tvMazeId":180,"firstAired":"2002-09-20T00:00:00Z","seriesType":"standard","cleanTitle":"firefly","imdbId":"tt0303461","titleSlug":"firefly","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-02-06T12:52:56.83879Z","ratings":{"votes":14470,"value":9.5},"statistics":{"seasonCount":1,"episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":17,"sizeOnDisk":6559245703,"percentOfEpisodes":100.0},"id":129},"episodes":[{"seriesId":129,"episodeFileId":6651,"seasonNumber":1,"episodeNumber":1,"title":"The Train Job","airDate":"2002-09-20","airDateUtc":"2002-09-20T04:00:00Z","overview":"Serenity continues to travel through space conducting illegal runs across the star system, which is under the control of The Alliance. A powerful and fearsome mobster named Adelei Niska demands that the crew of Serenity pull a train robbery. The train is carrying medical supplies for a community, and Reynolds and Zoe get held on suspicion. They get free with Inara's help but realize they were tricked and try to return Niska's money. His henchman isn't too happy, but Mal \"persuades\" the next guy to take the money back. Meanwhile, two blue-handed, black-suited operatives close in on River.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":10345},{"seriesId":129,"episodeFileId":6651,"seasonNumber":1,"episodeNumber":2,"title":"Bushwhacked","airDate":"2002-09-27","airDateUtc":"2002-09-27T04:00:00Z","overview":"On a salvage mission aboard a drifting colony ship, the Serenity crew find signs that the crew were killed by the cannibalistic Reavers. They find one survivor, but things take a turn for the worse when an Alliance ship looking for an unspecified Firefly-class ship with brother-and-sister stowaways shows up and takes them in.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":10346},{"seriesId":129,"episodeFileId":6652,"seasonNumber":1,"episodeNumber":3,"title":"Our Mrs. Reynolds","airDate":"2002-10-04","airDateUtc":"2002-10-04T04:00:00Z","overview":"While completing a job on a backwater world, Mal is married to a village girl without his knowledge. The girl, Saffron, gets onboard and the crew does not find her until they're already in the air. Mal is not sure what to do with her, but let her come along.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":10347},{"seriesId":129,"episodeFileId":6653,"seasonNumber":1,"episodeNumber":4,"title":"Jaynestown","airDate":"2002-10-18","airDateUtc":"2002-10-18T04:00:00Z","overview":"Serenity sets down at the mudder colony of Canton where it turns out Jayne is a hero for having dropped a bunch of money there years ago that he and his partner Stitch stole from the local magistrate. The drop was unintentional but Jayne doesn't turn down the attentions. Meanwhile, Kaylee and Simon dance, River rewrites Book's bible, and Inara beds the magistrate's son, a virgin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":10348},{"seriesId":129,"episodeFileId":6654,"seasonNumber":1,"episodeNumber":5,"title":"Out of Gas","airDate":"2002-10-25","airDateUtc":"2002-10-25T04:00:00Z","overview":"In a delirious state after Serenity's engine explodes, draining the ship of its oxygen supply, Mal has a series of flashbacks about how he came to own Serenity and form his crew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":10349},{"seriesId":129,"episodeFileId":6655,"seasonNumber":1,"episodeNumber":6,"title":"Shindig","airDate":"2002-11-01","airDateUtc":"2002-11-01T05:00:00Z","overview":"On the planet Persephone the crew contact their old \"friend\" Badger the ruthless crime lord to transport some goods on behalf of a local lord. While at a ball to arrange a transport job with the lord, Mal defends Inara's honor when her current customer insults her. By local custom he unintentionally challenges her date, Atherton Wing, to a duel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":10350},{"seriesId":129,"episodeFileId":6656,"seasonNumber":1,"episodeNumber":7,"title":"Safe","airDate":"2002-11-08","airDateUtc":"2002-11-08T05:00:00Z","overview":"On a planet, Simon is kidnapped by locals who need a doctor, while River is threatened with burning as a witch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":10351},{"seriesId":129,"episodeFileId":6657,"seasonNumber":1,"episodeNumber":8,"title":"Ariel","airDate":"2002-11-15","airDateUtc":"2002-11-15T05:00:00Z","overview":"The crew visit the planet Ariel because Inara needs to receive an annual Companion physical. The crew is offered a surprising job by Simon: in return for stolen medicine he wants them to get him into a hospital to use a high-end scanner to diagnose River. Simon devises a plan - Kaylee and Wash browse through the local dump and find parts to make an imitation emergency vehicle so the crew can get into the hospital posing as EMTs. Simon and River pose as corpses with the aid of a drug Simon has. While Mal and Zoe round up some medicine, Jayne stays with River and Simon, who are unaware he has ratted them out to the Alliance in return for money.\r\nJayne rushes Simon through the examination and on the way out Jayne, Simon, and River are caught by the Alliance. Jayne is betrayed by the Alliance and becomes a prisoner himself. They manage to escape as the Men With Blue Hands arrive and ruthlessly execute anyone who had contact with the Tams. Mal and Zoe end up saving their friends and Simon ma","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":10352},{"seriesId":129,"episodeFileId":6658,"seasonNumber":1,"episodeNumber":9,"title":"War Stories","airDate":"2002-12-06","airDateUtc":"2002-12-06T05:00:00Z","overview":"Jealous of Zoe's relationship with Mal, Wash insists (thanks to a bit of scheming) that he go with Mal to try to sell some of the medical supplies the crew stole from the Alliance. In the middle of the deal Mal and Wash are kidnapped by men working for Niska the crime lord, who wants revenge against Mal for the botched train heist. He tortures Mal and Wash until Zoe shows up offering money in exchange for the prisoners. Niska says that the money is only enough for one person and Zoe chooses Wash. Wash realizes that Mal's antagonizing him while they were being tortured was to help keep him alive and kicking. This inspires him to do everything he can to help Zoe rescue Mal from Niska. The rest of the crew jump on board to save the Captain.\r\nMeanwhile Inara extends her services to a council member. To the crew of Serenity's surprise, it's a woman. And Simon continues to treat River with some of the medicine he stole but she suffers the occasional relapse as well as displays a penchan","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10353},{"seriesId":129,"episodeFileId":6659,"seasonNumber":1,"episodeNumber":10,"title":"Objects in Space","airDate":"2002-12-13","airDateUtc":"2002-12-13T05:00:00Z","overview":"A bounty hunter boards the Serenity to capture River for the Alliance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":10354},{"seriesId":129,"episodeFileId":6660,"seasonNumber":1,"episodeNumber":11,"title":"Serenity","airDate":"2002-12-20","airDateUtc":"2002-12-20T05:00:00Z","overview":"After a flashback to Zoe's and Mal's days in the wars six years previous, we cut to the modern day where the Serenity crew is running a salvage operation on a deserted ship and are forced to flee with the cargo when the Alliance show up. Their buddy Badger refuses to buy the cargo so they head off to the rim worlds after picking up three passengers: Book, Simon, and Dobson. En route someone sends a signal to the Alliance and it turns out to be Dobson, an undercover Federal agent, who arrests Simon but is glad to take the whole crew in. He shoots Kaylee before being captured, and Simon forces Mal to flee in return for his doctoring services. When Mal investigates Simon's cargo he finds a naked woman...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":10355},{"seriesId":129,"episodeFileId":6661,"seasonNumber":1,"episodeNumber":12,"title":"Heart of Gold","airDate":"2003-06-23","airDateUtc":"2003-06-23T04:00:00Z","overview":"The crew of the Serenity are in for a gunfight when one of Inara's companion colleagues asks for their help. The Serenity crew defends a bordello from a gunslinger who got a prostitute pregnant and now intends to collect the child; Mal falls for the bordello's madam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":10356},{"seriesId":129,"episodeFileId":6662,"seasonNumber":1,"episodeNumber":13,"title":"Trash","airDate":"2003-07-21","airDateUtc":"2003-07-21T04:00:00Z","overview":"Saffron (from \"Our Mrs. Reynolds\") returns - after Mal breaks up her current gig, she convinces him and the crew to help out with a \"\"perfect crime\"\" that isn't. The crime: go to Bellerophon and steal a criminal's prototype laser gun from his collection. The plan: Saffron and Mal sneak in and dump the gun down the trash, bypassing security, and the Serenity crew grab it from the disposal system. Of course, this is Saffron, and it turns out she's married to the crook, Durran, and plans to double-cross Mal. Things don't work out so well and Saffron strands Mal naked in the desert. Fortunately Mal and Inara anticipated a betrayal and set it up so Inara grabs the gun, leaves Saffron behind, and rescues Mal.\r\nMeanwhile, Simon figures out Jayne betrayed them (in \"Ariel\") and the two have words.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":10357},{"seriesId":129,"episodeFileId":6663,"seasonNumber":1,"episodeNumber":14,"title":"The Message","airDate":"2003-07-28","airDateUtc":"2003-07-28T04:00:00Z","overview":"An old war comrade of Mal's and Zoe's, Tracey, mails his corpse to them. He also leaves a message asking them to deliver his body to his family. Some men claiming to be with the Alliance is on the trail of the body and catch up to them demanding the body. The crew can't find anything on Tracey's corpse, but as they prepare to cut it open, Tracey comes back to life. He explains he is smuggling super-organs in his own body. They flee to the planet with the men in hot pursuit and eventually\/supposedly agree to give up Tracey. Tracey gets wind of the plan and makes a break for it with Kaylee as a hostage, they shoot him down and Mal reveals they were going to send the officer off since he's out of his jurisdiction and on a personal mission with no authority. Then Tracey dies and they deliver his body for real this time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":10358},{"seriesId":129,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Serenity","airDate":"2005-09-30","airDateUtc":"2005-09-30T04:00:00Z","overview":"In the future, when a passenger with a deadly secret. Six rebels on the run. An assassin in pursuit. When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an awesome action-packed battle between the relentless military might of a totalitarian regime who will destroy anything - or anyone - to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But, the greatest danger of all may be on their ship.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":10341},{"seriesId":129,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Done the Impossible","airDate":"2006-07-28","airDateUtc":"2006-07-28T04:00:00Z","overview":"\"Done the Impossible\" is a documentary fan film of the TV series \"Firefly\". Its main focus is on the fans themselves, and how they came to love the show and, ultimately, played a part in getting the film \"Serenity\" made.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21373},{"seriesId":129,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Browncoats Unite","airDate":"2012-11-11","airDateUtc":"2012-11-11T05:00:00Z","overview":"Before the San Diego Comic-Con of 2012, the cast of Firefly unite after 10 years to discuss the lasting impact of one of the most short-lived, yet somehow massively influential and beloved shows of all time. Several cast members not present are interviewed and added to the presentation.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10343}],"episodeFile":[{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02.The Train Job + Bushwhacked-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E01E02.The Train Job + Bushwhacked-HDTV-1080p.mkv","size":916914618,"dateAdded":"2019-02-06T14:19:18.665557Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":188040,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1199280,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:26:42","scanType":"","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6651},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Our Mrs. Reynolds-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E03.Our Mrs. Reynolds-HDTV-1080p.mkv","size":453598316,"dateAdded":"2019-02-06T14:19:33.882496Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1199996,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:43","scanType":"","subtitles":"English \/ Dutch \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6652},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Jaynestown-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E04.Jaynestown-HDTV-1080p.mkv","size":467660456,"dateAdded":"2019-02-06T14:19:36.26133Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":197639,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1200478,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:54","scanType":"","subtitles":"English \/ Dutch \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6653},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Out of Gas-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E05.Out of Gas-HDTV-1080p.mkv","size":472659011,"dateAdded":"2019-02-06T14:20:03.095382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":209157,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1200295,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English \/ Dutch \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6654},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Shindig-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E06.Shindig-HDTV-1080p.mkv","size":469939865,"dateAdded":"2019-02-06T14:20:05.558981Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1198936,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6655},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Safe-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E07.Safe-HDTV-1080p.mkv","size":482817479,"dateAdded":"2019-02-06T14:20:08.146022Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":199210,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1198478,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:56","scanType":"","subtitles":"English \/ Dutch \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6656},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Ariel-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E08.Ariel-HDTV-1080p.mkv","size":468654034,"dateAdded":"2019-02-06T14:20:35.446311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":198013,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1198505,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:58","scanType":"","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6657},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E09.War Stories-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E09.War Stories-HDTV-1080p.mkv","size":485273591,"dateAdded":"2019-02-06T14:20:38.076564Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":204083,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1198684,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:57","scanType":"","subtitles":"English \/ Dutch \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6658},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Objects in Space-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E10.Objects in Space-HDTV-1080p.mkv","size":462107426,"dateAdded":"2019-02-06T14:20:40.584171Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":214858,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1199904,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:50","scanType":"","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6659},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Serenity-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E11.Serenity-HDTV-1080p.mkv","size":471969547,"dateAdded":"2019-02-06T14:21:16.344839Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":200349,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1200533,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:54","scanType":"","subtitles":"English \/ Dutch \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6660},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Heart of Gold-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E12.Heart of Gold-HDTV-1080p.mkv","size":465830625,"dateAdded":"2019-02-06T14:21:27.522868Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":196470,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1199402,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:43","scanType":"","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6661},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Trash-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E13.Trash-HDTV-1080p.mkv","size":487406035,"dateAdded":"2019-02-06T14:21:40.038643Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":203667,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1198089,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:05","scanType":"","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6662},{"seriesId":129,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Message-HDTV-1080p.mkv","path":"\/tv\/Firefly\/Season 01\/S01E14.The Message-HDTV-1080p.mkv","size":454414700,"dateAdded":"2019-02-06T14:21:49.350332Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":205001,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1199358,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:28","scanType":"","subtitles":"English \/ Dutch \/ French \/ German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6663}],"queue":[]},"102":{"series":{"title":"Death Note","alternateTitles":[{"title":"Death Note 2015","seasonNumber":-1}],"sortTitle":"death note","status":"ended","ended":true,"overview":"Light Yagami is an ace student with great prospects, who's bored out of his mind. One day he finds the \"Death Note\": a notebook from the realm of the Death Gods, with the power to kill people in any way he desires. With the Death Note in hand, Light decides to create his perfect world, without crime or criminals. However, when criminals start dropping dead one by one, the authorites send the legendary detective L to track down the killer, and a battle of wits, deception and logic ensues...","previousAiring":"2007-06-26T16:00:00Z","network":"Nippon TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/105\/banner.jpg?lastWrite=637103832517317050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79481-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/105\/poster.jpg?lastWrite=637652310487396270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79481-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/105\/fanart.jpg?lastWrite=637103832514997100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79481-15.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-06-26T16:00:00Z","episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":51702808627,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Death Note","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":79481,"tvRageId":13555,"tvMazeId":40,"firstAired":"2006-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"deathnote","imdbId":"tt0877057","titleSlug":"death-note","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Crime","Drama","Fantasy","Suspense","Thriller"],"tags":[],"added":"2018-10-24T16:39:48.361286Z","ratings":{"votes":21749,"value":9.0},"statistics":{"seasonCount":1,"episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":39,"sizeOnDisk":51702808627,"percentOfEpisodes":100.0},"id":105},"episodes":[{"seriesId":105,"episodeFileId":12580,"seasonNumber":1,"episodeNumber":1,"title":"Rebirth","airDate":"2006-10-04","airDateUtc":"2006-10-03T16:00:00Z","overview":"Light Yagami is a high school genius bored with life in general. Ryuk, a shinigami, is also bored, so he decides to drop his Death Note (a notebook shinigami use to kill humans) on Earth. Light finds this mysterious book and decides to rid the world of all wicked people and rule a utopia as a god.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":7939},{"seriesId":105,"episodeFileId":12581,"seasonNumber":1,"episodeNumber":2,"title":"Confrontation","airDate":"2006-10-11","airDateUtc":"2006-10-10T16:00:00Z","overview":"Light falls into the first of many of L's attempts to uncover him from his Kira alter ego.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":7940},{"seriesId":105,"episodeFileId":12582,"seasonNumber":1,"episodeNumber":3,"title":"Dealings","airDate":"2006-10-18","airDateUtc":"2006-10-17T16:00:00Z","overview":"Ryuk informs Light that he's being followed and asks Light if he wants to make a trade for his own Shinigami eyes. But at what cost?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":7941},{"seriesId":105,"episodeFileId":12583,"seasonNumber":1,"episodeNumber":4,"title":"Pursuit","airDate":"2006-10-25","airDateUtc":"2006-10-24T16:00:00Z","overview":"Light creates a complex plan involving the Death Note and another criminal to try and expose his follower's name and identity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":7942},{"seriesId":105,"episodeFileId":12584,"seasonNumber":1,"episodeNumber":5,"title":"Tactics","airDate":"2006-11-01","airDateUtc":"2006-10-31T16:00:00Z","overview":"After finding the true identity of his follower, Light uses him to deal a major blow to the rest of his enemies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":7943},{"seriesId":105,"episodeFileId":12585,"seasonNumber":1,"episodeNumber":6,"title":"Unraveling","airDate":"2006-11-08","airDateUtc":"2006-11-07T16:00:00Z","overview":"Furthering the Kira investigation, the remaining police force finally meets L.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":7944},{"seriesId":105,"episodeFileId":12586,"seasonNumber":1,"episodeNumber":7,"title":"Overcast","airDate":"2006-11-15","airDateUtc":"2006-11-14T16:00:00Z","overview":"Light meets Penber's fiance \u2014 an ex-officer who is determined to hunt down Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":7945},{"seriesId":105,"episodeFileId":12587,"seasonNumber":1,"episodeNumber":8,"title":"Glare","airDate":"2006-11-22","airDateUtc":"2006-11-21T16:00:00Z","overview":"Discovering that L has went so far as to tap his room with cameras, Light comes up with a plan to throw off his suspicions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":7946},{"seriesId":105,"episodeFileId":12588,"seasonNumber":1,"episodeNumber":9,"title":"Encounter","airDate":"2006-11-29","airDateUtc":"2006-11-28T16:00:00Z","overview":"Still suspicious of Light's too-perfect behavior, L decides to take drastic measures and enters the same university to meet Light face to face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":7947},{"seriesId":105,"episodeFileId":12589,"seasonNumber":1,"episodeNumber":10,"title":"Doubt","airDate":"2006-12-06","airDateUtc":"2006-12-05T16:00:00Z","overview":"L begins to profile Light through a game of tennis, and brings up some questions regarding the Kira case hoping to figure out the truth about him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":7948},{"seriesId":105,"episodeFileId":12590,"seasonNumber":1,"episodeNumber":11,"title":"Assault","airDate":"2006-12-13","airDateUtc":"2006-12-12T16:00:00Z","overview":"The Sakura TV station plans to air Kira's home-made videos. Little do they know that the videos will bring more than ratings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":7949},{"seriesId":105,"episodeFileId":12591,"seasonNumber":1,"episodeNumber":12,"title":"Love","airDate":"2006-12-27","airDateUtc":"2006-12-26T16:00:00Z","overview":"After seeing the message \"Kira\" sent, the task force decide to make a reply and adds Light to the force. Yet while the task force and L try to find the fake \"Kira\" Light has to find her first or else the existence of the Death Note will be revealed!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":7950},{"seriesId":105,"episodeFileId":12592,"seasonNumber":1,"episodeNumber":13,"title":"Confession","airDate":"2007-01-10","airDateUtc":"2007-01-09T16:00:00Z","overview":"The Task Force and Light continue to try and find the second Kira based on the evidence they keep receiving from him. Little do the other officers know that Light wants to find him for the sake of bettering his position as Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":7951},{"seriesId":105,"episodeFileId":12593,"seasonNumber":1,"episodeNumber":14,"title":"Friend","airDate":"2007-01-17","airDateUtc":"2007-01-16T16:00:00Z","overview":"Light furthers his plans as Kira after meeting with the very annoying second Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":7952},{"seriesId":105,"episodeFileId":12594,"seasonNumber":1,"episodeNumber":15,"title":"Wager","airDate":"2007-01-24","airDateUtc":"2007-01-23T16:00:00Z","overview":"Light tries using the second Kira to find out L's real name. However, L is well prepared for Kira's next move and is able to get one of the Kiras in his custody soon enough.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":7953},{"seriesId":105,"episodeFileId":12595,"seasonNumber":1,"episodeNumber":16,"title":"Decision","airDate":"2007-01-31","airDateUtc":"2007-01-30T16:00:00Z","overview":"After renouncing ownership of both Death Notes, Light turns himself in to L and is imprisoned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":7954},{"seriesId":105,"episodeFileId":12596,"seasonNumber":1,"episodeNumber":17,"title":"Execution","airDate":"2007-02-07","airDateUtc":"2007-02-06T16:00:00Z","overview":"Getting nowhere fast, L thinks of a new plan to get Misa, Light, and Mr. Yagami out of confinement. Meanwhile, Rem finds a new person to play as Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":7955},{"seriesId":105,"episodeFileId":12597,"seasonNumber":1,"episodeNumber":18,"title":"Ally","airDate":"2007-02-14","airDateUtc":"2007-02-13T16:00:00Z","overview":"Tensions rise among the Task Force as the Kira investigation continues with the close surveillance of the Yotsuba corporation. But when the Force finds that the police are no longer supporting the case, the members are forced to choose between keeping their jobs or resigning to continue searching for Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":7956},{"seriesId":105,"episodeFileId":12598,"seasonNumber":1,"episodeNumber":19,"title":"Matsuda","airDate":"2007-02-21","airDateUtc":"2007-02-20T16:00:00Z","overview":"Matsuda makes the Kira investigation more difficult for the Task Force when he gets himself captured by the Yotsuba corporation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":7957},{"seriesId":105,"episodeFileId":12599,"seasonNumber":1,"episodeNumber":20,"title":"Makeshift","airDate":"2007-02-28","airDateUtc":"2007-02-27T16:00:00Z","overview":"L has bugged the secret meeting in the Yotsuba corporation and the task force is divided between those who want to stop the killing by arresting the 7 members of the Yotsuba corporation and those who want to wait to know who is actually Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":7958},{"seriesId":105,"episodeFileId":12600,"seasonNumber":1,"episodeNumber":21,"title":"Performance","airDate":"2007-03-07","airDateUtc":"2007-03-06T16:00:00Z","overview":"The Task Force uses Misa as a way to get closer to the Yotsuba corporation. But things get complicated when Rem tries to communicate with her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":7959},{"seriesId":105,"episodeFileId":12601,"seasonNumber":1,"episodeNumber":22,"title":"Guidance","airDate":"2007-03-14","airDateUtc":"2007-03-13T16:00:00Z","overview":"Thanks to Misa, the Task Force now knows the identity of the new Kira and L plans an elaborate scheme to smoke him out of hiding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":7960},{"seriesId":105,"episodeFileId":12602,"seasonNumber":1,"episodeNumber":23,"title":"Frenzy","airDate":"2007-03-21","airDateUtc":"2007-03-20T16:00:00Z","overview":"L and the Task Force close in on Higuchi who continues to play into their hands. But as time before Kira's identity is revealed on Sakura TV gets closer, Higuchi gets desperate and makes the deal for shinigami eyes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":7961},{"seriesId":105,"episodeFileId":12603,"seasonNumber":1,"episodeNumber":24,"title":"Revival","airDate":"2007-03-28","airDateUtc":"2007-03-27T16:00:00Z","overview":"While Higuchi is finally captured, Light inadvertently regains his memories as Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":7962},{"seriesId":105,"episodeFileId":12604,"seasonNumber":1,"episodeNumber":25,"title":"Silence","airDate":"2007-04-04","airDateUtc":"2007-04-03T16:00:00Z","overview":"L continues to interrogate Rem, while Light manipulates Rem into killing off the greatest obstacles in his way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":7963},{"seriesId":105,"episodeFileId":12605,"seasonNumber":1,"episodeNumber":26,"title":"Renewal","airDate":"2007-04-11","airDateUtc":"2007-04-10T16:00:00Z","overview":"A transmission intended for L's successor shows all of L's findings on the Kira case. Afterwards, Light furthers his plans for a utopia, dividing the world into those who support and those who fear Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":7964},{"seriesId":105,"episodeFileId":12606,"seasonNumber":1,"episodeNumber":27,"title":"Abduction","airDate":"2007-04-18","airDateUtc":"2007-04-17T16:00:00Z","overview":"Five years later, two new enemies prepare themselves to challenge Kira. While one tries to find Kira with the help of the newly established group, the SPK, the other takes a more drastic measure by kidnapping someone very close to Soichiro and Light.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":7965},{"seriesId":105,"episodeFileId":12607,"seasonNumber":1,"episodeNumber":28,"title":"Impatience","airDate":"2007-04-25","airDateUtc":"2007-04-24T16:00:00Z","overview":"Near collaborates with Light in order to rescue Sayu, who is being held hostage in exchange for the Death Note.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":7966},{"seriesId":105,"episodeFileId":12608,"seasonNumber":1,"episodeNumber":29,"title":"Father","airDate":"2007-05-02","airDateUtc":"2007-05-01T16:00:00Z","overview":"Mortified over allowing the Death Note to fall into Mello's hands in order to save his daughter, Soichiro puts himself into harm's way in order to get it back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":7967},{"seriesId":105,"episodeFileId":12609,"seasonNumber":1,"episodeNumber":30,"title":"Justice","airDate":"2007-05-09","airDateUtc":"2007-05-08T16:00:00Z","overview":"Tensions heat up between Light and Near as Near collects more details on the Death Note. Information insults fly back and forth, and Light is forced to act, in fear that his identity as Kira and L will be exposed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":7968},{"seriesId":105,"episodeFileId":12610,"seasonNumber":1,"episodeNumber":31,"title":"Transfer","airDate":"2007-05-16","airDateUtc":"2007-05-15T16:00:00Z","overview":"Kira's plan to kill Near backfires and suspicions arise in the Japan Headquarters concerning Kira\u2019s true identity in Light. Kira realizes he must hand off the Death Note once again and finds a new follower.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":7969},{"seriesId":105,"episodeFileId":12611,"seasonNumber":1,"episodeNumber":32,"title":"Selection","airDate":"2007-05-23","airDateUtc":"2007-05-22T16:00:00Z","overview":"Teru Mikami has always had a sense of justice and brought it upon himself to distinguish between good and evil. Now a grown adult, Teru serves under Kira and uses his newly acquired powers to choose a Kira spokesperson to replace Demegawa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":7970},{"seriesId":105,"episodeFileId":12612,"seasonNumber":1,"episodeNumber":33,"title":"Scorn","airDate":"2007-05-30","airDateUtc":"2007-05-29T16:00:00Z","overview":"Near comes closer and closer to the truth about who is who. He lays traps for Kira as Kira does the same for Near, setting the stage for the mounting final battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":7971},{"seriesId":105,"episodeFileId":12613,"seasonNumber":1,"episodeNumber":34,"title":"Vigilance","airDate":"2007-06-06","airDateUtc":"2007-06-05T16:00:00Z","overview":"It is confirmed within the task force that Light is up to something in his meetings with Kiyomi. After exhaustive research, Near decides he can move into the final stages of his plan to expose and humiliate Kira.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":7972},{"seriesId":105,"episodeFileId":12614,"seasonNumber":1,"episodeNumber":35,"title":"Malice","airDate":"2007-06-13","airDateUtc":"2007-06-12T16:00:00Z","overview":"Light and Near agree upon a meeting place for the final confrontation. A key player is kidnapped and the end results are shocking.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":7973},{"seriesId":105,"episodeFileId":12615,"seasonNumber":1,"episodeNumber":36,"title":"1.28","airDate":"2007-06-20","airDateUtc":"2007-06-19T16:00:00Z","overview":"The Japanese Task Force and the SPK finally meet at YellowBox Warehouse on January 28th. However, a third party has come to the warehouse as well, on Kira's orders to kill everyone else there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":7974},{"seriesId":105,"episodeFileId":12616,"seasonNumber":1,"episodeNumber":37,"title":"New World","airDate":"2007-06-27","airDateUtc":"2007-06-26T16:00:00Z","overview":"The climactic battle between Light Yagami and L's successors finally comes to a close.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":7975},{"seriesId":105,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Death Note Relight 1: Visions of a God","airDate":"2007-08-31","airDateUtc":"2007-08-30T16:00:00Z","overview":"A special two hour episode of Death Note, mainly a compilation of the confrontations between Light and L, re-edited from Ryuk's perspective with new dialogue and soundtrack along with additional animation that could not be included in the original series. \r\n\r\nAn Unnamed Shinigami comes to Ryuk to question him about his new story in the human world.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":7934},{"seriesId":105,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Death Note Relight 2: L's Successors","airDate":"2008-08-22","airDateUtc":"2008-08-21T16:00:00Z","overview":"A sequel to the previous \"Death Note Rewrite.\" This story continues where the previous left off, continuing the story of Light. \r\n\r\nAs the previous special told Light and L's battles, this story does the same with the conflicts between Light, Mello, and Near","hasFile":false,"monitored":false,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":7935}],"episodeFile":[{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Rebirth-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E01.Rebirth-HDTV-1080p.mkv","size":1399266523,"dateAdded":"2020-02-27T00:32:04.678195Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12580},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Confrontation-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E02.Confrontation-HDTV-1080p.mkv","size":1399495041,"dateAdded":"2020-02-27T00:32:14.772876Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12581},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Dealings-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E03.Dealings-HDTV-1080p.mkv","size":1400325681,"dateAdded":"2020-02-27T00:32:41.268128Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12582},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Pursuit-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E04.Pursuit-HDTV-1080p.mkv","size":1395433951,"dateAdded":"2020-02-27T00:33:20.567069Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12583},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Tactics-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E05.Tactics-HDTV-1080p.mkv","size":1398465720,"dateAdded":"2020-02-27T00:33:47.53742Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12584},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Unraveling-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E06.Unraveling-HDTV-1080p.mkv","size":1395325089,"dateAdded":"2020-02-27T00:34:05.565703Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12585},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Overcast-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E07.Overcast-HDTV-1080p.mkv","size":1399893050,"dateAdded":"2020-02-27T00:34:34.424676Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12586},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Glare-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E08.Glare-HDTV-1080p.mkv","size":1397138357,"dateAdded":"2020-02-27T00:34:56.685572Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12587},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Encounter-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E09.Encounter-HDTV-1080p.mkv","size":1398982334,"dateAdded":"2020-02-27T00:35:26.304633Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12588},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Doubt-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E10.Doubt-HDTV-1080p.mkv","size":1399700745,"dateAdded":"2020-02-27T00:35:49.740624Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12589},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Assault-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E11.Assault-HDTV-1080p.mkv","size":1399109436,"dateAdded":"2020-02-27T00:36:26.153781Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12590},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Love-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E12.Love-HDTV-1080p.mkv","size":1400282536,"dateAdded":"2020-02-27T00:36:42.09985Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12591},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Confession-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E13.Confession-HDTV-1080p.mkv","size":1399231727,"dateAdded":"2020-02-27T00:37:00.349971Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12592},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Friend-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E14.Friend-HDTV-1080p.mkv","size":1400027837,"dateAdded":"2020-02-27T00:38:03.338506Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12593},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Wager-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E15.Wager-HDTV-1080p.mkv","size":1396017614,"dateAdded":"2020-02-27T00:38:34.945308Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12594},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Decision-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E16.Decision-HDTV-1080p.mkv","size":1397715863,"dateAdded":"2020-02-27T00:39:06.329582Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12595},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Execution-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E17.Execution-HDTV-1080p.mkv","size":1399153934,"dateAdded":"2020-02-27T00:39:44.068148Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12596},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Ally-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E18.Ally-HDTV-1080p.mkv","size":1401100907,"dateAdded":"2020-02-27T00:40:19.428388Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12597},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Matsuda-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E19.Matsuda-HDTV-1080p.mkv","size":1398648468,"dateAdded":"2020-02-27T00:40:51.828999Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12598},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Makeshift-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E20.Makeshift-HDTV-1080p.mkv","size":1396479627,"dateAdded":"2020-02-27T00:41:18.627843Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12599},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Performance-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E21.Performance-HDTV-1080p.mkv","size":1400054502,"dateAdded":"2020-02-27T00:41:47.232976Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12600},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Guidance-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E22.Guidance-HDTV-1080p.mkv","size":1392793810,"dateAdded":"2020-02-27T00:42:19.433069Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12601},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Frenzy-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E23.Frenzy-HDTV-1080p.mkv","size":1394835451,"dateAdded":"2020-02-27T00:42:39.472904Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12602},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Revival-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E24.Revival-HDTV-1080p.mkv","size":1396889090,"dateAdded":"2020-02-27T00:42:53.192031Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12603},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Silence-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E25.Silence-HDTV-1080p.mkv","size":1390436267,"dateAdded":"2020-02-27T00:43:09.184184Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12604},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Renewal-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E26.Renewal-HDTV-1080p.mkv","size":1392728434,"dateAdded":"2020-02-27T00:43:22.178452Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12605},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E27.Abduction-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E27.Abduction-HDTV-1080p.mkv","size":1400139819,"dateAdded":"2020-02-27T00:43:33.036626Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12606},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Impatience-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E28.Impatience-HDTV-1080p.mkv","size":1394817352,"dateAdded":"2020-02-27T00:43:48.000192Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12607},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E29.Father-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E29.Father-HDTV-1080p.mkv","size":1399834987,"dateAdded":"2020-02-27T00:44:01.02547Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12608},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Justice-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E30.Justice-HDTV-1080p.mkv","size":1397137216,"dateAdded":"2020-02-27T00:44:14.147123Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12609},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E31.Transfer-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E31.Transfer-HDTV-1080p.mkv","size":1400044188,"dateAdded":"2020-02-27T00:44:26.79212Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12610},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Selection-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E32.Selection-HDTV-1080p.mkv","size":1396537497,"dateAdded":"2020-02-27T00:44:40.325471Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12611},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E33.Scorn-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E33.Scorn-HDTV-1080p.mkv","size":1399981112,"dateAdded":"2020-02-27T00:44:54.686747Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12612},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Vigilance-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E34.Vigilance-HDTV-1080p.mkv","size":1395481228,"dateAdded":"2020-02-27T00:45:06.093614Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12613},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Malice-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E35.Malice-HDTV-1080p.mkv","size":1401285760,"dateAdded":"2020-02-27T00:45:20.018786Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12614},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E36.1.28-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E36.1.28-HDTV-1080p.mkv","size":1396952367,"dateAdded":"2020-02-27T00:45:32.945987Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12615},{"seriesId":105,"seasonNumber":1,"relativePath":"Season 01\/S01E37.New World-HDTV-1080p.mkv","path":"\/tv\/Death Note\/Season 01\/S01E37.New World-HDTV-1080p.mkv","size":1381065107,"dateAdded":"2020-02-27T00:45:45.09917Z","releaseGroup":"Ryuuga","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12616}],"queue":[]},"104":{"series":{"title":"Blood Blockade Battlefront","alternateTitles":[{"title":"Kekkai Sensen & Beyond","sceneSeasonNumber":2},{"title":"Kekkai Sensen","sceneSeasonNumber":1},{"title":"Bloodline Battlefront","sceneSeasonNumber":1},{"title":"Blood Blockade Battlefront & Beyond","sceneSeasonNumber":2}],"sortTitle":"blood blockade battlefront","status":"ended","ended":true,"overview":"A breach between Earth and the netherworlds has opened up over the city of New York, trapping New Yorkers and creatures from other dimensions in an impenetrable bubble. They've lived together for years, in a world of crazy crime sci-fi sensibilities. Now someone is threatening to sever the bubble, and a group of stylish superhumans is working to keep it from happening.","previousAiring":"2017-12-23T15:00:00Z","network":"MBS","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/96\/banner.jpg?lastWrite=637103832373239660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/289886-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/96\/poster.jpg?lastWrite=637103832376679600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/289886-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/96\/fanart.jpg?lastWrite=636751293926031430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/289886-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2015-06-13T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":4,"sizeOnDisk":2004044645,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-10-03T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":5296699635,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-12-23T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6627536017,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Blood Blockade Battlefront","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":289886,"tvRageId":48051,"tvMazeId":1940,"firstAired":"2015-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"bloodblockadebattlefront","imdbId":"tt4379632","titleSlug":"blood-blockade-battlefront","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Anime","Fantasy"],"tags":[],"added":"2018-10-14T15:56:31.256679Z","ratings":{"votes":221,"value":9.1},"statistics":{"seasonCount":2,"episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":28,"sizeOnDisk":13928280297,"percentOfEpisodes":100.0},"id":96},"episodes":[{"seriesId":96,"episodeFileId":13253,"seasonNumber":1,"episodeNumber":1,"title":"Secret Society of the Magic-Sealed City","airDate":"2015-04-05","airDateUtc":"2015-04-04T15:00:00Z","overview":"Leonard Watch, an ordinary aspiring reporter, moves to Jerusalem's Lot, a city created by the intersection of worlds where New York City once stood, and through a series of lucky coincidences, is recruited into the secret society named \"Libra.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6902},{"seriesId":96,"episodeFileId":13255,"seasonNumber":1,"episodeNumber":2,"title":"After the Phantom Ghost Wagon","airDate":"2015-04-12","airDateUtc":"2015-04-11T15:00:00Z","overview":"While Zapp makes Leo's daytime job delivering pizzas a living hell, they spot a dry cleaning van that is more than it appears to be. When Leo is kidnapped, the rest of the Libra team must work together to rescue him from his captors.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6903},{"seriesId":96,"episodeFileId":13257,"seasonNumber":1,"episodeNumber":3,"title":"A Game Between Two Worlds","airDate":"2015-04-19","airDateUtc":"2015-04-18T15:00:00Z","overview":"When the president is attacked by a man under the influence of a powerful synthetic drug called Angel Scale, Klaus and K.K. travel to the alterworld to challenge a Beyondian big wheel to a game of Prosfair in order to uncover the source of the drug.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6904},{"seriesId":96,"episodeFileId":13259,"seasonNumber":1,"episodeNumber":4,"title":"Blood Line Fever","airDate":"2015-04-26","airDateUtc":"2015-04-25T15:00:00Z","overview":"The members of Libra discover, thanks to Leo's power, that vampires appeared in the city and the vampire hunter Blitz \"Lucky\" Abrahms arrives to assist them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6905},{"seriesId":96,"episodeFileId":13262,"seasonNumber":1,"episodeNumber":5,"title":"The Tremorous Blood Hammer","airDate":"2015-05-03","airDateUtc":"2015-05-02T15:00:00Z","overview":"Aligura, the Queen of Monomania, is on the hunt to find her creation, Brody & Hummer, and her monster truck is tearing up anything that gets in her way! Meanwhile, Femt and the King of Despair make some secret plans of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6906},{"seriesId":96,"episodeFileId":13264,"seasonNumber":1,"episodeNumber":6,"title":"Don't forget to Don't forget me","airDate":"2015-05-10","airDateUtc":"2015-05-09T15:00:00Z","overview":"While out buying lunch for Zapp and himself, Leo befriends a mushroom-like Beyondian named Nej, who has a craving for hamburgers, but is unable to buy them from the segregated 42nd Street quarter where they are sold.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6907},{"seriesId":96,"episodeFileId":13266,"seasonNumber":1,"episodeNumber":7,"title":"A No-Holds-Barred Eden","airDate":"2015-05-17","airDateUtc":"2015-05-16T15:00:00Z","overview":"Chasing down a rescue request from Zapp, Klaus and Leo find themselves in an underground cage-fighting arena, with Klaus winding up in the ring. Black and Leo hit it off over lunch at the diner, and learn that they have much in common.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6908},{"seriesId":96,"episodeFileId":13267,"seasonNumber":1,"episodeNumber":8,"title":"Z's Longest Day (Part 1)","airDate":"2015-05-24","airDateUtc":"2015-05-23T15:00:00Z","overview":"As Zapp's profligate lifestyle starts catching up with him, word comes in that a Blood Breed attack is coming to Hellsalem's Lot, but that someone outside of Libra is also involved. Black speaks to White about their relationship with Leo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6909},{"seriesId":96,"episodeFileId":13270,"seasonNumber":1,"episodeNumber":9,"title":"Z's Longest Day (Part 2)","airDate":"2015-05-31","airDateUtc":"2015-05-30T15:00:00Z","overview":"While a crowd looks on, an airplane attempting to fly into Hellsalem's Lot carries Jugei's junior pupil--and the top half of the Blood Breed Libra was fighting! The King of Despair continues setting his plan in motion. The Libra team gains a new member.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6910},{"seriesId":96,"episodeFileId":13272,"seasonNumber":1,"episodeNumber":10,"title":"Run! Lunch!! Run!!! \/ to the end.","airDate":"2015-06-07","airDateUtc":"2015-06-06T15:00:00Z","overview":"Zapp, Leo, and Zed embark upon a quest to find an agreeable restaurant at which to have lunch. Klaus, Starphase, and Abrams meet with the League of High Order Spirituals to confer about their concerns pertaining to the barrier surrounding the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6911},{"seriesId":96,"episodeFileId":4974,"seasonNumber":0,"episodeNumber":1,"title":"Even These Are the Worst and the Best Days Ever","airDate":"2015-06-14","airDateUtc":"2015-06-13T15:00:00Z","overview":"A nervous Leo calls into a radio advice column show and reflects on his time spent in Hellsalem's Lot, his dealings with his co-workers, and his interactions with Black and White up to this point. \r\n\r\n(Episode 10.5 - a recap episode of episodes 1 through 10)","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":6926},{"seriesId":96,"episodeFileId":13274,"seasonNumber":1,"episodeNumber":11,"title":"Paint it Black","airDate":"2015-06-21","airDateUtc":"2015-06-20T15:00:00Z","overview":"Growing up on their parents' ranch, White struggles with being the only member of her family without the gift of psychic abilities, while Black is reluctant to stick up for himself and develop his own powers to their fullest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6912},{"seriesId":96,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Special Program","airDate":"2015-07-05","airDateUtc":"2015-07-04T15:00:00Z","overview":"(Special episode aired instead of the too long Episode 12)\r\n\r\nYuuma Uchida narrated the episode and reintroduced the characters. The episode also contained:\r\n\r\n- interview with Rikiya Koyama (Klaus) and Daisuke Sakaguchi (Leonardo) voice actors\r\n\r\n- interview with Taisei Iwasaki music composer\r\n\r\n- interview with Unison\u2026","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6927},{"seriesId":96,"episodeFileId":13275,"seasonNumber":1,"episodeNumber":12,"title":"Hello, World!","airDate":"2015-10-04","airDateUtc":"2015-10-03T15:00:00Z","overview":"The members of Libra gather to defend Leo as he rushes to reach the King of Despair in order to confront him, not only for Black and White's sake, but to save the city as well.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6913},{"seriesId":96,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"King of the Restaurant of Kings","airDate":"2016-06-03","airDateUtc":"2016-06-02T15:00:00Z","overview":"The episode, titled \"Ousama no Restaurant no Ousama,\" will be released on June 3, 2016, with the Kekkai Sensen guide book titled Blood Blockade Battlefront Binge Bible. It adapts a story from the eighth volume of the manga. Rie Matsumoto returns to direct the episode, which will be animated by studio Bones.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11965},{"seriesId":96,"episodeFileId":13254,"seasonNumber":2,"episodeNumber":1,"title":"Lights, Camera, Action!","airDate":"2017-10-08","airDateUtc":"2017-10-07T15:00:00Z","overview":"Femt releases demonbeasts upon the city. The US presidential envoy to Hellsalem's Lot goes missing, and it's up to Leo and the other members of Libra to get him to his function at Federal Hall in time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6914},{"seriesId":96,"episodeFileId":13256,"seasonNumber":2,"episodeNumber":2,"title":"A Phantom Hospital Ward Rises","airDate":"2017-10-15","airDateUtc":"2017-10-14T15:00:00Z","overview":"When Zapp is critically injured, he is taken to a hospital that Klaus and Steven have been searching for since the Great Collapse three years previous. Klaus and Steven recount the events of the Great Collapse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6915},{"seriesId":96,"episodeFileId":13258,"seasonNumber":2,"episodeNumber":3,"title":"Day In Day Out","airDate":"2017-10-22","airDateUtc":"2017-10-21T15:00:00Z","overview":"Steven throws a party for his friends outside of work. Leo has his wallet, including his allowance to Michella, stolen by some out-of-towners. Zapp must help track down a pet cat. Chain gets into a drinking contest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6916},{"seriesId":96,"episodeFileId":13260,"seasonNumber":2,"episodeNumber":4,"title":"Werewolf Mission: Chainpossible","airDate":"2017-10-29","airDateUtc":"2017-10-28T15:00:00Z","overview":"The general of a hostile foreign power is visited in the middle of the night by a team of invisible werewolves, including Chain. When his aggression continues, it's up to the werewolves again to put a stop to his actions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6917},{"seriesId":96,"episodeFileId":13261,"seasonNumber":2,"episodeNumber":5,"title":"One Butler's Blitzkrieg","airDate":"2017-11-05","airDateUtc":"2017-11-04T15:00:00Z","overview":"After Gilbert is injured, Philip, a substitute butler, is sent from the Reinherz estate to cover for him. As Philip tries to settle into the city, he has difficulty adjusting to the necessities of the Libra workplace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6918},{"seriesId":96,"episodeFileId":13263,"seasonNumber":2,"episodeNumber":6,"title":"Get the Lock Out!!","airDate":"2017-11-12","airDateUtc":"2017-11-11T15:00:00Z","overview":"Leo receives some disheartening news about the chances of reversing Michella's condition. An unexpected intruder takes control of Libra's offices, activating the security measures and barring anyone from getting in.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6919},{"seriesId":96,"episodeFileId":13265,"seasonNumber":2,"episodeNumber":7,"title":"Branchial Blues","airDate":"2017-11-19","airDateUtc":"2017-11-18T15:00:00Z","overview":"After Zapp complains about subsidizing the cost of Zed's special needs, Zed goes job hunting, and ends up having his breathing apparatus stolen from him, leaving it to Leo and the others to track it down and retrieve it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6920},{"seriesId":96,"episodeFileId":13268,"seasonNumber":2,"episodeNumber":8,"title":"Desperate Fight in the Macro Zone (Part 1)","airDate":"2017-11-26","airDateUtc":"2017-11-25T15:00:00Z","overview":"Leo and his friend, Riel, are mugged, following which Leo is hit on the head by a spherical vehicle piloted by a microscopic doctor. Meanwhile, a microscopic scientists offers Riel the chance to become something more.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6921},{"seriesId":96,"episodeFileId":13269,"seasonNumber":2,"episodeNumber":9,"title":"Desperate Fight in the Macro Zone (Part 2)","airDate":"2017-12-03","airDateUtc":"2017-12-02T15:00:00Z","overview":"Now that Riel has grown to a colossal size, Gemnemo tries to get inside his head. When Chain is unavailable, it falls to Leo, Li Gado, and Sonic to find Gemnemo and put a stop to his plans before the city is destroyed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6922},{"seriesId":96,"episodeFileId":13271,"seasonNumber":2,"episodeNumber":10,"title":"BRATATAT MOM","airDate":"2017-12-10","airDateUtc":"2017-12-09T15:00:00Z","overview":"K.K. refuses to let an important mission stand between her and parents' day at her son's school. But can she find a way to balance her job and being a mother without violating the fragile trust her son places in her?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6923},{"seriesId":96,"episodeFileId":13273,"seasonNumber":2,"episodeNumber":11,"title":"Spectral Eyes, Phantom Vision (Part 1)","airDate":"2017-12-17","airDateUtc":"2017-12-16T15:00:00Z","overview":"When Leo calls Michella, she delivers a bombshell, informing him that she is on her way into the city. Klaus decides that they should be given protection during their reunion, where an even bigger surprise awaits.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6924},{"seriesId":96,"episodeFileId":4997,"seasonNumber":2,"episodeNumber":12,"title":"Spectral Eyes, Phantom Vision (Part 2)","airDate":"2017-12-24","airDateUtc":"2017-12-23T15:00:00Z","overview":"With his sister being held hostage, and no backup from Libra, Leo has no choice but to follow Dr. Gamimozu's orders. Will he allow himself to be operated on and take Toby's place in order to rescue Michella?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":6925},{"seriesId":96,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Blood Blockade Battlefront & Beyond OAD","airDate":"2018-07-04","airDateUtc":"2018-07-03T15:00:00Z","overview":"Zapp get confronted by two dangerous sisters on a double-date gone wrong. Chain enters a drinking competition to secure a bomb so that it doesn't fall into the wrong hands.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20804}],"episodeFile":[{"seriesId":96,"seasonNumber":0,"relativePath":"Specials\/S00E01.King of the Restaurant of Kings-HDTV-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Specials\/S00E01.King of the Restaurant of Kings-HDTV-1080p.mkv","size":2004044645,"dateAdded":"2018-10-19T11:56:35.048288Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1401732,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8791984,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:32","scanType":"Progressive","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4974},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Spectral Eyes, Phantom Vision, Part 2-HDTV-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E12.Spectral Eyes, Phantom Vision, Part 2-HDTV-1080p.mkv","size":2103514326,"dateAdded":"2018-10-19T11:56:35.69677Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":806097,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10221397,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4997},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Secret Society of the Magic-Sealed City-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E01.Secret Society of the Magic-Sealed City-Bluray-1080p.mkv","size":452100454,"dateAdded":"2020-05-03T10:21:17.7687Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":246669,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2206322,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13253},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Lights, Camera, Action!-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E01.Lights, Camera, Action!-Bluray-1080p.mkv","size":404586605,"dateAdded":"2020-05-03T10:21:33.924707Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":243804,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1982206,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13254},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Get that Phantom Ghost Wagon-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E02.Get that Phantom Ghost Wagon-Bluray-1080p.mkv","size":460479939,"dateAdded":"2020-05-03T10:21:38.449627Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":245750,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2253807,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13255},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E02.A Phantom Hospital Ward Rises-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E02.A Phantom Hospital Ward Rises-Bluray-1080p.mkv","size":415622780,"dateAdded":"2020-05-03T10:21:47.316508Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":244696,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2046708,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13256},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A Game Between Two Worlds-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E03.A Game Between Two Worlds-Bluray-1080p.mkv","size":460992849,"dateAdded":"2020-05-03T10:21:51.559973Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":254732,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2245430,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13257},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Day In Day Out-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E03.Day In Day Out-Bluray-1080p.mkv","size":374892439,"dateAdded":"2020-05-03T10:21:56.684909Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":243723,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1818789,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13258},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Blood Line Fever-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E04.Blood Line Fever-Bluray-1080p.mkv","size":463171571,"dateAdded":"2020-05-03T10:22:06.201129Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":250982,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2263509,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13259},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Werewolf Mission - Chainpossible-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E04.Werewolf Mission - Chainpossible-Bluray-1080p.mkv","size":433656420,"dateAdded":"2020-05-03T10:22:12.419763Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":243827,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2146790,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13260},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E05.One Butler's Blitzkrieg-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E05.One Butler's Blitzkrieg-Bluray-1080p.mkv","size":408846113,"dateAdded":"2020-05-03T10:22:19.532458Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":247571,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2003713,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13261},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Tremorous Blood Hammer-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E05.The Tremorous Blood Hammer-Bluray-1080p.mkv","size":393460976,"dateAdded":"2020-05-03T10:22:28.09467Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":245918,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1888269,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13262},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Get the Lock Out!!-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E06.Get the Lock Out!!-Bluray-1080p.mkv","size":445751244,"dateAdded":"2020-05-03T10:22:36.446681Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":251265,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2206752,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13263},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Don't forget to Don't forget me-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E06.Don't forget to Don't forget me-Bluray-1080p.mkv","size":327079760,"dateAdded":"2020-05-03T10:22:42.761459Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":247274,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1529148,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:31","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13264},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Branchial Blues-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E07.Branchial Blues-Bluray-1080p.mkv","size":423414588,"dateAdded":"2020-05-03T10:22:50.012106Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":246497,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2085553,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13265},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E07.A No-Holds-Barred Eden-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E07.A No-Holds-Barred Eden-Bluray-1080p.mkv","size":352428107,"dateAdded":"2020-05-03T10:22:54.927043Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":245606,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1665538,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13266},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Z's Longest Day - Part 1-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E08.Z's Longest Day - Part 1-Bluray-1080p.mkv","size":494207851,"dateAdded":"2020-05-03T10:22:59.774691Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":246281,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2436727,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13267},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Desperate Fight in the Macro Zone, Part 1-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E08.Desperate Fight in the Macro Zone, Part 1-Bluray-1080p.mkv","size":404878177,"dateAdded":"2020-05-03T10:23:05.787935Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":249592,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1981037,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13268},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Desperate Fight in the Macro Zone, Part 2-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E09.Desperate Fight in the Macro Zone, Part 2-Bluray-1080p.mkv","size":419414581,"dateAdded":"2020-05-03T10:23:25.150904Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":244897,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2066052,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13269},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Z's Longest Day - Part 2-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E09.Z's Longest Day - Part 2-Bluray-1080p.mkv","size":395719857,"dateAdded":"2020-05-03T10:23:29.087666Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":244822,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1901313,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13270},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E10.BRATATAT MOM-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E10.BRATATAT MOM-Bluray-1080p.mkv","size":389397713,"dateAdded":"2020-05-03T10:23:37.552882Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":249286,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1896011,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13271},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Run! Lunch!! Run!!! + to the end-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E10.Run! Lunch!! Run!!! + to the end-Bluray-1080p.mkv","size":373386492,"dateAdded":"2020-05-03T10:23:48.776045Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":252074,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1774682,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:31","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13272},{"seriesId":96,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Spectral Eyes, Phantom Vision, Part 1-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 02\/S02E11.Spectral Eyes, Phantom Vision, Part 1-Bluray-1080p.mkv","size":403561031,"dateAdded":"2020-05-03T10:23:54.8949Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":250480,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1971605,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13273},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Paint it Black-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E11.Paint it Black-Bluray-1080p.mkv","size":324350413,"dateAdded":"2020-05-03T10:24:02.033984Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":246877,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1565749,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13274},{"seriesId":96,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Hello, World!-Bluray-1080p.mkv","path":"\/tv\/Blood Blockade Battlefront\/Season 01\/S01E12.Hello, World!-Bluray-1080p.mkv","size":799321366,"dateAdded":"2020-05-03T10:24:07.247842Z","releaseGroup":"Edge","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":247287,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2065298,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:01","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13275}],"queue":[]},"105":{"series":{"title":"Torchwood","alternateTitles":[],"sortTitle":"torchwood","status":"ended","ended":true,"overview":"Captain Jack Harkness is a man from the 51st century trapped in the past who leads the last remnants of the Torchwood Institute, a top secret British agency outside the government whose job it is to investigate alien goings on in the world, act in mankind's best interest, and, if needed, be the Earth's last line of defense.","previousAiring":"2011-09-09T20:00:00Z","network":"BBC Three","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/128\/banner.jpg?lastWrite=636849718455143850","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79511-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/128\/poster.jpg?lastWrite=637103833593137550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79511-8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/128\/fanart.jpg?lastWrite=637103833588897630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79511-15.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2007-01-01T21:50:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":20423253843,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2008-04-04T20:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":22661700269,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-07-10T20:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":12860494930,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2011-09-09T20:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":12736888280,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/Torchwood","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":79511,"tvRageId":6993,"tvMazeId":659,"firstAired":"2006-10-22T00:00:00Z","seriesType":"standard","cleanTitle":"torchwood","imdbId":"tt0485301","titleSlug":"torchwood","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Crime","Drama","Science Fiction"],"tags":[],"added":"2019-02-05T13:57:24.322286Z","ratings":{"votes":4649,"value":8.4},"statistics":{"seasonCount":4,"episodeFileCount":41,"episodeCount":41,"totalEpisodeCount":53,"sizeOnDisk":68682337322,"percentOfEpisodes":100.0},"id":128},"episodes":[{"seriesId":128,"episodeFileId":6598,"seasonNumber":1,"episodeNumber":1,"title":"Everything Changes","airDate":"2006-10-22","airDateUtc":"2006-10-22T20:00:00Z","overview":"WPC Gwen Cooper is at the scene of a brutal murder, when the \"special ops,\" known only as Torchwood, arrive. After witnessing the group bring the dead man back to life, Gwen goes in pursuit of this mysterious organisation, only to see weirder things than she could ever imagine existed. Soon after, she begins to regret giving in to her curiosity, when she meets Captain Jack Harkness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":10300},{"seriesId":128,"episodeFileId":6602,"seasonNumber":1,"episodeNumber":2,"title":"Day One","airDate":"2006-10-22","airDateUtc":"2006-10-22T20:50:00Z","overview":"It's Gwen's first day on the job, and it's not going very well. After accidentally releasing a mysterious gas from a comet that landed, a new type of alien is let loose on the streets - an alien that's addicted to sex. Torchwood must find the inhabited body, and prevent anymore deaths from the violent form of sex.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":10301},{"seriesId":128,"episodeFileId":6606,"seasonNumber":1,"episodeNumber":3,"title":"Ghost Machine","airDate":"2006-10-29","airDateUtc":"2006-10-29T21:00:00Z","overview":"Whilst chasing a man, Gwen retrieves an unusual machine that allows the user to see back into the past. It is considered dangerous, and no members of Torchwood are permitted to use it. But Owen has other plans, and witnesses a violent murder that took place over forty years ago. Using the information he gathered, Owen starts to track down the still-living murderer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":10302},{"seriesId":128,"episodeFileId":6610,"seasonNumber":1,"episodeNumber":4,"title":"Cyberwoman","airDate":"2006-11-05","airDateUtc":"2006-11-05T21:00:00Z","overview":"Ianto Jones hides a very big secret at Torchwood - his half-converted girlfriend from the Canary Wharf Battle - down in the basement. He is quick to hire a Japanese doctor who believes he can \"cure\" her. But things soon go wrong, and the Cyberwoman's destructive powers are released to the whole of Torchwood. Upgrading is compulsary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":10303},{"seriesId":128,"episodeFileId":6615,"seasonNumber":1,"episodeNumber":5,"title":"Small Worlds","airDate":"2006-11-12","airDateUtc":"2006-11-12T21:00:00Z","overview":"Jack catches up with a very old friend of his, who is investigating fairy sightings in the local wood. After having visited her, Torchwood are informed of a man's mysterious death in a prison cell. Then, Tosh uncovers a series of localised, extreme weather patterns. Nobody at the organisation is sure of these events, or how they may be connected. Except Jack, who has witnessed the creatures causing this, almost a century ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":10304},{"seriesId":128,"episodeFileId":6617,"seasonNumber":1,"episodeNumber":6,"title":"Countrycide","airDate":"2006-11-19","airDateUtc":"2006-11-19T21:00:00Z","overview":"Whilst investigating a group of unexplainable deaths in a village, the Torchwood team are separated. Discovering further, Jack, Gwen and Owen find a scared man, hiding from the thing responsible for the murders. But Tosh and Ianto go that one step extra, and locate the killer, who wants them as their next victims.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":10305},{"seriesId":128,"episodeFileId":6619,"seasonNumber":1,"episodeNumber":7,"title":"Greeks Bearing Gifts","airDate":"2006-11-26","airDateUtc":"2006-11-26T21:00:00Z","overview":"Tosh meets an unusual woman, Mary, at a bar, who gives her a strange pendant. She is upset, yet amazed by what she now has - the ability to read people's minds. However, Tosh finds this terrible curse, that contains her friends darkest secrets, must be broken. So she asks for help from Mary, the only person who knows, but first, Tosh has to get her into Torchwood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":10306},{"seriesId":128,"episodeFileId":6622,"seasonNumber":1,"episodeNumber":8,"title":"They Keep Killing Suzie","airDate":"2006-12-03","airDateUtc":"2006-12-03T21:00:00Z","overview":"Using the Resurrection Gauntlet that former Torchwood member Suzie Costello originally had, the team are able to bring a number of murder victims back to life. However, these all have a link with the now-deceased Suzie, and the group have no choice but to bring her back. After the process goes wrong, and permanently keeps her alive, Suzie manipulates the na\u00efve Gwen into taking her to see her father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":10307},{"seriesId":128,"episodeFileId":6626,"seasonNumber":1,"episodeNumber":9,"title":"Random Shoes","airDate":"2006-12-10","airDateUtc":"2006-12-10T21:00:00Z","overview":"Eugene Jones wakes up, finding himself lying on the middle of a road. He then discovers that he has been the victim of a hit-and-run incident, and is, now, not only dead, but invisible. Eugene recalls events leading up to his death, involving a mysterious alien eye. Simultaneously, Gwen investigates the suspicious circumstances around his fatality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":10308},{"seriesId":128,"episodeFileId":6629,"seasonNumber":1,"episodeNumber":10,"title":"Out of Time","airDate":"2006-12-17","airDateUtc":"2006-12-17T21:00:00Z","overview":"Three passengers from 1953 arrive in modern day Cardiff, when their plane flies through the Rift. With no means of travelling back, each person must adapt to their new life, starting personal relationships with the separate members of Torchwood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10309},{"seriesId":128,"episodeFileId":6632,"seasonNumber":1,"episodeNumber":11,"title":"Combat","airDate":"2006-12-24","airDateUtc":"2006-12-24T21:00:00Z","overview":"Weevils are appearing all over the streets of Cardiff, and then disappearing again - but not by alien forces. People are abducting them, and using the Weevils for their own purposes, so Owen investigates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":10310},{"seriesId":128,"episodeFileId":6634,"seasonNumber":1,"episodeNumber":12,"title":"Captain Jack Harkness","airDate":"2007-01-01","airDateUtc":"2007-01-01T21:00:00Z","overview":"Whilst investigating an old, derelict dance hall, Jack and Tosh are transported back to the 1940s, during the Blitz. Owen, Ianto, and Gwen realise, in modern day, that this has happened, and go in search of clues Tosh may have left. Meanwhile, back in the forties, Jack meets a very interesting man. One with the name Captain Jack Harkness...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":10311},{"seriesId":128,"episodeFileId":6636,"seasonNumber":1,"episodeNumber":13,"title":"End of Days","airDate":"2007-01-01","airDateUtc":"2007-01-01T21:50:00Z","overview":"With the Rift having been opened, people and objects throughout time are falling through it, and being spread across the world. \"The thing in the darkness\" has finally come, and Jack realises that he is the only one who can save planet Earth from the destruction that \"the son of the Beast\" will cause.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":10312},{"seriesId":128,"episodeFileId":6597,"seasonNumber":2,"episodeNumber":1,"title":"Kiss Kiss, Bang Bang","airDate":"2008-01-16","airDateUtc":"2008-01-16T21:00:00Z","overview":"Captain Jack returns, as the Torchwood team reunite to fight a rogue Time Agent. The mysterious Captain John Hart is determined to wreak havoc, and needs to find something hidden on Earth. But with Gwen's life in danger, and cluster bombs scattered across the city, whose side is Jack on?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":10313},{"seriesId":128,"episodeFileId":6601,"seasonNumber":2,"episodeNumber":2,"title":"Sleeper","airDate":"2008-01-23","airDateUtc":"2008-01-23T21:00:00Z","overview":"When a burglary turns into a slaughter, Torchwood suspect alien involvement. Who is Beth, and can she be as innocent as she seems? But when the investigation escalates into a city-wide assault, Jack realises that the whole planet is in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":10314},{"seriesId":128,"episodeFileId":6605,"seasonNumber":2,"episodeNumber":3,"title":"To the Last Man","airDate":"2008-01-30","airDateUtc":"2008-01-30T21:00:00Z","overview":"Toshiko falls for a handsome soldier, trapped out of his time, who unwittingly holds the key to saving the world. With an old hospital haunted by ghosts from 1918, a crisis foreseen by Torchwood 90 years ago is about to reach its climax. Time zones are colliding and with life and death decisions to be made, will Torchwood be able to stop an explosive end for Cardiff?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":10315},{"seriesId":128,"episodeFileId":6609,"seasonNumber":2,"episodeNumber":4,"title":"Meat","airDate":"2008-02-06","airDateUtc":"2008-02-06T21:00:00Z","overview":"When Rhys discovers the truth about Torchwood, he helps the gang to find the source of an unusual alien meat supply.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":10316},{"seriesId":128,"episodeFileId":6613,"seasonNumber":2,"episodeNumber":5,"title":"Adam","airDate":"2008-02-13","airDateUtc":"2008-02-13T21:00:00Z","overview":"A memory thief gets in to the minds of the Torchwood team, and uncovers long forgotten secrets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":10317},{"seriesId":128,"episodeFileId":6616,"seasonNumber":2,"episodeNumber":6,"title":"Reset","airDate":"2008-02-20","airDateUtc":"2008-02-20T21:00:00Z","overview":"Jack calls in an old friend for a favour, none other than Martha Jones, as they attempt to stop a pharmaceutical facility that uses aliens in the hope of discovering a cure for all diseases.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":10318},{"seriesId":128,"episodeFileId":6620,"seasonNumber":2,"episodeNumber":7,"title":"Dead Man Walking","airDate":"2008-02-27","airDateUtc":"2008-02-27T21:00:00Z","overview":"Captain Jack resurrects Owen with a resurrection glove, only to find out that the new glove isn't quite what they'd bargained for. Owen, in an undead state, helps the team figure out why he's still around.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":10319},{"seriesId":128,"episodeFileId":6623,"seasonNumber":2,"episodeNumber":8,"title":"A Day in the Death","airDate":"2008-03-05","airDateUtc":"2008-03-05T21:00:00Z","overview":"A victim of his newfound circumstances, Owen Harper believes he needs absolution. Will the lonely girl on the rooftop help him, or will it be a mission to the retrieve an alien device that is proving more lethal by the second? And how far will Toshiko go to help him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":10320},{"seriesId":128,"episodeFileId":6625,"seasonNumber":2,"episodeNumber":9,"title":"Something Borrowed","airDate":"2008-03-12","airDateUtc":"2008-03-12T21:00:00Z","overview":"Gwen awakes on her wedding day to find she has been impregnated by a shape-shifting alien male. With it's life-partner eager to retrieve it's mate at the cost of Gwen's life, the team race to intercept her as Gwen decides to go through with her marriage at a secluded location with all of her family present","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":10321},{"seriesId":128,"episodeFileId":6628,"seasonNumber":2,"episodeNumber":10,"title":"From out of the Rain","airDate":"2008-03-19","airDateUtc":"2008-03-19T21:00:00Z","overview":"An old cinema reopens and mysterious horrors of the past return to Cardiff. Why are people trapped between life and death, questions are asked about the Night Travellers, and what Torchwood can do to stop them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":10322},{"seriesId":128,"episodeFileId":6631,"seasonNumber":2,"episodeNumber":11,"title":"Adrift","airDate":"2008-03-21","airDateUtc":"2008-03-21T21:00:00Z","overview":"Gwen finds the darker side of Torchwood when a teenager disappears, investigating why hundreds of people have vanished without a trace. Jack is obstructing attempts to find them, and the answer appears to lie in the Rift.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":10323},{"seriesId":128,"episodeFileId":6633,"seasonNumber":2,"episodeNumber":12,"title":"Fragments","airDate":"2008-03-28","airDateUtc":"2008-03-28T21:00:00Z","overview":"As the team are knocked unconscious we find out how Jack, Toshiko, Ianto and Owen were initiated into Torchwood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":10324},{"seriesId":128,"episodeFileId":6635,"seasonNumber":2,"episodeNumber":13,"title":"Exit Wounds","airDate":"2008-04-04","airDateUtc":"2008-04-04T20:00:00Z","overview":"Captain John Hart returns to wreak havoc upon Jack's world, who ends up getting captured. It is up to the Torchwood team to rescue him and save the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":10325},{"seriesId":128,"episodeFileId":6596,"seasonNumber":3,"episodeNumber":1,"title":"Day One","airDate":"2009-07-06","airDateUtc":"2009-07-06T20:00:00Z","overview":"At 8.45am, every child in the world suddenly stops, chanting the words \"we are coming\" again and again. Whilst investigating, the remaining Torchwood team face greater personal and professional challenges than ever before, having to work with their numbers depleted.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":10326},{"seriesId":128,"episodeFileId":6600,"seasonNumber":3,"episodeNumber":2,"title":"Day Two","airDate":"2009-07-07","airDateUtc":"2009-07-07T20:00:00Z","overview":"Torchwood are forced underground, as the government takes swift and brutal action. With members of the team being hunted down, only Lois holds the key to Torchwood's salvation - but she is helpless as her superiors make plans for the mysterious Floor 13.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":10327},{"seriesId":128,"episodeFileId":6604,"seasonNumber":3,"episodeNumber":3,"title":"Day Three","airDate":"2009-07-08","airDateUtc":"2009-07-08T20:00:00Z","overview":"The eyes of the world turn to Britain, as the 456 announce, 'We are here'. As a pillar of fire descends upon London, the members of Torchwood must battle to protect their own families, as the fight gets personal. But will Clem's memories destroy everything?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":10328},{"seriesId":128,"episodeFileId":6608,"seasonNumber":3,"episodeNumber":4,"title":"Day Four","airDate":"2009-07-09","airDateUtc":"2009-07-09T20:00:00Z","overview":"Torchwood finally learns the truth about the events of 1965. But Britain is in danger of becoming a rogue state, and everything now pivots around John Frobisher, as the Ambassador of the 456 destroys its old allegiances and reveals its true intent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":10329},{"seriesId":128,"episodeFileId":6612,"seasonNumber":3,"episodeNumber":5,"title":"Day Five","airDate":"2009-07-10","airDateUtc":"2009-07-10T20:00:00Z","overview":"Torchwood is defenceless, and Gwen Cooper stands alone, as the final sanction begins. As violence erupts and the world descends into anarchy, an ordinary council estate becomes a battleground where the future of the human race will be decided.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":10330},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Web of Lies: Gwen","airDate":"2011-07-05","airDateUtc":"2011-07-05T20:00:00Z","overview":"Just because you're paranoid, it doesn't mean they're not out to get you. Conspiracy theorist Miles Mokri is shot on the very best day to be shot: Miracle Day. He doesn't die, but he is silenced, and his survivors are left only with cryptic clues he left behind. His sister Holly and friend Nick team up to decipher the clues and find out what Miles knew about a mysterious \"Key,\" one of the secrets of Miracle Day.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10288},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Web of Lies: Holly","airDate":"2011-07-05","airDateUtc":"2011-07-05T20:50:00Z","overview":"During the frantic search for the Key, Holly, a cancer survivor, is faced with new enemies, betrayals, and mysterious references to something called \"Torchwood.\" By the time she uncovers the Key, she's learned something about it that may change her mind about everything, including the Miracle itself.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10289},{"seriesId":128,"episodeFileId":6599,"seasonNumber":4,"episodeNumber":1,"title":"The New World","airDate":"2011-07-08","airDateUtc":"2011-07-08T20:00:00Z","overview":"Convicted child killer Oswald Danes is executed for his crimes and when he miraculously survives his fate a series of events is set in place that forces CIA Agent Rex Matheson to investigate a global event. His investigation leads him from America to Wales and an old defunct British Institute - Torchwood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":10331},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Web of Lies (1)","airDate":"2011-07-09","airDateUtc":"2011-07-09T20:00:00Z","overview":"A young man is shot in Los Angeles, but he doesn't die -- this is Miracle Day. When it's revealed that he knew the Miracle was coming, his sister, Holly Mokri, sets to work to figure out what he knew and why he was silenced. And back in 2007, Gwen Cooper saw Jack Harkness abducted in front of her -- what happened to him and how is it tied to the events in LA four years later?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10290},{"seriesId":128,"episodeFileId":6603,"seasonNumber":4,"episodeNumber":2,"title":"Rendition","airDate":"2011-07-15","airDateUtc":"2011-07-15T20:00:00Z","overview":"As the Torchwood team is reunited, Jack realizes he's the most vulnerable man on Earth. A flight to the United States turns into a desperate battle for survival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":10332},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Web of Lies (2)","airDate":"2011-07-16","airDateUtc":"2011-07-16T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10291},{"seriesId":128,"episodeFileId":6607,"seasonNumber":4,"episodeNumber":3,"title":"Dead of Night","airDate":"2011-07-22","airDateUtc":"2011-07-22T20:00:00Z","overview":"Torchwood goes on the run and finds a new enemy, but as they launch a raid on PhiCorp headquarters, Jack must confront the mysterious Oswald Danes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":10333},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Web of Lies (3)","airDate":"2011-07-23","airDateUtc":"2011-07-23T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10292},{"seriesId":128,"episodeFileId":6611,"seasonNumber":4,"episodeNumber":4,"title":"Escape to L.A.","airDate":"2011-07-29","airDateUtc":"2011-07-29T20:00:00Z","overview":"Torchwood relocates to LA to sneak into PhiCorp's headquarters to find some useful information, unaware that their mission has been compromised. Elsewhere, Oswald and Jilly face a new adversary in Ellis Hartley Monroe, who is using the Miracle Day for her own agenda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":10334},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Web of Lies (4)","airDate":"2011-07-30","airDateUtc":"2011-07-30T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10293},{"seriesId":128,"episodeFileId":6614,"seasonNumber":4,"episodeNumber":5,"title":"The Categories of Life","airDate":"2011-08-05","airDateUtc":"2011-08-05T20:00:00Z","overview":"Torchwood goes undercover and discovers the terrible truth behind the Miracle. The enemy is closing in, and death is about to make a shocking return.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":10335},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Web of Lies (5)","airDate":"2011-08-06","airDateUtc":"2011-08-06T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10294},{"seriesId":128,"episodeFileId":6618,"seasonNumber":4,"episodeNumber":6,"title":"The Middle Men","airDate":"2011-08-12","airDateUtc":"2011-08-12T20:00:00Z","overview":"With Gwen, Rex and Esther trapped on both sides of the Atlantic, it's a race against time as Jack goes straight to the heart of the conspiracy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":10336},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Web of Lies (6)","airDate":"2011-08-13","airDateUtc":"2011-08-13T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10295},{"seriesId":128,"episodeFileId":6621,"seasonNumber":4,"episodeNumber":7,"title":"Immortal Sins","airDate":"2011-08-19","airDateUtc":"2011-08-19T20:00:00Z","overview":"Gwen must fight to protect her family and takes a terrifying journey, covering both miles and decades, as the long history of the Miracle is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":10337},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Web of Lies (7)","airDate":"2011-08-20","airDateUtc":"2011-08-20T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10296},{"seriesId":128,"episodeFileId":6624,"seasonNumber":4,"episodeNumber":8,"title":"End of the Road","airDate":"2011-08-26","airDateUtc":"2011-08-26T20:00:00Z","overview":"Jack faces a showdown with a man he thought was long since dead, while Rex takes extreme action to prevent the collapse of society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":10338},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Web of Lies (8)","airDate":"2011-08-27","airDateUtc":"2011-08-27T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10297},{"seriesId":128,"episodeFileId":6627,"seasonNumber":4,"episodeNumber":9,"title":"The Gathering","airDate":"2011-09-02","airDateUtc":"2011-09-02T20:00:00Z","overview":"With the whole world in recession, a defeated Torchwood team take their last chance and make a deal with the devil.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":10339},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Web of Lies (9)","airDate":"2011-09-03","airDateUtc":"2011-09-03T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10298},{"seriesId":128,"episodeFileId":6630,"seasonNumber":4,"episodeNumber":10,"title":"The Blood Line","airDate":"2011-09-09","airDateUtc":"2011-09-09T20:00:00Z","overview":"As the Torchwood team launch a final, desperate mission against the seemingly undefeatable Three Families, they realize it may come down to the ultimate sacrifice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":10340},{"seriesId":128,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Web of Lies (10)","airDate":"2011-09-10","airDateUtc":"2011-09-10T20:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10299}],"episodeFile":[{"seriesId":128,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Children of Earth, Day One-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 03\/S03E01.Children of Earth, Day One-Bluray-1080p.mkv","size":2574156067,"dateAdded":"2019-02-05T18:21:51.553832Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":493117,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4853573,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"58:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6596},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Kiss Kiss, Bang Bang-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E01.Kiss Kiss, Bang Bang-Bluray-1080p.mkv","size":1734195267,"dateAdded":"2019-02-05T18:21:51.587261Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":474972,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4383031,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"47:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6597},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Everything Changes-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E01.Everything Changes-Bluray-1080p.mkv","size":1618350938,"dateAdded":"2019-02-05T18:21:51.626845Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":476346,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3583760,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"51:09","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6598},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The New World-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E01.The New World-Bluray-1080p.mkv","size":1259664108,"dateAdded":"2019-02-05T18:21:51.672137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":478836,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2595644,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"51:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6599},{"seriesId":128,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Children of Earth, Day Two-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 03\/S03E02.Children of Earth, Day Two-Bluray-1080p.mkv","size":2627907069,"dateAdded":"2019-02-05T18:21:51.733439Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":483606,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5026050,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"58:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6600},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Sleeper-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E02.Sleeper-Bluray-1080p.mkv","size":1755030361,"dateAdded":"2019-02-05T18:21:51.787595Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440090,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4404203,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"48:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6601},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Day One-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E02.Day One-Bluray-1080p.mkv","size":1504902730,"dateAdded":"2019-02-05T18:21:51.839451Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448024,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3594858,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"47:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6602},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Rendition-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E02.Rendition-Bluray-1080p.mkv","size":1249287834,"dateAdded":"2019-02-05T18:21:51.891555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":483078,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2694918,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"52:03","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6603},{"seriesId":128,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Children of Earth, Day Three-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 03\/S03E03.Children of Earth, Day Three-Bluray-1080p.mkv","size":2648173961,"dateAdded":"2019-02-05T18:21:51.935097Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":465722,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5063689,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"58:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6604},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E03.To the Last Man-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E03.To the Last Man-Bluray-1080p.mkv","size":1808684017,"dateAdded":"2019-02-05T18:21:51.988936Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444736,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4321355,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"50:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6605},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Ghost Machine-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E03.Ghost Machine-Bluray-1080p.mkv","size":1624252415,"dateAdded":"2019-02-05T18:21:52.032255Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":455209,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3862486,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"48:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6606},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Dead of Night-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E03.Dead of Night-Bluray-1080p.mkv","size":1272780645,"dateAdded":"2019-02-05T18:21:52.078023Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":476863,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2658793,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"53:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6607},{"seriesId":128,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Children of Earth, Day Four-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 03\/S03E04.Children of Earth, Day Four-Bluray-1080p.mkv","size":2437998402,"dateAdded":"2019-02-05T18:21:52.128221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":466344,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4510765,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"59:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6608},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Meat-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E04.Meat-Bluray-1080p.mkv","size":1830810922,"dateAdded":"2019-02-05T18:21:52.179309Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439726,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4403599,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"50:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6609},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Cyberwoman-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E04.Cyberwoman-Bluray-1080p.mkv","size":1548519508,"dateAdded":"2019-02-05T18:21:52.228407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":480243,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3564305,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"49:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6610},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Escape to L.A-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E04.Escape to L.A-Bluray-1080p.mkv","size":1482579439,"dateAdded":"2019-02-05T18:21:52.282108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":484628,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3097258,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"54:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6611},{"seriesId":128,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Children of Earth, Day Five-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 03\/S03E05.Children of Earth, Day Five-Bluray-1080p.mkv","size":2572259431,"dateAdded":"2019-02-05T18:21:52.329167Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":477347,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4913931,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"58:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6612},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Adam-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E05.Adam-Bluray-1080p.mkv","size":1809426751,"dateAdded":"2019-02-05T18:21:52.375537Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424634,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4328056,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"50:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6613},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E05.The Categories of Life-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E05.The Categories of Life-Bluray-1080p.mkv","size":1620499293,"dateAdded":"2019-02-05T18:21:52.420702Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":489658,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3652730,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"51:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6614},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Small Worlds-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E05.Small Worlds-Bluray-1080p.mkv","size":1550108745,"dateAdded":"2019-02-05T18:21:52.463646Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":461646,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3795438,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"46:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6615},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Reset-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E06.Reset-Bluray-1080p.mkv","size":1704844333,"dateAdded":"2019-02-05T18:21:52.506298Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":481123,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4402099,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"46:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6616},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Countrycide-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E06.Countrycide-Bluray-1080p.mkv","size":1418750541,"dateAdded":"2019-02-05T18:21:52.552173Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":463316,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3429544,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"46:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6617},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E06.The Middle Men-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E06.The Middle Men-Bluray-1080p.mkv","size":1352728764,"dateAdded":"2019-02-05T18:21:52.60055Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":491937,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2960976,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"51:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6618},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Greeks Bearing Gifts-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E07.Greeks Bearing Gifts-Bluray-1080p.mkv","size":1828747336,"dateAdded":"2019-02-05T18:21:52.656837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470832,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4285288,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"49:39","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6619},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Dead Man Walking-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E07.Dead Man Walking-Bluray-1080p.mkv","size":1746373920,"dateAdded":"2019-02-05T18:21:52.700693Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431631,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4373701,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"48:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6620},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Immortal Sins-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E07.Immortal Sins-Bluray-1080p.mkv","size":1043546589,"dateAdded":"2019-02-05T18:21:52.747926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":466269,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2197540,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"51:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6621},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E08.They Keep Killing Suzie-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E08.They Keep Killing Suzie-Bluray-1080p.mkv","size":1860353856,"dateAdded":"2019-02-05T18:21:52.792154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":462661,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4086581,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"52:46","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6622},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E08.A Day in the Death-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E08.A Day in the Death-Bluray-1080p.mkv","size":1675203831,"dateAdded":"2019-02-05T18:21:52.83905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":392796,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4312430,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"47:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6623},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E08.End of the Road-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E08.End of the Road-Bluray-1080p.mkv","size":1032561161,"dateAdded":"2019-02-05T18:21:52.884791Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":465883,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2114893,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"52:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6624},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Something Borrowed-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E09.Something Borrowed-Bluray-1080p.mkv","size":1689310122,"dateAdded":"2019-02-05T18:21:52.937965Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4456265,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"46:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6625},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Random Shoes-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E09.Random Shoes-Bluray-1080p.mkv","size":1586342696,"dateAdded":"2019-02-05T18:21:52.98379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432292,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3726686,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"49:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6626},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Gathering-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E09.The Gathering-Bluray-1080p.mkv","size":1104272338,"dateAdded":"2019-02-05T18:21:53.032837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":463526,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2254309,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"53:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6627},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E10.From out of the Rain-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E10.From out of the Rain-Bluray-1080p.mkv","size":1641744126,"dateAdded":"2019-02-05T18:21:53.078823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426235,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4368197,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"45:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6628},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Out of Time-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E10.Out of Time-Bluray-1080p.mkv","size":1564019755,"dateAdded":"2019-02-05T18:21:53.139302Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":455904,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3578887,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"49:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6629},{"seriesId":128,"seasonNumber":4,"relativePath":"Season 04\/S04E10.The Blood Line-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 04\/S04E10.The Blood Line-Bluray-1080p.mkv","size":1318968109,"dateAdded":"2019-02-05T18:21:53.191657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":483233,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2617173,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"53:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6630},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Adrift-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E11.Adrift-Bluray-1080p.mkv","size":1747147833,"dateAdded":"2019-02-05T18:21:53.255184Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":475467,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4303141,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"48:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6631},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Combat-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E11.Combat-Bluray-1080p.mkv","size":1093167437,"dateAdded":"2019-02-05T18:21:53.309092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432337,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2467881,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"47:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6632},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Fragments-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E12.Fragments-Bluray-1080p.mkv","size":1754433141,"dateAdded":"2019-02-05T18:21:53.352895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":459479,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4291247,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"49:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6633},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Captain Jack Harkness-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E12.Captain Jack Harkness-Bluray-1080p.mkv","size":1627416806,"dateAdded":"2019-02-05T18:21:53.409534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":449036,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3885720,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"48:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6634},{"seriesId":128,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Exit Wounds-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 02\/S02E13.Exit Wounds-Bluray-1080p.mkv","size":1764495645,"dateAdded":"2019-02-05T18:21:53.451955Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":454274,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4391650,"videoCodec":"x265","videoFps":25.0,"resolution":"1920x1080","runTime":"48:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6635},{"seriesId":128,"seasonNumber":1,"relativePath":"Season 01\/S01E13.End of Days-Bluray-1080p.mkv","path":"\/tv\/Torchwood\/Season 01\/S01E13.End of Days-Bluray-1080p.mkv","size":1598321080,"dateAdded":"2019-02-05T18:21:53.505852Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":457731,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ ","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3945836,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1080","runTime":"46:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6636}],"queue":[]},"112":{"series":{"title":"Big Hero 6 The Series","alternateTitles":[{"title":"Opera\u00e7\u00e3o Big Hero - A S\u00e9rie","seasonNumber":-1},{"title":"Operacao Big Hero - A Serie","seasonNumber":-1},{"title":"Baymax - Robowabohu in Serie","seasonNumber":-1}],"sortTitle":"big hero 6 series","status":"ended","ended":true,"overview":"As the new prodigy at San Fransokyo Institute of Technology, Hiro now faces daunting academic challenges and the social trials of being the little man on campus. Off campus, the stakes are raised for the high-tech heroes as they must protect their city from an array of scientifically enhanced villains.","previousAiring":"2021-02-16T00:55:00Z","network":"Disney Channel","airTime":"19:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/112\/banner.jpg?lastWrite=637100123624278710","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/322241-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/112\/poster.jpg?lastWrite=637540898545983000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/322241-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/112\/fanart.jpg?lastWrite=637100123622198750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/322241-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":27,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-10-13T23:30:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":5855322492,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-02-09T00:30:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":17601199356,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-02-16T00:55:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":6404161359,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Big Hero 6- The Series","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":322241,"tvRageId":0,"tvMazeId":21142,"firstAired":"2017-11-20T00:00:00Z","seriesType":"standard","cleanTitle":"bighero6series","imdbId":"tt5515212","titleSlug":"big-hero-6-the-series","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Animation","Children","Comedy"],"tags":[],"added":"2018-11-14T03:15:11.144042Z","ratings":{"votes":29,"value":10.0},"statistics":{"seasonCount":3,"episodeFileCount":65,"episodeCount":65,"totalEpisodeCount":92,"sizeOnDisk":29860683207,"percentOfEpisodes":100.0},"id":112},"episodes":[{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Big Hero 6","airDate":"2015-01-30","airDateUtc":"2015-01-31T00:30:00Z","overview":"The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8832},{"seriesId":112,"episodeFileId":9509,"seasonNumber":1,"episodeNumber":1,"title":"Baymax Returns","airDate":"2017-11-20","airDateUtc":"2017-11-21T00:30:00Z","overview":"Set in the fictional city of San Fransokyo, 14-year-old tech genius Hiro begins school as the new prodigy at San Fransokyo Institute of Technology and sets off to rebuild Baymax. However, his overconfidence and penchant for taking shortcuts leads him and the newly minted Big Hero 6 team \u2013 Wasabi, Honey Lemon, Go Go and Fred \u2013 into trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":8841},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Baymax and Fred","airDate":"2018-05-31","airDateUtc":"2018-05-31T23:30:00Z","overview":"Fred is determined to create an alter ego for Baymax! Should Bayxmax\u2019s alter ego be a cowboy? A fireman? A clown? A sumo wrestler? More importantly, will any of Fred\u2019s ridiculous ideas stick?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8833},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Baymax and Go Go","airDate":"2018-06-01","airDateUtc":"2018-06-01T23:30:00Z","overview":"Go Go attempts to teach Baymax how to roller-skate, but he can\u2019t seem to slow down! Can she keep him from getting into trouble?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8834},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Baymax and Wasabi","airDate":"2018-06-06","airDateUtc":"2018-06-06T23:30:00Z","overview":"Baymax wants to learn yoga poses, but he has a hard time mastering it! Can Wasabi teach him without getting too stressed out?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8835},{"seriesId":112,"episodeFileId":9510,"seasonNumber":1,"episodeNumber":2,"title":"Issue 188","airDate":"2018-06-09","airDateUtc":"2018-06-09T23:30:00Z","overview":"As Hiro tries to find a way to connect to classmate Karmi, Go Go and Fred dive deep into comic book mythology to defeat High Voltage, a mother-daughter supervillain duo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":8842},{"seriesId":112,"episodeFileId":9511,"seasonNumber":1,"episodeNumber":3,"title":"Big Roommates 2","airDate":"2018-06-09","airDateUtc":"2018-06-09T23:55:00Z","overview":"A purse thief gets more than he bargained for when he steals Honey Lemon's chem-lab purse and it turns him into a monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":8843},{"seriesId":112,"episodeFileId":9512,"seasonNumber":1,"episodeNumber":4,"title":"Fred's Bro-Tillion","airDate":"2018-06-10","airDateUtc":"2018-06-10T23:30:00Z","overview":"When supervillain Baron Von Steamer crashes Fred's Bro-Tillion, Big Hero 6 spring into action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":8844},{"seriesId":112,"episodeFileId":9513,"seasonNumber":1,"episodeNumber":5,"title":"Food Fight","airDate":"2018-06-10","airDateUtc":"2018-06-10T23:55:00Z","overview":"When Aunt Cass stumbles into an underground cooking competition, she thrives, and becomes addicted to the excitement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":8845},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Baymax and Hiro","airDate":"2018-06-14","airDateUtc":"2018-06-14T23:30:00Z","overview":"Hiro boosts Baymax\u2019s battery, which causes Baymax to go into overdrive! Oh no.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8836},{"seriesId":112,"episodeFileId":9514,"seasonNumber":1,"episodeNumber":6,"title":"Muirahara Woods","airDate":"2018-06-16","airDateUtc":"2018-06-16T23:30:00Z","overview":"Hiro, Fred, and Baymax follow GoGo into the mysterious Muirahara Woods where they get lost and everything electronic strangely fails including Baymax.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":8846},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Baymax and Mochi","airDate":"2018-06-18","airDateUtc":"2018-06-18T23:30:00Z","overview":"While Aunt Cass is gone, Baymax tries to keep Mochi out of trouble, but he quickly learns that babysitting is harder than it looks!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8837},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Baymax and Honey Lemon","airDate":"2018-06-20","airDateUtc":"2018-06-20T23:30:00Z","overview":"Honey Lemon shows Baymax how to play tennis, but Baymax can\u2019t move quickly enough to hit the ball over the net! Can she figure out a way for him to play?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8838},{"seriesId":112,"episodeFileId":9515,"seasonNumber":1,"episodeNumber":7,"title":"Failure Mode","airDate":"2018-06-23","airDateUtc":"2018-06-23T23:30:00Z","overview":"Hiro becomes demoralized when his latest school project fails spectacularly; the team must take on the incompetent villain, Globby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":8847},{"seriesId":112,"episodeFileId":9516,"seasonNumber":1,"episodeNumber":8,"title":"Aunt Cass Goes Out","airDate":"2018-06-30","airDateUtc":"2018-06-30T23:30:00Z","overview":"After Aunt Cass nearly discovers Hiro's secret membership in the Big Hero 6, Hiro tries to set her up with someone to distract her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":8848},{"seriesId":112,"episodeFileId":9517,"seasonNumber":1,"episodeNumber":9,"title":"The Impatient Patient","airDate":"2018-07-07","airDateUtc":"2018-07-07T23:30:00Z","overview":"Although he is obviously ill, Hiro refuses to listen to his team-mates and Baymax and only watch from afar as they fight the mercenary team Mad Jacks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":8849},{"seriesId":112,"episodeFileId":9518,"seasonNumber":1,"episodeNumber":10,"title":"Mr. Sparkles Loses His Sparkle","airDate":"2018-07-14","airDateUtc":"2018-07-14T23:30:00Z","overview":"Crazy game show host Mr. Sparkles threatens to hurt Hiro's cat Mochi to force Go Go to join a game. But she is very afraid of public appearances.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":8850},{"seriesId":112,"episodeFileId":9519,"seasonNumber":1,"episodeNumber":11,"title":"Killer App","airDate":"2018-07-21","airDateUtc":"2018-07-21T23:30:00Z","overview":"Wasabi's need for order clashes with Hiro's chaotic work style when they collaborate on a school project.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":8851},{"seriesId":112,"episodeFileId":9520,"seasonNumber":1,"episodeNumber":12,"title":"Small Hiro One","airDate":"2018-07-28","airDateUtc":"2018-07-28T23:30:00Z","overview":"Hiro becomes frustrated when he's deemed too young to attend a science workshop hosted by SFIT's most famous alumni, Dr. Trevor Trengrove.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":8852},{"seriesId":112,"episodeFileId":9521,"seasonNumber":1,"episodeNumber":13,"title":"Kentucky Kaiju","airDate":"2018-08-04","airDateUtc":"2018-08-04T23:30:00Z","overview":"Hiro decides to upgrade himself with super strength, but his new tech backfires and causes problems at home and at school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":8853},{"seriesId":112,"episodeFileId":9522,"seasonNumber":1,"episodeNumber":14,"title":"Rivalry Weak","airDate":"2018-08-11","airDateUtc":"2018-08-11T23:30:00Z","overview":"Honey Lemon secretly takes art classes at SFIT's rival, SFAI, and soon finds herself caught in the middle of both schools' annual Rivalry Week tradition of pranking each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":8854},{"seriesId":112,"episodeFileId":9523,"seasonNumber":1,"episodeNumber":15,"title":"Fan Friction","airDate":"2018-08-18","airDateUtc":"2018-08-18T23:30:00Z","overview":"Karmi starts posting fan fiction about Big Hero 6, depicting Hiro as her boyfriend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":8855},{"seriesId":112,"episodeFileId":9524,"seasonNumber":1,"episodeNumber":16,"title":"Mini-Max","airDate":"2018-08-25","airDateUtc":"2018-08-25T23:30:00Z","overview":"Hiro invents a tiny robot, Mini-Max, to supervise and be a sidekick to Fred while the rest of the team is in class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":8856},{"seriesId":112,"episodeFileId":9525,"seasonNumber":1,"episodeNumber":17,"title":"Big Hero 7","airDate":"2018-09-08","airDateUtc":"2018-09-08T23:30:00Z","overview":"Richardson Mole blackmails his way onto the team after Fred accidentally reveals their secret identities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":8857},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Baymax Dreams of Bed Bugs","airDate":"2018-09-15","airDateUtc":"2018-09-15T23:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8839},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Baymax Dreams of Evil Sheep","airDate":"2018-09-15","airDateUtc":"2018-09-15T23:55:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":8840},{"seriesId":112,"episodeFileId":9526,"seasonNumber":1,"episodeNumber":18,"title":"Big Problem","airDate":"2018-09-15","airDateUtc":"2018-09-15T23:30:00Z","overview":"When a monster wreaks havoc in San Fransokyo, Big Hero 6 must go on a real-life monster hunt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":8858},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Baymax Dreams of Too Many Baymaxes","airDate":"2018-09-15","airDateUtc":"2018-09-16T00:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9766},{"seriesId":112,"episodeFileId":9527,"seasonNumber":1,"episodeNumber":19,"title":"Steamer's Revenge","airDate":"2018-09-22","airDateUtc":"2018-09-22T23:30:00Z","overview":"Hiro and the others plan the ultimate birthday surprise for Wasabi by recovering his car from the bottom of the bay, but Baron Von Steamer ruins the celebration.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":8859},{"seriesId":112,"episodeFileId":9528,"seasonNumber":1,"episodeNumber":20,"title":"The Bot Fighter","airDate":"2018-09-29","airDateUtc":"2018-09-29T23:30:00Z","overview":"Hiro is drawn back into the world of bot-fighting, where he meets Trina, a young bot-fighter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":8860},{"seriesId":112,"episodeFileId":9529,"seasonNumber":1,"episodeNumber":21,"title":"Obake Yashiki","airDate":"2018-10-06","airDateUtc":"2018-10-06T23:30:00Z","overview":"After Big Hero 6 goes to a haunted house, Hiro keeps seeing his late brother, Tadashi, around the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":8861},{"seriesId":112,"episodeFileId":10043,"seasonNumber":1,"episodeNumber":22,"title":"Countdown to Catastrophe","airDate":"2018-10-13","airDateUtc":"2018-10-13T23:30:00Z","overview":"Obake unleashes his master plan upon San Fransokyo, bringing about destruction to the entire city unless Big Hero 6 stops him once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":8862},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Making Popcorn","airDate":"2018-11-06","airDateUtc":"2018-11-07T00:30:00Z","overview":"Go Go helps Fred make popcorn for movie night.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10959},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Mochi No!","airDate":"2018-11-13","airDateUtc":"2018-11-14T00:30:00Z","overview":"Fred babysits Mochi who ends up causing trouble for him and Wasabi in SFIT labs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10960},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Save Mochi","airDate":"2018-11-20","airDateUtc":"2018-11-21T00:30:00Z","overview":"The gang try to get Mochi out of a woodpecker owned tree.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10961},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Noodle Song","airDate":"2018-11-20","airDateUtc":"2018-11-21T00:55:00Z","overview":"The gang perform the Noodle Burger song with Noodle Burger Boy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10962},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Snoring","airDate":"2018-11-27","airDateUtc":"2018-11-28T00:30:00Z","overview":"Go Go and the gang try to get Honey Lemon to stop snoring.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10963},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Gumball Trouble","airDate":"2019-02-05","airDateUtc":"2019-02-06T00:30:00Z","overview":"Go Go mistakes one of Honey Lemon's new mini chem-balls for gum and blows up like a balloon.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10964},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Love Letters","airDate":"2019-02-12","airDateUtc":"2019-02-13T00:30:00Z","overview":"Karmi chases Captain Cutie around San Fransokyo to give him a love letter.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10965},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Super Charged","airDate":"2019-02-19","airDateUtc":"2019-02-20T00:30:00Z","overview":"When Noodle Burger Boy prepares his ultimate move, the Big Hero 6 try to prepare theirs.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10966},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Low Battery","airDate":"2019-04-02","airDateUtc":"2019-04-02T23:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11174},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Road Trip","airDate":"2019-04-09","airDateUtc":"2019-04-09T23:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11175},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Super Driver","airDate":"2019-04-16","airDateUtc":"2019-04-16T23:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11176},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Brunch Rush","airDate":"2019-04-23","airDateUtc":"2019-04-23T23:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11177},{"seriesId":112,"episodeFileId":8199,"seasonNumber":2,"episodeNumber":1,"title":"Internabout","airDate":"2019-05-06","airDateUtc":"2019-05-06T23:30:00Z","overview":"Hiro\u2019s jealousy of Karmi\u2019s internship at Sycorax leads him to intern at Krei Tech.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11113},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Baymax and Mochi: Flowers and Butterflies","airDate":"2019-05-06","airDateUtc":"2019-05-06T23:30:00Z","overview":"A mischievous Mochi keeps pushing plants out the window for Baymax to catch! To Baymax's delight, the flowers attract a swarm of butterflies!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11220},{"seriesId":112,"episodeFileId":8197,"seasonNumber":2,"episodeNumber":2,"title":"Seventh Wheel","airDate":"2019-05-07","airDateUtc":"2019-05-07T23:30:00Z","overview":"Professor Granville becomes increasingly pushy with her suggestions for Big Hero 6 as she helps them try to figure out a mysterious series of food-related burglaries.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11133},{"seriesId":112,"episodeFileId":8200,"seasonNumber":2,"episodeNumber":3,"title":"Prey Date","airDate":"2019-05-08","airDateUtc":"2019-05-08T23:30:00Z","overview":"Hiro and Fred enlist Karmi to find out what Liv Amara is doing to cure Orso Knox, the man who was mysteriously turned into a monster.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11134},{"seriesId":112,"episodeFileId":8198,"seasonNumber":2,"episodeNumber":4,"title":"Something's Fishy","airDate":"2019-05-09","airDateUtc":"2019-05-09T23:30:00Z","overview":"Aunt Cass sets Hiro up with 14-year-old Megan which leads him to wonder if he is missing out on being a normal kid. Big Hero 6 must deal with an upgraded High Voltage.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11135},{"seriesId":112,"episodeFileId":8205,"seasonNumber":2,"episodeNumber":5,"title":"Nega-Globby","airDate":"2019-05-10","airDateUtc":"2019-05-10T23:30:00Z","overview":"Honey Lemon sets out to cure Globby and make him human again. However, Big Hero 6 must now face a new different evil glob-like villain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11136},{"seriesId":112,"episodeFileId":8206,"seasonNumber":2,"episodeNumber":6,"title":"The Fate of the Roommates","airDate":"2019-05-13","airDateUtc":"2019-05-13T23:30:00Z","overview":"When Honey Lemon finds out she can return to her dorm, Go Go realizes she doesn\u2019t want Honey Lemon to move out. Big Hero 6 look to stop a secret underground racing league.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11137},{"seriesId":112,"episodeFileId":8202,"seasonNumber":2,"episodeNumber":7,"title":"Muira-Horror!","airDate":"2019-05-14","airDateUtc":"2019-05-14T23:30:00Z","overview":"Hiro and Go Go accompany Krei to the woods to deal with Nedd Ludd, however they run into the monster of legend, the Hibagon, along the way!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11138},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Baymax and Mochi: Mochi and his Toy","airDate":"2019-05-14","airDateUtc":"2019-05-14T23:30:00Z","overview":"Baymax tries to help Mochi retrieve his favorite toy!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11221},{"seriesId":112,"episodeFileId":8203,"seasonNumber":2,"episodeNumber":8,"title":"Something Fluffy","airDate":"2019-05-15","airDateUtc":"2019-05-15T23:30:00Z","overview":"When mysterious but adorable creatures called Mayoi suddenly appear in San Fransokyo, Hiro is convinced that they're part of some nefarious plot by Liv Amara.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11139},{"seriesId":112,"episodeFileId":8201,"seasonNumber":2,"episodeNumber":9,"title":"Supersonic Sue","airDate":"2019-05-16","airDateUtc":"2019-05-16T23:30:00Z","overview":"Big Hero 6 attempt to thwart a bank robbery and are defeated by Supersonic Sue, a old school roller-skating villain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11140},{"seriesId":112,"episodeFileId":8204,"seasonNumber":2,"episodeNumber":10,"title":"Lie Detector","airDate":"2019-05-17","airDateUtc":"2019-05-17T23:30:00Z","overview":"Upon discovering Baymax's inherent abilities to detect if a person is lying, Hiro attempts to use Baymax to uncover proof of Liv's evil doing.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11141},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Baymax and Mochi: Messy Room","airDate":"2019-05-21","airDateUtc":"2019-05-21T23:30:00Z","overview":"Oh no! Hiro's room is an absolute mess! Baymax and Mochi work together as a team to make it spotless!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11222},{"seriesId":112,"episodeFileId":9119,"seasonNumber":2,"episodeNumber":11,"title":"Write Turn Here","airDate":"2019-09-03","airDateUtc":"2019-09-03T23:30:00Z","overview":"Hiro is forced to write a story for his class and decides to write about Big Hero 6. Strange versions of Noodle Burger Boy attack the team.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11857},{"seriesId":112,"episodeFileId":9121,"seasonNumber":2,"episodeNumber":12,"title":"City of Monsters (1)","airDate":"2019-09-04","airDateUtc":"2019-09-04T23:30:00Z","overview":"Karmi and Hiro team up to help treat someone overrun with genetically engineered parasites. Big Hero 6 must fight a city being attacked by monsters.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11858},{"seriesId":112,"episodeFileId":9120,"seasonNumber":2,"episodeNumber":13,"title":"City of Monsters (2)","airDate":"2019-09-05","airDateUtc":"2019-09-05T23:30:00Z","overview":"Big Hero 6 must continue to fight off a city overrun with monsters as Liv\u2019s plot comes to its dramatic climax.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11859},{"seriesId":112,"episodeFileId":9122,"seasonNumber":2,"episodeNumber":14,"title":"Mini-Maximum Trouble","airDate":"2019-09-06","airDateUtc":"2019-09-06T23:30:00Z","overview":"Fred\u2019s bad luck threatens his safety. Megan tells Hiro that she\u2019s trying to uncover the true identities of Big Hero 6 for her school\u2019s newspaper.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11860},{"seriesId":112,"episodeFileId":9124,"seasonNumber":2,"episodeNumber":15,"title":"El Fuego","airDate":"2019-09-09","airDateUtc":"2019-09-09T23:30:00Z","overview":"Intent on becoming the toughest fighter in San Fransokyo, professional mech-wrestler El Fuego decides he must beat the strongest challenger he can find: Baymax.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11861},{"seriesId":112,"episodeFileId":9123,"seasonNumber":2,"episodeNumber":16,"title":"The Globby Within","airDate":"2019-09-10","airDateUtc":"2019-09-10T23:30:00Z","overview":"Nega-Globby begins to take control of Globby\u2019s body to cause chaos around the city, turning Globby from an adored hero to a wanted criminal overnight.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11862},{"seriesId":112,"episodeFileId":10278,"seasonNumber":2,"episodeNumber":17,"title":"Hardlight","airDate":"2019-09-11","airDateUtc":"2019-09-11T23:30:00Z","overview":"Now fugitives, Big Hero 6 lays low as the SFPD searches for them. A new villain named Hardlight shows up hoping to challenge Big Hero 6 to a real-life video game duel.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11863},{"seriesId":112,"episodeFileId":10430,"seasonNumber":2,"episodeNumber":18,"title":"The Present","airDate":"2019-12-07","airDateUtc":"2019-12-08T00:30:00Z","overview":"When Hiro finds a wrapped present in the closet, he assumes it\u2019s from Aunt Cass and takes it in order to figure out what it is. However, after a mix-up, the present becomes lost and Hiro enlists the Big Hero 6 team to track it down.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15640},{"seriesId":112,"episodeFileId":11176,"seasonNumber":2,"episodeNumber":19,"title":"Hiro the Villain","airDate":"2020-01-04","airDateUtc":"2020-01-05T00:30:00Z","overview":"Momakase blackmails Hiro into helping her steal a mysterious item from Yama\u2019s safe, threatening to tell Chief Cruz Big Hero 6\u2019s secret identities if he doesn\u2019t help her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15827},{"seriesId":112,"episodeFileId":11829,"seasonNumber":2,"episodeNumber":20,"title":"Portal Enemy","airDate":"2020-01-11","airDateUtc":"2020-01-12T00:30:00Z","overview":"Circus acrobat and physicist Sirque steals a secret project from Krei and uses the technology to commit thefts all over the city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15828},{"seriesId":112,"episodeFileId":12071,"seasonNumber":2,"episodeNumber":21,"title":"Fred the Fugitive","airDate":"2020-01-18","airDateUtc":"2020-01-19T00:30:00Z","overview":"Fred\u2019s invisibility function on his suit glitches during patrol.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15839},{"seriesId":112,"episodeFileId":12075,"seasonNumber":2,"episodeNumber":22,"title":"Major Blast","airDate":"2020-01-25","airDateUtc":"2020-01-26T00:30:00Z","overview":"A new villain calling himself Major Blast appears in the city and targets Fred; the other members of Big Hero 6 try to figure out who is behind the Major Blast mask.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":16848},{"seriesId":112,"episodeFileId":12095,"seasonNumber":2,"episodeNumber":23,"title":"Fear Not","airDate":"2020-02-01","airDateUtc":"2020-02-02T00:30:00Z","overview":"Supersonic Stu busts his grandmother, Supersonic Sue, out of prison; at school, Professor Granville asks Wasabi, who fears public speaking, to sub for an absent teaching assistant.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":16849},{"seriesId":112,"episodeFileId":12489,"seasonNumber":2,"episodeNumber":24,"title":"Legacies","airDate":"2020-02-08","airDateUtc":"2020-02-09T00:30:00Z","overview":"Chief Cruz and the police get the upper hand in their battle with both villains and Big Hero 6 when they begin using Buddy Guardians, powerful new robots produced by Krei Tech.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":16850},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Baymax Dreams of Mochizilla","airDate":"2020-07-28","airDateUtc":"2020-07-28T23:30:00Z","overview":"When Fred accidentally mixes Baymax's memory of Mochi with his favorite Kaiju movie, he creates a giant Mochi monster that attacks San Fransokyo.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19786},{"seriesId":112,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Baymax Dreams of Too Many Freds","airDate":"2020-07-28","airDateUtc":"2020-07-28T23:55:00Z","overview":"When a data backup machine splits Fred into a hundred tiny clones of himself, Baymax must smoosh the tiny Freds back together.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19787},{"seriesId":112,"episodeFileId":16046,"seasonNumber":3,"episodeNumber":1,"title":"The Hyper-potamus Pizza-Party-torium","airDate":"2020-09-21","airDateUtc":"2020-09-21T23:30:00Z","overview":"Hiro and a short-handed Big Hero 6 team attempt to stop Noodle Burger Boy and his new family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19437},{"seriesId":112,"episodeFileId":15630,"seasonNumber":3,"episodeNumber":2,"title":"Mayor for a Day","airDate":"2020-09-28","airDateUtc":"2020-09-28T23:30:00Z","overview":"Big Hero 6 responds to Richardson Mole\u2019s every whim when he is made mayor for the day.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19438},{"seriesId":112,"episodeFileId":15631,"seasonNumber":3,"episodeNumber":3,"title":"The Dog Craze of Summer","airDate":"2020-09-28","airDateUtc":"2020-09-28T23:55:00Z","overview":"Hiro enlists the help of the team when Granville\u2019s three dogs go missing while under his watch.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19439},{"seriesId":112,"episodeFileId":15667,"seasonNumber":3,"episodeNumber":4,"title":"Trading Chips","airDate":"2020-10-05","airDateUtc":"2020-10-05T23:30:00Z","overview":"Hiro switches Baymax and Mini-Max's chips so that Baymax, using Mini-Max's body, can fit inside a tiny space and offer Mochi medical assistance.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19440},{"seriesId":112,"episodeFileId":15668,"seasonNumber":3,"episodeNumber":5,"title":"Mini Noodle Burger Max","airDate":"2020-10-05","airDateUtc":"2020-10-05T23:55:00Z","overview":"A low-charged Baymax and Mini Max have to join forces with Noodle Boy to save Big Hero 6!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19441},{"seriesId":112,"episodeFileId":15823,"seasonNumber":3,"episodeNumber":6,"title":"A Friendly Face","airDate":"2020-10-12","airDateUtc":"2020-10-12T23:30:00Z","overview":"When Krei wants to sell the Mayor an automated fleet of shuttle vehicles, Honey Lemon suggests giving the shuttles a friendly face and an upbeat personality.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19442},{"seriesId":112,"episodeFileId":15822,"seasonNumber":3,"episodeNumber":7,"title":"Big Chibi 6","airDate":"2020-10-12","airDateUtc":"2020-10-12T23:55:00Z","overview":"Hardlight crashes Karmi's autograph session for her new chibi series.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19443},{"seriesId":112,"episodeFileId":16001,"seasonNumber":3,"episodeNumber":8,"title":"Cobra and Mongoose","airDate":"2020-10-26","airDateUtc":"2020-10-26T23:30:00Z","overview":"Fred is attacked by mechanical cobras, however their target is a former spy codename: Mongoose!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19926},{"seriesId":112,"episodeFileId":16001,"seasonNumber":3,"episodeNumber":9,"title":"Better Off Fred","airDate":"2020-10-26","airDateUtc":"2020-10-26T23:55:00Z","overview":"Fred meets the girl of his dreams, only to be rejected by her!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19927},{"seriesId":112,"episodeFileId":16100,"seasonNumber":3,"episodeNumber":10,"title":"Big Hero Battle","airDate":"2020-11-02","airDateUtc":"2020-11-03T00:30:00Z","overview":"4 2 Sing, a famous boy band, decides to be crime fighters and challenge Big Hero 6 to a superhero-off.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19936},{"seriesId":112,"episodeFileId":16100,"seasonNumber":3,"episodeNumber":11,"title":"Go Go the Wooweroo","airDate":"2020-11-02","airDateUtc":"2020-11-03T00:55:00Z","overview":"Go Go reluctantly goes undercover as the co-host of Wendy Wower's television show.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19937},{"seriesId":112,"episodeFileId":16102,"seasonNumber":3,"episodeNumber":12,"title":"The New Nega-Globby","airDate":"2020-11-09","airDateUtc":"2020-11-10T00:30:00Z","overview":"Globby and Honey Lemon feel guilty about trapping Nega-Globby in the Glop-Vac.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19938},{"seriesId":112,"episodeFileId":16102,"seasonNumber":3,"episodeNumber":13,"title":"De-Based","airDate":"2020-11-09","airDateUtc":"2020-11-10T00:55:00Z","overview":"When Basemax opens a spam email, she gets infected with a virus.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19939},{"seriesId":112,"episodeFileId":17472,"seasonNumber":3,"episodeNumber":14,"title":"The MiSFIT","airDate":"2021-02-01","airDateUtc":"2021-02-02T00:30:00Z","overview":"In order to recruit child prodigy Rishi Patel, Professor Granville enlists Hiro to give him a tour of SFIT.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20398},{"seriesId":112,"episodeFileId":17472,"seasonNumber":3,"episodeNumber":15,"title":"Return to Sycorax","airDate":"2021-02-01","airDateUtc":"2021-02-02T00:55:00Z","overview":"Krei goes missing in the old Sycorax building!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20399},{"seriesId":112,"episodeFileId":17519,"seasonNumber":3,"episodeNumber":16,"title":"A Fresh Sparkles","airDate":"2021-02-08","airDateUtc":"2021-02-09T00:30:00Z","overview":"When Big Hero 6 find Mr. Sparkles working at the Pizza-Party-Torium, he tells them he's decided to leave the world of crime behind.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20785},{"seriesId":112,"episodeFileId":17519,"seasonNumber":3,"episodeNumber":17,"title":"Noodle Burger Ploy","airDate":"2021-02-08","airDateUtc":"2021-02-09T00:55:00Z","overview":"Noodle Burger Boy and the mascots abduct Fred.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20786},{"seriesId":112,"episodeFileId":17555,"seasonNumber":3,"episodeNumber":18,"title":"Krei-oke Night","airDate":"2021-02-15","airDateUtc":"2021-02-16T00:30:00Z","overview":"Krei enlists Big Hero 6 to launch his new karaoke machine.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20787},{"seriesId":112,"episodeFileId":17555,"seasonNumber":3,"episodeNumber":19,"title":"The Mascot Upshot","airDate":"2021-02-15","airDateUtc":"2021-02-16T00:55:00Z","overview":"Hiro sees an opportunity to defeat the mascots when they decide to add a member to their family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20788}],"episodeFile":[{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Seventh Wheel-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E02.Seventh Wheel-WEBDL-1080p.mkv","size":604522179,"dateAdded":"2019-08-12T18:17:52.609865Z","sceneName":"Big.Hero.6.The.Series.S02E02.Seventh.Wheel.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3427929,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8197},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Something's Fishy-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E04.Something's Fishy-WEBDL-1080p.mkv","size":675711892,"dateAdded":"2019-08-12T18:17:54.446999Z","sceneName":"Big.Hero.6.The.Series.S02E04.Somethings.Fishy.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3858186,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8198},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Internabout-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E01.Internabout-WEBDL-1080p.mkv","size":563305385,"dateAdded":"2019-08-12T18:17:56.798596Z","sceneName":"Big.Hero.6.The.Series.S02E01.Internabout.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3178776,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8199},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Prey Date-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E03.Prey Date-WEBDL-1080p.mkv","size":564887888,"dateAdded":"2019-08-12T18:17:59.08494Z","sceneName":"Big.Hero.6.The.Series.S02E03.Prey.Date.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3188366,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8200},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Supersonic Sue-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E09.Supersonic Sue-WEBDL-1080p.mkv","size":550517928,"dateAdded":"2019-08-12T18:33:53.237796Z","sceneName":"Big.Hero.6.The.Series.S02E09.Supersonic.Sue.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3101411,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8201},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Muira-Horror!-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E07.Muira-Horror!-WEBDL-1080p.mkv","size":636137506,"dateAdded":"2019-08-12T18:35:23.260607Z","sceneName":"Big.Hero.6.The.Series.S02E07.Muira-Horror.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3619007,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8202},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Something Fluffy-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E08.Something Fluffy-WEBDL-1080p.mkv","size":686587890,"dateAdded":"2019-08-12T18:35:27.085923Z","sceneName":"Big.Hero.6.The.Series.S02E08.Something.Fluffy.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3923919,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8203},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Lie Detector-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E10.Lie Detector-WEBDL-1080p.mkv","size":748424459,"dateAdded":"2019-08-12T18:35:29.179163Z","sceneName":"Big.Hero.6.The.Series.S02E10.Lie.Detector.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4297541,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8204},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Nega-Globby-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E05.Nega-Globby-WEBDL-1080p.mkv","size":658368693,"dateAdded":"2019-08-12T18:35:34.581477Z","sceneName":"Big.Hero.6.The.Series.S02E05.Nega-Globby.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3753387,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8205},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Fate of the Roommates-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E06.The Fate of the Roommates-WEBDL-1080p.mkv","size":707311947,"dateAdded":"2019-08-12T18:35:42.216846Z","sceneName":"Big.Hero.6.The.Series.S02E06.The.Fate.of.the.Roommates.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4049202,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8206},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Write Turn Here-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E11.Write Turn Here-WEBDL-1080p.mkv","size":722257069,"dateAdded":"2019-09-23T18:22:03.314434Z","sceneName":"Big.Hero.6.The.Series.S02E11.Write.Turn.Here.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4139524,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9119},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E13.City of Monsters - Part II-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E13.City of Monsters - Part II-WEBDL-1080p.mkv","size":787950445,"dateAdded":"2019-09-23T18:22:04.772757Z","sceneName":"Big.Hero.6.The.Series.S02E13.City.of.Monsters.2.1080p.AMZN.WEBRip.DDP5.1.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4120540,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9120},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E12.City of Monsters - Part I-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E12.City of Monsters - Part I-WEBDL-1080p.mkv","size":706660034,"dateAdded":"2019-09-23T18:22:06.171977Z","sceneName":"Big.Hero.6.The.Series.S02E12.City.of.Monsters.1.1080p.AMZN.WEBRip.DDP5.1.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3629092,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9121},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Mini-Maximum Trouble-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E14.Mini-Maximum Trouble-WEBDL-1080p.mkv","size":688407009,"dateAdded":"2019-09-23T18:36:03.840673Z","sceneName":"Big.Hero.6.The.Series.S02E14.Mini-Maximum.Trouble.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3934795,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9122},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Globby Within-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E16.The Globby Within-WEBDL-1080p.mkv","size":591782162,"dateAdded":"2019-09-23T18:51:34.333063Z","sceneName":"Big.Hero.6.The.Series.S02E16.The.Globby.Within.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3350800,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9123},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E15.El Fuego-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E15.El Fuego-WEBDL-1080p.mkv","size":811614547,"dateAdded":"2019-09-23T18:53:04.359059Z","sceneName":"Big.Hero.6.The.Series.S02E15.El.Fuego.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4679592,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9124},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Baymax Returns-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E01.Baymax Returns-WEBDL-1080p.mkv","size":524271009,"dateAdded":"2019-10-04T03:00:48.190467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1251096,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9509},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Issue 188-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E02.Issue 188-WEBDL-1080p.mkv","size":233290568,"dateAdded":"2019-10-04T03:00:51.174935Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154520,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1248747,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9510},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Big Roommates 2-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E03.Big Roommates 2-WEBDL-1080p.mkv","size":233317484,"dateAdded":"2019-10-04T03:00:53.103291Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153356,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250085,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9511},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Fred's Bro-Tillion-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E04.Fred's Bro-Tillion-WEBDL-1080p.mkv","size":233738695,"dateAdded":"2019-10-04T03:00:55.099142Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155714,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250363,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9512},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Food Fight-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E05.Food Fight-WEBDL-1080p.mkv","size":233738153,"dateAdded":"2019-10-04T03:00:57.169442Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155376,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250686,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9513},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Muirahara Woods-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E06.Muirahara Woods-WEBDL-1080p.mkv","size":233349701,"dateAdded":"2019-10-04T03:00:59.364909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154184,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249502,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9514},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Failure Mode-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E07.Failure Mode-WEBDL-1080p.mkv","size":233616777,"dateAdded":"2019-10-04T03:01:01.715375Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249453,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9515},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Aunt Cass Goes Out-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E08.Aunt Cass Goes Out-WEBDL-1080p.mkv","size":233520973,"dateAdded":"2019-10-04T03:01:04.064403Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154483,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250184,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9516},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Impatient Patient-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E09.The Impatient Patient-WEBDL-1080p.mkv","size":233557670,"dateAdded":"2019-10-04T03:01:06.499134Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155075,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249816,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9517},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Mr. Sparkles Loses His Sparkle-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E10.Mr. Sparkles Loses His Sparkle-WEBDL-1080p.mkv","size":232951930,"dateAdded":"2019-10-04T03:01:08.793178Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155916,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250201,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9518},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Killer App-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E11.Killer App-WEBDL-1080p.mkv","size":233626496,"dateAdded":"2019-10-04T03:01:11.134158Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154556,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250836,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9519},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Small Hiro One-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E12.Small Hiro One-WEBDL-1080p.mkv","size":233499748,"dateAdded":"2019-10-04T03:01:13.242807Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154384,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250211,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9520},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Kentucky Kaiju-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E13.Kentucky Kaiju-WEBDL-1080p.mkv","size":232682820,"dateAdded":"2019-10-04T03:01:15.075922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154889,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249625,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9521},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Rivalry Weak-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E14.Rivalry Weak-WEBDL-1080p.mkv","size":232908324,"dateAdded":"2019-10-04T03:01:18.162773Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156142,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249722,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9522},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Fan Friction-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E15.Fan Friction-WEBDL-1080p.mkv","size":233098455,"dateAdded":"2019-10-04T03:01:20.358515Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156230,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250681,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9523},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Mini-Max-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E16.Mini-Max-WEBDL-1080p.mkv","size":232962510,"dateAdded":"2019-10-04T03:01:24.499805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154543,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1251628,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9524},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Big Hero 7-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E17.Big Hero 7-WEBDL-1080p.mkv","size":232880823,"dateAdded":"2019-10-04T03:01:26.7942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156249,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249420,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9525},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Big Problem-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E18.Big Problem-WEBDL-1080p.mkv","size":232788621,"dateAdded":"2019-10-04T03:01:28.082316Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154736,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250335,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9526},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Steamer's Revenge-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E19.Steamer's Revenge-WEBDL-1080p.mkv","size":232855502,"dateAdded":"2019-10-04T03:01:30.029472Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155623,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249893,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9527},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Bot Fighter-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E20.The Bot Fighter-WEBDL-1080p.mkv","size":232717728,"dateAdded":"2019-10-04T03:01:32.117487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154865,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1249778,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9528},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Obake Yashiki-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E21.Obake Yashiki-WEBDL-1080p.mkv","size":233029001,"dateAdded":"2019-10-04T03:01:34.088792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156158,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250398,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9529},{"seriesId":112,"seasonNumber":1,"relativePath":"Season 01\/S01E22E23E24.Countdown to Catastrophe-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 01\/S01E22E23E24.Countdown to Catastrophe-WEBDL-1080p.mkv","size":666919504,"dateAdded":"2019-11-05T18:40:05.342375Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155843,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250571,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:03:06","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10043},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Hardlight-WEBRip-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E17.Hardlight-WEBRip-1080p.mkv","size":764786365,"dateAdded":"2019-11-25T23:28:34.019024Z","sceneName":"Big.Hero.6.The.Series.S02E17.Hardlight.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4567505,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10278},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E18.The Present-WEBRip-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E18.The Present-WEBRip-1080p.mkv","size":763750920,"dateAdded":"2019-12-07T23:59:32.808022Z","sceneName":"Big.Hero.6.The.Series.S02E18.The.Present.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4561379,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10430},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Hiro the Villain-WEBRip-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E19.Hiro the Villain-WEBRip-1080p.mkv","size":774843803,"dateAdded":"2020-01-05T22:33:30.051269Z","sceneName":"Big.Hero.6.The.Series.S02E19.Hiro.the.Villain.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4628602,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11176},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Portal Enemy-WEBRip-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E20.Portal Enemy-WEBRip-1080p.mkv","size":622997777,"dateAdded":"2020-01-13T21:18:47.25007Z","sceneName":"Big.Hero.6.The.Series.S02E20.Portal.Enemy.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3539485,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11829},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Fred the Fugitive-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E21.Fred the Fugitive-WEBDL-1080p.mkv","size":863700801,"dateAdded":"2020-01-26T17:33:21.916554Z","sceneName":"Big.Hero.6.The.Series.S02E21.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5166799,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12071},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Major Blast-WEBRip-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E22.Major Blast-WEBRip-1080p.mkv","size":767280988,"dateAdded":"2020-01-27T21:21:20.803385Z","sceneName":"Big.Hero.6.The.Series.S02E22.Major.Blast.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4411481,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12075},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Fear Not-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E23.Fear Not-WEBDL-1080p.mkv","size":778644875,"dateAdded":"2020-02-02T17:52:21.703628Z","sceneName":"Big.Hero.6.The.Series.S02E23.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4651447,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12095},{"seriesId":112,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Legacies-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 02\/S02E24.Legacies-WEBDL-1080p.mkv","size":1560746794,"dateAdded":"2020-02-16T17:26:36.598734Z","sceneName":"Big.Hero.6.The.Series.S02E24.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4664287,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12489},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Mayor for a Day-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E02.Mayor for a Day-WEBDL-1080p.mkv","size":407967317,"dateAdded":"2020-09-28T16:14:38.211191Z","sceneName":"Big.Hero.6.The.Series.S03E02.Mayor.for.a.Day.1080p.HULU.WEBRip.AAC2.0.H264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4875778,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15630},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Dog Craze of Summer-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E03.The Dog Craze of Summer-WEBDL-1080p.mkv","size":359335756,"dateAdded":"2020-09-28T16:16:25.219259Z","sceneName":"Big.Hero.6.The.Series.S03E03.The.Dog.Craze.of.Summer.1080p.HULU.WEBRip.AAC2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4286959,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15631},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Trading Chips-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E04.Trading Chips-WEBDL-1080p.mkv","size":403010225,"dateAdded":"2020-10-05T16:12:12.029704Z","sceneName":"Big.Hero.6.The.Series.S03E04.Trading.Chips.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4818543,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15667},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Mini Noodle Burger Max-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E05.Mini Noodle Burger Max-WEBDL-1080p.mkv","size":412973080,"dateAdded":"2020-10-05T16:15:13.882698Z","sceneName":"Big.Hero.6.The.Series.S03E05.Mini.Noodle.Burger.Max.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4936010,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15668},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Big Chibi 6-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E07.Big Chibi 6-WEBDL-1080p.mkv","size":425118674,"dateAdded":"2020-10-13T02:56:15.855216Z","sceneName":"Big.Hero.6.The.Series.S03E07.Big.Chibi.6.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5083848,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15822},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E06.A Friendly Face-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E06.A Friendly Face-WEBDL-1080p.mkv","size":389480003,"dateAdded":"2020-10-13T02:56:19.755119Z","sceneName":"Big.Hero.6.The.Series.S03E06.A.Friendly.Face.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4653731,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15823},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E08.S03E09.Cobra and Mongoose + Better Off Fred-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E08.S03E09.Cobra and Mongoose + Better Off Fred-WEBDL-1080p.mkv","size":782148506,"dateAdded":"2020-11-03T02:23:06.786943Z","sceneName":"Big.Hero.6.The.Series.S03E08E09.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4672675,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16001},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Hyper-potamus Pizza-Party-torium-WEBDL-720p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E01.The Hyper-potamus Pizza-Party-torium-WEBDL-720p.mkv","size":563086309,"dateAdded":"2020-11-04T01:44:39.046028Z","sceneName":"Big.Hero.6.The.Series.S03E01.720p.WEB.h264-BAE[rarbg]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126750,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3360000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16046},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E10.S03E11.Big Hero Battle + Go Go the Wooweroo-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E10.S03E11.Big Hero Battle + Go Go the Wooweroo-WEBDL-1080p.mkv","size":855313426,"dateAdded":"2020-11-19T10:00:49.102622Z","sceneName":"Big.Hero.6.The.Series.S03E10E11.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5115952,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16100},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E12.S03E13.The New Nega-Globby + De-Based-WEBDL-1080p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E12.S03E13.The New Nega-Globby + De-Based-WEBDL-1080p.mkv","size":812670131,"dateAdded":"2020-11-19T10:04:27.444135Z","sceneName":"Big.Hero.6.The.Series.S03E12E13.The.New.Nega-Globby-De-Based.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4857593,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16102},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E14.S03E15.The MiSFIT + Return to Sycorax-WEBDL-720p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E14.S03E15.The MiSFIT + Return to Sycorax-WEBDL-720p.mkv","size":336711858,"dateAdded":"2021-02-02T04:36:51.131175Z","sceneName":"Big.Hero.6.The.Series.S03E14E15.The.MiSFIT-Return.to.Sycorax.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1973955,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17472},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E16.S03E17.A Fresh Sparkles + Noodle Burger Ploy-WEBDL-720p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E16.S03E17.A Fresh Sparkles + Noodle Burger Ploy-WEBDL-720p.mkv","size":332202462,"dateAdded":"2021-02-10T08:23:07.390809Z","sceneName":"Big.Hero.6.The.Series.S03E16E17.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1946647,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17519},{"seriesId":112,"seasonNumber":3,"relativePath":"Season 03\/S03E18.S03E19.Krei-oke Night + The Mascot Upshot-WEBDL-720p.mkv","path":"\/tv\/Big Hero 6- The Series\/Season 03\/S03E18.S03E19.Krei-oke Night + The Mascot Upshot-WEBDL-720p.mkv","size":324143612,"dateAdded":"2021-02-16T04:22:24.341169Z","sceneName":"Big.Hero.6.The.Series.S03E18E19.Krei-oke.Night-The.Mascot.Upshot.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1897806,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17555}],"queue":[]},"113":{"series":{"title":"Outlander","alternateTitles":[],"sortTitle":"outlander","status":"continuing","ended":false,"overview":"An English combat nurse from 1945 is mysteriously swept back in time to 1743.","previousAiring":"2020-05-11T00:00:00Z","network":"Facebook Watch","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/121\/banner.jpg?lastWrite=637100124014071480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/270408-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/121\/poster.jpg?lastWrite=637102722056137350","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/270408-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/121\/fanart.jpg?lastWrite=637100124012111510","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/270408-19.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":75,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-05-31T00:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":75320075321,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-07-10T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":64533372557,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-12-11T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":21638631900,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-01-28T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":41933135776,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2020-05-11T00:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":23069279182,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2014,"path":"\/tv\/Outlander","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":270408,"tvRageId":36202,"tvMazeId":43,"firstAired":"2014-08-09T00:00:00Z","seriesType":"standard","cleanTitle":"outlander","imdbId":"tt3006802","titleSlug":"outlander","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Romance"],"tags":[],"added":"2018-12-28T22:37:47.253353Z","ratings":{"votes":2624,"value":9.0},"statistics":{"seasonCount":6,"episodeFileCount":67,"episodeCount":67,"totalEpisodeCount":150,"sizeOnDisk":226494494736,"percentOfEpisodes":100.0},"id":121},"episodes":[{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":1,"title":"Echoes","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21442},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":2,"title":"Allegiance","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21443},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":3,"title":"Temperance","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21444},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":6,"title":"The World Turned Upside Down","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21489},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":4,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21583},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":5,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21584},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":7,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21585},{"seriesId":121,"episodeFileId":0,"seasonNumber":6,"episodeNumber":8,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21586},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Inside The World of Outlander: Episode 101","airDate":"2014-08-09","airDateUtc":"2014-08-10T00:00:00Z","overview":"Executive Producer Ronald Moore discusses the thought process behind the crucial time-travel scenes in Outlander episode 101,","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9656},{"seriesId":121,"episodeFileId":6231,"seasonNumber":1,"episodeNumber":1,"title":"Sassenach","airDate":"2014-08-09","airDateUtc":"2014-08-10T00:00:00Z","overview":"While on her honeymoon, WWII combat nurse Claire Randall is mysteriously transported back to 1743 Scotland, where she is kidnapped by a group of Highlanders - and meets an injured young man named Jamie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":9708},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Inside The World of Outlander: Episode 102","airDate":"2014-08-16","airDateUtc":"2014-08-17T00:00:00Z","overview":"Learn more about Castle Leoch and the strategies of dressing Claire in Outlander episode 102.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9657},{"seriesId":121,"episodeFileId":6232,"seasonNumber":1,"episodeNumber":2,"title":"Castle Leoch","airDate":"2014-08-16","airDateUtc":"2014-08-17T00:00:00Z","overview":"Claire is taken to meet the Laird. As suspicions about her grow, Claire befriends the mysterious Geillis Duncan. When the clan discover her medical skills, Claire goes from guest to prisoner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":9709},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Inside The World of Outlander: Episode 103","airDate":"2014-08-23","airDateUtc":"2014-08-24T00:00:00Z","overview":"Learn more about medicinal herbs and the mysterious Geillis.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9658},{"seriesId":121,"episodeFileId":6233,"seasonNumber":1,"episodeNumber":3,"title":"The Way Out","airDate":"2014-08-23","airDateUtc":"2014-08-24T00:00:00Z","overview":"Claire decides to use her medical skills to aid her escape from Castle Leoch - with Jamie's help, she tends to an ill child. During an evening's entertainment, a story gives Claire hope for her freedom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":9710},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Inside The World of Outlander: Episode 104","airDate":"2014-08-30","airDateUtc":"2014-08-31T00:00:00Z","overview":"Executive Producer Ronald Moore discusses the festival at Castle Leoch, and the on-screen appearance of Outlander Diana Gabaldon.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9659},{"seriesId":121,"episodeFileId":6234,"seasonNumber":1,"episodeNumber":4,"title":"The Gathering","airDate":"2014-08-30","airDateUtc":"2014-08-31T00:00:00Z","overview":"As the Castle prepares for The Gathering, Claire plots her escape. But after a dangerous encounter with a drunken Dougal and an unexpected run-in with Jamie, her plans are dashed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":9711},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Inside The World of Outlander: Episode 105","airDate":"2014-09-06","airDateUtc":"2014-09-07T00:00:00Z","overview":"Learn more about the extensive on-location filming in historic and rural sections of Scotland for episode 105.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9660},{"seriesId":121,"episodeFileId":6235,"seasonNumber":1,"episodeNumber":5,"title":"Rent","airDate":"2014-09-06","airDateUtc":"2014-09-07T00:00:00Z","overview":"Claire joins the MacKenzie rent-collecting trip. To her horror, Dougal uses Jamie's scars to gain sympathy for the Jacobite cause. Claire recalls that a defining moment in Scottish history is fast approaching.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":9712},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Inside The World of Outlander: Episode 106","airDate":"2014-09-13","airDateUtc":"2014-09-14T00:00:00Z","overview":"Learn more about Outlander's villain Captain Jack Randall - and how Claire must deal with the dark ancestor of her 20th century husband.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9661},{"seriesId":121,"episodeFileId":6236,"seasonNumber":1,"episodeNumber":6,"title":"The Garrison Commander","airDate":"2014-09-13","airDateUtc":"2014-09-14T00:00:00Z","overview":"Claire's unexpected meeting with a British general turns tense when Captain Jack Randall arrives. Claire finds herself alone with Randall - a dangerous man determined to uncover her secrets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":9713},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Inside The World of Outlander: Episode 107","airDate":"2014-09-20","airDateUtc":"2014-09-21T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9662},{"seriesId":121,"episodeFileId":6237,"seasonNumber":1,"episodeNumber":7,"title":"The Wedding","airDate":"2014-09-20","airDateUtc":"2014-09-21T00:00:00Z","overview":"Claire and Jamie are thrown together in marriage, but as their emotional and physical relationship unfolds, deeper feelings arise. Claire is ultimately torn between two men in two very different times.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":9714},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Inside The World of Outlander: Episode 108","airDate":"2014-09-27","airDateUtc":"2014-09-28T00:00:00Z","overview":"Executive Producer Ronald Moore discusses how both Claire and her modern husband Frank find themselves at the magical stones.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9663},{"seriesId":121,"episodeFileId":6238,"seasonNumber":1,"episodeNumber":8,"title":"Both Sides Now","airDate":"2014-09-27","airDateUtc":"2014-09-28T00:00:00Z","overview":"Frank desperately searches for his missing wife, while Claire tries to come to terms with her new marriage. Claire is faced with an emotional quandry as a life-altering opportunity presents itself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":9715},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Inside The World of Outlander: Episode 109","airDate":"2015-04-04","airDateUtc":"2015-04-05T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9664},{"seriesId":121,"episodeFileId":6239,"seasonNumber":1,"episodeNumber":9,"title":"The Reckoning","airDate":"2015-04-04","airDateUtc":"2015-04-05T00:00:00Z","overview":"Jamie and the Highlanders rescue Claire from Black Jack Randall. Back at the castle, politics threaten to tear Clan MacKenzie apart and Jamie's scorned lover, Laoghaire, attempts to win him back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":9716},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Inside The World of Outlander: Episode 110","airDate":"2015-04-11","airDateUtc":"2015-04-12T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9665},{"seriesId":121,"episodeFileId":6240,"seasonNumber":1,"episodeNumber":10,"title":"By the Pricking of My Thumbs","airDate":"2015-04-11","airDateUtc":"2015-04-12T00:00:00Z","overview":"Jamie hopes the Duke of Sandringham can help remove the price on his head, while Claire works to save an abandoned child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":9717},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Inside The World of Outlander: Episode 111","airDate":"2015-04-18","airDateUtc":"2015-04-19T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9666},{"seriesId":121,"episodeFileId":6241,"seasonNumber":1,"episodeNumber":11,"title":"The Devil's Mark","airDate":"2015-04-18","airDateUtc":"2015-04-19T00:00:00Z","overview":"Claire and Geillis are on trial for witchcraft. Jamie manages to rescue Claire, but not before she discovers a secret about Geillis' past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":9718},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Inside The World of Outlander: Episode 112","airDate":"2015-04-25","airDateUtc":"2015-04-26T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9667},{"seriesId":121,"episodeFileId":6242,"seasonNumber":1,"episodeNumber":12,"title":"Lallybroch","airDate":"2015-04-25","airDateUtc":"2015-04-26T00:00:00Z","overview":"Claire and Jamie are reunited and head to his family home, where old animosities between Jamie and his sister, Jenny, are rekindled.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":9719},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Inside The World of Outlander: Episode 113","airDate":"2015-05-02","airDateUtc":"2015-05-03T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9668},{"seriesId":121,"episodeFileId":6243,"seasonNumber":1,"episodeNumber":13,"title":"The Watch","airDate":"2015-05-02","airDateUtc":"2015-05-03T00:00:00Z","overview":"A Redcoat deserter from Jamie's past returns; Jenny goes into labor; Jamie and Ian join the Watch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":9720},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Inside The World of Outlander: Episode 114","airDate":"2015-05-09","airDateUtc":"2015-05-10T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9669},{"seriesId":121,"episodeFileId":6244,"seasonNumber":1,"episodeNumber":14,"title":"The Search","airDate":"2015-05-09","airDateUtc":"2015-05-10T00:00:00Z","overview":"Claire and Jenny set out to rescue Jamie from his redcoat captors. When Murtagh joins up, they turn to unorthodox tactics to send word to Jamie. When word finally arrives, the news isn't what anyone had hoped.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":9721},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Inside The World of Outlander: Episode 115","airDate":"2015-05-16","airDateUtc":"2015-05-17T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9670},{"seriesId":121,"episodeFileId":6245,"seasonNumber":1,"episodeNumber":15,"title":"Wentworth Prison","airDate":"2015-05-16","airDateUtc":"2015-05-17T00:00:00Z","overview":"Jamie awaits his death sentence at Wentworth Prison, while Claire and the Highlanders search for a rescue plan. When Jamie is visited by Black Jack, he realizes there is a fate worse than death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":9722},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Inside The World of Outlander: Episode 116","airDate":"2015-05-30","airDateUtc":"2015-05-31T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9671},{"seriesId":121,"episodeFileId":6246,"seasonNumber":1,"episodeNumber":16,"title":"To Ransom a Man's Soul","airDate":"2015-05-30","airDateUtc":"2015-05-31T00:00:00Z","overview":"A desperate plan manages to free Jamie, but his wounds are more than just physical. At a nearby monastery, Claire attempts to save both Jamie's heart and soul, as his mind lingers on the torture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":9723},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"The Next Chapter With ET Canada","airDate":"2016-03-12","airDateUtc":"2016-03-13T01:00:00Z","overview":"In this all-new special, ET Canada gets you ready for Season Two of Outlander.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9672},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"The Hands of Time: Season 1 Recap","airDate":"2016-03-14","airDateUtc":"2016-03-15T00:00:00Z","overview":"Don't forget a moment of Jamie and Claire's journey, catch up with this recap of Outlander Season 1.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9673},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Creating New Worlds - Extravagant Paris","airDate":"2016-03-21","airDateUtc":"2016-03-22T00:00:00Z","overview":"Extravagant Paris is vastly different than the rolling hills of Scotland. See the work that went into crafting this new world for Outlander Season 2.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9674},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Inside The World of Outlander: Episode 201","airDate":"2016-04-09","airDateUtc":"2016-04-10T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9675},{"seriesId":121,"episodeFileId":6034,"seasonNumber":2,"episodeNumber":1,"title":"Through a Glass, Darkly","airDate":"2016-04-09","airDateUtc":"2016-04-10T00:00:00Z","overview":"Returning to her own time, Claire must reconcile her future with the life she left behind. Shifting back to the 18th century, Jamie, Claire and Murtagh arrive in France, but learn that Paris presents its own challenges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":9724},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Inside The World of Outlander: Episode 202","airDate":"2016-04-16","airDateUtc":"2016-04-17T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9676},{"seriesId":121,"episodeFileId":6035,"seasonNumber":2,"episodeNumber":2,"title":"Not in Scotland Anymore","airDate":"2016-04-16","airDateUtc":"2016-04-17T00:00:00Z","overview":"Life in Paris is not without trials as Jamie struggles to triumph over his past. A fortunate meeting with Prince Charles presents opportunities, while the Duke of Sandringham's presence brings complications.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":9725},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Inside The World of Outlander: Episode 203","airDate":"2016-04-23","airDateUtc":"2016-04-24T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9677},{"seriesId":121,"episodeFileId":6036,"seasonNumber":2,"episodeNumber":3,"title":"Useful Occupations and Deceptions","airDate":"2016-04-23","airDateUtc":"2016-04-24T00:00:00Z","overview":"Jamie\u2019s time is dominated by political machinations, while Claire finds solace in her healing skills.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":9726},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Inside The World of Outlander: Episode 204","airDate":"2016-04-30","airDateUtc":"2016-05-01T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9678},{"seriesId":121,"episodeFileId":6037,"seasonNumber":2,"episodeNumber":4,"title":"La Dame Blanche","airDate":"2016-04-30","airDateUtc":"2016-05-01T00:00:00Z","overview":"Claire and Jamie throw an elaborate dinner party intended to derail investors in Prince Charles\u2019 war effort.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":9727},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Inside The World of Outlander: Episode 205","airDate":"2016-05-07","airDateUtc":"2016-05-08T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9679},{"seriesId":121,"episodeFileId":6038,"seasonNumber":2,"episodeNumber":5,"title":"Untimely Resurrection","airDate":"2016-05-07","airDateUtc":"2016-05-08T00:00:00Z","overview":"Claire and Jamie reunite and attempt to extinguish fires until Claire makes an unexpected change of course; Jamie and Claire's relationship is tested when the past rears its ugly head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":9728},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Inside The World of Outlander: Episode 206","airDate":"2016-05-14","airDateUtc":"2016-05-15T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9680},{"seriesId":121,"episodeFileId":6039,"seasonNumber":2,"episodeNumber":6,"title":"Best Laid Schemes...","airDate":"2016-05-14","airDateUtc":"2016-05-15T00:00:00Z","overview":"Jamie and Claire use Claire's medical knowledge to come up with a scheme to stop a deal which could fill the war chest; Claire learns Jamie has gone back on his word.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":9729},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Inside The World of Outlander: Episode 207","airDate":"2016-05-21","airDateUtc":"2016-05-22T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9681},{"seriesId":121,"episodeFileId":6040,"seasonNumber":2,"episodeNumber":7,"title":"Faith","airDate":"2016-05-21","airDateUtc":"2016-05-22T00:00:00Z","overview":"Doctors at L'Hopital des Anges attempt to save the lives of Claire and her unborn baby; King Louis asks Claire to judge two men accused of engaging in the dark arts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":9730},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Inside The World of Outlander: Episode 208","airDate":"2016-05-28","airDateUtc":"2016-05-29T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9682},{"seriesId":121,"episodeFileId":6041,"seasonNumber":2,"episodeNumber":8,"title":"The Fox's Lair","airDate":"2016-05-28","airDateUtc":"2016-05-29T00:00:00Z","overview":"Claire and Jamie attempt to elicit support from Jamie's grandsire, Lord Lovat; Colum MacKenzie arrives with plans of his own; Lord Lovat makes moves to advance his own interests.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":9731},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Inside The World of Outlander: Episode 209","airDate":"2016-06-04","airDateUtc":"2016-06-05T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9683},{"seriesId":121,"episodeFileId":6042,"seasonNumber":2,"episodeNumber":9,"title":"Je Suis Prest","airDate":"2016-06-04","airDateUtc":"2016-06-05T00:00:00Z","overview":"Claire and Jamie reunite with the Lallybroch and MacKenzie men during training; Jamie and Claire wage personal battles; an Englishman arrives in camp with new information.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":9732},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Inside The World of Outlander: Episode 210","airDate":"2016-06-11","airDateUtc":"2016-06-12T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9684},{"seriesId":121,"episodeFileId":6043,"seasonNumber":2,"episodeNumber":10,"title":"Prestonpans","airDate":"2016-06-11","airDateUtc":"2016-06-12T00:00:00Z","overview":"Jamie uses Claire's knowledge of the future to lead the Jacobite army into battle against the British, while Claire tends to the wounded, a harsh reminder of the cost of war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":9733},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Inside The World of Outlander: Episode 211","airDate":"2016-06-18","airDateUtc":"2016-06-19T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9685},{"seriesId":121,"episodeFileId":6044,"seasonNumber":2,"episodeNumber":11,"title":"Vengeance is Mine","airDate":"2016-06-18","airDateUtc":"2016-06-19T00:00:00Z","overview":"Claire and the Highlanders make their way north after the Jacobite leaders decide to stop their march on London. Jamie is included in the group of riders enlisted for Dougal. Claire also joins them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":9734},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Inside The World of Outlander: Episode 212","airDate":"2016-06-25","airDateUtc":"2016-06-26T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9686},{"seriesId":121,"episodeFileId":6045,"seasonNumber":2,"episodeNumber":12,"title":"The Hail Mary","airDate":"2016-06-25","airDateUtc":"2016-06-26T00:00:00Z","overview":"Jamie works to divert the Jacobite army away from imminent slaughter; Claire tries to provide comfort to a sick Alex Randall; Alex shares an unusual plan to save the mother of his child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":9735},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Inside The World of Outlander: Episode 213","airDate":"2016-07-09","airDateUtc":"2016-07-10T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9687},{"seriesId":121,"episodeFileId":6046,"seasonNumber":2,"episodeNumber":13,"title":"Dragonfly in Amber","airDate":"2016-07-09","airDateUtc":"2016-07-10T00:00:00Z","overview":"In the present, Claire reveals the truth to her daughter, Brianna; in the 18th century, Jamie does everything he can to save his loved ones as the Battle of Culloden begins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":9736},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"The Story So Far: Seasons 1 and 2","airDate":"2017-09-08","airDateUtc":"2017-09-09T00:00:00Z","overview":"Catch up on all the events of Seasons 1 and 2 of Outlander before the series returns.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9688},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Inside The World of Outlander: Episode 301","airDate":"2017-09-09","airDateUtc":"2017-09-10T00:00:00Z","overview":"Executive Producer Ronald D. Moore and Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 301: \"The Battle Joined.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9689},{"seriesId":121,"episodeFileId":6252,"seasonNumber":3,"episodeNumber":1,"title":"The Battle Joined","airDate":"2017-09-10","airDateUtc":"2017-09-11T00:00:00Z","overview":"After living through the Battle of Culloden, Jamie finds himself at the mercy of unforgiving British victors, until a connection from his past provides his only hope of survival. Meanwhile, a pregnant Claire attempts to adjust to life in the modern world of 1940s Boston \u2013 and life with Frank.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":9737},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Inside The World of Outlander: Episode 302","airDate":"2017-09-16","airDateUtc":"2017-09-17T00:00:00Z","overview":"Executive Producer Ronald D. Moore and Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 302: \"Surrender.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9690},{"seriesId":121,"episodeFileId":6253,"seasonNumber":3,"episodeNumber":2,"title":"Surrender","airDate":"2017-09-17","airDateUtc":"2017-09-18T00:00:00Z","overview":"Jamie leads a lonely life hidden in a cave until Lallybroch is threatened by redcoats; Claire and Frank struggle to coexist in a marriage haunted by the ghost of Jamie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":9738},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Inside The World of Outlander: Episode 303","airDate":"2017-09-23","airDateUtc":"2017-09-24T00:00:00Z","overview":"Executive Producer Ronald D. Moore and Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 303: \"All Debts Paid.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9691},{"seriesId":121,"episodeFileId":6254,"seasonNumber":3,"episodeNumber":3,"title":"All Debts Paid","airDate":"2017-09-24","airDateUtc":"2017-09-25T00:00:00Z","overview":"In prison, Jamie discovers that an old foe has become the warden \u2013 and now has the power to make his life a living hell. Over the years, Claire and Frank both put their best foot forward to share a harmonious marriage, but an uninvited guest shatters this illusion, bringing their differences to light.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":9739},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Inside The World of Outlander: Episode 304","airDate":"2017-09-30","airDateUtc":"2017-10-01T00:00:00Z","overview":"Executive Producer Ronald D. Moore and Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 304: \"Of Lost Things.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9692},{"seriesId":121,"episodeFileId":6256,"seasonNumber":3,"episodeNumber":4,"title":"Of Lost Things","airDate":"2017-10-01","airDateUtc":"2017-10-02T00:00:00Z","overview":"While serving as groomsman at the aristocratic estate of Helwater, Jamie is reluctantly pulled into the intrigue of a noble British family. In 1968 Scotland, Claire, Brianna and Roger struggle to trace Jamie's whereabouts in history, leaving Claire to wonder if they will ever find him again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":9740},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Inside The World of Outlander: Episode 305","airDate":"2017-10-07","airDateUtc":"2017-10-08T00:00:00Z","overview":"Executive Producer Ronald D. Moore and Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 305: \"Freedom & Whisky.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9693},{"seriesId":121,"episodeFileId":6257,"seasonNumber":3,"episodeNumber":5,"title":"Freedom & Whisky","airDate":"2017-10-08","airDateUtc":"2017-10-09T00:00:00Z","overview":"Brianna grapples with life-changing revelations and Claire must help her come to terms with the fact that she is her father's daughter. Roger brings news that forces Claire and Brianna to face an impossible choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":9741},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Inside The World of Outlander: Episode 306","airDate":"2017-10-21","airDateUtc":"2017-10-22T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9694},{"seriesId":121,"episodeFileId":6258,"seasonNumber":3,"episodeNumber":6,"title":"A. Malcolm","airDate":"2017-10-22","airDateUtc":"2017-10-23T00:00:00Z","overview":"After decades apart, Jamie and Claire finally reunite and rekindle their emotional and physical bonds. But Jamie's new business dealings jeopardize the couple's hopes for a simple life together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":9742},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Inside The World of Outlander: Episode 307","airDate":"2017-10-28","airDateUtc":"2017-10-29T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9695},{"seriesId":121,"episodeFileId":6260,"seasonNumber":3,"episodeNumber":7,"title":"Creme De Menthe","airDate":"2017-10-29","airDateUtc":"2017-10-30T00:00:00Z","overview":"In the aftermath of a violent confrontation, Claire follows her conscience as a surgeon, even though it could put her and Jamie's lives at risk. At the same time, Jamie attempts to evade the reach of the Crown as its representative closes in on his illegal dealings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":9743},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Inside The World of Outlander: Episode 308","airDate":"2017-11-04","airDateUtc":"2017-11-05T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9696},{"seriesId":121,"episodeFileId":6261,"seasonNumber":3,"episodeNumber":8,"title":"First Wife","airDate":"2017-11-05","airDateUtc":"2017-11-06T01:00:00Z","overview":"Claire returns to Lallybroch with Jamie, where she does not receive quite the reception she was expecting. Unbeknownst to her, Jamie has made some choices in their time apart which will come back to haunt them with a vengeance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":9744},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Inside The World of Outlander: Episode 309","airDate":"2017-11-12","airDateUtc":"2017-11-13T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9697},{"seriesId":121,"episodeFileId":6262,"seasonNumber":3,"episodeNumber":9,"title":"The Doldrums","airDate":"2017-11-12","airDateUtc":"2017-11-13T01:00:00Z","overview":"Claire and Jamie leave Scotland, sailing to the West Indies on an urgent quest. But when the superstitious crew looks for someone to blame after a string of bad luck, rescue comes from an unlikely source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":9745},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Inside The World of Outlander: Episode 310","airDate":"2017-11-18","airDateUtc":"2017-11-19T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9698},{"seriesId":121,"episodeFileId":6263,"seasonNumber":3,"episodeNumber":10,"title":"Heaven and Earth","airDate":"2017-11-19","airDateUtc":"2017-11-20T01:00:00Z","overview":"Claire races to discover the source of an epidemic aboard a disease-stricken ship before hundreds of sailors die. And as Jamie locks horns with Captain Raines, Fergus finds himself torn between loyalty and love.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":9746},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Inside The World of Outlander: Episode 311","airDate":"2017-11-26","airDateUtc":"2017-11-27T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9699},{"seriesId":121,"episodeFileId":6264,"seasonNumber":3,"episodeNumber":11,"title":"Uncharted","airDate":"2017-11-26","airDateUtc":"2017-11-27T01:00:00Z","overview":"After making a leap of faith, Claire washes up on a seemingly deserted island where survival is her only option. Navigating treacherous waters has crippled the Artemis, so Jamie devises a joyful moment for his crew in the midst of devastating setbacks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":9747},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Inside The World of Outlander: Episode 312","airDate":"2017-12-03","airDateUtc":"2017-12-04T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9700},{"seriesId":121,"episodeFileId":6265,"seasonNumber":3,"episodeNumber":12,"title":"The Bakra","airDate":"2017-12-03","airDateUtc":"2017-12-04T01:00:00Z","overview":"The Artemis finally reaches Jamaica bringing Jamie and Claire that much closer to their goal. During a lavish ball on the island, the Frasers encounter old allies, as well as former adversaries who threaten to derail their mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":9748},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"Inside The World of Outlander: Episode 313","airDate":"2017-12-10","airDateUtc":"2017-12-11T01:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9701},{"seriesId":121,"episodeFileId":6266,"seasonNumber":3,"episodeNumber":13,"title":"Eye of the Storm","airDate":"2017-12-10","airDateUtc":"2017-12-11T01:00:00Z","overview":"Claire is forced to play a game of cat and mouse with an old adversary as she searches for Young Ian. The Frasers race through the jungles of Jamaica to prevent the unthinkable.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":9749},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"Inside the World of Outlander: Episode 401","airDate":"2018-11-04","airDateUtc":"2018-11-05T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 401: \"America the Beautiful.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9702},{"seriesId":121,"episodeFileId":6014,"seasonNumber":4,"episodeNumber":1,"title":"America the Beautiful","airDate":"2018-11-04","airDateUtc":"2018-11-05T01:00:00Z","overview":"Claire and Jamie cross paths with Stephen Bonnet, a pirate and smuggler who enlists their help. Claire illuminates Jamie on some of America's history, leading him to wonder if it's possible for them to lay down roots.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":9750},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":50,"title":"Inside the World of Outlander: Episode 402","airDate":"2018-11-11","airDateUtc":"2018-11-12T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 402: \"Do No Harm.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9703},{"seriesId":121,"episodeFileId":5995,"seasonNumber":4,"episodeNumber":2,"title":"Do No Harm","airDate":"2018-11-11","airDateUtc":"2018-11-12T01:00:00Z","overview":"Claire and Jamie visit his Aunt Jocasta at her plantation, River Run. When tragedy strikes at the plantation, Jamie and Claire find themselves caught between what's right and the law of the land.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":9751},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":51,"title":"Inside the World of Outlander: Episode 403","airDate":"2018-11-18","airDateUtc":"2018-11-19T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 403: \"The False Bride.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9704},{"seriesId":121,"episodeFileId":5979,"seasonNumber":4,"episodeNumber":3,"title":"The False Bride","airDate":"2018-11-18","airDateUtc":"2018-11-19T01:00:00Z","overview":"Jamie and Claire search for a place to call home; meanwhile, in the 20th century, Brianna and Roger's romance heats up and then fizzles during a road trip that winds up highlighting their differences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":9752},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":52,"title":"Inside the World of Outlander: Episode 404","airDate":"2018-11-25","airDateUtc":"2018-11-26T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 404: \"Common Ground.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9705},{"seriesId":121,"episodeFileId":6174,"seasonNumber":4,"episodeNumber":4,"title":"Common Ground","airDate":"2018-11-25","airDateUtc":"2018-11-26T01:00:00Z","overview":"Having been led by providence to Fraser's Ridge, Jamie, Claire and Young Ian begin to build a home in the Blue Ridge Mountains. In the 20th Century, Roger tries to reconnect with Brianna.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":9753},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":53,"title":"Inside the World of Outlander: Episode 405","airDate":"2018-12-02","airDateUtc":"2018-12-03T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 405: \"Savages.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9706},{"seriesId":121,"episodeFileId":5982,"seasonNumber":4,"episodeNumber":5,"title":"Savages","airDate":"2018-12-02","airDateUtc":"2018-12-03T01:00:00Z","overview":"Claire's medical expertise proves invaluable, but she begins to fear for her life when tragedy strikes her patients' household. Jamie and Young Ian travel to a nearby town to recruit settlers for Fraser's Ridge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":9754},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":54,"title":"Inside the World of Outlander: Episode 406","airDate":"2018-12-09","airDateUtc":"2018-12-10T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 406: \"Blood of My Blood\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9707},{"seriesId":121,"episodeFileId":5984,"seasonNumber":4,"episodeNumber":6,"title":"Blood of My Blood","airDate":"2018-12-09","airDateUtc":"2018-12-10T01:00:00Z","overview":"Jamie and Claire are surprised when Lord John Grey drops in on Fraser's Ridge with an unexpected traveling companion. When Grey takes ill, Claire must reconcile her personal feelings with her duties as a doctor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":9755},{"seriesId":121,"episodeFileId":5981,"seasonNumber":4,"episodeNumber":7,"title":"Down the Rabbit Hole","airDate":"2018-12-16","airDateUtc":"2018-12-17T01:00:00Z","overview":"Brianna follows in her mother's footsteps and travels through the stones back in time to 18th century Scotland where she struggles to make her way to the Colonies to find her parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":9756},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":55,"title":"Inside the World of Outlander: Episode 407","airDate":"2018-12-16","airDateUtc":"2018-12-17T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 407: \"Down the Rabbit Hole.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9763},{"seriesId":121,"episodeFileId":5978,"seasonNumber":4,"episodeNumber":8,"title":"Wilmington","airDate":"2018-12-23","airDateUtc":"2018-12-24T01:00:00Z","overview":"Roger's diligent search for Brianna pays off when he finds her in Wilmington, but their romantic reunion comes to an abrupt halt when she discovered pertinent information that he intentionally kept from her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":9757},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"Inside the World of Outlander: Episode 408","airDate":"2018-12-23","airDateUtc":"2018-12-24T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 408: \"Wilmington.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9764},{"seriesId":121,"episodeFileId":6215,"seasonNumber":4,"episodeNumber":9,"title":"The Birds & The Bees","airDate":"2018-12-30","airDateUtc":"2018-12-31T01:00:00Z","overview":"As Brianna struggles to compartmentalize the trauma she suffered in the wake of the tragedy that befell her in Wilmington, she refocuses on finding her parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":9758},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":57,"title":"Inside the World of Outlander: Episode 409","airDate":"2018-12-30","airDateUtc":"2018-12-31T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about episode 409: \"The Birds and the Bees.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9765},{"seriesId":121,"episodeFileId":6317,"seasonNumber":4,"episodeNumber":10,"title":"The Deep Heart's Core","airDate":"2019-01-06","airDateUtc":"2019-01-07T01:00:00Z","overview":"The secrets Jamie and Claire keep from each other as they try to help Brianna process her recent trauma cause a bigger familial rift once they are revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":9759},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":58,"title":"Inside the World of Outlander: Episode 410","airDate":"2019-01-06","airDateUtc":"2019-01-07T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about Episode 410: \"The Deep Heart's Core\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10955},{"seriesId":121,"episodeFileId":6418,"seasonNumber":4,"episodeNumber":11,"title":"If Not For Hope","airDate":"2019-01-13","airDateUtc":"2019-01-14T01:00:00Z","overview":"Jamie, Claire and Young Ian embark on a long uncertain journey to rescue Roger. Brianna forges a friendship with one of Jamie's old friends as she fends off Aunt Jocasta's attempts to secure a husband.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":9760},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":59,"title":"Inside the World of Outlander: Episode 411","airDate":"2019-01-13","airDateUtc":"2019-01-14T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about episode 411: \"If Not For Hope\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10956},{"seriesId":121,"episodeFileId":6463,"seasonNumber":4,"episodeNumber":12,"title":"Providence","airDate":"2019-01-20","airDateUtc":"2019-01-21T01:00:00Z","overview":"Brianna confronts a violent figure from her past in an attempt to cope with her trauma. Roger befriends a fellow captive and endeavors to escape the Mohawk Village. Fergus and Marsali plan a dangerous mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":9761},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":60,"title":"Inside the World of Outlander: Episode 412","airDate":"2019-01-20","airDateUtc":"2019-01-21T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about episode 412: \"Providence\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10957},{"seriesId":121,"episodeFileId":6526,"seasonNumber":4,"episodeNumber":13,"title":"Man of Worth","airDate":"2019-01-27","airDateUtc":"2019-01-28T01:00:00Z","overview":"Jamie, Claire and Young Ian's attempt to rescue Roger from his Mohawk captors goes awry when a ghost from Claire's past lays waste to their plan. Brianna worries Claire, Jamie and Roger might not return.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":9762},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":61,"title":"Inside the World of Outlander: Episode 413","airDate":"2019-01-27","airDateUtc":"2019-01-28T01:00:00Z","overview":"Executive Producers\/Writers Toni Graphia and Matthew B. Roberts reveal more about episode 413: \"Man of Worth\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10958},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":62,"title":"Inside The World Of Outlander: Episode 501","airDate":"2020-02-14","airDateUtc":"2020-02-15T01:00:00Z","overview":"Take a deeper look into the Episode 501 - The Fiery Cross","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17170},{"seriesId":121,"episodeFileId":15644,"seasonNumber":5,"episodeNumber":1,"title":"The Fiery Cross","airDate":"2020-02-16","airDateUtc":"2020-02-17T01:00:00Z","overview":"Governor Tryon reminds Jamie of his obligation to hunt down and kill Murtagh Fitzgibbons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":12461},{"seriesId":121,"episodeFileId":15645,"seasonNumber":5,"episodeNumber":2,"title":"Between Two Fires","airDate":"2020-02-23","airDateUtc":"2020-02-24T01:00:00Z","overview":"As Jamie continues to hunt Murtagh with the aid of the zealous Lieutenant Hamilton Knox, he\u2019s forced to consider whether or not he\u2019s on the right side of history.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":17109},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":63,"title":"Inside The World Of Outlander: Episode 502","airDate":"2020-02-23","airDateUtc":"2020-02-24T01:00:00Z","overview":"Take a deeper look into the episode Between Two Fires","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17209},{"seriesId":121,"episodeFileId":15646,"seasonNumber":5,"episodeNumber":3,"title":"Free Will","airDate":"2020-03-01","airDateUtc":"2020-03-02T01:00:00Z","overview":"Jamie, Claire and Roger embark on a mission to raise a militia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":17110},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":64,"title":"Inside The World Of Outlander: Episode 503","airDate":"2020-03-01","airDateUtc":"2020-03-02T01:00:00Z","overview":"Take a deeper look inside the episode Free Will","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17237},{"seriesId":121,"episodeFileId":15647,"seasonNumber":5,"episodeNumber":4,"title":"The Company We Keep","airDate":"2020-03-08","airDateUtc":"2020-03-09T00:00:00Z","overview":"Roger leads Jamie's militia to a trading post and finds himself embroiled in a bitter feud.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":17111},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":65,"title":"Inside The World Of Outlander: Episode 504","airDate":"2020-03-08","airDateUtc":"2020-03-09T00:00:00Z","overview":"Take a deeper look inside the episode Company we keep.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17238},{"seriesId":121,"episodeFileId":15648,"seasonNumber":5,"episodeNumber":5,"title":"Perpetual Adoration","airDate":"2020-03-15","airDateUtc":"2020-03-16T00:00:00Z","overview":"Jamie's militia arrive at Hillsborough to learn that Governor Tryon has proposed a solution.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":17112},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":66,"title":"Inside The World Of Outlander: Episode 505","airDate":"2020-03-15","airDateUtc":"2020-03-16T00:00:00Z","overview":"Take a deeper look inside the episode Perpetual Adoration","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17239},{"seriesId":121,"episodeFileId":15649,"seasonNumber":5,"episodeNumber":6,"title":"Better to Marry Than Burn","airDate":"2020-03-22","airDateUtc":"2020-03-23T00:00:00Z","overview":"At Jocasta\u2019s wedding, Jamie learns Tryon\u2019s true motivation for ending the Regulator threat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":17113},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":67,"title":"Inside The World Of Outlander: Episode 506","airDate":"2020-03-22","airDateUtc":"2020-03-23T00:00:00Z","overview":"Take a deeper look inside the episode Better to Marry Than Burn","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17240},{"seriesId":121,"episodeFileId":15650,"seasonNumber":5,"episodeNumber":7,"title":"The Ballad of Roger Mac","airDate":"2020-03-29","airDateUtc":"2020-03-30T00:00:00Z","overview":"The Regulator Rebellion reaches a boiling point, forcing Jamie to face his fear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":17114},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":68,"title":"Inside The World Of Outlander: Episode 507","airDate":"2020-03-29","airDateUtc":"2020-03-30T00:00:00Z","overview":"Take a deeper look inside the episode The Ballad of Roger Mac","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17241},{"seriesId":121,"episodeFileId":15651,"seasonNumber":5,"episodeNumber":8,"title":"Famous Last Words","airDate":"2020-04-12","airDateUtc":"2020-04-13T00:00:00Z","overview":"The Frasers must deal with the aftermath of the Battle of Alamance Creek.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":17171},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":69,"title":"Inside The World Of Outlander: Episode 508","airDate":"2020-04-12","airDateUtc":"2020-04-13T00:00:00Z","overview":"Take a deeper look inside the episode Famous Last Words","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17242},{"seriesId":121,"episodeFileId":15652,"seasonNumber":5,"episodeNumber":9,"title":"Monsters and Heroes","airDate":"2020-04-19","airDateUtc":"2020-04-20T00:00:00Z","overview":"When Jamie is bitten by a venomous snake, Claire fears she may not have the resources to save him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":17172},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":70,"title":"Inside The World Of Outlander: Episode 509","airDate":"2020-04-19","airDateUtc":"2020-04-20T00:00:00Z","overview":"Take a deeper look inside the episode Monsters and Heroes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17243},{"seriesId":121,"episodeFileId":15653,"seasonNumber":5,"episodeNumber":10,"title":"Mercy Shall Follow Me","airDate":"2020-04-26","airDateUtc":"2020-04-27T00:00:00Z","overview":"Jamie and Roger implement their plan to eliminate the threat looming over them, but it goes awry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":17173},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":71,"title":"Inside The World Of Outlander: Episode 510","airDate":"2020-04-26","airDateUtc":"2020-04-27T00:00:00Z","overview":"Take a deeper look inside the episode Mercy Shall Follow Me","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17244},{"seriesId":121,"episodeFileId":15654,"seasonNumber":5,"episodeNumber":11,"title":"Journeycake","airDate":"2020-05-03","airDateUtc":"2020-05-04T00:00:00Z","overview":"Roger and Brianna need to decide if they want to stay or return to the future; Jamie discovers a new power that started from an unrest in the backcountry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":17174},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":72,"title":"Inside The World Of Outlander: Episode 511","airDate":"2020-05-03","airDateUtc":"2020-05-04T00:00:00Z","overview":"Take a deeper look inside the episode Journeycake","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17245},{"seriesId":121,"episodeFileId":15655,"seasonNumber":5,"episodeNumber":12,"title":"Never My Love","airDate":"2020-05-10","airDateUtc":"2020-05-11T00:00:00Z","overview":"Claire struggles to survive brutal treatment from her captors, as Jamie gathers a group of loyal men to help him rescue his wife. Roger and Brianna's journey takes a surprising turn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":17175},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":73,"title":"Inside The World Of Outlander: Episode 512","airDate":"2020-05-10","airDateUtc":"2020-05-11T00:00:00Z","overview":"Take a deeper look inside the episode Never My Love.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17246},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":74,"title":"Book Corner With Diana Gabaldon and Maril Davis","airDate":"2020-08-23","airDateUtc":"2020-08-24T00:00:00Z","overview":"For the first episode of the Outlander End of Summer Series, join Executive Producer Maril Davis as she looks back at six years of Outlander and answers fan questions with author Diana Gabaldon, all benefiting Doctors without Borders.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19483},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":75,"title":"A Taste of Outlander","airDate":"2020-08-30","airDateUtc":"2020-08-31T00:00:00Z","overview":"In the second episode of the Outlander End of Summer Series, Lauren Lyle and John Bell attend a virtual dinner party with Outlander Kitchen\u2019s Theresa Carle-Sanders!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19484},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":76,"title":"The Music of Outlander","airDate":"2020-09-06","airDateUtc":"2020-09-07T00:00:00Z","overview":"In the third episode of the Outlander End of Summer Series, Bear McCreary, Raya Yarbrough, and Maria Doyle Kennedy discuss the music of Outlander and treat you to some very special performances","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19485},{"seriesId":121,"episodeFileId":0,"seasonNumber":0,"episodeNumber":77,"title":"Catch Up With Caitriona and Sam","airDate":"2020-09-13","airDateUtc":"2020-09-14T00:00:00Z","overview":"In the final episode of the Outlander End of Summer Series, catch up with Caitriona and Sam as they talk about what they\u2019ve been up to and answer fan questions","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19486}],"episodeFile":[{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Wilmington-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E08.Wilmington-WEBDL-1080p.mkv","size":2534472233,"dateAdded":"2018-12-29T01:02:45.54882Z","sceneName":"Outlander.S04E08.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5252944,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5978},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E03.The False Bride-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E03.The False Bride-WEBDL-1080p.mkv","size":3250992877,"dateAdded":"2018-12-29T01:20:45.653382Z","sceneName":"Outlander.S04E03.1080p.WEB.h264-CONVOY[rarbg]","releaseGroup":"CONVOY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6679503,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5979},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Down the Rabbit Hole-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E07.Down the Rabbit Hole-WEBDL-1080p.mkv","size":3061735625,"dateAdded":"2018-12-29T01:39:40.972655Z","sceneName":"Outlander.S04E07.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5853950,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5981},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Savages-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E05.Savages-WEBDL-1080p.mkv","size":2880213901,"dateAdded":"2018-12-29T01:52:59.722152Z","sceneName":"Outlander.S04E05.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5981456,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5982},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Blood of My Blood-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E06.Blood of My Blood-WEBDL-1080p.mkv","size":2999750319,"dateAdded":"2018-12-29T02:09:36.461493Z","sceneName":"Outlander.S04E06.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5817475,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5984},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Do No Harm-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E02.Do No Harm-WEBDL-1080p.mkv","size":3862342269,"dateAdded":"2018-12-29T03:30:56.42632Z","sceneName":"Outlander.S04E02.Do.No.Harm.1080p.NF.WEB.DD5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8826890,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:53","scanType":"Progressive","subtitles":"English \/ Arabic \/ German \/ Spanish \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5995},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E01.America the Beautiful-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E01.America the Beautiful-WEBDL-1080p.mkv","size":4999847960,"dateAdded":"2018-12-29T05:17:13.958401Z","sceneName":"Outlander.S04E01.America.The.Beautiful.1080p.NF.WEB.DD5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10285966,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:27","scanType":"Progressive","subtitles":"English \/ Arabic \/ German \/ Spanish \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6014},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Through a Glass, Darkly-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E01.Through a Glass, Darkly-Bluray-1080p.mkv","size":4693440390,"dateAdded":"2018-12-29T09:32:38.556134Z","sceneName":"Outlander.S02E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9091000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:01","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6034},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Not in Scotland Anymore-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E02.Not in Scotland Anymore-Bluray-1080p.mkv","size":4693817316,"dateAdded":"2018-12-29T09:35:09.412712Z","sceneName":"Outlander.S02E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9182000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:31","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6035},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Useful Occupations and Deceptions-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E03.Useful Occupations and Deceptions-Bluray-1080p.mkv","size":4692728654,"dateAdded":"2018-12-29T09:38:03.391011Z","sceneName":"Outlander.S02E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9580000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:25","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6036},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E04.La Dame Blanche-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E04.La Dame Blanche-Bluray-1080p.mkv","size":4694346333,"dateAdded":"2018-12-29T09:41:24.557125Z","sceneName":"Outlander.S02E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9431000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:11","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6037},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Untimely Resurrection-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E05.Untimely Resurrection-Bluray-1080p.mkv","size":4693772423,"dateAdded":"2018-12-29T09:43:45.09294Z","sceneName":"Outlander.S02E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10766000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:57","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6038},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Best Laid Schemes-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E06.Best Laid Schemes-Bluray-1080p.mkv","size":4692964939,"dateAdded":"2018-12-29T09:47:03.57199Z","sceneName":"Outlander.S02E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10526000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:59","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6039},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Faith-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E07.Faith-Bluray-1080p.mkv","size":5867766437,"dateAdded":"2018-12-29T09:50:40.212604Z","sceneName":"Outlander.S02E07.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8978000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:14:35","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6040},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Fox's Lair-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E08.The Fox's Lair-Bluray-1080p.mkv","size":4691945281,"dateAdded":"2018-12-29T09:55:09.141619Z","sceneName":"Outlander.S02E08.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8956000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6041},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Je Suis Prest-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E09.Je Suis Prest-Bluray-1080p.mkv","size":4692239595,"dateAdded":"2018-12-29T09:59:42.223374Z","sceneName":"Outlander.S02E09.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9794000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6042},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Prestonpans-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E10.Prestonpans-Bluray-1080p.mkv","size":4693837133,"dateAdded":"2018-12-29T10:03:07.085107Z","sceneName":"Outlander.S02E10.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9125000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:50","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6043},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Vengeance Is Mine-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E11.Vengeance Is Mine-Bluray-1080p.mkv","size":4693613528,"dateAdded":"2018-12-29T10:06:55.587812Z","sceneName":"Outlander.S02E11.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9824000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:12","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6044},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Hail Mary-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E12.The Hail Mary-Bluray-1080p.mkv","size":4691809832,"dateAdded":"2018-12-29T10:10:16.282868Z","sceneName":"Outlander.S02E12.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8967000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:43","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6045},{"seriesId":121,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Dragonfly in Amber-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 02\/S02E13.Dragonfly in Amber-Bluray-1080p.mkv","size":7041090696,"dateAdded":"2018-12-29T10:13:54.132615Z","sceneName":"Outlander.S02E13.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9155000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:28:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6046},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Common Ground-WEBDL-720p Proper.mkv","path":"\/tv\/Outlander\/Season 04\/S04E04.Common Ground-WEBDL-720p Proper.mkv","size":1237202167,"dateAdded":"2018-12-29T12:18:06.928995Z","sceneName":"Outlander.S04E04.REPACK.720p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2085169,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"1:00:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6174},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Birds and the Bees-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E09.The Birds and the Bees-WEBDL-1080p.mkv","size":3263135715,"dateAdded":"2018-12-30T05:44:24.708675Z","sceneName":"Outlander.S04E09.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6359077,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6215},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Sassenach-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E01.Sassenach-Bluray-1080p.mkv","size":4684656817,"dateAdded":"2018-12-30T19:01:35.350921Z","sceneName":"Outlander.S01E01.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8327000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:03:30","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6231},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Castle Leoch-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E02.Castle Leoch-Bluray-1080p.mkv","size":4684270286,"dateAdded":"2018-12-30T19:03:17.695391Z","sceneName":"Outlander.S01E02.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9030000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6232},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Way Out-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E03.The Way Out-Bluray-1080p.mkv","size":4686371221,"dateAdded":"2018-12-30T19:05:25.029103Z","sceneName":"Outlander.S01E03.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9780000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:20","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6233},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Gathering-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E04.The Gathering-Bluray-1080p.mkv","size":4685059109,"dateAdded":"2018-12-30T19:07:01.927465Z","sceneName":"Outlander.S01E04.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9556000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:27","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6234},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Rent-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E05.Rent-Bluray-1080p.mkv","size":4685884017,"dateAdded":"2018-12-30T19:09:19.230231Z","sceneName":"Outlander.S01E05.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9392000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:18","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6235},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Garrison Commander-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E06.The Garrison Commander-Bluray-1080p.mkv","size":4685494996,"dateAdded":"2018-12-30T19:11:15.495274Z","sceneName":"Outlander.S01E06.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9419000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6236},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Wedding-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E07.The Wedding-Bluray-1080p.mkv","size":4686266091,"dateAdded":"2018-12-30T19:13:08.808477Z","sceneName":"Outlander.S01E07.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9909000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:42","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6237},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Both Sides Now-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E08.Both Sides Now-Bluray-1080p.mkv","size":4686417405,"dateAdded":"2018-12-30T19:14:30.276126Z","sceneName":"Outlander.S01E08.1080p.BluRay.x264-FLHD","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6238},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Reckoning-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E09.The Reckoning-Bluray-1080p.mkv","size":5865041459,"dateAdded":"2018-12-30T19:16:14.681261Z","sceneName":"Outlander.S01E09.EXTENDED.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9468000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:11:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6239},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E10.By the Pricking of My Thumbs-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E10.By the Pricking of My Thumbs-Bluray-1080p.mkv","size":4690731518,"dateAdded":"2018-12-30T19:18:50.527038Z","sceneName":"Outlander.S01E10.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9234000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6240},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Devil's Mark-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E11.The Devil's Mark-Bluray-1080p.mkv","size":4689370323,"dateAdded":"2018-12-30T19:20:36.844129Z","sceneName":"Outlander.S01E11.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9231000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6241},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Lallybroch-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E12.Lallybroch-Bluray-1080p.mkv","size":4689841769,"dateAdded":"2018-12-30T19:22:14.317576Z","sceneName":"Outlander.S01E12.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9488000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6242},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Watch-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E13.The Watch-Bluray-1080p.mkv","size":4260091452,"dateAdded":"2018-12-30T19:24:27.340543Z","sceneName":"Outlander.S01E13.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8605000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6243},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Search-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E14.The Search-Bluray-1080p.mkv","size":4690401554,"dateAdded":"2018-12-30T19:26:00.391766Z","sceneName":"Outlander.S01E14.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9444000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6244},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Wentworth Prison-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E15.Wentworth Prison-Bluray-1080p.mkv","size":4259696223,"dateAdded":"2018-12-30T19:28:11.80607Z","sceneName":"Outlander.S01E15.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8770000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6245},{"seriesId":121,"seasonNumber":1,"relativePath":"Season 01\/S01E16.To Ransom a Man's Soul-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 01\/S01E16.To Ransom a Man's Soul-Bluray-1080p.mkv","size":4690481081,"dateAdded":"2018-12-30T19:30:19.588818Z","sceneName":"Outlander.S01E16.1080p.BluRay.x264-ROVERS","releaseGroup":"MIXED","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9353000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6246},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Battle Joined-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E01.The Battle Joined-Bluray-1080p.mkv","size":1386515523,"dateAdded":"2018-12-30T23:51:23.661632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:20","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6252},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Surrender-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E02.Surrender-Bluray-1080p.mkv","size":1728198594,"dateAdded":"2018-12-30T23:51:47.366232Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:20","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6253},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E03.All Debts Paid-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E03.All Debts Paid-Bluray-1080p.mkv","size":1328385925,"dateAdded":"2018-12-30T23:53:17.528619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:20","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6254},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Of Lost Things-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E04.Of Lost Things-Bluray-1080p.mkv","size":1792826373,"dateAdded":"2018-12-30T23:54:15.621761Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:43","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6256},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Freedom & Whisky-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E05.Freedom & Whisky-Bluray-1080p.mkv","size":1226133880,"dateAdded":"2018-12-30T23:56:00.334017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:51","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6257},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E06.A. Malcolm-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E06.A. Malcolm-Bluray-1080p.mkv","size":1607392476,"dateAdded":"2018-12-30T23:57:39.556154Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:14:25","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6258},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Creme De Menthe-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E07.Creme De Menthe-Bluray-1080p.mkv","size":1344005218,"dateAdded":"2018-12-30T23:59:44.266921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English \/ German \/ English","audioStreamCount":5,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:23","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6260},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E08.First Wife-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E08.First Wife-Bluray-1080p.mkv","size":1702015420,"dateAdded":"2018-12-31T00:01:05.721736Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ German","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:42","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6261},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Doldrums-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E09.The Doldrums-Bluray-1080p.mkv","size":1753034706,"dateAdded":"2018-12-31T00:03:05.170173Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ German","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"56:51","scanType":"","subtitles":"English \/ English \/ German \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6262},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Heaven & Earth-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E10.Heaven & Earth-Bluray-1080p.mkv","size":1677089571,"dateAdded":"2018-12-31T00:04:11.15176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ German","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:06","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6263},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Uncharted-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E11.Uncharted-Bluray-1080p.mkv","size":2366031149,"dateAdded":"2018-12-31T00:05:17.304237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ German","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:14","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6264},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Bakra-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E12.The Bakra-Bluray-1080p.mkv","size":1695582090,"dateAdded":"2018-12-31T00:06:58.840586Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ German","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"53:16","scanType":"","subtitles":"English \/ English \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6265},{"seriesId":121,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Eye of the Storm-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 03\/S03E13.Eye of the Storm-Bluray-1080p.mkv","size":2031420975,"dateAdded":"2018-12-31T00:08:22.611016Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:27","scanType":"","subtitles":"English \/ English \/ German \/ German \/ Polish \/ Turkish \/ English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6266},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E10.The Deep Heart's Core-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E10.The Deep Heart's Core-WEBDL-1080p.mkv","size":3359738938,"dateAdded":"2019-01-06T21:47:41.223482Z","sceneName":"Outlander.S04E10.1080p.WEB.H264-AMCON[rarbg]","releaseGroup":"AMCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7037072,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6317},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E11.If Not For Hope-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E11.If Not For Hope-WEBDL-1080p.mkv","size":2818064062,"dateAdded":"2019-01-14T01:12:07.668333Z","sceneName":"Outlander.S04E11.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5219458,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6418},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Providence-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E12.Providence-WEBDL-1080p.mkv","size":3098946955,"dateAdded":"2019-01-20T07:45:29.741432Z","sceneName":"Outlander.S04E12.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6244458,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6463},{"seriesId":121,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Man of Worth-WEBDL-1080p.mkv","path":"\/tv\/Outlander\/Season 04\/S04E13.Man of Worth-WEBDL-1080p.mkv","size":4566692755,"dateAdded":"2019-01-27T08:50:07.861067Z","sceneName":"Outlander.S04E13.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:03:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6526},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E01.The Fiery Cross-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E01.The Fiery Cross-Bluray-1080p.mkv","size":2359448261,"dateAdded":"2020-10-01T21:25:49.958544Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":480050,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4418690,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:59","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15644},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Between Two Fires-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E02.Between Two Fires-Bluray-1080p.mkv","size":1808539775,"dateAdded":"2020-10-01T21:27:50.864456Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":457260,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3931312,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"52:32","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15645},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Free Will-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E03.Free Will-Bluray-1080p.mkv","size":1924993187,"dateAdded":"2020-10-01T21:29:45.614202Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":460681,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3731563,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:41","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15646},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E04.The Company We Keep-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E04.The Company We Keep-Bluray-1080p.mkv","size":1778324017,"dateAdded":"2020-10-01T21:31:39.008686Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":483326,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3640419,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:53","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15647},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Perpetual Adoration-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E05.Perpetual Adoration-Bluray-1080p.mkv","size":1677262185,"dateAdded":"2020-10-01T21:33:30.390689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":464833,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3279683,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"56:46","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15648},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Better to Marry Than Burn-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E06.Better to Marry Than Burn-Bluray-1080p.mkv","size":1840620557,"dateAdded":"2020-10-01T21:35:22.303875Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":479230,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3320474,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:21","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15649},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E07.The Ballad of Roger Mac-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E07.The Ballad of Roger Mac-Bluray-1080p.mkv","size":1707196703,"dateAdded":"2020-10-01T21:37:14.787449Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":498103,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3271202,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:33","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15650},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Famous Last Words-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E08.Famous Last Words-Bluray-1080p.mkv","size":1757961720,"dateAdded":"2020-10-01T21:39:06.751518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":459478,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3097863,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:53","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15651},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Monsters and Heroes-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E09.Monsters and Heroes-Bluray-1080p.mkv","size":2024277039,"dateAdded":"2020-10-01T21:40:58.845009Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":476431,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3852227,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:52","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15652},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Mercy Shall Follow Me-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E10.Mercy Shall Follow Me-Bluray-1080p.mkv","size":1890291364,"dateAdded":"2020-10-01T21:42:52.359435Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":475603,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3541646,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:55","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15653},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Journeycake-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E11.Journeycake-Bluray-1080p.mkv","size":1737314650,"dateAdded":"2020-10-01T21:44:46.264862Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":488407,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3007578,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:57","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15654},{"seriesId":121,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Never My Love-Bluray-1080p.mkv","path":"\/tv\/Outlander\/Season 05\/S05E12.Never My Love-Bluray-1080p.mkv","size":2563049724,"dateAdded":"2020-10-01T21:46:37.604079Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":460625,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6047747,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"51:13","scanType":"","subtitles":"English \/ German \/ Spanish \/ Turkish \/ German \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15655}],"queue":[]},"116":{"series":{"title":"Love, Death & Robots","alternateTitles":[{"title":"Love Death and Robots","seasonNumber":-1}],"sortTitle":"love death robots","status":"continuing","ended":false,"overview":"A collection of animated short stories that span various genres including science fiction, fantasy, horror and comedy.","previousAiring":"2021-05-14T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/135\/banner.jpg?lastWrite=637597710407869630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/357888\/banners\/60ae54a436537.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/135\/poster.jpg?lastWrite=637545666137962570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/357888\/posters\/607da9fc6a6a1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/135\/fanart.jpg?lastWrite=637597710410189590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/357888\/backgrounds\/60a025b2b86f1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-03-15T07:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":8970760382,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-05-14T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":3927783666,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Love, Death & Robots","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":357888,"tvRageId":0,"tvMazeId":40329,"firstAired":"2019-03-15T00:00:00Z","seriesType":"standard","cleanTitle":"lovedeathrobots","imdbId":"tt9561862","titleSlug":"love-death-and-robots","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Animation","Fantasy","Science Fiction"],"tags":[],"added":"2019-03-15T18:32:01.376909Z","ratings":{"votes":22,"value":10.0},"statistics":{"seasonCount":2,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":12898544048,"percentOfEpisodes":100.0},"id":135},"episodes":[{"seriesId":135,"episodeFileId":7165,"seasonNumber":1,"episodeNumber":1,"title":"SONNIE'S EDGE","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"In the underground world of \"Beastie\" fights, Sonnie is unbeatable - as long as she keeps her edge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":10923},{"seriesId":135,"episodeFileId":7166,"seasonNumber":1,"episodeNumber":2,"title":"THREE ROBOTS","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Long after the fall of humanity, three robots embark on a sightseeing tour of a post-apocalyptic city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":10924},{"seriesId":135,"episodeFileId":7167,"seasonNumber":1,"episodeNumber":3,"title":"THE WITNESS","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"After seeing a brutal murder, a woman flees from the killer through the streets of a surreal city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":10925},{"seriesId":135,"episodeFileId":7168,"seasonNumber":1,"episodeNumber":4,"title":"SUITS","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"A community of farmers use their homemade mechs to defend their families from an alien invasion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":10926},{"seriesId":135,"episodeFileId":7169,"seasonNumber":1,"episodeNumber":5,"title":"SUCKER OF SOULS","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Unleashed by an archaeological dig, a bloodthirsty demon battles a team of mercenaries armed with... cats?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":10927},{"seriesId":135,"episodeFileId":7170,"seasonNumber":1,"episodeNumber":6,"title":"WHEN THE YOGURT TOOK OVER","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"After scientists accidentally breed super-intelligent yogurt, it soon hungers for world domination.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":10928},{"seriesId":135,"episodeFileId":7171,"seasonNumber":1,"episodeNumber":7,"title":"BEYOND THE AQUILA RIFT","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Awakening after traveling light years off course, a ship's crew struggles to discover just how far they've come.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":10929},{"seriesId":135,"episodeFileId":7172,"seasonNumber":1,"episodeNumber":8,"title":"GOOD HUNTING","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"The son of a spirit hunter forges a bond with a shape-shifting Huli jing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":10930},{"seriesId":135,"episodeFileId":7173,"seasonNumber":1,"episodeNumber":9,"title":"THE DUMP","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Ugly Dave calls the garbage dump home, and he's not about to let some city slicker take it away from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":10931},{"seriesId":135,"episodeFileId":7174,"seasonNumber":1,"episodeNumber":10,"title":"SHAPE-SHIFTERS","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Deep in Afghanistan, two Marines with supernatural powers face a threat from one of their own kind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10932},{"seriesId":135,"episodeFileId":7175,"seasonNumber":1,"episodeNumber":11,"title":"HELPING HAND","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Stranded in orbit, an astronaut must choose between life and limb before her oxygen runs out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":10933},{"seriesId":135,"episodeFileId":7176,"seasonNumber":1,"episodeNumber":12,"title":"FISH NIGHT","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"After their car breaks down in the desert, two salesmen take a dreamlike voyage to the dawn of time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":10934},{"seriesId":135,"episodeFileId":7177,"seasonNumber":1,"episodeNumber":13,"title":"LUCKY 13","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"After the drop-ship Lucky 13 lost two crews, no pilot would fly her... but rookies don't get a choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":10935},{"seriesId":135,"episodeFileId":7178,"seasonNumber":1,"episodeNumber":14,"title":"ZIMA BLUE","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"The renowned artist Zima recounts his mysterious past and rise to fame before unveiling his final work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":10936},{"seriesId":135,"episodeFileId":7179,"seasonNumber":1,"episodeNumber":15,"title":"BLINDSPOT","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"A gang of cyborg thieves stage a high-speed heist of a heavily armored convoy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":10937},{"seriesId":135,"episodeFileId":7180,"seasonNumber":1,"episodeNumber":16,"title":"ICE AGE","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"A young couple moves into an apartment and finds a lost civilization inside their antique freezer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":10938},{"seriesId":135,"episodeFileId":7181,"seasonNumber":1,"episodeNumber":17,"title":"ALTERNATE HISTORIES","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Want to see Hitler die in a variety of comically fantastic ways? Now you can. Welcome to Multiversity!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":10939},{"seriesId":135,"episodeFileId":7182,"seasonNumber":1,"episodeNumber":18,"title":"THE SECRET WAR","airDate":"2019-03-15","airDateUtc":"2019-03-15T07:00:00Z","overview":"Elite units of the Red Army fight an unholy evil deep in the ancient forests of Siberia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":10940},{"seriesId":135,"episodeFileId":18153,"seasonNumber":2,"episodeNumber":1,"title":"Automated Customer Service","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"If your home-cleaning unit is attempting to murder you, please press 3.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":21431},{"seriesId":135,"episodeFileId":18164,"seasonNumber":2,"episodeNumber":2,"title":"Ice","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"Two brothers far from home join genetically 'modded' locals in a deadly race.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":21432},{"seriesId":135,"episodeFileId":18165,"seasonNumber":2,"episodeNumber":3,"title":"Pop Squad","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"A cop charged with fighting the scourge of overpopulation is haunted by the human toll of his work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":21433},{"seriesId":135,"episodeFileId":18166,"seasonNumber":2,"episodeNumber":4,"title":"Snow in the Desert","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"Every bounty hunter in the galaxy wants a piece of Snow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":21434},{"seriesId":135,"episodeFileId":18167,"seasonNumber":2,"episodeNumber":5,"title":"The Tall Grass","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"During a journey across the prairie, a man becomes transfixed by distant, ghostly lights.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":21435},{"seriesId":135,"episodeFileId":18168,"seasonNumber":2,"episodeNumber":6,"title":"All Through the House","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"On Christmas Eve, two kids tiptoe downstairs to catch a glimpse of Santa. A twisted tale for adults only.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":21436},{"seriesId":135,"episodeFileId":18169,"seasonNumber":2,"episodeNumber":7,"title":"Life Hutch","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"After crash-landing on a craggy planet, a pilot makes his way to shelter, only to face a threat within.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":21437},{"seriesId":135,"episodeFileId":18170,"seasonNumber":2,"episodeNumber":8,"title":"The Drowned Giant","airDate":"2021-05-14","airDateUtc":"2021-05-14T07:00:00Z","overview":"The body of a colossal young man washes ashore and becomes an object of fascination for the locals.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":21438}],"episodeFile":[{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Sonnie's Edge-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E01.Sonnie's Edge-WEBDL-1080p.mkv","size":924544482,"dateAdded":"2019-03-15T18:57:34.367976Z","sceneName":"Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7150000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"17:14","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7165},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Three Robots-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E02.Three Robots-WEBDL-1080p.mkv","size":379002307,"dateAdded":"2019-03-15T18:57:37.807671Z","sceneName":"Love.Death.and.Robots.S01E02.Three.Robots.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"11:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7166},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Witness-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E03.The Witness-WEBDL-1080p.mkv","size":641155001,"dateAdded":"2019-03-15T18:57:38.992146Z","sceneName":"Love.Death.and.Robots.S01E03.The.Witness.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6810000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"12:06","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7167},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Suits-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E04.Suits-WEBDL-1080p.mkv","size":726899596,"dateAdded":"2019-03-15T18:57:41.258803Z","sceneName":"Love.Death.and.Robots.S01E04.Suits.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"17:22","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7168},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Sucker of Souls-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E05.Sucker of Souls-WEBDL-1080p.mkv","size":445258958,"dateAdded":"2019-03-15T18:57:44.242352Z","sceneName":"Love.Death.and.Robots.S01E05.Sucker.of.Souls.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"13:00","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7169},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E06.When the Yogurt Took Over-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E06.When the Yogurt Took Over-WEBDL-1080p.mkv","size":178211227,"dateAdded":"2019-03-15T18:57:46.672515Z","sceneName":"Love.Death.and.Robots.S01E06.When.the.Yogurt.Took.Over.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"6:20","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7170},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Beyond the Aquila Rift-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E07.Beyond the Aquila Rift-WEBDL-1080p.mkv","size":630237504,"dateAdded":"2019-03-15T18:57:49.580371Z","sceneName":"Love.Death.and.Robots.S01E07.Beyond.the.Aquila.Rift.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:36","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7171},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Good Hunting-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E08.Good Hunting-WEBDL-1080p.mkv","size":358841559,"dateAdded":"2019-03-15T18:57:51.811266Z","sceneName":"Love.Death.and.Robots.S01E08.Good.Hunting.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2370000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"17:12","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7172},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Dump-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E09.The Dump-WEBDL-1080p.mkv","size":377443639,"dateAdded":"2019-03-15T18:57:53.238294Z","sceneName":"Love.Death.and.Robots.S01E09.The.Dump.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"10:34","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7173},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Shape-Shifters-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E10.Shape-Shifters-WEBDL-1080p.mkv","size":679102022,"dateAdded":"2019-03-15T18:57:55.009871Z","sceneName":"Love.Death.and.Robots.S01E10.Shape-Shifters.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7174},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Helping Hand-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E11.Helping Hand-WEBDL-1080p.mkv","size":287576546,"dateAdded":"2019-03-15T18:57:57.812135Z","sceneName":"Love.Death.and.Robots.S01E11.Helping.Hand.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"10:04","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7175},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Fish Night-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E12.Fish Night-WEBDL-1080p.mkv","size":367524487,"dateAdded":"2019-03-15T18:57:59.042301Z","sceneName":"Love.Death.and.Robots.S01E12.Fish.Night.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"10:14","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7176},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Lucky 13-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E13.Lucky 13-WEBDL-1080p.mkv","size":713503701,"dateAdded":"2019-03-15T18:58:06.037343Z","sceneName":"Love.Death.and.Robots.S01E13.Lucky.13.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6190000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"14:48","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7177},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Zima Blue-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E14.Zima Blue-WEBDL-1080p.mkv","size":382282432,"dateAdded":"2019-03-15T18:58:09.571944Z","sceneName":"Love.Death.and.Robots.S01E14.Zima.Blue.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"10:24","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7178},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Blindspot-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E15.Blindspot-WEBDL-1080p.mkv","size":202871148,"dateAdded":"2019-03-15T18:58:10.911674Z","sceneName":"Love.Death.and.Robots.S01E15.Blindspot.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"8:44","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7179},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Ice Age-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E16.Ice Age-WEBDL-1080p.mkv","size":375523482,"dateAdded":"2019-03-15T18:58:11.701492Z","sceneName":"Love.Death.and.Robots.S01E16.Ice.Age.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"10:30","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7180},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Alternate Histories-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E17.Alternate Histories-WEBDL-1080p.mkv","size":371741646,"dateAdded":"2019-03-15T18:58:12.694276Z","sceneName":"Love.Death.and.Robots.S01E17.Alternate.Histories.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"7:54","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7181},{"seriesId":135,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Secret War-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 01\/S01E18.The Secret War-WEBDL-1080p.mkv","size":929040645,"dateAdded":"2019-03-15T18:58:14.696896Z","sceneName":"Love.Death.and.Robots.S01E18.The.Secret.War.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:22","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7182},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E01.AUTOMATED CUSTOMER SERVICE-WEBDL-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E01.AUTOMATED CUSTOMER SERVICE-WEBDL-1080p.mkv","size":337571570,"dateAdded":"2021-05-14T08:16:24.855596Z","sceneName":"Love.Death.and.Robots.S02E01.1080p.WEB.H264-GGEZ","releaseGroup":"GGEZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2729695,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"12:36","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18153},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E02.THE TALL GRASS-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E02.THE TALL GRASS-HDTV-1080p.mkv","size":251376318,"dateAdded":"2021-05-14T19:50:49.98743Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2009000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"11:28","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18164},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E03.ALL THROUGH THE HOUSE-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E03.ALL THROUGH THE HOUSE-HDTV-1080p.mkv","size":211778080,"dateAdded":"2021-05-14T19:50:50.050318Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2982428,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"7:22","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18165},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E04.ICE-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E04.ICE-HDTV-1080p.mkv","size":501832615,"dateAdded":"2021-05-14T19:50:50.107127Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4271820,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"13:00","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18166},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E05.POP SQUAD-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E05.POP SQUAD-HDTV-1080p.mkv","size":823524132,"dateAdded":"2021-05-14T19:50:50.168254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5055493,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"18:28","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18167},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E06.SNOW IN THE DESERT-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E06.SNOW IN THE DESERT-HDTV-1080p.mkv","size":663659734,"dateAdded":"2021-05-14T19:50:50.224212Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4028992,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"18:04","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18168},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E07.THE DROWNED GIANT-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E07.THE DROWNED GIANT-HDTV-1080p.mkv","size":697527171,"dateAdded":"2021-05-14T19:50:50.278715Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5783600,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"13:54","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18169},{"seriesId":135,"seasonNumber":2,"relativePath":"Season 02\/S02E08.LIFE HUTCH-HDTV-1080p.mkv","path":"\/tv\/Love, Death & Robots\/Season 02\/S02E08.LIFE HUTCH-HDTV-1080p.mkv","size":440514046,"dateAdded":"2021-05-14T19:50:50.334303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3481654,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18170}],"queue":[]},"121":{"series":{"title":"NOS4A2","alternateTitles":[],"sortTitle":"nos4a2","status":"ended","ended":true,"overview":"Based on Joe Hill's novel of the same name, NOS4A2 tells the story of Charlie Manx, a seductive immortal who feeds off the souls of children, then deposits what remains of them into Christmasland \u2013 an icy, twisted Christmas village of Manx's imagination where every day is Christmas Day and unhappiness is against the law. Manx finds his whole world threatened when a young woman in New England discovers she has a dangerous gift.","previousAiring":"2020-08-24T02:00:00Z","network":"AMC","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/141\/banner.jpg?lastWrite=637100123998271770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d7387f7a137c.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/141\/poster.jpg?lastWrite=637100124000351730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5ceba5f4965c2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/141\/fanart.jpg?lastWrite=637100123996431800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c8b9243dda0c.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-29T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":19955803697,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-08-24T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":17571982037,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/NOS4A2","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":359637,"tvRageId":0,"tvMazeId":9810,"firstAired":"2019-06-02T00:00:00Z","seriesType":"standard","cleanTitle":"nos4a2","imdbId":"tt5194792","titleSlug":"nos4a2","rootFolderPath":"\/tv\/","genres":["Drama","Horror"],"tags":[],"added":"2019-05-19T09:54:24.789357Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":37527785734,"percentOfEpisodes":100.0},"id":141},"episodes":[{"seriesId":141,"episodeFileId":7555,"seasonNumber":1,"episodeNumber":1,"title":"The Shorter Way","airDate":"2019-06-02","airDateUtc":"2019-06-03T02:00:00Z","overview":"Vic, a young New Englander, discovers her supernatural abilities as the immortal Charlie Manx lures a child into a mysterious Rolls Royce Wraith.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11218},{"seriesId":141,"episodeFileId":7541,"seasonNumber":1,"episodeNumber":2,"title":"The Graveyard of What Might Be","airDate":"2019-06-09","airDateUtc":"2019-06-10T02:00:00Z","overview":"Vic meets Maggie, a medium with more questions than answers. Manx visits Haverhill to seek The Shorter Way and finds Bing, who is eager to help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11255},{"seriesId":141,"episodeFileId":7538,"seasonNumber":1,"episodeNumber":3,"title":"The Gas Mask Man","airDate":"2019-06-16","airDateUtc":"2019-06-17T02:00:00Z","overview":"Vic strives to live a normal life despite Maggie's warning. Charlie Manx puts Bing Partridge to work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11256},{"seriesId":141,"episodeFileId":7544,"seasonNumber":1,"episodeNumber":4,"title":"The House of Sleep","airDate":"2019-06-23","airDateUtc":"2019-06-24T02:00:00Z","overview":"Vic seeks the Wraith and learns she must trust her gift. A body surfaces in Haverhill.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11257},{"seriesId":141,"episodeFileId":7540,"seasonNumber":1,"episodeNumber":5,"title":"The Wraith","airDate":"2019-06-30","airDateUtc":"2019-07-01T02:00:00Z","overview":"Vic is questioned by the police and cannot fill the holes in her story. Manx lays out his plan for Vic, but things go awry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11258},{"seriesId":141,"episodeFileId":7542,"seasonNumber":1,"episodeNumber":6,"title":"The Dark Tunnels","airDate":"2019-07-07","airDateUtc":"2019-07-08T02:00:00Z","overview":"Vic meets another strong creative who gives her some advice. Manx receives an unexpected visitor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11489},{"seriesId":141,"episodeFileId":7545,"seasonNumber":1,"episodeNumber":7,"title":"Scissors for the Drifter","airDate":"2019-07-14","airDateUtc":"2019-07-15T02:00:00Z","overview":"Vic finds herself trapped. Manx runs into trouble and calls Bing for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11490},{"seriesId":141,"episodeFileId":7546,"seasonNumber":1,"episodeNumber":8,"title":"Parnassus","airDate":"2019-07-21","airDateUtc":"2019-07-22T02:00:00Z","overview":"Vic finds herself in danger after an argument with Linda. Manx seeks advice from an old friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11491},{"seriesId":141,"episodeFileId":7547,"seasonNumber":1,"episodeNumber":9,"title":"Sleigh House","airDate":"2019-07-21","airDateUtc":"2019-07-22T02:45:00Z","overview":"Despite Maggie's warning, Vic strives to rescue a loved one. Manx learns something new about Vic","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":11492},{"seriesId":141,"episodeFileId":7543,"seasonNumber":1,"episodeNumber":10,"title":"Gunbarrel","airDate":"2019-07-28","airDateUtc":"2019-07-29T02:00:00Z","overview":"Vic enlists a local biker to help her try to stop Charlie Manx. Manx makes a pitstop on his way to Christmasland.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":11493},{"seriesId":141,"episodeFileId":14534,"seasonNumber":2,"episodeNumber":1,"title":"Bad Mother","airDate":"2020-06-21","airDateUtc":"2020-06-22T02:00:00Z","overview":"Eight years on, Vic McQueen receives shocking news about Charlie Manx. Maggie consults her tiles at great risk. Bing hunts down the Wraith, but hits a roadblock. Millie Manx discovers a new aspect of Christmasland.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":17542},{"seriesId":141,"episodeFileId":14624,"seasonNumber":2,"episodeNumber":2,"title":"Good Father","airDate":"2020-06-28","airDateUtc":"2020-06-29T02:00:00Z","overview":"Charlie Manx fights for his life; Millie Manx determines to never let the lights go out in Christmasland again; Bing receives a long awaited call; Wayne McQueen, attempting to understand his mother, walks headlong into danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":17810},{"seriesId":141,"episodeFileId":14797,"seasonNumber":2,"episodeNumber":3,"title":"The Night Road","airDate":"2020-07-05","airDateUtc":"2020-07-06T02:00:00Z","overview":"Vic McQueen takes the Shorter Way to Haverhill. Lou and Wayne face a terrible threat in her absence. Charlie Manx engages an old friend for a mysterious favor. Millie Manx confronts the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":17811},{"seriesId":141,"episodeFileId":15006,"seasonNumber":2,"episodeNumber":4,"title":"The Lake House","airDate":"2020-07-12","airDateUtc":"2020-07-13T02:00:00Z","overview":"With Charlie Manx on the hunt, Vic and her family go into hiding with Maggie. Wayne suffers mysterious nightmares while Tabitha chases a lead on Bing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":17812},{"seriesId":141,"episodeFileId":15041,"seasonNumber":2,"episodeNumber":5,"title":"Bruce Wayne McQueen","airDate":"2020-07-19","airDateUtc":"2020-07-20T02:00:00Z","overview":"Vic McQueen returns to the Lakehouse only to ride straight into a deadly trap; Charlie Manx cashes in his favor; the Hourglass Man, a powerful strong creative, appears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":18310},{"seriesId":141,"episodeFileId":15082,"seasonNumber":2,"episodeNumber":6,"title":"The Hourglass","airDate":"2020-07-26","airDateUtc":"2020-07-27T02:00:00Z","overview":"Maggie puts herself in danger attempting to take a dark strong creative off the board; Vic and Lou work to repair Vic's knife; Linda and Chris grapple with Vic's gift; Wayne makes a mysterious friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":18311},{"seriesId":141,"episodeFileId":15107,"seasonNumber":2,"episodeNumber":7,"title":"Cripple Creek","airDate":"2020-08-02","airDateUtc":"2020-08-03T02:00:00Z","overview":"Bing Partridge has some questions for Charlie Manx; Manx revisits his difficult childhood; Millie meets an old friend; Wayne faces a choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":18545},{"seriesId":141,"episodeFileId":15174,"seasonNumber":2,"episodeNumber":8,"title":"Chris McQueen","airDate":"2020-08-09","airDateUtc":"2020-08-10T02:00:00Z","overview":"Vic and Chris take the Shorter Way to a junkyard; Chris loses his temper; Bing leverages a secret to seek forgiveness; Vic, Lou, Maggie, and Chris hatch a plan; Tabitha impresses her boss.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":18546},{"seriesId":141,"episodeFileId":15250,"seasonNumber":2,"episodeNumber":9,"title":"Welcome to Christmasland","airDate":"2020-08-16","airDateUtc":"2020-08-17T02:00:00Z","overview":"Vic and Maggie embark on a dangerous journey; Charlie Manx confronts his deepest fears; as her world falls apart, Millie must choose between freedom and her father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":18547},{"seriesId":141,"episodeFileId":15304,"seasonNumber":2,"episodeNumber":10,"title":"Bats","airDate":"2020-08-23","airDateUtc":"2020-08-24T02:00:00Z","overview":"Vic McQueen makes her final stand against Charlie Manx; Lou and Tabitha solve a Christmasland riddle; Millie Manx wrestles with regret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":18548}],"episodeFile":[{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Gas Mask Man-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E03.The Gas Mask Man-WEBDL-1080p.mkv","size":1746319646,"dateAdded":"2019-06-03T03:03:22.495238Z","sceneName":"NOS4A2.S01E03.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7538},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Wraith-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E05.The Wraith-WEBDL-1080p.mkv","size":1793987729,"dateAdded":"2019-06-03T03:09:42.945852Z","sceneName":"NOS4A2.S01E05.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7540},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Graveyard of What Might Be-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E02.The Graveyard of What Might Be-WEBDL-1080p.mkv","size":1823673135,"dateAdded":"2019-06-03T03:11:23.045876Z","sceneName":"NOS4A2.S01E02.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7541},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Dark Tunnels-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E06.The Dark Tunnels-WEBDL-1080p.mkv","size":1714170747,"dateAdded":"2019-06-03T03:11:47.191691Z","sceneName":"NOS4A2.S01E06.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7542},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Gunbarrel-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E10.Gunbarrel-WEBDL-1080p.mkv","size":1737384927,"dateAdded":"2019-06-03T03:16:23.23805Z","sceneName":"NOS4A2.S01E10.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7543},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The House of Sleep-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E04.The House of Sleep-WEBDL-1080p.mkv","size":1733554837,"dateAdded":"2019-06-03T03:17:53.263233Z","sceneName":"NOS4A2.S01E04.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7544},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Scissors for the Drifter-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E07.Scissors for the Drifter-WEBDL-1080p.mkv","size":1714038971,"dateAdded":"2019-06-03T03:18:15.963461Z","sceneName":"NOS4A2.S01E07.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7545},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Parnassus-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E08.Parnassus-WEBDL-1080p.mkv","size":1787578531,"dateAdded":"2019-06-03T03:21:23.16892Z","sceneName":"NOS4A2.S01E08.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7546},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Sleigh House-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E09.Sleigh House-WEBDL-1080p.mkv","size":1515544685,"dateAdded":"2019-06-03T03:25:53.599062Z","sceneName":"NOS4A2.S01E09.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"39:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7547},{"seriesId":141,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Shorter Way-WEBDL-1080p Proper.mkv","path":"\/tv\/NOS4A2\/Season 01\/S01E01.The Shorter Way-WEBDL-1080p Proper.mkv","size":4389550489,"dateAdded":"2019-06-07T02:59:12.512819Z","sceneName":"NOS4A2.S01E01.The.Shorter.Way.REPACK.1080p.AMZN.WEBRip.DDP5.1.x264-NTG[rarbg]","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9999872,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:26","scanType":"Progressive","subtitles":"English \/ Bengali \/ Danish \/ German \/ Greek \/ Finnish \/ French \/ Hindi \/ Italian \/ Japanese \/ Marathi \/ Norwegian Bokmal \/ Dutch \/ Swedish \/ Tamil \/ Telugu \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7555},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Bad Mother-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E01.Bad Mother-WEBDL-1080p.mkv","size":1794465170,"dateAdded":"2020-06-20T08:17:10.520885Z","sceneName":"NOS4A2.S02E01.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:46","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14534},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Good Father-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E02.Good Father-WEBDL-1080p.mkv","size":1820134842,"dateAdded":"2020-06-27T02:00:13.388468Z","sceneName":"NOS4A2.S02E02.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14624},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Night Road-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E03.The Night Road-WEBDL-1080p.mkv","size":1770095094,"dateAdded":"2020-07-04T01:18:17.357844Z","sceneName":"NOS4A2.S02E03.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14797},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Lake House-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E04.The Lake House-WEBDL-1080p.mkv","size":1789070210,"dateAdded":"2020-07-11T01:12:59.578144Z","sceneName":"NOS4A2.S02E04.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15006},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Bruce Wayne McQueen-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E05.Bruce Wayne McQueen-WEBDL-1080p.mkv","size":1529133957,"dateAdded":"2020-07-18T01:11:45.649586Z","sceneName":"NOS4A2.S02E05.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"39:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15041},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Hourglass-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E06.The Hourglass-WEBDL-1080p.mkv","size":1749345003,"dateAdded":"2020-07-25T01:10:25.935704Z","sceneName":"NOS4A2.S02E06.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15082},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Cripple Creek-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E07.Cripple Creek-WEBDL-1080p.mkv","size":1860676751,"dateAdded":"2020-08-01T01:13:30.28564Z","sceneName":"NOS4A2.S02E07.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15107},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Chris McQueen-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E08.Chris McQueen-WEBDL-1080p.mkv","size":1704460043,"dateAdded":"2020-08-08T01:30:35.25669Z","sceneName":"NOS4A2.S02E08.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15174},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Welcome to Christmasland-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E09.Welcome to Christmasland-WEBDL-1080p.mkv","size":1845767970,"dateAdded":"2020-08-15T01:51:42.560509Z","sceneName":"NOS4A2.S02E09.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15250},{"seriesId":141,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Bats-WEBDL-1080p.mkv","path":"\/tv\/NOS4A2\/Season 02\/S02E10.Bats-WEBDL-1080p.mkv","size":1708832997,"dateAdded":"2020-08-22T03:18:48.859095Z","sceneName":"NOS4A2.S02E10.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125587,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15304}],"queue":[]},"123":{"series":{"title":"How to Sell Drugs Online (Fast)","alternateTitles":[{"title":"How to Sell Drugs Online Fast","seasonNumber":-1},{"title":"Como vender drogas online","seasonNumber":-1},{"title":"Come vendere droga online (in fretta)","seasonNumber":-1}],"sortTitle":"how to sell drugs online fast","status":"continuing","ended":false,"overview":"To win back his ex-girlfriend, a nerdy teen starts selling ecstasy online out of his bedroom -- and becomes one of Europe's biggest dealers.","previousAiring":"2021-07-27T13:00:00Z","network":"Netflix","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/148\/banner.jpg?lastWrite=637635843620347980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5cdf914e2633d.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/148\/poster.jpg?lastWrite=637630208398933870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361034\/posters\/60e42a0c05cdb.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/148\/fanart.jpg?lastWrite=637630208400573840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361034\/backgrounds\/60ffafaa44daf.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-31T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8983499918,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-07-21T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":9966625339,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2021-07-27T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":8248506793,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/How to Sell Drugs Online (Fast)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":29,"tvdbId":361034,"tvRageId":0,"tvMazeId":39319,"firstAired":"2019-05-31T00:00:00Z","seriesType":"standard","cleanTitle":"howtoselldrugsonlinefast","imdbId":"tt9184994","titleSlug":"how-to-sell-drugs-online-fast","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Comedy","Crime","Drama","Romance"],"tags":[],"added":"2019-06-30T18:27:30.762239Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":27198632050,"percentOfEpisodes":100.0},"id":148},"episodes":[{"seriesId":148,"episodeFileId":8296,"seasonNumber":1,"episodeNumber":1,"title":"Nerd Today, Boss Tomorrow","airDate":"2019-05-31","airDateUtc":"2019-05-31T13:00:00Z","overview":"When his girlfriend breaks up with him after spending the year abroad, Moritz schemes to win her back by snagging a stash of ecstasy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11590},{"seriesId":148,"episodeFileId":8298,"seasonNumber":1,"episodeNumber":2,"title":"Life's Not Fair, Get Used to It","airDate":"2019-05-31","airDateUtc":"2019-05-31T13:00:00Z","overview":"Lisa lands in trouble with her parents. Moritz reprograms MyTems into an online drug store and tries to make amends to Lenny.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11591},{"seriesId":148,"episodeFileId":8295,"seasonNumber":1,"episodeNumber":3,"title":"Failure is Not an Option","airDate":"2019-05-31","airDateUtc":"2019-05-31T13:00:00Z","overview":"Business is booming, and Buba wants a piece of the action -- but the product is getting bad reviews. Lisa thinks Dan has been ignoring her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11592},{"seriesId":148,"episodeFileId":8293,"seasonNumber":1,"episodeNumber":4,"title":"If This is Reality, I'm Not Interested","airDate":"2019-05-31","airDateUtc":"2019-05-31T13:00:00Z","overview":"Moritz's reputation takes a hit. After discovering a troubling email, Lenny confides in a new friend. Jens enlists Moritz to crack a password.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11593},{"seriesId":148,"episodeFileId":8294,"seasonNumber":1,"episodeNumber":5,"title":"Score Big or Don't Score at All","airDate":"2019-05-31","airDateUtc":"2019-05-31T13:00:00Z","overview":"Lenny sets up the clear web shop while Moritz secretly meets a new supplier in Rotterdam. But the friends don't see eye to eye about their future.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11594},{"seriesId":148,"episodeFileId":8297,"seasonNumber":1,"episodeNumber":6,"title":"If You Are the Smartest One in the Room, You're in the Wrong Room","airDate":"2019-05-31","airDateUtc":"2019-05-31T13:00:00Z","overview":"Things begin to unravel the day after the party, and Moritz is forced to turn to his rival for help. Lisa has a change of heart.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11595},{"seriesId":148,"episodeFileId":15068,"seasonNumber":2,"episodeNumber":1,"title":"Think Different","airDate":"2020-07-21","airDateUtc":"2020-07-21T13:00:00Z","overview":"After making a million euros, the guys decide they want out of My Drugs, so a nervous Moritz goes to Rotterdam to break the news to their suppliers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18466},{"seriesId":148,"episodeFileId":15069,"seasonNumber":2,"episodeNumber":2,"title":"Where Do You Want to Go Today?","airDate":"2020-07-21","airDateUtc":"2020-07-21T13:00:00Z","overview":"Moritz wrestles with the secrets he's been keeping from Lisa. Dan thinks fast under pressure, and Lenny and Kira get closer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18487},{"seriesId":148,"episodeFileId":15070,"seasonNumber":2,"episodeNumber":3,"title":"Inspired by Real Life","airDate":"2020-07-21","airDateUtc":"2020-07-21T13:00:00Z","overview":"Inspired by the results of a career test, Moritz embraces his role as CEO \u2014 but loses his cool when Lenny suggests Kira join the team","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18488},{"seriesId":148,"episodeFileId":15071,"seasonNumber":2,"episodeNumber":4,"title":"Buy It. Sell It. Love It.","airDate":"2020-07-21","airDateUtc":"2020-07-21T13:00:00Z","overview":"Following a dangerous standoff, the guys search for a way to convert their bitcoins into cash, and Moritz's many lies start to catch up with him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18489},{"seriesId":148,"episodeFileId":15072,"seasonNumber":2,"episodeNumber":5,"title":"Move Fast and Break Things","airDate":"2020-07-21","airDateUtc":"2020-07-21T13:00:00Z","overview":"Moritz confides in Lisa, who was him to clean up his act. Later, a tempting offer from Goodtimes tests his loyalty to Lenny and Dan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18490},{"seriesId":148,"episodeFileId":15073,"seasonNumber":2,"episodeNumber":6,"title":"Don't be evil.","airDate":"2020-07-21","airDateUtc":"2020-07-21T13:00:00Z","overview":"The guys' rivalry heats up. At a party in Rotterdam, Moritz gets a rude awakening and tries to warn his friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18491},{"seriesId":148,"episodeFileId":18739,"seasonNumber":3,"episodeNumber":1,"title":"A single failure, a little slip","airDate":"2021-07-27","airDateUtc":"2021-07-27T13:00:00Z","overview":"Under pressure from Goodtimes, Moritz races to rebuild MyDrugs during a school trip to the woods, but code bugs \u2014 and allergies \u2014 derail his progress.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20217},{"seriesId":148,"episodeFileId":18740,"seasonNumber":3,"episodeNumber":2,"title":"A misdemeanor, a little trip","airDate":"2021-07-27","airDateUtc":"2021-07-27T13:00:00Z","overview":"Lenny helps Moritz with the site on one condition: that they keep their collaboration a secret. Meanwhile, Jens frets about his son's future.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21621},{"seriesId":148,"episodeFileId":18713,"seasonNumber":3,"episodeNumber":3,"title":"Does this condemn me, lock me away?","airDate":"2021-07-27","airDateUtc":"2021-07-27T13:00:00Z","overview":"Moritz hires a high-priced business consultant. Kira and Dan come up with new ways to raise money for Lenny's medical treatment.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21622},{"seriesId":148,"episodeFileId":18741,"seasonNumber":3,"episodeNumber":4,"title":"Before you turn the key, I have one more thing to say","airDate":"2021-07-27","airDateUtc":"2021-07-27T13:00:00Z","overview":"The guys take a road trip to Rotterdam. Marie asks Lisa to keep an eye on her brother. When Moritz crosses a line, Dan does damage control.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21623},{"seriesId":148,"episodeFileId":18714,"seasonNumber":3,"episodeNumber":5,"title":"To make amends, maybe be friends","airDate":"2021-07-27","airDateUtc":"2021-07-27T13:00:00Z","overview":"To celebrate the end of their Abitur exams, the students throw a costume party at school \u2014 and things get a little out of control.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21624},{"seriesId":148,"episodeFileId":18742,"seasonNumber":3,"episodeNumber":6,"title":"Everybody gets a second chance","airDate":"2021-07-27","airDateUtc":"2021-07-27T13:00:00Z","overview":"A high-stakes situation leaves the friends scrambling to figure out their next move.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21625}],"episodeFile":[{"seriesId":148,"seasonNumber":1,"relativePath":"Season 01\/S01E04.If This is Reality, I'm Not Interested-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 01\/S01E04.If This is Reality, I'm Not Interested-WEBDL-1080p.mkv","size":1308285338,"dateAdded":"2019-08-23T17:17:43.904501Z","sceneName":"www.Torrenting.org - How To Sell Drugs Online Fast S01E04 iNTERNAL MULTi 1080p WEB","releaseGroup":"carapils","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"French \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"28:50","scanType":"Progressive","subtitles":"French \/ French \/ English \/ English \/ English \/ German \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8293},{"seriesId":148,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Score Big or Don't Score at All-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 01\/S01E05.Score Big or Don't Score at All-WEBDL-1080p.mkv","size":1506766487,"dateAdded":"2019-08-23T17:23:44.08401Z","sceneName":"www.Torrenting.org - How To Sell Drugs Online Fast S01E05 iNTERNAL MULTi 1080p WEB","releaseGroup":"carapils","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"French \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":6190000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"24:58","scanType":"Progressive","subtitles":"French \/ French \/ English \/ English \/ English \/ German \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8294},{"seriesId":148,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Failure is Not an Option-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 01\/S01E03.Failure is Not an Option-WEBDL-1080p.mkv","size":1287228372,"dateAdded":"2019-08-23T17:36:14.553896Z","sceneName":"www.Torrenting.org - How To Sell Drugs Online Fast S01E03 iNTERNAL MULTi 1080p WEB","releaseGroup":"carapils","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"French \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"28:28","scanType":"Progressive","subtitles":"French \/ French \/ English \/ English \/ English \/ German \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8295},{"seriesId":148,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Nerd Today, Boss Tomorrow-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 01\/S01E01.Nerd Today, Boss Tomorrow-WEBDL-1080p.mkv","size":1831823386,"dateAdded":"2019-08-23T18:37:48.126095Z","sceneName":"www.Torrenting.org - How To Sell Drugs Online Fast S01E01 iNTERNAL MULTi 1080p WEB","releaseGroup":"carapils","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"French \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"32:36","scanType":"Progressive","subtitles":"French \/ French \/ English \/ English \/ English \/ German \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8296},{"seriesId":148,"seasonNumber":1,"relativePath":"Season 01\/S01E06.If You Are the Smartest One in the Room, You're in the Wrong Room-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 01\/S01E06.If You Are the Smartest One in the Room, You're in the Wrong Room-WEBDL-1080p.mkv","size":1626652958,"dateAdded":"2019-08-23T20:15:22.289423Z","sceneName":"www.Torrenting.org - How To Sell Drugs Online Fast S01E06 FiNAL iNTERNAL MULTi 1080","releaseGroup":"carapils","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"French \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"29:10","scanType":"Progressive","subtitles":"French \/ French \/ English \/ English \/ English \/ German \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8297},{"seriesId":148,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Life's Not Fair, Get Used to It-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 01\/S01E02.Life's Not Fair, Get Used to It-WEBDL-1080p.mkv","size":1422743377,"dateAdded":"2019-08-23T21:47:26.968904Z","sceneName":"www.Torrenting.org - How To Sell Drugs Online Fast S01E02 iNTERNAL MULTi 1080p WEB","releaseGroup":"carapils","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"French \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"30:10","scanType":"Progressive","subtitles":"French \/ French \/ English \/ English \/ English \/ German \/ German"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8298},{"seriesId":148,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Think Different-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 02\/S02E01.Think Different-WEBDL-1080p.mkv","size":1577168309,"dateAdded":"2020-07-21T23:16:12.470247Z","releaseGroup":"Morpheus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Italian \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"35:52","scanType":"Progressive","subtitles":"German \/ English \/ English \/ French \/ Italian \/ English \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15068},{"seriesId":148,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Where Do You Want to Go Today-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 02\/S02E02.Where Do You Want to Go Today-WEBDL-1080p.mkv","size":1493661209,"dateAdded":"2020-07-21T23:16:12.526973Z","releaseGroup":"Morpheus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Italian \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"34:10","scanType":"Progressive","subtitles":"German \/ English \/ English \/ French \/ Italian \/ English \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15069},{"seriesId":148,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Inspired by Real Life-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 02\/S02E03.Inspired by Real Life-WEBDL-1080p.mkv","size":1417494144,"dateAdded":"2020-07-21T23:16:12.606366Z","releaseGroup":"Morpheus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Italian \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"34:38","scanType":"Progressive","subtitles":"German \/ English \/ English \/ French \/ Italian \/ English \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15070},{"seriesId":148,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Buy It. Sell It. Love It-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 02\/S02E04.Buy It. Sell It. Love It-WEBDL-1080p.mkv","size":1529796532,"dateAdded":"2020-07-21T23:16:12.65331Z","releaseGroup":"Morpheus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Italian \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"32:38","scanType":"Progressive","subtitles":"German \/ English \/ English \/ French \/ Italian \/ English \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15071},{"seriesId":148,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Move Fast and Break Things-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 02\/S02E05.Move Fast and Break Things-WEBDL-1080p.mkv","size":2319029415,"dateAdded":"2020-07-21T23:16:12.705334Z","releaseGroup":"Morpheus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Italian \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":7150000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"34:58","scanType":"Progressive","subtitles":"German \/ English \/ English \/ French \/ Italian \/ English \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15072},{"seriesId":148,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Don't be evil-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 02\/S02E06.Don't be evil-WEBDL-1080p.mkv","size":1629475730,"dateAdded":"2020-07-21T23:16:12.752089Z","releaseGroup":"Morpheus","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Italian \/ English \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":5620000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"29:20","scanType":"Progressive","subtitles":"German \/ English \/ English \/ French \/ Italian \/ English \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15073},{"seriesId":148,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Does this condemn me, lock me away-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 03\/S03E03.Does this condemn me, lock me away-WEBDL-1080p.mkv","size":2357448057,"dateAdded":"2021-07-28T05:31:54.857757Z","sceneName":"How to Sell Drugs Online Fast S03E03 MULTi 1080p WEB H264-GAME0V","releaseGroup":"GAME0V","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"German \/ German \/ English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Italian \/ German \/ German \/ German \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ French \/ Italian \/ Italian \/ Italian \/ German \/ German ","audioStreamCount":30,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"33:40","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Italian \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18713},{"seriesId":148,"seasonNumber":3,"relativePath":"Season 03\/S03E05.To make amends, maybe be friends-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 03\/S03E05.To make amends, maybe be friends-WEBDL-1080p.mkv","size":2429342038,"dateAdded":"2021-07-28T05:33:24.954208Z","sceneName":"How to Sell Drugs Online Fast S03E05 MULTi 1080p WEB H264-GAME0V","releaseGroup":"GAME0V","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"German \/ German \/ English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Italian \/ German \/ German \/ German \/ English \/ English \/ English \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ French \/ Italian \/ Italian \/ Italian \/ German \/ German ","audioStreamCount":30,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"30:22","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Italian \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18714},{"seriesId":148,"seasonNumber":3,"relativePath":"Season 03\/S03E01.A single failure, a little slip-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 03\/S03E01.A single failure, a little slip-WEBDL-1080p.mkv","size":922221346,"dateAdded":"2021-08-04T15:36:19.734698Z","sceneName":"How.to.Sell.Drugs.Online.S03E01.1080p.WEB.H264-FORSEE","releaseGroup":"FORSEE","language":{"id":4,"name":"German"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2831000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"35:06","scanType":"Progressive","subtitles":"Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ English \/ English \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":18739},{"seriesId":148,"seasonNumber":3,"relativePath":"Season 03\/S03E02.A misdemeanor, a little trip-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 03\/S03E02.A misdemeanor, a little trip-WEBDL-1080p.mkv","size":746799049,"dateAdded":"2021-08-04T15:38:03.49209Z","sceneName":"How.to.Sell.Drugs.Online.S03E02.1080p.WEB.H264-FORSEE","releaseGroup":"FORSEE","language":{"id":4,"name":"German"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2254702,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"34:20","scanType":"Progressive","subtitles":"Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ English \/ English \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":18740},{"seriesId":148,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Before you turn the key, I have one more thing to say-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 03\/S03E04.Before you turn the key, I have one more thing to say-WEBDL-1080p.mkv","size":902092516,"dateAdded":"2021-08-04T15:39:46.61386Z","sceneName":"How.to.Sell.Drugs.Online.S03E04.1080p.WEB.H264-FORSEE","releaseGroup":"FORSEE","language":{"id":4,"name":"German"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2669165,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"36:16","scanType":"Progressive","subtitles":"Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ English \/ English \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":18741},{"seriesId":148,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Everybody gets a second chance-WEBDL-1080p.mkv","path":"\/tv\/How to Sell Drugs Online (Fast)\/Season 03\/S03E06.Everybody gets a second chance-WEBDL-1080p.mkv","size":890603787,"dateAdded":"2021-08-04T15:41:33.075483Z","sceneName":"How.to.Sell.Drugs.Online.S03E06.1080p.WEB.H264-FORSEE","releaseGroup":"FORSEE","language":{"id":4,"name":"German"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2832889,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"34:08","scanType":"Progressive","subtitles":"Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ English \/ English \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":18742}],"queue":[]},"126":{"series":{"title":"The Umbrella Academy","alternateTitles":[],"sortTitle":"umbrella academy","status":"continuing","ended":false,"overview":"Reunited by their father's death, estranged siblings with extraordinary powers uncover shocking family secrets\u2014and a looming threat to humanity.","previousAiring":"2020-07-31T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/133\/banner.jpg?lastWrite=637427882712698700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c0ef353c3441.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/133\/poster.jpg?lastWrite=637294341115293940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/353764\/posters\/5efd5534a2ce9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/133\/fanart.jpg?lastWrite=637102722405930820","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c960338354cf.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-02-15T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":52541993102,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-07-31T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":27609109543,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/The Umbrella Academy","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":353764,"tvRageId":0,"tvMazeId":30386,"firstAired":"2019-02-15T00:00:00Z","seriesType":"standard","cleanTitle":"theumbrellaacademy","imdbId":"tt1312171","titleSlug":"the-umbrella-academy","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Drama","Suspense"],"tags":[],"added":"2019-02-26T17:04:40.955407Z","ratings":{"votes":56,"value":7.5},"statistics":{"seasonCount":3,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":35,"sizeOnDisk":80151102645,"percentOfEpisodes":100.0},"id":133},"episodes":[{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"Meet the Family","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21590},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":2,"title":"World\u2019s Biggest Ball of Twine","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21591},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":3,"title":"Pocket Full of Lightning","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21592},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":4,"title":"Kugelblitz","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21593},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":5,"title":"Kindest Cut","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21594},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":6,"title":"Marigold","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21595},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":7,"title":"Auf Wiedersehen","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21596},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":8,"title":"Wedding at the End of the World","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21597},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":9,"title":"Six Bells","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21598},{"seriesId":133,"episodeFileId":0,"seasonNumber":3,"episodeNumber":10,"title":"Oblivion","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21599},{"seriesId":133,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Introducing the main characters of \"The Umbrella Academy\"","airDate":"2019-02-08","airDateUtc":"2019-02-08T08:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21275},{"seriesId":133,"episodeFileId":18460,"seasonNumber":1,"episodeNumber":1,"title":"We Only See Each Other at Weddings and Funerals","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Years after they rose to fame as young crime-fighting superheroes, the estranged Hargreeves siblings come together to mark their father's death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":10761},{"seriesId":133,"episodeFileId":18461,"seasonNumber":1,"episodeNumber":2,"title":"Run Boy Run","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"After sharing the story of his time travel with Vanya, Five hunts for the owner of a fake eye. But two mysterious assassins are hot on his trail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":10762},{"seriesId":133,"episodeFileId":18462,"seasonNumber":1,"episodeNumber":3,"title":"Extra Ordinary","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Worried their mother is hiding something, Luther and Allison call a family meeting. Cha-Cha and Hazel catch a big break in their hunt for Five.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":10763},{"seriesId":133,"episodeFileId":18463,"seasonNumber":1,"episodeNumber":4,"title":"Man on the Moon","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"The story of Luther's transformation emerges. At the motel, Klaus puts Hazel and Cha-Cha's training to the test. Allison grows suspicious of Leonard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":10764},{"seriesId":133,"episodeFileId":18464,"seasonNumber":1,"episodeNumber":5,"title":"Number Five","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Five lets Luther in on his secret. Klaus returns from a harrowing trip through time. Vanya begins to feel different without her meds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":10765},{"seriesId":133,"episodeFileId":18465,"seasonNumber":1,"episodeNumber":6,"title":"The Day That Wasn't","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Sparks fly when Vanya finds her siblings holding an emergency family meeting without her. Five starts his new job at HQ. Cha-Cha faces a dilemma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":10766},{"seriesId":133,"episodeFileId":18466,"seasonNumber":1,"episodeNumber":7,"title":"The Day That Was","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"With a second chance at the day, the siblings team up to find the mysterious 'Harold Jenkins'. Leonard takes Vanya into the woods to test her powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":10767},{"seriesId":133,"episodeFileId":18467,"seasonNumber":1,"episodeNumber":8,"title":"I Heard a Rumor","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Vanya practices controlling her new abilities. Allison tags along with a local cop to find out what happened outside the restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":10768},{"seriesId":133,"episodeFileId":18468,"seasonNumber":1,"episodeNumber":9,"title":"Changes","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"Vanya veers between shock and despair as she makes a string of unsettling discoveries. A serendipitous development leaves Five at loose ends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":10769},{"seriesId":133,"episodeFileId":18469,"seasonNumber":1,"episodeNumber":10,"title":"The White Violin","airDate":"2019-02-15","airDateUtc":"2019-02-15T08:00:00Z","overview":"As a lifetime of secrets and resentment bring the Umbrella Academy crashing down, the Hargreeves siblings realize the worst is still to come.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10770},{"seriesId":133,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Official Cast Recap - Season 1","airDate":"2020-07-08","airDateUtc":"2020-07-08T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21355},{"seriesId":133,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Umbrella Academy - As Told By The Hargreeves","airDate":"2020-07-24","airDateUtc":"2020-07-24T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21620},{"seriesId":133,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Entertainment Weekly: The Umbrella Academy Cast","airDate":"2020-07-29","airDateUtc":"2020-07-29T07:00:00Z","overview":"Steven Blackman, Ellen Page, Aidan Gallagher, Robert Sheehan, Tom Hopper, David Casta\u00f1eda, Emmy Raver-Lampman, and Justin H. Min of Netflix's 'The Umbrella Academy' break down what you can expect in season 2.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21631},{"seriesId":133,"episodeFileId":18042,"seasonNumber":2,"episodeNumber":1,"title":"Right Back Where We Started","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"After dropping his siblings into an alley in Dallas\u2014in different years\u2014Five scrambles to track them all down and stop a new doomsday threat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":17591},{"seriesId":133,"episodeFileId":18043,"seasonNumber":2,"episodeNumber":2,"title":"The Frankel Footage","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"An incident at the bar leads Luther to Vanya. Five finds an unsettling surprise in the film Hazel left behind. The cops come after Allison's husband.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":17592},{"seriesId":133,"episodeFileId":18044,"seasonNumber":2,"episodeNumber":3,"title":"The Swedish Job","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"As the sit-in approaches, Allison reconnects with Klaus. The Swedes chase Vanya into a cornfield. Luther makes a distressing discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":17593},{"seriesId":133,"episodeFileId":18045,"seasonNumber":2,"episodeNumber":4,"title":"The Majestic 12","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"Allison searches frantically for Ray. Vanya contends with a crisis at the farm. Five, Diego and Lila crash a party at the Mexican Consulate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":17594},{"seriesId":133,"episodeFileId":18046,"seasonNumber":2,"episodeNumber":5,"title":"Valhalla","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"Summoned to an emergency meeting, the siblings hatch very different plans for how to spend their last six days on Earth. Lila confronts her mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":17595},{"seriesId":133,"episodeFileId":18047,"seasonNumber":2,"episodeNumber":6,"title":"A Light Supper","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"Allison gives Ray a peek at her powers. Dave visits Klaus's compound. The Handler offers Five a deal. The siblings meet their father for dinner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":17615},{"seriesId":133,"episodeFileId":18048,"seasonNumber":2,"episodeNumber":7,"title":"\u00d6ga for \u00d6ga","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"Five travels to 1982 to carry out his new mission. The siblings face a flurry of difficult decisions. Carl issues a warning to Vanya.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":17616},{"seriesId":133,"episodeFileId":18049,"seasonNumber":2,"episodeNumber":8,"title":"The Seven Stages","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"A desperate Five concocts a risky plan to intercept another version of himself. The FBI tortures Vanya. Diego discovers what causes the apocalypse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":17617},{"seriesId":133,"episodeFileId":18050,"seasonNumber":2,"episodeNumber":9,"title":"743","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"The Fives plot against each other. One of the siblings makes a big sacrifice to help Vanya. Lila learns the truth about her parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":17618},{"seriesId":133,"episodeFileId":18051,"seasonNumber":2,"episodeNumber":10,"title":"The End of Something","airDate":"2020-07-31","airDateUtc":"2020-07-31T07:00:00Z","overview":"Reeling from the events at Dealey Plaza, the siblings head to the farm to help save Harlan\u2014only to find themselves drawn into a deadly showdown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":17619},{"seriesId":133,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Raincoat Academy Starring King Vader","airDate":"2020-08-18","airDateUtc":"2020-08-18T07:00:00Z","overview":"What happened to the children who weren\u2019t adopted by Sir Reginald Hargreeves? King Vader stars in The Raincoat Academy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21632}],"episodeFile":[{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Right Back Where We Started-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E01.Right Back Where We Started-WEBDL-1080p.mkv","size":2789379078,"dateAdded":"2021-04-16T15:21:10.274619Z","sceneName":"The.Umbrella.Academy.S02E01.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6628283,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:01","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18042},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Frankel Footage-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E02.The Frankel Footage-WEBDL-1080p.mkv","size":2789301527,"dateAdded":"2021-04-16T15:23:08.000695Z","sceneName":"The.Umbrella.Academy.S02E02.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6423419,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:15","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18043},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Swedish Job-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E03.The Swedish Job-WEBDL-1080p.mkv","size":2949925488,"dateAdded":"2021-04-16T15:25:03.178468Z","sceneName":"The.Umbrella.Academy.S02E03.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6869712,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:15","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18044},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Majestic 12-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E04.The Majestic 12-WEBDL-1080p.mkv","size":2931686258,"dateAdded":"2021-04-16T15:27:00.667878Z","sceneName":"The.Umbrella.Academy.S02E04.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6708714,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:55","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18045},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Valhalla-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E05.Valhalla-WEBDL-1080p.mkv","size":2409449617,"dateAdded":"2021-04-16T15:28:59.867206Z","sceneName":"The.Umbrella.Academy.S02E05.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5429700,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:51","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18046},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E06.A Light Supper-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E06.A Light Supper-WEBDL-1080p.mkv","size":3159235726,"dateAdded":"2021-04-16T15:30:50.651825Z","sceneName":"The.Umbrella.Academy.S02E06.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7138126,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:01","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18047},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E07.\u00d6ga for \u00d6ga-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E07.\u00d6ga for \u00d6ga-WEBDL-1080p.mkv","size":2800826337,"dateAdded":"2021-04-16T15:32:47.06586Z","sceneName":"The.Umbrella.Academy.S02E07.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6614736,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:17","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18048},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Seven Stages-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E08.The Seven Stages-WEBDL-1080p.mkv","size":2389457950,"dateAdded":"2021-04-16T15:34:42.478997Z","sceneName":"The.Umbrella.Academy.S02E08.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5503625,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:57","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18049},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E09.743-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E09.743-WEBDL-1080p.mkv","size":2413511943,"dateAdded":"2021-04-16T15:36:40.02383Z","sceneName":"The.Umbrella.Academy.S02E09.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6665787,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"40:29","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18050},{"seriesId":133,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The End of Something-WEBDL-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 02\/S02E10.The End of Something-WEBDL-1080p.mkv","size":2976335619,"dateAdded":"2021-04-16T15:38:32.656265Z","sceneName":"The.Umbrella.Academy.S02E10.1080p.NF.WEB-DL.DDP5.1.x264-EniaHD","releaseGroup":"EniaHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6789388,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:09","scanType":"Progressive","subtitles":"Russian \/ Russian \/ English \/ English \/ German \/ Spanish \/ French \/ Italian \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18051},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E01.We Only See Each Other at Weddings and Funerals-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E01.We Only See Each Other at Weddings and Funerals-Bluray-1080p.mkv","size":5676256167,"dateAdded":"2021-06-24T16:54:25.900549Z","sceneName":"The.Umbrella.Academy.S01E01.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"58:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18460},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Run Boy Run-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E02.Run Boy Run-Bluray-1080p.mkv","size":5503597642,"dateAdded":"2021-06-24T16:56:57.623302Z","sceneName":"The.Umbrella.Academy.S01E02.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"56:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18461},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Extra Ordinary-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E03.Extra Ordinary-Bluray-1080p.mkv","size":5396156931,"dateAdded":"2021-06-24T16:59:24.534526Z","sceneName":"The.Umbrella.Academy.S01E03.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18462},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Man on the Moon-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E04.Man on the Moon-Bluray-1080p.mkv","size":5446251329,"dateAdded":"2021-06-24T17:01:52.879851Z","sceneName":"The.Umbrella.Academy.S01E04.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18463},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Number Five-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E05.Number Five-Bluray-1080p.mkv","size":5745211009,"dateAdded":"2021-06-24T17:04:22.773801Z","sceneName":"The.Umbrella.Academy.S01E05.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"59:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18464},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Day That Wasn't-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E06.The Day That Wasn't-Bluray-1080p.mkv","size":5561374229,"dateAdded":"2021-06-24T17:07:07.774387Z","sceneName":"The.Umbrella.Academy.S01E06.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"57:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18465},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Day That Was-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E07.The Day That Was-Bluray-1080p.mkv","size":5425232146,"dateAdded":"2021-06-24T17:09:44.695184Z","sceneName":"The.Umbrella.Academy.S01E07.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18466},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E08.I Heard a Rumor-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E08.I Heard a Rumor-Bluray-1080p.mkv","size":4944884779,"dateAdded":"2021-06-24T17:12:09.788991Z","sceneName":"The.Umbrella.Academy.S01E08.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"50:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18467},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Changes-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E09.Changes-Bluray-1080p.mkv","size":4321978149,"dateAdded":"2021-06-24T17:14:35.139739Z","sceneName":"The.Umbrella.Academy.S01E09.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"44:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18468},{"seriesId":133,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The White Violin-Bluray-1080p.mkv","path":"\/tv\/The Umbrella Academy\/Season 01\/S01E10.The White Violin-Bluray-1080p.mkv","size":4521050721,"dateAdded":"2021-06-24T17:16:55.484776Z","sceneName":"The.Umbrella.Academy.S01E10.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"46:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18469}],"queue":[]},"128":{"series":{"title":"Tron: Uprising","alternateTitles":[],"sortTitle":"tron uprising","status":"ended","ended":true,"overview":"Taking place some time between 'Tron' and 'Tron: Legacy', 'Tron: Uprising' tells the story of Beck, a young program who becomes the skillful leader of a revolution inside the computer world of The Grid. His mission is to free his home and friends from the reign of the villainous Clu 2, and his henchman, General Tesler. Beck will be trained by Tron\u2014the greatest warrior the Grid has ever come to know. Tron will not only teach Beck the fighting and light cycle skills he needs to challenge this brutal military occupation, but he will be a guide and mentor to him as he grows beyond his youthful, impulsive nature into a courageous, powerful, strong leader. Destined to become the next Tron of the system, Beck adopts Tron's persona and becomes the archenemy of General Tesler and his oppressive forces.","previousAiring":"2013-01-27T17:00:00Z","network":"Disney XD","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/126\/banner.jpg?lastWrite=637103833626936940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/258480-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/126\/poster.jpg?lastWrite=637103833641976670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/258480-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/126\/fanart.jpg?lastWrite=637103833613777180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/258480-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2012-05-18T16:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":1,"sizeOnDisk":373347316,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-01-27T17:00:00Z","episodeFileCount":17,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":4399752477,"percentOfEpisodes":94.44444444444444}}],"year":2012,"path":"\/tv\/Tron- Uprising","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":258480,"tvRageId":31559,"tvMazeId":1136,"firstAired":"2012-06-07T00:00:00Z","seriesType":"standard","cleanTitle":"tronuprising","imdbId":"tt1812523","titleSlug":"tron-uprising","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Science Fiction"],"tags":[],"added":"2019-01-29T01:26:49.058447Z","ratings":{"votes":1069,"value":8.6},"statistics":{"seasonCount":1,"episodeFileCount":18,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":4773099793,"percentOfEpisodes":94.73684210526316},"id":126},"episodes":[{"seriesId":126,"episodeFileId":6544,"seasonNumber":0,"episodeNumber":1,"title":"Beck's Beginning","airDate":"2012-05-18","airDateUtc":"2012-05-18T16:00:00Z","overview":"\"TRON: Uprising, Beck's Beginning\" introduces Beck, a young mechanic living in Argon City, a growing metropolis in a far off corner of The Grid that has just been occupied by General Tesler, a henchman of the notorious Clu. After his best friend Bodhi is ruthlessly derezzed by Clu's army, Beck seeks justice for his lost friend and launches a crusade against the regime. His rebellion captures the attention of Tron, the greatest warrior The Grid has ever known, who sees the potential in Beck and trains him to be his successor. Labeled with the moniker of The Renegade, Beck sparks a revolution to fight for the freedom of The Grid.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10262},{"seriesId":126,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"The Renegade (1)","airDate":"2012-06-07","airDateUtc":"2012-06-07T16:00:00Z","overview":"In the premiere episode, \"The Renegade Part 1,\" Beck's training with Tron is interrupted when he's captured by a Recognizer patrol and sent to the Coliseum to fight in the games. There Beck meets a fellow prisoner Cutler, a fierce warrior program who has been inspired by The Renegade's actions. Recharged by their shared passion for freedom, Beck and Cutler fight their way out of the deadly disc games. Meanwhile, Zed and Mara head out for night on the town, but run into trouble when an enchanted Zed is lured away by Perl (voiced by Kate Mara), a program from the wrong side of the tracks.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10263},{"seriesId":126,"episodeFileId":6545,"seasonNumber":1,"episodeNumber":2,"title":"The Renegade (2)","airDate":"2012-06-14","airDateUtc":"2012-06-14T16:00:00Z","overview":"While Mara works with Zed to get the Chief's rare bike back, Beck must figure out a way to release his friend from a death sentence and allow the resistance to begin again with recruiting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10264},{"seriesId":126,"episodeFileId":6546,"seasonNumber":1,"episodeNumber":3,"title":"Blackout","airDate":"2012-06-21","airDateUtc":"2012-06-21T16:00:00Z","overview":"As Clu's forces begin an energy mining operation near the city of Argon, it has the side effect of causing blackouts throughout the city. Beck and tron learn of this and decide to plant a bomb on the mining station, but a race is about to tear through tunnels which will become engulfed in flames. Can Beck save everyone in time?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10265},{"seriesId":126,"episodeFileId":6547,"seasonNumber":1,"episodeNumber":4,"title":"Identity","airDate":"2012-06-28","airDateUtc":"2012-06-28T16:00:00Z","overview":"Beck's memory falls to pieces after his identity disc is stolen; he and Tron must find it before his alter-ego is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10266},{"seriesId":126,"episodeFileId":6548,"seasonNumber":1,"episodeNumber":5,"title":"Isolated","airDate":"2012-07-05","airDateUtc":"2012-07-05T16:00:00Z","overview":"Beck and Paige are trapped together on an island that is falling apart, but they continue to fight. Paige's backstory has a few pieces filled in.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10267},{"seriesId":126,"episodeFileId":6549,"seasonNumber":1,"episodeNumber":6,"title":"Price of Power","airDate":"2012-07-12","airDateUtc":"2012-07-12T16:00:00Z","overview":"Beck intercepts a secret weapon that gives any program who wears it increased strength and agility, but it also makes the program more aggressive and reckless.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10268},{"seriesId":126,"episodeFileId":6550,"seasonNumber":1,"episodeNumber":7,"title":"The Reward","airDate":"2012-10-19","airDateUtc":"2012-10-19T16:00:00Z","overview":"Occupation arrests an innocent program falsely accused of being The Renegade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10269},{"seriesId":126,"episodeFileId":6551,"seasonNumber":1,"episodeNumber":8,"title":"Scars (1)","airDate":"2012-10-26","airDateUtc":"2012-10-26T16:00:00Z","overview":"Part 1 of 2. Tron's history before the occupation is revealed. Meanwhile, Beck tries to convince Tron to stop his planned revenge against a program named Dyson that was once his friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10270},{"seriesId":126,"episodeFileId":6552,"seasonNumber":1,"episodeNumber":9,"title":"Scars (2)","airDate":"2012-11-02","airDateUtc":"2012-11-02T16:00:00Z","overview":"Part 2 of 2. Will Beck be able to stop Tron from murdering Dyson for revenge?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10271},{"seriesId":126,"episodeFileId":6553,"seasonNumber":1,"episodeNumber":10,"title":"Grounded","airDate":"2012-12-03","airDateUtc":"2012-12-03T17:00:00Z","overview":"The Renegade is challenged by Tesler to a showdown, but Beck is grounded at the garage by Able. The situation forces Beck to choose between his duty to Able and his responsibilities as the Renegade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10272},{"seriesId":126,"episodeFileId":6554,"seasonNumber":1,"episodeNumber":11,"title":"We Both Know How This Ends","airDate":"2012-12-10","airDateUtc":"2012-12-10T17:00:00Z","overview":"Mara tries to prove her leadership ability when she is put in charge of the garage while Able is away.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10273},{"seriesId":126,"episodeFileId":6555,"seasonNumber":1,"episodeNumber":12,"title":"The Stranger","airDate":"2012-12-17","airDateUtc":"2012-12-17T17:00:00Z","overview":"Beck falls into a trap and discovers a shocking secret; Able uncovers a plot to build a super weapon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10274},{"seriesId":126,"episodeFileId":6556,"seasonNumber":1,"episodeNumber":13,"title":"Tagged","airDate":"2012-12-24","airDateUtc":"2012-12-24T17:00:00Z","overview":"The Renegade recruits three fearless supporters who have expressed their commitment to the revolution by tagging the grid with the message that \"Tron Lives.\" After inviting them to join in the resistance, he discovers one of them is his best friend Mara and has to convince them that tagging is not the right path and devise a new plan targeting Tesler's ship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10275},{"seriesId":126,"episodeFileId":6557,"seasonNumber":1,"episodeNumber":14,"title":"State of Mind","airDate":"2012-12-31","airDateUtc":"2012-12-31T17:00:00Z","overview":"Tesler uses Scientist Keller's mind-control agent originally designed to liberate programs, to build his army. When Mara falls victim to supporting the Occupation and turns against the Renegade, Zed and the Renegade must form an uneasy alliance to help rescue her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10276},{"seriesId":126,"episodeFileId":6558,"seasonNumber":1,"episodeNumber":15,"title":"Welcome Home","airDate":"2013-01-07","airDateUtc":"2013-01-07T17:00:00Z","overview":"Beck tries to rescue a fleeing government scientist before Paige and the Occupation finds her; Paige and Beck become passengers on the same runaway train and Beck must save the innocent programs on the train without revealing his identity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10277},{"seriesId":126,"episodeFileId":6559,"seasonNumber":1,"episodeNumber":16,"title":"Rendezvous","airDate":"2013-01-13","airDateUtc":"2013-01-13T17:00:00Z","overview":"Beck agrees to go on a date with Paige, but their night is cut short when Paige is betrayed by Pavel and thrown into the Games; Beck thinks he may finally be able to win her Paige over by rescuing her as The Renegade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10278},{"seriesId":126,"episodeFileId":6560,"seasonNumber":1,"episodeNumber":17,"title":"No Bounds","airDate":"2013-01-20","airDateUtc":"2013-01-20T17:00:00Z","overview":"When 'The Stranger' returns to Argon City to plot revenge on Beck and Tron, Beck is forced to choose between saving Tron or his friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10279},{"seriesId":126,"episodeFileId":6561,"seasonNumber":1,"episodeNumber":18,"title":"Terminal","airDate":"2013-01-27","airDateUtc":"2013-01-27T17:00:00Z","overview":"Tron tells Beck that he is dying and that the only way to stop his illness is to use the Occupation's new super recognizer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":10280}],"episodeFile":[{"seriesId":126,"seasonNumber":0,"relativePath":"Specials\/S00E01.Beck's Beginning-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Specials\/S00E01.Beck's Beginning-WEBDL-1080p.mkv","size":373347316,"dateAdded":"2019-01-29T01:32:42.306053Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437010,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125870,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"31:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6544},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Renegade (2)-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E02.The Renegade (2)-WEBDL-1080p.mkv","size":259482744,"dateAdded":"2019-01-29T01:32:44.099425Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428666,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125763,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6545},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Blackout-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E03.Blackout-WEBDL-1080p.mkv","size":258267753,"dateAdded":"2019-01-29T01:32:44.617374Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421502,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125798,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6546},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Identity-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E04.Identity-WEBDL-1080p.mkv","size":257706831,"dateAdded":"2019-01-29T01:32:45.1767Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417918,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126094,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6547},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Isolated-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E05.Isolated-WEBDL-1080p.mkv","size":258112606,"dateAdded":"2019-01-29T01:32:45.728102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419658,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126476,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6548},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Price of Power-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E06.Price of Power-WEBDL-1080p.mkv","size":255782067,"dateAdded":"2019-01-29T01:32:46.301487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405817,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126564,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6549},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Reward-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E07.The Reward-WEBDL-1080p.mkv","size":258184963,"dateAdded":"2019-01-29T01:32:50.744495Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421229,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125577,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6550},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Scars (1)-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E08.Scars (1)-WEBDL-1080p.mkv","size":259895078,"dateAdded":"2019-01-29T01:33:06.806675Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429453,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1127652,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6551},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Scars (2)-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E09.Scars (2)-WEBDL-1080p.mkv","size":257552039,"dateAdded":"2019-01-29T01:33:08.39909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417128,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126063,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6552},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Grounded-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E10.Grounded-WEBDL-1080p.mkv","size":258500140,"dateAdded":"2019-01-29T01:33:08.983114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422137,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126755,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6553},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E11.We Both Know How This Ends-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E11.We Both Know How This Ends-WEBDL-1080p.mkv","size":257192494,"dateAdded":"2019-01-29T01:33:09.556051Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416848,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1124088,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6554},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Stranger-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E12.The Stranger-WEBDL-1080p.mkv","size":260898984,"dateAdded":"2019-01-29T01:33:10.060491Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436984,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125781,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6555},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Tagged-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E13.Tagged-WEBDL-1080p.mkv","size":260959498,"dateAdded":"2019-01-29T01:33:11.420723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439190,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1124682,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6556},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E14.State of Mind-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E14.State of Mind-WEBDL-1080p.mkv","size":257256854,"dateAdded":"2019-01-29T01:33:16.67181Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415423,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126054,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6557},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Welcome Home-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E15.Welcome Home-WEBDL-1080p.mkv","size":260101842,"dateAdded":"2019-01-29T01:33:22.77078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431997,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125819,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6558},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Rendezvous-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E16.Rendezvous-WEBDL-1080p.mkv","size":260522512,"dateAdded":"2019-01-29T01:33:29.81984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435765,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1124929,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6559},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E17.No Bounds-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E17.No Bounds-WEBDL-1080p.mkv","size":258075227,"dateAdded":"2019-01-29T01:33:39.652335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420665,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1125347,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6560},{"seriesId":126,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Terminal-WEBDL-1080p.mkv","path":"\/tv\/Tron- Uprising\/Season 01\/S01E18.Terminal-WEBDL-1080p.mkv","size":261260845,"dateAdded":"2019-01-29T01:33:40.273136Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":438951,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1126166,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6561}],"queue":[]},"129":{"series":{"title":"Lost","alternateTitles":[],"sortTitle":"lost","status":"ended","ended":true,"overview":"After their plane, Oceanic Air flight 815, tore apart whilst thousands of miles off course, the survivors find themselves on a mysterious deserted island where they soon find out they are not alone.","previousAiring":"2010-08-25T01:00:00Z","network":"ABC (US)","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/100\/banner.jpg?lastWrite=636757129544950550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/73739-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/100\/poster.jpg?lastWrite=637058983418395300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73739-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/100\/fanart.jpg?lastWrite=637103832893830230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73739-34.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-08-25T01:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":29,"sizeOnDisk":1146498291,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-05-26T01:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":33398973779,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-05-25T01:44:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":34532871486,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2007-05-24T01:44:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":34031777863,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2008-05-30T01:44:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":22544474805,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2009-05-14T01:44:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":26924679703,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2010-05-24T01:44:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":29199917293,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/Lost","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":44,"tvdbId":73739,"tvRageId":4284,"tvMazeId":123,"firstAired":"2004-09-22T00:00:00Z","seriesType":"standard","cleanTitle":"lost","imdbId":"tt0411008","titleSlug":"lost","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Drama","Science Fiction"],"tags":[],"added":"2018-10-21T10:02:32.632359Z","ratings":{"votes":21378,"value":9.1},"statistics":{"seasonCount":6,"episodeFileCount":135,"episodeCount":135,"totalEpisodeCount":149,"sizeOnDisk":181779193220,"percentOfEpisodes":100.0},"id":100},"episodes":[{"seriesId":100,"episodeFileId":5842,"seasonNumber":1,"episodeNumber":1,"title":"Pilot (1)","airDate":"2004-09-22","airDateUtc":"2004-09-23T01:00:00Z","overview":"Stripped of everything, the 48 survivors scavenge what they can from the plane for their survival. Some panic. Some pin their hopes on rescue. A few find inner strength they never knew they had-like Kate who, with no medical training, suddenly finds herself suturing the doctor's wounds. The band of friends, family, enemies and strangers must work together against the cruel weather and harsh terrain. But the intense howls of mysterious creatures stalking the jungle fill them all with fear. Fortunately, thanks to the calm leadership of quick-thinking Jack and level-headed Kate, they have hope. But even heroes have secrets, as the survivors will come to learn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":7331},{"seriesId":100,"episodeFileId":5843,"seasonNumber":1,"episodeNumber":2,"title":"Pilot (2)","airDate":"2004-09-29","airDateUtc":"2004-09-30T01:00:00Z","overview":"Having escaped the \"creature\" and retrieved the plane transceiver, a group of the survivors travel to higher ground so they can transmit a signal. En route, they receive a mysterious transmission and encounter another of the island's inhabitants. Meanwhile, back at camp, Jack tends to a wounded man who reveals a secret about Kate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":7332},{"seriesId":100,"episodeFileId":5844,"seasonNumber":1,"episodeNumber":3,"title":"Tabula Rasa","airDate":"2004-10-06","airDateUtc":"2004-10-07T01:00:00Z","overview":"Jack and Hurley discover an alarming secret about Kate, as the marshal's life hangs in the balance and he suffers a lot of pain. Meanwhile Kate, Charlie, Sawyer, Sayid, Boone and Shannon ponder the mysteries they have begun to uncover and worry that telling the other survivors will cause panic. They decide to lie for the time being. Also, Locke's befriending of Walt disturbs Michael, but Walt is more concerned in finding his dog. Lastly, Kate flashes back to when she was arrested by the marshal in Australia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":7333},{"seriesId":100,"episodeFileId":5845,"seasonNumber":1,"episodeNumber":4,"title":"Walkabout","airDate":"2004-10-13","airDateUtc":"2004-10-14T01:00:00Z","overview":"The survivors are jolted awake in the middle of the night when wild island beasts (which are wild boars) invade the beach encampment. Kate and Michael join the mysterious Locke on a hunt for food -- and a shocking secret about Locke is revealed. On the hunt for food someone is injured. Meanwhile, some survivors are horrified by Jack's plan for the dead bodies still scattered among the wreckage -- he wants to burn them. Jack sees someone that's not there, and we find out that one of the survivors was not able to walk but now he can.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":7334},{"seriesId":100,"episodeFileId":5846,"seasonNumber":1,"episodeNumber":5,"title":"White Rabbit","airDate":"2004-10-20","airDateUtc":"2004-10-21T01:00:00Z","overview":"Jack is nearly delirious from lack of sleep and struggles to overcome the haunting events that brought him to Australia and, subsequently, to the island. Meanwhile, Boone gets caught in a treacherous riptide trying to save a woman who went out swimming. A pregnant Claire's health takes a bad turn from lack of fluids, and a thief may have stolen the last bottles of water. \r\n\r\nAlso, Jack flashes back at 12 years old, to find himself on the playground in an altercation with a bully.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":7335},{"seriesId":100,"episodeFileId":5847,"seasonNumber":1,"episodeNumber":6,"title":"House of the Rising Sun","airDate":"2004-10-27","airDateUtc":"2004-10-28T01:00:00Z","overview":"Walt and the others are shocked when Michael is brutally beaten, but only the non-English-speaking Jin and Sun know the truth behind the attack. Meanwhile Kate, Jack, Sawyer and Sayid argue about where the survivors should camp -- on the beach, where they're more likely to be seen, or in a remote inland valley where fresh water abounds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":7336},{"seriesId":100,"episodeFileId":5848,"seasonNumber":1,"episodeNumber":7,"title":"The Moth","airDate":"2004-11-03","airDateUtc":"2004-11-04T02:00:00Z","overview":"Charlie begins a painful journey of withdrawal from drugs, surprisingly aided by Locke, whose true motive for helping Charlie is a mystery. Meanwhile, survivors struggle to find and free Jack when he's buried alive in a cave collapse, and someone might be secretly thwarting Sayid, Kate, and Boone when they enact a plan to find the source of the French transmission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":7337},{"seriesId":100,"episodeFileId":5849,"seasonNumber":1,"episodeNumber":8,"title":"Confidence Man","airDate":"2004-11-10","airDateUtc":"2004-11-11T02:00:00Z","overview":"Shannon's inhaler runs out and Boone believes Sawyer has the remaining three in his stash. When Sawyer refuses to give them up, Jack and Sayid resort to torturing Sawyer until he agrees to reveal the location of the inhalers. In flashback we hear Sawyer's story...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":7338},{"seriesId":100,"episodeFileId":5850,"seasonNumber":1,"episodeNumber":9,"title":"Solitary","airDate":"2004-11-17","airDateUtc":"2004-11-18T02:00:00Z","overview":"Sayid's life is placed in grave danger after he stumbles upon the source of the mysterious French transmission, the woman Danielle Rousseau. She was on the distress call and is found alive. Meanwhile, Hurley has a ridiculous plan to make life on the island a little more civilized. The plan involves golf clubs he finds in the debris, and it looks like it just might work. Lastly, we flash back to Sayid's childhood friend Nadia as well as his participation in hostage situations in Iraq.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":7339},{"seriesId":100,"episodeFileId":5851,"seasonNumber":1,"episodeNumber":10,"title":"Raised by Another","airDate":"2004-12-01","airDateUtc":"2004-12-02T02:00:00Z","overview":"Claire has a horribly realistic nightmare about her new baby being harmed or kidnapped. Flashbacks reveal Claire's backstory. \r\nHurley is shocked and confused when he discovers that another plane crash survivor, does not appear on the flight manifest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":7340},{"seriesId":100,"episodeFileId":5852,"seasonNumber":1,"episodeNumber":11,"title":"All the Best Cowboys Have Daddy Issues","airDate":"2004-12-08","airDateUtc":"2004-12-09T02:00:00Z","overview":"Survivors wonder why Charlie and Claire have been abducted - and by whom - and a search party ventures into the treacherous jungle to look for the pair. Suspicions focus on Ethan Rom, who, it was recently discovered, was not a passenger on the doomed flight. Jack battles inner demons relating to his father, while Boone and Locke discover another island mystery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":7341},{"seriesId":100,"episodeFileId":5853,"seasonNumber":1,"episodeNumber":12,"title":"Whatever the Case May Be","airDate":"2005-01-05","airDateUtc":"2005-01-06T02:00:00Z","overview":"Jack, Kate and Sawyer fight over possession of a newly discovered locked metal briefcase which might contain insights into Kate's mysterious past. Meanwhile, Sayid asks a reluctant Shannon to translate notes he took from the French woman. A rising tide threatens to engulf the fuselage and the entire beach encampment, and Rose and a grieving Charlie tentatively bond over Claire's baffling kidnapping.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":7342},{"seriesId":100,"episodeFileId":5854,"seasonNumber":1,"episodeNumber":13,"title":"Hearts and Minds","airDate":"2005-01-12","airDateUtc":"2005-01-13T02:00:00Z","overview":"When Locke learns that Boone wants to share their \"secret\" with Shannon, Locke decides to teach him a lesson. Boone and Shannon's dark past is revealed in a shocking backstory that recalls their relationship right before the plane crash. Kate, who has become a confidante to the soft-spoken Sun, is puzzled by Sun's mysterious behavior. A hungry Hurley must convince Jin to share his fish by making up for offending Jin by rejecting his offer of raw fish early on, or he'll continue to suffer digestive problems from the limited island diet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":7343},{"seriesId":100,"episodeFileId":5855,"seasonNumber":1,"episodeNumber":14,"title":"Special","airDate":"2005-01-19","airDateUtc":"2005-01-20T02:00:00Z","overview":"Violence ensues and a mysterious island beast makes a re-appearance when Michael and Locke clash over Walt's upbringing. Meanwhile, Charlie is tempted to read the missing Claire's diary, and Sayid enlists Shannon to help decipher the French woman's map.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7344},{"seriesId":100,"episodeFileId":5856,"seasonNumber":1,"episodeNumber":15,"title":"Homecoming","airDate":"2005-02-09","airDateUtc":"2005-02-10T02:00:00Z","overview":"After the missing Claire returns with no recollection of what has happened since before she boarded the doomed Oceanic flight 815, Jack and Locke formulate a plan of defense against her kidnapper, who threatens to kill off the other survivors one by one unless Claire is returned to him. Meanwhile, the disappointment Charlie feels when Claire does not remember him triggers recollections of a woman he had let down in the past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7345},{"seriesId":100,"episodeFileId":5857,"seasonNumber":1,"episodeNumber":16,"title":"Outlaws","airDate":"2005-02-16","airDateUtc":"2005-02-17T02:00:00Z","overview":"Kate and Sawyer divulge dark secrets to each other while tracking a renegade boar that Sawyer swears is purposely harassing him. Hurley and Sayid worry that Charlie is losing it after facing a brush with death and killing Ethan with 6 bullets to the chest. A shocking prior connection between Sawyer and Jack is revealed in a flashback...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7346},{"seriesId":100,"episodeFileId":5858,"seasonNumber":1,"episodeNumber":17,"title":"...In Translation","airDate":"2005-02-23","airDateUtc":"2005-02-24T02:00:00Z","overview":"When the raft the survivors have been building mysteriously burns down, Michael is convinced that Jin is responsible for the sabotage, which only serves to escalate their rivalry. Meanwhile, Sun stuns her fellow survivors with a surprising revelation, and Boone gives Sayid a warning about his step-sister Shannon. Lastly, more details of Jin and Sun's troubled marriage are revealed through flashbacks.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7347},{"seriesId":100,"episodeFileId":5859,"seasonNumber":1,"episodeNumber":18,"title":"Numbers","airDate":"2005-03-02","airDateUtc":"2005-03-03T02:00:00Z","overview":"When Hurley becomes obsessed with the French woman and heads into the jungle to find her, Jack, Sayid and Charlie have no choice but to follow. Hurley flashes back to the hugely life-altering experience he had before boarding the plane.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7348},{"seriesId":100,"episodeFileId":5860,"seasonNumber":1,"episodeNumber":19,"title":"Deus Ex Machina","airDate":"2005-03-30","airDateUtc":"2005-03-31T02:00:00Z","overview":"Locke thinks he's being sent a sign on how to get the hatch open, and he and Boone venture inland. Jack is reluctant to offer assistance when Sawyer begins to experience excruciating headaches and needs glasses.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7349},{"seriesId":100,"episodeFileId":5861,"seasonNumber":1,"episodeNumber":20,"title":"Do No Harm","airDate":"2005-04-06","airDateUtc":"2005-04-07T01:00:00Z","overview":"While trying to make contact with the outside world from a plane discovered in the jungle tree canopy, Boone Carlyle is critically injured when the plane suddenly shifts and crashes to the ground, so Jack Shephard desperately tries to save his life. The flashbacks in this episode revolve around Jack's marriage to a former patient, Sarah.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7350},{"seriesId":100,"episodeFileId":6177,"seasonNumber":0,"episodeNumber":1,"title":"The Journey","airDate":"2005-04-27","airDateUtc":"2005-04-28T01:00:00Z","overview":"Flashbacks of the core characters illustrating who they were and what they were doing before the crash, a look at the island itself, and a preview of the big season finale.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7302},{"seriesId":100,"episodeFileId":5862,"seasonNumber":1,"episodeNumber":21,"title":"The Greater Good (a.k.a. Sides)","airDate":"2005-05-04","airDateUtc":"2005-05-05T01:00:00Z","overview":"After another funeral, tempers rise as the survivors' suspicions of each other grow, and an unlikely survivor vows revenge. The events that landed Sayid on Flight 815 play out as he engages Locke in a psychological game of cat and mouse to uncover the truth about the mishap that claimed Boone's life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7351},{"seriesId":100,"episodeFileId":5863,"seasonNumber":1,"episodeNumber":22,"title":"Born to Run","airDate":"2005-05-11","airDateUtc":"2005-05-12T01:00:00Z","overview":"Jack suspects foul play when Michael becomes violently ill while building the raft. The suspects include Sawyer and Kate, who compete for the last seat on the raft and do anything possible to prevent each other from getting it. Meanwhile, a secret from Kate's past is revealed to the other survivors on the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7352},{"seriesId":100,"episodeFileId":5864,"seasonNumber":1,"episodeNumber":23,"title":"Exodus (1)","airDate":"2005-05-18","airDateUtc":"2005-05-19T01:00:00Z","overview":"The French woman shocks the survivors by showing up to the camp with a dire warning about \"the Others\". Meanwhile, Michael and Jin ready the raft for sailing. In flashbacks, we see the survivors final moments before they boarded their fateful flight.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7353},{"seriesId":100,"episodeFileId":5865,"seasonNumber":1,"episodeNumber":24,"title":"Exodus (2)","airDate":"2005-05-25","airDateUtc":"2005-05-26T01:00:00Z","overview":"The castaways on the raft run into unexpected trouble. Meanwhile, the remaining islanders attempt to blow open the hatch. Flashbacks continue to show the survivor's final moments before boarding their fateful flight.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7354},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Destination Lost","airDate":"2005-09-21","airDateUtc":"2005-09-22T01:00:00Z","overview":"Narrated in a linear fashion and culminating from the pieces of the back stories told over multiple episodes in the series, \"Destination Lost\" focuses on the flashbacks of a core of characters -- illustrating who they were and what they were doing before the crash, and how the island has changed their lives, for better or worse. In addition, the island itself will be explored - culled from events that have taken place - which may reveal some of its secrets that might have been missed upon first viewing.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7303},{"seriesId":100,"episodeFileId":5884,"seasonNumber":2,"episodeNumber":1,"title":"Man of Science, Man of Faith","airDate":"2005-09-21","airDateUtc":"2005-09-22T01:00:00Z","overview":"Jack, Locke and Kate explore the mysterious hatch but Jack decides to wait before going down into the hatch. Kate and Locke aren't so patient. When Shannon chases after Vincent the dog, she encounters a familiar face in the jungle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7355},{"seriesId":100,"episodeFileId":5885,"seasonNumber":2,"episodeNumber":2,"title":"Adrift","airDate":"2005-09-28","airDateUtc":"2005-09-29T01:00:00Z","overview":"With the abduction of Walt fresh on their minds, their raft destroyed, and Jin missing, Michael and Sawyer fight for their lives in the middle of nowhere in the ocean and discover a new predator in the roiling sea. Meanwhile on land, Locke must descend into the hatch when Kate goes missing inside. Also, Jack isn't too far behind Locke as he decides to go into the hatch as well later on. Lastly, flashbacks reveal more of Michael's troubled relationship with ex-lover Susan and their baby son Walt as they fight over custody for Walt and Michael must let go.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7356},{"seriesId":100,"episodeFileId":5886,"seasonNumber":2,"episodeNumber":3,"title":"Orientation","airDate":"2005-10-05","airDateUtc":"2005-10-06T01:00:00Z","overview":"Jack, Locke and Kate learn more secrets about the hatch. Meanwhile, after being beaten and taken captive, Sawyer, Michael and Jin wonder if their captors are fellow survivors or the dreaded \"Others.\" Flashbacks reveals more of Locke's past as well as the introduction of Helen who shakes things up even more with her revealing personality and past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7357},{"seriesId":100,"episodeFileId":5887,"seasonNumber":2,"episodeNumber":4,"title":"Everybody Hates Hugo","airDate":"2005-10-12","airDateUtc":"2005-10-13T01:00:00Z","overview":"Hurley struggles with an assigned task inside the hatch as he flashbacks to disturbing memories in his life before the crash. Meanwhile, Sawyer, Michael and Jin learn the identities of their captors on the island. Claire uncovers a startling piece of information about the fate of the raft.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7358},{"seriesId":100,"episodeFileId":5888,"seasonNumber":2,"episodeNumber":5,"title":"...And Found","airDate":"2005-10-19","airDateUtc":"2005-10-20T01:00:00Z","overview":"Michael sets off into the jungle by himself determined to find Walt, but discovers that he is not alone. Meanwhile, Sawyer and Jin are ordered by their captors to take them to their camp, and Sun frantically searches for her missing wedding ring. In flashbacks this episode reveals more of Jin's life before ending up on the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7359},{"seriesId":100,"episodeFileId":5889,"seasonNumber":2,"episodeNumber":6,"title":"Abandoned","airDate":"2005-11-09","airDateUtc":"2005-11-10T02:00:00Z","overview":"Sawyer's wound becomes life threatening as he, Michael and Jin make their way through the interior of the island with the tail section survivors.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7360},{"seriesId":100,"episodeFileId":5890,"seasonNumber":2,"episodeNumber":7,"title":"The Other 48 Days","airDate":"2005-11-16","airDateUtc":"2005-11-17T02:00:00Z","overview":"The harrowing first 48 days in the lives of the tail section survivors are revealed. Flashbacks reveal the point of view of Ana-Lucia, Mr. Eko, Bernard and Libby and other survivors as they landed on the other side of the island on the beach. As the days progress danger hits their camp as well when \"The Others\" start taking people against their will...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7361},{"seriesId":100,"episodeFileId":5891,"seasonNumber":2,"episodeNumber":8,"title":"Collision (a.k.a. Old Habits)","airDate":"2005-11-23","airDateUtc":"2005-11-24T02:00:00Z","overview":"Violence erupts when Ana Lucia and her group stumble upon Sayid and the other castaways on the island. Kate and Jack care for Sawyer when Mr. Eko brings him back to the camp himself. Flashbacks reveal Ana Lucia's troubled life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7362},{"seriesId":100,"episodeFileId":5892,"seasonNumber":2,"episodeNumber":9,"title":"What Kate Did","airDate":"2005-11-30","airDateUtc":"2005-12-01T02:00:00Z","overview":"As Kate\u2019s backstory continues, her original crime is revealed. She thinks something is haunting her through Sawyer. Locke and Eko make an interesting discovery about the film, and Michael has a mysterious encounter with the computer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7363},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Revelations","airDate":"2006-01-11","airDateUtc":"2006-01-12T02:00:00Z","overview":"Discover the complete story of the grueling first 48 days on the island for the fuselage survivors and tailies after the crash of Oceanic flight 815. Since the beginning, \"Lost\" has mystified and intrigued viewers with its interesting characters and unique style of storytelling. Season One dealt with the fuselage survivors, the hatch and a failed attempt to get off the island. Season Two continues these stories and also introduces viewers to the survivors of the tail section. \"Lost: Revelation\" puts these two seasons together in a linear fashion that provides an illuminating view on one compelling story. See the sequence of the aftermath of the failed raft attempt, the opening of the hatch, how the tail section and fuselage survivors lived separately and the unwitting intersections of their lives, and how both groups ultimately collided in one catastrophic moment. \"Lost: Revelation\" offers new and avid viewers a fresh perspective, comprehensive and enlightening, in one of television's most intriguing series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7304},{"seriesId":100,"episodeFileId":5893,"seasonNumber":2,"episodeNumber":10,"title":"The 23rd Psalm","airDate":"2006-01-11","airDateUtc":"2006-01-12T02:00:00Z","overview":"This episode will shed more light on why Eko took a mysterious 40-day vow of silence, and possibly information on his stick. Also, Claire begins to lose faith in Charlie after Eko begins to question him about the Virgin Mary statue, and Kate gives the recovering Sawyer a much-needed haircut.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7364},{"seriesId":100,"episodeFileId":5894,"seasonNumber":2,"episodeNumber":11,"title":"The Hunting Party","airDate":"2006-01-18","airDateUtc":"2006-01-19T02:00:00Z","overview":"Jack, Locke and Sawyer follow after a determined Michael after he heads into the jungle toward the dreaded \"Others\" in search of Walt. Meanwhile, Sun has a surprising reaction to Jin's desire to join the search party, and Hurley and Charlie commiserate over the age-old conundrum of \"what women want.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7365},{"seriesId":100,"episodeFileId":5895,"seasonNumber":2,"episodeNumber":12,"title":"Fire + Water","airDate":"2006-01-25","airDateUtc":"2006-01-26T02:00:00Z","overview":"When Charlie's vividly surreal dreams lead him to believe Claire's baby, Aaron, is in danger, Locke suspects Charlie may be using again. Meanwhile, Sawyer encourages Hurley to act on his attraction to Libby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7366},{"seriesId":100,"episodeFileId":5896,"seasonNumber":2,"episodeNumber":13,"title":"The Long Con","airDate":"2006-02-08","airDateUtc":"2006-02-09T02:00:00Z","overview":"Some of the island survivors fear that \"The Others\" may have returned when Sun is greatly injured during a failed kidnapping attempt at her plant garden. Also, the trust barrier becomes very thin between Locke and Jack in terms of locking up the guns and being kept safe. Meanwhile, Sawyer is an amused but highly interested bystander when tension escalates between Jack, Locke, Kate and Ana Lucia. Lastly, flashbacks reveal more of Sawyer's con artist past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7367},{"seriesId":100,"episodeFileId":5897,"seasonNumber":2,"episodeNumber":14,"title":"One of Them","airDate":"2006-02-15","airDateUtc":"2006-02-16T02:00:00Z","overview":"After Sun is attacked, some of the survivors begin to think that one of the \"other survivors\" might be one of \"The Others.\" When French woman Danielle Rousseau leads Sayid to a mysterious captive in the jungle, he becomes determined to find out if he is one of \"The Others\". Meanwhile, Sawyer discovers Hurley\u2019s potentially devastating breach of the survivors\u2019 trust and blackmails him into helping track an elusive island creature that won\u2019t leave Sawyer alone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7368},{"seriesId":100,"episodeFileId":5898,"seasonNumber":2,"episodeNumber":15,"title":"Maternity Leave","airDate":"2006-03-01","airDateUtc":"2006-03-02T02:00:00Z","overview":"A mysterious illness that baby Aaron suddenly contracts sends a desperate Claire, Kate and French woman Danielle to return to the same area where Claire was initially kidnapped. It is there where she believes she can find a cure for Aaron's illness. In the meantime, Jack and Locke are doing their best to keep their prisoner a secret from the rest of the survivors on the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7369},{"seriesId":100,"episodeFileId":5899,"seasonNumber":2,"episodeNumber":16,"title":"The Whole Truth","airDate":"2006-03-22","airDateUtc":"2006-03-23T02:00:00Z","overview":"Sun comes to a realization and struggles on whether to tell Jin about the situation. Meanwhile, with no success from Jack or Sayid, Ana-Lucia is called in by Locke to interrogate the new prisoner Henry Gale to get more information out of him about the balloon that he and his wife supposedly landed on the island with.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7370},{"seriesId":100,"episodeFileId":5900,"seasonNumber":2,"episodeNumber":17,"title":"Lockdown","airDate":"2006-03-29","airDateUtc":"2006-03-30T02:00:00Z","overview":"When the hatch suddenly takes on a life of its own, Locke is forced to enlist the help of an unlikely ally to control the matter. Meanwhile, Ana Lucia, Sayid and Charlie go off into the jungle to find out the truth about Henry Gale and see if there really is balloon craft out there in the jungle that carried him and his wife to the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7371},{"seriesId":100,"episodeFileId":5901,"seasonNumber":2,"episodeNumber":18,"title":"Dave","airDate":"2006-04-05","airDateUtc":"2006-04-06T01:00:00Z","overview":"Libby lends a helping hand to Hurley to support him when he begins to think the island is having a strange effect on him. Hurley begins to see Dave on the island, who was his friend in the mental institution Hurley was in. Also, Locke's sense of purpose is shaken when the prisoner gives him new information about the hatch.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7372},{"seriesId":100,"episodeFileId":5902,"seasonNumber":2,"episodeNumber":19,"title":"S.O.S.","airDate":"2006-04-12","airDateUtc":"2006-04-13T01:00:00Z","overview":"Rose is surprisingly and vehemently opposed to Bernard's plan to create an S.O.S. signal; romantic sparks are rekindled between Jack and Kate when they trek into the jungle to propose a \"trade\" with \"The Others\"; and Locke begins to question his faith in the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7373},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Reckoning","airDate":"2006-04-26","airDateUtc":"2006-04-27T01:00:00Z","overview":"A recap special of the events up to this point in the series narrated by Peter Coyote.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7305},{"seriesId":100,"episodeFileId":5903,"seasonNumber":2,"episodeNumber":20,"title":"Two for the Road","airDate":"2006-05-03","airDateUtc":"2006-05-04T01:00:00Z","overview":"After finding an exhausted Michael in the forest, Jack and Kate bring him back to the main camp. When he finally wakes up, Michael has some new details about \"The Others.\" Also, a lovestruck Hurley plans a date for Libby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7374},{"seriesId":100,"episodeFileId":5904,"seasonNumber":2,"episodeNumber":21,"title":"?","airDate":"2006-05-10","airDateUtc":"2006-05-11T01:00:00Z","overview":"Mr. Eko has dreams about his brother leading him somewhere. He seeks Locke's help in finding a secret location, the \"question mark.\" Meanwhile, Jack and the other survivors grapple with the horrific situation in the hatch.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7375},{"seriesId":100,"episodeFileId":5905,"seasonNumber":2,"episodeNumber":22,"title":"Three Minutes","airDate":"2006-05-17","airDateUtc":"2006-05-18T01:00:00Z","overview":"A determined Michael convinces Jack and several castaways to help him rescue Walt from \"The Others.\" With Jack away, Locke is left in charge of the hatch and must decide if he should believe Henry and not push the button, risking everyone's safety. Meanwhile, the events that happened to Michael after he left are finally revealed. Meanwhile, Charlie struggles with Eko's decision to discontinue building the church.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7376},{"seriesId":100,"episodeFileId":5906,"seasonNumber":2,"episodeNumber":23,"title":"Live Together, Die Alone (1)","airDate":"2006-05-24","airDateUtc":"2006-05-25T01:00:00Z","overview":"After discovering something odd just offshore, Jack and Sayid come up with a plan to confront \"The Others\" and hopefully get Walt back. Meanwhile, Eko and Locke come to blows as Locke makes a potentially cataclysmic decision regarding the \"button\" and the hatch. Lastly, Desmond returns and he sheds some more light on his experience on the island in the three years prior to when Locke came down into that hatch.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7377},{"seriesId":100,"episodeFileId":5907,"seasonNumber":2,"episodeNumber":24,"title":"Live Together, Die Alone (2)","airDate":"2006-05-24","airDateUtc":"2006-05-25T01:44:00Z","overview":"After discovering something odd just offshore, Jack and Sayid come up with a plan to confront \"The Others\" and hopefully get Walt back. Meanwhile, Eko and Locke come to blows as Locke makes a potentially cataclysmic decision regarding the \"button\" and the hatch.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7378},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Lost Survival Guide","airDate":"2006-09-02","airDateUtc":"2006-09-03T01:00:00Z","overview":"\"Lost\" executive producers Damon Lindelof and Carlton Cuse discuss the show's premise and recent happenings on the series in season 2, as well as a preview for season 3.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7306},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"A Tale Of Survival","airDate":"2006-09-27","airDateUtc":"2006-09-28T01:00:00Z","overview":"Recap of the first two seasons","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7307},{"seriesId":100,"episodeFileId":6176,"seasonNumber":3,"episodeNumber":1,"title":"A Tale of Two Cities","airDate":"2006-10-04","airDateUtc":"2006-10-05T01:00:00Z","overview":"Jack, Kate, and Sawyer are prisoners of the mysterious \"Others.\" After their captors drug them and take blood samples, they are held in separate areas. The camp leaders--Ben, Mr. Friendly and a new woman, Juliet--try to make the castaways adjust to their new circumstances.\r\n\r\nFlashbacks reveal more about Jack's past with his father and his wife Sarah.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7379},{"seriesId":100,"episodeFileId":6178,"seasonNumber":3,"episodeNumber":2,"title":"The Glass Ballerina","airDate":"2006-10-11","airDateUtc":"2006-10-12T01:00:00Z","overview":"Sun and Jin's lives are put in danger when Sayid tries to locate Jack and the other missing castaways. Sayid also creates a plan in order to get the attention of the \"Others\" on the beach. Meanwhile, Henry gives Jack an offer that is very tempting in exchange for his cooperation. Lastly, Kate and Sawyer must adjust to harsh conditions that are being forced upon them by \"The Others.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7380},{"seriesId":100,"episodeFileId":6179,"seasonNumber":3,"episodeNumber":3,"title":"Further Instructions","airDate":"2006-10-18","airDateUtc":"2006-10-19T01:00:00Z","overview":"Locke, Eko and Desmond are found scattered about the island after the implosion of the hatch. Locke receives a message from the Island asking him to fix the situation he caused.\r\n\r\nHurley returns to the beach camp to report the imprisonment of Kate, Jack and Sawyer by the Others.\r\n\r\nDesmond has been fundamentally altered by the implosion, giving him a mysterious new power.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7381},{"seriesId":100,"episodeFileId":6180,"seasonNumber":3,"episodeNumber":4,"title":"Every Man for Himself","airDate":"2006-10-25","airDateUtc":"2006-10-26T01:00:00Z","overview":"The Others prevent Sawyer and Kate from escaping, leaving Sawyer perplexed by the extent of the measures taken to keep them imprisoned. Jack is asked to use his medical training to save the life of one of the Others. At the beach, Desmond's strange behavior attracts attention. He begins to construct a mysterious device.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7382},{"seriesId":100,"episodeFileId":6181,"seasonNumber":3,"episodeNumber":5,"title":"The Cost of Living","airDate":"2006-11-01","airDateUtc":"2006-11-02T02:00:00Z","overview":"A delirious Eko wrestles with past demons; some of the castaways go to the Pearl station to find a computer they can use to locate Jack, Kate and Sawyer; Jack does not know who to trust when two of the Others are at odds with each other.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7383},{"seriesId":100,"episodeFileId":6182,"seasonNumber":3,"episodeNumber":6,"title":"I Do","airDate":"2006-11-08","airDateUtc":"2006-11-09T02:00:00Z","overview":"Jack makes a decision regarding Ben's offer. Sawyer's life is placed in danger when Pickett decides to make good on his threat. Locke discovers a hidden message that may help unlock the island's secrets. Kate recalls memories from the past, which caused her to make an important choice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7384},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Survivor Guide","airDate":"2007-02-07","airDateUtc":"2007-02-08T02:00:00Z","overview":"Lost executive producers Damon Lindelof and Carlton Cuse take viewers on a journey through the series so far in anticipation of the second act of season 3.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7308},{"seriesId":100,"episodeFileId":6183,"seasonNumber":3,"episodeNumber":7,"title":"Not In Portland","airDate":"2007-02-07","airDateUtc":"2007-02-08T02:00:00Z","overview":"Jack has the Others in a desperate situation as he holds Ben's life in his hands. Meanwhile, Kate and Sawyer try to escape from their captors. Flashbacks reveal Juliet's past as a medical researcher in Miami.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7385},{"seriesId":100,"episodeFileId":6184,"seasonNumber":3,"episodeNumber":8,"title":"Flashes Before Your Eyes","airDate":"2007-02-14","airDateUtc":"2007-02-15T02:00:00Z","overview":"After Desmond rescues Claire from drowning, Charlie gets Hurley to help him find out why Desmond has seemed able to predict the future. Desmond recalls exactly what took place in the moments after he turns the key, where he experienced a strange vision of his life prior to his Army days.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7386},{"seriesId":100,"episodeFileId":6185,"seasonNumber":3,"episodeNumber":9,"title":"Stranger In A Strange Land","airDate":"2007-02-21","airDateUtc":"2007-02-22T02:00:00Z","overview":"As Kate and Sawyer journey back to the main island with Karl, who is exhibiting effects of the brainwashing video, they argue over whether to go back and save Jack. On Hydra island, as Juliet's fate rests in his hands and a power struggle within the Others ensues, Jack recollects the time he spent in Phuket, Thailand and his relationship with Achara, a mysterious tattoo artist.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7387},{"seriesId":100,"episodeFileId":6186,"seasonNumber":3,"episodeNumber":10,"title":"Tricia Tanaka is Dead","airDate":"2007-02-28","airDateUtc":"2007-03-01T02:00:00Z","overview":"Kate is still struggling over their decision to leave Jack in the hands of the Others as she and Sawyer return to their camp. Meanwhile, Hurley finds an old van in the jungle and attempts to use it to help a fellow survivor in need of faith and hope. Flashbacks reveal more of Hurley's tumultuous past with the numbers curse.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7388},{"seriesId":100,"episodeFileId":6187,"seasonNumber":3,"episodeNumber":11,"title":"Enter 77","airDate":"2007-03-07","airDateUtc":"2007-03-08T02:00:00Z","overview":"On their mission to rescue Jack, Kate, Sayid, and Locke stumble upon a mysterious structure surrounded by farm animals and meet its strange inhabitant. Back at the camp, in order to reclaim his belongings, Sawyer plays in a ping-pong competition.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7389},{"seriesId":100,"episodeFileId":6188,"seasonNumber":3,"episodeNumber":12,"title":"Par Avion","airDate":"2007-03-14","airDateUtc":"2007-03-15T01:00:00Z","overview":"Claire has an idea to send a message to the outside world. Charlie, however, is resistant to the idea, and Desmond tries to sabotage the plan. As Claire tries to get the truth behind their actions out of the pair, she remembers traumatic events from her past. Meanwhile, the rescue party encounters a dangerous obstacle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7390},{"seriesId":100,"episodeFileId":6189,"seasonNumber":3,"episodeNumber":13,"title":"The Man From Tallahassee","airDate":"2007-03-21","airDateUtc":"2007-03-22T01:00:00Z","overview":"When Kate and Locke arrive at the Others' camp, Ben promises to tell Locke the island's secrets as long as he stops his destructive plan, and Kate's reunion with Jack doesn't go very well when she learns that the Others have offered him a deal. More of Locke's troubled past is revealed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7391},{"seriesId":100,"episodeFileId":6190,"seasonNumber":3,"episodeNumber":14,"title":"Expos\u00e9","airDate":"2007-03-28","airDateUtc":"2007-03-29T01:00:00Z","overview":"As the truth about Sun's kidnapping by \"the Others\" comes to her attention, Hurley becomes suspicious of Sawyer's attempt to reveal the mystery behind two fellow survivors, Nikki and Paulo. Through series of flashbacks we will discover what Nikki and Paulo were doing before the crash and how they survived 65 days on the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7392},{"seriesId":100,"episodeFileId":6191,"seasonNumber":3,"episodeNumber":15,"title":"Left Behind","airDate":"2007-04-04","airDateUtc":"2007-04-05T01:00:00Z","overview":"Kate and Juliet are stranded in the jungle after Kate learns that there is a traitor in the survivor's midst. Meanwhile, Sawyer's poor attitude and selfish ways towards the beach community may earn him a vote of banishment if he doesn't have a change of heart.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7393},{"seriesId":100,"episodeFileId":6192,"seasonNumber":3,"episodeNumber":16,"title":"One of Us","airDate":"2007-04-11","airDateUtc":"2007-04-12T01:00:00Z","overview":"The celebration of Jack's return is cut short when he arrives at the beach with an Other, Juliet, whose flashbacks pick up from where they left off, showing us how she got onto the island and became an other. Meanwhile, Claire is threatened by a strange illness.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7394},{"seriesId":100,"episodeFileId":6193,"seasonNumber":3,"episodeNumber":17,"title":"Catch-22","airDate":"2007-04-18","airDateUtc":"2007-04-19T01:00:00Z","overview":"Desmond convinces Hurley, Jin, and Charlie to follow him on a trek through the jungle after he receives a series of visions. Flashbacks reveal the time that Desmond spent with a cloister of monks. Meanwhile, a despondent Kate turns to Sawyer for companionship after seeing Jack and Juliet together.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7395},{"seriesId":100,"episodeFileId":6194,"seasonNumber":3,"episodeNumber":18,"title":"D.O.C.","airDate":"2007-04-25","airDateUtc":"2007-04-26T01:00:00Z","overview":"Sun allows Juliet to examine her when she learns that all of \"The Others\" pregnant woman died before they gave birth on the island. Meanwhile, Desmond and an unlikely nemesis collaborate to save a new island inhabitant's life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7396},{"seriesId":100,"episodeFileId":6195,"seasonNumber":3,"episodeNumber":19,"title":"The Brig","airDate":"2007-05-02","airDateUtc":"2007-05-03T01:00:00Z","overview":"After abandoning the Others, Locke takes Sawyer on a trek through the jungle to help him eliminate a common enemy. Meanwhile, back at the beach, the parachutist Naomi has crucial information about flight 815.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7397},{"seriesId":100,"episodeFileId":6196,"seasonNumber":3,"episodeNumber":20,"title":"The Man Behind the Curtain","airDate":"2007-05-09","airDateUtc":"2007-05-10T01:00:00Z","overview":"Ben unwillingly divulges information to Locke about the island, taking him on a journey to various locations including strange monuments and the mysterious Jacob. Flashbacks will show us the origins of DHARMA and the history of the island, including 'the purge.'","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7398},{"seriesId":100,"episodeFileId":6197,"seasonNumber":3,"episodeNumber":21,"title":"Greatest Hits","airDate":"2007-05-16","airDateUtc":"2007-05-17T01:00:00Z","overview":"While Jack devises a plan to do away with \"The Others\" once and for all, Sayid uncovers a flaw in \"The Others'\" system that could lead to everyone's rescue. But it requires Charlie to take on a dangerous task that may make Desmond's premonition come true.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7399},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"The Answers","airDate":"2007-05-17","airDateUtc":"2007-05-18T01:00:00Z","overview":"A look at the questions that have been answered and the mysteries yet to be solved for the survivors of Oceanic Flight 815.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7309},{"seriesId":100,"episodeFileId":6198,"seasonNumber":3,"episodeNumber":22,"title":"Through The Looking Glass (1)","airDate":"2007-05-23","airDateUtc":"2007-05-24T01:00:00Z","overview":"The castaways are preparing for an invasion by the slightly less mysterious Others, while Charlie and Desmond find more than they were looking for in the underwater \"Looking Glass Hatch\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7400},{"seriesId":100,"episodeFileId":6199,"seasonNumber":3,"episodeNumber":23,"title":"Through The Looking Glass (2)","airDate":"2007-05-23","airDateUtc":"2007-05-24T01:44:00Z","overview":"The castaways are preparing for an invasion by the slightly less mysterious Others, while Charlie and Desmond find more than they were looking for in the underwater \"Looking Glass Hatch\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7401},{"seriesId":100,"episodeFileId":5939,"seasonNumber":0,"episodeNumber":17,"title":"Missing Pieces (1): The Watch","airDate":"2007-11-12","airDateUtc":"2007-11-13T02:00:00Z","overview":"Lost: Missing Pieces are 13 two- to three-minute stories of compelling, new, never-before-seen moments from the hit television show LOST. These newly-created scenes (not deleted scenes from previous episodes) reveal answers and new details about your favorite characters. For each story, we leave it up to the fans to figure out where these pieces fit into the overall mythology.\r\n\r\nChristian is talking with Jack about his wedding, which is later that day. Christian reveals that his father disapproved of him marrying Margo, and that was the reason he didn't wear the watch given to him by his father on his wedding day. However, he tells Jack that he is doing the right thing marrying Sarah and passes the watch to Jack, who immediately puts it on.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7318},{"seriesId":100,"episodeFileId":5940,"seasonNumber":0,"episodeNumber":18,"title":"Missing Pieces (2): The Adventures of Hurley and Frogurt","airDate":"2007-11-19","airDateUtc":"2007-11-20T02:00:00Z","overview":"Hurley comes out of Rose's and Bernard's tent. Neil comes up, and ask what he is doing. He looks at the bottle of DHARMA Cabernet that Hurley has dropped, and then asks if Hurley is going to make a move on Libby. He asks because he has his eyes upon her himself. Hurley tells him that he just now has a date with Libby. Neil reluctantly relents and walks away.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7319},{"seriesId":100,"episodeFileId":5941,"seasonNumber":0,"episodeNumber":19,"title":"Missing Pieces (3): King of the Castle","airDate":"2007-11-27","airDateUtc":"2007-11-28T02:00:00Z","overview":"Ben and Jack play chess. Ben asks Jack if he would consider staying on the Island. Jack asks Ben if he intends to keep his promise to let Jack leave. Ben says that its not all up to him in that the Island will not necessarily let Jack leave. He also tells Jack that if he does leave, there might be a time when he would want to come back.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7320},{"seriesId":100,"episodeFileId":5942,"seasonNumber":0,"episodeNumber":20,"title":"Missing Pieces (4): The Deal","airDate":"2007-12-03","airDateUtc":"2007-12-04T02:00:00Z","overview":"Michael is tied up, when Juliet walks in. She tells him the boat is his, so that he can take Walt away after he will have saved Ben. She comments that Walt is special, that he's not an ordinary boy, and that's why she is worried about him. Juliet is glad that Michael is going to get Walt away from the Island and assures him that Ben will do what he wants. She then reveals the deal with Ben she has made herself, concerning her sister. Then she mentions Michael's list and wishes him good luck.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7321},{"seriesId":100,"episodeFileId":5943,"seasonNumber":0,"episodeNumber":21,"title":"Missing Pieces (5): Operation: Sleeper","airDate":"2007-12-10","airDateUtc":"2007-12-11T02:00:00Z","overview":"Jack is asleep on the beach when Juliet wakes him up. She tells him that since Jack brought her to the camp Sayid and the others have not trusted her and think she is there to hurt them. Before Jack can say he will protect her, Juliet tells him that they are right and she is still working for Ben and she has been sent to the camp to do tests to find out which of the women are pregnant. Jack asks her why she is telling him this and she tells him how she saw Sun's baby the night before and that she is tired of living Ben's dream.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7322},{"seriesId":100,"episodeFileId":5944,"seasonNumber":0,"episodeNumber":22,"title":"Missing Pieces (6): Room 23","airDate":"2007-12-17","airDateUtc":"2007-12-18T02:00:00Z","overview":"Juliet is outside Room 23 where there is some sort of commotion and an alarm sounding. Ben arrives and Juliet tells him that he (presumably Walt) has done something again and that everybody is too scared to go in there. Juliet suggests that they could bring him back to Michael, but Ben refuses. Ben tells her that Walt is special and that Jacob wanted him there, but Juliet says that he is dangerous. When Ben counters that he is only a child, Juliet brings him outside to show what he has done: a group of dead birds lay on the stairwell.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7323},{"seriesId":100,"episodeFileId":5945,"seasonNumber":0,"episodeNumber":23,"title":"Missing Pieces (7): Arzt & Crafts","airDate":"2007-12-24","airDateUtc":"2007-12-25T02:00:00Z","overview":"Dr. Arzt tries to convince Jin and Sun not to move from the beach to the caves as Jack has proposed. When Hurley and Michael tell him they can't understand him, he also expresses his doubts in Jack's role as a leader to them. However he changes his mind and decides to move to the caves after all when the roaring of the monster interrupts their conversation.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7324},{"seriesId":100,"episodeFileId":5946,"seasonNumber":0,"episodeNumber":24,"title":"Missing Pieces (8): Buried Secrets","airDate":"2007-12-30","airDateUtc":"2007-12-31T02:00:00Z","overview":"Sun is watching Jin fish and then walks into the jungle. There she buries a California drivers license when Michael runs by looking for Vincent. Seeing the license he picks it up and Sun tries to explain that she was going to leave Jin. Michael comforts her telling her it will be okay. The two almost share a kiss but Vincent appears barking before anything can happen, prompting Sun to leave.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7325},{"seriesId":100,"episodeFileId":5947,"seasonNumber":0,"episodeNumber":25,"title":"Missing Pieces (9): Tropical Depression","airDate":"2008-01-07","airDateUtc":"2008-01-08T02:00:00Z","overview":"Dr. Arzt is catching a spider in the jungle when Michael comes up and asks about the weather conditions for launching the raft. Then Arzt admits he made up the story about the monsoon because he wanted them to get help with the raft as soon as possible. He then tells Michael he went to Sydney to meet a woman whom he had met on the internet, but that she disappeared during their first dinner in a restaurant.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7326},{"seriesId":100,"episodeFileId":5948,"seasonNumber":0,"episodeNumber":26,"title":"Missing Pieces (10): Jack, Meet Ethan. Ethan? Jack","airDate":"2008-01-14","airDateUtc":"2008-01-15T02:00:00Z","overview":"Jack is searching for supplies when he meets Ethan Rom, who gives him a case full of medicine that he says he found in the jungle. Ethan mentions that Claire might have to deliver the baby on the island, and Jack thanks him for his assistance. Ethan tells Jack his own wife died in childbirth along with the baby, and they both hope that rescue is on the way.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7327},{"seriesId":100,"episodeFileId":5949,"seasonNumber":0,"episodeNumber":27,"title":"Missing Pieces (11): Jin Has a Temper-Tantrum On the Golf Course","airDate":"2008-01-24","airDateUtc":"2008-01-25T02:00:00Z","overview":"Hurley, Michael, and Jin are playing golf on the golf course. After Jin misses a putt to win the game, he goes on a temper-tantrum, shouting in Korean. As Hurley and Michael look on, Jin lets out all of his anger: he is unhappy, he doesn't want to be pitied, nobody understands him, and he is tired of the handcuffs. As Michael and Hurley eventually leave, Jin sits down, half crying, and repeating \"I'm so alone.\"","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7328},{"seriesId":100,"episodeFileId":5950,"seasonNumber":0,"episodeNumber":28,"title":"Missing Pieces (12): The Envelope","airDate":"2008-01-28","airDateUtc":"2008-01-29T02:00:00Z","overview":"Juliet is at her home at the Barracks when she notices that the muffins in the oven are burning. After scalding her hand while taking them out, the doorbell rings. It is Amelia. She helps Juliet, getting some ice for her hand, but realizes that something else is troubling Juliet. She asks if it is Ben, and Juliet says that things have gotten awkward between them. Amelia asks if he finally told her how he felt, but Juliet says he didn't; things are complicated. After Amelia further presses Juliet about what is going on, Juliet hints that they are somehow in trouble. Juliet then asks Amelia to keep quiet about something she is about to show her. As Juliet pulls an envelope out of the kitchen drawer, the doorbell rings...","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7329},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Past, Present & Future","airDate":"2008-01-31","airDateUtc":"2008-02-01T02:00:00Z","overview":"When Oceanic Flight 815 crashed on an island in the middle of the Pacific, each survivor was given a choice to live together or die alone. Thrown together in this mysterious place, they have struggled to overcome shadows from their past in order to survive and answer the questions that plague their new lives on the island. Where are they? Is rescue on its way? What else is on this island? In \"LOST: Past, Present & Future,\" relive their story of survival to prepare for the shocking season four premiere that will change everything.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7310},{"seriesId":100,"episodeFileId":5925,"seasonNumber":4,"episodeNumber":1,"title":"The Beginning of the End","airDate":"2008-01-31","airDateUtc":"2008-02-01T02:00:00Z","overview":"The survivors feel that rescue is close at hand, but they don't know whether or not to believe Charlie's final message that the people claiming to liberate them are not who they seem to be. As unlikely alliances are formed, those they thought could be trusted may turn against them, as the enemy of their enemy becomes their friend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7402},{"seriesId":100,"episodeFileId":5951,"seasonNumber":0,"episodeNumber":29,"title":"Missing Pieces (13): So It Begins","airDate":"2008-02-04","airDateUtc":"2008-02-05T02:00:00Z","overview":"Vincent is running through the jungle on the island, when he encounters Christian Shephard. Christian tells Vincent to find Jack and wake him up because he \"has work to do.\" The first scene of \"Pilot, Part 1\" then replays with Vincent encountering Jack as he is regaining consciousness.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7330},{"seriesId":100,"episodeFileId":5926,"seasonNumber":4,"episodeNumber":2,"title":"Confirmed Dead","airDate":"2008-02-07","airDateUtc":"2008-02-08T02:00:00Z","overview":"The survivors begin to question the intentions of their supposed rescuers when four strangers arrive on the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7403},{"seriesId":100,"episodeFileId":5927,"seasonNumber":4,"episodeNumber":3,"title":"The Economist","airDate":"2008-02-14","airDateUtc":"2008-02-15T02:00:00Z","overview":"Locke's hostage may be the key to getting off the island, so Sayid and Kate go in search of their fellow castaway in an attempt to negotiate a peaceful deal.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7404},{"seriesId":100,"episodeFileId":5928,"seasonNumber":4,"episodeNumber":4,"title":"Eggtown","airDate":"2008-02-21","airDateUtc":"2008-02-22T02:00:00Z","overview":"Kate needs to get information out of the hostages, but it may jeopardize her standing with Locke -- as well as with Sawyer. Meanwhile in the future Kate's Court hearings take place.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7405},{"seriesId":100,"episodeFileId":5929,"seasonNumber":4,"episodeNumber":5,"title":"The Constant","airDate":"2008-02-28","airDateUtc":"2008-02-29T02:00:00Z","overview":"Sayid and Desmond hit a bit of turbulence on the way to the freighter, which causes Desmond to experience some unexpected side effects.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7406},{"seriesId":100,"episodeFileId":5930,"seasonNumber":4,"episodeNumber":6,"title":"The Other Woman","airDate":"2008-03-06","airDateUtc":"2008-03-07T02:00:00Z","overview":"Juliet receives an unwelcome visit from someone from her past and is given orders to track down Charlotte and Faraday in order to stop them from completing their mission -- by any means necessary. Meanwhile, Ben offers Locke an enticing deal.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7407},{"seriesId":100,"episodeFileId":5931,"seasonNumber":4,"episodeNumber":7,"title":"Ji Yeon","airDate":"2008-03-13","airDateUtc":"2008-03-14T01:00:00Z","overview":"Juliet is forced to reveal some startling news to Jin when Sun threatens to move to Locke's camp. Meanwhile, Sayid and Desmond begin to get an idea of the freighter's crew when they meet the ship's captain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":7408},{"seriesId":100,"episodeFileId":5932,"seasonNumber":4,"episodeNumber":8,"title":"Meet Kevin Johnson","airDate":"2008-03-20","airDateUtc":"2008-03-21T01:00:00Z","overview":"Sayid confronts Ben's spy on the freighter, and Ben urges daughter Alex to flee Locke's camp in order to survive an impending attack.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7409},{"seriesId":100,"episodeFileId":5933,"seasonNumber":4,"episodeNumber":9,"title":"The Shape of Things to Come","airDate":"2008-04-24","airDateUtc":"2008-04-25T01:00:00Z","overview":"Jack tries to discover the identity of a body that has washed ashore. Meanwhile, Locke's camp is attacked by Ben's adversaries.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7410},{"seriesId":100,"episodeFileId":5934,"seasonNumber":4,"episodeNumber":10,"title":"Something Nice Back Home","airDate":"2008-05-01","airDateUtc":"2008-05-02T01:00:00Z","overview":"Kate and Juliet must learn to work together when Jack's health is seriously compromised, and something goes wrong as Sawyer, Claire, Aaron and Miles continue their trek away from Locke's camp and back to the beach","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7411},{"seriesId":100,"episodeFileId":5935,"seasonNumber":4,"episodeNumber":11,"title":"Cabin Fever","airDate":"2008-05-08","airDateUtc":"2008-05-09T01:00:00Z","overview":"Locke finds out where Jacob's cabin is. Life on the freighter becomes dangerous.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7412},{"seriesId":100,"episodeFileId":5936,"seasonNumber":4,"episodeNumber":12,"title":"There's No Place Like Home (1)","airDate":"2008-05-15","airDateUtc":"2008-05-16T01:00:00Z","overview":"Sayid goes back to the island to bring the rest of the people to the freighter. Ben, Locke, and Hurley go to another Dharma station in order to \"move the island\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7413},{"seriesId":100,"episodeFileId":5937,"seasonNumber":4,"episodeNumber":13,"title":"There's No Place Like Home (2)","airDate":"2008-05-29","airDateUtc":"2008-05-30T01:00:00Z","overview":"The face-off between the survivors and the freighter people continues, and the Oceanic Six find themselves closer to rescue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7414},{"seriesId":100,"episodeFileId":5938,"seasonNumber":4,"episodeNumber":14,"title":"There's No Place Like Home (3)","airDate":"2008-05-29","airDateUtc":"2008-05-30T01:44:00Z","overview":"As the face-off between the survivors and the freighter people continues, the Oceanic Six find themselves closer to rescue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7415},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Destiny Calls","airDate":"2009-01-21","airDateUtc":"2009-01-22T02:00:00Z","overview":"Exploring the mysteries of the island and its inhabitants; Oceanic 6; Charles Widmore; questions that have been answered, and those that remain.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7311},{"seriesId":100,"episodeFileId":5908,"seasonNumber":5,"episodeNumber":1,"title":"Because You Left","airDate":"2009-01-21","airDateUtc":"2009-01-22T02:00:00Z","overview":"The remaining island survivors start to feel the effects of the aftermath of moving the island, and Jack and Ben begin their quest to reunite the Oceanic 6 in order to return to the island with Locke's body in an attempt to save their former fellow castaways.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7416},{"seriesId":100,"episodeFileId":5909,"seasonNumber":5,"episodeNumber":2,"title":"The Lie","airDate":"2009-01-21","airDateUtc":"2009-01-22T02:44:00Z","overview":"Hurley and Sayid are on the run from the cops after stumbling into trouble at the safehouse; the island survivors come under attack by unknown forces; and an old friend offers some shocking advice to Kate in order to ensure that \"the lie\" remain a secret.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7417},{"seriesId":100,"episodeFileId":5910,"seasonNumber":5,"episodeNumber":3,"title":"Jughead","airDate":"2009-01-28","airDateUtc":"2009-01-29T02:00:00Z","overview":"Desmond looks for a woman who might be the key to helping Faraday stop the island's unpredictable movements through time; Locke finds out who has been attacking the survivors.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7418},{"seriesId":100,"episodeFileId":5911,"seasonNumber":5,"episodeNumber":4,"title":"The Little Prince","airDate":"2009-02-04","airDateUtc":"2009-02-05T02:00:00Z","overview":"Kate discovers that someone knows the secret of Aaron's true parental lineage. Meanwhile, the dramatic shifts through time are placing the lives of the remaining island survivors in extreme peril.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7419},{"seriesId":100,"episodeFileId":5912,"seasonNumber":5,"episodeNumber":5,"title":"This Place Is Death","airDate":"2009-02-11","airDateUtc":"2009-02-12T02:00:00Z","overview":"Locke shoulders the burden of ending the island's increasingly violent movements through time; Ben is stymied in his efforts to reunite the Oceanic 6 and bring them back to the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7420},{"seriesId":100,"episodeFileId":5913,"seasonNumber":5,"episodeNumber":6,"title":"316","airDate":"2009-02-18","airDateUtc":"2009-02-19T02:00:00Z","overview":"The members of Oceanic 6 discover how to get back to the island, but not all of them want to return.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7421},{"seriesId":100,"episodeFileId":5914,"seasonNumber":5,"episodeNumber":7,"title":"The Life and Death of Jeremy Bentham","airDate":"2009-02-25","airDateUtc":"2009-02-26T02:00:00Z","overview":"Locke's mission off the island as Jeremy is revealed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7422},{"seriesId":100,"episodeFileId":5915,"seasonNumber":5,"episodeNumber":8,"title":"LaFleur","airDate":"2009-03-04","airDateUtc":"2009-03-05T02:00:00Z","overview":"Sawyer perpetuates a lie with some of the other island survivors in order to protect themselves from mistakes of the past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7423},{"seriesId":100,"episodeFileId":5916,"seasonNumber":5,"episodeNumber":9,"title":"Namaste","airDate":"2009-03-18","airDateUtc":"2009-03-19T01:00:00Z","overview":"After meeting old acquaintances Sawyer is forced to continue lying to protect them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7424},{"seriesId":100,"episodeFileId":5917,"seasonNumber":5,"episodeNumber":10,"title":"He's Our You","airDate":"2009-03-25","airDateUtc":"2009-03-26T01:00:00Z","overview":"Everyone on the island is at risk when one of the survivors decides to go against them and taking matters into their own hands.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7425},{"seriesId":100,"episodeFileId":5918,"seasonNumber":5,"episodeNumber":11,"title":"Whatever Happened, Happened","airDate":"2009-04-01","airDateUtc":"2009-04-02T01:00:00Z","overview":"Kate goes to extreme measures to save Ben's life when Jack refuses to help. Meanwhile, Kate begins to tell the truth about the lie in order to protect Aaron.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7426},{"seriesId":100,"episodeFileId":5919,"seasonNumber":5,"episodeNumber":12,"title":"Dead Is Dead","airDate":"2009-04-08","airDateUtc":"2009-04-09T01:00:00Z","overview":"To atone for sins of the past, Ben must attempt to summon the smoke monster in order to be judged.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7427},{"seriesId":100,"episodeFileId":5920,"seasonNumber":5,"episodeNumber":13,"title":"Some Like It Hoth","airDate":"2009-04-15","airDateUtc":"2009-04-16T01:00:00Z","overview":"Suspicions about a possible breach intensify after Ben is taken from the infirmary, and a reluctant Miles is forced to work with Hurley when he's asked to deliver an important package to a top Dharma official.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7428},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"The Story of the Oceanic 6","airDate":"2009-04-22","airDateUtc":"2009-04-23T01:00:00Z","overview":"A retrospective exploring events in the lives of the Oceanic 6 and the other island survivors during the three years after Ben moved the island.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7312},{"seriesId":100,"episodeFileId":5921,"seasonNumber":5,"episodeNumber":14,"title":"The Variable","airDate":"2009-04-29","airDateUtc":"2009-04-30T01:00:00Z","overview":"The time of reckoning has begun when Daniel Faraday comes clean regarding what he knows about the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7429},{"seriesId":100,"episodeFileId":5922,"seasonNumber":5,"episodeNumber":15,"title":"Follow the Leader","airDate":"2009-05-06","airDateUtc":"2009-05-07T01:00:00Z","overview":"Jack and Kate find themselves at odds over the direction to take to save their fellow island survivors, Locke further solidifies his stance as leader of \"The Others,\" and Sawyer and Juliet come under scrutiny from the Dharma Initiative.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7430},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"A Journey in Time","airDate":"2009-05-13","airDateUtc":"2009-05-14T01:00:00Z","overview":"Jack, Kate, Hurley, Sayid, Sun and Claire\u2019s son, Aaron \u2013 otherwise known as the Oceanic 6 \u2013 were rescued and tried and pick up the pieces of the lives they knew before the crash and perpetuate the lie concocted to hide the truth of what really happened. But Jack and Ben had to convince them to return to the island in order to save those left behind. Upon returning, Jack, Kate, Hurley and Sayid were reunited with their fellow survivors \u2013 but found themselves in 1977 Dharma times. But Sun and Ben were not transported back to the \u201870s. They landed back on the island in present time and discovered the fate of the other members. As for those left behind on the island after the Oceanic 6 departed, violent shifts through time were wreaking havoc on their lives. After Locke left the island under the guise of Jeremy Bentham to contact the 6, his actions helped end the time rifts, which left the survivors to fend for themselves in \u201870s Dharmaville. But Locke was murdered at the hands of Ben, who insisted on taking the body back to the island. Upon awakening after crash landing back on the isle, Ben discovered that Locke was very much alive. What are Locke\u2019s intentions now that he has returned and re-claimed his position as leader of \u201cThe Others?\u201d And will Jack's decision to put a plan in action in order to set things right on the island be met with open arms or resistance by those close to him?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7313},{"seriesId":100,"episodeFileId":5923,"seasonNumber":5,"episodeNumber":16,"title":"The Incident (1)","airDate":"2009-05-13","airDateUtc":"2009-05-14T01:00:00Z","overview":"Jack's decision to put a plan in action in order to set things right on the island is met with some strong resistance by those close to him, and Locke assigns Ben a difficult task.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7431},{"seriesId":100,"episodeFileId":5924,"seasonNumber":5,"episodeNumber":17,"title":"The Incident (2)","airDate":"2009-05-13","airDateUtc":"2009-05-14T01:44:00Z","overview":"Jack's decision to put a plan in action in order to set things right on the island is met with some strong resistance by those close to him, and Locke assigns Ben a difficult task.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7432},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Final Chapter","airDate":"2010-02-02","airDateUtc":"2010-02-03T02:00:00Z","overview":"Special recap for Season Six.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7314},{"seriesId":100,"episodeFileId":5866,"seasonNumber":6,"episodeNumber":1,"title":"LA X (1)","airDate":"2010-02-02","airDateUtc":"2010-02-03T02:00:00Z","overview":"A parallel universe, in which the crash never happened, is revealed as an aftermath of the bomb's detonation. Meanwhile, Sawyer blames Jack for the loss of Juliet and the true identity of the monster is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":7433},{"seriesId":100,"episodeFileId":5866,"seasonNumber":6,"episodeNumber":2,"title":"LA X (2)","airDate":"2010-02-02","airDateUtc":"2010-02-03T02:44:00Z","overview":"Jack, Sawyer, Kate, Miles and Hurley, struggling to save Sayid, face an ancient secret. Meanwhile, a fake Lock exits the chamber to everyone's awe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":7434},{"seriesId":100,"episodeFileId":5868,"seasonNumber":6,"episodeNumber":3,"title":"What Kate Does","airDate":"2010-02-09","airDateUtc":"2010-02-10T02:00:00Z","overview":"Kate finds herself on the run, while Jack is tasked with something that could put a friend's life at risk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":7435},{"seriesId":100,"episodeFileId":5869,"seasonNumber":6,"episodeNumber":4,"title":"The Substitute","airDate":"2010-02-16","airDateUtc":"2010-02-17T02:00:00Z","overview":"Locke goes in search of help to further his cause. Kate finds herself on the run, while Jack is tasked with something that could put a friend's life at risk.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7436},{"seriesId":100,"episodeFileId":5870,"seasonNumber":6,"episodeNumber":5,"title":"Lighthouse","airDate":"2010-02-23","airDateUtc":"2010-02-24T02:00:00Z","overview":"Hurley must convince Jack to accompany him on an unspecified mission, and Jin stumbles across an old friend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7437},{"seriesId":100,"episodeFileId":5871,"seasonNumber":6,"episodeNumber":6,"title":"Sundown","airDate":"2010-03-02","airDateUtc":"2010-03-03T02:00:00Z","overview":"Sayid is faced with a difficult decision, and Claire sends a warning to the temple inhabitants.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7438},{"seriesId":100,"episodeFileId":5872,"seasonNumber":6,"episodeNumber":7,"title":"Dr. Linus","airDate":"2010-03-09","airDateUtc":"2010-03-10T02:00:00Z","overview":"Ben deals with the consequences of an uncovered lie.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7439},{"seriesId":100,"episodeFileId":5873,"seasonNumber":6,"episodeNumber":8,"title":"Recon","airDate":"2010-03-16","airDateUtc":"2010-03-17T01:00:00Z","overview":"Locke tasks Sawyer with a mission.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7440},{"seriesId":100,"episodeFileId":5874,"seasonNumber":6,"episodeNumber":9,"title":"Ab Aeterno","airDate":"2010-03-23","airDateUtc":"2010-03-24T01:00:00Z","overview":"Richard Alpert faces a difficult choice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7441},{"seriesId":100,"episodeFileId":5875,"seasonNumber":6,"episodeNumber":10,"title":"The Package","airDate":"2010-03-30","airDateUtc":"2010-03-31T01:00:00Z","overview":"Sun and Jin desperately continue their search for one another, and Locke confronts his enemy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7442},{"seriesId":100,"episodeFileId":5876,"seasonNumber":6,"episodeNumber":11,"title":"Happily Ever After","airDate":"2010-04-06","airDateUtc":"2010-04-07T01:00:00Z","overview":"Desmond wakes up to discover he's back on the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7443},{"seriesId":100,"episodeFileId":5877,"seasonNumber":6,"episodeNumber":12,"title":"Everybody Loves Hugo","airDate":"2010-04-13","airDateUtc":"2010-04-14T01:00:00Z","overview":"Hurley worries about what the group should do next and Locke is curious about the new arrival in his camp.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7444},{"seriesId":100,"episodeFileId":5878,"seasonNumber":6,"episodeNumber":13,"title":"The Last Recruit","airDate":"2010-04-20","airDateUtc":"2010-04-21T01:00:00Z","overview":"Alliances are forged and broken as the Locke and Jack camps merge.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7445},{"seriesId":100,"episodeFileId":5879,"seasonNumber":6,"episodeNumber":14,"title":"The Candidate","airDate":"2010-05-04","airDateUtc":"2010-05-05T01:00:00Z","overview":"After the remaining survivors are reunited, Sawyer and Jack hatch a plan to divert the Man in Black's attention and leave the island without him on Widmore's submarine, but disastrous consequences await them. In the flash sideways, Jack investigates the cause of Locke's paralysis and offers treatment.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7446},{"seriesId":100,"episodeFileId":5880,"seasonNumber":6,"episodeNumber":15,"title":"Across the Sea","airDate":"2010-05-11","airDateUtc":"2010-05-12T01:00:00Z","overview":"The motives of John Locke are finally explained.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7447},{"seriesId":100,"episodeFileId":5881,"seasonNumber":6,"episodeNumber":16,"title":"What They Died For","airDate":"2010-05-18","airDateUtc":"2010-05-19T01:00:00Z","overview":"While Locke devises a new strategy, Jack's group searches for Desmond.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7448},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Final Journey","airDate":"2010-05-23","airDateUtc":"2010-05-24T01:00:00Z","overview":"ABC invites new and avid \"Lost\" viewers to take a final glance at one of television's most talked about and critically acclaimed shows. The \"Lost\" Series Finale Event begins with this two-hour special, which takes a retrospective look back over the past six seasons of this groundbreaking series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7315},{"seriesId":100,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Aloha to Lost","airDate":"2010-05-23","airDateUtc":"2010-05-24T01:44:00Z","overview":"Jimmy Kimmel is a huge fan of Lost, therefore it was only appropriate that the opening scene of his show last night, titled \u201dAloha to Lost\u201d, showed him watching the show\u2019s finale with his audience.\r\n\r\nAfter the conclusion of the episode, Kimmel invited several cast members from Lost onto his show, where they reminisced about their favorite moments and had a few laughs with Kimmel's presentation of alternate endings.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7316},{"seriesId":100,"episodeFileId":5883,"seasonNumber":6,"episodeNumber":17,"title":"The End (1)","airDate":"2010-05-23","airDateUtc":"2010-05-24T01:00:00Z","overview":"Jack, the new protector of the island, meets with Locke and they go past the bamboo field with Desmond to visit the heart of the island. The Man in Black's final fate is determined, and one survivor must make the ultimate sacrifice to save the island. Meanwhile, in another life, the ones who might have been the survivors gather for a final time.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7449},{"seriesId":100,"episodeFileId":5883,"seasonNumber":6,"episodeNumber":18,"title":"The End (2)","airDate":"2010-05-23","airDateUtc":"2010-05-24T01:44:00Z","overview":"The Man in Black's final fate is determined, and one survivor must make the ultimate sacrifice to save the island. Meanwhile, in another life, the ones who might have been the survivors gather for a final time.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":7450},{"seriesId":100,"episodeFileId":5882,"seasonNumber":0,"episodeNumber":16,"title":"New Man In Charge","airDate":"2010-08-24","airDateUtc":"2010-08-25T01:00:00Z","overview":"\"The New Man in Charge\" is a mini-episode that follows the events of LOST's series finale which show what happened to Hurley and Ben.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":7317}],"episodeFile":[{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot (1)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E01.Pilot (1)-Bluray-1080p.mkv","size":1420067878,"dateAdded":"2018-12-28T03:16:56.741782Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432131,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3892068,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:20","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5842},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Pilot (2)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E02.Pilot (2)-Bluray-1080p.mkv","size":1412511057,"dateAdded":"2018-12-28T03:17:30.22248Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":476352,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4041224,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"40:24","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5843},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Tabula Rasa-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E03.Tabula Rasa-Bluray-1080p.mkv","size":1371804888,"dateAdded":"2018-12-28T03:19:29.892971Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":375950,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3807996,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5844},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Walkabout-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E04.Walkabout-Bluray-1080p.mkv","size":1739665574,"dateAdded":"2018-12-28T03:20:34.856447Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":457433,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4811771,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:47","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5845},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E05.White Rabbit-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E05.White Rabbit-Bluray-1080p.mkv","size":1428793439,"dateAdded":"2018-12-28T03:22:10.316529Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415034,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4050172,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5846},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E06.House of the Rising Sun-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E06.House of the Rising Sun-Bluray-1080p.mkv","size":1401990032,"dateAdded":"2018-12-28T03:23:40.819304Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420609,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3922276,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:52","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5847},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Moth-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E07.The Moth-Bluray-1080p.mkv","size":1309895135,"dateAdded":"2018-12-28T03:24:54.834447Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":395054,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3476123,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:24","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5848},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Confidence Man-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E08.Confidence Man-Bluray-1080p.mkv","size":1360763875,"dateAdded":"2018-12-28T03:25:19.135094Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439477,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3726629,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5849},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Solitary-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E09.Solitary-Bluray-1080p.mkv","size":1269074283,"dateAdded":"2018-12-28T03:26:56.76045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414781,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3474351,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5850},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Raised by Another-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E10.Raised by Another-Bluray-1080p.mkv","size":1368197615,"dateAdded":"2018-12-28T03:28:03.930443Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407883,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3817231,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:55","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5851},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E11.All the Best Cowboys Have Daddy Issues-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E11.All the Best Cowboys Have Daddy Issues-Bluray-1080p.mkv","size":1440714041,"dateAdded":"2018-12-28T03:29:26.338098Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427637,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4089087,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5852},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Whatever the Case May Be-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E12.Whatever the Case May Be-Bluray-1080p.mkv","size":1613863900,"dateAdded":"2018-12-28T03:30:58.423004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436165,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4509345,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:20","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5853},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Hearts and Minds-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E13.Hearts and Minds-Bluray-1080p.mkv","size":1637385183,"dateAdded":"2018-12-28T03:32:41.689044Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436724,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4439734,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:24","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5854},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Special-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E14.Special-Bluray-1080p.mkv","size":1212501615,"dateAdded":"2018-12-28T03:34:28.178794Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":400129,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3303265,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5855},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Homecoming-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E15.Homecoming-Bluray-1080p.mkv","size":1079922210,"dateAdded":"2018-12-28T03:35:49.22281Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427536,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3000976,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:44","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5856},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Outlaws-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E16.Outlaws-Bluray-1080p.mkv","size":1223770593,"dateAdded":"2018-12-28T03:36:57.717472Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425526,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3310751,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:25","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5857},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E17.In Translation-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E17.In Translation-Bluray-1080p.mkv","size":1198729750,"dateAdded":"2018-12-28T03:38:23.328836Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408303,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3281453,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5858},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Numbers-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E18.Numbers-Bluray-1080p.mkv","size":1548907156,"dateAdded":"2018-12-28T03:39:58.508148Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415478,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4017450,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5859},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Deus Ex Machina-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E19.Deus Ex Machina-Bluray-1080p.mkv","size":1542199556,"dateAdded":"2018-12-28T03:41:35.041805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":411748,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4061044,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:48","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5860},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Do No Harm-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E20.Do No Harm-Bluray-1080p.mkv","size":1093187407,"dateAdded":"2018-12-28T03:43:10.237505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427389,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2913540,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5861},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Greater Good (a.k.a. Sides)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E21.The Greater Good (a.k.a. Sides)-Bluray-1080p.mkv","size":1231826360,"dateAdded":"2018-12-28T03:44:31.626062Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424526,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3340155,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5862},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Born to Run-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E22.Born to Run-Bluray-1080p.mkv","size":1356215527,"dateAdded":"2018-12-28T03:44:44.136739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414691,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3734261,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:22","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5863},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Exodus (1)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E23.Exodus (1)-Bluray-1080p.mkv","size":1359361301,"dateAdded":"2018-12-28T03:46:10.025382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":428591,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3726685,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:24","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5864},{"seriesId":100,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Exodus (2)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 01\/S01E24.Exodus (2)-Bluray-1080p.mkv","size":1777625404,"dateAdded":"2018-12-28T03:47:23.987889Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":462268,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5008534,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5865},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E01E02.LA X-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E01E02.LA X-Bluray-1080p.mkv","size":2968045973,"dateAdded":"2018-12-28T03:49:31.577954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4172894,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:24:07","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5866},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E03.What Kate Does-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E03.What Kate Does-Bluray-1080p.mkv","size":1287416514,"dateAdded":"2018-12-28T03:52:28.075841Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3613748,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5868},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E04.The Substitute-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E04.The Substitute-Bluray-1080p.mkv","size":1766807671,"dateAdded":"2018-12-28T03:53:52.811001Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5067114,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5869},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Lighthouse-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E05.Lighthouse-Bluray-1080p.mkv","size":1676497437,"dateAdded":"2018-12-28T03:56:12.385838Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4671099,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5870},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Sundown-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E06.Sundown-Bluray-1080p.mkv","size":1565810033,"dateAdded":"2018-12-28T03:57:49.332824Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4557518,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:03","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5871},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Dr. Linus-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E07.Dr. Linus-Bluray-1080p.mkv","size":1834095582,"dateAdded":"2018-12-28T03:59:02.238004Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5139485,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5872},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Recon-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E08.Recon-Bluray-1080p.mkv","size":1317254367,"dateAdded":"2018-12-28T04:00:48.73821Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398312,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3656416,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5873},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Ab Aeterno-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E09.Ab Aeterno-Bluray-1080p.mkv","size":1888279113,"dateAdded":"2018-12-28T04:02:47.854865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":394114,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4751979,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:37","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5874},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E10.The Package-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E10.The Package-Bluray-1080p.mkv","size":1544255917,"dateAdded":"2018-12-28T04:03:57.709275Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4374068,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5875},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Happily Ever After-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E11.Happily Ever After-Bluray-1080p.mkv","size":1485056409,"dateAdded":"2018-12-28T04:05:50.048654Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4211279,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:54","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5876},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Everybody Loves Hugo-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E12.Everybody Loves Hugo-Bluray-1080p.mkv","size":1767285462,"dateAdded":"2018-12-28T04:07:03.258118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":400250,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5107631,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:36","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5877},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E13.The Last Recruit-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E13.The Last Recruit-Bluray-1080p.mkv","size":1765346279,"dateAdded":"2018-12-28T04:08:18.656558Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408303,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5031242,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5878},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E14.The Candidate-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E14.The Candidate-Bluray-1080p.mkv","size":1534930116,"dateAdded":"2018-12-28T04:09:29.001245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4349865,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5879},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Across the Sea-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E15.Across the Sea-Bluray-1080p.mkv","size":1720076245,"dateAdded":"2018-12-28T04:11:21.369228Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":427291,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4758375,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5880},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E16.What They Died For-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E16.What They Died For-Bluray-1080p.mkv","size":1534822548,"dateAdded":"2018-12-28T04:12:46.372726Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4337099,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5881},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E16.New Man In Charge-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E16.New Man In Charge-Bluray-1080p.mkv","size":457088813,"dateAdded":"2018-12-28T04:13:56.385914Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":360403,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4732550,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5882},{"seriesId":100,"seasonNumber":6,"relativePath":"Season 06\/S06E17E18.The End-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 06\/S06E17E18.The End-Bluray-1080p.mkv","size":3543937627,"dateAdded":"2018-12-28T04:14:03.420497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399433,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4096844,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:44:43","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5883},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Man of Science, Man of Faith-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E01.Man of Science, Man of Faith-Bluray-1080p.mkv","size":1328570885,"dateAdded":"2018-12-28T04:17:33.50818Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423013,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3520257,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5884},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Adrift-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E02.Adrift-Bluray-1080p.mkv","size":1337529313,"dateAdded":"2018-12-28T04:18:31.298216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425238,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3743964,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5885},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Orientation-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E03.Orientation-Bluray-1080p.mkv","size":1365127795,"dateAdded":"2018-12-28T04:19:24.585804Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423954,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3753422,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5886},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Everybody Hates Hugo-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E04.Everybody Hates Hugo-Bluray-1080p.mkv","size":1333058870,"dateAdded":"2018-12-28T04:20:29.476684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416782,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3663955,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5887},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E05.And Found-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E05.And Found-Bluray-1080p.mkv","size":1804430321,"dateAdded":"2018-12-28T04:21:09.414926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421618,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5218991,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5888},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Abandoned-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E06.Abandoned-Bluray-1080p.mkv","size":1447726410,"dateAdded":"2018-12-28T04:22:20.665635Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436905,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4035376,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:54","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5889},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Other 48 Days-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E07.The Other 48 Days-Bluray-1080p.mkv","size":1807660247,"dateAdded":"2018-12-28T04:23:21.835652Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437309,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4746111,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:18","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5890},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Collision (a.k.a. Old Habits)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E08.Collision (a.k.a. Old Habits)-Bluray-1080p.mkv","size":1461615933,"dateAdded":"2018-12-28T04:24:20.775895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413214,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4149633,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:29","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5891},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E09.What Kate Did-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E09.What Kate Did-Bluray-1080p.mkv","size":1232199478,"dateAdded":"2018-12-28T04:25:22.980625Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403960,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3033235,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:56","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5892},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The 23rd Psalm-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E10.The 23rd Psalm-Bluray-1080p.mkv","size":1313467968,"dateAdded":"2018-12-28T04:26:22.400049Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420623,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3479409,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5893},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Hunting Party-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E11.The Hunting Party-Bluray-1080p.mkv","size":1066062740,"dateAdded":"2018-12-28T04:27:08.097162Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":404784,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2855911,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5894},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Fire + Water-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E12.Fire + Water-Bluray-1080p.mkv","size":1435948652,"dateAdded":"2018-12-28T04:27:51.839404Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421070,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3992944,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5895},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Long Con-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E13.The Long Con-Bluray-1080p.mkv","size":1192216171,"dateAdded":"2018-12-28T04:28:37.638175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":420946,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3123521,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:26","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5896},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E14.One of Them-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E14.One of Them-Bluray-1080p.mkv","size":1340504088,"dateAdded":"2018-12-28T04:29:02.778158Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416112,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3550189,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:44","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5897},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Maternity Leave-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E15.Maternity Leave-Bluray-1080p.mkv","size":1405854449,"dateAdded":"2018-12-28T04:30:09.17342Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419829,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3614253,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:08","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5898},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Whole Truth-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E16.The Whole Truth-Bluray-1080p.mkv","size":1274419434,"dateAdded":"2018-12-28T04:30:44.456102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415211,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3369893,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5899},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Lockdown-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E17.Lockdown-Bluray-1080p.mkv","size":1226660184,"dateAdded":"2018-12-28T04:31:35.675314Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":408817,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3344175,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5900},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Dave-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E18.Dave-Bluray-1080p.mkv","size":2075618302,"dateAdded":"2018-12-28T04:32:33.48578Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412632,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5405278,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:21","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5901},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E19.S.O.S-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E19.S.O.S-Bluray-1080p.mkv","size":1491470878,"dateAdded":"2018-12-28T04:33:43.012801Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416760,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4149908,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:16","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5902},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Two for the Road-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E20.Two for the Road-Bluray-1080p.mkv","size":1206751628,"dateAdded":"2018-12-28T04:34:54.641924Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":405123,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3282033,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5903},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E21.-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E21.-Bluray-1080p.mkv","size":1373408764,"dateAdded":"2018-12-28T04:35:52.296695Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429194,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3509838,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:10","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5904},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Three Minutes-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E22.Three Minutes-Bluray-1080p.mkv","size":1556473057,"dateAdded":"2018-12-28T04:36:52.80358Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431639,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4121151,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:19","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5905},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Live Together, Die Alone (1)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E23.Live Together, Die Alone (1)-Bluray-1080p.mkv","size":1800779034,"dateAdded":"2018-12-28T04:37:49.965922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":416959,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5100320,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5906},{"seriesId":100,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Live Together, Die Alone (2)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 02\/S02E24.Live Together, Die Alone (2)-Bluray-1080p.mkv","size":1655316885,"dateAdded":"2018-12-28T04:38:49.55276Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417855,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4653490,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5907},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Because You Left-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E01.Because You Left-Bluray-1080p.mkv","size":1866350909,"dateAdded":"2018-12-28T04:39:51.527058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414653,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5224738,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5908},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E02.The Lie-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E02.The Lie-Bluray-1080p.mkv","size":1295734212,"dateAdded":"2018-12-28T04:40:54.729684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":369848,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3702993,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5909},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Jughead-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E03.Jughead-Bluray-1080p.mkv","size":2004529296,"dateAdded":"2018-12-28T04:41:49.249427Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406306,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5771496,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5910},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E04.The Little Prince-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E04.The Little Prince-Bluray-1080p.mkv","size":1439957872,"dateAdded":"2018-12-28T04:43:07.222667Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":402059,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4029236,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5911},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E05.This Place Is Death-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E05.This Place Is Death-Bluray-1080p.mkv","size":1765967591,"dateAdded":"2018-12-28T04:44:20.206631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":413174,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5029392,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5912},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E06.316-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E06.316-Bluray-1080p.mkv","size":1408749403,"dateAdded":"2018-12-28T04:45:11.607228Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":395402,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3935101,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5913},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E07.The Life and Death of Jeremy Bentham-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E07.The Life and Death of Jeremy Bentham-Bluray-1080p.mkv","size":1365096415,"dateAdded":"2018-12-28T04:46:10.680273Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3520026,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"46:25","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5914},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E08.LaFleur-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E08.LaFleur-Bluray-1080p.mkv","size":1732772405,"dateAdded":"2018-12-28T04:47:09.559847Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":393554,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4953242,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5915},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Namaste-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E09.Namaste-Bluray-1080p.mkv","size":1725971459,"dateAdded":"2018-12-28T04:48:09.100598Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":396407,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4918847,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5916},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E10.He's Our You-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E10.He's Our You-Bluray-1080p.mkv","size":1419548620,"dateAdded":"2018-12-28T04:49:20.939935Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":365426,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3952631,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:30","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5917},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Whatever Happened, Happened-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E11.Whatever Happened, Happened-Bluray-1080p.mkv","size":1505342132,"dateAdded":"2018-12-28T04:49:33.253939Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":361470,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4262232,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5918},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Dead Is Dead-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E12.Dead Is Dead-Bluray-1080p.mkv","size":1431929701,"dateAdded":"2018-12-28T04:50:49.407498Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398026,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4013259,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5919},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Some Like It Hoth-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E13.Some Like It Hoth-Bluray-1080p.mkv","size":1476279789,"dateAdded":"2018-12-28T04:51:42.437798Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4150869,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:10","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5920},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E14.The Variable-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E14.The Variable-Bluray-1080p.mkv","size":1415109770,"dateAdded":"2018-12-28T04:52:31.63221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":372407,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3977879,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5921},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Follow the Leader-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E15.Follow the Leader-Bluray-1080p.mkv","size":1483227898,"dateAdded":"2018-12-28T04:53:16.132839Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419080,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4148506,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5922},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E16.The Incident (1)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E16.The Incident (1)-Bluray-1080p.mkv","size":1921439204,"dateAdded":"2018-12-28T04:54:07.564911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":394872,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5274617,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5923},{"seriesId":100,"seasonNumber":5,"relativePath":"Season 05\/S05E17.The Incident (2)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 05\/S05E17.The Incident (2)-Bluray-1080p.mkv","size":1666673027,"dateAdded":"2018-12-28T04:55:08.029063Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399789,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4891631,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5924},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The Beginning of the End-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E01.The Beginning of the End-Bluray-1080p.mkv","size":1820148203,"dateAdded":"2018-12-28T06:12:39.815368Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":456592,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5034449,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5925},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Confirmed Dead-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E02.Confirmed Dead-Bluray-1080p.mkv","size":2514988315,"dateAdded":"2018-12-28T06:13:27.361367Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":456023,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":7292850,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5926},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E03.The Economist-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E03.The Economist-Bluray-1080p.mkv","size":1900433572,"dateAdded":"2018-12-28T06:14:27.641834Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414656,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5446827,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:05","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5927},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Eggtown-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E04.Eggtown-Bluray-1080p.mkv","size":1233831157,"dateAdded":"2018-12-28T06:15:30.38037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":407395,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3391678,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5928},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E05.The Constant-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E05.The Constant-Bluray-1080p.mkv","size":1320403810,"dateAdded":"2018-12-28T06:16:24.719006Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432569,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3511537,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5929},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E06.The Other Woman-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E06.The Other Woman-Bluray-1080p.mkv","size":1477036134,"dateAdded":"2018-12-28T06:17:07.841226Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423931,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4135894,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5930},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Ji Yeon-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E07.Ji Yeon-Bluray-1080p.mkv","size":1328083969,"dateAdded":"2018-12-28T06:18:02.284265Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412804,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3592635,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5931},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Meet Kevin Johnson-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E08.Meet Kevin Johnson-Bluray-1080p.mkv","size":1100689495,"dateAdded":"2018-12-28T06:18:56.835128Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412349,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2971493,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5932},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Shape of Things to Come-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E09.The Shape of Things to Come-Bluray-1080p.mkv","size":1373709063,"dateAdded":"2018-12-28T06:19:20.110264Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":415982,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3849675,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5933},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Something Nice Back Home-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E10.Something Nice Back Home-Bluray-1080p.mkv","size":1427480002,"dateAdded":"2018-12-28T06:20:14.312427Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4003790,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5934},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Cabin Fever-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E11.Cabin Fever-Bluray-1080p.mkv","size":1497240776,"dateAdded":"2018-12-28T06:21:09.011176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434381,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4175476,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:08","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5935},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E12.There's No Place Like Home (1)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E12.There's No Place Like Home (1)-Bluray-1080p.mkv","size":1817056704,"dateAdded":"2018-12-28T06:22:01.062482Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425507,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5195633,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"","subtitles":"English \/ English \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5936},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E13.There's No Place Like Home (2)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E13.There's No Place Like Home (2)-Bluray-1080p.mkv","size":2040487423,"dateAdded":"2018-12-28T06:22:58.972331Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430400,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5925979,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:56","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5937},{"seriesId":100,"seasonNumber":4,"relativePath":"Season 04\/S04E14.There's No Place Like Home (3)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 04\/S04E14.There's No Place Like Home (3)-Bluray-1080p.mkv","size":1692886182,"dateAdded":"2018-12-28T06:23:57.544241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425108,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4675155,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"","subtitles":"English \/ English \/ Danish \/ Danish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5938},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E17.Missing Pieces (1)- The Watch-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E17.Missing Pieces (1)- The Watch-Bluray-1080p.mkv","size":74843634,"dateAdded":"2018-12-28T06:24:54.819933Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":114785,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3752163,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5939},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E18.Missing Pieces (2)- The Adventures of Hurley and Frogurt-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E18.Missing Pieces (2)- The Adventures of Hurley and Frogurt-Bluray-1080p.mkv","size":38955396,"dateAdded":"2018-12-28T06:24:55.827619Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2558784,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5940},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E19.Missing Pieces (3)- King of the Castle-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E19.Missing Pieces (3)- King of the Castle-Bluray-1080p.mkv","size":36795431,"dateAdded":"2018-12-28T06:24:57.36212Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138887,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2238024,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:03","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5941},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E20.Missing Pieces (4)- The Deal-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E20.Missing Pieces (4)- The Deal-Bluray-1080p.mkv","size":29117511,"dateAdded":"2018-12-28T06:24:58.92941Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1175320,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5942},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E21.Missing Pieces (5)- Operation- Sleeper-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E21.Missing Pieces (5)- Operation- Sleeper-Bluray-1080p.mkv","size":18643291,"dateAdded":"2018-12-28T06:25:00.366133Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":678274,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"3:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5943},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E22.Missing Pieces (6)- Room 23-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E22.Missing Pieces (6)- Room 23-Bluray-1080p.mkv","size":14833832,"dateAdded":"2018-12-28T06:25:00.874318Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128675,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1368787,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5944},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E23.Missing Pieces (7)- Arzt & Crafts-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E23.Missing Pieces (7)- Arzt & Crafts-Bluray-1080p.mkv","size":63376644,"dateAdded":"2018-12-28T06:25:01.941246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126880,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3337326,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5945},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E24.Missing Pieces (8)- Buried Secrets-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E24.Missing Pieces (8)- Buried Secrets-Bluray-1080p.mkv","size":83320301,"dateAdded":"2018-12-28T06:25:02.878742Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3159366,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"3:21","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5946},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E25.Missing Pieces (9)- Tropical Depression-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E25.Missing Pieces (9)- Tropical Depression-Bluray-1080p.mkv","size":79386958,"dateAdded":"2018-12-28T06:25:04.728053Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3494563,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5947},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E26.Missing Pieces (10)- Jack, Meet Ethan. Ethan! Jack-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E26.Missing Pieces (10)- Jack, Meet Ethan. Ethan! Jack-Bluray-1080p.mkv","size":51711542,"dateAdded":"2018-12-28T06:25:05.693744Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136547,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2532490,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5948},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E27.Missing Pieces (11)- Jin Has a Temper-Tantrum On the Golf Course-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E27.Missing Pieces (11)- Jin Has a Temper-Tantrum On the Golf Course-Bluray-1080p.mkv","size":43817138,"dateAdded":"2018-12-28T06:25:07.243665Z","releaseGroup":"Tantrum","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":139510,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2544546,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:10","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5949},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E28.Missing Pieces (12)- The Envelope-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E28.Missing Pieces (12)- The Envelope-Bluray-1080p.mkv","size":68050890,"dateAdded":"2018-12-28T06:25:25.648364Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106963,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4480208,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5950},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E29.Missing Pieces (13)- So It Begins-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E29.Missing Pieces (13)- So It Begins-Bluray-1080p.mkv","size":81768138,"dateAdded":"2018-12-28T06:25:49.790544Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5064301,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"2:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5951},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E01.A Tale of Two Cities-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E01.A Tale of Two Cities-Bluray-1080p.mkv","size":1397544319,"dateAdded":"2018-12-29T16:55:34.645023Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":411623,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3738748,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6176},{"seriesId":100,"seasonNumber":0,"relativePath":"Specials\/S00E01.The Journey-Bluray-1080p.mkv","path":"\/tv\/Lost\/Specials\/S00E01.The Journey-Bluray-1080p.mkv","size":4788772,"dateAdded":"2018-12-29T16:56:12.895344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":81722,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":469651,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"1:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6177},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Glass Ballerina-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E02.The Glass Ballerina-Bluray-1080p.mkv","size":1397825263,"dateAdded":"2018-12-29T16:56:14.094536Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426844,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3872509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6178},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Further Instructions-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E03.Further Instructions-Bluray-1080p.mkv","size":1821571677,"dateAdded":"2018-12-29T16:57:06.189331Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":458280,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5304539,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6179},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Every Man for Himself-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E04.Every Man for Himself-Bluray-1080p.mkv","size":1482080360,"dateAdded":"2018-12-29T16:58:08.539865Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436158,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4118774,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6180},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Cost of Living-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E05.The Cost of Living-Bluray-1080p.mkv","size":1371188134,"dateAdded":"2018-12-29T16:59:21.555012Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":419935,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3794721,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6181},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E06.I Do-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E06.I Do-Bluray-1080p.mkv","size":1453384199,"dateAdded":"2018-12-29T17:00:22.3413Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":401521,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3931195,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6182},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Not In Portland-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E07.Not In Portland-Bluray-1080p.mkv","size":1305696532,"dateAdded":"2018-12-29T17:01:18.282326Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":410788,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3599935,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6183},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Flashes Before Your Eyes-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E08.Flashes Before Your Eyes-Bluray-1080p.mkv","size":1367310052,"dateAdded":"2018-12-29T17:02:17.01727Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425978,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3783482,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6184},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Stranger In A Strange Land-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E09.Stranger In A Strange Land-Bluray-1080p.mkv","size":1459973607,"dateAdded":"2018-12-29T17:03:03.416715Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":432293,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4062520,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6185},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Tricia Tanaka is Dead-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E10.Tricia Tanaka is Dead-Bluray-1080p.mkv","size":1602888513,"dateAdded":"2018-12-29T17:03:54.364183Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":442033,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4497609,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6186},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Enter 77-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E11.Enter 77-Bluray-1080p.mkv","size":1427128713,"dateAdded":"2018-12-29T17:04:48.019517Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":412932,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3993021,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6187},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Par Avion-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E12.Par Avion-Bluray-1080p.mkv","size":1614991443,"dateAdded":"2018-12-29T17:05:43.702733Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":424492,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4562414,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6188},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Man From Tallahassee-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E13.The Man From Tallahassee-Bluray-1080p.mkv","size":1008881998,"dateAdded":"2018-12-29T17:06:38.624358Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2709858,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6189},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Expos\u00e9-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E14.Expos\u00e9-Bluray-1080p.mkv","size":1611645093,"dateAdded":"2018-12-29T17:07:23.339703Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":447155,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4482448,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6190},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Left Behind-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E15.Left Behind-Bluray-1080p.mkv","size":1505717648,"dateAdded":"2018-12-29T17:08:19.118911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":433560,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4206965,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6191},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E16.One of Us-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E16.One of Us-Bluray-1080p.mkv","size":1454363701,"dateAdded":"2018-12-29T17:09:06.704441Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437161,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4039177,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6192},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Catch-22-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E17.Catch-22-Bluray-1080p.mkv","size":1715021743,"dateAdded":"2018-12-29T17:09:52.845144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434867,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4961595,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"42:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6193},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E18.D.O.C-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E18.D.O.C-Bluray-1080p.mkv","size":1366230452,"dateAdded":"2018-12-29T17:10:51.338236Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3797112,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:11","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6194},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E19.The Brig-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E19.The Brig-Bluray-1080p.mkv","size":1349081588,"dateAdded":"2018-12-29T17:11:40.286575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":437642,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3712541,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6195},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E20.The Man Behind the Curtain-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E20.The Man Behind the Curtain-Bluray-1080p.mkv","size":1527415705,"dateAdded":"2018-12-29T17:12:32.824758Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429147,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4153995,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:12","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6196},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Greatest Hits-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E21.Greatest Hits-Bluray-1080p.mkv","size":1738469443,"dateAdded":"2018-12-29T17:13:22.697145Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":453709,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4898774,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6197},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Through The Looking Glass (1)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E22.Through The Looking Glass (1)-Bluray-1080p.mkv","size":1492518378,"dateAdded":"2018-12-29T17:14:17.959165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":435797,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4167278,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:09","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6198},{"seriesId":100,"seasonNumber":3,"relativePath":"Season 03\/S03E23.Through The Looking Glass (2)-Bluray-1080p.mkv","path":"\/tv\/Lost\/Season 03\/S03E23.Through The Looking Glass (2)-Bluray-1080p.mkv","size":1560849302,"dateAdded":"2018-12-29T17:15:08.911456Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":423399,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4382133,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"43:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":6199}],"queue":[]},"133":{"series":{"title":"Savage Builds","alternateTitles":[],"sortTitle":"savage builds","status":"continuing","ended":false,"overview":"Adam Savage combines his insatiable curiosity and nearly unparalleled inventiveness as he attempts to build working, innovative items. Each episode will focus on one project as Adam collaborates with notable experts in their fields, friends, colleagues and others.","previousAiring":"2019-07-27T02:45:00Z","network":"Discovery","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/146\/banner.jpg?lastWrite=637100124188148250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d0476fcc70cf.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/146\/poster.jpg?lastWrite=637103155224812490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d01784904c35.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/146\/fanart.jpg?lastWrite=637100124186068280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d0178436c700.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-27T02:45:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":9049029376,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Savage Builds","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":363058,"tvRageId":0,"tvMazeId":41927,"firstAired":"2019-06-14T00:00:00Z","seriesType":"standard","cleanTitle":"savagebuilds","imdbId":"tt10233836","titleSlug":"savage-builds","rootFolderPath":"\/tv\/","genres":["Documentary"],"tags":[],"added":"2019-06-20T07:24:43.718298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":16,"sizeOnDisk":9049029376,"percentOfEpisodes":100.0},"id":146},"episodes":[{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Inside the Episode - Building Iron Man","airDate":"2019-06-14","airDateUtc":"2019-06-15T02:00:00Z","overview":"What's so hard about creating a real-life Iron Man suit? A lot of things - including learning how to 3D print titanium. But in this episode, Adam Savage tells a story about the profound difficulties his team ran into during the suit's assembly.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11570},{"seriesId":146,"episodeFileId":7578,"seasonNumber":1,"episodeNumber":1,"title":"Building Iron Man","airDate":"2019-06-14","airDateUtc":"2019-06-15T02:00:00Z","overview":"Adam Savage teams up with a daredevil inventor to build an authentic Iron Man suit that flies and stops bullets just like Tony Stark's.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11571},{"seriesId":146,"episodeFileId":15064,"seasonNumber":1,"episodeNumber":2,"title":"Wheel of Death","airDate":"2019-06-21","airDateUtc":"2019-06-22T02:00:00Z","overview":"Adam Savage and a NASA engineer team up to build a rocket-propelled experimental superweapon that could have changed the course of World War II, and using cutting-edge tech, they try to make this notorious engineering failure an explosive success.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11572},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Inside the Episode - Wheel of Death","airDate":"2019-06-21","airDateUtc":"2019-06-22T02:00:00Z","overview":"Failure's always an option in Adam Savage's world, right? Right. Here's what was going through Adam's head when his enormous explosive-laden cart (a weapon that the British designed during WWII) didn't work as expected.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11586},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Inside the Episode: Mad Max Melee","airDate":"2019-06-27","airDateUtc":"2019-06-28T02:00:00Z","overview":"Adam Savage and genius inventors team up to build a fleet of junkyard vehicles that look straight out of Mad Max, and using scrapyard materials and wicked-smart engineering, they face off to see whose motorized monster packs the most vicious punch.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11598},{"seriesId":146,"episodeFileId":7636,"seasonNumber":1,"episodeNumber":3,"title":"Mad Max Melee","airDate":"2019-06-28","airDateUtc":"2019-06-29T02:00:00Z","overview":"Adam Savage and genius inventors team up to build a deadly fleet of junkyard vehicles that look straight out of Mad Max, and using scrapyard materials and wicked-smart engineering, they face off to see whose motorized monster packs the most vicious punch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11573},{"seriesId":146,"episodeFileId":7700,"seasonNumber":1,"episodeNumber":4,"title":"Forging Excalibur","airDate":"2019-07-05","airDateUtc":"2019-07-06T02:00:00Z","overview":"Adam Savage and a world-class swordsmith team up to forge King Arthur\u2019s sword Excalibur, and their investigation could reveal if the legendary blade was made from iron brought to earth by an extraterrestrial visitor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11576},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Inside the Episode: Forging Excalibur","airDate":"2019-07-05","airDateUtc":"2019-07-06T02:00:00Z","overview":"Adam Savage and a world-class swordsmith team up to forge King Arthur's sword Excalibur, and their investigation could reveal if the legendary blade was made from iron brought to earth by an extraterrestrial visitor.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11599},{"seriesId":146,"episodeFileId":7710,"seasonNumber":1,"episodeNumber":5,"title":"Nitro Explode-aganza","airDate":"2019-07-12","airDateUtc":"2019-07-13T02:00:00Z","overview":"Adam and a demolition expert team up to test one of the most dangerous and explosive substances on the planet, and cutting-edge science and tech will reveal if nitroglycerine really deserves its notorious reputation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11588},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Inside the Episode: Nitro Explode-aganza","airDate":"2019-07-12","airDateUtc":"2019-07-13T02:00:00Z","overview":"This episode ended as something very different than it was when it began. Adam Savage explains why, and how MythBusters (including the infamous cement truck explosion) figured into its evolution.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11742},{"seriesId":146,"episodeFileId":7780,"seasonNumber":1,"episodeNumber":6,"title":"Hollywood's Deadliest Weapon","airDate":"2019-07-19","airDateUtc":"2019-07-20T02:00:00Z","overview":"Adam Savage teams up with Gary Oldman to build one of Hollywood\u2019s deadliest weapons, the ZF1 Multi-Artillery Gun from The Fifth Element, a weapon so lethal that it features both a rocket launcher and a flamethrower.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11589},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Inside the Episode: Hollywood's Deadliest Weapon","airDate":"2019-07-19","airDateUtc":"2019-07-20T02:00:00Z","overview":"Adam Savage was in his element creating the ZF-1, a device from The Fifth Element which combines six different weapons. But his conversation with Gary Oldman, who played Zorg in the film, was one of his favorite moments.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11743},{"seriesId":146,"episodeFileId":8099,"seasonNumber":1,"episodeNumber":7,"title":"Dogfight Derby","airDate":"2019-07-26","airDateUtc":"2019-07-27T02:00:00Z","overview":"Adam Savage teams up with Peter Jackson to restore a fleet of fighter planes. Using cutting-edge technology, they stage a high-flying dogfight straight out of World War I.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11600},{"seriesId":146,"episodeFileId":8100,"seasonNumber":1,"episodeNumber":8,"title":"Mega Food Fight","airDate":"2019-07-26","airDateUtc":"2019-07-27T02:45:00Z","overview":"Adam Savage teams up with Tory Belleci to stage the world\u2019s most epic food fight. Using the latest science and technology, they build a rapid-fire weapon that turns hot dogs into projectiles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11601},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Inside the Episode: Dogfight Derby","airDate":"2019-07-26","airDateUtc":"2019-07-27T02:00:00Z","overview":"Savage Builds: Dogfight Derby combines WW1 airplanes, laser tag, and world-famous director Peter Jackson. How did this extraordinary episode come together? Adam Savage explains.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11773},{"seriesId":146,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Inside the Episode: Mega Food Fight","airDate":"2019-07-26","airDateUtc":"2019-07-27T02:45:00Z","overview":"Adam Savage was DYING to include a food fight in Savage Builds, but the episode didn't come together until he landed on the PERFECT opponent: his friend and former MythBusters host Tory Belleci. Here's how it felt to film with Tory again.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11774}],"episodeFile":[{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Building Iron Man-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E01.Building Iron Man-WEBDL-720p.mkv","size":1070391532,"dateAdded":"2019-06-20T07:26:29.637492Z","sceneName":"Savage.Builds.S01E01.Building.Iron.Man.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126751,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3271760,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7578},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Mad Max Melee-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E03.Mad Max Melee-WEBDL-720p.mkv","size":1235590712,"dateAdded":"2019-06-29T03:39:29.31621Z","sceneName":"Savage.Builds.S01E03.Mad.Max.Melee.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126729,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3795364,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7636},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Forging Excalibur-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E04.Forging Excalibur-WEBDL-720p.mkv","size":1106525352,"dateAdded":"2019-07-06T03:51:25.293888Z","sceneName":"Savage.Builds.S01E04.Forging.Excalibur.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126745,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3385188,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7700},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Nitro Explode-aganza-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E05.Nitro Explode-aganza-WEBDL-720p.mkv","size":1204257423,"dateAdded":"2019-07-13T04:14:12.488463Z","sceneName":"Savage.Builds.S01E05.Nitro.Explode-aganza.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126710,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3697331,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7710},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Hollywood's Deadliest Weapon-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E06.Hollywood's Deadliest Weapon-WEBDL-720p.mkv","size":1094157789,"dateAdded":"2019-07-21T21:34:04.491967Z","sceneName":"Savage.Builds.S01E06.Hollywoods.Deadliest.Weapon.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126762,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3346126,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7780},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Mega Food Fight-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E07.Mega Food Fight-WEBDL-720p.mkv","size":1105679070,"dateAdded":"2019-07-27T03:15:08.569537Z","sceneName":"Savage.Builds.S01E07.Dogfight.Derby.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126740,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3381889,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8099},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Dogfight Derby-WEBDL-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E08.Dogfight Derby-WEBDL-720p.mkv","size":1062107831,"dateAdded":"2019-07-27T04:01:40.214114Z","sceneName":"Savage.Builds.S01E08.Mega.Food.Fight.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126730,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3244437,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8100},{"seriesId":146,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Wheel of Death-WEBRip-720p.mkv","path":"\/tv\/Savage Builds\/Season 01\/S01E02.Wheel of Death-WEBRip-720p.mkv","size":1170319667,"dateAdded":"2020-07-21T04:41:18.638067Z","sceneName":"Savage.Builds.S01E02.Wheel.of.Death.720p.WEBRip.x264-CAFFEiNE[eztv]","releaseGroup":"CAFFEiNE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126746,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3588164,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15064}],"queue":[]},"134":{"series":{"title":"Mind Field","alternateTitles":[],"sortTitle":"mind field","status":"ended","ended":true,"overview":"In Mind Field, host Michael Stevens brings his passion for science to his most ambitious subject yet: something we still know very little about, human behavior.\r\n\r\nUsing real subjects (including guest stars and Michael himself) Mind Field reveals some of the most mind-blowing, significant, and least-understood aspects of the human psyche.\r\n\r\nThrough expert interviews, rare footage from historical experiments, and brand-new, ground-breaking demonstrations of human nature at work, Mind Field explores the surprising things we know (and don\u2019t know) about why people are the way they are.","previousAiring":"2019-01-16T19:00:00Z","network":"YouTube Premium","airTime":"14:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/116\/banner.jpg?lastWrite=637292170699319230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/322873-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/116\/poster.jpg?lastWrite=637100123915713300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/322873-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/116\/fanart.jpg?lastWrite=637100123911633380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/322873-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":39,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-03-01T19:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6966905511,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-01-03T19:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6485034103,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-01-16T19:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":5156159008,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Mind Field","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":26,"tvdbId":322873,"tvRageId":0,"tvMazeId":24607,"firstAired":"2017-01-18T00:00:00Z","seriesType":"standard","cleanTitle":"mindfield","imdbId":"tt6439562","titleSlug":"mind-field","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Documentary"],"tags":[],"added":"2018-12-16T01:52:10.703987Z","ratings":{"votes":85,"value":8.3},"statistics":{"seasonCount":3,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":63,"sizeOnDisk":18608098622,"percentOfEpisodes":100.0},"id":116},"episodes":[{"seriesId":116,"episodeFileId":5744,"seasonNumber":1,"episodeNumber":1,"title":"Isolation","airDate":"2017-01-18","airDateUtc":"2017-01-18T19:00:00Z","overview":"What happens when your brain is deprived of stimulation? What effect does being cut off from interaction with the outside world have on a person? What effect does it have on me, when I am locked in a windowless, soundproof isolation chamber for three days? In this episode of Mind Field, I take both an objective and a very intimate look at Isolation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":9459},{"seriesId":116,"episodeFileId":5745,"seasonNumber":1,"episodeNumber":2,"title":"Conformity","airDate":"2017-01-18","airDateUtc":"2017-01-18T19:26:00Z","overview":"We are all unique individuals. We follow the beat of our own drum. We wouldn\u2019t throw our own beliefs out the window just to fit in...or would we? In this episode of Mind Field, I demonstrate the strong, human urge to conform, and just how far people will go to fall in with the crowd.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":9460},{"seriesId":116,"episodeFileId":5746,"seasonNumber":1,"episodeNumber":3,"title":"Destruction","airDate":"2017-01-25","airDateUtc":"2017-01-25T19:00:00Z","overview":"We humans love to build, create, and organize. So why do we also love to destroy things? Can violently breaking stuff really help to calm us down, or does it just make us more angry? In this episode of Mind Field, I take a hard look at our urge to destroy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":9461},{"seriesId":116,"episodeFileId":5747,"seasonNumber":1,"episodeNumber":4,"title":"Artificial Intelligence","airDate":"2017-02-01","airDateUtc":"2017-02-01T19:00:00Z","overview":"So you say you love your computer or smartphone...but can it love you back? As we become more dependent on technology, and our technology becomes more lifelike, where does the line between human and computer lie? And what happens when our relationships become romantic? In this episode of Mind Field, I look into Artificial Intelligence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":9462},{"seriesId":116,"episodeFileId":5749,"seasonNumber":1,"episodeNumber":5,"title":"Freedom of Choice","airDate":"2017-02-08","airDateUtc":"2017-02-08T19:00:00Z","overview":"We may value having Freedom of Choice, but are we actually happier when we have limited choices...or even no choice at all? Do we truly have control over our decisions, or are they really predetermined by other forces? My fellow YouTubers and I have our minds read by a \u201cbox\u201d that reveals who - or what - is really calling the shots.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":9463},{"seriesId":116,"episodeFileId":5750,"seasonNumber":1,"episodeNumber":6,"title":"Touch","airDate":"2017-02-15","airDateUtc":"2017-02-15T19:00:00Z","overview":"How much of the sensations we feel is determined by our physical bodies? Maybe our minds play a bigger role than we know. I\u2019ll see if people can be tricked into feeling intense physical pain, even though it\u2019s all in their heads. I\u2019ll also look at a machine that makes it possible for you to tickle yourself, and I\u2019ll show you a weird physical illusion you can do at home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":9464},{"seriesId":116,"episodeFileId":5751,"seasonNumber":1,"episodeNumber":7,"title":"In Your Face","airDate":"2017-02-22","airDateUtc":"2017-02-22T19:00:00Z","overview":"How much do we communicate through facial expressions? Are our expressions affected by our moods, or is it the other way around? And what happens to your ability to relate to others when your facial muscles are frozen by Botox? In this episode of Mind Field, I take a look at what\u2019s In Your Face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":9465},{"seriesId":116,"episodeFileId":5752,"seasonNumber":1,"episodeNumber":8,"title":"Do You Know Yourself?","airDate":"2017-03-01","airDateUtc":"2017-03-01T19:00:00Z","overview":"What makes you, you? If even the most basic parts of you, like your memories or your past, can be forgotten or manipulated, how can you know ever really know who \u201cyou\u201d are? In this episode of Mind Field I look at how well Do You Know Yourself?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":9466},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Grayson Brulte Interview","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:00:00Z","overview":"I get candid with Grayson Brulte, autonomous vehicle expert, as we discuss the potential ethical issues associated with driverless cars.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9431},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Uncut Shaman Song","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:26:00Z","overview":"Watch as a Peruvian Shaman performs his icaro\u2014or healing chant\u2014in its entirety, from my Ayahuasca ceremony.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9432},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"A Few Personal Questions","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:52:00Z","overview":"With just seven days until my Ayahuasca ceremony, I fill out a recommended personality survey\u2014which becomes a little revealing.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9433},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Gail Thomas Interview","airDate":"2017-12-06","airDateUtc":"2017-12-06T20:18:00Z","overview":"I explore how psychedelics can improve mental health in my interview with cancer survivor Gail Thomas, as we discuss her experience in a study involving psilocybin--or mushrooms.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9434},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Digital Drugs","airDate":"2017-12-06","airDateUtc":"2017-12-06T20:44:00Z","overview":"Is there a way to experience the effects of psychedelic drugs without having to ingest anything? Watch as I test out a few of these unconventional audio and visual files to see if their claims are true.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9435},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Uncut False Confession","airDate":"2017-12-06","airDateUtc":"2017-12-06T21:10:00Z","overview":"Expert Melissa Russano elicits a false confession from one of our test subjects in this fascinating, uncut session.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9436},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"False Confession Victim","airDate":"2017-12-06","airDateUtc":"2017-12-06T21:36:00Z","overview":"I sit down with Jeffrey Deskovic, a real-life victim of a false confession conviction.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9437},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"The Human Lab Rat","airDate":"2017-12-06","airDateUtc":"2017-12-06T22:02:00Z","overview":"Check out this extended cut of my challenging experience as a human lab rat in a giant, 60-foot real-world maze.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9438},{"seriesId":116,"episodeFileId":5778,"seasonNumber":2,"episodeNumber":1,"title":"The Greater Good","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:00:00Z","overview":"Would you reroute a train to run over one person to prevent it from running over five others? In the classic \u201cTrolley Problem\u201d survey, most people say they would. But I wanted to test what people would actually do in a real-life situation. In the world\u2019s first realistic simulation of this controversial moral dilemma, unsuspecting subjects will be forced to make what they believe is a life-or-death decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":9467},{"seriesId":116,"episodeFileId":5779,"seasonNumber":2,"episodeNumber":2,"title":"The Psychedelic Experience","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:00:00Z","overview":"Do psychedelic drugs really bring about self-healing and personal enlightenment? New research says they may. In this episode, I travel to the Amazonian jungle of Peru to experience the mind-expanding effects of the psychedelic brew Ayahuasca. I\u2019m joined by Imperial College London\u2019s Head of Psychedelic Research, Dr. Robin Carhart-Harris, who measures the impact of Ayahuasca on my brain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":9468},{"seriesId":116,"episodeFileId":5780,"seasonNumber":2,"episodeNumber":3,"title":"Interrogation","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:00:00Z","overview":"Psychology. Neuroscience. Drugs. All can be tools of interrogation. In this episode, an expert shows me how to coerce unsuspecting subjects into signing false confessions; a police psychologist questions me about my personal life after I am injected with a truth serum; and I match wits against a new brainwave-reading lie-detection method developed at Northwestern University.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":9469},{"seriesId":116,"episodeFileId":5781,"seasonNumber":2,"episodeNumber":4,"title":"Your Brain on Tech","airDate":"2017-12-06","airDateUtc":"2017-12-06T19:00:00Z","overview":"Technology isn\u2019t just changing our lives. It\u2019s literally changing our brains -- and maybe for the better. In this episode, I\u2019m a human lab rat in a groundbreaking study at UC Irvine, where scientists test how playing 3D video games affects my spatial memory. Will 10 days of gaming improve my ability to physically navigate a giant, 60-foot maze? And will an fMRI machine detect any physical changes to my brain?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":9470},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Hero in the Sky","airDate":"2017-12-13","airDateUtc":"2017-12-13T19:00:00Z","overview":"I interview Shirley Dygert, a first time skydiver, and her tandem skydiving instructor, Dave Hartsock, about a treacherous skydive they both miraculously survived.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9439},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Mr. Xtreme","airDate":"2017-12-13","airDateUtc":"2017-12-13T19:26:00Z","overview":"In San Diego, real-life superheroes walk the streets as part of the Xtreme Justice League. I chat with Mr. Xtreme, one of the league\u2019s most visible members, to discuss what it means to be a hero in today\u2019s society.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9440},{"seriesId":116,"episodeFileId":5782,"seasonNumber":2,"episodeNumber":5,"title":"How to Make a Hero","airDate":"2017-12-13","airDateUtc":"2017-12-13T19:00:00Z","overview":"What makes a hero? Dr. Philip Zimbardo, the psychologist behind the infamous Stanford Prison Experiment, now runs seminars to teach everyday people how to be heroes. But can heroism be learned? I put his unsuspecting students into a fake crisis situation to see if they would act heroically. Also, I asked employees to help me run a seemingly dangerous experiment, to see if they would blow the whistle to stop me.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":9471},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Thought Implant","airDate":"2017-12-20","airDateUtc":"2017-12-20T19:00:00Z","overview":"Check out the final stage of our power of suggestion test, where we try to convince our subjects that a brain scanner can implant a number in their minds.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9441},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Sham Acupuncture","airDate":"2017-12-20","airDateUtc":"2017-12-20T19:26:00Z","overview":"I go deeper into accessory-assisted placebos by discussing sham acupuncture\u2014and getting stuck with a few needles in the process.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9442},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Unleashed","airDate":"2017-12-20","airDateUtc":"2017-12-20T19:52:00Z","overview":"I attempt to discuss placebos, but my furry co-star keeps stealing the scene.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9443},{"seriesId":116,"episodeFileId":5783,"seasonNumber":2,"episodeNumber":6,"title":"The Power of Suggestion","airDate":"2017-12-20","airDateUtc":"2017-12-20T19:00:00Z","overview":"Exactly how do placebos work? Researchers believe that, through the power of suggestion, placebos may unleash the power of our own subconscious minds to cure ourselves. I was honored to participate in McGill University\u2019s groundbreaking study of an accessory-assisted placebo. Could a fake, non-functioning \u201cSham Brain Scanner\u201d enable children with ADHD and other neurological conditions to alleviate their own symptoms?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":9472},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Hearing Test","airDate":"2017-12-27","airDateUtc":"2017-12-27T19:00:00Z","overview":"Let\u2019s do a little test. I\u2019ll play two tones and you see if you\u2019re one of the few people who can notice a difference between them.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9444},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"The Musical Savant","airDate":"2017-12-27","airDateUtc":"2017-12-27T19:26:00Z","overview":"Derek Paravicini, a blind, autistic pianist and musical savant, sits down with me at the keyboard and shows off his incredible range of musical styles.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9445},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Dynamic Duet","airDate":"2017-12-27","airDateUtc":"2017-12-27T19:52:00Z","overview":"Jazz pianist Dave O\u2019Brien and his student Derek Paravicini play an impressive piano duet for me.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9446},{"seriesId":116,"episodeFileId":5784,"seasonNumber":2,"episodeNumber":7,"title":"Divergent Minds","airDate":"2017-12-27","airDateUtc":"2017-12-27T19:00:00Z","overview":"Scientists can\u2019t dissect living people\u2019s brains to study their function. But by examining the behavior of people whose brains are atypical (due to stroke, injury, or being born that way), we can learn a lot about all our brains. In this episode, I travel to London to meet a blind, autistic savant with astonishing musical abilities, and I volunteer to have my own brain\u2019s function temporarily disrupted at UCLA\u2019s Neuromodulation Lab.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":9473},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Marcie Bockbrader Interview","airDate":"2018-01-03","airDateUtc":"2018-01-03T19:00:00Z","overview":"Research Physiatrist Marcie Bockbrader talks to me about a brain-computer interface project that is helping a paralyzed man move his arm.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9447},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Sending a Signal","airDate":"2018-01-03","airDateUtc":"2018-01-03T19:26:00Z","overview":"I interview principal research statistician David Friedenberg about his role in analyzing all the data collected in a project aimed at helping a paralyzed man move again.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9448},{"seriesId":116,"episodeFileId":5785,"seasonNumber":2,"episodeNumber":8,"title":"The Electric Brain","airDate":"2018-01-03","airDateUtc":"2018-01-03T19:00:00Z","overview":"Our nervous system is fundamentally electric. We move our arm by sending a signal to the muscles that control it. That means we can bypass our brains and use electricity to control our bodies, or use our minds to control other bodies. In this episode, I explore how we can use electricity and our brains to control cockroaches, move other people\u2019s limbs, restore motion to people who are paralyzed, and even read people\u2019s minds.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9474},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"The Origins of Disgust","airDate":"2018-12-05","airDateUtc":"2018-12-05T19:00:00Z","overview":"With the help of Cecile Sarabian, Dr. Andrew MacIntosh and some fake poop, Michael observes levels of disgust among Japanese Macaques.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9449},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Rock, Paper, Scissors","airDate":"2018-12-05","airDateUtc":"2018-12-05T19:26:00Z","overview":"Kyoto University Ph.D. candidate Jie Gao shares her research involving Chimpanzees and the schoolyard game \u201cRock, Paper, Scissors.\u201d","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9450},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Brains and Language","airDate":"2018-12-05","airDateUtc":"2018-12-05T19:52:00Z","overview":"Michael and Dr. Terrence Deacon discuss the connection between language and the physical brain.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9451},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"The Park PSA","airDate":"2018-12-05","airDateUtc":"2018-12-05T20:18:00Z","overview":"We edited the fake Los Angeles parks PSA from our Moral Licensing demonstration!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9452},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Virtual Dilemmas","airDate":"2018-12-05","airDateUtc":"2018-12-05T20:44:00Z","overview":"Michael wrestles with two moral dilemmas in VR, designed by researchers Dr. Erick Ramirez and Dr. Scott LaBarge.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9453},{"seriesId":116,"episodeFileId":6574,"seasonNumber":3,"episodeNumber":1,"title":"The Cognitive Tradeoff Hypothesis","airDate":"2018-12-05","airDateUtc":"2018-12-05T19:00:00Z","overview":"Humans are the only Earthlings with complex language. But at what cost was that ability acquired? In this episode, I visit Tetsuro Matsuzawa to learn about his influential cognitive tradeoff hypothesis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9475},{"seriesId":116,"episodeFileId":6575,"seasonNumber":3,"episodeNumber":2,"title":"Moral Licensing","airDate":"2018-12-05","airDateUtc":"2018-12-05T19:26:00Z","overview":"How are our moral decisions influenced by factors we\u2019re not aware of? A phenomenon known as Moral Licensing claims that when we do something good, we often subconsciously allow ourselves to then do something bad. In this episode, I take a look at whether those who donate money to charity become more likely to let a kid take the blame for a crime they know they committed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9476},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Coin Toss","airDate":"2018-12-12","airDateUtc":"2018-12-12T19:00:00Z","overview":"Michael uses a series of coin flips and a large group of people to demonstrate the \u201cwisdom of the crowd.\u201d","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9454},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Q & A","airDate":"2018-12-12","airDateUtc":"2018-12-12T19:26:00Z","overview":"Michael recruits local Vsauce fans for his Brain experiment, and fields questions in a Q&A setting.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9455},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Memory Lane","airDate":"2018-12-12","airDateUtc":"2018-12-12T19:52:00Z","overview":"Michael shares memories with his mom, who has saved everything from his childhood - from report cards to his space camp jacket.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9456},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Fast Times at Blue Valley High","airDate":"2018-12-12","airDateUtc":"2018-12-12T20:18:00Z","overview":"Michael takes Dr. Chris Eliasmith on a tour through his high school, including his forensics team\u2019s wall of fame.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9457},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Jelly Bean Experiment","airDate":"2018-12-12","airDateUtc":"2018-12-12T20:44:00Z","overview":"Michael conducts his own version of the famous \u201cjelly bean jar\u201d experiment and reveals the statistical significance of the results.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9458},{"seriesId":116,"episodeFileId":6576,"seasonNumber":3,"episodeNumber":3,"title":"The Stilwell Brain","airDate":"2018-12-12","airDateUtc":"2018-12-12T19:00:00Z","overview":"There are 100 billion individual neurons in the human brain. Working together, they allow us to make sense of, and move through, the world around us. Scientists have built replicas of the human brain with computers, but no one has ever successfully made a brain out of humans. On this episode, I\u2019ll travel back to my hometown of Stilwell, Kansas, and turn it into a working brain!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9477},{"seriesId":116,"episodeFileId":6577,"seasonNumber":3,"episodeNumber":4,"title":"The Stanford Prison Experiment","airDate":"2018-12-19","airDateUtc":"2018-12-19T19:00:00Z","overview":"Normal people can become monsters, given the right situation. That\u2019s the standard narrative of the Stanford Prison Experiment, one of the most famous psychological experiments of all time. But what if the cause of its participants\u2019 cruel behavior wasn\u2019t what we\u2019ve always been told?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9484},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"A Great Performance","airDate":"2018-12-19","airDateUtc":"2018-12-19T19:00:00Z","overview":"Michael learns the true story behind Stanford Prison Experiment guard Dave Eshleman\u2019s \u201cJohn Wayne\u201d moniker.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9497},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Personal Responsibility","airDate":"2018-12-19","airDateUtc":"2018-12-19T19:26:00Z","overview":"Michael learns more about Ben Blum\u2019s cousin Alex and his personal transformation after participating in an armed bank robbery","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":9498},{"seriesId":116,"episodeFileId":6578,"seasonNumber":3,"episodeNumber":5,"title":"Should I Die?","airDate":"2018-12-26","airDateUtc":"2018-12-26T19:00:00Z","overview":"If I could live forever, should I? How does being reminded of our own mortality affect us psychologically? In this episode I speak with mortician and death positivity activist Caitlin Doughty and visit a cryonics facility trying to extend human life indefinitely. Will I take them up on their offer, or will I choose to die?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9508},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"A Death Positive World","airDate":"2018-12-26","airDateUtc":"2018-12-26T19:00:00Z","overview":"Michael meets with Caitlin Doughty and learns about a death-positive culture in Indonesia, where relatives keep their dead loved ones in their homes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10247},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"World Views","airDate":"2018-12-26","airDateUtc":"2018-12-26T19:26:00Z","overview":"Michael meets with psychologists Dr. Jeff Greenberg and Dr. Sheldon Solomon to discuss how death affects our world views.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10248},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"A Frozen Pioneer","airDate":"2018-12-26","airDateUtc":"2018-12-26T19:52:00Z","overview":"Michael visits Alcor life extension and learns about the first person to ever be frozen using cryonics.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10249},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"A Family Affair","airDate":"2018-12-26","airDateUtc":"2018-12-26T20:18:00Z","overview":"Michael visits Alcor life extension and learns about the family behind \u2013 and preserved by \u2013 cryonics.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10250},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Philosophizing About Death","airDate":"2018-12-26","airDateUtc":"2018-12-26T20:44:00Z","overview":"Michael discusses the philosophy of death, and its changing definition, with Dr. Max More, CEO of Alcor life extension.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10251},{"seriesId":116,"episodeFileId":6579,"seasonNumber":3,"episodeNumber":6,"title":"How to Talk to Aliens","airDate":"2019-01-02","airDateUtc":"2019-01-02T19:00:00Z","overview":"If we send messages to outer space, what should they say? And how should they be written? Should we even attempt to make contact with whatever (or whoever) might be out there at all?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9767},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Barnard's Star","airDate":"2019-01-02","airDateUtc":"2019-01-02T19:00:00Z","overview":"Michael and Dr. Douglas Vakoch discuss Barnard\u2019s Star, the closest star to our solar system, within the context of sending messages into space.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10252},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"The Golden Record","airDate":"2019-01-02","airDateUtc":"2019-01-02T19:26:00Z","overview":"Michael and Dr. Steven Vance discuss the famous \u201cGolden Record\u201d, which was sent aboard NASA\u2019s Voyager 1 and 2 spacecraft.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10253},{"seriesId":116,"episodeFileId":6580,"seasonNumber":3,"episodeNumber":7,"title":"Behavior and Belief","airDate":"2019-01-09","airDateUtc":"2019-01-09T19:00:00Z","overview":"How can a lie become true? In this episode, Dr. Aaron Blaisdell and I create a game show that is actually a giant \u201chuman Skinner Box\u201d to observe the formation of superstitious beliefs. And Dr. Samuel Veissi\u00e8re helps me design and perform a placebo reverse exorcism, harnessing the power of belief in both science and religion to convince normal people that a spirit has possessed their bodies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9916},{"seriesId":116,"episodeFileId":6581,"seasonNumber":3,"episodeNumber":8,"title":"Mind Reading","airDate":"2019-01-16","airDateUtc":"2019-01-16T19:00:00Z","overview":"Does mind reading freak you out? I knew you\u2019d say that. On this episode, I\u2019ll explore the science behind real-life mind reading. I\u2019ll visit a researcher who will attempt to reconstruct images from my memory, and travel to Japan to meet with a scientist who is - for the first time ever \u2013 predicting the content of peoples\u2019 dreams.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":9922},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"I Watch 3 Episodes of Mind Field With Our Experts & Researchers","airDate":"2019-10-14","airDateUtc":"2019-10-14T18:00:00Z","overview":"I asked a group of colleagues who worked with me on the series to sit down at Vsauce HQ and watch through three entire episodes. We go behind the scenes, elaborate on topics in the episodes, and dig in to what impact working on Mind Field has had on their current research.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21677},{"seriesId":116,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"What Is The Scariest Thing?","airDate":"2019-10-24","airDateUtc":"2019-10-24T18:00:00Z","overview":"Everyone is scared of something ... but what's the SCARIEST thing? Is it even possible to answer such a question? In this special Michael explores the dark recesses of the mind to learn how fears are born and whether there exists a grand, unifying terror.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14540}],"episodeFile":[{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Isolation-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E01.Isolation-WEBDL-1080p.mkv","size":1076589078,"dateAdded":"2018-12-27T19:37:45.868601Z","sceneName":"Mind.Field.S01E01.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3487907,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"34:45","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5744},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Conformity-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E02.Conformity-WEBDL-1080p.mkv","size":809751414,"dateAdded":"2018-12-27T19:43:05.056431Z","sceneName":"Mind.Field.S01E02.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4021125,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5745},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Destruction-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E03.Destruction-WEBDL-1080p.mkv","size":1090560663,"dateAdded":"2018-12-27T19:46:39.381623Z","sceneName":"Mind.Field.S01E03.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5043900,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:34","scanType":"Progressive","subtitles":"French \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5746},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Artificial Intelligence-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E04.Artificial Intelligence-WEBDL-1080p.mkv","size":691603609,"dateAdded":"2018-12-27T19:50:04.683129Z","sceneName":"Mind.Field.S01E04.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3048239,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:59","scanType":"Progressive","subtitles":"French \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5747},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Freedom of Choice-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E05.Freedom of Choice-WEBDL-1080p.mkv","size":760294259,"dateAdded":"2018-12-27T19:51:40.413778Z","sceneName":"Mind.Field.S01E05.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3878187,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":"French \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5749},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Touch-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E06.Touch-WEBDL-1080p.mkv","size":750708723,"dateAdded":"2018-12-27T19:55:36.781962Z","sceneName":"Mind.Field.S01E06.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3993155,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"French \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5750},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E07.In Your Face-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E07.In Your Face-WEBDL-1080p.mkv","size":846767172,"dateAdded":"2018-12-27T19:58:16.062877Z","sceneName":"Mind.Field.S01E07.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3954389,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:33","scanType":"Progressive","subtitles":"French \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5751},{"seriesId":116,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Do You Know Yourself-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 01\/S01E08.Do You Know Yourself-WEBDL-1080p.mkv","size":940630593,"dateAdded":"2018-12-27T20:01:38.657956Z","sceneName":"Mind.Field.S01E08.1080p.WEBRip.x264-VLAESER","releaseGroup":"VLAESER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4219870,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:47","scanType":"Progressive","subtitles":"French \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5752},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Greater Good-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E01.The Greater Good-WEBDL-1080p.mkv","size":1052954936,"dateAdded":"2018-12-27T21:17:35.062655Z","sceneName":"Mind.Field.S02E01.The.Greater.Good.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"34:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5778},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Psychedelic Experience-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E02.The Psychedelic Experience-WEBDL-1080p.mkv","size":955910322,"dateAdded":"2018-12-27T21:19:04.473229Z","sceneName":"Mind.Field.S02E02.The.Psychedelic.Experience.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"33:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5779},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Interrogation-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E03.Interrogation-WEBDL-1080p.mkv","size":678903685,"dateAdded":"2018-12-27T21:21:30.605271Z","sceneName":"Mind.Field.S02E03.Interrogation.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"32:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5780},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Your Brain on Tech-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E04.Your Brain on Tech-WEBDL-1080p.mkv","size":819577288,"dateAdded":"2018-12-27T21:22:45.965469Z","sceneName":"Mind.Field.S02E04.Your.Brain.On.Tech.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"27:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5781},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E05.How to Make a Hero-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E05.How to Make a Hero-WEBDL-1080p.mkv","size":711338166,"dateAdded":"2018-12-27T21:24:30.978585Z","sceneName":"Mind.Field.S02E05.How.To.Make.A.Hero.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"30:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5782},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Power of Suggestion-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E06.The Power of Suggestion-WEBDL-1080p.mkv","size":784292194,"dateAdded":"2018-12-27T21:24:57.865307Z","sceneName":"Mind.Field.S02E06.The.Power.Of.Suggestion.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"28:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5783},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Divergent Minds-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E07.Divergent Minds-WEBDL-1080p.mkv","size":743222401,"dateAdded":"2018-12-27T21:26:10.934581Z","sceneName":"Mind.Field.S02E07.Divergent.Minds.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"26:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5784},{"seriesId":116,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Electric Brain-WEBDL-1080p.mkv","path":"\/tv\/Mind Field\/Season 02\/S02E08.The Electric Brain-WEBDL-1080p.mkv","size":738835111,"dateAdded":"2018-12-27T21:26:22.275699Z","sceneName":"Mind.Field.S02E08.The.Electric.Brain.1080p.RED.WEBRip.AAC5.1.VP9-BTW","releaseGroup":"BTW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1072","runTime":"27:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5785},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Cognitive Tradeoff Hypothesis-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E01.The Cognitive Tradeoff Hypothesis-WEBDL-1080p.mp4","size":559986885,"dateAdded":"2019-02-01T08:12:46.989964Z","sceneName":"Mind.Field.S03E01.The.Cognitive.Tradeoff.Hypothesis.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2674255,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6574},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Moral Licensing-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E02.Moral Licensing-WEBDL-1080p.mp4","size":640152388,"dateAdded":"2019-02-01T08:12:50.06335Z","sceneName":"Mind.Field.S03E02.Moral.Licensing.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2607483,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:27","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6575},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Stilwell Brain-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E03.The Stilwell Brain-WEBDL-1080p.mp4","size":672441918,"dateAdded":"2019-02-01T08:12:55.969389Z","sceneName":"Mind.Field.S03E03.The.Stilwell.Brain.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2988975,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:31","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6576},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Stanford Prison Experiment-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E04.The Stanford Prison Experiment-WEBDL-1080p.mp4","size":860791282,"dateAdded":"2019-02-01T08:13:19.116098Z","sceneName":"Mind.Field.S03E04.The.Stanford.Prison.Experiment.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2938554,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"34:27","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6577},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Should I Die-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E05.Should I Die-WEBDL-1080p.mp4","size":685843395,"dateAdded":"2019-02-01T08:13:25.423112Z","sceneName":"Mind.Field.S03E05.Should.I.Die.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2550645,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"31:04","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6578},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E06.How to Talk to Aliens-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E06.How to Talk to Aliens-WEBDL-1080p.mp4","size":585073819,"dateAdded":"2019-02-01T08:13:52.12837Z","sceneName":"Mind.Field.S03E06.How.to.Talk.to.Aliens.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2596488,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:06","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6579},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Behavior and Belief-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E07.Behavior and Belief-WEBDL-1080p.mp4","size":653801595,"dateAdded":"2019-02-01T08:13:56.102305Z","sceneName":"Mind.Field.S03E07.Behavior.and.Belief.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2673015,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:26","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6580},{"seriesId":116,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Mind Reading-WEBDL-1080p.mp4","path":"\/tv\/Mind Field\/Season 03\/S03E08.Mind Reading-WEBDL-1080p.mp4","size":498067726,"dateAdded":"2019-02-01T08:14:18.761082Z","sceneName":"Mind.Field.S03E08.Mind.Reading.1080p.WEB-DL.x264-ULT","releaseGroup":"ULT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2577611,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6581}],"queue":[]},"135":{"series":{"title":"Infinity Train","alternateTitles":[],"sortTitle":"infinity train","status":"ended","ended":true,"overview":"Trapped on a mysterious train full of puzzles and perils, a headstrong 12-year-old girl must use her wits to uncover the train\u2019s many secrets \u2013 and hopefully return home. Tulip\u2019s mind-bending journey will find her forging friendships with One-One, a robot with dueling personalities, and Atticus, the canine king of Corginia. But with new surprises awaiting them in every car, will Tulip ever find a way off the train?","previousAiring":"2021-04-15T07:00:00Z","network":"HBO Max","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/150\/banner.jpg?lastWrite=637254301655619070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d4fce483c2ae.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/150\/poster.jpg?lastWrite=637329894515310690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/335425\/posters\/5f3560fd8c5f8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/150\/fanart.jpg?lastWrite=637255601503529250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d4a1c59dc9a4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2020-07-17T07:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":15,"sizeOnDisk":67674007,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-08-09T07:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4240933467,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-01-10T08:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4527894440,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-08-27T07:11:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7346130278,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2021-04-15T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7352665449,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Infinity Train","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":335425,"tvRageId":0,"tvMazeId":39945,"firstAired":"2019-08-05T00:00:00Z","seriesType":"standard","cleanTitle":"infinitytrain","imdbId":"tt8146754","titleSlug":"infinity-train","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Adventure","Animation","Fantasy","Science Fiction"],"tags":[],"added":"2019-07-11T23:05:21.371765Z","ratings":{"votes":26,"value":9.0},"statistics":{"seasonCount":4,"episodeFileCount":42,"episodeCount":42,"totalEpisodeCount":55,"sizeOnDisk":23535297641,"percentOfEpisodes":100.0},"id":150},"episodes":[{"seriesId":150,"episodeFileId":9116,"seasonNumber":0,"episodeNumber":1,"title":"Pilot","airDate":"2016-11-01","airDateUtc":"2016-11-01T07:00:00Z","overview":"Tulip must learn to set her personal interests aside to make her way through a mysterious train and help the king of all corgis save his people.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":11617},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Corginia is for Corgi Lovers Travel Commercial","airDate":"2018-03-07","airDateUtc":"2018-03-07T08:00:00Z","overview":"Live action faux travel commercial advertising the advantages of Corginia tourism.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11618},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"12 Things You Need To Know About Infinity Train","airDate":"2018-03-09","airDateUtc":"2018-03-09T08:00:00Z","overview":"Preview video of Infinity Train facts in anticipation of the show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11619},{"seriesId":150,"episodeFileId":8196,"seasonNumber":1,"episodeNumber":1,"title":"The Grid Car","airDate":"2019-08-05","airDateUtc":"2019-08-05T07:00:00Z","overview":"Tulip, a headstrong 13-year-old girl, finds a mysterious train where every car contains its own universe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11621},{"seriesId":150,"episodeFileId":8186,"seasonNumber":1,"episodeNumber":2,"title":"The Beach Car","airDate":"2019-08-05","airDateUtc":"2019-08-05T07:11:00Z","overview":"Tulip strikes a deal with a cat in an attempt to get home, but is the price worth it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11745},{"seriesId":150,"episodeFileId":8187,"seasonNumber":1,"episodeNumber":3,"title":"The Corgi Car","airDate":"2019-08-06","airDateUtc":"2019-08-06T07:00:00Z","overview":"Tulip and One-One explore a car full of Corgis and face off against a mysterious monster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11746},{"seriesId":150,"episodeFileId":8188,"seasonNumber":1,"episodeNumber":4,"title":"The Crystal Car","airDate":"2019-08-06","airDateUtc":"2019-08-06T07:11:00Z","overview":"Tulip, Atticus and One-One enter a crystal forest car and have to take part in a musical ritual.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11747},{"seriesId":150,"episodeFileId":8189,"seasonNumber":1,"episodeNumber":5,"title":"The Cat's Car","airDate":"2019-08-07","airDateUtc":"2019-08-07T07:00:00Z","overview":"Tulip has to face her past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11748},{"seriesId":150,"episodeFileId":8190,"seasonNumber":1,"episodeNumber":6,"title":"The Unfinished Car","airDate":"2019-08-07","airDateUtc":"2019-08-07T07:11:00Z","overview":"The gang enters an unfinished train car and tries to fix it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11757},{"seriesId":150,"episodeFileId":8191,"seasonNumber":1,"episodeNumber":7,"title":"The Chrome Car","airDate":"2019-08-08","airDateUtc":"2019-08-08T07:00:00Z","overview":"The gang meets a familiar face in a mirrored car.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11758},{"seriesId":150,"episodeFileId":8192,"seasonNumber":1,"episodeNumber":8,"title":"The Ball Pit Car","airDate":"2019-08-08","airDateUtc":"2019-08-08T07:11:00Z","overview":"The gang is confronted by a strange new force on a Ball Pit Car adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11759},{"seriesId":150,"episodeFileId":8193,"seasonNumber":1,"episodeNumber":9,"title":"The Past Car","airDate":"2019-08-09","airDateUtc":"2019-08-09T07:00:00Z","overview":"Tulip takes a risk trusting an old foe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":11760},{"seriesId":150,"episodeFileId":8194,"seasonNumber":1,"episodeNumber":10,"title":"The Engine","airDate":"2019-08-09","airDateUtc":"2019-08-09T07:11:00Z","overview":"Tulip makes it to the front of the train and is faced with a choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":11761},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Green Car","airDate":"2019-10-18","airDateUtc":"2019-10-18T07:00:00Z","overview":"One-One conducts a series of documentaries about the cars of Infinity Train, starting with the Green Car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21420},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Tiny Wizard Car","airDate":"2019-10-18","airDateUtc":"2019-10-18T07:11:00Z","overview":"One-One continues the tour of the Infinity Train with the Tiny Wizard Car","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21421},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The Kaiju Car","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:00:00Z","overview":"One-One obliviously describes the boring \"Inexplicable Earthquakes Car\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14780},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Tech Support Car","airDate":"2019-10-25","airDateUtc":"2019-10-25T07:11:00Z","overview":"While exploring the Beach Side Car, One-One interrupts a Donut Holer support call.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14781},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"The Snow Car","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"One-One revisits the Snow Car where he first met Tulip.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14782},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"The Hill Car","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:11:00Z","overview":"One-One extols the virtues of the tranquil Hill Car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14783},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"The Movie Theater Car","airDate":"2019-11-08","airDateUtc":"2019-11-08T08:00:00Z","overview":"In episode 91XSD of One-One's Infinity Train documentary, we learn the secret of the Movie Theater Car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14784},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"The Cross-Eyed Ducks Car","airDate":"2019-11-08","airDateUtc":"2019-11-08T08:11:00Z","overview":"One-One describes what we missed the first time through the Cross-Eyed Ducks Car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14785},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"The Minecart Car","airDate":"2019-11-15","airDateUtc":"2019-11-15T08:00:00Z","overview":"One-One compares the Minecart Car to a box of chocolates.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14796},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"The Wedding Cake Car","airDate":"2019-11-15","airDateUtc":"2019-11-15T08:11:00Z","overview":"On this most momentous occassion, One-One shares the happiest day in his life in the Wedding Cake Car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14797},{"seriesId":150,"episodeFileId":11191,"seasonNumber":2,"episodeNumber":1,"title":"The Black Market Car","airDate":"2020-01-06","airDateUtc":"2020-01-06T08:00:00Z","overview":"Mirror Tulip tries to create a new life for herself outside the Mirror World.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":15771},{"seriesId":150,"episodeFileId":11193,"seasonNumber":2,"episodeNumber":2,"title":"The Family Tree Car","airDate":"2020-01-06","airDateUtc":"2020-01-06T08:11:00Z","overview":"Mirror Tulip and Jesse climb down a real live family tree.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":15829},{"seriesId":150,"episodeFileId":11194,"seasonNumber":2,"episodeNumber":3,"title":"The Map Car","airDate":"2020-01-07","airDateUtc":"2020-01-07T08:00:00Z","overview":"Mirror Tulip tries to help Jesse get his number down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":15830},{"seriesId":150,"episodeFileId":11217,"seasonNumber":2,"episodeNumber":4,"title":"The Toad Car","airDate":"2020-01-07","airDateUtc":"2020-01-07T08:11:00Z","overview":"Mirror Tulip and Jesse get stuck in a car and face an unusual dilemma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":15831},{"seriesId":150,"episodeFileId":11214,"seasonNumber":2,"episodeNumber":5,"title":"The Parasite Car","airDate":"2020-01-08","airDateUtc":"2020-01-08T08:00:00Z","overview":"Mirror Tulip and Jesse gain an unexpected companion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":15832},{"seriesId":150,"episodeFileId":11213,"seasonNumber":2,"episodeNumber":6,"title":"The Lucky Cat Car","airDate":"2020-01-08","airDateUtc":"2020-01-08T08:11:00Z","overview":"Mirror Tulip and Jesse enter a carnival car and have to compete for the exit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":15833},{"seriesId":150,"episodeFileId":11210,"seasonNumber":2,"episodeNumber":7,"title":"The Mall Car","airDate":"2020-01-09","airDateUtc":"2020-01-09T08:00:00Z","overview":"Someone mysterious invites Jesse and Mirror Tulip into a mall car.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":15834},{"seriesId":150,"episodeFileId":11209,"seasonNumber":2,"episodeNumber":8,"title":"The Wasteland","airDate":"2020-01-09","airDateUtc":"2020-01-09T08:11:00Z","overview":"Mirror Tulip finds herself in the wasteland outside the train.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":15835},{"seriesId":150,"episodeFileId":11226,"seasonNumber":2,"episodeNumber":9,"title":"The Tape Car","airDate":"2020-01-10","airDateUtc":"2020-01-10T08:00:00Z","overview":"Mirror Tulip searches for answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":15836},{"seriesId":150,"episodeFileId":11225,"seasonNumber":2,"episodeNumber":10,"title":"The Number Car","airDate":"2020-01-10","airDateUtc":"2020-01-10T08:11:00Z","overview":"Mirror Tulip fights for her right to make her own choices.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":15837},{"seriesId":150,"episodeFileId":14124,"seasonNumber":0,"episodeNumber":14,"title":"One-One Explains The Train","airDate":"2020-07-17","airDateUtc":"2020-07-17T07:00:00Z","overview":"A promo video of One-One explaining how the train works to the slide deck of various shots from Book 2. Also serves as an announcement promo of Infinity Train being affiliated with HBO Max.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":17046},{"seriesId":150,"episodeFileId":15244,"seasonNumber":3,"episodeNumber":1,"title":"The Musical Car","airDate":"2020-08-13","airDateUtc":"2020-08-13T07:00:00Z","overview":"The kids of The Apex raid a musical car before descending on a village of unsuspecting turtles - but before they can complete their mission, leaders Grace and Simon are separated from the pack under mysterious circumstances.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":18556},{"seriesId":150,"episodeFileId":15245,"seasonNumber":3,"episodeNumber":2,"title":"The Jungle Car","airDate":"2020-08-13","airDateUtc":"2020-08-13T07:00:00Z","overview":"Grace and Simon look on the bright side and hope that this will be like a mini-vacation from their responsibilities as leaders of The Apex.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":19422},{"seriesId":150,"episodeFileId":15241,"seasonNumber":3,"episodeNumber":3,"title":"The Debutante Ball Car","airDate":"2020-08-13","airDateUtc":"2020-08-13T07:00:00Z","overview":"The gang's uneasy alliance is tested by a challenge in their first car together: dancing in a high-stakes octopus debutante ball!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":19423},{"seriesId":150,"episodeFileId":15243,"seasonNumber":3,"episodeNumber":4,"title":"Le Chat Chalet Car","airDate":"2020-08-13","airDateUtc":"2020-08-13T07:00:00Z","overview":"Stuck in a blizzard, the gang seeks shelter in a nearby cabin. But when Simon realizes who's inside, he frantically searches for a way out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":19424},{"seriesId":150,"episodeFileId":15242,"seasonNumber":3,"episodeNumber":5,"title":"The Color Clock Car","airDate":"2020-08-13","airDateUtc":"2020-08-13T07:00:00Z","overview":"A giant, color-changing clock creates a shifting-maze puzzle that the gang has to solve before they can leave the car.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":19425},{"seriesId":150,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Owen Dennis and Madeline Queripel Read Fan Theories","airDate":"2020-08-19","airDateUtc":"2020-08-19T07:00:00Z","overview":"Infinity Train Creator Owen Dennis and Supervising Producer Madeline Queripel dig into some sizzling fan theories!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15561},{"seriesId":150,"episodeFileId":15272,"seasonNumber":3,"episodeNumber":6,"title":"The Campfire Car","airDate":"2020-08-20","airDateUtc":"2020-08-20T07:00:00Z","overview":"The Apex are just a car away! They're almost home! But first they have to make it through a forest full of pinecone camp counselors.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":19426},{"seriesId":150,"episodeFileId":15275,"seasonNumber":3,"episodeNumber":7,"title":"The Canyon of the Golden Winged Snakes Car","airDate":"2020-08-20","airDateUtc":"2020-08-20T07:11:00Z","overview":"The gang finds themselves in a car full of golden winged snakes, but in that dusty landscape a mystery they're unprepared for awaits them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":19427},{"seriesId":150,"episodeFileId":15274,"seasonNumber":3,"episodeNumber":8,"title":"The Hey Ho Whoa Car","airDate":"2020-08-20","airDateUtc":"2020-08-20T07:22:00Z","overview":"In the seemingly innocent Hey Ho Whoa car, a shocking revelation rocks Grace and Simon's world. Will they be able to fix it before The Apex find out?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":19428},{"seriesId":150,"episodeFileId":15410,"seasonNumber":3,"episodeNumber":9,"title":"The Origami Car","airDate":"2020-08-27","airDateUtc":"2020-08-27T07:00:00Z","overview":"The gang is finally ready to meet The Apex again, but keeping secrets has consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":19429},{"seriesId":150,"episodeFileId":15451,"seasonNumber":3,"episodeNumber":10,"title":"The New Apex","airDate":"2020-08-27","airDateUtc":"2020-08-27T07:11:00Z","overview":"The gang reorders The Apex, but what will the new order be?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":19430},{"seriesId":150,"episodeFileId":18065,"seasonNumber":4,"episodeNumber":1,"title":"The Twin Tapes","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"Min and Ryan's lifelong friendship and creative partnership disintegrates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":21012},{"seriesId":150,"episodeFileId":18031,"seasonNumber":4,"episodeNumber":2,"title":"The Iceberg Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"Min and Ryan wake up on the train and meet Kez, a talking, floating concierge bell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":21013},{"seriesId":150,"episodeFileId":18032,"seasonNumber":4,"episodeNumber":3,"title":"The Old West Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"Ryan, Min, and Kez get thrown into an Old West jail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":21014},{"seriesId":150,"episodeFileId":18034,"seasonNumber":4,"episodeNumber":4,"title":"The Pig Baby Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"Ryan, Min, and Kez have to make the perfect dessert for a very fussy baby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":21015},{"seriesId":150,"episodeFileId":18036,"seasonNumber":4,"episodeNumber":5,"title":"The Astro Queue Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"The trio sneaks into a guarded nightclub astro tower.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":21016},{"seriesId":150,"episodeFileId":18025,"seasonNumber":4,"episodeNumber":6,"title":"The Party Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"If they want to move forward, Min and Ryan must play their first show together since splitting up the band.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":21017},{"seriesId":150,"episodeFileId":18026,"seasonNumber":4,"episodeNumber":7,"title":"The Art Gallery Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"The gang needs to escape from a haunted art museum.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":21018},{"seriesId":150,"episodeFileId":18027,"seasonNumber":4,"episodeNumber":8,"title":"The Mega Maze Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"While they accompany Kez to her home, Min and Ryan air their grievances with each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":21019},{"seriesId":150,"episodeFileId":18028,"seasonNumber":4,"episodeNumber":9,"title":"The Castle Car","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"Ryan and Min finally meet Kez's roommate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":21020},{"seriesId":150,"episodeFileId":18029,"seasonNumber":4,"episodeNumber":10,"title":"The Train to Nowhere","airDate":"2021-04-15","airDateUtc":"2021-04-15T07:00:00Z","overview":"Min and Ryan face a final challenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":21021}],"episodeFile":[{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Beach Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E02.The Beach Car-WEBDL-1080p.mkv","size":429389083,"dateAdded":"2019-08-10T13:23:00.732373Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125593,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8186},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Corgi Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E03.The Corgi Car-WEBDL-1080p.mkv","size":424514962,"dateAdded":"2019-08-10T13:23:00.769678Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8187},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Crystal Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E04.The Crystal Car-WEBDL-1080p.mkv","size":423175651,"dateAdded":"2019-08-10T13:23:00.807983Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8188},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Cat's Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E05.The Cat's Car-WEBDL-1080p.mkv","size":420993077,"dateAdded":"2019-08-10T13:23:00.84488Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8189},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Unfinished Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E06.The Unfinished Car-WEBDL-1080p.mkv","size":425799706,"dateAdded":"2019-08-10T13:23:00.886688Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8190},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Chrome Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E07.The Chrome Car-WEBDL-1080p.mkv","size":425406904,"dateAdded":"2019-08-10T13:23:00.932588Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8191},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Ball Pit Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E08.The Ball Pit Car-WEBDL-1080p.mkv","size":422589048,"dateAdded":"2019-08-10T13:23:00.968108Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8192},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Past Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E09.The Past Car-WEBDL-1080p.mkv","size":422329597,"dateAdded":"2019-08-10T13:23:01.005408Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8193},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Engine-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E10.The Engine-WEBDL-1080p.mkv","size":423206486,"dateAdded":"2019-08-10T13:23:01.039248Z","releaseGroup":"JEW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125592,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8194},{"seriesId":150,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Grid Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 01\/S01E01.The Grid Car-WEBDL-1080p.mkv","size":423528953,"dateAdded":"2019-08-12T00:52:34.896562Z","releaseGroup":"WEBDL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125591,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8196},{"seriesId":150,"seasonNumber":0,"relativePath":"Specials\/S00E01.Pilot-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Specials\/S00E01.Pilot-WEBDL-1080p.mkv","size":57328758,"dateAdded":"2019-09-22T02:41:16.128613Z","releaseGroup":"WEBDL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"8:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9116},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Black Market Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E01.The Black Market Car-WEBDL-1080p.mkv","size":450863768,"dateAdded":"2020-01-08T18:55:05.102545Z","sceneName":"Infinity.Train.S02E01.The.Black.Market.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124747,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5186889,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11191},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Family Tree Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E02.The Family Tree Car-WEBDL-1080p.mkv","size":458386573,"dateAdded":"2020-01-09T01:10:40.640336Z","sceneName":"Infinity.Train.S02E02.The.Family.Tree.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125022,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5273963,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11193},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Map Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E03.The Map Car-WEBDL-1080p.mkv","size":443797267,"dateAdded":"2020-01-09T01:12:10.652809Z","sceneName":"Infinity.Train.S02E03.The.Map.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124790,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5102611,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11194},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Wasteland-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E08.The Wasteland-WEBDL-1080p.mkv","size":446746214,"dateAdded":"2020-01-11T00:28:38.597495Z","sceneName":"Infinity.Train.S02E08.The.Wasteland.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125362,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5138688,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11209},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Mall Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E07.The Mall Car-WEBDL-1080p.mkv","size":451011510,"dateAdded":"2020-01-11T00:28:39.589813Z","sceneName":"Infinity.Train.S02E07.The.Mall.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125231,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5186156,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11210},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Lucky Cat Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E06.The Lucky Cat Car-WEBDL-1080p.mkv","size":459037127,"dateAdded":"2020-01-11T01:56:39.685197Z","sceneName":"Infinity.Train.S02E06.The.Lucky.Cat.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125449,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5283189,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11213},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Parasite Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E05.The Parasite Car-WEBDL-1080p.mkv","size":451791105,"dateAdded":"2020-01-11T01:59:39.715922Z","sceneName":"Infinity.Train.S02E05.The.Parasite.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124883,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5195377,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11214},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Toad Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E04.The Toad Car-WEBDL-1080p.mkv","size":456684495,"dateAdded":"2020-01-11T02:04:39.795261Z","sceneName":"Infinity.Train.S02E04.The.Toad.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125008,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5254564,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11217},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Number Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E10.The Number Car-WEBDL-1080p.mkv","size":449808689,"dateAdded":"2020-01-11T18:14:28.055852Z","sceneName":"Infinity.Train.S02E10.The.Number.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125142,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5173384,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11225},{"seriesId":150,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Tape Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 02\/S02E09.The Tape Car-WEBDL-1080p.mkv","size":459767692,"dateAdded":"2020-01-11T18:15:57.984519Z","sceneName":"Infinity.Train.S02E09.The.Tape.Car.1080p.WEB-DL.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5290546,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11226},{"seriesId":150,"seasonNumber":0,"relativePath":"Specials\/S00E14.The Minecart Car-SDTV.mkv","path":"\/tv\/Infinity Train\/Specials\/S00E14.The Minecart Car-SDTV.mkv","size":10345249,"dateAdded":"2020-06-10T02:03:44.495039Z","sceneName":"Infinity.Train.S01E00.The.Train.Documentaries-The.Minecart.Car.480p.x264-mSD[eztv]","releaseGroup":"mSD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1354477,"videoCodec":"x264","videoFps":23.976,"resolution":"640x480","runTime":"1:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14124},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Debutante Ball Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E03.The Debutante Ball Car-WEBDL-1080p.mkv","size":734943791,"dateAdded":"2020-08-13T07:27:30.289165Z","sceneName":"Infinity.Train.S03E03.1080p.WEB.H264-BLACKHAT[rarbg]","releaseGroup":"BLACKHAT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8244230,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15241},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Color Clock Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E05.The Color Clock Car-WEBDL-1080p.mkv","size":734096252,"dateAdded":"2020-08-13T07:29:00.119818Z","sceneName":"Infinity.Train.S03E05.1080p.WEB.H264-BLACKHAT[rarbg]","releaseGroup":"BLACKHAT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8234058,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15242},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Le Chat Chalet Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E04.Le Chat Chalet Car-WEBDL-1080p.mkv","size":734811140,"dateAdded":"2020-08-13T07:29:15.044144Z","sceneName":"Infinity.Train.S03E04.1080p.WEB.H264-BLACKHAT[rarbg]","releaseGroup":"BLACKHAT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8242555,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15243},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Musical Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E01.The Musical Car-WEBDL-1080p.mkv","size":734058218,"dateAdded":"2020-08-13T07:29:29.974436Z","sceneName":"Infinity.Train.S03E01.1080p.WEB.H264-BLACKHAT[rarbg]","releaseGroup":"BLACKHAT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8234141,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15244},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Jungle Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E02.The Jungle Car-WEBDL-1080p.mkv","size":735127588,"dateAdded":"2020-08-13T07:31:00.195539Z","sceneName":"Infinity.Train.S03E02.1080p.WEB.H264-BLACKHAT[rarbg]","releaseGroup":"BLACKHAT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8246543,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15245},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Campfire Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E06.The Campfire Car-WEBDL-1080p.mkv","size":734961985,"dateAdded":"2020-08-20T21:53:14.107637Z","sceneName":"Infinity.Train.S03E06.The.Campfire.Car.1080p.HMAX.WEBRip.DD2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8244868,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15272},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Hey Ho Whoa Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E08.The Hey Ho Whoa Car-WEBDL-1080p.mkv","size":734724139,"dateAdded":"2020-08-20T21:58:28.974448Z","sceneName":"Infinity.Train.S03E08.The.Hey.Ho.Whoa.Car.1080p.HMAX.WEBRip.DD2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8242051,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15274},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Canyon of the Golden Winged Snakes Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E07.The Canyon of the Golden Winged Snakes Car-WEBDL-1080p.mkv","size":734025947,"dateAdded":"2020-08-20T22:00:10.928169Z","sceneName":"Infinity.Train.S03E07.1080p.HMAX.WEBRip.DD2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8233845,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15275},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Origami Car-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E09.The Origami Car-WEBDL-1080p.mkv","size":734769779,"dateAdded":"2020-08-27T16:53:49.045772Z","sceneName":"Infinity.Train.S03E09.The.Origami.Car.1080p.HMAX.WEBRip.DD2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8242638,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15410},{"seriesId":150,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The New Apex-WEBDL-1080p.mkv","path":"\/tv\/Infinity Train\/Season 03\/S03E10.The New Apex-WEBDL-1080p.mkv","size":734611439,"dateAdded":"2020-08-27T18:03:52.329346Z","sceneName":"Infinity.Train.S03E10.The.New.Apex.1080p.HMAX.WEBRip.DD2.0.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8240758,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15451},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E06.The.Party.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E06.The.Party.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":734655057,"dateAdded":"2021-04-15T16:56:59.513341Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18025},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E07.The.Art.Gallery.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E07.The.Art.Gallery.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735291789,"dateAdded":"2021-04-15T16:56:59.616674Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18026},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E08.The.Mega.Maze.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E08.The.Mega.Maze.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735847543,"dateAdded":"2021-04-15T16:56:59.686772Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18027},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E09.The.Castle.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E09.The.Castle.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735224668,"dateAdded":"2021-04-15T16:56:59.751201Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18028},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E10.The.Train.to.Nowhere.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E10.The.Train.to.Nowhere.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":734843904,"dateAdded":"2021-04-15T16:56:59.821029Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18029},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E02.The.Iceberg.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E02.The.Iceberg.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735478743,"dateAdded":"2021-04-15T16:57:43.437753Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18031},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E03.The.Old.West.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E03.The.Old.West.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735076352,"dateAdded":"2021-04-15T16:57:43.544801Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18032},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E04.The.Pig.Baby.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E04.The.Pig.Baby.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735396864,"dateAdded":"2021-04-15T16:58:05.920337Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18034},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E05.The.Astro.Queue.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E05.The.Astro.Queue.Car.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735479353,"dateAdded":"2021-04-15T16:58:26.10433Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18036},{"seriesId":150,"seasonNumber":4,"relativePath":"Season 04\/Infinity.Train.S04E01.The.Twin.Tapes.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","path":"\/tv\/Infinity Train\/Season 04\/Infinity.Train.S04E01.The.Twin.Tapes.1080p.HMAX.WEB-DL.DD2.0.H.264-NTb.mkv","size":735371176,"dateAdded":"2021-04-18T13:38:59.796562Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18065}],"queue":[]},"140":{"series":{"title":"Good Omens","alternateTitles":[],"sortTitle":"good omens","status":"continuing","ended":false,"overview":"The End of the World is coming, which means a fussy Angel and a loose-living Demon who've become overly fond of life on Earth are forced to form an unlikely alliance to stop Armageddon. But they have lost the Antichrist, an 11-year-old boy unaware he's meant to bring upon the end of days, forcing them to embark on an adventure to find him and save the world before it's too late.","previousAiring":"2019-05-30T16:00:00Z","network":"Amazon Prime Video","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/147\/banner.jpg?lastWrite=636968335769165980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c899cdc2b713.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/147\/poster.jpg?lastWrite=636968335770085950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c65fa5e7fa62.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/147\/fanart.jpg?lastWrite=637191504484532590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c65faebc315e.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-30T16:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":28156187676,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Good Omens","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":359569,"tvRageId":0,"tvMazeId":28717,"firstAired":"2019-05-30T00:00:00Z","seriesType":"standard","cleanTitle":"goodomens","imdbId":"tt1869454","titleSlug":"good-omens","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Fantasy","Mini-Series"],"tags":[],"added":"2019-06-22T20:52:55.427091Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":8,"sizeOnDisk":28156187676,"percentOfEpisodes":100.0},"id":147},"episodes":[{"seriesId":147,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"An Inside Look at Good Omens","airDate":"2018-07-20","airDateUtc":"2018-07-20T16:00:00Z","overview":"Go inside the production of Good Omens, a new series based on the beloved book by Terry Pratchett and Neil Gaiman.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11577},{"seriesId":147,"episodeFileId":9866,"seasonNumber":1,"episodeNumber":1,"title":"In the Beginning","airDate":"2019-05-30","airDateUtc":"2019-05-30T16:00:00Z","overview":"In the beginning and eleven years ago, two immortal beings decide that it might not be time to start an Apocalypse.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11578},{"seriesId":147,"episodeFileId":9867,"seasonNumber":1,"episodeNumber":2,"title":"The Book","airDate":"2019-05-30","airDateUtc":"2019-05-30T16:00:00Z","overview":"Having followed the wrong boy for years, Aziraphale and Crowley must now try to locate the whereabouts of real Antichrist. Perhaps the story of Agnes Nutter and her famous prophecies will hold the answer?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11579},{"seriesId":147,"episodeFileId":9868,"seasonNumber":1,"episodeNumber":3,"title":"Hard Times","airDate":"2019-05-30","airDateUtc":"2019-05-30T16:00:00Z","overview":"We follow Aziraphale and Crowley's friendship across the ages. Meanwhile, in the present day, Agnes Nutter's descendant Anathema arrives in Tadfield on her own mission to save the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11580},{"seriesId":147,"episodeFileId":9869,"seasonNumber":1,"episodeNumber":4,"title":"Saturday Morning Funtime","airDate":"2019-05-30","airDateUtc":"2019-05-30T16:00:00Z","overview":"Aziraphale and Crowley's friendship is tested to the limit as their superiors catch up with them. Armageddon starts in earnest, with the Antichrist's powers wreaking havoc across the globe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11581},{"seriesId":147,"episodeFileId":9870,"seasonNumber":1,"episodeNumber":5,"title":"The Doomsday Option","airDate":"2019-05-30","airDateUtc":"2019-05-30T16:00:00Z","overview":"Aziraphale and Crowley race towards Tadfield airbase as they attempt to prevent Adam and the Four Horsemen from beginning the apocalypse. But one has been discorporated and the other is trapped in a flaming motorway. Will they get there in time?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11582},{"seriesId":147,"episodeFileId":9871,"seasonNumber":1,"episodeNumber":6,"title":"The Very Last Day of the Rest of Their Lives","airDate":"2019-05-30","airDateUtc":"2019-05-30T16:00:00Z","overview":"Can Adam, Crowley and Aziraphale work together to fight the powers of Heaven and Hell and prevent the apocalypse? And what fate awaits them if they do? The story reaches its conclusion, and it might just be the end of the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11583},{"seriesId":147,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Good Omens: Lockdown","airDate":"2020-05-01","airDateUtc":"2020-05-01T16:00:00Z","overview":"Made on the 30th Anniversary of the original publication of Good Omens.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17803}],"episodeFile":[{"seriesId":147,"seasonNumber":1,"relativePath":"Season 01\/S01E01.In the Beginning-Bluray-1080p.mkv","path":"\/tv\/Good Omens\/Season 01\/S01E01.In the Beginning-Bluray-1080p.mkv","size":4692302924,"dateAdded":"2019-10-26T00:35:47.354628Z","sceneName":"Good.Omens.S01E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10703000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x816","runTime":"51:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9866},{"seriesId":147,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Book-Bluray-1080p.mkv","path":"\/tv\/Good Omens\/Season 01\/S01E02.The Book-Bluray-1080p.mkv","size":4692951442,"dateAdded":"2019-10-26T00:36:13.08851Z","sceneName":"Good.Omens.S01E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9640000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x816","runTime":"56:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9867},{"seriesId":147,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Hard Times-Bluray-1080p.mkv","path":"\/tv\/Good Omens\/Season 01\/S01E03.Hard Times-Bluray-1080p.mkv","size":4692792949,"dateAdded":"2019-10-26T00:36:38.394271Z","sceneName":"Good.Omens.S01E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9334000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x816","runTime":"57:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9868},{"seriesId":147,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Saturday Morning Funtime-Bluray-1080p.mkv","path":"\/tv\/Good Omens\/Season 01\/S01E04.Saturday Morning Funtime-Bluray-1080p.mkv","size":4691215612,"dateAdded":"2019-10-26T00:37:03.300503Z","sceneName":"Good.Omens.S01E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9620000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x816","runTime":"56:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9869},{"seriesId":147,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Doomsday Option-Bluray-1080p.mkv","path":"\/tv\/Good Omens\/Season 01\/S01E05.The Doomsday Option-Bluray-1080p.mkv","size":4693370198,"dateAdded":"2019-10-26T00:37:25.613406Z","sceneName":"Good.Omens.S01E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10375000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x816","runTime":"52:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9870},{"seriesId":147,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Very Last Day of the Rest of Their Lives-Bluray-1080p.mkv","path":"\/tv\/Good Omens\/Season 01\/S01E06.The Very Last Day of the Rest of Their Lives-Bluray-1080p.mkv","size":4693554551,"dateAdded":"2019-10-26T00:37:53.329846Z","sceneName":"Good.Omens.S01E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10003000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x816","runTime":"54:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9871}],"queue":[]},"141":{"series":{"title":"Girls' Last Tour","alternateTitles":[{"title":"Shoujo Shuumatsu Ryokou","sceneSeasonNumber":-1},{"title":"Shoujo Shuumatsu Ryokou (Girls' Last Tour)","sceneSeasonNumber":-1}],"sortTitle":"girls last tour","status":"ended","ended":true,"overview":"Amid the desolate remains of a once-thriving city, only the rumbling of a motorbike breaks the cold winter silence. Its riders, Chito and Yuuri, are the last survivors in the war-torn city. Scavenging old military sites for food and parts, the two girls explore the wastelands and speculate about the old world to pass the time. Chito and Yuuri each occasionally struggle with the looming solitude, but when they have each other, sharing the weight of being two of the last humans becomes a bit more bearable. Between Yuuri's clumsy excitement and Chito's calm composure, their dark days get a little brighter with shooting practice, new books, and snowball fights on the frozen battlefield.\r\nAmong a scenery of barren landscapes and deserted buildings, it is an uplifting tale of two girls and their quest to find hope in a bleak and dying world.","previousAiring":"2017-12-23T02:30:00Z","network":"YouTube","airTime":"21:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/156\/banner.jpg?lastWrite=637015057239858840","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/332983-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/156\/poster.jpg?lastWrite=637191504514332070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/332983-8.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/156\/fanart.jpg?lastWrite=637191504483612610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/332983-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-12-23T02:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":13875780308,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Girls' Last Tour","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":332983,"tvRageId":0,"tvMazeId":31982,"firstAired":"2017-10-06T00:00:00Z","seriesType":"standard","cleanTitle":"girlslasttour","imdbId":"tt7474942","titleSlug":"girls-last-tour","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Adventure","Animation","Anime","Mystery","Science Fiction","War"],"tags":[],"added":"2019-08-15T22:42:02.214688Z","ratings":{"votes":139,"value":9.8},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":24,"sizeOnDisk":13875780308,"percentOfEpisodes":100.0},"id":156},"episodes":[{"seriesId":156,"episodeFileId":8227,"seasonNumber":1,"episodeNumber":1,"title":"Starry Sky \/ War","airDate":"2017-10-06","airDateUtc":"2017-10-07T01:30:00Z","overview":"Yuuri and Chito make it out of the dark cavern on their Kettenkrad but what will they find on the outside?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11936},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Girls' Weekend Class: 1st Period","airDate":"2017-10-06","airDateUtc":"2017-10-07T01:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11948},{"seriesId":156,"episodeFileId":8232,"seasonNumber":1,"episodeNumber":2,"title":"Bath \/ Journal \/ Laundry","airDate":"2017-10-13","airDateUtc":"2017-10-14T01:30:00Z","overview":"Yuuri and Chito make their way through snow packed plains and begin to freeze. Will they be offered a reprieve from the cold?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11937},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Girls' Weekend Class: 2nd Period","airDate":"2017-10-13","airDateUtc":"2017-10-14T01:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11949},{"seriesId":156,"episodeFileId":8230,"seasonNumber":1,"episodeNumber":3,"title":"Encounter \/ City \/ Streetlights","airDate":"2017-10-20","airDateUtc":"2017-10-21T01:30:00Z","overview":"Yuuri and Chito meet another person after he almost accidentally kills them. Will they help him with his request?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11938},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Girls' Weekend Class: 3rd Period","airDate":"2017-10-20","airDateUtc":"2017-10-21T01:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11950},{"seriesId":156,"episodeFileId":8228,"seasonNumber":1,"episodeNumber":4,"title":"Photograph \/ Temple","airDate":"2017-10-27","airDateUtc":"2017-10-28T01:30:00Z","overview":"Chito and Yuuri are fixated on using their photograph machine, but they can't seem to get it to work. As they travel, they find a long forgotten temple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11939},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Girls' Weekend Class: 4th Period","airDate":"2017-10-27","airDateUtc":"2017-10-28T01:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11951},{"seriesId":156,"episodeFileId":8229,"seasonNumber":1,"episodeNumber":5,"title":"House \/ Nap \/ The Sound of Rain","airDate":"2017-11-03","airDateUtc":"2017-11-04T01:30:00Z","overview":"The girls continue to explore the ruins and they come across a house. Meanwhile, they take a nap which triggers some strange dreams.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11940},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Girls' Weekend Class: 5th Period","airDate":"2017-11-03","airDateUtc":"2017-11-04T01:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11952},{"seriesId":156,"episodeFileId":8223,"seasonNumber":1,"episodeNumber":6,"title":"Accident \/ Technology \/ Takeoff","airDate":"2017-11-10","airDateUtc":"2017-11-11T02:30:00Z","overview":"An odd person with some ambitious goals enters into Chito and Yuuri's journey. She is willing to help them but only if they will help her in return.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11941},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Girls' Weekend Class: 6th Period","airDate":"2017-11-10","airDateUtc":"2017-11-11T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11953},{"seriesId":156,"episodeFileId":9883,"seasonNumber":1,"episodeNumber":7,"title":"Labyrinth \/ Cooking","airDate":"2017-11-17","airDateUtc":"2017-11-18T02:30:00Z","overview":"Stuck in a labyrinth of pipes, the girls struggle to find their way out. Meanwhile, they look to make some food for themselves. What do they come up with?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11942},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Girls' Weekend Class: 7th Period","airDate":"2017-11-17","airDateUtc":"2017-11-18T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11954},{"seriesId":156,"episodeFileId":9882,"seasonNumber":1,"episodeNumber":8,"title":"Memories \/ Spiral \/ Moonlight","airDate":"2017-11-24","airDateUtc":"2017-11-25T02:30:00Z","overview":"The girls continue their journey as they venture into the unknown. With heartfelt conversations, they find out more than they bargained for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11943},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Girls' Weekend Class: 8th Period","airDate":"2017-11-24","airDateUtc":"2017-11-25T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11955},{"seriesId":156,"episodeFileId":9886,"seasonNumber":1,"episodeNumber":9,"title":"Technology \/ Aquarium \/ Life","airDate":"2017-12-01","airDateUtc":"2017-12-02T02:30:00Z","overview":"The girls end up in a new facility where they meet a maintenance robot. With a fish and a lonely robot, they find the meaning of what it means for something to be alive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":11944},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Girls' Weekend Class: 9th Period","airDate":"2017-12-01","airDateUtc":"2017-12-02T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11956},{"seriesId":156,"episodeFileId":9889,"seasonNumber":1,"episodeNumber":10,"title":"Train \/ Wavelength \/ Capture","airDate":"2017-12-08","airDateUtc":"2017-12-09T02:30:00Z","overview":"Yuuri and Chito explore the ruins of an old town and are left puzzled with the little relics that are left behind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":11945},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Girls' Weekend Class: 10th Period","airDate":"2017-12-08","airDateUtc":"2017-12-09T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11957},{"seriesId":156,"episodeFileId":9902,"seasonNumber":1,"episodeNumber":11,"title":"Culture \/ Destruction \/ The Past","airDate":"2017-12-15","airDateUtc":"2017-12-16T02:30:00Z","overview":"As they continue their exploration, the girls run into some interesting creatures, and are left wandering an old weapons facility.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":11946},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Girls' Weekend Class: 11th Period","airDate":"2017-12-15","airDateUtc":"2017-12-16T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11958},{"seriesId":156,"episodeFileId":9985,"seasonNumber":1,"episodeNumber":12,"title":"Connection \/ Friends","airDate":"2017-12-22","airDateUtc":"2017-12-23T02:30:00Z","overview":"The girls discuss their realization of loneliness but still have dreams of getting to the next level with an aspiration of reaching the moon one day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11947},{"seriesId":156,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Girls' Weekend Class: 12th Period","airDate":"2017-12-22","airDateUtc":"2017-12-23T02:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11959}],"episodeFile":[{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Accident + Technology + Takeoff-HDTV-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E06.Accident + Technology + Takeoff-HDTV-1080p.mkv","size":700465033,"dateAdded":"2019-08-15T22:54:31.387428Z","sceneName":"[HorribleSubs] Shoujo Shuumatsu Ryokou - 06 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125374,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3470558,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8223},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Starry Sky + War-HDTV-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E01.Starry Sky + War-HDTV-1080p.mkv","size":884817936,"dateAdded":"2019-08-15T22:57:26.325582Z","sceneName":"[HorribleSubs] Shoujo Shuumatsu Ryokou - 01 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125374,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4476982,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8227},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Photograph + Temple-HDTV-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E04.Photograph + Temple-HDTV-1080p.mkv","size":706882116,"dateAdded":"2019-08-15T22:58:53.653051Z","sceneName":"[HorribleSubs] Shoujo Shuumatsu Ryokou - 04 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125375,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3503868,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8228},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E05.House + Nap + The Sound of Rain-HDTV-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E05.House + Nap + The Sound of Rain-HDTV-1080p.mkv","size":999908480,"dateAdded":"2019-08-15T22:58:56.243952Z","sceneName":"[HorribleSubs] Shoujo Shuumatsu Ryokou - 05 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125374,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5105236,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8229},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Encounter + City + Streetlights-HDTV-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E03.Encounter + City + Streetlights-HDTV-1080p.mkv","size":761670309,"dateAdded":"2019-08-15T22:58:59.338198Z","sceneName":"[HorribleSubs] Shoujo Shuumatsu Ryokou - 03 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125374,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3804701,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8230},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Bath + Journal + Laundry-HDTV-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E02.Bath + Journal + Laundry-HDTV-1080p.mkv","size":953418554,"dateAdded":"2019-08-15T22:59:13.483268Z","sceneName":"[HorribleSubs] Shoujo Shuumatsu Ryokou - 02 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125374,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":" \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4851424,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8232},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Memories + Spiral + Moonlight-Bluray-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E08.Memories + Spiral + Moonlight-Bluray-1080p.mkv","size":1222439300,"dateAdded":"2019-10-29T19:49:42.225873Z","sceneName":"[Diogo4D-Kanade] [BD][1080p] Shoujo Shuumatsu Ryokou - 08 [8E7BB2F1]","releaseGroup":"Diogo4D-Kanade","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1316492,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5524863,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"Portuguese \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9882},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Labyrinth + Cooking-Bluray-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E07.Labyrinth + Cooking-Bluray-1080p.mkv","size":1352369306,"dateAdded":"2019-10-29T19:49:45.827369Z","sceneName":"[Diogo4D-Kanade] [BD][1080p] Shoujo Shuumatsu Ryokou - 07 [B8F5A687]","releaseGroup":"Diogo4D-Kanade","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1330061,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6240161,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9883},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Technology + Aquarium + Life-Bluray-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E09.Technology + Aquarium + Life-Bluray-1080p.mkv","size":1178355045,"dateAdded":"2019-10-31T03:03:40.956471Z","sceneName":"[Diogo4D-Kanade] [BD][1080p] Shoujo Shuumatsu Ryokou - 09 [F8D4F3F7]","releaseGroup":"Diogo4D-Kanade","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1429537,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5164057,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"Portuguese \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9886},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Train + Wavelength + Capture-Bluray-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E10.Train + Wavelength + Capture-Bluray-1080p.mkv","size":1612650742,"dateAdded":"2019-11-01T00:05:01.0279Z","sceneName":"[Diogo4D-Kanade] [BD][1080p] Shoujo Shuumatsu Ryokou - 10 [B6697E44]","releaseGroup":"Diogo4D-Kanade","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1406006,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7626819,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9889},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Culture + Destruction + The Past-Bluray-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E11.Culture + Destruction + The Past-Bluray-1080p.mkv","size":1502296075,"dateAdded":"2019-11-02T15:13:07.584786Z","sceneName":"[Diogo4D-Kanade] [BD][1080p] Shoujo Shuumatsu Ryokou - 11 [236F4327]","releaseGroup":"Diogo4D-Kanade","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1378581,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7036405,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"Portuguese \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9902},{"seriesId":156,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Connection + Friends-Bluray-1080p.mkv","path":"\/tv\/Girls' Last Tour\/Season 01\/S01E12.Connection + Friends-Bluray-1080p.mkv","size":2000507412,"dateAdded":"2019-11-02T22:58:45.18243Z","sceneName":"[Diogo4D-Kanade] [BD][1080p] Shoujo Shuumatsu Ryokou - 12 [D2E4119F]","releaseGroup":"Diogo4D-Kanade","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1322290,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9737372,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:02","scanType":"Progressive","subtitles":"Portuguese \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9985}],"queue":[]},"142":{"series":{"title":"Westworld","alternateTitles":[],"sortTitle":"westworld","status":"continuing","ended":false,"overview":"Westworld is a dark odyssey about the dawn of artificial consciousness and the evolution of sin. Set at the intersection of the near future and the reimagined past, it explores a world in which every human appetite, no matter how noble or depraved, can be indulged.","previousAiring":"2020-05-04T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/142\/banner.jpg?lastWrite=637100124434263680","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/296762-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/142\/poster.jpg?lastWrite=637542633400431930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/296762\/posters\/62088687.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/142\/fanart.jpg?lastWrite=637100124431623730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/296762-7.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-12-05T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":51613828699,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2018-06-25T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":51621269741,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-05-04T01:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":9851106799,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Westworld","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":58,"tvdbId":296762,"tvRageId":0,"tvMazeId":1371,"firstAired":"2016-10-02T00:00:00Z","seriesType":"standard","cleanTitle":"westworld","imdbId":"tt0475784","titleSlug":"westworld","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Drama","Science Fiction","Western"],"tags":[],"added":"2019-05-25T12:43:28.421154Z","ratings":{"votes":3255,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":31,"sizeOnDisk":113086205239,"percentOfEpisodes":100.0},"id":142},"episodes":[{"seriesId":142,"episodeFileId":7502,"seasonNumber":1,"episodeNumber":1,"title":"The Original","airDate":"2016-10-02","airDateUtc":"2016-10-03T01:00:00Z","overview":"The park staff begin to notice strange behavior from the hosts; A mysterious Man in Black roams the park, wreaking havoc.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11235},{"seriesId":142,"episodeFileId":7503,"seasonNumber":1,"episodeNumber":2,"title":"Chestnut","airDate":"2016-10-09","airDateUtc":"2016-10-10T01:00:00Z","overview":"Two guests arrive at the park with different expectations; Maeve's emotions are tweaked; The Man in Black seeks help from a condemned man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11236},{"seriesId":142,"episodeFileId":7504,"seasonNumber":1,"episodeNumber":3,"title":"The Stray","airDate":"2016-10-16","airDateUtc":"2016-10-17T01:00:00Z","overview":"Elsie and Stubbs search for a missing host; Teddy gets a new backstory; Bernard investigates the origins of madness and hallucinations within the hosts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11237},{"seriesId":142,"episodeFileId":7505,"seasonNumber":1,"episodeNumber":4,"title":"Dissonance Theory","airDate":"2016-10-23","airDateUtc":"2016-10-24T01:00:00Z","overview":"Dolores joins William and Logan on a bounty hunt; The Man in Black makes a significant discovery; Ford and Theresa discuss the park's future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11238},{"seriesId":142,"episodeFileId":7506,"seasonNumber":1,"episodeNumber":5,"title":"Contrapasso","airDate":"2016-10-30","airDateUtc":"2016-10-31T01:00:00Z","overview":"Dolores, William and Logan reach Pariah, and are recruited for a dangerous mission; The Man in Black meets an unlikely ally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11239},{"seriesId":142,"episodeFileId":7507,"seasonNumber":1,"episodeNumber":6,"title":"The Adversary","airDate":"2016-11-06","airDateUtc":"2016-11-07T02:00:00Z","overview":"Maeve charms Felix; Elsie discovers evidence that could point to sabotage; Teddy and the Man in Black conflict with a garrison.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11240},{"seriesId":142,"episodeFileId":7508,"seasonNumber":1,"episodeNumber":7,"title":"Trompe L'Oeil","airDate":"2016-11-13","airDateUtc":"2016-11-14T02:00:00Z","overview":"Dolores, William and Lawrence journey into treacherous terrain; Maeve presents her demand; Bernard considers his next move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11241},{"seriesId":142,"episodeFileId":7509,"seasonNumber":1,"episodeNumber":8,"title":"Trace Decay","airDate":"2016-11-20","airDateUtc":"2016-11-21T02:00:00Z","overview":"Bernard struggles with a mandate; Teddy is troubled by dark memories; Maeve looks to change her script.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11242},{"seriesId":142,"episodeFileId":7510,"seasonNumber":1,"episodeNumber":9,"title":"The Well-Tempered Clavier","airDate":"2016-11-27","airDateUtc":"2016-11-28T02:00:00Z","overview":"Dolores and Bernard reconnect with their pasts; Maeve makes a bold proposition to Hector; Teddy finds enlightenment, at a price.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":11243},{"seriesId":142,"episodeFileId":7511,"seasonNumber":1,"episodeNumber":10,"title":"The Bicameral Mind","airDate":"2016-12-04","airDateUtc":"2016-12-05T02:00:00Z","overview":"Ford unveils his bold new narrative; Dolores embraces her identity; Maeve sets her plan in motion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":11244},{"seriesId":142,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"City Slickers in Westworld feat. Billy Crystal","airDate":"2017-02-02","airDateUtc":"2017-02-03T02:00:00Z","overview":"Years after their 'City Slickers' narrative was retired, Westworld hosts Mitch (Billy Crystal) & Phil (Daniel Stern) are still happily driving cattle, however Mitch has started to malfunction and it's up to Stubbs (Luke Hemsworth) to analyze why he has gone off his loop.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11233},{"seriesId":142,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Westworld: The Story So Far","airDate":"2018-04-02","airDateUtc":"2018-04-03T01:00:00Z","overview":"Get up to speed with hit sci-fi drama Westworld. With input from the cast and celebrity superfans, the mysteries of the park are revealed as season two approaches.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11234},{"seriesId":142,"episodeFileId":7492,"seasonNumber":2,"episodeNumber":1,"title":"Journey into Night","airDate":"2018-04-22","airDateUtc":"2018-04-23T01:00:00Z","overview":"The hosts revolt against the guests while searching for a new purpose; Maeve sets out to find her daughter with some unexpected help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":11245},{"seriesId":142,"episodeFileId":7493,"seasonNumber":2,"episodeNumber":2,"title":"Reunion","airDate":"2018-04-29","airDateUtc":"2018-04-30T01:00:00Z","overview":"Dolores remembers she's been to the outside world; William makes a bold business venture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11246},{"seriesId":142,"episodeFileId":7494,"seasonNumber":2,"episodeNumber":3,"title":"Virt\u00f9 e Fortuna","airDate":"2018-05-06","airDateUtc":"2018-05-07T01:00:00Z","overview":"Dolores makes her next move; Charlotte scrambles to protect Delos' most prized asset; Bernard gets closer to the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11247},{"seriesId":142,"episodeFileId":7495,"seasonNumber":2,"episodeNumber":4,"title":"The Riddle of the Sphinx","airDate":"2018-05-13","airDateUtc":"2018-05-14T01:00:00Z","overview":"An enigmatic figure becomes the center of Delos' secret project; The Man in Black and Lawrence follow the path to Las Mudas, but run into trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11248},{"seriesId":142,"episodeFileId":7496,"seasonNumber":2,"episodeNumber":5,"title":"Akane No Mai","airDate":"2018-05-20","airDateUtc":"2018-05-21T01:00:00Z","overview":"Maeve and her allies have revelations in a new world; Dolores makes a decision about Teddy; Karl discovers something sinister about the hosts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":11249},{"seriesId":142,"episodeFileId":7497,"seasonNumber":2,"episodeNumber":6,"title":"Phase Space","airDate":"2018-05-27","airDateUtc":"2018-05-28T01:00:00Z","overview":"Maeve continues her search for her daughter; Dolores calculates her next move; Elsie gets closer to the truth about Delos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":11250},{"seriesId":142,"episodeFileId":7498,"seasonNumber":2,"episodeNumber":7,"title":"Les \u00c9corch\u00e9s","airDate":"2018-06-03","airDateUtc":"2018-06-04T01:00:00Z","overview":"Bernard meets with an unexpected old friend; The Cradle is under threat; Maeve encounters a scene from her past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":11251},{"seriesId":142,"episodeFileId":7499,"seasonNumber":2,"episodeNumber":8,"title":"Kiksuya","airDate":"2018-06-10","airDateUtc":"2018-06-11T01:00:00Z","overview":"The telling of Akecheta and the Ghost Nation's journey to consciousness; Maeve's life hangs in the balance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":11252},{"seriesId":142,"episodeFileId":7500,"seasonNumber":2,"episodeNumber":9,"title":"Vanishing Point","airDate":"2018-06-17","airDateUtc":"2018-06-18T01:00:00Z","overview":"The Man in Black confronts his troubled past; Charlotte forms a plan to kill all the hosts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":11253},{"seriesId":142,"episodeFileId":7501,"seasonNumber":2,"episodeNumber":10,"title":"The Passenger","airDate":"2018-06-24","airDateUtc":"2018-06-25T01:00:00Z","overview":"Everyone converges at the Valley Beyond.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":11254},{"seriesId":142,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Westworld S1: Westworld and The Labs","airDate":"2020-01-01","airDateUtc":"2020-01-02T02:00:00Z","overview":"Jeffrey Wright talks about the distinction between the park and the labs, places that together make up the Westworld theme park.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20165},{"seriesId":142,"episodeFileId":16493,"seasonNumber":3,"episodeNumber":1,"title":"Parce Domine","airDate":"2020-03-15","airDateUtc":"2020-03-16T01:00:00Z","overview":"Dolores sets out to find the architect of the Rehoboam; Bernard tries to blend in; Ex-soldier Caleb tries to find his way in neo-Los Angeles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":17072},{"seriesId":142,"episodeFileId":16494,"seasonNumber":3,"episodeNumber":2,"title":"The Winter Line","airDate":"2020-03-22","airDateUtc":"2020-03-23T01:00:00Z","overview":"Maeve finds herself in a new park and meets a ghost from the past; Bernard makes his way back to Westworld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":17145},{"seriesId":142,"episodeFileId":16495,"seasonNumber":3,"episodeNumber":3,"title":"The Absence of Field","airDate":"2020-03-29","airDateUtc":"2020-03-30T01:00:00Z","overview":"Charlotte grapples with reality; Dolores and Caleb begin to form a key partnership.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":17146},{"seriesId":142,"episodeFileId":16496,"seasonNumber":3,"episodeNumber":4,"title":"The Mother of Exiles","airDate":"2020-04-05","airDateUtc":"2020-04-06T01:00:00Z","overview":"Bernard and Ashley infiltrate a private charity event, while Dolores and Caleb make similar plans; The Man in Black prepares to re-enter society; Maeve comes face to face with an old comrade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":17147},{"seriesId":142,"episodeFileId":16497,"seasonNumber":3,"episodeNumber":5,"title":"Genre","airDate":"2020-04-12","airDateUtc":"2020-04-13T01:00:00Z","overview":"Serac's past is revealed; Dolores pressures Liam for access to Rehoboam; Caleb is dosed with an unusual party drug.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":17148},{"seriesId":142,"episodeFileId":16498,"seasonNumber":3,"episodeNumber":6,"title":"Decoherence","airDate":"2020-04-19","airDateUtc":"2020-04-20T01:00:00Z","overview":"As the world falls into chaos, Serac gains control of Delos, changing Charlotte's plan; Maeve gets one last chance to stop Dolores; William starts his therapy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":17149},{"seriesId":142,"episodeFileId":16499,"seasonNumber":3,"episodeNumber":7,"title":"Passed Pawn","airDate":"2020-04-26","airDateUtc":"2020-04-27T01:00:00Z","overview":"Caleb gets an insight on the true nature of his past; Dolores seeks out Rehoboam's predecessor, while Maeve tracks her down; Bernard, Stubbs, and William escape from all the chaos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":17150},{"seriesId":142,"episodeFileId":16500,"seasonNumber":3,"episodeNumber":8,"title":"Crisis Theory","airDate":"2020-05-03","airDateUtc":"2020-05-04T01:00:00Z","overview":"Dolores' true intentions are revealed; Bernard confronts a ghost from his past; Maeve is conflicted; Serac's voice is dominant; Caleb's role is revealed; and William faces an unexpected villain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":17151}],"episodeFile":[{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Journey Into Night-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E01.Journey Into Night-Bluray-1080p.mkv","size":5866922424,"dateAdded":"2019-05-25T13:59:46.36363Z","sceneName":"Westworld.S02E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9737000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:09:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7492},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Reunion-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E02.Reunion-Bluray-1080p.mkv","size":4693814809,"dateAdded":"2019-05-25T14:00:21.547363Z","sceneName":"Westworld.S02E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9312000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:49","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7493},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Virt\u00f9 e Fortuna-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E03.Virt\u00f9 e Fortuna-Bluray-1080p.mkv","size":4692578695,"dateAdded":"2019-05-25T14:00:51.864582Z","sceneName":"Westworld.S02E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9271000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7494},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Riddle of the Sphinx-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E04.The Riddle of the Sphinx-Bluray-1080p.mkv","size":5865598978,"dateAdded":"2019-05-25T14:01:23.353817Z","sceneName":"Westworld.S02E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9554000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:10:41","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7495},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Akane No Mai-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E05.Akane No Mai-Bluray-1080p.mkv","size":4691720811,"dateAdded":"2019-05-25T14:02:01.793387Z","sceneName":"Westworld.S02E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9197000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:26","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7496},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Phase Space-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E06.Phase Space-Bluray-1080p.mkv","size":4690258465,"dateAdded":"2019-05-25T14:02:34.708514Z","sceneName":"Westworld.S02E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9296000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7497},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Les \u00c9corch\u00e9s-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E07.Les \u00c9corch\u00e9s-Bluray-1080p.mkv","size":4693210492,"dateAdded":"2019-05-25T14:03:05.333641Z","sceneName":"Westworld.S02E07.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9188000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:29","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7498},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Kiksuya-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E08.Kiksuya-Bluray-1080p.mkv","size":4693364280,"dateAdded":"2019-05-25T14:03:39.021718Z","sceneName":"Westworld.S02E08.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9256000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7499},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Vanishing Point-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E09.Vanishing Point-Bluray-1080p.mkv","size":4688968851,"dateAdded":"2019-05-25T14:04:09.888564Z","sceneName":"Westworld.S02E09.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9185000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:29","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7500},{"seriesId":142,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Passenger-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 02\/S02E10.The Passenger-Bluray-1080p.mkv","size":7044831936,"dateAdded":"2019-05-25T14:04:40.793621Z","sceneName":"Westworld.S02E10.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8922000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:30:00","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7501},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Original-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E01.The Original-Bluray-1080p.mkv","size":5867103059,"dateAdded":"2019-05-25T15:35:19.885176Z","sceneName":"Westworld.S01E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9977000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:08:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7502},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Chestnut-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E02.Chestnut-Bluray-1080p.mkv","size":4692730715,"dateAdded":"2019-05-25T15:35:53.988316Z","sceneName":"Westworld.S01E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9170000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7503},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Stray-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E03.The Stray-Bluray-1080p.mkv","size":4690708157,"dateAdded":"2019-05-25T15:36:24.484411Z","sceneName":"Westworld.S01E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9191000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:28","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7504},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Dissonance Theory-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E04.Dissonance Theory-Bluray-1080p.mkv","size":4691630227,"dateAdded":"2019-05-25T15:36:56.002451Z","sceneName":"Westworld.S01E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9170000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7505},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Contrapasso-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E05.Contrapasso-Bluray-1080p.mkv","size":4691624534,"dateAdded":"2019-05-25T15:37:27.192053Z","sceneName":"Westworld.S01E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9551000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7506},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Adversary-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E06.The Adversary-Bluray-1080p.mkv","size":4691921661,"dateAdded":"2019-05-25T15:38:00.087116Z","sceneName":"Westworld.S01E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9422000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7507},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Trompe L'Oeil-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E07.Trompe L'Oeil-Bluray-1080p.mkv","size":4690729315,"dateAdded":"2019-05-25T15:38:31.048422Z","sceneName":"Westworld.S01E07.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9560000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:30","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7508},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Trace Decay-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E08.Trace Decay-Bluray-1080p.mkv","size":4692169905,"dateAdded":"2019-05-25T15:39:03.815448Z","sceneName":"Westworld.S01E08.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9349000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7509},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Well-Tempered Clavier-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E09.The Well-Tempered Clavier-Bluray-1080p.mkv","size":4690927042,"dateAdded":"2019-05-25T15:39:34.255706Z","sceneName":"Westworld.S01E09.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9188000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:28","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7510},{"seriesId":142,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Bicameral Mind-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 01\/S01E10.The Bicameral Mind-Bluray-1080p.mkv","size":8214284084,"dateAdded":"2019-05-25T15:40:03.769038Z","sceneName":"Westworld.S01E10.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10655000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:30:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7511},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Parce Domine-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E01.Parce Domine-Bluray-1080p.mkv","size":1317515451,"dateAdded":"2020-12-03T06:43:16.006504Z","sceneName":"Westworld.S03E01.Parce.Domine.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":459276,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2119382,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:07:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16493},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Winter Line-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E02.The Winter Line-Bluray-1080p.mkv","size":1316721242,"dateAdded":"2020-12-03T06:43:27.294556Z","sceneName":"Westworld.S03E02.The.Winter.Line.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":458778,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2534006,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16494},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Absence of Field-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E03.The Absence of Field-Bluray-1080p.mkv","size":951544394,"dateAdded":"2020-12-03T06:43:41.743713Z","sceneName":"Westworld.S03E03.The.Absence.of.Field.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":446197,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1725786,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16495},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Mother of Exiles-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E04.The Mother of Exiles-Bluray-1080p.mkv","size":991621824,"dateAdded":"2020-12-03T06:43:53.678942Z","sceneName":"Westworld.S03E04.The.Mother.of.Exiles.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448826,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1803690,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16496},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Genre-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E05.Genre-Bluray-1080p.mkv","size":1295694265,"dateAdded":"2020-12-03T06:44:09.050883Z","sceneName":"Westworld.S03E05.Genre.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":460111,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2503191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16497},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Decoherence-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E06.Decoherence-Bluray-1080p.mkv","size":1177368922,"dateAdded":"2020-12-03T06:44:20.879621Z","sceneName":"Westworld.S03E06.Decoherence.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434802,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2260444,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16498},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Passed Pawn-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E07.Passed Pawn-Bluray-1080p.mkv","size":1354774469,"dateAdded":"2020-12-03T06:44:34.287722Z","sceneName":"Westworld.S03E07.Passed.Pawn.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":455860,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2625090,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16499},{"seriesId":142,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Crisis Theory-Bluray-1080p.mkv","path":"\/tv\/Westworld\/Season 03\/S03E08.Crisis Theory-Bluray-1080p.mkv","size":1445866232,"dateAdded":"2020-12-03T06:44:49.58365Z","sceneName":"Westworld.S03E08.Crisis.Theory.1080p.10bit.BluRay.AAC5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":453811,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2073442,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:15:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16500}],"queue":[]},"145":{"series":{"title":"The Boys","alternateTitles":[{"title":"The Boys 2019","seasonNumber":-1}],"sortTitle":"boys","status":"continuing","ended":false,"overview":"In a world where superheroes embrace the darker side of their massive celebrity and fame, a group of vigilantes known informally as \"The Boys\" set out to take down corrupt superheroes with no more than blue collar grit and a willingness to fight dirty.","previousAiring":"2020-10-09T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/162\/banner.jpg?lastWrite=637316457627854180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/355567\/banners\/5f2081dce1c5f.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/162\/poster.jpg?lastWrite=637543065747492530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/355567\/posters\/5ef647bcf3238.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/162\/fanart.jpg?lastWrite=637385820277469980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d1200d70e4fe.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-26T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":48812523626,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-10-09T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":32444638389,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/The Boys","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":355567,"tvRageId":0,"tvMazeId":15299,"firstAired":"2019-07-26T00:00:00Z","seriesType":"standard","cleanTitle":"theboys","imdbId":"tt1190634","titleSlug":"the-boys","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Comedy","Crime"],"tags":[],"added":"2019-08-29T21:07:12.467374Z","ratings":{"votes":27,"value":7.0},"statistics":{"seasonCount":3,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":23,"sizeOnDisk":81257162015,"percentOfEpisodes":100.0},"id":162},"episodes":[{"seriesId":162,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"Payback","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":19918},{"seriesId":162,"episodeFileId":13285,"seasonNumber":1,"episodeNumber":1,"title":"The Name of the Game","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"When a Supe kills the love of his life, A\/V salesman Hughie Campbell teams up with Billy Butcher, a vigilante hell-bent on punishing corrupt Supes -- and Hughie's life will never be the same again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":12453},{"seriesId":162,"episodeFileId":13286,"seasonNumber":1,"episodeNumber":2,"title":"Cherry","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"The Boys get themselves a Superhero, Starlight gets payback, Homelander gets naughty, and a Senator gets naughtier.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":12454},{"seriesId":162,"episodeFileId":13287,"seasonNumber":1,"episodeNumber":3,"title":"Get Some","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"It's the race of the century. A-Train versus Shockwave, vying for the title of World's Fastest Man. Meanwhile, the Boys are reunited and it feels so good.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":12455},{"seriesId":162,"episodeFileId":13288,"seasonNumber":1,"episodeNumber":4,"title":"The Female of the Species","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"On a very special episode of The Boys... an hour of guts, gutterballs, airplane hijackings, madness, ghosts, and one very intriguing Female. Oh, and lots of heart -- both in the sentimental sense, and in the gory literal sense.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":12456},{"seriesId":162,"episodeFileId":13289,"seasonNumber":1,"episodeNumber":5,"title":"Good for the Soul","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"The Boys head to the \"Believe\" Expo to follow a promising lead in their ongoing war against the Supes. There might -- MIGHT -- be a homicidal infant, but you'll have to see for yourself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":12457},{"seriesId":162,"episodeFileId":13290,"seasonNumber":1,"episodeNumber":6,"title":"The Innocents","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"SUPER IN AMERICA (2019). Vought Studios. Genre: Reality. Starring: Homelander, Queen Maeve, Black Noir, The Deep, A-Train, Starlight, Tara Reid, Billy Zane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":12458},{"seriesId":162,"episodeFileId":13291,"seasonNumber":1,"episodeNumber":7,"title":"The Self-Preservation Society","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"Never trust a washed-up Supe -- the Boys learn this lesson the hard way. Meanwhile, Homelander digs into his past, Starlight discovers that love hurts, and if you're ever in Sandusky, Ohio and a girl asks if she can touch your gills, say NO.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":12459},{"seriesId":162,"episodeFileId":13292,"seasonNumber":1,"episodeNumber":8,"title":"You Found Me","airDate":"2019-07-26","airDateUtc":"2019-07-26T04:00:00Z","overview":"Season Finale Time! Questions answered! Secrets revealed! Conflicts... conflicted! Characters exploded! And so much more!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":12460},{"seriesId":162,"episodeFileId":18473,"seasonNumber":2,"episodeNumber":1,"title":"The Big Ride","airDate":"2020-09-04","airDateUtc":"2020-09-04T04:00:00Z","overview":"Season 2! New and improved! Now with 50% more explosive decapitations, terrorists, S&M hookers, cults, and a new pine fresh scent! But wait, there\u2019s more! 2X MORE blood, guts and gore than the other leading brands! This exclusive offer is available only on Amazon Prime Video! Don\u2019t delay! Order now!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":18512},{"seriesId":162,"episodeFileId":18474,"seasonNumber":2,"episodeNumber":2,"title":"Proper Preparation and Planning","airDate":"2020-09-04","airDateUtc":"2020-09-04T05:00:00Z","overview":"The Boys get themselves a Super Terrorist, Starlight gets evidence against Vought, The Deep gets in touch with his feelings, and Homelander gets himself a family (sort of). All that, and a hard-hitting expos\u00e9 on why Super Suits don\u2019t have pockets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":18513},{"seriesId":162,"episodeFileId":18475,"seasonNumber":2,"episodeNumber":3,"title":"Over the Hill with the Swords of a Thousand Men","airDate":"2020-09-04","airDateUtc":"2020-09-04T06:00:00Z","overview":"The Boys take to the high seas to safeguard their prisoner. Homelander plays house, then pushes Ryan over the edge. Starlight is forced to make an impossible choice. Stormfront reveals her true character.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":18514},{"seriesId":162,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Butcher: A Short Film","airDate":"2020-09-10","airDateUtc":"2020-09-10T04:00:00Z","overview":"Butcher relives the past, recalling violence and betrayal on the rough road towards finding his wife Becca.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19719},{"seriesId":162,"episodeFileId":18476,"seasonNumber":2,"episodeNumber":4,"title":"Nothing Like It in the World","airDate":"2020-09-11","airDateUtc":"2020-09-11T04:00:00Z","overview":"Road trip! The Boys head to North Carolina to follow a lead on a mysterious Supe named Liberty. And did you know a person's choice of candy bars might tell you if they're a serial killer? Watch and learn the warning signs! This episode could save your life!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":18515},{"seriesId":162,"episodeFileId":18477,"seasonNumber":2,"episodeNumber":5,"title":"We Gotta Go Now","airDate":"2020-09-18","airDateUtc":"2020-09-18T04:00:00Z","overview":"Butcher has no more intentions to fight with Supes but Black Noir traced his location and found him: what will he do now? Supes are shooting a film named - #Dawn Of The Seven. Homelander is doing what Stormfront told him to do.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":18516},{"seriesId":162,"episodeFileId":18478,"seasonNumber":2,"episodeNumber":6,"title":"The Bloody Doors Off","airDate":"2020-09-25","airDateUtc":"2020-09-25T04:00:00Z","overview":"The Sage Grove Center\u00ae is dedicated to caring for those struggling with mental illness. Our compassionate doctors and counselors provide personalized services to help patients live their best lives. If you or a loved one need help, call the Sage Grove Center today at 1-800-122-8585. A proud subsidiary of Global Wellness Services\u00ae, which is a proud subsidiary of Vought International\u00ae","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":18517},{"seriesId":162,"episodeFileId":18479,"seasonNumber":2,"episodeNumber":7,"title":"Butcher, Baker, Candlestick Maker","airDate":"2020-10-02","airDateUtc":"2020-10-02T04:00:00Z","overview":"Congresswoman Victoria Neuman\u2019s sham Congressional Hearing against Vought takes place in 3 DAYS. Are we going to let her criminalize Superheroes when we need them most? We have to stand up against such blatant partisan politics. Please join fellow Patriotic Americans and send $20 to VOUGHTPROMISE.COM to tell Neuman and her Kangaroo Court Cronies that they won\u2019t win, \u201cNot On Our Watch\u201d\u2122.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":18518},{"seriesId":162,"episodeFileId":18480,"seasonNumber":2,"episodeNumber":8,"title":"What I Know","airDate":"2020-10-09","airDateUtc":"2020-10-09T04:00:00Z","overview":"***SUPER VILLAIN ALERT*** YOU ARE RECEIVING THIS NOTIFICATION FROM THE DEPARTMENT OF HOMELAND SECURITY. A SUPER VILLAIN ALERT HAS BEEN ISSUED FOR YOUR AREA. PLEASE BE VIGILANT AND REPORT ANY SUSPICIOUS PERSONS OR ACTIVITY. IF YOU BELIEVE YOU HAVE SEEN A SUPER VILLAIN, DO NOT APPROACH OR ATTEMPT TO APPREHEND THEM. CONTACT LAW ENFORCEMENT IMMEDIATELY","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":18519},{"seriesId":162,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"'Never Truly Vanish' Music Video","airDate":"2021-06-03","airDateUtc":"2021-06-03T04:00:00Z","overview":"A super Star is born! Watch the WORLD PREMIERE of the new #Starlight music video \u201cNever Truly Vanish\u201d now.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21587},{"seriesId":162,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Vought News Network: Seven on 7 with Cameron Coleman (July 2021)","airDate":"2021-07-07","airDateUtc":"2021-07-07T04:00:00Z","overview":"An update on America's favorite hero, Homelander. Meet the new man: Victoria Neuman announces FBSA hire. Where is Alastair?: Church of the Collective head missing amidst new allegations.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21638},{"seriesId":162,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Vought News Network: Seven on 7 with Cameron Coleman (August 2021)","airDate":"2021-08-07","airDateUtc":"2021-08-07T04:00:00Z","overview":"Is Starlight headed for a supernova? Making Waves: Deep\u2019s bombshell allegations about Church of the Collective. Wall They\u2019ve Got: Homelander fans stand up against super-terrorists.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21667},{"seriesId":162,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"A-Train - Faster (Official Music Video)","airDate":"2021-09-01","airDateUtc":"2021-09-01T04:00:00Z","overview":"\"Faster than the speed of light, watching as your dreams take flight. I think I should stand and fight, then disappear into the night.\u201d","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":22163},{"seriesId":162,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Vought News Network: Seven on 7 with Cameron Coleman (September 2021)","airDate":"2021-09-07","airDateUtc":"2021-09-07T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":22164}],"episodeFile":[{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Name of the Game-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E01.The Name of the Game-Bluray-1080p.mkv","size":6158191087,"dateAdded":"2020-05-10T01:17:08.875519Z","sceneName":"The.Boys.S01E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2201447,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11421408,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"59:58","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13285},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Cherry-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E02.Cherry-Bluray-1080p.mkv","size":6237165370,"dateAdded":"2020-05-10T01:17:56.074911Z","sceneName":"The.Boys.S01E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2168253,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11878272,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"58:54","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13286},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Get Some-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E03.Get Some-Bluray-1080p.mkv","size":5579122987,"dateAdded":"2020-05-10T01:18:57.029153Z","sceneName":"The.Boys.S01E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2190989,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11323226,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"54:46","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13287},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Female of the Species-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E04.The Female of the Species-Bluray-1080p.mkv","size":6238426748,"dateAdded":"2020-05-10T01:19:48.239919Z","sceneName":"The.Boys.S01E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2184987,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12512714,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"56:21","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13288},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Good for the Soul-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E05.Good for the Soul-Bluray-1080p.mkv","size":6116155134,"dateAdded":"2020-05-10T01:20:50.951671Z","sceneName":"The.Boys.S01E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2167707,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11344576,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:00:03","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13289},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Innocents-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E06.The Innocents-Bluray-1080p.mkv","size":6363814875,"dateAdded":"2020-05-10T01:21:52.690478Z","sceneName":"The.Boys.S01E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2139480,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11916057,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:00:02","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13290},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Self-Preservation Society-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E07.The Self-Preservation Society-Bluray-1080p.mkv","size":5639195805,"dateAdded":"2020-05-10T01:22:56.285394Z","sceneName":"The.Boys.S01E07.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2116877,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11194826,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"56:12","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13291},{"seriesId":162,"seasonNumber":1,"relativePath":"Season 01\/S01E08.You Found Me-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 01\/S01E08.You Found Me-Bluray-1080p.mkv","size":6480451620,"dateAdded":"2020-05-10T01:23:52.73492Z","sceneName":"The.Boys.S01E08.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2164327,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10781101,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:06:27","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13292},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Big Ride-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E01.The Big Ride-Bluray-1080p.mkv","size":4064777776,"dateAdded":"2021-06-25T17:02:24.853559Z","sceneName":"The.Boys.S02E01.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2180998,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6386444,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:02:46","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18473},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Proper Preparation and Planning-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E02.Proper Preparation and Planning-Bluray-1080p.mkv","size":3662674895,"dateAdded":"2021-06-25T17:04:45.480686Z","sceneName":"The.Boys.S02E02.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2145174,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6039253,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"59:14","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18474},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Over the Hill with the Swords of a Thousand Men-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E03.Over the Hill with the Swords of a Thousand Men-Bluray-1080p.mkv","size":3704670777,"dateAdded":"2021-06-25T17:06:58.021756Z","sceneName":"The.Boys.S02E03.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2160729,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6242365,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"58:22","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18475},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Nothing Like It in the World-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E04.Nothing Like It in the World-Bluray-1080p.mkv","size":4030475875,"dateAdded":"2021-06-25T17:09:11.450934Z","sceneName":"The.Boys.S02E04.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2144771,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5695110,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:08:00","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18476},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E05.We Gotta Go Now-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E05.We Gotta Go Now-Bluray-1080p.mkv","size":4214614719,"dateAdded":"2021-06-25T17:11:25.261438Z","sceneName":"The.Boys.S02E05.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2157389,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7055267,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:00:35","scanType":"Progressive","subtitles":"English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18477},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Bloody Doors Off-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E06.The Bloody Doors Off-Bluray-1080p.mkv","size":3998960752,"dateAdded":"2021-06-25T17:13:39.020043Z","sceneName":"The.Boys.S02E06.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2164814,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5981513,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:05:00","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18478},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Butcher, Baker, Candlestick Maker-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E07.Butcher, Baker, Candlestick Maker-Bluray-1080p.mkv","size":4214004974,"dateAdded":"2021-06-25T17:15:50.827247Z","sceneName":"The.Boys.S02E07.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2152550,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8120597,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"54:18","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18479},{"seriesId":162,"seasonNumber":2,"relativePath":"Season 02\/S02E08.What I Know-Bluray-1080p.mkv","path":"\/tv\/The Boys\/Season 02\/S02E08.What I Know-Bluray-1080p.mkv","size":4554458621,"dateAdded":"2021-06-25T17:18:09.292938Z","sceneName":"The.Boys.S02E08.1080p.BluRay.x264-BOYS2MEN","releaseGroup":"BOYS2MEN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2155083,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6810471,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:07:15","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ French \/ Dutch"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18480}],"queue":[]},"146":{"series":{"title":"She-Ra and the Princesses of Power","alternateTitles":[{"title":"She-Ra und die Rebellen-Prinzessinnen","seasonNumber":-1}],"sortTitle":"she ra princesses power","status":"ended","ended":true,"overview":"Soldier Adora finds a magic sword \u2014 and her identity as legendary hero She-Ra. She joins the Rebellion, but her best friend stays with the evil Horde.","previousAiring":"2020-05-15T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/153\/banner.jpg?lastWrite=637100124204867940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5beac3c155804.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/153\/poster.jpg?lastWrite=637303014843587520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350399\/posters\/5eb6da3d44e79.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/153\/fanart.jpg?lastWrite=637254735201891590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350399\/backgrounds\/5ec2bda799e58.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-11-13T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9027684586,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-04-26T07:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":5565810583,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-08-02T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":4022878194,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2019-11-05T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9991325107,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2020-05-15T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4660995418,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/She-Ra and the Princesses of Power","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":350399,"tvRageId":0,"tvMazeId":37089,"firstAired":"2018-11-13T00:00:00Z","seriesType":"standard","cleanTitle":"sheraprincessespower","imdbId":"tt7745956","titleSlug":"she-ra-and-the-princesses-of-power","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Action","Adventure","Animation","Children","Comedy","Family","Fantasy","Romance","Science Fiction"],"tags":[],"added":"2019-08-10T01:23:16.096319Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":5,"episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":64,"sizeOnDisk":33268693888,"percentOfEpisodes":100.0},"id":153},"episodes":[{"seriesId":153,"episodeFileId":8172,"seasonNumber":1,"episodeNumber":1,"title":"The Sword (1)","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Sneaking out after a training mission, Horde soldier Adora finds an uncanny sword in the Whispering Woods. Princess Glimmer wants it for the Rebellion.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11830},{"seriesId":153,"episodeFileId":8173,"seasonNumber":1,"episodeNumber":2,"title":"The Sword (2)","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"On the run from a monster, Adora, Glimmer and Bow stumble into an ancient First Ones ruin, while the Shadow Weaver orders Catra to bring Adora back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11831},{"seriesId":153,"episodeFileId":8174,"seasonNumber":1,"episodeNumber":3,"title":"Razz","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Glimmer concocts a plan to introduce Adora to Bright Moon, but it all goes wrong. Adora flees into the woods, where she meets an old woman named Razz.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11832},{"seriesId":153,"episodeFileId":8175,"seasonNumber":1,"episodeNumber":4,"title":"Flowers for She-Ra","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Adora and her friends undertake a relief mission to the besieged kingdom of Plumeria. The Shadow Weaver still wants Catra to bring Adora back","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11833},{"seriesId":153,"episodeFileId":8176,"seasonNumber":1,"episodeNumber":5,"title":"The Sea Gate","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"The squad heads for the water realm of Salineas, ruled by Princess Mermista, but first they need a ship. Catra sets sail with Force captain Scorpia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11834},{"seriesId":153,"episodeFileId":8177,"seasonNumber":1,"episodeNumber":6,"title":"System Failure","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"A recruitment trip to Dryl goes awry thanks to a virus that corrupts Princess Entrapta's robots. When Adora transforms, it infects She-Ra, too.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11835},{"seriesId":153,"episodeFileId":8178,"seasonNumber":1,"episodeNumber":7,"title":"In the Shadows of Mystacor","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Glimmer takes Adora and Bow to the secret sorcerous realm of Mystacor for a vacation, but Adora's nightmares of Shadow Weaver persist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11836},{"seriesId":153,"episodeFileId":8179,"seasonNumber":1,"episodeNumber":8,"title":"Princess Prom","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"It's time for the Princess Prom, hosted by Princess Frosta. Adora wants to recruit her, but friend troubles and unexpected guests get in the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11837},{"seriesId":153,"episodeFileId":8180,"seasonNumber":1,"episodeNumber":9,"title":"No Princess Left Behind","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"With her friends and the sword held prisoner in the Fright Zone, Adora turns to the Princess Alliance for help on a dangerous rescue mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":11838},{"seriesId":153,"episodeFileId":8181,"seasonNumber":1,"episodeNumber":10,"title":"The Beacon","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Everyone blames themselves for Entrapta's loss, but they're wrong about what happened. Glimmer tries to hide the glitches in her powers from her mom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":11839},{"seriesId":153,"episodeFileId":8182,"seasonNumber":1,"episodeNumber":11,"title":"Promise","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Adora enters the First Ones citadel with Catra on her tail. Inside, they're caught in an illusion simulator that brings back painful memories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":11840},{"seriesId":153,"episodeFileId":8183,"seasonNumber":1,"episodeNumber":12,"title":"Light Hope","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Swift Wind comes to Bright Moon, Entrapta decrypts the First Ones data crystal, and Light Hope tells Adora about the history of She-Ra and Etheria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11841},{"seriesId":153,"episodeFileId":8184,"seasonNumber":1,"episodeNumber":13,"title":"The Battle of Bright Moon","airDate":"2018-11-13","airDateUtc":"2018-11-13T08:00:00Z","overview":"Entrapta's plan to weaken the other runestones allows Catra and Scorpia to attack Bright Moon, but Adora and her friends are ready to fight back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11842},{"seriesId":153,"episodeFileId":8165,"seasonNumber":2,"episodeNumber":1,"title":"The Frozen Forest","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"The Horde's bots attack the Woods, but the princesses can't capture one intact. Though Glimmer struggles with leadership, Catra has no such problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11843},{"seriesId":153,"episodeFileId":8166,"seasonNumber":2,"episodeNumber":2,"title":"Ties That Bind","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"Once they realize Entrapta is alive, Bow and Glimmer head to Dryl to rescue her. Light Hope sends Adora and Swift Wind to fix a First Ones installation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11844},{"seriesId":153,"episodeFileId":8167,"seasonNumber":2,"episodeNumber":3,"title":"Signals","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"The squad heads to Alwyn, the Rebellion\u2019s breadbasket: It\u2019s been out of contact, and there are rumors it\u2019s haunted! Entrapta sneaks into Hordak\u2019s lab.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":11845},{"seriesId":153,"episodeFileId":8168,"seasonNumber":2,"episodeNumber":4,"title":"Roll With It","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"Adora and the princesses role-play plans for retaking a Horde fortress. With Scorpia in charge, the defenders face a challenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":11846},{"seriesId":153,"episodeFileId":8169,"seasonNumber":2,"episodeNumber":5,"title":"White Out","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"Catra, Entrapta and Scorpia head to the Northern Reach for First Ones tech. The squad follows with Sea Hawk, who\u2019s having relationship problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":11847},{"seriesId":153,"episodeFileId":8170,"seasonNumber":2,"episodeNumber":6,"title":"Light Spinner","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"An imprisoned Shadow Weaver recalls her past as Light Spinner, a powerful sorcerer who taught Glimmer\u2019s father. Hordak gives Catra a deadline.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":11848},{"seriesId":153,"episodeFileId":8171,"seasonNumber":2,"episodeNumber":7,"title":"Reunion","airDate":"2019-04-26","airDateUtc":"2019-04-26T07:00:00Z","overview":"While Catra searches for Shadow Weaver, Adora and Glimmer follow Bow home and learn that he's been lying to his family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":11849},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Swift Wind Adventures: Unicorn Warrior Training!","airDate":"2019-06-12","airDateUtc":"2019-06-12T07:00:00Z","overview":"Sure, meditation might help someone become a great warrior in time... But have you tried horsey methods?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11825},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Swift Wind Adventures: Arm Wrestling Revenge!","airDate":"2019-06-19","airDateUtc":"2019-06-19T07:00:00Z","overview":"Did someone say Swift Wind?! When Swift Wind finds Sea Hawk bluer than the sea, he takes matters into his own wings!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11826},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Swift Wind Adventures: A Princess Birthday Party!","airDate":"2019-06-26","airDateUtc":"2019-06-26T07:00:00Z","overview":"The only one worse than Adora at coming up with birthday gift ideas is... Swift Wind. Thank goodness he's here to help?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11827},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Swift Wind Adventures: Grounded Glimmer Jailbreak!","airDate":"2019-07-03","airDateUtc":"2019-07-03T07:00:00Z","overview":"Adora and Swift Wind are still learning about new things like... being grounded. They have no idea what that is. Luckily, they are both completely lost and confused together.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11828},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Swift Wind Adventures: Horse Hero Transformation!","airDate":"2019-07-10","airDateUtc":"2019-07-10T07:00:00Z","overview":"Swift Wind has been busy singing songs and righting wrongs. Now it's time for She-Ra to help him become the noble steed of his dreams! Should be easy. With enough apples.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":11829},{"seriesId":153,"episodeFileId":8159,"seasonNumber":3,"episodeNumber":1,"title":"The Price of Power","airDate":"2019-08-02","airDateUtc":"2019-08-02T07:00:00Z","overview":"Shadow Weaver appears in Bright Moon, refusing to speak to anyone but Adora. As Catra awaits punishment, Entrapta pushes Hordak on the portal project.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":11850},{"seriesId":153,"episodeFileId":8160,"seasonNumber":3,"episodeNumber":2,"title":"Huntara","airDate":"2019-08-02","airDateUtc":"2019-08-02T07:00:00Z","overview":"The squad finds the Crimson Waste isn't uninhabited after all. Adora decides to trust Waste leader Huntara, and Hordak tells Entrapta about Horde Prime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":11851},{"seriesId":153,"episodeFileId":8161,"seasonNumber":3,"episodeNumber":3,"title":"Once Upon a Time in the Waste","airDate":"2019-08-02","airDateUtc":"2019-08-02T07:00:00Z","overview":"Catra and Scorpia arrive in the Waste and have no trouble fitting in. Huntara and the squad enter Mara's ship to try to view her message.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":11852},{"seriesId":153,"episodeFileId":8162,"seasonNumber":3,"episodeNumber":4,"title":"Moment of Truth","airDate":"2019-08-02","airDateUtc":"2019-08-02T07:00:00Z","overview":"Glimmer wants to make a raid on the Fright Zone, and her mother isn't willing to help.... but shadow Weaver is. Adora tries to talk to Entrapta.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":11853},{"seriesId":153,"episodeFileId":8163,"seasonNumber":3,"episodeNumber":5,"title":"Remember","airDate":"2019-08-02","airDateUtc":"2019-08-02T07:00:00Z","overview":"Force captain Adora wakes up alongside her best friend Catra. She's convinced something's wrong, but only Scorpia seems to agree.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":11854},{"seriesId":153,"episodeFileId":8164,"seasonNumber":3,"episodeNumber":6,"title":"The Portal","airDate":"2019-08-02","airDateUtc":"2019-08-02T07:00:00Z","overview":"King Micah and Queen Angella are shocked by Adora's story. With time to restore reality running out, Adora turns to Bow and Glimmer for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":11855},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"PRINCESS REBEL RECRUITMENT: Bow Begins the Fight","airDate":"2019-08-29","airDateUtc":"2019-08-29T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12898},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"PRINCESS REBEL RECRUITMENT: Glimmer Wants YOU to Join","airDate":"2019-09-05","airDateUtc":"2019-09-05T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12899},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"PRINCESS REBEL RECRUITMENT: From Adora to She-Ra","airDate":"2019-09-12","airDateUtc":"2019-09-12T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12900},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"PRINCESS REBEL RECRUITMENT: Meditation with Perfuma","airDate":"2019-09-19","airDateUtc":"2019-09-19T07:00:00Z","overview":"Look, there's really not much to it. If you're cool, then you'll join The Rebellion. Case. Closed.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13105},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"PRINCESS REBEL RECRUITMENT: Mermista is the Coolest","airDate":"2019-09-26","airDateUtc":"2019-09-26T07:00:00Z","overview":"Look, there's really not much to it. If you're cool, then you'll join The Rebellion. Case. Closed.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13120},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"PRINCESS REBEL RECRUITMENT: Entrapta Stole Bow's Tracker Pad","airDate":"2019-10-03","airDateUtc":"2019-10-03T07:00:00Z","overview":"Sooo this was supposed to be Volume 6 of Bow's Rebel Recruitment, but somehow Bow's Tracker Pad ended up at the Horde. Now we have this absolutely POINTLESS recording of Entrapta that really has nothing to do with joining The Rebellion (which you still should do).","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13339},{"seriesId":153,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"PRINCESS REBEL RECRUITMENT: Evil Horde","airDate":"2019-10-10","airDateUtc":"2019-10-10T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14611},{"seriesId":153,"episodeFileId":10111,"seasonNumber":4,"episodeNumber":1,"title":"The Coronation","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"The day of Glimmer's coronation arrives, overshadowed by grief. Accompanied by Adora and Bow, she embarks on a quest to find the Chamber of Queens.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13851},{"seriesId":153,"episodeFileId":10112,"seasonNumber":4,"episodeNumber":2,"title":"The Valley of the Lost","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"Glimmer sends Adora, Mermista, Bow and Huntara to retrieve Mara's ship, but the Horde beats them to it. Catra meets Double Trouble, a shapeshifter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14612},{"seriesId":153,"episodeFileId":10113,"seasonNumber":4,"episodeNumber":3,"title":"Flutterina","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"The village of Elberon throws a party for Adora, Bow and Swift Wind. A village girl named Flutterina helps when the Horde springs another trap.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14613},{"seriesId":153,"episodeFileId":10114,"seasonNumber":4,"episodeNumber":4,"title":"Pulse","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"The squad waylays a Horde transport, only to have the tables turn. While Adora hunts for a new pulse bot, Glimmer takes advice from Shadow Weaver.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14614},{"seriesId":153,"episodeFileId":10115,"seasonNumber":4,"episodeNumber":5,"title":"Protocol","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"A spore storm traps the Horde trainees in the Woods and traps Adora in the Crystal Castle, where a damaged Light Hope is forced to reboot herself.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14615},{"seriesId":153,"episodeFileId":10116,"seasonNumber":4,"episodeNumber":6,"title":"Princess Scorpia","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"Catra orders Scorpia to find Entrapta's recordings so Hordak can perfect his experimental technology. Flutterina sows dissent in the squad.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14616},{"seriesId":153,"episodeFileId":10117,"seasonNumber":4,"episodeNumber":7,"title":"Mer-Mysteries","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"After a disastrous mission, Mermista is certain there's a Horde spy in Bright Moon and vows to sleuth them out with her mystery novel experience.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14617},{"seriesId":153,"episodeFileId":10118,"seasonNumber":4,"episodeNumber":8,"title":"Boys' Night Out","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"With tensions rising between Glimmer and Adora and morale at an all-time low, Sea Hawk, Bow and Swift Wind go out for some fun. Things get out of hand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14618},{"seriesId":153,"episodeFileId":10119,"seasonNumber":4,"episodeNumber":9,"title":"Hero","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"Razz confuses the past and the present and has trouble telling Mara and Adora apart. But Adora desperately needs her help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14619},{"seriesId":153,"episodeFileId":10120,"seasonNumber":4,"episodeNumber":10,"title":"Fractures","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"The Princess Alliance is split on whether to use the magic at the Heart of Etheria or try to destroy it. Scorpia arrives with a request for help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14620},{"seriesId":153,"episodeFileId":10121,"seasonNumber":4,"episodeNumber":11,"title":"Beast Island","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"Adora, Bow and Swift Wind arrive on Beast Island and make a shocking discovery. Glimmer heads to the Crystal Castle to talk to Light Hope.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14621},{"seriesId":153,"episodeFileId":10122,"seasonNumber":4,"episodeNumber":12,"title":"Destiny (1)","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"Glimmer tries to convince Scorpia to reconnect with her runestone. On Beast Island, Entrapta reveals dire new details about the Heart of Etheria.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14622},{"seriesId":153,"episodeFileId":10123,"seasonNumber":4,"episodeNumber":13,"title":"Destiny (2)","airDate":"2019-11-05","airDateUtc":"2019-11-05T08:00:00Z","overview":"Catra and Hordak fight one another as Glimmer and Scorpia arrive in the Fright Zone. Adora sets off in a last-ditch attempt to stop Light Hope's plan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14623},{"seriesId":153,"episodeFileId":13816,"seasonNumber":5,"episodeNumber":1,"title":"Horde Prime","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"Adora, Micah and the princesses search for a way to fight back and to rescue Glimmer. On Horde Prime's flagship, Catra schemes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17328},{"seriesId":153,"episodeFileId":13817,"seasonNumber":5,"episodeNumber":2,"title":"Launch","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"While Adora takes a much-needed rest, Mermista reluctantly leads the princesses into the Fright Zone so Entrapta can try to trace Horde Prime's signal.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17827},{"seriesId":153,"episodeFileId":13818,"seasonNumber":5,"episodeNumber":3,"title":"Corridors","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"As Bow, Entrapta and Adora attempt to keep Mara's ship functional, Horde Prime orders Catra to betray Glimmer \u2013 under threat of a memory wipe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17828},{"seriesId":153,"episodeFileId":13819,"seasonNumber":5,"episodeNumber":4,"title":"Stranded","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"Forced to land on a desolate planet to replenish the ship's fuel crystals, Adora meets three siblings on the run from Horde Prime.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17829},{"seriesId":153,"episodeFileId":13820,"seasonNumber":5,"episodeNumber":5,"title":"Save the Cat","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"Adora surrenders herself to Horde Prime, hoping to buy time for Entrapta, Bow and Glimmer to rescue Catra and hack Horde Prime's server.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17830},{"seriesId":153,"episodeFileId":13821,"seasonNumber":5,"episodeNumber":6,"title":"Taking Control","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"The team tries to keep the ship working and evade Horde Prime's pursuit. On Etheria, Micah struggles to relate to Frosta during a mission to Elberon.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17831},{"seriesId":153,"episodeFileId":13822,"seasonNumber":5,"episodeNumber":7,"title":"Perils of Peekablue","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"Mermista, Scorpia, Perfuma and Sea Hawk go undercover underwater to recruit Prince Peekablue. Netossa notices that Spinnerella is acting strange.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17832},{"seriesId":153,"episodeFileId":13823,"seasonNumber":5,"episodeNumber":8,"title":"Shot in the Dark","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"The squad heads to the planet Krytis to find a way to get past Horde Prime's blockade on Etheria. Shadow Weaver appeals to Castaspella for help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17833},{"seriesId":153,"episodeFileId":13824,"seasonNumber":5,"episodeNumber":9,"title":"An Ill Wind","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"While Wrong Hordak's message of dissent spreads throughout the empire, the squad infiltrates the town of Erelandia to get a lead on their friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17834},{"seriesId":153,"episodeFileId":13825,"seasonNumber":5,"episodeNumber":10,"title":"Return to the Fright Zone","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"Adora, Catra, Perfuma and Netossa reenter the Fright Zone to rescue Scorpia while Bow and Glimmer head to the library to check on Bow's dads.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17835},{"seriesId":153,"episodeFileId":13826,"seasonNumber":5,"episodeNumber":11,"title":"Failsafe","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"A strike team infiltrates Mystacor, searching for the Heart's failsafe, the Crystal of Arxia. Entrapta and Swift Wind gather data on the chip network.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17836},{"seriesId":153,"episodeFileId":13827,"seasonNumber":5,"episodeNumber":12,"title":"Heart (1)","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"The best friend squad heads for the Heart while the princesses attack the spire so Entrapta can disrupt the chip network. Horde Prime makes his move.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17837},{"seriesId":153,"episodeFileId":13828,"seasonNumber":5,"episodeNumber":13,"title":"Heart (2)","airDate":"2020-05-15","airDateUtc":"2020-05-15T07:00:00Z","overview":"Shadow Weaver and Catra attempt to reach Adora. Glimmer faces her father while Bow tries to evade Scorpia long enough to execute Entrapta's program.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17838}],"episodeFile":[{"seriesId":153,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Price of Power-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 03\/S03E01.The Price of Power-WEBDL-1080p.mkv","size":598482714,"dateAdded":"2019-08-10T01:27:24.303861Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S03E01.The.Price.of.Power.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8159},{"seriesId":153,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Huntara-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 03\/S03E02.Huntara-WEBDL-1080p.mkv","size":620934180,"dateAdded":"2019-08-10T01:27:25.902346Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S03E02.Huntara.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8160},{"seriesId":153,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Once Upon a Time in the Waste-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 03\/S03E03.Once Upon a Time in the Waste-WEBDL-1080p.mkv","size":645899108,"dateAdded":"2019-08-10T01:27:29.527416Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S03E03.Once.Upon.a.Time.in.the.Waste.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8161},{"seriesId":153,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Moment of Truth-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 03\/S03E04.Moment of Truth-WEBDL-1080p.mkv","size":672318247,"dateAdded":"2019-08-10T01:27:31.528573Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S03E04.Moment.of.Truth.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8162},{"seriesId":153,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Remember-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 03\/S03E05.Remember-WEBDL-1080p.mkv","size":757146140,"dateAdded":"2019-08-10T01:27:36.487778Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S03E05.Remember.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8163},{"seriesId":153,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Portal-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 03\/S03E06.The Portal-WEBDL-1080p.mkv","size":728097805,"dateAdded":"2019-08-10T01:27:40.38714Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S03E06.The.Portal.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8164},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Frozen Forest-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E01.The Frozen Forest-WEBDL-1080p.mkv","size":855359303,"dateAdded":"2019-08-10T02:11:25.848239Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E01.The.Frozen.Forest.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8165},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Ties That Bind-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E02.Ties That Bind-WEBDL-1080p.mkv","size":820751620,"dateAdded":"2019-08-10T02:11:28.137536Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E02.Ties.That.Bind.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8166},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Signals-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E03.Signals-WEBDL-1080p.mkv","size":644480492,"dateAdded":"2019-08-10T02:11:30.871971Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E03.Signals.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8167},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Roll With It-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E04.Roll With It-WEBDL-1080p.mkv","size":698321322,"dateAdded":"2019-08-10T02:11:33.83749Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E04.Roll.With.It.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8168},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E05.White Out-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E05.White Out-WEBDL-1080p.mkv","size":1248808664,"dateAdded":"2019-08-10T02:11:39.776256Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E05.White.Out.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8169},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Light Spinner-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E06.Light Spinner-WEBDL-1080p.mkv","size":597664561,"dateAdded":"2019-08-10T02:11:47.885633Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E06.Light.Spinner.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8170},{"seriesId":153,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Reunion-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 02\/S02E07.Reunion-WEBDL-1080p.mkv","size":700424621,"dateAdded":"2019-08-10T02:11:52.765438Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S02E07.Reunion.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8171},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Sword - Part 1-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E01.The Sword - Part 1-WEBDL-1080p.mkv","size":777398312,"dateAdded":"2019-08-10T08:50:11.975289Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:14","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8172},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Sword - Part 2-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E02.The Sword - Part 2-WEBDL-1080p.mkv","size":741081374,"dateAdded":"2019-08-10T08:50:17.646034Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8173},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Razz-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E03.Razz-WEBDL-1080p.mkv","size":710133921,"dateAdded":"2019-08-10T08:50:23.227172Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8174},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Flowers for She-Ra-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E04.Flowers for She-Ra-WEBDL-1080p.mkv","size":809152934,"dateAdded":"2019-08-10T08:50:27.049159Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8175},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Sea Gate-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E05.The Sea Gate-WEBDL-1080p.mkv","size":598884928,"dateAdded":"2019-08-10T08:50:36.070377Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8176},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E06.System Failure-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E06.System Failure-WEBDL-1080p.mkv","size":652378802,"dateAdded":"2019-08-10T08:50:42.159831Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8177},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E07.In the Shadows of Mystacor-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E07.In the Shadows of Mystacor-WEBDL-1080p.mkv","size":598343124,"dateAdded":"2019-08-10T08:50:46.655519Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8178},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Princess Prom-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E08.Princess Prom-WEBDL-1080p.mkv","size":573699743,"dateAdded":"2019-08-10T08:50:50.795556Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8179},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E09.No Princess Left Behind-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E09.No Princess Left Behind-WEBDL-1080p.mkv","size":653543572,"dateAdded":"2019-08-10T08:50:55.494479Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8180},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Beacon-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E10.The Beacon-WEBDL-1080p.mkv","size":574201671,"dateAdded":"2019-08-10T08:51:01.023612Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8181},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Promise-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E11.Promise-WEBDL-1080p.mkv","size":598159421,"dateAdded":"2019-08-10T08:51:06.633049Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8182},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Light Hope-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E12.Light Hope-WEBDL-1080p.mkv","size":965696755,"dateAdded":"2019-08-10T08:51:13.701189Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Finnish \/ Swedish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8183},{"seriesId":153,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Battle of Bright Moon-WEBDL-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 01\/S01E13.The Battle of Bright Moon-WEBDL-1080p.mkv","size":775010029,"dateAdded":"2019-08-10T08:51:20.198719Z","releaseGroup":"TrollHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"Spanish \/ Spanish \/ English \/ Norwegian \/ Indonesian \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Danish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8184},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The Coronation-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E01.The Coronation-WEBRip-1080p.mkv","size":700285098,"dateAdded":"2019-11-05T22:53:28.430317Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E01.The.Coronation.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10111},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Valley of the Lost-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E02.The Valley of the Lost-WEBRip-1080p.mkv","size":728305673,"dateAdded":"2019-11-05T22:53:32.929752Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E02.The.Valley.of.the.Lost.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10112},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Flutterina-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E03.Flutterina-WEBRip-1080p.mkv","size":822217994,"dateAdded":"2019-11-05T22:53:36.191686Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E03.Flutterina.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10113},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Pulse-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E04.Pulse-WEBRip-1080p.mkv","size":727108594,"dateAdded":"2019-11-05T22:53:41.278916Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E04.Pulse.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10114},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Protocol-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E05.Protocol-WEBRip-1080p.mkv","size":889005365,"dateAdded":"2019-11-05T22:53:49.059773Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E05.Protocol.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10115},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Princess Scorpia-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E06.Princess Scorpia-WEBRip-1080p.mkv","size":758133778,"dateAdded":"2019-11-05T22:53:56.910408Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E06.Princess.Scorpia.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10116},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Mer-Mysteries-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E07.Mer-Mysteries-WEBRip-1080p.mkv","size":621003156,"dateAdded":"2019-11-05T22:54:04.263762Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E07.Mer-Mysteries.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10117},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Boys' Night Out-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E08.Boys' Night Out-WEBRip-1080p.mkv","size":728463869,"dateAdded":"2019-11-05T22:54:10.091773Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E08.Boys.Night.Out.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10118},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Hero-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E09.Hero-WEBRip-1080p.mkv","size":855845069,"dateAdded":"2019-11-05T22:54:16.186189Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E09.Hero.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10119},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Fractures-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E10.Fractures-WEBRip-1080p.mkv","size":758923153,"dateAdded":"2019-11-05T22:54:24.431779Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E10.Fractures.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10120},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Beast Island-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E11.Beast Island-WEBRip-1080p.mkv","size":789769847,"dateAdded":"2019-11-05T22:54:31.78884Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E11.Beast.Island.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10121},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Destiny Part 1-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E12.Destiny Part 1-WEBRip-1080p.mkv","size":757457522,"dateAdded":"2019-11-05T22:54:39.117032Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E12.Destiny.Part.1.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3650000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10122},{"seriesId":153,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Destiny Part 2-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 04\/S04E13.Destiny Part 2-WEBRip-1080p.mkv","size":854805989,"dateAdded":"2019-11-05T22:54:45.146299Z","sceneName":"She-Ra.and.the.Princesses.of.Power.S04E13.Destiny.Part.2.1080p.NF.WEB-DL.DDP5.1.x264-iJP","releaseGroup":"iJP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10123},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Horde Prime-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E01.Horde Prime-WEBRip-1080p.mkv","size":379629823,"dateAdded":"2020-06-07T16:11:06.9835Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1450718,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13816},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Launch-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E02.Launch-WEBRip-1080p.mkv","size":345990770,"dateAdded":"2020-06-07T16:11:16.44646Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1264567,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13817},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Corridors-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E03.Corridors-WEBRip-1080p.mkv","size":323242492,"dateAdded":"2020-06-07T16:11:21.407761Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1138863,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13818},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Stranded-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E04.Stranded-WEBRip-1080p.mkv","size":376697951,"dateAdded":"2020-06-07T16:11:27.527448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1433667,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13819},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Save the Cat-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E05.Save the Cat-WEBRip-1080p.mkv","size":342857861,"dateAdded":"2020-06-07T16:11:34.284715Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1247747,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13820},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Taking Control-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E06.Taking Control-WEBRip-1080p.mkv","size":395254430,"dateAdded":"2020-06-07T16:11:37.071816Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1536618,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13821},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Perils of Peekablue-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E07.Perils of Peekablue-WEBRip-1080p.mkv","size":339391859,"dateAdded":"2020-06-07T16:11:40.548659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1228033,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13822},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Shot in the Dark-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E08.Shot in the Dark-WEBRip-1080p.mkv","size":295577620,"dateAdded":"2020-06-07T16:11:43.815699Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":986058,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13823},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E09.An Ill Wind-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E09.An Ill Wind-WEBRip-1080p.mkv","size":377348982,"dateAdded":"2020-06-07T16:11:46.883602Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1437829,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13824},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Return to the Fright Zone-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E10.Return to the Fright Zone-WEBRip-1080p.mkv","size":355753196,"dateAdded":"2020-06-07T16:11:52.693538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1318379,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13825},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Failsafe-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E11.Failsafe-WEBRip-1080p.mkv","size":345040483,"dateAdded":"2020-06-07T16:11:59.972726Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1259405,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13826},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Heart Part 1-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E12.Heart Part 1-WEBRip-1080p.mkv","size":374865262,"dateAdded":"2020-06-07T16:12:01.994657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1424842,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13827},{"seriesId":153,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Heart Part 2-WEBRip-1080p.mkv","path":"\/tv\/She-Ra and the Princesses of Power\/Season 05\/S05E13.Heart Part 2-WEBRip-1080p.mkv","size":409344689,"dateAdded":"2020-06-07T16:12:04.872743Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1615554,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13828}],"queue":[]},"147":{"series":{"title":"South Park","alternateTitles":[],"sortTitle":"south park","status":"continuing","ended":false,"overview":"South Park is an animated series featuring four boys who live in the Colorado town of South Park, which is beset by frequent odd occurrences. The show grew out of a short film that Trey Parker and Matt Stone created called The Spirit of Christmas, and has become an award-winning show that is a unique blend of humor and satire.","previousAiring":"2021-03-11T03:00:00Z","network":"Comedy Central","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/104\/banner.jpg?lastWrite=637100124293946280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75897-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/104\/poster.jpg?lastWrite=637100124296066240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75897-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/104\/fanart.jpg?lastWrite=637100124291746320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75897-43.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":32,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1998-02-26T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4793214489,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1999-01-21T03:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":7106571772,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2000-01-13T03:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":5803092065,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2000-12-21T03:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":6884449911,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2001-12-13T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":5197957931,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2002-12-12T03:00:00Z","episodeFileCount":17,"episodeCount":17,"totalEpisodeCount":17,"sizeOnDisk":6008635319,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2003-12-18T03:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":6106066097,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2004-12-16T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4632297670,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"2005-12-08T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":5046031291,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"2006-11-16T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":5422203500,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2007-11-15T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":6143615410,"percentOfEpisodes":100.0}},{"seasonNumber":12,"monitored":true,"statistics":{"previousAiring":"2008-11-20T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":7527754333,"percentOfEpisodes":100.0}},{"seasonNumber":13,"monitored":true,"statistics":{"previousAiring":"2009-11-19T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4189228051,"percentOfEpisodes":100.0}},{"seasonNumber":14,"monitored":true,"statistics":{"previousAiring":"2010-11-18T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4509620422,"percentOfEpisodes":100.0}},{"seasonNumber":15,"monitored":true,"statistics":{"previousAiring":"2011-11-17T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":4227153812,"percentOfEpisodes":100.0}},{"seasonNumber":16,"monitored":true,"statistics":{"previousAiring":"2012-11-08T03:00:00Z","episodeFileCount":14,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":16359728974,"percentOfEpisodes":100.0}},{"seasonNumber":17,"monitored":true,"statistics":{"previousAiring":"2013-12-12T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11686607635,"percentOfEpisodes":100.0}},{"seasonNumber":18,"monitored":true,"statistics":{"previousAiring":"2014-12-11T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11689025051,"percentOfEpisodes":100.0}},{"seasonNumber":19,"monitored":true,"statistics":{"previousAiring":"2015-12-10T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11635372761,"percentOfEpisodes":100.0}},{"seasonNumber":20,"monitored":true,"statistics":{"previousAiring":"2016-12-08T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2569392322,"percentOfEpisodes":100.0}},{"seasonNumber":21,"monitored":true,"statistics":{"previousAiring":"2017-12-07T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":2640274102,"percentOfEpisodes":100.0}},{"seasonNumber":22,"monitored":true,"statistics":{"previousAiring":"2018-12-13T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":11688605067,"percentOfEpisodes":100.0}},{"seasonNumber":23,"monitored":true,"statistics":{"previousAiring":"2019-12-12T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":23291720028,"percentOfEpisodes":100.0}},{"seasonNumber":24,"monitored":true,"statistics":{"previousAiring":"2021-03-11T03:00:00Z","episodeFileCount":2,"episodeCount":2,"totalEpisodeCount":2,"sizeOnDisk":1437658213,"percentOfEpisodes":100.0}}],"year":1997,"path":"\/tv\/South Park","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":75897,"tvRageId":5266,"tvMazeId":112,"firstAired":"1997-08-13T00:00:00Z","seriesType":"standard","cleanTitle":"southpark","imdbId":"tt0121955","titleSlug":"south-park","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy"],"tags":[],"added":"2018-10-23T19:51:22.076252Z","ratings":{"votes":15855,"value":8.7},"statistics":{"seasonCount":24,"episodeFileCount":309,"episodeCount":309,"totalEpisodeCount":341,"sizeOnDisk":176596276226,"percentOfEpisodes":100.0},"id":104},"episodes":[{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Cartman Gets an Anal Probe: The Unaired and Uncut Original Pilot","overview":"While the boys are waiting for the school bus, Cartman explains the odd nightmare he had the previous night involving alien visitors abducting him from his bed. Meanwhile Kyle and Stan try to convince Cartman that the dream was in fact a reality.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7605},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"The Aristocrats Joke","overview":"An absolutely filthy version of \"The Aristocrat's Joke\" as told by Cartman.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7619},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Spirit of Christmas (Jesus vs. Frosty)","airDate":"1992-12-14","airDateUtc":"1992-12-15T03:00:00Z","overview":"This is the first ever South Park installation, created in a university film class. The boys build a snowman, which comes to life when a magic hat is placed upon its head; however, this snowman is evil and begins a killing spree. The boys call upon Jesus to do battle with this menace.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7606},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Your Studio and You","airDate":"1995-09-14","airDateUtc":"1995-09-15T02:00:00Z","overview":"Your Studio and You is a comedy short film created in 1995 by Matt Stone and Trey Parker and commissioned by comedic filmmaker David Zucker. It was to be played at a party Seagram threw for its employees acquired as a result of its Universal Studios take-over. It parodies the style of 1950s educational films such as Duck and Cover, while poking fun at Universal and its talent. It was shot in the Universal Studios backlot and it runs approximately fourteen minutes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7624},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Spirit of Christmas (Jesus vs. Santa)","airDate":"1995-12-25","airDateUtc":"1995-12-26T03:00:00Z","overview":"Used as a Christmas card by a Fox executive, this short brought South Park to the attention of Comedy Central. Jesus arrives in South Park and accuses Santa of blasphemy at the local mall. Santa challenges him to a fight and the violence between the two quickly escalates. Even Brian Boitano can't help the boys who have found themselves in the middle of this fight.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7607},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Countdown to 1997","airDate":"1996-12-31","airDateUtc":"1997-01-01T03:00:00Z","overview":"The South Park cast counts down the seconds till 1997.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7630},{"seriesId":104,"episodeFileId":5114,"seasonNumber":1,"episodeNumber":1,"title":"Cartman Gets an Anal Probe","airDate":"1997-08-13","airDateUtc":"1997-08-14T02:00:00Z","overview":"While the boys are waiting for the school bus, Cartman explains the odd nightmare he had the previous night involving alien visitors abducting him from his bed. Meanwhile Kyle and Stan try to convince Cartman that the dream was in fact a reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":7636},{"seriesId":104,"episodeFileId":5116,"seasonNumber":1,"episodeNumber":3,"title":"Volcano","airDate":"1997-08-20","airDateUtc":"1997-08-21T02:00:00Z","overview":"The boys get together with Stan's Uncle Jimbo and Jimbo's war-buddy Ned for a hunting trip in the nearby mountains. After Cartman's mom makes sure her \"little\" boy is safe and sound (much to Cartman's dismay) the group heads off for adventure. As they drive away from the town, Jimbo explains the \"finer\" points of hunting.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":7638},{"seriesId":104,"episodeFileId":5115,"seasonNumber":1,"episodeNumber":2,"title":"Weight Gain 4000","airDate":"1997-08-27","airDateUtc":"1997-08-28T02:00:00Z","overview":"Mr. Garrison starts the day off with a special announcement; one of South Park's own has won a national essay contest. Everyone is shocked to learn that the winner is Cartman, who doesn't even remember what he wrote about.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":7637},{"seriesId":104,"episodeFileId":5117,"seasonNumber":1,"episodeNumber":4,"title":"Big Gay Al's Big Gay Boat Ride","airDate":"1997-09-03","airDateUtc":"1997-09-04T02:00:00Z","overview":"Stan's got a new dog-named Sparky. Stan proclaims his pet to be the toughest dog on the mountain. Though while Stan thinks his dog is ready for fighting, Sparky proceeds to hump Sylvester like a little bitch. The other boys taunt Stan about his gay dog and Sparky runs away to find someone who will love him for who he is.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":7639},{"seriesId":104,"episodeFileId":5118,"seasonNumber":1,"episodeNumber":5,"title":"An Elephant Makes Love to a Pig","airDate":"1997-09-10","airDateUtc":"1997-09-11T02:00:00Z","overview":"Stan notices a new addition in their bus stop crew, an elephant standing alongside Kyle. At school, class lessons for the day involve genetic engineering (conveniently enough). Kyle questions the possibility of a genetically engineered elephant made smaller by design. The boys have to beat the rough kids in their genetics experiment, and will try anything to do it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":7640},{"seriesId":104,"episodeFileId":5119,"seasonNumber":1,"episodeNumber":6,"title":"Death","airDate":"1997-09-17","airDateUtc":"1997-09-18T02:00:00Z","overview":"\"Happy Birthday\" to Stan's Grandpa Marsh who just turned 102. How does the wizened Mr. Marsh feel about his birthday? He sums it up in five words; \"I wish I were dead.\" and proceeds trying to end his life enlisting Stan to do it for him. However, Stan is aware of a very important thing if he kills his grandfather, he'd be in trouble, and if he's in trouble he can't watch Terrance and Phillip.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":7641},{"seriesId":104,"episodeFileId":5120,"seasonNumber":1,"episodeNumber":7,"title":"Pinkeye","airDate":"1997-10-29","airDateUtc":"1997-10-30T03:00:00Z","overview":"The first Halloween episode starts off with the failure of the Mir Space Station, which crashes right on Kenny. An ambulance comes and takes his body off to the morgue. The boys start to brag about their Halloween costumes. At the morgue, a freak accident involving a bottle of Worcestershire occurs, and next thing you know Kenny is a member of the undead. Kenny breaks free and wanders off into the night.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":7642},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"The 1997 CableACE Awards","airDate":"1997-11-15","airDateUtc":"1997-11-16T03:00:00Z","overview":"Eric, Stan, Kyle and Kenny present the award for Best Talk Show Series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7621},{"seriesId":104,"episodeFileId":5121,"seasonNumber":1,"episodeNumber":8,"title":"Starvin' Marvin","airDate":"1997-11-19","airDateUtc":"1997-11-20T03:00:00Z","overview":"The four boys are at Cartman's house watching the \"Terrance & Philip Thanksgiving Special\" on television. During a break from the show, a Sally Struthers commercial convinces the boys that the prospect of a free \"Taiko\" sport watch with a five-dollar donation is irresistible. Typical greedy American youth. So Stan dials in, using his mother's credit card number and makes their donation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":7643},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Jay Leno Comes to South Park","airDate":"1997-11-20","airDateUtc":"1997-11-21T03:00:00Z","overview":"Jay Leno visits Mr. Garrison's class and discusses Thanksgiving with the kids.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7608},{"seriesId":104,"episodeFileId":5122,"seasonNumber":1,"episodeNumber":9,"title":"Mr. Hankey the Christmas Poo","airDate":"1997-12-17","airDateUtc":"1997-12-18T03:00:00Z","overview":"South Park Elementary is on stage rehearsing for the schools play. Kyle begins to sing a song about Mr. Hankey, the Christmas Poo. Of course, no one has any idea what the heck he's singing about. Kyle explains that Mr. Hankey comes every year to all the good boys and girls who have a lot of fiber in their diet. Everyone thinks he's insane and sends him to a mental institute.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":7644},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"O Holy Night Music Video","airDate":"1997-12-25","airDateUtc":"1997-12-26T03:00:00Z","overview":"Cartman sings his rendition of \"O Holy Night\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7614},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"O Little Town of Bethlehem Music Video","airDate":"1997-12-25","airDateUtc":"1997-12-26T03:22:00Z","overview":"Ned sings his rendition of \"O Little Town of Bethlehem\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7615},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Countdown to 1998","airDate":"1997-12-31","airDateUtc":"1998-01-01T03:00:00Z","overview":"The South Park cast counts down the seconds to 1998.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7631},{"seriesId":104,"episodeFileId":5123,"seasonNumber":1,"episodeNumber":10,"title":"Damien","airDate":"1998-02-04","airDateUtc":"1998-02-05T03:00:00Z","overview":"Eric is handing out invitations to his birthday party at school. Mr. Garrison informs them all that there is a new student joining the class. Announcing to all that he is Damien, the son of Satan. Even as Damien demonstrates his demonic powers the children are more loathsome than impressed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":7645},{"seriesId":104,"episodeFileId":5124,"seasonNumber":1,"episodeNumber":11,"title":"Tom's Rhinoplasty","airDate":"1998-02-11","airDateUtc":"1998-02-12T03:00:00Z","overview":"Wendy and Stan discuss their plans for romance. Principal Victoria comes into the classroom and announces that Mr. Garrison is going to be out and that a substitute will be taking his place. The lovely Miss Ellen speaks to Stan and he pukes all over his desk. Wendy is upset because Stan only pukes when he is in love and has Mrs. Ellen arrested for being a spy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":7646},{"seriesId":104,"episodeFileId":5125,"seasonNumber":1,"episodeNumber":12,"title":"Mecha-Streisand","airDate":"1998-02-18","airDateUtc":"1998-02-19T03:00:00Z","overview":"The boys meet up with Barbara Streisand who wants to take over the world with Kyle's discovery and an archaeological dig. Leonard Maltin, Sydney Potier, and Robert Smith come to the rescue to defeat Babs and her terrible destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":7647},{"seriesId":104,"episodeFileId":5126,"seasonNumber":1,"episodeNumber":13,"title":"Cartman's Mom Is a Dirty Slut","airDate":"1998-02-25","airDateUtc":"1998-02-26T03:00:00Z","overview":"Cartman needs to find out who his father is but his mom is no help. Learning that his father could be one of the many people that his mom \"had relations\" with during an annual party called \"The Drunken Barn Dance,\" he finds that there's more to his mother then he thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":7648},{"seriesId":104,"episodeFileId":5127,"seasonNumber":2,"episodeNumber":1,"title":"Terrance and Phillip in Not Without My Anus","airDate":"1998-04-01","airDateUtc":"1998-04-02T03:00:00Z","overview":"The show starts off with the build up from last season's cliffhanger revolving around Cartman's paternal origins. However, just as it seems they are about to get on with the second half of \"Cartman's Mom Is A Dirty Slut,\" they do a 180 degree turn-around and reveal that for April Fool's Day they will be showing Terrance & Phillip in \"Not Without My Anus.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":7649},{"seriesId":104,"episodeFileId":5128,"seasonNumber":2,"episodeNumber":2,"title":"Cartman's Mom is Still a Dirty Slut","airDate":"1998-04-22","airDateUtc":"1998-04-23T02:00:00Z","overview":"Dr. Mephisto is about to reveal who Eric Cartman's father really is! Glass shatters and gunshots ring out. A mysterious assailant apparently shot Mephisto while the lights were off. Much to Eric's chagrin, they rush Mephisto off to the hospital. Chef rushes out the door with Mephisto in hand. They must fight against time to learn Eric's background, who is his father? Where does he come from?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":7650},{"seriesId":104,"episodeFileId":5129,"seasonNumber":2,"episodeNumber":3,"title":"Ike's Wee Wee","airDate":"1998-05-20","airDateUtc":"1998-05-21T02:00:00Z","overview":"Ike's going to have a Briss and everyone is invited! Stan, Kenny, and Cartman find out what a Briss really is and try to warn Kyle that his parents are going to cut off Ike's wee wee. Kyle sends Ike away to protect him from his scissor wielding parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":7651},{"seriesId":104,"episodeFileId":5130,"seasonNumber":2,"episodeNumber":4,"title":"Chickenlover","airDate":"1998-05-27","airDateUtc":"1998-05-28T02:00:00Z","overview":"The Booktastic bus is in town and soon everyone finds out that Officer Barbrady can't read. He is whisked off to school with the boys so he can save his job. While he's there someone in South Park is having sex with the town's chickens and only Officer Barbrady with his new deputies Kenny, Kyle, Stan, and Cartman can stop them!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":7652},{"seriesId":104,"episodeFileId":5131,"seasonNumber":2,"episodeNumber":5,"title":"Conjoined Fetus Lady","airDate":"1998-06-03","airDateUtc":"1998-06-04T02:00:00Z","overview":"Kyle is injured and must go to see the school nurse and is terrified because of the stories he's heard. She looks fairly normal, except for the dead fetus sticking out of her head. Kyle's mother educates the boys on her \"condition\" and decides that everyone in South Park should be made aware. Meanwhile, the South Park Cows dodgeball team goes to the state, national and finally the international finals in China.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":7653},{"seriesId":104,"episodeFileId":5132,"seasonNumber":2,"episodeNumber":6,"title":"The Mexican Staring Frog of Southern Sri Lanka","airDate":"1998-06-10","airDateUtc":"1998-06-11T02:00:00Z","overview":"Mr. Garrison assigns the boys to learn about Vietnam from somebody they know. Stan's Uncle Jimbo and his friend Ned tell the boys their outrageous tale. Mr. Garrison doesn't believe the boy's report and gives them detention. They plot revenge against Stan's Uncle by submitting a phony video of the Mexican Staring Frog of Southern Sri Lanka to them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":7654},{"seriesId":104,"episodeFileId":5133,"seasonNumber":2,"episodeNumber":7,"title":"City on the Edge of Forever (Flashbacks)","airDate":"1998-06-17","airDateUtc":"1998-06-18T02:00:00Z","overview":"While their school bus is dangling on the edge of a cliff, the boys remember some of their past adventures. Mrs. Crabtree catches a ride into town with a stranger and winds up doing a brief stint as a standup comedienne. Back in South Park, Mr. Mackey convinces the parents that their missing children must have run away. In the end it's all a dream within a dream.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":7655},{"seriesId":104,"episodeFileId":5134,"seasonNumber":2,"episodeNumber":8,"title":"Summer Sucks","airDate":"1998-06-24","airDateUtc":"1998-06-25T02:00:00Z","overview":"Schools out for summer and with Mr. Hat missing, Mr. Garrison is over the edge. The state has a ban on the sale of fireworks, and it screws up the boy's plans for a 4th of July celebration. Mr. Garrison seeks psychiatric help from Dr. Katz while Jimbo and Ned go to Mexico, in an attempt to smuggle fireworks back to the children of America.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":7656},{"seriesId":104,"episodeFileId":5135,"seasonNumber":2,"episodeNumber":9,"title":"Chef's Chocolate Salty Balls","airDate":"1998-08-19","airDateUtc":"1998-08-20T02:00:00Z","overview":"A film festival moves to South Park, only to have a devastating effect on the sewer system. Mr. Hankey calls upon Kyle for help. The movie people interpret Kyle's pleading as a pitch and they quickly turn his story into a film starring Tom Hanks and a monkey they call \"Mr. Hankey.\" Kyle is outraged that the filmmakers aren't hearing his pleas. Soon Chef's Salty Chocolate Balls energizes everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":7657},{"seriesId":104,"episodeFileId":5136,"seasonNumber":2,"episodeNumber":10,"title":"Chickenpox","airDate":"1998-08-26","airDateUtc":"1998-08-27T02:00:00Z","overview":"Cartman's mother plots to give the boys the chickenpox by sending them over to Kenny's for a sleepover. Both Stan and Cartman breakout, but Kyle remains immune. Kyle discovers \"the parental conspiracy\" and with the other boys hires a prostitute to give their parents herpes. Meanwhile, Kenny's mother and Kyle's mother reunite their husbands who were both childhood friends that drifted apart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":7658},{"seriesId":104,"episodeFileId":5137,"seasonNumber":2,"episodeNumber":11,"title":"Roger Ebert Should Lay Off the Fatty Foods","airDate":"1998-09-02","airDateUtc":"1998-09-03T02:00:00Z","overview":"The kids go on a field trip to the planetarium. All of the children except Cartman are acting weird. As usual Stan and Kyle, with Kenny's sacrifice, try to get to bottom of the mystery. Meanwhile, Cartman wins an appearance on a snack commercial. The four boys get to the root of the strange planetarium.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":7659},{"seriesId":104,"episodeFileId":5138,"seasonNumber":2,"episodeNumber":12,"title":"Clubhouses","airDate":"1998-09-23","airDateUtc":"1998-09-24T02:00:00Z","overview":"Stan needs to build a clubhouse so he and Kyle can play \"Truth or Dare\" with Wendy and her friend, who has a crush on Kyle. Cartman and Kenny retaliate by building a clubhouse of their own; only theirs has hot chicks. Meanwhile, the Marshes marriage breaks up and Stan learns a valuable lesson about love and family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":7660},{"seriesId":104,"episodeFileId":5139,"seasonNumber":2,"episodeNumber":13,"title":"Cow Days","airDate":"1998-09-30","airDateUtc":"1998-10-01T02:00:00Z","overview":"South Park's annual \"Cow Days\" party is happening! The cows become transfixed on a cow statue. In order to get the money they need to win Terrance and Phillip dolls, the boys sign Cartman up for a bull riding contest. A freak accident has Cartman believing he is a Vietnamese prostitute named Ming Li. The boys learn about money and cow insanity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":7661},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Chef Aid: Behind the Menu","airDate":"1998-10-07","airDateUtc":"1998-10-08T02:00:00Z","overview":"This special episode is a parody of VH1's Behind the Music about Chef Aid.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7609},{"seriesId":104,"episodeFileId":5140,"seasonNumber":2,"episodeNumber":14,"title":"Chef Aid","airDate":"1998-10-07","airDateUtc":"1998-10-08T02:00:00Z","overview":"Chef is getting sued by Capitalist Records for trying to obtain the rights to a song he wrote twenty years ago. He needs 2 million dollars to hire Johnny Cochran. In response the boys round up all of Chef's old musician friends and organize a huge concert to raise the cash.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":7662},{"seriesId":104,"episodeFileId":5141,"seasonNumber":2,"episodeNumber":15,"title":"Spookyfish","airDate":"1998-10-28","airDateUtc":"1998-10-29T03:00:00Z","overview":"Sharon Marsh's Aunt Flo makes her monthly visit and she has present for Stan, a fish. Stan's fish really freaks him out, especially when the dead bodies start piling up. Mrs. Marsh is convinced Stan is doing the killings and begins hiding the bodies. The boys discover there are two Cartmans and a gateway to a parallel universe at the \"Indian Burial Ground Pet Store.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":7663},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"A Mother's Courage","airDate":"1998-10-31","airDateUtc":"1998-11-01T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20783},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"MADtv: Southparknuts","airDate":"1998-11-01","airDateUtc":"1998-11-02T03:00:00Z","overview":"From and episode of MADtv. Charilie Brown crossed with South Park.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7629},{"seriesId":104,"episodeFileId":5142,"seasonNumber":2,"episodeNumber":16,"title":"Merry Christmas Charlie Manson","airDate":"1998-12-09","airDateUtc":"1998-12-10T03:00:00Z","overview":"Kyle, Stan and Kenny accompany Eric and his family to a Christmas celebration with the Cartman family. One of Cartman's relatives breaks out of jail for the reunion, with his cellmate, Charles Manson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":7664},{"seriesId":104,"episodeFileId":5143,"seasonNumber":2,"episodeNumber":17,"title":"Gnomes","airDate":"1998-12-16","airDateUtc":"1998-12-17T03:00:00Z","overview":"Harbucks coffee plans to move into South Park and drive Tweek coffee shop out of business. Mr. Garrison assigns a report on current events to help him keep his job. The boys are planning on doing their report on the underpants gnomes. Tweek's father schemes to use the boy's report as a platform for fighting Harbucks. The report the boys deliver sparks the town into taking action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":7665},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Countdown to 1999","airDate":"1998-12-31","airDateUtc":"1999-01-01T03:00:00Z","overview":"Mr. Mackey counts down the seconds to 1999.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7632},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Movie Trailer: Beefcake","airDate":"1999-01-01","airDateUtc":"1999-01-02T03:00:00Z","overview":"Trailer for South Park: Bigger, Longer, & Uncut.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7626},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Movie Trailer: Disco","airDate":"1999-01-01","airDateUtc":"1999-01-02T03:22:00Z","overview":"Trailer for South Park: Bigger, Longer, & Uncut.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7627},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Movie Trailer: German Dance","airDate":"1999-01-01","airDateUtc":"1999-01-02T03:44:00Z","overview":"Trailer for South Park: Bigger, Longer, & Uncut.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7628},{"seriesId":104,"episodeFileId":5144,"seasonNumber":2,"episodeNumber":18,"title":"Prehistoric Ice Man","airDate":"1999-01-20","airDateUtc":"1999-01-21T03:00:00Z","overview":"Kyle falls into a cave. Stan goes to rescue him and finds an iceman, and the two fight each other for sole credit. Dr. Mephisto discovers that the iceman has been frozen since 1996. The iceman is put on display and the fighting Kyle and Stan free him. The iceman tries to return to his family, but finds himself a man out of time. Meanwhile, the government has their own plans to use the iceman in their plot against Sweden.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":7666},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"What Would Brian Boitano Do Music Video","airDate":"1999-02-13","airDateUtc":"1999-02-14T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7625},{"seriesId":104,"episodeFileId":5242,"seasonNumber":3,"episodeNumber":1,"title":"Rainforest Shmainforest","airDate":"1999-04-07","airDateUtc":"1999-04-08T02:00:00Z","overview":"Mr. Mackey punishes the boys by forcing them to join the \"Getting Gay With Kids\" choir. The choir is going to Costa Rica to help save the rainforest. While on a tour of the rainforest the choir group gets lost when a snake kills their guide. They soon discover the evils of the rainforest, which changes the choir group's message.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":7667},{"seriesId":104,"episodeFileId":5243,"seasonNumber":3,"episodeNumber":2,"title":"Spontaneous Combustion","airDate":"1999-04-14","airDateUtc":"1999-04-15T02:00:00Z","overview":"Kenny spontaneously combusts. The mayor asks Randy Marsh to find a solution. The boys try to help Kyle's dad to get an erection. One way they think they can help is by performing the Stations of the Cross at church crucifying Cartman and waiting three days for his res-erection. Randy Marsh figures out the reason everyone is combusting is because they are withholding their farts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":7668},{"seriesId":104,"episodeFileId":5244,"seasonNumber":3,"episodeNumber":3,"title":"The Succubus","airDate":"1999-04-21","airDateUtc":"1999-04-22T02:00:00Z","overview":"Kyle and Stan try to rescue Chef from the clutches of the Succubus that he is going to marry. Meanwhile, Cartman deals with his eye problems and the optometrist he doesn't like. Chef's Mama and Papa appear for the first time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":7669},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Goin' Down to South Park","airDate":"1999-05-03","airDateUtc":"1999-05-04T02:00:00Z","overview":"An interview\/documentary with the creators of South Park that is included as bonus material in the DVD collection of Season 2.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7622},{"seriesId":104,"episodeFileId":5245,"seasonNumber":3,"episodeNumber":4,"title":"Jakovasaurs","airDate":"1999-06-16","airDateUtc":"1999-06-17T02:00:00Z","overview":"The boys discover a live prehistoric Jakovasaur while camping on Stark's Pond. The government and the citizens of South Park are interested in trying to help keep this endangered species alive, until they all realize how annoying the Jakovasaurs really are. The only one who really enjoys them is Cartman. The boys try distracting him while the town tries to send the Jakovasaurs to France.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":7670},{"seriesId":104,"episodeFileId":5246,"seasonNumber":3,"episodeNumber":5,"title":"Tweek vs. Craig","airDate":"1999-06-23","airDateUtc":"1999-06-24T02:00:00Z","overview":"The boys take Shop class and try to set-up a fight between Tweek and Craig. Kenny is delighted in safely taking the Home Economics course. When the big fight arrives, the combatants don't know what to do; so Jimbo and Ned teach Tweek boxing and Cartman has Craig instructed in the art of Sumo. Shop teacher Mr. Adler has a recurring dream about a woman that he was never able to say goodbye to.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":7671},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"South Park: Bigger Longer & Uncut","airDate":"1999-06-30","airDateUtc":"1999-07-01T02:00:00Z","overview":"When four boys in South Park Stan Marsh, Kyle and his stepbrother Ike Broflovski, Eric Cartman, and Kenny McCormick sees an R-rated movie featuring Canadians \"Terrance & Phillip: Asses of Fire,\" they are pronounced \"corrupted,\" and Kyle's mom Sheila with the rest of the parents pressure the United States to wage war against Canada for World War 3! It's all up to Stan, Kyle and Cartman to save Terrence and Phillip before Satan and his lover Saddam Hussein from Hell rules the world and it'll be the end of the whole world.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7610},{"seriesId":104,"episodeFileId":5247,"seasonNumber":3,"episodeNumber":6,"title":"Sexual Harassment Panda","airDate":"1999-07-07","airDateUtc":"1999-07-08T02:00:00Z","overview":"Sexual Harassment Panda visits Mr. Garrison's class. Cartman sues Stan for sexual harassment and Kyle's dad is getting rich. The boys go in search of \"Sexual Harassment Panda\" to stop the insanity. They find him at \"The Island of Misfit Mascots Commune\" and convince him to change his cause. He becomes Petey, the \"don't sue people\" Panda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":7672},{"seriesId":104,"episodeFileId":5248,"seasonNumber":3,"episodeNumber":7,"title":"Cat Orgy","airDate":"1999-07-14","airDateUtc":"1999-07-15T02:00:00Z","overview":"Shelly Marsh is babysitting Cartman. Shelly invites her boyfriend over and he in turn invites his band. Cartman has to prove that Shelly has violated the rules. Meanwhile, the Cartman's cat is in heat, searches for a good time and invites all the cats in the neighborhood back to the empty Cartman house for an orgy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":7673},{"seriesId":104,"episodeFileId":5249,"seasonNumber":3,"episodeNumber":8,"title":"Two Guys Naked in a Hot Tub","airDate":"1999-07-21","airDateUtc":"1999-07-22T02:00:00Z","overview":"Stan's parents bring him to Mr. Mackey's party, but he gets sent down to the basement to be with the lame kids. Kyle and Stan's fathers experiment with their homosexual tendencies. The ATF is convinced that the meteor shower party is actually a gathering of a religious cult that is going to commit suicide when the meteor shower arrives. Stan tries to save himself and the party from the ATF.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":7674},{"seriesId":104,"episodeFileId":5250,"seasonNumber":3,"episodeNumber":9,"title":"Jewbilee","airDate":"1999-07-28","airDateUtc":"1999-07-29T02:00:00Z","overview":"Kyle invites Kenny to join him at Jewbilee, a Boy Scout-like gathering for Jewish kids. His parents are going to attend Mr. Mackey's party. At camp, Ike is sent to join the little group called \"Squirts.\" Kyle and Kenny, join the scouts, where they concentrate on soap sculptures. This art is key to the Jewish elders celebration of Moses however, Moses identifies Kenny as not being Jewish and Kenny is banished from the camp.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":7675},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"The Friend Store (South Park's Tribute to Monty Python)","airDate":"1999-10-09","airDateUtc":"1999-10-10T02:00:00Z","overview":"Trey and Matt's salute to the Monty Python comedy troupe.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7618},{"seriesId":104,"episodeFileId":5251,"seasonNumber":3,"episodeNumber":10,"title":"Korn's Groovy Pirate Ghost Mystery","airDate":"1999-10-27","airDateUtc":"1999-10-28T02:00:00Z","overview":"Korn comes to South Park for a Halloween gig and learns of the boys problems with the 5th graders at South Park Elementary. Korn agrees to help the boys get revenge on the mean 5th graders all in a spooky Scooby Doo rip off!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":7676},{"seriesId":104,"episodeFileId":5252,"seasonNumber":3,"episodeNumber":11,"title":"Chinpokomon","airDate":"1999-11-03","airDateUtc":"1999-11-04T03:00:00Z","overview":"The kids of South Park discover Chinpokomon, Japan's #1 cool toy to own! Wanting to avoid being losers, they persuade their parents to buy them the toys only to discover that the Chinpokomon are designed to brainwash them into bombing Pearl Harbor. The parents band together to stop Japan and save America!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":7677},{"seriesId":104,"episodeFileId":5253,"seasonNumber":3,"episodeNumber":12,"title":"Hooked on Monkey Fonics","airDate":"1999-11-10","airDateUtc":"1999-11-11T03:00:00Z","overview":"Mrs. Cartman is about to give Eric a present. Of course Eric is hoping it will be some kind of toy, but it ends up being Hooked On Monkey Fonics to help him win the big South Park Annual Spelling Bee. Kyle finds Rebecca Cutswald to be quite intriguing and tries to woo her with his charm and teach her how to love and learn in public school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":7678},{"seriesId":104,"episodeFileId":5254,"seasonNumber":3,"episodeNumber":13,"title":"Starvin' Marvin in Space!","airDate":"1999-11-17","airDateUtc":"1999-11-18T03:00:00Z","overview":"Starvin' Marvin finds an alien ship and begins searching out a new home for his people. The government interrogates the boys to find out about Marvin and direct them to Sally Struthers. Marvin stops in South Park to pick up the boys and take them to the planet Marklar. The Marklarians are willing to let the Ethiopians relocate to their world and the Christian channel does all they can to stop them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":7679},{"seriesId":104,"episodeFileId":5255,"seasonNumber":3,"episodeNumber":14,"title":"The Red Badge of Gayness","airDate":"1999-11-24","airDateUtc":"1999-11-25T03:00:00Z","overview":"South Park's Civil War reenactment, sponsored by \"Jagerminz S'More Flavored Schnapps,\" gets out of hand. Cartman persuades the drunken lot to defeat the northerners so that he can win a bet with Kyle and Stan that will make them his slaves for one month.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":7680},{"seriesId":104,"episodeFileId":5256,"seasonNumber":3,"episodeNumber":15,"title":"Mr. Hankey's Christmas Classics","airDate":"1999-12-01","airDateUtc":"1999-12-02T03:00:00Z","overview":"Mr. Hankey introduces 10 musical segments highlighting songs the on the CD \"Mr. Hankey's Christmas Classics.\" The boys and all of the other South Park characters sing their own songs for the Holidays and realize that Christmas is all about the presents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":7681},{"seriesId":104,"episodeFileId":5257,"seasonNumber":3,"episodeNumber":16,"title":"Are You There God? It's Me, Jesus","airDate":"1999-12-29","airDateUtc":"1999-12-30T03:00:00Z","overview":"Cartman is convinced he is going through puberty since he started bleeding out of his ass. Dr. Mephisto gives Stan some hormones and he takes the entire bottle. Stan gets facial hair, boobs and his voice starts changing. People are waiting outside of Jesus' home to see what kind of miracle he offers which ends up involving a comeback performance of a very old Rod Stewart and eventually an appearance by God.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":7682},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Countdown to 2000","airDate":"1999-12-31","airDateUtc":"2000-01-01T03:00:00Z","overview":"The South Park cast counts down the seconds to 2000.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7633},{"seriesId":104,"episodeFileId":5258,"seasonNumber":3,"episodeNumber":17,"title":"Worldwide Recorder Concert","airDate":"2000-01-12","airDateUtc":"2000-01-13T03:00:00Z","overview":"The children of South Park are practicing \"My Country 'Tis of Thee\" for the \"4 Million Child Blow,\" sponsored by Yoko Ono. Mr. Garrison doesn't want to go because his father still lives there. At the concert Stan and Kyle try to figure out a way to \"out cool\" the kids from New York. Cartman tries to find \"the brown noise\" and is successful. Stan and Kyle plan against the kids from New York but their scheme goes much too far.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":7683},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Blame Canada Music Video (Academy Awards)","airDate":"2000-03-26","airDateUtc":"2000-03-27T03:00:00Z","overview":"Robin Williams performs \"Blame Canada\" at the 1999 Academy Awards.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7617},{"seriesId":104,"episodeFileId":5201,"seasonNumber":4,"episodeNumber":1,"title":"The Tooth Fairy Tats 2000","airDate":"2000-04-05","airDateUtc":"2000-04-06T02:00:00Z","overview":"The tooth fairy has visited Cartman, leaving him two dollars. He rushes to the bus stop to share his news with the others. He then unveils his latest plan. If all they all combined their lost teeth, the tooth fairy will provide them with enough cash to purchase a Sega Dreamcast. They soon find out that they are treading on someone else's territory. Now they have to work with the mobsters to keep their manhood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":7684},{"seriesId":104,"episodeFileId":5202,"seasonNumber":4,"episodeNumber":2,"title":"Cartman's Silly Hate Crime 2000","airDate":"2000-04-12","airDateUtc":"2000-04-13T02:00:00Z","overview":"The kids have just won a sledding race. Token says that the only reason they won is because of Eric's fat ass. The girls challenge the boys to a sledding race down Phil Collins Hill. Token says that the boys can't lose thanks to Eric's fat ass. Eric then tosses a rock into the side of Token's head. The FBI claim that this was a hate crime and Cartman is sent to jail. Can the other boys bust Cartman out in time for the big race?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":7685},{"seriesId":104,"episodeFileId":5203,"seasonNumber":4,"episodeNumber":3,"title":"Timmy 2000","airDate":"2000-04-19","airDateUtc":"2000-04-20T02:00:00Z","overview":"There's something wrong with new student Timmy. About the only thing Timmy can do is say his name. Ignorant of the fact that Timmy is \"retarded\", he is \"diagnosed\" with ADD, which relieves him of the responsibility to do any homework. Soon the rest of the class manages to get diagnosed with ADD, and all get prescribed Ritalin. Everyone is on Ritalin and just complacent enough to sit through a Phil Collins show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":7686},{"seriesId":104,"episodeFileId":5204,"seasonNumber":4,"episodeNumber":4,"title":"Quintuplets 2000","airDate":"2000-04-26","airDateUtc":"2000-04-27T02:00:00Z","overview":"The boys discover 8-year-old contorting quintuplets from Romania. Cartman decides to stage his own performance. The quintuplets and their grandmother defect from Romania and wind up staying at the Marsh's home. Thanks to Grandpa Marsh the girls' grandmother gets \"loved to death.\" The girl's father is brought in by the Romanian government to demand his daughters back, Janet Reno to the rescue!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":7687},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"MTV Movie Awards 2000","airDate":"2000-06-08","airDateUtc":"2000-06-09T02:00:00Z","overview":"Mr. Mackey punishes the boys by making them fight in the Roman Coliseum.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7620},{"seriesId":104,"episodeFileId":5205,"seasonNumber":4,"episodeNumber":5,"title":"Cartman Joins NAMBLA","airDate":"2000-06-21","airDateUtc":"2000-06-22T02:00:00Z","overview":"Cartman decides to seek the friendship of older men. Using the Internet, he makes a connection with men who love to hang out with little boys. An organization called NAMBLA (North American Man Boy Love Association) holds a meeting in South Park and Cartman becomes their poster child. The boys learn how much an adult can really love a child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":7688},{"seriesId":104,"episodeFileId":5206,"seasonNumber":4,"episodeNumber":6,"title":"Cherokee Hair Tampons","airDate":"2000-06-28","airDateUtc":"2000-06-29T02:00:00Z","overview":"Kyle needs a kidney transplant and Cartman is a perfect donor. Cartman has a $10 million price for his kidney. The other boys go to Cartman's house with the plan to take one of his kidneys. Cartman thwarts their plan. Stan, depressed about the inevitable loss of his friend decides to take action into his own hands and with the help of the parents gets Cartman's kidney for Kyle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":7689},{"seriesId":104,"episodeFileId":5207,"seasonNumber":4,"episodeNumber":7,"title":"Chef Goes Nanners","airDate":"2000-07-05","airDateUtc":"2000-07-06T02:00:00Z","overview":"Chef is declaring that South Park's flag is racist. Stan & Kyle head up the team championing the current flag, while Wendy and Cartman head up the side for a new flag. Wendy ends up confessing to Bebe of her attraction to Cartman. The debate starts, but before Wendy can make her point, she kisses Cartman to regain her composure. Chef realizes that Stan & Kyle's point of view on the flag issue was colorblind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":7690},{"seriesId":104,"episodeFileId":5208,"seasonNumber":4,"episodeNumber":8,"title":"Something You Can Do with Your Finger","airDate":"2000-07-12","airDateUtc":"2000-07-13T02:00:00Z","overview":"\"Fingerbang\" is the latest boy band starring the four boys. Randy Marsh is against Stan's participation in any boy band for dark reasons. The boys land a gig at the local mall when it is threatened because there are only 4 members in the band. Stan arrives and the group is set to perform when suddenly the mall elevator tragically crushes Kenny. A former boy band member steps into the spotlight to save the gig.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":7691},{"seriesId":104,"episodeFileId":5209,"seasonNumber":4,"episodeNumber":9,"title":"Do the Handicapped Go to Hell? (1)","airDate":"2000-07-19","airDateUtc":"2000-07-20T02:00:00Z","overview":"The boys attend church and the priest puts the fear of hell in them. They must go to Sunday school and learn that they must confess their sins. The boys are worried about Timmy, after all, he can only say his name. Feeling the need to confess their sins they catch the priest in a compromising position and decide to save themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":7692},{"seriesId":104,"episodeFileId":5210,"seasonNumber":4,"episodeNumber":10,"title":"Probably (2)","airDate":"2000-07-26","airDateUtc":"2000-07-27T02:00:00Z","overview":"Cartman preaches and the children begin plans to build a church. Satan spends the night with Saddam. Kenny wasn't killed in the previous episode, but the bus that ran him over stops in Mexico, where Kenny is found. Satan, in his time of crisis turns to God for advice. Cartman is discovered as a fraud and is sent to Mexico for punishment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":7693},{"seriesId":104,"episodeFileId":5211,"seasonNumber":4,"episodeNumber":11,"title":"Fourth Grade","airDate":"2000-11-08","airDateUtc":"2000-11-09T03:00:00Z","overview":"The kids have to face the 4th grade, and they're not too happy about it. Cartman cooks up a scheme to go back in time to return to the 3rd grade where things were fun and easy. Two geeks help them rig Timmy's wheelchair into a working time machine and send Timmy on the trip of his life!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":7694},{"seriesId":104,"episodeFileId":5212,"seasonNumber":4,"episodeNumber":12,"title":"Trapper Keeper","airDate":"2000-11-15","airDateUtc":"2000-11-16T03:00:00Z","overview":"Cartman has a new Trapper Keeper (that blows Kyle's out of the water) After he's done bragging, a stranger tells him that it will soon take over the world if they don't destroy it now. Cool 2001: A Space Odyssey and Akira parodies!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":7695},{"seriesId":104,"episodeFileId":5213,"seasonNumber":4,"episodeNumber":13,"title":"Helen Keller! The Musical","airDate":"2000-11-22","airDateUtc":"2000-11-23T03:00:00Z","overview":"The boys are doing their version of the Helen Keller Story and plan to beat the kindergartners show. Timmy stars as Helen Keller and gets a new friend to play with! Fireworks, fountains, and outstanding musicals galore!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":7696},{"seriesId":104,"episodeFileId":5214,"seasonNumber":4,"episodeNumber":14,"title":"Pip","airDate":"2000-11-29","airDateUtc":"2000-11-30T03:00:00Z","overview":"This is the story of Pip's origin. Pip gets a job at the Havesham Estate where he meets Estella. She only spurns his optimism with insults. When Pip is offered the opportunity to become a gentleman he goes to London only to discover that Miss Havesham plans to break his heart. Her plan is to use Pip's tears to power her Genesis device and will allow her to gain revenge on all men.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":7697},{"seriesId":104,"episodeFileId":5215,"seasonNumber":4,"episodeNumber":15,"title":"Fat Camp","airDate":"2000-12-06","airDateUtc":"2000-12-07T03:00:00Z","overview":"Mrs. Cartman holds an intervention for her son's eating problem and is sending him to fat camp. Cartman returns from camp, 40 lbs. lighter. Cartman is selling candy to the fat kids. Kenny is challenged by the other children to do crazy things for money. Kenny's popularity rises and he soon gets his own TV show. An event happens where Kenny gets inside Ms. Crabtree's uterus for six hours.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":7698},{"seriesId":104,"episodeFileId":5216,"seasonNumber":4,"episodeNumber":16,"title":"The Wacky Molestation Adventure","airDate":"2000-12-13","airDateUtc":"2000-12-14T03:00:00Z","overview":"The \"Raging Pussies\" concert is on! Kyle calls the police and say his parents have been \"molestering\" him. Soon all the children are calling in on all the adults in South Park. Until only children live in South Park. Someone from out of town breaks down and they have the task of retrieving a book for the fat-ass. The locked-up adults of South Park get therapy to prevent them from sexually abusing their children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":7699},{"seriesId":104,"episodeFileId":5217,"seasonNumber":4,"episodeNumber":17,"title":"A Very Crappy Christmas","airDate":"2000-12-20","airDateUtc":"2000-12-21T03:00:00Z","overview":"Kyle and Ike anxiously await Mr. Hankey. When he doesn't show, Kyle calls the others for a late night emergency meeting. They find Mr. Hankey living with his alcoholic wife and their three little nuggets. He tells them that no one is into Christmas. They all decide to try and spread some Christmas cheer. Their effort fails and the boys decide to create an animated special of their own. Featuring Jesus, Santa Claus and themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":7700},{"seriesId":104,"episodeFileId":5187,"seasonNumber":5,"episodeNumber":1,"title":"It Hits the Fan","airDate":"2001-06-20","airDateUtc":"2001-06-21T02:00:00Z","overview":"The you-know-what hits the fan 162 times when the citizens of South Park hear the word \"Sh*t\" on the popular show, \"Cop Drama.\" Boffo ratings have the executives at HBC plotting further use of the curse word, as the nation is struck by a mysterious plague that unleashes the ancient Knights of Standards and Practices. Only Chef and the boys can save South Park, and the world!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":7701},{"seriesId":104,"episodeFileId":5188,"seasonNumber":5,"episodeNumber":2,"title":"Cripple Fight","airDate":"2001-06-27","airDateUtc":"2001-06-28T02:00:00Z","overview":"Big Gay Al returns to South Park, only to be thrown out as Scoutmaster to the boys for being gay. The boys rally to his defense, with the help of the new \"handi-capable\" kid, Jimmy. But there's only room for one crippled kid in South Park, so Timmy and Jimmy throw off the gloves, as well as the crutches and wheelchair, in an all out slugfest to end all slugfests.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":7702},{"seriesId":104,"episodeFileId":5189,"seasonNumber":5,"episodeNumber":3,"title":"Super Best Friends","airDate":"2001-07-04","airDateUtc":"2001-07-05T02:00:00Z","overview":"Stan, Kyle, Cartman and Kenny discover David Blaine, magician and Cult Leader. Stan finds out early that the Blainiacs are not as nice as they thought. Stan has to convince Kyle, Kenny and Cartman that they've been brainwashed... but will he get to them in time? Jesus has a few tricks up his sleeve! Super Best Friends to the rescue!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":7703},{"seriesId":104,"episodeFileId":5190,"seasonNumber":5,"episodeNumber":4,"title":"Scott Tenorman Must Die","airDate":"2001-07-11","airDateUtc":"2001-07-12T02:00:00Z","overview":"Cartman goes medieval on Scott Tenorman's ass when ginger-haired Scott tricks our supple hero into buying his pubic hair for $16.12. Radiohead guest stars and plays a role in Cartman's elaborate scheme at getting sweet revenge on his unsuspecting foe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":7704},{"seriesId":104,"episodeFileId":5191,"seasonNumber":5,"episodeNumber":5,"title":"Terrance and Phillip: Behind the Blow","airDate":"2001-07-18","airDateUtc":"2001-07-19T02:00:00Z","overview":"In the grand tradition of Wham UK, flatulant Canadian superstars, Terrance and Phillip, have broken up over creative differences. The clock is ticking as the boys struggle to reunite the fartastic duo, and recruit them in time for South Park's Earth Day festivities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":7705},{"seriesId":104,"episodeFileId":5192,"seasonNumber":5,"episodeNumber":6,"title":"Cartmanland","airDate":"2001-07-25","airDateUtc":"2001-07-26T02:00:00Z","overview":"Cartman inherits one million dollars from his grandmother, fulfilling his lifelong dream of owning his own amusement park, Cartmanland! A hemorrhoid erupts in Kyle's ass when he learns of Cartman's undeserved fortune, making him question the very existence of God, and whether there's a reason to stay alive in a world where someone like Cartman is happy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":7706},{"seriesId":104,"episodeFileId":5193,"seasonNumber":5,"episodeNumber":7,"title":"Proper Condom Use","airDate":"2001-08-01","airDateUtc":"2001-08-02T02:00:00Z","overview":"Thanks to Stan's \"handy\" work, the children of South Park must endure sex education from the unlikely duo of Mr. Mackey and Ms. Choksondik. While the two adults take their lessons to heart, the children are left frightened, mis-informed, and armed for battle against the opposite sex. Much hilarity ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":7707},{"seriesId":104,"episodeFileId":5194,"seasonNumber":5,"episodeNumber":8,"title":"Towelie","airDate":"2001-08-08","airDateUtc":"2001-08-09T02:00:00Z","overview":"The boys get a new video game system and their plans for the next 38 hours is to play it! Untill they discover Towelie, a government secret, genetically engineered towel that gets his special powers from gettin' high. When the government steals Stan's new Game Sphere the boys will stop at nothing to get it back. Losing precious gaming time they find Towelie and begin the struggle of the century.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":7708},{"seriesId":104,"episodeFileId":5195,"seasonNumber":5,"episodeNumber":9,"title":"Osama Bin Laden Has Farty Pants","airDate":"2001-11-07","airDateUtc":"2001-11-08T03:00:00Z","overview":"In the wake of the terrorist attack on the United States, the boys find themselves accidentally sent to Afghanistan, where they encounter their Afghani counterparts and try to understand why they hate Americans. While they are there they also take on the Taliban and Cartman pits his fat ass against Bin Laden himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":7709},{"seriesId":104,"episodeFileId":5196,"seasonNumber":5,"episodeNumber":10,"title":"How to Eat with Your Butt","airDate":"2001-11-14","airDateUtc":"2001-11-15T03:00:00Z","overview":"Cartman has finally gone too far when a prank involving Kenny's sweet cheeks results in him blowing a \"funny fuse.\" After a photo of Kenny's better side finds it's way onto the side of a milk carton, an unusual couple arrives in South Park to claim their missing child. Much ass kissing ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":7710},{"seriesId":104,"episodeFileId":5197,"seasonNumber":5,"episodeNumber":11,"title":"The Entity","airDate":"2001-11-21","airDateUtc":"2001-11-22T03:00:00Z","overview":"Kyle\u2019s cousin comes to town and after Kyle sees how stereotypically Jewish his cousin Kyle is, he worries about how Cartman is going to react when he meets him. Meanwhile, Mr. Garrison invents an alternative form of transportation that requires the rider to use more than just their hands and legs to control it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":7711},{"seriesId":104,"episodeFileId":5198,"seasonNumber":5,"episodeNumber":12,"title":"Here Comes the Neighborhood","airDate":"2001-11-28","airDateUtc":"2001-11-29T03:00:00Z","overview":"Feeling like an outcast for being the only rich kid in town, Token succeeds in attracting several other wealthy people to South Park. Meanwhile, the townspeople, fearing that their little hamlet is rapidly going up the drain, attempt to run the new residents out of town by any means necessary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":7712},{"seriesId":104,"episodeFileId":5199,"seasonNumber":5,"episodeNumber":13,"title":"Kenny Dies","airDate":"2001-12-05","airDateUtc":"2001-12-06T03:00:00Z","overview":"In a very special episode of South Park, Cartman fights for Kenny's life when he speaks before Congress in favor of stem cell research. Meanwhile, Stan has trouble dealing with his friend's impending demise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":7713},{"seriesId":104,"episodeFileId":5200,"seasonNumber":5,"episodeNumber":14,"title":"Butters' Very Own Episode","airDate":"2001-12-12","airDateUtc":"2001-12-13T03:00:00Z","overview":"Butters finds out what his father has been up to late at night and when his mother hears, she overreacts by trying to kill her son and then herself back at home. After returning home and forgiving her husband, she realizes what she has done to her son and they spin a story to the media to cover their tracks. Meanwhile, Butters obsesses with returning home so that he can join his parents for an anniversary dinner at Bennigan\u2019s.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":7714},{"seriesId":104,"episodeFileId":5097,"seasonNumber":6,"episodeNumber":1,"title":"Jared Has Aides","airDate":"2002-03-06","airDateUtc":"2002-03-07T03:00:00Z","overview":"The boys decide to fatten up Butters so that he can lose weight by eating at their favorite restaurant just like Jared, the sub sandwich guy. Jared, who is making an appearance in town reveals another secret to his weight loss, he has aides.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":7715},{"seriesId":104,"episodeFileId":5098,"seasonNumber":6,"episodeNumber":2,"title":"Asspen","airDate":"2002-03-13","airDateUtc":"2002-03-14T03:00:00Z","overview":"With their parents stuck in Time Share Hell, our boys are on their own on the slopes of Aspen, circa 1985. Stan gets challenged to a ski race and must win in order to save the youth center, get the girl, and free the trapped spirits of the Wakacha Vampire Indians. Not that he really cares.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":7716},{"seriesId":104,"episodeFileId":5099,"seasonNumber":6,"episodeNumber":3,"title":"Freak Strike","airDate":"2002-03-20","airDateUtc":"2002-03-21T03:00:00Z","overview":"The boys learn that disfigured people get prizes for appearing on a talk show and they sign Butters up. When the prize he gets can\u2019t be shared, Cartman has his mother join him on a segment called, \"Please Help My out of Control Child.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":7717},{"seriesId":104,"episodeFileId":5100,"seasonNumber":6,"episodeNumber":4,"title":"Fun With Veal","airDate":"2002-03-27","airDateUtc":"2002-03-28T03:00:00Z","overview":"The boys learn where veal comes from and they decide to save the calves by hiding them in Stan\u2019s room, where they all intend to stay until the calves are guaranteed their safety. During the siege Stan develops symptoms of an illness caused by his new vegan diet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":7718},{"seriesId":104,"episodeFileId":5101,"seasonNumber":6,"episodeNumber":5,"title":"The New Terrance and Phillip Movie Trailer","airDate":"2002-04-03","airDateUtc":"2002-04-04T03:00:00Z","overview":"The boys have to sit through \"The Russell Crowe Show\" in order to see the premiere of the trailer for the new Terrance and Phillip movie. Meanwhile, Chef\u2019s new TV has taken on a life of its own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":7719},{"seriesId":104,"episodeFileId":5102,"seasonNumber":6,"episodeNumber":6,"title":"Professor Chaos","airDate":"2002-04-10","airDateUtc":"2002-04-11T02:00:00Z","overview":"Butters isn\u2019t working out and Cartman, Kyle and Stan decide to fire him and hold auditions for his replacement. Becoming an outcast, Butters becomes a super-villain with plans to cause chaos wherever he goes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":7720},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Great Destinations (a.k.a. The Most Notorious Episode)","airDate":"2002-06-19","airDateUtc":"2002-06-20T02:00:00Z","overview":"In this special Matt & Trey stood in front of a waterfall and introduced \"Cartman's Mom is a Dirty Slut\" and \"Cartman's Mom is Still a Dirty Slut\" as being named by Comedy Central as the most \"notorious\" episodes of the series. Before part 2 began airing in the second half of this one hour event, they relate the story of their April Fool's joke of 1998, which didn't go over very well with the viewers, who took the need to know who Cartman's father was much too seriously.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7612},{"seriesId":104,"episodeFileId":5103,"seasonNumber":6,"episodeNumber":7,"title":"The Simpsons Already Did It","airDate":"2002-06-26","airDateUtc":"2002-06-27T02:00:00Z","overview":"Professor Chaos returns with brand new, super evil, schemes to wreak havoc on South Park; unfortunately, the Simpsons have already done them all. Meanwhile, a super secret ingredient helps Cartman's \"Sea People\" evolve at an alarming rate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":7721},{"seriesId":104,"episodeFileId":5104,"seasonNumber":6,"episodeNumber":8,"title":"Red Hot Catholic Love","airDate":"2002-07-03","airDateUtc":"2002-07-04T02:00:00Z","overview":"Father Maxi is concerned with all the molestation claims that have been placed against the Catholic Church recently. After most of his parishioners turn to Atheism as an answer, he travels to the Vatican to get some answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":7722},{"seriesId":104,"episodeFileId":5105,"seasonNumber":6,"episodeNumber":9,"title":"Free Hat","airDate":"2002-07-10","airDateUtc":"2002-07-11T02:00:00Z","overview":"The boys go out to see the new edition of Star Wars: Episode V and during the previews they find out that the movie studios are planning on re-releasing more movies with digitally enhanced effects. In an effort to stop this injustice, they go off to find Steven Spielberg and George Lucas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":7723},{"seriesId":104,"episodeFileId":5106,"seasonNumber":6,"episodeNumber":10,"title":"Bebe's Boobs Destroy Society","airDate":"2002-07-17","airDateUtc":"2002-07-18T02:00:00Z","overview":"After nearly five years and 89 episodes, it finally happens: Cartman gets kicked out of the gang. The reason? Bebe gets boobs and the boys go ape, threatening their friendships and society as we know it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":7724},{"seriesId":104,"episodeFileId":5107,"seasonNumber":6,"episodeNumber":11,"title":"Child Abduction is Not Funny","airDate":"2002-07-24","airDateUtc":"2002-07-25T02:00:00Z","overview":"In an effort to protect their children from kidnappers, the parents of South Park hire the owner and operator of the local City Wok to build a Great Wall around the city. When crazy things like Kid trackers and Mongolions come into the picture. The parents learn a very important lesson themselves about trusting strangers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":7725},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"South Park 5th Anniversary Special","airDate":"2002-09-03","airDateUtc":"2002-09-04T02:00:00Z","overview":"This was a pay-per-view cable event that features Matt & Trey celebrating their 5th anniversary \"with their favorite episodes, and a star studded party packed with celebrity guests.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7613},{"seriesId":104,"episodeFileId":5108,"seasonNumber":6,"episodeNumber":12,"title":"A Ladder to Heaven","airDate":"2002-11-06","airDateUtc":"2002-11-07T03:00:00Z","overview":"Stan, Kyle, and Cartman win all the candy they can eat in a contest. There's just one problem, Kenny had the ticket. Now to get their prize, the boys have decided to build a ladder to Heaven in order to get the ticket back from their dead friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":7726},{"seriesId":104,"episodeFileId":5109,"seasonNumber":6,"episodeNumber":13,"title":"The Return of the Fellowship of the Ring to the Two Towers","airDate":"2002-11-13","airDateUtc":"2002-11-14T03:00:00Z","overview":"The boys are on a mission: return \"The Lord of the Rings\" to the Two Towers Video Store in Conifer. But this is no ordinary copy. Butters, the evil sixth graders, and the boys' parents all try to steal the ring, er tape, from the boys. Will they succeed?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":7727},{"seriesId":104,"episodeFileId":5110,"seasonNumber":6,"episodeNumber":14,"title":"The Death Camp of Tolerance","airDate":"2002-11-20","airDateUtc":"2002-11-21T03:00:00Z","overview":"A loveable new character, Mr Slave, makes his debut as Mr. Garrison desperately tries to get fired from his new job as the boys' 4th grade teacher. Meanwhile, the boys get sent to the Deathcamp of Intolerance for not tolerating Mr. Garrison's intolerable behavior.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":7728},{"seriesId":104,"episodeFileId":5111,"seasonNumber":6,"episodeNumber":15,"title":"The Biggest Douche in the Universe","airDate":"2002-11-27","airDateUtc":"2002-11-28T03:00:00Z","overview":"When a famous psychic fails to help him exorcise Kenny from his body, Cartman takes other steps to achieve his goal. He and Chef travel to the moors of Scotland, where Chef's mom tries a little of her voodoo magic on him. Meanwhile, after the boys encounter with the TV psychic, Kyle is paralyzed with fear at the thought of members of the spirit world watching over him. Only by debunking those who claim they can communicate with the dead can Stan save Kyle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":7729},{"seriesId":104,"episodeFileId":5112,"seasonNumber":6,"episodeNumber":16,"title":"My Future Self n' Me","airDate":"2002-12-04","airDateUtc":"2002-12-05T03:00:00Z","overview":"When a 32 year old man claiming to be Stan from the future shows up in South Park, young Stan is forced to come to terms with the loser he will become. Meanwhile, South Park's own little entrepreneur, Eric Cartman is at the helm a new money making venture. Cartman is in the business of revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":7730},{"seriesId":104,"episodeFileId":5113,"seasonNumber":6,"episodeNumber":17,"title":"Red Sleigh Down","airDate":"2002-12-11","airDateUtc":"2002-12-12T03:00:00Z","overview":"In an effort to redeem himself days before Christmas, Cartman decides to bring Christmas to the Iraqis. So, along with Stan, Kyle, and Kenny they catch a ride with Mr. Hankey to the North Pole to bring Christmas to Iraq.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":7731},{"seriesId":104,"episodeFileId":5269,"seasonNumber":7,"episodeNumber":1,"title":"Cancelled","airDate":"2003-03-19","airDateUtc":"2003-03-20T03:00:00Z","overview":"The boys are at the bus stop and they seem to be reliving events that they went through 6 seasons earlier; that is Kyle \"kicking the baby\" his little brother Ike and Cartman talking about his strange dream, which the other boys identify as visitors. What's going on in South Park? Did the boys travel back in time, or is some sinister force at work?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":7732},{"seriesId":104,"episodeFileId":5270,"seasonNumber":7,"episodeNumber":2,"title":"Krazy Kripples","airDate":"2003-03-26","airDateUtc":"2003-03-27T03:00:00Z","overview":"Jimmy is tired of the entire town talking about how great that \"butthole\" Christopher Reeve is. Jimmy and Timmy decide the only real \"crips\" are those who were crippled from birth. They then decide to seek out a gang with similar feelings. It's safe to say Stan, Kyle, Cartman, and Kenny are staying out of this one.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":7733},{"seriesId":104,"episodeFileId":5271,"seasonNumber":7,"episodeNumber":3,"title":"Toilet Paper","airDate":"2003-04-02","airDateUtc":"2003-04-03T03:00:00Z","overview":"The boys are given a detention due to their attitudes in art class. Cartman decides that they need to toilet paper (TP) the art teacher's house in revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":7734},{"seriesId":104,"episodeFileId":5272,"seasonNumber":7,"episodeNumber":4,"title":"I'm A Little Bit Country","airDate":"2003-04-09","airDateUtc":"2003-04-10T02:00:00Z","overview":"After participating in a walk-out against the war in Iraq, Mr. Garrison tells the boys they have to write a report on the founding fathers. Cartman decides he's going to figure out a way to flashback to the past and learn all about history first hand.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":7735},{"seriesId":104,"episodeFileId":5273,"seasonNumber":7,"episodeNumber":5,"title":"Fat Butt and Pancake Head","airDate":"2003-04-16","airDateUtc":"2003-04-17T02:00:00Z","overview":"For a report on Cultural Diversity, Cartman chooses to do one on Latinos in the arts with the help of a Jennifer Lopez hand puppet. Later, at the mall, the puppet insists they make a music video, which launches the hand puppet's musical career. There's just one problem, the REAL J-Lo shows up to protest the hand's authenticity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":7736},{"seriesId":104,"episodeFileId":5274,"seasonNumber":7,"episodeNumber":6,"title":"Lil' Crime Stoppers","airDate":"2003-04-23","airDateUtc":"2003-04-24T02:00:00Z","overview":"The boys are playing \"junior detectives,\" and have to find a kidnapped doll. After a daring rescue, they are taken back to Park County Police Headquarters. Upon their arrival, the Chief makes them \"real\" junior detectives and gives them their first assignment: breaking up a meth lab. The boys soon learn being real detectives isn't as fun as they thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":7737},{"seriesId":104,"episodeFileId":5275,"seasonNumber":7,"episodeNumber":7,"title":"Red Man's Greed","airDate":"2003-04-30","airDateUtc":"2003-05-01T02:00:00Z","overview":"The owners of the Three Feathers Indian Casino have decided to buy out the town of South Park in order to create a super-highway from Denver to their Casino. The townfolk only have one night to make $350,000. So they head to the casino...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":7738},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Chef's Chocolate Salty Balls Music Video","airDate":"2003-06-03","airDateUtc":"2003-06-04T02:00:00Z","overview":"Chef sings \"Chef's Chocolate Salty Balls\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7616},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"VH1 Goes Inside South Park","airDate":"2003-10-17","airDateUtc":"2003-10-18T02:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7634},{"seriesId":104,"episodeFileId":5276,"seasonNumber":7,"episodeNumber":8,"title":"South Park is Gay","airDate":"2003-10-22","airDateUtc":"2003-10-23T02:00:00Z","overview":"The metrosexual fad has hit South Park thanks to the \"Queer Eye Guys,\" and all the men in town are affected, except for Kyle and his Dad. Stan, Kenny, and Cartman give Kyle a makeover, and Gerald isn't far behind. Soon the women of South Park grow tired of the fad, as does Mr. Garrison.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":7739},{"seriesId":104,"episodeFileId":5277,"seasonNumber":7,"episodeNumber":9,"title":"Christian Rock Hard","airDate":"2003-10-29","airDateUtc":"2003-10-30T03:00:00Z","overview":"The boys have hit a crossroads with their band \"Moop.\" Cartman wants the band to play Christian Rock, and leaves the band when Stan, Kyle, and Kenny don't agree. Before leaving, Cartman bets Kyle $10 that he will get a platinum album with a Christian Rock band before \"Moop\" can.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":7740},{"seriesId":104,"episodeFileId":5278,"seasonNumber":7,"episodeNumber":10,"title":"Grey Dawn","airDate":"2003-11-05","airDateUtc":"2003-11-06T03:00:00Z","overview":"Due to a rise in deaths due to senior citizens behind the wheel, the State of Colorado has revoked all the driver licenses of senior citizens. Soon after, the AARP shows up to fight for the rights of their comrades.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":7741},{"seriesId":104,"episodeFileId":5279,"seasonNumber":7,"episodeNumber":11,"title":"Casa Bonita","airDate":"2003-11-12","airDateUtc":"2003-11-13T03:00:00Z","overview":"Kyle is going to Casa Bonita for his birthday, but he can only bring three friends. He chooses Stan, Kenny, and Butters. Cartman, outraged by not being chosen, comes up with a plan to take Butters out of the picture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":7742},{"seriesId":104,"episodeFileId":5280,"seasonNumber":7,"episodeNumber":12,"title":"All About Mormons","airDate":"2003-11-19","airDateUtc":"2003-11-20T03:00:00Z","overview":"A new student, Gary Harrison, joins the 4th grade. Gary is a Mormon from Utah. The children decide he needs to get his ass kicked, and they choose Stan to do it. After an awkward exchange of words, Stan is invited to Gary's house, where he learns all about Mormons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":7743},{"seriesId":104,"episodeFileId":5281,"seasonNumber":7,"episodeNumber":13,"title":"Butt Out","airDate":"2003-12-03","airDateUtc":"2003-12-04T03:00:00Z","overview":"After seeing an auditorium presentation on the dangers of smoking (and in some ways, not smoking), the boys light up behind the school and are soon caught in the middle of Rob Reiner's Anti-Tobacco campaign.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":7744},{"seriesId":104,"episodeFileId":5282,"seasonNumber":7,"episodeNumber":14,"title":"Raisins","airDate":"2003-12-10","airDateUtc":"2003-12-11T03:00:00Z","overview":"In an effort to find some closure in breaking up with Wendy, the boys take Stan to Raisins (a junior Hooters) so he can forget about her. Meanwhile, a trip to Raisins does big things for Butters, as he falls in love with a waitress.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":7745},{"seriesId":104,"episodeFileId":5283,"seasonNumber":7,"episodeNumber":15,"title":"It's Christmas in Canada","airDate":"2003-12-17","airDateUtc":"2003-12-18T03:00:00Z","overview":"When Ike is claimed by his Canadian birth parents, the boys set out to gain an audience with the Canadian Prime Minister. Meanwhile, Cartman's biggest concern is that the boys don't spend all of Christmas in Canada.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":7746},{"seriesId":104,"episodeFileId":5318,"seasonNumber":8,"episodeNumber":1,"title":"Good Times with Weapons","airDate":"2004-03-17","airDateUtc":"2004-03-18T03:00:00Z","overview":"South Park takes on the look of Japanese Anime. The boys are transformed into Japanese Warriors after they buy martial arts weapons at a local flea market. Their sworn enemy, Professor Chaos, confronts them and a highly stylized battle ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":7747},{"seriesId":104,"episodeFileId":5319,"seasonNumber":8,"episodeNumber":2,"title":"Up the Down Steroid","airDate":"2004-03-24","airDateUtc":"2004-03-25T03:00:00Z","overview":"Jimmy is in training for an upcoming sporting event and he\u2019s determined to win at any cost. Cartman feels he can easily take first place against Jimmy. He just has to convince the qualifying committee he\u2019s handicapped.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":7748},{"seriesId":104,"episodeFileId":5320,"seasonNumber":8,"episodeNumber":3,"title":"The Passion of the Jew","airDate":"2004-03-31","airDateUtc":"2004-04-01T03:00:00Z","overview":"Kyle finally sees \u201cThe Passion\u201d and is forced to admit Cartman has been right all along. Meanwhile many of the film\u2019s hardcore fans band together under Cartman\u2019s leadership to carry out it\u2019s message.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":7749},{"seriesId":104,"episodeFileId":5321,"seasonNumber":8,"episodeNumber":4,"title":"You Got F'd in the A","airDate":"2004-04-07","airDateUtc":"2004-04-08T02:00:00Z","overview":"It\u2019s up to Stan to put a team of South Park\u2019s best dancers together to compete against a rival troupe from Orange County. While Butters has won awards for his dancing, he refuses to help Stan out, as he hasn\u2019t been able to dance since the tragic death of eight audience members at his last competition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":7750},{"seriesId":104,"episodeFileId":5322,"seasonNumber":8,"episodeNumber":5,"title":"AWESOM-O","airDate":"2004-04-14","airDateUtc":"2004-04-15T02:00:00Z","overview":"Cartman dresses up like a robot, calls himself AWESOM-O, and moves in with Butters. His plan is to learn all of Butter\u2019s innermost secrets and then use them against him. While Butters is thrilled to have found a new best friend, the Army believes AWESOM-O is some new secret weapon, and Hollywood is after the phony robot to develop their next big blockbuster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":7751},{"seriesId":104,"episodeFileId":5323,"seasonNumber":8,"episodeNumber":6,"title":"The Jeffersons","airDate":"2004-04-21","airDateUtc":"2004-04-22T02:00:00Z","overview":"All the children of South Park are attracted to Mr. Jefferson, his son and their home filled with games, toys and animals. Cartman goes out of his way to get Mr. Jefferson to love him while the local police force resent him for being black and wealthy and decide bring him down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":7752},{"seriesId":104,"episodeFileId":5324,"seasonNumber":8,"episodeNumber":7,"title":"Goobacks","airDate":"2004-04-28","airDateUtc":"2004-04-29T02:00:00Z","overview":"Humans from the year 4035 are arriving in droves in South Park! Everything gets a little too crowded when people from the future arrive through a recently discovered time portal. When the boys try to earn some extra money, the time immigrants, who are willing to do the same work for next to nothing, take their jobs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":7753},{"seriesId":104,"episodeFileId":5325,"seasonNumber":8,"episodeNumber":8,"title":"Douche and Turd","airDate":"2004-10-27","airDateUtc":"2004-10-28T02:00:00Z","overview":"When PETA demonstrates against the use of a cow as South Park Elementary\u2019s mascot, the student body is forced to choose a new one. As the election approaches, Kyle tries to convince everyone that his candidate, a giant douche, is better than Cartman\u2019s nominee, a turd sandwich.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":7754},{"seriesId":104,"episodeFileId":5326,"seasonNumber":8,"episodeNumber":9,"title":"Something Wall-Mart This Way Comes","airDate":"2004-11-03","airDateUtc":"2004-11-04T03:00:00Z","overview":"The streets of South Park are like a ghost-town when a giant Wall-Mart lures all the townspeople to the new store with its incredible bargains. Cartman becomes a boy possessed by the power of Wall-Mart and its low, low prices. In order to save their town, Stan and Kyle have to find a way to destroy the ever-expanding superstore while keeping Cartman from stabbing them in the back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":7755},{"seriesId":104,"episodeFileId":5327,"seasonNumber":8,"episodeNumber":10,"title":"Pre-School","airDate":"2004-11-10","airDateUtc":"2004-11-11T03:00:00Z","overview":"For five long years, Stan, Kyle, Kenny, Cartman and Butters have kept a secret about a horrible incident that happened back in pre-school. Now, the kid who took the fall for the group, Trent Boyett, is getting out of juvie and his first order of business is revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":7756},{"seriesId":104,"episodeFileId":5328,"seasonNumber":8,"episodeNumber":11,"title":"Quest for Ratings","airDate":"2004-11-17","airDateUtc":"2004-11-18T03:00:00Z","overview":"The boys of South Park produce their own morning news show on the school\u2019s closed-circuit television station and are immediately caught up in the intense competition for ratings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":7757},{"seriesId":104,"episodeFileId":5329,"seasonNumber":8,"episodeNumber":12,"title":"Stupid Spoiled Whore Video Playset","airDate":"2004-12-01","airDateUtc":"2004-12-02T03:00:00Z","overview":"All the fourth grade girls idolize a rich, famous and spoiled socialite. They even have her brand new toy set that comes complete with video camera, night vision filter, play money and losable cell phone. In an effort to impress their idol, the girls pursue the boys to make their own videos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":7758},{"seriesId":104,"episodeFileId":5330,"seasonNumber":8,"episodeNumber":13,"title":"Cartman's Incredible Gift","airDate":"2004-12-08","airDateUtc":"2004-12-09T03:00:00Z","overview":"After sustaining a severe head injury, Cartman appears to have the power to see into the future. South Park detectives are quick to enlist his help in cracking unsolved murder cases and Cartman is more than willing to help, for a price. In the meantime, a group of licensed psychics cry foul when Cartman refuses to join their ranks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":7759},{"seriesId":104,"episodeFileId":5331,"seasonNumber":8,"episodeNumber":14,"title":"Woodland Critter Christmas","airDate":"2004-12-15","airDateUtc":"2004-12-16T03:00:00Z","overview":"Stan is approached by the forest critters and asked to help them build a manger in anticipation of the birth of their Lord and Savior. Stan complies, only to find out that they serve a very different Lord.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":7760},{"seriesId":104,"episodeFileId":5476,"seasonNumber":9,"episodeNumber":1,"title":"Mr. Garrison's Fancy New Vagina","airDate":"2005-03-09","airDateUtc":"2005-03-10T03:00:00Z","overview":"Mr. Garrison goes to great lengths to get what he\u2019s always wanted\u2026a sex change. As he enjoys his new womanly attributes, the rest of the town gets in touch with their inner feelings too. Meanwhile, Kyle wrestles with the fact that Jews just aren\u2019t good at basketball.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":7761},{"seriesId":104,"episodeFileId":5477,"seasonNumber":9,"episodeNumber":2,"title":"Die Hippie, Die","airDate":"2005-03-16","airDateUtc":"2005-03-17T03:00:00Z","overview":"Cartman seeks to rid the world of hippies once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":7762},{"seriesId":104,"episodeFileId":5478,"seasonNumber":9,"episodeNumber":3,"title":"Wing","airDate":"2005-03-23","airDateUtc":"2005-03-24T03:00:00Z","overview":"As talent agents, Cartman, Stan, Kyle and Kenny can bank 10% of their client\u2019s earnings. After they pool all their resources to impress their one and only client, another agency steals him away. Desperate to earn their money back, they take on another client with plans to launch her on a new reality show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":7763},{"seriesId":104,"episodeFileId":5479,"seasonNumber":9,"episodeNumber":4,"title":"Best Friends Forever","airDate":"2005-03-30","airDateUtc":"2005-03-31T03:00:00Z","overview":"Kenny is the only one of his friends to get the newest, coolest portable gaming device and Cartman can\u2019t deal with it. Will they remain best friends forever?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":7764},{"seriesId":104,"episodeFileId":5480,"seasonNumber":9,"episodeNumber":5,"title":"The Losing Edge","airDate":"2005-04-06","airDateUtc":"2005-04-07T02:00:00Z","overview":"If the boys can lose just one baseball game, it gets them out of playing the boring sport for the entire summer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":130,"unverifiedSceneNumbering":false,"id":7765},{"seriesId":104,"episodeFileId":5481,"seasonNumber":9,"episodeNumber":6,"title":"The Death of Eric Cartman","airDate":"2005-04-13","airDateUtc":"2005-04-14T02:00:00Z","overview":"Butters is freaked out when he thinks he can communicate with the dead. Although his parents have made it clear to him there are no such things as ghosts, Butters is sure one is haunting him. Butters knows he has to give up his ghost pal or be put into a mental institution.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":7766},{"seriesId":104,"episodeFileId":5482,"seasonNumber":9,"episodeNumber":7,"title":"Erection Day","airDate":"2005-04-20","airDateUtc":"2005-04-21T02:00:00Z","overview":"All the kids are getting ready for the big South Park Elementary Talent Show and Jimmy can\u2019t wait to perform his new comedy routines. But lately, just like generations of little boys before him, Jimmy\u2019s noticed that one of his body parts has a mind of its own. Knowing he can\u2019t get up in front of the entire school in an excited state, Jimmy must find a way to gain control of his raging hormones in time to perform in the show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":7767},{"seriesId":104,"episodeFileId":5483,"seasonNumber":9,"episodeNumber":8,"title":"Two Days Before the Day After Tomorrow","airDate":"2005-10-19","airDateUtc":"2005-10-20T02:00:00Z","overview":"A global warming state of emergency is declared in South Park. The world\u2019s largest beaver dam breaks and floods the adjacent town of Beaverton. As the victims wait for help to arrive, everyone in South Park tackles priority number one: who is to blame? Only Stan and Cartman know who\u2019s really at fault.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":7768},{"seriesId":104,"episodeFileId":5484,"seasonNumber":9,"episodeNumber":9,"title":"Marjorine","airDate":"2005-10-26","airDateUtc":"2005-10-27T02:00:00Z","overview":"The 4th grade girls are having a sleepover. It\u2019s imperative that the boys find out what goes on behind those closed doors. Butters is picked to be the boy who must fake his death, become a girl and infiltrate this age-old feminine tradition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":7769},{"seriesId":104,"episodeFileId":5485,"seasonNumber":9,"episodeNumber":10,"title":"Follow That Egg","airDate":"2005-11-02","airDateUtc":"2005-11-03T03:00:00Z","overview":"Mrs. Garrison realizes he still has feelings for Mr. Slave. But, Mr. Slave has moved on. He plans to marry his new love as soon as the Governor signs the same-sex marriage bill. Mrs. Garrison leads the charge against gay marriage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":7770},{"seriesId":104,"episodeFileId":5486,"seasonNumber":9,"episodeNumber":11,"title":"Ginger Kids","airDate":"2005-11-09","airDateUtc":"2005-11-10T03:00:00Z","overview":"Cartman suffers from a mysterious and sudden on-set of the disease, Gingervitus. Sick and tired of being ripped-on because he now has red hair, light skin and freckles, he rallies all ginger kids everywhere to fight against discrimination.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":7771},{"seriesId":104,"episodeFileId":5487,"seasonNumber":9,"episodeNumber":12,"title":"Trapped in the Closet","airDate":"2005-11-16","airDateUtc":"2005-11-17T03:00:00Z","overview":"Religious leaders recognize Stan as the second coming and a whole soap opera unfolds with the help of a famous R&B singer. The results of Stan\u2019s personality test reveal that he\u2019s depressed. While Stan looks to a new religion for answers, the church leaders recognize Stan as the second coming. Some A-List Hollywood celebrities join the faithful who have set up camp right in front of Stan\u2019s house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":7772},{"seriesId":104,"episodeFileId":5488,"seasonNumber":9,"episodeNumber":13,"title":"Free Willzyx","airDate":"2005-11-30","airDateUtc":"2005-12-01T03:00:00Z","overview":"A \u201ctalking\u201d whale inspires the fourth-graders to risk everything to return him to his family. With the police on their tails, the boys enlist the help of a foreign government and embark upon an adventure you\u2019ll not soon forget. One in which the boys learn just how far you would go for a friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":7773},{"seriesId":104,"episodeFileId":5489,"seasonNumber":9,"episodeNumber":14,"title":"Bloody Mary","airDate":"2005-12-07","airDateUtc":"2005-12-08T03:00:00Z","overview":"Stan is embarrassed in front of his friends when his dad gets pulled over for drunk driving. In a neighboring town, a bleeding statue of Mary is discovered and the faithful are flocking to the site hoping to be healed. Stan\u2019s dad is sure the bleeding Virgin can cure him of his disease.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":7774},{"seriesId":104,"episodeFileId":5415,"seasonNumber":10,"episodeNumber":1,"title":"The Return of Chef","airDate":"2006-03-22","airDateUtc":"2006-03-23T03:00:00Z","overview":"The town is excited when Chef returns to town after world traveling with the \u201cSuper Adventure Club,\u201d but the boys notice something is different about Chef. It seems that Chef\u2019s new sense of adventure has gotten the better of him and the boys try to save him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":140,"unverifiedSceneNumbering":false,"id":7775},{"seriesId":104,"episodeFileId":5416,"seasonNumber":10,"episodeNumber":2,"title":"Smug Alert","airDate":"2006-03-29","airDateUtc":"2006-03-30T03:00:00Z","overview":"Stan is the driving force who gets the citizens of South Park to all buy hybrid cars. Just as everyone starts to feel really good about what they\u2019re doing to help save the earth, a stormy dark mass has started accumulating over the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":141,"unverifiedSceneNumbering":false,"id":7776},{"seriesId":104,"episodeFileId":5417,"seasonNumber":10,"episodeNumber":3,"title":"Cartoon Wars (1)","airDate":"2006-04-05","airDateUtc":"2006-04-06T02:00:00Z","overview":"Cartman and Kyle are at war over the popular cartoon, Family Guy. Kyle loves it and Cartman hates it. When the show airs some controversial content the boys go on a cross country chase with the fate of Family Guy lying with the first boy to reach Hollywood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":142,"unverifiedSceneNumbering":false,"id":7777},{"seriesId":104,"episodeFileId":5418,"seasonNumber":10,"episodeNumber":4,"title":"Cartoon Wars (2)","airDate":"2006-04-12","airDateUtc":"2006-04-13T02:00:00Z","overview":"With Kyle left behind, Cartman makes his way to FOX to get the Family Guy episode pulled, hoping to ultimately get rid of the show once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":143,"unverifiedSceneNumbering":false,"id":7778},{"seriesId":104,"episodeFileId":5419,"seasonNumber":10,"episodeNumber":5,"title":"A Million Little Fibers","airDate":"2006-04-19","airDateUtc":"2006-04-20T02:00:00Z","overview":"Towelie writes a book and it gets selected for Oprah\u2019s book club. It becomes a best seller with everyone getting a lot help for their addictions; until a faction of Oprah's staff leak the truth about the book.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":144,"unverifiedSceneNumbering":false,"id":7779},{"seriesId":104,"episodeFileId":5420,"seasonNumber":10,"episodeNumber":6,"title":"Manbearpig","airDate":"2006-04-26","airDateUtc":"2006-04-27T02:00:00Z","overview":"While assisting an ex-Vice President in his quest for attention, the boys get trapped by a cave-in and while searching for a way out, Cartman discovers treasure. Now he has to figure out how to get out of the cave without the others knowing about it and he can keep it all for himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":145,"unverifiedSceneNumbering":false,"id":7780},{"seriesId":104,"episodeFileId":5421,"seasonNumber":10,"episodeNumber":7,"title":"Tsst","airDate":"2006-05-03","airDateUtc":"2006-05-04T02:00:00Z","overview":"When Cartman's mom realizes she can't control her son anymore, she gets help from an expert. Cesar Millan, \u201cThe Dog Whisperer\" takes on the challenge and while he might have what it takes, Eric Cartman's not going down without a fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":146,"unverifiedSceneNumbering":false,"id":7781},{"seriesId":104,"episodeFileId":5422,"seasonNumber":10,"episodeNumber":8,"title":"Make Love, Not Warcraft","airDate":"2006-10-04","airDateUtc":"2006-10-05T02:00:00Z","overview":"A renegade player threatens the Massively Multiplayer Online game World of Warcraft and the fate of the game lay in the hands of Cartman, Kyle, Stan and Kenny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":147,"unverifiedSceneNumbering":false,"id":7782},{"seriesId":104,"episodeFileId":5423,"seasonNumber":10,"episodeNumber":9,"title":"Mystery of the Urinal Deuce","airDate":"2006-10-11","airDateUtc":"2006-10-12T02:00:00Z","overview":"Cartman reveals who masterminded the attacks of 9\/11, while Kyle and Stan search for the real truth; meanwhile Mr. Mackey just wants to know who dropped the deuce in the urinal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":7783},{"seriesId":104,"episodeFileId":5424,"seasonNumber":10,"episodeNumber":10,"title":"Miss Teacher Bangs a Boy","airDate":"2006-10-18","airDateUtc":"2006-10-19T02:00:00Z","overview":"Cartman, South Park Elementary\u2019s new hallway monitor, takes it personally when he finds out that a teacher has been kissing a student in his jurisdiction. He helps Kyle stop his little brother\u2019s affair with his \u201cNice\u201d hot teacher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":7784},{"seriesId":104,"episodeFileId":5425,"seasonNumber":10,"episodeNumber":11,"title":"Hell on Earth 2006","airDate":"2006-10-25","airDateUtc":"2006-10-26T02:00:00Z","overview":"Satan is throwing the world's biggest Halloween costume party, and no one is getting in without a blue wrist band. Unfortunately, even Satan can't plan for everything as a religious organization and the antics of the most notorious serial killers of all time might ruin his good time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":7785},{"seriesId":104,"episodeFileId":5426,"seasonNumber":10,"episodeNumber":12,"title":"Go God Go","airDate":"2006-11-01","airDateUtc":"2006-11-02T03:00:00Z","overview":"The topic of evolution is introduced to the 4th graders of South Park Elementary and while their teacher is against the theory a change of mind has implications for the future. And speaking of the future, Cartman is trying to send himself there; to the exact date that the newest video game console, the Nintendo Wii is being released.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":151,"unverifiedSceneNumbering":false,"id":7786},{"seriesId":104,"episodeFileId":5427,"seasonNumber":10,"episodeNumber":13,"title":"Go God Go XII","airDate":"2006-11-08","airDateUtc":"2006-11-09T03:00:00Z","overview":"Last week, in an attempt to make his wait for the Wii instantaneous, Cartman froze himself. Through a bizarre twist of fate, he wakes up 500 years in the future, where there are warring factions, some angry sea otters, and worst of all: No Nintendo Wii! Will Cartman get out of this crazy future? Or will he be doomed to never get his hands on the Wii?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":152,"unverifiedSceneNumbering":false,"id":7787},{"seriesId":104,"episodeFileId":5428,"seasonNumber":10,"episodeNumber":14,"title":"Stanley's Cup","airDate":"2006-11-15","airDateUtc":"2006-11-16T03:00:00Z","overview":"Stan becomes coach of a Pee Wee Hockey team and for the benefit of one his players he tries to make them into a team of winners. Meanwhile his father deals with the memory of Stan\u2019s performance in a Pee Wee hockey game from years earlier, when Stan had the opportunity to score the game winning goal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":153,"unverifiedSceneNumbering":false,"id":7788},{"seriesId":104,"episodeFileId":5173,"seasonNumber":11,"episodeNumber":1,"title":"With Apologies to Jesse Jackson","airDate":"2007-03-07","airDateUtc":"2007-03-08T03:00:00Z","overview":"Randy uses the \"N\" word on live TV and faces public ridicule for it and Stan tries to understand Token's feelings on the subject. Meanwhile, a little person visits South Park Elementary and Cartman can't stop himself from laughing at him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":7789},{"seriesId":104,"episodeFileId":5174,"seasonNumber":11,"episodeNumber":2,"title":"Cartman Sucks","airDate":"2007-03-14","airDateUtc":"2007-03-15T02:00:00Z","overview":"Butters' dad sends him off to special camp to \"Pray the Gay Away\" when he believes that his son is bi-curious after catching him in a compromising position with Cartman. Meanwhile, Cartman does his best to retrieve a photo of him in that compromising position before too many people find out about it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":7790},{"seriesId":104,"episodeFileId":5175,"seasonNumber":11,"episodeNumber":3,"title":"Lice Capades","airDate":"2007-03-21","airDateUtc":"2007-03-22T02:00:00Z","overview":"When a breakout of headlice hits South Park Elementary, Mrs. Garrison refuses to say which child brought the plague to the school. So, Cartman takes it upon himself to find out who it is so the kids can make fun of them. Meanwhile, a louse Travis, is desperate to save his fellow lice from imminent destruction from a conscious world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":7791},{"seriesId":104,"episodeFileId":5176,"seasonNumber":11,"episodeNumber":4,"title":"The Snuke","airDate":"2007-03-28","airDateUtc":"2007-03-29T02:00:00Z","overview":"The citizens of South Park are gearing up for the arrrival of Hillary Clinton for a big campaign rally. Meanwhile, Cartman suspects that a new Muslim student is involved in a possible terrorist attack. Every minute counts for Cartman as he uses his own interrogation methods on his suspect. But could the plan to target Clinton be just the tip of the iceberg?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":7792},{"seriesId":104,"episodeFileId":5177,"seasonNumber":11,"episodeNumber":5,"title":"Fantastic Easter Special","airDate":"2007-04-04","airDateUtc":"2007-04-05T02:00:00Z","overview":"Stan wants to know the real reason kids have to decorate eggs for Easter, and what, if anything eggs and bunnies have to do with Jesus dying for his sins. To get to the bottom of it, Kyle and Stan get wrapped up in a bizarre society that guards a legendary secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":158,"unverifiedSceneNumbering":false,"id":7793},{"seriesId":104,"episodeFileId":5178,"seasonNumber":11,"episodeNumber":6,"title":"D-Yikes!","airDate":"2007-04-11","airDateUtc":"2007-04-12T02:00:00Z","overview":"Once again Ms. Garrison gets dumped, but this time she decides to take it out on her fourth grade class. When the boys have finally had enough of their teacher's erratic mood swings and excessive homework assignments, they find out that there are people-for-hire that can help out in any situation. Meanwhile, Ms. Garrison is finding life without men has its upsides.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":159,"unverifiedSceneNumbering":false,"id":7794},{"seriesId":104,"episodeFileId":5179,"seasonNumber":11,"episodeNumber":7,"title":"Night of the Living Homeless","airDate":"2007-04-18","airDateUtc":"2007-04-19T02:00:00Z","overview":"The number of homeless people in South Park is increasing as they eat, sleep, and beg for change across the town. While the adults try to find creative solutions to deal with the homeless, the boys are trying to figure out a way to solve the problem for good","hasFile":true,"monitored":true,"absoluteEpisodeNumber":160,"unverifiedSceneNumbering":false,"id":7795},{"seriesId":104,"episodeFileId":5180,"seasonNumber":11,"episodeNumber":8,"title":"Le Petit Tourette","airDate":"2007-10-03","airDateUtc":"2007-10-04T02:00:00Z","overview":"Upon discovering Tourette's syndrome, Cartman becomes mad with power. He finds out he has the ability to say whatever he wants without consequence, so he sets up National TV Coverage to take full advantage of his new found life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":161,"unverifiedSceneNumbering":false,"id":7796},{"seriesId":104,"episodeFileId":5181,"seasonNumber":11,"episodeNumber":9,"title":"More Crap","airDate":"2007-10-10","airDateUtc":"2007-10-11T02:00:00Z","overview":"Stan's dad becomes South Park's home-town hero when the guys down at the local bar see the size of his most recent crap. Randy contacts a society that keeps track of the world record, thinking his masterpiece would definitely be a contender.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":162,"unverifiedSceneNumbering":false,"id":7797},{"seriesId":104,"episodeFileId":5182,"seasonNumber":11,"episodeNumber":10,"title":"Imaginationland","airDate":"2007-10-17","airDateUtc":"2007-10-18T02:00:00Z","overview":"When the entire contents of the world's imagination lay open before them, Stan and Kyle step right in. Back in South Park, Cartman swears he's seen a leprechaun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":163,"unverifiedSceneNumbering":false,"id":7798},{"seriesId":104,"episodeFileId":5183,"seasonNumber":11,"episodeNumber":11,"title":"Imaginationland, Episode II","airDate":"2007-10-24","airDateUtc":"2007-10-25T02:00:00Z","overview":"Stan and Kyle are being held captive at the Pentagon until they tell the government exactly how they got into Imaginationland. Elsewhere, Cartman will not give up his quest to make Kyle follow through on their bet to suck his balls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":164,"unverifiedSceneNumbering":false,"id":7799},{"seriesId":104,"episodeFileId":5184,"seasonNumber":11,"episodeNumber":12,"title":"Imaginationland, Episode III","airDate":"2007-10-31","airDateUtc":"2007-11-01T02:00:00Z","overview":"Inside Imaginationland, Stan and Butters engage in the battle of their lives as they fight the army of evil imaginary forces. Meanwhile, Cartman goes all the way to the Supreme Court to get Kyle to suck his balls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":165,"unverifiedSceneNumbering":false,"id":7800},{"seriesId":104,"episodeFileId":5185,"seasonNumber":11,"episodeNumber":13,"title":"Guitar Queer-o","airDate":"2007-11-07","airDateUtc":"2007-11-08T03:00:00Z","overview":"Stan and Kyle become obsessed with Guitar Hero to the point where they're breaking high score records. It doesn't take long for Stan to realize that he could go even further with a different partner. Will the stress of being a rock star get to Stan now that his best friend is no longer by his side?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":166,"unverifiedSceneNumbering":false,"id":7801},{"seriesId":104,"episodeFileId":5186,"seasonNumber":11,"episodeNumber":14,"title":"The List","airDate":"2007-11-14","airDateUtc":"2007-11-15T03:00:00Z","overview":"The girls in the fourth grade class have made a secret list that rates every boy's looks from cutest to ugliest. When the boys steal the list, they are completely unprepared to deal with the results.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":167,"unverifiedSceneNumbering":false,"id":7802},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Imaginationland (Uncensored Director's Cut)","airDate":"2008-03-12","airDateUtc":"2008-03-13T02:00:00Z","overview":"In this never-before-seen Director's Cut the doors of the world s imagination are thrown wide open and the boys of South Park are transported to a magical realm in their greatest odyssey ever. Stan Kyle and Butters find themselves in Imaginationland just as terrorists launch an attack that unleashes all of mankind s most evil characters imaginable. With the world s imaginations spinning out of control the government prepares to nuke Imaginationland to put an end to the chaos. Racing against time to prevent nuclear annihilation the citizens of Imaginationland realize their only hope of salvation lies in the mind of the unlikeliest hero: Butters. Ignoring the impending apocalypse Cartman goes all the way to the Supreme Court to get justice for his case of dry balls.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7611},{"seriesId":104,"episodeFileId":5159,"seasonNumber":12,"episodeNumber":1,"title":"Tonsil Trouble","airDate":"2008-03-12","airDateUtc":"2008-03-13T02:00:00Z","overview":"After going in for a routine tonsillectomy, a botched transfusion leaves Cartman afflicted with an incurable disease. When he finds no comfort in his friends and family, how far will he go to find a cure?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":168,"unverifiedSceneNumbering":false,"id":7803},{"seriesId":104,"episodeFileId":5160,"seasonNumber":12,"episodeNumber":2,"title":"Britney's New Look","airDate":"2008-03-19","airDateUtc":"2008-03-20T02:00:00Z","overview":"While trying to escape her troubles in the secluded mountains near South Park, Britney Spears has a run-in with the boys. Stan and Kyle get swept up in her celebrity as well as the non-stop feeding frenzy that plagues her wherever she goes. The boys must take Britney to the North Pole when they learn the secret behind what makes her so popular.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":169,"unverifiedSceneNumbering":false,"id":7804},{"seriesId":104,"episodeFileId":5161,"seasonNumber":12,"episodeNumber":3,"title":"Major Boobage","airDate":"2008-03-26","airDateUtc":"2008-03-27T02:00:00Z","overview":"In a South Park homage to the 1981 film, \u201cHeavy Metal\u201d, the boys are trying to get Kenny off the latest drug craze that\u2019s captured the junior high and under set.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":170,"unverifiedSceneNumbering":false,"id":7805},{"seriesId":104,"episodeFileId":5162,"seasonNumber":12,"episodeNumber":4,"title":"Canada on Strike","airDate":"2008-04-02","airDateUtc":"2008-04-03T02:00:00Z","overview":"The head of the World Canadian Bureau leads the country into a long and painful strike and the responsibility of brokering a settlement rests with the boys.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":171,"unverifiedSceneNumbering":false,"id":7806},{"seriesId":104,"episodeFileId":5163,"seasonNumber":12,"episodeNumber":5,"title":"Eek, A Penis!","airDate":"2008-04-09","airDateUtc":"2008-04-10T02:00:00Z","overview":"While Ms. Garrison is off trying to find a way to become the man he was always intended to be, Cartman is put in charge of the classroom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":172,"unverifiedSceneNumbering":false,"id":7807},{"seriesId":104,"episodeFileId":5164,"seasonNumber":12,"episodeNumber":6,"title":"Over Logging","airDate":"2008-04-16","airDateUtc":"2008-04-17T02:00:00Z","overview":"The citizens of South Park wake up one morning shocked to find the Internet is gone. Upon hearing news that the Internet may remain in California, Randy decides to head out west with the family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":173,"unverifiedSceneNumbering":false,"id":7808},{"seriesId":104,"episodeFileId":5165,"seasonNumber":12,"episodeNumber":7,"title":"Super Fun Time","airDate":"2008-04-23","airDateUtc":"2008-04-24T02:00:00Z","overview":"While the kids are on an educational field trip to a living museum, Cartman makes Butters sneak away from the class to go to the amusement center located next door.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":174,"unverifiedSceneNumbering":false,"id":7809},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Behind the Scenes of Major Boobage","airDate":"2008-06-25","airDateUtc":"2008-06-26T02:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7623},{"seriesId":104,"episodeFileId":5166,"seasonNumber":12,"episodeNumber":8,"title":"The China Probrem","airDate":"2008-10-08","airDateUtc":"2008-10-09T02:00:00Z","overview":"After watching the intimidating opening ceremonies of the recent Olympic games, Cartman understands that the Chinese are only just days away from invading his homeland. While the rest of the American people are haunted by the memory of a recent tragic event, only Butters will stand with Cartman as he confronts the Chinese.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":175,"unverifiedSceneNumbering":false,"id":7810},{"seriesId":104,"episodeFileId":5167,"seasonNumber":12,"episodeNumber":9,"title":"Breast Cancer Show Ever","airDate":"2008-10-15","airDateUtc":"2008-10-16T02:00:00Z","overview":"Wendy gets in trouble when she threatens to beat up Cartman after school. No matter how fired up Wendy is, all bets are on Cartman. Everybody knows a girl can't fight a boy and win.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":176,"unverifiedSceneNumbering":false,"id":7811},{"seriesId":104,"episodeFileId":5168,"seasonNumber":12,"episodeNumber":10,"title":"Pandemic (1)","airDate":"2008-10-22","airDateUtc":"2008-10-23T02:00:00Z","overview":"The boys find a way to make money off an international crisis that requires no talent and very little effort. Cartman convinces the other boys to invite Craig to get in on their latest plan. He knows Craig has just what it takes to make their dream a reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":177,"unverifiedSceneNumbering":false,"id":7812},{"seriesId":104,"episodeFileId":5169,"seasonNumber":12,"episodeNumber":11,"title":"Pandemic 2: The Startling (2)","airDate":"2008-10-29","airDateUtc":"2008-10-30T02:00:00Z","overview":"Giant guinea pigs are attacking cities all over the world. The boys have the key that will save everyone from the onslaught but they're stranded in the Andes Mountains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":178,"unverifiedSceneNumbering":false,"id":7813},{"seriesId":104,"episodeFileId":5170,"seasonNumber":12,"episodeNumber":12,"title":"About Last Night...","airDate":"2008-11-05","airDateUtc":"2008-11-06T03:00:00Z","overview":"While the country celebrates the outcome of the election, the new President-elect catches everyone off guard when he arrives at the White House prematurely.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":179,"unverifiedSceneNumbering":false,"id":7814},{"seriesId":104,"episodeFileId":5171,"seasonNumber":12,"episodeNumber":13,"title":"Elementary School Musical","airDate":"2008-11-12","airDateUtc":"2008-11-13T03:00:00Z","overview":"Stan realizes he could lose Wendy if he doesn't get on board with the latest fad to hit South Park Elementary. Cartman would rather kill himself than succumb. But, when Stan, Kyle, Kenny and Cartman all realize that Butters is now more popular than they are, they have no choice but to give in to peer pressure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":180,"unverifiedSceneNumbering":false,"id":7815},{"seriesId":104,"episodeFileId":5172,"seasonNumber":12,"episodeNumber":14,"title":"The Ungroundable","airDate":"2008-11-19","airDateUtc":"2008-11-20T03:00:00Z","overview":"Butters is sure he\u2019s seen a vampire at school but he can\u2019t get anyone to listen to him. Meanwhile, the Goth Kids are angry and frustrated when the other kids can\u2019t tell the difference between a Goth and a Vampire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":181,"unverifiedSceneNumbering":false,"id":7816},{"seriesId":104,"episodeFileId":5218,"seasonNumber":13,"episodeNumber":1,"title":"The Ring","airDate":"2009-03-11","airDateUtc":"2009-03-12T02:00:00Z","overview":"Thinking it's his way into her heart and other body parts, Kenny takes his new girlfriend to a Jonas Brothers concert. His dream of taking their relationship to the next level is crushed when the Jonas Brothers give them purity rings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":182,"unverifiedSceneNumbering":false,"id":7817},{"seriesId":104,"episodeFileId":5219,"seasonNumber":13,"episodeNumber":2,"title":"The Coon","airDate":"2009-03-18","airDateUtc":"2009-03-19T02:00:00Z","overview":"\u201cThe Coon\u201d rises from the trash and takes his place as a lone vigilante who wipes out crime in the town of South Park. A rival superhero appears on the scene in the form of \u201cMysterion\u201d and challenges the Coon\u2019s place as a \u201csymbol\u201d for the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":183,"unverifiedSceneNumbering":false,"id":7818},{"seriesId":104,"episodeFileId":5220,"seasonNumber":13,"episodeNumber":3,"title":"Margaritaville","airDate":"2009-03-25","airDateUtc":"2009-03-26T02:00:00Z","overview":"Randy steps forward with a solution to fix the desperate financial state everyone finds themselves in. The town gets behind him and everyone starts to live a life that no longer depends on any economy at all. Meanwhile an unlikely savior makes the ultimate sacrifice to solve everyone\u2019s problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":184,"unverifiedSceneNumbering":false,"id":7819},{"seriesId":104,"episodeFileId":5221,"seasonNumber":13,"episodeNumber":4,"title":"Eat, Pray, Queef","airDate":"2009-04-01","airDateUtc":"2009-04-02T02:00:00Z","overview":"Someone played an April Fools joke on the boys and it didn't go over well. Butters is incapacitated, Cartman is furious and the rest of the boys are afraid someone might do it again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":185,"unverifiedSceneNumbering":false,"id":7820},{"seriesId":104,"episodeFileId":5222,"seasonNumber":13,"episodeNumber":5,"title":"Fishsticks","airDate":"2009-04-08","airDateUtc":"2009-04-09T02:00:00Z","overview":"Cartman decides to help Jimmy with his comedy routine. Everyone loves the new joke they come up with. The joke starts to take off and it even hits all the late night talk shows. The boys are thrilled with how popular it\u2019s become until somebody tries to take all the credit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":186,"unverifiedSceneNumbering":false,"id":7821},{"seriesId":104,"episodeFileId":5223,"seasonNumber":13,"episodeNumber":6,"title":"Pinewood Derby","airDate":"2009-04-15","airDateUtc":"2009-04-16T02:00:00Z","overview":"Randy is determined that Stan will win this year's Pinewood Derby. He comes up with a plan that will assure Stan a first place trophy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":187,"unverifiedSceneNumbering":false,"id":7822},{"seriesId":104,"episodeFileId":5224,"seasonNumber":13,"episodeNumber":7,"title":"Fatbeard","airDate":"2009-04-22","airDateUtc":"2009-04-23T02:00:00Z","overview":"Butters and a small group of recruits join Cartman in his dream of living on skull island. Cartman promises that paradise awaits if they can just get to Somalia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":188,"unverifiedSceneNumbering":false,"id":7823},{"seriesId":104,"episodeFileId":5225,"seasonNumber":13,"episodeNumber":8,"title":"Dead Celebrities","airDate":"2009-10-07","airDateUtc":"2009-10-08T02:00:00Z","overview":"Powerful forces are tormenting Ike. He's freaked out and the stress could kill him. Kyle and the boys are doing everything they can to save him but the poltergeists won't leave Ike alone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":189,"unverifiedSceneNumbering":false,"id":7824},{"seriesId":104,"episodeFileId":5226,"seasonNumber":13,"episodeNumber":9,"title":"Butters' Bottom Bitch","airDate":"2009-10-14","airDateUtc":"2009-10-15T02:00:00Z","overview":"Butters has made it all the way to the 4th grade without ever kissing a girl. All of his friends have been teasing him mercilessly. Butters is determined to catch up with the rest of the boys in his class. Meanwhile, one overly dedicated cop wages war on prostitution in South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":190,"unverifiedSceneNumbering":false,"id":7825},{"seriesId":104,"episodeFileId":5227,"seasonNumber":13,"episodeNumber":10,"title":"W.T.F.","airDate":"2009-10-21","airDateUtc":"2009-10-22T02:00:00Z","overview":"The boys have found their new calling in life and they hurry to sign up for the wrestling club. They soon find out the kind of wrestling they teach at school is not the same thing they saw at the WWE.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":191,"unverifiedSceneNumbering":false,"id":7826},{"seriesId":104,"episodeFileId":5228,"seasonNumber":13,"episodeNumber":11,"title":"Whale Whores","airDate":"2009-10-28","airDateUtc":"2009-10-29T02:00:00Z","overview":"Stan and his family are spending his birthday at the Denver Aquarium where they will get to swim with the dolphins. Things turn bloody when the Japanese attack, kill all the dolphins and ruin Stan\u2019s big day. There seems to be no end to the senseless killing. Stan takes on the cause to save the dolphins from the Japanese.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":192,"unverifiedSceneNumbering":false,"id":7827},{"seriesId":104,"episodeFileId":5229,"seasonNumber":13,"episodeNumber":12,"title":"The F Word","airDate":"2009-11-04","airDateUtc":"2009-11-05T03:00:00Z","overview":"Everyone agrees they've had enough of the loud and obnoxious bikers that have arrived in South Park. The boys are taking on the Harley Riders. They thrown down the F word and the game is on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":193,"unverifiedSceneNumbering":false,"id":7828},{"seriesId":104,"episodeFileId":5230,"seasonNumber":13,"episodeNumber":13,"title":"Dances With Smurfs","airDate":"2009-11-11","airDateUtc":"2009-11-12T03:00:00Z","overview":"Eric Cartman seizes the opportunity to become the voice of change at the school when he takes over the morning announcements. His target is South Park Elementary\u2019s Student Body President, Wendy Testaburger. Cartman is asking the tough questions and gaining followers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":194,"unverifiedSceneNumbering":false,"id":7829},{"seriesId":104,"episodeFileId":5231,"seasonNumber":13,"episodeNumber":14,"title":"Pee","airDate":"2009-11-18","airDateUtc":"2009-11-19T03:00:00Z","overview":"Things at the water park are not what they seem. The boys' fun filled day is about to turn deadly. Events are in play at Splash Town that signal the end of the world is upon us. Cartman tries to warn everyone but no one will listen. Disaster is about to strike and the boys are in a race to survive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":195,"unverifiedSceneNumbering":false,"id":7830},{"seriesId":104,"episodeFileId":5304,"seasonNumber":14,"episodeNumber":1,"title":"Sexual Healing","airDate":"2010-03-17","airDateUtc":"2010-03-18T02:00:00Z","overview":"The nation's top scientists come together to put a stop to the recent phenomenon of rich, successful men who suddenly want to have sex with many, many women. After extensive testing, some of the fourth grade boys in South Park Elementary are diagnosed as sex addicts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":196,"unverifiedSceneNumbering":false,"id":7831},{"seriesId":104,"episodeFileId":5305,"seasonNumber":14,"episodeNumber":2,"title":"The Tale of Scrotie McBoogerballs","airDate":"2010-03-24","airDateUtc":"2010-03-25T02:00:00Z","overview":"The boys are given a controversial book to read in school that both excites and inspires them to write one of their own. When the boys discover that Stan's mom has found their masterpiece, their new motivation is how they can stay out of trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":197,"unverifiedSceneNumbering":false,"id":7832},{"seriesId":104,"episodeFileId":5306,"seasonNumber":14,"episodeNumber":3,"title":"Medicinal Fried Chicken","airDate":"2010-03-31","airDateUtc":"2010-04-01T02:00:00Z","overview":"State Law in Colorado says it's legal to smoke pot if you have a physician's reference. Randy is the first-in-line to buy some but he's turned away because there's absolutely nothing wrong with him. Randy is desperate to get a medical excuse to smoke some weed but meanwhile, Cartman will do anything to get his beloved fried chicken restaurant back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":198,"unverifiedSceneNumbering":false,"id":7833},{"seriesId":104,"episodeFileId":5307,"seasonNumber":14,"episodeNumber":4,"title":"You Have 0 Friends","airDate":"2010-04-07","airDateUtc":"2010-04-08T02:00:00Z","overview":"Kyle \"friended\" the wrong person and now all of his old friends are deserting him. His situation is desperate. Kyle looks for help from the one person who has always been there for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":199,"unverifiedSceneNumbering":false,"id":7834},{"seriesId":104,"episodeFileId":5308,"seasonNumber":14,"episodeNumber":5,"title":"200 (1)","airDate":"2010-04-14","airDateUtc":"2010-04-15T02:00:00Z","overview":"While on a school field trip, Stan accidentally insults Tom Cruise and sets off a chain reaction. 200 previously ridiculed celebrities stand strong in a class action lawsuit against the town of South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":200,"unverifiedSceneNumbering":false,"id":7835},{"seriesId":104,"episodeFileId":5309,"seasonNumber":14,"episodeNumber":6,"title":"201 (2)","airDate":"2010-04-21","airDateUtc":"2010-04-22T02:00:00Z","overview":"Angry celebrities, violent ginger kids and Mecha Streisand are about to destroy South Park and all anyone wants to know is, \u201cWho is Eric Cartman\u2019s father?\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":201,"unverifiedSceneNumbering":false,"id":7836},{"seriesId":104,"episodeFileId":5310,"seasonNumber":14,"episodeNumber":7,"title":"Crippled Summer","airDate":"2010-04-28","airDateUtc":"2010-04-29T02:00:00Z","overview":"Competition is the name of the game this summer. There is no time for Jimmy and his friends to slack off. They're working to be this year's champions at summer camp. Jimmy suits up and prepares to shred in the annual surfing contest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":202,"unverifiedSceneNumbering":false,"id":7837},{"seriesId":104,"episodeFileId":5311,"seasonNumber":14,"episodeNumber":8,"title":"Poor and Stupid","airDate":"2010-10-06","airDateUtc":"2010-10-07T02:00:00Z","overview":"Cartman wants to race with the pros and he's ready to do whatever it takes to make it happen. He's afraid that no matter how hard he tries, he'll never reach the level of the other NASCAR drivers. Working with Butters as his pit boss, Cartman pulls out all the stops to compete in the race of his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":203,"unverifiedSceneNumbering":false,"id":7838},{"seriesId":104,"episodeFileId":5312,"seasonNumber":14,"episodeNumber":9,"title":"It's a Jersey Thing","airDate":"2010-10-13","airDateUtc":"2010-10-14T02:00:00Z","overview":"New Jersey is rapidly taking over the nation one state at a time and their next stop is South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":204,"unverifiedSceneNumbering":false,"id":7839},{"seriesId":104,"episodeFileId":5313,"seasonNumber":14,"episodeNumber":10,"title":"Insheeption","airDate":"2010-10-20","airDateUtc":"2010-10-21T02:00:00Z","overview":"When Stan is sent to the school counselor because he's holding on to an obscene number of useless possessions, he realizes that Mr. Mackey has a hoarding disorder too.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":205,"unverifiedSceneNumbering":false,"id":7840},{"seriesId":104,"episodeFileId":5314,"seasonNumber":14,"episodeNumber":11,"title":"Coon 2: Hindsight (1)","airDate":"2010-10-27","airDateUtc":"2010-10-28T02:00:00Z","overview":"The Coon now leads an entire team of crime-fighters. They are ready to take their place among the worlds most admired and beloved super heroes. But much to the Coons dismay, someone else keeps beating them to the punch. The nation looks to another hero to get them through the BP disaster and dissention develops within the ranks of Coon and friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":206,"unverifiedSceneNumbering":false,"id":7841},{"seriesId":104,"episodeFileId":5315,"seasonNumber":14,"episodeNumber":12,"title":"Mysterion Rises (2)","airDate":"2010-11-03","airDateUtc":"2010-11-04T02:00:00Z","overview":"Led by Mysterion, Coon and Friends are working together to help the people in the Gulf who are at the mercy of the dark lord, Cthulhu. The Coon, scorned by his fellow super heroes and now working alone, is out for revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":207,"unverifiedSceneNumbering":false,"id":7842},{"seriesId":104,"episodeFileId":5316,"seasonNumber":14,"episodeNumber":13,"title":"Coon Vs. Coon & Friends (3)","airDate":"2010-11-10","airDateUtc":"2010-11-11T03:00:00Z","overview":"The Coon shows himself to be even more evil than the dark lord, Cthulhu, as he punishes his former partners in Coon & Friends. Kenny McCormick, is wrestling with the weight of his own super power through his alter-ego, Mysterion. Will Coon and Friends save the day? Will Mysterion ever come to terms with his ability to defy death? All this as the nation waits and wonders: Where is Captain Hindsight?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":208,"unverifiedSceneNumbering":false,"id":7843},{"seriesId":104,"episodeFileId":5317,"seasonNumber":14,"episodeNumber":14,"title":"Cr\u00e8me Fraiche","airDate":"2010-11-17","airDateUtc":"2010-11-18T03:00:00Z","overview":"Stan's life is a shambles both at home and in school. Randy's obsession with the Food Network Is changing everything. It even forces Sharon to explore a new interest of her own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":209,"unverifiedSceneNumbering":false,"id":7844},{"seriesId":104,"episodeFileId":5145,"seasonNumber":15,"episodeNumber":1,"title":"HUMANCENTiPAD","airDate":"2011-04-27","airDateUtc":"2011-04-28T02:00:00Z","overview":"Kyle is intimately involved in the development of a revolutionary new product that is about to be launched by Apple. Meanwhile, Cartman doesn't even have a regular iPad and blames his mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":210,"unverifiedSceneNumbering":false,"id":7845},{"seriesId":104,"episodeFileId":5146,"seasonNumber":15,"episodeNumber":2,"title":"Funnybot","airDate":"2011-05-04","airDateUtc":"2011-05-05T02:00:00Z","overview":"At the school's first annual Comedy Awards, Jimmy announces that the Germans are the least funny people in the world. Germany is highly insulted. They vow that retaliation toward the kids at South Park Elementary will be swift and brutal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":211,"unverifiedSceneNumbering":false,"id":7846},{"seriesId":104,"episodeFileId":5147,"seasonNumber":15,"episodeNumber":3,"title":"Royal Pudding","airDate":"2011-05-11","airDateUtc":"2011-05-12T02:00:00Z","overview":"The Prince of Canada is about to take a Princess and Ike is obsessed with the Royal Wedding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":212,"unverifiedSceneNumbering":false,"id":7847},{"seriesId":104,"episodeFileId":5148,"seasonNumber":15,"episodeNumber":4,"title":"T.M.I.","airDate":"2011-05-18","airDateUtc":"2011-05-19T02:00:00Z","overview":"Cartman is furious when he believes that the school has posted their penis sizes on the bulletin board. He throws an absolute fit; takes matters into his own hands and once again finds himself in the principal's office. This time he gets sent to anger management therapy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":213,"unverifiedSceneNumbering":false,"id":7848},{"seriesId":104,"episodeFileId":5149,"seasonNumber":15,"episodeNumber":5,"title":"Crack Baby Athletic Association","airDate":"2011-05-25","airDateUtc":"2011-05-26T02:00:00Z","overview":"Cartman has a new protege. He's found someone who is smart, ambitious and willing to look the other way in order to get to the top.\r\n\r\nKyle is brought in on the ground floor of Cartman's latest business venture, the Crack Baby Athletic Adventure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":214,"unverifiedSceneNumbering":false,"id":7849},{"seriesId":104,"episodeFileId":5150,"seasonNumber":15,"episodeNumber":6,"title":"City Sushi","airDate":"2011-06-01","airDateUtc":"2011-06-02T02:00:00Z","overview":"Butters is diagnosed with multiple personality disorder. Meanwhile, the owner of City Wok is angered when a competing Asian restaurant opens next door.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":215,"unverifiedSceneNumbering":false,"id":7850},{"seriesId":104,"episodeFileId":5151,"seasonNumber":15,"episodeNumber":7,"title":"You're Getting Old","airDate":"2011-06-08","airDateUtc":"2011-06-09T02:00:00Z","overview":"After Stan celebrates his 10th birthday, he begins to see everything differently. The other boys think he's become a major buzzkill and start to avoid hanging out with him. When Stan and Kyle have a major blow up, the very fabric of South Park begins to unravel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":216,"unverifiedSceneNumbering":false,"id":7851},{"seriesId":104,"episodeFileId":5152,"seasonNumber":15,"episodeNumber":8,"title":"Ass Burgers","airDate":"2011-10-05","airDateUtc":"2011-10-06T02:00:00Z","overview":"Cartman finds a unique way of coping with Asperger's Syndrome. Even Kyle and Kenny are on board. Meanwhile, Stan can't seem to get his life back to normal no matter what he tries. Will anything ever be the same in South Park again?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":217,"unverifiedSceneNumbering":false,"id":7852},{"seriesId":104,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Six Days to Air: The Making of South Park","airDate":"2011-10-09","airDateUtc":"2011-10-10T02:00:00Z","overview":"Viewers will get a look at Parker and Stones thought process as they approach a new episode and the 24\/7 grind they subject themselves to each time the show is in production. The documentary also includes in-depth interviews with Parker and Stone about their working partnership and reflections on highlights from their careers.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":7635},{"seriesId":104,"episodeFileId":5153,"seasonNumber":15,"episodeNumber":9,"title":"The Last of the Meheecans","airDate":"2011-10-12","airDateUtc":"2011-10-13T02:00:00Z","overview":"What begins as an innocent game between the boys turns serious when Cartman joins the U.S. Border Patrol. Not surprisingly, Cartman turns out to be really good at stopping Mexicans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":218,"unverifiedSceneNumbering":false,"id":7853},{"seriesId":104,"episodeFileId":5154,"seasonNumber":15,"episodeNumber":10,"title":"Bass to Mouth","airDate":"2011-10-19","airDateUtc":"2011-10-20T02:00:00Z","overview":"The students of South Park Elementary are the victims of a new gossip website. An elusive hacker has somehow gained access into the student's confidential phone calls and e-mails and is posting all their juicy stories. The boys are shocked when they discover the identity of the hacker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":219,"unverifiedSceneNumbering":false,"id":7854},{"seriesId":104,"episodeFileId":5155,"seasonNumber":15,"episodeNumber":11,"title":"Broadway Bro Down","airDate":"2011-10-26","airDateUtc":"2011-10-27T02:00:00Z","overview":"Sharon is thrilled that Randy is making an effort to do more things that she enjoys. But, after he takes her to see a hit musical in Denver, Randy becomes Broadway\u2019s biggest fan. Sharon is whisked away to New York and treated to every musical on the Great White Way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":220,"unverifiedSceneNumbering":false,"id":7855},{"seriesId":104,"episodeFileId":5156,"seasonNumber":15,"episodeNumber":12,"title":"1%","airDate":"2011-11-02","airDateUtc":"2011-11-03T02:00:00Z","overview":"The kids at South Park Elementary are being punished for Cartman's failings in the physical education department. What will Cartman do when they all gang up on him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":221,"unverifiedSceneNumbering":false,"id":7856},{"seriesId":104,"episodeFileId":5157,"seasonNumber":15,"episodeNumber":13,"title":"A History Channel Thanksgiving","airDate":"2011-11-09","airDateUtc":"2011-11-10T03:00:00Z","overview":"After watching a Thanksgiving special on The History Channel, the boys believe that aliens were involved in the original feast. But, questions remain... was the first Thanksgiving haunted? Is alien technology responsible for stuffing? The truth could change Thanksgiving for everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":222,"unverifiedSceneNumbering":false,"id":7857},{"seriesId":104,"episodeFileId":5158,"seasonNumber":15,"episodeNumber":14,"title":"The Poor Kid","airDate":"2011-11-16","airDateUtc":"2011-11-17T03:00:00Z","overview":"With their parents in jail, Kenny and his brother and sister find themselves in the foster care system. Cartman is sincerely disturbed when Kenny is taken away. He doesn't know who to rip on for being the poorest kid in school anymore.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":223,"unverifiedSceneNumbering":false,"id":7858},{"seriesId":104,"episodeFileId":5400,"seasonNumber":16,"episodeNumber":1,"title":"Reverse Cowgirl","airDate":"2012-03-14","airDateUtc":"2012-03-15T02:00:00Z","overview":"One of the boys had been told time and time again about leaving the toilet seat up after he goes to the bathroom, but he didn't listen. His actions have consequences and ultimately result in an unimaginable catastrophe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":224,"unverifiedSceneNumbering":false,"id":7859},{"seriesId":104,"episodeFileId":5401,"seasonNumber":16,"episodeNumber":2,"title":"Cash for Gold","airDate":"2012-03-21","airDateUtc":"2012-03-22T02:00:00Z","overview":"Cartman launches a gemstones network show and creates a very lucrative business. Stan searches for the real value of a piece of jewelry that was a gift from his Grandpa. Meanwhile, Cartmans lucrative new business preys upon an extremely vulnerable clientele.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":225,"unverifiedSceneNumbering":false,"id":7860},{"seriesId":104,"episodeFileId":5402,"seasonNumber":16,"episodeNumber":3,"title":"Faith Hilling","airDate":"2012-03-28","airDateUtc":"2012-03-29T02:00:00Z","overview":"Mankind's evolution begins to accelerate at a rapid and disturbing pace. Concurrently, another species on the planet is exhibiting the same drastic development. Eventually the two species will battle to the death and \"Faith Hilling\" may be humanity's only hope.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":226,"unverifiedSceneNumbering":false,"id":7861},{"seriesId":104,"episodeFileId":5403,"seasonNumber":16,"episodeNumber":4,"title":"Jewpacabra","airDate":"2012-04-04","airDateUtc":"2012-04-05T02:00:00Z","overview":"South Park's big Easter egg hunt is in jeopardy when there are rumors of a dangerous beast lurking in the woods nearby. Cartman tries to warn everyone that their lives are at risk if they participate in the egg hunt. No one believes him until he produces video evidence of the mystery being.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":227,"unverifiedSceneNumbering":false,"id":7862},{"seriesId":104,"episodeFileId":5404,"seasonNumber":16,"episodeNumber":5,"title":"Butterballs","airDate":"2012-04-11","airDateUtc":"2012-04-12T02:00:00Z","overview":"Stan wants to raise awareness about the dangers of bullying by shooting a big dance video, while Butters falls victim to an unlikely bully.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":228,"unverifiedSceneNumbering":false,"id":7863},{"seriesId":104,"episodeFileId":5405,"seasonNumber":16,"episodeNumber":6,"title":"I Should Have Never Gone Ziplining","airDate":"2012-04-18","airDateUtc":"2012-04-19T02:00:00Z","overview":"The boys try zip-lining in the Colorado mountains on the last day of spring break, but their adventure takes a dangerous, life-threatening turn.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":229,"unverifiedSceneNumbering":false,"id":7864},{"seriesId":104,"episodeFileId":5406,"seasonNumber":16,"episodeNumber":7,"title":"Cartman Finds Love","airDate":"2012-04-25","airDateUtc":"2012-04-26T02:00:00Z","overview":"Cartman is excited when a new girl comes to school and he discovers something inside that he never knew he had.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":230,"unverifiedSceneNumbering":false,"id":7865},{"seriesId":104,"episodeFileId":5407,"seasonNumber":16,"episodeNumber":8,"title":"Sarcastaball","airDate":"2012-09-26","airDateUtc":"2012-09-27T02:00:00Z","overview":"Randy's campaign to prevent head injuries in football radically changes the way the game is played, but the new rules become a national sensation and even make a South Park student a star athlete.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":231,"unverifiedSceneNumbering":false,"id":7866},{"seriesId":104,"episodeFileId":5408,"seasonNumber":16,"episodeNumber":9,"title":"Raising the Bar","airDate":"2012-10-03","airDateUtc":"2012-10-04T02:00:00Z","overview":"Cartman owns up to being fat and decides that driving around on a scooter is his right. Kyle sees that Cartman isn't the only one who finds no shame in his unhealthy lifestyle. Meanwhile, Cartman discovers he has a rival in America\u2019s Sweetheart, Honey Boo Boo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":232,"unverifiedSceneNumbering":false,"id":7867},{"seriesId":104,"episodeFileId":5409,"seasonNumber":16,"episodeNumber":10,"title":"Insecurity","airDate":"2012-10-10","airDateUtc":"2012-10-11T02:00:00Z","overview":"The man who visits all the homes in South Park every day is under suspicion. Cartman takes matters into his own hands and signs up for a home security system.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":233,"unverifiedSceneNumbering":false,"id":7868},{"seriesId":104,"episodeFileId":5410,"seasonNumber":16,"episodeNumber":11,"title":"Going Native","airDate":"2012-10-17","airDateUtc":"2012-10-18T02:00:00Z","overview":"It is time for Butters to begin a journey where he will follow in the path of his Hawaiian ancestors.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":234,"unverifiedSceneNumbering":false,"id":7869},{"seriesId":104,"episodeFileId":5411,"seasonNumber":16,"episodeNumber":12,"title":"A Nightmare on FaceTime","airDate":"2012-10-24","airDateUtc":"2012-10-25T02:00:00Z","overview":"The boys plans to go as the Avengers for Halloween go awry when Randy can\u2019t go at the last minute and Stan has to help his father with a new business venture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":235,"unverifiedSceneNumbering":false,"id":7870},{"seriesId":104,"episodeFileId":5412,"seasonNumber":16,"episodeNumber":13,"title":"A Scause for Applause","airDate":"2012-10-31","airDateUtc":"2012-11-01T02:00:00Z","overview":"Rocked by the recent news of drug use by a beloved icon, the world is left feeling lost and betrayed. The boys, join with the rest of the nation, and remove their yellow wristbands. Everyone is on board, except for Stan, who just can\u2019t seem to cut off his bracelet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":236,"unverifiedSceneNumbering":false,"id":7871},{"seriesId":104,"episodeFileId":5413,"seasonNumber":16,"episodeNumber":14,"title":"Obama Wins!","airDate":"2012-11-07","airDateUtc":"2012-11-08T03:00:00Z","overview":"Eric Cartman is hiding something in his bedroom that could change the entire outcome of the Presidential election.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":237,"unverifiedSceneNumbering":false,"id":7872},{"seriesId":104,"episodeFileId":5284,"seasonNumber":17,"episodeNumber":1,"title":"Let Go, Let Gov","airDate":"2013-09-25","airDateUtc":"2013-09-26T02:00:00Z","overview":"When Cartman manages to get himself behind the doors of the NSA, he doesn\u2019t like what he finds in his personal file. He thinks it\u2019s time he told everyone the truth. Meanwhile, Butters finds someone new to listen to his prayers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":238,"unverifiedSceneNumbering":false,"id":7873},{"seriesId":104,"episodeFileId":5285,"seasonNumber":17,"episodeNumber":2,"title":"Informative Murder Porn","airDate":"2013-10-02","airDateUtc":"2013-10-03T02:00:00Z","overview":"The boys use the game of MINECRAFT as a distraction to keep their parents from hurting each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":239,"unverifiedSceneNumbering":false,"id":7874},{"seriesId":104,"episodeFileId":5286,"seasonNumber":17,"episodeNumber":3,"title":"World War Zimmerman","airDate":"2013-10-09","airDateUtc":"2013-10-10T02:00:00Z","overview":"Cartman is deeply disturbed by a single person who he sees as a threat to all humanity. He races around the country to put an end to Patient Zero, the ticking time bomb that is Token.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":240,"unverifiedSceneNumbering":false,"id":7875},{"seriesId":104,"episodeFileId":5287,"seasonNumber":17,"episodeNumber":4,"title":"Goth Kids 3: Dawn of the Posers","airDate":"2013-10-23","airDateUtc":"2013-10-24T02:00:00Z","overview":"One of the Goth kids has been sent to a camp for troubled children. When she returns, her friends find her changed in a disturbing way. With their very existence threatened, the Goths have to do something drastic. They are forced to ask the Vamp kids for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":241,"unverifiedSceneNumbering":false,"id":7876},{"seriesId":104,"episodeFileId":5288,"seasonNumber":17,"episodeNumber":5,"title":"Taming Strange","airDate":"2013-10-30","airDateUtc":"2013-10-31T02:00:00Z","overview":"When Ike hits puberty, he and Kyle start to grow apart. To save their relationship, Kyle takes Ike to see a live performance of Yo Gabba Gabba.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":242,"unverifiedSceneNumbering":false,"id":7877},{"seriesId":104,"episodeFileId":5289,"seasonNumber":17,"episodeNumber":6,"title":"Ginger Cow","airDate":"2013-11-06","airDateUtc":"2013-11-07T03:00:00Z","overview":"Cartman's latest prank has brought about the necessary spiritual conditions for world peace. Religious leaders descend upon South Park to witness a Biblical prophecy that has been fulfilled. Cartman and Kyle are the only two at odds as the world embarks upon a thousand years of peace and harmony.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":243,"unverifiedSceneNumbering":false,"id":7878},{"seriesId":104,"episodeFileId":5290,"seasonNumber":17,"episodeNumber":7,"title":"Black Friday","airDate":"2013-11-13","airDateUtc":"2013-11-14T03:00:00Z","overview":"Anticipation for the biggest shopping day of the year is building. The dark days of winter are coming and that can only mean one thing: the fight to be the first in the mall on Black Friday has begun. The boys prepare to battle the crowds the day after Thanksgiving to get the best deal on the new gaming systems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":244,"unverifiedSceneNumbering":false,"id":7879},{"seriesId":104,"episodeFileId":5291,"seasonNumber":17,"episodeNumber":8,"title":"A Song of Ass and Fire","airDate":"2013-11-20","airDateUtc":"2013-11-21T03:00:00Z","overview":"Hordes of souless shoppers approach the mall in anticipation of the Black Friday sales. The kids prepare for an epic battle where one faction's favorite gaming device will come out on top. Will Stan and Kyle's friendship survive Black Friday?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":245,"unverifiedSceneNumbering":false,"id":7880},{"seriesId":104,"episodeFileId":5292,"seasonNumber":17,"episodeNumber":9,"title":"Titties and Dragons","airDate":"2013-12-04","airDateUtc":"2013-12-05T03:00:00Z","overview":"The doors to the mall will finally open for the biggest Black Friday sale in history. The boys are divided over which gaming device to buy and a bloody battle will determine whether Xbox or Sony will be the winner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":246,"unverifiedSceneNumbering":false,"id":7881},{"seriesId":104,"episodeFileId":5293,"seasonNumber":17,"episodeNumber":10,"title":"The Hobbit","airDate":"2013-12-11","airDateUtc":"2013-12-12T03:00:00Z","overview":"When Wendy tries to prove a point about how much pressure little girls feel to look like celebrities, it gets her in trouble with everyone at school, and gets Clyde a new girlfriend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":247,"unverifiedSceneNumbering":false,"id":7882},{"seriesId":104,"episodeFileId":5232,"seasonNumber":18,"episodeNumber":1,"title":"Go Fund Yourself","airDate":"2014-09-24","airDateUtc":"2014-09-25T02:00:00Z","overview":"After Cartman and the boys name their new company, The Washington Redskins, they just sit back and watch the funding roll in. The head coach of the Washington Redskins football team demands that they change the name but Cartman digs in his heels. The Washington Redskins may never mean the same thing ever again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":248,"unverifiedSceneNumbering":false,"id":7883},{"seriesId":104,"episodeFileId":5233,"seasonNumber":18,"episodeNumber":2,"title":"Gluten Free Ebola","airDate":"2014-10-01","airDateUtc":"2014-10-02T02:00:00Z","overview":"Mr. Mackey is now gluten free and everyone is annoyed when he won\u2019t quit preaching about how great he feels. But, after witnessing a disturbing demonstration of what happens to your body when you do eat gluten, South Park becomes the first town in America to go gluten free.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":249,"unverifiedSceneNumbering":false,"id":7884},{"seriesId":104,"episodeFileId":5234,"seasonNumber":18,"episodeNumber":3,"title":"The Cissy","airDate":"2014-10-08","airDateUtc":"2014-10-09T02:00:00Z","overview":"Stan is searching for answers about how a person who he\u2019s always known to be one thing could suddenly identify with another. In the meantime, the pressure of holding on to a giant secret is starting to get to Randy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":250,"unverifiedSceneNumbering":false,"id":7885},{"seriesId":104,"episodeFileId":5235,"seasonNumber":18,"episodeNumber":4,"title":"Handicar","airDate":"2014-10-15","airDateUtc":"2014-10-16T02:00:00Z","overview":"Timmy\u2019s idea to raise money for the summer camp has everyone in South Park trying out the latest trend in transportation. Timmy\u2019s success makes him a lot of enemies and a bloodbath of epic proportions is on the horizon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":251,"unverifiedSceneNumbering":false,"id":7886},{"seriesId":104,"episodeFileId":5236,"seasonNumber":18,"episodeNumber":5,"title":"The Magic Bush","airDate":"2014-10-29","airDateUtc":"2014-10-30T02:00:00Z","overview":"Cartman and Butters get their hands on a drone and can\u2019t resist the urge to take it for a spin around the neighborhood.\r\nA scandalous invasion of privacy has everyone in South Park on edge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":252,"unverifiedSceneNumbering":false,"id":7887},{"seriesId":104,"episodeFileId":5237,"seasonNumber":18,"episodeNumber":6,"title":"Freemium Isn't Free","airDate":"2014-11-05","airDateUtc":"2014-11-06T03:00:00Z","overview":"The kids in \u201cSouth Park\u201d are playing the new Terrance and Phillip mobile game. Stan is addicted to the latest app to hit the market. Meanwhile, Terrance and Phillip aren\u2019t feeling so good about the fortune they\u2019re making on their new mobile game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":253,"unverifiedSceneNumbering":false,"id":7888},{"seriesId":104,"episodeFileId":5238,"seasonNumber":18,"episodeNumber":7,"title":"Grounded Vindaloop","airDate":"2014-11-12","airDateUtc":"2014-11-13T03:00:00Z","overview":"Butters is convinced that he\u2019s living in a virtual reality. When he suddenly goes rogue and wreaks havoc at home and all over South Park, everyone struggles to figure out what\u2019s real.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":254,"unverifiedSceneNumbering":false,"id":7889},{"seriesId":104,"episodeFileId":5239,"seasonNumber":18,"episodeNumber":8,"title":"Cock Magic","airDate":"2014-11-19","airDateUtc":"2014-11-20T03:00:00Z","overview":"Kenny excels at playing the game, Magic: The Gathering. He has the boys\u2019 full attention until a new, hard-core activity gets in the way. When Wendy tries to get Stan to pay attention to what she\u2019s doing, she realizes that what he does with his guy friends always comes first.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":255,"unverifiedSceneNumbering":false,"id":7890},{"seriesId":104,"episodeFileId":5240,"seasonNumber":18,"episodeNumber":9,"title":"#REHASH","airDate":"2014-12-03","airDateUtc":"2014-12-04T03:00:00Z","overview":"Kyle can\u2019t figure out why Ike and his friends want to watch people comment on things going on around them rather than experience it for themselves. Meanwhile, the Marsh family needs money after Stan spent it all on freemium games so, Randy is forced to perform live to bring in some cash.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":256,"unverifiedSceneNumbering":false,"id":7891},{"seriesId":104,"episodeFileId":5241,"seasonNumber":18,"episodeNumber":10,"title":"#HappyHolograms","airDate":"2014-12-10","airDateUtc":"2014-12-11T03:00:00Z","overview":"Still burning over Ike calling him a Grandpa, Kyle teams up with some heavy hitters in the entertainment industry to create the most extravagant televised Holiday Spectacular ever. He\u2019s sure that this event will be just the thing to bring families together again. Meanwhile, multiple holograms are still on the loose in South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":257,"unverifiedSceneNumbering":false,"id":7892},{"seriesId":104,"episodeFileId":5259,"seasonNumber":19,"episodeNumber":1,"title":"Stunning and Brave","airDate":"2015-09-16","airDateUtc":"2015-09-17T02:00:00Z","overview":"There is a new principal at the helm of South Park Elementary. He forces the boys to confront the damage they\u2019ve done through their history of racism and unconscious bias. It is the most stunning and brave South Park ever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":258,"unverifiedSceneNumbering":false,"id":7893},{"seriesId":104,"episodeFileId":5260,"seasonNumber":19,"episodeNumber":2,"title":"Where My Country Gone?","airDate":"2015-09-23","airDateUtc":"2015-09-24T02:00:00Z","overview":"Mr Garrison is fed up with undocumented immigrants, and proposes building a wall to keep them out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":259,"unverifiedSceneNumbering":false,"id":7894},{"seriesId":104,"episodeFileId":5261,"seasonNumber":19,"episodeNumber":3,"title":"The City Part of Town","airDate":"2015-09-30","airDateUtc":"2015-10-01T02:00:00Z","overview":"As the town of South Park is gentrifying around him, Kenny gets a job at City Wok.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":260,"unverifiedSceneNumbering":false,"id":7895},{"seriesId":104,"episodeFileId":5262,"seasonNumber":19,"episodeNumber":4,"title":"You're Not Yelping","airDate":"2015-10-14","airDateUtc":"2015-10-15T02:00:00Z","overview":"There\u2019s a new kid in school and his parents have opened a restaurant in the recently gentrified part of town. Cartman now considers himself the top on-line restaurant reviewer in South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":261,"unverifiedSceneNumbering":false,"id":7896},{"seriesId":104,"episodeFileId":5263,"seasonNumber":19,"episodeNumber":5,"title":"Safe Space","airDate":"2015-10-21","airDateUtc":"2015-10-22T02:00:00Z","overview":"Cartman is the latest victim of body shaming, and Randy has to deal with uncomfortable confrontations every time he shops at the new Whole Foods.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":262,"unverifiedSceneNumbering":false,"id":7897},{"seriesId":104,"episodeFileId":5264,"seasonNumber":19,"episodeNumber":6,"title":"Tweek x Craig","airDate":"2015-10-28","airDateUtc":"2015-10-29T02:00:00Z","overview":"The news of a romantic relationship between Tweek and Craig hits South Park Elementary. Mr. Mackey tries to figure out who started the rumor. Meanwhile, Cartman, who struggles to understand his friends\u2019 relationship, finds he has an admirer of his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":263,"unverifiedSceneNumbering":false,"id":7898},{"seriesId":104,"episodeFileId":5265,"seasonNumber":19,"episodeNumber":7,"title":"Naughty Ninjas","airDate":"2015-11-11","airDateUtc":"2015-11-12T03:00:00Z","overview":"When Kenny leads the boys in playing Ninja Warriors, a foreign terrorist organization takes notice. The ever more PC citizens of South Park decide that they no longer need a police force. As the first American town to get rid of their cops, they plan to celebrate their advanced sensibilities with a PC Carnival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":264,"unverifiedSceneNumbering":false,"id":7899},{"seriesId":104,"episodeFileId":5266,"seasonNumber":19,"episodeNumber":8,"title":"Sponsored Content","airDate":"2015-11-18","airDateUtc":"2015-11-19T03:00:00Z","overview":"Jimmy is sent to the principal\u2019s office for using an inappropriate word in the school paper. His integrity as a journalist runs head on into P.C Principal's ideology. Will Jimmy be the undoing of P.C Principal?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":265,"unverifiedSceneNumbering":false,"id":7900},{"seriesId":104,"episodeFileId":5267,"seasonNumber":19,"episodeNumber":9,"title":"Truth and Advertising","airDate":"2015-12-02","airDateUtc":"2015-12-03T03:00:00Z","overview":"The latest news in the school paper sends the boys searching for their missing classmates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":266,"unverifiedSceneNumbering":false,"id":7901},{"seriesId":104,"episodeFileId":5268,"seasonNumber":19,"episodeNumber":10,"title":"PC Principal Final Justice","airDate":"2015-12-09","airDateUtc":"2015-12-10T03:00:00Z","overview":"The gentrification of South Park is pricing Randy right out of town. Meanwhile, Kyle\u2019s distrust of Stan has broken their friendship and thrown Kyle into a dangerous alliance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":267,"unverifiedSceneNumbering":false,"id":7902},{"seriesId":104,"episodeFileId":5294,"seasonNumber":20,"episodeNumber":1,"title":"Member Berries","airDate":"2016-09-14","airDateUtc":"2016-09-15T02:00:00Z","overview":"Mr. Garrison is still on the campaign trail as the National Anthem gets a reboot by an American Icon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":268,"unverifiedSceneNumbering":false,"id":7903},{"seriesId":104,"episodeFileId":5295,"seasonNumber":20,"episodeNumber":2,"title":"Skank Hunt","airDate":"2016-09-21","airDateUtc":"2016-09-22T02:00:00Z","overview":"The boys decide they have to take down Cartman but meanwhile, Skank Hunt takes his rein of terror global.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":269,"unverifiedSceneNumbering":false,"id":7904},{"seriesId":104,"episodeFileId":5296,"seasonNumber":20,"episodeNumber":3,"title":"The Damned","airDate":"2016-09-28","airDateUtc":"2016-09-29T02:00:00Z","overview":"The police are investigating Cartman\u2019s mysterious disappearance on social media; Gerald is thrilled with the media attention as he continues to troll everyone and anyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":270,"unverifiedSceneNumbering":false,"id":7905},{"seriesId":104,"episodeFileId":5297,"seasonNumber":20,"episodeNumber":4,"title":"Wieners Out","airDate":"2016-10-12","airDateUtc":"2016-10-13T02:00:00Z","overview":"The noose is tightening as Gerald feels the pressure of being found out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":271,"unverifiedSceneNumbering":false,"id":7906},{"seriesId":104,"episodeFileId":5298,"seasonNumber":20,"episodeNumber":5,"title":"Douche and a Danish","airDate":"2016-10-19","airDateUtc":"2016-10-20T02:00:00Z","overview":"Garrison finally crosses the line at his most recent Presidential rally, and the kids get pulled in to the search for the notorious Skankhunt42. Meanwhile, Gerald joins forces with the other trolls to stop Denmark from launching TrollTrace.com.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":272,"unverifiedSceneNumbering":false,"id":7907},{"seriesId":104,"episodeFileId":5299,"seasonNumber":20,"episodeNumber":6,"title":"Fort Collins","airDate":"2016-10-26","airDateUtc":"2016-10-27T02:00:00Z","overview":"The Presidential election is only two weeks away and Garrison is still hiding out in Colorado. Everyone freaks out when an entire city in Colorado gets hacked. Gerald faces ruin if his complete history of internet activity becomes public. Memberberries are afraid for their lives and Cartman starts to realize the future is in jeopardy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":273,"unverifiedSceneNumbering":false,"id":7908},{"seriesId":104,"episodeFileId":5300,"seasonNumber":20,"episodeNumber":7,"title":"Oh, Jeez","airDate":"2016-11-09","airDateUtc":"2016-11-10T03:00:00Z","overview":"PC Principal tries one more time to make peace between the boys and the girls. Meanwhile Gerald comes face-to-face with the Troll Hunter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":274,"unverifiedSceneNumbering":false,"id":7909},{"seriesId":104,"episodeFileId":5301,"seasonNumber":20,"episodeNumber":8,"title":"Members Only","airDate":"2016-11-16","airDateUtc":"2016-11-17T03:00:00Z","overview":"The President-elect has some unfinished business with his hometown, and Gerald tries anything to escape the Troll Hunter\u2019s revenge. Meanwhile, Cartman and Heidi make their way to SpaceX to try to get on the first rocket leaving for Mars.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":275,"unverifiedSceneNumbering":false,"id":7910},{"seriesId":104,"episodeFileId":5302,"seasonNumber":20,"episodeNumber":9,"title":"Not Funny","airDate":"2016-11-30","airDateUtc":"2016-12-01T03:00:00Z","overview":"Cartman is certain Heidi can solve the problem of getting them to Mars because she\u2019s really funny. Gerald tries to save himself by reasoning with the Troll Hunter while Garrison explores his new found military power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":276,"unverifiedSceneNumbering":false,"id":7911},{"seriesId":104,"episodeFileId":5303,"seasonNumber":20,"episodeNumber":10,"title":"The End of Serialization as We Know It","airDate":"2016-12-07","airDateUtc":"2016-12-08T03:00:00Z","overview":"As TROLLTRACE goes live, Sheila logs on to see Gerald\u2019s on-line activity. At SpaceX, Cartman tries to convince the scientists that going to Mars is a bad idea. And defying their mom, Kyle and Ike get all the kids together to try to save the world from certain destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":277,"unverifiedSceneNumbering":false,"id":7912},{"seriesId":104,"episodeFileId":5429,"seasonNumber":21,"episodeNumber":1,"title":"White People Renovating Houses","airDate":"2017-09-13","airDateUtc":"2017-09-14T02:00:00Z","overview":"Randy comes to grips with what it means to be white in today's society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":278,"unverifiedSceneNumbering":false,"id":7913},{"seriesId":104,"episodeFileId":5430,"seasonNumber":21,"episodeNumber":2,"title":"Put It Down","airDate":"2017-09-20","airDateUtc":"2017-09-21T02:00:00Z","overview":"When Tweek is caught in the middle of a petty conflict, it drives his relationship with Craig to the brink.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":279,"unverifiedSceneNumbering":false,"id":7914},{"seriesId":104,"episodeFileId":5431,"seasonNumber":21,"episodeNumber":3,"title":"Holiday Special","airDate":"2017-09-27","airDateUtc":"2017-09-28T02:00:00Z","overview":"In a return to form, a forbidden love story between a white man and a Native American man unfolds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":280,"unverifiedSceneNumbering":false,"id":7915},{"seriesId":104,"episodeFileId":5432,"seasonNumber":21,"episodeNumber":4,"title":"Franchise Prequel","airDate":"2017-10-11","airDateUtc":"2017-10-12T02:00:00Z","overview":"Facebook is the ultimate weapon for Professor Chaos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":281,"unverifiedSceneNumbering":false,"id":7916},{"seriesId":104,"episodeFileId":5433,"seasonNumber":21,"episodeNumber":5,"title":"Hummels & Heroin","airDate":"2017-10-18","airDateUtc":"2017-10-19T02:00:00Z","overview":"Beloved entertainers are being cut down in their prime due to massive overdoses of opiates. Stan is about to be exposed as the source of the illegal drugs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":282,"unverifiedSceneNumbering":false,"id":7917},{"seriesId":104,"episodeFileId":5434,"seasonNumber":21,"episodeNumber":6,"title":"Sons A Witches","airDate":"2017-10-25","airDateUtc":"2017-10-26T02:00:00Z","overview":"At the annual Halloween get together, a witch casts a spell that terrorizes everyone in South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":283,"unverifiedSceneNumbering":false,"id":7918},{"seriesId":104,"episodeFileId":5435,"seasonNumber":21,"episodeNumber":7,"title":"Doubling Down","airDate":"2017-11-08","airDateUtc":"2017-11-09T03:00:00Z","overview":"Kyle is playing with fire when he gets in the middle of Cartman and Heidi\u2019s relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":284,"unverifiedSceneNumbering":false,"id":7919},{"seriesId":104,"episodeFileId":5436,"seasonNumber":21,"episodeNumber":8,"title":"Moss Piglets","airDate":"2017-11-15","airDateUtc":"2017-11-16T03:00:00Z","overview":"Jimmy and Timmy\u2019s experiment could win them first prize in the annual science fair.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":285,"unverifiedSceneNumbering":false,"id":7920},{"seriesId":104,"episodeFileId":5437,"seasonNumber":21,"episodeNumber":9,"title":"SUPER HARD PCness","airDate":"2017-11-29","airDateUtc":"2017-11-30T03:00:00Z","overview":"It\u2019s never been more challenging to be a PC Principal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":286,"unverifiedSceneNumbering":false,"id":7921},{"seriesId":104,"episodeFileId":5438,"seasonNumber":21,"episodeNumber":10,"title":"Splatty Tomato","airDate":"2017-12-06","airDateUtc":"2017-12-07T03:00:00Z","overview":"The children of South Park claim to have seen Mr. Garrison lurking around town. The townspeople are angry that the President is scaring their children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":287,"unverifiedSceneNumbering":false,"id":7922},{"seriesId":104,"episodeFileId":7526,"seasonNumber":22,"episodeNumber":1,"title":"Dead Kids","airDate":"2018-09-26","airDateUtc":"2018-09-27T02:00:00Z","overview":"Randy is desperate to help Sharon get her emotions under control and Cartman unexpectedly fails his math test.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":288,"unverifiedSceneNumbering":false,"id":7923},{"seriesId":104,"episodeFileId":7527,"seasonNumber":22,"episodeNumber":2,"title":"A Boy and a Priest","airDate":"2018-10-03","airDateUtc":"2018-10-04T02:00:00Z","overview":"A very special relationship has developed between Butters and the Parish Priest. When the town finds the church doors locked and no sign of the pair, they call in the Catholic Church.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":289,"unverifiedSceneNumbering":false,"id":7924},{"seriesId":104,"episodeFileId":7528,"seasonNumber":22,"episodeNumber":3,"title":"The Problem With a Poo","airDate":"2018-10-10","airDateUtc":"2018-10-11T02:00:00Z","overview":"Mr. Hankey must defend his character or lose everything that is important to him. Mr. Hankey\u2019s offensive behavior puts him in jeopardy of being fired as the Director of the Annual Christmas Pageant. Meanwhile, at South Park Elementary, Strong Woman and PC Principal face a whole new set of challenges in their relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":290,"unverifiedSceneNumbering":false,"id":7925},{"seriesId":104,"episodeFileId":7529,"seasonNumber":22,"episodeNumber":4,"title":"Tegridy Farms","airDate":"2018-10-17","airDateUtc":"2018-10-18T02:00:00Z","overview":"Butters is selling vape pens and all kinds of fruity-flavored vape accessories at school. Meanwhile, Randy decides he should move the family to the country and take up farming.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":291,"unverifiedSceneNumbering":false,"id":7926},{"seriesId":104,"episodeFileId":7530,"seasonNumber":22,"episodeNumber":5,"title":"The Scoots","airDate":"2018-10-31","airDateUtc":"2018-11-01T02:00:00Z","overview":"This year, a revolution in mobility is changing Halloween for everyone. Chaos erupts as every kid is out to get more candy than they have ever gotten before. Mr. Mackey and the rest of the adults are hording emergency supplies and hoping to survive until morning.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":292,"unverifiedSceneNumbering":false,"id":7927},{"seriesId":104,"episodeFileId":7531,"seasonNumber":22,"episodeNumber":6,"title":"Time to Get Cereal","airDate":"2018-11-07","airDateUtc":"2018-11-08T03:00:00Z","overview":"When dead citizens start popping up all over town, the boys realize they need Al Gore\u2019s help. The boys are willing to do almost anything to save the town, and themselves, but it may be just too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":293,"unverifiedSceneNumbering":false,"id":7928},{"seriesId":104,"episodeFileId":7532,"seasonNumber":22,"episodeNumber":7,"title":"Nobody Got Cereal?","airDate":"2018-11-14","airDateUtc":"2018-11-15T03:00:00Z","overview":"The boys break out of jail and are on the run from the police and ManBearPig. Satan steps up to help the boys and the rest of the citizens of South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":294,"unverifiedSceneNumbering":false,"id":7929},{"seriesId":104,"episodeFileId":7533,"seasonNumber":22,"episodeNumber":8,"title":"Buddha Box","airDate":"2018-11-28","airDateUtc":"2018-11-29T03:00:00Z","overview":"Cartman has been diagnosed with anxiety and he just can\u2019t deal with people any longer. They get in the way of what\u2019s most important in his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":295,"unverifiedSceneNumbering":false,"id":7930},{"seriesId":104,"episodeFileId":7534,"seasonNumber":22,"episodeNumber":9,"title":"Unfulfilled","airDate":"2018-12-05","airDateUtc":"2018-12-06T03:00:00Z","overview":"The citizens of South Park are enjoying all the perks of being a company town when the Amazon Fulfillment Center moves in. Everything is just swell until the contradictions inherent in capitalism threaten to bring down the entire system down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":296,"unverifiedSceneNumbering":false,"id":7931},{"seriesId":104,"episodeFileId":7535,"seasonNumber":22,"episodeNumber":10,"title":"Bike Parade","airDate":"2018-12-12","airDateUtc":"2018-12-13T03:00:00Z","overview":"Despite the chaos at the Amazon Fulfillment Center, the Bike Parade is still on. The boys\u2019 chance of winning is in jeopardy when Kenny resists commercialism in solidarity with the striking workers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":297,"unverifiedSceneNumbering":false,"id":7932},{"seriesId":104,"episodeFileId":14988,"seasonNumber":23,"episodeNumber":1,"title":"Mexican Joker","airDate":"2019-09-25","airDateUtc":"2019-09-26T02:00:00Z","overview":"Randy battles home-grown weed and comes to terms with the fact that he might be a towel. Meanwhile, Kyle goes to camp.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":298,"unverifiedSceneNumbering":false,"id":11740},{"seriesId":104,"episodeFileId":14989,"seasonNumber":23,"episodeNumber":2,"title":"Band in China","airDate":"2019-10-02","airDateUtc":"2019-10-03T02:00:00Z","overview":"Randy lands himself in big trouble on a visit to China. Meanwhile, Stan starts a band to work out his frustration over having to move away from South Park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":299,"unverifiedSceneNumbering":false,"id":13175},{"seriesId":104,"episodeFileId":14990,"seasonNumber":23,"episodeNumber":3,"title":"SHOTS!!!","airDate":"2019-10-09","airDateUtc":"2019-10-10T02:00:00Z","overview":"Randy revels in a Tegridy Farms milestone. Meanwhile, Cartman stands his ground and refuses to get a shot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":300,"unverifiedSceneNumbering":false,"id":13176},{"seriesId":104,"episodeFileId":14991,"seasonNumber":23,"episodeNumber":4,"title":"Let Them Eat Goo","airDate":"2019-10-16","airDateUtc":"2019-10-17T02:00:00Z","overview":"Cartman is sure the new plant-based diet in the school cafeteria gave him a heart attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":301,"unverifiedSceneNumbering":false,"id":13177},{"seriesId":104,"episodeFileId":14992,"seasonNumber":23,"episodeNumber":5,"title":"Tegridy Farms Halloween Special","airDate":"2019-10-30","airDateUtc":"2019-10-31T02:00:00Z","overview":"It's Halloween and Randy is dealing with his daughter's marijuana problem. Butters gets an unexpected surprise when he visits the Egyptian Artifact exhibit at the Denver Museum.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":302,"unverifiedSceneNumbering":false,"id":13192},{"seriesId":104,"episodeFileId":14993,"seasonNumber":23,"episodeNumber":6,"title":"Season Finale","airDate":"2019-11-06","airDateUtc":"2019-11-07T03:00:00Z","overview":"The Mayor has evidence that Randy blew up his neighbor\u2019s yards in protest over homegrown weed and then blamed it on a Mexican Joker. Now the citizens of South Park have had enough of Randy and Tegridy Farms and they just want to lock him up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":303,"unverifiedSceneNumbering":false,"id":14625},{"seriesId":104,"episodeFileId":14994,"seasonNumber":23,"episodeNumber":7,"title":"Board Girls","airDate":"2019-11-13","airDateUtc":"2019-11-14T03:00:00Z","overview":"Strong Woman deals with a transgender athlete who has her own agenda, which causes big problems for PC Principal. Cartman, Stan, and the rest of the boys meet their match when some of the girls join their board games club.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":304,"unverifiedSceneNumbering":false,"id":14626},{"seriesId":104,"episodeFileId":14995,"seasonNumber":23,"episodeNumber":8,"title":"Turd Burglars","airDate":"2019-11-27","airDateUtc":"2019-11-28T03:00:00Z","overview":"Kyle\u2019s mom looks so good after her fecal transplant that everyone wants to get their hands on her goods. Cartman and the boys jump into the quest for the best microbiome.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":305,"unverifiedSceneNumbering":false,"id":15623},{"seriesId":104,"episodeFileId":14996,"seasonNumber":23,"episodeNumber":9,"title":"Basic Cable","airDate":"2019-12-04","airDateUtc":"2019-12-05T03:00:00Z","overview":"Scott Malkinson\u2019s future with the new girl in his class depends on him getting the latest and greatest streaming platform. Scott\u2019s dad works for the local cable company and refuses to move beyond basic cable.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":306,"unverifiedSceneNumbering":false,"id":15624},{"seriesId":104,"episodeFileId":14997,"seasonNumber":23,"episodeNumber":10,"title":"Christmas Snow","airDate":"2019-12-11","airDateUtc":"2019-12-12T03:00:00Z","overview":"It\u2019s a bleak Christmas Season in South Park this year and it\u2019s all Santa\u2019s fault. He is single handedly stealing the joy from the holiday. The town just wants their Christmas Spirit back but that will take a Christmas miracle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":307,"unverifiedSceneNumbering":false,"id":15625},{"seriesId":104,"episodeFileId":15663,"seasonNumber":24,"episodeNumber":1,"title":"The Pandemic Special","airDate":"2020-09-30","airDateUtc":"2020-10-01T02:00:00Z","overview":"Randy comes to terms with his role in the COVID-19 outbreak as the on-going pandemic presents continued challenges to the citizens of South Park. The kids happily head back to school but nothing resembles the normal that they once knew; not their teachers, not their homeroom, not even Eric Cartman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":308,"unverifiedSceneNumbering":false,"id":19785},{"seriesId":104,"episodeFileId":17795,"seasonNumber":24,"episodeNumber":2,"title":"South ParQ Vaccination Special","airDate":"2021-03-10","airDateUtc":"2021-03-11T03:00:00Z","overview":"The citizens of South ParQ are clamoring for the COVID-19 vaccine. A hilarious new militant group tries to stop the boys from getting their teacher vaccinated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":309,"unverifiedSceneNumbering":false,"id":20868}],"episodeFile":[{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Jared Has Aides-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E01.Jared Has Aides-Bluray-1080p.mkv","size":345348569,"dateAdded":"2018-10-23T20:43:14.686441Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":337695,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1610630,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5097},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Asspen-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E02.Asspen-Bluray-1080p.mkv","size":345206005,"dateAdded":"2018-10-23T20:43:53.359832Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":322844,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1631621,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5098},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Freak Strike-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E03.Freak Strike-Bluray-1080p.mkv","size":407578997,"dateAdded":"2018-10-23T20:43:59.014423Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":294812,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2029770,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5099},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Fun With Veal-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E04.Fun With Veal-Bluray-1080p.mkv","size":313478300,"dateAdded":"2018-10-23T20:44:03.485878Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1400998,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5100},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E05.The New Terrance and Phillip Movie Trailer-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E05.The New Terrance and Phillip Movie Trailer-Bluray-1080p.mkv","size":312858316,"dateAdded":"2018-10-23T20:45:09.342891Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1412298,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5101},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Professor Chaos-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E06.Professor Chaos-Bluray-1080p.mkv","size":345469067,"dateAdded":"2018-10-23T20:45:58.275299Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":362096,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1596346,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5102},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E07.The Simpsons Already Did It-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E07.The Simpsons Already Did It-Bluray-1080p.mkv","size":337449374,"dateAdded":"2018-10-23T20:46:37.505143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":328658,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1574944,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5103},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Red Hot Catholic Love-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E08.Red Hot Catholic Love-Bluray-1080p.mkv","size":366279977,"dateAdded":"2018-10-23T20:46:41.626996Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":321812,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1758904,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5104},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Free Hat-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E09.Free Hat-Bluray-1080p.mkv","size":499905766,"dateAdded":"2018-10-23T20:48:01.566581Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2535616,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5105},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Bebe's Boobs Destroy Society-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E10.Bebe's Boobs Destroy Society-Bluray-1080p.mkv","size":293440505,"dateAdded":"2018-10-23T20:48:13.153325Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1352863,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5106},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Child Abduction is Not Funny-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E11.Child Abduction is Not Funny-Bluray-1080p.mkv","size":362072057,"dateAdded":"2018-10-23T20:48:26.109504Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":338501,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1719503,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5107},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E12.A Ladder to Heaven-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E12.A Ladder to Heaven-Bluray-1080p.mkv","size":335891328,"dateAdded":"2018-10-23T20:49:26.222958Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":342897,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1552798,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5108},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E13.The Return of the Fellowship of the Ring to the Two Towers-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E13.The Return of the Fellowship of the Ring to the Two Towers-Bluray-1080p.mkv","size":318739281,"dateAdded":"2018-10-23T20:50:12.821393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403485,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1390012,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5109},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E14.The Death Camp of Tolerance-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E14.The Death Camp of Tolerance-Bluray-1080p.mkv","size":355205054,"dateAdded":"2018-10-23T20:50:57.053043Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1661203,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5110},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E15.The Biggest Douche in the Universe-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E15.The Biggest Douche in the Universe-Bluray-1080p.mkv","size":325183128,"dateAdded":"2018-10-23T20:51:54.196219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":332555,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1495015,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5111},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E16.My Future Self n' Me-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E16.My Future Self n' Me-Bluray-1080p.mkv","size":310877058,"dateAdded":"2018-10-23T20:52:11.354467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":312930,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1425799,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5112},{"seriesId":104,"seasonNumber":6,"relativePath":"Season 06\/S06E17.Red Sleigh Down-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 06\/S06E17.Red Sleigh Down-Bluray-1080p.mkv","size":433652537,"dateAdded":"2018-10-23T20:52:16.894065Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414819,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2077185,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5113},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Cartman Gets an Anal Probe-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E01.Cartman Gets an Anal Probe-Bluray-1080p.mkv","size":374769022,"dateAdded":"2018-10-23T20:53:47.056063Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":274982,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1645956,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5114},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Weight Gain 4000-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E02.Weight Gain 4000-Bluray-1080p.mkv","size":286441495,"dateAdded":"2018-10-23T20:54:18.42935Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":332433,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1135477,"videoCodec":"x265","videoFps":47.952,"resolution":"1920x1080","runTime":"23:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5115},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Volcano-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E03.Volcano-Bluray-1080p.mkv","size":300917859,"dateAdded":"2018-10-23T20:54:44.275335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":318811,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1267011,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5116},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Big Gay Al's Big Gay Boat Ride-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E04.Big Gay Al's Big Gay Boat Ride-Bluray-1080p.mkv","size":348836802,"dateAdded":"2018-10-23T20:54:47.26587Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":317453,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1496958,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5117},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E05.An Elephant Makes Love to a Pig-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E05.An Elephant Makes Love to a Pig-Bluray-1080p.mkv","size":285648988,"dateAdded":"2018-10-23T20:55:36.562331Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":248748,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1232052,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5118},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Death-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E06.Death-Bluray-1080p.mkv","size":304013041,"dateAdded":"2018-10-23T20:55:46.002107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1321363,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5119},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Pinkeye-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E07.Pinkeye-Bluray-1080p.mkv","size":394800836,"dateAdded":"2018-10-23T20:56:35.217903Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1873504,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5120},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Starvin' Marvin-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E08.Starvin' Marvin-Bluray-1080p.mkv","size":388126824,"dateAdded":"2018-10-23T20:57:18.175634Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1821885,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5121},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Mr. Hankey the Christmas Poo-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E09.Mr. Hankey the Christmas Poo-Bluray-1080p.mkv","size":409303798,"dateAdded":"2018-10-23T20:58:40.417613Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":295184,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1899438,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5122},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Damien-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E10.Damien-Bluray-1080p.mkv","size":410243013,"dateAdded":"2018-10-23T20:59:12.006474Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":298160,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1906799,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5123},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Tom's Rhinoplasty-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E11.Tom's Rhinoplasty-Bluray-1080p.mkv","size":417442506,"dateAdded":"2018-10-23T20:59:16.983045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1954871,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5124},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Mecha-Streisand-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E12.Mecha-Streisand-Bluray-1080p.mkv","size":441291409,"dateAdded":"2018-10-23T21:00:21.947987Z","releaseGroup":"Streisand","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2146191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:00","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5125},{"seriesId":104,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Cartman's Mom is a Dirty Slut-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 01\/S01E13.Cartman's Mom is a Dirty Slut-Bluray-1080p.mkv","size":431378896,"dateAdded":"2018-10-23T21:01:07.541933Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2048831,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5126},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Terrance & Phillip in 'Not Without My Anus'-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E01.Terrance & Phillip in 'Not Without My Anus'-Bluray-1080p.mkv","size":307880560,"dateAdded":"2018-10-23T21:02:48.209419Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":295740,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1371070,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:55","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5127},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Cartman's Mom is Still a Dirty Slut-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E02.Cartman's Mom is Still a Dirty Slut-Bluray-1080p.mkv","size":363462556,"dateAdded":"2018-10-23T21:03:27.696273Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":307313,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1701759,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5128},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Ike's Wee Wee-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E03.Ike's Wee Wee-Bluray-1080p.mkv","size":981847199,"dateAdded":"2018-10-23T21:03:31.201505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":258061,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5230631,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:39","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5129},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Chickenlover-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E04.Chickenlover-Bluray-1080p.mkv","size":369715278,"dateAdded":"2018-10-23T21:05:18.669736Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1734893,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5130},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Conjoined Fetus Lady-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E05.Conjoined Fetus Lady-Bluray-1080p.mkv","size":352821976,"dateAdded":"2018-10-23T21:05:34.595565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":312669,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1621595,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5131},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Mexican Staring Frog of Southern Sri Lanka-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E06.The Mexican Staring Frog of Southern Sri Lanka-Bluray-1080p.mkv","size":447338203,"dateAdded":"2018-10-23T21:07:20.574251Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2203942,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5132},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E07.City on the Edge of Forever (a.k.a. Flashbacks)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E07.City on the Edge of Forever (a.k.a. Flashbacks)-Bluray-1080p.mkv","size":455854188,"dateAdded":"2018-10-23T21:08:05.441497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":307201,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2263594,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5133},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Summer Sucks-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E08.Summer Sucks-Bluray-1080p.mkv","size":319778564,"dateAdded":"2018-10-23T21:09:32.859579Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":279851,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1509682,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5134},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Chef's Chocolate Salty Balls-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E09.Chef's Chocolate Salty Balls-Bluray-1080p.mkv","size":357308892,"dateAdded":"2018-10-23T21:09:44.645565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":308608,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1638361,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5135},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Chickenpox-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E10.Chickenpox-Bluray-1080p.mkv","size":330125573,"dateAdded":"2018-10-23T21:10:40.798493Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":277088,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1544902,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:27","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5136},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Roger Ebert Should Lay Off the Fatty Foods-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E11.Roger Ebert Should Lay Off the Fatty Foods-Bluray-1080p.mkv","size":397759883,"dateAdded":"2018-10-23T21:11:29.00802Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":270775,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1900517,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5137},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Clubhouses-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E12.Clubhouses-Bluray-1080p.mkv","size":269723153,"dateAdded":"2018-10-23T21:11:44.807948Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1292271,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5138},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Cow Days-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E13.Cow Days-Bluray-1080p.mkv","size":386165716,"dateAdded":"2018-10-23T21:12:36.947074Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1996918,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5139},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Chef Aid-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E14.Chef Aid-Bluray-1080p.mkv","size":305440984,"dateAdded":"2018-10-23T21:13:02.226176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":304642,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1483140,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5140},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Spookyfish-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E15.Spookyfish-Bluray-1080p.mkv","size":339158387,"dateAdded":"2018-10-23T21:13:12.008557Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1649257,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5141},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Merry Christmas Charlie Manson-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E16.Merry Christmas Charlie Manson-Bluray-1080p.mkv","size":472133572,"dateAdded":"2018-10-23T21:14:36.763505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":338421,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2456466,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5142},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Gnomes-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E17.Gnomes-Bluray-1080p.mkv","size":287150845,"dateAdded":"2018-10-23T21:14:40.984823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":325699,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1351674,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5143},{"seriesId":104,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Prehistoric Ice Man-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 02\/S02E18.Prehistoric Ice Man-Bluray-1080p.mkv","size":362906243,"dateAdded":"2018-10-23T21:14:52.930449Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1787274,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5144},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E01.HUMANCENTiPAD-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E01.HUMANCENTiPAD-Bluray-1080p.mkv","size":280096595,"dateAdded":"2018-10-23T21:16:24.800824Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":334224,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1219435,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5145},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E02.Funnybot-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E02.Funnybot-Bluray-1080p.mkv","size":326587486,"dateAdded":"2018-10-23T21:16:33.957498Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":327872,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1505096,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5146},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E03.Royal Pudding-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E03.Royal Pudding-Bluray-1080p.mkv","size":328853201,"dateAdded":"2018-10-23T21:16:44.592841Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1500971,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5147},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E04.T.M.I-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E04.T.M.I-Bluray-1080p.mkv","size":270961187,"dateAdded":"2018-10-23T21:16:54.441293Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":272794,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1226650,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5148},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E05.Crack Baby Athletic Association-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E05.Crack Baby Athletic Association-Bluray-1080p.mkv","size":272427073,"dateAdded":"2018-10-23T21:17:08.322163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1215554,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5149},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E06.City Sushi-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E06.City Sushi-Bluray-1080p.mkv","size":311973853,"dateAdded":"2018-10-23T21:18:16.552424Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":333795,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1411818,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5150},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E07.You're Getting Old-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E07.You're Getting Old-Bluray-1080p.mkv","size":243074156,"dateAdded":"2018-10-23T21:18:22.475239Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":275728,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1059735,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5151},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E08.Ass Burgers-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E08.Ass Burgers-Bluray-1080p.mkv","size":297761926,"dateAdded":"2018-10-23T21:18:26.704968Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1374460,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5152},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E09.The Last of the Meheecans-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E09.The Last of the Meheecans-Bluray-1080p.mkv","size":424493975,"dateAdded":"2018-10-23T21:19:22.575341Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2077485,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5153},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E10.Bass to Mouth-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E10.Bass to Mouth-Bluray-1080p.mkv","size":278604218,"dateAdded":"2018-10-23T21:19:41.053752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":323793,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1225045,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5154},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E11.Broadway Bro Down-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E11.Broadway Bro Down-Bluray-1080p.mkv","size":304866266,"dateAdded":"2018-10-23T21:19:49.896837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1355718,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5155},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E12.1%-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E12.1%-Bluray-1080p.mkv","size":258979465,"dateAdded":"2018-10-23T21:20:33.162585Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1075610,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5156},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E13.A History Channel Thanksgiving-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E13.A History Channel Thanksgiving-Bluray-1080p.mkv","size":375239860,"dateAdded":"2018-10-23T21:20:39.064815Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1769680,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5157},{"seriesId":104,"seasonNumber":15,"relativePath":"Season 15\/S15E14.The Poor Kid-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 15\/S15E14.The Poor Kid-Bluray-1080p.mkv","size":253234551,"dateAdded":"2018-10-23T21:20:49.988901Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":298065,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1098232,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5158},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E01.Tonsil Trouble-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E01.Tonsil Trouble-Bluray-1080p.mkv","size":467069574,"dateAdded":"2018-10-23T21:21:02.461148Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":277838,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2412853,"videoCodec":"x265","videoFps":29.97,"resolution":"1918x1080","runTime":"22:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5159},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E02.Britney's New Look-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E02.Britney's New Look-Bluray-1080p.mkv","size":601623638,"dateAdded":"2018-10-23T21:22:25.732229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":304529,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3193617,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5160},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E03.Major Boobage-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E03.Major Boobage-Bluray-1080p.mkv","size":813787704,"dateAdded":"2018-10-23T21:23:10.778561Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":311113,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4468385,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5161},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E04.Canada on Strike-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E04.Canada on Strike-Bluray-1080p.mkv","size":623980156,"dateAdded":"2018-10-23T21:23:18.807353Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":297517,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3335489,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5162},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E05.Eek, A Penis!-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E05.Eek, A Penis!-Bluray-1080p.mkv","size":479438329,"dateAdded":"2018-10-23T21:24:42.613908Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":279102,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2488751,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5163},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E06.Over Logging-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E06.Over Logging-Bluray-1080p.mkv","size":489697019,"dateAdded":"2018-10-23T21:24:47.374963Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":273496,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2558688,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5164},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E07.Super Fun Time-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E07.Super Fun Time-Bluray-1080p.mkv","size":529680270,"dateAdded":"2018-10-23T21:25:49.142838Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":314491,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2754226,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5165},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E08.The China Probrem-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E08.The China Probrem-Bluray-1080p.mkv","size":481730950,"dateAdded":"2018-10-23T21:26:04.494919Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":336918,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2445144,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5166},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E09.Breast Cancer Show Ever-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E09.Breast Cancer Show Ever-Bluray-1080p.mkv","size":442664730,"dateAdded":"2018-10-23T21:26:15.362559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2280442,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:14","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5167},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E10.Pandemic (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E10.Pandemic (1)-Bluray-1080p.mkv","size":548053119,"dateAdded":"2018-10-23T21:27:37.697869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":314685,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2944817,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5168},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E11.Pandemic 2- The Startling (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E11.Pandemic 2- The Startling (2)-Bluray-1080p.mkv","size":674129141,"dateAdded":"2018-10-23T21:28:01.264541Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3631689,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5169},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E12.About Last Night-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E12.About Last Night-Bluray-1080p.mkv","size":557487774,"dateAdded":"2018-10-23T21:29:02.068361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2965647,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5170},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E13.Elementary School Musical-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E13.Elementary School Musical-Bluray-1080p.mkv","size":438046519,"dateAdded":"2018-10-23T21:30:10.626405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":327797,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2269631,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5171},{"seriesId":104,"seasonNumber":12,"relativePath":"Season 12\/S12E14.The Ungroundable-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 12\/S12E14.The Ungroundable-Bluray-1080p.mkv","size":380365410,"dateAdded":"2018-10-23T21:30:19.956893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":312461,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1942320,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5172},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E01.With Apologies to Jesse Jackson-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E01.With Apologies to Jesse Jackson-Bluray-1080p.mkv","size":390554410,"dateAdded":"2018-10-23T21:30:42.155399Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5173},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E02.Cartman Sucks-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E02.Cartman Sucks-Bluray-1080p.mkv","size":312718763,"dateAdded":"2018-10-23T21:32:33.417988Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5174},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E03.Lice Capades-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E03.Lice Capades-Bluray-1080p.mkv","size":486912771,"dateAdded":"2018-10-23T21:32:36.68232Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5175},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E04.The Snuke-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E04.The Snuke-Bluray-1080p.mkv","size":498047501,"dateAdded":"2018-10-23T21:32:42.687347Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5176},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E05.Fantastic Easter Special-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E05.Fantastic Easter Special-Bluray-1080p.mkv","size":416130912,"dateAdded":"2018-10-23T21:33:56.345508Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5177},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E06.D-Yikes!-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E06.D-Yikes!-Bluray-1080p.mkv","size":452591264,"dateAdded":"2018-10-23T21:34:01.932341Z","releaseGroup":"Yikes","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5178},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E07.Night of the Living Homeless-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E07.Night of the Living Homeless-Bluray-1080p.mkv","size":495497627,"dateAdded":"2018-10-23T21:34:08.715857Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5179},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E08.Le Petit Tourette-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E08.Le Petit Tourette-Bluray-1080p.mkv","size":349542770,"dateAdded":"2018-10-23T21:35:32.119319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5180},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E09.More Crap-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E09.More Crap-Bluray-1080p.mkv","size":398729591,"dateAdded":"2018-10-23T21:35:49.794287Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5181},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E10.Imaginationland- Episode I-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E10.Imaginationland- Episode I-Bluray-1080p.mkv","size":604011589,"dateAdded":"2018-10-23T21:36:12.1122Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5182},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E11.Imaginationland- Episode II-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E11.Imaginationland- Episode II-Bluray-1080p.mkv","size":484562268,"dateAdded":"2018-10-23T21:36:21.60311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5183},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E12.Imaginationland- Episode III-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E12.Imaginationland- Episode III-Bluray-1080p.mkv","size":495246602,"dateAdded":"2018-10-23T21:38:07.905194Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5184},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E13.Guitar Queer-o-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E13.Guitar Queer-o-Bluray-1080p.mkv","size":419277953,"dateAdded":"2018-10-23T21:38:14.412075Z","releaseGroup":"o","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5185},{"seriesId":104,"seasonNumber":11,"relativePath":"Season 11\/S11E14.The List-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 11\/S11E14.The List-Bluray-1080p.mkv","size":339791389,"dateAdded":"2018-10-23T21:39:48.156458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5186},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E01.It Hits the Fan-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E01.It Hits the Fan-Bluray-1080p.mkv","size":376960052,"dateAdded":"2018-10-23T21:39:56.197048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":342425,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1798420,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5187},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Cripple Fight-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E02.Cripple Fight-Bluray-1080p.mkv","size":341885166,"dateAdded":"2018-10-23T21:40:04.750095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":333899,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1602497,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5188},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Super Best Friends-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E03.Super Best Friends-Bluray-1080p.mkv","size":324776138,"dateAdded":"2018-10-23T21:40:10.226203Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":365019,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1463492,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5189},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Scott Tenorman Must Die-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E04.Scott Tenorman Must Die-Bluray-1080p.mkv","size":353534024,"dateAdded":"2018-10-23T21:41:17.153519Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":311604,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1689509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5190},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Terrance and Phillip- Behind the Blow-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E05.Terrance and Phillip- Behind the Blow-Bluray-1080p.mkv","size":527220145,"dateAdded":"2018-10-23T21:41:20.826198Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2692797,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5191},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Cartmanland-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E06.Cartmanland-Bluray-1080p.mkv","size":403622826,"dateAdded":"2018-10-23T21:41:26.134752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":345339,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1958551,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5192},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Proper Condom Use-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 05\/S05E07.Proper Condom Use-Bluray-1080p Proper.mkv","size":388653722,"dateAdded":"2018-10-23T21:42:36.227506Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":324133,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1888592,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5193},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Towelie-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E08.Towelie-Bluray-1080p.mkv","size":417549753,"dateAdded":"2018-10-23T21:42:43.310096Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2009390,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5194},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Osama Bin Laden Has Farty Pants-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E09.Osama Bin Laden Has Farty Pants-Bluray-1080p.mkv","size":389027872,"dateAdded":"2018-10-23T21:43:06.579435Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1834980,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5195},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E10.How to Eat with Your Butt-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E10.How to Eat with Your Butt-Bluray-1080p.mkv","size":280564795,"dateAdded":"2018-10-23T21:44:07.852749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1217868,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5196},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E11.The Entity-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E11.The Entity-Bluray-1080p.mkv","size":419836924,"dateAdded":"2018-10-23T21:44:22.241515Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":369349,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2030907,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5197},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Here Comes the Neighborhood-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E12.Here Comes the Neighborhood-Bluray-1080p.mkv","size":324200030,"dateAdded":"2018-10-23T21:45:03.331168Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":368877,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1458452,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5198},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Kenny Dies-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E13.Kenny Dies-Bluray-1080p.mkv","size":351176176,"dateAdded":"2018-10-23T21:45:06.610014Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":324666,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1667362,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5199},{"seriesId":104,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Butters' Very Own Episode-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 05\/S05E14.Butters' Very Own Episode-Bluray-1080p.mkv","size":298950308,"dateAdded":"2018-10-23T21:46:17.455352Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1318772,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5200},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The Tooth Fairy Tats 2000-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E01.The Tooth Fairy Tats 2000-Bluray-1080p.mkv","size":391368673,"dateAdded":"2018-10-23T21:46:32.11839Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":339268,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1887136,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5201},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Cartman's Silly Hate Crime 2000-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E02.Cartman's Silly Hate Crime 2000-Bluray-1080p.mkv","size":469405490,"dateAdded":"2018-10-23T21:46:35.379644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2311313,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5202},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Timmy 2000-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E03.Timmy 2000-Bluray-1080p.mkv","size":323232213,"dateAdded":"2018-10-23T21:47:05.829092Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1473806,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5203},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Quintuplets 2000-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E04.Quintuplets 2000-Bluray-1080p.mkv","size":368376857,"dateAdded":"2018-10-23T21:47:30.848061Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":369637,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1729096,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5204},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Cartman Joins NAMBLA-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E05.Cartman Joins NAMBLA-Bluray-1080p.mkv","size":335131614,"dateAdded":"2018-10-23T21:47:36.76196Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":344051,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1548354,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5205},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Cherokee Hair Tampons-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E06.Cherokee Hair Tampons-Bluray-1080p.mkv","size":521849280,"dateAdded":"2018-10-23T21:47:40.070527Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2664509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5206},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Chef Goes Nanners-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E07.Chef Goes Nanners-Bluray-1080p.mkv","size":327290517,"dateAdded":"2018-10-23T21:48:49.390525Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":403497,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1438310,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5207},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Something You Can Do with Your Finger-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E08.Something You Can Do with Your Finger-Bluray-1080p.mkv","size":437714570,"dateAdded":"2018-10-23T21:48:54.165382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":339954,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2166270,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5208},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Do the Handicapped Go to Hell! (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E09.Do the Handicapped Go to Hell! (1)-Bluray-1080p.mkv","size":535489246,"dateAdded":"2018-10-23T21:48:59.34117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":343778,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2752298,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5209},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Probably (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E10.Probably (2)-Bluray-1080p.mkv","size":467528407,"dateAdded":"2018-10-23T21:50:00.398667Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399941,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2290145,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5210},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Fourth Grade-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E11.Fourth Grade-Bluray-1080p.mkv","size":388082856,"dateAdded":"2018-10-23T21:50:13.822337Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":439081,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1772037,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5211},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Trapper Keeper-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E12.Trapper Keeper-Bluray-1080p.mkv","size":387423161,"dateAdded":"2018-10-23T21:50:18.932237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":363374,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1846295,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5212},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Helen Keller! The Musical-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E13.Helen Keller! The Musical-Bluray-1080p.mkv","size":407158100,"dateAdded":"2018-10-23T21:51:09.851897Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440708,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1893084,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5213},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Pip-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E14.Pip-Bluray-1080p.mkv","size":438708226,"dateAdded":"2018-10-23T21:51:16.90025Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2137710,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5214},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Fat Camp-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E15.Fat Camp-Bluray-1080p.mkv","size":318653965,"dateAdded":"2018-10-23T21:51:26.090505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":367817,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1423121,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5215},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E16.The Wacky Molestation Adventure-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E16.The Wacky Molestation Adventure-Bluray-1080p.mkv","size":379362684,"dateAdded":"2018-10-23T21:52:17.764819Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1781001,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5216},{"seriesId":104,"seasonNumber":4,"relativePath":"Season 04\/S04E17.A Very Crappy Christmas-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 04\/S04E17.A Very Crappy Christmas-Bluray-1080p.mkv","size":387674052,"dateAdded":"2018-10-23T21:52:33.392738Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1825225,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5217},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E01.The Ring-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E01.The Ring-Bluray-1080p.mkv","size":337890850,"dateAdded":"2018-10-23T21:52:38.415986Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":327878,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1589208,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5218},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E02.The Coon-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E02.The Coon-Bluray-1080p.mkv","size":305250854,"dateAdded":"2018-10-23T21:52:42.858064Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1375291,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5219},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E03.Margaritaville-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E03.Margaritaville-Bluray-1080p.mkv","size":267950628,"dateAdded":"2018-10-23T21:53:58.282939Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":315480,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1184967,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5220},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E04.Eat, Pray, Queef-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E04.Eat, Pray, Queef-Bluray-1080p.mkv","size":282436223,"dateAdded":"2018-10-23T21:54:03.131246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1300186,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5221},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E05.Fishsticks-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E05.Fishsticks-Bluray-1080p.mkv","size":274090742,"dateAdded":"2018-10-23T21:54:14.46942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":304866,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1230933,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5222},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E06.Pinewood Derby-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E06.Pinewood Derby-Bluray-1080p.mkv","size":285805184,"dateAdded":"2018-10-23T21:54:18.820675Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":300370,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1307639,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5223},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E07.Fatbeard-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E07.Fatbeard-Bluray-1080p.mkv","size":288873206,"dateAdded":"2018-10-23T21:54:24.798487Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":330323,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1295557,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:17","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5224},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E08.Dead Celebrities-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E08.Dead Celebrities-Bluray-1080p.mkv","size":265007783,"dateAdded":"2018-10-23T21:55:08.247636Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":312841,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1170192,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5225},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E09.Butters' Bottom Bitch-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E09.Butters' Bottom Bitch-Bluray-1080p.mkv","size":271527998,"dateAdded":"2018-10-23T21:55:26.440988Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":321268,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1199036,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5226},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E10.W.T.F-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E10.W.T.F-Bluray-1080p.mkv","size":310591052,"dateAdded":"2018-10-23T21:55:30.178474Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1497993,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5227},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E11.Whale Whores-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E11.Whale Whores-Bluray-1080p.mkv","size":355144349,"dateAdded":"2018-10-23T21:55:33.263587Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1670474,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5228},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E12.The F Word-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E12.The F Word-Bluray-1080p.mkv","size":344649199,"dateAdded":"2018-10-23T21:55:58.618951Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1624509,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5229},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E13.Dances With Smurfs-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E13.Dances With Smurfs-Bluray-1080p.mkv","size":231263689,"dateAdded":"2018-10-23T21:56:19.446678Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":273202,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1003184,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5230},{"seriesId":104,"seasonNumber":13,"relativePath":"Season 13\/S13E14.Pee-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 13\/S13E14.Pee-Bluray-1080p.mkv","size":368746294,"dateAdded":"2018-10-23T21:56:44.043507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":392198,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1711792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5231},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E01.Go Fund Yourself-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E01.Go Fund Yourself-Bluray-1080p.mkv","size":1167434227,"dateAdded":"2018-10-23T21:56:56.947387Z","sceneName":"south.park.s18e01.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5232},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E02.Gluten Free Ebola-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E02.Gluten Free Ebola-Bluray-1080p.mkv","size":1168062655,"dateAdded":"2018-10-23T21:58:07.867012Z","sceneName":"south.park.s18e02.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5233},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E03.The Cissy-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E03.The Cissy-Bluray-1080p.mkv","size":1167593633,"dateAdded":"2018-10-23T21:59:30.705055Z","sceneName":"south.park.s18e03.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5234},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E04.Handicar-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E04.Handicar-Bluray-1080p.mkv","size":1169059527,"dateAdded":"2018-10-23T21:59:57.347717Z","sceneName":"south.park.s18e04.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5235},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E05.The Magic Bush-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E05.The Magic Bush-Bluray-1080p.mkv","size":1167598343,"dateAdded":"2018-10-23T22:00:36.101675Z","sceneName":"south.park.s18e05.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5236},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E06.Freemium Isn't Free-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E06.Freemium Isn't Free-Bluray-1080p.mkv","size":1168758827,"dateAdded":"2018-10-23T22:01:30.650603Z","sceneName":"south.park.s18e06.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5237},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E07.Grounded Vindaloop-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E07.Grounded Vindaloop-Bluray-1080p.mkv","size":1171849667,"dateAdded":"2018-10-23T22:02:14.638514Z","sceneName":"south.park.s18e07.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5238},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E08.Cock Magic-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E08.Cock Magic-Bluray-1080p.mkv","size":1169528307,"dateAdded":"2018-10-23T22:03:04.149628Z","sceneName":"south.park.s18e08.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5239},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E09.#REHASH-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E09.#REHASH-Bluray-1080p.mkv","size":1169192274,"dateAdded":"2018-10-23T22:04:01.180592Z","sceneName":"south.park.s18e09.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5240},{"seriesId":104,"seasonNumber":18,"relativePath":"Season 18\/S18E10.#HappyHolograms-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 18\/S18E10.#HappyHolograms-Bluray-1080p.mkv","size":1169947591,"dateAdded":"2018-10-23T22:05:13.470564Z","sceneName":"south.park.s18e10.1080p.bluray.x264-shortbrehd","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6324000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5241},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Rainforest Shmainforest-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E01.Rainforest Shmainforest-Bluray-1080p.mkv","size":325143168,"dateAdded":"2018-10-23T22:05:46.443872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":313554,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1518688,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5242},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Spontaneous Combustion-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E02.Spontaneous Combustion-Bluray-1080p.mkv","size":295497774,"dateAdded":"2018-10-23T22:05:49.071333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":366965,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1283314,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5243},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Succubus-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E03.The Succubus-Bluray-1080p.mkv","size":301224885,"dateAdded":"2018-10-23T22:05:56.745446Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":313237,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1371767,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5244},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Jakovasaurs-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E04.Jakovasaurs-Bluray-1080p.mkv","size":304767955,"dateAdded":"2018-10-23T22:06:53.748061Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1361577,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5245},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Tweek vs. Craig-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E05.Tweek vs. Craig-Bluray-1080p.mkv","size":364450552,"dateAdded":"2018-10-23T22:06:56.698793Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1716258,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5246},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Sexual Harassment Panda-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E06.Sexual Harassment Panda-Bluray-1080p.mkv","size":283428153,"dateAdded":"2018-10-23T22:06:59.535877Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":334788,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1244151,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5247},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Cat Orgy (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E07.Cat Orgy (1)-Bluray-1080p.mkv","size":430952516,"dateAdded":"2018-10-23T22:07:02.219812Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2121444,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5248},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Two Guys Naked in a Hot Tub (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E08.Two Guys Naked in a Hot Tub (2)-Bluray-1080p.mkv","size":350984325,"dateAdded":"2018-10-23T22:07:40.066115Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":406050,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1575060,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5249},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Jewbilee (3)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E09.Jewbilee (3)-Bluray-1080p.mkv","size":314901740,"dateAdded":"2018-10-23T22:07:43.680878Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":465407,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1312173,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5250},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Korn's Groovy Pirate Ghost Mystery-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E10.Korn's Groovy Pirate Ghost Mystery-Bluray-1080p.mkv","size":322627493,"dateAdded":"2018-10-23T22:07:46.369353Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398601,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1412836,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5251},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Chinpokomon-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E11.Chinpokomon-Bluray-1080p.mkv","size":382514589,"dateAdded":"2018-10-23T22:07:50.801467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":361254,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1813926,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5252},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Hooked on Monkey Fonics-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E12.Hooked on Monkey Fonics-Bluray-1080p.mkv","size":302762012,"dateAdded":"2018-10-23T22:08:43.863175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":371763,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1325107,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5253},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Starvin' Marvin in Space!-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E13.Starvin' Marvin in Space!-Bluray-1080p.mkv","size":323975955,"dateAdded":"2018-10-23T22:08:46.320769Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":399051,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1432843,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5254},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E14.The Red Badge of Gayness-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E14.The Red Badge of Gayness-Bluray-1080p.mkv","size":377699107,"dateAdded":"2018-10-23T22:08:49.010444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398278,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1749734,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5255},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Mr. Hankey's Christmas Classics-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E15.Mr. Hankey's Christmas Classics-Bluray-1080p.mkv","size":427771669,"dateAdded":"2018-10-23T22:08:52.392313Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":434304,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2028079,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5256},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Are You There God! It's Me, Jesus-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E16.Are You There God! It's Me, Jesus-Bluray-1080p.mkv","size":347526216,"dateAdded":"2018-10-23T22:09:30.320321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":426378,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1539766,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5257},{"seriesId":104,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Worldwide Recorder Concert-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 03\/S03E17.Worldwide Recorder Concert-Bluray-1080p.mkv","size":346863956,"dateAdded":"2018-10-23T22:09:41.105513Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1583090,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5258},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E01.Stunning and Brave-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E01.Stunning and Brave-Bluray-1080p Proper.mkv","size":1164222210,"dateAdded":"2018-10-23T22:09:50.277677Z","sceneName":"South.Park.S19E01.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5259},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E02.Where My Country Gone-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E02.Where My Country Gone-Bluray-1080p Proper.mkv","size":1162415191,"dateAdded":"2018-10-23T22:10:51.63308Z","sceneName":"South.Park.S19E02.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5260},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E03.The City Part of Town-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E03.The City Part of Town-Bluray-1080p Proper.mkv","size":1163776106,"dateAdded":"2018-10-23T22:11:52.62823Z","sceneName":"South.Park.S19E03.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5261},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E04.You're Not Yelping-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E04.You're Not Yelping-Bluray-1080p Proper.mkv","size":1163663913,"dateAdded":"2018-10-23T22:12:38.889103Z","sceneName":"South.Park.S19E04.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6285000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5262},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E05.Safe Space-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E05.Safe Space-Bluray-1080p Proper.mkv","size":1163317216,"dateAdded":"2018-10-23T22:12:59.091777Z","sceneName":"South.Park.S19E05.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5263},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E06.Tweek x Craig-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E06.Tweek x Craig-Bluray-1080p Proper.mkv","size":1163669842,"dateAdded":"2018-10-23T22:13:57.696733Z","sceneName":"South.Park.S19E06.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5264},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E07.Naughty Ninjas-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E07.Naughty Ninjas-Bluray-1080p Proper.mkv","size":1163468864,"dateAdded":"2018-10-23T22:14:51.068826Z","sceneName":"South.Park.S19E07.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6285000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5265},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E08.Sponsored Content-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E08.Sponsored Content-Bluray-1080p Proper.mkv","size":1163370836,"dateAdded":"2018-10-23T22:15:46.665619Z","sceneName":"South.Park.S19E08.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5266},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E09.Truth and Advertising-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E09.Truth and Advertising-Bluray-1080p Proper.mkv","size":1163712905,"dateAdded":"2018-10-23T22:16:33.223198Z","sceneName":"South.Park.S19E09.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6284000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5267},{"seriesId":104,"seasonNumber":19,"relativePath":"Season 19\/S19E10.PC Principal Final Justice-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 19\/S19E10.PC Principal Final Justice-Bluray-1080p Proper.mkv","size":1163755678,"dateAdded":"2018-10-23T22:16:45.473631Z","sceneName":"South.Park.S19E10.PROPER.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6286000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5268},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Cancelled-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E01.Cancelled-Bluray-1080p Proper.mkv","size":445065055,"dateAdded":"2018-10-23T22:17:27.292567Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2201700,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5269},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E02.Krazy Kripples-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E02.Krazy Kripples-Bluray-1080p Proper.mkv","size":381570842,"dateAdded":"2018-10-23T22:17:32.657894Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":325636,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1846128,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5270},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Toilet Paper-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E03.Toilet Paper-Bluray-1080p Proper.mkv","size":371814875,"dateAdded":"2018-10-23T22:18:05.379764Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":330754,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1780698,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5271},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E04.I'm A Little Bit Country-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E04.I'm A Little Bit Country-Bluray-1080p Proper.mkv","size":492964752,"dateAdded":"2018-10-23T22:18:08.838546Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2489934,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5272},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Fat Butt and Pancake Head-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E05.Fat Butt and Pancake Head-Bluray-1080p Proper.mkv","size":395359767,"dateAdded":"2018-10-23T22:18:28.655163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":337571,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1919018,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5273},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E06.Lil' Crime Stoppers-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E06.Lil' Crime Stoppers-Bluray-1080p Proper.mkv","size":462714916,"dateAdded":"2018-10-23T22:18:32.912467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":338891,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2322233,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5274},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E07.Red Man's Greed-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E07.Red Man's Greed-Bluray-1080p Proper.mkv","size":366405986,"dateAdded":"2018-10-23T22:19:12.327118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1702042,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5275},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E08.South Park is Gay-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E08.South Park is Gay-Bluray-1080p Proper.mkv","size":380154450,"dateAdded":"2018-10-23T22:19:16.693893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1804758,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5276},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Christian Rock Hard-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E09.Christian Rock Hard-Bluray-1080p Proper.mkv","size":429366075,"dateAdded":"2018-10-23T22:19:24.874711Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":375553,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2081587,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5277},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Grey Dawn-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E10.Grey Dawn-Bluray-1080p Proper.mkv","size":330079524,"dateAdded":"2018-10-23T22:19:35.784571Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":364707,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1500901,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5278},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Casa Bonita-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E11.Casa Bonita-Bluray-1080p Proper.mkv","size":334791125,"dateAdded":"2018-10-23T22:20:25.586062Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5279},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E12.All About Mormons-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E12.All About Mormons-Bluray-1080p Proper.mkv","size":373658967,"dateAdded":"2018-10-23T22:20:44.28452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":335585,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1785356,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5280},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Butt Out-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E13.Butt Out-Bluray-1080p Proper.mkv","size":458798101,"dateAdded":"2018-10-23T22:21:00.310723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2280535,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5281},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E14.Raisins-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E14.Raisins-Bluray-1080p Proper.mkv","size":461884456,"dateAdded":"2018-10-23T22:21:04.167594Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":397914,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2257216,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5282},{"seriesId":104,"seasonNumber":7,"relativePath":"Season 07\/S07E15.It's Christmas in Canada-Bluray-1080p Proper.mkv","path":"\/tv\/South Park\/Season 07\/S07E15.It's Christmas in Canada-Bluray-1080p Proper.mkv","size":421437206,"dateAdded":"2018-10-23T22:21:31.471613Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2021738,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5283},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E01.Let Go, Let Gov-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E01.Let Go, Let Gov-Bluray-1080p.mkv","size":1167093733,"dateAdded":"2018-10-23T22:21:51.234175Z","sceneName":"south.park.s17e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6322000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5284},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E02.Informative Murder Porn-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E02.Informative Murder Porn-Bluray-1080p.mkv","size":1170813035,"dateAdded":"2018-10-23T22:22:20.187961Z","sceneName":"south.park.s17e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5285},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E03.World War Zimmerman-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E03.World War Zimmerman-Bluray-1080p.mkv","size":1168475813,"dateAdded":"2018-10-23T22:22:59.116968Z","sceneName":"south.park.s17e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5286},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E04.Goth Kids 3- Dawn of the Posers-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E04.Goth Kids 3- Dawn of the Posers-Bluray-1080p.mkv","size":1166801881,"dateAdded":"2018-10-23T22:23:34.659132Z","sceneName":"south.park.s17e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5287},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E05.Taming Strange-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E05.Taming Strange-Bluray-1080p.mkv","size":1169080910,"dateAdded":"2018-10-23T22:24:21.69321Z","sceneName":"south.park.s17e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5288},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E06.Ginger Cow-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E06.Ginger Cow-Bluray-1080p.mkv","size":1167872045,"dateAdded":"2018-10-23T22:25:19.898676Z","sceneName":"south.park.s17e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5289},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E07.Black Friday-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E07.Black Friday-Bluray-1080p.mkv","size":1168818422,"dateAdded":"2018-10-23T22:26:00.643481Z","sceneName":"south.park.s17e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5290},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E08.A Song of Ass and Fire-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E08.A Song of Ass and Fire-Bluray-1080p.mkv","size":1168519426,"dateAdded":"2018-10-23T22:26:18.090087Z","sceneName":"south.park.s17e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5291},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E09.Titties and Dragons-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E09.Titties and Dragons-Bluray-1080p.mkv","size":1170087249,"dateAdded":"2018-10-23T22:27:09.580256Z","sceneName":"south.park.s17e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5292},{"seriesId":104,"seasonNumber":17,"relativePath":"Season 17\/S17E10.The Hobbit-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 17\/S17E10.The Hobbit-Bluray-1080p.mkv","size":1169045121,"dateAdded":"2018-10-23T22:27:48.671626Z","sceneName":"south.park.s17e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6323000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5293},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E01.Member Berries-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E01.Member Berries-Bluray-1080p.mkv","size":243839323,"dateAdded":"2018-10-23T22:28:41.07653Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":183728,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1264852,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5294},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E02.Skank Hunt-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E02.Skank Hunt-Bluray-1080p.mkv","size":263755866,"dateAdded":"2018-10-23T22:28:50.38804Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":182899,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1322966,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5295},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E03.The Damned-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E03.The Damned-Bluray-1080p.mkv","size":293170497,"dateAdded":"2018-10-23T22:28:54.730372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":197860,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1544725,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5296},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E04.Wieners Out-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E04.Wieners Out-Bluray-1080p.mkv","size":240748047,"dateAdded":"2018-10-23T22:28:59.832593Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1238594,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5297},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E05.Douche and a Danish-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E05.Douche and a Danish-Bluray-1080p.mkv","size":269175982,"dateAdded":"2018-10-23T22:29:03.705779Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":196029,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1402683,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5298},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E06.Fort Collins-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E06.Fort Collins-Bluray-1080p.mkv","size":292768734,"dateAdded":"2018-10-23T22:29:08.764271Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1544316,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5299},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E07.Oh, Jeez-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E07.Oh, Jeez-Bluray-1080p.mkv","size":225620043,"dateAdded":"2018-10-23T22:29:43.401565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1150981,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5300},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E08.Members Only-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E08.Members Only-Bluray-1080p.mkv","size":245696766,"dateAdded":"2018-10-23T22:29:48.071676Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1270265,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5301},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E09.Not Funny-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E09.Not Funny-Bluray-1080p.mkv","size":231775399,"dateAdded":"2018-10-23T22:29:57.35556Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":203545,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1173939,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5302},{"seriesId":104,"seasonNumber":20,"relativePath":"Season 20\/S20E10.The End of Serialization as We Know It-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 20\/S20E10.The End of Serialization as We Know It-Bluray-1080p.mkv","size":262841665,"dateAdded":"2018-10-23T22:30:05.530144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":208520,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1353900,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5303},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E01.Sexual Healing-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E01.Sexual Healing-Bluray-1080p.mkv","size":303874656,"dateAdded":"2018-10-23T22:30:10.747795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1353253,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5304},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E02.The Tale of Scrotie McBoogerballs-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E02.The Tale of Scrotie McBoogerballs-Bluray-1080p.mkv","size":242437219,"dateAdded":"2018-10-23T22:30:13.65086Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1081353,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5305},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E03.Medicinal Fried Chicken-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E03.Medicinal Fried Chicken-Bluray-1080p.mkv","size":296107544,"dateAdded":"2018-10-23T22:30:48.156144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1380984,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5306},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E04.You Have 0 Friends-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E04.You Have 0 Friends-Bluray-1080p.mkv","size":301091007,"dateAdded":"2018-10-23T22:30:55.6751Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":301719,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1392934,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5307},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E05.200 (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E05.200 (1)-Bluray-1080p.mkv","size":299039443,"dateAdded":"2018-10-23T22:30:58.804497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1330704,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5308},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E06.201 (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E06.201 (2)-Bluray-1080p.mkv","size":331011771,"dateAdded":"2018-10-23T22:31:01.67352Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1451079,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5309},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E07.Crippled Summer-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E07.Crippled Summer-Bluray-1080p.mkv","size":347920654,"dateAdded":"2018-10-23T22:31:05.337707Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":364941,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1609988,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5310},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E08.Poor and Stupid-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E08.Poor and Stupid-Bluray-1080p.mkv","size":469665494,"dateAdded":"2018-10-23T22:31:39.036137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":323656,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2376249,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:16","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5311},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E09.It's a Jersey Thing-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E09.It's a Jersey Thing-Bluray-1080p.mkv","size":340929329,"dateAdded":"2018-10-23T22:31:44.312566Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1581824,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5312},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E10.Insheeption-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E10.Insheeption-Bluray-1080p.mkv","size":289732459,"dateAdded":"2018-10-23T22:31:59.026663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1331565,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5313},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E11.Coon 2- Hindsight (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E11.Coon 2- Hindsight (1)-Bluray-1080p.mkv","size":299027712,"dateAdded":"2018-10-23T22:32:01.576748Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":325872,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1352169,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5314},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E12.Mysterion Rises (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E12.Mysterion Rises (2)-Bluray-1080p.mkv","size":307092372,"dateAdded":"2018-10-23T22:32:31.694093Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":339725,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1389855,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5315},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E13.Coon Vs. Coon & Friends (3)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E13.Coon Vs. Coon & Friends (3)-Bluray-1080p.mkv","size":449752610,"dateAdded":"2018-10-23T22:32:34.266505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":367822,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2214428,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5316},{"seriesId":104,"seasonNumber":14,"relativePath":"Season 14\/S14E14.Cr\u00e8me Fraiche-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 14\/S14E14.Cr\u00e8me Fraiche-Bluray-1080p.mkv","size":231938152,"dateAdded":"2018-10-23T22:32:38.25226Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":264600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1013762,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5317},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E01.Good Times with Weapons-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E01.Good Times with Weapons-Bluray-1080p.mkv","size":460759409,"dateAdded":"2018-10-23T22:42:49.001512Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":375671,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2275799,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5318},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E02.Up the Down Steroid-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E02.Up the Down Steroid-Bluray-1080p.mkv","size":316851072,"dateAdded":"2018-10-23T22:43:21.266943Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":333865,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1457331,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5319},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E03.The Passion of the Jew-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E03.The Passion of the Jew-Bluray-1080p.mkv","size":289670634,"dateAdded":"2018-10-23T22:43:32.032842Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":338198,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1280531,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5320},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E04.You Got F'd in the A-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E04.You Got F'd in the A-Bluray-1080p.mkv","size":352977286,"dateAdded":"2018-10-23T22:43:34.593665Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":371937,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1631143,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5321},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E05.AWESOM-O-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E05.AWESOM-O-Bluray-1080p.mkv","size":271659075,"dateAdded":"2018-10-23T22:43:37.512923Z","releaseGroup":"O","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":298143,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1211652,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5322},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E06.The Jeffersons-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E06.The Jeffersons-Bluray-1080p.mkv","size":303595976,"dateAdded":"2018-10-23T22:43:39.922173Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":334221,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1367792,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5323},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E07.Goobacks-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E07.Goobacks-Bluray-1080p.mkv","size":306835759,"dateAdded":"2018-10-23T22:44:46.511788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":309152,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1413166,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5324},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E08.Douche and Turd-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E08.Douche and Turd-Bluray-1080p.mkv","size":334896379,"dateAdded":"2018-10-23T22:44:49.164946Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":341707,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1552241,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5325},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Something Wall-Mart This Way Comes-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E09.Something Wall-Mart This Way Comes-Bluray-1080p.mkv","size":343164398,"dateAdded":"2018-10-23T22:44:53.83852Z","releaseGroup":"Mart","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1568543,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5326},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E10.Pre-School-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E10.Pre-School-Bluray-1080p.mkv","size":306952484,"dateAdded":"2018-10-23T22:44:56.835339Z","releaseGroup":"School","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":339403,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1392027,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5327},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E11.Quest for Ratings-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E11.Quest for Ratings-Bluray-1080p.mkv","size":364672433,"dateAdded":"2018-10-23T22:45:47.95495Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":310576,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1762042,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5328},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E12.Stupid Spoiled Whore Video Playset-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E12.Stupid Spoiled Whore Video Playset-Bluray-1080p.mkv","size":342857599,"dateAdded":"2018-10-23T22:45:51.194133Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":373126,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1570493,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5329},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E13.Cartman's Incredible Gift-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E13.Cartman's Incredible Gift-Bluray-1080p.mkv","size":300839695,"dateAdded":"2018-10-23T22:45:54.360882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":337345,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1354160,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5330},{"seriesId":104,"seasonNumber":8,"relativePath":"Season 08\/S08E14.Woodland Critter Christmas-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 08\/S08E14.Woodland Critter Christmas-Bluray-1080p.mkv","size":336565471,"dateAdded":"2018-10-23T22:45:57.124432Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":392419,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1511378,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5331},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E01.Reverse Cowgirl-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E01.Reverse Cowgirl-Bluray-1080p.mkv","size":1167015084,"dateAdded":"2018-10-23T23:51:54.575375Z","sceneName":"south.park.s16e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5400},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E02.Cash for Gold-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E02.Cash for Gold-Bluray-1080p.mkv","size":1168733034,"dateAdded":"2018-10-23T23:52:04.14473Z","sceneName":"south.park.s16e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5401},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E03.Faith Hilling-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E03.Faith Hilling-Bluray-1080p.mkv","size":1167529986,"dateAdded":"2018-10-23T23:52:32.006523Z","sceneName":"south.park.s16e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5402},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E04.Jewpacabra-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E04.Jewpacabra-Bluray-1080p.mkv","size":1169449833,"dateAdded":"2018-10-23T23:53:05.829689Z","sceneName":"south.park.s16e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5403},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E05.Butterballs-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E05.Butterballs-Bluray-1080p.mkv","size":1167625685,"dateAdded":"2018-10-23T23:53:40.288356Z","sceneName":"south.park.s16e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5404},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E06.I Should Have Never Gone Ziplining-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E06.I Should Have Never Gone Ziplining-Bluray-1080p.mkv","size":1168811335,"dateAdded":"2018-10-23T23:54:11.023628Z","sceneName":"south.park.s16e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5405},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E07.Cartman Finds Love-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E07.Cartman Finds Love-Bluray-1080p.mkv","size":1169641049,"dateAdded":"2018-10-23T23:54:37.24313Z","sceneName":"south.park.s16e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6315000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5406},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E08.Sarcastaball-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E08.Sarcastaball-Bluray-1080p.mkv","size":1169307414,"dateAdded":"2018-10-23T23:55:10.400439Z","sceneName":"south.park.s16e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5407},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E09.Raising the Bar-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E09.Raising the Bar-Bluray-1080p.mkv","size":1167612768,"dateAdded":"2018-10-23T23:55:48.030296Z","sceneName":"south.park.s16e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5408},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E10.Insecurity-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E10.Insecurity-Bluray-1080p.mkv","size":1167661666,"dateAdded":"2018-10-23T23:56:33.720181Z","sceneName":"south.park.s16e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5409},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E11.Going Native-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E11.Going Native-Bluray-1080p.mkv","size":1168232397,"dateAdded":"2018-10-23T23:57:18.536825Z","sceneName":"south.park.s16e11.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5410},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E12.A Nightmare on FaceTime-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E12.A Nightmare on FaceTime-Bluray-1080p.mkv","size":1168475055,"dateAdded":"2018-10-23T23:57:49.364306Z","sceneName":"south.park.s16e12.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5411},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E13.A Scause for Applause-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E13.A Scause for Applause-Bluray-1080p.mkv","size":1168126684,"dateAdded":"2018-10-23T23:58:28.091363Z","sceneName":"south.park.s16e13.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5412},{"seriesId":104,"seasonNumber":16,"relativePath":"Season 16\/S16E14.Obama Wins!-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 16\/S16E14.Obama Wins!-Bluray-1080p.mkv","size":1171506984,"dateAdded":"2018-10-23T23:58:37.058774Z","sceneName":"south.park.s16e14.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6318000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5413},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E01.The Return of Chef-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E01.The Return of Chef-Bluray-1080p.mkv","size":390315071,"dateAdded":"2018-10-24T06:58:41.338583Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":335075,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1876318,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5415},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E02.Smug Alert-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E02.Smug Alert-Bluray-1080p.mkv","size":328111620,"dateAdded":"2018-10-24T06:58:43.874563Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1475457,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5416},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E03.Cartoon Wars (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E03.Cartoon Wars (1)-Bluray-1080p.mkv","size":344376986,"dateAdded":"2018-10-24T06:58:44.643635Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":366806,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1569028,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5417},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E04.Cartoon Wars (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E04.Cartoon Wars (2)-Bluray-1080p.mkv","size":311305338,"dateAdded":"2018-10-24T06:58:45.39303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":336241,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1394789,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5418},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E05.A Million Little Fibers-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E05.A Million Little Fibers-Bluray-1080p.mkv","size":350819802,"dateAdded":"2018-10-24T06:58:46.18405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":341474,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1624213,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5419},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E06.Manbearpig-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E06.Manbearpig-Bluray-1080p.mkv","size":343398762,"dateAdded":"2018-10-24T06:59:18.436114Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1568919,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5420},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E07.Tsst-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E07.Tsst-Bluray-1080p.mkv","size":296899717,"dateAdded":"2018-10-24T06:59:20.573586Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":320185,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1322256,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5421},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E08.Make Love, Not Warcraft-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E08.Make Love, Not Warcraft-Bluray-1080p.mkv","size":613974769,"dateAdded":"2018-10-24T06:59:21.463274Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3190268,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5422},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E09.Mystery of the Urinal Deuce-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E09.Mystery of the Urinal Deuce-Bluray-1080p.mkv","size":349012351,"dateAdded":"2018-10-24T06:59:27.347661Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":325003,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1628798,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5423},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E10.Miss Teacher Bangs a Boy-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E10.Miss Teacher Bangs a Boy-Bluray-1080p.mkv","size":316631182,"dateAdded":"2018-10-24T06:59:43.60038Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":309123,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1455300,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5424},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E11.Hell on Earth 2006-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E11.Hell on Earth 2006-Bluray-1080p.mkv","size":537363127,"dateAdded":"2018-10-24T07:00:01.349252Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":361069,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2724244,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5425},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E12.Go God Go (1)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E12.Go God Go (1)-Bluray-1080p.mkv","size":350326129,"dateAdded":"2018-10-24T07:00:02.65433Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":309161,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1661126,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5426},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E13.Go God Go XII (2)-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E13.Go God Go XII (2)-Bluray-1080p.mkv","size":494169047,"dateAdded":"2018-10-24T07:00:03.647314Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":317296,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2505252,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5427},{"seriesId":104,"seasonNumber":10,"relativePath":"Season 10\/S10E14.Stanley's Cup-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 10\/S10E14.Stanley's Cup-Bluray-1080p.mkv","size":395499599,"dateAdded":"2018-10-24T07:00:32.584272Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":339506,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1897044,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5428},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E01.White People Renovating Houses-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E01.White People Renovating Houses-Bluray-1080p.mkv","size":257061724,"dateAdded":"2018-10-24T07:51:13.257065Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":170145,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1358161,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5429},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E02.Put It Down-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E02.Put It Down-Bluray-1080p.mkv","size":277326787,"dateAdded":"2018-10-24T07:51:16.087324Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":185965,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1462927,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5430},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E03.Holiday Special-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E03.Holiday Special-Bluray-1080p.mkv","size":251224257,"dateAdded":"2018-10-24T07:51:20.322351Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":178944,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1314557,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5431},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E04.Franchise Prequel-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E04.Franchise Prequel-Bluray-1080p.mkv","size":249859092,"dateAdded":"2018-10-24T07:51:22.50418Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171106,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1314253,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5432},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E05.Hummels & Heroin-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E05.Hummels & Heroin-Bluray-1080p.mkv","size":266907223,"dateAdded":"2018-10-24T07:51:24.695843Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177600,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1409272,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5433},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E06.Sons A Witches-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E06.Sons A Witches-Bluray-1080p.mkv","size":262184198,"dateAdded":"2018-10-24T07:51:27.330916Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1364108,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5434},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E07.Doubling Down-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E07.Doubling Down-Bluray-1080p.mkv","size":245406459,"dateAdded":"2018-10-24T07:51:33.630229Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1269215,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5435},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E08.Moss Piglets-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E08.Moss Piglets-Bluray-1080p.mkv","size":243689707,"dateAdded":"2018-10-24T07:52:00.220255Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":185379,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1263258,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5436},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E09.SUPER HARD PCness-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E09.SUPER HARD PCness-Bluray-1080p.mkv","size":263717831,"dateAdded":"2018-10-24T07:52:02.866437Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":182114,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1385788,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5437},{"seriesId":104,"seasonNumber":21,"relativePath":"Season 21\/S21E10.Splatty Tomato-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 21\/S21E10.Splatty Tomato-Bluray-1080p.mkv","size":322896824,"dateAdded":"2018-10-24T07:52:07.226405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":207009,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1713277,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5438},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E01.Mr. Garrison's Fancy New Vagina-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E01.Mr. Garrison's Fancy New Vagina-Bluray-1080p.mkv","size":358386652,"dateAdded":"2018-10-24T18:50:50.074555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":335470,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1704447,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5476},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E02.Die Hippie, Die-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E02.Die Hippie, Die-Bluray-1080p.mkv","size":554464166,"dateAdded":"2018-10-24T18:50:53.279842Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2864931,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5477},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E03.Wing-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E03.Wing-Bluray-1080p.mkv","size":338632145,"dateAdded":"2018-10-24T18:51:12.952856Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":366737,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1550673,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5478},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E04.Best Friends Forever-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E04.Best Friends Forever-Bluray-1080p.mkv","size":434409269,"dateAdded":"2018-10-24T18:51:16.031559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2143702,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5479},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E05.The Losing Edge-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E05.The Losing Edge-Bluray-1080p.mkv","size":416691668,"dateAdded":"2018-10-24T18:51:19.324974Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":397872,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1993956,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5480},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E06.The Death of Eric Cartman-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E06.The Death of Eric Cartman-Bluray-1080p.mkv","size":278313453,"dateAdded":"2018-10-24T18:51:22.899965Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":342830,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1213413,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5481},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E07.Erection Day-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E07.Erection Day-Bluray-1080p.mkv","size":392969440,"dateAdded":"2018-10-24T18:51:49.924507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":328846,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1915881,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5482},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E08.Two Days Before the Day After Tomorrow-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E08.Two Days Before the Day After Tomorrow-Bluray-1080p.mkv","size":417910393,"dateAdded":"2018-10-24T18:51:53.202979Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2014556,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5483},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E09.Marjorine-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E09.Marjorine-Bluray-1080p.mkv","size":278207693,"dateAdded":"2018-10-24T18:51:57.529156Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":363087,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1193230,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5484},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E10.Follow That Egg-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E10.Follow That Egg-Bluray-1080p.mkv","size":339159266,"dateAdded":"2018-10-24T18:51:59.817826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":338337,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1583438,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5485},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E11.Ginger Kids-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E11.Ginger Kids-Bluray-1080p.mkv","size":316198724,"dateAdded":"2018-10-24T18:52:29.431473Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1429352,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5486},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E12.Trapped in the Closet-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E12.Trapped in the Closet-Bluray-1080p.mkv","size":308132488,"dateAdded":"2018-10-24T18:52:31.866859Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":303121,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1428172,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5487},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E13.Free Willzyx-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E13.Free Willzyx-Bluray-1080p.mkv","size":315635084,"dateAdded":"2018-10-24T18:52:34.58163Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1424613,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5488},{"seriesId":104,"seasonNumber":9,"relativePath":"Season 09\/S09E14.Bloody Mary-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 09\/S09E14.Bloody Mary-Bluray-1080p.mkv","size":296920850,"dateAdded":"2018-10-24T18:52:37.150728Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1375920,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":5489},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E01.Dead Kids-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E01.Dead Kids-Bluray-1080p.mkv","size":1168619465,"dateAdded":"2019-06-02T23:16:42.056627Z","sceneName":"south.park.s22e01.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7526},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E02.A Boy and a Priest-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E02.A Boy and a Priest-Bluray-1080p.mkv","size":1169385901,"dateAdded":"2019-06-02T23:16:50.304428Z","sceneName":"south.park.s22e02.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7527},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E03.The Problem With a Poo-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E03.The Problem With a Poo-Bluray-1080p.mkv","size":1168680188,"dateAdded":"2019-06-02T23:16:55.399507Z","sceneName":"south.park.s22e03.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7528},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E04.Tegridy Farms-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E04.Tegridy Farms-Bluray-1080p.mkv","size":1169568365,"dateAdded":"2019-06-02T23:17:05.495222Z","sceneName":"south.park.s22e04.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7529},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E05.The Scoots-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E05.The Scoots-Bluray-1080p.mkv","size":1169005252,"dateAdded":"2019-06-02T23:17:12.495223Z","sceneName":"south.park.s22e05.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7530},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E06.Time to Get Cereal-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E06.Time to Get Cereal-Bluray-1080p.mkv","size":1168542643,"dateAdded":"2019-06-02T23:17:21.074689Z","sceneName":"south.park.s22e06.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7531},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E07.Nobody Got Cereal-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E07.Nobody Got Cereal-Bluray-1080p.mkv","size":1167888451,"dateAdded":"2019-06-02T23:17:31.116314Z","sceneName":"south.park.s22e07.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7532},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E08.Buddha Box-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E08.Buddha Box-Bluray-1080p.mkv","size":1168708139,"dateAdded":"2019-06-02T23:17:38.226108Z","sceneName":"south.park.s22e08.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7533},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E09.Unfulfilled-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E09.Unfulfilled-Bluray-1080p.mkv","size":1169132612,"dateAdded":"2019-06-02T23:17:47.429136Z","sceneName":"south.park.s22e09.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7534},{"seriesId":104,"seasonNumber":22,"relativePath":"Season 22\/S22E10.Bike Parade-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 22\/S22E10.Bike Parade-Bluray-1080p.mkv","size":1169074051,"dateAdded":"2019-06-02T23:17:57.344719Z","sceneName":"south.park.s22e10.1080p.bluray.x264-turmoil","releaseGroup":"TURMOiL","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6316000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7535},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E01.Mexican Joker-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E01.Mexican Joker-Bluray-1080p.mkv","size":2358760127,"dateAdded":"2020-07-08T14:34:03.517778Z","sceneName":"south.park.s23e01.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2532016,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10769952,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14988},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E02.Band in China-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E02.Band in China-Bluray-1080p.mkv","size":2369639887,"dateAdded":"2020-07-08T14:36:06.868072Z","sceneName":"south.park.s23e02.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2539130,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10835096,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14989},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E03.SHOTS!!!-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E03.SHOTS!!!-Bluray-1080p.mkv","size":2321972387,"dateAdded":"2020-07-08T14:38:14.397953Z","sceneName":"south.park.s23e03.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2708312,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10376962,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14990},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E04.Let Them Eat Goo-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E04.Let Them Eat Goo-Bluray-1080p.mkv","size":2308832105,"dateAdded":"2020-07-08T14:40:17.91204Z","sceneName":"south.park.s23e04.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2690196,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10315604,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14991},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E05.Tegridy Farms Halloween Special-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E05.Tegridy Farms Halloween Special-Bluray-1080p.mkv","size":2313525474,"dateAdded":"2020-07-08T14:42:21.234883Z","sceneName":"south.park.s23e05.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2584111,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10453013,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14992},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E06.Season Finale-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E06.Season Finale-Bluray-1080p.mkv","size":2242901453,"dateAdded":"2020-07-08T14:44:24.000543Z","sceneName":"south.park.s23e06.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2717685,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9895314,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14993},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E07.Board Girls-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E07.Board Girls-Bluray-1080p.mkv","size":2307725369,"dateAdded":"2020-07-08T14:46:24.885833Z","sceneName":"south.park.s23e07.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2668996,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10326012,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14994},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E08.Turd Burglars-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E08.Turd Burglars-Bluray-1080p.mkv","size":2360632399,"dateAdded":"2020-07-08T14:48:25.041778Z","sceneName":"south.park.s23e08.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2643992,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10671357,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14995},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E09.Basic Cable-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E09.Basic Cable-Bluray-1080p.mkv","size":2368192297,"dateAdded":"2020-07-08T14:50:25.665602Z","sceneName":"south.park.s23e09.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2442284,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10922082,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14996},{"seriesId":104,"seasonNumber":23,"relativePath":"Season 23\/S23E10.Christmas Snow-Bluray-1080p.mkv","path":"\/tv\/South Park\/Season 23\/S23E10.Christmas Snow-Bluray-1080p.mkv","size":2339538530,"dateAdded":"2020-07-08T14:52:26.747113Z","sceneName":"south.park.s23e10.1080p.bluray.x264-latency","releaseGroup":"latency","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2648680,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10545061,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":14997},{"seriesId":104,"seasonNumber":24,"relativePath":"Season 24\/S24E01.The Pandemic Special-WEBDL-1080p.mkv","path":"\/tv\/South Park\/Season 24\/S24E01.The Pandemic Special-WEBDL-1080p.mkv","size":493325770,"dateAdded":"2020-10-04T22:06:27.151826Z","sceneName":"South Park S24E01 (1080p AMZN WEBRip x265 HEVC 10bit AC3 5.1 Qman) [UTR]","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1001155,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:25","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15663},{"seriesId":104,"seasonNumber":24,"relativePath":"Season 24\/S24E02.South ParQ Vaccination Special-WEBDL-1080p.mkv","path":"\/tv\/South Park\/Season 24\/S24E02.South ParQ Vaccination Special-WEBDL-1080p.mkv","size":944332443,"dateAdded":"2021-03-11T12:08:10.011788Z","sceneName":"South.Park.S24E02.1080p.CC.WEBRip.AAC2.0.x264-PARQ[TGx]","releaseGroup":"PARQ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126387,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2561234,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:48","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17795}],"queue":[]},"148":{"series":{"title":"Chernobyl","alternateTitles":[],"sortTitle":"chernobyl","status":"ended","ended":true,"overview":"Chernobyl dramatizes the story of the 1986 nuclear accident \u2014 one of the worst man-made catastrophes in history \u2014 and the sacrifices made to save Europe from unimaginable disaster.","previousAiring":"2019-06-04T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/140\/banner.jpg?lastWrite=636930952232903080","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5cc9f74c2ddd3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/140\/poster.jpg?lastWrite=636940946694434480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5cc12861c93e4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/140\/fanart.jpg?lastWrite=637165511533879210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/360893\/backgrounds\/62017319.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-06-04T01:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":30504903183,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Chernobyl","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":360893,"tvRageId":0,"tvMazeId":30770,"firstAired":"2019-05-06T00:00:00Z","seriesType":"standard","cleanTitle":"chernobyl","imdbId":"tt7366338","titleSlug":"chernobyl","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","History","Mini-Series"],"tags":[],"added":"2019-05-10T14:27:01.977286Z","ratings":{"votes":83,"value":8.7},"statistics":{"seasonCount":1,"episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":30504903183,"percentOfEpisodes":100.0},"id":140},"episodes":[{"seriesId":140,"episodeFileId":8094,"seasonNumber":1,"episodeNumber":1,"title":"1:23:45","airDate":"2019-05-06","airDateUtc":"2019-05-07T01:00:00Z","overview":"Plant workers and firefighters put their lives on the line to control a catastrophic 1986 explosion at a Soviet nuclear power plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11180},{"seriesId":140,"episodeFileId":8095,"seasonNumber":1,"episodeNumber":2,"title":"Please Remain Calm","airDate":"2019-05-13","airDateUtc":"2019-05-14T01:00:00Z","overview":"With untold millions at risk after the Chernobyl explosion, nuclear physicist Ulana Khomyuk makes a desperate attempt to reach Valery Legasov, a leading Soviet nuclear physicist, and warn him about the threat of second explosion that could devastate the continent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11181},{"seriesId":140,"episodeFileId":8096,"seasonNumber":1,"episodeNumber":3,"title":"Open Wide, O Earth","airDate":"2019-05-20","airDateUtc":"2019-05-21T01:00:00Z","overview":"Lyudmilla Ignatenko, a Pripyat resident, ignores warning about her firefighter husband's contamination; Valery Legasov lays out a decontamination plan, complete with human risks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11182},{"seriesId":140,"episodeFileId":8097,"seasonNumber":1,"episodeNumber":4,"title":"The Happiness of All Mankind","airDate":"2019-05-27","airDateUtc":"2019-05-28T01:00:00Z","overview":"Valery Legasov and Soviet Deputy Prime Minister Boris Shcherbina consider using lunar rovers to remove radioactive debris. Ulana Khomyuk faces government hurdles in determining the truth about the cause of the explosion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11183},{"seriesId":140,"episodeFileId":8098,"seasonNumber":1,"episodeNumber":5,"title":"Vichnaya Pamyat","airDate":"2019-06-03","airDateUtc":"2019-06-04T01:00:00Z","overview":"Valery Legasov, Boris Shcherbina and Ulana Khomyuk risk their lives and reputations to expose the truth about Chernobyl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11184}],"episodeFile":[{"seriesId":140,"seasonNumber":1,"relativePath":"Season 01\/S01E01.1-23-45-Bluray-1080p.mkv","path":"\/tv\/Chernobyl\/Season 01\/S01E01.1-23-45-Bluray-1080p.mkv","size":5868590756,"dateAdded":"2019-07-27T00:15:31.603684Z","sceneName":"Chernobyl.S01E01.1080p.BluRay.X264-REWARD","releaseGroup":"REWARD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12388000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"56:17","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8094},{"seriesId":140,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Please Remain Calm-Bluray-1080p.mkv","path":"\/tv\/Chernobyl\/Season 01\/S01E02.Please Remain Calm-Bluray-1080p.mkv","size":5866228782,"dateAdded":"2019-07-27T00:16:16.927498Z","sceneName":"Chernobyl.S01E02.1080p.BluRay.X264-REWARD","releaseGroup":"REWARD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11090000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"1:02:05","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8095},{"seriesId":140,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Open Wide, O Earth-Bluray-1080p.mkv","path":"\/tv\/Chernobyl\/Season 01\/S01E03.Open Wide, O Earth-Bluray-1080p.mkv","size":5867318886,"dateAdded":"2019-07-27T00:16:57.696358Z","sceneName":"Chernobyl.S01E03.1080p.BluRay.X264-REWARD","releaseGroup":"REWARD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11734000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"59:04","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8096},{"seriesId":140,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Happiness of All Mankind-Bluray-1080p.mkv","path":"\/tv\/Chernobyl\/Season 01\/S01E04.The Happiness of All Mankind-Bluray-1080p.mkv","size":5867562397,"dateAdded":"2019-07-27T00:17:38.480835Z","sceneName":"Chernobyl.S01E04.1080p.BluRay.X264-REWARD","releaseGroup":"REWARD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11083000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"1:02:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8097},{"seriesId":140,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Vichnaya Pamyat-Bluray-1080p.mkv","path":"\/tv\/Chernobyl\/Season 01\/S01E05.Vichnaya Pamyat-Bluray-1080p.mkv","size":7035202362,"dateAdded":"2019-07-27T00:18:24.777796Z","sceneName":"Chernobyl.S01E05.1080p.BluRay.X264-REWARD","releaseGroup":"REWARD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12210000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"1:08:24","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8098}],"queue":[]},"149":{"series":{"title":"Amphibia","alternateTitles":[],"sortTitle":"amphibia","status":"continuing","ended":false,"overview":"After stealing a mysterious music box, 13-year-old, Anne Boonchuy is magically transported to the world of Amphibia, a wild marshland full of talking frog-people. With the help of an excitable young frog named Sprig, Anne will transform from monster to hero and discover the first true friendship of her life!","nextAiring":"2021-10-03T00:00:00Z","previousAiring":"2021-05-23T00:00:00Z","network":"Disney Channel","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/152\/banner.jpg?lastWrite=637006572940202490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c655e05499d0.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/152\/poster.jpg?lastWrite=637523561417741440","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/350984\/posters\/5faaffa9d22a9.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/152\/fanart.jpg?lastWrite=637102721680224360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d4d7cd8dd64e.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":17,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-07-19T00:00:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":19768789548,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-05-23T00:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":17486366336,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-10-03T00:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/Amphibia","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":350984,"tvRageId":0,"tvMazeId":35072,"firstAired":"2019-06-17T00:00:00Z","seriesType":"standard","cleanTitle":"amphibia","imdbId":"tt8050740","titleSlug":"amphibia","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Comedy","Family","Fantasy"],"tags":[],"added":"2019-08-06T03:01:33.130431Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":75,"episodeCount":75,"totalEpisodeCount":93,"sizeOnDisk":37255155884,"percentOfEpisodes":100.0},"id":152},"episodes":[{"seriesId":152,"episodeFileId":8110,"seasonNumber":1,"episodeNumber":1,"title":"Anne or Beast?","airDate":"2019-06-17","airDateUtc":"2019-06-18T00:00:00Z","overview":"Sprig tries to capture a mysterious beast to prove that he\u2019s responsible.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11786},{"seriesId":152,"episodeFileId":8111,"seasonNumber":1,"episodeNumber":2,"title":"Best Fronds","airDate":"2019-06-17","airDateUtc":"2019-06-18T00:11:00Z","overview":"Sprig takes Anne swimming in a nearby lake to help her feel less homesick.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11787},{"seriesId":152,"episodeFileId":8112,"seasonNumber":1,"episodeNumber":3,"title":"Cane Crazy","airDate":"2019-06-18","airDateUtc":"2019-06-19T00:00:00Z","overview":"When Anne breaks Hop Pop's favorite cane, she and her friends set out to replace it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11788},{"seriesId":152,"episodeFileId":8113,"seasonNumber":1,"episodeNumber":4,"title":"Flood, Sweat & Tears","airDate":"2019-06-18","airDateUtc":"2019-06-19T00:11:00Z","overview":"When Anne's bedroom floods, she and Sprig must bunk together.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11789},{"seriesId":152,"episodeFileId":8114,"seasonNumber":1,"episodeNumber":5,"title":"Hop Luck","airDate":"2019-06-19","airDateUtc":"2019-06-20T00:00:00Z","overview":"To win a village cooking contest, Anne leads the family on a quest to make pizza.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11790},{"seriesId":152,"episodeFileId":8115,"seasonNumber":1,"episodeNumber":6,"title":"Stakeout","airDate":"2019-06-19","airDateUtc":"2019-06-20T00:11:00Z","overview":"Sprig wants Anne and Hop Pop to get along, so he tricks them into going on a stakeout.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11791},{"seriesId":152,"episodeFileId":8116,"seasonNumber":1,"episodeNumber":7,"title":"The Domino Effect","airDate":"2019-06-20","airDateUtc":"2019-06-21T00:00:00Z","overview":"Anne wants to keep a caterpillar as a pet, but she'll have to keep it a secret from Hop Pop.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11792},{"seriesId":152,"episodeFileId":8117,"seasonNumber":1,"episodeNumber":8,"title":"Taking Charge","airDate":"2019-06-20","airDateUtc":"2019-06-21T00:11:00Z","overview":"After one of the Plantars mysteriously runs out the charge on Anne's phone, the family embarks on a mission to try and recharge it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11793},{"seriesId":152,"episodeFileId":8118,"seasonNumber":1,"episodeNumber":9,"title":"Anne Theft Auto","airDate":"2019-06-24","airDateUtc":"2019-06-25T00:00:00Z","overview":"In an attempt to learn to drive the family snail wagon, Anne and Sprig take it for a joy ride.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11794},{"seriesId":152,"episodeFileId":8119,"seasonNumber":1,"episodeNumber":10,"title":"Breakout Star","airDate":"2019-06-24","airDateUtc":"2019-06-25T00:11:00Z","overview":"Anne's pimple breakout makes her a celebrity in Wartwood.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11795},{"seriesId":152,"episodeFileId":8120,"seasonNumber":1,"episodeNumber":11,"title":"Sprig Vs. Hop Pop","airDate":"2019-06-25","airDateUtc":"2019-06-26T00:00:00Z","overview":"Angry with how the Plantar farm is being run, Sprig decides to overthrow Hop Pop.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11796},{"seriesId":152,"episodeFileId":8121,"seasonNumber":1,"episodeNumber":12,"title":"Girl Time","airDate":"2019-06-25","airDateUtc":"2019-06-26T00:11:00Z","overview":"Anne plans to give Polly some long-overdue girl time, whether Polly wants it or not.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11797},{"seriesId":152,"episodeFileId":8122,"seasonNumber":1,"episodeNumber":13,"title":"Dating Season","airDate":"2019-06-26","airDateUtc":"2019-06-27T00:00:00Z","overview":"Anne and Hop Pop learn Sprig may like Ivy Sundew, so they attempt to set them up.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11798},{"seriesId":152,"episodeFileId":8123,"seasonNumber":1,"episodeNumber":14,"title":"Anne Vs. Wild","airDate":"2019-06-26","airDateUtc":"2019-06-27T00:11:00Z","overview":"Anne pretends to like camping, which is fine until she goes dangerously overboard.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11799},{"seriesId":152,"episodeFileId":8124,"seasonNumber":1,"episodeNumber":15,"title":"Contagi-Anne","airDate":"2019-06-27","airDateUtc":"2019-06-28T00:00:00Z","overview":"Anne fakes getting sick to get off work, but the rest of the family gets sick.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11800},{"seriesId":152,"episodeFileId":8125,"seasonNumber":1,"episodeNumber":16,"title":"Family Shrub","airDate":"2019-06-27","airDateUtc":"2019-06-28T00:11:00Z","overview":"Sprig and Polly think their family history is boring until they uncover family secrets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11801},{"seriesId":152,"episodeFileId":8126,"seasonNumber":1,"episodeNumber":17,"title":"Lily Pad Thai","airDate":"2019-07-01","airDateUtc":"2019-07-02T00:00:00Z","overview":"Anne gets a job at Stumpy\u2019s diner and transforms the humble frog eatery into a flashy Thai fusion restaurant.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11802},{"seriesId":152,"episodeFileId":8127,"seasonNumber":1,"episodeNumber":18,"title":"Plantar\u2019s Last Stand","airDate":"2019-07-01","airDateUtc":"2019-07-02T00:11:00Z","overview":"When rent on the Plantar\u2019s food stand skyrockets, Anne has to show Hop Pop the key to being a great salesman.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11803},{"seriesId":152,"episodeFileId":8128,"seasonNumber":1,"episodeNumber":19,"title":"Toad Tax","airDate":"2019-07-02","airDateUtc":"2019-07-03T00:00:00Z","overview":"Anne befriends toad soldiers to gain respect in Wartwood.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11804},{"seriesId":152,"episodeFileId":8128,"seasonNumber":1,"episodeNumber":20,"title":"Prison Break","airDate":"2019-07-02","airDateUtc":"2019-07-03T00:11:00Z","overview":"Toad Tower finds itself under attack by a pair of horrifying herons.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11805},{"seriesId":152,"episodeFileId":8129,"seasonNumber":1,"episodeNumber":21,"title":"Grubhog Day","airDate":"2019-07-03","airDateUtc":"2019-07-04T00:00:00Z","overview":"During Grubhog Day, Sprig has to decide whether to uphold his responsibilities or have fun at the carnival.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11806},{"seriesId":152,"episodeFileId":8130,"seasonNumber":1,"episodeNumber":22,"title":"Hop Pop and Lock","airDate":"2019-07-03","airDateUtc":"2019-07-04T00:11:00Z","overview":"To impress Sylvia Sundew, Hop Pop asks Anne to teach him to dance.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11807},{"seriesId":152,"episodeFileId":8131,"seasonNumber":1,"episodeNumber":23,"title":"Civil Wart","airDate":"2019-07-04","airDateUtc":"2019-07-05T00:00:00Z","overview":"When Anne exposes Wartwood to a teen romance film, the town splits on the movie's love triangle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11808},{"seriesId":152,"episodeFileId":8132,"seasonNumber":1,"episodeNumber":24,"title":"Hop-Popular","airDate":"2019-07-04","airDateUtc":"2019-07-05T00:11:00Z","overview":"After losing his stand, Hop Pop decides to run for mayor of Wartwood.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11809},{"seriesId":152,"episodeFileId":8133,"seasonNumber":1,"episodeNumber":25,"title":"Croak and Punishment","airDate":"2019-07-08","airDateUtc":"2019-07-09T00:00:00Z","overview":"When Sprig\u2019s rare and precious Blue Moon Shell is stolen, he and Anne investigate to find the thief.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11810},{"seriesId":152,"episodeFileId":8134,"seasonNumber":1,"episodeNumber":26,"title":"Trip to the Archives","airDate":"2019-07-08","airDateUtc":"2019-07-09T00:11:00Z","overview":"To prepare for Anne\u2019s quest, the Plantars visit the town archives and accidentally get trapped.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11811},{"seriesId":152,"episodeFileId":8135,"seasonNumber":1,"episodeNumber":27,"title":"Snow Day","airDate":"2019-07-09","airDateUtc":"2019-07-10T00:00:00Z","overview":"When a winter cold snap freezes all the frogs in Wartwood, Anne must protect the townspeople.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11812},{"seriesId":152,"episodeFileId":8136,"seasonNumber":1,"episodeNumber":28,"title":"Cracking Mrs. Croaker","airDate":"2019-07-09","airDateUtc":"2019-07-10T00:11:00Z","overview":"In an effort to make Mrs. Croaker like him, Sprig digs up a secret from her past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11813},{"seriesId":152,"episodeFileId":8137,"seasonNumber":1,"episodeNumber":29,"title":"A Night at the Inn","airDate":"2019-07-10","airDateUtc":"2019-07-11T00:00:00Z","overview":"The Plantars stay at a bed and breakfast for the night, but Polly discovers the caretakers aren\u2019t what they seem.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11814},{"seriesId":152,"episodeFileId":8138,"seasonNumber":1,"episodeNumber":30,"title":"Wally and Anne","airDate":"2019-07-10","airDateUtc":"2019-07-11T00:11:00Z","overview":"Everyone calls Anne crazy when she claims to have seen the mythical Moss Man.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11815},{"seriesId":152,"episodeFileId":8139,"seasonNumber":1,"episodeNumber":31,"title":"Family Fishing Trip","airDate":"2019-07-11","airDateUtc":"2019-07-12T00:00:00Z","overview":"Sprig wants to spend time with Hop Pop on their family fishing trip, but Hop Pop\u2019s friend Sylvia gets in the way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11816},{"seriesId":152,"episodeFileId":8140,"seasonNumber":1,"episodeNumber":32,"title":"Bizarre Bazaar","airDate":"2019-07-11","airDateUtc":"2019-07-12T00:11:00Z","overview":"Anne\u2019s music box goes missing at the mysterious and exclusive Bizarre Bazaar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11817},{"seriesId":152,"episodeFileId":8141,"seasonNumber":1,"episodeNumber":33,"title":"Cursed!","airDate":"2019-07-15","airDateUtc":"2019-07-16T00:00:00Z","overview":"After Anne helps Sprig break up with Maddie, strange things start happening to them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11818},{"seriesId":152,"episodeFileId":8142,"seasonNumber":1,"episodeNumber":34,"title":"Fiddle Me This","airDate":"2019-07-15","airDateUtc":"2019-07-16T00:11:00Z","overview":"When a popular talent competition comes to Wartwood, Hop Pop goes overboard in training Sprig to win.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11819},{"seriesId":152,"episodeFileId":8143,"seasonNumber":1,"episodeNumber":35,"title":"The Big Bugball Game","airDate":"2019-07-16","airDateUtc":"2019-07-17T00:00:00Z","overview":"Anne must learn the value of teamwork to win the town's annual Bugball game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11820},{"seriesId":152,"episodeFileId":8144,"seasonNumber":1,"episodeNumber":36,"title":"Combat Camp","airDate":"2019-07-16","airDateUtc":"2019-07-17T00:11:00Z","overview":"Anne, Sprig and Polly are forced to stay at a daycare center that turns out to be more than it seems.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11821},{"seriesId":152,"episodeFileId":8145,"seasonNumber":1,"episodeNumber":37,"title":"Children of the Spore","airDate":"2019-07-17","airDateUtc":"2019-07-18T00:00:00Z","overview":"A scary mushroom adventure!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11822},{"seriesId":152,"episodeFileId":8146,"seasonNumber":1,"episodeNumber":38,"title":"Anne of The Year","airDate":"2019-07-17","airDateUtc":"2019-07-18T00:11:00Z","overview":"Anne wins the prestigious \"Frog of the Year\" award and gets to plan her own party, but the frogs of Wartwood may not be ready for a human-style bash.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11823},{"seriesId":152,"episodeFileId":8147,"seasonNumber":1,"episodeNumber":39,"title":"Reunion","airDate":"2019-07-18","airDateUtc":"2019-07-19T00:00:00Z","overview":"During a banquet hosted by the toads, Anne is reunited with a friend from home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11824},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"No Signal","airDate":"2019-09-03","airDateUtc":"2019-09-04T00:00:00Z","overview":"Anne can't get any signal on her phone so Sprig tries to help her find an antenna.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12895},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Whack-A-Mole","airDate":"2019-09-10","airDateUtc":"2019-09-11T00:00:00Z","overview":"Anne and Sprig try to play whack-a-mole to get rid of some pests that turn out to be not so little after all...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13007},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Scenic Route","airDate":"2019-09-17","airDateUtc":"2019-09-18T00:00:00Z","overview":"Anne and the Plantars take the more scenic route on their casual snail stroll, but it winds up being crazier than expected!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13089},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Hop Popcorn","airDate":"2019-09-24","airDateUtc":"2019-09-25T00:00:00Z","overview":"When Anne and the Plantars sit down to watch a movie, Hop Pop brings out a giant snack!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13093},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Cattail Catastrophe","airDate":"2019-10-01","airDateUtc":"2019-10-02T00:00:00Z","overview":"Anne and Sprig use a cattail to get across a gap!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13121},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Rhino Beetle","airDate":"2019-11-13","airDateUtc":"2019-11-14T01:00:00Z","overview":"It's time for WILD AMPHIBIA! Host Soggy Joe introduces Amphibia's very own species Rhino Beetles that are not to be messed with...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17575},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Killer Tomatoes","airDate":"2019-11-20","airDateUtc":"2019-11-21T01:00:00Z","overview":"It's time for WILD AMPHIBIA! Host Soggy Joe introduces giant killer tomatoes that are only supposed to eat flying things...oh wait nevermind...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17576},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Kitty","airDate":"2019-11-27","airDateUtc":"2019-11-28T01:00:00Z","overview":"It's time for WILD AMPHIBIA! Host Soggy Joe introduces the cutest little kitty...oh wait WHAT IS THAT?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17577},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Praying Mantis","airDate":"2019-12-04","airDateUtc":"2019-12-05T01:00:00Z","overview":"Host Soggy Joe introduces the deadly Praying Mantis that takes at least 30 frogs to defeat them... oh wait just kidding.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17578},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Mantis Bowling","airDate":"2020-06-07","airDateUtc":"2020-06-08T00:00:00Z","overview":"Anne teaches Sprig, Polly, and Hop Pop how to bowl ~Amphibia style!~","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18399},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Quit Bugging Me","airDate":"2020-06-14","airDateUtc":"2020-06-15T00:00:00Z","overview":"Hop Pop can't seem to catch a break these days!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18458},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Bird Attack","airDate":"2020-06-21","airDateUtc":"2020-06-22T00:00:00Z","overview":"Anne and Sprig get chased all over Amphibia!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18485},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Bucket Blues","airDate":"2020-06-28","airDateUtc":"2020-06-29T00:00:00Z","overview":"Polly's bucket gets jealous when she finds a new friend!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18533},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Family Photo","airDate":"2020-07-05","airDateUtc":"2020-07-06T00:00:00Z","overview":"Hop Pop tries to set up a cute family portrait, but Sprig, Anne, and Polly keep ruining the photos!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18552},{"seriesId":152,"episodeFileId":18576,"seasonNumber":2,"episodeNumber":1,"title":"Handy Anne","airDate":"2020-07-11","airDateUtc":"2020-07-12T00:00:00Z","overview":"Worried that something bad could happen while they are in Newtopia, Anne decides to disaster-proof the farm.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18478},{"seriesId":152,"episodeFileId":18566,"seasonNumber":2,"episodeNumber":2,"title":"Fort in the Road","airDate":"2020-07-11","airDateUtc":"2020-07-12T00:11:00Z","overview":"Sprig longs for exotic road trip adventures, but Hop Pop\u2019s strict road rules threaten to spoil all of his fun plans.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18479},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Quicksand","airDate":"2020-07-12","airDateUtc":"2020-07-13T00:00:00Z","overview":"When Anne gets stuck in quicksand, Sprig, Polly, and Hop Pop have to figure out how to get her out!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18570},{"seriesId":152,"episodeFileId":18564,"seasonNumber":2,"episodeNumber":3,"title":"The Ballad of Hopediah Plantar","airDate":"2020-07-18","airDateUtc":"2020-07-19T00:00:00Z","overview":"Hop Pop's efforts to be hailed as a hero backfire when he stands up to the wrong family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18480},{"seriesId":152,"episodeFileId":18543,"seasonNumber":2,"episodeNumber":4,"title":"Anne Hunter","airDate":"2020-07-18","airDateUtc":"2020-07-19T00:11:00Z","overview":"Anne must put her self-consciousness aside in order to learn the true way of the hunter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18481},{"seriesId":152,"episodeFileId":18541,"seasonNumber":2,"episodeNumber":5,"title":"Truck Stop Polly","airDate":"2020-07-25","airDateUtc":"2020-07-26T00:00:00Z","overview":"Feeling unappreciated, Polly hatches a plan to make the family pay attention to her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18482},{"seriesId":152,"episodeFileId":18545,"seasonNumber":2,"episodeNumber":6,"title":"A Caravan Named Desire","airDate":"2020-07-25","airDateUtc":"2020-07-26T00:11:00Z","overview":"Hop Pop signs the family up to join a traveling theater troupe, hoping to realize his dream of being an actor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18483},{"seriesId":152,"episodeFileId":18542,"seasonNumber":2,"episodeNumber":7,"title":"Quarreler\u2019s Pass","airDate":"2020-08-01","airDateUtc":"2020-08-02T00:00:00Z","overview":"Hop Pop drops Sprig and Polly off at a trail designed to help them get along.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18494},{"seriesId":152,"episodeFileId":18572,"seasonNumber":2,"episodeNumber":8,"title":"Toadcatcher","airDate":"2020-08-01","airDateUtc":"2020-08-02T00:11:00Z","overview":"Sasha and Grime must reconcile their differences to escape Newtopia\u2019s most skilled warrior, General Yunnan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18495},{"seriesId":152,"episodeFileId":18574,"seasonNumber":2,"episodeNumber":9,"title":"Swamp and Sensibility","airDate":"2020-08-08","airDateUtc":"2020-08-09T00:00:00Z","overview":"When Anne discovers an old friend who has been living a double life, she becomes fixated on helping him be his true self.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18496},{"seriesId":152,"episodeFileId":18544,"seasonNumber":2,"episodeNumber":10,"title":"Wax Museum","airDate":"2020-08-08","airDateUtc":"2020-08-09T00:11:00Z","overview":"The family visits a mysterious roadside oddities museum where every treasure comes with a price.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18497},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"8-bit Theme Song Takeover","airDate":"2020-08-14","airDateUtc":"2020-08-15T00:00:00Z","overview":"Anne and Sprig play a new video game on her phone resembling their adventures. Hop Pop later tells them to clean the spiders out of the bathroom to lure them away so he can play the game.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21607},{"seriesId":152,"episodeFileId":18577,"seasonNumber":2,"episodeNumber":11,"title":"Marcy At The Gates","airDate":"2020-08-15","airDateUtc":"2020-08-16T00:00:00Z","overview":"The family must defeat an entire ant army before they enter Newtopia.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18557},{"seriesId":152,"episodeFileId":18558,"seasonNumber":2,"episodeNumber":12,"title":"Scavenger Hunt","airDate":"2020-08-22","airDateUtc":"2020-08-23T00:00:00Z","overview":"Anne, Sprig and Marcy receive a mysterious message from the king of Newtopia that sends them on a puzzle-solving mission.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18558},{"seriesId":152,"episodeFileId":18551,"seasonNumber":2,"episodeNumber":13,"title":"The Plantars Check In","airDate":"2020-08-22","airDateUtc":"2020-08-23T00:11:00Z","overview":"Anne finally meets with King Andrias and tries to enlist his help in getting back home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18559},{"seriesId":152,"episodeFileId":18546,"seasonNumber":2,"episodeNumber":14,"title":"Lost in Newtopia","airDate":"2020-08-29","airDateUtc":"2020-08-30T00:00:00Z","overview":"Anne and Polly vow to experience the city like locals but end up on a wild ride through the streets of Newtopia.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18560},{"seriesId":152,"episodeFileId":18548,"seasonNumber":2,"episodeNumber":15,"title":"Sprig Gets Schooled","airDate":"2020-08-29","airDateUtc":"2020-08-30T00:11:00Z","overview":"Sprig is offered a spot at Newtopia University.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18561},{"seriesId":152,"episodeFileId":18547,"seasonNumber":2,"episodeNumber":16,"title":"Little Frogtown","airDate":"2020-09-12","airDateUtc":"2020-09-13T00:00:00Z","overview":"Hop Pop investigates the disappearance of an old friend and the shadowy crime syndicate he suspects are behind it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18622},{"seriesId":152,"episodeFileId":18550,"seasonNumber":2,"episodeNumber":17,"title":"Hopping Mall","airDate":"2020-09-12","airDateUtc":"2020-09-13T00:11:00Z","overview":"Hop Pop takes the kids to a Newtopian shopping mall to buy souvenirs, and Anne will do anything to get the perfect gift for her mom back home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18623},{"seriesId":152,"episodeFileId":18552,"seasonNumber":2,"episodeNumber":18,"title":"The Sleepover to End All Sleepovers","airDate":"2020-09-19","airDateUtc":"2020-09-20T00:00:00Z","overview":"Anne and Marcy issue a Scare Dare Challenge that brings Sprig and Polly into forbidden areas of the castle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18624},{"seriesId":152,"episodeFileId":18549,"seasonNumber":2,"episodeNumber":19,"title":"A Day at the Aquarium","airDate":"2020-09-19","airDateUtc":"2020-09-20T00:11:00Z","overview":"Anne and the Plantars look to spend what could be their last day together at the Newtopia Aquarium.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18625},{"seriesId":152,"episodeFileId":18571,"seasonNumber":2,"episodeNumber":20,"title":"The Shut-In!","airDate":"2020-10-17","airDateUtc":"2020-10-18T00:00:00Z","overview":"In this special extended episode, Anne and the Plantars protect themselves from the dangers of the annual Blue Moon by locking themselves in the house and entertaining each other with the scariest stories they can think of.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19693},{"seriesId":152,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Sasha Theme Song Takeover","airDate":"2021-01-10","airDateUtc":"2021-01-11T01:00:00Z","overview":"Sasha takes over the theme song to help explain her, in her own opinion, much better back story to Anne. Even if her theme song is better, Anne believes that she still works as the main character, though Sprig thinks he is the main character of the series because he is the normal frog who saved the human monster (Anne) and then took care of her.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21608},{"seriesId":152,"episodeFileId":18554,"seasonNumber":2,"episodeNumber":21,"title":"Night Drivers","airDate":"2021-03-06","airDateUtc":"2021-03-07T01:00:00Z","overview":"Sprig and Polly stay up all night to drive the family home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19694},{"seriesId":152,"episodeFileId":18553,"seasonNumber":2,"episodeNumber":22,"title":"Return to Wartwood","airDate":"2021-03-06","airDateUtc":"2021-03-07T01:11:00Z","overview":"The Plantars make it to Wartwood, and realize they forgot something important.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19695},{"seriesId":152,"episodeFileId":18575,"seasonNumber":2,"episodeNumber":23,"title":"Ivy on the Run","airDate":"2021-03-13","airDateUtc":"2021-03-14T01:00:00Z","overview":"Fed up with her mother's strict rules, Ivy concocts a plan to run away.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20283},{"seriesId":152,"episodeFileId":18578,"seasonNumber":2,"episodeNumber":24,"title":"After the Rain","airDate":"2021-03-13","airDateUtc":"2021-03-14T01:11:00Z","overview":"Anne asks Hop Pop to retrieve the music box, bringing some long-buried secrets to light.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20284},{"seriesId":152,"episodeFileId":18918,"seasonNumber":2,"episodeNumber":25,"title":"The First Temple","airDate":"2021-03-20","airDateUtc":"2021-03-21T00:00:00Z","overview":"Marcy, Anne, and the Plantars travel to an ancient temple that could hold the key to getting Anne and Marcy home, but only if they can survive the temple's deadly challenges!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20285},{"seriesId":152,"episodeFileId":18919,"seasonNumber":2,"episodeNumber":26,"title":"New Wartwood","airDate":"2021-03-27","airDateUtc":"2021-03-28T00:00:00Z","overview":"Intent on winning over Wartwood, Marcy makes a plan to improve the town.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20286},{"seriesId":152,"episodeFileId":18917,"seasonNumber":2,"episodeNumber":27,"title":"Friend or Frobo?","airDate":"2021-03-27","airDateUtc":"2021-03-28T00:11:00Z","overview":"Desperate for fun, Polly breaks out on her own and finds an unlikely new friend in the process.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20287},{"seriesId":152,"episodeFileId":18555,"seasonNumber":2,"episodeNumber":28,"title":"Toad to Redemption","airDate":"2021-04-03","airDateUtc":"2021-04-04T00:00:00Z","overview":"Mayor Toadstool is offered his dream job but realizes he doesn't want to leave Wartwood.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20288},{"seriesId":152,"episodeFileId":18556,"seasonNumber":2,"episodeNumber":29,"title":"Maddie & Marcy","airDate":"2021-04-03","airDateUtc":"2021-04-04T00:11:00Z","overview":"Maddie is working on an important spell but her three baby sisters keep getting in the way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20289},{"seriesId":152,"episodeFileId":18557,"seasonNumber":2,"episodeNumber":30,"title":"The Second Temple","airDate":"2021-04-10","airDateUtc":"2021-04-11T00:00:00Z","overview":"Anne and Marcy's quest to get home takes them to an icy mountain temple, but they'll need help to find it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20290},{"seriesId":152,"episodeFileId":18559,"seasonNumber":2,"episodeNumber":31,"title":"Barrel's Warhammer","airDate":"2021-04-10","airDateUtc":"2021-04-11T00:11:00Z","overview":"Sasha and Grime go on a quest to retrieve a legendary Warhammer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20291},{"seriesId":152,"episodeFileId":18561,"seasonNumber":2,"episodeNumber":32,"title":"Bessie & MicroAngelo","airDate":"2021-04-17","airDateUtc":"2021-04-18T00:00:00Z","overview":"Bessie has her work cut out for her when she's tasked with showing MicroAngelo the ropes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20292},{"seriesId":152,"episodeFileId":18560,"seasonNumber":2,"episodeNumber":33,"title":"The Third Temple","airDate":"2021-04-17","airDateUtc":"2021-04-18T00:11:00Z","overview":"Anne and Marcy need the help of an old friend to survive a volcanic temple that holds the final key to returning home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20293},{"seriesId":152,"episodeFileId":18563,"seasonNumber":2,"episodeNumber":34,"title":"The Dinner","airDate":"2021-04-24","airDateUtc":"2021-04-25T00:00:00Z","overview":"Anne and the Plantars invite some old adversaries over for dinner to try to bury the hatchet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20294},{"seriesId":152,"episodeFileId":18562,"seasonNumber":2,"episodeNumber":35,"title":"Battle of the Bands","airDate":"2021-04-24","airDateUtc":"2021-04-25T00:11:00Z","overview":"Anne and her friends team up to enter the Wartwood Battle of the Bands contest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20295},{"seriesId":152,"episodeFileId":18565,"seasonNumber":2,"episodeNumber":36,"title":"True Colors","airDate":"2021-05-22","airDateUtc":"2021-05-23T00:00:00Z","overview":"The gang travels to Newtopia to say their goodbyes and finally send all three girls home. However, someone has other plans.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20296},{"seriesId":152,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"TBA","airDate":"2021-10-02","airDateUtc":"2021-10-03T00:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21664}],"episodeFile":[{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Anne or Beast-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E01.Anne or Beast-WEBDL-1080p.mkv","size":487204253,"dateAdded":"2019-08-06T07:05:24.573149Z","sceneName":"Amphibia.S01E01.Anne.or.Beast.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"12:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8110},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Best Fronds-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E02.Best Fronds-WEBDL-1080p.mkv","size":492710989,"dateAdded":"2019-08-06T07:05:26.999033Z","sceneName":"Amphibia.S01E02.Best.Fronds.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8111},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Cane Crazy-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E03.Cane Crazy-WEBDL-1080p.mkv","size":472601831,"dateAdded":"2019-08-06T07:05:30.833202Z","sceneName":"Amphibia.S01E03.Cane.Crazy.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8112},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Flood, Sweat & Tears-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E04.Flood, Sweat & Tears-WEBDL-1080p.mkv","size":535418047,"dateAdded":"2019-08-06T07:05:32.917232Z","sceneName":"Amphibia.S01E04.Flood.Sweat.and.Tears.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8113},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Hop Luck-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E05.Hop Luck-WEBDL-1080p.mkv","size":500912430,"dateAdded":"2019-08-06T07:05:37.813026Z","sceneName":"Amphibia.S01E05.Hop.Luck.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8114},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Stakeout-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E06.Stakeout-WEBDL-1080p.mkv","size":519741860,"dateAdded":"2019-08-06T07:05:42.396095Z","sceneName":"Amphibia.S01E06.Stakeout.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8115},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Domino Effect-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E07.The Domino Effect-WEBDL-1080p.mkv","size":496503531,"dateAdded":"2019-08-06T07:05:45.024614Z","sceneName":"Amphibia.S01E07.The.Domino.Effect.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8116},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Taking Charge-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E08.Taking Charge-WEBDL-1080p.mkv","size":517600581,"dateAdded":"2019-08-06T07:05:47.238871Z","sceneName":"Amphibia.S01E08.Taking.Charge.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8117},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Anne Theft Auto-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E09.Anne Theft Auto-WEBDL-1080p.mkv","size":512424906,"dateAdded":"2019-08-06T07:05:51.61472Z","sceneName":"Amphibia.S01E09.Anne.Theft.Auto.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8118},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Breakout Star-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E10.Breakout Star-WEBDL-1080p.mkv","size":525560571,"dateAdded":"2019-08-06T07:05:57.098762Z","sceneName":"Amphibia.S01E10.Breakout.Star.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8119},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Sprig Vs. Hop Pop-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E11.Sprig Vs. Hop Pop-WEBDL-1080p.mkv","size":533811667,"dateAdded":"2019-08-06T07:06:01.057808Z","sceneName":"Amphibia.S01E11.Sprig.Vs.Hop.Pop.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8120},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Girl Time-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E12.Girl Time-WEBDL-1080p.mkv","size":520682165,"dateAdded":"2019-08-06T07:06:03.978642Z","sceneName":"Amphibia.S01E12.Girl.Time.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8121},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Dating Season-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E13.Dating Season-WEBDL-1080p.mkv","size":459559371,"dateAdded":"2019-08-06T07:06:08.455494Z","sceneName":"Amphibia.S01E13.Dating.Season.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8122},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Anne Vs. Wild-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E14.Anne Vs. Wild-WEBDL-1080p.mkv","size":439558179,"dateAdded":"2019-08-06T07:06:14.93442Z","sceneName":"Amphibia.S01E14.Anne.Vs.Wild.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8123},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Contangi-Anne-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E15.Contangi-Anne-WEBDL-1080p.mkv","size":457789533,"dateAdded":"2019-08-06T07:06:17.473109Z","sceneName":"Amphibia.S01E15.Contangi-Anne.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8124},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Family Shrub-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E16.Family Shrub-WEBDL-1080p.mkv","size":467799778,"dateAdded":"2019-08-06T07:06:19.530097Z","sceneName":"Amphibia.S01E16.Family.Shrub.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8125},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Lily Pad Thai-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E17.Lily Pad Thai-WEBDL-1080p.mkv","size":519963515,"dateAdded":"2019-08-06T07:06:23.76772Z","sceneName":"Amphibia.S01E17.Lily.Pad.Thai.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8126},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Plantar\u2019s Last Stand-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E18.Plantar\u2019s Last Stand-WEBDL-1080p.mkv","size":516123929,"dateAdded":"2019-08-06T07:06:30.866341Z","sceneName":"Amphibia.S01E18.Plantars.Last.Stand.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8127},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E19E20.Toad Tax + Prison Break-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E19E20.Toad Tax + Prison Break-WEBDL-1080p.mkv","size":932799809,"dateAdded":"2019-08-06T07:06:35.074097Z","sceneName":"Amphibia.S01E19E20.Toad.Tax-Prison.Break.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8128},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Grubhog Day-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E21.Grubhog Day-WEBDL-1080p.mkv","size":499142907,"dateAdded":"2019-08-06T07:06:39.378814Z","sceneName":"Amphibia.S01E21.Grubhog.Day.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8129},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Hop Pop and Lock-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E22.Hop Pop and Lock-WEBDL-1080p.mkv","size":508616871,"dateAdded":"2019-08-06T07:06:44.5026Z","sceneName":"Amphibia.S01E22.Hop.Pop.and.Lock.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8130},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Civil Wart-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E23.Civil Wart-WEBDL-1080p.mkv","size":459031711,"dateAdded":"2019-08-06T07:06:50.015779Z","sceneName":"Amphibia.S01E23.Civil.Wart.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8131},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Hop-Popular-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E24.Hop-Popular-WEBDL-1080p.mkv","size":551030148,"dateAdded":"2019-08-06T07:06:53.394623Z","sceneName":"Amphibia.S01E24.Hop-Popular.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8132},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Croak and Punishment-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E25.Croak and Punishment-WEBDL-1080p.mkv","size":454498787,"dateAdded":"2019-08-06T07:06:56.138053Z","sceneName":"Amphibia.S01E25.Croak.and.Punishment.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8133},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Trip to the Archives-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E26.Trip to the Archives-WEBDL-1080p.mkv","size":484235776,"dateAdded":"2019-08-06T07:07:00.835199Z","sceneName":"Amphibia.S01E26.Trip.to.the.Archives.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8134},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E27.Snow Day-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E27.Snow Day-WEBDL-1080p.mkv","size":512559136,"dateAdded":"2019-08-06T07:07:06.005051Z","sceneName":"Amphibia.S01E27.Snow.Day.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8135},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Cracking Mrs. Croaker-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E28.Cracking Mrs. Croaker-WEBDL-1080p.mkv","size":467466923,"dateAdded":"2019-08-06T07:07:10.206792Z","sceneName":"Amphibia.S01E28.Cracking.Mrs.Croaker.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8136},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E29.A Night at the Inn-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E29.A Night at the Inn-WEBDL-1080p.mkv","size":512652202,"dateAdded":"2019-08-06T07:07:12.554815Z","sceneName":"Amphibia.S01E29.A.Night.at.the.Inn.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8137},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Wally and Anne-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E30.Wally and Anne-WEBDL-1080p.mkv","size":483720997,"dateAdded":"2019-08-06T07:07:16.78997Z","sceneName":"Amphibia.S01E30.Wally.and.Anne.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8138},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E31.Family Fishing Trip-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E31.Family Fishing Trip-WEBDL-1080p.mkv","size":508981087,"dateAdded":"2019-08-06T07:07:22.443497Z","sceneName":"Amphibia.S01E31.Family.Fishing.Trip.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8139},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Bizarre Bazaar-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E32.Bizarre Bazaar-WEBDL-1080p.mkv","size":480274259,"dateAdded":"2019-08-06T07:07:27.116834Z","sceneName":"Amphibia.S01E32.Bizarre.Bazaar.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8140},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E33.Cursed!-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E33.Cursed!-WEBDL-1080p.mkv","size":524706880,"dateAdded":"2019-08-06T07:07:31.08001Z","sceneName":"Amphibia.S01E33.Cursed.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8141},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Fiddle Me This-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E34.Fiddle Me This-WEBDL-1080p.mkv","size":527724242,"dateAdded":"2019-08-06T07:07:36.264573Z","sceneName":"Amphibia.S01E34.Fiddle.Me.This.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8142},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E35.The Big Bugball Game-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E35.The Big Bugball Game-WEBDL-1080p.mkv","size":448611470,"dateAdded":"2019-08-06T07:07:41.48483Z","sceneName":"Amphibia.S01E35.The.Big.Bugball.Game.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8143},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E36.Combat Camp-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E36.Combat Camp-WEBDL-1080p.mkv","size":483284372,"dateAdded":"2019-08-06T07:07:47.427343Z","sceneName":"Amphibia.S01E36.Combat.Camp.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8144},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E37.Children of the Spore-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E37.Children of the Spore-WEBDL-1080p.mkv","size":494720851,"dateAdded":"2019-08-06T07:07:51.432702Z","sceneName":"Amphibia.S01E37.Children.of.the.Spore.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8145},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E38.Anne of The Year-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E38.Anne of The Year-WEBDL-1080p.mkv","size":499352104,"dateAdded":"2019-08-06T07:07:54.651954Z","sceneName":"Amphibia.S01E38.Anne.of.The.Year.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8146},{"seriesId":152,"seasonNumber":1,"relativePath":"Season 01\/S01E39.Reunion-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 01\/S01E39.Reunion-WEBDL-1080p.mkv","size":959411880,"dateAdded":"2019-08-06T07:07:58.64472Z","sceneName":"Amphibia.S01E39.Reunion.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8147},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Truck Stop Polly-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E05.Truck Stop Polly-WEBDL-1080p.mkv","size":880802127,"dateAdded":"2021-06-27T14:04:21.882103Z","sceneName":"Amphibia.S02E05.1080p.WEB.h264-WALT[rartv]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5142080,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18541},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Quarreler\u2019s Pass-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E07.Quarreler\u2019s Pass-WEBDL-1080p.mkv","size":863370455,"dateAdded":"2021-06-27T14:14:24.217639Z","sceneName":"Amphibia.S02E07.1080p.WEB.h264-WALT[rartv]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5039011,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18542},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Anne Hunter-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E04.Anne Hunter-WEBDL-1080p.mkv","size":850709150,"dateAdded":"2021-06-27T14:16:06.027236Z","sceneName":"Amphibia.S02E04.1080p.WEB.h264-WALT[rartv]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4964152,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18543},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Wax Museum-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E10.Wax Museum-WEBDL-1080p.mkv","size":465121758,"dateAdded":"2021-06-27T14:17:53.683924Z","sceneName":"Amphibia.S02E10.Wax.Museum.1080p.HULU.WEBRip.AAC2.0.H264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5145829,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18544},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E06.A Caravan Named Desire-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E06.A Caravan Named Desire-WEBDL-1080p.mkv","size":847753843,"dateAdded":"2021-06-27T14:20:46.757274Z","sceneName":"Amphibia.S02E06.1080p.WEB.h264-WALT[rartv]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4944823,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18545},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Lost in Newtopia-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E14.Lost in Newtopia-WEBDL-1080p.mkv","size":505328915,"dateAdded":"2021-06-27T14:22:31.381395Z","sceneName":"Amphibia.S02E14.Lost.in.Newtopia.1080p.HULU.WEBRip.DDP2.0.x264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5436214,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18546},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Little Frogtown-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E16.Little Frogtown-WEBDL-1080p.mkv","size":263336133,"dateAdded":"2021-06-27T14:24:18.046266Z","sceneName":"Amphibia.S02E16.Little.Frogtown.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rartv]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2848199,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18547},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Sprig Gets Schooled-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E15.Sprig Gets Schooled-WEBDL-1080p.mkv","size":448017079,"dateAdded":"2021-06-27T14:26:04.016152Z","sceneName":"Amphibia.S02E15.Sprig.Gets.Schooled.1080p.HULU.WEBRip.DDP2.0.x264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4794010,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18548},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E19.A Day at the Aquarium-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E19.A Day at the Aquarium-WEBDL-1080p.mkv","size":298291410,"dateAdded":"2021-06-27T14:27:47.407636Z","sceneName":"Amphibia.S02E19.A.Day.at.the.Aquarium.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3331841,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18549},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Hopping Mall-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E17.Hopping Mall-WEBDL-1080p.mkv","size":284565169,"dateAdded":"2021-06-27T14:31:08.089765Z","sceneName":"Amphibia.S02E17.Hopping.Mall.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rartv]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3170753,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18550},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Plantars Check In-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E13.The Plantars Check In-WEBDL-1080p.mkv","size":478090505,"dateAdded":"2021-06-27T14:32:54.065046Z","sceneName":"Amphibia.S02E13.The.Plantars.Check.In.1080p.HULU.WEBRip.DDP2.0.x264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130976,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18551},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E18.The Sleepover to End All Sleepovers-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E18.The Sleepover to End All Sleepovers-WEBDL-1080p.mkv","size":279516559,"dateAdded":"2021-06-27T14:34:41.457023Z","sceneName":"Amphibia.S02E18.The.Sleepover.to.End.All.Sleepovers.1080p.AMZN.WEBRip.DDP2.0.x264-CtrlHD[rartv]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3034140,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18552},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Return to Wartwood-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E22.Return to Wartwood-WEBDL-1080p.mkv","size":266504105,"dateAdded":"2021-06-27T14:36:27.478517Z","sceneName":"Amphibia.S02E22.Return.to.Wartwood.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2956522,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18553},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Night Drivers-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E21.Night Drivers-WEBDL-1080p.mkv","size":296989307,"dateAdded":"2021-06-27T14:38:08.391567Z","sceneName":"Amphibia.S02E21.Night.Drivers.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3242838,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18554},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E28.Toad to Redemption-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E28.Toad to Redemption-WEBDL-1080p.mkv","size":321854043,"dateAdded":"2021-06-27T14:41:11.475327Z","sceneName":"Amphibia.S02E28.Toad.to.Redemption.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3534583,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18555},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E29.Maddie & Marcy-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E29.Maddie & Marcy-WEBDL-1080p.mkv","size":271848135,"dateAdded":"2021-06-27T14:42:57.526707Z","sceneName":"Amphibia.S02E29.Maddie.and.Marcy.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3019112,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18556},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E30.The Second Temple-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E30.The Second Temple-WEBDL-1080p.mkv","size":314254999,"dateAdded":"2021-06-27T14:44:43.500386Z","sceneName":"Amphibia.S02E30.The.Second.Temple.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3446909,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18557},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Scavenger Hunt-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E12.Scavenger Hunt-WEBDL-1080p.mkv","size":467764423,"dateAdded":"2021-06-27T14:46:29.68137Z","sceneName":"Amphibia.S02E12.Scavenger.Hunt.1080p.HULU.WEBRip.DDP2.0.x264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5015249,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18558},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E31.Barrel's Warhammer-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E31.Barrel's Warhammer-WEBDL-1080p.mkv","size":295540268,"dateAdded":"2021-06-27T14:48:15.196857Z","sceneName":"Amphibia.S02E31.Barrels.Warhammer.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3300830,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18559},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E33.The Third Temple-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E33.The Third Temple-WEBDL-1080p.mkv","size":251610186,"dateAdded":"2021-06-27T14:50:06.334019Z","sceneName":"Amphibia.S02E33.The.Third.Temple.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2778690,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18560},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E32.Bessie & MicroAngelo-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E32.Bessie & MicroAngelo-WEBDL-1080p.mkv","size":339125439,"dateAdded":"2021-06-27T14:51:47.418092Z","sceneName":"Amphibia.S02E32.Bessie.and.MicroAngelo.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3735284,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18561},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E35.Battle of the Bands-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E35.Battle of the Bands-WEBDL-1080p.mkv","size":262884557,"dateAdded":"2021-06-27T14:53:33.556301Z","sceneName":"Amphibia.S02E35.Battle.of.the.Bands.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2911900,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18562},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E34.The Dinner-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E34.The Dinner-WEBDL-1080p.mkv","size":312405364,"dateAdded":"2021-06-27T14:55:14.424204Z","sceneName":"Amphibia.S02E34.The.Dinner.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3424018,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18563},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Ballad of Hopediah Plantar-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E03.The Ballad of Hopediah Plantar-WEBDL-1080p.mkv","size":895507564,"dateAdded":"2021-06-27T18:21:56.897571Z","sceneName":"Amphibia.S02E03.1080p.WEB.h264-WALT[rartv]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5229041,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18564},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E36.True Colors-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E36.True Colors-WEBDL-1080p.mkv","size":976179368,"dateAdded":"2021-06-27T18:32:50.829741Z","sceneName":"Amphibia.S02E36.True.Colors.1080p.WEB-DL.x264.AAC2.0-MEGA","releaseGroup":"MEGA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125071,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5115471,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1076","runTime":"24:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18565},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Fort in the Road-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E02.Fort in the Road-WEBDL-1080p.mkv","size":467376220,"dateAdded":"2021-06-27T18:53:51.111632Z","sceneName":"Amphibia.S02E02.Fort in the Road.1080p.AMZN.WEB-DL.DDP2.0.H.264-TVSmash[eztv.io]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5171099,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18566},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E20.The Shut-In!-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E20.The Shut-In!-WEBDL-1080p.mkv","size":757145988,"dateAdded":"2021-06-28T13:17:10.702856Z","sceneName":"Amphibia.S02E20.The.Shut-In.1080p.HULU.WEBRip.AAC2.0.H264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4409262,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18571},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Toadcatcher-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E08.Toadcatcher-WEBDL-1080p.mkv","size":462494240,"dateAdded":"2021-06-28T13:18:55.560817Z","sceneName":"Amphibia.S02E08.Toadcatcher.1080p.HULU.WEBRip.AAC2.0.H264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113365,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18572},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Swamp and Sensibility-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E09.Swamp and Sensibility-WEBDL-1080p.mkv","size":469465351,"dateAdded":"2021-06-28T13:22:21.728878Z","sceneName":"Amphibia.S02E09.Swamp.and.Sensibility.1080p.HULU.WEBRip.AAC2.0.H264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5194481,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18574},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Ivy on the Run-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E23.Ivy on the Run-WEBDL-1080p.mkv","size":321731349,"dateAdded":"2021-06-28T13:24:06.376488Z","sceneName":"Amphibia.S02E23.Ivy.on.the.Run.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3533160,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18575},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Handy Anne-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E01.Handy Anne-WEBDL-1080p.mkv","size":840164120,"dateAdded":"2021-06-28T13:25:48.268118Z","sceneName":"Amphibia.S02E01.Handy.Anne.Fort.in.the.Road.1080p.DSNY.WEBRip.AAC2.0.x264-SRS[rartv]","releaseGroup":"SRS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18576},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Marcy At The Gates-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E11.Marcy At The Gates-WEBDL-1080p.mkv","size":847753817,"dateAdded":"2021-06-28T13:27:33.070236Z","sceneName":"Amphibia.S02E11.Marcy.at.the.Gates.1080p.HULU.WEBRip.AAC2.0.H264-TVSmash[rartv]","releaseGroup":"TVSmash","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4944823,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18577},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E24.After the Rain-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E24.After the Rain-WEBDL-1080p.mkv","size":364787290,"dateAdded":"2021-06-28T13:29:19.750316Z","sceneName":"Amphibia.S02E24.After.the.Rain.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4128520,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18578},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E27.Friend or Frobo-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E27.Friend or Frobo-WEBDL-1080p.mkv","size":316218541,"dateAdded":"2021-09-08T15:45:58.680913Z","sceneName":"Amphibia.S02E27.Friend.or.Frobo.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3548777,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18917},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E25.The First Temple-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E25.The First Temple-WEBDL-1080p.mkv","size":544837776,"dateAdded":"2021-09-08T15:47:40.047118Z","sceneName":"Amphibia.S02E25.The.First.Temple.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2991137,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18918},{"seriesId":152,"seasonNumber":2,"relativePath":"Season 02\/S02E26.New Wartwood-WEBDL-1080p.mkv","path":"\/tv\/Amphibia\/Season 02\/S02E26.New Wartwood-WEBDL-1080p.mkv","size":357020783,"dateAdded":"2021-09-08T15:49:26.877739Z","sceneName":"Amphibia.S02E26.New.Wartwood.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3945484,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18919}],"queue":[]},"150":{"series":{"title":"Snowpiercer","alternateTitles":[{"title":"Snowpiercer: Rompenieves","seasonNumber":-1},{"title":"Snowpiercer Rompenieves","seasonNumber":-1}],"sortTitle":"snowpiercer","status":"continuing","ended":false,"overview":"Earth has frozen over and the last surviving humans live on a giant train circling the globe, struggling to coexist amid the delicate balance onboard.","previousAiring":"2021-03-30T01:47:00Z","network":"TNT (US)","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/175\/banner.jpg?lastWrite=637253868625285400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364928\/banners\/5eb332cdc9eb7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/175\/poster.jpg?lastWrite=637545233243400470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364928\/posters\/600fd44c9c6cd.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/175\/fanart.jpg?lastWrite=637324692835955380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364928\/backgrounds\/5ecbc6cac556a.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-07-13T01:47:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":44763803447,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-03-30T01:47:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":16145870403,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Snowpiercer","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":364928,"tvRageId":0,"tvMazeId":23030,"firstAired":"2020-05-17T00:00:00Z","seriesType":"standard","cleanTitle":"snowpiercer","imdbId":"tt6156584","titleSlug":"snowpiercer","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2019-09-21T09:34:05.655694Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":60909673850,"percentOfEpisodes":100.0},"id":175},"episodes":[{"seriesId":175,"episodeFileId":17310,"seasonNumber":1,"episodeNumber":1,"title":"First, the Weather Changed","airDate":"2020-05-17","airDateUtc":"2020-05-18T01:00:00Z","overview":"Snowpiercer, the great ark train, circles a frozen earth keeping humanity's last survivors until a murder onboard threatens the established order.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":17082},{"seriesId":175,"episodeFileId":17311,"seasonNumber":1,"episodeNumber":2,"title":"Prepare to Brace","airDate":"2020-05-24","airDateUtc":"2020-05-25T01:00:00Z","overview":"Layton investigates the murder while gathering intel for his revolution. Melanie faces a resource crisis that could impact everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":17154},{"seriesId":175,"episodeFileId":17312,"seasonNumber":1,"episodeNumber":3,"title":"Access Is Power","airDate":"2020-05-31","airDateUtc":"2020-06-01T01:00:00Z","overview":"Layton descends into the black market, while Melanie stages a prize fight to defuse class tension.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":17155},{"seriesId":175,"episodeFileId":17313,"seasonNumber":1,"episodeNumber":4,"title":"Without Their Maker","airDate":"2020-06-07","airDateUtc":"2020-06-08T01:00:00Z","overview":"A twist in the murder investigation brings Layton face to face with the murderer, and dangerously close to Melanie's secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":17156},{"seriesId":175,"episodeFileId":17314,"seasonNumber":1,"episodeNumber":5,"title":"Justice Never Boarded","airDate":"2020-06-14","airDateUtc":"2020-06-15T01:00:00Z","overview":"Tension between Third Class and First Class comes to a head at the trial of the Snowpiercer killer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":17157},{"seriesId":175,"episodeFileId":17315,"seasonNumber":1,"episodeNumber":6,"title":"Trouble Comes Sideways","airDate":"2020-06-21","airDateUtc":"2020-06-22T01:00:00Z","overview":"Layton lays track for revolution while Melanie faces an engineering emergency that threatens every soul on Snowpiercer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":17158},{"seriesId":175,"episodeFileId":17316,"seasonNumber":1,"episodeNumber":7,"title":"The Universe Is Indifferent","airDate":"2020-06-28","airDateUtc":"2020-06-29T01:00:00Z","overview":"Melanie intensifies her search for Layton as he plots to weaponize her secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":17159},{"seriesId":175,"episodeFileId":17317,"seasonNumber":1,"episodeNumber":8,"title":"These Are His Revolutions","airDate":"2020-07-05","airDateUtc":"2020-07-06T01:00:00Z","overview":"Revolution has finally come. As Layton leads the lower classes forward in armed rebellion, Melanie's house of cards collapses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":17160},{"seriesId":175,"episodeFileId":17318,"seasonNumber":1,"episodeNumber":9,"title":"The Train Demanded Blood","airDate":"2020-07-12","airDateUtc":"2020-07-13T01:00:00Z","overview":"The rebel forces are on their heels when a dangerous foe joins them. A plan is hatched to take the train, but it may destroy them all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":17161},{"seriesId":175,"episodeFileId":17319,"seasonNumber":1,"episodeNumber":10,"title":"994 Cars Long","airDate":"2020-07-12","airDateUtc":"2020-07-13T01:47:00Z","overview":"In the revolution's aftermath, Layton and Melanie realize the greatest threat to their survival is right over their shoulder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":17973},{"seriesId":175,"episodeFileId":17176,"seasonNumber":2,"episodeNumber":1,"title":"The Time of Two Engines","airDate":"2021-01-25","airDateUtc":"2021-01-26T02:00:00Z","overview":"Mr. Wilford has arrived. As this new threat rattles Snowpiercer to its core, Melanie makes a move that can't be undone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":19809},{"seriesId":175,"episodeFileId":17474,"seasonNumber":2,"episodeNumber":2,"title":"Smolder to Life","airDate":"2021-02-01","airDateUtc":"2021-02-02T02:00:00Z","overview":"An exchange is made between the two trains, but a far greater revelation might be just over the horizon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":20262},{"seriesId":175,"episodeFileId":17557,"seasonNumber":2,"episodeNumber":3,"title":"A Great Odyssey","airDate":"2021-02-08","airDateUtc":"2021-02-09T02:00:00Z","overview":"Melanie embarks on her most dangerous mission yet. Layton reckons with his personal choices.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":20263},{"seriesId":175,"episodeFileId":17558,"seasonNumber":2,"episodeNumber":4,"title":"A Single Trade","airDate":"2021-02-15","airDateUtc":"2021-02-16T02:00:00Z","overview":"The Big Alice crew are granted shore leave on Snowpiercer. Layton and Wilford have differing opinions on the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20264},{"seriesId":175,"episodeFileId":17580,"seasonNumber":2,"episodeNumber":5,"title":"Keep Hope Alive","airDate":"2021-02-22","airDateUtc":"2021-02-23T02:00:00Z","overview":"Layton and Miss Audrey make a risky play for Big Alice, but Wilford has his own plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20434},{"seriesId":175,"episodeFileId":17701,"seasonNumber":2,"episodeNumber":6,"title":"Many Miles from Snowpiercer","airDate":"2021-03-01","airDateUtc":"2021-03-02T02:00:00Z","overview":"Melanie fights for survival in treacherous conditions, vying to do what others before her could not.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20435},{"seriesId":175,"episodeFileId":17791,"seasonNumber":2,"episodeNumber":7,"title":"Our Answer for Everything","airDate":"2021-03-08","airDateUtc":"2021-03-09T02:00:00Z","overview":"Layton and Till investigate the murders. Wilford leads Miss Audrey down a dark path.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20436},{"seriesId":175,"episodeFileId":17810,"seasonNumber":2,"episodeNumber":8,"title":"The Eternal Engineer","airDate":"2021-03-15","airDateUtc":"2021-03-16T01:00:00Z","overview":"An engineering catastrophe on Snowpiercer forces Layton to make a difficult choice, one that might cost him everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20437},{"seriesId":175,"episodeFileId":17944,"seasonNumber":2,"episodeNumber":9,"title":"The Show Must Go On","airDate":"2021-03-29","airDateUtc":"2021-03-30T01:00:00Z","overview":"Wilford presses forward on his endgame, as Layton sinks to new lows.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20780},{"seriesId":175,"episodeFileId":17943,"seasonNumber":2,"episodeNumber":10,"title":"Into the White","airDate":"2021-03-29","airDateUtc":"2021-03-30T01:47:00Z","overview":"Hope is a powerful motivator. As things hit their darkest point, Layton hatches a plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20781}],"episodeFile":[{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Time of Two Engines-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E01.The Time of Two Engines-WEBDL-1080p.mkv","size":2306330478,"dateAdded":"2021-01-26T08:59:03.948422Z","sceneName":"Snowpiercer.S02E01.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:51","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17176},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E01.First, the Weather Changed-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E01.First, the Weather Changed-Bluray-1080p.mkv","size":5013041617,"dateAdded":"2021-01-29T04:35:53.974249Z","sceneName":"Snowpiercer.S01E01.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17310},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Prepare to Brace-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E02.Prepare to Brace-Bluray-1080p.mkv","size":4439582586,"dateAdded":"2021-01-29T04:38:16.087724Z","sceneName":"Snowpiercer.S01E02.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17311},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Access Is Power-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E03.Access Is Power-Bluray-1080p.mkv","size":4365392560,"dateAdded":"2021-01-29T04:40:35.388184Z","sceneName":"Snowpiercer.S01E03.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17312},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Without Their Maker-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E04.Without Their Maker-Bluray-1080p.mkv","size":4419834264,"dateAdded":"2021-01-29T04:42:49.725346Z","sceneName":"Snowpiercer.S01E04.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17313},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Justice Never Boarded-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E05.Justice Never Boarded-Bluray-1080p.mkv","size":4547672605,"dateAdded":"2021-01-29T04:45:11.611036Z","sceneName":"Snowpiercer.S01E05.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17314},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Trouble Comes Sideways-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E06.Trouble Comes Sideways-Bluray-1080p.mkv","size":4440657624,"dateAdded":"2021-01-29T04:47:25.218128Z","sceneName":"Snowpiercer.S01E06.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17315},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Universe Is Indifferent-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E07.The Universe Is Indifferent-Bluray-1080p.mkv","size":4461606024,"dateAdded":"2021-01-29T04:49:38.400248Z","sceneName":"Snowpiercer.S01E07.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17316},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E08.These Are His Revolutions-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E08.These Are His Revolutions-Bluray-1080p.mkv","size":4619964930,"dateAdded":"2021-01-29T04:51:47.724237Z","sceneName":"Snowpiercer.S01E08.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17317},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Train Demanded Blood-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E09.The Train Demanded Blood-Bluray-1080p.mkv","size":4167081999,"dateAdded":"2021-01-29T04:53:59.582752Z","sceneName":"Snowpiercer.S01E09.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17318},{"seriesId":175,"seasonNumber":1,"relativePath":"Season 01\/S01E10.994 Cars Long-Bluray-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 01\/S01E10.994 Cars Long-Bluray-1080p.mkv","size":4288969238,"dateAdded":"2021-01-29T04:56:09.135014Z","sceneName":"Snowpiercer.S01E10.1080p.BluRay.x264.DTS-FGT","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17319},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Smolder to Life-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E02.Smolder to Life-WEBDL-1080p.mkv","size":2350498409,"dateAdded":"2021-02-02T16:20:32.529447Z","sceneName":"Snowpiercer.S02E02.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:43","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17474},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E03.A Great Odyssey-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E03.A Great Odyssey-WEBDL-1080p.mkv","size":1257729630,"dateAdded":"2021-02-16T09:04:29.363881Z","sceneName":"Snowpiercer.S02E03.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2866570,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:13","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17557},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E04.A Single Trade-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E04.A Single Trade-WEBDL-1080p.mkv","size":1317046945,"dateAdded":"2021-02-16T09:14:59.530754Z","sceneName":"Snowpiercer.S02E04.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2823327,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:55","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17558},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Keep Hope Alive-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E05.Keep Hope Alive-WEBDL-1080p.mkv","size":1131183055,"dateAdded":"2021-02-23T10:48:43.184941Z","sceneName":"Snowpiercer.S02E05.1080p.WEB.H264-STRONTiUM[TGx]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2320844,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:51","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17580},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Many Miles from Snowpiercer-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E06.Many Miles from Snowpiercer-WEBDL-1080p.mkv","size":1343447079,"dateAdded":"2021-03-02T09:32:35.626006Z","sceneName":"Snowpiercer.S02E06.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3022017,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:19","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17701},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Our Answer for Everything-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E07.Our Answer for Everything-WEBDL-1080p.mkv","size":1234862797,"dateAdded":"2021-03-10T11:19:44.504113Z","sceneName":"Snowpiercer.S02E07.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2608659,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:47","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17791},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Eternal Engineer-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E08.The Eternal Engineer-WEBDL-1080p.mkv","size":1304230062,"dateAdded":"2021-03-16T10:30:06.973396Z","sceneName":"Snowpiercer.S02E08.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2780992,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:01","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17810},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Into the White-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E10.Into the White-WEBDL-1080p.mkv","size":1391384877,"dateAdded":"2021-03-31T23:01:07.080825Z","sceneName":"Snowpiercer.S02E10.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3052648,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:35","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17943},{"seriesId":175,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Show Must Go On-WEBDL-1080p.mkv","path":"\/tv\/Snowpiercer\/Season 02\/S02E09.The Show Must Go On-WEBDL-1080p.mkv","size":2509157071,"dateAdded":"2021-03-31T23:07:07.242265Z","sceneName":"Snowpiercer.S02E09.1080p.WEB.H264-STRONTiUM[rartv]","releaseGroup":"STRONTiUM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6136521,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:29","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedi"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17944}],"queue":[]},"152":{"series":{"title":"Batman Beyond","alternateTitles":[{"title":"Fremtidens Batman 1999","seasonNumber":-1}],"sortTitle":"batman beyond","status":"ended","ended":true,"overview":"It's been years since Batman was last seen and Bruce Wayne secludes himself away from the resurgence of crime in Gotham. After discovering Bruce's secret identity, troubled teenager Terry McGinnis dons the mantle of Batman. With Bruce supervising him, Terry battles criminals in a futuristic Gotham and brings hope to its citizens.","previousAiring":"2001-12-18T05:00:00Z","network":"The WB","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/160\/banner.jpg?lastWrite=637103832340480260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75417-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/160\/poster.jpg?lastWrite=637103832358439930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75417-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/160\/fanart.jpg?lastWrite=637022822222268610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75417-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":14,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1999-05-22T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15253314280,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2000-08-19T04:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":30506467599,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2001-12-18T05:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15255318768,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Batman Beyond","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":75417,"tvRageId":2722,"tvMazeId":504,"firstAired":"1999-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"batmanbeyond","imdbId":"tt0147746","titleSlug":"batman-beyond","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children"],"tags":[],"added":"2019-08-24T22:23:41.207055Z","ratings":{"votes":1060,"value":8.5},"statistics":{"seasonCount":3,"episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":66,"sizeOnDisk":61015100647,"percentOfEpisodes":100.0},"id":160},"episodes":[{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Inside Batman Beyond - Season 1","overview":"Meet the creators behind Batman Beyond","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18576},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Inside Batman Beyond - The Panel","overview":"In-Depth dialogue on season 2 with producers Bruce Timm, Alan Burnett, Glen Murakami and Paul Dini and moderator Jason Hillhouse.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18577},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Inside Batman Beyond - Season 3","overview":"Producer panel discussion","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18578},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Close-Up On...Favorite Moments Of The Series","overview":"Favorite moments of the series with the creative team and voice actor Will Friedle","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18579},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Out of the Past","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20210},{"seriesId":160,"episodeFileId":12507,"seasonNumber":1,"episodeNumber":1,"title":"Rebirth (1)","airDate":"1999-01-10","airDateUtc":"1999-01-10T05:00:00Z","overview":"In 2019, Bruce Wayne, the original Batman, retires due to failing health when his rescue of a kidnapped woman nearly goes wrong and he must resort to almost using a gun\u2014the ultimate sin in his eyes. Twenty years later in 2039, Terrence \"Terry\" McGinnis discovers Batman's identity after the aging Bruce Wayne helps him fight off a gang of Jokerz (street punks enamored by the original Clown Prince of Crime). After Terry's father is murdered, Terry seeks Bruce's help to avenge him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":12366},{"seriesId":160,"episodeFileId":12508,"seasonNumber":1,"episodeNumber":2,"title":"Rebirth (2)","airDate":"1999-01-10","airDateUtc":"1999-01-10T05:25:00Z","overview":"Terry steals the Batsuit to pursue his father's killer, a professional bodyguard named Mr. Fixx (George Takei), whose employer, Derek Powers (Sherman Howard), the current CEO of Wayne-Powers, is secretly using the company's resources to develop a biological weapon. Bruce Wayne, discovering the theft, deactivates the suit, but when seeing the now-helpless Terry being punched out reactivates it so he can continue pursuing Fixx, and in the end Wayne appears at Terry's house to hire him as a \"special assistant.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":12367},{"seriesId":160,"episodeFileId":12509,"seasonNumber":1,"episodeNumber":3,"title":"Black Out","airDate":"1999-01-31","airDateUtc":"1999-01-31T05:00:00Z","overview":"Terry discovers how hard his new job as Batman is when he squares off against his first super-powered foe, Inque -- a shape-shifting woman sabotaging Foxteca for Derek Powers. Things go from bad to worse when he accidentally leads her right into the Batcave. Stockard Channing and Shannon Kenny make their first appearances as Commissioner Barbara Gordon and Inque.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":12368},{"seriesId":160,"episodeFileId":12510,"seasonNumber":1,"episodeNumber":4,"title":"Golem","airDate":"1999-02-07","airDateUtc":"1999-02-07T05:00:00Z","overview":"Willie Watt, a nebbishy student at Terry's high school, is pushed around by everyone -- including his construction-worker dad, who insists that he needs to toughen up. Aching for revenge against Nelson, the jock that torments him, Willie steals a remote-controlled heavy-lifting robot (or \"golem\"), and rampages through Gotham. Batman stops the Golem quickly, but as a result of the fight he gains the power to control the golem mentally -- much to Nelson's dismay.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":12369},{"seriesId":160,"episodeFileId":12511,"seasonNumber":1,"episodeNumber":5,"title":"Meltdown","airDate":"1999-02-14","airDateUtc":"1999-02-14T05:00:00Z","overview":"Derek Powers' body is continuing to deteriorate. Desperate, he has Victor Fries (Mr. Freeze) revived, and creates a new body for him under the pretense of medical research. Finally cured, Fries is repentant, but Bruce Wayne doesn't trust him. Batman halfheartedly shadows Freeze, convinced that he has reformed. But how long can he stay reformed once he discovers that Powers is using him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":12370},{"seriesId":160,"episodeFileId":12512,"seasonNumber":1,"episodeNumber":6,"title":"Heroes","airDate":"1999-02-21","airDateUtc":"1999-02-21T05:00:00Z","overview":"The Terrific Trio, a group of scientists who became superheroes after gaining powers in an experiment gone awry, make their way into Gotham and become media sensations. But Magma, Freon, and 2-D Man soon learn that the accident that gave them their powers was not really an accident. The Trio are inspired by the Fantastic Four, with 2D Man being Mr. Fantastic, Magma being a combination of the Thing and the Human Torch, and Freon can spread her molecules apart to the point where she becomes hard to see, and her ice beams can form protective shields, making her analogous to the Invisible Woman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":12371},{"seriesId":160,"episodeFileId":12513,"seasonNumber":1,"episodeNumber":7,"title":"Shriek","airDate":"1999-03-14","airDateUtc":"1999-03-14T05:00:00Z","overview":"Max Shreeve, a sound engineer working for Derek Powers, develops a suit that amplifies sound waves into awesomely destructive force. Powers is uninterested in the suit until Bruce Wayne interferes with his plans for Wayne-Powers once too often. On Powers' orders, Shreeve makes an attempt on Wayne's life, taking the name Shriek. Chris Mulkey makes his first appearance as the voice of Shriek.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":12372},{"seriesId":160,"episodeFileId":12514,"seasonNumber":1,"episodeNumber":8,"title":"Dead Man's Hand","airDate":"1999-03-21","airDateUtc":"1999-03-21T05:00:00Z","overview":"Terry must deal with both his rejection by his girlfriend, Dana, and a group of Bruce's old enemies, the Royal Flush Gang, who pattern themselves after playing card ranks. Things look up for Terry when he meets a girl named Melanie who seems to share his problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":12373},{"seriesId":160,"episodeFileId":12515,"seasonNumber":1,"episodeNumber":9,"title":"The Winning Edge","airDate":"1999-04-11","airDateUtc":"1999-04-11T04:00:00Z","overview":"Terry's late nights as Batman are starting to take a toll on his personal life when he can barely stay awake during the day. When he discovers that several jocks are using \"slappers\" -- patches that deliver the super-steroid Venom -- he investigates, only for his mother to catch him carrying the drugs. Then he has to find a way to stop the flow of Venom into Gotham and clear his name, all while being grounded.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":12374},{"seriesId":160,"episodeFileId":12516,"seasonNumber":1,"episodeNumber":10,"title":"Spellbound","airDate":"1999-05-01","airDateUtc":"1999-05-01T04:00:00Z","overview":"Gotham's teenagers fall prey to the \"evil eye\" mind control techniques of a mysterious villian named Spellbinder, who causes them to hallucinate and do his bidding as unwitting accomplices. How can Batman defeat a foe who can control what he sees, hears, and feels? Jon Cypher makes his first appearance as the voice of Spellbinder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":12375},{"seriesId":160,"episodeFileId":12517,"seasonNumber":1,"episodeNumber":11,"title":"Disappearing Inque","airDate":"1999-05-08","airDateUtc":"1999-05-08T04:00:00Z","overview":"When Aaron, Inque's caretaker, is fired because of his infatuation with her, he cuts the power to her restraints. Injured and unable to regain her human form, she tries to coerce him to help her until he proves quite willing -- so long as she can make him like her. When Batman tries to stop her, she captures him and uses him as bait to lure Bruce Wayne into a trap.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":12376},{"seriesId":160,"episodeFileId":12518,"seasonNumber":1,"episodeNumber":12,"title":"A Touch of Curar\u00e9","airDate":"1999-05-15","airDateUtc":"1999-05-15T04:00:00Z","overview":"Sam Young, Gotham's district attorney and Commissioner Barbara Gordon's husband, is targeted for assassination by Curar\u00e9, a silent and deadly member of the Society of Assassins. Armed with a molecule-thin sword that can slice through anything, she presents a formidable enough challenge for Barbara to reveal to Terry that she knows he's Batman. As the former Batgirl, she warns him that he should quit being Batman while he can. Paul Winfield makes his first appearance as the voice of D.A. Sam Young.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":12377},{"seriesId":160,"episodeFileId":12519,"seasonNumber":1,"episodeNumber":13,"title":"Ascension","airDate":"1999-05-22","airDateUtc":"1999-05-22T04:00:00Z","overview":"Batman is becoming increasingly frustrated with Blight, Derek Powers' radioactive form. Powers is also frustrated as he wrestles with controlling his power, and puts his son Paxton in charge of Wayne-Powers. His identity as Blight is revealed moments later, and he goes into hiding until he can find a way out of the city.\r\n\r\nPaxton begs Batman to help capture his father, and he warily agrees. Terry wants Blight to pay for murdering his father, and Paxton may have other plans -- but who is double-crossing whom?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":12378},{"seriesId":160,"episodeFileId":12520,"seasonNumber":2,"episodeNumber":1,"title":"Splicers","airDate":"1999-09-18","airDateUtc":"1999-09-18T04:00:00Z","overview":"The latest teen craze is \"splicing\" -- incorporating animal DNA into a human body. While some kids just get cosmetic changes like cat eyes, many opt for more major transformations. Batman investigates Dr. Cuvier, the founder of splicing, and discovers his plan to kill D.A. Young before the process can be outlawed. Cree Summer makes her first appearance as the voice of Terry's classmate Max Gibson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":12379},{"seriesId":160,"episodeFileId":12521,"seasonNumber":2,"episodeNumber":2,"title":"Earth Mover","airDate":"1999-09-25","airDateUtc":"1999-09-25T04:00:00Z","overview":"Terry's friend Jackie, the foster daughter of wealthy industrialist Bill Wallace, is being stalked by a creature that can reform itself out of the earth and control the earth around it. When an attack reveals canisters of radioactive toxic waste from underground, Batman tries to find the connection between the creatures, Wallace, and Jackie's late father, Wallace's former partner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":12380},{"seriesId":160,"episodeFileId":12522,"seasonNumber":2,"episodeNumber":3,"title":"Joyride","airDate":"1999-10-02","airDateUtc":"1999-10-02T04:00:00Z","overview":"An experimental military warcraft makes an emergency landing in the middle of nowhere, where it's seized by a bunch of Jokerz out initiating a new member. Batman and its designer, Dr. Price, race to stop the Jokerz before they lay waste to the city -- and before the nuclear core goes critical.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":12381},{"seriesId":160,"episodeFileId":12523,"seasonNumber":2,"episodeNumber":4,"title":"Lost Soul","airDate":"1999-10-09","airDateUtc":"1999-10-09T04:00:00Z","overview":"When executive Robert Vance was diagnosed with a degenerative brain disorder, he arranged to have his consciousness digitized. Now, 35 years later, his grandson Bobby has awakened him before his computer is shut down. Searching for a temporary home before he can find a human host, he infects Batman's costume. Terry goes after him, hoping to answer the question -- is Batman the suit, or the man inside it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":12382},{"seriesId":160,"episodeFileId":12524,"seasonNumber":2,"episodeNumber":5,"title":"Hidden Agenda","airDate":"1999-10-16","airDateUtc":"1999-10-16T04:00:00Z","overview":"Maxine \"Max\" Gibson, one of Terry's classmates and a bona fide genius, has created a computer program to figure out Batman's secret identity. When Max is targeted by the Jokerz, she rewrites the code to find the Jokerzs' identities, which only puts her in more danger. Michael Rosenbaum and Jill Eikenberry make their first appearances as the voices of Carter Wilson, another one of Terry's classmates, and his mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":12383},{"seriesId":160,"episodeFileId":12525,"seasonNumber":2,"episodeNumber":6,"title":"Bloodsport","airDate":"1999-10-23","airDateUtc":"1999-10-23T04:00:00Z","overview":"The Stalker, a cybernetically enhanced big game hunter who combines technological and primitive methods to stalk dangerous prey, comes to Gotham to hunt the most dangerous prey of them all: Batman. After their first encounter, the Stalker extends the hunt by pursuing Terry. Unfortunately, Terry is taking care of his younger brother Matt than night -- and must find a way to save himself without endangering his brother or revealing his identity. Carl Lumbly makes his first appearance as the voice of the Stalker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":12384},{"seriesId":160,"episodeFileId":12526,"seasonNumber":2,"episodeNumber":7,"title":"Once Burned","airDate":"1999-11-06","airDateUtc":"1999-11-06T05:00:00Z","overview":"The Royal Flush Gang's Ten returns on a mission to rescue her family, who have been captured by the Jokerz. When Melanie approaches Terry for help, he is forced to decide whether or not to put his relationship with Dana at risk, and if Batman can really trust Ten.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":12385},{"seriesId":160,"episodeFileId":12527,"seasonNumber":2,"episodeNumber":8,"title":"Hooked Up","airDate":"1999-11-13","airDateUtc":"1999-11-13T05:00:00Z","overview":"When several Hill High students end up comatose in the hospital, Batman's subsequent investigation leads him to Spellbinder, who is getting teenagers addicted to virtual reality fantasies and forcing them to steal for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":12386},{"seriesId":160,"episodeFileId":12528,"seasonNumber":2,"episodeNumber":9,"title":"Rats","airDate":"1999-11-20","airDateUtc":"1999-11-20T05:00:00Z","overview":"Dana, who feels she has been ignored and let down by Terry once too often, begins receiving roses from a secret admirer. When she is abducted by the mystery man, a boy named Patrick Fitz who lives in the sewers because of his rat-like appearance, Batman may be the only one who can save her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":12387},{"seriesId":160,"episodeFileId":12529,"seasonNumber":2,"episodeNumber":10,"title":"Mind Games","airDate":"1999-12-04","airDateUtc":"1999-12-04T05:00:00Z","overview":"Terry has mysterious visions of a young girl asking him for help. His search for her leads him into confrontation with a group of people with incredible psychic powers known as the Brain Trust.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":12388},{"seriesId":160,"episodeFileId":12530,"seasonNumber":2,"episodeNumber":11,"title":"Revenant","airDate":"1999-12-11","airDateUtc":"1999-12-11T05:00:00Z","overview":"When strange things start happening around the school, the students are quick to blame the ghost of Garrison Jacobs, a student who was killed during the construction of the school's new wing. Terry is suspicious but skeptical until Nelson, one of the jocks, interrupts a s\u00e9ance the girls are having for fun. Everything in the gym comes alive, threatening to kill Nelson until Terry intervenes as Batman. When popular cheerleader Blade later receives a mysterious message from the ghost, Terry begins to put the pieces together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":12389},{"seriesId":160,"episodeFileId":12531,"seasonNumber":2,"episodeNumber":12,"title":"Babel","airDate":"2000-01-08","airDateUtc":"2000-01-08T05:00:00Z","overview":"When all of Gotham's animals start getting agitated at the same time, Terry and Bruce Wayne figure out that sound frequencies beyond human hearing are to blame. That points to one man: Shriek. The animals prove to be the tip of the iceberg when people suddenly lose the ability to understand each other's speech. Shriek eventually turns off the interference, but makes a demand of Commissioner Gordon: the city's safety for Batman's life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":12390},{"seriesId":160,"episodeFileId":12532,"seasonNumber":2,"episodeNumber":13,"title":"Terry's Friend Dates a Robot","airDate":"2000-01-15","airDateUtc":"2000-01-15T05:00:00Z","overview":"Howard Groote is one of Terry's classmates who isn't terribly popular. Desperate for acceptance, he plans for a blowout party at his place while his parents are away, but the popular kids laugh at his obvious attempts at coolness. Howard longs for a gorgeous girlfriend or cool car so that popular kids will notice him, and so jumps on the chance to get an illegal synthoid to pose as his girlfriend. However, her programming makes her a little too protective, putting the party -- not to mention the kids -- at risk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":12391},{"seriesId":160,"episodeFileId":12533,"seasonNumber":2,"episodeNumber":14,"title":"Eyewitness","airDate":"2000-01-22","airDateUtc":"2000-01-22T05:00:00Z","overview":"Batman's already tense relationship with the law gets tenser when he accidentally messes up a major police sting operation. Fed up with Terry, who she sees as a hothead, Commissioner Gordon warns Bruce that she'll be keeping an eye on him to make sure he doesn't get into more trouble. Her worst fears are realized soon enough when she sees Batman bludgeoning Mad Stan to death with one of his own bombs.\r\n\r\nWhen Terry returns home, he finds the Commissioner's men looking for him, but he doesn't know why. Fleeing to Max's house, he tries to understand: how could people have witnessed him perpetrating a crime he didn't commit?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":12392},{"seriesId":160,"episodeFileId":12534,"seasonNumber":2,"episodeNumber":15,"title":"Final Cut","airDate":"2000-02-05","airDateUtc":"2000-02-05T05:00:00Z","overview":"Curar\u00e9 is back, and she's hunting members of the Society of Assassins before they can kill her for failing to assassinate Gotham's district attorney. Mutura Bootha, the last Society member still standing, enlists Batman's aid in stopping her, adding that if he falls, Batman is next on her list. As further incentive, he's planted a bomb in Gotham that will go off if he doesn't enter a code every 12 hours.\r\n\r\nUnfortunately Bruce Wayne is in Malaysia, unreachable due to a hurricane. Batman enlists an eager Max to help, leaving him to protect Bootha, find the bomb, and -- hardest of all -- keep Max from getting too involved.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":12393},{"seriesId":160,"episodeFileId":12535,"seasonNumber":2,"episodeNumber":16,"title":"The Last Resort","airDate":"2000-03-04","airDateUtc":"2000-03-04T05:00:00Z","overview":"When Dr. David Wheeler, a prominent child psychologist, opens a new ranch\/group home promising to help troubled teenagers, parents jump on the bandwagon and start sending their kids away for even the most minor infractions. Max encourages Terry to investigate as Batman when their friend Chelsea is sent away for writing a letter of protest to the principal.\r\n\r\nBatman discovers that the kids are being held prisoner and brainwashed, but he is spotted and fired on. Since Batman can't get admissible evidence, he decides to get it as Terry by visiting Chelsea with a pocket recorder. When Terry is captured, he's forced to rely on a delinquent he's never gotten along with.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":12394},{"seriesId":160,"episodeFileId":12536,"seasonNumber":2,"episodeNumber":17,"title":"Armory","airDate":"2000-03-11","airDateUtc":"2000-03-11T05:00:00Z","overview":"Jared's stepfather, Jim \"Big Jim\" Tate, is a top weapons designer who likes to splurge his considerable salary on his family. When he's laid off from Wayne-Powers and hard up for work, he starts designing new weapons illegally for foreign governments. In order to steal the plans and parts he needs, he puts an array of untested weapons and his Special Forces training to use and becomes an unstoppable one-man army: Armory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":12395},{"seriesId":160,"episodeFileId":12537,"seasonNumber":2,"episodeNumber":18,"title":"Sneak Peek","airDate":"2000-03-25","airDateUtc":"2000-03-25T05:00:00Z","overview":"Ian Peek is a muckraking journalist who gets footage from seemingly impossible locations, no matter how tight the security. When there's a disturbance at city hall during a secret meeting between an organized crime witness and the district attorney, Batman encounters a man who can pass through solid matter at will. In short order, he puts two and two together and realizes this new villain is Peek. Confronting Peek, however, leads to him using his power to find out Bruce and Terry's secret -- and he threatens to expose them live on the air.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":12396},{"seriesId":160,"episodeFileId":12538,"seasonNumber":2,"episodeNumber":19,"title":"The Eggbaby","airDate":"2000-04-01","airDateUtc":"2000-04-01T05:00:00Z","overview":"Terry's Family Studies teacher gives the class an assignment: to learn about the responsibilities of parenthood, they have to take care of an egg. The familiar exercise is given a high-tech twist -- each \"eggbaby\" has sensors which register the amount of care it receives and a computerized feedback system causes it to coo, cry, and giggle like a real baby.\r\n\r\nWhen Terry's assignment partner, vain cheerleader Blade Summers, unceremoniously dumps the eggbaby on him, he's forced to carry it with him when he's out as Batman -- even while chasing the notorious Ma Mayhem and her gang as they commit a series of daring ruby thefts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":12397},{"seriesId":160,"episodeFileId":12539,"seasonNumber":2,"episodeNumber":20,"title":"Zeta","airDate":"2000-04-08","airDateUtc":"2000-04-08T04:00:00Z","overview":"Terry becomes suspicious when his biology teacher starts acting oddly. The strange behavior culminates in a manic chase and shootout with federal agents after school, leading him to get involved as Batman. When Commissioner Gordon and her men find the teacher gagged and bound in her home, the truth comes out: an intelligent synthoid code-named Zeta is on the loose. Designed for stealth and assassination, it has the ability to disguise itself as any person using a holographic generator.\r\n\r\nBatman joins in the hunt for Zeta, but when he corners the robot he discovers that Zeta ran away from the federal agency because he doesn't want to kill. Gary Cole makes his first and only appearance as the voice of Zeta, before Diedrich Bader assumed the role for the Zeta Project spin-off series. Joe Spano makes his first appearance as agent Bennet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":12398},{"seriesId":160,"episodeFileId":12540,"seasonNumber":2,"episodeNumber":21,"title":"Plague","airDate":"2000-04-15","airDateUtc":"2000-04-15T04:00:00Z","overview":"High school jock Nelson unwittingly smuggles a glass vial with an unknown green fluid into Gotham, which is seized at customs. In the parking lot, he's attacked by the Stalker, who demands to know the whereabouts of the vial. Batman interferes with Stalker's flight, but is in turn stopped by agent Bennet, who tells him Stalker is helping them track Falseface, an identity-switching mercenary working for Cobra, a secret organization holding Gotham hostage with a horrific chemical weapon. Despite his misgivings, Batman teams up with Stalker to find Falseface and stop Cobra's plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":12399},{"seriesId":160,"episodeFileId":12541,"seasonNumber":2,"episodeNumber":22,"title":"April Moon","airDate":"2000-04-22","airDateUtc":"2000-04-22T04:00:00Z","overview":"When Batman foils a late-night bank heist, he's surprised to see that the four ordinary-looking punks all have expensive -- and dangerous -- cybernetic enhancements. When one of the criminals leaves a damaged servo-motor behind, Bruce Wayne recognizes it as the handiwork of the man who created some of the parts for the Batman suit, Dr. Corso, who specializes in prosthetics. After confronting the doctor, Batman discovers that Dr. Corso is being forced to help the crooks because they've kidnapped his wife, threatening to kill her if he doesn't enhance them as they ask.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":12400},{"seriesId":160,"episodeFileId":12542,"seasonNumber":2,"episodeNumber":23,"title":"Sentries of the Last Cosmos","airDate":"2000-05-06","airDateUtc":"2000-05-06T04:00:00Z","overview":"One of the hottest virtual reality arcade games is Sentries of the Last Cosmos. Max and Terry's classmate Corey Cavaleri loves the game, sometimes better than real life. When he beats the arcade's all-time record, Corey is summoned to the secluded Sentrycroft estate by the game's creator, Simon Harper. There, he and two other kids become real-life Sentries, complete with flaming swords and flying discs.\r\n\r\nAfter a raid on Gotham's hall of records, Harper tells the kids that Sentries of the Last Cosmos is more than a game; in a nod to The Last Starfighter, Harper -- calling himself the Wise One -- claims that the Sentries' war against the Dark Regent is real, and that the game is used to recruit trainees. Batman learns of Harper's plot to send the kids after the Dark Regent -- the equally reclusive Eldon Michaels -- and tries to stop the kids and find the connection between the two men.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":12401},{"seriesId":160,"episodeFileId":12543,"seasonNumber":2,"episodeNumber":24,"title":"Payback","airDate":"2000-05-13","airDateUtc":"2000-05-13T04:00:00Z","overview":"A hooded vigilante calling himself Payback, armed with a bullwhip-like laser, has been terrorizing people under the pretext of helping the city's kids. Bruce Wayne discovers a link between two of the kids and the Gotham Youth Counseling Center. When the Center's computer proves inaccessible, Terry has to enter the Center under the guise of being dissatisfied with his treatment by Bruce. However, when his later impulsiveness as Batman gets him in hot water with Bruce, he vents at his next session at the center -- and unwittingly sets Bruce up as a target for Payback.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":12402},{"seriesId":160,"episodeFileId":12544,"seasonNumber":2,"episodeNumber":25,"title":"Where's Terry?","airDate":"2000-05-27","airDateUtc":"2000-05-27T04:00:00Z","overview":"After a rare night out with his friends, Terry follows a suspicious figure out in the subway. Everyone is worried when he fails to reappear the following morning, and Bruce Wayne takes it upon himself to find him. When he asks Max about Terry's last whereabouts, she insists on coming along, despite his protests. Meanwhile, Batman wakes up in an underground tunnel under the hostile glare of a young boy, a runaway who lives in the tunnels. The boy wants Batman off of his turf as soon as possible, and tries to help him leave.\r\n\r\nIt turns out that the suspicious figure is none other than Shriek's assistant, who is helping the twisted sound genius with his new plan. Shriek causes a cave-in to trap Batman and the boy, who starts to express his long-standing hostility toward Batman. As Max and Bruce work toward finding Terry, and Batman and the boy try to escape, each learns to appreciate the others' skills -- until Shriek reveals himself from the shadows.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":12403},{"seriesId":160,"episodeFileId":12545,"seasonNumber":2,"episodeNumber":26,"title":"Ace in the Hole","airDate":"2000-08-19","airDateUtc":"2000-08-19T04:00:00Z","overview":"While Terry is out walking Ace, Bruce Wayne's dog, Ace savagely attacks a suspicious-looking man on the street and then runs away. When Bruce traces the serial number on the man's gun, he discovers the man is none other than Ronny Boxer, a longtime purveyor of illegal sports, including dog sports. Boxer is also Ace's former owner; Bruce took him in when Boxer's dog-fighting ring was busted by the police. While Terry goes undercover to get close to Boxer, Bruce looks for Ace, all the while wondering exactly what Boxer did to Ace in the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":12404},{"seriesId":160,"episodeFileId":12494,"seasonNumber":3,"episodeNumber":1,"title":"King's Ransom","airDate":"2000-09-16","airDateUtc":"2000-09-16T04:00:00Z","overview":"The Royal Flush gang, minus the reformed Ten, attempt a robbery of a Gotham city museum. Although the gang gets away with the piece, Batman stops Jack and leaves him for the police. Bruce deduces that the Royal Flush gang is working for Paxton Powers, and by listening in on Commissioner Gordon's interrogation of Jack, he and Batman also discover that there are widening rifts in the Royal Flush family.\r\n\r\nAt the hideout, the King and Queen argue, with the Queen endlessly comparing King to his previous namesake, her father. Furious, the King sets another plan in motion: he kidnaps Powers and holds him for ransom, using Bruce Wayne as a go-between. Powers, reluctant to have his illegal dealings exposed, makes a deal with the gang, to eliminate Bruce, but there's more than one double-cross afoot. Angie Harmon makes her first appearance as the new voice of Commissioner Barbara Gordon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":12405},{"seriesId":160,"episodeFileId":12495,"seasonNumber":3,"episodeNumber":2,"title":"Untouchable","airDate":"2000-09-23","airDateUtc":"2000-09-23T04:00:00Z","overview":"Batman faces off against a new high-tech villain, a man in a suit that projects an impenetrable force field that repels everything Batman can throw at it. Bruce Wayne recognizes the force field as the work of Dr. Blades, a Wayne-Powers scientist who has developed what he calls iso-field generator rings, which generate an aura of energy around its wearer.\r\n\r\nWhile touring the Wayne-Powers lab facilities, Blades' assistant Dr. Suzuki demonstrates the rings and the aura, which are meant for use as a self-contained environment for people with immune-system deficiencies. Bruce and Terry recognize the aura immediately, and the question then becomes: who in the lab is the untouchable criminal?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":12406},{"seriesId":160,"episodeFileId":12496,"seasonNumber":3,"episodeNumber":3,"title":"Inqueling","airDate":"2000-09-30","airDateUtc":"2000-09-30T04:00:00Z","overview":"Bruce Wayne is out of town, and Inque is back -- announcing her presence by disrupting the launch of a billion-dollar satellite. Newly invulnerable to water, she poses more of a threat than ever before. Terry remembers that Bruce Wayne had to save him from Inque twice before, putting both his identity and his life at risk. Wanting to prove himself, he insists on pursuing Inque himself, though he asks Max to do some detective work for him.\r\n\r\nMeanwhile, Inque's deal has gone sour, and her would-be client has weakened her with a particle destabilizer. Sick and desperate for help, she goes to the one person who she feels she can trust -- Deanna Clay, the daughter she abandoned as a child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":12407},{"seriesId":160,"episodeFileId":12497,"seasonNumber":3,"episodeNumber":4,"title":"Big Time","airDate":"2000-10-07","airDateUtc":"2000-10-07T04:00:00Z","overview":"Shortly after Batman foils a daring, high-tech robbery of a powerful Wayne-Powers agricultural compound, Charlie \"Big Time\" Bigelow, one of Terry's friends from his wilder days, gets out of jail. Charlie offers Terry a chance to hook up with some contacts he made on the inside for a big job, but Terry refuses, trying to talk Charlie into staying out of trouble. Feeling guilty because Charlie went to jail and he didn't, Terry convinces Bruce Wayne to get Charlie a low-level job at Wayne-Powers.\r\n\r\nWhen Terry finds out that Charlie used him to get into Wayne-Powers, he confronts him, hoping to steer him straight before he has to intervene as Batman. Clancy Brown makes his first appearance as Charlie \"Big Time\" Bigelow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":12408},{"seriesId":160,"episodeFileId":12498,"seasonNumber":3,"episodeNumber":5,"title":"Out of the Past","airDate":"2000-10-21","airDateUtc":"2000-10-21T04:00:00Z","overview":"Feeling old and tired, Bruce Wayne is reminiscing about past loves lost when Talia, daughter of R'as al Ghul, visits him in the Batcave. With her father long dead, she wishes to rekindle their romance and makes him an offer: She will give him eternal youth through use of the immortalizing Lazarus Pit, and they can spend the rest of their lives helping people through their philanthropic organizations.\r\n\r\nWorried that Bruce might give in for all the wrong reasons -- and concerned that he may lose the honor of being Batman -- Terry decides to come along to make sure everything is as it seems. When he and Bruce discover the truth behind her offer, it turns out to be more bizarre than either could have imagined.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":12409},{"seriesId":160,"episodeFileId":12499,"seasonNumber":3,"episodeNumber":6,"title":"Speak No Evil","airDate":"2000-11-04","airDateUtc":"2000-11-04T05:00:00Z","overview":"When Batman tries to capture an eight-foot-tall gorilla that's on the loose, he's surprised at the extremely intelligent decisions it makes in order to escape. During the chase, he encounters two zoologists from Gotham State University, who say that it's their gorilla -- named Fingers -- who has escaped. Following a hunch, Batman investigates at the zoology department and discovers the scientists were using methyl glycose (the compound used for splicing) to add human DNA to Fingers for better intelligence tests.\r\n\r\nBatman must now find a giant, smart gorilla that's only getting smarter, and who has an unexplained hatred of noted conservationist James van Dyle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":12410},{"seriesId":160,"episodeFileId":12500,"seasonNumber":3,"episodeNumber":7,"title":"The Call (1)","airDate":"2000-11-11","airDateUtc":"2000-11-11T05:00:00Z","overview":"Batman receives a little unexpected help in capturing Inque: Superman. Superman reunites with Bruce Wayne, and extends an offer to Terry to join the Justice League. When Batman's introduction to the League is met with hostility by the other members, Superman takes Batman aside and explains that he has reason to suspect a traitor in their midst; he asks him to keep his eyes and ears open.\r\n\r\nTerry reluctantly agrees, finding it difficult to spy on people he's idolized his whole life. When the League steps in to stop a mysterious attack on Metropolis, a missile explosion claims Warhawk's life. Batman is the only one to witness the event, which puts suspicion squarely on his shoulders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":12411},{"seriesId":160,"episodeFileId":12501,"seasonNumber":3,"episodeNumber":8,"title":"The Call (2)","airDate":"2000-11-18","airDateUtc":"2000-11-18T05:00:00Z","overview":"Batman shows the League evidence of Superman's complicity in the death of Warhawk, but the idea is met with some resistance -- particularly from Barda, who flatly refuses to believe that Superman could be responsible, preferring instead to suspect Batman. Barda is convinced when Warhawk reappears, revealing that he didn't die in the explosion. Batman is only partly relieved, armed as he is with a kryptonite sample necessary to stop -- and kill -- Superman if he has to.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":12412},{"seriesId":160,"episodeFileId":12502,"seasonNumber":3,"episodeNumber":9,"title":"Betrayal","airDate":"2000-12-09","airDateUtc":"2000-12-09T05:00:00Z","overview":"Big Time returns to Neo-Gotham, causing problems for both Batman and his alter-ego Terry McGinnis, who still feels guilty for what happened to him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":12413},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Return of the Joker","airDate":"2000-12-12","airDateUtc":"2000-12-12T05:00:00Z","overview":"In this action-packed adventure, the sleeker, more dangerous and seemingly immortal Clown Prince of Crime is back to terrorize Gotham, Batman and the aging Bruce Wayne.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12364},{"seriesId":160,"episodeFileId":12503,"seasonNumber":3,"episodeNumber":10,"title":"Curse of the Kobra (1)","airDate":"2001-02-03","airDateUtc":"2001-02-03T05:00:00Z","overview":"Terry is sent to Bruce's old friend Kairi Tanaka to brush up on his combat skills, and inadvertently befriends the heir-apparent to the criminal organization KOBRA.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":12414},{"seriesId":160,"episodeFileId":12504,"seasonNumber":3,"episodeNumber":11,"title":"Curse of the Kobra (2)","airDate":"2001-02-10","airDateUtc":"2001-02-10T05:00:00Z","overview":"After the leader of KOBRA kidnaps Max to be his wife, Batman is forced not only to rescue her, but to stop KOBRA's plot to revert the world back to when dinosaurs ruled it... with their gene-spliced dinosaur men as the dominant species.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":12415},{"seriesId":160,"episodeFileId":12505,"seasonNumber":3,"episodeNumber":12,"title":"Countdown","airDate":"2001-04-07","airDateUtc":"2001-04-07T04:00:00Z","overview":"Zeta returns to Neo-Gotham City to look for his creator, but falls into the clutches of Mad Stan, who turns him into a walking time-bomb. Batman and Ro must track Zeta down before time runs out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":12416},{"seriesId":160,"episodeFileId":12506,"seasonNumber":3,"episodeNumber":13,"title":"Unmasked","airDate":"2001-12-18","airDateUtc":"2001-12-18T05:00:00Z","overview":"Terry recounts to Max one of his earlier adventures as Batman, during which he revealed his face to a child and inadvertently made the boy a target of KOBRA.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":12417},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Tomorrow Knight: Batman Reborn","airDate":"2010-10-23","airDateUtc":"2010-10-23T04:00:00Z","overview":"Batman Beyond Series Creators Profile the Character of Terry McGinnis and His Worthiness to Join the Caped Crusader Tradition","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19711},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"75th Anniversary Short","airDate":"2014-04-20","airDateUtc":"2014-04-20T04:00:00Z","overview":"Terry McGinnis as Batman helps Bruce Wayne fight a robotic Batman inside the Batcave.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12365},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Knight Immortal","airDate":"2019-10-15","airDateUtc":"2019-10-15T04:00:00Z","overview":"A visual and visceral celebration of the Dark Knight\u2019s 80 years of crime fighting, narrated by storytellers of the past, present, and future.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15645},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Nostalgic Tomorrow \u2013 A Batman Gathering","airDate":"2019-10-15","airDateUtc":"2019-10-15T04:25:00Z","overview":"Many of Batman Beyond\u2019s core production team and actors gather for an enthralling roundtable discussion of the evolution and execution of the animate series. Join producers Bruce Timm and Glenn Murakami, casting\/dialogue director Andrea Romano, director James Tucker, writers Bob Goodman & Stan Berkowitz, and stars Kevin Conroy & Will Friedle as they take a wildly entertaining trip down memory lane.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15646},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Gotham: City of The Future","airDate":"2019-10-31","airDateUtc":"2019-10-31T04:00:00Z","overview":"A look at the modernization of Gotham to the year 2039,","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18136},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The High Tech Hero","airDate":"2019-10-31","airDateUtc":"2019-10-31T04:25:00Z","overview":"A look at the changes in technology in the Bat Suit.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18137},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Secret Origin: The Story of DC Comics","airDate":"2019-10-31","airDateUtc":"2019-10-31T04:50:00Z","overview":"A documentary about the story of DC Comics and the mythology that makes superheroes part of our culture.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18138},{"seriesId":160,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Classic Nobody Wanted","airDate":"2020-12-05","airDateUtc":"2020-12-05T05:00:00Z","overview":"Batman Beyond is undeniably a classic entry into Batman lore. It's unique vision of a futuristic Gotham and the young Terry McGinnis taking on the mantle of the Dark Knight from an aging Bruce Wayne forges an incredible new path for the Caped Crusader, but the thing is... nobody thought it was a good idea. So how did an idea nobody wanted turn into a fan favorite that's just as iconic 20 years later? This is the Inside Story of the unlikely and unwanted origins of the Batman of the Future!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20211}],"episodeFile":[{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E01.King's Ransom-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E01.King's Ransom-Bluray-1080p.mkv","size":1173957781,"dateAdded":"2020-02-17T14:47:27.829224Z","sceneName":"batman.beyond.s03e01.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5946000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12494},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Untouchable-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E02.Untouchable-Bluray-1080p.mkv","size":1173408628,"dateAdded":"2020-02-17T14:47:34.991979Z","sceneName":"batman.beyond.s03e02.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5883000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12495},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Inqueling-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E03.Inqueling-Bluray-1080p.mkv","size":1173595431,"dateAdded":"2020-02-17T14:47:44.916512Z","sceneName":"batman.beyond.s03e03.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5937000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:00","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12496},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Big Time-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E04.Big Time-Bluray-1080p.mkv","size":1173491375,"dateAdded":"2020-02-17T14:47:55.420945Z","sceneName":"batman.beyond.s03e04.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5894000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12497},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Out of the Past-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E05.Out of the Past-Bluray-1080p.mkv","size":1173505572,"dateAdded":"2020-02-17T14:48:09.667001Z","sceneName":"batman.beyond.s03e05.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5915000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12498},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Speak No Evil-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E06.Speak No Evil-Bluray-1080p.mkv","size":1173282285,"dateAdded":"2020-02-17T14:48:19.622407Z","sceneName":"batman.beyond.s03e06.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5932000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12499},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Call (1)-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E07.The Call (1)-Bluray-1080p.mkv","size":1173286741,"dateAdded":"2020-02-17T14:48:34.015672Z","sceneName":"batman.beyond.s03e07.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5878000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12500},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Call (2)-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E08.The Call (2)-Bluray-1080p.mkv","size":1173398521,"dateAdded":"2020-02-17T14:48:47.521916Z","sceneName":"batman.beyond.s03e08.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5837000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:17","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12501},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Betrayal-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E09.Betrayal-Bluray-1080p.mkv","size":1173724578,"dateAdded":"2020-02-17T14:49:00.517773Z","sceneName":"batman.beyond.s03e09.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5929000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12502},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Curse of the Kobra (1)-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E10.Curse of the Kobra (1)-Bluray-1080p.mkv","size":1173359647,"dateAdded":"2020-02-17T14:49:11.93991Z","sceneName":"batman.beyond.s03e10.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5810000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12503},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Curse of the Kobra (2)-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E11.Curse of the Kobra (2)-Bluray-1080p.mkv","size":1173521816,"dateAdded":"2020-02-17T14:49:22.593652Z","sceneName":"batman.beyond.s03e11.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5820000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:20","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12504},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Countdown-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E12.Countdown-Bluray-1080p.mkv","size":1173391711,"dateAdded":"2020-02-17T14:49:35.768022Z","sceneName":"batman.beyond.s03e12.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5856000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12505},{"seriesId":160,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Unmasked-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 03\/S03E13.Unmasked-Bluray-1080p.mkv","size":1173394682,"dateAdded":"2020-02-17T14:49:48.26889Z","sceneName":"batman.beyond.s03e13.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5936000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:00","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12506},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Rebirth (1)-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E01.Rebirth (1)-Bluray-1080p.mkv","size":1172878067,"dateAdded":"2020-02-17T19:44:33.625879Z","sceneName":"batman.beyond.s01e01.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5590000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12507},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Rebirth (2)-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E02.Rebirth (2)-Bluray-1080p.mkv","size":1172989487,"dateAdded":"2020-02-17T19:44:43.467571Z","sceneName":"batman.beyond.s01e02.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5726000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12508},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Black Out-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E03.Black Out-Bluray-1080p.mkv","size":1173510272,"dateAdded":"2020-02-17T19:44:55.140561Z","sceneName":"batman.beyond.s01e03.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6113000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12509},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Golem-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E04.Golem-Bluray-1080p.mkv","size":1173521960,"dateAdded":"2020-02-17T19:45:10.153688Z","sceneName":"batman.beyond.s01e04.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5799000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:24","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12510},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Meltdown-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E05.Meltdown-Bluray-1080p.mkv","size":1173092205,"dateAdded":"2020-02-17T19:45:22.465572Z","sceneName":"batman.beyond.s01e05.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6022000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12511},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Heroes-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E06.Heroes-Bluray-1080p.mkv","size":1173553930,"dateAdded":"2020-02-17T19:45:38.301115Z","sceneName":"batman.beyond.s01e06.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6007000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:48","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12512},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Shriek-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E07.Shriek-Bluray-1080p.mkv","size":1173169071,"dateAdded":"2020-02-17T19:45:50.953394Z","sceneName":"batman.beyond.s01e07.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5845000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12513},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Dead Man's Hand-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E08.Dead Man's Hand-Bluray-1080p.mkv","size":1173297521,"dateAdded":"2020-02-17T19:46:05.306166Z","sceneName":"batman.beyond.s01e08.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5851000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12514},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Winning Edge-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E09.The Winning Edge-Bluray-1080p.mkv","size":1173487676,"dateAdded":"2020-02-17T19:46:18.133846Z","sceneName":"batman.beyond.s01e09.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6052000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:41","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12515},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Spellbound-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E10.Spellbound-Bluray-1080p.mkv","size":1173160676,"dateAdded":"2020-02-17T19:46:34.799394Z","sceneName":"batman.beyond.s01e10.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5846000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12516},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Disappearing Inque-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E11.Disappearing Inque-Bluray-1080p.mkv","size":1173528260,"dateAdded":"2020-02-17T19:46:47.359255Z","sceneName":"batman.beyond.s01e11.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5961000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:56","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12517},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E12.A Touch of Curar\u00e9-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E12.A Touch of Curar\u00e9-Bluray-1080p.mkv","size":1173655561,"dateAdded":"2020-02-17T19:47:00.950029Z","sceneName":"batman.beyond.s01e12.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5967000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:55","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12518},{"seriesId":160,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Ascension-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 01\/S01E13.Ascension-Bluray-1080p.mkv","size":1173469594,"dateAdded":"2020-02-17T19:47:17.213356Z","sceneName":"batman.beyond.s01e13.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5839000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:17","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12519},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Splicers-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E01.Splicers-Bluray-1080p.mkv","size":1173503224,"dateAdded":"2020-02-17T20:37:05.034587Z","sceneName":"batman.beyond.s02e01.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5880000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12520},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Earth Mover-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E02.Earth Mover-Bluray-1080p.mkv","size":1173278118,"dateAdded":"2020-02-17T20:37:09.86547Z","sceneName":"batman.beyond.s02e02.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5886000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12521},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Joyride-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E03.Joyride-Bluray-1080p.mkv","size":1173292218,"dateAdded":"2020-02-17T20:37:17.590847Z","sceneName":"batman.beyond.s02e03.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5935000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12522},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Lost Soul-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E04.Lost Soul-Bluray-1080p.mkv","size":1172912518,"dateAdded":"2020-02-17T20:37:30.349301Z","sceneName":"batman.beyond.s02e04.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5804000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12523},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Hidden Agenda-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E05.Hidden Agenda-Bluray-1080p.mkv","size":1173656203,"dateAdded":"2020-02-17T20:37:41.111801Z","sceneName":"batman.beyond.s02e05.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5884000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12524},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Bloodsport-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E06.Bloodsport-Bluray-1080p.mkv","size":1173640033,"dateAdded":"2020-02-17T20:37:56.836063Z","sceneName":"batman.beyond.s02e06.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5964000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:56","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12525},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Once Burned-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E07.Once Burned-Bluray-1080p.mkv","size":1173913684,"dateAdded":"2020-02-17T20:38:09.530233Z","sceneName":"batman.beyond.s02e07.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5833000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:18","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12526},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Hooked Up-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E08.Hooked Up-Bluray-1080p.mkv","size":1173884153,"dateAdded":"2020-02-17T20:38:23.097057Z","sceneName":"batman.beyond.s02e08.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5960000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:56","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12527},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Rats-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E09.Rats-Bluray-1080p.mkv","size":1173824252,"dateAdded":"2020-02-17T20:38:37.867618Z","sceneName":"batman.beyond.s02e09.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5969000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:55","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12528},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Mind Games-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E10.Mind Games-Bluray-1080p.mkv","size":1173016546,"dateAdded":"2020-02-17T20:38:48.407052Z","sceneName":"batman.beyond.s02e10.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6016000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:47","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12529},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Revenant-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E11.Revenant-Bluray-1080p.mkv","size":1173444051,"dateAdded":"2020-02-17T20:39:00.865119Z","sceneName":"batman.beyond.s02e11.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5960000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:56","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12530},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Babel-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E12.Babel-Bluray-1080p.mkv","size":1173626133,"dateAdded":"2020-02-17T20:39:13.419185Z","sceneName":"batman.beyond.s02e12.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5885000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12531},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Terry's Friend Dates a Robot-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E13.Terry's Friend Dates a Robot-Bluray-1080p.mkv","size":1172833196,"dateAdded":"2020-02-17T20:39:22.687046Z","sceneName":"batman.beyond.s02e13.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5921000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12532},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Eyewitness-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E14.Eyewitness-Bluray-1080p.mkv","size":1173189455,"dateAdded":"2020-02-17T20:39:36.93098Z","sceneName":"batman.beyond.s02e14.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5822000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:20","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12533},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Final Cut-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E15.Final Cut-Bluray-1080p.mkv","size":1173181523,"dateAdded":"2020-02-17T20:39:46.211773Z","sceneName":"batman.beyond.s02e15.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5867000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:12","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12534},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Last Resort-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E16.The Last Resort-Bluray-1080p.mkv","size":1173331431,"dateAdded":"2020-02-17T20:39:55.972534Z","sceneName":"batman.beyond.s02e16.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5888000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:08","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12535},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Armory-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E17.Armory-Bluray-1080p.mkv","size":1173171596,"dateAdded":"2020-02-17T20:40:07.980272Z","sceneName":"batman.beyond.s02e17.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5966000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:55","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12536},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Sneak Peek-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E18.Sneak Peek-Bluray-1080p.mkv","size":1173081007,"dateAdded":"2020-02-17T20:40:17.994122Z","sceneName":"batman.beyond.s02e18.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6001000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:49","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12537},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E19.The Eggbaby-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E19.The Eggbaby-Bluray-1080p.mkv","size":1172971142,"dateAdded":"2020-02-17T20:40:29.48689Z","sceneName":"batman.beyond.s02e19.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5939000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12538},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Zeta-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E20.Zeta-Bluray-1080p.mkv","size":1173126652,"dateAdded":"2020-02-17T20:40:41.830858Z","sceneName":"batman.beyond.s02e20.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5859000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12539},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Plague-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E21.Plague-Bluray-1080p.mkv","size":1172949183,"dateAdded":"2020-02-17T20:40:52.981954Z","sceneName":"batman.beyond.s02e21.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5991000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12540},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E22.April Moon-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E22.April Moon-Bluray-1080p.mkv","size":1173324217,"dateAdded":"2020-02-17T20:41:03.310776Z","sceneName":"batman.beyond.s02e22.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5978000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12541},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Sentries of the Last Cosmos-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E23.Sentries of the Last Cosmos-Bluray-1080p.mkv","size":1173254643,"dateAdded":"2020-02-17T20:41:16.336491Z","sceneName":"batman.beyond.s02e23.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5981000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12542},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Payback-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E24.Payback-Bluray-1080p.mkv","size":1173220839,"dateAdded":"2020-02-17T20:41:26.066548Z","sceneName":"batman.beyond.s02e24.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5878000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:10","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12543},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E25.Where's Terry-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E25.Where's Terry-Bluray-1080p.mkv","size":1173335199,"dateAdded":"2020-02-17T20:41:36.244245Z","sceneName":"batman.beyond.s02e25.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5932000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12544},{"seriesId":160,"seasonNumber":2,"relativePath":"Season 02\/S02E26.Ace in the Hole-Bluray-1080p.mkv","path":"\/tv\/Batman Beyond\/Season 02\/S02E26.Ace in the Hole-Bluray-1080p.mkv","size":1173506383,"dateAdded":"2020-02-17T20:41:47.716284Z","sceneName":"batman.beyond.s02e26.1080p.bluray.x264-snow","releaseGroup":"SNOW","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6296000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"20:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12545}],"queue":[]},"153":{"series":{"title":"Russian Doll","alternateTitles":[],"sortTitle":"russian doll","status":"continuing","ended":false,"overview":"Nadia keeps dying and reliving her 36th birthday party. She's trapped in a surreal time loop -- and staring down the barrel of her own mortality.","previousAiring":"2019-02-01T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/149\/banner.jpg?lastWrite=637100124182028360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5c371ae47837d.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/149\/poster.jpg?lastWrite=637540899621646450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5c36e4d48092b.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/149\/fanart.jpg?lastWrite=637102289259786980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c5ab01d70b31.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-02-01T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10031961383,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Russian Doll","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":356640,"tvRageId":0,"tvMazeId":39987,"firstAired":"2019-02-01T00:00:00Z","seriesType":"standard","cleanTitle":"russiandoll","imdbId":"tt7520794","titleSlug":"russian-doll","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Drama","Fantasy","Science Fiction"],"tags":[],"added":"2019-07-10T20:31:34.980196Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10031961383,"percentOfEpisodes":100.0},"id":149},"episodes":[{"seriesId":149,"episodeFileId":15032,"seasonNumber":1,"episodeNumber":1,"title":"Nothing in This World Is Easy","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"On the night of her 36th birthday, Nadia meets an untimely end ... then suddenly finds herself back at the party her friends threw for her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11609},{"seriesId":149,"episodeFileId":15033,"seasonNumber":1,"episodeNumber":2,"title":"The Great Escape","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"Confused and hung over, Nadia tries to piece together what happened the night before. She tracks down Wardog, the drug dealer with the Israeli joints.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11610},{"seriesId":149,"episodeFileId":15034,"seasonNumber":1,"episodeNumber":3,"title":"A Warm Body","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"Nadia's hunt for clues leads her to a Yeshiva school\u2014but she needs John's help. Out searching for Oatmeal, Nadia befriends a homeless man.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11611},{"seriesId":149,"episodeFileId":15035,"seasonNumber":1,"episodeNumber":4,"title":"Alan's Routine","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"Meticulous as always, Alan steadies himself for a rendez-vous with his girlfriend. Nadia's latest discovery sends her reeling.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11612},{"seriesId":149,"episodeFileId":15036,"seasonNumber":1,"episodeNumber":5,"title":"Superiority Complex","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"Perturbed by the changes in his routine, Alan shows up at Nadia's birthday party. Nadia tries to make amends to John. Alan confronts Mike.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11613},{"seriesId":149,"episodeFileId":15037,"seasonNumber":1,"episodeNumber":6,"title":"Reflection","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"Nadia and Alan try to figure out how they're connected. Alan can't remember his first death, so Nadia follows him over the course of his night.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11614},{"seriesId":149,"episodeFileId":15038,"seasonNumber":1,"episodeNumber":7,"title":"The Way Out","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"As the present begins to unravel, Nadia's troubled past comes back to haunt her, and Alan worries they're running out of time.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11615},{"seriesId":149,"episodeFileId":15039,"seasonNumber":1,"episodeNumber":8,"title":"Ariadne","airDate":"2019-02-01","airDateUtc":"2019-02-01T08:00:00Z","overview":"Nadia and Alan look for each other and finally cross paths at the deli. Something's not right\u2014but they're not giving up on each other.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":11616}],"episodeFile":[{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Nothing in This World Is Easy-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E01.Nothing in This World Is Easy-WEBDL-1080p.mkv","size":1181126193,"dateAdded":"2020-07-17T09:17:31.102055Z","sceneName":"Russian.Doll.S01E01.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5532666,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:00","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15032},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Great Escape-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E02.The Great Escape-WEBDL-1080p.mkv","size":1321283976,"dateAdded":"2020-07-17T09:19:24.525987Z","sceneName":"Russian.Doll.S01E02.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5554822,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"27:52","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15033},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A Warm Body-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E03.A Warm Body-WEBDL-1080p.mkv","size":1215231660,"dateAdded":"2020-07-17T09:21:16.374316Z","sceneName":"Russian.Doll.S01E03.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5482132,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:56","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15034},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Alan's Routine-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E04.Alan's Routine-WEBDL-1080p.mkv","size":1178445993,"dateAdded":"2020-07-17T09:23:06.485976Z","sceneName":"Russian.Doll.S01E04.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5502937,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:04","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15035},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Superiority Complex-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E05.Superiority Complex-WEBDL-1080p.mkv","size":1172784070,"dateAdded":"2020-07-17T09:24:55.839232Z","sceneName":"Russian.Doll.S01E05.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5522191,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:52","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15036},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Reflection-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E06.Reflection-WEBDL-1080p.mkv","size":1289481872,"dateAdded":"2020-07-17T09:26:45.236466Z","sceneName":"Russian.Doll.S01E06.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5584371,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"27:04","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15037},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Way Out-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E07.The Way Out-WEBDL-1080p.mkv","size":1236022375,"dateAdded":"2020-07-17T09:28:35.246789Z","sceneName":"Russian.Doll.S01E07.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5539608,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:08","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15038},{"seriesId":149,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Ariadne-WEBDL-1080p.mkv","path":"\/tv\/Russian Doll\/Season 01\/S01E08.Ariadne-WEBDL-1080p.mkv","size":1437585244,"dateAdded":"2020-07-17T09:30:27.354194Z","sceneName":"Russian.Doll.S01E08.1080p.NF.WEB-DL.DDP5.1.HDR.H.265-ExREN","releaseGroup":"ExREN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5565745,"videoCodec":"h265","videoFps":23.976,"resolution":"1920x1080","runTime":"30:16","scanType":"","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15039}],"queue":[]},"156":{"series":{"title":"For All Mankind","alternateTitles":[{"title":"Para toda la humanidad","seasonNumber":-1}],"sortTitle":"for all mankind","status":"continuing","ended":false,"overview":"The depiction of an 'alternate history' of the global space race after the USSR succeeds in achieving the first manned Moon landing.","previousAiring":"2021-04-23T04:00:00Z","network":"Apple TV+","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/145\/banner.jpg?lastWrite=637493222861376220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d850474ed246.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/145\/poster.jpg?lastWrite=637541765835889440","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/356202\/posters\/600304db98362.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/145\/fanart.jpg?lastWrite=637518361360699780","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/356202\/backgrounds\/6035368ae4176.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-20T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":44645341549,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-04-23T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":50326692903,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/For All Mankind","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":62,"tvdbId":356202,"tvRageId":0,"tvMazeId":41414,"firstAired":"2019-11-01T00:00:00Z","seriesType":"standard","cleanTitle":"forallmankind","imdbId":"tt7772588","titleSlug":"for-all-mankind","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-06-05T17:27:14.206959Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":94972034452,"percentOfEpisodes":100.0},"id":145},"episodes":[{"seriesId":145,"episodeFileId":9905,"seasonNumber":1,"episodeNumber":1,"title":"Red Moon","airDate":"2019-11-01","airDateUtc":"2019-11-01T04:00:00Z","overview":"NASA is in crisis as the Soviets land the first man on the moon in 1969, the beginning of an alternate history.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11522},{"seriesId":145,"episodeFileId":9988,"seasonNumber":1,"episodeNumber":2,"title":"He Built the Saturn V","airDate":"2019-11-01","airDateUtc":"2019-11-01T05:02:00Z","overview":"Director von Braun opposes President Nixon\u2019s directive, with dire consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":13008},{"seriesId":145,"episodeFileId":9989,"seasonNumber":1,"episodeNumber":3,"title":"Nixon\u2019s Women","airDate":"2019-11-01","airDateUtc":"2019-11-01T06:04:00Z","overview":"Deke must recruit female astronauts after Russia lands a woman on the moon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":14525},{"seriesId":145,"episodeFileId":10156,"seasonNumber":1,"episodeNumber":4,"title":"Prime Crew","airDate":"2019-11-08","airDateUtc":"2019-11-08T05:00:00Z","overview":"A training accident spurs a national debate about women astronauts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":14686},{"seriesId":145,"episodeFileId":10175,"seasonNumber":1,"episodeNumber":5,"title":"Into the Abyss","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"Ed and the crew change Apollo 15\u2019s landing site after lunar ice is detected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":14787},{"seriesId":145,"episodeFileId":10248,"seasonNumber":1,"episodeNumber":6,"title":"Home Again","airDate":"2019-11-22","airDateUtc":"2019-11-22T05:00:00Z","overview":"A launchpad accident leads to delayed missions and FBI background checks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":15555},{"seriesId":145,"episodeFileId":10337,"seasonNumber":1,"episodeNumber":7,"title":"Hi Bob","airDate":"2019-11-29","airDateUtc":"2019-11-29T05:00:00Z","overview":"Ed, Gordo, and Danielle struggle with an extended Jamestown mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":15556},{"seriesId":145,"episodeFileId":10425,"seasonNumber":1,"episodeNumber":8,"title":"Rupture","airDate":"2019-12-06","airDateUtc":"2019-12-06T05:00:00Z","overview":"NASA preps a Jamestown relief mission, while Karen waits for news at the hospital.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":15557},{"seriesId":145,"episodeFileId":10614,"seasonNumber":1,"episodeNumber":9,"title":"Bent Bird","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"A crisis in space puts the Apollo 24 and 25 crews in peril.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":15558},{"seriesId":145,"episodeFileId":10664,"seasonNumber":1,"episodeNumber":10,"title":"A City Upon a Hill","airDate":"2019-12-20","airDateUtc":"2019-12-20T05:00:00Z","overview":"Season finale. Ed handles a trespasser. Ellen and Deke chart a new course without Mission Control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":15559},{"seriesId":145,"episodeFileId":17566,"seasonNumber":2,"episodeNumber":1,"title":"Every Little Thing","airDate":"2021-02-19","airDateUtc":"2021-02-19T05:00:00Z","overview":"Nearly a decade later, technology and lunar exploration have taken huge strides\u2014but a solar storm threatens the astronauts on Jamestown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":20056},{"seriesId":145,"episodeFileId":17616,"seasonNumber":2,"episodeNumber":2,"title":"The Bleeding Edge","airDate":"2021-02-26","airDateUtc":"2021-02-26T05:00:00Z","overview":"Margo must lead a seemingly impossible mission. Danielle wants to return to the moon. Gordo grapples with life on Earth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":20063},{"seriesId":145,"episodeFileId":17711,"seasonNumber":2,"episodeNumber":3,"title":"Rules of Engagement","airDate":"2021-03-05","airDateUtc":"2021-03-05T05:00:00Z","overview":"A dispute on the moon prompts NASA officials to consider arming astronauts. Ed\u2019s past comes back to haunt him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":20064},{"seriesId":145,"episodeFileId":17797,"seasonNumber":2,"episodeNumber":4,"title":"Pathfinder","airDate":"2021-03-12","airDateUtc":"2021-03-12T05:00:00Z","overview":"With a little help from Molly, Ed plans a career change\u2014as his old Jamestown crewmates Gordo and Danielle struggle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20065},{"seriesId":145,"episodeFileId":17846,"seasonNumber":2,"episodeNumber":5,"title":"The Weight","airDate":"2021-03-19","airDateUtc":"2021-03-19T04:00:00Z","overview":"Ed\u2019s reckless behavior at NASA shakes the foundation of the Baldwin family. Tracy attempts to readapt to life in space.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20066},{"seriesId":145,"episodeFileId":17905,"seasonNumber":2,"episodeNumber":6,"title":"Best-Laid Plans","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"American astronauts and NASA leadership prepare for a new mission with unlikely partners. Ellen gets in touch with an old friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20067},{"seriesId":145,"episodeFileId":17948,"seasonNumber":2,"episodeNumber":7,"title":"Don\u2019t Be Cruel","airDate":"2021-04-02","airDateUtc":"2021-04-02T04:00:00Z","overview":"Ellen is challenged by her new role. Margo\u2019s allegiances are put to the test. Karen explores new opportunities\u2014personally and professionally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20068},{"seriesId":145,"episodeFileId":17968,"seasonNumber":2,"episodeNumber":8,"title":"And Here\u2019s to You","airDate":"2021-04-09","airDateUtc":"2021-04-09T04:00:00Z","overview":"Gordo returns to space. Molly faces an upsetting new reality. Aleida confronts her first major hurdle at work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20069},{"seriesId":145,"episodeFileId":18039,"seasonNumber":2,"episodeNumber":9,"title":"Triage","airDate":"2021-04-16","airDateUtc":"2021-04-16T04:00:00Z","overview":"The rivalry between American astronauts and Soviet cosmonauts intensifies as last-minute changes impact the Pathfinder mission plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20070},{"seriesId":145,"episodeFileId":18078,"seasonNumber":2,"episodeNumber":10,"title":"The Grey","airDate":"2021-04-23","airDateUtc":"2021-04-23T04:00:00Z","overview":"Season finale. Tensions between the U.S. and the Soviet Union reach an all-time high on the moon, throwing multiple missions into jeopardy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20071}],"episodeFile":[{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Red Moon-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E01.Red Moon-WEBDL-1080p.mkv","size":5154723206,"dateAdded":"2019-11-02T17:31:09.883655Z","sceneName":"For.All.Mankind.S01E01.1080p.WEB-DL.DD5.1.H264-BTN[rarbg]","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10154592,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:05:12","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9905},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E02.He Built the Saturn V-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E02.He Built the Saturn V-WEBDL-1080p.mkv","size":5021746481,"dateAdded":"2019-11-03T11:39:59.7411Z","sceneName":"For.All.Mankind.S01E02.He.Built.the.Saturn.V.1080p.WEB-DL.DD5.1.H264-TOMMY[rarbg]","releaseGroup":"TOMMY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10248519,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x958","runTime":"1:02:57","scanType":"Progressive","subtitles":"German \/ English \/ English \/ English \/ Spanish \/ Portuguese \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9988},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Nixon\u2019s Women-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E03.Nixon\u2019s Women-WEBDL-1080p.mkv","size":4892949667,"dateAdded":"2019-11-03T11:43:12.032257Z","sceneName":"For.All.Mankind.S01E03.Nixons.Women.1080p.WEB-DL.DD5.1.H264-TOMMY[rarbg]","releaseGroup":"TOMMY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10102608,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:02:11","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Spanish \/ Portuguese \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9989},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Prime Crew-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E04.Prime Crew-WEBDL-1080p.mkv","size":4833021014,"dateAdded":"2019-11-08T09:19:11.120203Z","sceneName":"For.All.Mankind.S01E04.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10042041,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x958","runTime":"1:01:46","scanType":"Progressive","subtitles":"Arabic \/ Bulgarian \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ Norwegian \/ Polish \/ Portugues"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10156},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Into the Abyss-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E05.Into the Abyss-WEBDL-1080p.mkv","size":4735570282,"dateAdded":"2019-11-15T08:54:39.833588Z","sceneName":"For.All.Mankind.S01E05.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10199215,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"59:37","scanType":"Progressive","subtitles":"Arabic \/ Bulgarian \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ Norwegian \/ Polish \/ Portugues"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10175},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Home Again-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E06.Home Again-WEBDL-1080p.mkv","size":4935556766,"dateAdded":"2019-11-22T07:52:40.449131Z","sceneName":"For.All.Mankind.S01E06.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10171678,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:00:06","scanType":"Progressive","subtitles":"Arabic \/ Bulgarian \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ English \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ Norwegian \/ Polish \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10248},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Hi Bob-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E07.Hi Bob-WEBDL-1080p.mkv","size":4856564302,"dateAdded":"2019-11-28T18:11:51.031239Z","sceneName":"For.All.Mankind.S01E07.1080p.WEB.H264-CONVOY[rarbg]","releaseGroup":"CONVOY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10096662,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"59:34","scanType":"Progressive","subtitles":"English \/ English \/ German \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Portuguese \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10337},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Rupture-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E08.Rupture-WEBDL-1080p.mkv","size":4738220967,"dateAdded":"2019-12-06T05:58:20.393995Z","sceneName":"For.All.Mankind.S01E08.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10148398,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"57:50","scanType":"Progressive","subtitles":"Arabic \/ Bulgarian \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ English \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ Norwegian \/ Polish \/ Portugues"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10425},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Dangerous Liaisons-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 01\/S01E09.Dangerous Liaisons-WEBDL-1080p.mkv","size":3982514275,"dateAdded":"2019-12-13T10:26:53.909605Z","sceneName":"For.All.Mankind.S01E09.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10271587,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"48:04","scanType":"Progressive","subtitles":"Arabic \/ Bulgarian \/ Czech \/ Danish \/ German \/ Greek \/ English \/ English \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ Norwegian \/ Polish \/ Portuguese \/ Portug"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10614},{"seriesId":145,"seasonNumber":1,"relativePath":"Season 01\/S01E10.A City Upon a Hill-WEBDL-1080p.mp4","path":"\/tv\/For All Mankind\/Season 01\/S01E10.A City Upon a Hill-WEBDL-1080p.mp4","size":1494474589,"dateAdded":"2019-12-22T07:51:43.341455Z","sceneName":"For.All.Mankind.S01E10.1080p.WEB.H264-METCON.chs.eng","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"1:16:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10664},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Every Little Thing-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E01.Every Little Thing-WEBDL-1080p.mkv","size":4672915870,"dateAdded":"2021-02-19T06:12:36.6198Z","sceneName":"For.All.Mankind.S02E01.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9945876,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"56:59","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17566},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Bleeding Edge-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E02.The Bleeding Edge-WEBDL-1080p.mkv","size":4605636965,"dateAdded":"2021-02-26T06:12:56.083807Z","sceneName":"For.All.Mankind.S02E02.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9949676,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"56:09","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17616},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Rules of Engagement-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E03.Rules of Engagement-WEBDL-1080p.mkv","size":4954224641,"dateAdded":"2021-03-05T06:11:12.609649Z","sceneName":"For.All.Mankind.S02E03.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9985691,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:00:12","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17711},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Pathfinder-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E04.Pathfinder-WEBDL-1080p.mkv","size":4983398285,"dateAdded":"2021-03-12T05:51:57.313019Z","sceneName":"For.All.Mankind.S02E04.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9956197,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:00:43","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17797},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Weight-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E05.The Weight-WEBDL-1080p.mkv","size":4744396339,"dateAdded":"2021-03-19T07:10:10.957706Z","sceneName":"For.All.Mankind.S02E05.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H264-NOGRP[rartv]","releaseGroup":"NOGRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10072585,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"58:18","scanType":"Progressive","subtitles":"English \/ German \/ German \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malayala"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17846},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Best-Laid Plans-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E06.Best-Laid Plans-WEBDL-1080p.mkv","size":4756484553,"dateAdded":"2021-03-26T05:58:22.577634Z","sceneName":"For.All.Mankind.S02E06.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9664138,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"59:34","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17905},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Don't Be Cruel-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E07.Don't Be Cruel-WEBDL-1080p.mkv","size":5024759774,"dateAdded":"2021-04-02T05:35:15.177978Z","sceneName":"For.All.Mankind.S02E07.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9795001,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:02:09","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17948},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E08.And Here\u2019s to You-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E08.And Here\u2019s to You-WEBDL-1080p.mkv","size":5712665960,"dateAdded":"2021-04-09T10:59:12.77634Z","sceneName":"For.All.Mankind.S02E08.And.Heres.to.You.1080p.WEB-DL.DDP5.1.Atmos.H264-TOMMY[rartv]","releaseGroup":"TOMMY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10120173,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:09:54","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Arabic \/ Bulgarian \/ Czech \/ Danish \/ German \/ Greek \/ Estonian \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ Norwegian \/ Polish \/ Portuguese \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17968},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Triage-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E09.Triage-WEBDL-1080p.mkv","size":4579244024,"dateAdded":"2021-04-16T04:55:26.605637Z","sceneName":"For.All.Mankind.S02E09.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9826577,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"56:28","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/ Dutch \/ N"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18039},{"seriesId":145,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Grey-WEBDL-1080p.mkv","path":"\/tv\/For All Mankind\/Season 02\/S02E10.The Grey-WEBDL-1080p.mkv","size":6292966492,"dateAdded":"2021-04-23T07:04:38.943584Z","sceneName":"For.All.Mankind.S02E10.1080p.WEB.H264-GLHF[TGx]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9977335,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x960","runTime":"1:16:31","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Bulgarian \/ Chinese \/ Chinese \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Estonian \/ Finnish \/ French \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Lithuanian \/ Latvian \/ Malay \/"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18078}],"queue":[]},"157":{"series":{"title":"MythBusters","alternateTitles":[],"sortTitle":"mythbusters","status":"ended","ended":true,"overview":"So exactly how hard is it to find a needle in a haystack, anyway? And can water dripping on your forehead really drive you nuts? Those are the kinds of questions, myths and urban legends that are put to the test in this humorous series to find out which ones hold water (and keep it from dripping on your forehead and driving you insane).","previousAiring":"2018-02-22T02:00:00Z","network":"Discovery","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/98\/banner.jpg?lastWrite=637103832988588510","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/73388-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/98\/poster.jpg?lastWrite=636918440300654610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73388-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/98\/fanart.jpg?lastWrite=637103832985668570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73388-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-11-15T02:00:00Z","episodeFileCount":4,"episodeCount":4,"totalEpisodeCount":32,"sizeOnDisk":2845064622,"percentOfEpisodes":100.0}},{"seasonNumber":2003,"monitored":true,"statistics":{"previousAiring":"2003-12-13T02:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":11247784880,"percentOfEpisodes":100.0}},{"seasonNumber":2004,"monitored":true,"statistics":{"previousAiring":"2004-12-23T02:00:00Z","episodeFileCount":13,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":4806467852,"percentOfEpisodes":65.0}},{"seasonNumber":2005,"monitored":true,"statistics":{"previousAiring":"2005-11-17T02:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11521047883,"percentOfEpisodes":100.0}},{"seasonNumber":2006,"monitored":true,"statistics":{"previousAiring":"2006-12-14T02:00:00Z","episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":10590401164,"percentOfEpisodes":100.0}},{"seasonNumber":2007,"monitored":true,"statistics":{"previousAiring":"2007-12-13T02:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":13863485702,"percentOfEpisodes":100.0}},{"seasonNumber":2008,"monitored":true,"statistics":{"previousAiring":"2008-11-20T02:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":7696278608,"percentOfEpisodes":100.0}},{"seasonNumber":2009,"monitored":true,"statistics":{"previousAiring":"2009-12-29T02:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":8814859842,"percentOfEpisodes":100.0}},{"seasonNumber":2010,"monitored":true,"statistics":{"previousAiring":"2010-12-23T02:00:00Z","episodeFileCount":0,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":2011,"monitored":true,"statistics":{"previousAiring":"2011-12-01T02:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":8283267538,"percentOfEpisodes":100.0}},{"seasonNumber":2012,"monitored":true,"statistics":{"previousAiring":"2012-11-26T02:00:00Z","episodeFileCount":13,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":5733740132,"percentOfEpisodes":61.904761904761905}},{"seasonNumber":2013,"monitored":true,"statistics":{"previousAiring":"2013-10-18T01:00:00Z","episodeFileCount":8,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":3439742447,"percentOfEpisodes":72.72727272727273}},{"seasonNumber":2014,"monitored":true,"statistics":{"previousAiring":"2014-08-22T01:00:00Z","episodeFileCount":14,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":8879428670,"percentOfEpisodes":93.33333333333333}},{"seasonNumber":2015,"monitored":true,"statistics":{"previousAiring":"2015-09-06T01:00:00Z","episodeFileCount":13,"episodeCount":14,"totalEpisodeCount":14,"sizeOnDisk":9416743392,"percentOfEpisodes":92.85714285714286}},{"seasonNumber":2016,"monitored":true,"statistics":{"previousAiring":"2016-03-06T02:45:00Z","episodeFileCount":10,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":10813529399,"percentOfEpisodes":90.9090909090909}},{"seasonNumber":2017,"monitored":true,"statistics":{"previousAiring":"2017-12-21T02:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":5975828716,"percentOfEpisodes":100.0}},{"seasonNumber":2018,"monitored":true,"statistics":{"previousAiring":"2018-02-22T02:00:00Z","episodeFileCount":6,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6614582093,"percentOfEpisodes":75.0}}],"year":2003,"path":"\/tv\/MythBusters","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":45,"tvdbId":73388,"tvRageId":4605,"tvMazeId":379,"firstAired":"2003-01-23T00:00:00Z","seriesType":"standard","cleanTitle":"mythbusters","imdbId":"tt0383126","titleSlug":"mythbusters","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Documentary","Reality"],"tags":[],"added":"2018-10-15T17:28:28.646278Z","ratings":{"votes":8712,"value":9.2},"statistics":{"seasonCount":16,"episodeFileCount":242,"episodeCount":288,"totalEpisodeCount":316,"sizeOnDisk":130542252940,"percentOfEpisodes":84.02777777777777},"id":98},"episodes":[{"seriesId":98,"episodeFileId":18440,"seasonNumber":2003,"episodeNumber":1,"title":"Jet Assisted Chevy","airDate":"2003-01-23","airDateUtc":"2003-01-24T02:00:00Z","overview":"The story of the jet-assisted Chevy goes like this. The Arizona Highway Patrol stumbled across a blackened crater in the side of a mountain at the end of a long stretch of desert road. After an investigation, they learned that an Air Force sergeant from a nearby military base had attached a rocket-assisted takeoff unit to the roof of a 1967 Chevy Impala. He got up to about 80 mph, and then fired the things off. Within seconds the car was traveling at 350 mph. The crater was found in the mountainside 100 feet off the ground. Who do you think will be the \"dummy\" to test this myth?\r\n\r\nThe Pop Rocks and soda legend concerns a boy known as little Mikey, who was featured in commercials for Life cereal. Some years later, Mikey was challenged by his friends to eat six packs of Pop Rocks candy with six cans of soda. According to the myth, the carbon dioxide in the candy combined with the carbon dioxide in the soda to create so much pressure that Mikey's stomach exploded and he died. Our MythBusters risk their lives for you, the viewer, in these two death-defying experiments.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6994},{"seriesId":98,"episodeFileId":18441,"seasonNumber":2003,"episodeNumber":2,"title":"Biscuit Bazooka","airDate":"2003-01-23","airDateUtc":"2003-01-24T02:45:00Z","overview":"In this episode, Jamie and Adam take on a few legends involving dubious behavior. First, they contemplate the one about an obese woman on a trans-Atlantic flight whose derriere is suctioned into the plane's toilet after flushing, forcing the plane to land before she can be removed. Will the bottom fall out of this myth? How about the one involving a friend of a friend who thought she was shot while sitting in her car in a supermarket parking lot on a very hot day? The story goes that when the paramedics arrived, they found her head splattered with a mass of raw biscuit dough.\r\n\r\nAnd then there's the leaping lawyer. Some guy (apparently a lawyer), kept bouncing off a plate-glass window on the 24th floor of a high-rise building. After one too many impacts, the window shattered and the guy fell 24 floors to the ground, where he promptly died. Another day, another deadly myth.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6995},{"seriesId":98,"episodeFileId":18442,"seasonNumber":2003,"episodeNumber":3,"title":"Poppy-Seed Drug Test","airDate":"2003-03-07","airDateUtc":"2003-03-08T02:00:00Z","overview":"So, this guy named Larry Walters attached something like 45 weather balloons to this lawn chair. One of the tethers broke on the unemployed truck driver's little invention, shooting him straight up into the air. Apparently he sailed to 16,000 feet, where he was spotted by airline pilots, eventually closing LAX airport. He was finally rescued by a helicopter after he floated out to sea. Is this popular Internet legend full of hot air? Will Jamie and Adam close LAX?\r\n\r\nIn the 1964 James Bond classic, Goldfinger, the villain's secretary is murdered with the dreaded gold body paint, causing death by skin suffocation. Supposedly, leaving a small patch of skin unpainted at the base of the spine will save the victim. Unfortunately, the movie's producers didn't have this vital piece of information, dooming actress Shirley Eaton to death on set. Who will be the guinea pig in this experiment? On a tastier note, can eating a poppy-seed bagel produce a positive result for opiate use in a drug screen? Our brave hosts test these stories so you don't have to.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6996},{"seriesId":98,"episodeFileId":18443,"seasonNumber":2003,"episodeNumber":4,"title":"Exploding Toilet","airDate":"2003-09-23","airDateUtc":"2003-09-24T01:00:00Z","overview":"Can a toilet be made to explode by pouring a flammable liquid into it and lighting a match? Does running in the rain rather than walking get you less wet? Can assassins really use bullets made out of ice so that they leave no trace?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6997},{"seriesId":98,"episodeFileId":18444,"seasonNumber":2003,"episodeNumber":5,"title":"Cell Phone Destroys Gas Station","airDate":"2003-10-03","airDateUtc":"2003-10-04T01:00:00Z","overview":"Can using a cell phone at a gas station cause the pump to explode? Can changes in air pressure at high altitude cause silicone breast implants to explode? Can spinning a CD-ROM at too high a speed cause it to shatter?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6998},{"seriesId":98,"episodeFileId":18445,"seasonNumber":2003,"episodeNumber":6,"title":"Barrel of Bricks","airDate":"2003-10-10","airDateUtc":"2003-10-11T01:00:00Z","overview":"Can urinating on the electrified third rail of a train track cause you to be electrocuted? Can a wallet made from the skin of an electric eel erase the magnetic information from your credit cards? Can a construction worker be killed by a barrel of bricks?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6999},{"seriesId":98,"episodeFileId":18446,"seasonNumber":2003,"episodeNumber":7,"title":"Penny Drop","airDate":"2003-10-17","airDateUtc":"2003-10-18T01:00:00Z","overview":"Can a pedestrian be killed by a penny dropped from the top of a skyscraper? The team finds out the terminal velocity of a penny and make a penny cannon, then shot it at a pigs scull. This showed if a penny being dropping at terminal velocity can kill someone. Can you be baked to death on a tanning bed? Can toothfillings transmit radio waves?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7000},{"seriesId":98,"episodeFileId":18447,"seasonNumber":2003,"episodeNumber":8,"title":"Buried Alive","airDate":"2003-10-24","airDateUtc":"2003-10-25T01:00:00Z","overview":"Can a person jumping off a bridge be saved from death by throwing a hammer into the water to break the rigidity of the surface? How long will the air last in a coffin if you are buried alive? Can cola clean rust, cook a steak, or remove bloodstains?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7001},{"seriesId":98,"episodeFileId":18448,"seasonNumber":2003,"episodeNumber":9,"title":"Lightning Strikes \/ Tongue Piercing","airDate":"2003-11-07","airDateUtc":"2003-11-08T02:00:00Z","overview":"Could a small town have built a working cannon out of a tree? Can a pierced tongue withstand the electric force of a bolt of lightning? The team takes a mold of Adam's head and pierced the heck out of it to see if they could get a lighting strike from an electric rod. Are there ways of beating a Breathalyzer? The team tries many myths to see if they could drink and make it not show up on a Breathalyzer.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7002},{"seriesId":98,"episodeFileId":18449,"seasonNumber":2003,"episodeNumber":10,"title":"Stinky Car, Raccoon Rocket","airDate":"2003-12-05","airDateUtc":"2003-12-06T02:00:00Z","overview":"Mythbusters, Jamie and Adam put their noses to the test to find out if that nasty smell in your car is there to stay. Is the myth of the stinky car true? Then follow the gasoline trail as they try to flush out the truth in the raccoon in the drain myth.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7003},{"seriesId":98,"episodeFileId":18450,"seasonNumber":2003,"episodeNumber":11,"title":"Alcatraz Escape","airDate":"2003-12-12","airDateUtc":"2003-12-13T02:00:00Z","overview":"Jamie and Adam retrace the steps of the infamous prisoners who escaped from Alcatraz without a trace in 1962. Although presumed drowned, they'll find out if it was possible to survive the tides of the San Francisco Bay in a homemade raft. As for other myth, Jamie and Adam test whether quacks from ducks echo. They examine the urban legend about whether a stud finder can tell whether you have something implanted in your body.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7004},{"seriesId":98,"episodeFileId":4496,"seasonNumber":2004,"episodeNumber":1,"title":"Explosive Decompression, Frog Giggin', Rear Axle","airDate":"2004-01-11","airDateUtc":"2004-01-12T02:00:00Z","overview":"Can a bullet hole in the hull of an airplane cause explosive decompression that destroys the plane? Can a .22 caliber gun cartridge attached to a car ignition be used as a fuse? Can a car be ripped off its rear axle?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7005},{"seriesId":98,"episodeFileId":4514,"seasonNumber":2004,"episodeNumber":2,"title":"Chicken Gun","airDate":"2004-01-18","airDateUtc":"2004-01-19T02:00:00Z","overview":"Can a cooked and raw chicken flying toward an airplane interfere with its flight or will the jet engine just blow it away? The team makes a huge pressurized cannon and shoots a chicken at a jet's windshield. Did a woman give birth to an octopus after swallowing an octopus egg? Can your washing machine kill you?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7006},{"seriesId":98,"episodeFileId":4527,"seasonNumber":2004,"episodeNumber":3,"title":"Sinking Titanic, Goldfish Memory, Trombone Explosion","airDate":"2004-01-25","airDateUtc":"2004-01-26T02:00:00Z","overview":"Will a sinking ship suck you down as it goes under? Can fish actually remember things? What happens when you throw a firecracker down the neck of a trombone?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7007},{"seriesId":98,"episodeFileId":4537,"seasonNumber":2004,"episodeNumber":4,"title":"Breakstep Bridge","airDate":"2004-01-25","airDateUtc":"2004-01-26T02:45:00Z","overview":"Can a marching band make a bridge collapse? Can bacteria from a toilet settle in a toothbrush? Can a person water ski behind a rowboat?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7008},{"seriesId":98,"episodeFileId":4551,"seasonNumber":2004,"episodeNumber":5,"title":"Buried in Concrete","airDate":"2004-02-15","airDateUtc":"2004-02-16T02:00:00Z","overview":"Is Jimmy Hoffa buried in the concrete under Giant's Stadium? Do Daddly-Long Leg Spiders have poison venom? Can a jet engine launch a taxi into the air?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":7009},{"seriesId":98,"episodeFileId":4564,"seasonNumber":2004,"episodeNumber":6,"title":"Best Animal Myths","airDate":"2004-03-21","airDateUtc":"2004-03-22T02:00:00Z","overview":"At request of the fans, the best myths related to animals will be shown again in this episode.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7010},{"seriesId":98,"episodeFileId":4579,"seasonNumber":2004,"episodeNumber":7,"title":"Best Electric Myths","airDate":"2004-05-06","airDateUtc":"2004-05-07T01:00:00Z","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7011},{"seriesId":98,"episodeFileId":4593,"seasonNumber":2004,"episodeNumber":8,"title":"Myths Revisited","airDate":"2004-06-08","airDateUtc":"2004-06-09T01:00:00Z","overview":"In this episode, Adam and Jamie re-test some myths hearing the publics suggestions and complaints. Myths tested:\r\n-\"Peeing on the Third Rail\"\r\n-\"Goldfinger\"\r\n-\"Chicken Gun\" (which gave problems and had to be re-tested twice)\r\n-\"Ice Bullet\"\r\n-\"Cell Phone + Gas Station = Explosion\"\r\n-\"Aerosol (formally Biscuit) Bullet, part II\"\r\n\"Exploding Implants, part II\"","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7012},{"seriesId":98,"episodeFileId":4603,"seasonNumber":2004,"episodeNumber":9,"title":"Best Explosions","airDate":"2004-06-29","airDateUtc":"2004-06-30T01:00:00Z","overview":"The Best Booms and Bangs so far from the series!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7013},{"seriesId":98,"episodeFileId":4612,"seasonNumber":2004,"episodeNumber":10,"title":"Scuba Diver, Car Capers","airDate":"2004-07-27","airDateUtc":"2004-07-28T01:00:00Z","overview":"Adam and Jamie investigate the urban legend of a scuba diver who is dumped in the middle of a forest fire by a fire-fighting helicopter. Can a scuba diver get sucked up and spit out like this? They also investigate other legends: what happens when a banana is shoved into a car's tailpipe? What happens when you pour sugar in a car gas tank? What happens when you shoot a gun at a gas tank?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7014},{"seriesId":98,"episodeFileId":4626,"seasonNumber":2004,"episodeNumber":11,"title":"Ancient Death Ray","airDate":"2004-09-29","airDateUtc":"2004-09-30T01:00:00Z","overview":"Did the ancient Greek scientist Archimedes destroy a Roman fleet by building a heat ray that used only mirrors and sunlight? What is the best way of getting rid of a Skunk's odor? Can a bullet proofshield really stop a bullet?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7015},{"seriesId":98,"episodeFileId":4634,"seasonNumber":2004,"episodeNumber":12,"title":"Elevator of Death, Levitation Machine","airDate":"2004-10-06","airDateUtc":"2004-10-07T01:00:00Z","overview":"If you are in an elevator when it falls, can you save yourself by jumping up just before it hits the bottom? Is it possible to create a home-made levitation machine?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7016},{"seriesId":98,"episodeFileId":4642,"seasonNumber":2004,"episodeNumber":13,"title":"Beat the Radar Detector","airDate":"2004-10-13","airDateUtc":"2004-10-14T01:00:00Z","overview":"Did a construction worker survive a fall off a building by holding plywood? Can you beat the radar gun using different materials on your car LEGALLY?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7017},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":14,"title":"Quicksand, Bathtub Electrocution, MRI Rays and Tattoos","airDate":"2004-10-20","airDateUtc":"2004-10-21T01:00:00Z","overview":"Can quicksand really pull you under? Is it really possible to kill someone by dropping an electrical appliance into a bathtub? Can an MRI explode a tattoo that has traces of metal within it?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7018},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":15,"title":"Exploding Jawbreaker","airDate":"2004-10-27","airDateUtc":"2004-10-28T01:00:00Z","overview":"Is it possible to throw a regular playing card fast enough to inflict bodily harm? Jamie and Adam put the \"killer card\" myth under the microscope, then look into whether a heated jawbreaker can explode in your mouth. Finally, the guys invent their own static cannon to learn if an unfortunate construction worker really died from sandblasting a PVC pipe on the job.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7019},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":16,"title":"Pingpong Rescue","airDate":"2004-11-03","airDateUtc":"2004-11-04T02:00:00Z","overview":"Can a sunken ship be lifted from the ocean floor using only ping-pong balls? How many balloons does it take to lift a three-year-old off the ground.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7020},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":17,"title":"Boom Lift Catapult","airDate":"2004-11-10","airDateUtc":"2004-11-11T02:00:00Z","overview":"Buster lends a hand as the MythBusters explore the myth of the boom-lift catapult. Will Buster overcome the raw power of a 30,000-pound piece of machinery, or will the boom-lift turn into the ultimate medieval catapult? Then, worried about the price of gas? Tune in to Jamie and Adam's investigation into the most fuel-efficient way to keep cool in the car: turning on the air conditioning or opening the windows.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7021},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":18,"title":"Exploding House","airDate":"2004-11-16","airDateUtc":"2004-11-17T02:00:00Z","overview":"Just how hard is it to find a needle in a haystack? Can you really blow up a house through misusing a bug bomb? Does talking to your plants actually help?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7022},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":19,"title":"Ming Dynasty Astronaut","airDate":"2004-12-05","airDateUtc":"2004-12-06T02:00:00Z","overview":"Buster makes the ultimate sacrifice as he's chosen to test the myth of a Ming Dynasty astronomer who strapped rockets to his chair in a bid to launch into space. Then, Adam and Jamie try to corner the energy market as they test out various free energy devices. And finally, the build team nearly lose their lunch testing out whether or not a common household ceiling fan really is a heads-up death trap.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7023},{"seriesId":98,"episodeFileId":0,"seasonNumber":2004,"episodeNumber":20,"title":"Christmas Special","airDate":"2004-12-22","airDateUtc":"2004-12-23T02:00:00Z","overview":"On this special episode, Jamie and Adam present the winners from our fall 2004 favorite-myths online poll. So, did you guys vote for Stinky Car? Or will Pop Rocks and Coke emerge triumphant? Also, the MythBusters try their hand at a few holiday myths: Will putting a silver spoon in a champagne bottle keep it fizzy? Does a snowman melt faster with its clothes on ... or off? Tune in and find out.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":7024},{"seriesId":98,"episodeFileId":4499,"seasonNumber":2005,"episodeNumber":1,"title":"Buster Special","airDate":"2005-02-02","airDateUtc":"2005-02-03T02:00:00Z","overview":"Buster is the Mythbuster's dummy. Buster is remembered in this hour long special depicting his brave outing testing multiple myths for the guys, as well as an inside, and in depth, look into the creation of our fallen hero's replacement. The team also builds a new Buster because the old one was so trashed up from recent experiences.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7025},{"seriesId":98,"episodeFileId":4512,"seasonNumber":2005,"episodeNumber":2,"title":"Ultimate MythBusters","airDate":"2005-02-09","airDateUtc":"2005-02-10T02:00:00Z","overview":"Adam and Jamie go head-to-head in a series of challenges to see who has the guts and \"gusto\" to be the Ultimate Mythbuster!\r\n\r\nTest 1: Engineering; create a device to launch a tortilla as far as possible without destroying it.\r\nTest 2: Estimation; estimate the weight of 3 different objects looking at them and then taking them with their hands.\r\nTest 3: Fear; they have to hold creepy creatures without getting scared.\r\nTest 4: Creative Thinking. They have to build the classic \"Egg Drop Device\" to protect the egg from the fall.\r\nTest 5: Pain. They'll have to stand the pain caused by paint balls.\r\nTest 6: Memory. They have to test each other with a 6-question quiz about the myths they've tested.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7026},{"seriesId":98,"episodeFileId":4528,"seasonNumber":2005,"episodeNumber":3,"title":"Brown Note","airDate":"2005-02-16","airDateUtc":"2005-02-17T02:00:00Z","overview":"Does a certain sound note cause you to \"tinkle\" in your pants? Does that classic shot with a gun in a movie scene with fly backward possible? Is Chinese Water Torture Real?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7027},{"seriesId":98,"episodeFileId":4536,"seasonNumber":2005,"episodeNumber":4,"title":"Salsa Escape","airDate":"2005-02-23","airDateUtc":"2005-02-24T02:00:00Z","overview":"Adam and Jamie go head to head in a madcap Mexican jailbreak as they taste-test the theory of the Salsa Escape. And take one cement truck, add 850 pounds of dynamite, and what's left? Absolutely nothing, apparently. Adam and Jamie join forces with the FBI to find out if you can remove cement build-up from a mixer's barrel using dynamite.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7028},{"seriesId":98,"episodeFileId":4557,"seasonNumber":2005,"episodeNumber":5,"title":"Exploding Port-a-Potty","airDate":"2005-03-02","airDateUtc":"2005-03-03T02:00:00Z","overview":"Can a person receive third-degree burns if he or she lights a cigarette while inside a port-a-potty? Armed with Adam's \"special sample,\" the build team explores whether human waste can create enough methane to produce an explosive result. Then the MythBusters test whether a broken drive shaft on the front joint of a car vault can cause a car to pole vault after it hits a pothole. Just how high can this car fly?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7029},{"seriesId":98,"episodeFileId":4571,"seasonNumber":2005,"episodeNumber":6,"title":"Is Yawning Contagious?","airDate":"2005-03-09","airDateUtc":"2005-03-10T02:00:00Z","overview":"Using a specially fabricated chamber complete with two-way mirror and a hidden camera, Kari, Scottie and Tory set out to see whether a yawn, like a cold, truly can be caught. Next on the docket: Does toast really fall buttered-side down? Jamie and Adam are on the case, each building a rig to simulate toast being dropped from the dining room table. Finally, the whole team tests the myth that a toy car can beat a real car (in this case, a Dodge Viper) in a gravity slope race.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7030},{"seriesId":98,"episodeFileId":4578,"seasonNumber":2005,"episodeNumber":7,"title":"MythBusters Outtakes","airDate":"2005-03-16","airDateUtc":"2005-03-17T02:00:00Z","overview":"Outtakes from the series so far.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7031},{"seriesId":98,"episodeFileId":4598,"seasonNumber":2005,"episodeNumber":8,"title":"Cooling a Six-Pack","airDate":"2005-03-23","airDateUtc":"2005-03-24T02:00:00Z","overview":"The mystery is finally over! Watch as the MythBusters use ice, water, refrigerators, freezers and fire to test the fastest way to cool a six-pack. Then the team builds a new crash-test dummy ... and drops it 60 feet from a crane. The result is baptism by destruction for Buster 2.0, and a high-speed, high-impact crash the likes of which ... well, see for yourself. And finally, they may not have had iPods or remote controls to use them in, but did ancient peoples have batteries? Learn whether a crude form was invented more than 2,000 years ago.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7032},{"seriesId":98,"episodeFileId":4607,"seasonNumber":2005,"episodeNumber":9,"title":"Son of a Gun","airDate":"2005-03-30","airDateUtc":"2005-03-31T02:00:00Z","overview":"Was a woman in the Civil War impregnated by a bullet that went through a man's region before striking her? The Mythbusters build a life size working bathroom to see if being in the tub during a lightning storm is safe and what happens if you forget to detach your trailer from your boat.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7033},{"seriesId":98,"episodeFileId":4619,"seasonNumber":2005,"episodeNumber":10,"title":"Shop 'til You Drop","airDate":"2005-04-06","airDateUtc":"2005-04-07T01:00:00Z","overview":"Find out where the MythBusters find all their goodies to build that myth breaking machines.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7034},{"seriesId":98,"episodeFileId":4627,"seasonNumber":2005,"episodeNumber":11,"title":"MythBusters: Revealed","airDate":"2005-04-27","airDateUtc":"2005-04-28T01:00:00Z","overview":"Experience the funny moments, adventure and misadventures, mistakes and mis-experimentations of Adam and Jamie as they test the truth of myths.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":11,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7035},{"seriesId":98,"episodeFileId":4638,"seasonNumber":2005,"episodeNumber":12,"title":"Hollywood On Trial","airDate":"2005-05-11","airDateUtc":"2005-05-12T01:00:00Z","overview":"New Mythbuilder Grant Imahara joins the team as they recap old movie myths and test new ones in this special Mythbusters episode.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":12,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7036},{"seriesId":98,"episodeFileId":4647,"seasonNumber":2005,"episodeNumber":13,"title":"Breaking Glass","airDate":"2005-05-18","airDateUtc":"2005-05-19T01:00:00Z","overview":"Can an singer really break glass just by using their voice? Can you make a jet engine out of vacuum cleaner parts? Is it true that a rolling stone gathers no moss?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":13,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7037},{"seriesId":98,"episodeFileId":4656,"seasonNumber":2005,"episodeNumber":14,"title":"Jet Pack","airDate":"2005-06-08","airDateUtc":"2005-06-09T01:00:00Z","overview":"With $10,000, can they build a hover craft?\r\nThe team finds all of the possibilities of a hover craft or really a Jet Pack. Did pyramid shape help preserve mummies and current day pyramids preserve food items? In this myth the team make a metal bronze pyramid and puts an apple and a glass of milk under the pyramid. They leave the apple and the milk under the pyramid for 3 months.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":14,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7038},{"seriesId":98,"episodeFileId":4662,"seasonNumber":2005,"episodeNumber":15,"title":"Killer Brace Position","airDate":"2005-06-22","airDateUtc":"2005-06-23T01:00:00Z","overview":"Adam and Kari go to a local raceway and drive a skills course, while being distracted on the cell phone, and then after knocking back some beers, to find out which is more dangerous. And, in their own homemade mock airplane they test \"the brace position.\"","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":15,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7039},{"seriesId":98,"episodeFileId":4664,"seasonNumber":2005,"episodeNumber":16,"title":"Bullet Proof Water","airDate":"2005-07-13","airDateUtc":"2005-07-14T01:00:00Z","overview":"Adam and Jamie test two urban legends; in 'Bullet Proof Water' find out exactly how deep one must dive to survive a gunshot, and in '360 Degree Swing' find out if it is possible to get a swinger to go all the way around a swing set, up and over the bar.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":16,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7040},{"seriesId":98,"episodeFileId":4671,"seasonNumber":2005,"episodeNumber":17,"title":"MythBusters Jaws Special","airDate":"2005-07-17","airDateUtc":"2005-07-18T01:00:00Z","overview":"Mythbusters are going to put the bite on some fascinating shark myths. Find out if real sharks are capable of performing the way the great white shark in the movie \"JAWS\" did, and uncover the strength and stamina of these off-screen giants. Including do sharks lose interest in attacking if punched on the nose or jabbed in the eyes and gills? Adam and Jamie put it to the test. Jamie goes overboard to tussle with some fearsome fish. And a scuba tank experiment so dangerous, the FBI are brought in!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":17,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7041},{"seriesId":98,"episodeFileId":4684,"seasonNumber":2005,"episodeNumber":18,"title":"Border Slingshot","airDate":"2005-07-27","airDateUtc":"2005-07-28T01:00:00Z","overview":"Can you fling someone over the border (200 yards) using a slingshot safely to a mattress? Can the Mythbusters break a US-Mexico Border Myth","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":18,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7042},{"seriesId":98,"episodeFileId":4687,"seasonNumber":2005,"episodeNumber":19,"title":"Killer Tissue Box","airDate":"2005-08-03","airDateUtc":"2005-08-04T01:00:00Z","overview":"'Killer Tissue Box' is an investigation into whether a tissue box can become a lethal missile in a car crash. In 'Split Arrow' the build team tests whether an archer can split one arrow straight down the middle with another, as the legendary Robin Hood was said to have done.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":19,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7043},{"seriesId":98,"episodeFileId":4693,"seasonNumber":2005,"episodeNumber":20,"title":"Escape Slide Parachute","airDate":"2005-08-10","airDateUtc":"2005-08-11T01:00:00Z","overview":"Join the MythBusters as they test three tall tales of high flying and free falling. The first pits them against Hollywood logic with Buster doing his best Indiana Jones impression, the second tests the explosive properties and decapitation potential of hair cream, and the third addresses surviving a fall from 33,000 feet without a parachute. So, basically, it's business as usual at the \"Mythbusters Flying Circus\"!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":20,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7044},{"seriesId":98,"episodeFileId":4700,"seasonNumber":2005,"episodeNumber":21,"title":"MythBusters Revisited","airDate":"2005-10-12","airDateUtc":"2005-10-13T01:00:00Z","overview":"Time to take down the non believers!\r\n\r\nMythbusters will go revisit \r\n\r\nBlown Away, Running in the Rain, Plywood Flyer, Exploding Soda, Explosive Decompression, AC vs Windows Down, and Exploding Gas Tank\r\n\r\nto end the you did it wrong crowd for the last time!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":21,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7045},{"seriesId":98,"episodeFileId":4707,"seasonNumber":2005,"episodeNumber":22,"title":"Chinese Invasion Alarm","airDate":"2005-10-19","airDateUtc":"2005-10-20T01:00:00Z","overview":"Join the MythBusters as they head to a California mine to test an ancient Chinese military myth \u2013 a subterranean sonar system that could allegedly detect and intercept an invasion from below. Then, armed with an incubator, agar plates and boundless enthusiasm, the guys aim to cook up the truth about a popular food fable. If food has been on the floor for less than five seconds, is it still safe to eat?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":53,"sceneEpisodeNumber":22,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7046},{"seriesId":98,"episodeFileId":4711,"seasonNumber":2005,"episodeNumber":23,"title":"Confederate Rocket","airDate":"2005-10-26","airDateUtc":"2005-10-27T01:00:00Z","overview":"The American Civil War was fought with polished bayonets, unreliable muskets and bulky cannons. But was that all? Not according to the Mythbusters: Adam, Jamie and the build team join forces to find out if the Confederate Army had a secret deadly weapon.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":54,"sceneEpisodeNumber":23,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7047},{"seriesId":98,"episodeFileId":4719,"seasonNumber":2005,"episodeNumber":24,"title":"Vodka Myths","airDate":"2005-11-02","airDateUtc":"2005-11-03T02:00:00Z","overview":"In COMPACT COMPACT, trucks fused together upon impact, sealing the unfortunate car and driver between them. The team needs a traffic-free stretch of freeway to test this.Kari hosts some urban legends about Vodka and its impact on personal hygiene. The team takes vodka and puts it up against the normal oder persperant and tries to get rid of the oder on Kari's feet. They also put it up against the normal mouth wash and smell Kari","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":55,"sceneEpisodeNumber":24,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7048},{"seriesId":98,"episodeFileId":4720,"seasonNumber":2005,"episodeNumber":25,"title":"Steel Toe Amputation","airDate":"2005-11-09","airDateUtc":"2005-11-10T02:00:00Z","overview":"In Steel Toe Amputation, Adam and Jamie test steel toe boots ability to protect from heavy objects. In Bottle Blast Off, the Build team fills soda bottle and watch it lift off, testing Newton's third law.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":56,"sceneEpisodeNumber":25,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7049},{"seriesId":98,"episodeFileId":4726,"seasonNumber":2005,"episodeNumber":26,"title":"Seasickness - Kill or Cure","airDate":"2005-11-16","airDateUtc":"2005-11-17T02:00:00Z","overview":"The MythBusters take on the myth that electric shock therapy or homeopathic tongue tinglers cure seasickness. Also does driving your pickup with the tailgate down save money and can shoving your fingers into a gun barrel save life?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":57,"sceneEpisodeNumber":26,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":7050},{"seriesId":98,"episodeFileId":4501,"seasonNumber":2006,"episodeNumber":1,"title":"Paper Crossbow","airDate":"2006-01-11","airDateUtc":"2006-01-12T02:00:00Z","overview":"Adam and Jamie unleash a deadly myth from a supermax prison, attempting to make a deadly weapon out of newspaper and underwear. Grant, Kari and Tory unscrew the cap on some more vodka myths, such as removing cigarette smell from clothing.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":58,"sceneEpisodeNumber":1,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7051},{"seriesId":98,"episodeFileId":4509,"seasonNumber":2006,"episodeNumber":2,"title":"Shredded Plane","airDate":"2006-01-18","airDateUtc":"2006-01-19T02:00:00Z","overview":"In Shredded plane, Adam and Jamie investigate the cause of a shredded airplane. The other members put their survival skills to the test in Firestarter.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":59,"sceneEpisodeNumber":2,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7052},{"seriesId":98,"episodeFileId":4523,"seasonNumber":2006,"episodeNumber":3,"title":"Archimedes Death Ray Revisited","airDate":"2006-01-25","airDateUtc":"2006-01-26T02:00:00Z","overview":"Adam and Jamie accepted the challenge from fans mailbags to retest the Archimedes death ray. In turn, fans and MIT team were invited to perform this challlenge.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":60,"sceneEpisodeNumber":3,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7053},{"seriesId":98,"episodeFileId":4542,"seasonNumber":2006,"episodeNumber":4,"title":"Helium Football","airDate":"2006-02-01","airDateUtc":"2006-02-02T02:00:00Z","overview":"This time around, Adam and Jamie test out a myth that footballs filled with helium will fly further and hang longer than ones filled with regulation air. Based on the myth of a 70s Oakland Raiders Punter. Next, the build team undertake tests in the firing line. Are teeth strong enough to withstand the force of a bullet?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":61,"sceneEpisodeNumber":4,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7054},{"seriesId":98,"episodeFileId":4556,"seasonNumber":2006,"episodeNumber":5,"title":"Franklin's Kite","airDate":"2006-03-08","airDateUtc":"2006-03-09T02:00:00Z","overview":"Not exactly a Myth, but an interesting experiment, The Team Goes to replicate Ben Franklin's Lightning Storm Kite, which during the process causes injury to Tory.. Stay Tuned!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":62,"sceneEpisodeNumber":5,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7055},{"seriesId":98,"episodeFileId":4565,"seasonNumber":2006,"episodeNumber":6,"title":"Cell Phones on Planes","airDate":"2006-03-15","airDateUtc":"2006-03-16T02:00:00Z","overview":"So, supposedly, if you fill a normal raft with helium, you can fly. Let's see if the guys can get their boat into the air - get ready for the biggest Mythbusters' build ever. Meanwhile, Tory and Kari tackle a conspiracy theory familiar to many frequent fliers. Can your cell phone interfere with a plane's instruments?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":63,"sceneEpisodeNumber":6,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7056},{"seriesId":98,"episodeFileId":4582,"seasonNumber":2006,"episodeNumber":7,"title":"Bullets Fired Up","airDate":"2006-04-19","airDateUtc":"2006-04-20T01:00:00Z","overview":"Adam and Jamie test the myth that firing in the air can cause the death of someone if they are impacted by the bullet when it returns to earth. Also Kari, Tory and Grant continue to delve into more popular Vodka myths.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":64,"sceneEpisodeNumber":7,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7057},{"seriesId":98,"episodeFileId":4596,"seasonNumber":2006,"episodeNumber":8,"title":"Myths Reopened","airDate":"2006-04-26","airDateUtc":"2006-04-27T01:00:00Z","overview":"A look back at myths that generated a truck load of angry fan mail. \r\n\r\nIn Split Arrow, the 3 Mythkateers take another aim at Robin Hood's arrow. \r\n\r\nThe Confederate Rocket will be tested with a Salami launch. \r\n\r\nAnother shot at Bullet-Proof water.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":65,"sceneEpisodeNumber":8,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7058},{"seriesId":98,"episodeFileId":4609,"seasonNumber":2006,"episodeNumber":9,"title":"Mind Control","airDate":"2006-05-03","airDateUtc":"2006-05-04T01:00:00Z","overview":"Adam and Jamie attempt to blow open a home improvement myth with dynamite. The 3 MythBuilders tackle mind control by manipulating someone's mind remotely.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":66,"sceneEpisodeNumber":9,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7059},{"seriesId":98,"episodeFileId":4618,"seasonNumber":2006,"episodeNumber":10,"title":"Exploding Pants","airDate":"2006-05-10","airDateUtc":"2006-05-11T01:00:00Z","overview":"The three Mythkateers investigate a fashion disaster when farmers\u2019 trousers suddenly explode. In Great Gas Conspiracy, Adam and Jamie investigate whether the gas and car companies deliberately make gas guzzling cars to increase profits.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":67,"sceneEpisodeNumber":10,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7060},{"seriesId":98,"episodeFileId":4631,"seasonNumber":2006,"episodeNumber":11,"title":"Crimes and Myth-demeanors","airDate":"2006-07-12","airDateUtc":"2006-07-13T01:00:00Z","overview":"Adam and Jamie once again put movie myths to the test. Are Hollywood heists complete hocus pocus or can you really crack the tightest security systems in the world?\r\n\r\nPart 1 of 2!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":68,"sceneEpisodeNumber":11,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7061},{"seriesId":98,"episodeFileId":4640,"seasonNumber":2006,"episodeNumber":12,"title":"Steam Cannon","airDate":"2006-07-19","airDateUtc":"2006-07-20T01:00:00Z","overview":"Archimedes is on Mythbusters again! This time it's his Steam Cannon and the results are amazing as Adam and Jamie build the mother of all cannons. While in Breakfast Cereal, an eating competition puts Adam's Mom to the test! Whats healthier? The cereal or the box itself?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":69,"sceneEpisodeNumber":12,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7062},{"seriesId":98,"episodeFileId":4646,"seasonNumber":2006,"episodeNumber":13,"title":"Killer Whirlpool","airDate":"2006-07-26","airDateUtc":"2006-07-27T01:00:00Z","overview":"Adam and Jamie test the famous myth of: Can whirlpools kill? \r\nTory, Kari and Grant get snowed in under a snow plow.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":70,"sceneEpisodeNumber":13,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7063},{"seriesId":98,"episodeFileId":4655,"seasonNumber":2006,"episodeNumber":14,"title":"Diet Coke and Mentos","airDate":"2006-08-09","airDateUtc":"2006-08-10T01:00:00Z","overview":"Inspired by an internet story, The Mythbusters take on the controversy surrounding these fizzy fountains. Then they try and find new household-product tricks that could be the \"new craze\". Meanwhile, the Mythterns tackle the myth that a single postage stamp on a helicopter blade disrupts the system enough to take it down.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":71,"sceneEpisodeNumber":14,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7064},{"seriesId":98,"episodeFileId":4663,"seasonNumber":2006,"episodeNumber":15,"title":"Shattering Subwoofer","airDate":"2006-08-16","airDateUtc":"2006-08-17T01:00:00Z","overview":"The guys find out if the bass from a car stereo can destroy an automobile. They rip out the interior of a car, build a giant subwoofer to fill it, and then power it by attaching it directly to the drive shaft. Wear your ear plugs for this one! Also, Grant, Kari and Tory hit the road to take on two tall tales from our mates down under. If you're driving on a rough outback road, will you get a smoother ride by driving faster? And, can you stop your windshield from shattering when a stone is kicked up from a passing car by bracing the glass with your hand?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":72,"sceneEpisodeNumber":15,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7065},{"seriesId":98,"episodeFileId":4669,"seasonNumber":2006,"episodeNumber":16,"title":"Crimes and Myth-demeanors 2","airDate":"2006-08-23","airDateUtc":"2006-08-24T01:00:00Z","overview":"Part 2 of 2:\r\n\r\nMore Crimes in the movies put to the test:\r\n\r\nHeat Sensing and Motion Sensors and Safe Exploding with water.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":73,"sceneEpisodeNumber":16,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7066},{"seriesId":98,"episodeFileId":4677,"seasonNumber":2006,"episodeNumber":17,"title":"Earthquake Machine","airDate":"2006-08-30","airDateUtc":"2006-08-31T01:00:00Z","overview":"Adam and Jamie take on one of the greatest scientist\/inventor and myth creator legends of all time, Nikolai Tesla and his Earthquake Machine. Tory and Kari investigate a lethal lava lamp.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":74,"sceneEpisodeNumber":17,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7067},{"seriesId":98,"episodeFileId":4682,"seasonNumber":2006,"episodeNumber":18,"title":"Deadly Straw","airDate":"2006-09-06","airDateUtc":"2006-09-07T01:00:00Z","overview":"Can a straw go through a palm tree?\r\n\r\nCan a hurricane really take the feathers off a chicken?\r\n\r\nand Plant Polygraphing","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":75,"sceneEpisodeNumber":18,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7068},{"seriesId":98,"episodeFileId":4685,"seasonNumber":2006,"episodeNumber":19,"title":"Mega Movie Myths","airDate":"2006-09-13","airDateUtc":"2006-09-14T01:00:00Z","overview":"Adam, Jamie, Buster, and the Build Team are watching movie Myths they have done in the past, and decide to dedicate a whole episode to them.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":76,"sceneEpisodeNumber":19,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7069},{"seriesId":98,"episodeFileId":4698,"seasonNumber":2006,"episodeNumber":20,"title":"Killer Cable Snaps","airDate":"2006-10-11","airDateUtc":"2006-10-12T01:00:00Z","overview":"Can a high tension cable slice a person in two when it snaps? Also, Tory and Kari explore the myth of 'archaeo-acoustics' in which ancient pottery contains sounds from the past and can be played back and heard today.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":77,"sceneEpisodeNumber":20,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7070},{"seriesId":98,"episodeFileId":4704,"seasonNumber":2006,"episodeNumber":21,"title":"Air Cylinder Rocket","airDate":"2006-10-18","airDateUtc":"2006-10-19T01:00:00Z","overview":"Put simply, this episode is vintage, explosive MythBusters. Adam and Jamie have unfinished business from their Shark Week special, where they shot and then exploded a scuba tank. But they've always wondered if a ruptured cylinder \u2014 carefully aimed \u2014 can really cause the massive damage some people claim. Meanwhile, Tori, Grant and Kari go back in time to test some prototypes from the past. They all sound highly dangerous, and they probably are ... After all, they're tinkering with engines fueled by gunpowder!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":78,"sceneEpisodeNumber":21,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7071},{"seriesId":98,"episodeFileId":4709,"seasonNumber":2006,"episodeNumber":22,"title":"More Myths Revisited","airDate":"2006-10-25","airDateUtc":"2006-10-26T01:00:00Z","overview":"Returning to the most controversial myths. More past experiments to see if their original answer was genuine or bogus. So Stop Writing Us!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":79,"sceneEpisodeNumber":22,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7072},{"seriesId":98,"episodeFileId":4715,"seasonNumber":2006,"episodeNumber":23,"title":"Exploding Lighter","airDate":"2006-11-01","airDateUtc":"2006-11-02T02:00:00Z","overview":"Can a small, disposable butane lighter suddenly ignite with the force of several sticks of dynamite? The Gang tries to light a lighter on fire by hitting it with a golf club and trying to light it with sparks from a torch like tool. And the gang tries to shoot down some popular gunslinger myths. By seeing if it is possible if you can shoot off 5 shots from a magnum before a coin can hit the ground.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":80,"sceneEpisodeNumber":23,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7073},{"seriesId":98,"episodeFileId":4717,"seasonNumber":2006,"episodeNumber":24,"title":"Concrete Glider","airDate":"2006-11-08","airDateUtc":"2006-11-09T02:00:00Z","overview":"In \"Concrete Glider,\" Adam and Jamie test the old engineering challenge that like a lead balloon, you can't make a concrete glider fly. There's nothing like a challenge to focus the MythBusters' massive minds! Who will fly into history as champ and who will plummet like a stone? Tune in to find out. In the meantime, Kari, Grant and Tori go to amazing lengths to find out just how dangerous it is to stand too close to the edge of a train platform.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":81,"sceneEpisodeNumber":24,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7074},{"seriesId":98,"episodeFileId":4722,"seasonNumber":2006,"episodeNumber":25,"title":"Firearms Folklore","airDate":"2006-11-29","airDateUtc":"2006-11-30T02:00:00Z","overview":"Just when you think Adam and Jamie have tested every gun legend in history, they come up with three more myths. In an urban shootout, could a criminal's bullet have hit and then jammed the empty chamber of a policeman's revolver? Saving Private Ryan might have been based on fact but what about the scene where one sniper kills another by shooting straight down the enemy's gun scope? And assuming two antique bullets once hit midair in a Civil War battle, is it even remotely possible those two bullets fused together? In the meantime, Kari, Grant and Tori go to great lengths to see whether humankind's first and simplest tool \u2014 the hammer \u2014 could be far more dangerous than you think","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":82,"sceneEpisodeNumber":25,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7075},{"seriesId":98,"episodeFileId":4725,"seasonNumber":2006,"episodeNumber":26,"title":"Anti-Gravity Device","airDate":"2006-12-06","airDateUtc":"2006-12-07T02:00:00Z","overview":"Christmas comes once a year but not on MythBusters! Is it really true that leaving some Christmas lights on your tree overnight could cause it to heat up so much that the tree bursts into a ball of flame? Meanwhile, Kari, Grant and Tori investigate a frontier technology that if confirmed would take off in a big way. Anti-gravity is the holy grail of science. But is it science or science fiction? With a flick of a switch can you simply turn off gravity? And if that wasn't enough, in \"Vodka Jellyfish,\" Kari puts her life on the line with a final shot at a vodka myth. Is it true that vodka can cure the pain of a jellyfish sting? There are screams, torture and tentacles! .","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":83,"sceneEpisodeNumber":26,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7076},{"seriesId":98,"episodeFileId":4728,"seasonNumber":2006,"episodeNumber":27,"title":"Holiday Special","airDate":"2006-12-06","airDateUtc":"2006-12-07T02:45:00Z","overview":"Holiday Themed Myths. Can the Mythbusters really make a 35-piece Goldberg machine work, or will they just get frustrated and call it quits? What will keep your tree from dropping needles, bleach or hairspray? Will the turkey kill the dog? Tune-in and see it for yourself.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":84,"sceneEpisodeNumber":27,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7077},{"seriesId":98,"episodeFileId":4729,"seasonNumber":2006,"episodeNumber":28,"title":"22,000 Foot Fall","airDate":"2006-12-13","airDateUtc":"2006-12-14T02:00:00Z","overview":"Adam and Jamie explore the improbable survival of a WWII gunner with some of the biggest explosions in the show's history! Can someone fall 22,000 feet and be saved by a bomb? Also, the Build Team explores light-bulbs and energy usage. Does leaving the light on help?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":85,"sceneEpisodeNumber":28,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":7078},{"seriesId":98,"episodeFileId":4498,"seasonNumber":2007,"episodeNumber":1,"title":"Hindenburg Mystery","airDate":"2007-01-10","airDateUtc":"2007-01-11T02:00:00Z","overview":"In this action-packed episode, Adam and Jamie turn dirigible detectives to try and solve one of aeronautics biggest puzzles: did hydrogen really cause the Hindenburg fire? Meanwhile Kari, Tory and Grant come face-to-face \u2014 and have to flee \u2014 from some of Nature's natural-born killers. See what unfolds as they test the saying: \"If you're being chased by a crocodile, run in a zig-zag, because crocs can't turn corners at speed.\"","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":86,"sceneEpisodeNumber":1,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7079},{"seriesId":98,"episodeFileId":4503,"seasonNumber":2007,"episodeNumber":2,"title":"Pirate Special","airDate":"2007-01-17","airDateUtc":"2007-01-18T02:00:00Z","overview":"2 Hour Special with 4 Pirate Themes Myths. They included whether the eyepatch would help you see in the dark, whether you could use a knife to slide down a sail, whether a canon ball killed more people compared to the splinters, and whether alcohol could be a good cleaner for laundry.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":87,"sceneEpisodeNumber":2,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7080},{"seriesId":98,"episodeFileId":4526,"seasonNumber":2007,"episodeNumber":3,"title":"Underwater Car Escape","airDate":"2007-01-24","airDateUtc":"2007-01-25T02:00:00Z","overview":"If you're unfortunate enough to drive your vehicle into the drink, is it possible to escape or will a watery grave be your fate? Heading poolside, the guys get their feet wet by doing some intensive underwater training. Then the pressure is on as they seat themselves inside a submerged car and do their darndest to get out. Meanwhile Grant, Tory and Kari roll out the Seven Paper Fold myth. Is it possible to fold a piece of paper in half more than seven times? Taking this myth to the outer limits, our crew sets up at a location that has plenty of space \u2014 NASA. Here, in the biggest build they have ever attempted, their mission is to put together a piece of paper that's the size of a football field.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":88,"sceneEpisodeNumber":3,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7081},{"seriesId":98,"episodeFileId":12885,"seasonNumber":2007,"episodeNumber":4,"title":"Speed Cameras","airDate":"2007-03-07","airDateUtc":"2007-03-08T02:00:00Z","overview":"Take two self-confessed speed freaks \u2014 yeah, that would be Adam and Jamie \u2014 and pit them against the people's nemesis: speed cameras. The result: an action-packed adventure full of fun, fascination and, best of all, fast cars. Can speed cameras be beat by speeding faster than they can click? How about using license plate protectors or changing lanes to avoid the camera's eagle eye? Adam and Jamie put the pedal to the metal to crack these myths. Meanwhile in \"Exploding Nitro Patches,\" Kari, Grant and Tory explore the myth that when the paramedic shouts \"Clear!\" and the defibrillator vents, its volts may start more than a heart.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":89,"sceneEpisodeNumber":4,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7082},{"seriesId":98,"episodeFileId":4554,"seasonNumber":2007,"episodeNumber":5,"title":"Dog Myths","airDate":"2007-03-14","airDateUtc":"2007-03-15T01:00:00Z","overview":"Is it possible to teach an Old Dog New Tricks? In attempt to find an answer Adam and Jamie go head to head with a pair of untrained dogs. Meanwhile, Kari, Grant, and Tory look into the myth that you can Beat The Guard Dog.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":90,"sceneEpisodeNumber":5,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7083},{"seriesId":98,"episodeFileId":4569,"seasonNumber":2007,"episodeNumber":6,"title":"More Myths Reopened","airDate":"2007-03-21","airDateUtc":"2007-03-22T01:00:00Z","overview":"Every so often the MythBusters draw conclusions that leave the fans seething. Well, once again, it's time for Adam and Jamie to put some of their most contentious outcomes under the microscope in More Myths Revisited. That's right - tune in and check out a few myths that left you peeved, like Exploding Trombone, Sniper Scope, Finger in the Barrel and Coke and Mentos.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":91,"sceneEpisodeNumber":6,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7084},{"seriesId":98,"episodeFileId":4584,"seasonNumber":2007,"episodeNumber":7,"title":"Voice Flame Extinguisher","airDate":"2007-04-11","airDateUtc":"2007-04-12T01:00:00Z","overview":"It's another hypnotic MythBusters episode, full of sound and fury, and guaranteed to have you spellbound. Grant, Tory and Kari go deeper ... deeper ... deeper into the world of hypnosis, while Adam and Jamie appear to be under some sort of influence as they make extraordinary noise in the name of science. In \"Voice Flame Extinguisher,\" Jamie and Adam set out to discover if it's possible to put out a fire using only your voice. According to the myth, concentrated sound waves can prevent air from getting to the flames and, starved of oxygen, the fire dies. One thing's for sure, the boys' voices aren't gonna set the world on fire!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":92,"sceneEpisodeNumber":7,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7085},{"seriesId":98,"episodeFileId":12886,"seasonNumber":2007,"episodeNumber":8,"title":"Birds in a Truck","airDate":"2007-04-18","airDateUtc":"2007-04-19T01:00:00Z","overview":"In \"Birds in a Truck,\" Adam and Jamie tackle Sir Isaac Newton's founding principle of thermodynamics and the law of conservation of momentum. They're looking into a physics' classroom urban myth. If birds in a truck take flight do they lighten the load? Watch to see if the 'Busters will be outsmarted by a flock of pigeons ... Meanwhile, Grant, Tory and Kari become crime scene investigators. A photo found on the Net shows a speedboat impaled on a channel marker, almost neatly split in half. In an effort to get to the bottom of this watery fender bender, our intrepid CSI team goes on a high-speed joyride.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":93,"sceneEpisodeNumber":8,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7086},{"seriesId":98,"episodeFileId":12718,"seasonNumber":2007,"episodeNumber":9,"title":"Walking On Water","airDate":"2007-04-25","airDateUtc":"2007-04-26T01:00:00Z","overview":"It's \"East Meets West\" in this episode of MythBusters. Shrouded in secrecy and mythology, not to mention cult popularity, ninjas are perfect fodder for the MythBusters. The whole team joins forces to pit science against martial arts mystique. Can ninjas run on water as movies like Crouching Tiger, Hidden Dragon would have us believe? In \"Walking on Water,\" Adam, Jamie and a ninjitsu master try their luck at aquatic agility. And if that doesn't work, the boys get confrontational as they compete to see how ninjas - masters of illusion - could create the impression of water running. In \"Samurai Swing,\" Kari, Tory and Grant find out if a ninja could stop a samurai sword with his bare hands. To avoid the sharp sting of steel the team devises a ninja rig to clap onto the sword, and it seems like this myth is all in the timing.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":94,"sceneEpisodeNumber":9,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7087},{"seriesId":98,"episodeFileId":12732,"seasonNumber":2007,"episodeNumber":10,"title":"Western Myths","airDate":"2007-05-30","airDateUtc":"2007-05-31T01:00:00Z","overview":"Adam and Jamie saddle up for some western myths. But that's not all \u2014 Kari, Tory and Grant test the modern marvel of airbags. You've got it all: past and present; horses and cars; guns and explosions.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":95,"sceneEpisodeNumber":10,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7088},{"seriesId":98,"episodeFileId":4630,"seasonNumber":2007,"episodeNumber":11,"title":"Big Rig Myths","airDate":"2007-06-06","airDateUtc":"2007-06-07T01:00:00Z","overview":"Can an exploding Truck Tire Kill? And Another Fuel efficiency myth, will drafting reduce drag? Is it possible for a car to go inside a truck while it's still in motion?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":96,"sceneEpisodeNumber":11,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7089},{"seriesId":98,"episodeFileId":4637,"seasonNumber":2007,"episodeNumber":12,"title":"Grenades and Guts","airDate":"2007-06-13","airDateUtc":"2007-06-14T01:00:00Z","overview":"Jamie and Adam investigate the clich\u00e9 that a quick thinking action hero can protect his fellow cast members from a grenade blast. Meanwhile, in Diet Coke and Mentos \u2014 Exploding Stomach, our intrepid trio test an internet video with an outrageous claim.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":97,"sceneEpisodeNumber":12,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7090},{"seriesId":98,"episodeFileId":4648,"seasonNumber":2007,"episodeNumber":13,"title":"Snow Special","airDate":"2007-06-20","airDateUtc":"2007-06-21T01:00:00Z","overview":"Let it snow, let it snow, let it snow! It's all about pure powder and the MythBusters team is ready to tear up those classic movie myths on everything snow.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":98,"sceneEpisodeNumber":13,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7091},{"seriesId":98,"episodeFileId":4651,"seasonNumber":2007,"episodeNumber":14,"title":"Baseball Myths","airDate":"2007-08-08","airDateUtc":"2007-08-09T01:00:00Z","overview":"Can a baseball be hit hard enough to remove the covering? Can dry balls be hit farther than humid ones? Is sliding over the base really faster than running it? Can balls be hit further with a corked bat?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":99,"sceneEpisodeNumber":14,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7092},{"seriesId":98,"episodeFileId":4659,"seasonNumber":2007,"episodeNumber":15,"title":"Viewer Special","airDate":"2007-08-15","airDateUtc":"2007-08-16T01:00:00Z","overview":"Viewers\u2019 favorite myths are put to the test. If you sneeze with your eyes open, will your eyeballs pop out of your head? Can you stop a car by putting it in reverse? Will a tennis ball unlock a car door? Also, Jamie and Adam reunite with Alan Normandy to test whether you can kill someone by loading your rifle with cigarette butts. And finally, a young boy asked the MythBusters to take care of the family station wagon. Retired FBI agent Frank Doyle and friends lend their support\u2026and munitions.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":100,"sceneEpisodeNumber":15,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7093},{"seriesId":98,"episodeFileId":4667,"seasonNumber":2007,"episodeNumber":16,"title":"Red Flag to a Bull","airDate":"2007-08-22","airDateUtc":"2007-08-23T01:00:00Z","overview":"Are bulls really aggravated by the color red? Can ammunition stored in the oven be lethal? Can bullets thrown in a campfire kill you? Do bulls in a china shop act like \"bulls in a china shop?\"","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":101,"sceneEpisodeNumber":16,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7094},{"seriesId":98,"episodeFileId":4672,"seasonNumber":2007,"episodeNumber":17,"title":"Superhero Hour","airDate":"2007-08-29","airDateUtc":"2007-08-30T01:00:00Z","overview":"Can you climb a building with a motorized grappling hook? If you punch someone while wearing a ring, will you make a ring-shaped imprint? Can you change in a phone booth? Can you rig a grappling hook on to a car, shoot it at a steel structure, and use it to swing around a 90 degree corner?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":102,"sceneEpisodeNumber":17,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7095},{"seriesId":98,"episodeFileId":4680,"seasonNumber":2007,"episodeNumber":18,"title":"Myth Evolution!","airDate":"2007-09-05","airDateUtc":"2007-09-06T01:00:00Z","overview":"Can you beat the speed camera? Can a ninja deflect a bullet with their palm? Can a person breathe from a car tire underwater? Will an RFID chip explode in a MRI scanner?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":103,"sceneEpisodeNumber":18,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7096},{"seriesId":98,"episodeFileId":4690,"seasonNumber":2007,"episodeNumber":19,"title":"Trail Blazers","airDate":"2007-10-31","airDateUtc":"2007-11-01T01:00:00Z","overview":"Can you light a trail of gas from the leaking tank of a moving vehicle and have the vehicle explode? Can you outrun a trail of burning gunpowder before it reaches a barrel of gunpowder? Can you be burned by a defibrillator if you are wearing an underwire bra or have a nipple ring?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":104,"sceneEpisodeNumber":19,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7097},{"seriesId":98,"episodeFileId":12717,"seasonNumber":2007,"episodeNumber":20,"title":"Exploding Water Heater","airDate":"2007-11-07","airDateUtc":"2007-11-08T02:00:00Z","overview":"Can a water heater explode like a rocket and shoot through the roof of a house? If a person is being dragged by a horse, can the friction caused by the movement make their jeans catch on fire? Can shrinking jeans while wearing them in a hot bath for six hours kill you?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":105,"sceneEpisodeNumber":20,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7098},{"seriesId":98,"episodeFileId":4699,"seasonNumber":2007,"episodeNumber":21,"title":"Super Sized Myths!","airDate":"2007-11-14","airDateUtc":"2007-11-15T02:00:00Z","overview":"A 2 Hour Special where Adam and Jamie return to the JATO rocket car to try and make if fly, find out whether great white sharks are attracted to low frequencies and afraid of dolphins. Meanwhile, Tori, Grant, and Kari use a real 747 to try and blow a car, bus, and single-engine plane off the road. Also Tori tries to wakeboard behind a cruise ship, the biggest episode to date!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":106,"sceneEpisodeNumber":21,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7099},{"seriesId":98,"episodeFileId":4708,"seasonNumber":2007,"episodeNumber":22,"title":"Shooting Fish in a Barrel","airDate":"2007-11-21","airDateUtc":"2007-11-22T02:00:00Z","overview":"Is shooting fish in a barrel really as easy as the proverb says? What is the most effective cure for pain caused by hot chili peppers? Are elephants really afraid of mice?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":107,"sceneEpisodeNumber":22,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7100},{"seriesId":98,"episodeFileId":4714,"seasonNumber":2007,"episodeNumber":23,"title":"Pirates 2","airDate":"2007-11-28","airDateUtc":"2007-11-29T02:00:00Z","overview":"In this piratical sequel, the MythBusters once again plunder and pillage for maritime myth, testing two Pirates of the Caribbean movie-inspired myths and the curse of a Sand Neck Tie.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":108,"sceneEpisodeNumber":23,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7101},{"seriesId":98,"episodeFileId":4718,"seasonNumber":2007,"episodeNumber":24,"title":"Confederate Steam Gun","airDate":"2007-12-05","airDateUtc":"2007-12-06T02:00:00Z","overview":"Jamie and Adam take on a mythical confederate weapon: a steam-powered machine gun rumored to fire 400 rounds a minute at a 300-yard range. Meanwhile, Kari, Grant, and Tory put their lying skills on the line to test mythical ways to beat a lie detector.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":109,"sceneEpisodeNumber":24,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7102},{"seriesId":98,"episodeFileId":4723,"seasonNumber":2007,"episodeNumber":25,"title":"Air Plane Hour","airDate":"2007-12-12","airDateUtc":"2007-12-13T02:00:00Z","overview":"Can an average joe land a 747 plane with no training and experience?\r\n\r\nCan a plane take off on a conveyer belt moving in the opposite direction?\r\n\r\nAnd lots of Skydiving Myths!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":110,"sceneEpisodeNumber":25,"sceneSeasonNumber":5,"unverifiedSceneNumbering":false,"id":7103},{"seriesId":98,"episodeFileId":4497,"seasonNumber":2008,"episodeNumber":1,"title":"James Bond Special: Part 1","airDate":"2008-01-16","airDateUtc":"2008-01-17T02:00:00Z","overview":"There's so many myths on James Bond, it's 2 episodes long! Tonight its part 1 of James Bond Myths! In the 6th Season Premiere!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":111,"sceneEpisodeNumber":1,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7104},{"seriesId":98,"episodeFileId":4513,"seasonNumber":2008,"episodeNumber":2,"title":"Lead Balloon","airDate":"2008-01-23","airDateUtc":"2008-01-24T02:00:00Z","overview":"The MythBusters decide to sink a lead balloon in order to put that proverbial saying to the test. They also look into whether or not dynamite can be used to help create the right conditions for surfing.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":112,"sceneEpisodeNumber":2,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7105},{"seriesId":98,"episodeFileId":4525,"seasonNumber":2008,"episodeNumber":3,"title":"Airplane on a Conveyor Belt","airDate":"2008-01-30","airDateUtc":"2008-01-31T02:00:00Z","overview":"Can cockroaches survive a nuclear war? It has long been claimed, but Adam and Jamie decide to finally see whether or not this common claim is true. Later, they see whether or not an airplane could get the speed to take off by rolling on a conveyor belt. Finally, they test whether or not cans of shaving cream can explode if a common prank goes awry.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":113,"sceneEpisodeNumber":3,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7106},{"seriesId":98,"episodeFileId":4541,"seasonNumber":2008,"episodeNumber":4,"title":"James Bond Special: Part 2","airDate":"2008-02-06","airDateUtc":"2008-02-07T02:00:00Z","overview":"More James Bond Myths Put to the test.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":114,"sceneEpisodeNumber":4,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7107},{"seriesId":98,"episodeFileId":4553,"seasonNumber":2008,"episodeNumber":5,"title":"Viewers Special 2","airDate":"2008-02-13","airDateUtc":"2008-02-14T02:00:00Z","overview":"Its finally here, Part 2 of your Viewer Suggested Myths!\r\nCan you slide down a steel cable with your jeans?\r\nDoes eye black help athletes see?\r\nCan a spark follow a trail of gunpowder leaking from a barrel, catch up with it, and explode?\r\nCan you cut down a tree with a machine gun?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":115,"sceneEpisodeNumber":5,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7108},{"seriesId":98,"episodeFileId":4563,"seasonNumber":2008,"episodeNumber":6,"title":"MacGyver Myths","airDate":"2008-02-20","airDateUtc":"2008-02-21T02:00:00Z","overview":"MacGyver has always been able to get out of sticky situations using the most unorthodox objects. In this episode, our very own quick thinking heroes put some of the most well known MacGyver strategies to the test.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":116,"sceneEpisodeNumber":6,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7109},{"seriesId":98,"episodeFileId":4577,"seasonNumber":2008,"episodeNumber":7,"title":"Alaska Special","airDate":"2008-04-23","airDateUtc":"2008-04-24T01:00:00Z","overview":"Adam and Jamie head to Alaska for some Bone Chilling Alaskan Style Myths!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":117,"sceneEpisodeNumber":7,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7110},{"seriesId":98,"episodeFileId":4481,"seasonNumber":0,"episodeNumber":1,"title":"MythBusters Young Scientists Special","airDate":"2008-04-26","airDateUtc":"2008-04-27T01:00:00Z","overview":"A Science Channel Special:\r\nFour finalists head to San Francisco to conduct experiments with the cast of ``MythBusters.''","hasFile":true,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6971},{"seriesId":98,"episodeFileId":4587,"seasonNumber":2008,"episodeNumber":8,"title":"Shark Week 2008","airDate":"2008-07-27","airDateUtc":"2008-07-28T01:00:00Z","overview":"Can sharks detect a struggling fish? Do dogs attract sharks? Does chili powder repel sharks? If you play dead in the middle of a bunch of sharks, will they leave you alone? Do Spots of light attract Sharks? Could you find a shark's eye when it's splashing you around in his mouth? Mythbusters Shark Week Special 2008.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":118,"sceneEpisodeNumber":8,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7111},{"seriesId":98,"episodeFileId":4602,"seasonNumber":2008,"episodeNumber":9,"title":"Exploding Steak","airDate":"2008-08-06","airDateUtc":"2008-08-07T01:00:00Z","overview":"The seventh season opens with fan requested myths, including whether steak can be tenderized with explosives and if driving while angry changes fuel consumption.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":119,"sceneEpisodeNumber":9,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7112},{"seriesId":98,"episodeFileId":4620,"seasonNumber":2008,"episodeNumber":10,"title":"NASA Moon Landing","airDate":"2008-08-27","airDateUtc":"2008-08-28T01:00:00Z","overview":"The Marshall Space Flight Center hosted the Mythbusters television show. The Mythbusters chose Marshall as one of several NASA locations for an episode to debunk the notion that NASA never landed on the moon. The cast conducted tests involving a feather, a weight, a lunar soil boot print, and a flag in a vacuum. A team of Marshall scientists helped with the tests.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":120,"sceneEpisodeNumber":10,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7113},{"seriesId":98,"episodeFileId":4629,"seasonNumber":2008,"episodeNumber":11,"title":"Viral Hour","airDate":"2008-09-03","airDateUtc":"2008-09-04T01:00:00Z","overview":"On this infectious episode of Mythbusters, we give internet 'viral videos' a timely check-up. They're exciting, funny, and sometimes barely credible. We can't wait to pass them on to our ten best friends, but can we truly believe everything we see?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":121,"sceneEpisodeNumber":11,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7114},{"seriesId":98,"episodeFileId":4639,"seasonNumber":2008,"episodeNumber":12,"title":"Phone Book Friction","airDate":"2008-09-10","airDateUtc":"2008-09-11T01:00:00Z","overview":"Adam and Jamie use a fan mail film to dial in on a phone book fable. Kari, Grant and Tory test a fishy tale of Hollywood pyrotechnics with their own big bang theories.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":122,"sceneEpisodeNumber":12,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7115},{"seriesId":98,"episodeFileId":4649,"seasonNumber":2008,"episodeNumber":13,"title":"Water Stun Gun","airDate":"2008-09-17","airDateUtc":"2008-09-18T01:00:00Z","overview":"On this episode of Mythbusters, Adam and Jamie investigate a secret agent myth - that you can turn a conventional electric stun gun into a water-powered electric stun gun.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":123,"sceneEpisodeNumber":13,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7116},{"seriesId":98,"episodeFileId":4650,"seasonNumber":2008,"episodeNumber":14,"title":"Blind Driving","airDate":"2008-10-08","airDateUtc":"2008-10-09T01:00:00Z","overview":"On this episode of Mythbusters, there are 'fore' myths at which to swing and miss. And the four myths couldn't be more different.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":124,"sceneEpisodeNumber":14,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7117},{"seriesId":98,"episodeFileId":4657,"seasonNumber":2008,"episodeNumber":15,"title":"Ninjas 2","airDate":"2008-10-15","airDateUtc":"2008-10-16T01:00:00Z","overview":"Ninjas and Mythbusters go together like matches and gunpowder: a marriage made in heaven. Ninjas are steeped in mythology that they've been only too happy to circulate. It's time to separate fact from fiction in the Mythbusters Ninja special 2.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":125,"sceneEpisodeNumber":15,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7118},{"seriesId":98,"episodeFileId":4670,"seasonNumber":2008,"episodeNumber":16,"title":"Alcohol Myths","airDate":"2008-10-22","airDateUtc":"2008-10-23T01:00:00Z","overview":"On this episode of Mythbusters, Jamie, Adam and Kari apply some science to the theory that the more you drink, the more attractive you find the opposite sex.\r\n\r\nDoes drinking alcohol make people look more attractive?\r\nDo alleged ways of sobering up really work?\r\nCould the ancient Korean Hwacha actually do what is claimed?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":126,"sceneEpisodeNumber":16,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7119},{"seriesId":98,"episodeFileId":4673,"seasonNumber":2008,"episodeNumber":17,"title":"Motorcycle Flip","airDate":"2008-10-29","airDateUtc":"2008-10-30T01:00:00Z","overview":"On this spectacular episode of Mythbusters Adam and Jamie raid the Ark-hives for an Indiana Jones movie myth... and Kari, Grant and Tory are breaking bad to test tall tales of breaking out of prison.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":127,"sceneEpisodeNumber":17,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7120},{"seriesId":98,"episodeFileId":4683,"seasonNumber":2008,"episodeNumber":18,"title":"Coffin Punch","airDate":"2008-11-05","airDateUtc":"2008-11-06T02:00:00Z","overview":"On this death-defying episode of MYTHBUSTERS, the whole team gets together to test myths about survival. Adam and Jamie return to one of the fans' favorite subjects -- what is bullet-proof?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":128,"sceneEpisodeNumber":18,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7121},{"seriesId":98,"episodeFileId":4691,"seasonNumber":2008,"episodeNumber":19,"title":"End With A Bang","airDate":"2008-11-12","airDateUtc":"2008-11-13T02:00:00Z","overview":"In this Idiom Special episode, the team joins forces to put sayings we all take for granted under the MYTHBUSTERS microscope, including: \"You can\u2019t polish poop\", \"Hit the Ground Running\" and \"Better to End with a Bang!\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"sceneAbsoluteEpisodeNumber":129,"sceneEpisodeNumber":19,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7122},{"seriesId":98,"episodeFileId":4697,"seasonNumber":2008,"episodeNumber":20,"title":"Viewer Special Threequel","airDate":"2008-11-19","airDateUtc":"2008-11-20T02:00:00Z","overview":"Could a torture technique consisting of growing a bamboo through a victim's body have worked?\r\nDoes dropping alkali metals in a water-filled bathtub result in a huge explosion?\r\nDoes brandy, such as carried by Saint Bernards, really prevent hypothermia?\r\nDoes lighting a piano on fire make it explode?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":130,"sceneEpisodeNumber":20,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":7123},{"seriesId":98,"episodeFileId":4482,"seasonNumber":0,"episodeNumber":2,"title":"Common Car Myths Special","airDate":"2008-11-20","airDateUtc":"2008-11-21T02:00:00Z","overview":"Adam and Jamie fuel up a couple of SUVs to find out which is more efficient driving with the windows open or the air conditioner on. Next Kari, Tori & Grant try to find the smooth driving on rough roads. Then, can you stop a car by throwing it into reverse? Meanwhile, Adam and Jamie try to sort out several car related myths including using a car as cover in a gunfight and get their hands on their very own Mythbusters Cadillac. Finally, the team tackles the question, what is more dangerous, driving drunk or driving while talking on a cell phone.","hasFile":true,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6972},{"seriesId":98,"episodeFileId":4490,"seasonNumber":2009,"episodeNumber":1,"title":"Demolition Derby Special","airDate":"2009-04-08","airDateUtc":"2009-04-09T01:00:00Z","overview":"2 Hour Season Premiere!\r\n\r\nFlipping a Bus (Based on the Movie \"Speed\")\r\n\r\nFan Revisit!: The Car Pancaked Between 2 Trucks!\r\n\r\nHollywood Crash Tests into a Fruit Cart!\r\n\r\nAnd Can a Car survive a 4,000 Foot Drop?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":131,"sceneEpisodeNumber":1,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7124},{"seriesId":98,"episodeFileId":4511,"seasonNumber":2009,"episodeNumber":2,"title":"Alaska Special 2","airDate":"2009-04-15","airDateUtc":"2009-04-16T01:00:00Z","overview":"The Team heads back to Alaska for more Alaskan Themed Myths!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":132,"sceneEpisodeNumber":2,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7125},{"seriesId":98,"episodeFileId":4521,"seasonNumber":2009,"episodeNumber":3,"title":"Banana Slip, Double Dip","airDate":"2009-04-22","airDateUtc":"2009-04-23T01:00:00Z","overview":"Don't even think about Double Dipping that Chip!\r\n\r\nA Real Bannana Peel Slip n Slide?\r\n\r\nMake your own Diamonds out of Food?\r\n\r\nand other food based myths. The Biggest Boom in Show History? You be the judge!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":133,"sceneEpisodeNumber":3,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7126},{"seriesId":98,"episodeFileId":4539,"seasonNumber":2009,"episodeNumber":4,"title":"YouTube Special!","airDate":"2009-04-29","airDateUtc":"2009-04-30T01:00:00Z","overview":"Can you create a 7 foot tall LEGO \"Ball\" and roll it down a hill? And Other YouTube Made Myths!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":134,"sceneEpisodeNumber":4,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7127},{"seriesId":98,"episodeFileId":4548,"seasonNumber":2009,"episodeNumber":5,"title":"Swimming in Syrup","airDate":"2009-05-06","airDateUtc":"2009-05-07T01:00:00Z","overview":"MacGyver's Magic Bullets\r\n\r\nCan you shoot two targets with one shot by splitting a bullet on an axe blade?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":135,"sceneEpisodeNumber":5,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7128},{"seriesId":98,"episodeFileId":4566,"seasonNumber":2009,"episodeNumber":6,"title":"Exploding Bumper","airDate":"2009-05-13","airDateUtc":"2009-05-14T01:00:00Z","overview":"On this high-velocity episode of Mythbusters, we test two highly contentious legends that span 500 years of locomotion- from the reliable horse to the sometimes-unreliable motorcar.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":136,"sceneEpisodeNumber":6,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7129},{"seriesId":98,"episodeFileId":4581,"seasonNumber":2009,"episodeNumber":7,"title":"Seesaw Saga","airDate":"2009-05-20","airDateUtc":"2009-05-21T01:00:00Z","overview":"On this high-flying episode of MythBusters, the whole team tackles one massive and improbable myth from the fan site: could a skydiver whose parachute failed to open hit a playground see-saw and send a small girl flying seven stories high?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":137,"sceneEpisodeNumber":7,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7130},{"seriesId":98,"episodeFileId":4592,"seasonNumber":2009,"episodeNumber":8,"title":"Thermite vs. Ice","airDate":"2009-05-27","airDateUtc":"2009-05-28T01:00:00Z","overview":"So if you poured thermite onto ice, would the ice would melt in an instant? Can car stereo vibrations be so loud that nearby guns will start shooting off randomly?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":138,"sceneEpisodeNumber":8,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7131},{"seriesId":98,"episodeFileId":4601,"seasonNumber":2009,"episodeNumber":9,"title":"Prison Escape","airDate":"2009-06-03","airDateUtc":"2009-06-04T01:00:00Z","overview":"Adam and Jamie see if it's possible to cling to the roof of a speeding and swerving car like it's done in action movies.\r\n\r\nKari, Tory and Grant try to break out of jail by cutting their way through steel cell bars -- using only dental floss.\r\n\r\nDid an 18th century prisoner once put his ball and chain -- shackled to his ankle -- in the prison cannon and fire himself over the prison wall to freedom. Is it possible?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":139,"sceneEpisodeNumber":9,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7132},{"seriesId":98,"episodeFileId":4613,"seasonNumber":2009,"episodeNumber":10,"title":"Curving Bullets","airDate":"2009-06-10","airDateUtc":"2009-06-11T01:00:00Z","overview":"Adam and Jamie get the Blue Angels to find out if a sonic shock wave can shatter glass. Tory, Grant and Kari take on this season's most requested myth: Can you really bend bullets around obstacles with a side arm flick, as it was done in the movie 'Wanted?'","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":140,"sceneEpisodeNumber":10,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7133},{"seriesId":98,"episodeFileId":4624,"seasonNumber":2009,"episodeNumber":11,"title":"Car vs. Rain","airDate":"2009-06-17","airDateUtc":"2009-06-18T01:00:00Z","overview":"Can flooring it in a rainstorm keep your convertible dry? Can popcorn be cooked by an explosion, and does its popping have enough force to destroy a building?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":141,"sceneEpisodeNumber":11,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7134},{"seriesId":98,"episodeFileId":4636,"seasonNumber":2009,"episodeNumber":12,"title":"Knock Your Socks Off","airDate":"2009-10-07","airDateUtc":"2009-10-08T01:00:00Z","overview":"If one bullet is fired and the other is dropped simultaneously from the same height, which will hit the ground first? Or will they hit at the same time, owing to gravity? Meanwhile, Kari, Grant and Tory test an old saying: can you really knock someone out of their socks? In true MYTHBUSTERS fashion, their tests involve Buster, a boxing ring, a nitrogen cannon, a battering ram and, of course, explosives.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":142,"sceneEpisodeNumber":12,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7135},{"seriesId":98,"episodeFileId":4643,"seasonNumber":2009,"episodeNumber":13,"title":"Duct Tape Hour","airDate":"2009-10-14","airDateUtc":"2009-10-15T01:00:00Z","overview":"Adam and Jamie see if it's possible to lift a car using nothing but duct tape, they then attempt to build a working sail-boat out of it. Meanwhile, Kari, Grant and Tori see if the tape can be used to build a working cannon.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":143,"sceneEpisodeNumber":13,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7136},{"seriesId":98,"episodeFileId":4653,"seasonNumber":2009,"episodeNumber":14,"title":"Dirty vs. Clean Car","airDate":"2009-10-21","airDateUtc":"2009-10-22T01:00:00Z","overview":"Adam and Jamie get down and dirty with the myth that a muddy motorcar gets better gas mileage than its clean cousin. Meanwhile Kari, Grant and Tory are hitting the sauce and comparing hangovers to test an age old adage about beer and liquor.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":144,"sceneEpisodeNumber":14,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7137},{"seriesId":98,"episodeFileId":4660,"seasonNumber":2009,"episodeNumber":15,"title":"Greased Lightning","airDate":"2009-10-28","airDateUtc":"2009-10-29T01:00:00Z","overview":"Adam and Jamie stroll into hell's kitchen to investigate a pair of frightening potential kitchen catastrophes. Meanwhile, Kari, Grant and Tory find out whether microwaving C4 will make it explode - plus a well-aged myth which maybe right on the nose: using cheese as cannon ammo.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":145,"sceneEpisodeNumber":15,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7138},{"seriesId":98,"episodeFileId":4668,"seasonNumber":2009,"episodeNumber":16,"title":"Hurricane Windows","airDate":"2009-11-04","airDateUtc":"2009-11-05T02:00:00Z","overview":"On this cold and blustery episode, Adam and Jamie bet the house on a highly contentious hurricane survival tale in \"Hurricane Windows\" open or closed? Meanwhile, Kari, Grant, and Tory tackle two frigid fables involving liquid nitrogen.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":146,"sceneEpisodeNumber":16,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7139},{"seriesId":98,"episodeFileId":4676,"seasonNumber":2009,"episodeNumber":17,"title":"Crash and Burn","airDate":"2009-11-11","airDateUtc":"2009-11-12T02:00:00Z","overview":"Adam and Jamie test whether an out-of-control car really crashes and burns every time; Kari, Tory and Grant test a story about the world's first rocketeer.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":147,"sceneEpisodeNumber":17,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7140},{"seriesId":98,"episodeFileId":4678,"seasonNumber":2009,"episodeNumber":18,"title":"Myth Evolution 2","airDate":"2009-11-18","airDateUtc":"2009-11-19T02:00:00Z","overview":"On this episode of MythBusters, it's an evolution revolution as the team takes five fan favorites and focuses on a fascinating new facet for each.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":148,"sceneEpisodeNumber":18,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7141},{"seriesId":98,"episodeFileId":4689,"seasonNumber":2009,"episodeNumber":19,"title":"Dumpster Diving","airDate":"2009-11-25","airDateUtc":"2009-11-26T02:00:00Z","overview":"The team plumbs the depths and hits great heights with a double diving extravaganza.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":149,"sceneEpisodeNumber":19,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7142},{"seriesId":98,"episodeFileId":4692,"seasonNumber":2009,"episodeNumber":20,"title":"Antacid Jail Break","airDate":"2009-12-02","airDateUtc":"2009-12-03T02:00:00Z","overview":"The team tests two dangerous tales from the wrong side of the tracks.\r\nCan antacid tablets be used to blow a prison cell open?\r\nCan a person drive safely on a moonless night without using his headlights?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":150,"sceneEpisodeNumber":20,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7143},{"seriesId":98,"episodeFileId":4702,"seasonNumber":2009,"episodeNumber":21,"title":"Unarmed and Unharmed","airDate":"2009-12-09","airDateUtc":"2009-12-10T02:00:00Z","overview":"On this episode of MythBusters Adam and Jamie return to the Old Wild West for a quick draw gun-slinging story, while Grant, Tory and Jessi hop on board the Mythbus for another manic myth from the movie Speed. Hang onto your ten-gallon hats!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":151,"sceneEpisodeNumber":21,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7144},{"seriesId":98,"episodeFileId":4710,"seasonNumber":2009,"episodeNumber":22,"title":"Hidden Nasties","airDate":"2009-12-16","airDateUtc":"2009-12-17T02:00:00Z","overview":"Jamie and Adam take on rat-pee contaminated cans as well as everyday items dirtier than your toilet, while Tory, Grant and Jessi take on the Cannonball Run.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":152,"sceneEpisodeNumber":22,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7145},{"seriesId":98,"episodeFileId":4713,"seasonNumber":2009,"episodeNumber":23,"title":"Mini Myth Mayhem","airDate":"2009-12-28","airDateUtc":"2009-12-29T02:00:00Z","overview":"Six fan-requested myths are put to the test. Can Adam and Jamie send a coconut with an engraved address through the mail and is it possible to light a match with a bullet? Four other myths will also be tested.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":153,"sceneEpisodeNumber":23,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7146},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":1,"title":"Boomerang Bullet","airDate":"2010-01-04","airDateUtc":"2010-01-05T02:00:00Z","overview":"Can ricochets of a bullet fired by you kill you in a closed space? And a Monty Python myth with a bouncing castle.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":154,"sceneEpisodeNumber":24,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":7147},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":2,"title":"Soda Cup Killer","airDate":"2010-03-24","airDateUtc":"2010-03-25T01:00:00Z","overview":"This episode of MYTHBUSTERS mixes a killer cocktail of lethal littering and high-flying action movie action. In cup vs. car, Adam and Jamie tackle a tall tale of trash and crash. Can a Styrofoam cup of soda, thrown from a car at highway speeds, penetrate the windshield of an oncoming car and seriously injure the unfortunate driver? It sounds far-fetched, but Adam and Jamie discover how much damage a drink can really do. Tory, Grant and Jessi find out if film \u2018fall guys\u2019 can really hang on to the side of a building, Hollywood-style. Just about every action movie has a variation on the death-defying cling, but is it actually viable? The team tests their limits using their wits and a fake chopper.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":155,"sceneEpisodeNumber":1,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7148},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":3,"title":"Dive to Survive","airDate":"2010-03-31","airDateUtc":"2010-04-01T01:00:00Z","overview":"More Hollywood hi-jinks are explored in this episode of MythBusters. First up, Adam and Jamie plunge head first into a climactic cinema clich\u00e9: to survive a blast by the bad guys, the good guys dive underwater and resurface unscathed. Can a deep dive really save you from imminent annihilation? Kari Byron returns from maternity leave with a vengeance when she, Grant and Tory call for directory assistance. According to on-screen espionage scenarios, lining the inside of a car\u2019s doors with a layer of phonebooks will bulletproof the car. But can you believe everything you see?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":156,"sceneEpisodeNumber":2,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7149},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":4,"title":"Spy Car Escape","airDate":"2010-04-07","airDateUtc":"2010-04-08T01:00:00Z","overview":"On this episode of MythBusters, it's spy vs. spy as Adam and Jamie investigate the best way to lose a tail in a car chase. These intrepid investigators test three of the all-time movie classics: tacks, smoke, and oil all launched from the trunk of a moving car. Jamie and Adam not only design and install the weapon systems, they take turns as 'pursued' and 'pursuer.' In a fascinating physics 'thought experiment,' Kari, Grant and Tory explore whether an object fired backwards from a vehicle moving forwards assuming both speeds are exactly the same will simply fall straight to the ground. Common sense says it should, but science is not as straightforward.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":157,"sceneEpisodeNumber":3,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7150},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":5,"title":"Bottle Bash","airDate":"2010-04-14","airDateUtc":"2010-04-15T01:00:00Z","overview":"Adam and Jamie get feisty with a bar fight fable while Kari, Grant and Tory investigate a ballistic material mystery from history. Forensic scientists have supposedly discovered that you'd be worse off having an empty beer bottle smashed over your head as opposed to a full one. Sounds counter intuitive, no? To get to the bottom of the bottle mystery, Adam and Jamie begin the brawl by bashing Buster, a pig, Mr. Jell-O Head and something they dreamed up called Meat Head. Meanwhile, Kari, Grant and Tory challenge the concept of a leather cannon. According to historical documents, ancient Swedish and Irish armies used animal hides to build their cannons. There is no written record of how successful these leather cannons really were, so the testing was rather explosive.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":158,"sceneEpisodeNumber":4,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7151},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":6,"title":"No Pain No Gain, Propane Tank Rocket","airDate":"2010-04-28","airDateUtc":"2010-04-29T01:00:00Z","overview":"On this episode of MythBusters, Adam and Jamie both become \"lab rats\" for science. In \"No Pain, No Gain\", they test a myth that touches us all: are some types of people really more tolerant to pain?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":159,"sceneEpisodeNumber":5,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7152},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":7,"title":"Mythssion Control","airDate":"2010-05-05","airDateUtc":"2010-05-06T01:00:00Z","overview":"On this Episode of MythBusters the fans take command in Mythssion Control. First up it's Hyneman vs Newton. Then - Kari, Grant and Tory are back in the school of hard knocks, as they retest knock your socks off.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":160,"sceneEpisodeNumber":6,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7153},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":8,"title":"Duct Tape Hour 2","airDate":"2010-05-12","airDateUtc":"2010-05-13T01:00:00Z","overview":"In this second Duct Tape stick-tacular, Adam and Jamie set up a challenge that will take the tape's strength, adhesion and load-bearing capability to the absolute limit. Meanwhile Kari, Grant and Tory are all wrapped up busting duct tape automotive myths.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":161,"sceneEpisodeNumber":7,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7154},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":9,"title":"Waterslide Wipeout","airDate":"2010-05-19","airDateUtc":"2010-05-20T01:00:00Z","overview":"On this wet and wild episode, Adam and Jamie tackle the biggest, dirtiest, most vertigo inducing build in MythBusters history while Kari, Tory and Grant deliver the goods, to find out if taking only right turns can save you gas.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":162,"sceneEpisodeNumber":8,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7155},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":10,"title":"Fireball Stun Gun","airDate":"2010-06-02","airDateUtc":"2010-06-03T01:00:00Z","overview":"Jamie and Adam investigate if pepper spray plus a stun gun can cause a fireball. Also the team attempt to discover if a man launched himself 150 feet with fireworks?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":163,"sceneEpisodeNumber":9,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7156},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":11,"title":"Flu Fiction","airDate":"2010-06-09","airDateUtc":"2010-06-10T01:00:00Z","overview":"Jamie, Adam, Kari, Grant and Tory take on snot, sneezes and decapitation by tornado.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":164,"sceneEpisodeNumber":10,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7157},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Top 25 Best Busted Myths","airDate":"2010-06-16","airDateUtc":"2010-06-17T01:00:00Z","overview":"On this clip show episode of MythBusters, Adam, Jamie, Kari, Tory and Grant get all nostalgic with a look back at their top 25 most celebrated MythBusters moments.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6981},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Car Conundrum","airDate":"2010-06-23","airDateUtc":"2010-06-24T01:00:00Z","overview":"MythBusters is back with a re-conditioned, re-mastered episode featuring three of our most popular car conundrum myths of all time!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6982},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Buster's Cut: Alcohol Myths","airDate":"2010-06-30","airDateUtc":"2010-07-01T01:00:00Z","overview":"Myths about alcohol are challenged in this special \"Buster's Cut\" edition, we'll see if \"beer goggles\" are real, test some sobering up myths, and rebuild an ancient war machine, the Hwacha.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6983},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Buster's Cut: Duct Tape Hour 2","airDate":"2010-07-07","airDateUtc":"2010-07-08T01:00:00Z","overview":"On this \"Buster's Cut\" the team will build a giant duct tape bridge and pit car against duct tape with surprising results.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6984},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Buster's Cut: Knock Your Socks Off","airDate":"2010-07-14","airDateUtc":"2010-07-15T01:00:00Z","overview":"This \"Buster's Cut\" will literally knock your socks off and test an age-old physics theory for the first time in history.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6985},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Buster's Cut: Viewer Special Threequel","airDate":"2010-07-21","airDateUtc":"2010-07-22T01:00:00Z","overview":"From bamboo torture to exploding bathtubs, the team puts viewer suggestions to the test on this \"Buster's Cut\" edition of the show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6986},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Buster's Cut: Bottle Bash","airDate":"2010-07-28","airDateUtc":"2010-07-29T01:00:00Z","overview":"A Bar fight story is put to the test; a historical mystery involving ballistic material is probed.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6987},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Buster's Cut: Unarmed and Unharmed","airDate":"2010-10-06","airDateUtc":"2010-10-07T01:00:00Z","overview":"Previously aired episode Re-edited and remastered with behind the scenes tidbits:\r\nAdam and Jamie test an old gun-slinging story; Grant, Tory and Jessi test another myth from the movie ``Speed.''","hasFile":false,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6973},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":12,"title":"Hair of the Dog","airDate":"2010-10-06","airDateUtc":"2010-10-07T01:00:00Z","overview":"The gang test two shaggy-dog tales that both put our crime-fighting canines to the ultimate test.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":165,"sceneEpisodeNumber":11,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7158},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Buster's Cut: Phone Book Friction","airDate":"2010-10-13","airDateUtc":"2010-10-14T01:00:00Z","overview":"Previously aired episode Re-edited and remastered with behind the scenes tidbits:\r\nNever before seen footage and learn insider info from the set as Adam and Jamie dial in on a phone book fable, while Kari, Grant and Tory test a fishy tale of Hollywood pyrotechnics.","hasFile":false,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6974},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":13,"title":"Storm Chasing Myths","airDate":"2010-10-13","airDateUtc":"2010-10-14T01:00:00Z","overview":"This special episode of MythBusters is quite literally a perfect storm. That's because Adam and Jamie are putting tornadoes to the test, and joining them for this special episode are none other than The Storm Chasers - Reed Timmer and Sean Casey.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":166,"sceneEpisodeNumber":12,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7159},{"seriesId":98,"episodeFileId":4483,"seasonNumber":0,"episodeNumber":5,"title":"Buster's Cut: Duct Tape Hour 1","airDate":"2010-10-20","airDateUtc":"2010-10-21T01:00:00Z","overview":"Previously aired episode Re-edited and remastered with behind the scenes tidbits: \r\nWatch never before seen footage and learn insider info from the set as Adam and Jamie create a sailboat made entirely from duct tape while Kari, Grant and Tory fire off a few duct tape cannons.","hasFile":true,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6975},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":14,"title":"Cold Feet","airDate":"2010-10-20","airDateUtc":"2010-10-21T01:00:00Z","overview":"If the \u201cpoop hits the fan,\u201d does everyone get covered in the ensuing chaos? When you \u201cget cold feet,\u201d do your feet really get cold?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":167,"sceneEpisodeNumber":13,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7160},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Buster's Cut: Curving Bullets","airDate":"2010-10-27","airDateUtc":"2010-10-28T01:00:00Z","overview":"Myths tested:\r\nThis is an edited rerun of episode 123 (Curving Bullets) originally aired June 10, 2009. It features never before seen footage and behind the scenes info (dubbed \"Buster's Cut\").","hasFile":false,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6976},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":15,"title":"Table Cloth Chaos","airDate":"2010-10-27","airDateUtc":"2010-10-28T01:00:00Z","overview":"Can a motorcycle pull a tablecloth out from under a setting for a banquet?\r\nDo humans really only use 10% of their brain?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":168,"sceneEpisodeNumber":14,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7161},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":16,"title":"Arrow Machine Gun","airDate":"2010-11-03","airDateUtc":"2010-11-04T01:00:00Z","overview":"Did the Greeks create an arrow machine gun that offered the speed, distance and precision that modern machine guns do?\r\nIs driving while tired is as bad as \u2014 or worse than \u2014 driving while tipsy?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":169,"sceneEpisodeNumber":15,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7162},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":17,"title":"Mini Myth Madness","airDate":"2010-11-10","airDateUtc":"2010-11-11T02:00:00Z","overview":"The viewer ideas just keep on coming and in this Request Fest special the team randomly select six bite sized mini myths to test.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":170,"sceneEpisodeNumber":16,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7163},{"seriesId":98,"episodeFileId":4484,"seasonNumber":0,"episodeNumber":7,"title":"Buster's Cut: Spy Car Escape","airDate":"2010-11-14","airDateUtc":"2010-11-15T02:00:00Z","overview":"Previously aired episode Re-edited and remastered with behind the scenes tidbits:\r\nAdam and Jamie experiment with different ways to lose a tail in a car chase, as Kari, Grant and Tory explore whether an object fired backward from a vehicle moving forward will simply will fall to the ground.","hasFile":true,"monitored":false,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":0,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":6977},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":18,"title":"Reverse Engineering","airDate":"2010-11-17","airDateUtc":"2010-11-18T02:00:00Z","overview":"Stay in your lane for this episode of MythBusters, because Jaime and Adam are putting the pedal to the metal - backwards. And if that wasn't enough for you then Kari, Grant and Tory turf some surf-boards... with a little help from an SUV.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":171,"sceneEpisodeNumber":17,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7164},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":19,"title":"Inverted Underwater Car","airDate":"2010-11-24","airDateUtc":"2010-11-25T02:00:00Z","overview":"In a twist on a previous myth, Jamie and Adam test whether you can escape from a car that goes belly-up underwater.\r\n\r\nKari, Grant, and Tory test whether you can keep a gunshot from igniting a gas-filled room by shooting through a carton of milk.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":172,"sceneEpisodeNumber":18,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7165},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":20,"title":"Bug Special","airDate":"2010-12-08","airDateUtc":"2010-12-09T02:00:00Z","overview":"On this episode of MythBusters, it's revenge of the creepy crawlies as the team tests if bees can lift a laptop, if water repels flies, and if hitting a bug while riding a motorcycle can be deadly.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":173,"sceneEpisodeNumber":19,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7166},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":21,"title":"President's Challenge","airDate":"2010-12-08","airDateUtc":"2010-12-09T02:45:00Z","overview":"President Obama challenges the Mythbusters to revisit the Ancient Death Ray myth (Ancient Death Ray) originally aired September 29, 2004.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":174,"sceneEpisodeNumber":20,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7167},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":22,"title":"Green Hornet Special","airDate":"2010-12-15","airDateUtc":"2010-12-16T02:00:00Z","overview":"Seth Rogen, star and writer of the superhero blockbuster 'The Green Hornet,' joins the team for two blockbusting stories.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":175,"sceneEpisodeNumber":21,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7168},{"seriesId":98,"episodeFileId":0,"seasonNumber":2010,"episodeNumber":23,"title":"Operation Valkyrie","airDate":"2010-12-22","airDateUtc":"2010-12-23T02:00:00Z","overview":"Adam and Jamie weigh in on a famous assassination attempt; Kari, Grant and Tory try to determine if one can really can \u201cslap some sense\u201d into someone.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":176,"sceneEpisodeNumber":22,"sceneSeasonNumber":8,"unverifiedSceneNumbering":false,"id":7169},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Demolition Derby: Hollywood Havoc","airDate":"2011-01-05","airDateUtc":"2011-01-06T02:00:00Z","overview":"Car and Movie Myths From Previous Episodes","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17123},{"seriesId":98,"episodeFileId":4495,"seasonNumber":2011,"episodeNumber":1,"title":"Mission Impossible Face Off","airDate":"2011-04-06","airDateUtc":"2011-04-07T01:00:00Z","overview":"Can realistic facial masks be used to bypass security measures as shown in the movie, Mission Impossible?\r\nIs it possible to start a merry-go-round spinning by shooting bullets at it, as depicted in Shoot 'Em Up?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":184,"sceneEpisodeNumber":1,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7177},{"seriesId":98,"episodeFileId":4510,"seasonNumber":2011,"episodeNumber":2,"title":"Blue Ice","airDate":"2011-04-13","airDateUtc":"2011-04-14T01:00:00Z","overview":"Jamie and Adam take on an explosive scene from Bourne Supremacy, while Kari, Grant and Tory test a tale about human waste falling from the sky.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":185,"sceneEpisodeNumber":2,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7178},{"seriesId":98,"episodeFileId":4524,"seasonNumber":2011,"episodeNumber":3,"title":"Running on Water","airDate":"2011-04-20","airDateUtc":"2011-04-21T01:00:00Z","overview":"Adam and Jamie take on a viral video, while Kari, Grant, and Tory explore which common items can be bombproof.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":186,"sceneEpisodeNumber":3,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7179},{"seriesId":98,"episodeFileId":4540,"seasonNumber":2011,"episodeNumber":4,"title":"Bubble Trouble","airDate":"2011-04-27","airDateUtc":"2011-04-28T01:00:00Z","overview":"The MythBusters see whether it's possible to stay afloat in bubbly water, and whether an arrow packed with explosives can split a tree in two.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":187,"sceneEpisodeNumber":4,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7180},{"seriesId":98,"episodeFileId":4555,"seasonNumber":2011,"episodeNumber":5,"title":"Torpedo Tastic","airDate":"2011-05-04","airDateUtc":"2011-05-05T01:00:00Z","overview":"Did the world's first torpedo really strike a boat with a deadly payload at 800 feet? Can corks in wine bottles be turned into projectiles if exposed to enough pressure?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":188,"sceneEpisodeNumber":5,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7181},{"seriesId":98,"episodeFileId":4570,"seasonNumber":2011,"episodeNumber":6,"title":"Blow Your Own Sail","airDate":"2011-05-11","airDateUtc":"2011-05-12T01:00:00Z","overview":"Adam and Jamie put Hollywood sound effects up against reality, and Kari, Grant and Tory find out if you are adrift on a sailboat with no wind, can you propel your boat with a fan?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":189,"sceneEpisodeNumber":6,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7182},{"seriesId":98,"episodeFileId":4576,"seasonNumber":2011,"episodeNumber":7,"title":"Spy Car 2","airDate":"2011-05-18","airDateUtc":"2011-05-19T01:00:00Z","overview":"Can you really shoot accurately with guns mounted on the hood of a car? Will a bullet just spin if shot at a frozen lake?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":190,"sceneEpisodeNumber":7,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7183},{"seriesId":98,"episodeFileId":4588,"seasonNumber":2011,"episodeNumber":8,"title":"Dodge a Bullet","airDate":"2011-06-01","airDateUtc":"2011-06-02T01:00:00Z","overview":"Adam and Jamie test if you can jump out of the way of a bullet, while Kari, Grant and Tory find out if hitting the water is just like a similar fall onto pavement.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":191,"sceneEpisodeNumber":8,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7184},{"seriesId":98,"episodeFileId":4605,"seasonNumber":2011,"episodeNumber":9,"title":"Fixing a Flat","airDate":"2011-06-08","airDateUtc":"2011-06-09T01:00:00Z","overview":"Changing a flat tire without using a spare; can a fishing reel catch fire by hooking onto a fast fish?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":192,"sceneEpisodeNumber":9,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7185},{"seriesId":98,"episodeFileId":4614,"seasonNumber":2011,"episodeNumber":10,"title":"Planes, Trains and Automobiles","airDate":"2011-06-15","airDateUtc":"2011-06-16T01:00:00Z","overview":"The MythBusters count down -- and give you insight into -- their favorite transportation moments.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":193,"sceneEpisodeNumber":10,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7186},{"seriesId":98,"episodeFileId":4625,"seasonNumber":2011,"episodeNumber":11,"title":"Let There Be Light","airDate":"2011-06-22","airDateUtc":"2011-06-23T01:00:00Z","overview":"Jamie and Adam take on \"The Mummy,\" while Kari, Grant and Tory try to stop an out-of-control car with another car.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":194,"sceneEpisodeNumber":11,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7187},{"seriesId":98,"episodeFileId":4635,"seasonNumber":2011,"episodeNumber":12,"title":"Paper Armor","airDate":"2011-06-29","airDateUtc":"2011-06-30T01:00:00Z","overview":"Adam and Jamie explore the physics of shock waves in water and how to avoid injury, while Kari, Grant and Tory find out if paper battle armor can compare to steel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":195,"sceneEpisodeNumber":12,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7188},{"seriesId":98,"episodeFileId":4645,"seasonNumber":2011,"episodeNumber":13,"title":"Bikes and Bazookas","airDate":"2011-09-28","airDateUtc":"2011-09-29T01:00:00Z","overview":"Adam and Jamie test the myth that a motorcycle is a greener and cleaner machine than a car, while Kari, Tory, and Grant unleash the first RPG in MythBusters history to see if a bullet could take out a bazooka.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":196,"sceneEpisodeNumber":13,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7189},{"seriesId":98,"episodeFileId":4654,"seasonNumber":2011,"episodeNumber":14,"title":"Newton's Crane Cradle","airDate":"2011-10-05","airDateUtc":"2011-10-06T01:00:00Z","overview":"Jamie and Adam test a viral video that supersizes Newton's cradle using wrecking balls, while Kari, Grant, and Tory tackle whether a bird landing on your hood is enough to tip your car off a cliff.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":197,"sceneEpisodeNumber":14,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7190},{"seriesId":98,"episodeFileId":4661,"seasonNumber":2011,"episodeNumber":15,"title":"Walk a Straight Line","airDate":"2011-10-12","airDateUtc":"2011-10-13T01:00:00Z","overview":"Adam and Jamie explore whether humans -- deprived of sight -- can travel in a straight line, while Kari, Grant and Tory test whether binary explosives will explode in the case of a fender bender.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":198,"sceneEpisodeNumber":15,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7191},{"seriesId":98,"episodeFileId":4666,"seasonNumber":2011,"episodeNumber":16,"title":"Duct Tape Plane","airDate":"2011-10-19","airDateUtc":"2011-10-20T01:00:00Z","overview":"Adam and Jamie test three viral videos featuring the extraordinary excavator: Can it really row a barge? Be used to go wakeboarding? Perform seemingly impossible feats of acrobatics? Then -- using only duct tape -- Kari, Grant, and Tory attempt to patch up a plane that's had an unfortunate encounter with a bear.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":199,"sceneEpisodeNumber":16,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7192},{"seriesId":98,"episodeFileId":4674,"seasonNumber":2011,"episodeNumber":17,"title":"Flying Guillotine","airDate":"2011-10-26","airDateUtc":"2011-10-27T01:00:00Z","overview":"Jamie and Adam explore whether it's safe to use the explosive C4 as a cooking fuel as long as you don't drop anything on it, while Kari, Grant, and Tory put a Chinese martial-arts myth to the test.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":200,"sceneEpisodeNumber":17,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7193},{"seriesId":98,"episodeFileId":4679,"seasonNumber":2011,"episodeNumber":18,"title":"Drain Disaster","airDate":"2011-11-02","airDateUtc":"2011-11-03T01:00:00Z","overview":"Find out whether a sewer drain full of combustible gas, when ignited, will turn an innocent manhole cover into a missile, and whether truck bedliners are truly bite, crash, and bomb proof.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":201,"sceneEpisodeNumber":18,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7194},{"seriesId":98,"episodeFileId":4686,"seasonNumber":2011,"episodeNumber":19,"title":"Location, Location, Location","airDate":"2011-11-11","airDateUtc":"2011-11-12T02:00:00Z","overview":"From Alameda to Africa, from the desert to the deep blue sea, the MythBusters declassify their top destinations and reveal all kinds of inside scoop, from quarry-bans to unplanned myth busts.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":202,"sceneEpisodeNumber":19,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7195},{"seriesId":98,"episodeFileId":4695,"seasonNumber":2011,"episodeNumber":20,"title":"Wet and Wild","airDate":"2011-11-16","airDateUtc":"2011-11-17T02:00:00Z","overview":"When it comes to H2O, the MythBusters are never shy of putting their bodies on the line, riding the world's biggest waterslide, deep-sea diving in a suit of armor and swimming in syrup. Go behind the scenes of the 12 wettest myths of all time.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":203,"sceneEpisodeNumber":20,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7196},{"seriesId":98,"episodeFileId":4701,"seasonNumber":2011,"episodeNumber":21,"title":"Wheel of Mythfortune","airDate":"2011-11-23","airDateUtc":"2011-11-24T02:00:00Z","overview":"By spinning the Wheel of Mythfortune, the MythBusters find themselves taking on five random viewer-suggested myths with titles like the Monty Hall Paradox, Lumber Car, Firearm Fashion, Hit the Deck and Flaming Tire. Keep those ideas coming!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":204,"sceneEpisodeNumber":21,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7197},{"seriesId":98,"episodeFileId":4705,"seasonNumber":2011,"episodeNumber":22,"title":"Toilet Bomb","airDate":"2011-11-30","airDateUtc":"2011-12-01T02:00:00Z","overview":"Adam and Jamie tackle a blockbuster bathroom bomb (from Lethal Weapon!), while Kari, Tory, and Grant take to the skies to find out if flying in V-formation works for airplanes as well as it does for birds.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":205,"sceneEpisodeNumber":22,"sceneSeasonNumber":9,"unverifiedSceneNumbering":false,"id":7198},{"seriesId":98,"episodeFileId":4492,"seasonNumber":2012,"episodeNumber":1,"title":"Duct Tape Island","airDate":"2012-03-25","airDateUtc":"2012-03-26T01:00:00Z","overview":"Adam and Jamie get abandoned on a Hawaiian island, armed with nothing but the sticky silver adhesive. Can they use it to source water, find food, build shelter, and even escape?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":206,"sceneEpisodeNumber":1,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7199},{"seriesId":98,"episodeFileId":4505,"seasonNumber":2012,"episodeNumber":2,"title":"Fire vs Ice","airDate":"2012-04-01","airDateUtc":"2012-04-02T01:00:00Z","overview":"Adam and Jamie tackle an internet sensation about an epic duel between a flamethrower and a CO2 fire extinguisher, while Kari, Grant and Tory test if you can spy drone with a dust cloud and pull off a kidnapping as seen in the movie Body of Lies.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":207,"sceneEpisodeNumber":2,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7200},{"seriesId":98,"episodeFileId":4522,"seasonNumber":2012,"episodeNumber":3,"title":"Square Wheels","airDate":"2012-04-08","airDateUtc":"2012-04-09T01:00:00Z","overview":"Adam and Jamie test whether, after a certain speed, the ride in a car with square wheels is just as smooth as with round ones, while in Date Night Car, Tory, Kari and Grant tackle a tandem driving myth from the movie Date Night.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":208,"sceneEpisodeNumber":3,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7201},{"seriesId":98,"episodeFileId":4532,"seasonNumber":2012,"episodeNumber":4,"title":"Swinging Pirates","airDate":"2012-04-15","airDateUtc":"2012-04-16T01:00:00Z","overview":"Adam and Jamie take a swing at a pirate movie myth while Kari, Tory and Grant roll out the barrel for a turbo-charged go-cart.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":209,"sceneEpisodeNumber":4,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7202},{"seriesId":98,"episodeFileId":4550,"seasonNumber":2012,"episodeNumber":5,"title":"Battle of the Sexes","airDate":"2012-04-22","airDateUtc":"2012-04-23T01:00:00Z","overview":"A battle of the sexes unfolds as the gang tests five gender-based clich\u00e9s.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":210,"sceneEpisodeNumber":5,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7203},{"seriesId":98,"episodeFileId":4562,"seasonNumber":2012,"episodeNumber":6,"title":"Driving in Heels","airDate":"2012-04-29","airDateUtc":"2012-04-30T01:00:00Z","overview":"Spike heels and platforms may be the height of fashion, but does fancy footwear put you at risk on the road? Don't miss Jamie and Adam's attempt to find out. Then, in Super Glue Heroics, Tory, Grant and Kari test whether it's possible to glue a roomful of furniture to a hotel-room ceiling as well as to substitute super glue for a seat-belt in a head-on car crash.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":211,"sceneEpisodeNumber":6,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7204},{"seriesId":98,"episodeFileId":4574,"seasonNumber":2012,"episodeNumber":7,"title":"Revenge of the Myth","airDate":"2012-05-06","airDateUtc":"2012-05-07T01:00:00Z","overview":"The MythBusters take fan favorites to another level in the ultimate experimental ramp-up. With fireworks, excavators and exploding limousines, if you want spectacle, this show has it in spades!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":212,"sceneEpisodeNumber":7,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7205},{"seriesId":98,"episodeFileId":4590,"seasonNumber":2012,"episodeNumber":8,"title":"Bouncing Bullet","airDate":"2012-05-13","airDateUtc":"2012-05-14T01:00:00Z","overview":"Adam and Jamie take aim at a ricochet myth from the TV show Burn Notice while Kari, Tory and Grant test the Hollywood myth that if you jump when running away from an explosion, you can surf the shockwave.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":213,"sceneEpisodeNumber":8,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7206},{"seriesId":98,"episodeFileId":4600,"seasonNumber":2012,"episodeNumber":9,"title":"Mailbag Special","airDate":"2012-05-20","airDateUtc":"2012-05-21T01:00:00Z","overview":"This fan-correspondence catch-up includes both question-answering and taking mini-myth requests such as whether you can eat a spoonful of cinnamon without drinking water.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":214,"sceneEpisodeNumber":9,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7207},{"seriesId":98,"episodeFileId":4610,"seasonNumber":2012,"episodeNumber":10,"title":"Bubble Pack Plunge","airDate":"2012-06-03","airDateUtc":"2012-06-04T01:00:00Z","overview":"The Internet and Hollywood are put on the hot seat as Adam and Jamie test whether survival is possible if you jump from a building wrapped in bubble packaging, and Kari, Grant, and Tory experiment with a James Bond ejector seat.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":215,"sceneEpisodeNumber":10,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7208},{"seriesId":98,"episodeFileId":4623,"seasonNumber":2012,"episodeNumber":11,"title":"Duel Dilemmas","airDate":"2012-06-10","airDateUtc":"2012-06-11T01:00:00Z","overview":"Adam and Jamie test an old dueling myth - should you really never bring a knife to a gunfight? Kari, Grant, and Tory find out if a two stage missile known as the fire breathing dragon ever really existed.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":216,"sceneEpisodeNumber":11,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7209},{"seriesId":98,"episodeFileId":4632,"seasonNumber":2012,"episodeNumber":12,"title":"Hollywood Gunslingers","airDate":"2012-06-17","airDateUtc":"2012-06-18T01:00:00Z","overview":"Hollywood firearms fables; never-ending ammo; lethal nail guns; deadly silver bullets.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":217,"sceneEpisodeNumber":12,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7210},{"seriesId":98,"episodeFileId":4641,"seasonNumber":2012,"episodeNumber":13,"title":"Jawsome Shark Special","airDate":"2012-08-13","airDateUtc":"2012-08-14T01:00:00Z","overview":"Twenty-five shark myths are put to the test for Shark Week 2012.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":218,"sceneEpisodeNumber":13,"sceneSeasonNumber":10,"unverifiedSceneNumbering":false,"id":7211},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":14,"title":"Titanic Survival","airDate":"2012-10-07","airDateUtc":"2012-10-08T01:00:00Z","overview":"James Cameron joins Adam and Jamie to try to answer the questions, did Jack (from Cameron's \"Titanic\") needlessly die? Is it possible that Rose and Jack could have both fit on the wooden board and survived together?","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":219,"sceneEpisodeNumber":1,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7212},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":15,"title":"Trench Torpedo","airDate":"2012-10-14","airDateUtc":"2012-10-15T01:00:00Z","overview":"The boys test whether a trench corner can slow down a shockwave and save a soldier.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":220,"sceneEpisodeNumber":2,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7213},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":16,"title":"Hail Hijinx","airDate":"2012-10-21","airDateUtc":"2012-10-22T01:00:00Z","overview":"Adam and Jamie pick apart some rope bridge physics; giant hail vs. the hull of a fishing boat.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":221,"sceneEpisodeNumber":3,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7214},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":17,"title":"Fright Night","airDate":"2012-10-28","airDateUtc":"2012-10-29T01:00:00Z","overview":"Adam and Jamie see if certain sound frequencies can convince people of paranormal activity; finding out if the smell of fear exists.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":222,"sceneEpisodeNumber":4,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7215},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":18,"title":"Mini Myth Medley","airDate":"2012-11-04","airDateUtc":"2012-11-05T02:00:00Z","overview":"Viewer requested myths include an underwater bike ride, if you can know something \"like the back of your hand\", and the potty dance.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":223,"sceneEpisodeNumber":5,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7216},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":19,"title":"Cannonball Chemistry","airDate":"2012-11-11","airDateUtc":"2012-11-12T02:00:00Z","overview":"Adam and Jamie test whether a mattress can really cushion a watery wipe out; Kari, Tory and Grant tackle a blast from the past as they test if cannonballs made of stone can really cause carnage.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":224,"sceneEpisodeNumber":6,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7217},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":20,"title":"Food Fables","airDate":"2012-11-18","airDateUtc":"2012-11-19T02:00:00Z","overview":"Celebrity chef Alton Brown helps the team discover if it can cook lasagna in a dishwasher or a meal beneath the hood of a car.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":225,"sceneEpisodeNumber":7,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7218},{"seriesId":98,"episodeFileId":0,"seasonNumber":2012,"episodeNumber":21,"title":"Explosions A to Z","airDate":"2012-11-25","airDateUtc":"2012-11-26T02:00:00Z","overview":"The team highlight some of the show's 752 detonations as they blast through the ultimate A-Z of explosions.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":226,"sceneEpisodeNumber":8,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7219},{"seriesId":98,"episodeFileId":4491,"seasonNumber":2013,"episodeNumber":1,"title":"JATO Rocket Car: Mission Accomplished?","airDate":"2013-05-01","airDateUtc":"2013-05-02T01:00:00Z","overview":"The 10th anniversary starts off with the busting of JATO rocket car.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":228,"sceneEpisodeNumber":1,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7220},{"seriesId":98,"episodeFileId":4504,"seasonNumber":2013,"episodeNumber":2,"title":"Deadliest Catch Crabtastic Special","airDate":"2013-05-08","airDateUtc":"2013-05-09T01:00:00Z","overview":"Captains Johnathan and Junior from Deadliest Catch join the team to test if a crab pot will drag you to the bottom if your foot is caught in a coil.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":229,"sceneEpisodeNumber":2,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7221},{"seriesId":98,"episodeFileId":4518,"seasonNumber":2013,"episodeNumber":3,"title":"Down and Dirty \/ Earthquake Survival","airDate":"2013-05-15","airDateUtc":"2013-05-16T01:00:00Z","overview":"Testing a bathroom hand dryer verse using paper towels; the cleanliest bathroom stall; the best place to stand during an earthquake.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":230,"sceneEpisodeNumber":3,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7222},{"seriesId":98,"episodeFileId":4534,"seasonNumber":2013,"episodeNumber":4,"title":"Indy Car Special","airDate":"2013-05-22","airDateUtc":"2013-05-23T01:00:00Z","overview":"The Mythbusters go to the Indianapolis Motor Speedway to test racing myths.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":231,"sceneEpisodeNumber":4,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7223},{"seriesId":98,"episodeFileId":4546,"seasonNumber":2013,"episodeNumber":5,"title":"Battle of the Sexes - Round 2","airDate":"2013-05-29","airDateUtc":"2013-05-30T01:00:00Z","overview":"The Mythbusters test the cliches in the second round of Battle of the Sexes.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":232,"sceneEpisodeNumber":5,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7224},{"seriesId":98,"episodeFileId":4559,"seasonNumber":2013,"episodeNumber":6,"title":"Motorcycle Water Ski","airDate":"2013-06-05","airDateUtc":"2013-06-06T01:00:00Z","overview":"Testing if a motorcycle can travel across water at high speeds; a parachute made from hotel room contents.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":233,"sceneEpisodeNumber":6,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7225},{"seriesId":98,"episodeFileId":4585,"seasonNumber":2013,"episodeNumber":7,"title":"Hypermiling \/ Crash Cushion","airDate":"2013-06-12","airDateUtc":"2013-06-13T01:00:00Z","overview":"Testing if you can survive a car crash while sitting between two big guys; three hypermiling myths; techniques that may double your car's fuel efficiency.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":234,"sceneEpisodeNumber":7,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7226},{"seriesId":98,"episodeFileId":4589,"seasonNumber":2013,"episodeNumber":8,"title":"Duct Tape Canyon","airDate":"2013-06-19","airDateUtc":"2013-06-20T01:00:00Z","overview":"Adam and Jamie use duct tape to survive in the desert.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":235,"sceneEpisodeNumber":8,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7227},{"seriesId":98,"episodeFileId":0,"seasonNumber":2013,"episodeNumber":9,"title":"Painting with Explosives \/ Bifurcated Boat","airDate":"2013-06-26","airDateUtc":"2013-06-27T01:00:00Z","overview":"The Mythbusters return to two of their earlier myths, as they try again to paint a room with explosives and bifurcate a boat.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":236,"sceneEpisodeNumber":9,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7228},{"seriesId":98,"episodeFileId":0,"seasonNumber":2013,"episodeNumber":10,"title":"Breaking Bad Special","airDate":"2013-08-12","airDateUtc":"2013-08-13T01:00:00Z","overview":"The MythBusters are de-bunking the science and chemistry of the hit TV show 'Breaking Bad' as they are joined by creator Vince Gilligan and star Aaron Paul.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":237,"sceneEpisodeNumber":10,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7229},{"seriesId":98,"episodeFileId":0,"seasonNumber":2013,"episodeNumber":11,"title":"Zombie Special","airDate":"2013-10-17","airDateUtc":"2013-10-18T01:00:00Z","overview":"Michael Rooker (\"The Walking Dead\") helps the team test zombie myths; more effective weapon: ax or gun; testing the strength of the living dead; outrunning or outsmarting a horde.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":238,"sceneEpisodeNumber":11,"sceneSeasonNumber":12,"unverifiedSceneNumbering":false,"id":7230},{"seriesId":98,"episodeFileId":4488,"seasonNumber":2014,"episodeNumber":1,"title":"Star Wars: Revenge of the Myth","airDate":"2014-01-04","airDateUtc":"2014-01-05T02:00:00Z","overview":"Swinging Luke and Leia across a chasm with a grappling hook; an Ewok log crushing an Imperial \"Chicken Walker\"; surviving in a tauntaun's belly.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":239,"sceneEpisodeNumber":1,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7231},{"seriesId":98,"episodeFileId":4506,"seasonNumber":2014,"episodeNumber":2,"title":"Moonshiner Myths","airDate":"2014-01-11","airDateUtc":"2014-01-12T02:00:00Z","overview":"Testing an exploding still; using \"hooch\" to fuel an unmodified car.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":240,"sceneEpisodeNumber":2,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7232},{"seriesId":98,"episodeFileId":4520,"seasonNumber":2014,"episodeNumber":3,"title":"Hollywood Car Crash Cliches","airDate":"2014-01-18","airDateUtc":"2014-01-19T02:00:00Z","overview":"Hollywood crash clich\u00e9s; driving through glass; plowing throw traffic; firing an RPG at an SUV.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":241,"sceneEpisodeNumber":3,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7233},{"seriesId":98,"episodeFileId":4530,"seasonNumber":2014,"episodeNumber":4,"title":"Car Chase Chaos \/ Animal Antics","airDate":"2014-01-25","airDateUtc":"2014-01-26T02:00:00Z","overview":"The MythBusters test car chase cliches (can you really share driving, change places, or dump the driver while moving at speed) and some fan-suggested deterrents for driving away cats, bears, and snakes.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":242,"sceneEpisodeNumber":4,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7234},{"seriesId":98,"episodeFileId":4547,"seasonNumber":2014,"episodeNumber":5,"title":"Do Try This At Home","airDate":"2014-02-01","airDateUtc":"2014-02-02T02:00:00Z","overview":"Investigating myths that can potentially be tried at home.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":243,"sceneEpisodeNumber":5,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7235},{"seriesId":98,"episodeFileId":4560,"seasonNumber":2014,"episodeNumber":6,"title":"Mythssion Impossible","airDate":"2014-02-15","airDateUtc":"2014-02-16T02:00:00Z","overview":"The MythBusters test three impossible idioms: Can you herd cats? Can you catch a greased pig? And can you cram 10 pounds of poop into a 5 pound bag?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":244,"sceneEpisodeNumber":6,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7236},{"seriesId":98,"episodeFileId":4575,"seasonNumber":2014,"episodeNumber":7,"title":"Bullet Baloney","airDate":"2014-02-22","airDateUtc":"2014-02-23T02:00:00Z","overview":"Firearm cliches; firing a bent-barreled shotgun; firing a gun in space; dropping a gun in a deep fryer; stopping a bullet with weird items; shooting a neon sign.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":245,"sceneEpisodeNumber":7,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7237},{"seriesId":98,"episodeFileId":4586,"seasonNumber":2014,"episodeNumber":8,"title":"Supersonic Ping Pong \/ Ice Cannon","airDate":"2014-03-01","airDateUtc":"2014-03-02T02:00:00Z","overview":"Supersonic ping pong; lighting a frozen fuse on an ice cannon.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":246,"sceneEpisodeNumber":8,"sceneSeasonNumber":13,"unverifiedSceneNumbering":false,"id":7238},{"seriesId":98,"episodeFileId":4599,"seasonNumber":2014,"episodeNumber":9,"title":"Fire in the Hole","airDate":"2014-07-10","airDateUtc":"2014-07-11T01:00:00Z","overview":"The MythBusters tackle some of Hollywood\u2019s favorite explosive scenarios. Could a hero really shoot a live grenade in midair and thus render it useless? Could you really contain a TNT explosion inside an ordinary object like a file cabinet or aquarium?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":247,"sceneEpisodeNumber":1,"sceneSeasonNumber":14,"unverifiedSceneNumbering":false,"id":7239},{"seriesId":98,"episodeFileId":4611,"seasonNumber":2014,"episodeNumber":10,"title":"Household Disasters","airDate":"2014-07-17","airDateUtc":"2014-07-18T01:00:00Z","overview":"It's YOUR house under the Myths-cro-scope this time. Could a vacuum cleaner explode while sucking up black powder? Could sunscreen scorch your skin? Could a piano crash through your roof? And finally, could an exploding water heater extinguish a house fire?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":248,"sceneEpisodeNumber":2,"sceneSeasonNumber":14,"unverifiedSceneNumbering":false,"id":7240},{"seriesId":98,"episodeFileId":4622,"seasonNumber":2014,"episodeNumber":11,"title":"Commercial Myths","airDate":"2014-07-24","airDateUtc":"2014-07-25T01:00:00Z","overview":"The MythBusters go to vertigo-inducing heights to test out some commercial myths. Could you actually bob for an apple while jumping from a 100-foot high bungee cord? And from a viral video, could you really play a match of tennis while both players are standing on top of an airplane's wing?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":249,"sceneEpisodeNumber":3,"sceneSeasonNumber":14,"unverifiedSceneNumbering":false,"id":7241},{"seriesId":98,"episodeFileId":0,"seasonNumber":2014,"episodeNumber":12,"title":"Road Rage","airDate":"2014-07-31","airDateUtc":"2014-08-01T01:00:00Z","overview":"In this episode, three car crimes straight from Hollywood are put to the test: the cliff top push, the two-wheel wipeout (and ... we do mean WIPEOUT, with Adam at the wheel to boot), and, finally, the Corvette barrel roll from \"Wanted.\"","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":250,"sceneEpisodeNumber":4,"sceneSeasonNumber":14,"unverifiedSceneNumbering":false,"id":7242},{"seriesId":98,"episodeFileId":4852,"seasonNumber":2014,"episodeNumber":13,"title":"Laws of Attraction","airDate":"2014-08-07","airDateUtc":"2014-08-08T01:00:00Z","overview":"Investigating five clich\u00e9s about the laws of attraction; a preference to blondes; pheromones; tips correlating with breast size; wealth.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":251,"sceneEpisodeNumber":5,"sceneSeasonNumber":14,"unverifiedSceneNumbering":false,"id":7243},{"seriesId":98,"episodeFileId":4814,"seasonNumber":2014,"episodeNumber":14,"title":"Traffic Tricks","airDate":"2014-08-07","airDateUtc":"2014-08-08T01:45:00Z","overview":"Adam and Jamie tackle key congestion questions and unlock the traffic gridlock. They find out if a minor unexpected braking incident can really cause a major \u2018shockwave jam\u2019. They also put the European roundabout up against the typical American four-way stop sign to see which is really the most efficient. Meanwhile, Kari, Grant and Tory take on the controversial claim that on a journey of less than 600 kilometers it\u2019s always faster to drive. Plus, can lane changing put your life in danger?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":252,"sceneEpisodeNumber":6,"sceneSeasonNumber":14,"unverifiedSceneNumbering":false,"id":7244},{"seriesId":98,"episodeFileId":4801,"seasonNumber":2014,"episodeNumber":15,"title":"Plane Boarding \/ Bite the Bullet","airDate":"2014-08-21","airDateUtc":"2014-08-22T01:00:00Z","overview":"What is the most efficient way to board an airplane? Can a bullet made of teeth or bone be untraceable? Also the last episode of Tory, Kari, and Grant.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":227,"sceneEpisodeNumber":9,"sceneSeasonNumber":11,"unverifiedSceneNumbering":false,"id":7245},{"seriesId":98,"episodeFileId":4805,"seasonNumber":2015,"episodeNumber":1,"title":"The Simpsons Special","airDate":"2015-01-10","airDateUtc":"2015-01-11T02:00:00Z","overview":"Myths related to the animated sitcom \"The Simpsons\" are tested. Will a cherry bomb dropped in a school toilet make others act like geysers? Will placing someone between a wrecking ball and a building protect the building? Along for the ride is special guest Al Jean, executive producer and show runner of The Simpsons.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":253,"sceneEpisodeNumber":1,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7246},{"seriesId":98,"episodeFileId":4507,"seasonNumber":2015,"episodeNumber":2,"title":"The Busters of the Lost Myths","airDate":"2015-01-17","airDateUtc":"2015-01-18T02:00:00Z","overview":"Testing the hijinks from the \"Indiana Jones\" franchise.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":254,"sceneEpisodeNumber":2,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7247},{"seriesId":98,"episodeFileId":4517,"seasonNumber":2015,"episodeNumber":3,"title":"The A-Team Special","airDate":"2015-01-24","airDateUtc":"2015-01-25T02:00:00Z","overview":"Adam and Jamie test myths related to the '80s TV series, \"The A-Team.\"","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":255,"sceneEpisodeNumber":3,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7248},{"seriesId":98,"episodeFileId":4806,"seasonNumber":2015,"episodeNumber":4,"title":"Video Games Special","airDate":"2015-01-31","airDateUtc":"2015-02-01T02:00:00Z","overview":"Adam and Jamie challenge the science of virtual worlds from video games.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":256,"sceneEpisodeNumber":4,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7249},{"seriesId":98,"episodeFileId":4544,"seasonNumber":2015,"episodeNumber":5,"title":"Transformers","airDate":"2015-02-07","airDateUtc":"2015-02-08T02:00:00Z","overview":"Adam and Jamie attempt the mechanical metamorphosis of a car becoming a motorcycle and a bicycle becoming a boat.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":257,"sceneEpisodeNumber":5,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7250},{"seriesId":98,"episodeFileId":4561,"seasonNumber":2015,"episodeNumber":6,"title":"San Francisco Drift","airDate":"2015-02-14","airDateUtc":"2015-02-15T02:00:00Z","overview":"Adam and Jamie test myths about daredevil auto drifting.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":258,"sceneEpisodeNumber":6,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7251},{"seriesId":98,"episodeFileId":4815,"seasonNumber":2015,"episodeNumber":7,"title":"Blow It Out of the Water","airDate":"2015-07-18","airDateUtc":"2015-07-19T01:00:00Z","overview":"Adam Savage and Jamie Hyneman attempt to blow a boat clean out of the water using 1,000 lbs of high explosives. They also take on the most requested myth of the year when they team up with Breaking Bad EP Vince Gilligan to test out the ability of a homemade machine gun, just like the one Walter White used in the Breaking Bad finale.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":259,"sceneEpisodeNumber":7,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7252},{"seriesId":98,"episodeFileId":4812,"seasonNumber":2015,"episodeNumber":8,"title":"Flights of Fantasy","airDate":"2015-07-25","airDateUtc":"2015-07-26T01:00:00Z","overview":"Adam and Jamie tackle the ultimate aviation investigation: is the U-2 really the toughest aircraft in regular use to fly and land? The guys also take on the next big technological development in commercial delivery - remote control multi rotor drones.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":260,"sceneEpisodeNumber":8,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7253},{"seriesId":98,"episodeFileId":4823,"seasonNumber":2015,"episodeNumber":9,"title":"Accidental Ammo","airDate":"2015-08-01","airDateUtc":"2015-08-02T01:00:00Z","overview":"The guys test out whether a stone shot from a lawn mower can have the same power as a bullet shot from a .357. Next Adam and Jamie look into the story of a pane of glass falling from a construction site and cutting an innocent bystander completely in half from head to toe.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":261,"sceneEpisodeNumber":9,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7254},{"seriesId":98,"episodeFileId":4811,"seasonNumber":2015,"episodeNumber":10,"title":"Dangerous Driving","airDate":"2015-08-08","airDateUtc":"2015-08-09T01:00:00Z","overview":"Adam and Jamie test whether or not hands-free driving is a safe way to make a call while behind the wheel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":262,"sceneEpisodeNumber":10,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7255},{"seriesId":98,"episodeFileId":4807,"seasonNumber":2015,"episodeNumber":11,"title":"Supernatural Shooters","airDate":"2015-08-15","airDateUtc":"2015-08-16T01:00:00Z","overview":"Adam and Jamie take aim at Hollywood's hit men and their supernatural ability to take down a target. First up, the guys test out whether a well-placed shot through an interior wall could really kill. Next, Adam and Jamie look to epic gun-toting movie \"Shoot 'Em Up\" to see if handheld bullets can really bet set off by thrusting your hand into fire.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":263,"sceneEpisodeNumber":11,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7256},{"seriesId":98,"episodeFileId":4800,"seasonNumber":2015,"episodeNumber":12,"title":"Unfinished Business","airDate":"2015-08-22","airDateUtc":"2015-08-23T01:00:00Z","overview":"Adam and Jamie tackle fan favorites; video games; grenades; spy cars; super-fast firearms.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":264,"sceneEpisodeNumber":12,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7257},{"seriesId":98,"episodeFileId":0,"seasonNumber":2015,"episodeNumber":13,"title":"Mythbusters vs. Jaws","airDate":"2015-08-29","airDateUtc":"2015-08-30T01:00:00Z","overview":"In 2005, the MythBusters took a dive into shark-infested waters to test theories from the 1975 classic film \"Jaws.\" In the episode, the MythBusters revisited the epic final scene of \"Jaws\" and tested whether shooting a scuba tank with a bullet would actually make it explode. The myth was busted, but many viewers thought they got it wrong. Now, ten years later and to coincide with the 40th anniversary of \"Jaws,\" the MythBusters are back to test new ideas, theories and angles from the film. MythBusters vs. Jaws will not only retest the scuba tank explosion, but will also attempt to find out if the sounds of Orcas and the smell of dead sharks repel sharks.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":265,"sceneEpisodeNumber":13,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7258},{"seriesId":98,"episodeFileId":4803,"seasonNumber":2015,"episodeNumber":14,"title":"Star Wars: The Myths Strike Back","airDate":"2015-09-05","airDateUtc":"2015-09-06T01:00:00Z","overview":"Adam and Jamie once again confront the dark side of science in a workshop not so far, far away. A recurring theme in the movies is the ability of the heroes to dodge, evade and dive out of the way of an incoming Stormtrooper shot. But is that possible? The guys also tackle the iconic scene from Episode III when Anakin is defeated in an epic light-sabre duel.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":266,"sceneEpisodeNumber":14,"sceneSeasonNumber":15,"unverifiedSceneNumbering":false,"id":7259},{"seriesId":98,"episodeFileId":4489,"seasonNumber":2016,"episodeNumber":1,"title":"MythBusters Revealed: The Behind the Scenes Season Opener","airDate":"2016-01-02","airDateUtc":"2016-01-03T02:00:00Z","overview":"In this special episode, Jamie and Adam reveal what's in store for their go-big-then-go-home final season, while also pulling back the curtain to showcase how this epic series got made with behind-the-scenes exclusives.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":267,"sceneEpisodeNumber":0,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7260},{"seriesId":98,"episodeFileId":4502,"seasonNumber":2016,"episodeNumber":2,"title":"The Explosion Special","airDate":"2016-01-09","airDateUtc":"2016-01-10T02:00:00Z","overview":"The MythBusters celebrate their explosive history with two spectacular big bangs. In MacGyver Cement Truck, MacGyver uses cement to smother a bomb in a mail truck. Then in Hovercraft Hijinks the guys tackle the topic of landmines. Can a minefield really be safely traversed in a hovercraft?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":268,"sceneEpisodeNumber":1,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7261},{"seriesId":98,"episodeFileId":4816,"seasonNumber":2016,"episodeNumber":3,"title":"Tanker Crush","airDate":"2016-01-16","airDateUtc":"2016-01-17T02:00:00Z","overview":"This season, Jamie and Adam try something they've never done before: an implosion caused by a vacuum. Is it possible that a freight train tank car could be crushed after a steam cleaning gone wrong?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":269,"sceneEpisodeNumber":2,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7262},{"seriesId":98,"episodeFileId":4531,"seasonNumber":2016,"episodeNumber":4,"title":"Cooking Chaos","airDate":"2016-01-23","airDateUtc":"2016-01-24T02:00:00Z","overview":"This episode takes on two viral videos. First, is it possible to fire shrimp from an air cannon through a cloud of flour, shower of egg wash, then breadcrumbs before a fireball crisps them into the perfect tempura on a plate? Second, can an underwater explosive charge juice the inside of a piece of fruit or vegetable while leaving the exterior completely undamaged?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":270,"sceneEpisodeNumber":3,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7263},{"seriesId":98,"episodeFileId":4545,"seasonNumber":2016,"episodeNumber":5,"title":"Driven to Destruction","airDate":"2016-01-30","airDateUtc":"2016-01-31T02:00:00Z","overview":"First, Adam sees if you can really lift up a car with nothing but a humble vacuum, before Jamie then tries to flatten a car using nothing but an absolutely massive load of C4!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":271,"sceneEpisodeNumber":4,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7264},{"seriesId":98,"episodeFileId":4558,"seasonNumber":2016,"episodeNumber":6,"title":"Volunteer Special","airDate":"2016-02-06","airDateUtc":"2016-02-07T02:00:00Z","overview":"In their 14 years, the MythBusters have used more than 3,500 human guinea pigs, and in this special, they pay homage to each! First, Jamie and Adam summon up an army of 200 zombies to determine the ultimate weapon when the apocalypse comes. Then, using 120 shopping volunteers, the MythBusters find out the best way to wait in line at the store: Is it the \"pick a lane\" method or the more modern serpentine?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":272,"sceneEpisodeNumber":5,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7265},{"seriesId":98,"episodeFileId":4572,"seasonNumber":2016,"episodeNumber":7,"title":"Failure Is Not an Option!","airDate":"2016-02-13","airDateUtc":"2016-02-14T02:00:00Z","overview":"In this last revisit, Adam and Jamie attempt to right their wrongs. First they bust out their drifting moves to find out whether drifting is faster than driving -- on dirt! Then they return to the ultimate fan favorite -- what is bulletproof -- and put lighters and fish tanks in the firing line. Finally, the guys test whether it's possible to survive two explosions by standing directly between them.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":273,"sceneEpisodeNumber":6,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7266},{"seriesId":98,"episodeFileId":0,"seasonNumber":2016,"episodeNumber":8,"title":"Rocketmen","airDate":"2016-02-20","airDateUtc":"2016-02-21T02:00:00Z","overview":"In this final rocket special Adam and Jamie tackle the all-time fan favorite: Are gummy bears a viable rocket fuel?! They hit the Mojave Desert for testing.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":274,"sceneEpisodeNumber":7,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7267},{"seriesId":98,"episodeFileId":4822,"seasonNumber":2016,"episodeNumber":9,"title":"The Reddit Special","airDate":"2016-02-27","airDateUtc":"2016-02-28T02:00:00Z","overview":"Adam and Jamie put MythBusters in the hands of redditors, choosing from several thousand of their suggestions. In Farting on FLIR Jamie and Adam address the reddit community's request to know if a viral video purporting to show a flatus show up on an infrared camera is real or fake. Then in Ball Fall, Buster helps test whether a person would survive a 1,000-foot drop inside an inflatable ball. Paper Bag Punch sees Adam explore how easy it really is to punch your way out of a aper bag. And finally the most popular request was a gratuitous spectacular explosion. So in Snoo Boom the MythBusters oblige by blowing up reddit's mascot.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":275,"sceneEpisodeNumber":8,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7268},{"seriesId":98,"episodeFileId":4813,"seasonNumber":2016,"episodeNumber":10,"title":"Grand Finale","airDate":"2016-03-05","airDateUtc":"2016-03-06T02:00:00Z","overview":"As the saying goes, all good things must come to an end and MythBusters is no exception. Luckily, the guys are going out with a bang and then some: an RV gets blown to kingdom come, Buster goes supersonic, Adam takes the most wild ride imaginable and ... well, Cement Truck.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":276,"sceneEpisodeNumber":9,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7269},{"seriesId":98,"episodeFileId":4817,"seasonNumber":2016,"episodeNumber":11,"title":"The Reunion","airDate":"2016-03-05","airDateUtc":"2016-03-06T02:45:00Z","overview":"For this final hour of the television icon that is MythBusters, the five hosts are reunited for one last hurrah! Deep within M5, Adam Savage, Jamie Hyneman, Kari Byron, Tory Belleci, and Grant Imahara join forces once more to together give a suitably epic, enlightening, and emotional finale.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":277,"sceneEpisodeNumber":10,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":7270},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Duct Tape: The Return","airDate":"2016-03-06","airDateUtc":"2016-03-07T02:00:00Z","overview":"Building a duct tape trebuchet, and saving Busters life with duct tape.","hasFile":false,"monitored":false,"sceneAbsoluteEpisodeNumber":278,"sceneEpisodeNumber":11,"sceneSeasonNumber":16,"unverifiedSceneNumbering":false,"id":6978},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Duct Tape The Return","airDate":"2016-03-06","airDateUtc":"2016-03-07T02:45:00Z","overview":"Can you build a working trebuchet held together only by duct tape?\r\nCan a seat belt made from duct tape save your life in a car crash?\r\nThis is the final episode of the original series, and also marked the final appearance of Adam Savage and Jamie Hyneman.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17257},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Duct Tape Power Hour","airDate":"2017-06-17","airDateUtc":"2017-06-18T01:00:00Z","overview":"Adam and Jamie turn back the clock to their first ever duct tape episode. Includes answers to viewers\u2019 questions and behind-the-scenes insights from our legends of popular science.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6979},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Return to Duct Tape Island","airDate":"2017-06-17","airDateUtc":"2017-06-18T01:45:00Z","overview":"Adam and Jamie return to the adventures on \u201cDuct Tape Island\u201d, using only the tape to survive and provide a means of rescue. Includes all new outtakes from the original show and the answers to a veritable sea of fan mail.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6980},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Bonus Myth: Action Movie Scene Simulation","airDate":"2017-11-07","airDateUtc":"2017-11-08T02:00:00Z","overview":"MythBusters is back! Between a new dynamic duo, a state-of-the-art headquarters and an extremely explosive menu, this season will be jam packed with mythical mayhem.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6988},{"seriesId":98,"episodeFileId":4794,"seasonNumber":2017,"episodeNumber":1,"title":"Heads Will Roll","airDate":"2017-11-15","airDateUtc":"2017-11-16T02:00:00Z","overview":"The MythBusters put an exploding airbag to the ultimate test and tackle an epic movie myth using a rocket-powered sword.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":279,"sceneEpisodeNumber":1,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7271},{"seriesId":98,"episodeFileId":4795,"seasonNumber":2017,"episodeNumber":2,"title":"Chimney Cannon","airDate":"2017-11-22","airDateUtc":"2017-11-23T02:00:00Z","overview":"The MythBusters investigate if a burglar can be shot out of a chimney when the fireplace is lit. Then they power up a chainsaw to test if a bullet embedded in a tree will have fatal consequences.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":280,"sceneEpisodeNumber":2,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7272},{"seriesId":98,"episodeFileId":4798,"seasonNumber":2017,"episodeNumber":3,"title":"Earthquake Water Heater","airDate":"2017-11-29","airDateUtc":"2017-11-30T02:00:00Z","overview":"The MythBusters investigate if a water-heater can turn into a destructive torpedo, and reveal the explosive power of flatulence.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":281,"sceneEpisodeNumber":3,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7273},{"seriesId":98,"episodeFileId":4799,"seasonNumber":2017,"episodeNumber":4,"title":"Rock 'n' Roll Road Rage","airDate":"2017-12-06","airDateUtc":"2017-12-07T02:00:00Z","overview":"The MythBusters investigate if a leaping carp could land a killer blow to a water skier. Then they turn up the volume and test if listening to aggressive music leads to more aggressive driving.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":282,"sceneEpisodeNumber":4,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7274},{"seriesId":98,"episodeFileId":4797,"seasonNumber":2017,"episodeNumber":5,"title":"Invisible Assassins","airDate":"2017-12-13","airDateUtc":"2017-12-14T02:00:00Z","overview":"The MythBusters take on Hollywood's greatest invisible assassins with a trio of tall tales of ingenious booby traps.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":283,"sceneEpisodeNumber":5,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7275},{"seriesId":98,"episodeFileId":4808,"seasonNumber":2017,"episodeNumber":6,"title":"Dead Body Double","airDate":"2017-12-20","airDateUtc":"2017-12-21T02:00:00Z","overview":"The MythBusters are tackling two ballistic mysteries. Is a dead body bullet proof? Plus, is a non-Newtonian fluid bomb proof?!","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":284,"sceneEpisodeNumber":6,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7276},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Mini-Myth: Christmas with a Bang","airDate":"2017-12-23","airDateUtc":"2017-12-24T02:00:00Z","overview":"The MythBusters investigate if explosives can cut down and trim a Christmas tree without blowing it apart.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6989},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Mini-Myth: Decorate in a Dash","airDate":"2017-12-23","airDateUtc":"2017-12-24T02:45:00Z","overview":"The MythBusters reveal how to decorate an entire Christmas tree in under five seconds using an air mortar and leaf blower.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6990},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Mini-Myth: Light 'Em Up","airDate":"2017-12-23","airDateUtc":"2017-12-24T03:30:00Z","overview":"The MythBusters take on the tradition of lighting a Christmas tree, but decide to add some explosive excitement to the ceremony.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6991},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Mini-Myth: Night Before MythBusters Christmas","airDate":"2017-12-23","airDateUtc":"2017-12-24T04:15:00Z","overview":"The MythBusters put a spin on the classic tale and read from their new book, \"The Night Before MythBusters Christmas.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6992},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Mini-Myth: Rudolph's Red Nose","airDate":"2017-12-23","airDateUtc":"2017-12-24T05:00:00Z","overview":"The MythBusters tackle the age old myth: if Rudolph's red nose is powerful enough to light the way for Santa's sleigh.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":6993},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Mini-Myth: Twelve High Speeds of Christmas","airDate":"2017-12-23","airDateUtc":"2017-12-24T05:45:00Z","overview":"The MythBusters tackle twelve of the ultimate explosive and fiery hijinks for the holidays.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13074},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Mini-Myth: Champagne Rocket Bottle","airDate":"2017-12-29","airDateUtc":"2017-12-30T02:00:00Z","overview":"The MythBusters reveal if an abundance of CO2 in a champagne bottle can turn the cork into a rocket.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13075},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Mini-Myth: Drunken Desserts","airDate":"2017-12-29","airDateUtc":"2017-12-30T02:45:00Z","overview":"The MythBusters reveal if eating alcohol-infused desserts can push a person over the DUI limit.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13076},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Mini-Myth: Falling Icicle","airDate":"2017-12-29","airDateUtc":"2017-12-30T03:30:00Z","overview":"The MythBusters test if a large icicle falling from a two-story building can pierce the roof of a car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13077},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Mini-Myth: Frozen Vodka","airDate":"2017-12-29","airDateUtc":"2017-12-30T04:15:00Z","overview":"The MythBusters bust open a legendary myth: if vodka is truly impossible to freeze.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13078},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Mini-Myth: Fruitcake","airDate":"2017-12-29","airDateUtc":"2017-12-30T05:00:00Z","overview":"The MythBusters investigate if a fruitcake or a brick is harder and which can cause the most damage.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13079},{"seriesId":98,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Mini-Myth: Snowball Slaughter","airDate":"2017-12-29","airDateUtc":"2017-12-30T05:45:00Z","overview":"The MythBusters take a snowball fight to the extreme and test how much Buster can take when shot with snowballs from a potato gun.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13080},{"seriesId":98,"episodeFileId":4804,"seasonNumber":2018,"episodeNumber":1,"title":"Fire Arrow vs. Gas Tank","airDate":"2018-01-03","airDateUtc":"2018-01-04T02:00:00Z","overview":"A flaming arrow is fired into a car's gas tank.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":285,"sceneEpisodeNumber":7,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7277},{"seriesId":98,"episodeFileId":4793,"seasonNumber":2018,"episodeNumber":2,"title":"Pane in the Glass","airDate":"2018-01-10","airDateUtc":"2018-01-11T02:00:00Z","overview":"Can you jump off a building holding a rope, swing back, and shoot out a window to return to a lower floor?\r\nDo old remedies prevent you from crying when cutting onions?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":286,"sceneEpisodeNumber":8,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7278},{"seriesId":98,"episodeFileId":4810,"seasonNumber":2018,"episodeNumber":3,"title":"Wild Wild West","airDate":"2018-01-17","airDateUtc":"2018-01-18T02:00:00Z","overview":"The MythBusters investigate two tall tales from the Wild West: how deadly a dynamite-firing crossbow is, and the best way to shoot from the hip during a shootout.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":287,"sceneEpisodeNumber":9,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7279},{"seriesId":98,"episodeFileId":4796,"seasonNumber":2018,"episodeNumber":4,"title":"Spike in the Road","airDate":"2018-01-24","airDateUtc":"2018-01-25T02:00:00Z","overview":"The MythBusters test ways to beat police road spikes using DIY ingenuity and Hollywood driving skills; investigating if a high-powered fountain can actually lift and suspend a human.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":288,"sceneEpisodeNumber":10,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7280},{"seriesId":98,"episodeFileId":4809,"seasonNumber":2018,"episodeNumber":5,"title":"Dynamite Deposit","airDate":"2018-01-31","airDateUtc":"2018-02-01T02:00:00Z","overview":"The MythBusters investigate if it's possible to blow a safe open and not destroy the loot inside. Also is it true that dog owners really look like their pets?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":289,"sceneEpisodeNumber":11,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7281},{"seriesId":98,"episodeFileId":4802,"seasonNumber":2018,"episodeNumber":6,"title":"Backseat Getaway Driver","airDate":"2018-02-07","airDateUtc":"2018-02-08T02:00:00Z","overview":"The MythBusters test if a fugitive could actually outrun the law while driving from the back seat. And the answer to the question: Is it really possible to knock someone over with a feather?","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":290,"sceneEpisodeNumber":12,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7282},{"seriesId":98,"episodeFileId":0,"seasonNumber":2018,"episodeNumber":7,"title":"Electrified Escape","airDate":"2018-02-14","airDateUtc":"2018-02-15T02:00:00Z","overview":"The MythBusters celebrate Valentine's Day with an extravaganza of myths.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":291,"sceneEpisodeNumber":13,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7283},{"seriesId":98,"episodeFileId":0,"seasonNumber":2018,"episodeNumber":8,"title":"Dropping a Bomb","airDate":"2018-02-21","airDateUtc":"2018-02-22T02:00:00Z","overview":"The MythBusters put a myth inspired by video games to the test, and investigate if you can unblock a toilet using a molten salt bomb.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":292,"sceneEpisodeNumber":14,"sceneSeasonNumber":20,"unverifiedSceneNumbering":false,"id":7284}],"episodeFile":[{"seriesId":98,"seasonNumber":0,"relativePath":"Specials\/S00E01.MythBusters Young Scientists Special-SDTV.avi","path":"\/tv\/MythBusters\/Specials\/S00E01.MythBusters Young Scientists Special-SDTV.avi","size":366096384,"dateAdded":"2018-10-15T17:39:16.055108Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112170,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":996016,"videoCodec":"XviD","videoFps":29.97,"resolution":"528x304","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4481},{"seriesId":98,"seasonNumber":0,"relativePath":"Specials\/S00E02.Common Car Myths Special-SDTV.mkv","path":"\/tv\/MythBusters\/Specials\/S00E02.Common Car Myths Special-SDTV.mkv","size":2210814961,"dateAdded":"2018-10-15T17:39:16.094683Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"1:34:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4482},{"seriesId":98,"seasonNumber":0,"relativePath":"Specials\/S00E05.Buster's Cut- Duct Tape Hour 1-HDTV-720p.mp4","path":"\/tv\/MythBusters\/Specials\/S00E05.Buster's Cut- Duct Tape Hour 1-HDTV-720p.mp4","size":158652147,"dateAdded":"2018-10-15T17:39:16.156731Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63416,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3497984,"videoCodec":"h264","videoFps":29.97,"resolution":"1280x720","runTime":"5:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4483},{"seriesId":98,"seasonNumber":0,"relativePath":"Specials\/S00E07.Buster's Cut- Spy Car Escape-HDTV-720p.mp4","path":"\/tv\/MythBusters\/Specials\/S00E07.Buster's Cut- Spy Car Escape-HDTV-720p.mp4","size":109501130,"dateAdded":"2018-10-15T17:39:16.27716Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63424,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3497984,"videoCodec":"h264","videoFps":29.97,"resolution":"1280x720","runTime":"3:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4484},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E01.Star Wars- Revenge of the Myth-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2014\/S2014E01.Star Wars- Revenge of the Myth-HDTV-720p.mkv","size":1259837794,"dateAdded":"2018-10-15T17:52:41.849568Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3390054,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"43:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4488},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E01.MythBusters Revealed- The Behind the Scenes Season Opener-HDTV-720p.mp4","path":"\/tv\/MythBusters\/Season 2016\/S2016E01.MythBusters Revealed- The Behind the Scenes Season Opener-HDTV-720p.mp4","size":1062412807,"dateAdded":"2018-10-15T17:52:41.937819Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3335509,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"40:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4489},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E01.Demolition Derby Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E01.Demolition Derby Special-SDTV.avi","size":733991942,"dateAdded":"2018-10-15T17:52:42.010345Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":940871,"videoCodec":"XviD","videoFps":23.976,"resolution":"624x352","runTime":"1:27:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4490},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E01.JATO Rocket Car- Mission Accomplished-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2013\/S2013E01.JATO Rocket Car- Mission Accomplished-SDTV.mp4","size":474850668,"dateAdded":"2018-10-15T17:52:42.109293Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127992,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1357284,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4491},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E01.Duct Tape Island-SDTV.avi","path":"\/tv\/MythBusters\/Season 2012\/S2012E01.Duct Tape Island-SDTV.avi","size":440215002,"dateAdded":"2018-10-15T17:52:42.200122Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1237187,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"42:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4492},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E01.Mission Impossible Face Off-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E01.Mission Impossible Face Off-SDTV.avi","size":366933390,"dateAdded":"2018-10-15T17:52:42.458271Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1003648,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4495},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E01.Chicken Gun-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E01.Chicken Gun-SDTV.avi","size":366065664,"dateAdded":"2018-10-15T17:52:42.527919Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":946961,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x386","runTime":"44:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4496},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E01.James Bond Special- Part 1-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E01.James Bond Special- Part 1-SDTV.avi","size":365796888,"dateAdded":"2018-10-15T17:52:42.663673Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158949,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":947178,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4497},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E01.Hindenburg Mystery-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E01.Hindenburg Mystery-SDTV.avi","size":365645824,"dateAdded":"2018-10-15T17:52:42.75359Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":146635,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":970177,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x288","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4498},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E01.Buster Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E01.Buster Special-SDTV.avi","size":365592576,"dateAdded":"2018-10-15T17:52:42.852084Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839623,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4499},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E01.Paper Crossbow-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E01.Paper Crossbow-SDTV.avi","size":351084544,"dateAdded":"2018-10-15T17:52:43.05258Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":939234,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"43:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4501},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E02.The Explosion Special-HDTV-720p.mp4","path":"\/tv\/MythBusters\/Season 2016\/S2016E02.The Explosion Special-HDTV-720p.mp4","size":1169516201,"dateAdded":"2018-10-15T17:52:43.136895Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154079,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3000000,"videoCodec":"x264","videoFps":24.916,"resolution":"1440x1080","runTime":"49:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4502},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E02.Pirate Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E02.Pirate Special-SDTV.avi","size":732223488,"dateAdded":"2018-10-15T17:52:43.21831Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":145602,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":993558,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"1:24:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4503},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E02.Deadliest Catch Crabtastic Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2013\/S2013E02.Deadliest Catch Crabtastic Special-SDTV.avi","size":454043580,"dateAdded":"2018-10-15T17:52:43.281753Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1282238,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4504},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E02.Fire vs Ice-SDTV.avi","path":"\/tv\/MythBusters\/Season 2012\/S2012E02.Fire vs Ice-SDTV.avi","size":444018280,"dateAdded":"2018-10-15T17:52:43.381932Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1253269,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"42:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4505},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E02.Moonshiner Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2014\/S2014E02.Moonshiner Myths-SDTV.avi","size":443033370,"dateAdded":"2018-10-15T17:52:43.502685Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1252387,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"42:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4506},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E02.The Busters of the Lost Myths-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E02.The Busters of the Lost Myths-SDTV.mp4","size":417630275,"dateAdded":"2018-10-15T17:52:43.639103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118296,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1203110,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4507},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E02.Shredded Plane-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E02.Shredded Plane-SDTV.avi","size":367163392,"dateAdded":"2018-10-15T17:52:43.799631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":848688,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4509},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E02.Blue Ice-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E02.Blue Ice-SDTV.avi","size":367158472,"dateAdded":"2018-10-15T17:52:43.910996Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1006085,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4510},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E02.Alaska Special 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E02.Alaska Special 2-SDTV.avi","size":367104000,"dateAdded":"2018-10-15T17:52:44.035057Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980781,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4511},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E02.Ultimate MythBusters-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E02.Ultimate MythBusters-SDTV.avi","size":366927350,"dateAdded":"2018-10-15T17:52:44.076551Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":989047,"videoCodec":"XviD","videoFps":29.97,"resolution":"576x320","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4512},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E02.Lead Balloon-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E02.Lead Balloon-SDTV.avi","size":366334104,"dateAdded":"2018-10-15T17:52:44.116218Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159679,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":995888,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"41:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4513},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E02.Explosive Decompression, Frog Giggin', Rear Axle-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E02.Explosive Decompression, Frog Giggin', Rear Axle-SDTV.avi","size":366163968,"dateAdded":"2018-10-15T17:52:44.156529Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951200,"videoCodec":"DivX","videoFps":23.976,"resolution":"512x288","runTime":"42:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4514},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E03.The A-Team Special-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E03.The A-Team Special-SDTV.mp4","size":518661308,"dateAdded":"2018-10-15T17:52:44.28027Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":121296,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1501482,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4517},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E03.Down and Dirty + Earthquake Survival-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2013\/S2013E03.Down and Dirty + Earthquake Survival-SDTV.mp4","size":421996583,"dateAdded":"2018-10-15T17:52:44.360294Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":116536,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1201783,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4518},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E03.Hollywood Car Crash Cliches-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E03.Hollywood Car Crash Cliches-SDTV.mp4","size":380796120,"dateAdded":"2018-10-15T17:52:44.481447Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":117616,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1071062,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4520},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E03.Banana Slip, Double Dip-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E03.Banana Slip, Double Dip-SDTV.avi","size":368230400,"dateAdded":"2018-10-15T17:52:44.554968Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":983909,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4521},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E03.Square Wheels-SDTV.avi","path":"\/tv\/MythBusters\/Season 2012\/S2012E03.Square Wheels-SDTV.avi","size":367153048,"dateAdded":"2018-10-15T17:52:44.588611Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":967653,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4522},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E03.Archimedes Death Ray Revisited-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E03.Archimedes Death Ray Revisited-SDTV.avi","size":366788608,"dateAdded":"2018-10-15T17:52:44.621765Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":129417,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":828541,"videoCodec":"XviD","videoFps":25.0,"resolution":"608x336","runTime":"50:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4523},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E03.Running on Water-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E03.Running on Water-SDTV.avi","size":366276276,"dateAdded":"2018-10-15T17:52:44.655475Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1002811,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4524},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E03.Airplane on a Conveyor Belt-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E03.Airplane on a Conveyor Belt-SDTV.avi","size":366152328,"dateAdded":"2018-10-15T17:52:44.688713Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159203,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":947696,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4525},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E03.Underwater Car Escape-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E03.Underwater Car Escape-SDTV.avi","size":365953024,"dateAdded":"2018-10-15T17:52:44.721716Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136974,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":982731,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4526},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E03.Sinking Titanic, Goldfish Memory, Trombone Explosion-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E03.Sinking Titanic, Goldfish Memory, Trombone Explosion-SDTV.avi","size":365903872,"dateAdded":"2018-10-15T17:52:44.783825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":947050,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x386","runTime":"44:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4527},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E03.Brown Note-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E03.Brown Note-SDTV.avi","size":365592576,"dateAdded":"2018-10-15T17:52:44.875962Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":838863,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4528},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E04.Car Chase Chaos + Animal Antics-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2014\/S2014E04.Car Chase Chaos + Animal Antics-HDTV-720p.mkv","size":1382531810,"dateAdded":"2018-10-15T17:52:45.027555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3884780,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"42:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4530},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E04.Cooking Chaos-HDTV-720p.mp4","path":"\/tv\/MythBusters\/Season 2016\/S2016E04.Cooking Chaos-HDTV-720p.mp4","size":1166400049,"dateAdded":"2018-10-15T17:52:45.149521Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154005,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3000000,"videoCodec":"x264","videoFps":24.911,"resolution":"1440x1080","runTime":"49:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4531},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E04.Swinging Pirates-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E04.Swinging Pirates-SDTV.mp4","size":486764260,"dateAdded":"2018-10-15T17:52:45.270207Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":117840,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1402872,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4532},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E04.Indy Car Special-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2013\/S2013E04.Indy Car Special-SDTV.mp4","size":370934894,"dateAdded":"2018-10-15T17:52:45.469459Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":115200,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1016686,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"43:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4534},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E04.Salsa Escape-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E04.Salsa Escape-SDTV.avi","size":367153152,"dateAdded":"2018-10-15T17:52:45.628805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118097,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":857512,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4536},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E04.Breakstep Bridge-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E04.Breakstep Bridge-SDTV.avi","size":367120384,"dateAdded":"2018-10-15T17:52:45.718391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":858105,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4537},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E04.YouTube Special!-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E04.YouTube Special!-SDTV.avi","size":366702924,"dateAdded":"2018-10-15T17:52:45.918219Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":948845,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4539},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E04.Bubble Trouble-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E04.Bubble Trouble-SDTV.avi","size":366314980,"dateAdded":"2018-10-15T17:52:46.116207Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000186,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4540},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E04.James Bond Special- Part 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E04.James Bond Special- Part 2-SDTV.avi","size":366262758,"dateAdded":"2018-10-15T17:52:46.209102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159678,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":947709,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4541},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E04.Helium Football-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E04.Helium Football-SDTV.avi","size":365744128,"dateAdded":"2018-10-15T17:52:46.296644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138830,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":831374,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x288","runTime":"49:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4542},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E05.Transformers-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2015\/S2015E05.Transformers-HDTV-720p.mkv","size":1277201031,"dateAdded":"2018-10-15T17:52:46.577909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3636903,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"41:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4544},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E05.Driven to Destruction-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2016\/S2016E05.Driven to Destruction-HDTV-720p.mkv","size":1122974811,"dateAdded":"2018-10-15T17:52:46.698409Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3192671,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"41:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4545},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E05.Battle of the Sexes - Round 2-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2013\/S2013E05.Battle of the Sexes - Round 2-SDTV.mp4","size":463521322,"dateAdded":"2018-10-15T17:52:46.783334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":117016,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1348895,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4546},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E05.Do Try This At Home-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E05.Do Try This At Home-SDTV.mp4","size":436097415,"dateAdded":"2018-10-15T17:52:46.874588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165310,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x360","runTime":"49:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4547},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E05.Swimming in Syrup-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E05.Swimming in Syrup-SDTV.avi","size":367679488,"dateAdded":"2018-10-15T17:52:46.970011Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":976700,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"44:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4548},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E05.Battle of the Sexes-SDTV.avi","path":"\/tv\/MythBusters\/Season 2012\/S2012E05.Battle of the Sexes-SDTV.avi","size":367230182,"dateAdded":"2018-10-15T17:52:47.15222Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":966309,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4550},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E05.Buried in Concrete-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E05.Buried in Concrete-SDTV.avi","size":367208448,"dateAdded":"2018-10-15T17:52:47.245897Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":858234,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4551},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E05.Viewers Special 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E05.Viewers Special 2-SDTV.avi","size":366713604,"dateAdded":"2018-10-15T17:52:47.415967Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160252,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":948866,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4553},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E05.Dog Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E05.Dog Myths-SDTV.avi","size":366579712,"dateAdded":"2018-10-15T17:52:47.488458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":847201,"videoCodec":"XviD","videoFps":25.0,"resolution":"608x336","runTime":"49:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4554},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E05.Torpedo Tastic-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E05.Torpedo Tastic-SDTV.avi","size":366307328,"dateAdded":"2018-10-15T17:52:47.579754Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":985254,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4555},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E05.Franklin's Kite-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E05.Franklin's Kite-SDTV.avi","size":365915056,"dateAdded":"2018-10-15T17:52:49.492928Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":990969,"videoCodec":"XviD","videoFps":29.97,"resolution":"560x352","runTime":"42:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4556},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E05.Exploding Port-a-Potty-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E05.Exploding Port-a-Potty-SDTV.avi","size":365531136,"dateAdded":"2018-10-15T17:52:49.746565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":846251,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4557},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E06.Volunteer Special-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2016\/S2016E06.Volunteer Special-HDTV-720p.mkv","size":1184063928,"dateAdded":"2018-10-15T17:52:49.821713Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3000000,"videoCodec":"x264","videoFps":25.0,"resolution":"1438x1078","runTime":"49:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4558},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E06.Motorcycle Water Ski-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2013\/S2013E06.Motorcycle Water Ski-SDTV.mp4","size":500034223,"dateAdded":"2018-10-15T17:52:49.917334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1455145,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4559},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E06.Mythssion Impossible-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E06.Mythssion Impossible-SDTV.mp4","size":499006571,"dateAdded":"2018-10-15T17:52:49.995159Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118179,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1443792,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4560},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E06.San Francisco Drift-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E06.San Francisco Drift-SDTV.mp4","size":465420714,"dateAdded":"2018-10-15T17:52:50.09088Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120480,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1371213,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4561},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E06.Driving in Heels-SDTV.avi","path":"\/tv\/MythBusters\/Season 2012\/S2012E06.Driving in Heels-SDTV.avi","size":453888372,"dateAdded":"2018-10-15T17:52:50.287752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1273899,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"42:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4562},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E06.MacGyver Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E06.MacGyver Myths-SDTV.avi","size":371509248,"dateAdded":"2018-10-15T17:52:50.369386Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":21382,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":994748,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4563},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E06.Best Animal Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E06.Best Animal Myths-SDTV.avi","size":369735680,"dateAdded":"2018-10-15T17:52:50.46625Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":991264,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x386","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4564},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E06.Cell Phones on Planes-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E06.Cell Phones on Planes-SDTV.avi","size":368078848,"dateAdded":"2018-10-15T17:52:50.529365Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":983389,"videoCodec":"XviD","videoFps":23.976,"resolution":"576x352","runTime":"43:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4565},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E06.Exploding Bumper-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E06.Exploding Bumper-SDTV.avi","size":367890432,"dateAdded":"2018-10-15T17:52:50.60035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":979746,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4566},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E06.More Myths Reopened-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E06.More Myths Reopened-SDTV.avi","size":366589952,"dateAdded":"2018-10-15T17:52:50.94992Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":129234,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":854048,"videoCodec":"XviD","videoFps":25.0,"resolution":"608x336","runTime":"49:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4569},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E06.Blow Your Own Sail-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E06.Blow Your Own Sail-SDTV.avi","size":366413526,"dateAdded":"2018-10-15T17:52:51.057425Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1002728,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4570},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E06.Is Yawning Contagious-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E06.Is Yawning Contagious-SDTV.avi","size":365582336,"dateAdded":"2018-10-15T17:52:51.124562Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839651,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4571},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E07.Failure Is Not an Option!-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2016\/S2016E07.Failure Is Not an Option!-HDTV-720p.mkv","size":1203050087,"dateAdded":"2018-10-15T17:52:51.202333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3401178,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"41:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4572},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E07.Revenge of the Myth-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E07.Revenge of the Myth-SDTV.mp4","size":434802877,"dateAdded":"2018-10-15T17:52:51.344588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1239009,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4574},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E07.Bullet Baloney-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E07.Bullet Baloney-SDTV.mp4","size":417546482,"dateAdded":"2018-10-15T17:52:51.414894Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118495,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1180857,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4575},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E07.Spy Car 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E07.Spy Car 2-SDTV.avi","size":370086708,"dateAdded":"2018-10-15T17:52:51.498716Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":991946,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4576},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E07.Alaska Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E07.Alaska Special-SDTV.avi","size":367441920,"dateAdded":"2018-10-15T17:52:51.580366Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000171,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4577},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E07.MythBusters Outtakes-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E07.MythBusters Outtakes-SDTV.avi","size":367210496,"dateAdded":"2018-10-15T17:52:51.713981Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":861035,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4578},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E07.Best Electric Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E07.Best Electric Myths-SDTV.avi","size":367167488,"dateAdded":"2018-10-15T17:52:51.770767Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118229,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":857137,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4579},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E07.Seesaw Saga-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E07.Seesaw Saga-SDTV.avi","size":367019896,"dateAdded":"2018-10-15T17:52:51.935628Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":956245,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4581},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E07.Bullets Fired Up-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E07.Bullets Fired Up-SDTV.avi","size":365932544,"dateAdded":"2018-10-15T17:52:52.485772Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138260,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":979016,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4582},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E07.Voice Flame Extinguisher-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E07.Voice Flame Extinguisher-SDTV.avi","size":365557760,"dateAdded":"2018-10-15T17:52:53.479032Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125044,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980226,"videoCodec":"XviD","videoFps":29.97,"resolution":"592x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4584},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E07.Hypermiling + Crash Cushion-SDTV.avi","path":"\/tv\/MythBusters\/Season 2013\/S2013E07.Hypermiling + Crash Cushion-SDTV.avi","size":293789362,"dateAdded":"2018-10-15T17:52:53.995362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":768232,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"41:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4585},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E08.Supersonic Ping Pong + Ice Cannon-SDTV.mkv","path":"\/tv\/MythBusters\/Season 2014\/S2014E08.Supersonic Ping Pong + Ice Cannon-SDTV.mkv","size":1389294232,"dateAdded":"2018-10-15T17:52:54.669626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":25.0,"resolution":"960x720","runTime":"43:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4586},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E08.Shark Week 2008-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E08.Shark Week 2008-SDTV.avi","size":735457280,"dateAdded":"2018-10-15T17:52:55.062207Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":966644,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"1:28:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4587},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E08.Dodge a Bullet-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E08.Dodge a Bullet-SDTV.avi","size":576822836,"dateAdded":"2018-10-15T17:52:58.195884Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1473886,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"47:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4588},{"seriesId":98,"seasonNumber":2013,"relativePath":"Season 2013\/S2013E08.Duct Tape Canyon-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2013\/S2013E08.Duct Tape Canyon-SDTV.mp4","size":460571815,"dateAdded":"2018-10-15T17:53:00.023361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118064,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1338319,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4589},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E08.Bouncing Bullet-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E08.Bouncing Bullet-SDTV.mp4","size":390287247,"dateAdded":"2018-10-15T17:53:00.879495Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":114144,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1105767,"videoCodec":"x264","videoFps":29.97,"resolution":"720x402","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4590},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E08.Thermite vs. Ice-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E08.Thermite vs. Ice-SDTV.avi","size":367507456,"dateAdded":"2018-10-15T17:53:03.242249Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":989321,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4592},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E08.Myths Revisited-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E08.Myths Revisited-SDTV.avi","size":367169536,"dateAdded":"2018-10-15T17:53:04.999017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":857118,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4593},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E08.Myths Reopened-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E08.Myths Reopened-SDTV.avi","size":366858240,"dateAdded":"2018-10-15T17:53:06.958055Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":76061,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1071881,"videoCodec":"XviD","videoFps":29.97,"resolution":"552x344","runTime":"42:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4596},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E08.Cooling a Six-Pack-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E08.Cooling a Six-Pack-SDTV.avi","size":365574144,"dateAdded":"2018-10-15T17:53:08.199186Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839406,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4598},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E09.Fire in the Hole-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E09.Fire in the Hole-SDTV.mp4","size":438266339,"dateAdded":"2018-10-15T17:53:10.3795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165326,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x360","runTime":"50:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4599},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E09.Mailbag Special-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E09.Mailbag Special-SDTV.mp4","size":410322225,"dateAdded":"2018-10-15T17:53:10.626179Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120232,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1162547,"videoCodec":"x264","videoFps":29.97,"resolution":"720x402","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4600},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E09.Prison Escape-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E09.Prison Escape-SDTV.avi","size":367648768,"dateAdded":"2018-10-15T17:53:11.733435Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1003117,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4601},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E09.Exploding Steak-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E09.Exploding Steak-SDTV.avi","size":367577127,"dateAdded":"2018-10-15T17:53:11.846153Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":982188,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4602},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E09.Best Explosions-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E09.Best Explosions-SDTV.avi","size":367194112,"dateAdded":"2018-10-15T17:53:11.934422Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":858274,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4603},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E09.Fixing a Flat-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E09.Fixing a Flat-SDTV.avi","size":366910406,"dateAdded":"2018-10-15T17:53:12.10826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1002766,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4605},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E09.Son of a Gun-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E09.Son of a Gun-SDTV.avi","size":365516800,"dateAdded":"2018-10-15T17:53:12.281724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":838744,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4607},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E09.Mind Control-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E09.Mind Control-SDTV.avi","size":364410880,"dateAdded":"2018-10-15T17:53:12.637315Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128639,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":976321,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x384","runTime":"43:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4609},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E10.Bubble Pack Plunge-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E10.Bubble Pack Plunge-SDTV.mp4","size":389656493,"dateAdded":"2018-10-15T17:53:13.303162Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119096,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1098994,"videoCodec":"x264","videoFps":29.97,"resolution":"720x402","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4610},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E10.Household Disasters-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E10.Household Disasters-SDTV.mp4","size":371952603,"dateAdded":"2018-10-15T17:53:13.377638Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119705,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1038221,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4611},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E10.Scuba Diver, Car Capers-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E10.Scuba Diver, Car Capers-SDTV.avi","size":368680960,"dateAdded":"2018-10-15T17:53:13.412025Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":984167,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x384","runTime":"43:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4612},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E10.Curving Bullets-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E10.Curving Bullets-SDTV.avi","size":367677440,"dateAdded":"2018-10-15T17:53:13.512604Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1003200,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4613},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E10.Planes, Trains and Automobiles-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E10.Planes, Trains and Automobiles-SDTV.avi","size":367368776,"dateAdded":"2018-10-15T17:53:13.577971Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":994968,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4614},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E10.Exploding Pants-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E10.Exploding Pants-SDTV.avi","size":366409728,"dateAdded":"2018-10-15T17:53:13.887018Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106384,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1001361,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x320","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4618},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E10.Shop 'til You Drop-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E10.Shop 'til You Drop-SDTV.avi","size":365631488,"dateAdded":"2018-10-15T17:53:13.998464Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839239,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4619},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E10.NASA Moon Landing-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E10.NASA Moon Landing-SDTV.avi","size":362749952,"dateAdded":"2018-10-15T17:53:14.099043Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980456,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4620},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E11.Commercial Myths-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E11.Commercial Myths-SDTV.mp4","size":574013839,"dateAdded":"2018-10-15T17:53:14.348887Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1588821,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"44:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4622},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E11.Duel Dilemmas-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E11.Duel Dilemmas-SDTV.mp4","size":397608611,"dateAdded":"2018-10-15T17:53:14.454265Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127984,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1119801,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4623},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E11.Car vs. Rain-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E11.Car vs. Rain-SDTV.avi","size":367466074,"dateAdded":"2018-10-15T17:53:14.560292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":122048,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1002358,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4624},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E11.Let There Be Light-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E11.Let There Be Light-SDTV.avi","size":367262886,"dateAdded":"2018-10-15T17:53:14.662376Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":999984,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4625},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E11.Ancient Death Ray-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E11.Ancient Death Ray-SDTV.avi","size":367228928,"dateAdded":"2018-10-15T17:53:15.085145Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":858136,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4626},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E11.MythBusters- Revealed-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E11.MythBusters- Revealed-SDTV.avi","size":367216640,"dateAdded":"2018-10-15T17:53:15.160582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":859113,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4627},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E11.Viral Hour-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E11.Viral Hour-SDTV.avi","size":366278656,"dateAdded":"2018-10-15T17:53:15.342335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":979239,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4629},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E11.Big Rig Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E11.Big Rig Myths-SDTV.avi","size":365939648,"dateAdded":"2018-10-15T17:53:15.414534Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":993274,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4630},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E11.Crimes and Myth-demeanors-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E11.Crimes and Myth-demeanors-SDTV.avi","size":365891584,"dateAdded":"2018-10-15T17:53:15.510395Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137363,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":977746,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"43:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4631},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E12.Hollywood Gunslingers-SDTV.avi","path":"\/tv\/MythBusters\/Season 2012\/S2012E12.Hollywood Gunslingers-SDTV.avi","size":665422342,"dateAdded":"2018-10-15T17:53:15.602872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1938957,"videoCodec":"XviD","videoFps":29.97,"resolution":"720x404","runTime":"42:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4632},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E12.Elevator of Death, Levitation Machine-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E12.Elevator of Death, Levitation Machine-SDTV.avi","size":367179776,"dateAdded":"2018-10-15T17:53:16.100653Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":858283,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4634},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E12.Paper Armor-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E12.Paper Armor-SDTV.avi","size":367046136,"dateAdded":"2018-10-15T17:53:16.175246Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":994551,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4635},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E12.Knock Your Socks Off-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E12.Knock Your Socks Off-SDTV.avi","size":366671502,"dateAdded":"2018-10-15T17:53:16.255723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":950088,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4636},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E12.Grenades and Guts-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E12.Grenades and Guts-SDTV.avi","size":366520320,"dateAdded":"2018-10-15T17:53:16.368828Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":836365,"videoCodec":"XviD","videoFps":25.0,"resolution":"608x336","runTime":"49:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4637},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E12.Hollywood On Trial-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E12.Hollywood On Trial-SDTV.avi","size":365500416,"dateAdded":"2018-10-15T17:53:16.482595Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839639,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4638},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E12.Phone Book Friction-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E12.Phone Book Friction-SDTV.avi","size":365371392,"dateAdded":"2018-10-15T17:53:16.588116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":977394,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4639},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E12.Steam Cannon-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E12.Steam Cannon-SDTV.avi","size":352976604,"dateAdded":"2018-10-15T17:53:16.854126Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":942253,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x360","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4640},{"seriesId":98,"seasonNumber":2012,"relativePath":"Season 2012\/S2012E13.Jawsome Shark Special-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2012\/S2012E13.Jawsome Shark Special-SDTV.mp4","size":486371193,"dateAdded":"2018-10-15T17:53:16.958888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127968,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1429218,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4641},{"seriesId":98,"seasonNumber":2004,"relativePath":"Season 2004\/S2004E13.Beat the Radar Detector-SDTV.avi","path":"\/tv\/MythBusters\/Season 2004\/S2004E13.Beat the Radar Detector-SDTV.avi","size":399649036,"dateAdded":"2018-10-15T17:53:17.128057Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1074228,"videoCodec":"x264","videoFps":29.97,"resolution":"640x392","runTime":"43:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4642},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E13.Duct Tape Hour-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E13.Duct Tape Hour-SDTV.avi","size":372993864,"dateAdded":"2018-10-15T17:53:17.234693Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000468,"videoCodec":"XviD","videoFps":29.97,"resolution":"704x396","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4643},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E13.Bikes and Bazookas-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E13.Bikes and Bazookas-SDTV.avi","size":366567774,"dateAdded":"2018-10-15T17:53:17.553329Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1010474,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4645},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E13.Killer Whirlpool-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E13.Killer Whirlpool-SDTV.avi","size":365946880,"dateAdded":"2018-10-15T17:53:17.645621Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137116,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":978925,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"43:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4646},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E13.Breaking Glass-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E13.Breaking Glass-SDTV.avi","size":365539328,"dateAdded":"2018-10-15T17:53:17.74343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":131176,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":838819,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4647},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E13.Snow Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E13.Snow Special-SDTV.avi","size":364511232,"dateAdded":"2018-10-15T17:53:17.804937Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":984693,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4648},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E13.Water Stun Gun-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E13.Water Stun Gun-SDTV.avi","size":362557440,"dateAdded":"2018-10-15T17:53:17.898446Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":979132,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4649},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E14.Blind Driving-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E14.Blind Driving-SDTV.avi","size":368928768,"dateAdded":"2018-10-15T17:53:18.128937Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":148000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":972992,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4650},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E14.Baseball Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E14.Baseball Myths-SDTV.avi","size":367876096,"dateAdded":"2018-10-15T17:53:18.237451Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1003344,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4651},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E14.Dirty vs. Clean Car-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E14.Dirty vs. Clean Car-SDTV.avi","size":366802154,"dateAdded":"2018-10-15T17:53:18.434874Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":941416,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"45:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4653},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E14.Newton's Crane Cradle-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E14.Newton's Crane Cradle-SDTV.avi","size":366715572,"dateAdded":"2018-10-15T17:53:18.497161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1011164,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4654},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E14.Diet Coke and Mentos-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E14.Diet Coke and Mentos-SDTV.avi","size":365883392,"dateAdded":"2018-10-15T17:53:18.555408Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136659,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980391,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4655},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E14.Jet Pack-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E14.Jet Pack-SDTV.avi","size":365559808,"dateAdded":"2018-10-15T17:53:18.632852Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":131024,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839194,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4656},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E15.Ninjas 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E15.Ninjas 2-SDTV.avi","size":367460352,"dateAdded":"2018-10-15T17:53:18.699835Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1008345,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4657},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E15.Viewer Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E15.Viewer Special-SDTV.avi","size":367214592,"dateAdded":"2018-10-15T17:53:18.951422Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":133464,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":990376,"videoCodec":"XviD","videoFps":29.97,"resolution":"592x336","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4659},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E15.Greased Lightning-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E15.Greased Lightning-SDTV.avi","size":367118336,"dateAdded":"2018-10-15T17:53:19.048125Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112295,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":999345,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4660},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E15.Walk a Straight Line-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E15.Walk a Straight Line-SDTV.avi","size":366384046,"dateAdded":"2018-10-15T17:53:19.14514Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1011031,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4661},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E15.Killer Brace Position-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E15.Killer Brace Position-SDTV.avi","size":365549568,"dateAdded":"2018-10-15T17:53:19.47609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":32000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":839384,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"49:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4662},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E15.Shattering Subwoofer-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E15.Shattering Subwoofer-SDTV.avi","size":365217792,"dateAdded":"2018-10-15T17:53:19.572588Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":972752,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4663},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E16.Bullet Proof Water-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E16.Bullet Proof Water-SDTV.avi","size":369358848,"dateAdded":"2018-10-15T17:53:19.737944Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":996060,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4664},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E16.Duct Tape Plane-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E16.Duct Tape Plane-SDTV.avi","size":366639036,"dateAdded":"2018-10-15T17:53:19.906722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1011590,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4666},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E16.Red Flag to a Bull-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E16.Red Flag to a Bull-SDTV.avi","size":366501888,"dateAdded":"2018-10-15T17:53:20.00417Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":981312,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4667},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E16.Hurricane Windows-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E16.Hurricane Windows-SDTV.avi","size":366499840,"dateAdded":"2018-10-15T17:53:20.338321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":111547,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":998116,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4668},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E16.Crimes and Myth-demeanors 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E16.Crimes and Myth-demeanors 2-SDTV.avi","size":366145536,"dateAdded":"2018-10-15T17:53:20.442632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128226,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":990521,"videoCodec":"XviD","videoFps":23.976,"resolution":"560x352","runTime":"43:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4669},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E16.Alcohol Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E16.Alcohol Myths-SDTV.avi","size":364007424,"dateAdded":"2018-10-15T17:53:20.515397Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":981626,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4670},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E17.MythBusters Jaws Special-SDTV.mkv","path":"\/tv\/MythBusters\/Season 2005\/S2005E17.MythBusters Jaws Special-SDTV.mkv","size":2368737109,"dateAdded":"2018-10-15T17:53:21.734093Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"1:38:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4671},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E17.Superhero Hour-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E17.Superhero Hour-SDTV.avi","size":367788032,"dateAdded":"2018-10-15T17:53:22.112391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980686,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4672},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E17.Motorcycle Flip-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E17.Motorcycle Flip-SDTV.avi","size":367693824,"dateAdded":"2018-10-15T17:53:26.385173Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":983683,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4673},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E17.Flying Guillotine-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E17.Flying Guillotine-SDTV.avi","size":367054674,"dateAdded":"2018-10-15T17:53:27.096792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1011111,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4674},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E17.Crash and Burn-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E17.Crash and Burn-SDTV.avi","size":366467720,"dateAdded":"2018-10-15T17:53:27.500887Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":984045,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4676},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E17.Earthquake Machine-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E17.Earthquake Machine-SDTV.avi","size":365774848,"dateAdded":"2018-10-15T17:53:28.37113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136244,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1020720,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"41:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4677},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E18.Myth Evolution 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E18.Myth Evolution 2-SDTV.avi","size":367362458,"dateAdded":"2018-10-15T17:53:28.411724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":950790,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4678},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E18.Drain Disaster-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E18.Drain Disaster-SDTV.avi","size":366929710,"dateAdded":"2018-10-15T17:53:28.728617Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":149672,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":986095,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4679},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E18.Myth Evolution!-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E18.Myth Evolution!-SDTV.avi","size":366817280,"dateAdded":"2018-10-15T17:53:28.927518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000564,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4680},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E18.Deadly Straw-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E18.Deadly Straw-SDTV.avi","size":365985792,"dateAdded":"2018-10-15T17:53:29.131891Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138051,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":985239,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x320","runTime":"42:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4682},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E18.Coffin Punch-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E18.Coffin Punch-SDTV.avi","size":365507456,"dateAdded":"2018-10-15T17:53:29.296072Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158313,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":946743,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4683},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E18.Border Slingshot-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E18.Border Slingshot-SDTV.avi","size":365471744,"dateAdded":"2018-10-15T17:53:31.281306Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":977787,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x400","runTime":"43:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4684},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E19.Mega Movie Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E19.Mega Movie Myths-SDTV.avi","size":735221760,"dateAdded":"2018-10-15T17:53:32.102656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":967307,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"1:27:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4685},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E19.Location, Location, Location-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E19.Location, Location, Location-SDTV.avi","size":367222402,"dateAdded":"2018-10-15T17:53:33.234739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1010793,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4686},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E19.Killer Tissue Box-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E19.Killer Tissue Box-SDTV.avi","size":367165440,"dateAdded":"2018-10-15T17:53:37.216335Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118176,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":858262,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4687},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E19.Dumpster Diving-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E19.Dumpster Diving-SDTV.avi","size":366969076,"dateAdded":"2018-10-15T17:53:37.40319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":947173,"videoCodec":"XviD","videoFps":23.976,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4689},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E19.Trail Blazers-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E19.Trail Blazers-SDTV.avi","size":366768128,"dateAdded":"2018-10-15T17:53:37.486175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1001406,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4690},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E19.End With A Bang-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E19.End With A Bang-SDTV.avi","size":366303840,"dateAdded":"2018-10-15T17:53:37.589452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158942,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":948637,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4691},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E20.Antacid Jail Break-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E20.Antacid Jail Break-SDTV.avi","size":367311350,"dateAdded":"2018-10-15T17:53:37.751688Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":944928,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4692},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E20.Escape Slide Parachute-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E20.Escape Slide Parachute-SDTV.avi","size":367165440,"dateAdded":"2018-10-15T17:53:37.84781Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":859430,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4693},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E20.Wet and Wild-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E20.Wet and Wild-SDTV.avi","size":366508986,"dateAdded":"2018-10-15T17:53:38.055531Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1011964,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4695},{"seriesId":98,"seasonNumber":2008,"relativePath":"Season 2008\/S2008E20.Viewer Special Threequel-SDTV.avi","path":"\/tv\/MythBusters\/Season 2008\/S2008E20.Viewer Special Threequel-SDTV.avi","size":366174247,"dateAdded":"2018-10-15T17:53:38.358471Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980516,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4697},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E20.Killer Cable Snaps-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E20.Killer Cable Snaps-SDTV.avi","size":365295616,"dateAdded":"2018-10-15T17:53:38.417926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":973349,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4698},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E21.Super Sized Myths!-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E21.Super Sized Myths!-SDTV.avi","size":732672000,"dateAdded":"2018-10-15T17:53:38.501378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":121045,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":986706,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"1:27:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4699},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E21.MythBusters Revisited-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E21.MythBusters Revisited-SDTV.avi","size":367286272,"dateAdded":"2018-10-15T17:53:38.604018Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":857104,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4700},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E21.Wheel of Mythfortune-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E21.Wheel of Mythfortune-SDTV.avi","size":367134748,"dateAdded":"2018-10-15T17:53:38.663612Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1008444,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4701},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E21.Unarmed and Unharmed-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E21.Unarmed and Unharmed-SDTV.avi","size":367106386,"dateAdded":"2018-10-15T17:53:38.740915Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":962151,"videoCodec":"XviD","videoFps":23.976,"resolution":"624x352","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4702},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E21.Air Cylinder Rocket-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E21.Air Cylinder Rocket-SDTV.avi","size":365187072,"dateAdded":"2018-10-15T17:53:38.896622Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":972972,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4704},{"seriesId":98,"seasonNumber":2011,"relativePath":"Season 2011\/S2011E22.Toilet Bomb-SDTV.avi","path":"\/tv\/MythBusters\/Season 2011\/S2011E22.Toilet Bomb-SDTV.avi","size":367208870,"dateAdded":"2018-10-15T17:53:38.992511Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1015931,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4705},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E22.Chinese Invasion Alarm-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E22.Chinese Invasion Alarm-SDTV.avi","size":366413824,"dateAdded":"2018-10-15T17:53:39.20376Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1022692,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x284","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4707},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E22.Shooting Fish in a Barrel-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E22.Shooting Fish in a Barrel-SDTV.avi","size":366239744,"dateAdded":"2018-10-15T17:53:39.264792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126585,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":994608,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4708},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E22.More Myths Revisited-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E22.More Myths Revisited-SDTV.avi","size":365955072,"dateAdded":"2018-10-15T17:53:39.318046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":130000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":973622,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x384","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4709},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E22.Hidden Nasties-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E22.Hidden Nasties-SDTV.avi","size":363974656,"dateAdded":"2018-10-15T17:53:39.404236Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":984416,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4710},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E23.Confederate Rocket-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E23.Confederate Rocket-SDTV.avi","size":367179776,"dateAdded":"2018-10-15T17:53:39.493399Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":849675,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4711},{"seriesId":98,"seasonNumber":2009,"relativePath":"Season 2009\/S2009E23.Mini Myth Mayhem-SDTV.avi","path":"\/tv\/MythBusters\/Season 2009\/S2009E23.Mini Myth Mayhem-SDTV.avi","size":366663680,"dateAdded":"2018-10-15T17:53:39.701936Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106742,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1000844,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4713},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E23.Pirates 2-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E23.Pirates 2-SDTV.avi","size":365574032,"dateAdded":"2018-10-15T17:53:39.79965Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159709,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":958616,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4714},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E23.Exploding Lighter-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E23.Exploding Lighter-SDTV.avi","size":364894208,"dateAdded":"2018-10-15T17:53:39.872073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":989777,"videoCodec":"XviD","videoFps":29.97,"resolution":"576x352","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4715},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E24.Concrete Glider-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E24.Concrete Glider-SDTV.avi","size":366303232,"dateAdded":"2018-10-15T17:53:40.173317Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":130000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":974116,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x384","runTime":"43:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4717},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E24.Confederate Steam Gun-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E24.Confederate Steam Gun-SDTV.avi","size":365618388,"dateAdded":"2018-10-15T17:53:40.295763Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159325,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":959490,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4718},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E24.Vodka Myths-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E24.Vodka Myths-SDTV.avi","size":359714816,"dateAdded":"2018-10-15T17:53:40.404199Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":972010,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x384","runTime":"42:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4719},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E25.Steel Toe Amputation-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E25.Steel Toe Amputation-SDTV.avi","size":367196160,"dateAdded":"2018-10-15T17:53:40.50047Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":852322,"videoCodec":"XviD","videoFps":25.0,"resolution":"624x352","runTime":"49:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4720},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E25.Firearms Folklore-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E25.Firearms Folklore-SDTV.avi","size":366108672,"dateAdded":"2018-10-15T17:53:40.695095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137716,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":973529,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x288","runTime":"43:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4722},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E25.Air Plane Hour-SDTV.avi","path":"\/tv\/MythBusters\/Season 2007\/S2007E25.Air Plane Hour-SDTV.avi","size":365702274,"dateAdded":"2018-10-15T17:53:40.764509Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159968,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":958901,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4723},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E26.Anti-Gravity Device-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E26.Anti-Gravity Device-SDTV.avi","size":365750272,"dateAdded":"2018-10-15T17:53:40.965623Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137524,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":983035,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4725},{"seriesId":98,"seasonNumber":2005,"relativePath":"Season 2005\/S2005E26.Seasickness - Kill or Cure-SDTV.avi","path":"\/tv\/MythBusters\/Season 2005\/S2005E26.Seasickness - Kill or Cure-SDTV.avi","size":365680640,"dateAdded":"2018-10-15T17:53:41.067187Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":980572,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"43:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4726},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E27.Holiday Special-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E27.Holiday Special-SDTV.avi","size":365983744,"dateAdded":"2018-10-15T17:53:41.254256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138247,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1008984,"videoCodec":"XviD","videoFps":29.97,"resolution":"512x304","runTime":"42:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4728},{"seriesId":98,"seasonNumber":2006,"relativePath":"Season 2006\/S2006E28.22,000 Foot Fall-SDTV.avi","path":"\/tv\/MythBusters\/Season 2006\/S2006E28.22,000 Foot Fall-SDTV.avi","size":367493120,"dateAdded":"2018-10-15T17:53:41.301411Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1017479,"videoCodec":"XviD","videoFps":29.97,"resolution":"624x352","runTime":"42:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4729},{"seriesId":98,"seasonNumber":2018,"relativePath":"Season 2018\/S2018E02.Pane in the Glass-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2018\/S2018E02.Pane in the Glass-WEBDL-720p.mkv","size":981975771,"dateAdded":"2018-10-15T18:16:38.752546Z","sceneName":"MythBusters.S20E08.Fire.Pane.in.The.Glass.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126784,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2952618,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4793},{"seriesId":98,"seasonNumber":2017,"relativePath":"Season 2017\/S2017E01.Heads Will Roll-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2017\/S2017E01.Heads Will Roll-WEBDL-720p.mkv","size":1088516599,"dateAdded":"2018-10-15T18:28:39.575104Z","sceneName":"MythBusters.S20E01.Heads.Will.Roll.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126745,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3287519,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4794},{"seriesId":98,"seasonNumber":2017,"relativePath":"Season 2017\/S2017E02.Chimney Cannon-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2017\/S2017E02.Chimney Cannon-WEBDL-720p.mkv","size":1006015393,"dateAdded":"2018-10-15T18:35:50.709158Z","sceneName":"MythBusters.S20E02.Chimney.Cannon.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126780,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3028136,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4795},{"seriesId":98,"seasonNumber":2018,"relativePath":"Season 2018\/S2018E04.Spike in the Road-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2018\/S2018E04.Spike in the Road-WEBDL-720p.mkv","size":1300668607,"dateAdded":"2018-10-15T18:40:33.526635Z","sceneName":"MythBusters.S20E10.Spike.in.the.Road.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126786,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3952632,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4796},{"seriesId":98,"seasonNumber":2017,"relativePath":"Season 2017\/S2017E05.Invisible Assassins-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2017\/S2017E05.Invisible Assassins-WEBDL-720p.mkv","size":909092477,"dateAdded":"2018-10-15T18:44:10.874191Z","sceneName":"MythBusters.S20E05.Invisible.Assassins.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126787,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2723631,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4797},{"seriesId":98,"seasonNumber":2017,"relativePath":"Season 2017\/S2017E03.Earthquake Water Heater-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2017\/S2017E03.Earthquake Water Heater-WEBDL-720p.mkv","size":968401503,"dateAdded":"2018-10-15T18:48:20.66121Z","sceneName":"MythBusters.S20E03.Earthquake.Water.Heater.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126758,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2910348,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4798},{"seriesId":98,"seasonNumber":2017,"relativePath":"Season 2017\/S2017E04.Rock 'n' Roll Road Rage-WEBDL-720p REAL.mkv","path":"\/tv\/MythBusters\/Season 2017\/S2017E04.Rock 'n' Roll Road Rage-WEBDL-720p REAL.mkv","size":1005125963,"dateAdded":"2018-10-15T18:52:40.608222Z","sceneName":"MythBusters.S20E04.Rock.n.Roll.Road.Rage.REAL.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":1,"isRepack":false}},"mediaInfo":{"audioBitrate":126783,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3025051,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4799},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E12.Unfinished Business-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E12.Unfinished Business-SDTV.mp4","size":353088721,"dateAdded":"2018-10-15T19:04:14.691115Z","sceneName":"MythBusters.S15E12.Unfinished.Business.HDTV.x264-MiNDTHEGAP[ettv]","releaseGroup":"MiNDTHEGAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124616,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1005250,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4800},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E15.Plane Boarding + Bite the Bullet-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E15.Plane Boarding + Bite the Bullet-SDTV.mp4","size":399840528,"dateAdded":"2018-10-15T19:12:46.164618Z","sceneName":"Mythbusters.S11E09.Plane.Boarding.Bite.the.Bullet.HDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1137203,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4801},{"seriesId":98,"seasonNumber":2018,"relativePath":"Season 2018\/S2018E06.Backseat Getaway Driver-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2018\/S2018E06.Backseat Getaway Driver-WEBDL-720p.mkv","size":1126486546,"dateAdded":"2018-10-15T19:21:30.596842Z","sceneName":"MythBusters.S20E12.Backseat.Getaway.Driver.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126780,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3406452,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4802},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E14.Star Wars- The Myths Strike Back-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E14.Star Wars- The Myths Strike Back-SDTV.mp4","size":297357788,"dateAdded":"2018-10-15T19:44:37.612087Z","sceneName":"MythBusters.S15E14.Star.Wars.The.Myths.Strike.Back.HDTV.x264-W4F[ettv]","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":819025,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4803},{"seriesId":98,"seasonNumber":2018,"relativePath":"Season 2018\/S2018E01.Fire Arrow vs. Gas Tank-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2018\/S2018E01.Fire Arrow vs. Gas Tank-WEBDL-720p.mkv","size":895360800,"dateAdded":"2018-10-15T19:46:43.614321Z","sceneName":"MythBusters.S20E07.Fire.Arrow.vs.Gas.Tank.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126768,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2680373,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4804},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E01.The Simpsons Special-HDTV-720p REAL.mkv","path":"\/tv\/MythBusters\/Season 2015\/S2015E01.The Simpsons Special-HDTV-720p REAL.mkv","size":1489161295,"dateAdded":"2018-10-15T19:48:34.706365Z","sceneName":"MythBusters.S15E01.The.Simpsons.Special.REAL.720p.HDTV.x264-DHD","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":1,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4193558,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4805},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E04.Video Games Special-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2015\/S2015E04.Video Games Special-HDTV-720p.mkv","size":1140093662,"dateAdded":"2018-10-15T19:52:39.244861Z","sceneName":"MythBusters.S15E04.Video.Games.Special.720p.HDTV.x264-DHD[rarbg]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3120949,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4806},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E11.Supernatural Shooters-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E11.Supernatural Shooters-SDTV.mp4","size":343759177,"dateAdded":"2018-10-15T19:57:14.476192Z","sceneName":"MythBusters.S15E11.Supernatural.Shooters.HDTV.x264-MiNDTHEGAP[ettv]","releaseGroup":"MiNDTHEGAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125256,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":974388,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4807},{"seriesId":98,"seasonNumber":2017,"relativePath":"Season 2017\/S2017E06.Dead Body Double-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2017\/S2017E06.Dead Body Double-WEBDL-720p.mkv","size":998676781,"dateAdded":"2018-10-15T19:58:58.113354Z","sceneName":"MythBusters.S20E06.Dead.Body.Double.iNTERNAL.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126735,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3004930,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4808},{"seriesId":98,"seasonNumber":2018,"relativePath":"Season 2018\/S2018E05.Dynamite Deposit-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2018\/S2018E05.Dynamite Deposit-HDTV-720p.mkv","size":1160010930,"dateAdded":"2018-10-15T19:59:13.200863Z","sceneName":"MythBusters.S20E11.Dynamite.Deposit.720p.HDTV.x264-W4F[eztv]","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3293224,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4809},{"seriesId":98,"seasonNumber":2018,"relativePath":"Season 2018\/S2018E03.Wild Wild West-WEBDL-720p.mkv","path":"\/tv\/MythBusters\/Season 2018\/S2018E03.Wild Wild West-WEBDL-720p.mkv","size":1150079439,"dateAdded":"2018-10-15T20:00:57.737913Z","sceneName":"MythBusters.S20E09.Wild.Wild.West.720p.WEBRip.x264-DHD[ettv]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126760,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480740,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4810},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E10.Dangerous Driving-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E10.Dangerous Driving-SDTV.mp4","size":291893803,"dateAdded":"2018-10-15T20:05:04.978698Z","sceneName":"MythBusters.S15E10.Dangerous.Driving.HDTV.x264-MiNDTHEGAP[ettv]","releaseGroup":"MiNDTHEGAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124232,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":808990,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4811},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E08.Flights of Fantasy-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2015\/S2015E08.Flights of Fantasy-HDTV-720p.mkv","size":1077242859,"dateAdded":"2018-10-15T20:06:26.950631Z","sceneName":"MythBusters.S15E08.Flights.Of.Fantasy.720p.HDTV.x264-MiNDTHEGAP[rarbg]","releaseGroup":"MiNDTHEGAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3074317,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x718","runTime":"41:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4812},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E10.Grand Finale-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2016\/S2016E10.Grand Finale-HDTV-720p.mkv","size":1217277783,"dateAdded":"2018-10-15T20:09:35.751288Z","sceneName":"MythBusters.S16E09.Grand.Finale.720p.HDTV.x264-DHD[rarbg]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3446297,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4813},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E14.Traffic Tricks-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E14.Traffic Tricks-SDTV.mp4","size":567974961,"dateAdded":"2018-10-15T20:14:14.579174Z","sceneName":"MythBusters.S14E06.Traffic.Tricks.CONVERT.HDTV.x264-WNN","releaseGroup":"WNN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1369580,"videoCodec":"x264","videoFps":25.0,"resolution":"720x404","runTime":"49:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4814},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E07.Blow It Out of the Water-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2015\/S2015E07.Blow It Out of the Water-HDTV-720p.mkv","size":1342749088,"dateAdded":"2018-10-15T21:00:13.503309Z","sceneName":"MythBusters.S15E07.Blow.It.Out.Of.The.Water.iNTERNAL.720p.HDTV.x264-DHD[rarbg]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3743551,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4815},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E03.Tanker Crush-HDTV-720p Proper.mkv","path":"\/tv\/MythBusters\/Season 2016\/S2016E03.Tanker Crush-HDTV-720p Proper.mkv","size":1245794036,"dateAdded":"2018-10-15T21:42:45.299199Z","sceneName":"MythBusters.S16E02.Tanker.Crush.PROPER.720p.HDTV.x264-MiNDTHEGAP[rarbg]","releaseGroup":"MiNDTHEGAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3522210,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x718","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4816},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E11.The Reunion-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2016\/S2016E11.The Reunion-HDTV-720p.mkv","size":1097533783,"dateAdded":"2018-10-15T22:07:18.79752Z","sceneName":"MythBusters.S16E10.The.Reunion.Special.720p.HDTV.x264-DHD[rarbg]","releaseGroup":"DHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3069447,"videoCodec":"x264","videoFps":25.0,"resolution":"1280x720","runTime":"42:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4817},{"seriesId":98,"seasonNumber":2016,"relativePath":"Season 2016\/S2016E09.The Reddit Special-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2016\/S2016E09.The Reddit Special-SDTV.mp4","size":344505914,"dateAdded":"2018-10-16T02:53:59.601868Z","sceneName":"MythBusters.S16E08.The.Reddit.Special.HDTV.x264-W4F[ettv]","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":944956,"videoCodec":"x264","videoFps":25.0,"resolution":"720x404","runTime":"42:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4822},{"seriesId":98,"seasonNumber":2015,"relativePath":"Season 2015\/S2015E09.Accidental Ammo-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2015\/S2015E09.Accidental Ammo-SDTV.mp4","size":402483671,"dateAdded":"2018-10-16T06:17:37.22532Z","sceneName":"MythBusters.S15E09.Accidental.Ammo.HDTV.x264-MiNDTHEGAP[rarbg]","releaseGroup":"MiNDTHEGAP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124720,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1133116,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"42:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4823},{"seriesId":98,"seasonNumber":2014,"relativePath":"Season 2014\/S2014E13.Laws of Attraction-SDTV.mp4","path":"\/tv\/MythBusters\/Season 2014\/S2014E13.Laws of Attraction-SDTV.mp4","size":319236606,"dateAdded":"2018-10-16T14:48:57.621164Z","sceneName":"Mythbusters.S14E05.Laws.of.Attraction.HDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":889571,"videoCodec":"x264","videoFps":29.97,"resolution":"720x404","runTime":"41:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4852},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E20.Exploding Water Heater-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2007\/S2007E20.Exploding Water Heater-HDTV-720p.mkv","size":1206381786,"dateAdded":"2020-03-17T21:40:13.231094Z","sceneName":"MythBusters.S05E20.Exploding.Water.Heater.iNTERNAL.720p.HDTV.x264-REGRET[rarbg]","releaseGroup":"REGRET","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3395083,"videoCodec":"x264","videoFps":29.97,"resolution":"1274x720","runTime":"42:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12717},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E09.Walking On Water-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2007\/S2007E09.Walking On Water-HDTV-720p.mkv","size":1243594554,"dateAdded":"2020-03-17T21:43:13.152624Z","sceneName":"MythBusters.S05E09.Walking.On.Water.iNTERNAL.720p.HDTV.x264-REGRET[rarbg]","releaseGroup":"REGRET","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3511324,"videoCodec":"x264","videoFps":29.97,"resolution":"1272x720","runTime":"42:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12718},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E10.Western Myths-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2007\/S2007E10.Western Myths-HDTV-720p.mkv","size":1288953343,"dateAdded":"2020-03-20T02:53:05.694854Z","sceneName":"MythBusters.S05E10.Western.Myths.720p.HDTV.x264-REGRET[rarbg]","releaseGroup":"REGRET","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3653256,"videoCodec":"x264","videoFps":29.97,"resolution":"1272x720","runTime":"42:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12732},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E04.Speed Cameras-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2007\/S2007E04.Speed Cameras-HDTV-720p.mkv","size":1089282504,"dateAdded":"2020-04-12T18:20:55.699353Z","sceneName":"MythBusters.S05E04.Speed.Cameras.720p.HDTV.x264-REGRET[rarbg]","releaseGroup":"REGRET","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3110307,"videoCodec":"x264","videoFps":29.97,"resolution":"1278x720","runTime":"41:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12885},{"seriesId":98,"seasonNumber":2007,"relativePath":"Season 2007\/S2007E08.Birds in a Truck-HDTV-720p.mkv","path":"\/tv\/MythBusters\/Season 2007\/S2007E08.Birds in a Truck-HDTV-720p.mkv","size":976980101,"dateAdded":"2020-04-12T18:21:04.338612Z","sceneName":"MythBusters.S05E08.Voice.Flame.Extinguisher.iNTERNAL.720p.HDTV.x264-REGRET[rarbg]","releaseGroup":"REGRET","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2749542,"videoCodec":"x264","videoFps":29.97,"resolution":"1278x720","runTime":"41:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12886},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E01.Jet Assisted Chevy-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E01.Jet Assisted Chevy-WEBDL-480p.mkv","size":1054165778,"dateAdded":"2021-06-21T00:41:05.690851Z","sceneName":"Mythbusters.S2003E01.Jet.Assisted.57.Chevy.Pilot.1.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2567839,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"50:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18440},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E02.Biscuit Bazooka-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E02.Biscuit Bazooka-WEBDL-480p.mkv","size":1108945432,"dateAdded":"2021-06-21T00:42:52.833914Z","sceneName":"Mythbusters.S2003E02.Biscuit.Bazooka.Pilot.2.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2714602,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"50:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18441},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E03.Poppy-Seed Drug Test-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E03.Poppy-Seed Drug Test-WEBDL-480p.mkv","size":1108863627,"dateAdded":"2021-06-21T00:44:37.814258Z","sceneName":"Mythbusters.S2003E03.Poppy.Seed.Drug.Test.Pilot.3.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2712789,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"50:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18442},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E04.Exploding Toilet-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E04.Exploding Toilet-WEBDL-480p.mkv","size":954782839,"dateAdded":"2021-06-21T00:46:24.326054Z","sceneName":"Mythbusters.S2003E04.Exploding.Toilet.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2338935,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"49:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18443},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E05.Cell Phone Destroys Gas Station-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E05.Cell Phone Destroys Gas Station-WEBDL-480p.mkv","size":970996461,"dateAdded":"2021-06-21T00:48:11.05279Z","sceneName":"Mythbusters.S2003E05.Cell.Phone.Destroys.Gas.Station.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2348838,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"50:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18444},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E06.Barrel of Bricks-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E06.Barrel of Bricks-WEBDL-480p.mkv","size":1046151121,"dateAdded":"2021-06-21T00:49:58.746788Z","sceneName":"Mythbusters.S2003E06.Barrel.Of.Bricks.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2575965,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"49:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18445},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E07.Penny Drop-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E07.Penny Drop-WEBDL-480p.mkv","size":1014143665,"dateAdded":"2021-06-21T00:51:45.68263Z","sceneName":"Mythbusters.S2003E07.Penny.Drop.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2490688,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"49:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18446},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E08.Buried Alive-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E08.Buried Alive-WEBDL-480p.mkv","size":984025233,"dateAdded":"2021-06-21T00:53:32.652309Z","sceneName":"Mythbusters.S2003E08.Buried.Alive.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2379690,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"50:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18447},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E09.Lightning Strikes + Tongue Piercing-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E09.Lightning Strikes + Tongue Piercing-WEBDL-480p.mkv","size":995715840,"dateAdded":"2021-06-21T00:55:18.981786Z","sceneName":"Mythbusters.S2003E09.Lightning.Strikes.Tongue.Piercing.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2440899,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"49:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18448},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E10.Stinky Car, Raccoon Rocket-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E10.Stinky Car, Raccoon Rocket-WEBDL-480p.mkv","size":1036752785,"dateAdded":"2021-06-21T00:57:05.114287Z","sceneName":"Mythbusters.S2003E10.Stinky.Car.Raccoon.Rocket.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2550797,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"49:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18449},{"seriesId":98,"seasonNumber":2003,"relativePath":"Season 2003\/S2003E11.Alcatraz Escape-WEBDL-480p.mkv","path":"\/tv\/MythBusters\/Season 2003\/S2003E11.Alcatraz Escape-WEBDL-480p.mkv","size":973242099,"dateAdded":"2021-06-21T00:58:50.433572Z","sceneName":"Mythbusters.S2003E11.Escape.From.Alcatraz.576p.AUS.AMZN.WEB-DL.DD+2.0.H.264-SmartIdiot","releaseGroup":"SmartIdiot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2380712,"videoCodec":"h264","videoFps":25.0,"resolution":"720x576","runTime":"49:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18450}],"queue":[]},"158":{"series":{"title":"Bee and PuppyCat: Lazy in Space","alternateTitles":[],"sortTitle":"bee puppycat lazy in space","status":"upcoming","ended":false,"network":"Cartoon Network","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/170\/poster.jpg?lastWrite=637036748281605500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d32cdf60a798.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/170\/fanart.jpg?lastWrite=637036747997451120","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d32cd2cc94ad.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":981482353,"percentOfEpisodes":100.0}}],"year":0,"path":"\/tv\/Bee and PuppyCat- Lazy in Space","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":367111,"tvRageId":0,"tvMazeId":0,"seriesType":"standard","cleanTitle":"beepuppycatlazyinspace","titleSlug":"bee-and-puppycat-lazy-in-space","rootFolderPath":"\/tv\/","genres":["Comedy","Drama","Fantasy"],"tags":[],"added":"2019-09-10T01:13:17.891669Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":981482353,"percentOfEpisodes":100.0},"id":170},"episodes":[{"seriesId":170,"episodeFileId":16378,"seasonNumber":1,"episodeNumber":1,"title":"Gentle Touch","overview":"TBA","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12896},{"seriesId":170,"episodeFileId":16379,"seasonNumber":1,"episodeNumber":2,"title":"Little Fingers","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14527},{"seriesId":170,"episodeFileId":16380,"seasonNumber":1,"episodeNumber":3,"title":"Snow and Violets","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14528},{"seriesId":170,"episodeFileId":16381,"seasonNumber":1,"episodeNumber":4,"title":"Day Off Work","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14529},{"seriesId":170,"episodeFileId":16382,"seasonNumber":1,"episodeNumber":5,"title":"My Favorite","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14530},{"seriesId":170,"episodeFileId":16383,"seasonNumber":1,"episodeNumber":6,"title":"Did You Remember","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14531},{"seriesId":170,"episodeFileId":16384,"seasonNumber":1,"episodeNumber":7,"title":"Bird Friend","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14532},{"seriesId":170,"episodeFileId":16385,"seasonNumber":1,"episodeNumber":8,"title":"Two Clown Noses","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14533},{"seriesId":170,"episodeFileId":16386,"seasonNumber":1,"episodeNumber":9,"title":"Funny Lying","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14534},{"seriesId":170,"episodeFileId":16387,"seasonNumber":1,"episodeNumber":10,"title":"Golden Eyes","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14535},{"seriesId":170,"episodeFileId":16388,"seasonNumber":1,"episodeNumber":11,"title":"Why Don't You Help Me","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14536},{"seriesId":170,"episodeFileId":16389,"seasonNumber":1,"episodeNumber":12,"title":"Now I'm Really Alone","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14537},{"seriesId":170,"episodeFileId":16390,"seasonNumber":1,"episodeNumber":13,"title":"I Won't Leave You Alone","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14538}],"episodeFile":[{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Gentle Touch-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E01.Gentle Touch-SDTV.mp4","size":68020456,"dateAdded":"2020-11-23T16:08:55.000038Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":200506,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16378},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Little Fingers-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E02.Little Fingers-SDTV.mp4","size":70068333,"dateAdded":"2020-11-23T16:08:55.053941Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":208894,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16379},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Snow and Violets-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E03.Snow and Violets-SDTV.mp4","size":83908669,"dateAdded":"2020-11-23T16:08:55.108035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":294025,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16380},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Day Off Work-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E04.Day Off Work-SDTV.mp4","size":68392589,"dateAdded":"2020-11-23T16:08:55.16152Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":201698,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16381},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E05.My Favorite-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E05.My Favorite-SDTV.mp4","size":75709836,"dateAdded":"2020-11-23T16:08:55.215244Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":246380,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16382},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Did You Remember-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E06.Did You Remember-SDTV.mp4","size":82369960,"dateAdded":"2020-11-23T16:08:55.2752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":283623,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16383},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Bird Friend-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E07.Bird Friend-SDTV.mp4","size":72763650,"dateAdded":"2020-11-23T16:08:55.330448Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":226227,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16384},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Two Clown Noses-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E08.Two Clown Noses-SDTV.mp4","size":78335256,"dateAdded":"2020-11-23T16:08:55.384395Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":258006,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16385},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Funny Lying-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E09.Funny Lying-SDTV.mp4","size":82286894,"dateAdded":"2020-11-23T16:08:55.437012Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":267377,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"23:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16386},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Golden Eyes-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E10.Golden Eyes-SDTV.mp4","size":70369283,"dateAdded":"2020-11-23T16:08:55.491633Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":210205,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"23:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16387},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Why Don't You Help Me-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E11.Why Don't You Help Me-SDTV.mp4","size":69600905,"dateAdded":"2020-11-23T16:08:55.545734Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":208002,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16388},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Now I'm Really Alone-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E12.Now I'm Really Alone-SDTV.mp4","size":73922860,"dateAdded":"2020-11-23T16:08:55.599368Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":229851,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"23:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16389},{"seriesId":170,"seasonNumber":1,"relativePath":"Season 01\/S01E13.I Won't Leave You Alone-SDTV.mp4","path":"\/tv\/Bee and PuppyCat- Lazy in Space\/Season 01\/S01E13.I Won't Leave You Alone-SDTV.mp4","size":85733662,"dateAdded":"2020-11-23T16:08:55.653366Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":304498,"videoCodec":"x264","videoFps":23.976,"resolution":"852x480","runTime":"22:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16390}],"queue":[]},"159":{"series":{"title":"Cowboy Bebop","alternateTitles":[],"sortTitle":"cowboy bebop","status":"ended","ended":true,"overview":"In the year 2071 humanity has colonized the entire Solar System through the use of \"Phase Difference Space Gates\". A catastrophic accident occurred during the development of the Gates, damaging both the Earth and the Moon, heavily irradiating the surface, and forcing most of mankind to evacuate to other planets of the Solar System.\r\n\r\nWherever humanity goes, so goes its criminal element, and thus the need for those who hunt criminals. The newly formed solar system police reinstated the bounty scheme of the Wild West. Cowboy Bebop is the story of the four inhabitants of the spaceship Bebop, and the living they barely make at bounty hunting.","previousAiring":"2012-12-21T08:00:00Z","network":"WOWOW","airTime":"17:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/157\/banner.jpg?lastWrite=637021009029130500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/76885-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/157\/poster.jpg?lastWrite=637600310609018500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/76885-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/157\/fanart.jpg?lastWrite=637103832479157750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/76885-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2012-12-21T08:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":4,"sizeOnDisk":1119078903,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1999-04-24T08:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":19848326909,"percentOfEpisodes":100.0}}],"year":1998,"path":"\/tv\/Cowboy Bebop","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":76885,"tvRageId":3157,"tvMazeId":1121,"firstAired":"1998-04-03T00:00:00Z","seriesType":"standard","cleanTitle":"cowboybebop","imdbId":"tt0213338","titleSlug":"cowboy-bebop","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Anime","Science Fiction","Western"],"tags":[],"added":"2019-08-22T20:01:36.753409Z","ratings":{"votes":12815,"value":9.1},"statistics":{"seasonCount":1,"episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":30,"sizeOnDisk":20967405812,"percentOfEpisodes":100.0},"id":157},"episodes":[{"seriesId":157,"episodeFileId":8240,"seasonNumber":1,"episodeNumber":2,"title":"Stray Dog Strut","airDate":"1998-04-03","airDateUtc":"1998-04-03T08:00:00Z","overview":"Spike and Jet are after a man named Abdul Hakim who is on the run after stealing a very valuable briefcase from a laboratory, though what makes it difficult is because Hakim usually gets plastic surgery to avoid being spotted. While Spike goes out to look for Hakim, a two-bit thief manages to steal Hakim\u2019s briefcase and manages to slip away before Hakim grabs him. The thief eventually opens the briefcase and discovers that it\u2019s just a common Welsh Corgi that isn\u2019t worth more than a fistful of Woolongs, so why is Hakim after the dog so badly?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":11983},{"seriesId":157,"episodeFileId":8243,"seasonNumber":1,"episodeNumber":3,"title":"Honky Tonk Women","airDate":"1998-04-10","airDateUtc":"1998-04-10T08:00:00Z","overview":"Faye Valentine, a woman on the run from the authorities, is held captive by a casino owner who wants her to perform a simple task. If she does this, then all of her debt the authorities are so eager to obtain from her will be erased. At the same time, Jet has a premonition to take a chance with his hard earned money. The former cop and Spike head over to the same casino that Faye is now working at.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":11984},{"seriesId":157,"episodeFileId":8248,"seasonNumber":1,"episodeNumber":7,"title":"Heavy Metal Queen","airDate":"1998-04-17","airDateUtc":"1998-04-17T08:00:00Z","overview":"Jet, Spike, and Faye are after their next bounty head, Decker. Spike gets a tip and is waiting for Decker in a bar along with every other bounty hunter in town. Faye is at an ice cream parlor waiting for Decker. Spike meets V.T., a female space trucker, by helping her beat up some of the crude bounty hunters in the bar during a fight. Faye sees Decker and gives chase, but with the high explosives he has he messes her ship up. The story of this episode revolves around the character of V.T.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":11988},{"seriesId":157,"episodeFileId":8249,"seasonNumber":1,"episodeNumber":8,"title":"Waltz for Venus","airDate":"1998-04-24","airDateUtc":"1998-04-24T08:00:00Z","overview":"When a commercial aircraft that is landing on the Venus colony gets hijacked, Spike and Faye are on board because they were anticipating that such would occur, in hopes of capturing the hijackers because they have bounties on their heads. However, when a passenger named Roco Bonnaro develops an interest in his Jeet Kune Do skills, Spike decides to give him some pointers. Roco gives Spike a package to hold onto, though Spike later discovers that Roco has a bounty on his head and he decides to go find him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":11989},{"seriesId":157,"episodeFileId":8250,"seasonNumber":1,"episodeNumber":9,"title":"Jamming with Edward","airDate":"1998-05-01","airDateUtc":"1998-05-01T08:00:00Z","overview":"A satellite draws strange images on the surface of the planet Earth in South America. The police believe it was a prank by a hacker who hacked into the satellites mainframe. Jet and Faye go to Earth to try and find the hacker. Jet goes to find out what kind of hackers work the area. Jet finds out that \"Radical Edward\" is responsible, but they soon find out that this is going to be different than they anticipated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":11990},{"seriesId":157,"episodeFileId":8251,"seasonNumber":1,"episodeNumber":10,"title":"Ganymede Elegy","airDate":"1998-05-08","airDateUtc":"1998-05-08T08:00:00Z","overview":"The Bebop is on its way to Ganymede, Jet's home when he was a cop, to deliver a bounty named Baker Panchorero. Jet starts to space out thinking about his old girl friend, Alisa, who left him years ago. The Bebop lands and while Spike and Faye cash in the bounty, Jet goes to \"Le Fin\", the bar owned by Alisa. While Jet and Alisa are reminiscing about old times, Spike finds out that Alisa's current boy friend, Rhint, has a bounty on his head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":11991},{"seriesId":157,"episodeFileId":8252,"seasonNumber":1,"episodeNumber":11,"title":"Toys in the Attic","airDate":"1998-05-15","airDateUtc":"1998-05-15T08:00:00Z","overview":"When Jet gets swindled by Faye, he loses all of his clothes, so he goes to the storage bay to get a blanket. While there, he gets bitten by an unknown creature, though he didn\u2019t get a good look at what it was. Spike and Faye dismiss it as a rat, though they soon discover that the scenario is much more serious than they realized, as one by one they fall victim by the creature until only Spike is left to deal with the problem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":11992},{"seriesId":157,"episodeFileId":8253,"seasonNumber":1,"episodeNumber":12,"title":"Jupiter Jazz (1)","airDate":"1998-05-22","airDateUtc":"1998-05-22T08:00:00Z","overview":"Faye has stolen all the money and vanished. Ed is told to track her down on the computer. While Ed doesn't find Faye, she does find a mysterious code name, Julia, coming from the Blue Crow Bar on Jupiter's fourth moon, Callisto. Spike takes off for the moon, much to Jet's chagrin. With his partner gone, Jet begins to look for Faye.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":11993},{"seriesId":157,"episodeFileId":8254,"seasonNumber":1,"episodeNumber":13,"title":"Jupiter Jazz (2)","airDate":"1998-05-29","airDateUtc":"1998-05-29T08:00:00Z","overview":"Spike wakes up and discovers that he has only been shot with a tranquilizer. He slowly rises and continues his search for Julia. In Gren's apartment, Faye has been handcuffed by her host as he tells her the story of the one man he truly admired: Vicious.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":11994},{"seriesId":157,"episodeFileId":8255,"seasonNumber":1,"episodeNumber":14,"title":"Bohemian Rhapsody","airDate":"1998-06-05","airDateUtc":"1998-06-05T08:00:00Z","overview":"Spike, Jet and Faye are each out catching a bounty. The bounty they were after, the mastermind behind a gate hack scam, wasn't among the bounties they caught. They have only one clue to help them find their man: four chess pieces, all kings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":11995},{"seriesId":157,"episodeFileId":8256,"seasonNumber":1,"episodeNumber":15,"title":"My Funny Valentine","airDate":"1998-06-12","airDateUtc":"1998-06-12T08:00:00Z","overview":"Jet, Spike, and Faye are in need of money so Jet decides to catch a bounty head who is a con-artist. Meanwhile, needing to get it off her chest, Faye tells her life story to Ein to try to relieve her stress, though Spike winds up hearing her story, but will it change his opinion of her?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":11996},{"seriesId":157,"episodeFileId":8259,"seasonNumber":1,"episodeNumber":18,"title":"Speak Like a Child","airDate":"1998-06-19","airDateUtc":"1998-06-19T08:00:00Z","overview":"A package arrives for Faye, and she leaves in a hurry when she finds out it was sent C.O.D. with no return address. Spike opens the package and finds a Beta video cassette. Jet and Spike go on a quest to discover what is on the tape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":11999},{"seriesId":157,"episodeFileId":8239,"seasonNumber":0,"episodeNumber":1,"title":"Mish-Mash Blues","airDate":"1998-06-26","airDateUtc":"1998-06-26T08:00:00Z","overview":"Nothing lasts forever. All things must come to an end. That is the so-called way of Nature. It's rather sudden, but this is the last episode, so I would like to take this opportunity to remember all the things that have happened and think about them.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":11978},{"seriesId":157,"episodeFileId":16074,"seasonNumber":0,"episodeNumber":2,"title":"Session #0","airDate":"1998-08-25","airDateUtc":"1998-08-25T08:00:00Z","overview":"This episode is a teaser for the release of the series to DVD. It contains interviews with the staff and cast, character info, a story digest of the episodes not broadcast on television (due to its depictions of gratuitous violence, only a handful of episodes were aired originally. The remaining episodes were not broadcast until 1999), the complete beginning\/closing title sequences without the interference of credits or other text, and a couple of full length music videos featuring the theme track \"Tank!\" accompanied by the jaw-dropping animation found throughout the series.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":20043},{"seriesId":157,"episodeFileId":8238,"seasonNumber":1,"episodeNumber":1,"title":"Asteroid Blues","airDate":"1998-10-24","airDateUtc":"1998-10-24T08:00:00Z","overview":"It's a normal day on the Bebop for bounty hunters Spike and Jet, until they find out about a new bounty hunter. Asimov Solensan is going around selling a new drug that he stole from the syndicate. It is an eyespray called \"Bloody Eye\" which makes all of its users very fast and almost invincible, but they also go crazy. Spike and Jet do whatever it takes to catch the culprit. At the same time the syndicate is trying to kill Asimov and get the drug back from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":11982},{"seriesId":157,"episodeFileId":8244,"seasonNumber":1,"episodeNumber":4,"title":"Gateway Shuffle","airDate":"1998-11-14","airDateUtc":"1998-11-14T08:00:00Z","overview":"Faye has lost her money and is stranded in Jupiter's orbit with no fuel. She finds a destroyed ship floating nearby and inside finds a dying pilot who asks her to take a briefcase to the I.S.S.P. At the same time, Spike and Jet are getting ready to capture a bounty named Morgan, but when an eco-terrorist group called the Space Warriors kill Morgan first, they decide to go after a different bounty; the leader of the eco-terrorists!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":11985},{"seriesId":157,"episodeFileId":8246,"seasonNumber":1,"episodeNumber":5,"title":"Ballad of Fallen Angels","airDate":"1998-11-21","airDateUtc":"1998-11-21T08:00:00Z","overview":"Spike's past emerges to haunt him when a 28 Million Woolong bounty is placed on Mao Yenrai, the crimeboss of the Red Dragons. Faye goes after the bounty and is captured by a cold-hearted man named Vicious. Against Jet's will, Spike leaves to go after the murderer of Mao Yenrai and faces off against Vicious.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":11986},{"seriesId":157,"episodeFileId":8247,"seasonNumber":1,"episodeNumber":6,"title":"Sympathy for the Devil","airDate":"1998-11-28","airDateUtc":"1998-11-28T08:00:00Z","overview":"Jet and Spike are out chasing thier next bounty named Giraffe. When Spike is following Zebra, Giraffe's old comrade, he meets a kid named Wen, a musical child prodigy. There is something strange about Wen. Jet discovers that there is a connection between Wen and a stone Giraffe handed to Spike with his dying breath.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":11987},{"seriesId":157,"episodeFileId":8257,"seasonNumber":1,"episodeNumber":16,"title":"Black Dog Serenade","airDate":"1999-02-13","airDateUtc":"1999-02-13T08:00:00Z","overview":"It begins with Faye complaining about the Bebop's shower. Her nagging of Jet leads to a question about his arm. Then an old partner of Jet's during his days with the ISSP, Fad, calls up wanting to team up with Jet one last time. Fad wants to go after a runaway prison ship that happens to be carrying an old enemy of Jet's, Udai Taxim, who used to be an assassin for the syndicate. Udai had something to do with Jet losing his arm. Jet at first refuses, but finally decides that this is something he must do.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":11997},{"seriesId":157,"episodeFileId":8258,"seasonNumber":1,"episodeNumber":17,"title":"Mushroom Samba","airDate":"1999-02-20","airDateUtc":"1999-02-20T08:00:00Z","overview":"The crew and the Bebop are stranded on a strange planet and they are out of food and fuel. Spike and Jet try to fix the Bebop and everybody is hungry. Spike tells Edward to go out and get some food. Ed takes Ein along and she rides off on her motor scooter in search of food.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":11998},{"seriesId":157,"episodeFileId":8260,"seasonNumber":1,"episodeNumber":19,"title":"Wild Horses","airDate":"1999-03-06","airDateUtc":"1999-03-06T08:00:00Z","overview":"Jet and Faye are after Starship Pirates, while Spike is bringing his ship to be overhauled. After Spike's return to the Bebop, he finds out that Jet and Faye didn't capture the bounty heads. The Starship Pirates have a virus that they transmit by harpooning ships. As long as they avoid getting harpooned, they'll be OK. If they do get harpooned, Jet's solution is to turn of their ships' computer systems and fly them manually. One misstep on Spike's part, and he's a dead man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":12000},{"seriesId":157,"episodeFileId":8261,"seasonNumber":1,"episodeNumber":20,"title":"Pierrot Le Fou","airDate":"1999-03-13","airDateUtc":"1999-03-13T08:00:00Z","overview":"After playing pool one evening, Spike walks into the aftermath of a large battle between armed agents and a large man seemingly dressed for an evening at the opera. The large man attacks Spike with the largest possible arsenal that one person can carry. Defending himself as best he can, Spike barely makes it out of the battle alive. Awaking on the Bebop wrapped up in bandages, Spike rests as Jet goes to Bob, his ISSP source, for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":12001},{"seriesId":157,"episodeFileId":8262,"seasonNumber":1,"episodeNumber":21,"title":"Boogie Woogie Feng Shui","airDate":"1999-03-20","airDateUtc":"1999-03-20T08:00:00Z","overview":"After Jet receives a note from an old friend, he attempts to track him down but just finds a tombstone. While he's there, he finds a young girl who helps him dodge some mobsters. They soon realize that they can work together to help each other find Pao, but will it be in the manner that they expect?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":12002},{"seriesId":157,"episodeFileId":8263,"seasonNumber":1,"episodeNumber":22,"title":"Cowboy Funk","airDate":"1999-03-27","airDateUtc":"1999-03-27T08:00:00Z","overview":"While Spike is trying to find some food, he runs into a serial bomber; the Teddy Bomber who is trying to blow up a skyscraper. Will he be able to stop Teddy Bomber and collect the bounty on him?\r\n\r\nThis episode was temporarily removed from airplay on Cartoon Network after the September 11, 2001 attacks, but has since entered normal rotation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":12003},{"seriesId":157,"episodeFileId":8264,"seasonNumber":1,"episodeNumber":23,"title":"Brain Scratch","airDate":"1999-04-03","airDateUtc":"1999-04-03T08:00:00Z","overview":"While Spike is watching television he comes across a religious organization called Scratch, whoes leader had quite a huge bounty because he leads his followers to commit suicide, so the crew of Bebop go off to try to find Dr. Londes in order to collect the bounty on him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":12004},{"seriesId":157,"episodeFileId":8265,"seasonNumber":1,"episodeNumber":24,"title":"Hard Luck Woman","airDate":"1999-04-10","airDateUtc":"1999-04-10T08:00:00Z","overview":"Faye is studying the video from her youth that she found one day and she sees a waterfall. Ed sees it and states that she knows where that waterfall is so they set the Bebop's path to earth instead of Mars. Will Faye be able to find out about her youth and what about Jet and Spike who don't know that the ship is now heading for Earth?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":12005},{"seriesId":157,"episodeFileId":8266,"seasonNumber":1,"episodeNumber":25,"title":"The Real Folk Blues (1)","airDate":"1999-04-17","airDateUtc":"1999-04-17T08:00:00Z","overview":"Vicious heads to the Red Dragon Syndicate to put an end to Van, which are the leaders of the Syndicate. Meanwhile, Spike and Jet are at a pub in town when the Red Dragon Syndicate burst in and start shooting up the place. As the action intensifies, Jet and Spike once again find themselves in the middle of another mess, though certain events soon make them realize that this may be bigger than they expected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":12006},{"seriesId":157,"episodeFileId":8267,"seasonNumber":1,"episodeNumber":26,"title":"The Real Folk Blues (2)","airDate":"1999-04-24","airDateUtc":"1999-04-24T08:00:00Z","overview":"Spike manages to convince Julia to leave with him and put their past behind them once and for all. However, Vicious has other plans and he doesn\u2019t intend on letting them just walk away. Spike and Julia now find themselves facing the greatest danger they\u2019ve ever faced and the stakes are their future, their happiness and their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":12007},{"seriesId":157,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Cowboy Bebop: The Movie","airDate":"2001-09-01","airDateUtc":"2001-09-01T08:00:00Z","overview":"A tanker truck is blown to smithereens in the middle of a busy street, and a deadly viral infection is released with the explosion. The Bebop crew - Spike Spiegel, Jet Black, Faye Valentine, and Edward Wong Hau Pepelu Tivrusky IV - are instantly after the culprit when the gargantuan reward of 300,000,000 woolongs is announced. But the case gets stranger and stranger as the cold-blooded Vincent Volaju, who supposedly has been dead for ten years, seems to be the prime suspect. Meanwhile, Spike encounters the dangerous Electra, who too seeks the madman. Conspiracies and secrets better left alone are uncovered, and Vincent's reign or terror is nowhere near over yet...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20044},{"seriesId":157,"episodeFileId":16075,"seasonNumber":0,"episodeNumber":4,"title":"Ein's Summer Vacation","airDate":"2012-12-21","airDateUtc":"2012-12-21T08:00:00Z","overview":"A newly animated special starring Ein! Included in the new Blu-Ray release.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":20045}],"episodeFile":[{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Asteroid Blues-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E01.Asteroid Blues-Bluray-1080p.mkv","size":836339557,"dateAdded":"2019-08-22T21:26:23.543795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":485424,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3708336,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8238},{"seriesId":157,"seasonNumber":0,"relativePath":"Specials\/S00E01.Knockin' on Heaven's Door-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Specials\/S00E01.Knockin' on Heaven's Door-Bluray-1080p.mkv","size":45962798,"dateAdded":"2019-08-22T21:26:46.771299Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":597074,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"8:48","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8239},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Stray Dog Strut-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E02.Stray Dog Strut-Bluray-1080p.mkv","size":767429186,"dateAdded":"2019-08-22T21:26:48.336543Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":515839,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3908501,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8240},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Honky Tonk Women-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E03.Honky Tonk Women-Bluray-1080p.mkv","size":637386494,"dateAdded":"2019-08-22T21:27:31.744984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":513028,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2760645,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:39","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8243},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Gateway Shuffle-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E04.Gateway Shuffle-Bluray-1080p.mkv","size":761389777,"dateAdded":"2019-08-22T21:27:45.727Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":501345,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3443527,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8244},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Ballad of Fallen Angels-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E05.Ballad of Fallen Angels-Bluray-1080p.mkv","size":607061608,"dateAdded":"2019-08-22T21:28:08.74286Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":485403,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2560220,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8246},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Sympathy for the Devil-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E06.Sympathy for the Devil-Bluray-1080p.mkv","size":580406456,"dateAdded":"2019-08-22T21:28:24.89115Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":470387,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2499677,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8247},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Heavy Metal Queen-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E07.Heavy Metal Queen-Bluray-1080p.mkv","size":693630885,"dateAdded":"2019-08-22T21:28:41.180216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":514635,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3064079,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8248},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Waltz For Venus-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E08.Waltz For Venus-Bluray-1080p.mkv","size":640346622,"dateAdded":"2019-08-22T21:28:59.424939Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":473820,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2830686,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:32","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8249},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Jamming with Edward-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E09.Jamming with Edward-Bluray-1080p.mkv","size":865141072,"dateAdded":"2019-08-22T21:29:17.335164Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":492065,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4033797,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:32","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8250},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Ganymede Elegy-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E10.Ganymede Elegy-Bluray-1080p.mkv","size":732524869,"dateAdded":"2019-08-22T21:29:47.11267Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":466323,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3177005,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8251},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Toys in the Attic-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E11.Toys in the Attic-Bluray-1080p.mkv","size":594470677,"dateAdded":"2019-08-22T21:30:05.488653Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":508149,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2530979,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8252},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Jupiter Jazz, Part I-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E12.Jupiter Jazz, Part I-Bluray-1080p.mkv","size":543830550,"dateAdded":"2019-08-22T21:30:18.869258Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":466801,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2301627,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8253},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Jupiter Jazz, Part II-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E13.Jupiter Jazz, Part II-Bluray-1080p.mkv","size":1120396499,"dateAdded":"2019-08-22T21:30:35.00231Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":501418,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5383319,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8254},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Bohemian Rhapsody-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E14.Bohemian Rhapsody-Bluray-1080p.mkv","size":624344893,"dateAdded":"2019-08-22T21:31:03.945569Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":502702,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2699878,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8255},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E15.My Funny Valentine-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E15.My Funny Valentine-Bluray-1080p.mkv","size":681786428,"dateAdded":"2019-08-22T21:31:17.923146Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":492832,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3013317,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:41","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8256},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Black Dog Serenade-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E16.Black Dog Serenade-Bluray-1080p.mkv","size":581556273,"dateAdded":"2019-08-22T21:31:36.936068Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":508143,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2459084,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:42","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8257},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Mushroom Samba-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E17.Mushroom Samba-Bluray-1080p.mkv","size":748247681,"dateAdded":"2019-08-22T21:31:52.322928Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":485831,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3291163,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8258},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Speak Like a Child-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E18.Speak Like a Child-Bluray-1080p.mkv","size":1033468364,"dateAdded":"2019-08-22T21:32:12.43436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":500770,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4915998,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8259},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Wild Horses-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E19.Wild Horses-Bluray-1080p.mkv","size":713454779,"dateAdded":"2019-08-22T21:32:44.404798Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":518255,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3196901,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:27","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8260},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Pierrot Le Fou-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E20.Pierrot Le Fou-Bluray-1080p.mkv","size":829733079,"dateAdded":"2019-08-22T21:33:03.524444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":517850,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3807727,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:36","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8261},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Boogie-Woogie Feng-Shui-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E21.Boogie-Woogie Feng-Shui-Bluray-1080p.mkv","size":953038509,"dateAdded":"2019-08-22T21:33:25.76885Z","releaseGroup":"Shui","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":512571,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4469222,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8262},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Cowboy Funk-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E22.Cowboy Funk-Bluray-1080p.mkv","size":837193277,"dateAdded":"2019-08-22T21:33:49.60974Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":512538,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3841651,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:38","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8263},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Brain Scratch-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E23.Brain Scratch-Bluray-1080p.mkv","size":1428453654,"dateAdded":"2019-08-22T21:34:18.910545Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":509997,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7050995,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:37","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8264},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Hard Luck Woman-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E24.Hard Luck Woman-Bluray-1080p.mkv","size":862383385,"dateAdded":"2019-08-22T21:34:30.77016Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":529200,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ Japanese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3832881,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:36","scanType":"","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8265},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E25.The Real Folk Blues (1)-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E25.The Real Folk Blues (1)-Bluray-1080p.mkv","size":602883296,"dateAdded":"2019-08-22T21:34:43.221091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":517417,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2569594,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:39","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8266},{"seriesId":157,"seasonNumber":1,"relativePath":"Season 01\/S01E26.The Real Folk Blues (2)-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Season 01\/S01E26.The Real Folk Blues (2)-Bluray-1080p.mkv","size":571429039,"dateAdded":"2019-08-22T21:34:47.770364Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":492893,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2494663,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:08","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8267},{"seriesId":157,"seasonNumber":0,"relativePath":"Specials\/S00E03.Session #0-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Specials\/S00E03.Session #0-Bluray-1080p.mkv","size":1054990099,"dateAdded":"2020-11-11T03:49:07.947754Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1948648,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:07:39","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16074},{"seriesId":157,"seasonNumber":0,"relativePath":"Specials\/S00E04.Ein's Summer Vacation-Bluray-1080p.mkv","path":"\/tv\/Cowboy Bebop\/Specials\/S00E04.Ein's Summer Vacation-Bluray-1080p.mkv","size":18126006,"dateAdded":"2020-11-11T03:49:07.967185Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2275512,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16075}],"queue":[]},"160":{"series":{"title":"Twin Peaks","alternateTitles":[],"sortTitle":"twin peaks","status":"ended","ended":true,"overview":"The body of a young girl is washed up on a beach near the small Washington state town of Twin Peaks. Eccentric FBI Special Agent Dale Cooper is called in to investigate her strange demise only to uncover a web of mystery that ultimately leads him deep into the heart of the surrounding woodland and his very own soul. Season 3 - also known as Twin Peaks: The Return - is set 25 years after the events of Seasons 1 and 2.","previousAiring":"2017-09-04T00:47:00Z","network":"ABC (US)","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/173\/banner.jpg?lastWrite=637103833608937270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/70533-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/173\/poster.jpg?lastWrite=637043421260953250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/70533-21.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/173\/fanart.jpg?lastWrite=637103833606537310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/70533-16.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1990-05-24T00:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":6121685884,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1991-06-11T00:47:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":14718661309,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-09-04T00:47:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":35840367639,"percentOfEpisodes":100.0}}],"year":1990,"path":"\/tv\/Twin Peaks","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":47,"tvdbId":70533,"tvRageId":6450,"tvMazeId":156,"firstAired":"1990-04-08T00:00:00Z","seriesType":"standard","cleanTitle":"twinpeaks","imdbId":"tt0098936","titleSlug":"twin-peaks","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Fantasy","Mystery","Thriller"],"tags":[],"added":"2019-09-17T18:35:23.938074Z","ratings":{"votes":4511,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":48,"episodeCount":48,"totalEpisodeCount":54,"sizeOnDisk":56680714832,"percentOfEpisodes":100.0},"id":173},"episodes":[{"seriesId":173,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Pilot - International Release","airDate":"1990-04-08","airDateUtc":"1990-04-09T00:00:00Z","overview":"The small northwest town of Twin Peaks, Washington is shaken up when the body of the Homecoming Queen, Laura Palmer, is discovered washed up on a riverbank, wrapped in plastic.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13017},{"seriesId":173,"episodeFileId":9045,"seasonNumber":1,"episodeNumber":1,"title":"Northwest Passage","airDate":"1990-04-08","airDateUtc":"1990-04-09T00:00:00Z","overview":"The small northwest town of Twin Peaks, Washington is shaken up when the body of the Homecoming Queen, Laura Palmer, is discovered washed up on a riverbank, wrapped in plastic. Meanwhile, the rebellious Audrey Horne ruins a business deal for her father Benjamin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":13022},{"seriesId":173,"episodeFileId":9046,"seasonNumber":1,"episodeNumber":2,"title":"Traces to Nowhere","airDate":"1990-04-12","airDateUtc":"1990-04-13T00:00:00Z","overview":"Agent Cooper enjoys the comforts of the Great Northern Hotel; Bobby Briggs and Mike Nelson are released from jail; Doctor Hayward hands over the autopsy report on Laura Palmer; Cooper and Truman interview Josie Packard; Audrey Horne and Donna Hayward vow to solve Laura's murder; Sarah Palmer has a vision of a grey-haird man; Doctor Jacoby conceals important information.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":13023},{"seriesId":173,"episodeFileId":9047,"seasonNumber":1,"episodeNumber":3,"title":"Zen, or the Skill to Catch a Killer","airDate":"1990-04-19","airDateUtc":"1990-04-20T00:00:00Z","overview":"Ben Horne's brother, Jerry, arrives in Twin Peaks; James and Donna decide to be together; Ben & Jerry travel to One Eyed Jacks and meet with its madam, Blackie O'Rielly; Audrey leaves a clue for Cooper; Deputy Hawk finds a bloody towel near the crime scene; Cooper demonstrates a unique deductive technique; The cynical Special Agent Albert Rosenfield arrives to examine the body of Laura Palmer; Josie discovers Catherine has been keeping two ledgers; Leo takes his anger out on Shelly; Agent Cooper has a mysterious dream about the crime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":13024},{"seriesId":173,"episodeFileId":9048,"seasonNumber":1,"episodeNumber":4,"title":"Rest in Pain","airDate":"1990-04-26","airDateUtc":"1990-04-27T00:00:00Z","overview":"The next morning, Cooper meets with Audrey, who confesses to leaving him the note about One Eyed Jack's. Cooper tells Truman he can't remember who the killer was in his dream, but insists the dream is a code to solving the crime. Albert, after offending everyone in town, is forced to end his autopsy early. Albert and Truman come to blows. Bobby, James and Leland all make a scene at Laura's funeral. Laura's identical cousin, Maddy, arrives in town. Norma's husband, Hank Jennings, is up for parole. Cooper has suspicions about Dr. Jacoby. Leland shows signs of cracking.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":13025},{"seriesId":173,"episodeFileId":9049,"seasonNumber":1,"episodeNumber":5,"title":"The One-Armed Man","airDate":"1990-05-03","airDateUtc":"1990-05-04T00:00:00Z","overview":"Cooper questions Dr. Jacoby, who suspects Leo Johnson is the killer. Cooper's supervisior, Gordon Cole, calls in with Albert's report. Josie Packard spies on Ben Horne and Catherine Martell. Hawk tracks down the One Armed Man. Mrs. Palmer shares her vision of the killer, the same man Cooper saw in his dream (BOB). Truman and Cooper find the bird who attacked Laura belonged to Leo's friend, Jacques Renault. Hank Jennings has his parole hearing and makes a threatening phone call to Josie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":13026},{"seriesId":173,"episodeFileId":9050,"seasonNumber":1,"episodeNumber":6,"title":"Cooper's Dreams","airDate":"1990-05-10","airDateUtc":"1990-05-11T00:00:00Z","overview":"Cooper and company have tea with the Log Lady. The Log Lady tells them there was a third man following after Leo and Jaques the night Laura died. At the cabin of Jaquces Renault, Cooper, Hawk and Truman find Waldo the bird. The bird not only attacked Laura the night she died, but he can also talk. Cooper finds a poker chip from One Eyed Jacks. Hank returns home to Norma. The Briggs family visits Dr. Jacoby. Audrey takes a job at the perfume counter where Laura and Ronette worked. Shelly takes her revenge on Leo. Audrey has a surprise for Agent Cooper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":13027},{"seriesId":173,"episodeFileId":9051,"seasonNumber":1,"episodeNumber":7,"title":"Realization Time","airDate":"1990-05-17","airDateUtc":"1990-05-18T00:00:00Z","overview":"Audrey cons her way into working at the perfume counter where Laura worked. She discovers that it's being used as a recruitment post for One Eyed Jack's. James, Donna and Maddy plan to lure Jacoby away from his office. Cooper and Big Ed go under cover at One Eyed Jack's. Nadine's drape runners are rejected. Truman asks for Cooper's help regarding Josie's fears about the Mill. Leo sets his sights on Bobby Briggs and Waldo the Bird. Bobby sets up James Hurley. Ben and Josie decide to double cross Catherine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":13028},{"seriesId":173,"episodeFileId":9052,"seasonNumber":1,"episodeNumber":8,"title":"The Last Evening","airDate":"1990-05-23","airDateUtc":"1990-05-24T00:00:00Z","overview":"Audrey is hired at One Eyed Jack's, but is caught in a trap when her father arrives. Cooper gets Jacques Renault to reveal the details of Laura's last night in the cabin. Deputy Andy saves Truman's life and apprehends Renault. Lucy has a surprise for Andy. Dr. Jacoby is attacked in the park. James, Donna and Maddy find Laura's last tape and retrieve the necklace. Cooper finds the coke planted in James's bike. Leo traps Shelly in the mill and sets it on fire. Hank lures Catherine to the burning mill, then goes after Leo. Nadine overdoses on sleeping pills. Leland Palmer takes revenge. Cooper, arriving back at the Great Northern Hotel, is shot three times.\r\nTo Be Continued...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":13029},{"seriesId":173,"episodeFileId":9053,"seasonNumber":2,"episodeNumber":1,"title":"May the Giant Be with You","airDate":"1990-09-30","airDateUtc":"1990-10-01T00:00:00Z","overview":"A wounded Agent Cooper has a vision of a giant who gives him several clues about the murder of Laura Palmer. Shelly and Pete recover from the mill fire, but Josie and Catherine are missing. Ben and Jerry Horne are not pleased with how the mill fire plan unfolded. Leland Palmer's attitude changes with his hair color. Albert returns to assist the wounded Cooper. Donna gets a mysterious message about Meals on Wheels. Dr. Jacoby recovers from his heart attack, but cannot remember who killed Jacques. Major Briggs has a vision of good things for Bobby. Nadine is in a coma. Leo is a vegetable. Ronnette awakes from her coma after a horrific dream about Bob.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":13030},{"seriesId":173,"episodeFileId":9054,"seasonNumber":2,"episodeNumber":2,"title":"Coma","airDate":"1990-10-06","airDateUtc":"1990-10-07T00:00:00Z","overview":"Albert determines that neither Leo nor Jaqcues killed Laura, but he is unable find any leads into who shot Cooper. Cooper says they must find the third man, who he believes to be Bob, the grey haird man. Albert reports that Cooper's ex-partner, Windom Earle, escaped from an insane asylum. Ben Horne can't decide which of the mill ledgers to destroy. The Log Lady tells Major Briggs to deliver a message to Agent Cooper. An Asian man spies on Cooper. Shelly visits Leo in the hospital. Maddy and James discuss a change in Donna's attitude. Leland has a revelation. Bobby tries to convince Shelly to cash in on Leo's insurance money. Audrey is trapped at One Eyed Jack's.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":13031},{"seriesId":173,"episodeFileId":9055,"seasonNumber":2,"episodeNumber":3,"title":"The Man Behind the Glass","airDate":"1990-10-13","airDateUtc":"1990-10-14T00:00:00Z","overview":"Ronette is attacked in her hospital bed by an unseen person. Jean Reanult, brother of Jaqcues and Bernard, plans to blackmail Ben Horne for the release of Audrey. Donna meets with Harold Smith, a shut-in who had befriended Laura. Albert and Truman have a strange confrontation. Lucy reveals that there's been another man in her life, Dick Treymane (Horne's Department Store, Men's Fashions). Shelly decides not to testify against Leo. Leland offers a clue in the search for Killer Bob. The One-Armed Man leaves Cooper the giant's final clue. Nadine wakes from her coma a changed woman. Jacoby leads Cooper and Truman to Jacques's killer. Donna discovers the secret diary of Laura Palmer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":13032},{"seriesId":173,"episodeFileId":9056,"seasonNumber":2,"episodeNumber":4,"title":"Laura's Secret Diary","airDate":"1990-10-20","airDateUtc":"1990-10-21T00:00:00Z","overview":"Leland confesses to killing Jacques Reanult. Andy wants to take a new sperm count test. Rumor spreads that a food critic is coming to Twin Peaks. Jean asks Ben to set a trap for Cooper in exchange for Audrey's life. Cooper agrees to Ben's requests, unaware of the trap. Harold Smith reads from the diary to Donna. Josie returns to Twin Peaks. Cooper asks for help from the Bookhouse Boys, and Harry comes through. Donna and Maddy plot to steal the diary. Judge Sternwood arrives for the trials of Leo and Leland. Dick Tremayne makes a shocking offer to Lucy. The Asian man comes after Josie and Hank.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":13033},{"seriesId":173,"episodeFileId":9057,"seasonNumber":2,"episodeNumber":5,"title":"The Orchid's Curse","airDate":"1990-10-27","airDateUtc":"1990-10-28T00:00:00Z","overview":"Cooper discovers he had forgotten about the message under his bed. Shelly and Bobby begin Leo's homecare. Sternwood hears pre-trial motions and declares Leo not fit for trail. Nadine comes home, still thinking she's in high school. A mysterious man, Mr. Tojamura, arrives and offers Ben a sizeable fee for Ghostwood. Cooper agrees to drop Audrey's ransom, but deduces that she's being held at Jack's. Andy's test results are an improvement. Cooper and Truman raid One Eyed Jack's and rescue Audrey, witness several murders, and are saved by Hawk in the process. Jean Renault captures Hank. Harold Smith catches Donna and Maddy trying to steal the diary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":13034},{"seriesId":173,"episodeFileId":9058,"seasonNumber":2,"episodeNumber":6,"title":"Demons","airDate":"1990-11-03","airDateUtc":"1990-11-04T01:00:00Z","overview":"James saves the girls from a tormented Harold. Cooper brings Audrey home. Bobby and Shelly learn that their insurance plans have backfired. Donna tries to convince Truman that Harold Smith has Laura's secret diary. Cooper's boss, Gordon Cole, arrives with an upsetting message for Cooper. Hawk finds the One-Armed Man, who reveals himself as the spirit, Mike. Maddy decides to go home. Jonathan says he's taking Josie back to China. Ben calls Leland back into work. The One Armed Man vows to stop BOB, pointing Cooper towards the Great Northern Hotel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":13035},{"seriesId":173,"episodeFileId":9059,"seasonNumber":2,"episodeNumber":7,"title":"Lonely Souls","airDate":"1990-11-10","airDateUtc":"1990-11-11T01:00:00Z","overview":"Cooper and the One-Armed Man inspect guests at the Great Northern. Hawk finds Harold Smith dead by his own hand\u2026with a mysterious suicide note and the diary torn to shreds. Leo speaks to Bobby about \"new shoes.\" Audrey confronts her father about One Eyed Jacks. Shelly tells Norma she has to quit working at the Double R. Norma sees the changed Nadine for the first time. Bobby finds evidence to blackmail Ben Horne for a sizable sum. Audrey goes to Cooper about her father, leading Truman and Cooper to arrest Ben. Tojamora reveals his true identity to Pete. The Log Lady brings Cooper to the Roadhouse, where the Giant appears. Late in the evening, Laura's killer strikes again...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":13036},{"seriesId":173,"episodeFileId":9060,"seasonNumber":2,"episodeNumber":8,"title":"Drive with a Dead Girl","airDate":"1990-11-17","airDateUtc":"1990-11-18T01:00:00Z","overview":"Donna and James wonder why Maddy left so suddenly. Norma's mother arrives with news\u2026she's married a new man, Ernie Niles. Cooper tells Leland they arrested Ben Horne for Laura's murder. Ben tells Jerry the only person who can prove his innocence is the missing Catherine. The One-Armed Man escapes custody. Pete and Truman worry about Josie. Pete tells Ben that Catherine is still alive, and wants to make a deal. Cooper comes face to face with the killer without realizing it. Lucy tells Andy that Dick may be the father. Hank and Ernie know each other from prison. Truman insists on prosecuting Ben Horne. Maddy is found wrapped in plastic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":13037},{"seriesId":173,"episodeFileId":9061,"seasonNumber":2,"episodeNumber":9,"title":"Arbitrary Law","airDate":"1990-12-01","airDateUtc":"1990-12-02T01:00:00Z","overview":"Albert returns to examine Maddy. Cooper asks for twenty-four hours to finish his case. James and Donna reaffirm their love. Andy accidentally leads Donna and Cooper back to Mrs. Treamond's house. Cooper is given a missing page from Laura's diary, describing the same dream he had. The One Armed man is ill, tells Cooper he has all the clues he needs. Catherine reveals herself to Ben, and he signs the mill back over to her. Leland and Donna learn of Maddy's death. Cooper calls together everyone for a final confrontation. James leaves town. Cooper tricks the killer into revealing himself after decoding the various clues from his dream. The spirit of BOB flees from the killer's body, who dies in Cooper's arms and is welcomed into the next life by Laura. Truman, Cooper, Albert and Major Briggs ponder the existence of Bob, and where he has gone to\u2026","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":13038},{"seriesId":173,"episodeFileId":9062,"seasonNumber":2,"episodeNumber":10,"title":"Dispute Between Brothers","airDate":"1990-12-08","airDateUtc":"1990-12-09T01:00:00Z","overview":"Leland is laid to rest and Sarah Palmer tries to accept all that has happened to her family. Dr. Jacoby returns from Hawaii. Cooper prepares to leave Twin Peaks. Mayor Milford objects to his brothers engagement to a younger woman. Hank and Ernie meet with Jean Renault. Jacoby has Ed enroll Nadine in High School. Audrey and Cooper say goodbye, and Cooper tells her about the death of a woman he loved. Bobby plans to take advantage of Ben's ruin. Cooper is made a Bookhouse Boy. Agent Rodger Hardy arrives to suspend Cooper for his illegal entrance into Canada and his involvement in the murders at One Eyed Jacks. Norma's mother reveals herself to be the critic who wrote a scathing review of the Double R. Josie returns to Truman. Major Briggs vanishes in a bright light while fishing with Cooper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":13039},{"seriesId":173,"episodeFileId":9063,"seasonNumber":2,"episodeNumber":11,"title":"Masked Ball","airDate":"1990-12-15","airDateUtc":"1990-12-16T01:00:00Z","overview":"Mrs. Briggs talks about her husband's disappearance into the woods. Nadine is put on the wrestling team, where she falls for Mike Nelson. James is hired by a mysterious wealthy woman named Evelyn Marsh. Dick takes on an orphan named Little Nicky. The case against Cooper will be handled by DEA Agent Denis (Denise) Bryson. Hank tells Ben that Jean Renault has taken over One Eyed Jacks. Windom Earle contacts Cooper with an omnious message. Dougie Milford weds Lanna Budding. Josie asks Catherine for protection. Andrew Packard comes out of hiding, very much alive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":13040},{"seriesId":173,"episodeFileId":9064,"seasonNumber":2,"episodeNumber":12,"title":"The Black Widow","airDate":"1991-01-12","airDateUtc":"1991-01-13T01:00:00Z","overview":"Ben takes Bobby under his wing in a hope to destroy Hank and Jean. However, Ben's mental state is starting to crack. Cooper starts to look at buying real estate. Major Briggs's supervisor reveals that Briggs was studying transmissions from the woods. Andy and Dick learn of Little Nicky's troubled life. James meets Malcom, the chauffer for the Marsh family. Dougie Milford dies on his honeymoon, and the major blames Lana. Cooper finds drugs at Dead Dog Farms. Dick thinks Nicky is trying to kill him. Evelyn starts an affair with James. Ben begins to reenact the civil war. Audrey produces photos that may save Cooper. Hank catches Ed and Norma in an embrace. Denise and Cooper enlist Ernie Niles to ensnare Jean Renault. Major Briggs returns as mysteriously as he had vanished.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":13041},{"seriesId":173,"episodeFileId":9065,"seasonNumber":2,"episodeNumber":13,"title":"Checkmate","airDate":"1991-01-19","airDateUtc":"1991-01-20T01:00:00Z","overview":"Major Briggs has no memory of the place he was taken, but now has an odd tattoo on his neck. Andy and Dick break into Little Nicky's files. Mike and Nadine begin an affair. Shelly and Bobby's love is strained. Evelyn asks James to kill her husband. Hank attacks Big Ed, but is beaten by Nadine. Ben slips deeper into his fantasy life. When the drug bust goes bad, Cooper is taken hostage by Jean Renault. Leo Johnson comes back to life. After physical and mental torture by Renault, Cooper is saved by a quick thinking Bryson and Truman.\r\nLater that night, an explosion and blackout empties out the police station, and when Cooper and Truman return, they find a gruesome scene let by Windom Earle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":13042},{"seriesId":173,"episodeFileId":9066,"seasonNumber":2,"episodeNumber":14,"title":"Double Play","airDate":"1991-02-02","airDateUtc":"1991-02-03T01:00:00Z","overview":"Windom Earle has taken his first victim in the deadly chess game. Audrey tells Bobby they have to save Ben from his Civil War fantasy. Leo awakes and attacks Shelly, but Bobby is able to fend him off. Doc Hayward offers the true story of Little Nicky's past. Cooper reveals his rivalry with Earle: they were partners when Cooper fell in love with Caroline, Earle's wife. Earle went mad, killing Caroline and wounding Cooper. Mr. Marsh is killed. Donna confronts Evelyn. After a heated confrontation Mayor Milford and Lana end up lovers. Andrew Pakcard reveals himself to Pete, and tells him Josie has been working for his old enemy Thomas Eckheardt. Cooper suspects Josie in the murder of Jonathan. Eckheardt arrives in Twin Peaks, and Leo Johnson finds himself in the company of Windom Earle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":13043},{"seriesId":173,"episodeFileId":9067,"seasonNumber":2,"episodeNumber":15,"title":"Slaves and Masters","airDate":"1991-02-09","airDateUtc":"1991-02-10T01:00:00Z","overview":"The police look for James in the Marsh murder. Bobby and Shelly tell Truman Leo escaped and Bobby reveals that he saw Hank shoot Leo the night the mill burned. Albert returns to Twin Peaks with information on Windom Earle, and ends up looking at Josie for the murder of Jonathan and the attempted murder of Cooper. Nadine \u2018breaks up' with Ed. Dr. Jacoby, Audrey, Bobby and Jerry try to end Ben's fantasy life. Donna and James escape from the Marsh home. Pete offers to help Cooper force a stalemate with Earle. Earle holds Leo as a slave. Shelly comes back to work. Eckheardt tells Catherine he wants Josie back. Earle leaves a 'present' and another omnious message for Cooper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":13044},{"seriesId":173,"episodeFileId":9068,"seasonNumber":2,"episodeNumber":16,"title":"The Condemned Woman","airDate":"1991-02-16","airDateUtc":"1991-02-17T01:00:00Z","overview":"Truman puts Hank in prison for the attempted murder of Leo, while Hank points the finger at Josie for the murder of Andrew Packard. Albert reveals that Josie shot Cooper. Ben enlists John Justice Wheeler to help him stop the Ghostwood plans. Earle sends a poem to Donna, Shelly and Audrey. Ben decides to \"save the pine weasel.\" Norma learns her sister Annie is coming to town. Ed proposes to Norma. James leaves Twin Peaks.\r\nCaught in her own web of deceit, Josie murders Eckheardt, but is caught by Cooper and Truman. She confesses to shooting Cooper, but before they can act, Josie dies in Harry's arms. As she passes away, Cooper has a vision of BOB and the Little Man. Josie's soul is trapped in a door pull.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":13045},{"seriesId":173,"episodeFileId":9069,"seasonNumber":2,"episodeNumber":17,"title":"Wounds and Scars","airDate":"1991-03-28","airDateUtc":"1991-03-29T01:00:00Z","overview":"Harry sinks into a deep depression after Josie's death. Josie's body holds more questions then answers. Norma's troubled sister, Annie, arrives in Twin Peaks. Wheeler and Audrey hit it off. Cooper's stalemate angers Earle. Eckheardt's assistant, Jones, leaves a puzzle for Catherine. Windom Earle visits Donna. The Log Lady and Major Briggs share similar tattoos and go to Cooper with them. The Miss Twin Peaks contest is coming up, and Norma wants Shelly to enter. Cooper meets and is taken with Annie. Ben holds a Save the Pine Weasel fashion show that goes wrong. Jones slips into Harry's bed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":13046},{"seriesId":173,"episodeFileId":9070,"seasonNumber":2,"episodeNumber":18,"title":"On the Wings of Love","airDate":"1991-04-04","airDateUtc":"1991-04-05T01:00:00Z","overview":"Harry is attacked by Jones in his sleep. Audrey and Wheeler begin a relationship. Gordon Cole returns with a report that Windom Earle worked with Major Briggs on Project Bluebook. Cole reinstates Cooper in the FBI. Earle plans to kill the winner of Miss Twin Peaks. Donna spies Eileen Hayward paying a mysterious visit to Ben Horne. Gordon Cole believes Shelly can cure his hearing loss. Annie recognizes the two tattoos are coming from Owl Cave. Earle visits Audrey. Cooper, Truman, Hawk and Andy visit Owl Cave. Cooper learns Annie has had a difficult life and offers to help her. Earle uncovers a petroglyph in Owl Cave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":13047},{"seriesId":173,"episodeFileId":9071,"seasonNumber":2,"episodeNumber":19,"title":"Variations on Relations","airDate":"1991-04-11","airDateUtc":"1991-04-12T00:00:00Z","overview":"Cooper and company find the mysterious petroglyph. Windom Earle befriends a rock and roll youth, and tells him tales of places called the White and Black Lodge. Pete helps Catherine open the first puzzle box. Lana wants Milford to rig Miss Twin Peaks. Annie and Cooper go for a nature walk. Cooper finds the poem Earle sent to the girls. He tells Harry it's a poem he once gave to Caroline. Major Briggs agrees to look into Earle's Project Bluebook work. Cooper deduces Leo Johnson is working with Earle. Shelly, Lucy, Donna, Nadine, Lana and Audrey enter Miss Twin Peaks. Mike tells Bobby about Nadine's special bedroom talents. Cole says goodbye to Shelly. Donna wants to know what is going on between her mom and Ben Horne. Treymayne hosts a wine tasting party. Windom Earle leaves his next victim and a terrifying promise for Cooper: \"Next time, it will be someone you know.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":13048},{"seriesId":173,"episodeFileId":9072,"seasonNumber":2,"episodeNumber":20,"title":"The Path to the Black Lodge","airDate":"1991-04-18","airDateUtc":"1991-04-19T00:00:00Z","overview":"Bobby and Shelly reaffirm their love. Cooper calls Shelly, Donna and Audrey together to warn them about Earle. Briggs shows Cooper a tape of Windom Earle making a report on his quest for the Black Lodge. Donna discovers pictures of her mom and Ben Horne. Wheeler is called away on an emergency. Leo worries about Shelly. Doc Hayward tells Ben to stay away from Eileen. Townsfolk have strange tremors in their hands. Pete has a vision of Josie. Windom Earle takes Major Briggs captive. Andrew and Catherine open the next box, only to find another one inside. A drugged Briggs tells Earle how to open the lodge doorway. Big Ed is able to break up with Nadine and ask Norma to marry him. Audrey and Pete chase after Wheeler\u2026Audrey and Wheeler make love before he leaves. Cooper takes Annie dancing, and convinces her to run for Miss Twin Peaks. The Giant visits Cooper with a warning. Windom Earle discovers the cave painting is a map. BOB reappears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":13049},{"seriesId":173,"episodeFileId":9073,"seasonNumber":2,"episodeNumber":21,"title":"Miss Twin Peaks","airDate":"1991-06-10","airDateUtc":"1991-06-11T00:00:00Z","overview":"Windom Earle sets his sites on the Miss Twin Peaks contest. Lucy chooses a father for her baby. Leo is punished when he frees Major Briggs. Cooper unlocks the key to entering the Black Lodge. Annie and Dale make a commitment to each other. Catherine and Andrew find a mysterious key. Donna confronts Ben Horne. The Miss Twin Peaks contest ends in chaos. Windom Earle kidnaps Annie. Andy deciphers the Owl Cave puzzle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":13050},{"seriesId":173,"episodeFileId":9074,"seasonNumber":2,"episodeNumber":22,"title":"Beyond Life and Death","airDate":"1991-06-10","airDateUtc":"1991-06-11T00:47:00Z","overview":"Agent Cooper follows Windom Earle and Annie into the depths of the Black Lodge. Big Ed and Norma get a shock when Nadine suffers head trauma. Andrew and Pete unlock Eckheart's final box while Audrey stages her act of civil disobedience. Dr. Hayward and Ben Horne have a final confrontation. Shelly and Bobby plan their future. Dr. Jacoby and Mrs. Palmer have a message for Major Briggs. Cooper faces his destiny in the Black Lodge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":13051},{"seriesId":173,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Twin Peaks: Fire Walk with Me","airDate":"1992-05-08","airDateUtc":"1992-05-09T00:00:00Z","overview":"Both a prologue and epilogue to the television series Twin Peaks. this film revolves around the investigation into the murder of Teresa Banks and the last seven days in the life of Laura Palmer, a popular high school student in the fictional Washington town of Twin Peaks. Additionally, the film's convoluted narrative references and clarifies Agent Dale Cooper's fate in the Twin Peaks season 2 finale.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13018},{"seriesId":173,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Return to Twin Peaks","airDate":"2007-10-30","airDateUtc":"2007-10-31T00:00:00Z","overview":"Documentary about the Twin Peaks Festival.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18163},{"seriesId":173,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Secrets from Another Place: Creating Twin Peaks","airDate":"2007-10-30","airDateUtc":"2007-10-31T00:47:00Z","overview":"A 2007 behind-the-scenes documentary chronicling the making of Twin Peaks.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18164},{"seriesId":173,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"A Slice of Lynch","airDate":"2007-10-30","airDateUtc":"2007-10-31T01:34:00Z","overview":"David Lynch, M\u00e4dchen Amick, Kyle MacLachlan and John Wentworth reminisce about \"Twin Peaks\" while seated at a diner counter.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18165},{"seriesId":173,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Twin Peaks: The Missing Pieces","airDate":"2014-07-16","airDateUtc":"2014-07-17T00:00:00Z","overview":"A feature-length compilation of deleted scenes from Twin Peaks: Fire Walk with Me, which expands upon the murder investigation of Teresa Banks and the last seven days of Laura Palmer's life. The Missing Pieces also includes scenes that feature characters from the television series that were excluded from Fire Walk with Me, such as Josie Packard, Ed Hurley, and Nadine Hurley.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18166},{"seriesId":173,"episodeFileId":9075,"seasonNumber":3,"episodeNumber":1,"title":"Part 1","airDate":"2017-05-21","airDateUtc":"2017-05-22T00:00:00Z","overview":"A man observes a mysterious glass box, South Dakota Police discover a hideous crime and Hawk receives a cryptic message about Special Agent Dale Cooper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":13052},{"seriesId":173,"episodeFileId":9076,"seasonNumber":3,"episodeNumber":2,"title":"Part 2","airDate":"2017-05-21","airDateUtc":"2017-05-22T00:47:00Z","overview":"Hawk searches for something in the woods while Cooper learns that his fate in the Black Lodge may not be sealed after all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":13053},{"seriesId":173,"episodeFileId":9077,"seasonNumber":3,"episodeNumber":3,"title":"Part 3","airDate":"2017-05-28","airDateUtc":"2017-05-29T00:00:00Z","overview":"Cooper calls for help; Agents Gordon Cole, Albert Rosenfield and Tammy Preston investigate the glass box murders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":13054},{"seriesId":173,"episodeFileId":9078,"seasonNumber":3,"episodeNumber":4,"title":"Part 4","airDate":"2017-05-28","airDateUtc":"2017-05-29T00:47:00Z","overview":"Coop assumes the life of Dougie Jones, as Gordon and Agents Rosenfield and Preston investigate the situation surrounding Coop's doppelganger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":13055},{"seriesId":173,"episodeFileId":9079,"seasonNumber":3,"episodeNumber":5,"title":"Part 5","airDate":"2017-06-04","airDateUtc":"2017-06-05T00:00:00Z","overview":"Coop is still trapped as Dougie, going through the motions, as his doppelganger schemes in jail. Meanwhile, new information on Major Garland Briggs turns up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":13056},{"seriesId":173,"episodeFileId":9080,"seasonNumber":3,"episodeNumber":6,"title":"Part 6","airDate":"2017-06-11","airDateUtc":"2017-06-12T00:00:00Z","overview":"Gordon Cole instructs Albert to meet with an old contact. Hawk makes a discovery involving 'the missing piece' that will help him find Coop. Janey-E fixes Dougie's gambling debt, while Coop is still struggling to put what he knows about his past and the Black Lodge into words. Tragedy strikes after a drug deal takes place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":13057},{"seriesId":173,"episodeFileId":9081,"seasonNumber":3,"episodeNumber":7,"title":"Part 7","airDate":"2017-06-18","airDateUtc":"2017-06-19T00:00:00Z","overview":"Cooper and Janey-E are in for a violent surprise at the Lucky 7 office. Meanwhile, Gordon and Albert try enlisting Diane to figure out the mystery of the man they believe to be Cooper in jail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":13058},{"seriesId":173,"episodeFileId":9082,"seasonNumber":3,"episodeNumber":8,"title":"Part 8","airDate":"2017-06-25","airDateUtc":"2017-06-26T00:00:00Z","overview":"Coop's doppelganger faces a life or death situation. In 1945, a bomb is dropped and modern man's evil is epitomized.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":13059},{"seriesId":173,"episodeFileId":9083,"seasonNumber":3,"episodeNumber":9,"title":"Part 9","airDate":"2017-07-09","airDateUtc":"2017-07-10T00:00:00Z","overview":"More about Dougie Jones comes to light after an attempt on his life. Meanwhile, Gordon Cole discovers connections to Cooper concerning a Blue Rose case and Major Garland Briggs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":13060},{"seriesId":173,"episodeFileId":9084,"seasonNumber":3,"episodeNumber":10,"title":"Part 10","airDate":"2017-07-16","airDateUtc":"2017-07-17T00:00:00Z","overview":"The Mitchum brothers find out more about Dougie Jones. In Twin Peaks, Richard Horne's committing horrible acts, and Hawk gets more clues from the Log Lady.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":13061},{"seriesId":173,"episodeFileId":9085,"seasonNumber":3,"episodeNumber":11,"title":"Part 11","airDate":"2017-07-23","airDateUtc":"2017-07-24T00:00:00Z","overview":"The set-up involving the Mitchum brothers and Dougie reaches its climax while even stranger things start to happen to both the FBI team and the Twin Peaks Sheriff's Department.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":13062},{"seriesId":173,"episodeFileId":9086,"seasonNumber":3,"episodeNumber":12,"title":"Part 12","airDate":"2017-07-30","airDateUtc":"2017-07-31T00:00:00Z","overview":"An old FBI case gets new recruits after many years while well-known residents of Twin Peaks face problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":13063},{"seriesId":173,"episodeFileId":9087,"seasonNumber":3,"episodeNumber":13,"title":"Part 13","airDate":"2017-08-06","airDateUtc":"2017-08-07T00:00:00Z","overview":"Dougie comes home bearing gifts while Anthony is sent on a risky mission, Evil Cooper wants revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":13064},{"seriesId":173,"episodeFileId":9088,"seasonNumber":3,"episodeNumber":14,"title":"Part 14","airDate":"2017-08-13","airDateUtc":"2017-08-14T00:00:00Z","overview":"Gordon remembers an important moment from his past. Andy, Bobby, Hawk and Truman go to the forest. James hears a story about a glove on his birthday. An unknown facet of Sarah is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":13065},{"seriesId":173,"episodeFileId":9089,"seasonNumber":3,"episodeNumber":15,"title":"Part 15","airDate":"2017-08-20","airDateUtc":"2017-08-21T00:00:00Z","overview":"Big Ed and Norma have a relationship breakthrough. Evil Cooper tries to reconnect with an old friend, while Dougie Jones reaches an electrifying discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":13066},{"seriesId":173,"episodeFileId":9090,"seasonNumber":3,"episodeNumber":16,"title":"Part 16","airDate":"2017-08-27","airDateUtc":"2017-08-28T00:00:00Z","overview":"Dougie's loved ones care for him in the hospital, and Mr. C heads towards the coordinates. Meanwhile, Diane makes a confession to the FBI.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":13067},{"seriesId":173,"episodeFileId":9091,"seasonNumber":3,"episodeNumber":17,"title":"Part 17","airDate":"2017-09-03","airDateUtc":"2017-09-04T00:00:00Z","overview":"Cooper arrives in Twin Peaks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":13068},{"seriesId":173,"episodeFileId":9092,"seasonNumber":3,"episodeNumber":18,"title":"Part 18","airDate":"2017-09-03","airDateUtc":"2017-09-04T00:47:00Z","overview":"Cooper and Diane drive 430 miles. Cooper attempts to help a troubled woman he believes to be Laura Palmer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":13069}],"episodeFile":[{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":1362990443,"dateAdded":"2019-09-17T18:52:43.393825Z","sceneName":"Twin.Peaks.S01E01.Northwest.Passage.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":207819,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1722393,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"1:34:03","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9045},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Traces to Nowhere-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E02.Traces to Nowhere-Bluray-1080p.mkv","size":693904066,"dateAdded":"2019-09-17T18:52:52.681041Z","sceneName":"Twin.Peaks.S01E02.Traces.to.Nowhere.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1794253,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:27","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9046},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Zen, or the Skill to Catch a Killer-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E03.Zen, or the Skill to Catch a Killer-Bluray-1080p.mkv","size":604210658,"dateAdded":"2019-09-17T18:52:55.742949Z","sceneName":"Twin.Peaks.S01E03.Zen.or.the.Skill.to.Catch.a.Killer.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":212127,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1454920,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"48:16","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9047},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Rest in Pain-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E04.Rest in Pain-Bluray-1080p.mkv","size":578646088,"dateAdded":"2019-09-17T18:52:58.521448Z","sceneName":"Twin.Peaks.S01E04.Rest.in.Pain.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":197844,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1443524,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:56","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9048},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The One-Armed Man-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E05.The One-Armed Man-Bluray-1080p.mkv","size":768486230,"dateAdded":"2019-09-17T18:53:04.521372Z","sceneName":"Twin.Peaks.S01E05.The.One-Armed.Man.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1982852,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:00","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9049},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Cooper's Dreams-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E06.Cooper's Dreams-Bluray-1080p.mkv","size":810746129,"dateAdded":"2019-09-17T18:53:08.174228Z","sceneName":"Twin.Peaks.S01E06.Cooper's.Dreams.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2134732,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:26","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9050},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Realization Time-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E07.Realization Time-Bluray-1080p.mkv","size":730726445,"dateAdded":"2019-09-17T18:53:14.956244Z","sceneName":"Twin.Peaks.S01E07.Realization.Time.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1878316,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:57","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9051},{"seriesId":173,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Last Evening-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 01\/S01E08.The Last Evening-Bluray-1080p.mkv","size":571975825,"dateAdded":"2019-09-17T18:53:19.422567Z","sceneName":"Twin.Peaks.S01E08.The.Last.Evening.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1436061,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:47","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9052},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E01.May the Giant Be with You-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E01.May the Giant Be with You-Bluray-1080p.mkv","size":1210073633,"dateAdded":"2019-09-17T20:41:47.565148Z","sceneName":"Twin.Peaks.S02E01.May.the.Giant.Be.with.You.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1517031,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"1:34:12","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9053},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Coma-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E02.Coma-Bluray-1080p.mkv","size":500207749,"dateAdded":"2019-09-17T20:41:51.598432Z","sceneName":"Twin.Peaks.S02E02.Coma.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1228917,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:54","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9054},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Man Behind the Glass-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E03.The Man Behind the Glass-Bluray-1080p.mkv","size":653842114,"dateAdded":"2019-09-17T20:41:53.221012Z","sceneName":"Twin.Peaks.S02E03.The.Man.Behind.the.Glass.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":198428,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1650078,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:06","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9055},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Laura's Secret Diary-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E04.Laura's Secret Diary-Bluray-1080p.mkv","size":575548155,"dateAdded":"2019-09-17T20:41:55.142142Z","sceneName":"Twin.Peaks.S02E04.Laura's.Secret.Diary.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":199592,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1432392,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:57","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9056},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Orchid's Curse-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E05.The Orchid's Curse-Bluray-1080p.mkv","size":519390306,"dateAdded":"2019-09-17T20:41:58.20177Z","sceneName":"Twin.Peaks.S02E05.The.Orchid's.Curse.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":198567,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1268898,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:07","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9057},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Demons-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E06.Demons-Bluray-1080p.mkv","size":558859487,"dateAdded":"2019-09-17T20:42:00.949065Z","sceneName":"Twin.Peaks.S02E06.Demons.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":197117,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1372745,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:24","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9058},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Lonely Souls-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E07.Lonely Souls-Bluray-1080p.mkv","size":689226970,"dateAdded":"2019-09-17T20:42:03.766907Z","sceneName":"Twin.Peaks.S02E07.Lonely.Souls.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":218453,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1715667,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:28","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9059},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Drive with a Dead Girl-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E08.Drive with a Dead Girl-Bluray-1080p.mkv","size":759177570,"dateAdded":"2019-09-17T20:42:07.202579Z","sceneName":"Twin.Peaks.S02E08.Drive.with.a.Dead.Girl.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1943517,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:19","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9060},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Arbitrary Law-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E09.Arbitrary Law-Bluray-1080p.mkv","size":737897279,"dateAdded":"2019-09-17T20:42:10.369377Z","sceneName":"Twin.Peaks.S02E09.Arbitrary.Law.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":207359,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1893598,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1432x1080","runTime":"46:47","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9061},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Dispute Between Brothers-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E10.Dispute Between Brothers-Bluray-1080p.mkv","size":658043034,"dateAdded":"2019-09-17T20:42:14.904799Z","sceneName":"Twin.Peaks.S02E10.Dispute.Between.Brothers.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":215646,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1635192,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:21","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9062},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Masked Ball-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E11.Masked Ball-Bluray-1080p.mkv","size":649511724,"dateAdded":"2019-09-17T20:42:19.216608Z","sceneName":"Twin.Peaks.S02E11.Masked.Ball.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":198026,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1627177,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:23","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9063},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Black Widow-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E12.The Black Widow-Bluray-1080p.mkv","size":667821673,"dateAdded":"2019-09-17T20:42:22.124268Z","sceneName":"Twin.Peaks.S02E12.The.Black.Widow.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":204801,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1709344,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:28","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9064},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Checkmate-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E13.Checkmate-Bluray-1080p.mkv","size":683449530,"dateAdded":"2019-09-17T20:42:25.15443Z","sceneName":"Twin.Peaks.S02E13.Checkmate.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":207681,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1732603,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:55","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9065},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Double Play-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E14.Double Play-Bluray-1080p.mkv","size":419893628,"dateAdded":"2019-09-17T20:42:27.763531Z","sceneName":"Twin.Peaks.S02E14.Double.Play.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":203051,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1007379,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:10","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9066},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Slaves and Masters-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E15.Slaves and Masters-Bluray-1080p.mkv","size":658372748,"dateAdded":"2019-09-17T20:42:29.84671Z","sceneName":"Twin.Peaks.S02E15.Slaves.and.Masters.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":196139,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1678497,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:46","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9067},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Condemned Woman-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E16.The Condemned Woman-Bluray-1080p.mkv","size":599768505,"dateAdded":"2019-09-17T20:42:33.158941Z","sceneName":"Twin.Peaks.S02E16.The.Condemned.Woman.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":205243,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1482476,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"47:19","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9068},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Wounds and Scars-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E17.Wounds and Scars-Bluray-1080p.mkv","size":704726512,"dateAdded":"2019-09-17T20:42:35.811062Z","sceneName":"Twin.Peaks.S02E17.Wounds.and.Scars.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":207455,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1833585,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"45:59","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9069},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E18.On the Wings of Love-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E18.On the Wings of Love-Bluray-1080p.mkv","size":683275255,"dateAdded":"2019-09-17T20:42:39.490589Z","sceneName":"Twin.Peaks.S02E18.On.the.Wings.of.Love.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":210414,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1732812,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:50","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9070},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Variations and Relations-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E19.Variations and Relations-Bluray-1080p.mkv","size":677709044,"dateAdded":"2019-09-17T20:42:43.512281Z","sceneName":"Twin.Peaks.S02E19.Variations.and.Relations.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":200821,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1720282,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:59","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9071},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E20.The Path to the Black Lodge-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E20.The Path to the Black Lodge-Bluray-1080p.mkv","size":764614091,"dateAdded":"2019-09-17T20:42:47.928959Z","sceneName":"Twin.Peaks.S02E20.The.Path.to.the.Black.Lodge.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":203282,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2008531,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:47","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9072},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Miss Twin Peaks-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E21.Miss Twin Peaks-Bluray-1080p.mkv","size":709240876,"dateAdded":"2019-09-17T20:42:50.935807Z","sceneName":"Twin.Peaks.S02E21.The.Night.of.the.Decision.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":201374,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1835541,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"46:22","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9073},{"seriesId":173,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Beyond Life and Death-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 02\/S02E22.Beyond Life and Death-Bluray-1080p.mkv","size":638011426,"dateAdded":"2019-09-17T20:42:54.452772Z","sceneName":"Twin.Peaks.S02E22.Beyond.Life.and.Death.1080p.10bit.BluRay.6CH.x265.HEVC-PSA","releaseGroup":"PSA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":204931,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1477701,"videoCodec":"HEVC","videoFps":23.976,"resolution":"1440x1080","runTime":"50:30","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9074},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Part 1- My Log Has a Message for You-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E01.Part 1- My Log Has a Message for You-Bluray-1080p.mkv","size":1838812045,"dateAdded":"2019-09-17T23:52:54.163798Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":308696,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3726295,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9075},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Part 2- The Stars Turn and a Time Presents Itself-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E02.Part 2- The Stars Turn and a Time Presents Itself-Bluray-1080p.mkv","size":1235387884,"dateAdded":"2019-09-17T23:53:00.45175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":333822,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2674415,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9076},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Part 3- Call For Help-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E03.Part 3- Call For Help-Bluray-1080p.mkv","size":2493645687,"dateAdded":"2019-09-17T23:53:05.061916Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":321776,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5317237,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9077},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Part 4- .Brings Back Some Memories-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E04.Part 4- .Brings Back Some Memories-Bluray-1080p.mkv","size":1560507569,"dateAdded":"2019-09-17T23:53:15.297513Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":330235,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3309389,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"56:57","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9078},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Part 5- Case Files-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E05.Part 5- Case Files-Bluray-1080p.mkv","size":2620125747,"dateAdded":"2019-09-17T23:53:21.436131Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":314636,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5665757,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9079},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Part 6- Don't Die-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E06.Part 6- Don't Die-Bluray-1080p.mkv","size":2747140687,"dateAdded":"2019-09-17T23:53:32.3421Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":319718,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5977269,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:03","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9080},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Part 7- There's a Body All Right-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E07.Part 7- There's a Body All Right-Bluray-1080p.mkv","size":2163805878,"dateAdded":"2019-09-17T23:53:43.237808Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":299742,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4696770,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9081},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Part 8- Gotta Light-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E08.Part 8- Gotta Light-Bluray-1080p.mkv","size":1371045285,"dateAdded":"2019-09-17T23:53:52.610304Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":308061,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2818713,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9082},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Part 9- This is the Chair-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E09.Part 9- This is the Chair-Bluray-1080p.mkv","size":2633200731,"dateAdded":"2019-09-17T23:53:57.50181Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":301430,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5703745,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9083},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Part 10- Laura is the One-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E10.Part 10- Laura is the One-Bluray-1080p.mkv","size":2043117939,"dateAdded":"2019-09-17T23:54:07.564873Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":308390,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4778976,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"53:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9084},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Part 11- There's Fire Where You Are Going-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E11.Part 11- There's Fire Where You Are Going-Bluray-1080p.mkv","size":2877153061,"dateAdded":"2019-09-17T23:54:16.195241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":337213,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":6351811,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:13","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9085},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Part 12- Let's Rock-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E12.Part 12- Let's Rock-Bluray-1080p.mkv","size":1457640500,"dateAdded":"2019-09-17T23:54:28.570103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":275229,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3252227,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:53","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9086},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Part 13- What Story is That, Charlie-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E13.Part 13- What Story is That, Charlie-Bluray-1080p.mkv","size":2159521529,"dateAdded":"2019-09-17T23:54:34.411484Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":319621,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4518447,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:19","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9087},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Part 14- We Are Like the Dreamer-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E14.Part 14- We Are Like the Dreamer-Bluray-1080p.mkv","size":1827324378,"dateAdded":"2019-09-17T23:54:45.036028Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":305251,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4010370,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"56:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9088},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Part 15- There's Some Fear In Letting Go-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E15.Part 15- There's Some Fear In Letting Go-Bluray-1080p.mkv","size":1689953600,"dateAdded":"2019-09-17T23:54:53.271378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":325496,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3746284,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:09","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9089},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Part 16- No Knock, No Doorbell-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E16.Part 16- No Knock, No Doorbell-Bluray-1080p.mkv","size":2420172814,"dateAdded":"2019-09-17T23:55:01.366848Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":320537,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5250955,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9090},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Part 17- The Past Dictates the Future-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E17.Part 17- The Past Dictates the Future-Bluray-1080p.mkv","size":1285859209,"dateAdded":"2019-09-17T23:55:12.283919Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":314835,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2559613,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9091},{"seriesId":173,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Part 18- What is Your Name-Bluray-1080p.mkv","path":"\/tv\/Twin Peaks\/Season 03\/S03E18.Part 18- What is Your Name-Bluray-1080p.mkv","size":1415953096,"dateAdded":"2019-09-17T23:55:18.463503Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":306858,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2991542,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:10","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":9092}],"queue":[]},"162":{"series":{"title":"Marvel's Daredevil","alternateTitles":[{"title":"Daredevil","seasonNumber":-1},{"title":"Marvels Daredevil","seasonNumber":-1}],"sortTitle":"marvels daredevil","status":"ended","ended":true,"overview":"Matt Murdock, with his other senses superhumanly enhanced, fights crime as a blind lawyer by day, and vigilante by night.","previousAiring":"2018-10-19T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/168\/banner.jpg?lastWrite=637103832945789290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/281662-g17.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/168\/poster.jpg?lastWrite=637139521759193310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/281662-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/168\/fanart.jpg?lastWrite=637103832942909340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/281662-7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-04-10T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":69866562504,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-03-18T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":92055263612,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-10-19T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":22900572714,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Marvel's Daredevil","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":55,"tvdbId":281662,"tvRageId":38796,"tvMazeId":1369,"firstAired":"2015-04-10T00:00:00Z","seriesType":"standard","cleanTitle":"marvelsdaredevil","imdbId":"tt3322312","titleSlug":"marvels-daredevil","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Crime","Drama"],"tags":[],"added":"2019-09-03T16:52:43.613843Z","ratings":{"votes":17005,"value":8.8},"statistics":{"seasonCount":3,"episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":184822398830,"percentOfEpisodes":100.0},"id":168},"episodes":[{"seriesId":168,"episodeFileId":8870,"seasonNumber":1,"episodeNumber":1,"title":"Into the Ring","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Murdock's vigilante crime fighting and his new law practice find equally dangerous challenges in a murder case tied to a corporate crime syndicate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":12840},{"seriesId":168,"episodeFileId":8871,"seasonNumber":1,"episodeNumber":2,"title":"Cut Man","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Murdock makes a near fatal error while trying to save a kidnapped boy, and finds an unlikely ally when he needs saving himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":12841},{"seriesId":168,"episodeFileId":8872,"seasonNumber":1,"episodeNumber":3,"title":"Rabbit in a Snow Storm","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Murdock and Foggy take on a mysterious wealthy client, but Murdock is convinced that there's more to the case than just the facts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":12842},{"seriesId":168,"episodeFileId":8873,"seasonNumber":1,"episodeNumber":4,"title":"In the Blood","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Two vicious Russian brothers working for Fisk strike back against Daredevil. Fisk moves to further consolidate his power in the criminal underworld.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":12843},{"seriesId":168,"episodeFileId":8874,"seasonNumber":1,"episodeNumber":5,"title":"World On Fire","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Fisk moves forward with plans that threaten to rip Hell's Kitchen apart. Murdock and Foggy take on a case helping tenants victimized by a slumlord.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":12844},{"seriesId":168,"episodeFileId":8875,"seasonNumber":1,"episodeNumber":6,"title":"Condemned","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Daredevil finds himself trapped in the fallout of Fisk's plan to take control of Hell's Kitchen. Ben Urich digs closer to the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":12845},{"seriesId":168,"episodeFileId":8876,"seasonNumber":1,"episodeNumber":7,"title":"Stick","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"An important figure from Murdock's past reemerges seeking his help to battle a new enemy threatening Hell's Kitchen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":12846},{"seriesId":168,"episodeFileId":8877,"seasonNumber":1,"episodeNumber":8,"title":"Shadows in the Glass","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"While Murdock, Foggy and Karen's mission becomes clearer, Fisk's world spins further out of control in his battle for Hell's Kitchen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":12847},{"seriesId":168,"episodeFileId":8878,"seasonNumber":1,"episodeNumber":9,"title":"Speak of the Devil","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"When Fisk gains the upper hand, the goal to destroy him becomes even more difficult, while Daredevil faces his own demons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":12848},{"seriesId":168,"episodeFileId":8879,"seasonNumber":1,"episodeNumber":10,"title":"Nelson v. Murdock","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Murdock and Foggy's relationship is put to the ultimate test while a new enemy against Fisk emerges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":12849},{"seriesId":168,"episodeFileId":8880,"seasonNumber":1,"episodeNumber":11,"title":"The Path of the Righteous","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Fisk and Murdock wrestle with the consequences of their chosen paths, while Ben and Karen get closer to Fisk's true past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":12850},{"seriesId":168,"episodeFileId":8881,"seasonNumber":1,"episodeNumber":12,"title":"The Ones We Leave Behind","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"Fisk seeks revenge while Karen is haunted by recent events. Daredevil makes a startling discovery about Fisk's financing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":12851},{"seriesId":168,"episodeFileId":8882,"seasonNumber":1,"episodeNumber":13,"title":"Daredevil","airDate":"2015-04-10","airDateUtc":"2015-04-10T07:00:00Z","overview":"A boxed-in Fisk and a desperate Murdock, Foggy and Karen are forced to play their end games.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":12852},{"seriesId":168,"episodeFileId":16965,"seasonNumber":2,"episodeNumber":1,"title":"Bang","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"In the void left by Fisk's removal, a new threat to Hell's Kitchen emerges. Murdock and Foggy take on a client with a questionable past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":12853},{"seriesId":168,"episodeFileId":16966,"seasonNumber":2,"episodeNumber":2,"title":"Dogs to a Gunfight","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"As Murdock recovers from an attack, Foggy and Karen fight to protect their new client from both the law and the Kitchen's newest vigilante.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":12854},{"seriesId":168,"episodeFileId":16967,"seasonNumber":2,"episodeNumber":3,"title":"New York's Finest","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Trapped face-to-face with the Punisher, Daredevil wrestles with the morality of vigilante justice. Meanwhile, Foggy and Karen work to save the firm.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":12855},{"seriesId":168,"episodeFileId":16968,"seasonNumber":2,"episodeNumber":4,"title":"Penny and Dime","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Karen uncovers shocking facts about the Punisher, who finds himself hunted by a powerful force in Hell's Kitchen. Daredevil ponders his next moves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":12856},{"seriesId":168,"episodeFileId":16969,"seasonNumber":2,"episodeNumber":5,"title":"Kinbaku","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"A former lover arrives in Hell's Kitchen and turns Murdock's world upside down. Karen digs for the truth about the Punisher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":12857},{"seriesId":168,"episodeFileId":16970,"seasonNumber":2,"episodeNumber":6,"title":"Regrets Only","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"A lethal foe returns with a vengeance, Foggy and Murdock risk the firm to ensure justice, and Karen sees a different side of the Punisher.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":12858},{"seriesId":168,"episodeFileId":16971,"seasonNumber":2,"episodeNumber":7,"title":"Semper Fidelis","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Murdock and Foggy take on the DA in the trial of the century, but their client refuses to play along. Murdock struggles to balance his dual identities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":12859},{"seriesId":168,"episodeFileId":16972,"seasonNumber":2,"episodeNumber":8,"title":"Guilty as Sin","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"As the firm's trial spins out of control, a figure from Murdock's past returns to deliver shocking revelations about the future of Hell's Kitchen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":12860},{"seriesId":168,"episodeFileId":16973,"seasonNumber":2,"episodeNumber":9,"title":"Seven Minutes in Heaven","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Castle gets an offer he can't refuse. Foggy and Murdock question the future of their firm, but Karen won't give up so easily.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":12861},{"seriesId":168,"episodeFileId":16974,"seasonNumber":2,"episodeNumber":10,"title":"The Man in the Box","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Murdock and Foggy get caught in the crossfire of the Punisher's revenge. Karen and Murdock dig for the truth in very different ways.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":12862},{"seriesId":168,"episodeFileId":16975,"seasonNumber":2,"episodeNumber":11,"title":".380","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"The Punisher's war continues, and so does the body count in Hell's Kitchen. Murdock tries to finish what the DA started.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":12863},{"seriesId":168,"episodeFileId":16976,"seasonNumber":2,"episodeNumber":12,"title":"The Dark at the End of the Tunnel","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Daredevil goes underground to save an old friend. Karen follows a dangerous lead. The law firm of Nelson & Murdock may have reached its final chapter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":12864},{"seriesId":168,"episodeFileId":16977,"seasonNumber":2,"episodeNumber":13,"title":"A Cold Day in Hell's Kitchen","airDate":"2016-03-18","airDateUtc":"2016-03-18T07:00:00Z","overview":"Daredevil is backed into the ultimate showdown for his own life \u2014 and the future of Hell's Kitchen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":12865},{"seriesId":168,"episodeFileId":8825,"seasonNumber":3,"episodeNumber":1,"title":"Resurrection","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Shattered physically and spiritually, Matt rethinks his purpose and place in Hell's Kitchen. Meanwhile, Fisk puts a plan in motion from behind bars.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":12866},{"seriesId":168,"episodeFileId":8826,"seasonNumber":3,"episodeNumber":2,"title":"Please","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Grieving for the life he's abandoned, Matt suffers a crisis of faith. Fisk makes a deal with the FBI that turns him into a target.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":12867},{"seriesId":168,"episodeFileId":8827,"seasonNumber":3,"episodeNumber":3,"title":"No Good Deed","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"As Fisk moves into swanky new digs amid a public outcry, Matt wrestles with how far he's ready to go to right this wrong. Dex's aim comes into focus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":12868},{"seriesId":168,"episodeFileId":8828,"seasonNumber":3,"episodeNumber":4,"title":"Blindsided","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"While Matt infiltrates a prison to find information on the Albanians, Fisk puts Dex in his crosshairs and a fed-up Foggy goes on the offensive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":12869},{"seriesId":168,"episodeFileId":8829,"seasonNumber":3,"episodeNumber":5,"title":"The Perfect Game","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"To quell the rising backlash over his release, Fisk serves up a scapegoat to the FBI. Dex misses the mark when he runs into a woman from his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":12870},{"seriesId":168,"episodeFileId":8830,"seasonNumber":3,"episodeNumber":6,"title":"The Devil You Know","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Driven to the edge, Dex loses his way until he's offered a lifeline by Fisk. Matt comes to Karen for help, which she agrees to give \u2014 on one condition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":12871},{"seriesId":168,"episodeFileId":8831,"seasonNumber":3,"episodeNumber":7,"title":"Aftermath","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"The press crucifies Daredevil after the attack on the Bulletin, and Agent Nadeem suspects the FBI paid too high a price for Fisk's cooperation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":12872},{"seriesId":168,"episodeFileId":8832,"seasonNumber":3,"episodeNumber":8,"title":"Upstairs\/Downstairs","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"A desperate Dex reaches out for help, Matt forms an uneasy alliance with Agent Nadeem, and Karen concocts a dangerous plan to provoke Fisk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":12873},{"seriesId":168,"episodeFileId":8833,"seasonNumber":3,"episodeNumber":9,"title":"Revelations","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Matt's already shaky world tilts when he learns a shocking truth. Karen runs for her life. Nadeem discovers how deep Fisk's influence runs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":12874},{"seriesId":168,"episodeFileId":8834,"seasonNumber":3,"episodeNumber":10,"title":"Karen","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Hunted by Fisk and haunted by mistakes from her past, Karen seeks refuge at the church. Matt finally gets his shot, and Dex goes in for the kill.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":12875},{"seriesId":168,"episodeFileId":8835,"seasonNumber":3,"episodeNumber":11,"title":"Reunion","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Dex tries to run his prey to ground, Nadeem's conscience kicks in, and Fisk looks to recover a gift from Vanessa seized during his incarceration.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":12876},{"seriesId":168,"episodeFileId":8836,"seasonNumber":3,"episodeNumber":12,"title":"One Last Shot","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Fisk\u2019s long-awaited reunion doesn't go as planned. Nelson & Murdock take on a new client who holds key information on Kingpin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":12877},{"seriesId":168,"episodeFileId":8837,"seasonNumber":3,"episodeNumber":13,"title":"A New Napkin","airDate":"2018-10-19","airDateUtc":"2018-10-19T07:00:00Z","overview":"Matt prepares to cross the line, as Dex becomes more dangerous than ever and Fisk enacts his endgame.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":12878}],"episodeFile":[{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Resurrection-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E01.Resurrection-WEBDL-1080p.mkv","size":1353816554,"dateAdded":"2019-09-03T17:51:09.918446Z","sceneName":"Marvels.Daredevil.S03E01.Resurrection.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:23","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8825},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Please-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E02.Please-WEBDL-1080p.mkv","size":1383356624,"dateAdded":"2019-09-03T17:51:21.730291Z","sceneName":"Marvels.Daredevil.S03E02.Please.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:37","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8826},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E03.No Good Deed-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E03.No Good Deed-WEBDL-1080p.mkv","size":1380073983,"dateAdded":"2019-09-03T17:51:32.137214Z","sceneName":"Marvels.Daredevil.S03E03.No.Good.Deed.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:31","scanType":"Progressive","subtitles":"English \/ Arabic \/ Bulgarian \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8827},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Blindsided-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E04.Blindsided-WEBDL-1080p.mkv","size":1576480042,"dateAdded":"2019-09-03T17:51:50.526052Z","sceneName":"Marvels.Daredevil.S03E04.Blindsided.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3480000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:23","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8828},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Perfect Game-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E05.The Perfect Game-WEBDL-1080p.mkv","size":1210331368,"dateAdded":"2019-09-03T17:52:01.942952Z","sceneName":"Marvels.Daredevil.S03E05.The.Perfect.Game.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:25","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8829},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Devil You Know-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E06.The Devil You Know-WEBDL-1080p.mkv","size":2490372361,"dateAdded":"2019-09-03T17:52:15.393278Z","sceneName":"Marvels.Daredevil.S03E06.The.Devil.You.Know.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:15","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8830},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Aftermath-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E07.Aftermath-WEBDL-1080p.mkv","size":2274316964,"dateAdded":"2019-09-03T17:52:35.42869Z","sceneName":"Marvels.Daredevil.S03E07.Aftermath.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:49","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8831},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Upstairs+Downstairs-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E08.Upstairs+Downstairs-WEBDL-1080p.mkv","size":2288525611,"dateAdded":"2019-09-03T17:52:56.691614Z","sceneName":"Marvels.Daredevil.S03E08.UpstairsDownstairs.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:25","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8832},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Revelations-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E09.Revelations-WEBDL-1080p.mkv","size":2473822820,"dateAdded":"2019-09-03T17:53:19.359641Z","sceneName":"Marvels.Daredevil.S03E09.Revelations.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:59","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8833},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Karen-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E10.Karen-WEBDL-1080p.mkv","size":2128346660,"dateAdded":"2019-09-03T17:53:46.229367Z","sceneName":"Marvels.Daredevil.S03E10.Karen.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:13","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8834},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Reunion-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E11.Reunion-WEBDL-1080p.mkv","size":1032121241,"dateAdded":"2019-09-03T17:54:02.82342Z","sceneName":"Marvels.Daredevil.S03E11.Reunion.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2370000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:45","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8835},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E12.One Last Shot-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E12.One Last Shot-WEBDL-1080p.mkv","size":1538687222,"dateAdded":"2019-09-03T17:54:12.948211Z","sceneName":"Marvels.Daredevil.S03E12.One.Last.Shot.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:15","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8836},{"seriesId":168,"seasonNumber":3,"relativePath":"Season 03\/S03E13.A New Napkin-WEBDL-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 03\/S03E13.A New Napkin-WEBDL-1080p.mkv","size":1770321264,"dateAdded":"2019-09-03T17:54:29.687733Z","sceneName":"Marvels.Daredevil.S03E13.A.New.Napkin.1080p.NF.WEB-DL.DDP5.1.x264-NTG","releaseGroup":"NTG","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:57","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8837},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Into the Ring-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E01.Into the Ring-Bluray-1080p.mkv","size":5246841060,"dateAdded":"2019-09-06T03:55:34.361389Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2668479,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:55","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8870},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Cut Man-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E02.Cut Man-Bluray-1080p.mkv","size":5217103793,"dateAdded":"2019-09-06T03:57:42.870325Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2673963,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:38","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8871},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Rabbit in a Snow Storm-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E03.Rabbit in a Snow Storm-Bluray-1080p.mkv","size":5175763966,"dateAdded":"2019-09-06T03:59:39.49442Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2718531,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:02","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8872},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E04.In the Blood-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E04.In the Blood-Bluray-1080p.mkv","size":5147391786,"dateAdded":"2019-09-06T04:01:28.946892Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2595967,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:16","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8873},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E05.World on Fire-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E05.World on Fire-Bluray-1080p.mkv","size":5543022605,"dateAdded":"2019-09-06T04:03:31.173735Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2729194,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:41","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8874},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Condemned-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E06.Condemned-Bluray-1080p.mkv","size":4673032856,"dateAdded":"2019-09-06T04:05:40.239364Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2387493,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"48:11","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8875},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Stick-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E07.Stick-Bluray-1080p.mkv","size":4987292791,"dateAdded":"2019-09-06T04:07:22.258868Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2709733,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:10","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8876},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Shadows in the Glass-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E08.Shadows in the Glass-Bluray-1080p.mkv","size":5231051106,"dateAdded":"2019-09-06T04:09:17.175628Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2571644,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"53:08","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8877},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Speak of the Devil-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E09.Speak of the Devil-Bluray-1080p.mkv","size":5695683267,"dateAdded":"2019-09-06T04:11:02.173588Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2693813,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:20","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8878},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Nelson v. Murdock-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E10.Nelson v. Murdock-Bluray-1080p.mkv","size":5605288996,"dateAdded":"2019-09-06T04:12:31.43518Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2715172,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:19","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8879},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Path of the Righteous-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E11.The Path of the Righteous-Bluray-1080p.mkv","size":5820264111,"dateAdded":"2019-09-06T04:14:10.020679Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2707701,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"58:32","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8880},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Ones We Leave Behind-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E12.The Ones We Leave Behind-Bluray-1080p.mkv","size":6005415251,"dateAdded":"2019-09-06T04:16:27.863237Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2923557,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:26","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8881},{"seriesId":168,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Daredevil-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 01\/S01E13.Daredevil-Bluray-1080p.mkv","size":5518410916,"dateAdded":"2019-09-06T04:18:38.65863Z","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2682391,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:36","scanType":"Progressive","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8882},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Bang-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E01.Bang-Bluray-1080p.mkv","size":5164519055,"dateAdded":"2020-12-28T07:38:05.453937Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3364431,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":10940798,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"48:09","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16965},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Dogs to a Gunfight-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E02.Dogs to a Gunfight-Bluray-1080p.mkv","size":6518449049,"dateAdded":"2020-12-28T07:39:07.003122Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3250687,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":14245186,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:42","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16966},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E03.New York's Finest-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E03.New York's Finest-Bluray-1080p.mkv","size":5914788475,"dateAdded":"2020-12-28T07:40:02.804444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3470190,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":12984277,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"47:56","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16967},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Penny and Dime-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E04.Penny and Dime-Bluray-1080p.mkv","size":6993218614,"dateAdded":"2020-12-28T07:40:57.71124Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3311325,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":12164793,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:14","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16968},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Kinbaku-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E05.Kinbaku-Bluray-1080p.mkv","size":7433594877,"dateAdded":"2020-12-28T07:41:56.398514Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3120514,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":14745582,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:28","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16969},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Regrets Only-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E06.Regrets Only-Bluray-1080p.mkv","size":7789710096,"dateAdded":"2020-12-28T07:43:04.174269Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3375401,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":15329898,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:32","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16970},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Semper Fidelis-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E07.Semper Fidelis-Bluray-1080p.mkv","size":8761593268,"dateAdded":"2020-12-28T07:44:12.36747Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3410884,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":17412956,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"56:06","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16971},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Guilty as Sin-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E08.Guilty as Sin-Bluray-1080p.mkv","size":7441665517,"dateAdded":"2020-12-28T07:45:38.833199Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3473510,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":14888569,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:03","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16972},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Seven Minutes in Heaven-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E09.Seven Minutes in Heaven-Bluray-1080p.mkv","size":8727961497,"dateAdded":"2020-12-28T07:46:46.5768Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3460952,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":16187111,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"59:12","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16973},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Man in the Box-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E10.The Man in the Box-Bluray-1080p.mkv","size":7067979294,"dateAdded":"2020-12-28T07:48:04.496235Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3530939,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":14625613,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"51:53","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16974},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E11.380-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E11.380-Bluray-1080p.mkv","size":7955843251,"dateAdded":"2020-12-28T07:49:05.679524Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3514556,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":15795906,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:58","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16975},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Dark at the End of the Tunnel-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E12.The Dark at the End of the Tunnel-Bluray-1080p.mkv","size":5640807680,"dateAdded":"2020-12-28T07:50:17.205444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3094163,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":11325731,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"52:11","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16976},{"seriesId":168,"seasonNumber":2,"relativePath":"Season 02\/S02E13.A Cold Day in Hell's Kitchen-Bluray-1080p.mkv","path":"\/tv\/Marvel's Daredevil\/Season 02\/S02E13.A Cold Day in Hell's Kitchen-Bluray-1080p.mkv","size":6645132939,"dateAdded":"2020-12-28T07:51:11.823679Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3548574,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":11897755,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:22","scanType":"","subtitles":"English \/ German"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16977}],"queue":[]},"168":{"series":{"title":"The Simpsons","alternateTitles":[{"title":"Die Simpsons","seasonNumber":-1},{"title":"Les Simpson","seasonNumber":-1},{"title":"Los Simpson","seasonNumber":-1},{"title":"Los Simpsons","seasonNumber":-1},{"title":"The Simpsons QC","seasonNumber":-1}],"sortTitle":"simpsons","status":"continuing","ended":false,"overview":"Set in Springfield, the average American town, the show focuses on the antics and everyday adventures of the Simpson family; Homer, Marge, Bart, Lisa and Maggie, as well as a virtual cast of thousands. Since the beginning, the series has been a pop culture icon, attracting hundreds of celebrities to guest star. The show has also made name for itself in its fearless satirical take on politics, media and American life in general.","previousAiring":"2021-05-24T00:00:00Z","network":"Disney+","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/49\/banner.jpg?lastWrite=637100124227027520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71663-g13.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/49\/poster.jpg?lastWrite=637100124229747470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71663-15.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/49\/fanart.jpg?lastWrite=637100124225387550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71663-10.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":62,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1990-05-14T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":19670734562,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1991-07-12T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":31892564977,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"1992-08-28T00:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":22923056805,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"1993-05-14T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":26575786518,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"1994-05-20T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":24341590437,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"1995-05-22T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":26334586008,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"1996-05-20T00:25:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":21367264321,"percentOfEpisodes":100.0}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"1997-05-19T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":25786680186,"percentOfEpisodes":100.0}},{"seasonNumber":9,"monitored":true,"statistics":{"previousAiring":"1998-05-18T00:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":14902478699,"percentOfEpisodes":100.0}},{"seasonNumber":10,"monitored":true,"statistics":{"previousAiring":"1999-05-17T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":22062115062,"percentOfEpisodes":100.0}},{"seasonNumber":11,"monitored":true,"statistics":{"previousAiring":"2000-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":21058726199,"percentOfEpisodes":100.0}},{"seasonNumber":12,"monitored":true,"statistics":{"previousAiring":"2001-05-21T00:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":18129560516,"percentOfEpisodes":100.0}},{"seasonNumber":13,"monitored":true,"statistics":{"previousAiring":"2002-05-23T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":25790650316,"percentOfEpisodes":100.0}},{"seasonNumber":14,"monitored":true,"statistics":{"previousAiring":"2003-05-19T00:25:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6152659738,"percentOfEpisodes":100.0}},{"seasonNumber":15,"monitored":true,"statistics":{"previousAiring":"2004-05-24T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6533091684,"percentOfEpisodes":100.0}},{"seasonNumber":16,"monitored":true,"statistics":{"previousAiring":"2005-05-16T00:25:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":5693129416,"percentOfEpisodes":100.0}},{"seasonNumber":17,"monitored":true,"statistics":{"previousAiring":"2006-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6379840508,"percentOfEpisodes":100.0}},{"seasonNumber":18,"monitored":true,"statistics":{"previousAiring":"2007-05-21T00:25:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":24448368530,"percentOfEpisodes":100.0}},{"seasonNumber":19,"monitored":true,"statistics":{"previousAiring":"2008-05-19T00:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":20855610159,"percentOfEpisodes":100.0}},{"seasonNumber":20,"monitored":true,"statistics":{"previousAiring":"2009-05-18T00:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":5820998408,"percentOfEpisodes":100.0}},{"seasonNumber":21,"monitored":true,"statistics":{"previousAiring":"2010-05-24T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":17001379966,"percentOfEpisodes":100.0}},{"seasonNumber":22,"monitored":true,"statistics":{"previousAiring":"2011-05-23T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":11612689309,"percentOfEpisodes":100.0}},{"seasonNumber":23,"monitored":true,"statistics":{"previousAiring":"2012-05-21T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":8525764462,"percentOfEpisodes":100.0}},{"seasonNumber":24,"monitored":true,"statistics":{"previousAiring":"2013-05-20T00:25:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":20512442515,"percentOfEpisodes":100.0}},{"seasonNumber":25,"monitored":true,"statistics":{"previousAiring":"2014-05-19T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":6698051412,"percentOfEpisodes":100.0}},{"seasonNumber":26,"monitored":true,"statistics":{"previousAiring":"2015-05-18T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":20175875491,"percentOfEpisodes":100.0}},{"seasonNumber":27,"monitored":true,"statistics":{"previousAiring":"2016-05-23T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":19523736886,"percentOfEpisodes":100.0}},{"seasonNumber":28,"monitored":true,"statistics":{"previousAiring":"2017-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":19862761717,"percentOfEpisodes":100.0}},{"seasonNumber":29,"monitored":true,"statistics":{"previousAiring":"2018-05-21T00:00:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":13927315560,"percentOfEpisodes":100.0}},{"seasonNumber":30,"monitored":true,"statistics":{"previousAiring":"2019-05-13T00:00:00Z","episodeFileCount":23,"episodeCount":23,"totalEpisodeCount":23,"sizeOnDisk":14556585129,"percentOfEpisodes":100.0}},{"seasonNumber":31,"monitored":true,"statistics":{"previousAiring":"2020-05-18T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":15831478797,"percentOfEpisodes":100.0}},{"seasonNumber":32,"monitored":true,"statistics":{"previousAiring":"2021-05-24T00:00:00Z","episodeFileCount":0,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":33,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":1989,"path":"\/tv\/The Simpsons","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":false,"useSceneNumbering":false,"runtime":25,"tvdbId":71663,"tvRageId":6190,"tvMazeId":83,"firstAired":"1989-12-17T00:00:00Z","seriesType":"standard","cleanTitle":"thesimpsons","imdbId":"tt0096697","titleSlug":"the-simpsons","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Comedy"],"tags":[],"added":"2017-12-02T19:57:24.2335003Z","ratings":{"votes":24136,"value":8.9},"statistics":{"seasonCount":33,"episodeFileCount":684,"episodeCount":706,"totalEpisodeCount":771,"sizeOnDisk":544947574293,"percentOfEpisodes":96.88385269121812},"id":49},"episodes":[{"seriesId":49,"episodeFileId":0,"seasonNumber":33,"episodeNumber":2,"title":"Lisa's Belly","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":22161},{"seriesId":49,"episodeFileId":0,"seasonNumber":33,"episodeNumber":3,"title":"Treehouse of Horror XXXII","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":22162},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Good Night","airDate":"1987-04-19","airDateUtc":"1987-04-20T00:00:00Z","overview":"Good Night was the first ever Simpsons short to air on The Tracey Ullman Show. The five main family members - Homer, Marge, Bart, Lisa, and Maggie - were first introduced in this short. Homer and Marge attempt to calm their children to sleep, with the opposite results. \r\n\r\nMaggie can be heard saying \"good night\". She rarely talks throughout the run of the series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3232},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Watching TV","airDate":"1987-05-03","airDateUtc":"1987-05-04T00:00:00Z","overview":"Bart and Lisa quarrel during commercial breaks over what channel they'll watch. Repeatedly Maggie comes up to the television and changes the channel. Later Homer is saying some speech about family matters then stops when the show comes back on.\r\n\r\nA piece of music from the Tracey Ullman show plays at one part or another during the short.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3233},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Jumping Bart","airDate":"1987-05-10","airDateUtc":"1987-05-11T00:00:00Z","overview":"Homer makes several attempts to have Bart jump into his arms. Each time Bart jumps Homer is distracted and fails to catch him. \r\n\r\nTowards the end of the episode boxing gloves are delivered, presumably the ones used in the episode Punching Bag.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3234},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Babysitting Maggie","airDate":"1987-05-31","airDateUtc":"1987-06-01T00:00:00Z","overview":"Marge puts Bart and Lisa in charge of babysitting Maggie. They watch TV while Maggie gets electrocuted, falls down the stairs, and falls off the roof. \r\n\r\nMaggie sticks a fork in an electrical socket thereby electocuting herself, she crawls up the stairs and falls down them in insane Slinky fashion then she climbs onto the roof in hot pursuit of a butterfly, and falls off it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3235},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Pacifier","airDate":"1987-06-21","airDateUtc":"1987-06-22T00:00:00Z","overview":"Lisa and Bart try to get Maggie to stop sucking on her pacifier, but Maggie, who has an entire drawer full of them, refuses to kick the habit.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3236},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Burping Contest","airDate":"1987-06-28","airDateUtc":"1987-06-29T00:00:00Z","overview":"Despite Marge's objections, Bart, Lisa and even Maggie compete in a contest to see who can make the most disgusting burp.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3237},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Dinner Time","airDate":"1987-07-12","airDateUtc":"1987-07-13T00:00:00Z","overview":"Marge serves the family purple goop for dinner, insisting that they say grace first.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3238},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Making Faces","airDate":"1987-09-22","airDateUtc":"1987-09-23T00:00:00Z","overview":"Despite Marge's warnings, the kids make faces. Maggie unclearly speaks in this episode.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3239},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"The Funeral","airDate":"1987-10-04","airDateUtc":"1987-10-05T00:00:00Z","overview":"Bart is determined to see his uncle's corpse...but not for long. \r\n\r\nThis is the only appearance of Uncle Hubert.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3240},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Maggie's Brain","airDate":"1987-10-11","airDateUtc":"1987-10-12T00:00:00Z","overview":"Bart and Lisa wonder what's inside Maggie's mind.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3241},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Football","airDate":"1987-10-18","airDateUtc":"1987-10-19T00:00:00Z","overview":"Homer teaches Bart about the importance of Football.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3242},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"House of Cards","airDate":"1987-10-25","airDateUtc":"1987-10-26T01:00:00Z","overview":"Bart tries to make a house of cards, but Lisa & Maggie make noises that have the \"house\" fall every time.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3243},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Bart and Homer's Dinner","airDate":"1987-11-01","airDateUtc":"1987-11-02T01:00:00Z","overview":"Bart can't stomach it when he and Homer are forced to fend for themselves.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3244},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Space Patrol","airDate":"1987-11-08","airDateUtc":"1987-11-09T01:00:00Z","overview":"Bart, Lisa and Maggie play a game of \"Space Patrol\" while Homer and Marge are out. \r\n\r\nLisa plays a superhero with Maggie as her sidekick, while Bart puts a jug on his head with the pretense of it being the helmet of an alien warlord.\r\n\r\nHowever, his head accidentally plops into it and the jug is left stuck on his head. Lisa \"frees\" Bart from the jug using a croquet mallet. Lisa and Maggie then hide, allowing Bart, stumbling in a daze amongst pieces of the precious broken jug lying on the floor, to take the blame.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3245},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Bart's Haircut","airDate":"1987-11-15","airDateUtc":"1987-11-16T01:00:00Z","overview":"Bart has his hair cut too short by a barber. \r\n\r\nThis is the first time we hear a character from The Simpsons series say a curse word.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3246},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"World War III","airDate":"1987-11-22","airDateUtc":"1987-11-23T01:00:00Z","overview":"Homer wakes up the family to practice for a nuclear drill... in the middle of the night.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3247},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"The Perfect Crime","airDate":"1987-12-13","airDateUtc":"1987-12-14T01:00:00Z","overview":"Marge bakes a batch of delicious cookies. Bart attempts to steal them, but burns his fingers trying to pick them up. Everyone except Bart and Maggie leave the kitchen to let them cool down, and Bart takes this opportunity to swipe them, muttering to himself \"Aha! The perfect crime!\" \r\n\r\nHomer and Marge come back to find the tray empty. Marge suspects Maggie of eating the cookies, but as a witness she knows exactly who took them and guides them along a trail of cookies running across the floor. His family catch him lying on his back in his bedroom amidst a pile of cookie crumbs. Looking up at them with his stomach full, he groans, \"There is no perfect crime.\" His head bangs back down on the ground and Maggie, secretively, snacks on an uneaten cookie.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3248},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Scary Stories","airDate":"1987-12-20","airDateUtc":"1987-12-21T01:00:00Z","overview":"Bart tells Lisa & Maggie a series of scary stories (in the middle of the dark) only to believe they're coming true.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3249},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Grampa and the Kids","airDate":"1988-01-10","airDateUtc":"1988-01-11T01:00:00Z","overview":"Grampa spends time with the kids. \r\n\r\nThis is Grampa's first appearance.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3250},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Gone Fishin' (Sort of)","airDate":"1988-01-24","airDateUtc":"1988-01-25T01:00:00Z","overview":"Bart and Homer go on a fishing trip. Homer asks Bart for a bologna sandwich, but Bart forgot the bologna. He puts the bait on the sandwich instead. Later on they hit rapids and Homer is almost knocked unconscious. They later fall off of a waterfall.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3251},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Skateboarding","airDate":"1988-02-07","airDateUtc":"1988-02-08T01:00:00Z","overview":"Bart teaches his sisters how to skateboard...or is it the other way around.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3252},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"The Pagans","airDate":"1988-02-14","airDateUtc":"1988-02-15T01:00:00Z","overview":"The kids discuss paganism. \r\n\r\nThis is the first time Bart calls his dad \"Homer\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3253},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Closeted","airDate":"1988-02-21","airDateUtc":"1988-02-22T01:00:00Z","overview":"Bart locks himself in the closet, and when he busts out, he finds out that the family has gone out without him.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3254},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"The Aquarium","airDate":"1988-02-28","airDateUtc":"1988-02-29T01:00:00Z","overview":"At an aquarium Bart swims with the sharks...literally. \r\nThis is the first time we see a naked Simpsons character. \r\nThis also marks Lisa Simpson saying the word hell in this short.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3255},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Family Portrait","airDate":"1988-03-06","airDateUtc":"1988-03-07T01:00:00Z","overview":"Homer has trouble taking a normal family portrait.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3256},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Bart's Hiccups","airDate":"1988-03-13","airDateUtc":"1988-03-14T01:00:00Z","overview":"Lisa and Maggie try to cure Bart's hiccups...the hard way.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3257},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"The Money Jar","airDate":"1988-03-20","airDateUtc":"1988-03-21T01:00:00Z","overview":"The kids try to steal money from Marge's money jar..","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3258},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"The Art Museum","airDate":"1988-05-01","airDateUtc":"1988-05-02T00:00:00Z","overview":"The Simpsons go to the art museum. \r\nThis is the first time we hear Bart say \"Whoooa, Mama!\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3259},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Zoo Story","airDate":"1988-05-08","airDateUtc":"1988-05-09T00:00:00Z","overview":"Homer unwisely teases a monkey at the zoo and gets a faceful of poo for his trouble. \r\nThis is the shortest Simpsons Short.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3260},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Shut Up, Simpsons","airDate":"1988-11-06","airDateUtc":"1988-11-07T01:00:00Z","overview":"Maggie squeaks her toy, causing a chain reaction of anger in the family.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3261},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Shell Game","airDate":"1988-11-13","airDateUtc":"1988-11-14T01:00:00Z","overview":"Bart tries to hide the cookies he stole from the jar from his parents.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3262},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"The Bart Simpson Show","airDate":"1988-11-20","airDateUtc":"1988-11-21T01:00:00Z","overview":"Bart puts on his own show after Homer tells him to stop watching cartoons. First appearance of Itchy and Scratchy. \r\nThis is the first time we hear Lisa call her dad \"Homer\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3263},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Punching Bag","airDate":"1988-11-27","airDateUtc":"1988-11-28T01:00:00Z","overview":"Bart, Lisa and eventually Marge take out their frustrations on a punching bag with Homer's picture on it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3264},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Simpsons Christmas","airDate":"1988-12-18","airDateUtc":"1988-12-19T01:00:00Z","overview":"Bart's version of Christmas.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3265},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"The Krusty the Clown Show","airDate":"1989-01-15","airDateUtc":"1989-01-16T01:00:00Z","overview":"The kids get to see Krusty's show live for the first time. First appearance of Krusty the Clown.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3266},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Bart the Hero","airDate":"1989-01-29","airDateUtc":"1989-01-30T01:00:00Z","overview":"Sent out to exercise, Bart foils a robbery attempt.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3267},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Bart's Little Fantasy","airDate":"1989-02-05","airDateUtc":"1989-02-06T01:00:00Z","overview":"Bart tells a story about large kids who throw their small parents into a small room.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3268},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Scary Movie","airDate":"1989-02-12","airDateUtc":"1989-02-13T01:00:00Z","overview":"Bart, Lisa and Maggie go to the movie to see \"The Happy Little Elves Return\" (much to Bart's dismay), but Bart convinces the girls to see \"Space Mutants\" instead. Guess who's the scaredy-cat!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3269},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Home Hypnotism","airDate":"1989-02-19","airDateUtc":"1989-02-20T01:00:00Z","overview":"Homer tries hypnosis to calm down his crazy kids.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3270},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Shoplifting","airDate":"1989-02-26","airDateUtc":"1989-02-27T01:00:00Z","overview":"Bart's attempt to swipe some chocolate is foiled.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3271},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Echo Canyon","airDate":"1989-03-12","airDateUtc":"1989-03-13T01:00:00Z","overview":"The family drives to Echo Canyon, takes turns making echoes, and Bart almost makes a boulder crunch the family car.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3272},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Bathtime","airDate":"1989-03-19","airDateUtc":"1989-03-20T01:00:00Z","overview":"Homer makes Bart take his \"Sunday Night Bath\", only to flood the bathroom.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3273},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Bart's Nightmare","airDate":"1989-03-26","airDateUtc":"1989-03-27T01:00:00Z","overview":"In this sequel to \"Shell Game\", Bart has a nightmare after eating every single cookie from the cookie jar.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3274},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Bart of the Jungle","airDate":"1989-04-16","airDateUtc":"1989-04-17T00:00:00Z","overview":"The kids swing from the trees off Homer's ties.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3275},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Family Therapy","airDate":"1989-04-23","airDateUtc":"1989-04-24T00:00:00Z","overview":"Homer takes the family to a psychologist. \r\nThis is last Tracey Ullman Short we hear a character from The Simpsons series say a curse word.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3276},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Maggie in Peril (Chapter One)","airDate":"1989-04-30","airDateUtc":"1989-05-01T00:00:00Z","overview":"Bart kicks Maggie's ball out of sight and she takes off to retrieve it back. (To be Continued...)","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3277},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Maggie in Peril (The Thrilling Conclusion)","airDate":"1989-05-07","airDateUtc":"1989-05-08T00:00:00Z","overview":"Part 2. Maggie floats in the air hanging on to balloons and lands safely back in her playpen.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3278},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"TV Simpsons","airDate":"1989-05-14","airDateUtc":"1989-05-15T00:00:00Z","overview":"Homer attempts to fix the television antenna on the roof.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3279},{"seriesId":49,"episodeFileId":14828,"seasonNumber":1,"episodeNumber":1,"title":"Simpsons Roasting on an Open Fire","airDate":"1989-12-17","airDateUtc":"1989-12-18T01:00:00Z","overview":"It's a not-so-merry Christmas for the Simpsons, when Mr. Burns decides to cut the Christmas bonuses, and Marge has to spend the family's Christmas savings to erase a tattoo Bart thought will make a great Christmas present. In order to hide the fact he didn't get the bonus, Homer takes a second job as a mall Santa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":3290},{"seriesId":49,"episodeFileId":14826,"seasonNumber":1,"episodeNumber":2,"title":"Bart the Genius","airDate":"1990-01-14","airDateUtc":"1990-01-15T01:00:00Z","overview":"After switching IQ tests with Martin, Bart is mistaken for a child genius. When he's enrolled in a school for gifted students, a series of embarrassments and mishaps makes him long for his old life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":3291},{"seriesId":49,"episodeFileId":14817,"seasonNumber":1,"episodeNumber":3,"title":"Homer's Odyssey","airDate":"1990-01-21","airDateUtc":"1990-01-22T01:00:00Z","overview":"Homer is fired for nearly causing a meltdown at the nuclear plant. Unable to provide for his family, he contemplates ending it all - until he discovers a new life path as a campaigner for safety.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":3292},{"seriesId":49,"episodeFileId":14820,"seasonNumber":1,"episodeNumber":4,"title":"There's No Disgrace Like Home","airDate":"1990-01-28","airDateUtc":"1990-01-29T01:00:00Z","overview":"After an embarrassing experience at the company picnic, Homer pawns the TV and uses the proceeds to take the family to therapy sessions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":3293},{"seriesId":49,"episodeFileId":14891,"seasonNumber":1,"episodeNumber":5,"title":"Bart the General","airDate":"1990-02-04","airDateUtc":"1990-02-05T01:00:00Z","overview":"Fed up with Nelson's bullying, the kids from Springfield Elementary decide to teach him a lesson. With advice from Grandpa, Bart leads them into battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":3294},{"seriesId":49,"episodeFileId":14829,"seasonNumber":1,"episodeNumber":6,"title":"Moaning Lisa","airDate":"1990-02-11","airDateUtc":"1990-02-12T01:00:00Z","overview":"When Lisa get a bad case of the blues, jazz musician Bleeding Gums Murphy teaches her how to express her feelings through music.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":3295},{"seriesId":49,"episodeFileId":14818,"seasonNumber":1,"episodeNumber":7,"title":"The Call of the Simpsons","airDate":"1990-02-18","airDateUtc":"1990-02-19T01:00:00Z","overview":"Homer buys an RV and the family takes off on an ill-fated camping trip.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":3296},{"seriesId":49,"episodeFileId":14824,"seasonNumber":1,"episodeNumber":8,"title":"The Telltale Head","airDate":"1990-02-25","airDateUtc":"1990-02-26T01:00:00Z","overview":"Bart tries to impress the school bullies by stealing the head of the Jebediah Springfield statue in the town square, but everyone is outraged by his act of vandalism.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":3297},{"seriesId":49,"episodeFileId":14834,"seasonNumber":1,"episodeNumber":9,"title":"Life on the Fast Lane","airDate":"1990-03-18","airDateUtc":"1990-03-19T01:00:00Z","overview":"Homer gives Marge a bowling ball for her birthday, and his self-serving gift backfires: she starts taking lessons from a suave French bowling instructor. When the lessons take a romantic turn, Marge faces temptation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":3298},{"seriesId":49,"episodeFileId":14819,"seasonNumber":1,"episodeNumber":10,"title":"Homer's Night Out","airDate":"1990-03-25","airDateUtc":"1990-03-26T01:00:00Z","overview":"Bart puts his new spy camera to use when Homer gets rowdy at a bachelor party, and the incriminating photo gets distributed all over town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":3299},{"seriesId":49,"episodeFileId":14832,"seasonNumber":1,"episodeNumber":11,"title":"The Crepes of Wrath","airDate":"1990-04-15","airDateUtc":"1990-04-16T00:00:00Z","overview":"Bart is sent as a foreign exchange student to France, where he is enslaved by corrupt winemakers. Meanwhile, the Simpson family hosts an Albanian student who takes a surprising interest in the workings of the nuclear power plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":3300},{"seriesId":49,"episodeFileId":14838,"seasonNumber":1,"episodeNumber":12,"title":"Krusty Gets Busted","airDate":"1990-04-29","airDateUtc":"1990-04-30T00:00:00Z","overview":"Krusty the Clown gets busted for robbing the Kwik-E-Mart, with Homer as an eyewitness. Convinced that their idol was wrongly accused, Bart and Lisa investigate the crime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":3301},{"seriesId":49,"episodeFileId":13782,"seasonNumber":1,"episodeNumber":13,"title":"Some Enchanted Evening","airDate":"1990-05-13","airDateUtc":"1990-05-14T00:00:00Z","overview":"While Homer takes Marge out for a night on the town, the kids spot their babysitter on America's Most Armed and Dangerous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":3302},{"seriesId":49,"episodeFileId":14833,"seasonNumber":2,"episodeNumber":1,"title":"Bart Gets an F","airDate":"1990-10-11","airDateUtc":"1990-10-12T00:00:00Z","overview":"In danger of flunking the fourth grade, Bart strikes a deal with the class brain: in exchange for tutoring, he will help Martin become more popular.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":3303},{"seriesId":49,"episodeFileId":14821,"seasonNumber":2,"episodeNumber":2,"title":"Simpson and Delilah","airDate":"1990-10-18","airDateUtc":"1990-10-19T00:00:00Z","overview":"After Homer charges a miracle hair growth treatment to the company's health insurance, his new found confidence gets him a promotion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":3304},{"seriesId":49,"episodeFileId":14823,"seasonNumber":2,"episodeNumber":3,"title":"Treehouse of Horror","airDate":"1990-10-24","airDateUtc":"1990-10-25T00:00:00Z","overview":"The family moves into a haunted mansion, Aliens abduct the Simpsons and invite them to what might be their last supper, and Lisa reads Bart Edgar Allan Poe's classic poem \"The Raven.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":3305},{"seriesId":49,"episodeFileId":14831,"seasonNumber":2,"episodeNumber":4,"title":"Two Cars in Every Garage and Three Eyes on Every Fish","airDate":"1990-11-01","airDateUtc":"1990-11-02T01:00:00Z","overview":"When a three-eyed fish is found in a nearby stream, the Springfield Nuclear Power Plant faces bad publicity and fails an inspection. Mr. Burns runs for governor, but his spin doctors are no match for Marge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":3306},{"seriesId":49,"episodeFileId":14842,"seasonNumber":2,"episodeNumber":5,"title":"Dancin' Homer","airDate":"1990-11-08","airDateUtc":"1990-11-09T01:00:00Z","overview":"Homer becomes a local celebrity as the Springfield Isotopes' mascot. When he's promoted to the big leagues, the family moves to Capital City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":3307},{"seriesId":49,"episodeFileId":14167,"seasonNumber":2,"episodeNumber":6,"title":"Dead Putting Society","airDate":"1990-11-15","airDateUtc":"1990-11-16T01:00:00Z","overview":"Competition erupts between neighbors when Todd Flanders and Bart enter a miniature golf tournament. Facing increasing pressure from their fathers, the boys find a way to settle things.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":3308},{"seriesId":49,"episodeFileId":14887,"seasonNumber":2,"episodeNumber":7,"title":"Bart vs. Thanksgiving","airDate":"1990-11-22","airDateUtc":"1990-11-23T01:00:00Z","overview":"Bart ruins Thanksgiving when he accidentally destroys Lisa's Thanksgiving centerpiece. Angry at being asked to apologize, he runs away and roams Springfield in search of dinner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":3309},{"seriesId":49,"episodeFileId":14857,"seasonNumber":2,"episodeNumber":8,"title":"Bart the Daredevil","airDate":"1990-12-06","airDateUtc":"1990-12-07T01:00:00Z","overview":"Bart decides to emulate his hero, daredevil Lance Murdoch, and performs increasingly risky stunts on his skateboard. When he sets his sights on Springfield Gorge, Homer intervenes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":3310},{"seriesId":49,"episodeFileId":14845,"seasonNumber":2,"episodeNumber":9,"title":"Itchy & Scratchy & Marge","airDate":"1990-12-20","airDateUtc":"1990-12-21T01:00:00Z","overview":"Marge wages a one-woman campaign against violence on the Itchy and Scratchy Show. She wins that battle, but draws the line at censoring Michelangelo's \"David.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":3311},{"seriesId":49,"episodeFileId":14825,"seasonNumber":2,"episodeNumber":10,"title":"Bart Gets Hit by a Car","airDate":"1991-01-10","airDateUtc":"1991-01-11T01:00:00Z","overview":"After Mr. Burns hits Bart with his car, ambulance-chasing attorney Lionel Hutz persuades Homer and Marge to sue for a million dollars.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":3312},{"seriesId":49,"episodeFileId":14822,"seasonNumber":2,"episodeNumber":11,"title":"One Fish, Two Fish, Blowfish, Blue Fish","airDate":"1991-01-24","airDateUtc":"1991-01-25T01:00:00Z","overview":"After eating poisonous blowfish at a sushi restaurant, Homer decides to live life to the fullest in the 24 hours he has left to live.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":3313},{"seriesId":49,"episodeFileId":14827,"seasonNumber":2,"episodeNumber":12,"title":"The Way We Was","airDate":"1991-01-31","airDateUtc":"1991-02-01T01:00:00Z","overview":"When the TV breaks, Marge and Homer entertain the kids with the story of how they first met.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":3314},{"seriesId":49,"episodeFileId":14843,"seasonNumber":2,"episodeNumber":13,"title":"Homer vs. Lisa and the 8th Commandment","airDate":"1991-02-07","airDateUtc":"1991-02-08T01:00:00Z","overview":"Homer becomes the most popular guy in town when he gets an illegal cable hook-up, but Lisa fears he will go to hell for violating the Eighth Commandment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":3315},{"seriesId":49,"episodeFileId":14830,"seasonNumber":2,"episodeNumber":14,"title":"Principal Charming","airDate":"1991-02-14","airDateUtc":"1991-02-15T01:00:00Z","overview":"When Marge begs Homer to find Selma a husband, he sets her up with Principal Skinner... who falls in love with Patty instead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":3316},{"seriesId":49,"episodeFileId":14851,"seasonNumber":2,"episodeNumber":15,"title":"Oh Brother, Where Art Thou?","airDate":"1991-02-21","airDateUtc":"1991-02-22T01:00:00Z","overview":"Homer's long-lost half-brother is the CEO of a car company that's wildly successful... until he hires Homer to help design a car for the average man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":3317},{"seriesId":49,"episodeFileId":14835,"seasonNumber":2,"episodeNumber":16,"title":"Bart's Dog Gets an \"F\"","airDate":"1991-03-07","airDateUtc":"1991-03-08T01:00:00Z","overview":"After a series of destructive acts, Homer decides that Santa's Little Helper must go unless he passes obedience school. As the dog's last hours with the family approach, Bart must find a way to get through to him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":3318},{"seriesId":49,"episodeFileId":14844,"seasonNumber":2,"episodeNumber":17,"title":"Old Money","airDate":"1991-03-28","airDateUtc":"1991-03-29T01:00:00Z","overview":"When Grandpa's new girlfriend at the Springfield Retirement Castle dies, he inherits her savings and must decide the best way to spend his windfall.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":3319},{"seriesId":49,"episodeFileId":14841,"seasonNumber":2,"episodeNumber":18,"title":"Brush with Greatness","airDate":"1991-04-11","airDateUtc":"1991-04-12T00:00:00Z","overview":"Marge rediscovers her interest in art and takes up painting. When Mr. Burns hires her to paint his official portrait, Marge tries but fails to find his \u201cinner beauty.\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":3320},{"seriesId":49,"episodeFileId":14837,"seasonNumber":2,"episodeNumber":19,"title":"Lisa's Substitute","airDate":"1991-04-25","airDateUtc":"1991-04-26T00:00:00Z","overview":"With Miss Hoover out sick, a substitute teacher takes over the class and becomes an inspiring role model for Lisa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":3321},{"seriesId":49,"episodeFileId":14836,"seasonNumber":2,"episodeNumber":20,"title":"The War of the Simpsons","airDate":"1991-05-02","airDateUtc":"1991-05-03T00:00:00Z","overview":"At a lakeside retreat for married couples, Marge is determined to fix her marriage with Homer, but Homer is more determined to catch General Sherman, the freakishly large catfish that lives in the lake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":3322},{"seriesId":49,"episodeFileId":14839,"seasonNumber":2,"episodeNumber":21,"title":"Three Men and a Comic Book","airDate":"1991-05-09","airDateUtc":"1991-05-10T00:00:00Z","overview":"Bart, Milhouse, and Martin pool their money to buy the first issue of Radioactive Man, but their investment and their friendship are threatened when they can't agree on who will keep it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":3323},{"seriesId":49,"episodeFileId":14183,"seasonNumber":2,"episodeNumber":22,"title":"Blood Feud","airDate":"1991-07-11","airDateUtc":"1991-07-12T00:00:00Z","overview":"When Mr. Burns is saved by a transfusion of Bart's blood, Homer expects a handsome reward but is outraged to receive only a simple thank-you note.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":3324},{"seriesId":49,"episodeFileId":2262,"seasonNumber":3,"episodeNumber":1,"title":"Stark Raving Dad","airDate":"1991-09-19","airDateUtc":"1991-09-20T00:00:00Z","overview":"Mistakenly committed to a mental hospital, Homer meets a tall, stocky white man who claims to be Michael Jackson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":3325},{"seriesId":49,"episodeFileId":14848,"seasonNumber":3,"episodeNumber":2,"title":"Mr. Lisa Goes to Washington","airDate":"1991-09-26","airDateUtc":"1991-09-27T00:00:00Z","overview":"Lisa\u2019s patriotic essay wins the family a trip to Washington, D.C. -- but the corruption she sees there inspires her to write a new and very different essay.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":3326},{"seriesId":49,"episodeFileId":14855,"seasonNumber":3,"episodeNumber":3,"title":"When Flanders Failed","airDate":"1991-10-03","airDateUtc":"1991-10-04T00:00:00Z","overview":"When Ned Flanders opens a store for left-handed people, Homer wants him to fail...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":3327},{"seriesId":49,"episodeFileId":2351,"seasonNumber":3,"episodeNumber":4,"title":"Bart the Murderer","airDate":"1991-10-10","airDateUtc":"1991-10-11T00:00:00Z","overview":"Bart becomes an errand boy for the Springfield Mafia. When Principal Skinner disappears, Fat Tony points the finger at Bart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":3328},{"seriesId":49,"episodeFileId":14866,"seasonNumber":3,"episodeNumber":5,"title":"Homer Defined","airDate":"1991-10-17","airDateUtc":"1991-10-18T00:00:00Z","overview":"Homer averts a meltdown through sheer dumb luck. When he\u2019s invited to the Shelbyville Nuclear Power Plant to give a pep talk, he faces another potential meltdown and again \u201cpulls a Homer.\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":3329},{"seriesId":49,"episodeFileId":2410,"seasonNumber":3,"episodeNumber":6,"title":"Like Father, Like Clown","airDate":"1991-10-24","airDateUtc":"1991-10-25T00:00:00Z","overview":"Bart and Lisa work to reunite Krusty the Clown with his estranged father, an Orthodox Jewish rabbi who had never accepted Krusty\u2019s career choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":3330},{"seriesId":49,"episodeFileId":2439,"seasonNumber":3,"episodeNumber":7,"title":"Treehouse of Horror II","airDate":"1991-10-31","airDateUtc":"1991-11-01T01:00:00Z","overview":"The family buys a cursed monkey paw in Morocco, and their three wishes turn out badly. In a Twilight Zone parody, Bart is the fearsome \u201cmonster\u201d who can read the townspeople\u2019s thoughts. And Mr. Burns steals Homer\u2019s brain for a giant robot he\u2019s building.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":3331},{"seriesId":49,"episodeFileId":2466,"seasonNumber":3,"episodeNumber":8,"title":"Lisa's Pony","airDate":"1991-11-07","airDateUtc":"1991-11-08T01:00:00Z","overview":"Overcompensating for his neglect, Homer buys Lisa a pony. The high cost of maintaining the animal forces him to work the graveyard shift at the Kwik-E-Mart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":3332},{"seriesId":49,"episodeFileId":2496,"seasonNumber":3,"episodeNumber":9,"title":"Saturdays of Thunder","airDate":"1991-11-14","airDateUtc":"1991-11-15T01:00:00Z","overview":"Homer tries to bond with Bart by building a soapbox racer. On race day, Bart must decide between driving Martin\u2019s aerodynamic racer and disappointing Homer, or driving his own racer and losing to Nelson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":3333},{"seriesId":49,"episodeFileId":14910,"seasonNumber":3,"episodeNumber":10,"title":"Flaming Moe's","airDate":"1991-11-21","airDateUtc":"1991-11-22T01:00:00Z","overview":"Moe steals the drink recipe Homer invented, and the rechristened \u201cFlaming Moe\u201d turns his tavern into a hotspot. When a national franchise wants to buy the recipe, Homer wants revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":3334},{"seriesId":49,"episodeFileId":2554,"seasonNumber":3,"episodeNumber":11,"title":"Burns Verkaufen der Kraftwerk","airDate":"1991-12-05","airDateUtc":"1991-12-06T01:00:00Z","overview":"Mr. Burns sells the Springfield Nuclear Power Plant to wealthy German investors who are shocked at the conditions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":3335},{"seriesId":49,"episodeFileId":14985,"seasonNumber":3,"episodeNumber":12,"title":"I Married Marge","airDate":"1991-12-26","airDateUtc":"1991-12-27T01:00:00Z","overview":"Homer and Marge recount their early years, when the couple faced a shotgun wedding and Homer\u2019s poor career prospects.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":3336},{"seriesId":49,"episodeFileId":14909,"seasonNumber":3,"episodeNumber":13,"title":"Radio Bart","airDate":"1992-01-09","airDateUtc":"1992-01-10T01:00:00Z","overview":"Bart plays practical jokes with a radio microphone, and his hoax tests the limits of the town\u2019s kindness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":3337},{"seriesId":49,"episodeFileId":14868,"seasonNumber":3,"episodeNumber":14,"title":"Lisa the Greek","airDate":"1992-01-23","airDateUtc":"1992-01-24T01:00:00Z","overview":"Sundays become \u201cDaddy-Daughter Days\u201d when Homer discovers Lisa\u2019s uncanny ability to pick winning football teams.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":3338},{"seriesId":49,"episodeFileId":2668,"seasonNumber":3,"episodeNumber":15,"title":"Homer Alone","airDate":"1992-02-06","airDateUtc":"1992-02-07T01:00:00Z","overview":"Marge has a nervous breakdown and goes on a vacation alone, leaving Bart and Lisa with Patty and Selma, and Maggie with Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":3339},{"seriesId":49,"episodeFileId":14882,"seasonNumber":3,"episodeNumber":16,"title":"Bart the Lover","airDate":"1992-02-13","airDateUtc":"1992-02-14T01:00:00Z","overview":"Bart discovers his teacher\u2019s personal ad and invents a fictional suitor to string her along. When Mrs. Krabappel falls madly in love with \u201cWoodrow,\u201d Bart\u2019s conscience starts to bother him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":3340},{"seriesId":49,"episodeFileId":14960,"seasonNumber":3,"episodeNumber":17,"title":"Homer at the Bat","airDate":"1992-02-20","airDateUtc":"1992-02-21T01:00:00Z","overview":"With a million dollars on the line, Mr. Burns hires ringers for the upcoming baseball game against the Shelbyville Nuclear Power Plant. But as misfortunes fell the pros, with bases loaded and the score tied in the ninth inning, Homer is sent to bat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":3341},{"seriesId":49,"episodeFileId":14852,"seasonNumber":3,"episodeNumber":18,"title":"Separate Vocations","airDate":"1992-02-27","airDateUtc":"1992-02-28T01:00:00Z","overview":"After a career aptitude test pegs Lisa as a homemaker and Bart as a police officer, she becomes a rebel and he becomes a hall monitor. When Lisa\u2019s subversive behavior goes too far, Bart steps in.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":3342},{"seriesId":49,"episodeFileId":14863,"seasonNumber":3,"episodeNumber":19,"title":"Dog of Death","airDate":"1992-03-12","airDateUtc":"1992-03-13T01:00:00Z","overview":"When Santa\u2019s Little Helper needs a life-saving operation, the family tightens their belts to save up the money. Sensing their resentment, the dog runs away from home, only to be adopted by Mr. Burns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":3343},{"seriesId":49,"episodeFileId":14850,"seasonNumber":3,"episodeNumber":20,"title":"Colonel Homer","airDate":"1992-03-26","airDateUtc":"1992-03-27T01:00:00Z","overview":"Homer becomes the manager of a beautiful country music singer, whose attentions drive a wedge between Marge and Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":3344},{"seriesId":49,"episodeFileId":14849,"seasonNumber":3,"episodeNumber":21,"title":"Black Widower","airDate":"1992-04-09","airDateUtc":"1992-04-10T00:00:00Z","overview":"When Selma agrees to marry her prison pen pal, Sideshow Bob, only Bart remains suspicious of his motives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":3345},{"seriesId":49,"episodeFileId":2864,"seasonNumber":3,"episodeNumber":22,"title":"The Otto Show","airDate":"1992-04-23","airDateUtc":"1992-04-24T00:00:00Z","overview":"Otto loses his job driving the school bus and the Simpsons take him in. When he must get a driver\u2019s license, he finds common ground with Patty and Selma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":3346},{"seriesId":49,"episodeFileId":2877,"seasonNumber":3,"episodeNumber":23,"title":"Bart's Friend Falls in Love","airDate":"1992-05-07","airDateUtc":"1992-05-08T00:00:00Z","overview":"Everything\u2019s coming up Milhouse when Bart\u2019s best friend falls in love with the new girl at school. Jealous, Bart snitches to Milhouse\u2019s father and the lovebirds are separated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":3347},{"seriesId":49,"episodeFileId":2884,"seasonNumber":3,"episodeNumber":24,"title":"Brother, Can You Spare Two Dimes?","airDate":"1992-08-27","airDateUtc":"1992-08-28T00:00:00Z","overview":"Homer\u2019s half-brother Herb Powell returns, his finances in ruin from his last encounter with Homer. With a little help from the family, he invents a product that\u2019s sure to turn his life around.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":3348},{"seriesId":49,"episodeFileId":14206,"seasonNumber":4,"episodeNumber":1,"title":"Kamp Krusty","airDate":"1992-09-24","airDateUtc":"1992-09-25T00:00:00Z","overview":"When Bart and Lisa arrive at Kamp Krusty, they find the summer camp is more like a prison camp. When Krusty doesn't show up to set things straight, the kids seize control and take their case to the media.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":3349},{"seriesId":49,"episodeFileId":14207,"seasonNumber":4,"episodeNumber":2,"title":"A Streetcar Named Marge","airDate":"1992-10-01","airDateUtc":"1992-10-02T00:00:00Z","overview":"Feeling underappreciated at home, Marge takes up acting and channels her pent-up rage as Blanche DuBois in a community production. Meanwhile, Maggie leads a revolt at the Ayn Rand School for Tots.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":3350},{"seriesId":49,"episodeFileId":14904,"seasonNumber":4,"episodeNumber":3,"title":"Homer the Heretic","airDate":"1992-10-08","airDateUtc":"1992-10-09T00:00:00Z","overview":"After skipping church one Sunday morning, Homer decides to quit church altogether and spend Sundays worshiping in his own way -- with cigars and beer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":3351},{"seriesId":49,"episodeFileId":14879,"seasonNumber":4,"episodeNumber":4,"title":"Lisa the Beauty Queen","airDate":"1992-10-15","airDateUtc":"1992-10-16T00:00:00Z","overview":"Homer enters Lisa into the Little Miss Springfield Pageant to help her feel better about her looks. But when she must choose between the title and her integrity, she realizes that confidence comes from within.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":3352},{"seriesId":49,"episodeFileId":14846,"seasonNumber":4,"episodeNumber":5,"title":"Treehouse of Horror III","airDate":"1992-10-29","airDateUtc":"1992-10-30T01:00:00Z","overview":"In \"Clown Without Pity,\" Bart's Krusty doll is determined to murder Homer. In \"King Homer,\" Homer plays King Kong to Marge's Fay Wray. Finally, in \"Dial Z for Zombies,\" Bart finds a book of witchcraft and accidentally brings Springfield's dead to life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":3353},{"seriesId":49,"episodeFileId":14856,"seasonNumber":4,"episodeNumber":6,"title":"Itchy & Scratchy: The Movie","airDate":"1992-11-03","airDateUtc":"1992-11-04T01:00:00Z","overview":"When Bart's misdeeds at school and at home reach new extremes, Homer puts his foot down and imposes the ultimate punishment: Bart is forbidden to go see the new Itchy & Scratchy movie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":3354},{"seriesId":49,"episodeFileId":14212,"seasonNumber":4,"episodeNumber":7,"title":"Marge Gets a Job","airDate":"1992-11-05","airDateUtc":"1992-11-06T01:00:00Z","overview":"Mr. Burns is instantly smitten when Marge takes a job at the nuclear power plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":3355},{"seriesId":49,"episodeFileId":14865,"seasonNumber":4,"episodeNumber":8,"title":"The New Kid on the Block","airDate":"1992-11-12","airDateUtc":"1992-11-13T01:00:00Z","overview":"Bart has a crush on his new neighbor, a teenage girl who only has eyes for Jimbo Jones. Bart sets out to prove that Jimbo is not as tough as he seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":3356},{"seriesId":49,"episodeFileId":14898,"seasonNumber":4,"episodeNumber":9,"title":"Mr. Plow","airDate":"1992-11-19","airDateUtc":"1992-11-20T01:00:00Z","overview":"Homer starts a thriving snow-plowing business, but cutthroat competition arrives when Barney sets up shop as the \"Plow King.\" When an avalanche buries Barney, Homer realizes the rivalry has gone too far.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":3357},{"seriesId":49,"episodeFileId":14977,"seasonNumber":4,"episodeNumber":10,"title":"Lisa's First Word","airDate":"1992-12-03","airDateUtc":"1992-12-04T01:00:00Z","overview":"While trying to get Maggie to say her first word, Marge and Homer reminisce about Bart's and Lisa's first words.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":3358},{"seriesId":49,"episodeFileId":14216,"seasonNumber":4,"episodeNumber":11,"title":"Homer's Triple Bypass","airDate":"1992-12-17","airDateUtc":"1992-12-18T01:00:00Z","overview":"Homer's doughnut-clogged heart needs a triple bypass operation, but Dr. Hibbert's fee is $40,000... so Homer takes his chances with Dr. Nick Riviera, who'll do any operation for $129.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":3359},{"seriesId":49,"episodeFileId":14862,"seasonNumber":4,"episodeNumber":12,"title":"Marge vs. the Monorail","airDate":"1993-01-14","airDateUtc":"1993-01-15T01:00:00Z","overview":"When Springfield gets a sudden windfall, a charismatic traveling salesman convinces the town to build a monorail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":3360},{"seriesId":49,"episodeFileId":14218,"seasonNumber":4,"episodeNumber":13,"title":"Selma's Choice","airDate":"1993-01-21","airDateUtc":"1993-01-22T01:00:00Z","overview":"After seeing Aunt Gladys die alone, Aunt Selma wants to get married and have a baby... until she spends a day babysitting Bart and Lisa at Duff Gardens.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":3361},{"seriesId":49,"episodeFileId":14900,"seasonNumber":4,"episodeNumber":14,"title":"Brother From the Same Planet","airDate":"1993-02-04","airDateUtc":"1993-02-05T01:00:00Z","overview":"When Homer neglects Bart once too often, Bart goes to the Big Brother program to get a new father figure. Stung, Homer replaces Bart with a little brother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":3362},{"seriesId":49,"episodeFileId":14894,"seasonNumber":4,"episodeNumber":15,"title":"I Love Lisa","airDate":"1993-02-11","airDateUtc":"1993-02-12T01:00:00Z","overview":"Ralph Wiggum mistakes pity for love when Lisa gives him a Valentine's Day card. After a public humiliation, broken-hearted Ralph gives an unexpectedly moving performance in the school's President's Day pageant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":3363},{"seriesId":49,"episodeFileId":14221,"seasonNumber":4,"episodeNumber":16,"title":"Duffless","airDate":"1993-02-18","airDateUtc":"1993-02-19T01:00:00Z","overview":"After a DUI, Homer swears off beer for a month. Meanwhile, Bart and Lisa's sibling rivalry plays out in the school science fair.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":3364},{"seriesId":49,"episodeFileId":14861,"seasonNumber":4,"episodeNumber":17,"title":"Last Exit to Springfield","airDate":"1993-03-11","airDateUtc":"1993-03-12T01:00:00Z","overview":"Homer negotiates his union's contract with Mr. Burns, mindful that he needs a dental plan for Lisa's new braces. Burns mistakes Homer's utter ineptitude for strategy and concedes, on the condition that Homer resign as union president.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":3365},{"seriesId":49,"episodeFileId":14858,"seasonNumber":4,"episodeNumber":18,"title":"So It's Come to This: A Simpsons Clip Show","airDate":"1993-04-01","airDateUtc":"1993-04-02T01:00:00Z","overview":"An April Fools' Day prank provides the jumping-off point for Simpson family flashbacks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":3366},{"seriesId":49,"episodeFileId":14224,"seasonNumber":4,"episodeNumber":19,"title":"The Front","airDate":"1993-04-15","airDateUtc":"1993-04-16T00:00:00Z","overview":"Convinced that Itchy & Scratchy has been going downhill, Bart and Lisa pen their own script and sign Grandpa Simpson's name to it. Meanwhile, Homer goes back to school to make up a missing credit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":3367},{"seriesId":49,"episodeFileId":14883,"seasonNumber":4,"episodeNumber":20,"title":"Whacking Day","airDate":"1993-04-29","airDateUtc":"1993-04-30T00:00:00Z","overview":"Lisa takes a stand against Springfield's annual snake-bashing festival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":3368},{"seriesId":49,"episodeFileId":14226,"seasonNumber":4,"episodeNumber":21,"title":"Marge in Chains","airDate":"1993-05-06","airDateUtc":"1993-05-07T00:00:00Z","overview":"Overwhelmed by her family's demands during a flu epidemic, Marge accidentally shoplifts at the Kwik-E-Mart and winds up in prison.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":3369},{"seriesId":49,"episodeFileId":14227,"seasonNumber":4,"episodeNumber":22,"title":"Krusty Gets Kancelled","airDate":"1993-05-13","airDateUtc":"1993-05-14T00:00:00Z","overview":"An advertising blitz for \"Gabbo\" spells trouble for Krusty: his show gets canceled when the new ventriloquist act gets higher ratings. Bart and Lisa enlist Krusty's Hollywood pals for a comeback special.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":3370},{"seriesId":49,"episodeFileId":14184,"seasonNumber":5,"episodeNumber":1,"title":"Homer's Barbershop Quartet","airDate":"1993-09-30","airDateUtc":"1993-10-01T00:00:00Z","overview":"Through flashbacks, Homer recalls the dizzying rise and fall of his Beatles-esque barbershop quartet. The Be Sharps reunite for one last concert on the roof of Moe's Tavern.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":3371},{"seriesId":49,"episodeFileId":14185,"seasonNumber":5,"episodeNumber":2,"title":"Cape Feare","airDate":"1993-10-07","airDateUtc":"1993-10-08T00:00:00Z","overview":"When Bart receives death threats from newly paroled Sideshow Bob, the family goes into the Witness Relocation Program and starts a new life on a houseboat on Terror Lake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":3372},{"seriesId":49,"episodeFileId":14859,"seasonNumber":5,"episodeNumber":3,"title":"Homer Goes to College","airDate":"1993-10-14","airDateUtc":"1993-10-15T00:00:00Z","overview":"Burns discovers that Homer is grossly unqualified to be a nuclear safety inspector, so Homer enrolls at Springfield University to study nuclear physics. While there, Homer befriends three nerds and instigates a prank that gets them expelled.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":3373},{"seriesId":49,"episodeFileId":14187,"seasonNumber":5,"episodeNumber":4,"title":"Rosebud","airDate":"1993-10-21","airDateUtc":"1993-10-22T00:00:00Z","overview":"Mr. Burns pines away for Bobo, his beloved childhood teddy bear and symbol of lost innocence. When the bear turns up in Maggie's possession, the resulting tug of war affects the whole town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":3374},{"seriesId":49,"episodeFileId":14188,"seasonNumber":5,"episodeNumber":5,"title":"Treehouse of Horror IV","airDate":"1993-10-28","airDateUtc":"1993-10-29T00:00:00Z","overview":"In \"The Devil and Homer Simpson,\" Homer sells his soul for a doughnut. Next, in the Twilight Zone spoof \"Terror at 5 1\/2 Feet,\" everyone doubts Bart's sanity when he's the only one to see a gremlin sabotaging the school bus. In \"Bart Simpson's Dracula,\" the family turns into vampires, and Lisa sends Homer to the Burns mansion in an attempt to kill the head vampire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":3375},{"seriesId":49,"episodeFileId":14189,"seasonNumber":5,"episodeNumber":6,"title":"Marge on the Lam","airDate":"1993-11-04","airDateUtc":"1993-11-05T01:00:00Z","overview":"When Marge has a girls' night out with a new neighbor, they wind up roaring toward a cliff in a Thelma-and-Louise-style car chase.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":3376},{"seriesId":49,"episodeFileId":14896,"seasonNumber":5,"episodeNumber":7,"title":"Bart's Inner Child","airDate":"1993-11-11","airDateUtc":"1993-11-12T01:00:00Z","overview":"Bart heckles the guru at a self-help seminar, and the man presents him to the audience as a role model for their \"inner child.\" But when the whole town tries to \"be like Bart,\" things start to fall apart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":3377},{"seriesId":49,"episodeFileId":14191,"seasonNumber":5,"episodeNumber":8,"title":"Boy-Scoutz 'N the Hood","airDate":"1993-11-18","airDateUtc":"1993-11-19T01:00:00Z","overview":"After a reckless Squishee bender with Milhouse, Bart wakes to the shocking realization that he joined the Junior Campers. Lured by pocketknives and knot-tying lessons, Bart assimilates into the group but then must face the father-son rafting trip.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":3378},{"seriesId":49,"episodeFileId":14854,"seasonNumber":5,"episodeNumber":9,"title":"The Last Temptation of Homer","airDate":"1993-12-09","airDateUtc":"1993-12-10T01:00:00Z","overview":"Homer struggles with his attraction to new coworker Mindy, a beautiful engineer whose love for doughnuts is equal to his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":3379},{"seriesId":49,"episodeFileId":14847,"seasonNumber":5,"episodeNumber":10,"title":"$pringfield (Or, How I Learned to Stop Worrying and Love Legalized Gambling)","airDate":"1993-12-16","airDateUtc":"1993-12-17T01:00:00Z","overview":"When gambling is legalized in Springfield, Mr. Burns opens an extravagant casino on the waterfront. Meanwhile, Bart opens a casino in his treehouse. Burns becomes a germ-phobic recluse and Homer must tear Marge away from the slot machines.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":3380},{"seriesId":49,"episodeFileId":14929,"seasonNumber":5,"episodeNumber":11,"title":"Homer the Vigilante","airDate":"1994-01-06","airDateUtc":"1994-01-07T01:00:00Z","overview":"When a cat burglar prowls Springfield, Homer forms a citizens' watch group that winds up breaking more laws than they protect. When the cat burglar sets his sights on the world's biggest cubic zirconia, a clue comes from an unexpected source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":3381},{"seriesId":49,"episodeFileId":14195,"seasonNumber":5,"episodeNumber":12,"title":"Bart Gets Famous","airDate":"1994-02-03","airDateUtc":"1994-02-04T01:00:00Z","overview":"Working as Krusty the Clown's assistant, Bart accidentally steals the limelight by blurting an instant catchphrase: \"I didn't do it.\" But when he tries to capitalize on his fifteen minutes of fame, the fans are fickle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":3382},{"seriesId":49,"episodeFileId":14889,"seasonNumber":5,"episodeNumber":13,"title":"Homer and Apu","airDate":"1994-02-10","airDateUtc":"1994-02-11T01:00:00Z","overview":"Fired for selling tainted meat to Homer, Apu tries to make amends to the Simpsons, and Homer joins him in a pilgrimage to Kwik-E-Mart headquarters in India.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":3383},{"seriesId":49,"episodeFileId":14197,"seasonNumber":5,"episodeNumber":14,"title":"Lisa vs. Malibu Stacy","airDate":"1994-02-17","airDateUtc":"1994-02-18T01:00:00Z","overview":"Lisa is shocked to find that her new Malibu Stacy doll reinforces negative stereotypes of women. With Smithers' help, Lisa tracks down the original creator of Malibu Stacy and convinces her to market a new doll that's a better role model for girls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":3384},{"seriesId":49,"episodeFileId":14901,"seasonNumber":5,"episodeNumber":15,"title":"Deep Space Homer","airDate":"1994-02-24","airDateUtc":"1994-02-25T01:00:00Z","overview":"Dejected by a lack of recognition at work, Homer makes a crank call to NASA and winds up being chosen to ride into space with astronauts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":3385},{"seriesId":49,"episodeFileId":14199,"seasonNumber":5,"episodeNumber":16,"title":"Homer Loves Flanders","airDate":"1994-03-17","airDateUtc":"1994-03-18T01:00:00Z","overview":"Homer and Flanders bond over a football game. As the two friends become inseparable, Flanders struggles with a growing dislike of Homer that finally blows up in front of the entire church congregation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":3386},{"seriesId":49,"episodeFileId":14200,"seasonNumber":5,"episodeNumber":17,"title":"Bart Gets an Elephant","airDate":"1994-03-31","airDateUtc":"1994-04-01T01:00:00Z","overview":"Bart wins a wacky radio contest and forgoes the cash to claim the gag prize instead: an elephant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":3387},{"seriesId":49,"episodeFileId":14897,"seasonNumber":5,"episodeNumber":18,"title":"Burns' Heir","airDate":"1994-04-14","airDateUtc":"1994-04-15T00:00:00Z","overview":"The childless Mr. Burns selects Bart as his heir and begins grooming him for his new role. As a test of loyalty, Mr. Burns orders Bart to fire Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":3388},{"seriesId":49,"episodeFileId":14202,"seasonNumber":5,"episodeNumber":19,"title":"Sweet Seymour Skinner's Baadasssss Song","airDate":"1994-04-28","airDateUtc":"1994-04-29T00:00:00Z","overview":"When Bart gets Principal Skinner fired, Ned Flanders is brought in to act as principal. Skinner befriends his former nemesis and the pair look for a way to get Skinner reinstated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":3389},{"seriesId":49,"episodeFileId":14890,"seasonNumber":5,"episodeNumber":20,"title":"The Boy Who Knew Too Much","airDate":"1994-05-05","airDateUtc":"1994-05-06T00:00:00Z","overview":"Playing hooky, Bart sneaks onto the Quimby Compound and is the only witness when Mayor Quimby's ne'er-do-well nephew Freddy allegedly assaults a snooty French butler. But if he comes forward, he will be punished for truancy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":3390},{"seriesId":49,"episodeFileId":14860,"seasonNumber":5,"episodeNumber":21,"title":"Lady Bouvier's Lover","airDate":"1994-05-12","airDateUtc":"1994-05-13T00:00:00Z","overview":"Mr. Burns and Grandpa Simpson compete for the affections of Marge's mother. The more dashing suitor prevails, but in a scene straight out of The Graduate, Grandpa crashes the wedding just before Mrs. Bouvier becomes Mrs. Burns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":3391},{"seriesId":49,"episodeFileId":14205,"seasonNumber":5,"episodeNumber":22,"title":"Secrets of a Successful Marriage","airDate":"1994-05-19","airDateUtc":"1994-05-20T00:00:00Z","overview":"Homer teaches an adult education class on successful marriage, but his students show little interest until he starts telling them juicy details of his marriage to Marge. Furious, Marge kicks Homer out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":3392},{"seriesId":49,"episodeFileId":14978,"seasonNumber":6,"episodeNumber":1,"title":"Bart of Darkness","airDate":"1994-09-04","airDateUtc":"1994-09-05T00:00:00Z","overview":"Stuck in his room with a broken leg, Bart hears a high-pitched scream. When he looks through his telescope, he sees a guilty Ned Flanders burying the evidence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":3393},{"seriesId":49,"episodeFileId":14272,"seasonNumber":6,"episodeNumber":2,"title":"Lisa's Rival","airDate":"1994-09-11","airDateUtc":"1994-09-12T00:00:00Z","overview":"Lisa feels threatened when a new girl moves to Springfield: Allison is smart, pretty, a great saxophone player and a crack diorama builder. Lisa tries to befriend her new rival, but she's consumed with envy and competitiveness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":3394},{"seriesId":49,"episodeFileId":14273,"seasonNumber":6,"episodeNumber":3,"title":"Another Simpsons Clip Show","airDate":"1994-09-25","airDateUtc":"1994-09-26T00:00:00Z","overview":"After reading the weepy best-seller The Bridges of Madison County, Marge sits down with the family and recalls romantic moments, along with temptations from her bowling instructor Jacques and Homer's coworker Mindy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":3395},{"seriesId":49,"episodeFileId":14893,"seasonNumber":6,"episodeNumber":4,"title":"Itchy & Scratchy Land","airDate":"1994-10-02","airDateUtc":"1994-10-03T00:00:00Z","overview":"The family's trip to Itchy & Scratchy Land takes an unexpected turn when high-tech robots malfunction and become violent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":3396},{"seriesId":49,"episodeFileId":14275,"seasonNumber":6,"episodeNumber":5,"title":"Sideshow Bob Roberts","airDate":"1994-10-09","airDateUtc":"1994-10-10T00:00:00Z","overview":"Backed by a cabal of Republicans and the talk radio blowhard Birch Barlow, Sideshow Bob runs for mayor of Springfield. When new mayor Bob decides to build a freeway right through the Simpson's' home, Bart and Lisa set out to prove the election was rigged.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":3397},{"seriesId":49,"episodeFileId":14853,"seasonNumber":6,"episodeNumber":6,"title":"Treehouse of Horror V","airDate":"1994-10-30","airDateUtc":"1994-10-31T01:00:00Z","overview":"In \"The Shinning,\" Homer becomes groundskeeper of Mr. Burns' isolated mountain mansion. Next, in \"Time and Punishment,\" Homer tries to fix the toaster and winds up traveling through time. In \"Nightmare Cafeteria,\" Principal Skinner finds an ingenious way to reduce overcrowding in the detention room and deal with cafeteria budget cuts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":3398},{"seriesId":49,"episodeFileId":14907,"seasonNumber":6,"episodeNumber":7,"title":"Bart's Girlfriend","airDate":"1994-11-06","airDateUtc":"1994-11-07T01:00:00Z","overview":"Smitten with Reverend Lovejoy's daughter Jessica, Bart tries to reform to win her heart -- but what she really wants is a bad boy. When she steals the church collection plate, Bart finds he's in over his head.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":3399},{"seriesId":49,"episodeFileId":14940,"seasonNumber":6,"episodeNumber":8,"title":"Lisa on Ice","airDate":"1994-11-13","airDateUtc":"1994-11-14T01:00:00Z","overview":"When she nearly flunks gym class, Lisa is forced to take up a sport. She's a natural at hockey, but things get complicated when her team faces off against Bart's. In a tense moment on the ice, sibling rivalry melts into sibling loyalty.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":3400},{"seriesId":49,"episodeFileId":14279,"seasonNumber":6,"episodeNumber":9,"title":"Homer Badman","airDate":"1994-11-27","airDateUtc":"1994-11-28T01:00:00Z","overview":"When Homer gropes for a gummy candy stuck to the babysitter's pants, she mistakes his intentions and turns the town against him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":3401},{"seriesId":49,"episodeFileId":14280,"seasonNumber":6,"episodeNumber":10,"title":"Grampa vs. Sexual Inadequacy","airDate":"1994-12-04","airDateUtc":"1994-12-05T01:00:00Z","overview":"Grandpa Simpson's miracle elixir reinvigorates Homer and Marge's sex life. When father and son embark on an old-fashioned medicine show to sell the love tonic, they rake in the money, but eventually old resentments bubble up between them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":3402},{"seriesId":49,"episodeFileId":14876,"seasonNumber":6,"episodeNumber":11,"title":"Fear of Flying","airDate":"1994-12-18","airDateUtc":"1994-12-19T01:00:00Z","overview":"When they try to go on vacation, the family discovers Marge's debilitating fear of flying. Marge consults a psychoanalyst to find the source of her baffling fear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":3403},{"seriesId":49,"episodeFileId":14282,"seasonNumber":6,"episodeNumber":12,"title":"Homer the Great","airDate":"1995-01-08","airDateUtc":"1995-01-09T01:00:00Z","overview":"Homer joins the secret society of the Stonecutters and is suddenly exalted when the brethren discover his birthmark. The ancient order is shaken to the core by the ineptitude of its new Chosen One.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":3404},{"seriesId":49,"episodeFileId":14870,"seasonNumber":6,"episodeNumber":13,"title":"And Maggie Makes Three","airDate":"1995-01-22","airDateUtc":"1995-01-23T01:00:00Z","overview":"The story of Maggie's birth is told in flashbacks: after Homer quits the Springfield Nuclear Power Plant to pursue his dream of working at a bowling alley, Marge reveals that she is pregnant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":3405},{"seriesId":49,"episodeFileId":14885,"seasonNumber":6,"episodeNumber":14,"title":"Bart's Comet","airDate":"1995-02-05","airDateUtc":"1995-02-06T01:00:00Z","overview":"When Bart is forced to assist Principal Skinner in early-morning astronomy observations, he discovers a giant comet heading towards Springfield. Facing impending doom, the entire town shows up at the Flanders family bomb shelter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":3406},{"seriesId":49,"episodeFileId":14872,"seasonNumber":6,"episodeNumber":15,"title":"Homie the Clown","airDate":"1995-02-12","airDateUtc":"1995-02-13T01:00:00Z","overview":"Krusty the Clown's reckless spending forces him to open a clown college to keep afloat. New graduate Homer discovers the perks and perils of being Krusty.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":3407},{"seriesId":49,"episodeFileId":14286,"seasonNumber":6,"episodeNumber":16,"title":"Bart vs. Australia","airDate":"1995-02-19","airDateUtc":"1995-02-20T01:00:00Z","overview":"After Bart's prank phone call to Australia goes awry, the Simpsons must fly out to the land down under and apologize to the Australian people. When they discover Bart's penalty will be a kick in the pants, international relations deteriorate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":3408},{"seriesId":49,"episodeFileId":14928,"seasonNumber":6,"episodeNumber":17,"title":"Homer vs. Patty and Selma","airDate":"1995-02-26","airDateUtc":"1995-02-27T01:00:00Z","overview":"Homer must turn to his sisters-in-law for a loan. Relishing Homer's degradation, Patty and Selma make him their slave. But when the sisters are caught smoking on the job, Homer reluctantly covers for them, saving their jobs. Meanwhile, Bart is late to sign up for a gym class and must take the only class still open -- ballet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":3409},{"seriesId":49,"episodeFileId":14288,"seasonNumber":6,"episodeNumber":18,"title":"A Star Is Burns","airDate":"1995-03-05","airDateUtc":"1995-03-06T01:00:00Z","overview":"Springfield plays host to a film festival. Among the contenders for best film: Barney presents \"Pukahontas,\" a haunting meditation on his alcoholism; Mr. Burns commissions the fawning biography \"A Burns for All Seasons\"; and Hans Moleman exploits misfortune with \"Man Getting Hit by Football\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":3410},{"seriesId":49,"episodeFileId":14289,"seasonNumber":6,"episodeNumber":19,"title":"Lisa's Wedding","airDate":"1995-03-19","airDateUtc":"1995-03-20T01:00:00Z","overview":"A fortune teller foresees Lisa's future marriage to an upper-crust Harvard classmate. After a series of embarrassing incidents, Lisa comes to realize that even though her family may not be classy, she loves them the way they are.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":3411},{"seriesId":49,"episodeFileId":14290,"seasonNumber":6,"episodeNumber":20,"title":"Two Dozen and One Greyhounds","airDate":"1995-04-09","airDateUtc":"1995-04-10T00:00:00Z","overview":"When Santa's Little Helper sires a litter of puppies, Mr. Burns adopts them, secretly scheming to use their pelts to make a fur tuxedo. When Bart and Lisa confront Mr. Burns, he relents and turns the puppies into racing dogs instead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":3412},{"seriesId":49,"episodeFileId":14291,"seasonNumber":6,"episodeNumber":21,"title":"The PTA Disbands","airDate":"1995-04-16","airDateUtc":"1995-04-17T00:00:00Z","overview":"A teachers' strike forces the Board of Education to enlist PTA members as substitute teachers. Realizing he preferred the old regime, Bart locks Skinner and Mrs. Krabappel in a room together until they can agree on the contract.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":3413},{"seriesId":49,"episodeFileId":14292,"seasonNumber":6,"episodeNumber":22,"title":"Round Springfield","airDate":"1995-04-30","airDateUtc":"1995-05-01T00:00:00Z","overview":"Lisa is reunited with her idol, Bleeding Gums Murphy, but their time together is short-lived. When the jazz legend passes away, a heartbroken Lisa wants to buy his rare album for $500 and play it on the local jazz station as a tribute.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":3414},{"seriesId":49,"episodeFileId":14293,"seasonNumber":6,"episodeNumber":23,"title":"The Springfield Connection","airDate":"1995-05-07","airDateUtc":"1995-05-08T00:00:00Z","overview":"After Marge helps catch a petty criminal, the adrenaline rush inspires her to join the Springfield Police Department. Marge experiences feelings of power and authority that she's never known before, but police corruption makes her question her newfound calling.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":3415},{"seriesId":49,"episodeFileId":14294,"seasonNumber":6,"episodeNumber":24,"title":"Lemon of Troy","airDate":"1995-05-14","airDateUtc":"1995-05-15T00:00:00Z","overview":"The simmering rivalry between Springfield and a neighboring town heats up when Shelbyville kids steal Springfield's prized lemon tree.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":3416},{"seriesId":49,"episodeFileId":14295,"seasonNumber":6,"episodeNumber":25,"title":"Who Shot Mr. Burns? (1)","airDate":"1995-05-21","airDateUtc":"1995-05-22T00:00:00Z","overview":"In Part I of this two-part suspense story, Mr. Burns' evil schemes go too far. When Burns winds up shot, everyone is a suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":3417},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"Springfield's Most Wanted","airDate":"1995-09-17","airDateUtc":"1995-09-18T00:00:00Z","overview":"This special was aired before the premier of the 7th season opener; hosted by John Walsh (from the FOX series \"Americas Most Wanted\"), it offered up all sorts of theories and insights into who might have shot Montgomery Burns.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3280},{"seriesId":49,"episodeFileId":14895,"seasonNumber":7,"episodeNumber":1,"title":"Who Shot Mr. Burns? (2)","airDate":"1995-09-17","airDateUtc":"1995-09-18T00:00:00Z","overview":"With Mr. Burns shot, Chief Wiggum investigates the crime, and nearly everyone in town has a motive. At the end, it all comes down to the Simpson DNA.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":3418},{"seriesId":49,"episodeFileId":2303,"seasonNumber":7,"episodeNumber":2,"title":"Radioactive Man","airDate":"1995-09-24","airDateUtc":"1995-09-25T00:00:00Z","overview":"Bart longs to play \"Fallout Boy\" in the new Radioactive Man movie, but the Van Houtens thrust Milhouse into the spotlight. Meanwhile, the town of Springfield sees an opportunity for profit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":130,"unverifiedSceneNumbering":false,"id":3419},{"seriesId":49,"episodeFileId":14938,"seasonNumber":7,"episodeNumber":3,"title":"Home Sweet Homediddily-Dum-Doodily","airDate":"1995-10-01","airDateUtc":"1995-10-02T00:00:00Z","overview":"When Homer and Marge are found to be unfit parents, the kids are placed with the Flanders family. Reluctant participants in the Flanderses' wholesome family activities, Bart and Lisa become the targets of an emergency baptism.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":3420},{"seriesId":49,"episodeFileId":14877,"seasonNumber":7,"episodeNumber":4,"title":"Bart Sells His Soul","airDate":"1995-10-08","airDateUtc":"1995-10-09T00:00:00Z","overview":"Bart sells his soul to Milhouse for five dollars, but soon regrets his decision. Meanwhile, Moe turns the Tavern into a family-friendly restaurant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":3421},{"seriesId":49,"episodeFileId":14933,"seasonNumber":7,"episodeNumber":5,"title":"Lisa the Vegetarian","airDate":"1995-10-15","airDateUtc":"1995-10-16T00:00:00Z","overview":"After visiting a local petting zoo, Lisa becomes a vegetarian and faces ridicule from family and friends. When she lashes out and ruins Homer's barbecue, she learns a lesson in tolerance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":3422},{"seriesId":49,"episodeFileId":14921,"seasonNumber":7,"episodeNumber":6,"title":"Treehouse of Horror VI","airDate":"1995-10-29","airDateUtc":"1995-10-30T01:00:00Z","overview":"In \"Attack of the 50 Foot Eyesores,\" strange atmospheric conditions bring giant advertising statues to life. In \"Nightmare on Evergreen Terrace,\" Groundskeeper Willie is killed in a freak accident and seeks revenge in the childrens' dreams. In the final segment, Homer steps through a secret portal and becomes three-dimensional.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":3423},{"seriesId":49,"episodeFileId":14899,"seasonNumber":7,"episodeNumber":7,"title":"King-Size Homer","airDate":"1995-11-05","airDateUtc":"1995-11-06T01:00:00Z","overview":"Homer tries to gain sixty pounds so he can stay home on disability. When he nearly causes a catastrophe at the plant, Homer reconsiders his plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":3424},{"seriesId":49,"episodeFileId":2481,"seasonNumber":7,"episodeNumber":8,"title":"Mother Simpson","airDate":"1995-11-19","airDateUtc":"1995-11-20T01:00:00Z","overview":"Homer discovers that his mother is still alive, a former radical who is a fugitive from the law. When her old nemesis Burns spots her and tips off the FBI, she is forced to return to the underground.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":3425},{"seriesId":49,"episodeFileId":14867,"seasonNumber":7,"episodeNumber":9,"title":"Sideshow Bob's Last Gleaming","airDate":"1995-11-26","airDateUtc":"1995-11-27T01:00:00Z","overview":"After Sideshow Bob escapes from prison, the Springfield Air Show is the setting for his ill-fated vendetta against television and Krusty the Clown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":3426},{"seriesId":49,"episodeFileId":2539,"seasonNumber":7,"episodeNumber":10,"title":"The Simpsons 138th Episode Spectacular","airDate":"1995-12-03","airDateUtc":"1995-12-04T01:00:00Z","overview":"Troy McClure hosts a behind-the-scenes look at the show, including clips of the series' beginnings as filler on \"The Tracy Ullman Show,\" Simpsons trivia questions, and unaired scenes from popular episodes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":3427},{"seriesId":49,"episodeFileId":2566,"seasonNumber":7,"episodeNumber":11,"title":"Marge Be Not Proud","airDate":"1995-12-17","airDateUtc":"1995-12-18T01:00:00Z","overview":"Nabbed for shoplifting, Bart manages to keep it a secret from the family... until it's time to have the family Christmas photo taken at the Try-N-Save.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":3428},{"seriesId":49,"episodeFileId":2594,"seasonNumber":7,"episodeNumber":12,"title":"Team Homer","airDate":"1996-01-07","airDateUtc":"1996-01-08T01:00:00Z","overview":"Homer catches Mr. Burns in an ether-induced haze and asks for $500 for his bowling team. When Burns' head clears, he demands to join the team. Meanwhile, Bart's inflammatory T-shirt provokes Principal Skinner to require school uniforms.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":140,"unverifiedSceneNumbering":false,"id":3429},{"seriesId":49,"episodeFileId":14915,"seasonNumber":7,"episodeNumber":13,"title":"Two Bad Neighbors","airDate":"1996-01-14","airDateUtc":"1996-01-15T01:00:00Z","overview":"Homer resents being upstaged when former president George Bush moves into the neighborhood. After Bush spanks Bart, an all-out prank war ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":141,"unverifiedSceneNumbering":false,"id":3430},{"seriesId":49,"episodeFileId":2652,"seasonNumber":7,"episodeNumber":14,"title":"Scenes from the Class Struggle in Springfield","airDate":"1996-02-04","airDateUtc":"1996-02-05T01:00:00Z","overview":"A chance encounter with a former classmate yields an invitation to the Springfield Country Club, where Marge tries to parlay a bargain basement Chanel suit into elevated social status for her family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":142,"unverifiedSceneNumbering":false,"id":3431},{"seriesId":49,"episodeFileId":14983,"seasonNumber":7,"episodeNumber":15,"title":"Bart the Fink","airDate":"1996-02-11","airDateUtc":"1996-02-12T01:00:00Z","overview":"In a scheme to get Krusty's autograph, Bart sends him a check. When Krusty's offshore holding corporation endorses the check, his illegal tax shelter is exposed. In despair after the government auctions off his possessions, Krusty fakes his own death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":143,"unverifiedSceneNumbering":false,"id":3432},{"seriesId":49,"episodeFileId":2708,"seasonNumber":7,"episodeNumber":16,"title":"Lisa the Iconoclast","airDate":"1996-02-18","airDateUtc":"1996-02-19T01:00:00Z","overview":"While researching into Jebediah Springfield's past for an essay, Lisa discovers that the town founder wasn't the hero that everyone thinks he was.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":144,"unverifiedSceneNumbering":false,"id":3433},{"seriesId":49,"episodeFileId":2736,"seasonNumber":7,"episodeNumber":17,"title":"Homer the Smithers","airDate":"1996-02-25","airDateUtc":"1996-02-26T01:00:00Z","overview":"Forced to take a vacation, Smithers needs to find a temporary replacement who won't outshine him. Homer seems the perfect choice until a sudden outburst forces Mr. Burns to assert his independence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":145,"unverifiedSceneNumbering":false,"id":3434},{"seriesId":49,"episodeFileId":2764,"seasonNumber":7,"episodeNumber":18,"title":"The Day the Violence Died","airDate":"1996-03-17","airDateUtc":"1996-03-18T01:00:00Z","overview":"Bart meets the original animator who created Itchy, penniless some 70 years after the studio stole his idea. When Bart helps him sue for restitution, he unwittingly bankrupts Itchy & Scratchy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":146,"unverifiedSceneNumbering":false,"id":3435},{"seriesId":49,"episodeFileId":2792,"seasonNumber":7,"episodeNumber":19,"title":"A Fish Called Selma","airDate":"1996-03-24","airDateUtc":"1996-03-25T01:00:00Z","overview":"Washed up and plagued by scandal, Troy McClure sees a marriage to Selma as his ticket back to success.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":147,"unverifiedSceneNumbering":false,"id":3436},{"seriesId":49,"episodeFileId":2820,"seasonNumber":7,"episodeNumber":20,"title":"Bart on the Road","airDate":"1996-03-31","airDateUtc":"1996-04-01T01:00:00Z","overview":"Bart creates a fake driver's license for himself and uses it to go on a spring break road trip with Milhouse, Nelson, and Martin. Meanwhile, Homer and Lisa bond after spending some quality time together at work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":148,"unverifiedSceneNumbering":false,"id":3437},{"seriesId":49,"episodeFileId":14968,"seasonNumber":7,"episodeNumber":21,"title":"22 Short Films About Springfield","airDate":"1996-04-14","airDateUtc":"1996-04-15T00:00:00Z","overview":"Bart and Milhouse wonder if anything interesting happens to the citizens of Springfield, which leads to a series of interconnected vignettes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":149,"unverifiedSceneNumbering":false,"id":3438},{"seriesId":49,"episodeFileId":14864,"seasonNumber":7,"episodeNumber":22,"title":"Raging Abe Simpson and his Grumbling Grandson in: 'The Curse of the Flying Hellfish'","airDate":"1996-04-28","airDateUtc":"1996-04-29T00:00:00Z","overview":"When a fellow veteran dies, Grandpa Simpson and Mr. Burns fight for buried WWII treasure as the only surviving members of their battalion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":150,"unverifiedSceneNumbering":false,"id":3439},{"seriesId":49,"episodeFileId":2879,"seasonNumber":7,"episodeNumber":23,"title":"Much Apu About Nothing","airDate":"1996-05-05","airDateUtc":"1996-05-06T00:00:00Z","overview":"When Mayor Quimby uses immigrants as a political scapegoat, the Simpsons discover that Apu is an illegal immigrant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":151,"unverifiedSceneNumbering":false,"id":3440},{"seriesId":49,"episodeFileId":2887,"seasonNumber":7,"episodeNumber":24,"title":"Homerpalooza","airDate":"1996-05-19","airDateUtc":"1996-05-20T00:00:00Z","overview":"To show his kids how hip he is, Homer takes Bart and Lisa to a music festival, where he earns himself a place in the sideshow by catching a cannonball with his belly.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":152,"unverifiedSceneNumbering":false,"id":3441},{"seriesId":49,"episodeFileId":14903,"seasonNumber":7,"episodeNumber":25,"title":"Summer of 4 Ft. 2","airDate":"1996-05-19","airDateUtc":"1996-05-20T00:25:00Z","overview":"On a family vacation, Lisa tries on a new identity to fit in with the other kids at the beach. Jealous, Bart reveals her true nerdiness to the group.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":153,"unverifiedSceneNumbering":false,"id":3442},{"seriesId":49,"episodeFileId":14246,"seasonNumber":8,"episodeNumber":1,"title":"Treehouse of Horror VII","airDate":"1996-10-27","airDateUtc":"1996-10-28T01:00:00Z","overview":"In \"The Thing and I,\" Bart discovers his evil Siamese twin in the attic. In \"The Genesis Tub,\" Lisa's science experiment becomes a quickly-developing micro-universe, where she is thought of as God and Bart is the devil. In \"Citizen Kang,\" aliens replace Clinton and Dole just in time for the election.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":154,"unverifiedSceneNumbering":false,"id":3443},{"seriesId":49,"episodeFileId":14892,"seasonNumber":8,"episodeNumber":2,"title":"You Only Move Twice","airDate":"1996-11-03","airDateUtc":"1996-11-04T01:00:00Z","overview":"When Homer accepts a job offer, the Simpsons move to Cypress Creek, where everything seems too good to be true. Finally happy at his job, Homer fails to notice that his new boss is an evil megalomaniac bent on world domination.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":155,"unverifiedSceneNumbering":false,"id":3444},{"seriesId":49,"episodeFileId":14248,"seasonNumber":8,"episodeNumber":3,"title":"The Homer They Fall","airDate":"1996-11-10","airDateUtc":"1996-11-11T01:00:00Z","overview":"When Moe sees that Homer can absorb massive blows to the head, he turns him into a prizefighter and sets up a match with heavyweight champion Drederick Tatum.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":156,"unverifiedSceneNumbering":false,"id":3445},{"seriesId":49,"episodeFileId":14905,"seasonNumber":8,"episodeNumber":4,"title":"Burns Baby Burns","airDate":"1996-11-17","airDateUtc":"1996-11-18T01:00:00Z","overview":"Mr. Burns' boorish long-lost son Larry gets the brush-off from Burns, but Homer hatches a plan to reconcile them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":157,"unverifiedSceneNumbering":false,"id":3446},{"seriesId":49,"episodeFileId":14250,"seasonNumber":8,"episodeNumber":5,"title":"Bart After Dark","airDate":"1996-11-24","airDateUtc":"1996-11-25T01:00:00Z","overview":"After trespassing and damaging property at a mysterious old house, Bart is required to work there as a punishment... but it turns out to be a burlesque house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":158,"unverifiedSceneNumbering":false,"id":3447},{"seriesId":49,"episodeFileId":14251,"seasonNumber":8,"episodeNumber":6,"title":"A Milhouse Divided","airDate":"1996-12-01","airDateUtc":"1996-12-02T01:00:00Z","overview":"Kirk and Luann Van Houten are getting a divorce. Homer is confident that it will never happen to him, but Kirk tells him how quickly things can change.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":159,"unverifiedSceneNumbering":false,"id":3448},{"seriesId":49,"episodeFileId":14906,"seasonNumber":8,"episodeNumber":7,"title":"Lisa's Date With Density","airDate":"1996-12-15","airDateUtc":"1996-12-16T01:00:00Z","overview":"Lisa develops a crush on Nelson and tries to change him into a better person. Meanwhile, Homer finds an autodialer and starts a telemarketing scam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":160,"unverifiedSceneNumbering":false,"id":3449},{"seriesId":49,"episodeFileId":14253,"seasonNumber":8,"episodeNumber":8,"title":"Hurricane Neddy","airDate":"1996-12-29","airDateUtc":"1996-12-30T01:00:00Z","overview":"A hurricane destroys the Flanders' home and they have to move into the church basement. The people of Springfield gather to rebuild their house, but when Ned sees the poor workmanship, he has a complete breakdown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":161,"unverifiedSceneNumbering":false,"id":3450},{"seriesId":49,"episodeFileId":14881,"seasonNumber":8,"episodeNumber":9,"title":"El Viaje Misterioso de Nuestro Jomer (The Mysterious Voyage of Our Homer)","airDate":"1997-01-05","airDateUtc":"1997-01-06T01:00:00Z","overview":"After eating a dish laced with potent peppers during the chili cookoff, Homer has hallucinations where a mystical coyote urges him to find his soulmate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":162,"unverifiedSceneNumbering":false,"id":3451},{"seriesId":49,"episodeFileId":14888,"seasonNumber":8,"episodeNumber":10,"title":"The Springfield Files","airDate":"1997-01-12","airDateUtc":"1997-01-13T01:00:00Z","overview":"Homer witnesses something out of this world in Springfield woods, but no one believes him -- not even FBI agents Fox Mulder and Dana Scully, who come to investigate the incident.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":163,"unverifiedSceneNumbering":false,"id":3452},{"seriesId":49,"episodeFileId":14874,"seasonNumber":8,"episodeNumber":11,"title":"The Twisted World of Marge Simpson","airDate":"1997-01-19","airDateUtc":"1997-01-20T01:00:00Z","overview":"Marge's new pretzel franchise is failing until Homer strikes a deal with Fat Tony, Springfield's local mobster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":164,"unverifiedSceneNumbering":false,"id":3453},{"seriesId":49,"episodeFileId":14937,"seasonNumber":8,"episodeNumber":12,"title":"Mountain of Madness","airDate":"1997-02-02","airDateUtc":"1997-02-03T01:00:00Z","overview":"To promote teamwork amongst the power plant's employees, Mr. Burns makes them go on a corporate retreat up in the mountains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":165,"unverifiedSceneNumbering":false,"id":3454},{"seriesId":49,"episodeFileId":14258,"seasonNumber":8,"episodeNumber":13,"title":"Simpsoncalifragilisticexpiala (Annoyed Grunt) cious","airDate":"1997-02-07","airDateUtc":"1997-02-08T01:00:00Z","overview":"Marge is stressed by the demands of motherhood and the Simpsons get a magical British nanny, who floats down from the sky holding an umbrella.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":166,"unverifiedSceneNumbering":false,"id":3455},{"seriesId":49,"episodeFileId":14884,"seasonNumber":8,"episodeNumber":14,"title":"The Itchy & Scratchy & Poochie Show","airDate":"1997-02-09","airDateUtc":"1997-02-10T01:00:00Z","overview":"In an attempt to boost ratings, the Itchy and Scratchy Show adds a new \"in-your-face\" character voiced by Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":167,"unverifiedSceneNumbering":false,"id":3456},{"seriesId":49,"episodeFileId":14260,"seasonNumber":8,"episodeNumber":15,"title":"Homer's Phobia","airDate":"1997-02-16","airDateUtc":"1997-02-17T01:00:00Z","overview":"The Simpsons befriend a shop owner, but when Homer discovers the man is gay, he worries about his influence on Bart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":168,"unverifiedSceneNumbering":false,"id":3457},{"seriesId":49,"episodeFileId":14261,"seasonNumber":8,"episodeNumber":16,"title":"Brother From Another Series","airDate":"1997-02-23","airDateUtc":"1997-02-24T01:00:00Z","overview":"When Sideshow Bob is released from prison, his brother Cecil puts him in charge of building Springfield's new hydroelectric dam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":169,"unverifiedSceneNumbering":false,"id":3458},{"seriesId":49,"episodeFileId":14954,"seasonNumber":8,"episodeNumber":17,"title":"My Sister, My Sitter","airDate":"1997-03-02","airDateUtc":"1997-03-03T01:00:00Z","overview":"Lisa has a stellar reputation as a babysitter, but when Homer and Marge leave her in charge of Bart and Maggie, everything starts going wrong.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":170,"unverifiedSceneNumbering":false,"id":3459},{"seriesId":49,"episodeFileId":14263,"seasonNumber":8,"episodeNumber":18,"title":"Homer vs. the 18th Amendment","airDate":"1997-03-16","airDateUtc":"1997-03-17T01:00:00Z","overview":"When Prohibition is revived in Springfield, Homer and Bart supply the town with alcohol.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":171,"unverifiedSceneNumbering":false,"id":3460},{"seriesId":49,"episodeFileId":14264,"seasonNumber":8,"episodeNumber":19,"title":"Grade School Confidential","airDate":"1997-04-06","airDateUtc":"1997-04-07T00:00:00Z","overview":"Bart discovers Principal Skinner and Mrs. Krabappel kissing, and it's not long before the whole town knows of their secret affair.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":172,"unverifiedSceneNumbering":false,"id":3461},{"seriesId":49,"episodeFileId":14265,"seasonNumber":8,"episodeNumber":20,"title":"The Canine Mutiny","airDate":"1997-04-13","airDateUtc":"1997-04-14T00:00:00Z","overview":"When Bart can't pay the credit card bill for his expensive new purebred dog, the repo men unwittingly take Santa's Little Helper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":173,"unverifiedSceneNumbering":false,"id":3462},{"seriesId":49,"episodeFileId":14266,"seasonNumber":8,"episodeNumber":21,"title":"The Old Man and the Lisa","airDate":"1997-04-20","airDateUtc":"1997-04-21T00:00:00Z","overview":"Financially ruined, Mr. Burns turns to Lisa for help in building a recycling business. Lisa believes he's changed, but his new business venture takes a shocking new direction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":174,"unverifiedSceneNumbering":false,"id":3463},{"seriesId":49,"episodeFileId":14267,"seasonNumber":8,"episodeNumber":22,"title":"In Marge We Trust","airDate":"1997-04-27","airDateUtc":"1997-04-28T00:00:00Z","overview":"Disturbed that Reverend Lovejoy has lost interest in counseling parishioners, Marge volunteers as the \"Listen Lady.\" Meanwhile, Homer sees his likeness on a box of Japanese detergent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":175,"unverifiedSceneNumbering":false,"id":3464},{"seriesId":49,"episodeFileId":14268,"seasonNumber":8,"episodeNumber":23,"title":"Homer's Enemy","airDate":"1997-05-04","airDateUtc":"1997-05-05T00:00:00Z","overview":"A hardworking new employee at the power plant is consumed with resentment at Homer's undeserved success.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":176,"unverifiedSceneNumbering":false,"id":3465},{"seriesId":49,"episodeFileId":14269,"seasonNumber":8,"episodeNumber":24,"title":"The Simpsons Spin-Off Showcase","airDate":"1997-05-11","airDateUtc":"1997-05-12T00:00:00Z","overview":"Troy McClure presents three Simpsons spinoff spoofs: In \"Chief Wiggum, P.I.,\" Chief Wiggum becomes a New Orleans detective. Next, Grampa Simpson's soul is trapped inside Moe's Love tester machine in \"The Love-Matic Grampa.\" Finally, the Simpson family hosts a '70s-style variety show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":177,"unverifiedSceneNumbering":false,"id":3466},{"seriesId":49,"episodeFileId":14270,"seasonNumber":8,"episodeNumber":25,"title":"The Secret War of Lisa Simpson","airDate":"1997-05-18","airDateUtc":"1997-05-19T00:00:00Z","overview":"When Bart is sent to military school after playing a prank on the town, Lisa decides to join him... as the school's only girl cadet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":178,"unverifiedSceneNumbering":false,"id":3467},{"seriesId":49,"episodeFileId":14947,"seasonNumber":9,"episodeNumber":1,"title":"The City of New York vs. Homer Simpson","airDate":"1997-09-21","airDateUtc":"1997-09-22T00:00:00Z","overview":"Designated driver Barney absconds to Manhattan in Homer's car and leaves it there. But when the family journeys to the Big Apple to retrieve their property, Homer discovers his car has been booted.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":179,"unverifiedSceneNumbering":false,"id":3468},{"seriesId":49,"episodeFileId":6850,"seasonNumber":9,"episodeNumber":2,"title":"The Principal and the Pauper","airDate":"1997-09-28","airDateUtc":"1997-09-29T00:00:00Z","overview":"Unmasked as an impostor, Principal Skinner flees to Capital City to reclaim his former life as a shiftless good-for-nothing. The people of Springfield gain a newfound appreciation for him and form a plan to bring him back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":180,"unverifiedSceneNumbering":false,"id":3469},{"seriesId":49,"episodeFileId":6851,"seasonNumber":9,"episodeNumber":3,"title":"Lisa's Sax","airDate":"1997-10-19","airDateUtc":"1997-10-20T00:00:00Z","overview":"After Lisa\u2019s saxophone is destroyed, the Simpsons reminisce about how she originally got the instrument. On the hottest day of the year, Homer must decide whether to buy an air conditioner or replace Lisa\u2019s sax.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":181,"unverifiedSceneNumbering":false,"id":3470},{"seriesId":49,"episodeFileId":6852,"seasonNumber":9,"episodeNumber":4,"title":"Treehouse of Horror VIII","airDate":"1997-10-26","airDateUtc":"1997-10-27T01:00:00Z","overview":"In \u201cThe Homega Man,\u201d Homer faces a post-apocalyptic Springfield. Next, Bart attempts to become Superfly in \"Fly vs. Fly.\" In \u201cEasy-Bake Coven,\u201d amidst a witch hunt in 1649, Marge and her sisters invent trick-or-treating.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":182,"unverifiedSceneNumbering":false,"id":3471},{"seriesId":49,"episodeFileId":14911,"seasonNumber":9,"episodeNumber":5,"title":"The Cartridge Family","airDate":"1997-11-02","airDateUtc":"1997-11-03T01:00:00Z","overview":"Alarmed by a soccer riot, Homer buys a handgun. His reckless behavior drives Marge and the kids out of the house, and even his new gun club buddies desert him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":183,"unverifiedSceneNumbering":false,"id":3472},{"seriesId":49,"episodeFileId":14946,"seasonNumber":9,"episodeNumber":6,"title":"Bart Star","airDate":"1997-11-09","airDateUtc":"1997-11-10T01:00:00Z","overview":"When Homer becomes the coach of a peewee football team, he replaces star quarterback Nelson with the less talented Bart. Facing his teammates\u2019 scorn, Bart looks for a way out but finds a better way to show his team spirit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":184,"unverifiedSceneNumbering":false,"id":3473},{"seriesId":49,"episodeFileId":6855,"seasonNumber":9,"episodeNumber":7,"title":"The Two Mrs. Nahasapeemapetilons","airDate":"1997-11-16","airDateUtc":"1997-11-17T01:00:00Z","overview":"Trying to escape his arranged marriage, Apu asks Marge to pose as his wife during his mother\u2019s visit. When the ruse fails, Homer makes a last-ditch attempt to intervene, but Apu is smitten with his new bride Manjula.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":185,"unverifiedSceneNumbering":false,"id":3474},{"seriesId":49,"episodeFileId":6856,"seasonNumber":9,"episodeNumber":8,"title":"Lisa the Skeptic","airDate":"1997-11-23","airDateUtc":"1997-11-24T01:00:00Z","overview":"When a skeleton is unearthed at the site of a future shopping mall, all Springfield is convinced it is the skeleton of an angel \u2013 except Lisa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":186,"unverifiedSceneNumbering":false,"id":3475},{"seriesId":49,"episodeFileId":6857,"seasonNumber":9,"episodeNumber":9,"title":"Realty Bites","airDate":"1997-12-07","airDateUtc":"1997-12-08T01:00:00Z","overview":"When Marge gets her real estate license, she learns to put a positive spin on the flaws of the houses she\u2019s selling. But when the Flanders buy the Murder House, she realizes she has to tell the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":187,"unverifiedSceneNumbering":false,"id":3476},{"seriesId":49,"episodeFileId":14930,"seasonNumber":9,"episodeNumber":10,"title":"Miracle on Evergreen Terrace","airDate":"1997-12-21","airDateUtc":"1997-12-22T01:00:00Z","overview":"After accidentally ruining the family\u2019s Christmas tree and presents, Bart buries the evidence and claims a burglar stole everything. When Kent Brockman does a human interest story on the family\u2019s tragic loss, the townspeople shower the family with generosity\u2026 until the truth comes out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":188,"unverifiedSceneNumbering":false,"id":3477},{"seriesId":49,"episodeFileId":14924,"seasonNumber":9,"episodeNumber":11,"title":"All Singing, All Dancing","airDate":"1998-01-04","airDateUtc":"1998-01-05T01:00:00Z","overview":"Homer rents a Clint Eastwood movie and is dismayed to find it's a musical. Using clips from past episodes, the rest of the family reminds him about the many times he and other members of the family and town have broken into song and dance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":189,"unverifiedSceneNumbering":false,"id":3478},{"seriesId":49,"episodeFileId":6860,"seasonNumber":9,"episodeNumber":12,"title":"Bart Carny","airDate":"1998-01-11","airDateUtc":"1998-01-12T01:00:00Z","overview":"When the carnival comes to town, Homer and Bart wind up working the ring toss. A father-son team of grifters shows them the downside of the \u201ccarny code,\u201d but the Simpsons beat them at their own game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":190,"unverifiedSceneNumbering":false,"id":3479},{"seriesId":49,"episodeFileId":6861,"seasonNumber":9,"episodeNumber":13,"title":"The Joy of Sect","airDate":"1998-02-08","airDateUtc":"1998-02-09T01:00:00Z","overview":"A cult lures in most of Springfield to toil for \u201cThe Leader.\u201d After Marge escapes and has the family deprogrammed, Homer exposes the man behind the spaceship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":191,"unverifiedSceneNumbering":false,"id":3480},{"seriesId":49,"episodeFileId":14935,"seasonNumber":9,"episodeNumber":14,"title":"Das Bus","airDate":"1998-02-15","airDateUtc":"1998-02-16T01:00:00Z","overview":"When Otto drives the school bus off a bridge, the kids wind up on a deserted island, fending for themselves in a \u201cLord of the Flies\u201d parody. Back in Springfield, Homer takes on Bill Gates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":192,"unverifiedSceneNumbering":false,"id":3481},{"seriesId":49,"episodeFileId":6863,"seasonNumber":9,"episodeNumber":15,"title":"The Last Temptation of Krust","airDate":"1998-02-22","airDateUtc":"1998-02-23T01:00:00Z","overview":"Krusty bombs at a charity comedy event and feels like a tired old hack. With the Simpsons\u2019 support, Krusty takes his act in a fresh new direction\u2026 but in the end, his true nature asserts itself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":193,"unverifiedSceneNumbering":false,"id":3482},{"seriesId":49,"episodeFileId":14926,"seasonNumber":9,"episodeNumber":16,"title":"Dumbbell Indemnity","airDate":"1998-03-01","airDateUtc":"1998-03-02T01:00:00Z","overview":"Moe goes broke trying to wine and dine a new girlfriend. Desperate for money, he cooks up an insurance scam with Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":194,"unverifiedSceneNumbering":false,"id":3483},{"seriesId":49,"episodeFileId":6865,"seasonNumber":9,"episodeNumber":17,"title":"Lisa the Simpson","airDate":"1998-03-08","airDateUtc":"1998-03-09T01:00:00Z","overview":"Lisa struggles with solving a simple puzzle and fears that the \"Simpson gene\u201d is suddenly wiping out her intelligence. Homer stages a family reunion in hopes of introducing Lisa to some Simpsons she can respect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":195,"unverifiedSceneNumbering":false,"id":3484},{"seriesId":49,"episodeFileId":14974,"seasonNumber":9,"episodeNumber":18,"title":"This Little Wiggy","airDate":"1998-03-22","airDateUtc":"1998-03-23T01:00:00Z","overview":"At Marge\u2019s insistence, Bart has a \u201cplay date\u201d with Ralph. Bart suddenly sees the upside of this friendship when he discovers Chief Wiggum\u2019s \u201cmaster key\u201d and goes to explore Springfield\u2019s abandoned prison.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":196,"unverifiedSceneNumbering":false,"id":3485},{"seriesId":49,"episodeFileId":6867,"seasonNumber":9,"episodeNumber":19,"title":"Simpson Tide","airDate":"1998-03-29","airDateUtc":"1998-03-30T01:00:00Z","overview":"When Homer joins the Naval Reserve, a captain takes a liking to him and leaves him in charge of a nuclear submarine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":197,"unverifiedSceneNumbering":false,"id":3486},{"seriesId":49,"episodeFileId":6868,"seasonNumber":9,"episodeNumber":20,"title":"The Trouble With Trillions","airDate":"1998-04-05","airDateUtc":"1998-04-06T00:00:00Z","overview":"Facing an IRS audit, Homer agrees to help the feds bust Mr. Burns for a missing trillion-dollar bill. When Burns makes an anti-government stand, Homer flees with him to Cuba.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":198,"unverifiedSceneNumbering":false,"id":3487},{"seriesId":49,"episodeFileId":6869,"seasonNumber":9,"episodeNumber":21,"title":"Girly Edition","airDate":"1998-04-19","airDateUtc":"1998-04-20T00:00:00Z","overview":"Lisa becomes the anchor of a kids\u2019 news program but is upstaged by Bart\u2019s treacly human interest stories. At home, Homer corrupts a helper monkey.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":199,"unverifiedSceneNumbering":false,"id":3488},{"seriesId":49,"episodeFileId":6870,"seasonNumber":9,"episodeNumber":22,"title":"Trash of the Titans","airDate":"1998-04-26","airDateUtc":"1998-04-27T00:00:00Z","overview":"Homer feuds with the Springfield garbage men and decides to run for Sanitation Commissioner. After winning the election with a sleazy campaign, Homer can\u2019t keep the extravagant promises he made to the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":200,"unverifiedSceneNumbering":false,"id":3489},{"seriesId":49,"episodeFileId":6871,"seasonNumber":9,"episodeNumber":23,"title":"King of the Hill","airDate":"1998-05-03","airDateUtc":"1998-05-04T00:00:00Z","overview":"After Rainier Wolfcastle helps Homer get in shape, Homer accepts a challenge to climb the Murderhorn, the tallest mountain in Springfield.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":201,"unverifiedSceneNumbering":false,"id":3490},{"seriesId":49,"episodeFileId":14976,"seasonNumber":9,"episodeNumber":24,"title":"Lost Our Lisa","airDate":"1998-05-10","airDateUtc":"1998-05-11T00:00:00Z","overview":"Bart\u2019s latest stunt thwarts Lisa\u2019s plan to attend a museum exhibit. When she tries to go alone and takes the wrong bus, Homer sets out to find her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":202,"unverifiedSceneNumbering":false,"id":3491},{"seriesId":49,"episodeFileId":6873,"seasonNumber":9,"episodeNumber":25,"title":"Natural Born Kissers","airDate":"1998-05-17","airDateUtc":"1998-05-18T00:00:00Z","overview":"Homer and Marge try to spice up their love life and are caught baring it all in public. Bart and Lisa discover an alternate ending to Casablanca.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":203,"unverifiedSceneNumbering":false,"id":3492},{"seriesId":49,"episodeFileId":14296,"seasonNumber":10,"episodeNumber":1,"title":"Lard of the Dance","airDate":"1998-08-23","airDateUtc":"1998-08-24T00:00:00Z","overview":"Homer and Bart try to make money by selling used grease. Meanwhile, Lisa organizes a school dance but feels alienated when a new classmate and her friends try to act like adults.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":204,"unverifiedSceneNumbering":false,"id":3493},{"seriesId":49,"episodeFileId":14297,"seasonNumber":10,"episodeNumber":2,"title":"The Wizard of Evergreen Terrace","airDate":"1998-09-20","airDateUtc":"1998-09-21T00:00:00Z","overview":"A midlife crisis prompts Homer to quit his job and become an inventor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":205,"unverifiedSceneNumbering":false,"id":3494},{"seriesId":49,"episodeFileId":14880,"seasonNumber":10,"episodeNumber":3,"title":"Bart the Mother","airDate":"1998-09-27","airDateUtc":"1998-09-28T00:00:00Z","overview":"Under Nelson's bad influence, Bart shoots a bird with a BB gun. Stricken with remorse, he tries to nurture the eggs from the bird's nest, which hatch into a species of lizard outlawed in Springfield.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":206,"unverifiedSceneNumbering":false,"id":3495},{"seriesId":49,"episodeFileId":14299,"seasonNumber":10,"episodeNumber":4,"title":"Treehouse of Horror IX","airDate":"1998-10-25","airDateUtc":"1998-10-26T01:00:00Z","overview":"In \"Hell Toup\u00e9e,\" Snake is sent to the electric chair, and his hair is transplanted onto Homer. In \"The Terror of Tiny Toon,\" Bart and Lisa become cartoon characters in an episode of Itchy & Scratchy. In \"Starship Poopers,\" a growth spurt casts doubt on Maggie's paternity, and the family goes on the Jerry Springer show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":207,"unverifiedSceneNumbering":false,"id":3496},{"seriesId":49,"episodeFileId":14967,"seasonNumber":10,"episodeNumber":5,"title":"When You Dish Upon a Star","airDate":"1998-11-08","airDateUtc":"1998-11-09T01:00:00Z","overview":"After a chance encounter with Hollywood celebrities secretly living in Springfield, Homer becomes their friend and gofer... until he spills the beans to the gang at Moe's.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":208,"unverifiedSceneNumbering":false,"id":3497},{"seriesId":49,"episodeFileId":14301,"seasonNumber":10,"episodeNumber":6,"title":"D'oh-in in the Wind","airDate":"1998-11-15","airDateUtc":"1998-11-16T01:00:00Z","overview":"In a quest to learn Homer's middle name, Homer and Grandpa travel to his mother's old commune, where Homer embraces the hippie life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":209,"unverifiedSceneNumbering":false,"id":3498},{"seriesId":49,"episodeFileId":14302,"seasonNumber":10,"episodeNumber":7,"title":"Lisa Gets an A","airDate":"1998-11-22","airDateUtc":"1998-11-23T01:00:00Z","overview":"Stuck at home with a cold, Lisa gets addicted to a video game and neglects her homework. Her A+++ on a test wins the school a grant, but when she confesses that she cheated, Skinner covers it up. Meanwhile, Homer raises a lobster.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":210,"unverifiedSceneNumbering":false,"id":3499},{"seriesId":49,"episodeFileId":14875,"seasonNumber":10,"episodeNumber":8,"title":"Homer Simpson in: 'Kidney Trouble'","airDate":"1998-12-06","airDateUtc":"1998-12-07T01:00:00Z","overview":"When Grandpa needs a new kidney, Homer agrees to donate one, but then chickens out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":211,"unverifiedSceneNumbering":false,"id":3500},{"seriesId":49,"episodeFileId":14941,"seasonNumber":10,"episodeNumber":9,"title":"Mayored to the Mob","airDate":"1998-12-20","airDateUtc":"1998-12-21T01:00:00Z","overview":"After a riot at a sci-fi convention, Mayor Quimby hires Homer as his bodyguard, and Homer witnesses the rampant corruption in town politics. When Homer takes a stand, he runs afoul of the Springfield mafia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":212,"unverifiedSceneNumbering":false,"id":3501},{"seriesId":49,"episodeFileId":14305,"seasonNumber":10,"episodeNumber":10,"title":"Viva Ned Flanders","airDate":"1999-01-10","airDateUtc":"1999-01-11T01:00:00Z","overview":"When clean-living Ned Flanders wants to experience a new side of life, Homer takes him to Las Vegas. After a drunken binge, they marry a pair of cocktail waitresses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":213,"unverifiedSceneNumbering":false,"id":3502},{"seriesId":49,"episodeFileId":14306,"seasonNumber":10,"episodeNumber":11,"title":"Wild Barts Can't Be Broken","airDate":"1999-01-17","airDateUtc":"1999-01-18T01:00:00Z","overview":"Scapegoated for the vandalism of drunken Isotopes fans, the children of Springfield wage war on the adults by broadcasting their secrets on the radio.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":214,"unverifiedSceneNumbering":false,"id":3503},{"seriesId":49,"episodeFileId":14307,"seasonNumber":10,"episodeNumber":12,"title":"Sunday, Cruddy Sunday","airDate":"1999-01-31","airDateUtc":"1999-02-01T01:00:00Z","overview":"Homer and his friends charter a bus to the Super Bowl, only to find that their tickets are fake. Misadventures ensue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":215,"unverifiedSceneNumbering":false,"id":3504},{"seriesId":49,"episodeFileId":14308,"seasonNumber":10,"episodeNumber":13,"title":"Homer to the Max","airDate":"1999-02-07","airDateUtc":"1999-02-08T01:00:00Z","overview":"A new TV series features a suave and debonair character named Homer Simpson. Homer capitalizes on his new namesake, until the character is rewritten to be a bumbling fool. Trying to recapture the positive attention he enjoyed, Homer changes his name to \"Max Power.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":216,"unverifiedSceneNumbering":false,"id":3505},{"seriesId":49,"episodeFileId":14309,"seasonNumber":10,"episodeNumber":14,"title":"I'm with Cupid","airDate":"1999-02-14","airDateUtc":"1999-02-15T01:00:00Z","overview":"Apu is making the husbands of Springfield look bad with his extravagent Valentine's Day efforts for Manjula. When the men try to sabotage Apu's grand gesture, they accidentally wind up benefiting from it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":217,"unverifiedSceneNumbering":false,"id":3506},{"seriesId":49,"episodeFileId":14869,"seasonNumber":10,"episodeNumber":15,"title":"Marge Simpson in: 'Screaming Yellow Honkers'","airDate":"1999-02-21","airDateUtc":"1999-02-22T01:00:00Z","overview":"A new Canyonero SUV turns timid Marge into an aggressive driver, and her road rage lands her in traffic school. But when a stampede occurs at the zoo, the town looks to Marge to save the day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":218,"unverifiedSceneNumbering":false,"id":3507},{"seriesId":49,"episodeFileId":14311,"seasonNumber":10,"episodeNumber":16,"title":"Make Room for Lisa","airDate":"1999-02-28","airDateUtc":"1999-03-01T01:00:00Z","overview":"Indebted from a mishap at the Smithsonian, Homer lets a cell phone company put a transmitter in the house. Forced to share a room with Bart, Lisa resents Homer until a New Age experience gives her empathy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":219,"unverifiedSceneNumbering":false,"id":3508},{"seriesId":49,"episodeFileId":14312,"seasonNumber":10,"episodeNumber":17,"title":"Maximum Homerdrive","airDate":"1999-03-28","airDateUtc":"1999-03-29T01:00:00Z","overview":"After beating Homer in a steak-eating competition, a trucker dies; Homer and Bart take over his rig to complete his shipment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":220,"unverifiedSceneNumbering":false,"id":3509},{"seriesId":49,"episodeFileId":14313,"seasonNumber":10,"episodeNumber":18,"title":"Simpsons Bible Stories","airDate":"1999-04-04","airDateUtc":"1999-04-05T00:00:00Z","overview":"When Reverend Lovejoy subjects the congregation to an extended Bible reading, the Simpsons fall asleep and have dreams based on Bible stories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":221,"unverifiedSceneNumbering":false,"id":3510},{"seriesId":49,"episodeFileId":14314,"seasonNumber":10,"episodeNumber":19,"title":"Mom and Pop Art","airDate":"1999-04-11","airDateUtc":"1999-04-12T00:00:00Z","overview":"Homer's failed do-it-yourself project gets mistaken for \"outsider art.\" Suddenly in the limelight, Homer must come up with new \"works\" to impress the art world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":222,"unverifiedSceneNumbering":false,"id":3511},{"seriesId":49,"episodeFileId":14315,"seasonNumber":10,"episodeNumber":20,"title":"The Old Man and the C Student","airDate":"1999-04-25","airDateUtc":"1999-04-26T00:00:00Z","overview":"When Bart ruins Springfield's chance to host the Olympics, the kids are sentenced to community service work at the retirement home. To help the residents recapture their youth, Bart takes them on an ill-fated boat ride.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":223,"unverifiedSceneNumbering":false,"id":3512},{"seriesId":49,"episodeFileId":14316,"seasonNumber":10,"episodeNumber":21,"title":"Monty Can't Buy Me Love","airDate":"1999-05-02","airDateUtc":"1999-05-03T00:00:00Z","overview":"A new mogul wins the hearts of the townspeople with a shower of cash. Jealous, Mr. Burns asks Homer to help make him a beloved billionaire too, and they hatch a plan to bring the Loch Ness Monster to Springfield.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":224,"unverifiedSceneNumbering":false,"id":3513},{"seriesId":49,"episodeFileId":14317,"seasonNumber":10,"episodeNumber":22,"title":"They Saved Lisa's Brain","airDate":"1999-05-09","airDateUtc":"1999-05-10T00:00:00Z","overview":"Mayor Quimby flees Springfield, leaving the town chapter of Mensa in charge. As the group's new power goes to their heads, they take their utopian plans too far and the townspeople revolt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":225,"unverifiedSceneNumbering":false,"id":3514},{"seriesId":49,"episodeFileId":14873,"seasonNumber":10,"episodeNumber":23,"title":"Thirty Minutes Over Tokyo","airDate":"1999-05-16","airDateUtc":"1999-05-17T00:00:00Z","overview":"After their bank account is drained at a cyber-cafe, the Simpsons go on a disastrous low-budget trip to Japan, where they wind up as contestants on a humiliating game show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":226,"unverifiedSceneNumbering":false,"id":3515},{"seriesId":49,"episodeFileId":14340,"seasonNumber":11,"episodeNumber":1,"title":"Beyond Blunderdome","airDate":"1999-09-26","airDateUtc":"1999-09-27T00:00:00Z","overview":"Homer befriends Mel Gibson just as Mel is completing a remake of Mr. Smith Goes To Washington. Homer convinces Mel to make the film more violent, with disastrous results.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":227,"unverifiedSceneNumbering":false,"id":3516},{"seriesId":49,"episodeFileId":14949,"seasonNumber":11,"episodeNumber":2,"title":"Brother's Little Helper","airDate":"1999-10-03","airDateUtc":"1999-10-04T00:00:00Z","overview":"When Bart commits an extremely destructive prank, he is given Focusyn, a pill to help him concentrate in school. At first the results are impressive, and then Bart starts believing in a conspiracy involving spy satellites and major league baseball.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":228,"unverifiedSceneNumbering":false,"id":3517},{"seriesId":49,"episodeFileId":14342,"seasonNumber":11,"episodeNumber":3,"title":"Guess Who's Coming to Criticize Dinner?","airDate":"1999-10-24","airDateUtc":"1999-10-25T00:00:00Z","overview":"With Lisa's help, Homer uses his vast knowledge of food to become the town's leading restaurant critic. But when he gets petty and vindictive in his criticisms, all the other chefs in town try to kill him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":229,"unverifiedSceneNumbering":false,"id":3518},{"seriesId":49,"episodeFileId":14343,"seasonNumber":11,"episodeNumber":4,"title":"Treehouse of Horror X","airDate":"1999-10-31","airDateUtc":"1999-11-01T01:00:00Z","overview":"In \"I Know What You Diddily-Iddly-Did\" the SImpsons fear they have killed Ned Flanders. \"Desperately Xeeking Xena\" satirizes superheroes of yore with \"Stretch Dude\" Bart and \"Clobber Girl\" Lisa. And \"Life's A Glitch, Then You Die\" depicts the upcoming horror of Y2K.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":230,"unverifiedSceneNumbering":false,"id":3519},{"seriesId":49,"episodeFileId":14878,"seasonNumber":11,"episodeNumber":5,"title":"E-I-E-I-(Annoyed Grunt)","airDate":"1999-11-07","airDateUtc":"1999-11-08T01:00:00Z","overview":"Fleeing from a duel, Homer takes his family to live on a farm. There he discovers that by mixing tomatoes, tobacco and radioactivity from the nuclear plant, he can create a dangerously delicious new substance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":231,"unverifiedSceneNumbering":false,"id":3520},{"seriesId":49,"episodeFileId":14931,"seasonNumber":11,"episodeNumber":6,"title":"Hello Gutter, Hello Fadder","airDate":"1999-11-14","airDateUtc":"1999-11-15T01:00:00Z","overview":"Homer bowls a perfect 300 game, then concludes that the greatest accomplishment of his life is behind him. He reconnects with the world by bonding with baby Maggie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":232,"unverifiedSceneNumbering":false,"id":3521},{"seriesId":49,"episodeFileId":14346,"seasonNumber":11,"episodeNumber":7,"title":"Eight Misbehavin'","airDate":"1999-11-21","airDateUtc":"1999-11-22T01:00:00Z","overview":"Due to overuse of fertility medication, Apu and wife Manjula give birth to octuplets. Desperate for money, Apu loans the babies to an unscrupulous carny promoter, then needs Homer's help to get them back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":233,"unverifiedSceneNumbering":false,"id":3522},{"seriesId":49,"episodeFileId":14953,"seasonNumber":11,"episodeNumber":8,"title":"Take My Wife, Sleaze","airDate":"1999-11-28","airDateUtc":"1999-11-29T01:00:00Z","overview":"After winning a motorcycle at a dance contest, Homer becomes part of a motorcycle gang. But when he puts Marge's photo in a biker magazine, a much tougher gang takes her, and he must win her back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":234,"unverifiedSceneNumbering":false,"id":3523},{"seriesId":49,"episodeFileId":14348,"seasonNumber":11,"episodeNumber":9,"title":"Grift of the Magi","airDate":"1999-12-19","airDateUtc":"1999-12-20T01:00:00Z","overview":"In this Christmas-themed episode, the students of Springfield Elementary are unwittingly used as a focus group to test new toys. The product of their labors, a cuddly doll named Funzo, is a lot more sinister than he appears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":235,"unverifiedSceneNumbering":false,"id":3524},{"seriesId":49,"episodeFileId":14349,"seasonNumber":11,"episodeNumber":10,"title":"Little Big Mom","airDate":"2000-01-09","airDateUtc":"2000-01-10T01:00:00Z","overview":"When Marge leaves the house to recuperate from a skating injury, everything goes to hell - until Lisa convinces Homer and Bart they have leprosy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":236,"unverifiedSceneNumbering":false,"id":3525},{"seriesId":49,"episodeFileId":14350,"seasonNumber":11,"episodeNumber":11,"title":"Faith Off","airDate":"2000-01-16","airDateUtc":"2000-01-17T01:00:00Z","overview":"Homer gets a bucket stuck on his head, and when it is removed the town is convinced that Bart has the powers of a faith healer. Then mobster Fat Tony tries to turn the boy's spiritual abilities into more sinister directions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":237,"unverifiedSceneNumbering":false,"id":3526},{"seriesId":49,"episodeFileId":14956,"seasonNumber":11,"episodeNumber":12,"title":"The Mansion Family","airDate":"2000-01-23","airDateUtc":"2000-01-24T01:00:00Z","overview":"Worried about his health, Mr. Burns visits the Mayo Clinic. He lets Homer housesit his mansion, which leads of course to an offshore knife fight and an attack by Chinese pirates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":238,"unverifiedSceneNumbering":false,"id":3527},{"seriesId":49,"episodeFileId":14352,"seasonNumber":11,"episodeNumber":13,"title":"Saddlesore Galactica","airDate":"2000-02-06","airDateUtc":"2000-02-07T01:00:00Z","overview":"Homer and Bart befriend a diving horse at a county fair. They turn it into a racehorse with an attitude, whose success runs them afoul of mysterious, tree-dwelling jockeys.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":239,"unverifiedSceneNumbering":false,"id":3528},{"seriesId":49,"episodeFileId":14353,"seasonNumber":11,"episodeNumber":14,"title":"Alone Again, Natura-Diddily","airDate":"2000-02-13","airDateUtc":"2000-02-14T01:00:00Z","overview":"Ned's wife Maude is inadvertently killed by a T-shirt accident at an auto race. Homer and his family try to help Ned cope.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":240,"unverifiedSceneNumbering":false,"id":3529},{"seriesId":49,"episodeFileId":14871,"seasonNumber":11,"episodeNumber":15,"title":"Missionary: Impossible","airDate":"2000-02-20","airDateUtc":"2000-02-21T01:00:00Z","overview":"When Homer fails to give money he promised over the phone, he is forced by PBS stars to flee the country. He becomes a missionary on a small tropical island, where he introduces the natives to casino gambling.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":241,"unverifiedSceneNumbering":false,"id":3530},{"seriesId":49,"episodeFileId":14355,"seasonNumber":11,"episodeNumber":16,"title":"Pygmoelian","airDate":"2000-02-27","airDateUtc":"2000-02-28T01:00:00Z","overview":"Plastic surgery gives Moe the bartender a handsome new face and a whole new life as a soap opera star.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":242,"unverifiedSceneNumbering":false,"id":3531},{"seriesId":49,"episodeFileId":14356,"seasonNumber":11,"episodeNumber":17,"title":"Bart to the Future","airDate":"2000-03-19","airDateUtc":"2000-03-20T01:00:00Z","overview":"We see a possible future in which Bart is a grown-up slacker, living with Ralph Wiggum, while Lisa is no less than President of the United States.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":243,"unverifiedSceneNumbering":false,"id":3532},{"seriesId":49,"episodeFileId":14357,"seasonNumber":11,"episodeNumber":18,"title":"Days of Wine and D'ohses","airDate":"2000-04-09","airDateUtc":"2000-04-10T00:00:00Z","overview":"After being embarrassed by a drunken video of himself, Barney vows to sober up. Newly clean, he gets work as a helicopter pilot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":244,"unverifiedSceneNumbering":false,"id":3533},{"seriesId":49,"episodeFileId":14358,"seasonNumber":11,"episodeNumber":19,"title":"Kill the Alligator and Run","airDate":"2000-04-30","airDateUtc":"2000-05-01T00:00:00Z","overview":"After a terrible bout with insomnia, Homer takes the family to Florida during spring break. There, they kill a beloved alligator and are sentenced to a chain gang.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":245,"unverifiedSceneNumbering":false,"id":3534},{"seriesId":49,"episodeFileId":14359,"seasonNumber":11,"episodeNumber":20,"title":"Last Tap Dance in Springfield","airDate":"2000-05-07","airDateUtc":"2000-05-08T00:00:00Z","overview":"Lisa enters a tap dancing academy, where the teacher is a child star who never quite grew up. Meanwhile, Homer gets laser eye surgery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":246,"unverifiedSceneNumbering":false,"id":3535},{"seriesId":49,"episodeFileId":14360,"seasonNumber":11,"episodeNumber":21,"title":"It's a Mad, Mad, Mad, Mad Marge","airDate":"2000-05-14","airDateUtc":"2000-05-15T00:00:00Z","overview":"When Otto dumps his bride at the altar, she goes to live with the Simpsons - and the family comes to believe that Marge has lost her mind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":247,"unverifiedSceneNumbering":false,"id":3536},{"seriesId":49,"episodeFileId":14361,"seasonNumber":11,"episodeNumber":22,"title":"Behind the Laughter","airDate":"2000-05-21","airDateUtc":"2000-05-22T00:00:00Z","overview":"In this satire of VH1's \"Behind The Music,\" we learn the secrets of the Simpsons' rise, fall, and ultimate success.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":248,"unverifiedSceneNumbering":false,"id":3537},{"seriesId":49,"episodeFileId":14886,"seasonNumber":12,"episodeNumber":1,"title":"Treehouse of Horror XI","airDate":"2000-11-01","airDateUtc":"2000-11-02T01:00:00Z","overview":"a). \"G-G-Ghost D-D-Dad\"\r\n\r\nHomer dies because he's eaten the deadliest plant on Earth, broccoli. When he arrives at the Pearly Gates of Heaven he finds he cannot get in because he hasn't done one good deed all his life. St. Peter gives him 24 hours to perform at least one.\r\n\r\nb). \"Scary Tales Can Come True\"\r\n\r\nBart and Lisa are abandoned to the deep dark woods. With a book of Fairy Tales to guide them, the pair navigates their way past a troll and three bears eventually arriving at the house of the witch who lives in the gingerbread house. Meanwhile, Homer and Marge change their minds and he goes in search of the children giving Rapunzel a haircut along the way.\r\n\r\nc). \"Night of the Dolphin\"\r\n\r\nLisa lets a dolphin go free but it turns out this particular dolphin is the dolphin's king. Now that he has his freedom he plots to take his revenge on the land dwelling humans. Soon the dolphins are back on land where they've belonged all along and the humans are banished to the sea.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":249,"unverifiedSceneNumbering":false,"id":3538},{"seriesId":49,"episodeFileId":14320,"seasonNumber":12,"episodeNumber":2,"title":"A Tale of Two Springfields","airDate":"2000-11-05","airDateUtc":"2000-11-06T01:00:00Z","overview":"When the phone company gives Springfield a new area code, Homer revolts taking the part of Springfield with the new area code (the poor side of town) with him. Soon it's Olde Springfield versus New Springfield. As mayor of New Springfield Homer runs it haphazardly and soon the population of New Springfield moves over to Olde Springfield, leaving the Simpson family as the only residents. It takes a Who concert to bring the two parts of Springfield together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":250,"unverifiedSceneNumbering":false,"id":3539},{"seriesId":49,"episodeFileId":14321,"seasonNumber":12,"episodeNumber":3,"title":"Insane Clown Poppy","airDate":"2000-11-12","airDateUtc":"2000-11-13T01:00:00Z","overview":"Homer and Bart fix things around the house using fireworks. They destroy Lisa's room on her birthday, so help make it up to her, the family goes to a book fair, where among other things Krusty is signing his new book. A little girl named Sophie is in line and she tells Krusty that she is his daughter. Krusty flashes back to his role in the Gulf War. Sophie's mother now hates Krusty. Krusty tries spending time with Sophie at the beach, but they don't bond very well. He sees Homer interacting with his kids and gets some parenting advice from his. Krusty gambles away Sophie's violin in a poker game with Fat Tony. She gets very upset with Krusty, so he (with Homer's help) try to steal back the violin. There is a big Mafia summit at Fat Tony's place and Krusty manages to escape with the violin and a bunch of cash. He wins back Sophie's love, but the mob goes after Homer for his role in the caper and shoots at him. Somehow Homer escapes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":251,"unverifiedSceneNumbering":false,"id":3540},{"seriesId":49,"episodeFileId":14322,"seasonNumber":12,"episodeNumber":4,"title":"Lisa the Tree Hugger","airDate":"2000-11-19","airDateUtc":"2000-11-20T01:00:00Z","overview":"Bart wants the new Gamestation 256, so he tries to get a job to earn the money, but his job as a menu boy causes a great deal of paper litter to be strewn about the city making Lisa lament the plight of the trees. Then Lisa falls for a meat protester, which inspires her to join their environmental protection group. Later, when an old redwood tree is danger of being cut down, she begins living in the tree, but her desire to return home becomes to great and she leaves for just a little while. However it's too late because when she returns the next morning the tree has come down. During the night the tree was struck by lightning and the city thinks that Lisa is dead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":252,"unverifiedSceneNumbering":false,"id":3541},{"seriesId":49,"episodeFileId":14323,"seasonNumber":12,"episodeNumber":5,"title":"Homer vs. Dignity","airDate":"2000-11-26","airDateUtc":"2000-11-27T01:00:00Z","overview":"Bart gets an A in astronomy, so Homer takes the family out for a celebration dinner. Homer's credit card is declined. He and Marge realize that they are broke, so Homer asks Mr. Burns for a raise. With Smithers away in New Mexico mounting his play about Malibu Stacy; Mr. Burns gives Homer a promotion. Homer has to make Mr. Burns laugh. Homer becomes a clown for him with Homer's life becoming an episode of MTV's \"Jackass.\" As the title indicates, he has no dignity. After a panda rapes him, he begins to hate the job. Lisa discovers his secret and tries to get him to retrieve his dignity. Mr. Burns eventually fires him, so he becomes a department store Santa (again?). He is in a parade as Santa when Mr. Burns offers him $1,000,000 to pull one more prank. When Homer refuses, Mr. Burns does it himself, pouring fish guts onto the children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":253,"unverifiedSceneNumbering":false,"id":3542},{"seriesId":49,"episodeFileId":14945,"seasonNumber":12,"episodeNumber":6,"title":"The Computer Wore Menace Shoes","airDate":"2000-12-03","airDateUtc":"2000-12-04T01:00:00Z","overview":"As Mr. X Homer starts his own web page where begins revealing Springfield's secrets. He ultimately wins the Pulitzer Prize for his work so he reveals himself to the public. When everyone knows that he is Mr. X his ability to obtain secrets disappears. So he begins making up stories. When one of those stories turns out to be the truth, he is kidnapped and taken to \"The Island,\" a place where those who know too much are taken out of society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":254,"unverifiedSceneNumbering":false,"id":3543},{"seriesId":49,"episodeFileId":14325,"seasonNumber":12,"episodeNumber":7,"title":"The Great Money Caper","airDate":"2000-12-10","airDateUtc":"2000-12-11T01:00:00Z","overview":"Bart gets a magic set and with it he and Homer try street performing to make money. When it doesn't work out, Homer leaves Bart on his own, fending for himself. Being abandoned by his father makes Bart into a charity case and people just start giving Bart money. So Bart and Homer start working this angle and then get some advice from the man who wrote the book on grifting, Grampa Simpson. When they get busted pulling a scam, they manage to scam their way out of the situation; but Groundskeeper Willy may wind taking the fall, unless Homer or Bart confesses their guilt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":255,"unverifiedSceneNumbering":false,"id":3544},{"seriesId":49,"episodeFileId":14326,"seasonNumber":12,"episodeNumber":8,"title":"Skinner's Sense of Snow","airDate":"2000-12-17","airDateUtc":"2000-12-18T01:00:00Z","overview":"The Simpson family goes to a French circus. While watching the show a freak snowstorm hits the circus tent. It's a relentless snowstorm; everything closes, except for Springfield Elementary; Principal Skinner doesn't want to ruin his \"Cal Ripken-like streak of school openage.\"\r\n\r\nWith the teachers at an \"emergency caucus,\" Skinner has the kids sit through a terrible film. When they go to leave at the end of the day, they find that the school is snowed in. The kids start to revolt against Skinner, so he gets tough with them. \r\n\r\nMeanwhile, Homer and Flanders go to save the kids, but get stranded in a snow bank. Skinner loses control of the school to the kids, led by Bart and he ends up trapped in a bag. The kids go through the schools records. Skinner sends a hamster out in the snow in an attempt to save himself. \r\n\r\nHomer and Flanders pass out due to carbon monoxide poisoning and Homer has bizarre fantasies about ranch dressing. The hamster saves them, leaving them free to save the kids. Skinner and Bart agree never to discuss the day again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":256,"unverifiedSceneNumbering":false,"id":3545},{"seriesId":49,"episodeFileId":14327,"seasonNumber":12,"episodeNumber":9,"title":"HOM\u042f","airDate":"2001-01-07","airDateUtc":"2001-01-08T01:00:00Z","overview":"The Simpson family goes to an animation convention. Homer falls in love with a new product there and invests the family's life savings in a company that soon declares super-duper bankruptcy. To gain their life savings back, he sells his body for medical testing. The doctors find something odd in his head x-ray. Homer has a crayon lodged in his brain. This explains why he is such a moron. He thinks it is because he shoved crayons up his nose as a child. When the doctors remove the crayon, he gets smarter. This allows him to bond with Lisa. In fact Homer proves to be even smarter than she is. He is so smart that he accidentally proves there is no God. He also blows the whistle on the plant's nuclear safety violations. So the nuclear plant has to close and everyone hates him. He can't find happiness in things he used to like and he can't fit in with the people of Springfield. He decides to have Moe (a licensed surgeon) shove another crayon into his brain and he goes back to being a blissful idiot. Lisa understands why he did it and doesn't hate him for it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":257,"unverifiedSceneNumbering":false,"id":3546},{"seriesId":49,"episodeFileId":14328,"seasonNumber":12,"episodeNumber":10,"title":"Pokey Mom","airDate":"2001-01-14","airDateUtc":"2001-01-15T01:00:00Z","overview":"The family attends a prison rodeo and Marge sees artistic potential in one of the inmates after she sees some of his work hanging in the prison infirmary. She volunteers to teach art at the prison and then vouches for her artistic inmate at his parole hearing. Now back in the real world, the inmate needs a job and Marge gets him one at the school, painting a picture depicting school spirit. His take on school spirit and Principal Skinners are at odds. Meanwhile Homer, whose back was injured at the rodeo, seeks the help of chiropractor. He soon discovers that his old trashcan is just as effective as the chiropractor, so he dubs it \"Dr. Homer's Miracle Spinal Cylinder\" and goes into business for himself. Until the chiropractors take their revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":258,"unverifiedSceneNumbering":false,"id":3547},{"seriesId":49,"episodeFileId":14329,"seasonNumber":12,"episodeNumber":11,"title":"Worst Episode Ever","airDate":"2001-02-04","airDateUtc":"2001-02-05T01:00:00Z","overview":"Despite being banned from life forever from the comic book store, Bart and Milhouse take over its management when the Comic Book Guy suffers from a cardiac episode, \"the worst episode ever\". Their management of the shop is fairly successful, until they discover the Comic Book Guy's secret stash of illegal video clips and begin charging admission for their viewing. Meanwhile, the Comic Book Guy on the road to recovery receives tips from Homer on making friends to no avail. Until a chance meeting with Principal Skinner's mother sparks an unusual relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":259,"unverifiedSceneNumbering":false,"id":3548},{"seriesId":49,"episodeFileId":14330,"seasonNumber":12,"episodeNumber":12,"title":"Tennis the Menace","airDate":"2001-02-11","airDateUtc":"2001-02-12T01:00:00Z","overview":"The Simpsons go to an old folks' talent show. Homer looks into getting a casket for Abe, but instead decides to build a tennis court. He doesn't really like tennis; he got it confused with foxy boxing. All the locals want to use the tennis court. The Simpsons are the L.A. Clippers of tennis. Everyone mocks them behind their backs. Marge is horrified and starts to become competitive. She enters Krusty's tournament without Homer, her partner is Bart. This sets up a situation similar to that of Oedipus. Homer enters the tournament with Lisa as his partner. He turns her against Marge. At the tournament, there are a number of tennis pros in the stands. The stakes rise when Homer recruits Venus Williams and drops Lisa. Marge cries foul, so she is allowed to have Serena Williams as a partner. Serena then dumps Marge and successfully recruits Pete Sampras. Then Venus dumps Homer and successfully recruits Andre Agassi. The Simpson family then makes up. With the tennis court in their backyard, they will resume playing tennis together, right?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":260,"unverifiedSceneNumbering":false,"id":3549},{"seriesId":49,"episodeFileId":14331,"seasonNumber":12,"episodeNumber":13,"title":"Day of the Jackanapes","airDate":"2001-02-18","airDateUtc":"2001-02-19T01:00:00Z","overview":"Krusty feels pressure from the network to change his show, so he decides to retire for the fifth and final time. Meanwhile, in prison Sideshow Bob becomes outraged when he finds out that Krusty has erased his past by taping over all his old episodes. He gets released from prison and begins plotting his revenge. First he gets an assistant janitor job at Springfield Elementary and then he begins turning Bart into a Krusty killing machine. During the Krusty's final bow, he expresses his regret for what he did to Sideshow Bob just a Bart is about to kill him\u2026","hasFile":true,"monitored":true,"absoluteEpisodeNumber":261,"unverifiedSceneNumbering":false,"id":3550},{"seriesId":49,"episodeFileId":14332,"seasonNumber":12,"episodeNumber":14,"title":"New Kids on the Blecch","airDate":"2001-02-25","airDateUtc":"2001-02-26T01:00:00Z","overview":"Homer \"runs\" in the Springfield marathon, but when Bart crashes the end of the race an unruly mob is ready to lynch him. A passing stranger rescues him and offers Bart the opportunity to join a new boy band \"Party Posse\" as the bad boy. Other members of this new band include, Milhouse, Nelson and Ralph. Using NASA technology to enhance their voices they might just make it. And they will, until it is revealed that their videos and music are rigged to brainwash people into joining the Navy. Their manager goes crazy when the government cuts off his funding, but with a little help from N' Sync, the boys of Party Posse try to save the staff of \"Mad Magazine\" from certain destruction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":262,"unverifiedSceneNumbering":false,"id":3551},{"seriesId":49,"episodeFileId":14333,"seasonNumber":12,"episodeNumber":15,"title":"Hungry Hungry Homer","airDate":"2001-03-04","airDateUtc":"2001-03-05T01:00:00Z","overview":"The Simpson family goes to \"Blockoland\". When Lisa gets ripped off, Homer sticks up for her and is successful. He vows to start helping the little guy. He helps Bart get a girlfriend and helps Marge get her hair streaked. He even tries to help Lenny get a refund from the Springfield Isotopes' owner, H.K. Duff VIII. In doing so, he discovers that the owner is moving the baseball team to Albuquerque. He tries to tell the media about it, but they don't believe him. He vows to go on a hunger strike to call attention to the situation. This seems hopeless, because of Homer's voracious appetite. He chains himself to a lawn chair and starts getting a lot of attention. Then management, seizing an opportunity, begins exploiting him until the truth finally comes out about the Albuquerque deal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":263,"unverifiedSceneNumbering":false,"id":3552},{"seriesId":49,"episodeFileId":14958,"seasonNumber":12,"episodeNumber":16,"title":"Bye Bye Nerdy","airDate":"2001-03-11","airDateUtc":"2001-03-12T01:00:00Z","overview":"A new kid comes to Springfield Elementary and Lisa attempts to make friends with this new girl, but for all her trouble she just winds up the victim of this female version of Nelson. Lisa discovers the cause; pheromones given off by nerds are what attract bullies and she presents her findings where there needed most, the \"12th Annual Big Science Thing\". Meanwhile, after a visit from a baby safety consultant gets the Simpson home safe, Homer decides to go into the safety industry, making Springfield safe for all children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":264,"unverifiedSceneNumbering":false,"id":3553},{"seriesId":49,"episodeFileId":14335,"seasonNumber":12,"episodeNumber":17,"title":"Simpson Safari","airDate":"2001-04-01","airDateUtc":"2001-04-02T00:00:00Z","overview":"Maggie eats a magazine and Marge takes her to the hospital, leaving Homer to do the food shopping. Homer abuses a bag boy, which leads to the bag boys going out on strike. With them on strike, the family does not go grocery shopping. When their food runs out, Homer searches the house for food and he finds 30+-year-old animal crackers. When he opens the box, he finds it contains a golden giraffe; the token, which indicates the recipient, has won an African safari. The manufacturer honors the prize and sends the Simpson family to Africa. Their tour of the African wilderness is very strange. A local tribe treats them to a concert. Later, when a hippo tries to attack Homer, the Simpson family escapes on a makeshift raft. They sail down river and end up having to fend for themselves in the wilderness. They come across a scientist who is researching monkeys. When poachers come to take the monkeys, the Simpson family helps him to fight back. Lisa soon discovers that the researcher actually runs a chimp diamond mine and the poachers are actually Greenpeace. The Simpsons fly back home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":265,"unverifiedSceneNumbering":false,"id":3554},{"seriesId":49,"episodeFileId":14336,"seasonNumber":12,"episodeNumber":18,"title":"Trilogy of Error","airDate":"2001-04-29","airDateUtc":"2001-04-30T00:00:00Z","overview":"Homer's thumb is cut off following breakfast and the episode follows three different paths. Homer's day: as he and Marge race to get his thumb reattached. Lisa's day: as she misses the bus and tries to get to school so that she can win the science fair, but finds herself at one point at West Springfield Elementary. Bart's day: as he and Milhouse make use of a stash of fireworks that Fat Tony has illegally smuggled into the country. In the end their respective paths come together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":266,"unverifiedSceneNumbering":false,"id":3555},{"seriesId":49,"episodeFileId":14337,"seasonNumber":12,"episodeNumber":19,"title":"I'm Goin' to Praiseland","airDate":"2001-05-06","airDateUtc":"2001-05-07T00:00:00Z","overview":"When he can stop thinking of her and to help him stop living in the past, Ned gets the Simpson family to help remove all the reminders of Maude he has around the house. Only one item misses getting thrown into the chipper, a sketchbook that contains Maude's vision of a Christian amusement park called \"Praiseland.\" Ned goes on a quest to build this amusement park, which, opens to lackluster reviews; describe as the \"height of tedium\". When suddenly a miracle occurs, as a Maude mask floats in front of the Maude statue. It is quickly discovered that anyone who stands in front of the statue has visions. Is it truly a miracle, or just the passing of gas?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":267,"unverifiedSceneNumbering":false,"id":3556},{"seriesId":49,"episodeFileId":14338,"seasonNumber":12,"episodeNumber":20,"title":"Children of a Lesser Clod","airDate":"2001-05-13","airDateUtc":"2001-05-14T00:00:00Z","overview":"The Simpsons go to see if they would like to take any of the classes at the YMCA. Homer tries out the basketball class but he tears the ACL in his knee. He can't go to work while he recovers from surgery. He is bored at home. He tries unsuccessfully to breed the dog and the cat to each other, and then Homer takes care of Rod and Todd one evening. When he finds that he is pretty good at it, he starts a daycare center. He still neglects Bart and Lisa, making them jealous. He becomes eligible for a Good Guy award for his service to the community. A film crew follows him as he does good deeds. Bart and Lisa devise a plan to show the world that he is a neglectful father. At the awards ceremony, they show home movies of him. When he ends up choking Bart, everyone is outraged. Homer flees the ceremony with the kids in a stolen car. The police catch him and later he apologizes to Bart and Lisa for his behavior.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":268,"unverifiedSceneNumbering":false,"id":3557},{"seriesId":49,"episodeFileId":14339,"seasonNumber":12,"episodeNumber":21,"title":"Simpsons Tall Tales","airDate":"2001-05-20","airDateUtc":"2001-05-21T00:00:00Z","overview":"The family wins a trip to Delaware, but Homer refuses to pay the tax on the ticket, so they ride the rails and meet a hobo who sings and tells them some tall tales. The first is the tale is about \"Paul Bunyan\" and here we are treated to Homer playing the role of Paul as a giant doofus, a natural role for him. The next tale shows us Lisa as \"Connie Appleseed,\" who tries to convince the pioneers to eat apples instead of buffalo. The third tale isn't really tall, it's a Mark Twain tale about Tom Sawyer (Bart) and Huckleberry Finn (Nelson), whom go on the run when Huck won't marry Becky (Lisa).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":269,"unverifiedSceneNumbering":false,"id":3558},{"seriesId":49,"episodeFileId":7213,"seasonNumber":13,"episodeNumber":1,"title":"Treehouse of Horror XII","airDate":"2001-11-06","airDateUtc":"2001-11-07T01:00:00Z","overview":"a). \"hex and the city\"\r\n\r\nThe family sees a gypsy, but Homer's usual ineptitude causes the gypsy to seek her revenge by cursing him and his loved ones. In an effort to get the curse lifted, Homer catches a leprechaun and releases it upon the gypsy with surprising results.\r\n\r\nb). \"House of Whacks\"\r\n\r\nThe family home obtains an upgrade, the Ultrahouse 3000, a computer that will do everything for them. Everything is going great until the house falls in love with Marge and tries killing Homer.\r\n\r\nc). \"Wiz Kids\"\r\n\r\nBart and Lisa are attending wizard school. The evil Lord Montymort and Slithers have designs on capturing Lisa, so that Montymort can take her essence. They use Bart's rivalry with his sister as the means to get at her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":270,"unverifiedSceneNumbering":false,"id":3559},{"seriesId":49,"episodeFileId":7214,"seasonNumber":13,"episodeNumber":2,"title":"The Parent Rap","airDate":"2001-11-11","airDateUtc":"2001-11-12T01:00:00Z","overview":"Abandoned by a prize seeking Homer, Milhouse and Bart go for an unintentional joyride in Chief Wiggum's squad car. In juvenile court, Milhouse gets his case dismissed; however, when Bart goes up before Judge Snyder he is just about to get out of it, when the judge's vacation starts. The replacement judge isn't a pushover and citing Homer's negligence she orders that Bart and Homer be tethered together. The pair attends school, work and Moe's together and begin bonding. Frustrated by the whole situation Marge cuts the tether and is caught. Judge Harm decides that both Bart's parents are unfit, so she has Homer and Marge put into stocks and put on public display. Homer and Marge break free and retaliate, only to get caught. When brought before Judge Harm they are about to have the book thrown at them, when Judge Snyder returns from vacation and declares that boys will be boys and dismisses the case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":271,"unverifiedSceneNumbering":false,"id":3560},{"seriesId":49,"episodeFileId":7215,"seasonNumber":13,"episodeNumber":3,"title":"Homer the Moe","airDate":"2001-11-18","airDateUtc":"2001-11-19T01:00:00Z","overview":"Bart is digging a hole in the backyard, which turns into Homer telling a story at Moe's. Moe himself is feeling depressed, he misses his bartending school alma mater, Swigmore University. The guys talk him into going back and Moe leaves Homer in charge of the bar. Back at school Moe meets one of his old professors, who recommend that he reinvent his \"crap-hole\". Upon his return, the reinvention begins. Now called \"M\" it becomes an exclusive and Duff-less nightclub. Feeling like outcasts, Homer, Lenny, Carl and Barney set up \"a hunting club\" in Homer's garage, where there's plenty of Duff and a live band, REM. Moe decides he does not like his new bar and tries to join up with them again. Homer goes turkey hunting and shoots Moe (thinking he is a cougar), renewing their friendship. In the end, the Simpson family, Moe, and REM all celebrate Thanksgiving together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":272,"unverifiedSceneNumbering":false,"id":3561},{"seriesId":49,"episodeFileId":7216,"seasonNumber":13,"episodeNumber":4,"title":"Hunka Hunka Burns in Love","airDate":"2001-12-02","airDateUtc":"2001-12-03T01:00:00Z","overview":"Homer's foray into the fortune writing business leads to a romance for Mr. Burns. Then Burns seeks advice from Homer when he starts to romance, Gloria his new found love. Things look good for Monty who proposes marriage, just as Gloria's ex arrives on the scene, Snake, who's just recently escaped from prison. He grabs Gloria and Homer and takes them hostage, leaving Monty and the police to affect their rescue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":273,"unverifiedSceneNumbering":false,"id":3562},{"seriesId":49,"episodeFileId":7217,"seasonNumber":13,"episodeNumber":5,"title":"The Blunder Years","airDate":"2001-12-09","airDateUtc":"2001-12-10T01:00:00Z","overview":"Marge falls for the image of the man on the package Burly paper towels. Homer and Bart scam Marge by making her think that Chad Sexington, the burly paper towel model, is coming to dinner. Who shows up in place of Chad? A shirtless Barney. To make up for her humiliation, Homer takes her and the family out to dinner and a show. A featured performer on the bill is Mesmerino and Homer offers himself up for hypnosis. When Homer reverts to himself at 12 years old, it triggers something within that causes him to start screaming incessantly. With the use of some Indian Memory Tea, Homer and Moe, recall when they were twelve and Homer found a dead body, which he never reported. The family journeys to the old quarry to find the body; which they do, with help from Chief Wiggum and Burly paper towels. They follow the drainage pipe back to its source, The pipe leads back to Burns' office at the plant. He disposed of a corpse thirty years earlier. It was the corpse of Wayland Smithers... senior. He shows an old film to prove the death was accidental. Homer and Marge journey home, with Homer feeling satisfied. Moe visits them and tells about how he cracked the case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":274,"unverifiedSceneNumbering":false,"id":3563},{"seriesId":49,"episodeFileId":7218,"seasonNumber":13,"episodeNumber":6,"title":"She of Little Faith","airDate":"2001-12-16","airDateUtc":"2001-12-17T01:00:00Z","overview":"Bart orders a model rocket and Homer builds and tries to launch it. With help from some nerds and a hamster named Nibbles, a new rocket is built and launched, but results in the church being destroyed. The church looks to rebuild and Montgomery Burns offers his help, but only if he can run the church like a business. The over commercialization of the rebuilt church puts Lisa off; she leaves it for good in search of a new place to worship. She finds Lenny, Carl and Richard Gere at a Buddhist temple. Richard gives her some information about Buddhism and she converts. The family tries to use Christmas as a means to bring Lisa back to Christianity. Realizing what they are doing runs to the temple but learns from Richard that Buddhism allows for the tolerance of other beliefs. So as Homer puts it, she can \"pay lip service\" to Christianity while remaining a Buddhist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":275,"unverifiedSceneNumbering":false,"id":3564},{"seriesId":49,"episodeFileId":7219,"seasonNumber":13,"episodeNumber":7,"title":"Brawl in the Family","airDate":"2002-01-06","airDateUtc":"2002-01-07T01:00:00Z","overview":"The family is going through problems. A social worker sets out to fix them after a domestic violence charge. He is horrified at Homer when the vegas wives of Homer and Ned unexpectedly come to Springfield. Fed up with vegas, they want to replace Marge and Maude. Ned's new wife stays with him, but his dorky children drive her crazy. Homer tries unsuccessfully to get an annulment. Homer's vegas wife gets him kicked out of the house. Marge begins to feel sorry for Homer, so she devises a plan to get rid of his vegas wife. Homer gets her drunk and marries her to Abe. She is so distraught over being Mrs. Abraham Simpson that she and Ned's vegas wife flee, running down evergreen terrace. Senile as ever, grandpa forgets being married immediately.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":276,"unverifiedSceneNumbering":false,"id":3565},{"seriesId":49,"episodeFileId":7220,"seasonNumber":13,"episodeNumber":8,"title":"Sweets and Sour Marge","airDate":"2002-01-20","airDateUtc":"2002-01-21T01:00:00Z","overview":"The family goes to the library's used book sale; where Homer obtains a copy of Duff's Book of World Records. When he's gone through all the records, he decides to set one of his own. Duff tells him that all the personal records have been set. He needs to help set a group record. The town tries to set a record for the world's tallest human pyramid; but when they fail, they inadvertently set the record as the world's fattest town, which they celebrate. Only Marge has a problem with this. She goes to the Motherloving Sugar Company to lodge her complaint. The owner Garth Motherloving is less than cooperative, so Marge files a class action lawsuit. Professor Frink blows the whistle on \"big sugar\" and the court rules in Marge's favor and then bans all sugar from Springfield forever. All the town's sugar products are burned and Apu's store shelves are empty. Apu brings Homer into a group determined to smuggle sugar back into Springfield. Homer and Bart join with Apu, Mr. Burns, Count Fudgula and Garth Mothelovering in a scheme to smuggle in sugar from the island of San Glucose. They make it into Springfield Harbor, but are intercepted by the police. Evading Wiggum and Co., Homer finds himself faced with the decision to either \"Dump Cargo\" to make Marge happy or \"Obey Bad Guy\" and bring sugar to Springfield. He chooses the former, but Judge Snyder realizes that he's overstepped his authority and makes sugar legal once again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":277,"unverifiedSceneNumbering":false,"id":3566},{"seriesId":49,"episodeFileId":7221,"seasonNumber":13,"episodeNumber":9,"title":"Jaws Wired Shut","airDate":"2002-01-27","airDateUtc":"2002-01-28T01:00:00Z","overview":"The family watches the gay pride parade and then goes to the movies. Homer loudly protests the fact that the movie hasn't started, due to the length of ads and previews. When the ushers chase him out of the theatre, Homer runs straight into the glove of a statue of fighter, Drederick Tatum, and breaks his jaw. With his mouth wired shut and nothing else to do, Homer becomes a great listener and even a respectable member of society, which delights Marge. After his jaw has healed, Homer continues to be everything he never was before. On Afternoon YAK he promises to not revive his \"weckless, weckless ways\". Weeks later Marge realizes that their life has become dull, so she enters the family car in a demolition derby and soon finds herself in trouble. In a sequence reminiscent of the \"Popeye\" cartoons, Homer sucks down a can of Duff and comes to her rescue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":278,"unverifiedSceneNumbering":false,"id":3567},{"seriesId":49,"episodeFileId":7222,"seasonNumber":13,"episodeNumber":10,"title":"Half-Decent Proposal","airDate":"2002-02-10","airDateUtc":"2002-02-11T01:00:00Z","overview":"Homer's incessant snoring is keeping Marge awake and the cost for surgery to correct the problem is costly. She moves in with Patty and Selma to get some sleep. The news reports that Marge's former boyfriend, Artie Ziff, is the 5th richest man in America. Patty and Selma convince Marge that she should contact Artie, so they send an e-mail on her behalf. Artie receives the e-mail and reveals his 20-year obsession with Marge. Artie Ziff flies to the Simpson home and takes them for a ride. He then makes an indecent proposal, $1 million for Marge to spend a weekend with him, so they she might find out what life would have been like with him. After another sleepless night, Marge gives it serious thought, after all the money would allow them to pay for Homer's much needed nasal surgery. Marge goes off with Artie and Homer has second thoughts. Artie recreates their senior prom and tries to kiss Marge. Marge leaves Artie and returns to home find out that Homer has left town with Lenny. On the road, Homer and Lenny get a job at oil rig in West Springfield, which is \"three times larger than Texas\". Bart, Lisa and Marge figure out where Homer's at, but Marge needs help from Artie to find out exactly where he is. With his oil rig on fire, Homer declines rescue, until Artie gives up on Marge. Artie creates a solution for Homer's snoring problem, which at a subliminal level may help Artie with his Marge problem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":279,"unverifiedSceneNumbering":false,"id":3568},{"seriesId":49,"episodeFileId":7223,"seasonNumber":13,"episodeNumber":11,"title":"The Bart Wants What It Wants","airDate":"2002-02-17","airDateUtc":"2002-02-18T01:00:00Z","overview":"After giving up the Olympic torch that Homer has stolen, the family stops in at a carnival being held at a private school. Bart comes to the aid of a young girl being bullied. The girl is the daughter of Rainier Wolfcastle and she invites Bart to come to her house sometime. Bart goes to Greta's home and has a great time. The Wolfcastles come to the Simpson home and Greta expresses her interest in Bart, although he is a little slow on the uptake. On Bart's next visit he brings Milhouse. Greta invites Bart to her school dance, only Bart finds out that Skinner is going to be performing stand-up comedy and he can't resist. Skinner's act bombs, much to Bart's delight. Working with the theory that \"women are easy, state capitals are hard\", Bart breaks up with Greta. For revenge Greta starts hanging out with Milhouse. She then joins her dad for a film shoot in Toronto. Bart asks the family if they can go to Toronto. At Paramountie Studios Bart finds Greta only to find out that she interested in either Bart or Milhouse, so they both join the Canadian Olympic Basketball team. Back in Springfield, Skinner's act still sucks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":280,"unverifiedSceneNumbering":false,"id":3569},{"seriesId":49,"episodeFileId":7224,"seasonNumber":13,"episodeNumber":12,"title":"The Lastest Gun in the West","airDate":"2002-02-24","airDateUtc":"2002-02-25T01:00:00Z","overview":"Bart has a day that gets better and better, until it starts really sucking when a crazy dog that hates him for no known reason starts stalking him. Bart is chased by the dog and he escapes from the dog by climbing a fence into the yard of Buck McCoy, a former star of western films. Bart learns more about Buck's history and back at home when Bart mentions that Buck is about the greatest guy who ever lived, Homer gets jealous. Buck comes to the Simpson's home for dinner and Bart brings the western look to Springfield Elementary. Bart and Lisa get Buck to appear on \"The Krusty the Clown Show\", but Buck hasn't appeared on live television in years; so to calm his nerves, he starts drinking. A drunken Buck shoots up the Krusty the Clown set, and Krusty himself. As a result Bart has lost his new hero and Homer who should feel happy about it isn't. So he and Marge go to Buck's to try sobering him up. When Snake and his gang are robbing Springfield's National Bank, Homer suggests that Buck stop the robbery to help restore his son's faith in the old cowboy. A couple of twirls of Buck's lariat soon put an end to the robbery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":281,"unverifiedSceneNumbering":false,"id":3570},{"seriesId":49,"episodeFileId":7225,"seasonNumber":13,"episodeNumber":13,"title":"The Old Man and the Key","airDate":"2002-03-10","airDateUtc":"2002-03-11T01:00:00Z","overview":"Homer is anxiously awaiting the start of the new XFL season when the Springfield Retirement Castle calls to report the death of Abraham Simpson, but the report is a mistake. A new woman moves in down the hall and Grandpa decides that he wants to be able to drive a car again, one so that he can feel alive again and two so that he can impress the new woman, Zelda. With his new license in hand, Grandpa borrows Homer's car for a series of dates with Zelda. In a role reversal, Homer has to lay down the law when Abe stays out with the car all night. Abe runs into trouble at the Kwik-E-Mart with a rival gang of retirees that results in him competing in a death race. Abe wins the race, but Homer's car is ruined. Homer revokes Abe driving privileges. Zelda has a reservation in Branson and she goes with Abe's rival. Abe steals Marge's car and goes with Bart to Branson to get her back. When they get there Abe actually just gets back at her and calls her the \"hootchie\" everybody said she was.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":282,"unverifiedSceneNumbering":false,"id":3571},{"seriesId":49,"episodeFileId":7226,"seasonNumber":13,"episodeNumber":14,"title":"Tales From the Public Domain","airDate":"2002-03-17","airDateUtc":"2002-03-18T01:00:00Z","overview":"Homer gets a letter from the library telling him about an overdue book. He checked it out when Bart was born to have something to read his child. Lisa suggests that he read them some stories from it now. Homer starts by telling the tale of the\u2026\r\n\r\na). \"Odyssey\"\r\n\r\nHomer is Odysseus, who delivers a Trojan horse to the King. After his troops are victorious, Odysseus ticks off the gods by refusing to make a sacrifice. They take their revenge upon him when they blow him and his crew off course, where they almost meet the Sirens and finally Circe, who turns his men into pigs. After Odysseus eats his men, he has to cross the river Styx to return home. When he arrives he takes out the trash.\r\n\r\nb). \"Joan of Arc\"\r\n\r\nLisa is Joan in this retelling of the story of Joan of Arc. Joan sets out to help lead the French army to victory against the English, which she does, until she is captured. Joan is found guilty and is about to be burned at the stake, when Marge, not much for tragic endings, changes the ending so that Joan lives.\r\n\r\nc). \"Hamlet\"\r\n\r\nBart is Hamlet and Homer asks him to avenge his death. Moe (as Uncle Claudius) had Homer killed so that he could marry the queen (Marge) and take over the kingdom. Hamlet discovers the king's treachery and goes to avenge his father's death. When he kills the wrong man, he must duel with Laertes (Ralph). When Laertes dispatches himself, Hamlet kills Uncle Claudius, then himself. Rather than clean up the mess, the queen also dispatches herself. Everyone is dead.\r\n\r\nBart can't believe how boring the last story was, but Homer reminds him that is also became a great movie called \"Ghostbusters.\" The family dances as the theme to that classic film plays in the background.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":283,"unverifiedSceneNumbering":false,"id":3572},{"seriesId":49,"episodeFileId":7227,"seasonNumber":13,"episodeNumber":15,"title":"Blame It on Lisa","airDate":"2002-03-31","airDateUtc":"2002-04-01T01:00:00Z","overview":"The family receives a $400 phone bill for a phone call to Brazil. Marge and Homer go down to the phone office to get this error corrected, they didn't make the call. Their visit results in their phone service getting cut off. Homer tries to steal phone service, but gets electrocuted for his trouble. Lisa confesses to making the call and tells them of the donations she'd made for an orphan boy named Renaldo in Brazil, with whom she'd lost contact with. The family decides to make a trip to Brazil to find him. The family flies down to Rio, as Maggie takes care of herself, under the watchful eyes of Patty and Selma. They split up with Lisa and Marge looking on one side of town and Homer and Bart on the other. Homer gets kidnapped when he gets into an unlicensed taxi. The kidnappers take Homer up the Amazon. Marge reports the kidnapping to an uncaring police department and Homer tries to raise the $50,000 on his own. Lisa finds Renaldo working for the kids show that Bart has watched with great sexual interest since arriving in Rio. Renaldo is now wealthy, thanks to the new dancing shoes Lisa's donation purchased for him, so he gives Lisa the $50,000 that will let them get Homer from the kidnappers. The transfer is made and Homer is returned, but as we leave our friends in Rio, Bart is celebrating Carnival in the belly of a snake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":284,"unverifiedSceneNumbering":false,"id":3573},{"seriesId":49,"episodeFileId":7228,"seasonNumber":13,"episodeNumber":16,"title":"Weekend at Burnsie's","airDate":"2002-04-07","airDateUtc":"2002-04-08T00:00:00Z","overview":"Marge plants her own garden and when the crows arrive she puts up a scarecrow. Homer himself is scared by the scarecrow, so he sneaks upon it and destroys it. As a result, the crows look up to him as their leader. The crows hang out with him wherever he goes. The crows eventually overstay their welcome and Homer tries to shoo them away, the respond by attacking him. At the hospital, when Homer asks Dr. Hibbert what can be done for the pain in his eyes Dr. Hibbert prescribes medical marijuana. Homer starts getting legally high. At one point, in his high state of mind, Homer allows Flanders to read the entire bible to him. Flanders is also gets Homer's signature on a petition to get a ban on medical marijuana added to the next election's ballot. Being high at work also does a wonder for his career at the power plant, because when Homer laughs at all of Mr. Burn's jokes he is given a promotion to executive vice-president. Homer finds out about the ban being added to the ballot and a rally is organized in protest. The band Phish appears at the rally, but the attendees \"have spaced on the date\", they held their rally one day after the election; so medical marijuana has been banned. The medical marijuana is burned. Homer's medical condition was long since cured, Homer promises to never to smoke pot again. Mr. Burns calls Homer into help with his speech. Mr. Burns need to raise $60 million to appease his investors. Homer tries, but Smithers needs the use of Homer's last joint to think any of Mr. Burn's speech is funny. When Mr. Burns appears to dead from drowning in his bathtub, Smithers and Homer turn him into a marionette so that he can still appear before the investors. A dance performance by the strung up Mr. Burns gets his heart started again and he has recovered well enough to learn that the investors were distracted enough to not worry about the $60 million.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":285,"unverifiedSceneNumbering":false,"id":3574},{"seriesId":49,"episodeFileId":7229,"seasonNumber":13,"episodeNumber":17,"title":"Gump Roast","airDate":"2002-04-21","airDateUtc":"2002-04-22T00:00:00Z","overview":"Our story begins a la \"Forrest Gump\", with Homer sitting on a park bench waiting for the rest of the family to arrive. While Chief Wiggum initially tells him isn't interested in hearing Homer's life story initially, he becomes intrigued as Homer goes right into it, in the form of flashbacks (clips). Homer is picked up and brought blindfolded to the Springfield Friar's Club where emcee Krusty the Klown and other friends and family roast Homer with their memories (more clips from past episodes). Bart and Lisa start followed by Mr. Burns, Grampa Simpson & Agnes Skinner, Reverend Lovejoy & Ned Flanders (a la \"The Smothers Brothers\"). The proceedings are interrupted by Kodos and Kang, whom rest the entire fate of humanity upon one human being, Homer Simpson; they cite him as \"the fat selfish epitome of modern man\". They probe him revealing more clips, which helps prove to them that humans are unfit to continue existing. Lisa talks them into probing the innocent mind of a child. The probing of Maggie's mind reveals to Kodos and Kang the most important thing of all for them; Earth is where there favorite celebrities live. Kodos and Kang attend the \"People Choice Awards\" and the episode ends with a wacky little ditty celebrating more clips, but telling the viewers \"not to fear, they have stories for years.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":286,"unverifiedSceneNumbering":false,"id":3575},{"seriesId":49,"episodeFileId":7230,"seasonNumber":13,"episodeNumber":18,"title":"I Am Furious Yellow","airDate":"2002-04-28","airDateUtc":"2002-04-29T00:00:00Z","overview":"Springfield Elementary finally gets a career day speaker that keeps the children's interest. The creator of cartoon inspires the children to come up with their own cartoon characters. Bart makes an initial comic strip of \"Danger Dude,\" which he shows to the Comic Book Guy and Marvel Comics creator Stan Lee who happens to stop by the comic book shop, but never leaves. Their feedback leads Bart to search for other inspiration, which he finds in his own father. He makes Homer the main character in a comic that he calls \"Angry Dad\". It becomes very popular and an Internet company wants to make \"Angry Dad\" an Internet cartoon. They offer Bart stock in return for use of his strip. \"Angry Dad\" becomes even more popular, but when Homer sees it at work, he goes home very angry. The citizens of Springfield, who see him in his car angry, try to make him angrier to see what he'll do. The family realizes that Homer has anger management issues. Homer resolves to take it easy, leaving Bart without any material. Bart sets an elaborate trap to anger the now sedate Homer. Bart finds out that the Internet company has gone bankrupt and doesn't need his new material, just as Homer takes the bait for the trap. Homer gets green with anger, a la The Incredible Hulk and it turns out Bart has saved Homer's life; since the pent up rage would have killed him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":287,"unverifiedSceneNumbering":false,"id":3576},{"seriesId":49,"episodeFileId":7231,"seasonNumber":13,"episodeNumber":19,"title":"The Sweetest Apu","airDate":"2002-05-05","airDateUtc":"2002-05-06T00:00:00Z","overview":"My goodness how the octuplets have grown! As we see when Manjula has brought the children to Kwik-E-Mart. After the children have left, Apu believes that the Squishee delivery lady has made a pass at him, by calling him handsome. The Simpson family is participating in the Civil War reenactment. Homer gets Barney (playing General Grant) to drink a mug of beer. The reenactment is \"ripe with inaccuracies.\" Homer goes back to the Kwik-E-Mart and discovers Apu making out with the Squishee lady, he back out of the store all the way home and into bed. He has nightmares about the encounter and tells Marge guesses at what he's seen. They both have difficulty facing Apu and Manjula together. They confront Apu and soon Manjula finds out. She throws him out. Marge and Homer concoct a plan to bring Manjula and Apu back together. Apu asks for forgiveness, but gets divorce papers instead. Apu is about to end it all, when Manjula is willing to take him, provided he meets with her list of demands.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":288,"unverifiedSceneNumbering":false,"id":3577},{"seriesId":49,"episodeFileId":7232,"seasonNumber":13,"episodeNumber":20,"title":"Little Girl in the Big Ten","airDate":"2002-05-12","airDateUtc":"2002-05-13T00:00:00Z","overview":"Lisa is failing gym. So that she won't fail and lose the Springfield Elementary the only accreditation they have, Principal Skinner gets Lisa a private coach. After seeing a vision of President Kennedy, Lisa is inspired to give gymnastics her best shot. While Bart is spending time with Grandpa he gets bitten by a Chinese mosquito. Lisa finds out that her fellow gymnastics students are actually college age, and rather than be embarrassed by her real age, she lets them think she is college age as well. Bart is diagnosed with \"Panda virus\" which makes him contagious, so Dr. Hibbert puts him in a plastic bubble for a week. Meanwhile Lisa has started hanging out with college age students at a coffee house listening to Robert Pinsky read his poetry. Bart starts using his plastic bubble to rescue nerds from the bullies. Some of those nerds follow Lisa when they think she is up to something. They find her at college analyzing \"Itchy and Scratchy\" cartoons and Milhouse exposes her. Embarrassed she leaves and back at home, she gets in trouble for going to college (16 credit hours worth) and her fellow grade school students won't relate with her anymore. She gets advice from Bart on how to win them back, which she does by making a splash on the cake created for Seymour Skinner Day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":289,"unverifiedSceneNumbering":false,"id":3578},{"seriesId":49,"episodeFileId":7233,"seasonNumber":13,"episodeNumber":21,"title":"The Frying Game","airDate":"2002-05-19","airDateUtc":"2002-05-20T00:00:00Z","overview":"Homer's ordered Marge an anniversary gift, a pond for the backyard. The new pond attracts a screaming caterpillar. The \"screamapillar\" as the family finds out is an endangered species and by law they are responsible for its well being. When Homer believes he has killed the insect he tries to hide that fact. The \"screamapillar\" is okay, but Homer is found guilty of \"attempted insecticide\" and \"aggravated buggery\" and is sentenced to 200 hours of community service. Homer begins delivering \"Meals on Wheels\" and runs scared into the closet when one of his elderly clients appears to be threatening him with an axe. It turns out she is just a kindly old woman, who asks Homer to join him for some company. He starts lending her a hand, and she seems to be taking advantage of him. Marge goes to see her and then finds herself helping the old woman as much as Homer has been. When the old woman turns up dead; Homer and Marge are considered top suspects, when they are named beneficiaries of the woman's will. They suspect the \"man with braces,\" who they saw leaving the scene. Everyone suspects them. When the woman's diamond necklace is found in their home, they are arrested. The children are sent to a yokel foster home and Marge and Homer are found guilty and sentenced to the electric chair. When Homer realizes that Marge is going to miss the children, he confesses to the crime, which allows for her release. On the electric chair Homer is about to be electrocuted when it is revealed he is a participant on a new reality game show \"Frame Up\". The man with the braces is the host, and Homer's murder victim is actually still alive. The old woman is actually Carmen Electra in disguise. Homer is freed, but disgusted that people's lives are toyed with for TV ratings; this he says while looking Carmen Electra directly in the breasts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":290,"unverifiedSceneNumbering":false,"id":3579},{"seriesId":49,"episodeFileId":7234,"seasonNumber":13,"episodeNumber":22,"title":"Papa's Got a Brand New Badge","airDate":"2002-05-22","airDateUtc":"2002-05-23T00:00:00Z","overview":"Springfield is in the midst of a heat wave. The nuclear plant is at capacity and when one of its crack employees, Homer Simpson, plugs in just one appliance too many, the city has a blackout. Looting begins and the police are ineffective. In an attempt to try doing something right for a change, Homer starts his own security company to help keep order. Chief Wiggum finds himself without a job, when Mayor Quimby decides that \"Spring Shield\" security should become the city's new police force. Homer shuts down one of Fat Tony's operations and with that crime is non-existent. Fat Tony makes a public announcement that he is going to gun down Homer if he isn't out of town by tomorrow at noon. Homer appeals for help, only no one of importance offers to help. The following day, Fat Tony and New Jersey associates a la The Sopranos go to the Simpson home. Shots ring out, effectively wounding Fat Tony and friends. Homer decides to give his badge to the next person he sees, which happens to be Clancy Wiggum. He comments that's the way he got the job in the past, he also disavows any knowledge of the shots; but we know who the shooter is, it's Maggie Simpson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":291,"unverifiedSceneNumbering":false,"id":3580},{"seriesId":49,"episodeFileId":2269,"seasonNumber":14,"episodeNumber":1,"title":"Treehouse of Horror XIII","airDate":"2002-11-03","airDateUtc":"2002-11-04T01:00:00Z","overview":"The family (along with Ned Flanders) holds a s\u00e9ance which brings the ghost of Maude Flanders back from the grave. With her presence in the room, she opens a book which brings us these three tales.\r\n\r\na). \"Send in the Clones\"\r\n\r\nHomer finds that his new hammock is capable of making clones, and he begins making and using the clones to do all of his chores. When one of the clones permanently takes care of Flanders, Homer decides to get rid of the clones and the hammock. So he takes them both out to cornfield where he leaves them. Only the clones begin using the hammock and start to proliferate themselves at an enormous rate, soon the town of Springfield is under invasion by an army of Homer clones. It's up to Lisa to give the army a suggestion that help them eliminate the clone problem.\r\n\r\nb). \"The Right to Keep and Scare Harms\"\r\n\r\nLisa finds the grave of William Bonney who was killed by gun violence. In his memory, she starts a gun control crusade, which makes Springfield totally gun-free; even the police no longer have guns. Now defenseless, the corpse of William \"Billy the Kid\" Bonney and his cohorts rise from the dead and start raising havoc in town. Professor Frink develops a time machine, which Homer uses to go back to the recent past to stop the ban on guns.\r\n\r\nc). \"The Island of Dr. Hibbert\"\r\n\r\nThe family takes a trip to \"The Island of Lost Souls,\" where they find Dr. Hibbert is running the island's resort. Marge thinks that something creepy is going on there, but when she goes off to investigate she is captured by Dr. Hibbert who turns her into a cat woman. Homer goes in search of a cure for Marge's condition and encounters Ned Flanders (who needs to be milked). Flanders takes Homer to meet the others who've been converted into beasts. While initially horrified at what they've all become, after thinking about it, he decides it might just be the life for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":292,"unverifiedSceneNumbering":false,"id":3581},{"seriesId":49,"episodeFileId":2299,"seasonNumber":14,"episodeNumber":2,"title":"How I Spent My Strummer Vacation","airDate":"2002-11-10","airDateUtc":"2002-11-11T01:00:00Z","overview":"When Homer can't pay for his beer, he finds alternate means for altering his consciousness. When he finally is given a beer, it puts him over the edge and into a cab home. His cab ride home is videotaped (a la HBO's Taxi Cab Confessions) and his family sees him complaining about them, the family got in the way of his dream to be a rock star. To help him get over these feelings, they send him to The Rolling Stones' Rock N' Roll Fantasy Camp. Homer, Barney, Apu and others learn how to be a rock star from the likes of Mick Jagger, Keith Richards, Elvis Costello, Lenny Kravitz, Brian Setzer, and Tom Petty. When his dream week is over, Homer is totally despondent; his rock star dream has been shattered. Mick offers him the opportunity to help them out with their upcoming benefit gig. Everyone (including Homer) thinks he is going to play on stage with the stars; the rock stars of course just want him to be their roadie. When he starts testing the microphones, he starts to steal the show, the rock stars fight back and a riot breaks out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":293,"unverifiedSceneNumbering":false,"id":3582},{"seriesId":49,"episodeFileId":2330,"seasonNumber":14,"episodeNumber":3,"title":"Bart vs. Lisa vs. the Third Grade","airDate":"2002-11-17","airDateUtc":"2002-11-18T01:00:00Z","overview":"Tired of \"suckling on the six network teat,\" with their endless array of \"reality shows,\" the Simpson family gets a satellite dish. Homer and Bart spend hours surfing all of the available channels. While Lisa studies for the school's upcoming achievement test; Bart doesn't, as he engrossed in Japanese Friends amongst and other lame satellite TV programming. Bart zones out during the test and daydreams about everything he's been watching lately. At a school assembly the next day, Principal Skinner announces that because of Lisa's high test score, she is being promoted to the 3rd grade. When Bart makes a comment about Lisa, Principal Skinner responds by also announcing that because of his low test score, Bart is being demoted to the 3rd grade. They'll be in class together, much to each other's horror. Lisa has a hard time adapting to the 3rd grade, as Bart is coming off as a much better student than he actually is. They go on a field trip to Capital City and Bart and Lisa are put together via the buddy system. Their teacher, Mrs. McConnell, decides that the students are going to help the state design a new flag. When Bart overhears Lisa breaking bad on him, he redesigns their entry. Lisa's anger with Bart causes them to fight and miss their bus back home. Bart and Lisa attempt to get home on their own, meanwhile Principal Skinner reports their disappearance to Homer and Marge, who subsequently journey to Capital City to try to find them. Bart and Lisa encounter a family of mountain folk, who take them back to the big city to reunite them with their family. Realizing that the \"status quo\" is best all-around, Principal Skinner returns Bart and Lisa's academic careers to normal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":294,"unverifiedSceneNumbering":false,"id":3583},{"seriesId":49,"episodeFileId":2359,"seasonNumber":14,"episodeNumber":4,"title":"Large Marge","airDate":"2002-11-24","airDateUtc":"2002-11-25T01:00:00Z","overview":"Marge sees Homer flirting with two women and later tries to decide whether he is still interested in her or not. Homer's response is to fall asleep. Meanwhile, Bart and Milhouse are watching Krusty playing the villain \"Clownface\" on an episode of the old Batman television series and are inspired to recreate the carousel sequence. Marge asks Manjula what she should do about Homer and Manjula responds by taking her to a plastic surgery clinic. Marge goes in for a liposuction procedure and winds up with breast implants. The doctor gives her 48 hours to try living with them before he will take them out. At school, Bart gets Milhouse spun at a high speed on the carousel; so fast that he spins out of control, resulting in his knocking over the flagpole and throwing up on the flag. When confronted for his part in this act of unpatriotic behavior, Bart cites Krusty as the influence; making Krusty a very unpopular figure. Homer discovers her implants and at dinner the next night, Homer and the men of Springfield sing the praises of her new endowment. Marge gets offered a trade show modeling job. Marge gets into her new image until the extra weight up front of starts giving her back problems. At the trade show, Bart's old friend Stampy and Marge's gifts are used to help Krusty get his reputation back. Afterwards surgery is preformed to reverse Marge's condition and the Baha Men sings the praises of her Jugs with a little help from Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":295,"unverifiedSceneNumbering":false,"id":3584},{"seriesId":49,"episodeFileId":2388,"seasonNumber":14,"episodeNumber":5,"title":"Helter Shelter","airDate":"2002-12-01","airDateUtc":"2002-12-02T01:00:00Z","overview":"When Homer is injured at work, his compensation is use of a luxury sky box. The family enjoys the luxuries, but Lisa is bored and joins the masses rink side. She gives one of the players some score tying advice and is rewarded with Kozlov's hockey \"tree\". The stick is mounted in Lisa's room where later that night termites break out of the stick and do much damage to the family home. Until the Russian no-wood-nick termites can be thoroughly exterminated, 6 months from now, the Simpson family is homeless. The family tries a number of options but settle upon trying out for a home where they are required to live like its 1895. They pass the audition and start living the lifestyle. When the \"1895 Challenge\" sinks in the ratings, the producers try to stir things up by adding Squiggy from Laverne and Shirley. When even that doesn't work, they relocate the house to a river and watch it float downstream. Eventually the house comes to shore and falls apart. Now the family finds themselves without food and shelter as the TV crew eats away. The encounter and tribe of refugees from another reality program and together they fight to return to civilization, where they can find quality scripted television. When even that fails them, they start to entertain themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":296,"unverifiedSceneNumbering":false,"id":3585},{"seriesId":49,"episodeFileId":2417,"seasonNumber":14,"episodeNumber":6,"title":"The Great Louse Detective","airDate":"2002-12-15","airDateUtc":"2002-12-16T01:00:00Z","overview":"The family receives an invitation to go to a health spa. While there Homer is alone in the steam room, when some unknown person locks him inside and turns the heat up to the \"MURDER\" setting. Homer and Marge go to see Chief Wiggum for help in finding Homer's attempted murderer. Chief Wiggum decides to call in an expert on the twisted mind of a murderer. He takes the Simpson family to Campbell's Chunky Soup Maximum Security Prison to consult with Sideshow Bob. Chief Wiggum strikes a deal Sideshow Bob that will allow him to stay with the Simpson family, which makes Bart nervous. A device is hooked to Sideshow Bob that will allow the family to shock him if he gets out of control. Sideshow Bob follows Homer through a \"normal\" day. Sideshow Bob sets up a Homer dummy as a trap for Homer's potential killer. Everyone, including Homer beats the dummy up. At Moe's someone takes a shot at Homer. Sideshow Bob recommends that Homer stay out of sight, which isn't going to happen when Homer is elected King of Mardi Gras. At the parade Homer's float becomes a runaway when its brake line is cut. Sideshow Bob launches himself out of cannon and saves Homer from certain death. Then Homer and Sideshow Bob go after and corner the potential killer, Frank Grimes Jr. Later that evening in Bart's bedroom, Sideshow Bob appears and he tries to kill Bart quickly, but finds he can't do it, as he's \"grown accustomed to Bart's face.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":297,"unverifiedSceneNumbering":false,"id":3586},{"seriesId":49,"episodeFileId":2445,"seasonNumber":14,"episodeNumber":7,"title":"Special Edna (a.k.a. Love and Marking)","airDate":"2003-01-05","airDateUtc":"2003-01-06T01:00:00Z","overview":"Edna looks forward to the apple picking trip she is going to take Seymour, only he has to cancel because he needs to take care of his mother. Meanwhile, Bart looks for ways to keep from working on his research paper for WWI, including photocopying his butt and joyriding in a Blackhawk helicopter. The day before it's due, he uses Grampa as a resource. Bart receives F for his effort he works on a revised version of the paper after school. When Bart sees how sad Principal Skinner has made Ms. Krabappel when he cancels a date with her in favor of his mother, Bart goes out with her for the evening. At Lisa's suggestion, Bart decides to do more for his teacher, he nominates for the \"Teacher of the Year\" award. Knowing who she has to put with, the award committee selects Ms. Krabappel as their nominee. The award finals are held in Orlando, Florida at \"Efcot Center.\" As the nominator, Bart (and his family) gets to go to award ceremony as well. Who isn't going, Seymour Skinner of course, that is until he changes mind. Of course, he has to bring mother along. At the award ceremony, Seymour is worried that he will lose Edna forever. He gets Bart to sabotage her chances at winning, but when it comes down to it he can't let Bart go through with it. Edna doesn't win the award, but she does get a marriage proposal from Seymour, with an engagement ring from Little Richard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":298,"unverifiedSceneNumbering":false,"id":3587},{"seriesId":49,"episodeFileId":2474,"seasonNumber":14,"episodeNumber":8,"title":"The Dad Who Knew Too Little","airDate":"2003-01-12","airDateUtc":"2003-01-13T01:00:00Z","overview":"Homer fails to get the birthday present that Lisa wanted. The gift he gets her instead makes it obvious that he knows nothing about his daughter and that makes her disappointed in him. To win Lisa back, Homer hires a private detective to find out everything about her. The private detective comes through with information that restores Homer's relationship with Lisa. Homer refuses to pay the detective's $1000 expenses; to get even the detective arranges it so that Lisa is framed for a crime she didn't commit. When the police arrive outside the Simpson home, Homer takes Lisa on the run. While they are holed up in a cabin, Homer confesses what he did to learn more about Lisa. The police trace them there and Homer and Lisa's subsequent escape leads them to a circus, where they find evidence that will exonerate Lisa of the crime. Only first together they must deal with the crooked detective.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":299,"unverifiedSceneNumbering":false,"id":3588},{"seriesId":49,"episodeFileId":2504,"seasonNumber":14,"episodeNumber":9,"title":"Strong Arms of the Ma","airDate":"2003-02-02","airDateUtc":"2003-02-03T01:00:00Z","overview":"Marge gets mugged outside the Kwik-E-Mart and she starts feeling vulnerable and becomes scared to leave the house. Dr. Hibbert diagnoses her with agoraphobia. The family tries to help her get back out of the house, but their efforts drive into living in the basement. In the basement she finds their unused weight set and she begins working out. Two weeks later she is stronger than she ever was and realizes that she can leave the house. In fact while celebrating her release from her fears, she confronts and beats the crap out of her mugger. While out working out, Marge runs into Ruth Powers, the neighbor she once went on the lam with. Ruth tells her about how steroids can help her to get bigger. Marge starts taking the supplements and gets into a women's bodybuilding competition. She takes 2nd place, which only entices her to do better next time. At Moe's she tears the place apart when she suffers from steroid rage. Homer makes her realize that she has become everything that she can't stand and she destroys the weight set.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":300,"unverifiedSceneNumbering":false,"id":3589},{"seriesId":49,"episodeFileId":2533,"seasonNumber":14,"episodeNumber":10,"title":"Pray Anything","airDate":"2003-02-09","airDateUtc":"2003-02-10T01:00:00Z","overview":"When Flanders wins a half-time money shot during a WNBA game, Homer asks him what the secret to his good fortune is. Ned reveals his secret as hard work, honest living and flossing his teeth, tail and toes. Also a little prayer now and again doesn't hurt either. Homer focuses on the notion of the little prayer and when he needs to find the remote for his TV, his own little prayer works. He begins to pray for a number of things. His prayer for a new home pays off when he trips into a hole outside of the church. His lawsuit against the church wins him the deed to the church, since the church can't afford to pay him $1 million. Homer turns the church into a party palace. Without a place to preach, Reverend Lovejoy and his wife leave Springfield, when preaching at the bowling alley and staying at Ned's house just doesn't work for the Reverend. The partying at the church gets out of hand; Marge asks Homer if he is afraid of incurring God's wrath. Homer isn't so sure, but then the rainfall begins and Homer is struck by lightning. Soon Springfield has started flooding. When an unruly mob starts to come after Homer, Reverend Lovejoy arrives on the scene asking for forgiveness on behalf of the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":301,"unverifiedSceneNumbering":false,"id":3590},{"seriesId":49,"episodeFileId":2562,"seasonNumber":14,"episodeNumber":11,"title":"Barting Over","airDate":"2003-02-16","airDateUtc":"2003-02-17T01:00:00Z","overview":"Lisa dreams of being honored as one of three great Americans, only to be waken by Marge's vacuum. Marge and the rest of the family have begun spring cleaning. Bart finds a box of old videotapes. He and Lisa start watching the tapes that are boring them, until Lisa finds a tape labeled \"BART SAD.\" They put in the tape, which features an episode of Perfect Strangers and a commercial for a product that fights bad breath for babies. The baby featured in the ad is none other than Bart, leading Lisa to realize the tape should have been titled \"Bart's Ad.\" The baby in the ad is referred to as \"Baby Stinkbreath,\" which opens Bart up to name calling by his siblings. Bart confronts his parents about the ad and Homer tells him he was going to tell him on his \"death bed.\" They tell him he enjoyed making the commercials and he made a lot of money that Homer invested in a college trust fund. Homer confesses that he used the money to buy back incriminating photos. Bart demands the return of his money; Milhouse suggests that he get a lawyer. He finds a lawyer and tells him he wants a divorce from his parents. In court, Judge Harm renders her verdict, Bart is emancipated and half Homer's salary is to go to Bart. Bart moves out and into a loft apartment. His first night alone he is scared by a rat and runs to the elevator that takes him up instead of down. The doors open to a loft apartment that contains skateboard ramps, \"skate boarding legend Tony Hawk\" and the band \"blink - 182\" playing live in the corner. The family comes to visit Bart at his new home, where Bart appears to be living the good life. Homer makes a plea for his return, but Bart tells them he is taking off for six months to go on the \"Skewed Extreme Sports Tour.\" At the Springfield stop of the tour, Homer talks Tony Hawk into losing to him in a skateboarding contest so that Homer might win back Bart's affection. When wins the contest, Bart informs him it was about being cool, it was really about Ho","hasFile":true,"monitored":true,"absoluteEpisodeNumber":302,"unverifiedSceneNumbering":false,"id":3591},{"seriesId":49,"episodeFileId":2591,"seasonNumber":14,"episodeNumber":12,"title":"I'm Spelling as Fast as I Can","airDate":"2003-02-16","airDateUtc":"2003-02-17T01:25:00Z","overview":"The kids are getting ready to go back to school. On the first day, Principal Skinner holds an all school Spelling Bee, which Lisa easily wins, allowing her to go to the state spelling finals. If she wins there, she can then go Spellympics. Meanwhile, Homer has been trying Krustyburger's new \"Ribwich\" and enjoying it immensely. At the state Spelling Bee Lisa wins, but is disappointed with Homer who tells her that \"very serious Daddy business\" is going to keep him away from her celebration. Homer's daddy business consists of getting more Ribwiches. He is disappointed when the Ribwich is no longer available. Another Ribwich fan (and member of Ribwich Nation) informs Homer that the sandwich is going to be tested in other markets and he shows him the tour schedule. For a moment, Homer considers joining them on their bus tour. For her spelling efforts, Lisa is rewarded with a double-wide locker and she prepares for the Spellympics. At the Spellympics, Lisa makes it to the finals. Homer regrets that he won't be able to attend the finals, as he will be in San Francisco for the last day of the Ribwich. George Plimpton talks to Lisa about getting her to throw the spelling bee so that a more popular competitor can help keep spelling a viable sport. For throwing the bee, Lisa is offered a full scholarship to one of the seven sister's college of her choice. Lisa wrestles with her conscience. In San Francisco, Krusty stops by and tells the crowd they will no longer be making the Ribwich and he tosses them the last one. Homer catches it, and offers are made to him for the last one. He realizes that he's forsaken his daughter's big day for a sandwich and he trades it for a car, which he drives off to Lisa's big event. At the Spellympics, Homer arrives just in time for Lisa to do her final word. With her dad present, she blows the lid off of the rigged contest, but then misspells her word in the process. She loses the contest, but back home in Springfield she is","hasFile":true,"monitored":true,"absoluteEpisodeNumber":303,"unverifiedSceneNumbering":false,"id":3592},{"seriesId":49,"episodeFileId":2617,"seasonNumber":14,"episodeNumber":13,"title":"A Star Is Born-Again","airDate":"2003-03-02","airDateUtc":"2003-03-03T01:00:00Z","overview":"Ned dates a once-famous starlette in a sendup of \"Notting Hill\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":304,"unverifiedSceneNumbering":false,"id":3593},{"seriesId":49,"episodeFileId":2646,"seasonNumber":14,"episodeNumber":14,"title":"Mr. Spritz Goes to Washington","airDate":"2003-03-09","airDateUtc":"2003-03-10T01:00:00Z","overview":"Krusty gets elected to Congress in part to help get the flight path for Springfield Airport diverted from directly over Homer's house, but falls in line with the conservatives once he's there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":305,"unverifiedSceneNumbering":false,"id":3594},{"seriesId":49,"episodeFileId":2675,"seasonNumber":14,"episodeNumber":15,"title":"C.E. D'oh!","airDate":"2003-03-16","airDateUtc":"2003-03-17T01:00:00Z","overview":"On St. Valentine's Day Marge is too tired in participating in the lovemaking that Homer was so looking forward to. Dejected, Homer leaves the house and stumbles across a billboard for some extension courses. When he is thrown out of the \"Strip for Your Wife\" class led by Dr. Hibbert, he stumbles into \"Successmanship 101\" class. He gets the book for the class and with it he decides to change the direction of his life. Homer goes into work with a new attitude, but when he presents his ideas for improvements to Mr. Burns, they are all rejected unread. Later when Homer overhears that Mr. Burns actually has a canary named as the plant's legal owner. With this information and some encouragement from his family Homer decides upon a plan. With Bart's help, Homer releases the bird, which leaves the plant with no owner. In rare sign of intelligence, Homer outwits Mr. Burns and is able to take over the vacancy left by the canary. His first act in his new job is to fire Mr. Burns. Now Homer is in charge of the power plant and besides learning about the \"door shutting thing\" he soon learns how difficult it is to be at the top. He misses out on quality time with his family. Mr. Burns returns for a visit and shows Homer the people he missed out on being with throughout his life, Mr. Burns then tries to kill Homer by drugging him and sealing him in a tomb. He isn't fast enough as Homer recovers and easily escapes. As a wrap up to his latest escapade Homer (and everyone) celebrate \"HOMER'S 305th EVERYTHING IS BACK TO NORMAL BBQ.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":306,"unverifiedSceneNumbering":false,"id":3595},{"seriesId":49,"episodeFileId":2702,"seasonNumber":14,"episodeNumber":16,"title":"Scuse Me While I Miss the Sky","airDate":"2003-03-30","airDateUtc":"2003-03-31T01:00:00Z","overview":"Principal Skinner introduces the students of Springfield Elementary to Declan Desmond, a documentary filmmaker. Desmond is there to do a documentary on the school. The children see an example of his work in the form of his documentary on Krusty Burger called \"Do You Want Lies With That?\" He starts filming his documentary by focusing on school bullies. Bart is being featured on camera for his role as a school bully, when he is humiliated by Nelson, the bigger bully. Principal Skinner tries to divert Desmond's attention by focusing on Lisa. Desmond easily spots the ruse and gives Lisa some advice that she should pick a path and follow it. Bart searches for a way to become cool again. When Nelson shows off a hood ornament he's stolen, Bart decides he needs to do the same, only bigger. Lisa looks for career direction and finds inspiration at an astronomy exhibit. Lisa gets Homer to buy her a telescope, only she soon discovers that light pollution from the town obscures her view. Bart tries to regain his position, as Desmond watches. He then finds Lisa is circulating a petition to reduce Springfield's light pollution. It works and lights are put down, yes the stars have come out, but so have the criminals. Nelson and company steal more hood ornaments. Bart targets the ornate (Emmy award looking) hood ornament of Fat Tony's car. Mayor Quimby caves into pressure from the townspeople and restores the lights of Springfield, to the point where it's daytime at night. Bart and Milhouse were almost able to steal Fat Tony's hood ornament, when the lights go on. 24 hours of \"daylight\" begin to take their toll on the townspeople. Bart is still scoping out Fat Tony's hood ornament, he only needs the cover of darkness to pull of his crime. Since he and Lisa want the same thing, they team up to get Homer to go into power plant and overload the city's lights. Springfield is back in the dark when the townspeople come to protest the lack of lights. Fortunately for B","hasFile":true,"monitored":true,"absoluteEpisodeNumber":307,"unverifiedSceneNumbering":false,"id":3596},{"seriesId":49,"episodeFileId":2731,"seasonNumber":14,"episodeNumber":17,"title":"Three Gays of the Condo","airDate":"2003-04-13","airDateUtc":"2003-04-14T00:00:00Z","overview":"After yet another Homer and Marge fight, Homer ends up sharing a condo with two homosexuals - who don't exactly think Homer is straight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":308,"unverifiedSceneNumbering":false,"id":3597},{"seriesId":49,"episodeFileId":2758,"seasonNumber":14,"episodeNumber":18,"title":"Dude, Where's My Ranch?","airDate":"2003-04-27","airDateUtc":"2003-04-28T00:00:00Z","overview":"It's Christmastime and the family is out caroling. When they carol outside of a lawyer's house, he informs them they can't sing the song they're singing without paying a royalty. This inspires Homer to decide to write his own Christmas carol, but when Flanders tries to help and begins annoying him, Homer is instead inspired to write an anti-Flanders song. Homer plays his new song at Moe's where a passing David Byrne overhears it and offers to produce and record it. The song \"Everybody Hates Ned Flanders\" becomes a national hit and is even covered by William Shatner. To get away from the over-exposure of the hit song, the family decides to take a vacation to a dude ranch. At the Lazy I ranch, Comic Book Guy looks for an Internet connection and Lisa is annoyed to find out that the ranch was built on cruelty to animals and oppression of indigenous people. Lisa wants to go home, until sometime later when she meets Luke Stetson, a junior wrangler who shares her views. Homer and Bart meet some indigenous people who tell them that they've lost their land to a natural beaver dam. Homer gets them to agree to build a fair casino, if he helps them get back their land. Lisa overhears that Luke already has a girlfriend named Clara and her heart is broken. Lisa encounters Clara and gives her false directions to the dance. Homer and Bart manage to outsmart the beavers and indigenous people are able to reclaim their land. At the dance, Lisa finds out that Clara, her competition is actually Luke's sister. Lisa gets Bart to help her find Clara, who they rescue with the help of some beavers. The family is set to return to Springfield, when they hear a new David Byrne produced song on the radio \"The Moe Szyslak Connection\" and decide they can afford another week at the ranch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":309,"unverifiedSceneNumbering":false,"id":3598},{"seriesId":49,"episodeFileId":2786,"seasonNumber":14,"episodeNumber":19,"title":"Old Yeller Belly","airDate":"2003-05-04","airDateUtc":"2003-05-05T00:00:00Z","overview":"Bart's tree house is destroyed and the Amish are called in to rebuild it. Because the Amish are master electricians, Bart's new tree house catches fire at its grand opening. Everyone makes it to safety, with the exception of Homer, who is trapped. He looks to the family dog for help, but Santa's Little Helper (SLH) is a coward and only saves himself. It's up to Snowball II to save Homer's life. Snowball II is made a hero in Homer's eyes and SLH is thrown out of the house. The dog park is turned into a cat park and renamed for Snowball II. SLH doesn't look very good in the eyes of his fellow dogs either. Kent Brockman asks Homer about his cat and any other pets he may have and Homer makes the bold statement that \"I have no dog.\" Bart and Lisa look to help SLH regain his status as family dog. Their efforts fail. A passing photographer spots SLH drinking beer from a can that he is balancing on his nose. The photo appears in the paper and the owner of Duff Brewery decides its time to replace Duffman with a dog. The family signs a contract for the brewery's new spokesdog \"Suds McDuff.\" The new campaign is a hit. The family stands to make lots of money, until SLH's original owner from the dog track comes to lay claim to his dog. He uses a tape of Homer's own words against him as proof of his continued ownership of the dog. SLH is being exploited by his original owner. The family comes up with a plan to get their dog back. They find the actor who played Duffman (Barry Duffman) and plan to have him rescue a drowning Homer, when it becomes obvious to the crown that \"Suds McDuff\" is a cowardly dog. The plan doesn't work, when Duffman turns out to be as cowardly as his replacement. The shark that tried to attack Homer becomes \"wasted\" on the Duff beer that came out of the keg that Homer was floating on. As a result, the shark becomes the company's new mascot. With his gravy train at an end, SLH's original owner returns the dog back to the family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":310,"unverifiedSceneNumbering":false,"id":3599},{"seriesId":49,"episodeFileId":2814,"seasonNumber":14,"episodeNumber":20,"title":"Brake My Wife, Please","airDate":"2003-05-11","airDateUtc":"2003-05-12T00:00:00Z","overview":"At the Springfield Aquarium, Marge accompanies the kids on a school field trip. Lisa spots penguins flying and after Bart has shown off his \"flawless pearls,\" which results in him being taken the hospital, where a lack of insurance card keeps him prisoner. Homer has the insurance card, but is nowhere to be found. As a solution, Homer gets a mobile phone and a few extra unnecessary accessories, which only leads to him not paying attention to where he is driving. That is until it is much too late and he drives off of a pier. Judge Harm takes his license away and Homer is no longer able to drive. Marge picks up the slack and starts becoming \"Stresserella.\" Homer walks to Moe's, but much to Moe's dismay he decide to keep on walking and starts getting healthy. Homer walks to work and is the only employee to arrive, everyone else is caught in a traffic jam. Marge is frazzled from all her driving, meanwhile Homer sings and walks about the virtues of walking when he is stuck by a car; the driver of the car was Marge. Marge, who cares so much for Homer, tries to help in his recovery, but Homer perceives that she might be trying to kill him. It leads to fight, which in turn leads them to see a marriage counselor. After Marge leaves, the counselor suggests that Homer perform one unselfish act of love to win Marge back, in other words take her to dinner. Homer decides to one up that suggestion and invites everyone in Springfield (except the Flanders family) to a backyard barbeque in Marge's honor. Homer joins Jackson Browne in a duet to sing his praises of Marge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":311,"unverifiedSceneNumbering":false,"id":3600},{"seriesId":49,"episodeFileId":2843,"seasonNumber":14,"episodeNumber":21,"title":"The Bart of War","airDate":"2003-05-18","airDateUtc":"2003-05-19T00:00:00Z","overview":"When Marge sees Bart and Milhouse incited to violence after watching an episode of South Park, she tries to turn them onto some good television on the PAX television network. They run out of the room and find themselves outside and bored. After tying a thread to a housefly, that lands itself inside of the Flanders home, Bart and Milhouse find themselves inside the home, unsupervised. They cause some damage and find Ned's collection of Beatles memorabilia. They drink from cans of a 40-year-old novelty beverage and start to get sick. Ned and the boys return to their home to find the house \"slightly askew,\" and they flee to their panic room and call the police. The police arrive and capture the boys and Bart pleads that his parents not be called. The parents are called and as part of Bart's punishment he is sentenced to spending all his time under the supervision of a parent. He is also no longer allowed to play with Milhouse, who Marge believes incites Bart into his bad behavior. Bart joins the \"Pre-Teen Braves\" and Homer becomes the tribe leader. When Homer fails in his leadership skills, Marge takes over. Marge takes the boys on a nature walk and they meet a Native American who shows them a field that is in need of restoration. The \"Pre-Teen Braves\" return to the field to begin their clean-up effort, only to discover that the \"Calvary Kids\" that Milhouse and his father are a members of have already done the job. The two groups go to war and try to outdo each other in doing good. When the opportunity to become batboys at an Isotopes game is on the line, the two sides redouble their efforts for their candy sales. The \"Pre-Teen Braves\" lace the \"Calvary Kids\" candy bars with laxatives and believe they are going to win. Only the senior citizens, in a need of relief from constipation, buy the \"Calvary Kids\" a win. At the Isotopes game, the \"Calvary Kids\" are delayed from arriving and the \"Pre-Teen Braves\" take their place singing their version of the nat","hasFile":true,"monitored":true,"absoluteEpisodeNumber":312,"unverifiedSceneNumbering":false,"id":3601},{"seriesId":49,"episodeFileId":2868,"seasonNumber":14,"episodeNumber":22,"title":"Moe Baby Blues","airDate":"2003-05-18","airDateUtc":"2003-05-19T00:25:00Z","overview":"The family goes to the Springfield Botanical Gardens, where they and the other residents are there to see the blossoming of the Sumatran Century Flower. When his bar is empty, Moe finds out that is where all his customers have gone and he goes to join them. With a capacity crowd plus one on hand, Chief Wiggum has to send someone away and he selects Moe. As a result, Moe is one of the only ones to not be driven out of town by the obnoxious and somewhat lethal (to other plant life) smell of the Sumatran Century Flower when it finally does bloom. The mass exodus from Springfield results in a huge traffic jam on the Springfield Bridge. When traffic begins to move, Homer hits the accelerator, only to have to immediately slam on the brakes, because traffic didn't move that far. The quick stop to family car and the faulty seat restraint that was holding Maggie in the backseat causes her to be launch through the sunroof and over the side of the bridge. She lands in the arms of Moe, who was perched on the side of the bridge ready to commit suicide. Moe becomes a hero. Moe stops by to see Maggie and winds up watching her when Marge needs to care of Grampa, who's out on the street acting crazier than normal. Moe becomes Maggie's fulltime babysitter. Moe entertains Maggie by telling her a story; of course it's \"The Godfather\" saga. Late in the evening after Maggie's birthday party, where Homer began to learn that Maggie prefers Moe over him, Marge and Homer hear Maggie crying. They go to her room only to find Moe already there calming her down. They forbid him to ever see her again. The next day, Moe is lonely and missing Maggie. That night, outside her window, Maggie overhears Fat Tony and his boys plan to take out the Castellaneta family. She crawls out her window and begins pursuing them. Marge discovers Maggie is gone and they immediately suspect Moe. When Moe doesn't have her and he finds out she is missing, he offers to help. Clues outside Maggie's win","hasFile":true,"monitored":true,"absoluteEpisodeNumber":313,"unverifiedSceneNumbering":false,"id":3602},{"seriesId":49,"episodeFileId":2265,"seasonNumber":15,"episodeNumber":1,"title":"Treehouse of Horror XIV","airDate":"2003-11-02","airDateUtc":"2003-11-03T01:00:00Z","overview":"\"Reaper Madness\" - Death becomes Homer and our hero must learn to reap what he sows (and pull a fast one on the almighty).\r\n\r\n\"Frinkenstein\" - Soon to be Nobel-prize winning Professor Frink reanimates his father for some gruesome body parts-swapping. \r\n\r\n\"Stop the World, I Want to Goof Off\" - A parody of Clockstoppers, starring Bart and Milhouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":314,"unverifiedSceneNumbering":false,"id":3603},{"seriesId":49,"episodeFileId":2296,"seasonNumber":15,"episodeNumber":2,"title":"My Mother the Carjacker","airDate":"2003-11-09","airDateUtc":"2003-11-10T01:00:00Z","overview":"Homer learns of his mother's whereabouts, through clues that she leaves in the newspaper. When Mother Simpson returns to Springfield, she is quickly recognized by police and Mr. Burns, and is taken to court over her germ warefare sabotage from the 60s. With help from Homer, she is acquitted, but when she reveals that she used false names when visiting national parks, she is booked on forgery charges. Homer carjacks a bus and tries to help her escape, but, not wanting her son involved, she kicks Homer out of the bus and drives off. When the bus crashes, Mother Simpson is feared dead. But another subliminal newpaper message reveals otherwise. Guest stars Tom Kenny and Glenn Close.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":315,"unverifiedSceneNumbering":false,"id":3604},{"seriesId":49,"episodeFileId":2325,"seasonNumber":15,"episodeNumber":3,"title":"The President Wore Pearls","airDate":"2003-11-16","airDateUtc":"2003-11-17T01:00:00Z","overview":"It's Vegas night at Springfield Elementary, where Martin is school class president, and the event is quite a success. Homer wins big and wants his $200,000; but when he and everyone else find out they aren't going to win any real money, there is a riot and Martin is forced to resign. Lisa runs against Nelson for class president. Lisa struggles to fight against Nelson's popularity, she of course all about the issues, while he isn't. Lisa sings her way into popularity that helps her win the vote. The administration is worried about having a popular president, whom is also smart. They start giving her distractions to keep her from knowing about their plans to remove the music, gym and art programs. Lisa is identified as a sellout, but as her last act as president, she gets all the students to go on strike. After several days, Chalmers wants action and he gets Skinner to transfer Lisa to a school for the gifted and troublesome. While it's Lisa's dream to go there, Homer isn't going to pay for it. Lisa returns to Springfield Elementary, where the programs have been restored thanks to the cancellation of flu shots and the selling of loose cigarettes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":316,"unverifiedSceneNumbering":false,"id":3605},{"seriesId":49,"episodeFileId":2354,"seasonNumber":15,"episodeNumber":4,"title":"The Regina Monologues","airDate":"2003-11-23","airDateUtc":"2003-11-24T01:00:00Z","overview":"Mr. Burns uses his ATM card and gets a $1000 bill. It hits him in the chest and then blows away, right across town and into the Simpson living room window, where Bart gets a hold of it. His parents (well Marge anyway) make him put up a notice so that the owner might have a chance to claim the bill. When no one can identify the bill, Bart wonders what he can do with his new windfall. He realizes that he can make money showing off his bill, so he opens up the \"Museum of Modern Bart\" in his tree house. Mr. Burns makes his claim for the bill, but all is not lost. Bart has made over $3000 in admissions to his museum. To make use of the money the family decides to go to England, where Abe recalls having a memorable night with a beautiful English girl named Edwina. In merry ole England, the Simpsons meet Prime Minister Tony Blair. Abe tries to find Edwina, meanwhile the rest of the family tours London. Everything is going fine until Homer slams his rental Mini into the back of the Queen's horse drawn carriage. Homer is put on trial, makes an ass out of himself in court and is thrown into the Tower of London. Lisa finds a way for Homer to escape his tower cell, a secret tunnel once used by Sir Walter Raleigh. Unfortunately the tunnel leads to the Queen's bedroom. Homer's pathetic plea with the Queen works and the family is allowed to leave the country, provided they take Madonna with them. Before boarding the plane, Edwina calls out to Abe, and introduces him to her daughter of 58 years, Abbie, a woman who looks like Homer in drag. Abe runs on board the plane as fast as he can.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":317,"unverifiedSceneNumbering":false,"id":3606},{"seriesId":49,"episodeFileId":2386,"seasonNumber":15,"episodeNumber":5,"title":"The Fat and the Furriest","airDate":"2003-11-30","airDateUtc":"2003-12-01T01:00:00Z","overview":"It is Mother's Day and Homer goes with the kids to Sprawl-Mart to buy Marge a better gift. They find Abe working there as a greeter and Lisa asks her aunts to help them pick out a gift. Patty and Selma recommend the Kitchen Carnival, which makes food fun. Marge likes the gift, which can deep fry, make cotton candy and caramelize anything. Later that night, Homer creates an 85 lb. sugar ball and he seems to fall in love with his new creation. Marge insists that he get rid off of the ball, which he takes to the dump. At the dump he gets attacked by a bear. He returns home and finds that his attack was covered by the media. He's been labeled a coward and it begins to affect his life. Too combat his fear he needs to attack the bear that bested him, and he constructs a bear attack proof suit. Marge forbids him from using the suit, but he goes anyway. With help from Lenny, Carl, and Bart, Homer goes out into the woods in search of the bear. Of course when he actually encounters the bear, he is without the suit. The bear takes Homer to his cave and Homer removes the tag from the bear that was causing it discomfort. He bonds with the bear and tries to keep it from being hunted. He lends the bear his bear proof suit and it helps to get him to the wildlife sanctuary, where the bear is free to be attacked by other animals.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":318,"unverifiedSceneNumbering":false,"id":3607},{"seriesId":49,"episodeFileId":2415,"seasonNumber":15,"episodeNumber":6,"title":"Today, I Am a Klown","airDate":"2003-12-07","airDateUtc":"2003-12-08T01:00:00Z","overview":"Maggie is locked in the bathroom and is eventually freed when Lisa goes against the norm and tries their rescue solution as second time. Then the family hears the doorbell. They find Dr. Hibbert at the door; it seems that SLH had impregnated his poodle and he is turn over the puppies to the Simpson family and making them their problem. Despite a book that says that Homer was taking Homer to have SLH neutered, Homer was never able to complete the deed. They distribute the puppies and Lisa and Bart stop by Krusty's house and give him one of the puppies. Krusty takes the dog for a walk and finds that his star is not included on the Jewish walk of fame. He goes to complain and finds out that he was never Bar Mitzvah, which means he is technically not Jewish. Bart and Lisa take Krusty to see his father, who agrees to help Krusty achieve his goal. As Saturday is the Sabbath, Krusty gets Homer to replace his show on that day. Homer's replacement show is a talk show, with Moe, Lenny & Carl as his guest panelists. The replacement show becomes a success; meanwhile Krusty works on learning his Jewish traditions. Homer's show has become so popular that the network decides to fire Krusty. Homer's incredibly popular and Lisa wants to put his power to good use. Krusty pitches the FOX network on a new show that covers his Bar Mitzvah. Meanwhile, Homer's attempt to start covering topics based on Lisa's suggestions, but it becomes a ratings nightmare resulting in his cancellation. Meanwhile, on FOX Krusty's Bar Mitzvah is a rating's bonanza, but the spectacle disappoints his father. Later at a real Jewish temple, Krusty has a real, almost serious, Bar Mitzvah.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":319,"unverifiedSceneNumbering":false,"id":3608},{"seriesId":49,"episodeFileId":2442,"seasonNumber":15,"episodeNumber":7,"title":"'Tis the Fifteenth Season","airDate":"2003-12-14","airDateUtc":"2003-12-15T01:00:00Z","overview":"It's Christmastime and at the power plant Mr. Burns passes out Christmas bonuses, a $5 dollar voucher to the cafeteria. For reasons unknown, Mr. Burns gives Homer a \"confectioner's card\" for Bart featuring a \"current baseballer.\" The \"current baseballer\" is Joe DiMaggio and it is his rookie card that Homer brings to the Comic Book Guy, where he gets everything he has in the register for the card. With this financial windfall, the Simpson family goes Christmas shopping at the Springfield Heights Promenade, where the rich people shop. Homer spends the remaining portion of his share of the money for a gift for himself (a personalized talking astrolabe) and has no money left to buy the family a nice Christmas tree. Marge and the kids find out what he's spent the money on and are disappointed in him. Spending the night on the couch, Homer watches \"Mr. McGrew's Christmas Carol\" and the story works its magic on Homer, and Homer wakes with resolve to be good and unselfish. Homer starts helping the less fortunate and his good deeds begin to make Ned Flanders' jealous. To combat against Homer's good reputation, Ned decides to give everyone in Springfield a Christmas present. Homer decides to outdo Flanders, but on advice from Lisa and her Buddhist view of the world, Homer decides to take everyone's presents. Homer and SLH (a la the Grinch) sneak into everyone's home and take all of their presents. The angry mob finds Homer in downtown Springfield. Ned tries to come to Homer's rescue, but a \"star\" in the sky saves them both and they return the presents. After Moe's failed annual suicide attempt the whole town joins in a rendition of \"Hark the Herald Angels Sing.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":320,"unverifiedSceneNumbering":false,"id":3609},{"seriesId":49,"episodeFileId":2470,"seasonNumber":15,"episodeNumber":8,"title":"Marge vs. Singles, Seniors, Childless Couples and Teens, and Gays","airDate":"2004-01-04","airDateUtc":"2004-01-05T01:00:00Z","overview":"Bart is trying to watch \"The Gator Baiter,\" when Lisa turns the channel to \"Dollhouse Do-Overs.\" In their ensuing scuffle for the remote, the channel is changed to \"Roofi,\" an entertainer that appeals to very small children. To get the TV back Bart suggests that Marge buy Maggie a \"Roofi\" CD, which Lisa tries to warn him against. The warning doesn't work; Marge fills the house and family car with the sounds of \"Roofi,\" which drives Homer, Bart and Lisa crazy. Marge takes Maggie to an outdoor \"Roofi\" concert being held at Cletus's farm. The concert turns into a disaster and the babies begin to riot. After paying $1 million in additional taxes to help pay for the damage the babies caused, the single (and other childless) adults of Springfield join SSCCATAGAPP (Singles, Seniors, Childless Couples And Teens And Gays Against Parasitic Parents) and begin to revolt against children. \"Children are the future, today belongs to me.\" Marge takes up the cause on behalf of the children and works to get voter sponsored initiative proposition on the ballot. Marge forms PPASSCCATAG (Proud Parents Against Singles, Seniors, Childless Couples And Teens And Gays). The tobacco lobby tries to endorse Marge's cause, but she won't take their money; however, Mr. Burns signs her petition and others soon follow. Her \"Families Come First\" proposition #242 gets on the ballot. Homer's attempts to help Marge's initiative, but his kind of help might only hurt it. Bart and Lisa (well Lisa anyway) come up with a plan to get Marge's prop 242 passed. It seems the members of SSCCATAGAPP have no immunity against children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":321,"unverifiedSceneNumbering":false,"id":3610},{"seriesId":49,"episodeFileId":2499,"seasonNumber":15,"episodeNumber":9,"title":"I, (Annoyed Grunt)-Bot","airDate":"2004-01-11","airDateUtc":"2004-01-12T01:00:00Z","overview":"Milhouse comes over with a Psycho Cycle bike conversion kit, which they use on Bart's bike to make it look cooler. While riding the modified bike, they are hassled by older boys with \"big boy\" bikes. It makes Bart wish for a ten-speed bike. To get a new bike Bart sacrifices his old bike right in front of Dr. Hibbert's Mercedes. As Dr. Hibbert leaves his Mercedes then runs over Snowball II and Lisa is devastated. Bart and Homer get Bart a new bike, but it needs to be assembled and Homer tries to do his best. The bike falls apart when Bart tries to show it off to the older boys. Later Bart and Homer are watching \"Robot Rumble\" and the father and son teams inspire Homer to try building a robot for them to enter in competition but Bart leads Homer to believe that Bart thinks he is an oaf. Marge and Lisa look for a new cat and Lisa finds a new one that she calls Snowball III. Homer tries to build a robot, but his result is a failure. Homer looks to his father for inspiration and becomes a robot instead of building one. Bart wakes to find Homer's robot in his room, which is actually Homer inside of large metal shell powered by a tricycle. Lisa finds that Snowball III has drowned in the fish tank. Bart competes on \"Robot Rumble,\" with the robot he's called \"Chief Knock-A-Homer,\" but Homer is nowhere to be found. Homer, hidden inside the robot, manages to win his first match, but only after he receives numerous cuts and bruises. Lisa gets (and quickly loses) a new cat named Coltrane. Chief Knock-A-Homer quickly works his way into the finals, but Bart is sorry that his father hasn't been able to see any of the Chief's victories. The Chief's final match is scheduled to be against Professor Frink and his son's deadly looking robot. Lisa, depressed about her propensity to kill cats, is surprised when a crazy lady leaves her with a new cat. Lisa sees that new cat looks kill proof, and decides to call it Snowball II and forgot the whole dead cat thing ever happ","hasFile":true,"monitored":true,"absoluteEpisodeNumber":322,"unverifiedSceneNumbering":false,"id":3611},{"seriesId":49,"episodeFileId":2529,"seasonNumber":15,"episodeNumber":10,"title":"Diatribe of a Mad Housewife","airDate":"2004-01-25","airDateUtc":"2004-01-26T01:00:00Z","overview":"Homer compromises the power plant's security system and as a result gets fired. Marge and the kids go to a bookstore and while there she sits in a on a book reading and then asks the author if anyone can write a book. The answer gives Marge an idea. Meanwhile, Homer has gotten a job as a car salesman; but there is an ambulance on the lot that seduces Homer into quitting that job and becoming an ambulance driver. Marge wants to start writing her novel and Homer agrees to watch the kids, while putting in his night shift as an ambulance driver. Marge completes her novel and lets Lisa read it. Seeing one of the characters is hard on her father, Lisa suggests that Marge let Homer read the novel. Homer makes an attempt, fails and tells her that he did. Marge gets her novel published and the kids worry that if Homer ever reads it or sees it as a MADtv sketch, he will be heartbroken. Marge's novel comes out and everyone in Springfield is talking about it. Homer gets the book on tape version, as read by the Olsen twins, and finds out what everyone is talking about. Mad Homer chases after Flanders to do something he should have taken care of a long time ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":323,"unverifiedSceneNumbering":false,"id":3612},{"seriesId":49,"episodeFileId":2556,"seasonNumber":15,"episodeNumber":11,"title":"Margical History Tour","airDate":"2004-02-08","airDateUtc":"2004-02-09T01:00:00Z","overview":"Marge, the kids and Milhouse go to the library where they find there are no longer any books on the shelves. With no books for reference, the kid's reports are in danger of not being able to write their reports. Fortunately, Marge knows some history and relates to the children the following tales:\r\n\r\nHenry VIII (Homer) tries to find a wife that will bear him a son.\r\nLewis and Clark (Lenny and Carl) get assistance from Sacagawea (Lisa) in their quest to explore the western territories.\r\nMozart (Bart) the musical child prodigy wows them in 18th century Austria, while his sister (Lisa) fights for her own musical identity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":324,"unverifiedSceneNumbering":false,"id":3613},{"seriesId":49,"episodeFileId":2586,"seasonNumber":15,"episodeNumber":12,"title":"Milhouse Doesn't Live Here Anymore","airDate":"2004-02-15","airDateUtc":"2004-02-16T01:00:00Z","overview":"On a school field trip to the Museum of Television and TV Milhouse shows that he has developed a new attitude where he just doesn't care. Meanwhile Mr. Burns has moved Homer, Lenny and Carl to an offsite location (Moe's) so that they don't ruin a visit by the plant's board of directors. Apu and Manjula stop by celebrating their anniversary, making Homer realize he hasn't gotten anything for his anniversary with Marge. He gets extremely drunk and finds himself \u2018dancing' on the street where people, thinking he is homeless, start giving him money. Milhouse reveals the secret to his new attitude is the fact that he and his mother are moving to Capitol City, where they are going to get a fresh start. Both Bart and Kirk Van Houten are going to have to learn to get along without Milhouse being around. Bart tries to adapt to a world without Milhouse, especially after a visit to Milhouse in Capitol City makes him realize that things will never be the same. In the meantime, Homer has begun begging as a second job when he realizes he can make good money that allows him to buy Marge an expensive anniversary gift. With Milhouse out of his life, Bart finds himself bonding with his sister and she is enjoying the new relationship with her brother; a relationship that gets tested when Kirk gets \"pity custody\" of Milhouse and Marge is enlightened by the homeless on Homer's second source of income.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":325,"unverifiedSceneNumbering":false,"id":3614},{"seriesId":49,"episodeFileId":2613,"seasonNumber":15,"episodeNumber":13,"title":"Smart and Smarter","airDate":"2004-02-22","airDateUtc":"2004-02-23T01:00:00Z","overview":"Apu and Manjula are signing up two of the octuplets for Miss Wickerbottom's Pre-Nursery School and after a verbal exchange with Dr. Hibbert, Homer decides they should do the same for Maggie. Because she can't talk, she doesn't pass the initial screening. Afterwards Lisa discovers that even though Maggie can't talk she does show signs of brilliance. Another screening at the pre-pre school shows of her talents and reveals that she has a higher IQ than Lisa. Maggie's new brilliance leaves Lisa searching for a new identity, since she no longer has her status as \"the smart one.\" Lisa tries stand-up comedy, becoming a goth \u2018Ravencrone Neversmiles,' cheerleader, rapper, soccer player, cowgirl; none of which workout for her. After she is discovered trying to sabotage her sister's education Lisa leaves home with 2\u00a2 to her name. She decides to stay at the Natural History Museum, where her family is sure to never find her; however Springfield's \"finest\" do discover her location and they bring the family to help them find her. An accident gets Marge, Bart and Homer trapped in an exhibit and they look to Maggie to get them out, but Maggie's secret to her brilliance is nowhere to be found.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":326,"unverifiedSceneNumbering":false,"id":3615},{"seriesId":49,"episodeFileId":2643,"seasonNumber":15,"episodeNumber":14,"title":"The Ziff Who Came to Dinner","airDate":"2004-03-14","airDateUtc":"2004-03-15T01:00:00Z","overview":"Homer tries to take the kids (Bart, Lisa Rod & Todd) to a movie; meanwhile Ned has taken the seniors for ice cream to celebrate Jasper's birthday. With all the kid friendly movies sold out, Homer (on Lenny's recommendation \u2013 he's in the movie) takes the kids to see \"The Re-Deadening\" a horror film that really scares the children. So much so that Bart and Lisa begin hearing noises from the attic. They try to investigate, but their fears scare them out of the attic. They get Homer to lead an investigation into the attic and they find that Artie Ziff has been living there. Ziff tells them why he is living in their attic, his Internet business failed and he's lost everything. He wants to stay there and promises to be on his best behavior until he gets back on his feet. Artie stays, but Marge sees a news report that the SEC is looking for Artie Ziff. Meanwhile, Artie is playing poker with Homer and his friends. Artie puts up 98% of his remaining stock to make a bet and Homer wins the pot, just as the SEC sweeps in to arrest Ziff. Homer (as majority stockholder) is taken into custody. Homer is put on trial and sentenced to ten years in prison. Marge tells Artie that the only reason no one likes him is because he only thinks of himself, which he soon begins to realize and after a night of passion with the only Bouvier sister (Selma) he can have he Ziff turns over his corporate books and Homer is exonerated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":327,"unverifiedSceneNumbering":false,"id":3616},{"seriesId":49,"episodeFileId":2670,"seasonNumber":15,"episodeNumber":15,"title":"Co-Dependent's Day","airDate":"2004-03-21","airDateUtc":"2004-03-22T01:00:00Z","overview":"Homer, Lisa and Bart get tickets for the latest chapter of \"Cosmic Wars.\" The movie wasn't what they hoped it would be. Marge suggests that the kids write a letter expressing their dissatisfaction to creator Randall Curtis. Two weeks later when they get a stock letter in reply and they ask if they can go to the \"Cosmic Wars Ranch\" and complain in person. The family (sans Maggie) goes to Northern California. While Marge and Homer go on a winery tour, Bart and Lisa go to the ranch to find the creator and make their feelings known. After Bart and Lisa have their meeting with Curtis they rejoin their parents, who they find are both drunk on free samples they had at the winery. Marge and Homer are really enjoying their wine together, but following one their nights of drinking Marge finds her with a hangover. They agree that she can stop drinking and they can still have fun together. They go to Oktoberfest and Marge almost gets away with not drinking, but drink she does and they both leave the drunk, with Homer driving. After he drives their car off the road, Homer decides to make it look like Marge (who is somewhat passed out) was behind the wheel. The police arrest Marge; Homer is nowhere to be found at the time and he later bails her out. Barney suggests a rehab clinic for Marge to start attending. Homer finds out that Marge is going to be gone for a month, he asks Flanders to watch the kids while he goes to break her out of rehab. He finds her and confesses his guilt, which makes her angry and she starts drinking again. After some heavy drinking, Marge realizes that it isn't drinking that she liked; it was being together with Homer. She gets Homer and together they leave, after Homer promises to cut out drinking all clear liquors.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":328,"unverifiedSceneNumbering":false,"id":3617},{"seriesId":49,"episodeFileId":2699,"seasonNumber":15,"episodeNumber":16,"title":"The Wandering Juvie","airDate":"2004-03-28","airDateUtc":"2004-03-29T01:00:00Z","overview":"The family is at a downtown department store, where among other things Lisa looks at the latest in fashion for young girls, Marge gets some rejuvenating cream, Homer uses the dressing room for something other than trying clothes on, and Seymour and Edna are selecting some wedding china. Bart uses the wedding gift registry to sign himself and his bride \"Lotta Cooties\" for wedding presents. He invites a number of people to attend his wedding and he plans to return all the unused gifts for store credit. He gets all the gifts delivered but he gets caught by Chief Wiggum. The judge sentences Bart to six months of juvenile detention. Bart tries to find his way at the center, and when Homer becomes a guard, it doesn't improve his situation at all. The boys and girls are brought together for dance lessons, but Bart's partner Gina decides that they have an opportunity for escape and since they've been handcuffed together, she brings him along. Out on the lam together they become attached, even after they've gone to a blacksmith to get their cuffs removed; because when Gina is own her own she knows she has nothing to return to, whereas Bart has a family. When the pair is found, Gina makes a confession that makes it so Bart is free to return to his family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":329,"unverifiedSceneNumbering":false,"id":3618},{"seriesId":49,"episodeFileId":2726,"seasonNumber":15,"episodeNumber":17,"title":"My Big Fat Geek Wedding","airDate":"2004-04-18","airDateUtc":"2004-04-19T00:00:00Z","overview":"Principal Seymour Skinner and Ms. Edna Krabappel are finally getting married. Edna has a great bachelorette party at the Simpson house, featuring Duffman and a top-less Chief Wiggum; meanwhile at Seymour's bachelor party at Moe's, he confesses to Homer the fact that he is getting cold feet. When the actual event is about to occur, Edna has second thoughts; feeling that Seymour has never been on board with this whole idea all along. Edna runs from the ceremony. Unknowingly both Homer and Marge are each with the pair in an attempt to get them back together. The attempt fails when the state of Homer and Marge's own marriage gets in the way. Edna returns a gift to the Comic Book Guy. She becomes charmed by his banter and agrees to accompany him to lunch. Homer tries having Seymour serenade Edna, but they discover she's seeing Comic Book Guy. The family goes to Bi-Mon-Sci-Fi-Con to try to keep Edna from making a big mistake. After seeing Futurama creator Matt Groening, they find Edna being proposed to by a Klingon clad Comic Book Guy. Seymour enters wearing a Catwoman outfit and begins battling Comic Book Guy. Edna stops the fight, and tells the pair that neither man is for her. Now Homer must make some amends to Marge to keep his marriage together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":330,"unverifiedSceneNumbering":false,"id":3619},{"seriesId":49,"episodeFileId":2754,"seasonNumber":15,"episodeNumber":18,"title":"Catch 'Em If You Can","airDate":"2004-04-25","airDateUtc":"2004-04-26T00:00:00Z","overview":"Bart lectures the other students on water balloons and after hitting Lisa with one he gets into a fight with her all the way home. Marge tells the pair that they are going to Dayton, Ohio to celebrate Uncle Tyrone's birthday. Bart and Lisa aren't thrilled with the idea and get to stay home. As a family activity they rent a video, \"Love Story\" and Bart and Lisa are bored by it such that they ruin any moment the film might have created for Homer and Marge. Homer and Marge look forward to their trip without the kids and on a whim they decide to forgo seeing Uncle Tyrone and get on a plane to Miami. Lisa and Bart are aware that the hotel in Dayton where Marge and Homer were supposed to be staying was wiped out by a tornado. Bart discovers there parents are in Miami. They get Grandpa to take them there. While Bart and Lisa find their parents, Grandpa goes looking for companionship. Marge and Homer see the kids waiting for them so they take off again, only Bart and Lisa are on their trail. Homer and Marge are in Atlantic City when they spot the kids so they go on the run from them in an instrumental musical montage. Meanwhile Abe has found companionship in Miami with a man named Raoul who appreciates his rambling stories. Homer and Marge finally find themselves in Niagara Falls, but the kids are their as well. Feeling a little guilty Bart and Lisa decide to give their parents their space and go to the amusement park only to find their parents are already there. Homer and Marge run from the pair only to find refuge in a giant inflatable castle, which their lovemaking antics cause to fall into the Niagara River. The couple floats toward the falls and certain death only to be saved by their large floatation device. Later back in Springfield, Ned and Rod Flanders receive their credit card bills.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":331,"unverifiedSceneNumbering":false,"id":3620},{"seriesId":49,"episodeFileId":2782,"seasonNumber":15,"episodeNumber":19,"title":"Simple Simpson","airDate":"2004-05-02","airDateUtc":"2004-05-03T00:00:00Z","overview":"Homer is intrigued by a commercial that talks about a contest that will allow the winner, the finder of a golden ticket, a trip to \"Farmer Billy's Bacon Factory.\" Homer buys a lot of pork products but is only able to find a silver ticket, which allows him to judge the pig competition at the county fair. When Homer sees an injustice being done to Lisa's entry in the place setting competition, he decides to take action. Remembering Chief Wiggum's warning about felony assault, he disguises himself as \"Pie Man\" and delivers a pie in the face as revenge. He disappears as quickly as he came, making Springfield wonder if they will ever see him again. When Bart gets ripped off by Comic Book Guy, \"Pie Man\" delivers some \"key lime justice.\" The police decide that \"Pie Man\" needs to be stopped and they shoot him when he makes his next appearance. He takes time out from his fleeing to save Marge and then kisses her, even though she tells him she's a married woman. Later at home, the wounded Homer makes a promise to Lisa (who's figured out his disguise) that he will stop his pie avenging. When Mr. Burns goes too far, \"Pie Man\" makes another appearance, but his escape from the plant is thwarted by his own laziness. Mr. Burns turns him into his personal hit man. Homer finds himself in a dilemma when Mr. Burns wants him to deliver a pie in the face of Lisa's Buddhist hero the Dalai Lama. When he comes clean in front of a crowd, no one believes that he was capable of being the \"Pie Man,\" only his family believes in him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":332,"unverifiedSceneNumbering":false,"id":3621},{"seriesId":49,"episodeFileId":2810,"seasonNumber":15,"episodeNumber":20,"title":"The Way We Weren't","airDate":"2004-05-09","airDateUtc":"2004-05-10T00:00:00Z","overview":"Homer and Bart get into a fight over using a beer bottle to kiss girls which land them in Simpson family court, where Lisa presides as judge. While giving testimony Marge tells the kids that Homer's first kiss was with her in high school. He confesses that it wasn't his first kiss. Back when he was ten he went to camp See-A-Tree (for underprivileged boys). Here he meets Lenny, Carl and Moe. The boys go to the girl's camp where they work in the kitchen. After Homer returns the retainer to the girl who lost it he gets the opportunity to meet her later that night. He tells the kids she was the prettiest girl he'd ever seen, until he later met their mother. Marge reveals that the girl was her. Marge tells the story from her perspective. At the girls camp, Land-A-Man, we find Marge, Patty, Selma, Helen (Lovejoy), Cookie Kwan. When she met Homer that it was she who first kisses him and then they have the perfect kiss. They agree to meet again the following night, but Homer doesn't show. Marge says it was years before she could trust another boy. Homer explains why he didn't return for a second date. After he left her he fell off a cliff into the lake and drifted to the shores of \"Camp Flab-Away,\" which featured Quimby, Wiggum and Comic Book Guy as some of the overweight campers. Homer manages to escape and gets to Marge's camp, but arrives after she's left. Now that Marge knows the truth Homer hopes for her forgiveness. She doesn't believe he really cared all those years ago, until he pulls the other piece of her broken heart out of his memory box.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":333,"unverifiedSceneNumbering":false,"id":3622},{"seriesId":49,"episodeFileId":2831,"seasonNumber":15,"episodeNumber":21,"title":"Bart-Mangled Banner","airDate":"2004-05-16","airDateUtc":"2004-05-17T00:00:00Z","overview":"It's shot day and Bart tries to evade the needle. Dr. Hibbert manages to get the job done but Bart suffers a side effect of temporary hearing loss from the shot and he takes advantage of it for all it's worth. At Springfield Elementary the annual Donkey basketball tournament is being held. During the playing of The Star Spangled Banner Bart has his shorts eaten by a donkey, leaving his bare ass exposed towards the flag. Martin snaps a picture and everyone present is outraged at this behavior. As a result the Simpson family becomes very unpopular. They go on a cable news channel and only manage to dig themselves into a deeper hole when the host manages to twist Marge's words into saying that Springfield hates America. The negative publicity causes Mayor Quimby to change the name of the town to Liberty-Ville and they make everything patriotic. The family is arrested under violation of the \"government knows best act\" and they are brought to a reeducation center. The last registered Democrat tells them how they can escape. During their musical number they escape through a tunnel but find they were on Alcatraz. They are rescued by a passing French freighter and taken to France. After being there a while they decide they miss their life in America and go back as illegal immigrants.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":334,"unverifiedSceneNumbering":false,"id":3623},{"seriesId":49,"episodeFileId":2865,"seasonNumber":15,"episodeNumber":22,"title":"Fraudcast News","airDate":"2004-05-23","airDateUtc":"2004-05-24T00:00:00Z","overview":"Lisa is going to read a poem at the town's celebration of their natural landmark \"Geezer Rock,\" but Homer who believes he is doing the right thing removes a bush from the landmark that causes it to fall apart. Mr. Burns is caught in the landslide and Smithers fears he is lost. Lisa is disappointed that no one got to hear her poem and Marge suggests that she get it published. To Smithers' delight, Mr. Burns has survived the landslide by slithering his way out however; he is annoyed to find out that no one missed him when they thought he was lost. He decides to buy every media outlet in town. Lisa distributes the first issue of her own newspaper the \"The Red Dress Press,\" which is a success. Now she has to get out a second issue and she enlists the help of her fellow children. Meanwhile, Mr. Burns has taken control of all the media outlets in Springfield, except one, her newspaper. Mr. Burns tries to seduce Lisa into selling out but she won't give up. Now Mr. Burns starts to play hardball, he cuts the power to the Simpson home. Principal Skinner offers Lisa the use of an old mimeograph machine, which gets her latest issue out. Mr. Burns talks with Homer to get the dirt on Lisa, that Homer readily supplies and Burns uses this information against her. Lisa is ready to give up and Homer realizing what he's done responds by printing a newspaper of his own. Homer's paper inspires others to think to begin to think for themselves and soon everyone is printing their own newspaper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":335,"unverifiedSceneNumbering":false,"id":3624},{"seriesId":49,"episodeFileId":2271,"seasonNumber":16,"episodeNumber":1,"title":"Treehouse of Horror XV","airDate":"2004-11-07","airDateUtc":"2004-11-08T01:00:00Z","overview":"We open with an episode of \"Keepin' It Kodos\" with Kang. In this episode, Kang and Kodos have the Simpson family for dinner with their boss. The meal is a success as Kang gets a hyper-galactic promotion. \r\n\r\na). \"The Ned Zone\"\r\n\r\nHomer knocks Ned unconscious with his bowling ball, when he recovers he discovers that he was really dying of a brain tumour & the bowling ball lodged it out (which give him premonitions of doom). He tells Homer about his new power and Homer wants to know his future. Ned sees Homer being shot in the back, and the shooter is he. Ned keeps this information to himself and manages to not shoot Homer. He then finds out that Homer is going to cause the destruction of all of Springfield by destroying the plant's nuclear reactor. Ned goes to the power plant to try to prevent the catastrophe. Unfortunately, he had to kill Homer to save everyone (but even through that, Homer accidently fell onto the nuclear reactor button still consious from the bullet & killed everyone in the end). At least, everyone is in a better place. \r\n\r\nb). \"Four Beheadings and a Funeral\"\r\n\r\nThe \"Mutton Chop Murderer\" has taken another victim, and Eliza Simpson and her sidekick Dr. Bartley join with Inspector Wiggum of Scotland Yard to find the killer. The dagger used is the latest crime is found to be one of a set, and they find that the set was owned by C. Ebenezer Burns. They go to the opium den and find that Burns had sold the daggers to a fat man (Homer) to get money for opium. The fat man is caught and sentenced to death, but when Eliza and Dr. Bartley find yet another body, Eliza knows the fat man is innocent and finds an important clue to the real killer's identity on the latest murder weapon.\r\n\r\nc). \"In the Belly of the Boss\"\r\n\r\nAt the \"New Invention Expo\" Maggie gets inside of a new vitamin pill that is going to be reduced by Prof. Frink's new shrink ray. The pill is swallowed by Mr. Burns. The other Simpson family members become bionauts inside a submari","hasFile":true,"monitored":true,"absoluteEpisodeNumber":336,"unverifiedSceneNumbering":false,"id":3625},{"seriesId":49,"episodeFileId":2305,"seasonNumber":16,"episodeNumber":2,"title":"All's Fair in Oven War","airDate":"2004-11-14","airDateUtc":"2004-11-15T01:00:00Z","overview":"The house next door is for sale and Marge and Homer go inside to check it out; Marge falls in love with the kitchen. Back at home Marge asks Homer for a new kitchen. Rather than hire someone, Homer decides to do the renovation himself. While demolishing the kitchen, Homer unleashes his old collection of Playdude magazines. He tells Marge he keeps them for the articles; she obliges him by cutting up the magazines, keeping only the articles. Now that they are useless, Homer throws them away, only to have them found by Bart and Milhouse. Using these 1970's era magazines as a model, Bart decides to renovate the Treehouse. After Homer has made a mess of the kitchen remodeling, Marge is finally able to hire a contractor, who completes the job \"on-time\" two years later for $100,000. Marge's first new dish out of her kitchen gets rave reviews and she decides to enter the Ovenfresh Bakeoff with her Dessert Dogs. At the bakeoff Marge encounters stiff and ruthless competition, so ruthless that Marge resorts to cheating to get even, much to Lisa's dismay. Chief Wiggum and other concerned parents talk with Homer about Bart's spreading the Playdude philosophy to the other children. Homer has a talk with Bart about the facts of life, which a horrified Bart quickly spreads to the other children. Meantime, in the finals for the bakeoff against Brandine, Marge admits to her foul play and Lisa's faith in her mother is restored.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":337,"unverifiedSceneNumbering":false,"id":3626},{"seriesId":49,"episodeFileId":2329,"seasonNumber":16,"episodeNumber":3,"title":"Sleeping with the Enemy","airDate":"2004-11-21","airDateUtc":"2004-11-22T01:00:00Z","overview":"Lisa has a big butt and her friends at school, Sherri, Terri and Janie let her know about it. Homer explains to her about the Simpson butt, it is something she'll have to learn to live with. Bart comes home with 100 on his test, and now he wants to collect on the party that was promised. Lisa is trying to deal with her weight issue, meanwhile Bart gets his party; with his relatives, Ralph, Martin and Milhouse via speakerphone. It's the worst party ever as far as Bart's concerned. It's made worse when Lisa returns home only to be confronted by her mother wanting her to eat a big slice piece of cake, she runs out of the room crying. Marge is bummed that the kids don't appreciate her anymore. She finds Nelson in the park and spends some quality time with him and when her kids continue to shun her, she adopts Nelson as a surrogate child. Lisa tries diet and exercise to reduce her big bottom. Marge brings Nelson home to do some chores around their home, but Nelson's real mother returns that money that Marge paid her son and then she leaves for Hollywood, leaving her son in Springfield and homeless. Nelson goes to the only place where he can find refuge, the Simpson home. Much to Bart's dismay Marge lets Nelson stay in his room. Late one night Bart finds Nelson singing for the return of his father and Lisa overindulging in a cake (she'd previously been starving herself). Lisa gets help from Nelson to get revenge on Sherri and Terri. When the pair returns to the Simpson home there is a surprise waiting for Nelson; Bart has found his father. Nelson is reunited with his father (and his mother who's returned from Hollywood with an acting job). Lisa still hasn't found a conclusive solution to her weight problem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":338,"unverifiedSceneNumbering":false,"id":3627},{"seriesId":49,"episodeFileId":2361,"seasonNumber":16,"episodeNumber":4,"title":"She Used to Be My Girl","airDate":"2004-12-05","airDateUtc":"2004-12-06T01:00:00Z","overview":"Famous journalist Chloe Talbot comes to Springfield to cover a scandal involving Mayor Quimby. Chloe Talbot comes from Springfield and she and Marge were journalism students together in high school; Chloe went on to fame and fortune and we all know what happened to Marge. Lisa becomes enamored with Chloe and Marge becomes jealous of loss of her daughter's attention. After a half a glass of wine, Marge goes cuckoo bananas and gets into a fight with Chloe. When Marge won't let her go with Chloe to news conference, Lisa sneaks out and into the trunk of Chloe's car. Everything might have gone according to plan if Chloe hadn't been diverted to cover the eruption of a volcano. Lisa and Chloe get into trouble and it takes a mother's love to affect Lisa's rescue, whereas Chloe's rescue comes from an old high school boyfriend, Barney Gumble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":339,"unverifiedSceneNumbering":false,"id":3628},{"seriesId":49,"episodeFileId":2389,"seasonNumber":16,"episodeNumber":5,"title":"Fat Man and Little Boy","airDate":"2004-12-12","airDateUtc":"2004-12-13T01:00:00Z","overview":"Bart loses his last baby tooth in a spitball fight. Called the money tooth, Bart is suffering from what he calls a midlife crisis when the tooth fairy has given a gift in his name to the United Way, what his mother calls a \"grown-up gift.\" Bart gives up on his childhood and Lisa suggests that he expresses his feelings in some way and Bart chooses to put them in the form of slogans on a T-shirt. When Goose Gladwell, a gag-gift entrepreneur, sees the slogans he forms a partnership with Bart that begins to make Bart a lot of money. Homer is suspended from work without pay and then decides to quit outright and live off of his son's earnings. Of course he loses his place in the family as breadwinner and starts to lose his self respect. A documentary by Declan Desmond on lions inspires Homer to start focusing on his relationship with Lisa. He decides to help her with her science project about nuclear power, which includes a scale model of the first nuclear power plant. Homer improves on her model by making it functional, something easily done after finding the instructions on the Internet. He sneaks into the power plant and get some plutonium. Meanwhile, Goose Gladwell has sold the rights to Bart's T-Shirts to Disney and Bart won't get a dime from it. To get back into his role as the alpha male of the family, Homer makes use of the working nuclear reactor to threaten Gladwell into giving his son what he deserves and few novelty items for himself. As to whether the reactor actually works or not, Homer decides to leave that up to the seagulls at the city dump to figure it out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":340,"unverifiedSceneNumbering":false,"id":3629},{"seriesId":49,"episodeFileId":2419,"seasonNumber":16,"episodeNumber":6,"title":"Midnight Rx","airDate":"2005-01-16","airDateUtc":"2005-01-17T01:00:00Z","overview":"The power plant's office party is being held at the Springfield Air and Space museum, where amongst other things we learn that Agnes Skinner was a wing-walker back in the 1920s. Mr. Burns is acting unusually nice, and then he makes an announcement that the employee prescription drug program has been canceled. Other companies follow suit, the citizens of Springfield \r\nAt Springfield Retirement Castle, due to the high cost of medication, they cut their residents off cold turkey. Grandpa goes to his son's home with a plan; he has a friend that will help them out. He and Homer go to Canada where they meet the friend that gives them cards that will let them get all the drugs they can carry. They return home and their drugs are in high demand. Ned and Apu accompany them on their next trip to Canada, but an unfortunate incident with Apu and a hot cup of coffee gets their cover blown as they try to cross the border. They are banished from ever returning to Canada. Because he can no longer afford the medication he requires Smithers' thyroid begins to swell causing a concern for Mr. Burns, he doesn't want to have to train anyone else on his filing system. He provides the means, his old wooden plane The Plywood Pelican, for Homer to invoke his plan to fly into Canada. They load up, but on the return flight the plane encounters trouble. Burns bails out, leaving Homer and Grandpa to crash land the plane in Springfield's town square, where their smuggled drugs are hit. Meanwhile, Mr. Burns has cured Smithers and decides to reinstitute the drug program for all his full time employees. Homer comes home from work to report that he is now a freelance consultant, complete with a lump on his throat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":341,"unverifiedSceneNumbering":false,"id":3630},{"seriesId":49,"episodeFileId":2447,"seasonNumber":16,"episodeNumber":7,"title":"Mommie Beerest","airDate":"2005-01-30","airDateUtc":"2005-01-31T01:00:00Z","overview":"The family is celebrating by having brunch at a fancy restaurant; Homer has finally paid off the mortgage. Lisa and Bart get into a food fight, embarrassing Homer. Homer goes to Moe's, where a visit from the health inspector, results in his death from eating one of Moe's pickled eggs. The new health inspector comes down hard and Moe's is closed until the violations are cleared up. The regulars hold an Irish wake for the demise of Moe's. Homer decides to help Moe reopen his bar; and he gets a new mortgage for their home. When Marge finds out, as a new co-owner she goes with Homer to the bar and tells Moe that there are going to be changes until he pays them back. On Homer's next visit, he finds Marge behind the bar, protecting their investment. She sends him home to take care of the kids, while she sells Moe on the idea of remodeling the place into an English pub. The new place opens and is a success; the kids tell Homer that they've noticed that Marge is spending more time at Moe's than he ever did. Homer becomes worried; but Marge tells him there is nothing to worry about. They go to a movie together, but they are joined by Moe. Homer is more worried than ever; Lenny and Carl tell Homer that Marge and Moe are having an emotional affair. When Marge and Moe are leaving to go to a convention together in Aruba, Homer makes a mad dash to the airport and gets to the airplane as it is taxing down the runaway. He confronts Moe, but Moe makes him realize that he really doesn't know that much about his wife. Homer concedes defeat, but Marge tells Moe that she doesn't love him. She tells Homer that she is totally committed to him. In Aruba, Marge makes Moe realize that he might be able to make a woman happy some day with a few changes. Marge realizes that no one is home watching the kids, but the kids aren't at home as Bart has them entered in a European balloon race.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":342,"unverifiedSceneNumbering":false,"id":3631},{"seriesId":49,"episodeFileId":2475,"seasonNumber":16,"episodeNumber":8,"title":"Homer and Ned's Hail Mary Pass","airDate":"2005-02-06","airDateUtc":"2005-02-07T01:00:00Z","overview":"The family goes to run down Springfield Park, where a carnival is being held to save it. Homer performs a wild crowd-pleasing dance at a local carnival, after beating Bart's performance in a game. Ned Flanders has captured the performance on videotape and Comic Book Guy (Jeff Albertson) puts it up on the Internet. The video gets worldwide attention, much to Homer's embarrassment but his tune changes when a football player wants to buy the rights to use his dance as his own end zone celebration. Homer turns the opportunity into a new lucrative occupation, which prospers as other athletes come to learn from him. Meanwhile Ned looks to create his own wholesome entertainment by creating his own versions of bible stories, which get the backing of Mr. Burns. Marge doesn't like his approach, which eliminates the good aspects of the stories, and only concentrates on the violence. She threatens a boycott, which gets Burns to remove his financial backing, leaving Ned with no creative outlet. The commissioner of football (and all the owners) want to talk to Homer, his teaching of crazy antics to their players have increased their ratings. They want him to choreograph the Superbowl half-time show. Homer struggles for a show idea and on the night before the big show he still doesn't have one. Homer looks for inspiration at the church, but instead finds Flanders, who is looking for an outlet for his ideas. Together they bring the story of Noah to the half-time show, but everyone boos as no one wanted to see such a \"blatant display of religion and decency.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":343,"unverifiedSceneNumbering":false,"id":3632},{"seriesId":49,"episodeFileId":2506,"seasonNumber":16,"episodeNumber":9,"title":"Pranksta Rap","airDate":"2005-02-13","airDateUtc":"2005-02-14T01:00:00Z","overview":"Homer's lost the TV remote, which was swallowed by Santa's Little Helper and in the chaos that follows Bart sees a commercial for a rap concert and wants to go. Bart gets permission from Homer, but when Marge finds out and disapproves, Homer quickly changes his position. Bart sneaks out and goes to the show anyway. He is in the front row of the show and when the microphone comes his way he winds up rapping on stage and holding his own. He gets back home only to find out he is going to be in big trouble; to prevent that he decides to fake his own kidnapping. The police are on the case; meanwhile Bart finds Milhouse and hides out in his dad's bachelor apartment. Chief Wiggum decides he needs to do something to improve his reputation as a police officer and puts the clues together to find Bart at Kirk Van Houten's apartment. Wiggum is hailed as a hero and Milhouse's father is in jail. Wiggum has been promoted to Police Commissioner but Bart, feeling guilty about getting his friend's father put in jail, comes clean about faking the kidnapping. Wiggum shows Bart that everyone is better off believing the lie, Milhouse's dad is being worshipped by prisoner loving woman and he gets three square meals a day. Back at the house, Lisa has found a clue that proves Bart wasn't kidnapped. She tries to tell Homer, but he has sold the story to Hollywood. Lisa goes to Principal Skinner for help and the pair begins an investigation that will unravel the lie that is benefiting everyone. Bart takes the other conspirators to rapper Alcatraz's crib to prevent Lisa and Skinner from finding the truth. They arrive too late, only to find out that they know the truth. Bart and Homer try to convince Lisa to be cool about living the lie and a house party ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":344,"unverifiedSceneNumbering":false,"id":3633},{"seriesId":49,"episodeFileId":2532,"seasonNumber":16,"episodeNumber":10,"title":"There's Something About Marrying","airDate":"2005-02-20","airDateUtc":"2005-02-21T01:00:00Z","overview":"Bart and Milhouse look for someone new to play tricks on and they find their new victim in Howell Huser, a yokel who just fell of the turnip truck. Their pranks get Howell Huser to stop smiling and he leaves town, only to turn up on the Soft News Network reporting that Springfield is the only town he's been to that he doesn't like. The negative publicity affects tourism. Mayor Quimby calls for the town to give him ideas to promote tourism and Lisa suggests they start allowing same sex marriages. The idea is approved and Springfield becomes the place to be for same sex couples to get married. When Reverend Lovejoy won't perform the ceremonies, Homer can't pass up the opportunity to make money and he becomes a certified minister via the Internet. He marries all the gay couples in town and then starts to marry anything to anything else. Patty requires Homer's service; she wants to marry her partner, Veronica, who is a pro-golfer. Marge has trouble dealing with the fact that her sister is gay. Marge discovers Veronica's secret, that she is really a man. Marge stops the wedding and reveals the secret, and when Leslie Robin Swisher (Veronica's real name) proposes that they still get married, she sticks to her guns, she still likes only girls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":345,"unverifiedSceneNumbering":false,"id":3634},{"seriesId":49,"episodeFileId":2563,"seasonNumber":16,"episodeNumber":11,"title":"On a Clear Day I Can't See My Sister","airDate":"2005-03-06","airDateUtc":"2005-03-07T01:00:00Z","overview":"The students of Springfield Elementary are on a field trip to Springfield's Glacier, but when they get there, the glacier is a shadow of its former self, a huge pond with a hardly noticeable block of ice. Lisa (of course) blames global warming. While Lisa is calling for action to save the glacier, her brother is taking every opportunity to torment her.\r\n\r\nMeanwhile, back in town Homer and Marge have gone to Sprawl Mart to do some shopping. When Grampa (Sprawl Mart's greeter) isn't capable of doing his job, Homer takes over and does such a great job it gets him a full time position with no chance for advancement. \r\n\r\nLisa has vengeance on Bart by getting a restraining order against him, he must stay at least 20 feet away from her at all times, or go to jail. Chief Wiggum shows the family a videotape hosted by Gary Busey on how to live with a restraining order. For his part Homer constructs a 20 foot pole that Lisa can use to help keep them apart. \r\n\r\nIt impacts Bart's life at home and school. At family court, after Bart points out some obvious flaws in her character, Judge Harm increases the distance to 200 feet. Having to live at the edge of their property, Bart decides to embrace living the natural way.\r\n\r\nHomer finds out from his fellow employees how to survive working at Sprawl Mart. And mistakenly feeling that Bart might have changed, Lisa decides to forgive him and burn up the restraining order.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":346,"unverifiedSceneNumbering":false,"id":3635},{"seriesId":49,"episodeFileId":2595,"seasonNumber":16,"episodeNumber":12,"title":"Goo Goo Gai Pan","airDate":"2005-03-13","airDateUtc":"2005-03-14T01:00:00Z","overview":"Mr. Burns is taking his driving test and Selma is having hot flashes. Dr. Hibbert diagnoses that she is going through menopause. After seeing a video on the topic hosted by Robert Wagner, Selma is disappointed to learn that she'll never be able to have children. Patty suggests that she try adoption and Lisa suggests China. Only to qualify, Selma needs a husband who must go with her to China to collect their child. She fills out the form with the name: Homer Simpson. Selma flies the Simpson family to China. At Marge's request, Homer goes along with the charade. Under the supervision of Madam Wu, a Chinese functionary, the family, with Marge as the children's nanny takes a tour of the sites. For his occupation, Homer tells Madam Wu that he is a Chinese acrobat, and of course later his services in that capacity are called into action. Selma gets her child, a daughter named Ling Bouvier, only to have her taken away after Madam Wu sees Marge snuggling with Homer. At the airport, Lisa comes up with a plan to get Ling back. Homer poses as a Buddha statue to get inside the orphanage. Only Madam Wu stops them with a tank in Tien An Men Square. Selma appeals to Madam Wu, bureaucrat to bureaucrat and it works. Selma, her new daughter and the family are allowed to leave China via a junk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":347,"unverifiedSceneNumbering":false,"id":3636},{"seriesId":49,"episodeFileId":2621,"seasonNumber":16,"episodeNumber":13,"title":"Mobile Homer","airDate":"2005-03-20","airDateUtc":"2005-03-21T01:00:00Z","overview":"Marge takes the kids on a Sunday drive while Homer is at home attempting to clean out the garage. After Homer suffers a garage-door-to-the-throat incident, Marge wants them to buy life insurance. Homer however is deemed uninsurable. Fearing that with no insurance for Homer they will go broke, Marge starts cost-cutting measures. Homer is against these new measures and takes the nest egg that Marge has made and spends it on the down payment for a new motor home. Marge tells him to enjoy being the king of his new castle, because she is no longer speaking to him. Homer is now living in the RV in the backyard and he and Marge try to entice Bart and Lisa to come and stay with them. Homer then opens up the backyard as a RV park, until Marge puts an end to it and they get into a big fight, which makes Bart and Lisa take action. Bart decides they need to take the RV back to the dealer. Homer and Marge try to stop the pair who has managed to get the RV onto the freeway. The RV crashes onto a Turkish container ship, which is leaving port. With the right enticement, mushroom soup, Marge gets the ship to turn around, saving the children and what is left of the RV. The RVs fate is determined when Homer try to put it on the dock.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":348,"unverifiedSceneNumbering":false,"id":3637},{"seriesId":49,"episodeFileId":2648,"seasonNumber":16,"episodeNumber":14,"title":"The Seven-Beer Snitch","airDate":"2005-04-03","airDateUtc":"2005-04-04T00:00:00Z","overview":"The family visits Shelbyville and are appalled at the perception those citizens have of the inhabitants of Springfield. Back in town, Marge brings it to the attention of the Springfield Cultural Advisory Board and then asks architect Frank Gehry to design and build a new Springfield cultural center. He sees inspiration in her request and submits a design that is approved by the town. $30 million dollars later, the project is built and it opens and closes quickly as nobody in town really cares for classical music. Mr. Burns agree to take over the space, with his plan to turn it into a state prison. Homer applies for a job as a guard, but fails the drug test after Otto switches their samples. Meanwhile, Bart and Lisa follow Snowball II, when they believe the reason she is so fat is that she is getting food from elsewhere; after following her they discover she has another family. Burns needs convicts for his prison and Chief Wiggum blows the dust of some old forgotten laws. Homer is arrested for illegally transporting litter (kicking a can 5 times in a row). In prison Homer inadvertently squeals on Snake's escape attempt and is drafted to becoming a snitch and he begins enjoy the perks that go along with it. Snowball II (\"Smoky\") enjoys life with her new family and Bart gets into the home to find out; there is plenty of good eating to be found there. Fat Tony and his boys try to find out who the snitch is. They feed Homer information regarding a breakout. While all the guards are outside waiting for the breakout, the prisoners are taking care of their snitch and a riot ensues. The riot is stopped and Homer snitches on the conditions of the prison.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":349,"unverifiedSceneNumbering":false,"id":3638},{"seriesId":49,"episodeFileId":2677,"seasonNumber":16,"episodeNumber":15,"title":"Future-Drama","airDate":"2005-04-17","airDateUtc":"2005-04-18T00:00:00Z","overview":"Bart and Lisa find themselves in Prof. Frink's basement and he uses the science of astrology on his new computer to show them their future, eight years from next Tuesday. In this future, Maggie is away on a trip to Alaska; Homer and Marge have separated and Bart and Lisa are getting ready for prom. Lisa's date is Milhouse, who and Bart is dating a skateboard chick named Jenda. Lisa is graduating 2 years early and is going to Yale (now owned by McDonalds) on a scholarship funded by Mr. Burns as punishment for stealing Christmas. Bart is also graduating and is ready to move to the next level of his relationship with Jenda, he wants to marry her but his vision of their future together makes her break it off. Working his part-time job at the Kwik-E-Mart, Bart winds up saving Mr. Burns life while delivering groceries. As a reward Mr. Burns gives him the scholarship that Lisa was to receive. Bart is back with Jenda, now that he has a future, but Bart finds his way back in Prof. Frink's old basement and sees Lisa's bleak future with Milhouse. He does the right thing and keeps her from destroying her life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":350,"unverifiedSceneNumbering":false,"id":3639},{"seriesId":49,"episodeFileId":2704,"seasonNumber":16,"episodeNumber":16,"title":"Don't Fear the Roofer","airDate":"2005-05-01","airDateUtc":"2005-05-02T00:00:00Z","overview":"Springfield is experiencing an unusually strong thunderstorm, and the rain is causing roofs to leak all over town. Homer devises a unique solution for getting the rain water out of their house that ultimately fails and sends him dejected off to Moe's, where he ruins Lenny's surprise party. Homer goes off wandering and finds himself at a bar called Knockers, where he makes a new friend named Ray, who is a licensed and bonded roofer. Marge takes the kids on some errands while Homer and Ray almost begin the roof repairs; they screw around and never get around to doing any work until he gets called away. Marge wants Homer to fix the roof by himself. Homer runs into Ray at the Builder's Barn and Ray promises to stop by later and help him with the roof. Homer waits for him, but Marge is skeptical that Ray even exists when Ray never shows up. Marge has Homer placed in the mental ward of the hospital and she and no one else can confirm that Ray really exists. Dr. Hibbert recommends and gives Homer electro-shock therapy. Six weeks later Homer's treatments are over and to everyone's surprise Ray turns up at the hospital to celebrate Homer's release. Plausible explanations, even one by Stephen Hawking, are given to explain why no one had ever seen Ray before.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":351,"unverifiedSceneNumbering":false,"id":3640},{"seriesId":49,"episodeFileId":2730,"seasonNumber":16,"episodeNumber":17,"title":"The Heartbroke Kid","airDate":"2005-05-01","airDateUtc":"2005-05-02T00:25:00Z","overview":"At Springfield Elementary the new vending machine contract is awarded to a company that promises to give half the profits to the school and it is of little consequence whether the snacks are healthy for the children or not. Bart begins taking all of his meals from the vending machine and three weeks later has gained a lot of weight, so much so that he has heart attack symptoms as a result. The X-Ray shows that malted milk balls have blocked his arteries. Despite it all Bart continues to eat junk food. Marge has no choice and holds an intervention, which Bart escapes from, right into the hands of representatives of a maximum security fat camp who take him away. Bart finds himself Serenity Ranch with Kent Brockman, Apu and Rainer Wolfcastle. The first bill from the ranch arrives and Marge decides they need to find a way to pay for it. They open their house up as youth hostel to German tourists. Having a hard time getting through to Bart, Tab Spangler takes him home and shows the horrors his family is enduring on his behalf. Bart finally gets the message and rages against the vending machines and is cured of his junk food addiction, there are three non-refundable weeks of fat camp available for a family member to use. Homer, the obvious choice, is elected to go.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":352,"unverifiedSceneNumbering":false,"id":3641},{"seriesId":49,"episodeFileId":2760,"seasonNumber":16,"episodeNumber":18,"title":"A Star Is Torn","airDate":"2005-05-08","airDateUtc":"2005-05-09T00:00:00Z","overview":"The family tries to eat a total vegetarian meal and everyone except Lisa gets sick from eating the healthy meal. As they moan from the sickness Lisa sings them to sleep. The next morning they've recovered enough to go back to their old dietary habits. On television a commercial airs for a Krusty-sponsored \"Li'l Starmaker\" competition and Lisa's singing voice seems a natural for the competition. Of course, Lisa and every other child in Springfield signs up. When Clarissa, one of the competitors sings the same song that Lisa was going to sing, and does it much better than Lisa believes she will be able to, Homer reassures her that he will write her a can't lose song. Lisa sings the song and makes it into the final competition. Homer takes charge of her career and writes her more songs that take her into the finals of the competition; it's Lisa versus Cameron, a boy all the girls go crazy over. When Homer oversteps his bounds with his obnoxiousness, Lisa fires him. Homer retaliates by getting himself a new client, Cameron. The final competition begins and Lisa's sings a song she wrote on her own, a song about her relationship with her father. Homer tells her that he was always in her corner and that Cameron is learning the greatest lesson he can ever learn in the music business, don't trust people in the music business.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":353,"unverifiedSceneNumbering":false,"id":3642},{"seriesId":49,"episodeFileId":2788,"seasonNumber":16,"episodeNumber":19,"title":"Thank God, It's Doomsday","airDate":"2005-05-08","airDateUtc":"2005-05-09T00:25:00Z","overview":"Bart and Lisa want to start getting their hair cut at the mall. They go to the mall with Homer and while getting their haircut they get into a fight, which results in them each getting really bad haircuts. Out in the mall they are spotted by fellow school students who have cameras in hand. They find Homer and go on the run; they sneak into the back entrance of a movie theater and see the film \"Left Below,\" which is a movie about the apocalypse. The images in the movie are disturbing to Homer, who fears the worst. Marge assures him that there needs to be some ominous signs before the rapture will come. When Homer is out driving, he sees what he believes to be the signs. Homer gathers some books on the subject and he calculates that the \"rapture is nigh\" at 3:15 PM on May 18th, seven days from now. He starts to spread the word and tells everyone on television a passage from Revelations 6:13 that says before the rapture \"the stars will fall to Earth.\" At the Springfield Stadium, there is a celebrity filled blimp accident that causes the stars on board to fall to the Earth and Homer gains instant credibility. He gets a bus full of people to join him at Springfield Mesa. When the appointed time comes and goes, Homer loses credibility and everyone return back to their normal lives. Homer later realizes that he made a mistake in his calculation and the new time is only 30 minutes away. When no one in his family will join him Homer goes to the Mesa on his own. The rapture comes and Homer goes to heaven, but despite all that heaven has to offer, Homer needs his family. He gets an audience with God, but when God won't grant his request to have his family join him; Homer begins raising hell in heaven. To put a stop to it, God agrees to turn back time and put off the rapture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":354,"unverifiedSceneNumbering":false,"id":3643},{"seriesId":49,"episodeFileId":2816,"seasonNumber":16,"episodeNumber":20,"title":"Home Away from Homer","airDate":"2005-05-15","airDateUtc":"2005-05-16T00:00:00Z","overview":"Lisa wins 4 tickets to see a foreign film and Homer gets Flanders to baby-sit Maggie. Flanders doesn't take any money for his effort, but he does need to earn some extra money; Marge suggests that he rent out his spare room. Flanders rents the room to two college age women, who turn the room into the set for their live webcam at www.SexySlumberParty.com. Flanders is unaware of what is going on in is his home, and when Homer finds out he makes sure that every man in Springfield knows about it. When Marge finds out she makes Homer tell Ned and then he finds out that Homer has made him the laughingstock of Springfield. Flanders decides to move to Humbleton, PA., where his favorite figurines are made. Homer mourns the loss of his favorite neighbor and tries to make friends with the new neighbor that has moved in, Clay Roberts, but this new neighbor is obnoxious. Meanwhile in Humbleton, Ned seems in heaven, only for him to live and work there, he must remove his mustache. Ned refuses and is making waves in his new community. When Homer arrives on his doorstep, pleading for him to come back to Springfield, Flanders decides to return.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":355,"unverifiedSceneNumbering":false,"id":3644},{"seriesId":49,"episodeFileId":2844,"seasonNumber":16,"episodeNumber":21,"title":"The Father, the Son & the Holy Guest Star","airDate":"2005-05-15","airDateUtc":"2005-05-16T00:25:00Z","overview":"Bart is given the role of a cooper in the school's medieval festival, while Lisa is the queen. Bart is blamed and expelled when rats come out of large pie that is presented to the queen. Marge looks for a new school for Bart and decides to try out a Catholic school. In his first day at school Bart encounters a tough nun and Father Sean. Bart takes a liking to Father Sean and begins to embrace the Catholic faith, which concerns Homer and Marge. Homer goes to the school with the purpose of taking Bart out of school, only to himself being converted before the night is through. With her husband and son gone Marge finds herself alone at church. Reverend Lovejoy tells her that when they die she and Homer will be going to different heavens. Marge, Ned and Reverend Lovejoy go to Homer and Bart's first communion class to at the very least liberate Bart from becoming Catholic. To bring Bart back to his old religion they take him to a religious festival. Father Sean and Homer arrive hoping to take Bart back, but Bart in one his rare moments of insight brings both sides together, that is until 1,000 years later.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":356,"unverifiedSceneNumbering":false,"id":3645},{"seriesId":49,"episodeFileId":2272,"seasonNumber":17,"episodeNumber":1,"title":"The Bonfire of the Manatees","airDate":"2005-09-11","airDateUtc":"2005-09-12T00:00:00Z","overview":"Homer gets into trouble with football gambling debts. As compensation, Fat Tony wants to use the Simpson home for shooting the adult film \u201cLemony Lickit: A Series of Horny Events.\u201d Homer gets Marge and the kids to leave the house by sending them off to \u201cSanta\u2019s Village.\u201d Marge and the kids return home to find the production is still underway. Marge, outraged by Homer\u2019s latest bit of idiocy, leaves. Homer, home alone with the kids tries to figure out what to do next. Just when Marge is about ready to reconcile with Homer, she encounters Caleb Thorn, a good looking scientist with a passion for saving the endangered manatee. Homer and the kids go on a quest to find Marge and they stop and stay with some \u201ccountry cousins,\u201d meanwhile Marge is finding herself while helping to save manatees. Homer tries to win Marge back by save a herd of manatees from a gang of jet skiers. His effort pays off as Marge takes home the endangered species of her own, the endangered devoted husband. The family decides to take a mini-vacation and Homer gets a manatee sent to the power plant to fill in for his job for the next few days.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":357,"unverifiedSceneNumbering":false,"id":3646},{"seriesId":49,"episodeFileId":2300,"seasonNumber":17,"episodeNumber":2,"title":"The Girl Who Slept Too Little","airDate":"2005-09-18","airDateUtc":"2005-09-19T00:00:00Z","overview":"The noise of early morning construction next door is keeping the family awake; there is a new stamp museum under construction. The family successfully leads a protest that gets the stamp museum moved to the site of the old graveyard; the old graveyard in turn is relocated next to the Simpson home. The site of the graveyard outside her window makes Lisa uncomfortable and scared late one night she runs to her parent\u2019s bed for comfort. They try to get her back into her own bed, by showing her that they can sleep in her bed. When that doesn\u2019t work, they resort to the help of a psychiatrist and she offers them some costly advice. Meanwhile Lisa, who has always had to fend for her self, decides to spend the night in the cemetery and conquer her fears. Lisa gets knocked unconscious and has a hallucination helps her to deal with fear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":358,"unverifiedSceneNumbering":false,"id":3647},{"seriesId":49,"episodeFileId":2326,"seasonNumber":17,"episodeNumber":3,"title":"Milhouse of Sand and Fog","airDate":"2005-09-25","airDateUtc":"2005-09-26T00:00:00Z","overview":"When Maggie is showing signs of being ill, the family goes to \u201cthe more boisterous house of worship\u201d in town to find Dr. Hibbert, who tells them that Maggie is developing the chicken pox. After Maggie develops the disease, Marge tries to keep Homer away from her, since he has never had them. After Flanders expresses an interest in getting his kids infected, Homer and Marge open up the house for a \u201cpox party.\u201d Milhouse\u2019s divorced parents are both at the party and after some \u201cMargerita\u2019s\u201d are consumed, find themselves getting back together. Meanwhile, Homer has developed the chicken pox and Marge tries to keep him from scratching. Milhouse likes the idea of his parents getting back together, but then begins to hate it when he has trouble getting either of them to pay any attention to him. After seeing an episode of The O.C. Milhouse and Bart come up with a plan to get his parent\u2019s separated again, they plant one of Marge\u2019s bras in Kirk & Luann\u2019s bed. They don\u2019t succeed in breaking them up; rather they break up Homer and Marge. Even after Bart confesses his guilt, Marge doesn\u2019t want anything to do with Homer, since he obviously doesn\u2019t trust him anymore. Bart concocts an outrageous scheme to get them back together, but it goes terribly wrong and both he and Homer find themselves in the river heading toward the falls needing to place their trust in Marge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":359,"unverifiedSceneNumbering":false,"id":3648},{"seriesId":49,"episodeFileId":2352,"seasonNumber":17,"episodeNumber":4,"title":"Treehouse of Horror XVI","airDate":"2005-11-06","airDateUtc":"2005-11-07T01:00:00Z","overview":"It is game six of the World Series and Kang and Kodos decide to speed up the play of the game and they fire the acceleray. They shatter the fabric of the universe and everything is destroyed.\r\n\r\na). \"B.I.: Bartificial Intelligence\"\r\n\r\nBart falls into a deep coma from which he will never emerge. Well Bart does wakes from his coma only to find that his family has replaced him with David, a newly developed artificial robot son. Bart struggles to fit back in with his family and Homer and Marge decide they must get rid of one of their sons. They abandoned Bart, but harvesting parts from some abandoned robots he gets his revenge. The robot nightmare only turns out to be a dream when it is revealed that Homer has actually been possessed by the devil.\r\n\r\nb). \"Survival of the Fattest\"\r\n\r\nHomer and others are invited by Mr. Burns to his estate for \u201cA Most Dangerous Game.\u201d It turns out that they are participants on \u201cThe World Series of Manslaughter\u201d featuring guest analyst Terry Bradshaw where they are the quarry and Mr. Burns is their hunter. Surprisingly Homer is the last contestant left standing, but it takes Marge\u2019s intervention to even the score.\r\n\r\nc). \"I\u2019ve Grown a Costume on Your Face\"\r\n\r\nIt\u2019s the Springfield Semi-Annual Halloween Party but the costume contest goes awry when a real hideous witch turns everyone into real-life versions of their costumes. Lisa, as Einstein, searches for a solution to their problem; but it is up to Maggie, who was dressed as a witch, as the only one with the power to reverse the spell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":360,"unverifiedSceneNumbering":false,"id":3649},{"seriesId":49,"episodeFileId":2385,"seasonNumber":17,"episodeNumber":5,"title":"Marge's Son Poisoning","airDate":"2005-11-13","airDateUtc":"2005-11-14T01:00:00Z","overview":"The family is at Paradise Pier, where Marge was looking forward to riding the Ferris wheel all her life, only to find out that it is being dismantled with some of its equipment being sold. Homer purchases a dumbbell while Marge gets a tandem bicycle. When Marge wants to take the bike for a ride, she finds that Homer is a less than willing participant.\r\n\r\nShe tries it on her own and falls. Realizing that his mother might actually be lonely, Bart offers to go for a ride with her. They ride into an unincorporated part of the county and come upon a small village that features a tea house. Later the tea house closes forever causing Bart to invite his mother to his treehouse for tea.\r\n\r\nMarge redecorates the treehouse and the pair goes off to get a new tea service where he gets a Krusty Teapot. Outside the store the bullies accuse Bart of being a \u201cMomma\u2019s Boy,\u201d which causes Bart to rebel. Marge goes into a depression and eventually sells the bike.\r\n\r\nFeeling bad, Bart offers to compete with her in a karaoke contest. While seeing Skinner and his mother perform, Marge has visions of a terrible future for Bart and she stops the show to let Bart know that he shouldn\u2019t worry about her, it\u2019s her job to worry about him.\r\n\r\nMeanwhile at Moe\u2019s Homer shows off the strength in one of his arms he\u2019s gained from working with the dumbbell and Moe has an idea on how to capitalize on it. Moe takes Homer to the arm wrestling championships, where Homer readily wins, but finds that he really misses his wife.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":361,"unverifiedSceneNumbering":false,"id":3650},{"seriesId":49,"episodeFileId":2414,"seasonNumber":17,"episodeNumber":6,"title":"See Homer Run","airDate":"2005-11-20","airDateUtc":"2005-11-21T01:00:00Z","overview":"Homer is ready for everyone to shower him with gifts on Father\u2019s Day and Marge and the kids go to the mall to obtain the presents. Lisa decides she is going to make something for her father, while Bart purchases the Leather Buddy multi-function knife. Lisa\u2019s heartfelt gift doesn\u2019t go over as well as Bart\u2019s knife and Homer doesn\u2019t immediately do anything to make Lisa feel any better. Bart sees a street sign with his name on it and the bullies entice him into stealing it. Homer makes a lame attempt at making up to Lisa. At school Lisa goes on a rampage. Citing her father as the cause, Principal Skinner and the school psychologist talk with Homer and Marge about what they can do to prevent Lisa from growing up to hate men. Homer becomes the school safety salamander. His initial pathetic attempts at safety don\u2019t change her feelings for her father, until an accident at the intersection of Evergreen Terrace and the unsigned Bart Blvd. The safety salamander rescues all the victims of the accident and Homer is awarded the keycard to the city. Then the mayor comes under fire for the many disasters under his administration and it is decided that a recall election is going to be held. With a number of ridiculous candidates running, Lisa decides that her father, with his popularity as the safety salamander, would be the ideal choice. With Lisa as his campaign manager, everything is going well, until Marge washes his salamander suit. When it shrinks and tears apart is reveals the man underneath, whom nobody is interested in voting for, but at least Homer and Lisa strengthen their relationship. Finally when none of the candidates garner enough votes to take over as mayor, it\u2019s business as usual in Springfield government.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":362,"unverifiedSceneNumbering":false,"id":3651},{"seriesId":49,"episodeFileId":2443,"seasonNumber":17,"episodeNumber":7,"title":"The Last of the Red Hat Mamas","airDate":"2005-11-27","airDateUtc":"2005-11-28T01:00:00Z","overview":"The mayor\u2019s estate is used for Springfield\u2019s Easter celebration, and in the course of the events, Homer embarrasses Marge in front of some new potential friends. To make it up, Homer decides to find her some new friends, with little luck. Marge finds some new friends on her own, Tammy and other members of \u201cThe Cheery Red Tomatoes,\u201d a group of women of a certain age. This group has plans for a fund raiser; they intend to rob Mr. Burns of 1 million dollars, an amount he once promised to charity. Homer finds out about the plan and tries to stop her from doing something she\u2019ll regret. Meanwhile, Lisa in search of summer opportunities decides to spend the summer in Rome. Lisa tells Principal Skinner that she speaks fluent Italian, since she really doesn\u2019t she tries to take a crash course and winds up hiring a tutor that turns out to be Milhouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":363,"unverifiedSceneNumbering":false,"id":3652},{"seriesId":49,"episodeFileId":2471,"seasonNumber":17,"episodeNumber":8,"title":"The Italian Bob","airDate":"2005-12-11","airDateUtc":"2005-12-12T01:00:00Z","overview":"After being humiliated by Mrs. Krabappel's class, Mr. Burns finally decides to buy a new car, so he orders a Lamborgotti Fasterossa. He sends Homer and his family to the factory in Italy to pick the car up. The family takes a tour of Italy in the new car, but an accident with the car and a cheese truck has the family pushing the car into the town of Salsiccia. They find out that only one person in the town speaks English and it happens to be their mayor. The family goes to meet the mayor and they are surprised to see that it is Sideshow Bob, and he is equally surprised to see them. Sideshow Bob tells them how he came to Italy, become mayor and started a family with his wife (Francesca) and son (Gino). He hopes that the Simpsons will keep the secret of his criminal past, but Lisa\u2019s first exposure to drinking wine leads to loose lips, which sinks his ship. Sideshow Bob, being no longer welcome in his new home, swears a vendetta on the Simpson family. The Simpsons go on the run from Sideshow Bob, who is joined by his wife and son as the vendetta affects their entire family. In Rome, the family discovers that Krusty is preparing to perform the lead in \u201cI Pagliacci.\u201d The Simpsons hide as extras within the show, but Krusty gets tossed off-stage only to be replaced by Sideshow Bob, whose family has the Simpsons surrounded. Krusty and his limo save the day, while Sideshow Bob and his family adjust to their unresolved vendetta.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":364,"unverifiedSceneNumbering":false,"id":3653},{"seriesId":49,"episodeFileId":2502,"seasonNumber":17,"episodeNumber":9,"title":"Simpsons Christmas Stories","airDate":"2005-12-18","airDateUtc":"2005-12-19T01:00:00Z","overview":"When Reverend Lovejoy and Ned Flanders are unable to deliver the Christmas sermon, Homer steps in and tells the story of the birth of the baby Jesus (Bart), King Harod\u2019s (Mr. Burns\u2019) attempt to have the baby killed and the creation of the first Christmas tree.\r\n\r\nGrandpa relates to Bart and Lisa the story of how in the Navy he and his older brother Cyrus were fighting in the Pacific in World War II. During a battle Cyrus\u2019s plane is lost and Abe and Mr. Burns (his co-pilot) crash land their own plane. At Christmastime while awaiting rescue, Burns, anxious to shoot at something, shoots down Santa Claus. Abe and Burns help Santa to rebuild his sleigh (only for Burns to later steal.) After Abe gets it back, Santa promises to come back for a follow-up rescue, but never does. After Abe has finished relating the story to the kids, Santa makes his overdue appearance and takes Abe to Tahiti to be reunited with his brother.\r\n\r\nThe kids at Springfield Elementary perform \u201cPerhaps the worst version ever\u201d rendition of \u201cThe Nutcracker\u201d ballet according to Superintendent Chalmers. When it is revealed that you don\u2019t have to pay for the music rights it leads to a montage of citizens of Springfield going about their usual Christmas activities to the more familiar pieces of music from \u201cThe Nutcracker,\u201d including a sequence where Moe tries to kill himself, and Homer (forgetting as usual) tries to get Marge her present at the last minute.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":365,"unverifiedSceneNumbering":false,"id":3654},{"seriesId":49,"episodeFileId":2530,"seasonNumber":17,"episodeNumber":10,"title":"Homer's Paternity Coot","airDate":"2006-01-08","airDateUtc":"2006-01-09T01:00:00Z","overview":"The result of Marge's anger against Quimby\u2019s new toll road leads to the discovery of a frozen mailman and his 40-year-old mail. The old mail is delivered to the recipients, including one to Grampa Simpson's deceased wife, and it reveals a secret love affair and who the real father of her baby Homer might be. Confused and emotional, Homer finds Mason Fairbanks, his wealthy and much improved paternal dad, and happily establishes a father-son relationship with him while rejecting Abe, his surrogate father of 40 years, especially after a DNA test reveals that Mason is indeed his real father. Homer joins Mason on an undersea treasure hunt and when Homer\u2019s life is in mortal danger he reflects upon his childhood and realizes who his true father is. When he confesses that to Abe, Abe has a confession of his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":366,"unverifiedSceneNumbering":false,"id":3655},{"seriesId":49,"episodeFileId":2558,"seasonNumber":17,"episodeNumber":11,"title":"We're on the Road to D'ohwhere","airDate":"2006-01-29","airDateUtc":"2006-01-30T01:00:00Z","overview":"Bart obtains the key to the steam tunnels under the school and with Milhouse they go down to check them out. When Bart turns just one of the little valves they find in the valve room the chain reaction causes chaos throughout the school. Bart is caught and Skinner wants to send him to a discipline camp in Oregon. When Bart can\u2019t fly there alone, Homer has to drive him there himself and that is going to cause him to miss the trip to Las Vegas that Moe is sponsoring for all his regular customers. While the boys are gone, Marge and Lisa take some of the boys' old stuff and hold a yard sale, but the only things that sell well are their old medications and that gets her into bit of trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":367,"unverifiedSceneNumbering":false,"id":3656},{"seriesId":49,"episodeFileId":2588,"seasonNumber":17,"episodeNumber":12,"title":"My Fair Laddy","airDate":"2006-02-26","airDateUtc":"2006-02-27T01:00:00Z","overview":"Mr. Krupt is the school\u2019s new gym teacher and introduces Bart and the kids to \u201cBOMBARDMENT!\u201d Bart\u2019s attempt to get back at the new gym teacher results in the destruction of Groundskeeper Willie\u2019s shack and the family takes him in. Lisa decides to make Willie the focus of her science fair project and tries to turn him into a \u201cproper gentleman\u201d with surprising results. Meanwhile, Homer has ruined his last pair of blue pants and attempts to generate interest in them so the manufacturer will start making them again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":368,"unverifiedSceneNumbering":false,"id":3657},{"seriesId":49,"episodeFileId":2614,"seasonNumber":17,"episodeNumber":13,"title":"The Seemingly Never-Ending Story","airDate":"2006-03-12","airDateUtc":"2006-03-13T01:00:00Z","overview":"The family is on a nature walk through \u201cCarl\u2019s Dad Caverns,\u201d when Homer tries to get a piece from a stalactite. This results in the family falling through the cave floor and winds up with Homer getting stuck in the ceiling of one of the lower chambers of the cave. Marge, Bart and Maggie go off to find help, while Lisa stays behind and tells her father a story to pass the time. Her story involves running from a bighorn sheep and into Mr. Burn\u2019s mansion. The pair evades the tenacious sheep by finding refuge in the mansion\u2019s attic, where Mr. Burns tells her the story of how he came to work at Moe\u2019s Tavern by losing a scavenger hunt with a rich Texan. While there he learned (and tells to Lisa) the tale of the Moe\u2019s treasure. The stories within stories culminate in the fate of the treasure being determined in the cave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":369,"unverifiedSceneNumbering":false,"id":3658},{"seriesId":49,"episodeFileId":2645,"seasonNumber":17,"episodeNumber":14,"title":"Bart Has Two Mommies","airDate":"2006-03-19","airDateUtc":"2006-03-20T01:00:00Z","overview":"The family is at a church fund-raiser, where Homer tries to ensure his rubber duck onto victory, but Flanders wins the big prize, which he doesn\u2019t want and gives it to Marge. In return Marge agrees to watch Rod and Todd while Ned is attending a left-handed convention. While Marge is spending all her time with the Rod and Todd and trying to let them learn how to be boys; Homer takes Bart and Lisa to a home for former celebrity animals and a monkey kidnaps Bart. Marge\u2019s ability to be a mother comes into question when Ned discovers what she is doing with his boys and the local news covers Bart\u2019s current predicament.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":370,"unverifiedSceneNumbering":false,"id":3659},{"seriesId":49,"episodeFileId":2674,"seasonNumber":17,"episodeNumber":15,"title":"Homer Simpson, This Is Your Wife","airDate":"2006-03-26","airDateUtc":"2006-03-27T01:00:00Z","overview":"Homer is stoked for a party, where Lenny shows off his new plasma screen HD TV. Three days later and Homer still hasn\u2019t left Lenny\u2019s apartment. Lenny eventually gets him to leave and Marge enters them in a contest where they can win a plasma TV of their own. They don\u2019t win, but 3rd place gets them a tour of the FOX studios, where Homer learns about a wife-swapping show where he can win enough money to buy his own plasma TV. Marge agrees to appear and they exchange wives with the Heathbar family. Charles Heathbar winds up falling in love with Marge (who is giving him what he needs), while his real wife Verity finds Homer detestable.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":371,"unverifiedSceneNumbering":false,"id":3660},{"seriesId":49,"episodeFileId":2700,"seasonNumber":17,"episodeNumber":16,"title":"Million Dollar Abie","airDate":"2006-04-02","airDateUtc":"2006-04-03T00:00:00Z","overview":"Homer spearheads the effort to get pro-football to bring a new franchise to Springfield. The football commissioner, on his way to officially award the franchise, stops at the Simpson house where Grandpa (mistaking him for a burglar) attacks him. Springfield loses out and Abe becomes the town\u2019s pariah. After trying and failing assisted suicide, Abe decides to live his life without fear and when the town decides to reuse their football stadium as a bullfighting ring, he volunteers to be the toreador. Ever the activist, granddaughter Lisa protests his new profession.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":372,"unverifiedSceneNumbering":false,"id":3661},{"seriesId":49,"episodeFileId":2728,"seasonNumber":17,"episodeNumber":17,"title":"Kiss Kiss, Bang Bangalore","airDate":"2006-04-09","airDateUtc":"2006-04-10T00:00:00Z","overview":"At the power plant a movie is shown where the workers endorse outsourcing and Mr. Burns announces that he is closing the plant and moving the work to India. Homer is the only union employee left on the payroll and he is sent to India to train the replacement workers, when he succeeds beyond expectations, he is given total control of the plant and declares himself a god. Meanwhile, Selma & Patty take Bart and Lisa to their MacGyver convention. When they discover Richard Dean Anderson doesn\u2019t like MacGyver and much as they do, they kidnap him in retaliation. Anderson escapes only to enjoy the thrill and he turns himself back in so that he can escape again. When it happens over and over again, soon Patty and Selma are the ones who need a means of escape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":373,"unverifiedSceneNumbering":false,"id":3662},{"seriesId":49,"episodeFileId":2756,"seasonNumber":17,"episodeNumber":18,"title":"The Wettest Stories Ever Told","airDate":"2006-04-23","airDateUtc":"2006-04-24T00:00:00Z","overview":"As the family waits for their food at \u201cThe Frying Dutchman,\u201d they pass the time by telling stories. Lisa tells about the Mayflower\u2019s journey to America, where Marge and her kids are Pilgrims and they are joined by a knave named Homer who joins their family to escape the authorities. Bart recounts the story of Mutiny on the Bounty featuring Skinner as Captain Bligh and Bart as Mr. Christian. Homer tells the tale of the maiden voyage of a cruise ship in the 1970s featuring of a ship that can\u2019t flip over, which of course it does and the attempts of the survivors to get out of the ship alive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":374,"unverifiedSceneNumbering":false,"id":3663},{"seriesId":49,"episodeFileId":2783,"seasonNumber":17,"episodeNumber":19,"title":"Girls Just Want to Have Sums","airDate":"2006-04-30","airDateUtc":"2006-05-01T00:00:00Z","overview":"The family attends \"Stab-A-Lot: The Itchy and Scratchy Musical.\" The musical's director is a graduate of Springfield Elementary and Principal Skinner puts his foot in mouth when he makes sexist comments about her education and that of women in general. He tries to make the situation better, but only buries himself deeper and deeper until he is fired and replaced by Women's Educational Expert Melanie Upfoot. The first thing she does is split the school into girls and the boys. Lisa dislikes the way girls are being taught math and she ventures over to the boy's side of the school in search of a challenge. Disguising herself as Jake Boyman she starts attending the boy's school but while she finds the math problems more interesting, it is being a boy that is a greater challenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":375,"unverifiedSceneNumbering":false,"id":3664},{"seriesId":49,"episodeFileId":2812,"seasonNumber":17,"episodeNumber":20,"title":"Regarding Margie","airDate":"2006-05-07","airDateUtc":"2006-05-08T00:00:00Z","overview":"Marge goes on a cleaning frenzy before the housekeeper she\u2019s won the services of comes to the house. One spot remains and she mixes a number of toxic cleaners together to tackle the job. The noxious mixture knocks her out and she wakes up suffering from amnesia. Marge is taken home and the family tries to bring back her memory. She starts to get back memories of her children and other insignificant things, but when it comes to remembering her husband, nothing he does seems to jog her memory. When he can\u2019t get her to remember him, he tries to win her all over again, especially after Patty and Selma get her back out on the dating scene.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":376,"unverifiedSceneNumbering":false,"id":3665},{"seriesId":49,"episodeFileId":2841,"seasonNumber":17,"episodeNumber":21,"title":"The Monkey Suit","airDate":"2006-05-14","airDateUtc":"2006-05-15T00:00:00Z","overview":"Working through their checklists of things to do before summer ends, Lisa gets the family to go a museum. At the Springfield Museum of Natural History there is an exhibit Lisa is excited to see on Women\u2019s History turns into an exhibit on the history of weapons, which excites Homer and Bart. When Flanders sees the exhibit of evolution and another that mocks creationism, he raises an alarm. Reverend Lovejoy gets Skinner to have creationism taught in school. Lisa is the only one who holds onto the scientific theory. She brings the topic up at the town meeting and the town votes to teach only one theory, creationism. Lisa decides to hold her own class on evolution, until she is arrested. The ACLU gives her a lawyer who is up against a slick Southern lawyer, but ultimately it\u2019s a family member that is a key to her defense.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":377,"unverifiedSceneNumbering":false,"id":3666},{"seriesId":49,"episodeFileId":2866,"seasonNumber":17,"episodeNumber":22,"title":"Marge and Homer Turn a Couple Play","airDate":"2006-05-21","airDateUtc":"2006-05-22T00:00:00Z","overview":"When Homer hears that the Isotopes are on a winning streak, he takes the family to the game. The first baseman\u2019s game is going bad, caused by his sexy singing wife Tabitha embarrassing him during the game\u2019s national anthem. Buck Mitchell sees Marge and Homer\u2019s kiss on the game\u2019s Kiss-Cam and comes to them for marital advice. They start working with the couple and Buck\u2019s baseball career turns around, but it and the Simpson marriage goes awry again when Buck catches Homer giving Tabitha a neck massage. While Marge and Homer try keeping their marriage together they also try to get Buck and Tabitha back together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":378,"unverifiedSceneNumbering":false,"id":3667},{"seriesId":49,"episodeFileId":14902,"seasonNumber":18,"episodeNumber":1,"title":"The Mook, the Chef, the Wife, and Her Homer","airDate":"2006-09-10","airDateUtc":"2006-09-11T00:00:00Z","overview":"At school, Lisa befriends a boy named Michael, who happens to be the son of mob boss, Fat Tony. Fat Tony is put out of commission by a rival family, and Homer and Bart get involved with the mob, when Michael, who is nothing like his father, is not interested in the \u201cfamily business.\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":379,"unverifiedSceneNumbering":false,"id":3668},{"seriesId":49,"episodeFileId":2308,"seasonNumber":18,"episodeNumber":2,"title":"Jazzy and the Pussycats","airDate":"2006-09-17","airDateUtc":"2006-09-18T00:00:00Z","overview":"When Bart has problems with acting out, Marge and Homer take him to a child psychiatrist, who suggests that Bart should taking up drumming. Bart turns out to be a natural with the drums and much to the chagrin of Lisa; Bart is approached by jazz musicians, who want him in their band. Meanwhile, Lisa turns to rescuing animals as a way to deal with her jealousy and depression, over not being a member of a jazz band herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":380,"unverifiedSceneNumbering":false,"id":3669},{"seriesId":49,"episodeFileId":14908,"seasonNumber":18,"episodeNumber":3,"title":"Please Homer, Don't Hammer 'Em","airDate":"2006-09-24","airDateUtc":"2006-09-25T00:00:00Z","overview":"After buying Homer a collection of handyman's books, Marge becomes a handywoman, but uses Homer since no one in town is thrilled over the idea of a female carpenter. Meanwhile, Bart finds out that Principal Skinner has a peanut allergy and uses a peanut on a stick to torture Skinner, but the joke is on Bart when Skinner discovers that Bart is allergic to shrimp.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":381,"unverifiedSceneNumbering":false,"id":3670},{"seriesId":49,"episodeFileId":14916,"seasonNumber":18,"episodeNumber":4,"title":"Treehouse of Horror XVII","airDate":"2006-11-05","airDateUtc":"2006-11-06T01:00:00Z","overview":"Three more scary tales are offered up in this 17th edition of the Treehouse of Horror.Married to the Blob: After eating mysterious green goo from a meteorite, Homer grows to massive proportions while he eats everything in sight.You Gotta Know When to Golem: Bart takes control of Golem of Jewish folklore, and forces the ancient statue to do his bidding by writing instructions on scrolls and placing them into the Golem's mouth.The Day the Earth Looked Stupid: Taking place in 1938 Springfield, the townspeople react to Orson Welles\u2019 famous War of the Worlds radio broadcast. However, they pay no attention when Kang and Kodos actually do invade the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":382,"unverifiedSceneNumbering":false,"id":3671},{"seriesId":49,"episodeFileId":14965,"seasonNumber":18,"episodeNumber":5,"title":"G.I. (Annoyed Grunt)","airDate":"2006-11-12","airDateUtc":"2006-11-13T01:00:00Z","overview":"Bart pre-enlists in the Army and when Homer goes to the Recruitment Center to clear up the mess, he is tricked into enlisting in the Army himself. Upon completion of basic training, Homer is assigned to lead some troops against a disgruntled Army Colonel in a war games simulation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":383,"unverifiedSceneNumbering":false,"id":3672},{"seriesId":49,"episodeFileId":14948,"seasonNumber":18,"episodeNumber":6,"title":"Moe 'N' a Lisa","airDate":"2006-11-19","airDateUtc":"2006-11-20T01:00:00Z","overview":"Lisa aides Moe in discovering his inner-poet and he gains swift popularity and recognition from a group of successful American authors, when Lisa helps to get his poetry published. However, Lisa is crushed, when Moe enjoys his newfound success with literary giants and fails to credit Lisa for her assistance in his poetry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":384,"unverifiedSceneNumbering":false,"id":3673},{"seriesId":49,"episodeFileId":14955,"seasonNumber":18,"episodeNumber":7,"title":"Ice Cream of Margie (With the Light Blue Hair)","airDate":"2006-11-26","airDateUtc":"2006-11-27T01:00:00Z","overview":"After Homer is fired from the power plant, he buys an ice-cream truck and sells ice-cream. His successful business yields an abundance of discarded popsicle sticks and Marge finds another calling in life, as she uses the leftover sticks to create popular life-size statues of various citizens from Springfield.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":385,"unverifiedSceneNumbering":false,"id":3674},{"seriesId":49,"episodeFileId":2477,"seasonNumber":18,"episodeNumber":8,"title":"The Haw-Hawed Couple","airDate":"2006-12-10","airDateUtc":"2006-12-11T01:00:00Z","overview":"After being forced to attend Nelson\u2019s birthday party, Bart becomes best friends with the schoolyard bully. Meanwhile, Homer develops a big interest with one of Lisa\u2019s fantasy books.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":386,"unverifiedSceneNumbering":false,"id":3675},{"seriesId":49,"episodeFileId":2511,"seasonNumber":18,"episodeNumber":9,"title":"Kill Gil, Vol. 1 & 2","airDate":"2006-12-17","airDateUtc":"2006-12-18T01:00:00Z","overview":"At Christmas time, Marge opens up her home to the jobless Gil. But problems arise when Gil overstays his welcome and Marge can\u2019t bring herself to kick Gil out of the house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":387,"unverifiedSceneNumbering":false,"id":3676},{"seriesId":49,"episodeFileId":14922,"seasonNumber":18,"episodeNumber":10,"title":"The Wife Aquatic","airDate":"2007-01-07","airDateUtc":"2007-01-08T01:00:00Z","overview":"Homer surprises Marge with a visit to her favorite childhood vacation spot: an island called Barnacle Bay. But when the family arrives, they are shocked to discover Barnacle Bay\u2019s tourism and economy has been decimated by the disappearance of the local delicacy, the \u201cYum-Yum\u201d fish. After causing some major damage to the boardwalk, Homer is forced to join a fishing crew to work off his debt and a parody of The Perfect Storm ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":388,"unverifiedSceneNumbering":false,"id":3677},{"seriesId":49,"episodeFileId":14917,"seasonNumber":18,"episodeNumber":11,"title":"Revenge Is a Dish Best Served Three Times","airDate":"2007-01-28","airDateUtc":"2007-01-29T01:00:00Z","overview":"In an effort to stop Homer from taking revenge on the Rich Texan for cutting him off on the highway, Marge, Lisa and Bart offer up three cautionary tales of revenge.The Count of Monte Fatso: A parody of the book and film The Count of Monte Cristo, in which Homer is cast as the Count.Revenge of the Geeks: Using a futuristic device called the \u201cGet-back-inator,\u201d Milhouse takes revenge on the Springfield Elementary bullies.Bartman Begins: A parody of the Batman origin story, in which Bart is cast in the title role.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":389,"unverifiedSceneNumbering":false,"id":3678},{"seriesId":49,"episodeFileId":2598,"seasonNumber":18,"episodeNumber":12,"title":"Little Big Girl","airDate":"2007-02-11","airDateUtc":"2007-02-12T01:00:00Z","overview":"After saving Springfield from burning down in city-wide fire, Mayor Quimby awards Bart with a driver\u2019s license. During Bart\u2019s travels to a nearby town, he develops a serious relationship with a teenage girl. Meanwhile, during a presentation at school, Lisa lies about her Native American heritage and when everyone believes her, the lies result in some escalating problems for her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":390,"unverifiedSceneNumbering":false,"id":3679},{"seriesId":49,"episodeFileId":14984,"seasonNumber":18,"episodeNumber":13,"title":"Springfield Up","airDate":"2007-02-18","airDateUtc":"2007-02-19T01:00:00Z","overview":"Eccentric documentary filmmaker Declan Desmond returns with his new film \"Growing up Springfield\" in which various characters in The Simpsons are interviewed. Homer and family pretend to be rich on the documentary, until Mr. Burns catches them in his summer home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":391,"unverifiedSceneNumbering":false,"id":3680},{"seriesId":49,"episodeFileId":2653,"seasonNumber":18,"episodeNumber":14,"title":"Yokel Chords","airDate":"2007-03-04","airDateUtc":"2007-03-05T01:00:00Z","overview":"Principal Skinner decides to allow Lisa to tutor Cletus's kids instead of them enrolling into Springfield Elementary, but they end up on Krusty's show as a Musical Act; Bart sees a psychiatrist after pretending that he's possessed by a ghost in an an attempt get free food from the cafeteria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":392,"unverifiedSceneNumbering":false,"id":3681},{"seriesId":49,"episodeFileId":14913,"seasonNumber":18,"episodeNumber":15,"title":"Rome-Old and Juli-Eh","airDate":"2007-03-11","airDateUtc":"2007-03-12T00:00:00Z","overview":"When Homer accidentally declares bankruptcy, Grandpa ends up leaving the Springfield Retirement Castle and falls in love with Selma; Bart and Lisa con a delivery man out of cardboard boxes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":393,"unverifiedSceneNumbering":false,"id":3682},{"seriesId":49,"episodeFileId":2713,"seasonNumber":18,"episodeNumber":16,"title":"Homerazzi","airDate":"2007-03-25","airDateUtc":"2007-03-26T00:00:00Z","overview":"When the fireproof safe (which was bought after one too many house fires) explodes, Homer and Marge try to recreate the photos, but when one of them uncovers a scandal in the background, Homer decides to join the world of paparazzi \u2013 forgetting what happened the last time he had a job that dealt in revealing other people\u2019s flaws to the public (in \u201cGuess Who\u2019s Coming to Criticize Dinner?\u201d)","hasFile":true,"monitored":true,"absoluteEpisodeNumber":394,"unverifiedSceneNumbering":false,"id":3683},{"seriesId":49,"episodeFileId":14918,"seasonNumber":18,"episodeNumber":17,"title":"Marge Gamer","airDate":"2007-04-22","airDateUtc":"2007-04-23T00:00:00Z","overview":"Marge becomes a spectacle during a PTA meeting for not having an e-mail address, and she decides to take a chance on using the Internet. Amazed and delighted by all the Internet has to offer, Marge decides to join a popular role-playing fantasy game named \"Earthland Realms.\" To Marge's dismay, the game has her interacting with practically the whole town of Springfield, including Bart, who happens to be the game's most feared and destructive player. Meanwhile, Homer saves Lisa's soccer game from cancellation after he volunteers to take the place of a referee who recently quit. However, Homer's refereeing skills only exasperate Lisa, and her competitive streak gets the best of her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":395,"unverifiedSceneNumbering":false,"id":3684},{"seriesId":49,"episodeFileId":14943,"seasonNumber":18,"episodeNumber":18,"title":"The Boys of Bummer","airDate":"2007-04-29","airDateUtc":"2007-04-30T00:00:00Z","overview":"Bart becomes a hometown hero when he makes the game-winning catch at his Little League game, sending the Springfield Isotots to the championship for the very first time. Meanwhile, Homer runs into some luck, when a customer misunderstands Homer's excuses for a sales pitch after falling asleep in a department store's display bed. The impressed store owner hires Homer as a salesman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":396,"unverifiedSceneNumbering":false,"id":3685},{"seriesId":49,"episodeFileId":14912,"seasonNumber":18,"episodeNumber":19,"title":"Crook and Ladder","airDate":"2007-05-06","airDateUtc":"2007-05-07T00:00:00Z","overview":"Maggie goes on a path of destruction in the Simpsons home after Marge follows advice in a parenting magazine and throws away her pacifier. Marge finally gives in and sends Homer to get Maggie a new pacifier, but when he cant find the right brand, Maggie comes up with her own substitute an especially squeaky dog toy. Homer cant sleep through the toys incessant squeaking and is driven to take sleeping pills, which turn him into a sleepwalker with a penchant for mischief. When one of Homers sleepwalking schemes leaves the entire Springfield Fire Department debilitated in the hospital, Homer and some of his fellow Springfieldians become volunteer firefighters. They extinguish several fires and are rewarded with gifts, but when the gifts stop coming, they seek other forms of compensation for their heroic acts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":397,"unverifiedSceneNumbering":false,"id":3686},{"seriesId":49,"episodeFileId":14925,"seasonNumber":18,"episodeNumber":20,"title":"Stop or My Dog Will Shoot","airDate":"2007-05-13","airDateUtc":"2007-05-14T00:00:00Z","overview":"Homer unwittingly drags the family into a cornfield maze after attempting to leave a boring Harvest fest that Marge brought them to. When everyone except Homer escapes, Santa's Little Helper rescues him and becomes the town hero. So the Simpsons enroll him in Police Dog Academy where he's teamed with Lou.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":398,"unverifiedSceneNumbering":false,"id":3687},{"seriesId":49,"episodeFileId":14969,"seasonNumber":18,"episodeNumber":21,"title":"24 Minutes","airDate":"2007-05-20","airDateUtc":"2007-05-21T00:00:00Z","overview":"When finding out Jimbo, Dolph, and Kearney plan on sabotaging Springfield Elementary School's annual bake sale by releasing the \"ultimate stinkbomb\" (a rotten yogurt cup from Springfield's Nuclear Power Plant), Bart and Lisa enlist the help of Jack Bauer and Chloe O'Brian. Meanwhile, Marge attempts to make the perfect cake, so she can win the bake sale.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":399,"unverifiedSceneNumbering":false,"id":3688},{"seriesId":49,"episodeFileId":14951,"seasonNumber":18,"episodeNumber":22,"title":"You Kent Always Say What You Want","airDate":"2007-05-20","airDateUtc":"2007-05-21T00:25:00Z","overview":"When Homer buys the 1,000,000th ice-cream cone at a local shop, he ends up on Kent Brockman's news program. When Brockman swears on live TV after coffee is spilled in his lap, Ned Flanders leads a crusade to clean up Springfield's airwaves, starting with getting Brockman fired. Then Homer once again saves the day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":400,"unverifiedSceneNumbering":false,"id":3689},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"A Culture Show Special","airDate":"2007-07-25","airDateUtc":"2007-07-26T00:00:00Z","overview":"Not long before the anticipated release of their movie, and after celebrating the 400th episode and 20 years, The Culture Show paid homage to the great success of The Simpsons with this special half-hour documentary about them. Hosted by Lauren Laverne (who co-hosts Culture Show along with the great film critic Mark Kermode), this programme basically looked back from their first appearance on The Tracey Ullman Show in 1987 and episodes gone by to see why everyone loves this cartoon sitcom so much. This included the key and supporting characters, the jokes, the celebrity appearances, the writers, the mocking of everyday things, and much more, a great one-off documentary with plenty of clips, information and opinion to keep you interested. With contributions from creator Matt Groening, Ricky Gervais, Nick Park, Stephen Hawking, Phill Jupitus, Helen Fielding and Johnny Vegas.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3283},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":50,"title":"The Simpsons Movie","airDate":"2007-07-27","airDateUtc":"2007-07-28T00:00:00Z","overview":"After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons family are declared fugitives.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3281},{"seriesId":49,"episodeFileId":14934,"seasonNumber":19,"episodeNumber":1,"title":"He Loves to Fly and He D'ohs","airDate":"2007-09-23","airDateUtc":"2007-09-24T00:00:00Z","overview":"After Homer saves Mr. Burns' life he is rewarded with a trip in Mr. Burns' private plane. A depressed Homer realizes he will never again receive a chance to fly in a luxurious private jet and Marge hires Homer a life coach to help get him out of his rut.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":401,"unverifiedSceneNumbering":false,"id":3690},{"seriesId":49,"episodeFileId":9604,"seasonNumber":19,"episodeNumber":2,"title":"The Homer of Seville","airDate":"2007-09-30","airDateUtc":"2007-10-01T00:00:00Z","overview":"After a freak accident, Homer becomes an opera singer and finds himself star of the Springfield Opera. Soon he becomes mobbed by fans and gains himself a female stalker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":402,"unverifiedSceneNumbering":false,"id":3691},{"seriesId":49,"episodeFileId":14980,"seasonNumber":19,"episodeNumber":3,"title":"Midnight Towboy","airDate":"2007-10-07","airDateUtc":"2007-10-08T00:00:00Z","overview":"Homer starts working in the towing business, but gets into some trouble when the town sets up Homer to look like he is towing on a rival's turf after he becomes greedy with power. Meanwhile, Marge signs up for a counseling program that teaches parents how to raise young children to become independent, but the program works a little too well on Maggie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":403,"unverifiedSceneNumbering":false,"id":3692},{"seriesId":49,"episodeFileId":14962,"seasonNumber":19,"episodeNumber":4,"title":"I Don't Wanna Know Why the Caged Bird Sings","airDate":"2007-10-14","airDateUtc":"2007-10-15T00:00:00Z","overview":"During a bank robbery, Marge convinces Dwight, the bank robber, to turn himself in with the assurance that she will visit him once in jail. Marge never makes good on her promise and things get interesting when Dwight escapes from jail and comes looking for Marge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":404,"unverifiedSceneNumbering":false,"id":3693},{"seriesId":49,"episodeFileId":14914,"seasonNumber":19,"episodeNumber":5,"title":"Treehouse of Horror XVIII","airDate":"2007-11-04","airDateUtc":"2007-11-05T01:00:00Z","overview":"The 18th installment of the Treehouse of Horror series.\r\n\r\nMr. and Mrs. Simpson\r\nA parody of the 2005 film Mr. and Mrs. Smith, featuring Marge and Homer as the title characters.\r\n\r\nE.T. Go Home\r\nBart and Lisa help Kodos return to his home planet, but Kodos uses their assistance to secretly plan something sinister.\r\n\r\nHeck House\r\nFlanders decides to scare Bart, Lisa, and their friends straight after they go too far with their pranks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":405,"unverifiedSceneNumbering":false,"id":3694},{"seriesId":49,"episodeFileId":14932,"seasonNumber":19,"episodeNumber":6,"title":"Little Orphan Millie","airDate":"2007-11-11","airDateUtc":"2007-11-12T01:00:00Z","overview":"After Milhouse's parents are lost at sea and assumed dead, he is forced to toughen up. His new confidence and personality help him become cooler than Bart. Meanwhile, Homer gets into trouble with Marge, when he can't remember her eye color.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":406,"unverifiedSceneNumbering":false,"id":3695},{"seriesId":49,"episodeFileId":14919,"seasonNumber":19,"episodeNumber":7,"title":"Husbands and Knives","airDate":"2007-11-18","airDateUtc":"2007-11-19T01:00:00Z","overview":"Marge starts up a new women-only gym in Springfield and Homer frets about losing her after she becomes a highly successful businesswoman. Meanwhile, Coolsville, a new comic book shop, opens up in Springfield and puts Comic Book Guy out of business.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":407,"unverifiedSceneNumbering":false,"id":3696},{"seriesId":49,"episodeFileId":14923,"seasonNumber":19,"episodeNumber":8,"title":"Funeral for a Fiend","airDate":"2007-11-25","airDateUtc":"2007-11-26T01:00:00Z","overview":"Sideshow Bob returns, this time with his entire family, and sets in motion a complex diabolical scheme to finally kill Bart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":408,"unverifiedSceneNumbering":false,"id":3697},{"seriesId":49,"episodeFileId":14950,"seasonNumber":19,"episodeNumber":9,"title":"Eternal Moonshine of the Simpson Mind","airDate":"2007-12-16","airDateUtc":"2007-12-17T01:00:00Z","overview":"Homer wakes up to find himself outdoors and covered in snow, without memory of the night before. When he arrives home, he finds everyone missing. Seeking help from Moe and Professor Frink, Homer tries to piece together his memory to find out what happened to him the night before.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":409,"unverifiedSceneNumbering":false,"id":3698},{"seriesId":49,"episodeFileId":9612,"seasonNumber":19,"episodeNumber":10,"title":"E Pluribus Wiggum","airDate":"2008-01-06","airDateUtc":"2008-01-07T01:00:00Z","overview":"In an effort to raise money with a bond issue Mayor Quimby moves up election day, making Springfield's primary election the first in the nation causing the media, candidates and political pundits to descend in the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":410,"unverifiedSceneNumbering":false,"id":3699},{"seriesId":49,"episodeFileId":9613,"seasonNumber":19,"episodeNumber":11,"title":"That 90's Show","airDate":"2008-01-27","airDateUtc":"2008-01-28T01:00:00Z","overview":"After discovering Marge's diploma, Homer recounts the story of how he gave up his dreams of being a musician so Marge could attend Springfield University. However, after she became attracted to one of her professors Homer started focusing his emotions into music and formed the first grunge band called Sadgasm.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":411,"unverifiedSceneNumbering":false,"id":3700},{"seriesId":49,"episodeFileId":9614,"seasonNumber":19,"episodeNumber":12,"title":"Love, Springfieldian Style","airDate":"2008-02-17","airDateUtc":"2008-02-18T01:00:00Z","overview":"After being stranded in a Tunnel of Love ride at a carnival, Homer, Marge and Bart pass the time by sharing some of the greatest love stories of all time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":412,"unverifiedSceneNumbering":false,"id":3701},{"seriesId":49,"episodeFileId":14971,"seasonNumber":19,"episodeNumber":13,"title":"The Debarted","airDate":"2008-03-02","airDateUtc":"2008-03-03T01:00:00Z","overview":"Bart teams up with a new kid at school, Donny, to pull some pranks, but when the hijinks go haywire, Groundskeeper Willie tips Bart off to the fact that there might be a rat amongst his friends. Meanwhile, Homer becomes attached to a loaner vehicle while his is in the shop being repaired.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":413,"unverifiedSceneNumbering":false,"id":3702},{"seriesId":49,"episodeFileId":14952,"seasonNumber":19,"episodeNumber":14,"title":"Dial 'N' for Nerder","airDate":"2008-03-09","airDateUtc":"2008-03-10T00:00:00Z","overview":"Marge hires an investigative television show to follow Homer around after she suspects him of cheating on his diet. Meanwhile, one of Bart and Lisa's pranks on Martin Prince goes wrong and they become burdened with guilt after assuming they are responsible for Martin's accidental death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":414,"unverifiedSceneNumbering":false,"id":3703},{"seriesId":49,"episodeFileId":9617,"seasonNumber":19,"episodeNumber":15,"title":"Smoke on the Daughter","airDate":"2008-03-30","airDateUtc":"2008-03-31T00:00:00Z","overview":"Lisa enrolls in a ballet class and develops an addiction to secondhand smoke after being exposed to it by her smoking ballet classmates. Meanwhile, Homer lets Bart in on his secret beef jerky manufacturing operation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":415,"unverifiedSceneNumbering":false,"id":3704},{"seriesId":49,"episodeFileId":9618,"seasonNumber":19,"episodeNumber":16,"title":"Papa Don't Leech","airDate":"2008-04-13","airDateUtc":"2008-04-14T00:00:00Z","overview":"When Mayor Quimby realizes the city of Springfield has gone broke, Lisa goes through the town's financial records and discovers millions in uncollected city taxes; Marge reluctantly allows a fugitive to stay with the family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":416,"unverifiedSceneNumbering":false,"id":3705},{"seriesId":49,"episodeFileId":14939,"seasonNumber":19,"episodeNumber":17,"title":"Apocalypse Cow","airDate":"2008-04-27","airDateUtc":"2008-04-28T00:00:00Z","overview":"Bart joins the 4-H club and falls in love with a cow named Lou, but when he finds out that Lou is destined for the slaughterhouse Bart gives the cow to Mary, a fellow 4-H member, and her father mistakes the cow for a dowry. Homer and Marge come to the rescue to try and free Bart from his marriage agreement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":417,"unverifiedSceneNumbering":false,"id":3706},{"seriesId":49,"episodeFileId":14942,"seasonNumber":19,"episodeNumber":18,"title":"Any Given Sundance","airDate":"2008-05-04","airDateUtc":"2008-05-05T00:00:00Z","overview":"Lisa makes a documentary of her own family for a school project, and the film is so impressive that Superintendent Chalmers and Principal Skinner push her to enter the documentary in the Sundance Film Festival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":418,"unverifiedSceneNumbering":false,"id":3707},{"seriesId":49,"episodeFileId":9621,"seasonNumber":19,"episodeNumber":19,"title":"Mona Leaves-a","airDate":"2008-05-11","airDateUtc":"2008-05-12T00:00:00Z","overview":"After Mona, Homer's mother, passes away unexpectedly, Homer feels guilty for not getting the chance to tell her how much he really loved her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":419,"unverifiedSceneNumbering":false,"id":3708},{"seriesId":49,"episodeFileId":9622,"seasonNumber":19,"episodeNumber":20,"title":"All About Lisa","airDate":"2008-05-18","airDateUtc":"2008-05-19T00:00:00Z","overview":"Lisa outshines Krusty as his new assistant and steals the spotlight from him, earning her own TV show. Meanwhile, Homer and Bart spend some quality time together with their new coin collecting hobby.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":420,"unverifiedSceneNumbering":false,"id":3709},{"seriesId":49,"episodeFileId":2274,"seasonNumber":20,"episodeNumber":1,"title":"Sex, Pies and Idiot Scrapes","airDate":"2008-09-28","airDateUtc":"2008-09-29T00:00:00Z","overview":"Bounty hunter Ned is forced to scrap his partnership with Homer when the hapless layabout skips bail, and Marge mistakenly takes a job at an erotic bakery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":421,"unverifiedSceneNumbering":false,"id":3710},{"seriesId":49,"episodeFileId":2302,"seasonNumber":20,"episodeNumber":2,"title":"Lost Verizon","airDate":"2008-10-05","airDateUtc":"2008-10-06T00:00:00Z","overview":"Bart lands himself in trouble when he steals a mobile phone from Denis Leary and subsequently uses it to land the actor a comical film role. The troublemaker then leads his family to the ancient ruins of Machu Picchu after Marge confiscates the device and decides to use its GPS technology to track her son.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":422,"unverifiedSceneNumbering":false,"id":3711},{"seriesId":49,"episodeFileId":2331,"seasonNumber":20,"episodeNumber":3,"title":"Double, Double, Boy in Trouble","airDate":"2008-10-19","airDateUtc":"2008-10-20T00:00:00Z","overview":"An irreverent take on the Prince and the Pauper. Bart enthusiastically trades lives with a wealthy lookalike after landing himself in trouble for triggering a rampage of vacuum cleaners, but finds the lavish lifestyle too much when he becomes the target of all his new friends' pranks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":423,"unverifiedSceneNumbering":false,"id":3712},{"seriesId":49,"episodeFileId":2360,"seasonNumber":20,"episodeNumber":4,"title":"Treehouse of Horror XIX","airDate":"2008-11-02","airDateUtc":"2008-11-03T01:00:00Z","overview":"Springfield is the setting for parodies of Charlie Brown, It's the Great Pumpkin and Michael Bay's Transformers as Homer's vote on election day is misread by a renegade machine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":424,"unverifiedSceneNumbering":false,"id":3713},{"seriesId":49,"episodeFileId":2384,"seasonNumber":20,"episodeNumber":5,"title":"Dangerous Curves","airDate":"2008-11-09","airDateUtc":"2008-11-10T01:00:00Z","overview":"Homer and Marge remember the ups and downs of their marriage through a series of flashbacks, including the time they each began flirting with guests at a glamorous party - a situation that led to a food fight and an unexpected swim in the pool.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":425,"unverifiedSceneNumbering":false,"id":3714},{"seriesId":49,"episodeFileId":2418,"seasonNumber":20,"episodeNumber":6,"title":"Homer and Lisa Exchange Cross Words","airDate":"2008-11-16","airDateUtc":"2008-11-17T01:00:00Z","overview":"Lisa learns she is good at crossword puzzles and enters a city-wide contest. Homer discovers he has a flair for letting loved ones down so he opens Sweet Conclusions Break-Up Service, but lands himself in trouble with his daughter when he places a bet against her in the competition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":426,"unverifiedSceneNumbering":false,"id":3715},{"seriesId":49,"episodeFileId":2446,"seasonNumber":20,"episodeNumber":7,"title":"Mypods and Boomsticks","airDate":"2008-11-30","airDateUtc":"2008-12-01T01:00:00Z","overview":"Lisa struggles to become the proud owner of a Mypod, and Homer believes Bart's new Middle-Eastern friend Bashir is involved in a terrorist plot to destroy the Springfield Mall.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":427,"unverifiedSceneNumbering":false,"id":3716},{"seriesId":49,"episodeFileId":2476,"seasonNumber":20,"episodeNumber":8,"title":"The Burns and the Bees","airDate":"2008-12-07","airDateUtc":"2008-12-08T01:00:00Z","overview":"Mr Burns wins a professional basketball team in a poker game at the annual billionaire's retreat. He decides to build a state-of-the-art facility in an attempt to lure fans, but the stadium site is on the last remaining bee colony in Springfield - prompting Lisa to lead a protest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":428,"unverifiedSceneNumbering":false,"id":3717},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":53,"title":"The Simpsons' Christmas Message","airDate":"2008-12-25","airDateUtc":"2008-12-26T01:00:00Z","overview":"Marge comments on David and Victoria Beckham's marriage in a negative comparison with hers and Homer's, and compared the special relationship between the UK and the US to that of Mini Me and Dr. Evil in the Austin Powers films (\"Helping out in all our zany schemes to take over the world\"). Lisa Simpson also held a banner supporting Cornwall's secession: \"UK OUT OF CORNWALL\", while chanting \"Rydhsys rag Kernow lemmyn\" (freedom for Cornwall now).","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3282},{"seriesId":49,"episodeFileId":2503,"seasonNumber":20,"episodeNumber":9,"title":"Lisa the Drama Queen","airDate":"2009-01-25","airDateUtc":"2009-01-26T01:00:00Z","overview":"Lisa lets her imagination run wild when she makes a new friend and they create a magical kingdom together called Equalia, complete with characters and plotlines. But they find themselves facing a nightmare when the boundaries between reality and fantasy are blurred. With the voice of Emily Blunt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":429,"unverifiedSceneNumbering":false,"id":3718},{"seriesId":49,"episodeFileId":2534,"seasonNumber":20,"episodeNumber":10,"title":"Take My Life, Please","airDate":"2009-02-15","airDateUtc":"2009-02-16T01:00:00Z","overview":"Homer is jealous when old classmate Vance Connor is inducted into the Springfield Walk of Fame. Lenny and Carl confess they fixed the result in favor of Principal Dondelinger - leading the hapless father to speculate on how his life would have changed had he won the ballot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":430,"unverifiedSceneNumbering":false,"id":3719},{"seriesId":49,"episodeFileId":2560,"seasonNumber":20,"episodeNumber":11,"title":"How the Test Was Won","airDate":"2009-03-01","airDateUtc":"2009-03-02T01:00:00Z","overview":"Bart gets a perfect score on a practice test for a national achievement test, which not only rattles Lisa, but it means Bart gets to attend a special party instead of having to take the actual test. Meanwhile, Homer must avoid injuring himself for an entire afternoon after failing to pay his insurance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":431,"unverifiedSceneNumbering":false,"id":3720},{"seriesId":49,"episodeFileId":2592,"seasonNumber":20,"episodeNumber":12,"title":"No Loan Again, Naturally","airDate":"2009-03-08","airDateUtc":"2009-03-09T00:00:00Z","overview":"When the adjustable rate on Homer's home mortgage (taken out to pay for Homer's annual Mardi Gras parties) increases drastically and Homer can't make the payments, 742 Evergreen Terrace is sold...to Ned Flanders, who rents it back to Homer... at least until Homer demands that Flanders repair the house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":432,"unverifiedSceneNumbering":false,"id":3721},{"seriesId":49,"episodeFileId":2618,"seasonNumber":20,"episodeNumber":13,"title":"Gone Maggie Gone","airDate":"2009-03-15","airDateUtc":"2009-03-16T00:00:00Z","overview":"Lisa infiltrates a convent in order to steal back Maggie who was accidentally taken in by nuns. While in the convent, Lisa uncovers a series of cryptic clues leading to a hidden jewel in Springfield. With help from resident history buffs Principal Skinner and Comic Book Guy, Lisa sets off to find the coveted prize. But Springfield's Freemasons are also hot on the trail of the jewel, and Lisa must race against them to find the jewel and rescue Maggie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":433,"unverifiedSceneNumbering":false,"id":3722},{"seriesId":49,"episodeFileId":2644,"seasonNumber":20,"episodeNumber":14,"title":"In the Name of the Grandfather","airDate":"2009-03-22","airDateUtc":"2009-03-23T00:00:00Z","overview":"The Simpsons travel to Ireland so that Grampa can have a final drink at O'Flanagan's Pub - an old watering hole of his. But when the small town of Dunkilderry isn't quite what Grampa remembers it as, and O'Flanagans has become a rundown and empty pub, he and Homer decide to buy it and fix it up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":434,"unverifiedSceneNumbering":false,"id":3723},{"seriesId":49,"episodeFileId":2676,"seasonNumber":20,"episodeNumber":15,"title":"Wedding for Disaster","airDate":"2009-03-29","airDateUtc":"2009-03-30T00:00:00Z","overview":"After Marge and Homer's marriage turns out to be invalid, they decide to re-do their vows. But when Homer goes missing, Bart and Lisa smell something funny and investigate his disappearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":435,"unverifiedSceneNumbering":false,"id":3724},{"seriesId":49,"episodeFileId":2703,"seasonNumber":20,"episodeNumber":16,"title":"Eeny Teeny Maya Moe","airDate":"2009-04-05","airDateUtc":"2009-04-06T00:00:00Z","overview":"Moe once again searches for love and falls for a woman named Maya over the Internet. However, when Moe meets Maya face-to-face, he discovers it's more like face-to-knee, as Maya is only three feet tall.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":436,"unverifiedSceneNumbering":false,"id":3725},{"seriesId":49,"episodeFileId":2729,"seasonNumber":20,"episodeNumber":17,"title":"The Good, the Sad and the Drugly","airDate":"2009-04-19","airDateUtc":"2009-04-20T00:00:00Z","overview":"Bart falls in love with a charitable girl named Jenny, prompting Bart to behave in order to date her. Meanwhile, Lisa becomes depressed when she writes a report on Springfield's future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":437,"unverifiedSceneNumbering":false,"id":3726},{"seriesId":49,"episodeFileId":2759,"seasonNumber":20,"episodeNumber":18,"title":"Father Knows Worst","airDate":"2009-04-26","airDateUtc":"2009-04-27T00:00:00Z","overview":"Bart and Lisa start struggling in their academic and social lives at school and Homer starts monitoring them and forcing them to do better. Meanwhile, Marge discovers a sauna in the basement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":438,"unverifiedSceneNumbering":false,"id":3727},{"seriesId":49,"episodeFileId":2787,"seasonNumber":20,"episodeNumber":19,"title":"Waverly Hills 9-0-2-1-D'oh","airDate":"2009-05-03","airDateUtc":"2009-05-04T00:00:00Z","overview":"When Marge learns Springfield Elementary is the worst school in the state, she and Homer rent an apartment in the upscale Waverly Hills school district so Bart and Lisa can attend a better school. Meanwhile, Homer moves into the rented Waverly Hills apartment and gets used to the bachelor lifestyle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":439,"unverifiedSceneNumbering":false,"id":3728},{"seriesId":49,"episodeFileId":2815,"seasonNumber":20,"episodeNumber":20,"title":"Four Great Women and a Manicure","airDate":"2009-05-10","airDateUtc":"2009-05-11T00:00:00Z","overview":"Marge and Lisa visit the nail salon where they engage in a spirited debate as to whether a woman can be smart, powerful and beautiful all at the same time and spin four tales of famous women featuring famous Springfield faces: Selma as Queen Elizabeth I, Lisa as Snow White, Marge as Lady Macbeth and Maggie as Howard Roark, the idealistic architect protagonist from Ayn Rand\u2019s The Fountainhead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":440,"unverifiedSceneNumbering":false,"id":3729},{"seriesId":49,"episodeFileId":2842,"seasonNumber":20,"episodeNumber":21,"title":"Coming to Homerica","airDate":"2009-05-17","airDateUtc":"2009-05-18T00:00:00Z","overview":"When nearby Ogdenville\u2019s economy crumbles due to tainted barley discovered in Krusty\u2019s veggie burgers, the unemployed workers of Ogdenville flock to Springfield. After Mayor Quimby closes Springfield\u2019s borders and enlists private citizens to help patrol them, Homer organizes a border patrol group.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":441,"unverifiedSceneNumbering":false,"id":3730},{"seriesId":49,"episodeFileId":2268,"seasonNumber":21,"episodeNumber":1,"title":"Homer the Whopper","airDate":"2009-09-27","airDateUtc":"2009-09-28T00:00:00Z","overview":"Homer gets the lead in a movie about a superhero who can take on the powers of every superhero in any comic book he touches. To whip Homer into superhero shape, the studio hires a celebrity fitness trainer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":442,"unverifiedSceneNumbering":false,"id":3731},{"seriesId":49,"episodeFileId":2297,"seasonNumber":21,"episodeNumber":2,"title":"Bart Gets a 'Z'","airDate":"2009-10-04","airDateUtc":"2009-10-05T00:00:00Z","overview":"Mrs Krabappel is fired from Springfield Elementary after Bart spikes her coffee, causing her to make a drunken fool of herself. She is replaced by a cool new teacher, Mr. Vaughn, who is a quick hit with the kids. Bart, however, struggles with the guilt and considers telling Principal Skinner the truth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":443,"unverifiedSceneNumbering":false,"id":3732},{"seriesId":49,"episodeFileId":2319,"seasonNumber":21,"episodeNumber":3,"title":"The Great Wife Hope","airDate":"2009-10-11","airDateUtc":"2009-10-12T00:00:00Z","overview":"Mixed martial arts (MMA) gains popularity in Springfield, and Marge leads a protest against it. The promoter of a local MMA company decides to gain publicity from the controversy by challenging Marge to a match, with the promise that he will shut down if she wins.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":444,"unverifiedSceneNumbering":false,"id":3733},{"seriesId":49,"episodeFileId":14961,"seasonNumber":21,"episodeNumber":4,"title":"Treehouse of Horror XX","airDate":"2009-10-18","airDateUtc":"2009-10-19T00:00:00Z","overview":"Lisa becomes livid with Miss Hoover, and in a series of homages to classic Hitchcock sets out for deadly revenge. Next, Krusty's latest fast-food sandwich transforms news anchor Kent Brockman into an enraged zombie and twenty-eight days later, cannibal zombies have overrun Springfield. In the final frightening fable, Homer accidentally falls through a trapdoor in Moe's tavern and impales himself on the pipes of Moe's microbrewery. Moe serves the barflies a glass of delicious beer flavoured with Homer's blood and Homer, now half-man, half-brewing apparatus, returns for vengeance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":445,"unverifiedSceneNumbering":false,"id":3734},{"seriesId":49,"episodeFileId":2382,"seasonNumber":21,"episodeNumber":5,"title":"The Devil Wears Nada","airDate":"2009-11-15","airDateUtc":"2009-11-16T01:00:00Z","overview":"Marge and a group called the \"Charity Chicks\" pose for a calendar in hopes of raising money for charity, but Marge becomes the talk of the town thanks to her racy poses. Meanwhile, Carl is chosen as the newest supervisor at the nuclear power plant, and hires Homer to be his personal assistant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":446,"unverifiedSceneNumbering":false,"id":3735},{"seriesId":49,"episodeFileId":14959,"seasonNumber":21,"episodeNumber":6,"title":"Pranks and Greens","airDate":"2009-11-22","airDateUtc":"2009-11-23T01:00:00Z","overview":"Principal Skinner is getting fed up with Bart's pranks, so he informs Bart that he is not the best prankster after all. A former student named Andy Hamilton is hailed as the best prankster, and Bart sets out on a mission to track Andy down. However, when Bart finds out that Andy is a 19-year-old still in his pranking days, they become fast friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":447,"unverifiedSceneNumbering":false,"id":3736},{"seriesId":49,"episodeFileId":2441,"seasonNumber":21,"episodeNumber":7,"title":"Rednecks and Broomsticks","airDate":"2009-11-29","airDateUtc":"2009-11-30T01:00:00Z","overview":"After getting lost in a game of hide-and-seek, Lisa wanders into the field and discovers three teenage girls who are practising Wiccans. Though she is sceptical of their spells, the girls assure Lisa that they never hurt anyone and ask her to join their coven. Just before Lisa is inducted into their pact, Chief Wiggum arrives and arrests the three girls for witchcraft and Lisa becomes the star witness in the trial.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":448,"unverifiedSceneNumbering":false,"id":3737},{"seriesId":49,"episodeFileId":14927,"seasonNumber":21,"episodeNumber":8,"title":"Oh Brother, Where Bart Thou?","airDate":"2009-12-13","airDateUtc":"2009-12-14T01:00:00Z","overview":"One snowy day in Springfield, Lisa informs Bart that she and Maggie share a bond that Bart will never understand because he doesn't have a brother, so Bart asks Homer for a baby brother. When Homer denies Bart's request, Bart makes his way to the Springfield Orphanage to find what he thinks he's missing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":449,"unverifiedSceneNumbering":false,"id":3738},{"seriesId":49,"episodeFileId":14972,"seasonNumber":21,"episodeNumber":9,"title":"Thursdays with Abie","airDate":"2010-01-03","airDateUtc":"2010-01-04T01:00:00Z","overview":"Grampa is sitting on a bench waiting for his family when a thoughtful-looking man named Marshall Goldman approaches him and asks to hear about his life. Grampa tells Goldman about the time he was on a World War II battleship, which was hit by an enemy torpedo, and Goldman, a human-interest columnist, publishes it in The Springfield Shopper. Later, Grampa meets Mitch Albom and shares another story with Goldman for a follow-up article. Homer becomes jealous of Grampa's newfound fame and seeks a surrogate father. But when Homer discovers a draft of Goldman's third story, he must race to find Grampa before it is published and his life is changed forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":450,"unverifiedSceneNumbering":false,"id":3739},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":57,"title":"The Simpsons 20th Anniversary Special: in 3-D! On Ice!","airDate":"2010-01-10","airDateUtc":"2010-01-11T01:00:00Z","overview":"Academy Award-nominated filmmaker Morgan Spurlock takes on the behemoth task of documenting 20 years of the global phenomenon that is THE SIMPSONS. In his distinctive and innovative style, the unprecedented one-hour special follows Spurlock as he sets off on a cross-country globe-trotting mission combing the streets for interviews from fans young and old. His travels take him from the home of THE SIMPSONS' biggest fan to the organization at the center of THE SIMPSONS' biggest controversies to landmarks such as the birthplace of \"Groundskeeper Willie\" and the Springfield Isotopes' playing field. In addition, Spurlock talks to cast, writers and celebrities about the undying cultural obsession with THE SIMPSONS.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3284},{"seriesId":49,"episodeFileId":14957,"seasonNumber":21,"episodeNumber":10,"title":"Once Upon a Time in Springfield","airDate":"2010-01-10","airDateUtc":"2010-01-11T01:00:00Z","overview":"Krusty is approached by two network executives who want to bring on female co-star Princess Penelope to increase the show's female demographic. The onstage and behind-the-scenes rapport between Krusty and Princess Penelope grows, and before long, Krusty asks for his co-star's hand in marriage. Meanwhile, when Mr. Burns puts a stop to the free doughnuts at the plant to cut costs, Homer, Lenny and Carl decide to meet with a headhunter who specializes in nuclear workers and opens their eyes to opportunities free of draconian doughnut-cutting measures.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":451,"unverifiedSceneNumbering":false,"id":3740},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":58,"title":"Access All Areas","airDate":"2010-01-11","airDateUtc":"2010-01-12T01:00:00Z","overview":"In the first of Sky One's specials celebrating 20 years of \"The Simpsons\", Ricky Gervais takes you behind the scenes to see how the show is made, talking to those who put each episode together, plus celebrity fans like Simon Cowell and Hugh Hefner.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3285},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":59,"title":"Mischief & Mayhem","airDate":"2010-01-12","airDateUtc":"2010-01-13T01:00:00Z","overview":"In the second of Sky One's specials celebrating 20 years of \"The Simpsons\", Ricky Gervais takes a look at the vast array of Simpsons merchandise the colourful characters have inspired and catches up with some of the programme's biggest devotees.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3286},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":60,"title":"Celebrity Friends","airDate":"2010-01-13","airDateUtc":"2010-01-14T01:00:00Z","overview":"In the third of Sky One's specials celebrating 20 years of \"The Simpsons\", Ricky Gervais speaks to a selection of the huge number of celebrities who have guest-starred on the show over the years.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3287},{"seriesId":49,"episodeFileId":2557,"seasonNumber":21,"episodeNumber":11,"title":"Million Dollar Maybe","airDate":"2010-01-31","airDateUtc":"2010-02-01T01:00:00Z","overview":"Homer blows off Marge to buy a lottery ticket and winds up winning the million-dollar jackpot. Fearing how Marge will react if she finds out the reason Homer missed their date, Homer keeps his newly inherited fortune a secret and spoils his family with \u201canonymous\u201d gifts. When Bart finds out, he and Homer spend the money like it\u2019s going out of style, including buying front-row to tickets to see Coldplay in concert.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":452,"unverifiedSceneNumbering":false,"id":3741},{"seriesId":49,"episodeFileId":2579,"seasonNumber":21,"episodeNumber":12,"title":"Boy Meets Curl","airDate":"2010-02-14","airDateUtc":"2010-02-15T01:00:00Z","overview":"Homer takes Marge out for a romantic evening of ice skating and hand-holding, but upon entering the rink, they encounter a curling team practising. Marge and Homer take to the ice and discover their love for the sport, and soon after, join the curling team and compete with them in the Olympic trials. Team Springfield claims the win and moves on to the 2010 Vancouver Games where Bob Costas covers the action. Meanwhile, sleazy vendors introduce Lisa to the world of collecting Olympic pins, and before long, Lisa is hopelessly addicted.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":453,"unverifiedSceneNumbering":false,"id":3742},{"seriesId":49,"episodeFileId":14944,"seasonNumber":21,"episodeNumber":13,"title":"The Color Yellow","airDate":"2010-02-21","airDateUtc":"2010-02-22T01:00:00Z","overview":"When Miss Hoover asks her students to research their family history, Lisa is horrified to discover that most of her ancestors were bad people \u2013 a motley crew of horse thieves and deadbeats. But while rummaging through the attic, Lisa happens upon a diary kept by her ancestor, Eliza Simpson. As Eliza\u2019s story unfolds, Lisa learns that her family was part of the Underground Railroad, a group that helped slaves escape to freedom. Eliza recounts liberating a slave named Virgil, but when Lisa presents her findings at school, some of her classmates refute it, leaving Lisa determined to exonerate her family\u2019s name.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":454,"unverifiedSceneNumbering":false,"id":3743},{"seriesId":49,"episodeFileId":14920,"seasonNumber":21,"episodeNumber":14,"title":"Postcards from the Wedge","airDate":"2010-03-14","airDateUtc":"2010-03-15T00:00:00Z","overview":"When Bart fails to turn in his homework, Mrs. Krabappel sends a letter home about Bart's behaviour. Despite Bart's best efforts to intercept it, Homer reads the letter, and he and Marge visit Principal Skinner for a parent-teacher conference. Furious, Homer punishes him, but Marge takes a more sympathetic approach. When Bart realizes he can pit Homer and Marge against each other to his benefit, his scheming reaches new heights.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":455,"unverifiedSceneNumbering":false,"id":3744},{"seriesId":49,"episodeFileId":2667,"seasonNumber":21,"episodeNumber":15,"title":"Stealing First Base","airDate":"2010-03-21","airDateUtc":"2010-03-22T00:00:00Z","overview":"Principal Skinner announces that Mrs. Krabappel was called out of town and budget cuts dictate that, until she returns, the school's two fourth grade classes will merge. Bart reluctantly shares a desk with Nikki and develops a flirtatious rapport. Bart talks to Grampa about his new crush, and at Grampa's suggestion, gives Nikki a kiss. But when Nikki starts sending Bart mixed signals, he swears off women forever. Meanwhile, Lisa's classmates ostracize her for being an overachiever, and First Lady Michelle Obama, a self-professed nerd, comes to Lisa's defence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":456,"unverifiedSceneNumbering":false,"id":3745},{"seriesId":49,"episodeFileId":2697,"seasonNumber":21,"episodeNumber":16,"title":"The Greatest Story Ever D'ohed","airDate":"2010-03-28","airDateUtc":"2010-03-29T00:00:00Z","overview":"When Homer is playing noisily in the yard, it disrupts Flanders' bible-study group. Coaxed by the reverend, a frustrated Flanders takes it upon himself to redeem Homer by inviting the Simpson family on his church retreat to Jerusalem. Unappreciative of the history and culture, Homer would rather hang out at the hotel's breakfast buffet rather than tour the city. But when an eccentric tour guide takes the group to famous monuments, including the Dome of the Rock and the Wailing Wall, Homer finally proves he is not beyond salvation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":457,"unverifiedSceneNumbering":false,"id":3746},{"seriesId":49,"episodeFileId":2727,"seasonNumber":21,"episodeNumber":17,"title":"American History X-cellent","airDate":"2010-04-11","airDateUtc":"2010-04-12T00:00:00Z","overview":"When the police are called to diffuse a rowdy crowd at Mr. Burns' estate, one of the officers recognizes priceless stolen paintings on the walls, and the maniacal billionaire is taken downtown for questioning. With Mr. Burns gone, Smithers takes charge of the power plant. But when employees take advantage of his good nature, he exacts revenge by forcing the employees to work night and day. These unfair working conditions prompt Homer and his crew to devise a plan to bust out Mr. Burns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":458,"unverifiedSceneNumbering":false,"id":3747},{"seriesId":49,"episodeFileId":14975,"seasonNumber":21,"episodeNumber":18,"title":"Chief of Hearts","airDate":"2010-04-18","airDateUtc":"2010-04-19T00:00:00Z","overview":"Homer is completing his court-ordered community service when he befriends his supervisor, Chief Wiggum, by offering him one of his sandwiches. Touched by the act of kindness, Wiggum assigns the other convicts unpleasant tasks, but allows Homer to join him at the picnic table. They continue to grow close, but when the Chief gets injured during a botched bank robbery, Homer doesn't come through when Wiggum needs him the most. Meanwhile, Bart becomes addicted to Battle Ball, a Japanese game made up of plastic balls and magnetic cards, and his family and teachers try to help him kick the habit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":459,"unverifiedSceneNumbering":false,"id":3748},{"seriesId":49,"episodeFileId":2784,"seasonNumber":21,"episodeNumber":19,"title":"The Squirt and the Whale","airDate":"2010-04-25","airDateUtc":"2010-04-26T00:00:00Z","overview":"The Simpsons decide to embrace a cheaper, alternate source of energy by erecting a wind turbine in their backyard. But when Homer realizes some of the power is being directed to the local electric company, he decides to remove his home from the grid and becomes completely dependent upon an unreliable source of power. Meanwhile, a storm erupts, trapping a magnificent 150-foot-long blue whale ashore, and Lisa and Homer attempt to help the poor creature.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":460,"unverifiedSceneNumbering":false,"id":3749},{"seriesId":49,"episodeFileId":2811,"seasonNumber":21,"episodeNumber":20,"title":"To Surveil with Love","airDate":"2010-05-02","airDateUtc":"2010-05-03T00:00:00Z","overview":"A bomb squad mistakenly blows up Homer's unattended gym bag, releasing radiation into the city and authorities react by suspending civil liberties. Wiggum and his men install surveillance cameras around Springfield and round up suspected terrorists, including groundskeeper Willie, but when monitoring the nonstop flow of video imagery proves to be too much, Wiggum enlists concerned citizens to help keep the city safe. Meanwhile, Lisa becomes fed up with being blonde, so she dyes her hair a dark color.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":461,"unverifiedSceneNumbering":false,"id":3750},{"seriesId":49,"episodeFileId":2839,"seasonNumber":21,"episodeNumber":21,"title":"Moe Letter Blues","airDate":"2010-05-09","airDateUtc":"2010-05-10T00:00:00Z","overview":"As Mother's Day approaches, Moe narrates an episode in which he writes a letter to Homer, Apu and Reverend Lovejoy, who are vacationing with their children, and threatens to run away with one of their wives. While the trio tries to determine whose wife Moe is referring to, Homer, Lovejoy and Apu flashback to the intimate moments they initially ignored between Moe and Marge, Manjula and Helen Lovejoy. But when the boys return from their trip, they're in for the surprise of their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":462,"unverifiedSceneNumbering":false,"id":3751},{"seriesId":49,"episodeFileId":14936,"seasonNumber":21,"episodeNumber":22,"title":"The Bob Next Door","airDate":"2010-05-16","airDateUtc":"2010-05-17T00:00:00Z","overview":"Bart becomes convinced that his new neighbor, Walt, is his archenemy, Sideshow Bob, disguised and back for revenge. But when Marge tries to convince Bart otherwise by taking him to visit the state penitentiary, a disturbing truth is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":463,"unverifiedSceneNumbering":false,"id":3752},{"seriesId":49,"episodeFileId":2878,"seasonNumber":21,"episodeNumber":23,"title":"Judge Me Tender","airDate":"2010-05-23","airDateUtc":"2010-05-24T00:00:00Z","overview":"When Moe discovers a hidden talent for judging contests, he is approached by a television agent to join the AMERICAN IDOL judges' panel. Moe flies to Los Angeles where he tours the Fox lot and receives some sage career advice. Meanwhile, Homer drives Marge crazy when he begins hanging around the house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":464,"unverifiedSceneNumbering":false,"id":3753},{"seriesId":49,"episodeFileId":14979,"seasonNumber":22,"episodeNumber":1,"title":"Elementary School Musical","airDate":"2010-09-26","airDateUtc":"2010-09-27T00:00:00Z","overview":"Marge sends Lisa to a performing arts camp, where counselors and fellow campers inspire her to embrace her creative side; upon returning to Springfield, Lisa grows restless with her boring suburban lifestyle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":465,"unverifiedSceneNumbering":false,"id":3754},{"seriesId":49,"episodeFileId":14981,"seasonNumber":22,"episodeNumber":2,"title":"Loan-a-Lisa","airDate":"2010-10-03","airDateUtc":"2010-10-04T00:00:00Z","overview":"Lisa invests in Nelson's brand-new business venture, but soon realizes that her friend's instant success might lure him away from the classroom. Worried that his judgment might be clouded, Lisa introduces Nelson to the well-educated and successful creator of Facebook, Mark Zuckerberg, only to find out that he too dropped out of school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":466,"unverifiedSceneNumbering":false,"id":3755},{"seriesId":49,"episodeFileId":2336,"seasonNumber":22,"episodeNumber":3,"title":"MoneyBART","airDate":"2010-10-10","airDateUtc":"2010-10-11T00:00:00Z","overview":"Lisa starts coaching Bart's Little League team; Marge and Bart spend the day at an amusement park, where former MLB manager Mike Scioscia gives Bart advice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":467,"unverifiedSceneNumbering":false,"id":3756},{"seriesId":49,"episodeFileId":14964,"seasonNumber":22,"episodeNumber":4,"title":"Treehouse of Horror XXI","airDate":"2010-11-07","airDateUtc":"2010-11-08T01:00:00Z","overview":"In the 21st Treehouse of Horror episode: Bart and Milhouse discover a real-life board game that they must win to return home in \"War and Pieces\"; Lisa falls in love with a moody, preteen vampire in the Twilight parody \"Tweenlight\"; and Marge and Homer go on a honeymoon on a sailboat, and rescue a castaway named Roger who tries to kill them in the Dead Calm parody \"Master and Cadaver\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":468,"unverifiedSceneNumbering":false,"id":3757},{"seriesId":49,"episodeFileId":2390,"seasonNumber":22,"episodeNumber":5,"title":"Lisa Simpson, This Isn't Your Life","airDate":"2010-11-14","airDateUtc":"2010-11-15T01:00:00Z","overview":"Discovering that Marge was once a stellar A+ student whose grades plummeted after being distracted, Lisa fears that she will end up just like her mom unless she pledges to focus solely on academics in an encore episode. When Marge makes a secret deal allowing Lisa to attend her dream school, Lisa learns a lesson in family and altruism. Meanwhile, Bart puts Nelson Muntz in his place and unintentionally claims the title of \"School Bully\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":469,"unverifiedSceneNumbering":false,"id":3758},{"seriesId":49,"episodeFileId":2420,"seasonNumber":22,"episodeNumber":6,"title":"The Fool Monty","airDate":"2010-11-21","airDateUtc":"2010-11-22T01:00:00Z","overview":"After learning that he is suffering from multiple illnesses and has only a few weeks to live, Mr. Burns becomes distraught by the town\u2019s less-than-sensitive reaction to his announcement.\r\n\r\nFollowing an unexpected turn of events, Bart finds Mr. Burns weak and vulnerable in the wilderness and secretly takes him into the Simpsons\u2019 home.\r\nBut when Homer and Marge learn about their new houseguest, they decide it\u2019s payback time, and Lisa, determined to stand up for Mr. Burns, learns that old habits die hard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":470,"unverifiedSceneNumbering":false,"id":3759},{"seriesId":49,"episodeFileId":2448,"seasonNumber":22,"episodeNumber":7,"title":"How Munched is that Birdie in the Window?","airDate":"2010-11-28","airDateUtc":"2010-11-29T01:00:00Z","overview":"Bart helps nurse an injured pigeon back to health. After Santa's Little Helper eats the bird, Bart has a hard time coping with the loss. Worried that Bart needs some help getting over the loss, Marge and Homer take him to a therapy session with Dr. Thurston, who advises that the only cure for Bart\u2019s blues is to give away the family dog, but when the Simpsons visit the pup\u2019s new home, a shock causes them to rethink their decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":471,"unverifiedSceneNumbering":false,"id":3760},{"seriesId":49,"episodeFileId":2478,"seasonNumber":22,"episodeNumber":8,"title":"The Fight Before Christmas","airDate":"2010-12-05","airDateUtc":"2010-12-06T01:00:00Z","overview":"When the rest of the family seems to lack Christmas spirit, Marge contacts Martha Clause (Martha Stewart).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":472,"unverifiedSceneNumbering":false,"id":3761},{"seriesId":49,"episodeFileId":2509,"seasonNumber":22,"episodeNumber":9,"title":"Donnie Fatso","airDate":"2010-12-12","airDateUtc":"2010-12-13T01:00:00Z","overview":"Jon Hamm will guest star as a Federal Bureau of Investigation agent as Homer goes undercover to infiltrate Fat Tony's mob. Joe Mantegna will return as Fat Tony, and also voice his cousin Fit Tony.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":473,"unverifiedSceneNumbering":false,"id":3762},{"seriesId":49,"episodeFileId":2535,"seasonNumber":22,"episodeNumber":10,"title":"Moms I'd Like to Forget","airDate":"2011-01-09","airDateUtc":"2011-01-10T01:00:00Z","overview":"Marge reconnects with a close group of mothers she used to be friends with; Bart tries to break up their group when his playdates stop being fun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":474,"unverifiedSceneNumbering":false,"id":3763},{"seriesId":49,"episodeFileId":2567,"seasonNumber":22,"episodeNumber":11,"title":"Flaming Moe","airDate":"2011-01-16","airDateUtc":"2011-01-17T01:00:00Z","overview":"When Smithers transforms Moe's pub into a refined and trendy lounge, the establishment becomes Springfield's local gay hangout; Principal Skinner falls for the new, free-spirited music teacher (Kristen Wiig).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":475,"unverifiedSceneNumbering":false,"id":3764},{"seriesId":49,"episodeFileId":2596,"seasonNumber":22,"episodeNumber":12,"title":"Homer the Father","airDate":"2011-01-23","airDateUtc":"2011-01-24T01:00:00Z","overview":"When Homer insists Bart must earn the new dirt bike he wants, Bart comes up with a scheme; James Lipton interviews a TV cast.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":476,"unverifiedSceneNumbering":false,"id":3765},{"seriesId":49,"episodeFileId":2622,"seasonNumber":22,"episodeNumber":13,"title":"The Blue and the Gray","airDate":"2011-02-13","airDateUtc":"2011-02-14T01:00:00Z","overview":"Moe gets Homer to be his wingman, but becomes distraught when the women are drawn to Homer as well. Meanwhile, Marge discovers some gray hairs and tries a new more mature hair style to go along with it, much to Bart's dismay.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":477,"unverifiedSceneNumbering":false,"id":3766},{"seriesId":49,"episodeFileId":2649,"seasonNumber":22,"episodeNumber":14,"title":"Angry Dad: The Movie","airDate":"2011-02-20","airDateUtc":"2011-02-21T01:00:00Z","overview":"Bart and Homer make a film based on Bart's comic book character Angry Dad. The cartoon becomes a critical favorite and begins to win a number of awards, but Bart becomes upset when Homer takes all of the credit during acceptance speeches.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":478,"unverifiedSceneNumbering":false,"id":3767},{"seriesId":49,"episodeFileId":14963,"seasonNumber":22,"episodeNumber":15,"title":"The Scorpion's Tale","airDate":"2011-03-06","airDateUtc":"2011-03-07T01:00:00Z","overview":"After a field trip to the desert, Lisa discovers that the desert water mysteriously makes typically combative creatures get along, so she brings some of the water home as a souvenir. When Grampa moves in with the family after getting kicked out of the retirement home, Homer secretly tests the desert water on Grampa, who is instantly cured of his crankiness. A pharmaceutical representative (guest voice Herzog) gets word of Homer\u2019s discovery and quickly tries to replicate the water into a drug, using Grampa as the primary guinea pig. But when the pills get in the wrong hands and are sold on the black market, unexpected side effects of the new drug take an eye-popping toll on the elderly citizens of Springfield, and the Simpsons learn that their new medical cure comes with major consequences","hasFile":true,"monitored":true,"absoluteEpisodeNumber":479,"unverifiedSceneNumbering":false,"id":3768},{"seriesId":49,"episodeFileId":2705,"seasonNumber":22,"episodeNumber":16,"title":"A Midsummer's Nice Dream","airDate":"2011-03-13","airDateUtc":"2011-03-14T00:00:00Z","overview":"The town is abuzz when Cheech and Chong announce a Springfield stop on their much-anticipated reunion tour. But when Cheech and Chong take the stage in front of their loyal fans, the jokes were just not the same for Chong, so Homer steps in and delivers all the punchlines by heart. Impressed, Cheech invites Homer to go on tour with him as new duo \u201cCheech and Chunk\u201d while Chong forms a more progressive comedic team, \u201cTeach and Chong,\u201d with Principal Skinner. \r\n\r\nWhile Homer is on tour, Marge attempts to help the neighborhood cat lady and change her hoarder ways, but turns into a hoarder herself in the process, and Homer realizes that life on the road is not all high times and slapstick humor","hasFile":true,"monitored":true,"absoluteEpisodeNumber":480,"unverifiedSceneNumbering":false,"id":3769},{"seriesId":49,"episodeFileId":2734,"seasonNumber":22,"episodeNumber":17,"title":"Love is a Many Strangled Thing","airDate":"2011-03-27","airDateUtc":"2011-03-28T00:00:00Z","overview":"When Homer inadvertently humiliates Bart in front of a stadium crowd, Marge encourages Homer to enroll in a fathering enrichment class taught by therapist Dr. Zander (guest voice Rudd). Shocked to learn that Homer often strangles Bart for mischievous behavior, Dr. Zander conducts a series of treatments with the help of Kareem Abdul-Jabbar (guest-voicing as himself) to teach Homer what it feels like to be young and small. But when Bart learns that the therapy sessions have transformed Homer into a pushover, he takes advantage of Homer and becomes a school bully. Hoping therapy could also cure Bart of his bullying habits, Marge enlists Dr. Zander\u2019s help to patch their relationship","hasFile":true,"monitored":true,"absoluteEpisodeNumber":481,"unverifiedSceneNumbering":false,"id":3770},{"seriesId":49,"episodeFileId":14970,"seasonNumber":22,"episodeNumber":18,"title":"The Great Simpsina","airDate":"2011-04-10","airDateUtc":"2011-04-11T00:00:00Z","overview":"The family is greeted by folk singer Ewell Freestone (guest voice McBrayer) when they visit a peach farm, but when Marge goes overboard with peach-inspired dishes, Lisa and Bart try to get rid of the unwanted fruit. Later, Lisa becomes a magician\u2019s apprentice to the legendary Great Raymondo (guest voice Landau) who helps her develop her craft, but a schoolgirl crush clouds her judgment when she is coaxed into revealing the Great Raymondo\u2019s most famous magic trick to his phony archnemesis. But when the rival magician\u2019s act takes a risky turn, the Great Raymondo has one last trick up his sleeve and stages showdown with Ricky Jay, Penn & Teller and David Copperfield (guest-voicing as themselves), showing them why he is the master of the craft","hasFile":true,"monitored":true,"absoluteEpisodeNumber":482,"unverifiedSceneNumbering":false,"id":3771},{"seriesId":49,"episodeFileId":2790,"seasonNumber":22,"episodeNumber":19,"title":"The Real Housewives of Fat Tony","airDate":"2011-05-01","airDateUtc":"2011-05-02T00:00:00Z","overview":"Fat Tony (voice of Joe Mantegna) woos Marge's sister Selma, and they marry. Marge worries that Selma is choosing her new lifestyle over family after the whirlwind romance, but Tony invites Homer and Marge to join them on a getaway at the Jersey shore. Meanwhile, Bart develops a gift for finding truffles, much to Lisa's delight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":483,"unverifiedSceneNumbering":false,"id":3772},{"seriesId":49,"episodeFileId":2817,"seasonNumber":22,"episodeNumber":20,"title":"Homer Scissorhands","airDate":"2011-05-08","airDateUtc":"2011-05-09T00:00:00Z","overview":"After Homer discovers a genius talent for styling hair and opens his own salon, he becomes Springfield\u2019s most in-demand hair stylist. But having to listen to women\u2019s problems and gossip all day long leads Homer to believe his gift may actually be a curse. Meanwhile, when Milhouse decides to live each day to the fullest, he comes out of his shell and professes his love for Lisa, only to have his heart broken. Milhouse then catches the eye of popular fifth-grader Taffy, causing Lisa to make a bold move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":484,"unverifiedSceneNumbering":false,"id":3773},{"seriesId":49,"episodeFileId":2845,"seasonNumber":22,"episodeNumber":21,"title":"500 Keys","airDate":"2011-05-15","airDateUtc":"2011-05-16T00:00:00Z","overview":"When the Simpsons discover a collection of keys to every door in Springfield, Lisa stumbles upon an eerie hidden classroom beneath Springfield Elementary School. When she shares her discovery with Principal Skinner, the secret room mysteriously disappears and he takes the only key away. A determined Lisa uses her detective skills to lead her back to the room to solve an old school mystery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":485,"unverifiedSceneNumbering":false,"id":3774},{"seriesId":49,"episodeFileId":2875,"seasonNumber":22,"episodeNumber":22,"title":"The Ned-Liest Catch","airDate":"2011-05-22","airDateUtc":"2011-05-23T00:00:00Z","overview":"Feeling guilty for getting Mrs. Krabappel suspended after one of his school pranks, Bart helps her escape detention, and Ned Flanders winds up saving her life in the process.\r\n\r\nWhen Edna and Ned start dating, he is surprised to learn she's been with many of Springfield's men, including Homer and Aerosmith drummer Joey Kramer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":486,"unverifiedSceneNumbering":false,"id":3775},{"seriesId":49,"episodeFileId":2270,"seasonNumber":23,"episodeNumber":1,"title":"The Falcon and the D'Ohman","airDate":"2011-09-25","airDateUtc":"2011-09-26T00:00:00Z","overview":"Homer befriends Wayne, a reserved security guard recently hired by the nuclear power plant. Plagued by violent flashbacks from his past as a CIA agent, he must overcome his tortured nightmares to save Homer from a Ukranian terrorist. Meanwhile, Marge fantasizes about being a contestant on \"Top Chef\" hosted by Tom Colicchio, and the future of Springfield's hottest \"it\" couple Nedna, Edna Krabappel and Ned Flanders, will be revealed after months of online fan voting and speculation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":487,"unverifiedSceneNumbering":false,"id":3776},{"seriesId":49,"episodeFileId":2301,"seasonNumber":23,"episodeNumber":2,"title":"Bart Stops to Smell the Roosevelts","airDate":"2011-10-02","airDateUtc":"2011-10-03T00:00:00Z","overview":"Superintendent Chalmers reveals his hero as former President Theodore Roosevelt, who makes an appearance in the episode with the use of archival recordings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":488,"unverifiedSceneNumbering":false,"id":3777},{"seriesId":49,"episodeFileId":2328,"seasonNumber":23,"episodeNumber":3,"title":"Treehouse of Horror XXII","airDate":"2011-10-30","airDateUtc":"2011-10-31T00:00:00Z","overview":"Simpsons' twentysecond Halloween show.\r\n\r\nThe Diving Bell and the Butterball:\r\nHomer is bitten by a radioactive spider.\r\n\r\nDial \"D\" for Diddly:\r\nNed becomes a serial killer.\r\n\r\nIn the Na'Vi:\r\nBart and Milhouse in an Avatar spoof.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":489,"unverifiedSceneNumbering":false,"id":3778},{"seriesId":49,"episodeFileId":2357,"seasonNumber":23,"episodeNumber":4,"title":"Replaceable You","airDate":"2011-11-06","airDateUtc":"2011-11-07T01:00:00Z","overview":"Bart\u2019s science fair project, a mechanical baby seal, outshines Lisa\u2019s brainy asteroid model and quickly becomes a popular pet among the retirement home patrons. Meanwhile, Homer\u2019s new and eager assistant Roz, steals Homer\u2019s job, forcing him to team up with Flanders to reveal her true colors and evil past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":490,"unverifiedSceneNumbering":false,"id":3779},{"seriesId":49,"episodeFileId":2387,"seasonNumber":23,"episodeNumber":5,"title":"The Food Wife","airDate":"2011-11-13","airDateUtc":"2011-11-14T01:00:00Z","overview":"Marge takes Bart and Lisa on a weekend excursion, and when an unexpected restaurant detour awakens their taste buds, fellow foodies Amuse Bruce and Fois Garth (guest voices Tim Heidecker and Eric Wareheim) inspire them to start their own food blog, \u201cThe Three Mouthketeers.\u201d","hasFile":true,"monitored":true,"absoluteEpisodeNumber":491,"unverifiedSceneNumbering":false,"id":3780},{"seriesId":49,"episodeFileId":2416,"seasonNumber":23,"episodeNumber":6,"title":"The Book Job","airDate":"2011-11-20","airDateUtc":"2011-11-21T01:00:00Z","overview":"Lisa becomes disheartened when she learns the shocking truth behind the \u201ctween lit\u201d industry and her beloved fantasy novel characters, but Homer decides to cash in on the craze and forms a team to group-write the next \u201ctween lit\u201d hit, with the king of fantasy, Neil Gaiman, lending his expertise to the effort.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":492,"unverifiedSceneNumbering":false,"id":3781},{"seriesId":49,"episodeFileId":2444,"seasonNumber":23,"episodeNumber":7,"title":"The Man in the Blue Flannel Pants","airDate":"2011-11-27","airDateUtc":"2011-11-28T01:00:00Z","overview":"The Simpsons host a tastemaker party at their home to promote Absolut Krusty, Krusty the Clown's own brand of liquor. Mr. Burns takes notice of the party's success and decides to promote Homer to \"Account Man\" for the Springfield Nuclear Plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":493,"unverifiedSceneNumbering":false,"id":3782},{"seriesId":49,"episodeFileId":2473,"seasonNumber":23,"episodeNumber":8,"title":"The Ten-Per-Cent Solution","airDate":"2011-12-04","airDateUtc":"2011-12-05T01:00:00Z","overview":"Krusty the Clown is fired from his show and gets a new agent named Annie to help him stage a comeback.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":494,"unverifiedSceneNumbering":false,"id":3783},{"seriesId":49,"episodeFileId":2501,"seasonNumber":23,"episodeNumber":9,"title":"Holidays of Future Passed","airDate":"2011-12-11","airDateUtc":"2011-12-12T01:00:00Z","overview":"In this futuristic holiday episode, Bart is a deadbeat dad living in Springfield Elementary (which is now an apartment complex instead of a school) with Principal Skinner as his landlord. Meanwhile, a pregnant Maggie goes into labor during a family dinner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":495,"unverifiedSceneNumbering":false,"id":3784},{"seriesId":49,"episodeFileId":2531,"seasonNumber":23,"episodeNumber":10,"title":"Politically Inept, with Homer Simpson","airDate":"2012-01-08","airDateUtc":"2012-01-09T01:00:00Z","overview":"Homer lands his own political talk show and becomes the spokesperson for the Gravy Movement. He then is asked to select the next Republican nominee for President and officially endorses right-wing rock star Ted Nugent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":496,"unverifiedSceneNumbering":false,"id":3785},{"seriesId":49,"episodeFileId":2561,"seasonNumber":23,"episodeNumber":11,"title":"The D'oh-cial Network","airDate":"2012-01-15","airDateUtc":"2012-01-16T01:00:00Z","overview":"Lisa creates her own social networking service, SpringFace, and subsequently makes everyone addicted to the internet. Meanwhile, Patty and Selma challenge the Winklevoss twins at the 2012 Summer Olympics.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":497,"unverifiedSceneNumbering":false,"id":3786},{"seriesId":49,"episodeFileId":2589,"seasonNumber":23,"episodeNumber":12,"title":"Moe Goes from Rags to Riches","airDate":"2012-01-29","airDateUtc":"2012-01-30T01:00:00Z","overview":"After Moe is heckled for not having any real companions, Moe's best friend and beloved bar rag narrates his incredible thousand-year journey to Springfield.\r\nBeginning in the Middle Ages, the bar rag was loomed into a beautiful and ornate medieval tapestry and traveled around the globe through the hands of royalty before finding himself found himself at Moe's Tavern.\r\n\r\nMeanwhile, Bart begs Milhouse for forgiveness after the two friends get into a tiff, and when the bar rag goes missing, Moe realizes that he has more friends than he thought.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":498,"unverifiedSceneNumbering":false,"id":3787},{"seriesId":49,"episodeFileId":2616,"seasonNumber":23,"episodeNumber":13,"title":"The Daughter Also Rises","airDate":"2012-02-12","airDateUtc":"2012-02-13T01:00:00Z","overview":"Marge and Lisa's mother-daughter Valentine's Day plans take a turn when Lisa meets Nick, an intellectual romantic who shares the same passion for culture, history and literature. Lisa and Nick fall head over heels for each other in a fairytale romance and make a secret getaway to Mulberry Island to profess their eternal love.\r\n\r\nMeanwhile, Bart and Milhouse are inspired by the hosts of \"MythCrackers\" to \"crack\" Springfield Elementary's own legends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":499,"unverifiedSceneNumbering":false,"id":3788},{"seriesId":49,"episodeFileId":2647,"seasonNumber":23,"episodeNumber":14,"title":"At Long Last Leave","airDate":"2012-02-19","airDateUtc":"2012-02-20T01:00:00Z","overview":"The Simpsons are evicted from Springfield and join an off-the-grid community outside of town.\r\nBut when Homer and Marge try to sneak back into Springfield, they are welcomed with hostility from their former friends and neighbors and begin to appreciate their new and more accepting home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":500,"unverifiedSceneNumbering":false,"id":3789},{"seriesId":49,"episodeFileId":2673,"seasonNumber":23,"episodeNumber":15,"title":"Exit Through the Kwik-E-Mart","airDate":"2012-03-04","airDateUtc":"2012-03-05T01:00:00Z","overview":"In order to get back at his dad, Bart goes undercover as a graffiti street artist and plasters Homer's unflattering image all over Springfield. But one night, Bart and Milhouse get caught in the act by established street artists Shepard Fairey, Ron English, Kenny Scharf and Robbie Conal (guest voicing as themselves), and to Bart's surprise, they invite him to exhibit his satirical artwork in his very own gallery show.\r\n\r\nMeanwhile, a hip, new health food superstore opens in Springfield that threatens to put Apu and the Kwik-E-Mart out of business.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":501,"unverifiedSceneNumbering":false,"id":3790},{"seriesId":49,"episodeFileId":2701,"seasonNumber":23,"episodeNumber":16,"title":"How I Wet Your Mother","airDate":"2012-03-11","airDateUtc":"2012-03-12T00:00:00Z","overview":"Karma gets the best of Homer after he gets his friends in trouble, and as a result, his bedwetting problem worsens. The family goes on a mission to infiltrate his dreams to search for clues in his subconscious to determine the source of his problem. But just as things take a dangerous turn in the dream, a figure from Homer's past appears, and he is finally reassured that the fond memories of his mother Mona (guest voice Glenn Close) remain alive, giving him just the right amount of reassurance to cure him of his problem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":502,"unverifiedSceneNumbering":false,"id":3791},{"seriesId":49,"episodeFileId":14982,"seasonNumber":23,"episodeNumber":17,"title":"Them, Robot","airDate":"2012-03-18","airDateUtc":"2012-03-19T00:00:00Z","overview":"Mr. Burns replaces all of Springfield Power Plant's employees with robots (guest voice Brent Spiner) but decides to keep Homer as the sole human worker. With unemployment at an all-time high and mechanical arms operating the workplace, Springfield becomes a dismal and humorless place. But when Homer's machine-programmed peers start to turn on the community and his former real-life employees come to the rescue, they all realize that robots can't replace human friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":503,"unverifiedSceneNumbering":false,"id":3792},{"seriesId":49,"episodeFileId":14973,"seasonNumber":23,"episodeNumber":18,"title":"Beware My Cheating Bart","airDate":"2012-04-15","airDateUtc":"2012-04-16T00:00:00Z","overview":"When Bart supervises Jimbo's girlfriend at a movie, she develops a crush on him; Homer is persuaded to buy a state-of-the-art treadmill with a television, and he becomes obsessed with watching it from the treadmill, but not actually working out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":504,"unverifiedSceneNumbering":false,"id":3793},{"seriesId":49,"episodeFileId":2785,"seasonNumber":23,"episodeNumber":19,"title":"A Totally Fun Thing That Bart Will Never Do Again","airDate":"2012-04-29","airDateUtc":"2012-04-30T00:00:00Z","overview":"When Bart gets his wish for a family vacation, he becomes determined to make it last forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":505,"unverifiedSceneNumbering":false,"id":3794},{"seriesId":49,"episodeFileId":2813,"seasonNumber":23,"episodeNumber":20,"title":"The Spy Who Learned Me","airDate":"2012-05-06","airDateUtc":"2012-05-07T00:00:00Z","overview":"Homer embarrasses Marge at the movies during a film featuring superspy Stradivarius Cain, and his apologies fall on deaf ears. In an effort to become a better husband, he seeks help from someone he believes to be the real Stradivarius Cain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":506,"unverifiedSceneNumbering":false,"id":3795},{"seriesId":49,"episodeFileId":2840,"seasonNumber":23,"episodeNumber":21,"title":"Ned 'n' Edna's Blend","airDate":"2012-05-13","airDateUtc":"2012-05-14T00:00:00Z","overview":"When word gets out that Edna and Ned have secretly wed, Marge offers to throw them a party, but bringing folks together makes them all realize that no marriage is perfect. Meanwhile, Edna tries to help Ned's children become more socially acceptable. Watch the credits... there's a treat!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":507,"unverifiedSceneNumbering":false,"id":3796},{"seriesId":49,"episodeFileId":2867,"seasonNumber":23,"episodeNumber":22,"title":"Lisa Goes Gaga","airDate":"2012-05-20","airDateUtc":"2012-05-21T00:00:00Z","overview":"In the Season 23 finale, Lisa tries to boost her popularity by ghost writing positive things about herself on the school blog. The effort fails miserably, until a psychic force tells Lady Gaga (who provides her own voice) that Lisa needs her help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":508,"unverifiedSceneNumbering":false,"id":3797},{"seriesId":49,"episodeFileId":10223,"seasonNumber":24,"episodeNumber":1,"title":"Moonshine River","airDate":"2012-09-30","airDateUtc":"2012-10-01T00:00:00Z","overview":"Bart will be visited by many of his past girlfriends. Zooey Deschanel, Anne Hathaway, Sarah Silverman, Natalie Portman, and Sarah Michelle Gellar will guest star, reprising their roles as Mary Spuckler, Jenny, Nikki McKenna, Darcy, and Gina Vendetti.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":509,"unverifiedSceneNumbering":false,"id":3798},{"seriesId":49,"episodeFileId":10224,"seasonNumber":24,"episodeNumber":2,"title":"Treehouse of Horror XXIII","airDate":"2012-10-07","airDateUtc":"2012-10-08T00:00:00Z","overview":"Marge and Homer go back to ancient Mayan times and learn that the world will come to an end in 2012; and a glitch in the Springfield Subatomic Supercollider wreaks havoc on the city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":510,"unverifiedSceneNumbering":false,"id":3799},{"seriesId":49,"episodeFileId":10225,"seasonNumber":24,"episodeNumber":3,"title":"Adventures in Baby-Getting","airDate":"2012-11-04","airDateUtc":"2012-11-05T01:00:00Z","overview":"When Marge's car falls into a sink hole, she buys the perfect replacement to fit her family of five. But she quickly grows to hate it because, as she tells a shocked Homer, the car would be too small if she wanted to have another baby. Meanwhile, Bart and his friends are determined to find out what secret Lisa is keeping when Bart finds her cryptic messages and follows her sneaking off downtown for covert meetings after school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":511,"unverifiedSceneNumbering":false,"id":3800},{"seriesId":49,"episodeFileId":10226,"seasonNumber":24,"episodeNumber":4,"title":"Gone Abie Gone","airDate":"2012-11-11","airDateUtc":"2012-11-12T01:00:00Z","overview":"Homer and Marge try to track down Grampa by following clues from his past, while Lisa struggles to resist gambling away her college fund.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":512,"unverifiedSceneNumbering":false,"id":3801},{"seriesId":49,"episodeFileId":10227,"seasonNumber":24,"episodeNumber":5,"title":"Penny-Wiseguys","airDate":"2012-11-18","airDateUtc":"2012-11-19T01:00:00Z","overview":"Homer is shocked to discover that his bowling teammate, Dan Gillick (guest voice Steve Carell), is an accountant for Fat Tony (guest voice Joe Mantegna) and his mob. Meanwhile, Lisa adds insects to her vegetarian diet after passing out during a saxophone solo, but starts questioning her decision when bugs start pleading for mercy in her dreams.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":513,"unverifiedSceneNumbering":false,"id":3802},{"seriesId":49,"episodeFileId":10228,"seasonNumber":24,"episodeNumber":6,"title":"A Tree Grows in Springfield","airDate":"2012-11-25","airDateUtc":"2012-11-26T01:00:00Z","overview":"Homer wins a MyPad at the school auction and quickly becomes obessed with it. He goes into a funk when he breaks it, until Ned Flanders discovers a miracle tree in the Simpsons' back garden.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":514,"unverifiedSceneNumbering":false,"id":3803},{"seriesId":49,"episodeFileId":10229,"seasonNumber":24,"episodeNumber":7,"title":"The Day the Earth Stood Cool","airDate":"2012-12-09","airDateUtc":"2012-12-10T01:00:00Z","overview":"A \"cool family\" from Portland moves in next door to the Simpsons. Homer is desperate to befriend them, while Marge is skeptical, worried about some of their more eccentric qualities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":515,"unverifiedSceneNumbering":false,"id":3804},{"seriesId":49,"episodeFileId":10230,"seasonNumber":24,"episodeNumber":8,"title":"To Cur With Love","airDate":"2012-12-16","airDateUtc":"2012-12-17T01:00:00Z","overview":"A distracted Homer allows Santa's Little Helper to get loose, and the family are furious with his unconcerned attitude, until Grandpa shines some light on things by telling them the story of Homer's childhood pup, Bongo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":516,"unverifiedSceneNumbering":false,"id":3805},{"seriesId":49,"episodeFileId":10231,"seasonNumber":24,"episodeNumber":9,"title":"Homer Goes to Prep School","airDate":"2013-01-06","airDateUtc":"2013-01-07T01:00:00Z","overview":"With the end of the world looming, Homer decides to join an off the grid group of survivalists who've set up a secret sanctuary outside of Springfield to prep for the apocalypse. However, a skeptical Marge is suspicious of the plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":517,"unverifiedSceneNumbering":false,"id":3806},{"seriesId":49,"episodeFileId":10232,"seasonNumber":24,"episodeNumber":10,"title":"A Test Before Trying","airDate":"2013-01-13","airDateUtc":"2013-01-14T01:00:00Z","overview":"Springfield Elementary must depend on Bartificial intelligence when it's threatened with closure after doing poorly on standardized testing, and since Bart's the only one who missed the exam, it's up to him to raise the average grade to save the school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":518,"unverifiedSceneNumbering":false,"id":3807},{"seriesId":49,"episodeFileId":10233,"seasonNumber":24,"episodeNumber":11,"title":"The Changing of the Guardian","airDate":"2013-01-27","airDateUtc":"2013-01-28T01:00:00Z","overview":"A tornado inspires Homer and Marge look for guardians for the kids in case something bad happens; Marge questions the motives of potential guardians.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":519,"unverifiedSceneNumbering":false,"id":3808},{"seriesId":49,"episodeFileId":10234,"seasonNumber":24,"episodeNumber":12,"title":"Love is a Many-Splintered Thing","airDate":"2013-02-10","airDateUtc":"2013-02-11T01:00:00Z","overview":"Bart's dream girl, Mary Spuckler, comes to town, but his failure to pay her enough attention is having a negative impact on their relationship. Meanwhile, Homer once again runs afoul of Marge and lands in the doghouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":520,"unverifiedSceneNumbering":false,"id":3809},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":61,"title":"The Longest Daycare","airDate":"2013-02-17","airDateUtc":"2013-02-18T01:00:00Z","overview":"The youngest member of the Simpson family has a big adventure at the 'Ayn Rand School for Tots' in this Oscar-nominated animated short film.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":3288},{"seriesId":49,"episodeFileId":10235,"seasonNumber":24,"episodeNumber":13,"title":"Hardly Kirk-ing","airDate":"2013-02-17","airDateUtc":"2013-02-18T01:00:00Z","overview":"Bart and Milhouse explore the perks of being an adult when a shaving accident leaves Milhouse looking exactly like his father, Kirk.\r\n\r\nMarge fears Maggie is slipping into the clutches of children's television.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":521,"unverifiedSceneNumbering":false,"id":3810},{"seriesId":49,"episodeFileId":10236,"seasonNumber":24,"episodeNumber":14,"title":"Gorgeous Grampa","airDate":"2013-03-03","airDateUtc":"2013-03-04T01:00:00Z","overview":"Homer's obsession with the TV show \"Storage Battles\" leads the family to discover Grampa's past identity as \"Gorgeous Godfrey,\" the most feared, villainous man in pro-wrestling history.\r\n\r\nWhat's more amazing, he was once revered by a young Montgomery Burns, who now convinces Grampa to get back in the ring. But when Bart starts to adopt some of his grandfather's former cheating ways, Grampa must reconcile with his past before it's too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":522,"unverifiedSceneNumbering":false,"id":3811},{"seriesId":49,"episodeFileId":10237,"seasonNumber":24,"episodeNumber":15,"title":"Black-Eyed, Please","airDate":"2013-03-10","airDateUtc":"2013-03-11T00:00:00Z","overview":"When Flanders' parents prove to prefer Homer's company to his, he jealously responds by giving Homer a shiner, and then tries desperately to reconcile with him. Meanwhile, Lisa is at a loss to understand why a new substitute teacher is bullying her for no obvious reason.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":523,"unverifiedSceneNumbering":false,"id":3812},{"seriesId":49,"episodeFileId":10238,"seasonNumber":24,"episodeNumber":16,"title":"Dark Knight Court","airDate":"2013-03-17","airDateUtc":"2013-03-18T00:00:00Z","overview":"Lisa comes to her brother's defense when Bart is accused of an Easter prank involving the school marching band, the horn section and some rotten eggs. Meanwhile, Mr. Burns seizes the opportunity to realize his lifelong ambition to become a superhero.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":524,"unverifiedSceneNumbering":false,"id":3813},{"seriesId":49,"episodeFileId":10239,"seasonNumber":24,"episodeNumber":17,"title":"What Animated Women Want","airDate":"2013-04-14","airDateUtc":"2013-04-15T00:00:00Z","overview":"Homer's behavior once again lands him in hot water with Marge and he needs to fathom a way to save his marriage, while a dose of \"A Streetcar Named Desire\" drives Milhouse to affect a Marlon Brando-esque bad-boy demeanor in an effort to impress Lisa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":525,"unverifiedSceneNumbering":false,"id":3814},{"seriesId":49,"episodeFileId":10240,"seasonNumber":24,"episodeNumber":18,"title":"Pulpit Friction","airDate":"2013-04-28","airDateUtc":"2013-04-29T00:00:00Z","overview":"Homer is recruited to be a deacon by the cutting-edge new pastor. The dry cleaner mistakenly switches Marge's wedding dress for one of Krusty's costumes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":526,"unverifiedSceneNumbering":false,"id":3815},{"seriesId":49,"episodeFileId":10241,"seasonNumber":24,"episodeNumber":19,"title":"Whiskey Business","airDate":"2013-05-05","airDateUtc":"2013-05-06T00:00:00Z","overview":"Moe is flying high after venture capitalists take a shine to his homemade whiskey, while Grampa, after injuring himself babysitting Bart, decides he'd rather be looked after by his grandson than be at the nursing home. Also, Lisa voices her displeasure at a hologram of music legend Bleeding Gums Murphy, and Sonny Rollins (as himself) shows up to ask her to stop all that jazz about boycotting a record label.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":527,"unverifiedSceneNumbering":false,"id":3816},{"seriesId":49,"episodeFileId":10242,"seasonNumber":24,"episodeNumber":20,"title":"The Fabulous Faker Boy","airDate":"2013-05-12","airDateUtc":"2013-05-13T00:00:00Z","overview":"Marge encourages Bart to explore his creative side, and his initial reticence quickly subsides when she hires Slava\u2019s beautiful daughter, Zhenya, as his new piano instructor.\r\n\r\nHomer is shocked when he loses the last two hairs on his head, and employs a wide variety of headgear to try and keep his new found baldness a secret from Marge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":528,"unverifiedSceneNumbering":false,"id":3817},{"seriesId":49,"episodeFileId":10243,"seasonNumber":24,"episodeNumber":21,"title":"The Saga of Carl","airDate":"2013-05-19","airDateUtc":"2013-05-20T00:00:00Z","overview":"Homer, Moe, Lenny and Carl win $200,000 in the Springfield Lottery. But when Carl takes off to Iceland \u2013 his homeland \u2013 with all the winnings, the guys embark on a Nordic adventure to get the cash back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":529,"unverifiedSceneNumbering":false,"id":3818},{"seriesId":49,"episodeFileId":10244,"seasonNumber":24,"episodeNumber":22,"title":"Dangers on a Train","airDate":"2013-05-19","airDateUtc":"2013-05-20T00:25:00Z","overview":"Marge mistakes Sassy Madison, a swinging-type website, for Dolly Madison, a cupcake site, not realizing it\u2019s a destination for married people seeking liaisons. On the site, she meets the charming Ben, who pursues her after they learn they share mutual love of TV series Upton Rectory.\r\nMeanwhile, Bart and Homer obtain a small steam train from the now closed down Itchy & Scratchy Land.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":530,"unverifiedSceneNumbering":false,"id":3819},{"seriesId":49,"episodeFileId":2266,"seasonNumber":25,"episodeNumber":1,"title":"Homerland","airDate":"2013-09-29","airDateUtc":"2013-09-30T00:00:00Z","overview":"A parody of \"Homeland\". Homer starts to act strangely polite after returning from a nuclear power plant convention, prompting a suspicious Lisa to ask an intense FBI agent named Annie to help her solve this mystery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":531,"unverifiedSceneNumbering":false,"id":3820},{"seriesId":49,"episodeFileId":2289,"seasonNumber":25,"episodeNumber":2,"title":"Treehouse of Horror XXIV","airDate":"2013-10-06","airDateUtc":"2013-10-07T00:00:00Z","overview":"In \"Oh The Places You'll D'oh,\" the first of three spine-tingling stories, Homer rides around Springfield wreaking havoc as \"The Fat in The Hat\" in a rhyming Dr. Seuss-ian tale. In \"Dead and Shoulders,\" Bart is beheaded during a kite accident, his head is attached to Lisa's body and they must live together as one. The final terrifying tale, \"Freaks no Geeks,\" features Mr. Burns' traveling circus, The Burnsum and Bailey Circus, which has stopped in Springfieldland in the 1930s. Trapeze artist Marge and Strong Man Homer are performers and things go awry when circus freak Moe starts to make advances towards Marge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":532,"unverifiedSceneNumbering":false,"id":3821},{"seriesId":49,"episodeFileId":2318,"seasonNumber":25,"episodeNumber":3,"title":"Four Regrettings and a Funeral","airDate":"2013-11-03","airDateUtc":"2013-11-04T01:00:00Z","overview":"Kent Brockman has decided that local news has been a real mistake and a terrible career move for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":533,"unverifiedSceneNumbering":false,"id":3822},{"seriesId":49,"episodeFileId":2353,"seasonNumber":25,"episodeNumber":4,"title":"YOLO","airDate":"2013-11-10","airDateUtc":"2013-11-11T01:00:00Z","overview":"Marge encourages Homer to cross an item off an old to-do list by inviting an old pen pal to visit; Lisa institutes an honor code at school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":534,"unverifiedSceneNumbering":false,"id":3823},{"seriesId":49,"episodeFileId":2379,"seasonNumber":25,"episodeNumber":5,"title":"Labor Pains","airDate":"2013-11-17","airDateUtc":"2013-11-18T01:00:00Z","overview":"Homer delivers a baby in an elevator. When the mother names the child Homer Jr., he develops a deep emotional bond with the kid. Lisa is recruited by the cheerleaders of the local pro football team.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":535,"unverifiedSceneNumbering":false,"id":3824},{"seriesId":49,"episodeFileId":2412,"seasonNumber":25,"episodeNumber":6,"title":"The Kid is All Right","airDate":"2013-11-24","airDateUtc":"2013-11-25T01:00:00Z","overview":"Lisa finally makes a new best friend, Isabel Gutierrez, only to discover that she's a Republican and her opponent in the campaign for second grade class representative.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":536,"unverifiedSceneNumbering":false,"id":3825},{"seriesId":49,"episodeFileId":2434,"seasonNumber":25,"episodeNumber":7,"title":"Yellow Subterfuge","airDate":"2013-12-08","airDateUtc":"2013-12-09T01:00:00Z","overview":"Principal Skinner promises the students that the best-behaved among them can take a ride in a submarine. When Skinner gives all the kids a clean slate, Bart believes even his own past indiscretions will be forgotten if he doesn't get into any more trouble. Meanwhile Lisa tries to help a cash-poor Krusty to turn things around by suggesting he sell the foreign rights to his shows.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":537,"unverifiedSceneNumbering":false,"id":3826},{"seriesId":49,"episodeFileId":2463,"seasonNumber":25,"episodeNumber":8,"title":"White Christmas Blues","airDate":"2013-12-15","airDateUtc":"2013-12-16T01:00:00Z","overview":"Springfield is inundated with holiday revelers after the nuclear power plant springs a radiation leak, causing snow to fall all over town. When the tourists drive up Christmas shopping prices, Marge opens up the Simpsons' house to boarders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":538,"unverifiedSceneNumbering":false,"id":3827},{"seriesId":49,"episodeFileId":2494,"seasonNumber":25,"episodeNumber":9,"title":"Steal This Episode","airDate":"2014-01-05","airDateUtc":"2014-01-06T01:00:00Z","overview":"Homer becomes annoyed with movie theaters, so Bart teaches him how to download movies illegally. Homer is delighted with his discovery of free movies until he's caught for piracy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":539,"unverifiedSceneNumbering":false,"id":3828},{"seriesId":49,"episodeFileId":2527,"seasonNumber":25,"episodeNumber":10,"title":"Married to the Blob","airDate":"2014-01-12","airDateUtc":"2014-01-13T01:00:00Z","overview":"Comic Book Guy realizes his comics are nothing if he can't share them with anyone. Then he meets Kumiko, a Japanese woman writing an autobiographical manga, and he seeks out Homer's advice on how to date her, ending happily for everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":540,"unverifiedSceneNumbering":false,"id":3829},{"seriesId":49,"episodeFileId":2559,"seasonNumber":25,"episodeNumber":11,"title":"Specs and the City","airDate":"2014-01-26","airDateUtc":"2014-01-27T01:00:00Z","overview":"Mr. Burns gives high-tech eyeglasses to all of his employees in order to spy on them. Homer loves the enhanced reality of his new gadget - that is, until Marge tries them on and he finds out she's seeing a marriage counselor. Meanwhile, Bart takes a stand against buying Nelson a Valentine's Day card, despite buying one for every other kid in class, and Nelson delivers him an ultimatum: find him the best Valentine's Day gift ever or be fed to the classroom electric pencil sharpener.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":541,"unverifiedSceneNumbering":false,"id":3830},{"seriesId":49,"episodeFileId":2587,"seasonNumber":25,"episodeNumber":12,"title":"Diggs","airDate":"2014-03-09","airDateUtc":"2014-03-10T00:00:00Z","overview":"Bart encounters Diggs, a strange older boy with a passion for falconry, among other things.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":542,"unverifiedSceneNumbering":false,"id":3831},{"seriesId":49,"episodeFileId":2608,"seasonNumber":25,"episodeNumber":13,"title":"The Man Who Grew Too Much","airDate":"2014-03-09","airDateUtc":"2014-03-10T00:25:00Z","overview":"On a research trip, Lisa is shocked to discover that Sideshow Bob is now the chief scientist at a massive chemical engineering company, but her fears are allayed as she becomes enamored with his likeminded appreciation of high-culture. Meanwhile, Marge's attempt to preach healthy sexual practices to a teen church group goes awry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":543,"unverifiedSceneNumbering":false,"id":3832},{"seriesId":49,"episodeFileId":2641,"seasonNumber":25,"episodeNumber":14,"title":"The Winter of His Content","airDate":"2014-03-16","airDateUtc":"2014-03-17T00:00:00Z","overview":"When the retirement home closes, Marge invites Grampa and two other elderly folks to stay at the Simpsons' house. Nelson becomes Bart's friend, after Bart defends him for wearing used underwear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":544,"unverifiedSceneNumbering":false,"id":3833},{"seriesId":49,"episodeFileId":2664,"seasonNumber":25,"episodeNumber":15,"title":"The War of Art","airDate":"2014-03-23","airDateUtc":"2014-03-24T00:00:00Z","overview":"After Lisa's new pet guinea pig destroys the Simpsons' living room art, Marge falls in love with a beautiful painting at the Van Houten's yard sale, which Homer snaps up for 20 bucks. But, when Lisa reveals it's by a famous early 20th century painter and could be worth $100,000, Marge and Homer face a dilemma: split the money with the Van Houtens, or keep the cash as a \"cushion\" for their kids.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":545,"unverifiedSceneNumbering":false,"id":3834},{"seriesId":49,"episodeFileId":2694,"seasonNumber":25,"episodeNumber":16,"title":"You Don't Have to Live Like a Referee","airDate":"2014-03-30","airDateUtc":"2014-03-31T00:00:00Z","overview":"The Simpsons go to South America to watch the 2014 FIFA World Cup. Homer becomes a referee and runs into trouble when local gangsters pressure him into match-fixing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":546,"unverifiedSceneNumbering":false,"id":3835},{"seriesId":49,"episodeFileId":2725,"seasonNumber":25,"episodeNumber":17,"title":"Luca$","airDate":"2014-04-06","airDateUtc":"2014-04-07T00:00:00Z","overview":"Lisa dates a boy named Luca$ Bortner, who wants to be a competitive eater. Marge becomes concerned that Lisa is trying to marry a boy that's just like Homer. Bart helps Snake Jailbird break out of jail and starts to receive gifts from him, making Milhouse jealous.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":547,"unverifiedSceneNumbering":false,"id":3836},{"seriesId":49,"episodeFileId":2750,"seasonNumber":25,"episodeNumber":18,"title":"Days of Future Future","airDate":"2014-04-13","airDateUtc":"2014-04-14T00:00:00Z","overview":"Set in the future, Homer has a new clone for every time he dies. Lisa is married to a zombie version of Milhouse, while Bart deals with custody issues with his ex-wife, Jenda. Each defines what love means to them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":548,"unverifiedSceneNumbering":false,"id":3837},{"seriesId":49,"episodeFileId":2776,"seasonNumber":25,"episodeNumber":19,"title":"What to Expect When Bart's Expecting","airDate":"2014-04-27","airDateUtc":"2014-04-28T00:00:00Z","overview":"When Bart develops powers that help Springfield couples conceive, the mafia kidnaps Homer and Bart in hopes of birthing a thoroughbred race horse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":549,"unverifiedSceneNumbering":false,"id":3838},{"seriesId":49,"episodeFileId":2809,"seasonNumber":25,"episodeNumber":20,"title":"Brick Like Me","airDate":"2014-05-04","airDateUtc":"2014-05-05T00:00:00Z","overview":"Homer wakes up in a world where his family and everyone in Springfield are made of Lego, and he must \"put together\" how he got there, and figure out how to get home before he's stuck in a world of bricks forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":550,"unverifiedSceneNumbering":false,"id":3839},{"seriesId":49,"episodeFileId":2837,"seasonNumber":25,"episodeNumber":21,"title":"Pay Pal","airDate":"2014-05-11","airDateUtc":"2014-05-12T00:00:00Z","overview":"Marge swears off befriending any more couples when Homer offends their charming new British neighbors, but when Lisa declares that she, too, doesn't need friends, Marge reconsiders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":551,"unverifiedSceneNumbering":false,"id":3840},{"seriesId":49,"episodeFileId":2860,"seasonNumber":25,"episodeNumber":22,"title":"The Yellow Badge of Cowardge","airDate":"2014-05-18","airDateUtc":"2014-05-19T00:00:00Z","overview":"Bart is plagued with guilt when he wins the annual \"last day of school\" race around Springfield Elementary, with assistance from Nelson, who beats up frontrunner Milhouse. Meanwhile, Homer tries to bring back the annual 4th of July fireworks display after it's canceled for budget reasons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":552,"unverifiedSceneNumbering":false,"id":3841},{"seriesId":49,"episodeFileId":2255,"seasonNumber":26,"episodeNumber":1,"title":"Clown in the Dumps","airDate":"2014-09-28","airDateUtc":"2014-09-29T00:00:00Z","overview":"A Springfield resident dies, Krusty retires after he's offended by a comedy cable channel roast of him, and Lisa tries to protect Homer from getting hurt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":553,"unverifiedSceneNumbering":false,"id":3842},{"seriesId":49,"episodeFileId":2283,"seasonNumber":26,"episodeNumber":2,"title":"The Wreck of the Relationship","airDate":"2014-10-05","airDateUtc":"2014-10-06T00:00:00Z","overview":"When Bart disrespects Homer's authority, Homer makes a point to try his hand at parenting. This proves fruitless, so Marge signs them up for the Relation Ship, where they'll resolve their conflicts at sea. Meanwhile, Marge is in charge of Homer's fantasy football league, but manages to win despite being the underdog.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":554,"unverifiedSceneNumbering":false,"id":3843},{"seriesId":49,"episodeFileId":2314,"seasonNumber":26,"episodeNumber":3,"title":"Super Franchise Me","airDate":"2014-10-12","airDateUtc":"2014-10-13T00:00:00Z","overview":"Marge opens a sandwich franchise store after her sandwiches become a huge hit at Springfield Elementary. But running day-to-day at the store proves challenging, especially when the same franchise opens another location across the street.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":555,"unverifiedSceneNumbering":false,"id":3844},{"seriesId":49,"episodeFileId":2342,"seasonNumber":26,"episodeNumber":4,"title":"Treehouse of Horror XXV","airDate":"2014-10-19","airDateUtc":"2014-10-20T00:00:00Z","overview":"In a Halloween-theme episode Bart reads Aramaic symbols from the bottom of his desk and he and Lisa are transported to an alternate world filled with demons. Also, Moe organizes a \"Clockwork Orange\"-ish gang in which member Dum (Homer) falls for a young lady (Marge) who wants him to quit. In a homage to \"The Others,\" the Simpsons reconnect with their earlier incarnations from the Tracey Ullman era.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":556,"unverifiedSceneNumbering":false,"id":3845},{"seriesId":49,"episodeFileId":2371,"seasonNumber":26,"episodeNumber":5,"title":"Opposites A-Frack","airDate":"2014-11-02","airDateUtc":"2014-11-03T01:00:00Z","overview":"Lisa brings in assembly woman Maxine Lombard to put a stop to Mr. Burns' fracking operation, but is taken aback when the two political opponents find themselves attracted to one another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":557,"unverifiedSceneNumbering":false,"id":3846},{"seriesId":49,"episodeFileId":2401,"seasonNumber":26,"episodeNumber":6,"title":"Simpsorama","airDate":"2014-11-09","airDateUtc":"2014-11-10T01:00:00Z","overview":"The Planet Express crew come to present-day Springfield to prevent the Simpsons from destroying the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":558,"unverifiedSceneNumbering":false,"id":3847},{"seriesId":49,"episodeFileId":2429,"seasonNumber":26,"episodeNumber":7,"title":"Blazed and Confused","airDate":"2014-11-16","airDateUtc":"2014-11-17T01:00:00Z","overview":"Bart schemes to bring down his new teacher, Mr. Lassen, who is a terrible bully. Meanwhile, The Simpsons go to Burning Man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":559,"unverifiedSceneNumbering":false,"id":3848},{"seriesId":49,"episodeFileId":2458,"seasonNumber":26,"episodeNumber":8,"title":"Covercraft","airDate":"2014-11-23","airDateUtc":"2014-11-24T01:00:00Z","overview":"Homer has a mid-life crisis, takes up bass guitar and forms a cover band with some of the other dads in town. But the band's modest early success is soon overwhelmed by the breakout potential of their most unlikely star, Apu.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":560,"unverifiedSceneNumbering":false,"id":3849},{"seriesId":49,"episodeFileId":2489,"seasonNumber":26,"episodeNumber":9,"title":"I Won't Be Home for Christmas","airDate":"2014-12-07","airDateUtc":"2014-12-08T01:00:00Z","overview":"After Moe convinces Homer to stay out drinking on Christmas Eve, Marge tells Homer not to come home. This leads to Homer's sad trek through lonely Springfield, where he learns that the only place where one should truly get drunk on Christmas is home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":561,"unverifiedSceneNumbering":false,"id":3850},{"seriesId":49,"episodeFileId":2516,"seasonNumber":26,"episodeNumber":10,"title":"The Man Who Came to Be Dinner","airDate":"2015-01-04","airDateUtc":"2015-01-05T01:00:00Z","overview":"During a trip to \"Dizzneeland\" the Simpsons board the wrong ride, Rocket To Your Doom, and are transported through the galaxy to Kang and Kodos' home planet, where they are held captive at the local zoo and the inhabitants decide to eat Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":562,"unverifiedSceneNumbering":false,"id":3851},{"seriesId":49,"episodeFileId":2546,"seasonNumber":26,"episodeNumber":11,"title":"Bart's New Friend","airDate":"2015-01-11","airDateUtc":"2015-01-12T01:00:00Z","overview":"Bart has a new accomplice and best friend when Homer is hypnotized at the circus and believes he is a young boy again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":563,"unverifiedSceneNumbering":false,"id":3852},{"seriesId":49,"episodeFileId":2575,"seasonNumber":26,"episodeNumber":12,"title":"The Musk Who Fell to Earth","airDate":"2015-01-25","airDateUtc":"2015-01-26T01:00:00Z","overview":"When inventor Elon Musk lands in Springfield, he and Homer become fast friends and revolutionize the town's nuclear plant. But when Musk goes overboard and Mr. Burns wants him removed, Homer must figure out a way to break up with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":564,"unverifiedSceneNumbering":false,"id":3853},{"seriesId":49,"episodeFileId":2603,"seasonNumber":26,"episodeNumber":13,"title":"Walking Big & Tall","airDate":"2015-02-08","airDateUtc":"2015-02-09T01:00:00Z","overview":"When Lisa learns Springfield's anthem was stolen from another town she writes a replacement. Meanwhile, Homer learns the meaning of \"Wide Pride\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":565,"unverifiedSceneNumbering":false,"id":3854},{"seriesId":49,"episodeFileId":2631,"seasonNumber":26,"episodeNumber":14,"title":"My Fare Lady","airDate":"2015-02-15","airDateUtc":"2015-02-16T01:00:00Z","overview":"When Marge gets fed up with the thankless duty of chauffeuring her kids around, she begins working as a driver for a transportation app service. Meanwhile, Homer bankrupts Moe when he watches over the bar for one night, which forces Moe to take a temporary job as a janitor at the nuclear plant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":566,"unverifiedSceneNumbering":false,"id":3855},{"seriesId":49,"episodeFileId":2659,"seasonNumber":26,"episodeNumber":15,"title":"The Princess Guide","airDate":"2015-03-01","airDateUtc":"2015-03-02T01:00:00Z","overview":"Homer is put in charge of keeping Princess Kemi out of trouble while her father, a Nigerian king, works out a uranium deal with Mr. Burns.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":567,"unverifiedSceneNumbering":false,"id":3856},{"seriesId":49,"episodeFileId":2687,"seasonNumber":26,"episodeNumber":16,"title":"Sky Police","airDate":"2015-03-08","airDateUtc":"2015-03-09T00:00:00Z","overview":"Chief Wiggum is mistakenly delivered a military jet pack, which he gleefully accepts and uses in order to fight crime. But when the jet pack crashes into the church, the congregation, led by Marge, must resort to gambling and counting cards in order to collect money to repair the church.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":568,"unverifiedSceneNumbering":false,"id":3857},{"seriesId":49,"episodeFileId":2715,"seasonNumber":26,"episodeNumber":17,"title":"Waiting For Duffman","airDate":"2015-03-15","airDateUtc":"2015-03-16T00:00:00Z","overview":"When Duffman (guest voice Stacy Keach) undergoes hip replacement surgery and retires, the company sets up a reality show competition to find his replacement. Homer wins the competition, and because the job requires him to stay sober, he learns that beer isn't as necessary as he thought to have a good time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":569,"unverifiedSceneNumbering":false,"id":3858},{"seriesId":49,"episodeFileId":2743,"seasonNumber":26,"episodeNumber":18,"title":"Peeping Mom","airDate":"2015-04-19","airDateUtc":"2015-04-20T00:00:00Z","overview":"Bart lies about being involved in a bulldozer crash, so Marge decides to follow him everywhere until he confesses. Meanwhile, Homer ignores Santa\u2019s Little Helper when Flanders gets a new dog.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":570,"unverifiedSceneNumbering":false,"id":3859},{"seriesId":49,"episodeFileId":2772,"seasonNumber":26,"episodeNumber":19,"title":"The Kids are All Fight","airDate":"2015-04-26","airDateUtc":"2015-04-27T00:00:00Z","overview":"When Homer gets an old film roll developed, the family takes a trip down memory lane to see the origins of how Bart and Lisa first started fighting with each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":571,"unverifiedSceneNumbering":false,"id":3860},{"seriesId":49,"episodeFileId":2799,"seasonNumber":26,"episodeNumber":20,"title":"Let's Go Fly a Coot","airDate":"2015-05-03","airDateUtc":"2015-05-04T00:00:00Z","overview":"The Simpsons learn about Grampa\u2019s days in the Air Force, and Bart takes up smoking to impress Milhouse\u2019s Dutch cousin, Annika.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":572,"unverifiedSceneNumbering":false,"id":3861},{"seriesId":49,"episodeFileId":2829,"seasonNumber":26,"episodeNumber":21,"title":"Bull-E","airDate":"2015-05-10","airDateUtc":"2015-05-11T00:00:00Z","overview":"After Bart gets bullied at the school dance, Marge convinces the town to pass anti-bullying legislation. Homer then gets arrested and sent to rehab for bullying Ned Flanders, only to subsequently leave rehab as a hero.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":573,"unverifiedSceneNumbering":false,"id":3862},{"seriesId":49,"episodeFileId":2854,"seasonNumber":26,"episodeNumber":22,"title":"Mathlete's Feat","airDate":"2015-05-17","airDateUtc":"2015-05-18T00:00:00Z","overview":"When a modernized Springfield Elementary has a technical meltdown, Lisa transforms it into a Waldorf school. Meanwhile, Groundskeeper Willie becomes the coach of the mathletes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":574,"unverifiedSceneNumbering":false,"id":3863},{"seriesId":49,"episodeFileId":2254,"seasonNumber":27,"episodeNumber":1,"title":"Every Man's Dream","airDate":"2015-09-27","airDateUtc":"2015-09-28T00:00:00Z","overview":"Homer is diagnosed with narcolepsy, but instead of returning home with his prescription medication, he returns home drunk. He and Marge visit a marriage counselor and have a trial separation, during which Homer begins dating a 20-something.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":575,"unverifiedSceneNumbering":false,"id":3864},{"seriesId":49,"episodeFileId":2285,"seasonNumber":27,"episodeNumber":2,"title":"'Cue Detective","airDate":"2015-10-04","airDateUtc":"2015-10-05T00:00:00Z","overview":"Scotty Boom, a Chew Network super-chef, challenges Homer to a smoke-off. But when someone steals Homer\u2019s secret weapon \u2013 a smoker he bought off a mysterious man at a BBQ shack \u2013 Lisa and Bart are on the case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":576,"unverifiedSceneNumbering":false,"id":3865},{"seriesId":49,"episodeFileId":2315,"seasonNumber":27,"episodeNumber":3,"title":"Puffless","airDate":"2015-10-11","airDateUtc":"2015-10-12T00:00:00Z","overview":"Upon learning that their father really died of lung cancer, Selma and Patty agree to quit smoking. When Selma relapses, an angry Patty moves in with Marge and Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":577,"unverifiedSceneNumbering":false,"id":3866},{"seriesId":49,"episodeFileId":2344,"seasonNumber":27,"episodeNumber":4,"title":"Halloween of Horror","airDate":"2015-10-18","airDateUtc":"2015-10-19T00:00:00Z","overview":"When Lisa becomes scared at the Krustyland Halloween Horror Night, Homer is forced to take down his Everscream Terrors decorations. Halloween pop-up employees seek vengeance on Homer for causing them to lose their jobs, and rob his house while Homer and Lisa hide out in the attic. Homer and Lisa light up their stored holiday decorations to attract attention and stand up to the intruders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":578,"unverifiedSceneNumbering":false,"id":3867},{"seriesId":49,"episodeFileId":2373,"seasonNumber":27,"episodeNumber":5,"title":"Treehouse of Horror XXVI","airDate":"2015-10-25","airDateUtc":"2015-10-26T00:00:00Z","overview":"In the annual fright fest Halloween episode, Sideshow Bob finally kills Bart, only to reanimate him; Homer wakes up with short-term memory loss; and Lisa, Bart, and Milhouse get super powers from radiation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":579,"unverifiedSceneNumbering":false,"id":3868},{"seriesId":49,"episodeFileId":2402,"seasonNumber":27,"episodeNumber":6,"title":"Friend with Benefit","airDate":"2015-11-08","airDateUtc":"2015-11-09T01:00:00Z","overview":"Lisa makes a new pal at school named Harper, whose internet billionaire father becomes buddies with a different Simpson: Homer. Soon, though, Lisa becomes worried that Harper is a little too entitled.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":580,"unverifiedSceneNumbering":false,"id":3869},{"seriesId":49,"episodeFileId":2430,"seasonNumber":27,"episodeNumber":7,"title":"Lisa with an 'S'","airDate":"2015-11-22","airDateUtc":"2015-11-23T01:00:00Z","overview":"When Homer loses $5,000 at a poker game with Broadway legend Laney Fontaine, the only way he is able to settle the bet is if he loans Lisa to Laney for a month. Then, Laney turns Lisa into a show biz kid and Marge and Homer fear they made a mistake letting her go. So they head to New York to get her back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":581,"unverifiedSceneNumbering":false,"id":3870},{"seriesId":49,"episodeFileId":2460,"seasonNumber":27,"episodeNumber":8,"title":"Paths of Glory","airDate":"2015-12-06","airDateUtc":"2015-12-07T01:00:00Z","overview":"Lisa sets out to restore the tarnished reputation of Springfield\u2019s first female inventor. To find her invention, she scours an abandoned asylum and a restaurant that caters to men. Bart joins Lisa at the asylum, stealing one of the homicidal patient\u2019s notebooks, and bragging to the boys at school that he wrote the entries himself. This revelation causes Homer and Marge to believe he is a sociopath, which Bart decides to use to his advantage until things go too far.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":582,"unverifiedSceneNumbering":false,"id":3871},{"seriesId":49,"episodeFileId":2487,"seasonNumber":27,"episodeNumber":9,"title":"Barthood","airDate":"2015-12-13","airDateUtc":"2015-12-14T01:00:00Z","overview":"Bart\u2019s coming of age story a la \u201cBoyhood\u201d chronicles his life from six years old to his time as an accomplished young man. Along the way, his tense relationship with Homer, an overly uncaring version of himself, and Lisa, who overshadows him in every way possible, shape Bart more than he realizes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":583,"unverifiedSceneNumbering":false,"id":3872},{"seriesId":49,"episodeFileId":2518,"seasonNumber":27,"episodeNumber":10,"title":"The Girl Code","airDate":"2016-01-03","airDateUtc":"2016-01-04T01:00:00Z","overview":"After a photo Marge posts on social media gets Homer fired, he returns to the best job he ever had, a dishwasher at a Greek restaurant. This same post inspires Lisa to code an app that predicts the real-life consequences of anything you post online, only to create sentient artificial intelligence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":584,"unverifiedSceneNumbering":false,"id":3873},{"seriesId":49,"episodeFileId":2547,"seasonNumber":27,"episodeNumber":11,"title":"Teenage Mutant Milk-caused Hurdles","airDate":"2016-01-10","airDateUtc":"2016-01-11T01:00:00Z","overview":"There is a new teacher at Springfield Elementary, and a captivated Bart tries everything to win her over. Meanwhile, Homer decides to buy a new brand of \u201cmilk,\u201d which causes early puberty, both for Bart (augmenting his wooing powers) and Lisa (whose small bout with acne opens her up to the world of makeup and popularity).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":585,"unverifiedSceneNumbering":false,"id":3874},{"seriesId":49,"episodeFileId":2576,"seasonNumber":27,"episodeNumber":12,"title":"Much Apu About Something","airDate":"2016-01-17","airDateUtc":"2016-01-18T01:00:00Z","overview":"Sanjay passes his stake in the Kwik-E-Mart to his millennial son, Jay, who turns it into a hip, health food market against Apu\u2019s insistence on tradition. Bart, whom Homer had convinced to give up pranking, is called upon to return to his trickster life and take down the new store.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":586,"unverifiedSceneNumbering":false,"id":3875},{"seriesId":49,"episodeFileId":2604,"seasonNumber":27,"episodeNumber":13,"title":"Love Is in the N2-O2-Ar-CO2-Ne-He-CH4","airDate":"2016-02-14","airDateUtc":"2016-02-15T01:00:00Z","overview":"Lonely Professor Frink uses science to turn himself into a man whom women find attractive. Then, overwhelmed by the attention, he invents an algorithm to perfectly pair the lonely men and women of Springfield, realizing that scientific exploration is his true love. Meanwhile, Marge, Bart, and Lisa visit Grampa for Valentine\u2019s Day and try to rescue the old folks from a drug-induced hallucination that allows them to relive their happiest memories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":587,"unverifiedSceneNumbering":false,"id":3876},{"seriesId":49,"episodeFileId":2632,"seasonNumber":27,"episodeNumber":14,"title":"Gal of Constant Sorrow","airDate":"2016-02-21","airDateUtc":"2016-02-22T01:00:00Z","overview":"After Bart accidentally sends a sweet homeless woman's cart into the river, he allows her to live in his closet for a small fee. When Lisa discovers that the woman is an incredible folk singer, she offers her own closet and plans a concert, only to be disappointed by Hettie's surprising substance abuse and violent nature. Meanwhile Homer tries to prove he's handy, but accidentally traps the cat in the walls of the house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":588,"unverifiedSceneNumbering":false,"id":3877},{"seriesId":49,"episodeFileId":2660,"seasonNumber":27,"episodeNumber":15,"title":"Lisa the Veterinarian","airDate":"2016-03-06","airDateUtc":"2016-03-07T01:00:00Z","overview":"After performing CPR on a tased raccoon, Lisa discovers her calling to be veterinarian and becomes an intern at the local office, but learns a tough lesson when her neglected class hamster dies. Meanwhile, Marge moonlights as a crime scene cleaner for a little extra money, and the trauma of the gory scenes make her increasingly dead inside.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":589,"unverifiedSceneNumbering":false,"id":3878},{"seriesId":49,"episodeFileId":2689,"seasonNumber":27,"episodeNumber":16,"title":"The Marge-ian Chronicles","airDate":"2016-03-13","airDateUtc":"2016-03-14T00:00:00Z","overview":"Not feeling unique, Lisa signs up for the Mars One Space Colony \u2013 to Marge\u2019s dismay. Then, Marge hires Bart to go through the tryout process with Lisa to make her want to quit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":590,"unverifiedSceneNumbering":false,"id":3879},{"seriesId":49,"episodeFileId":2716,"seasonNumber":27,"episodeNumber":17,"title":"The Burns Cage","airDate":"2016-04-03","airDateUtc":"2016-04-04T00:00:00Z","overview":"When Smithers is devastated by Burns\u2019 lack of affection towards him, Homer makes it his mission to find him a boyfriend. Meanwhile, after Bart orchestrates the removal of the lead in the school\u2019s stage production of \u201cCasablanca,\u201d Milhouse serves as a terrible understudy, which frustrates his co-star, Lisa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":591,"unverifiedSceneNumbering":false,"id":3880},{"seriesId":49,"episodeFileId":2745,"seasonNumber":27,"episodeNumber":18,"title":"How Lisa Got Her Marge Back","airDate":"2016-04-10","airDateUtc":"2016-04-11T00:00:00Z","overview":"After getting into an argument, Marge takes Lisa on a touristy trip to Capital City, where, after attending a musical, they meet the show\u2019s star who reminds Lisa how lucky she is to have such a great mom. Meanwhile, Bart is frustrated that everyone expects his pranks, so he teams up with Maggie to trick people.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":592,"unverifiedSceneNumbering":false,"id":3881},{"seriesId":49,"episodeFileId":2771,"seasonNumber":27,"episodeNumber":19,"title":"Fland Canyon","airDate":"2016-04-24","airDateUtc":"2016-04-25T00:00:00Z","overview":"Homer recalls a tense family vacation to the Grand Canyon with the Flanders family. At first, the Flanders\u2019 perfection puts the families at odds, but when they get stranded and Ned and Homer go for help, the families finally bond.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":593,"unverifiedSceneNumbering":false,"id":3882},{"seriesId":49,"episodeFileId":2800,"seasonNumber":27,"episodeNumber":20,"title":"To Courier with Love","airDate":"2016-05-08","airDateUtc":"2016-05-09T00:00:00Z","overview":"\"The Simpsons are going to...\" Paris (well, Homer and Marge are), but in order to be able to afford the trip, Homer has to smuggle an exotic snake into France so it can be made into a gourmet meal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":594,"unverifiedSceneNumbering":false,"id":3883},{"seriesId":49,"episodeFileId":2827,"seasonNumber":27,"episodeNumber":21,"title":"Simprovised","airDate":"2016-05-15","airDateUtc":"2016-05-16T00:00:00Z","overview":"After butchering a speech in front of all of his friends at work, Homer turns to improv comedy to gain back his confidence in his public speaking skills. Meanwhile, Marge decides to rebuild Bart\u2019s lackluster treehouse, but tensions rise when Bart questions her building skills. Also, in the episode\u2019s last three minutes, Homer appears LIVE for the first time on television (both for East and West Coast broadcasts) to answer fan questions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":595,"unverifiedSceneNumbering":false,"id":3884},{"seriesId":49,"episodeFileId":2855,"seasonNumber":27,"episodeNumber":22,"title":"Orange is the New Yellow","airDate":"2016-05-22","airDateUtc":"2016-05-23T00:00:00Z","overview":"Marge goes to prison for letting Bart play in a park unsupervised.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":596,"unverifiedSceneNumbering":false,"id":3885},{"seriesId":49,"episodeFileId":2253,"seasonNumber":28,"episodeNumber":1,"title":"Monty Burns' Fleeing Circus","airDate":"2016-09-25","airDateUtc":"2016-09-26T00:00:00Z","overview":"After Springfield's latest disaster, Mr. Burns has a condition for the citizens before he finances rebuilding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":597,"unverifiedSceneNumbering":false,"id":3886},{"seriesId":49,"episodeFileId":2284,"seasonNumber":28,"episodeNumber":2,"title":"Friends and Family","airDate":"2016-10-02","airDateUtc":"2016-10-03T00:00:00Z","overview":"Mr. Burns hires the Simpsons to play his live-in virtual reality family, but excludes Homer so that he may play dad. Now alone, Homer finds a new best friend in girl-next-door Julia, who eats, drinks and thinks like him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":598,"unverifiedSceneNumbering":false,"id":3887},{"seriesId":49,"episodeFileId":2313,"seasonNumber":28,"episodeNumber":3,"title":"The Town","airDate":"2016-10-09","airDateUtc":"2016-10-10T00:00:00Z","overview":"After Homer catches Bart rooting for Springfield\u2019s football rival, the Boston Americans, he plans a family \u201chate-cation\u201d trip to Boston in an attempt to show Bart that Boston is a terrible city.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":599,"unverifiedSceneNumbering":false,"id":3888},{"seriesId":49,"episodeFileId":2343,"seasonNumber":28,"episodeNumber":4,"title":"Treehouse of Horror XXVII","airDate":"2016-10-16","airDateUtc":"2016-10-17T00:00:00Z","overview":"Better late than never, The Hunger Games come to Springfield!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":600,"unverifiedSceneNumbering":false,"id":3889},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":62,"title":"Planet of the Couches","airDate":"2016-10-16","airDateUtc":"2016-10-17T00:00:00Z","overview":"To celebrate the series\u2019 600th episode, The Simpsons and Google have come together to create a special Virtual Reality experience. Produced with Google Spotlight Stories, The Simpsons couch gag, \u201cPlanet of the Couches,\u201d is available on both Android and iOS. View it with any Google Cardboard viewer for the full VR experience.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21636},{"seriesId":49,"episodeFileId":2372,"seasonNumber":28,"episodeNumber":5,"title":"Trust But Clarify","airDate":"2016-10-23","airDateUtc":"2016-10-24T00:00:00Z","overview":"Lisa and Bart investigate Krusty\u2019s suspicious new \"Krustaceans\" candy. Meanwhile, Homer wants a promotion at the nuclear plant and asks Marge to help him dress the part, and news anchor Kent Brockman struggles to find his feet in the changing media world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":601,"unverifiedSceneNumbering":false,"id":3890},{"seriesId":49,"episodeFileId":2400,"seasonNumber":28,"episodeNumber":6,"title":"There Will Be Buds","airDate":"2016-11-06","airDateUtc":"2016-11-07T01:00:00Z","overview":"Homer gets roped into coaching the kids' lacrosse team with Milhouse's dad, Kirk, who is in desperate need of a friend. When Kirk gets too clingy, Homer vents about how much of a loser he is. Kirk overhears his rant and disappears, right when the team needs him most: the championship game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":602,"unverifiedSceneNumbering":false,"id":3891},{"seriesId":49,"episodeFileId":2431,"seasonNumber":28,"episodeNumber":7,"title":"Havana Wild Weekend","airDate":"2016-11-13","airDateUtc":"2016-11-14T01:00:00Z","overview":"When the Retirement Castle and the V.A. Hospital can\u2019t solve Grampa\u2019s health issues, the Simpsons decide to take a family trip to Cuba to get him cheap medical care.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":603,"unverifiedSceneNumbering":false,"id":3892},{"seriesId":49,"episodeFileId":2459,"seasonNumber":28,"episodeNumber":8,"title":"Dad Behavior","airDate":"2016-11-20","airDateUtc":"2016-11-21T01:00:00Z","overview":"Homer finds a new app that makes his life much easier and outsources his father-son bonding. Meanwhile, Grampa finds that he is about to be a father again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":604,"unverifiedSceneNumbering":false,"id":3893},{"seriesId":49,"episodeFileId":2488,"seasonNumber":28,"episodeNumber":9,"title":"The Last Traction Hero","airDate":"2016-12-04","airDateUtc":"2016-12-05T01:00:00Z","overview":"A workplace accident leaves Homer in a cast, and in a position to sue Mr. Burns. This leaves Marge unfulfilled, so she turns to an unexpected source for romance. Meanwhile, Lisa is made \"Bus Monitor\" and tries to keep the peace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":605,"unverifiedSceneNumbering":false,"id":3894},{"seriesId":49,"episodeFileId":2517,"seasonNumber":28,"episodeNumber":10,"title":"The Nightmare After Krustmas","airDate":"2016-12-11","airDateUtc":"2016-12-12T01:00:00Z","overview":"Krusty tries to impress his daughter as they spend Christmas with the Simpsons. Meanwhile, Reverend Lovejoy seeks converts after church attendance plummets, and Maggie is haunted by a spooky Christmas toy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":606,"unverifiedSceneNumbering":false,"id":3895},{"seriesId":49,"episodeFileId":2545,"seasonNumber":28,"episodeNumber":11,"title":"Pork and Burns","airDate":"2017-01-08","airDateUtc":"2017-01-09T01:00:00Z","overview":"When Marge becomes obsessed with a Japanese style of living, the Simpsons must part with any item that no longer brings them joy. For Homer, this means finding a new home for the family pig. For Lisa, it means saying goodbye to her beloved sax.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":607,"unverifiedSceneNumbering":false,"id":3896},{"seriesId":49,"episodeFileId":2574,"seasonNumber":28,"episodeNumber":12,"title":"The Great Phatsby (1)","airDate":"2017-01-15","airDateUtc":"2017-01-16T01:00:00Z","overview":"Mr. Burns tries to relive his glory days and crosses paths with a mysterious music mogul. After being conned by him and reduced to bankruptcy, Mr. Burns seeks revenge on the music producer with the help of Homer, Bart, rapper Jazzy James and the mogul's ex-wife, Praline.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":608,"unverifiedSceneNumbering":false,"id":3897},{"seriesId":49,"episodeFileId":2574,"seasonNumber":28,"episodeNumber":13,"title":"The Great Phatsby (2)","airDate":"2017-01-15","airDateUtc":"2017-01-16T01:25:00Z","overview":"Mr. Burns tries to relive his glory days and crosses paths with a mysterious music mogul. After being conned by him and reduced to bankruptcy, Mr. Burns seeks revenge on the music producer with the help of Homer, Bart, rapper Jazzy James and the mogul's ex-wife, Praline.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":609,"unverifiedSceneNumbering":false,"id":3898},{"seriesId":49,"episodeFileId":2633,"seasonNumber":28,"episodeNumber":14,"title":"Fatzcarraldo","airDate":"2017-02-12","airDateUtc":"2017-02-13T01:00:00Z","overview":"When all the fast food restaurants in Springfield become healthy, Homer turns to the last bastion of greasy food for comfort \u2014 and digs up some childhood memories along the way. Meanwhile, Lisa must find a good news story when the future of her school radio station is in jeopardy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":610,"unverifiedSceneNumbering":false,"id":3899},{"seriesId":49,"episodeFileId":2661,"seasonNumber":28,"episodeNumber":15,"title":"The Cad and the Hat","airDate":"2017-02-19","airDateUtc":"2017-02-20T01:00:00Z","overview":"When Bart betrays Lisa, he has to deal with his guilt \u2013 literally. Meanwhile, Springfield is in awe when Homer is revealed to be a chess savant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":611,"unverifiedSceneNumbering":false,"id":3900},{"seriesId":49,"episodeFileId":2688,"seasonNumber":28,"episodeNumber":16,"title":"Kamp Krustier","airDate":"2017-03-05","airDateUtc":"2017-03-06T01:00:00Z","overview":"When Bart and Lisa return home abruptly after a traumatic incident at Kamp Krustier, they put an end to Homer and Marge's romantic encounters. Without sex to distract him, Homer becomes a more productive worker and caring husband, but Marge misses the old Homer. Then, Bart and Lisa return to camp to confront the source of their trauma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":612,"unverifiedSceneNumbering":false,"id":3901},{"seriesId":49,"episodeFileId":2717,"seasonNumber":28,"episodeNumber":17,"title":"22 for 30","airDate":"2017-03-12","airDateUtc":"2017-03-13T00:00:00Z","overview":"In this parody of a cable sports show, Bart goes from delinquent with detention to the star basketball player at Springfield Elementary. Lisa covers Bart's success for the school paper, and Homer becomes the team\u2019s coach. Things go awry when Bart gets involved with the mafia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":613,"unverifiedSceneNumbering":false,"id":3902},{"seriesId":49,"episodeFileId":2744,"seasonNumber":28,"episodeNumber":18,"title":"A Father's Watch","airDate":"2017-03-19","airDateUtc":"2017-03-20T00:00:00Z","overview":"Worried that Bart is destined for failure, Marge turns to a series of parenting \"experts\" for advice. Homer decides to cash in on one expert\u2019s advice by opening up a trophy store in Springfield. Meanwhile, Bart finds some needed encouragement from Grampa, who gives him a precious watch coveted by Homer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":614,"unverifiedSceneNumbering":false,"id":3903},{"seriesId":49,"episodeFileId":2773,"seasonNumber":28,"episodeNumber":19,"title":"Caper Chase","airDate":"2017-04-02","airDateUtc":"2017-04-03T00:00:00Z","overview":"Disappointed in Yale, Mr. Burns decides to start his own for-profit university and Homer is hired as a professor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":615,"unverifiedSceneNumbering":false,"id":3904},{"seriesId":49,"episodeFileId":2801,"seasonNumber":28,"episodeNumber":20,"title":"Looking for Mr. Goodbart","airDate":"2017-04-30","airDateUtc":"2017-05-01T00:00:00Z","overview":"Bart gets in trouble on Grandparents Day at school and is forced to hang out with Skinner\u2019s mother as punishment. After spending time with various grandmas in the neighborhood, he learns the benefits of hanging out with the elderly, but eventually recognizes the dangers of taking advantage of them. Meanwhile, Peekimon Get has taken over the town of Springfield.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":616,"unverifiedSceneNumbering":false,"id":3905},{"seriesId":49,"episodeFileId":2828,"seasonNumber":28,"episodeNumber":21,"title":"Moho House","airDate":"2017-05-07","airDateUtc":"2017-05-08T00:00:00Z","overview":"Homer and Marge attempt to work on their marriage, not knowing that Mr. Burns and Nigel have a bet on whether Nigel can break them apart. With the successful, albeit unconventional, help of Moe, the couple gets back their mojo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":617,"unverifiedSceneNumbering":false,"id":3906},{"seriesId":49,"episodeFileId":2856,"seasonNumber":28,"episodeNumber":22,"title":"Dogtown","airDate":"2017-05-21","airDateUtc":"2017-05-22T00:00:00Z","overview":"When Homer's court case determines that a dog's life is more valuable than a human's is, the status of man's best friend rises in Springfield. When the dogs recognize their new position of power, they assert their dominance over the humans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":618,"unverifiedSceneNumbering":false,"id":3907},{"seriesId":49,"episodeFileId":2256,"seasonNumber":29,"episodeNumber":1,"title":"The Serfsons","airDate":"2017-10-01","airDateUtc":"2017-10-02T00:00:00Z","overview":"In a magical medieval world, Marge's mother is turned into an Ice Walker and the only way for Homer to afford the cure is to force Lisa to use illegal magic. When the King discovers this, he kidnaps Lisa, and Homer must lead a feudal uprising to save her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":619,"unverifiedSceneNumbering":false,"id":3908},{"seriesId":49,"episodeFileId":2287,"seasonNumber":29,"episodeNumber":2,"title":"Springfield Splendor","airDate":"2017-10-08","airDateUtc":"2017-10-09T00:00:00Z","overview":"Marge and Lisa turn Lisa\u2019s sad experience into a successful graphic novel-turned-Broadway show, but they struggle with creative differences and ego.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":620,"unverifiedSceneNumbering":false,"id":3909},{"seriesId":49,"episodeFileId":2316,"seasonNumber":29,"episodeNumber":3,"title":"Whistler's Father","airDate":"2017-10-15","airDateUtc":"2017-10-16T00:00:00Z","overview":"Homer discovers that Maggie is a whistling savant and launches her baby-celebrity career. Meanwhile, Marge impresses Fat Tony with her interior design taste, and he hires her to style his brothel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":621,"unverifiedSceneNumbering":false,"id":3910},{"seriesId":49,"episodeFileId":2345,"seasonNumber":29,"episodeNumber":4,"title":"Treehouse of Horror XXVIII","airDate":"2017-10-22","airDateUtc":"2017-10-23T00:00:00Z","overview":"Maggie becomes possessed by an ancient demon, Lisa discovers a creepy\/perfect version of her family in an alternate universe and Homer cannibalizes himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":622,"unverifiedSceneNumbering":false,"id":3911},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":63,"title":"Springfield of Dreams: The Legend of Homer Simpson","airDate":"2017-10-22","airDateUtc":"2017-10-23T00:00:00Z","overview":"The special, which satirizes Ken Burns' seminal documentary miniseries Baseball, will pay tribute to the episode \"Homer at the Bat\" while offering up interviews from eight of the baseball stars who appeared as ringers in the episode, as well as Yankees All-Star Aaron Judge, Nick Offerman, Russell Brand, George Will, Tim Gunn, and Dr. Oz, not to mention sportscasters Bob Costas, Joe Buck, Bob Uecker, and Charissa Thompson. In addition, the documentary includes \"interviews\" with Homer, Moe, Chief Wiggum, Apu, and Comic Book Guy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17585},{"seriesId":49,"episodeFileId":2374,"seasonNumber":29,"episodeNumber":5,"title":"Grampy, Can Ya Hear Me","airDate":"2017-11-05","airDateUtc":"2017-11-06T01:00:00Z","overview":"Grampa gets a hearing aid and finally hears what everyone has been saying about him. Meanwhile, Mr. Skinner discovers that his mother has kept the ultimate secret from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":623,"unverifiedSceneNumbering":false,"id":3912},{"seriesId":49,"episodeFileId":2403,"seasonNumber":29,"episodeNumber":6,"title":"The Old Blue Mayor She Ain't What She Used to Be","airDate":"2017-11-12","airDateUtc":"2017-11-13T01:00:00Z","overview":"Frustrated with the local government, Marge decides to run for Mayor. To win public support, she begins making Homer the butt of her jokes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":624,"unverifiedSceneNumbering":false,"id":3913},{"seriesId":49,"episodeFileId":2432,"seasonNumber":29,"episodeNumber":7,"title":"Singin' in the Lane","airDate":"2017-11-19","airDateUtc":"2017-11-20T01:00:00Z","overview":"Homer and the guys reunite their old bowling team to cheer up Moe, only to end up in fierce competition with a team of arrogant millionaires. Meanwhile, Lisa and Marge try to teach Bart that money isn\u2019t everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":625,"unverifiedSceneNumbering":false,"id":3914},{"seriesId":49,"episodeFileId":2461,"seasonNumber":29,"episodeNumber":8,"title":"Mr. Lisa's Opus","airDate":"2017-12-03","airDateUtc":"2017-12-04T01:00:00Z","overview":"As future Lisa writes her college application essay for Harvard, she recalls past disappointing birthdays that helped shape her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":626,"unverifiedSceneNumbering":false,"id":3915},{"seriesId":49,"episodeFileId":2490,"seasonNumber":29,"episodeNumber":9,"title":"Gone Boy","airDate":"2017-12-10","airDateUtc":"2017-12-11T01:00:00Z","overview":"When Bart goes missing, the town puts together a search party to find him. After most give up hope, Sideshow Bob manipulates Millhouse into revealing where Bart is hiding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":627,"unverifiedSceneNumbering":false,"id":3916},{"seriesId":49,"episodeFileId":2519,"seasonNumber":29,"episodeNumber":10,"title":"Haw-Haw Land","airDate":"2018-01-07","airDateUtc":"2018-01-08T01:00:00Z","overview":"When the Simpsons go to a STEM conference, Lisa falls for a crooning jazz pianist named Brendan. Meanwhile, Bart discovers that he has an affinity for chemistry","hasFile":true,"monitored":true,"absoluteEpisodeNumber":628,"unverifiedSceneNumbering":false,"id":3917},{"seriesId":49,"episodeFileId":2548,"seasonNumber":29,"episodeNumber":11,"title":"Frink Gets Testy","airDate":"2018-01-14","airDateUtc":"2018-01-15T01:00:00Z","overview":"Mr. Burns will build a doomsday ark after he believes that the end of the world is near when he sees an old Orson Welles show about Nostradamus. Meanwhile, Professor Frink comes up with a new way of testing everyone in Springfield after Burns wants a test to determine who should go on a spaceship with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":629,"unverifiedSceneNumbering":false,"id":3918},{"seriesId":49,"episodeFileId":2577,"seasonNumber":29,"episodeNumber":12,"title":"Homer Is Where the Art Isn't","airDate":"2018-03-18","airDateUtc":"2018-03-19T00:00:00Z","overview":"When Homer is accused of stealing a million-dollar painting, only a detective from the 1970s can clear his name, or send him to jail. It's a classic impossible mystery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":630,"unverifiedSceneNumbering":false,"id":3919},{"seriesId":49,"episodeFileId":2605,"seasonNumber":29,"episodeNumber":13,"title":"3 Scenes Plus a Tag From a Marriage","airDate":"2018-03-25","airDateUtc":"2018-03-26T00:00:00Z","overview":"Homer and Marge recount the story of their transition from loving their life without kids to being miserable parents","hasFile":true,"monitored":true,"absoluteEpisodeNumber":631,"unverifiedSceneNumbering":false,"id":3920},{"seriesId":49,"episodeFileId":2634,"seasonNumber":29,"episodeNumber":14,"title":"Fears of a Clown","airDate":"2018-04-01","airDateUtc":"2018-04-02T00:00:00Z","overview":"Everybody is now horrified of clowns after Bart's prank using clown masks, which also causes Krusty to lose his job. He attempts a comeback as a dramatic actor in the play \"The Salesman's Bad Day\", with Llewellyn Sinclair as his director.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":632,"unverifiedSceneNumbering":false,"id":3921},{"seriesId":49,"episodeFileId":2662,"seasonNumber":29,"episodeNumber":15,"title":"No Good Read Goes Unpunished","airDate":"2018-04-08","airDateUtc":"2018-04-09T00:00:00Z","overview":"In an attempt to bring the family together, Marge forces everyone to hand in their electronics and take a trip to a book store.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":633,"unverifiedSceneNumbering":false,"id":3922},{"seriesId":49,"episodeFileId":2690,"seasonNumber":29,"episodeNumber":16,"title":"King Leer","airDate":"2018-04-15","airDateUtc":"2018-04-16T00:00:00Z","overview":"Homer and Marge follow Moe after the bar closes early and discover him and his father fighting. The Simpsons, after finding out that Moe has been excommunicated from his family for years, attempt to bring them back together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":634,"unverifiedSceneNumbering":false,"id":3923},{"seriesId":49,"episodeFileId":2718,"seasonNumber":29,"episodeNumber":17,"title":"Lisa Gets the Blues","airDate":"2018-04-22","airDateUtc":"2018-04-23T00:00:00Z","overview":"When the Simpsons\u2019 flight to Gainesville gets re-routed to New Orleans, Lisa is forced to face her failures, and regain her confidence as a jazz musician. Meanwhile, Bart is intrigued by the voodoo in Louisiana, and Homer is intrigued by the drinking.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":635,"unverifiedSceneNumbering":false,"id":3924},{"seriesId":49,"episodeFileId":2746,"seasonNumber":29,"episodeNumber":18,"title":"Forgive and Regret","airDate":"2018-04-29","airDateUtc":"2018-04-30T00:00:00Z","overview":"Grampa makes a confession to Homer while on his deathbed. After his recovery, he comes to realize that this issue will not be easy to reconcile.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":636,"unverifiedSceneNumbering":false,"id":3925},{"seriesId":49,"episodeFileId":2774,"seasonNumber":29,"episodeNumber":19,"title":"Left Behind","airDate":"2018-05-06","airDateUtc":"2018-05-07T00:00:00Z","overview":"Homer gets Flanders a job at the plant, and he soon learns that no good deed goes unpunished when Flanders starts to insist on carpools and demands more from Homer's work performance. Meanwhile, Marge feels as though their marriage has lost its spark.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":637,"unverifiedSceneNumbering":false,"id":3926},{"seriesId":49,"episodeFileId":2802,"seasonNumber":29,"episodeNumber":20,"title":"Throw Grampa from the Dane","airDate":"2018-05-13","airDateUtc":"2018-05-14T00:00:00Z","overview":"After receiving an insurance payout, the Simpsons go to Denmark, so Grampa can benefit from the country's free healthcare.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":638,"unverifiedSceneNumbering":false,"id":3927},{"seriesId":49,"episodeFileId":2830,"seasonNumber":29,"episodeNumber":21,"title":"Flanders' Ladder","airDate":"2018-05-20","airDateUtc":"2018-05-21T00:00:00Z","overview":"After getting struck by lightning, Bart receives visits from ghosts, who want closure only he can provide.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":639,"unverifiedSceneNumbering":false,"id":3928},{"seriesId":49,"episodeFileId":2257,"seasonNumber":30,"episodeNumber":1,"title":"Bart's Not Dead","airDate":"2018-09-30","airDateUtc":"2018-10-01T00:00:00Z","overview":"Bart takes a dare, and ends up in the hospital. To cover for himself and Homer, he says he went to Heaven and met Jesus. Christian producers offer the Simpsons a movie deal, which Homer takes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":640,"unverifiedSceneNumbering":false,"id":3929},{"seriesId":49,"episodeFileId":2286,"seasonNumber":30,"episodeNumber":2,"title":"Heartbreak Hotel","airDate":"2018-10-07","airDateUtc":"2018-10-08T00:00:00Z","overview":"Marge and Homer's marriage is tested when they travel to a tropical island to compete for a million dollars on Marge's favorite reality competition show.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":641,"unverifiedSceneNumbering":false,"id":3930},{"seriesId":49,"episodeFileId":4440,"seasonNumber":30,"episodeNumber":3,"title":"My Way or the Highway to Heaven","airDate":"2018-10-14","airDateUtc":"2018-10-15T00:00:00Z","overview":"God and St. Peter contemplate what merits a soul getting into heaven, while citizens of Springfield remember their divine encounters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":642,"unverifiedSceneNumbering":false,"id":3931},{"seriesId":49,"episodeFileId":5096,"seasonNumber":30,"episodeNumber":4,"title":"Treehouse of Horror XXIX","airDate":"2018-10-21","airDateUtc":"2018-10-22T00:00:00Z","overview":"Homer wins an oyster-eating contest against the mythical Cthulhu, Springfield is overrun by plant body-snatchers, Lisa finally snaps and Mr. Burns opens a retirement home with some Jurassic upgrades.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":643,"unverifiedSceneNumbering":false,"id":3932},{"seriesId":49,"episodeFileId":5762,"seasonNumber":30,"episodeNumber":5,"title":"Baby You Can't Drive My Car","airDate":"2018-11-04","airDateUtc":"2018-11-05T01:00:00Z","overview":"A self-driving car company comes to Springfield, poaching all of the power plant employees with their fun work environment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":644,"unverifiedSceneNumbering":false,"id":3933},{"seriesId":49,"episodeFileId":5725,"seasonNumber":30,"episodeNumber":6,"title":"From Russia Without Love","airDate":"2018-11-11","airDateUtc":"2018-11-12T01:00:00Z","overview":"On a mission to play hardcore pranks, Bart, Nelson and Milhouse get Moe a mail-order bride on the Dark Web.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":645,"unverifiedSceneNumbering":false,"id":7289},{"seriesId":49,"episodeFileId":5718,"seasonNumber":30,"episodeNumber":7,"title":"Werking Mom","airDate":"2018-11-18","airDateUtc":"2018-11-19T01:00:00Z","overview":"Marge wants a job, and stumbles into becoming a plastic food storage container-selling drag queen. Meanwhile, Lisa tries to make the world better in the style of \"Amelie\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":646,"unverifiedSceneNumbering":false,"id":7933},{"seriesId":49,"episodeFileId":5721,"seasonNumber":30,"episodeNumber":8,"title":"Krusty the Clown","airDate":"2018-11-25","airDateUtc":"2018-11-26T01:00:00Z","overview":"Homer finds his calling as a TV recapper, but his harsh grading causes a brawl with Krusty. After almost killing Homer, Krusty hides out at a real circus, and finds happiness there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":647,"unverifiedSceneNumbering":false,"id":8644},{"seriesId":49,"episodeFileId":5716,"seasonNumber":30,"episodeNumber":9,"title":"Daddicus Finch","airDate":"2018-12-02","airDateUtc":"2018-12-03T01:00:00Z","overview":"Lisa and Homer's bond gets stronger when they start spending real quality time together, and Bart feels neglected. So Marge tries to help Homer balance his attention between the kids.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":648,"unverifiedSceneNumbering":false,"id":8645},{"seriesId":49,"episodeFileId":5720,"seasonNumber":30,"episodeNumber":10,"title":"'Tis the 30th Season","airDate":"2018-12-09","airDateUtc":"2018-12-10T01:00:00Z","overview":"After a failed Black Friday shopping spree, Marge is determined to fix Christmas. However, Homer and the kids surprise Marge with a vacation to a Florida resort.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":649,"unverifiedSceneNumbering":false,"id":8646},{"seriesId":49,"episodeFileId":6319,"seasonNumber":30,"episodeNumber":11,"title":"Mad About the Toy","airDate":"2019-01-06","airDateUtc":"2019-01-07T01:00:00Z","overview":"When Marge and Homer leave Grampa to babysit the kids, some little green army men trigger a PTSD episode, sending the family on a journey to Grampa's past to when he was a post-war toy model.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":650,"unverifiedSceneNumbering":false,"id":9425},{"seriesId":49,"episodeFileId":6456,"seasonNumber":30,"episodeNumber":12,"title":"The Girl on the Bus","airDate":"2019-01-13","airDateUtc":"2019-01-14T01:00:00Z","overview":"When Lisa spots a new best friend from the window of the bus, she gets a taste of what life could be like with a different, more cultured family, and proceeds to try and live a double life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":651,"unverifiedSceneNumbering":false,"id":9426},{"seriesId":49,"episodeFileId":6950,"seasonNumber":30,"episodeNumber":13,"title":"I'm Dancing as Fat as I Can","airDate":"2019-02-10","airDateUtc":"2019-02-11T01:00:00Z","overview":"Homer angers Marge by binging their favorite show without her, and has to pick up a new skill in order to make amends. Meanwhile, Bart prepares to compete in \"Krusty's Holiday Trample\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":652,"unverifiedSceneNumbering":false,"id":10244},{"seriesId":49,"episodeFileId":6956,"seasonNumber":30,"episodeNumber":14,"title":"The Clown Stays in the Picture","airDate":"2019-02-17","airDateUtc":"2019-02-18T01:00:00Z","overview":"Krusty reveals the untold story of his past in his movie \"The Sands of Space.\" While working as personal assistants on the movie, Bart and Lisa learn about the early years of their parents' relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":653,"unverifiedSceneNumbering":false,"id":10281},{"seriesId":49,"episodeFileId":7134,"seasonNumber":30,"episodeNumber":15,"title":"101 Mitigations","airDate":"2019-03-03","airDateUtc":"2019-03-04T01:00:00Z","overview":"Homer steals Comic Book Guy's car and must either prove his innocence in court or reconcile with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":654,"unverifiedSceneNumbering":false,"id":10740},{"seriesId":49,"episodeFileId":7147,"seasonNumber":30,"episodeNumber":16,"title":"I Want You (She's So Heavy)","airDate":"2019-03-10","airDateUtc":"2019-03-11T00:00:00Z","overview":"When a romantic night ends in injury, Marge recovers by taking up kite boarding while Homer bonds with his hallucinated hernia; Lisa attempts to fix her parents' strained relationship by seeking advice from an unlikely source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":655,"unverifiedSceneNumbering":false,"id":10741},{"seriesId":49,"episodeFileId":7187,"seasonNumber":30,"episodeNumber":17,"title":"E My Sports","airDate":"2019-03-17","airDateUtc":"2019-03-18T00:00:00Z","overview":"As Bart begins to excel in video game competitions, Homer discovers a passion for coaching him; Lisa attempts to bring Homer back to reality, but the plan causes chaos.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":656,"unverifiedSceneNumbering":false,"id":10759},{"seriesId":49,"episodeFileId":7202,"seasonNumber":30,"episodeNumber":18,"title":"Bart vs Itchy & Scratchy","airDate":"2019-03-24","airDateUtc":"2019-03-25T00:00:00Z","overview":"Krusty releases an all-female reboot of \u201cItchy and Scratchy,\u201d so Bart and his crew of all-male friends decide to boycott the show. After Bart\u2019s friends turn on him for laughing at the reboot, Bart joins a woke group of sixth-grade girls who commit crimes against patriarchy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":657,"unverifiedSceneNumbering":false,"id":10775},{"seriesId":49,"episodeFileId":7238,"seasonNumber":30,"episodeNumber":19,"title":"Girl's in the Band","airDate":"2019-03-31","airDateUtc":"2019-04-01T00:00:00Z","overview":"Homer works extra shifts at the plant so Lisa can play in the Capitol City Philharmonic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":658,"unverifiedSceneNumbering":false,"id":10921},{"seriesId":49,"episodeFileId":7252,"seasonNumber":30,"episodeNumber":20,"title":"I'm Just a Girl Who Can't Say D'oh","airDate":"2019-04-07","airDateUtc":"2019-04-08T00:00:00Z","overview":"Marge becomes director of Springfield's local theater, armed with Lisa's script resembling \"Hamilton\"; Homer joins a baby class with Maggie, and he takes a liking to supervisor Chloe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":659,"unverifiedSceneNumbering":false,"id":10922},{"seriesId":49,"episodeFileId":7381,"seasonNumber":30,"episodeNumber":21,"title":"D'oh Canada","airDate":"2019-04-28","airDateUtc":"2019-04-29T00:00:00Z","overview":"Lisa is mistakenly given political asylum in Canada during a family trip to Niagara Falls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":660,"unverifiedSceneNumbering":false,"id":11065},{"seriesId":49,"episodeFileId":7413,"seasonNumber":30,"episodeNumber":22,"title":"Woo-Hoo Dunnit","airDate":"2019-05-05","airDateUtc":"2019-05-06T00:00:00Z","overview":"The documentary crime series \u201cDateline: Springfield\u201d goes in-depth to solve the case of Lisa\u2019s missing college fund.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":661,"unverifiedSceneNumbering":false,"id":11089},{"seriesId":49,"episodeFileId":7435,"seasonNumber":30,"episodeNumber":23,"title":"Crystal Blue-Haired Persuasion","airDate":"2019-05-12","airDateUtc":"2019-05-13T00:00:00Z","overview":"Marge starts a business selling healing crystals to the naive mothers of Springfield when Homer\u2019s work cuts children\u2019s health-care benefits, leading Marge to use the crystals as a cheaper solution for Bart\u2019s ADD.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":662,"unverifiedSceneNumbering":false,"id":11090},{"seriesId":49,"episodeFileId":9145,"seasonNumber":31,"episodeNumber":1,"title":"The Winter of Our Monetized Content","airDate":"2019-09-29","airDateUtc":"2019-09-30T00:00:00Z","overview":"When a video goes viral of Bart and Homer fighting, they begin a journey as social media celebrities. Meanwhile, Lisa battles the school\u2019s new industrialized detention system.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":663,"unverifiedSceneNumbering":false,"id":11585},{"seriesId":49,"episodeFileId":9623,"seasonNumber":31,"episodeNumber":2,"title":"Go Big or Go Homer","airDate":"2019-10-06","airDateUtc":"2019-10-07T00:00:00Z","overview":"Homer is demoted to supervising interns, among whom is go-getter millennial Mike, a 35-year-old who asks Homer to be his mentor. However, when Homer inspires Mike to start a business of his own, the two find themselves being chased by the mob.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":664,"unverifiedSceneNumbering":false,"id":13071},{"seriesId":49,"episodeFileId":9815,"seasonNumber":31,"episodeNumber":3,"title":"The Fat Blue Line","airDate":"2019-10-13","airDateUtc":"2019-10-14T00:00:00Z","overview":"When the wrong man is arrested for pickpocketing Springfield during the San Castellaneta street festival, Chief Wiggum sets out to catch the real criminal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":665,"unverifiedSceneNumbering":false,"id":13118},{"seriesId":49,"episodeFileId":9842,"seasonNumber":31,"episodeNumber":4,"title":"Treehouse of Horror XXX","airDate":"2019-10-20","airDateUtc":"2019-10-21T00:00:00Z","overview":"Horrors include a demon Maggie, a mission to rescue Milhouse from another dimension, dead-Homer\u2019s spirit trying on some new bodies for size, and Selma finally finding love in an unlikely place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":666,"unverifiedSceneNumbering":false,"id":13119},{"seriesId":49,"episodeFileId":9990,"seasonNumber":31,"episodeNumber":5,"title":"Gorillas on the Mast","airDate":"2019-11-03","airDateUtc":"2019-11-04T01:00:00Z","overview":"After a trip to Aquatraz Water Park, Lisa becomes determined to set free Springfield's most vicious animals in captivity. Meanwhile, Homer fulfills a lifelong dream of buying a boat, and quickly realizes boat ownership sucks.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":667,"unverifiedSceneNumbering":false,"id":14523},{"seriesId":49,"episodeFileId":10166,"seasonNumber":31,"episodeNumber":6,"title":"Marge the Lumberjill","airDate":"2019-11-10","airDateUtc":"2019-11-11T01:00:00Z","overview":"Marge becomes a competitive lumberjack and goes on a month-long retreat to Portland with her trainer, whom Homer fears will take his wife away from him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":668,"unverifiedSceneNumbering":false,"id":14524},{"seriesId":49,"episodeFileId":10195,"seasonNumber":31,"episodeNumber":7,"title":"Livin' La Pura Vida","airDate":"2019-11-17","airDateUtc":"2019-11-18T01:00:00Z","overview":"The Simpsons join other Springfield families on the Van Houtens\u2019 annual trip to Costa Rica, where Homer befriends Patty\u2019s new girlfriend and Lisa discovers how the Van Houtens are able to afford this trip every year.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":669,"unverifiedSceneNumbering":false,"id":14778},{"seriesId":49,"episodeFileId":10273,"seasonNumber":31,"episodeNumber":8,"title":"Thanksgiving of Horror","airDate":"2019-11-24","airDateUtc":"2019-11-25T01:00:00Z","overview":"The Simpsons face various Thanksgiving nightmares, including the first Thanksgiving, an A.I. mishap and a dangerous space mission complicated by a sentient cranberry sauce.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":670,"unverifiedSceneNumbering":false,"id":14779},{"seriesId":49,"episodeFileId":10374,"seasonNumber":31,"episodeNumber":9,"title":"Todd, Todd, Why Hast Thou Forsaken Me?","airDate":"2019-12-01","airDateUtc":"2019-12-02T01:00:00Z","overview":"Todd blames God for the death of his mother and rejects his faith, so Ned sends him to live with the Simpsons, hoping they can scare him into believing in God again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":671,"unverifiedSceneNumbering":false,"id":15539},{"seriesId":49,"episodeFileId":10622,"seasonNumber":31,"episodeNumber":10,"title":"Bobby, It's Cold Outside","airDate":"2019-12-15","airDateUtc":"2019-12-16T01:00:00Z","overview":"Sideshow Bob gets contracted as this year\u2019s mall Santa. Meanwhile, someone is stealing all the Christmas packages off people\u2019s front porches.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":672,"unverifiedSceneNumbering":false,"id":15599},{"seriesId":49,"episodeFileId":11179,"seasonNumber":31,"episodeNumber":11,"title":"Hail to the Teeth","airDate":"2020-01-05","airDateUtc":"2020-01-06T01:00:00Z","overview":"Homer and Marge attend Artie Ziff\u2019s wedding and become quite uncomfortable when they realize that his bride-to-be is a clone of Marge. Meanwhile, Lisa grapples with the misogynistic implications of the immediate popularity she receives after getting her new Invisalign braces.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":673,"unverifiedSceneNumbering":false,"id":15843},{"seriesId":49,"episodeFileId":12492,"seasonNumber":31,"episodeNumber":12,"title":"The Miseducation of Lisa Simpson","airDate":"2020-02-16","airDateUtc":"2020-02-17T01:00:00Z","overview":"Marge recruits Chrissy Teigen and John Legend for an education-based proposal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":674,"unverifiedSceneNumbering":false,"id":17079},{"seriesId":49,"episodeFileId":12574,"seasonNumber":31,"episodeNumber":13,"title":"Frinkcoin","airDate":"2020-02-23","airDateUtc":"2020-02-24T01:00:00Z","overview":"Homer and Marge compete to be the topic of Lisa's \"Most Interesting Person I Know\" essay. Lisa instead chooses Professor Frink. While Lisa works on the essay, Frink develops a cryptocurrency, overtaking Mr. Burn's title of richest man in Springfield. With new fame, Frink struggles to know who his real friends are, while Mr. Burns schemes to take his title back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":675,"unverifiedSceneNumbering":false,"id":17080},{"seriesId":49,"episodeFileId":12641,"seasonNumber":31,"episodeNumber":14,"title":"Bart the Bad Guy","airDate":"2020-03-01","airDateUtc":"2020-03-02T01:00:00Z","overview":"Bart accidentally sees a brand-new superhero movie a month before it comes out and the world cowers before his newfound plot-spoiling powers. Thus, a new super-villain is born: Spoiler Boy. Heroic movie executives try to stop Bart before he succumbs to the temptations of ultimate evil.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":676,"unverifiedSceneNumbering":false,"id":17081},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":64,"title":"Playdate with Destiny","airDate":"2020-03-06","airDateUtc":"2020-03-07T01:00:00Z","overview":"Maggie and Marge are having a play-date at Springfield's finest toddler play park when Maggie becomes smitten with a little boy. It's love at first suck and Maggie dreams about seeing him again after a day full of make-believe romance.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21487},{"seriesId":49,"episodeFileId":12685,"seasonNumber":31,"episodeNumber":15,"title":"Screenless","airDate":"2020-03-08","airDateUtc":"2020-03-09T00:00:00Z","overview":"Marge implements a screen time limit for the whole family, all of whom all easily adjust to the new lifestyle. However, Marge realizes that she is the one addicted - not her husband and children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":677,"unverifiedSceneNumbering":false,"id":17177},{"seriesId":49,"episodeFileId":12712,"seasonNumber":31,"episodeNumber":16,"title":"Better Off Ned","airDate":"2020-03-15","airDateUtc":"2020-03-16T00:00:00Z","overview":"Jealous of Bart\u2019s bond with Ned, Homer mentors Nelson in retaliation, but an act of heroism helps Homer to regain Bart\u2019s respect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":678,"unverifiedSceneNumbering":false,"id":17178},{"seriesId":49,"episodeFileId":12744,"seasonNumber":31,"episodeNumber":17,"title":"Highway to Well","airDate":"2020-03-22","airDateUtc":"2020-03-23T00:00:00Z","overview":"When Maggie goes to pre-school, Marge decides to get a job to pass the time and ends up working at an upscale weed dispensary. Then, Homer decides to open his own dispensary that mimics a sketchy drug deal, putting their two businesses at odds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":679,"unverifiedSceneNumbering":false,"id":17179},{"seriesId":49,"episodeFileId":12902,"seasonNumber":31,"episodeNumber":18,"title":"The Incredible Lightness of Being a Baby","airDate":"2020-04-19","airDateUtc":"2020-04-20T00:00:00Z","overview":"Cletus becomes a helium tycoon. Meanwhile, Marge reunites with baby Hudson from Playdate with Destiny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":680,"unverifiedSceneNumbering":false,"id":17488},{"seriesId":49,"episodeFileId":13208,"seasonNumber":31,"episodeNumber":19,"title":"Warrin' Priests","airDate":"2020-04-26","airDateUtc":"2020-04-27T00:00:00Z","overview":"When Bode, a young charismatic new preacher, comes to town and shakes things up at church, Reverend Lovejoy investigates his mysterious past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":681,"unverifiedSceneNumbering":false,"id":17489},{"seriesId":49,"episodeFileId":13350,"seasonNumber":31,"episodeNumber":20,"title":"Warrin' Priests Part 2","airDate":"2020-05-03","airDateUtc":"2020-05-04T00:00:00Z","overview":"In Michigan, Reverend Lovejoy uncovers the reason why Bode left and came to Springfield. When the congregation learns of his crime, they must decide whether to banish their new priest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":682,"unverifiedSceneNumbering":false,"id":17490},{"seriesId":49,"episodeFileId":13294,"seasonNumber":31,"episodeNumber":21,"title":"The Hateful Eight-Year-Olds","airDate":"2020-05-10","airDateUtc":"2020-05-11T00:00:00Z","overview":"Lisa makes a new friend who loves horses, but then becomes part of a circle of snooty young rich girls. Meanwhile, Homer takes Marge on a romantic cruise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":683,"unverifiedSceneNumbering":false,"id":17491},{"seriesId":49,"episodeFileId":13351,"seasonNumber":31,"episodeNumber":22,"title":"The Way of the Dog","airDate":"2020-05-17","airDateUtc":"2020-05-18T00:00:00Z","overview":"After the Simpsons' dog bites Marge, the family explores the tragic past of Santa's Little Helper","hasFile":true,"monitored":true,"absoluteEpisodeNumber":684,"unverifiedSceneNumbering":false,"id":17492},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":1,"title":"Undercover Burns","airDate":"2020-09-27","airDateUtc":"2020-09-28T00:00:00Z","overview":"Mr. Burns goes undercover as \"Fred\" at the nuclear power plant and becomes friends with Homer and the gang. Burns implements all sorts of amenities to improve his employees' lives, but a jealous Smithers plots to bring the old, bitter Burns back and destroy Fred.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":685,"unverifiedSceneNumbering":false,"id":18554},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":2,"title":"I, Carumbus","airDate":"2020-10-04","airDateUtc":"2020-10-05T00:00:00Z","overview":"At a museum exhibit of Ancient Rome, Marge and Homer get into an argument about Homer's lack of ambition. They then imagine a Roman version of what would happen if Homer was more career-driven.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":686,"unverifiedSceneNumbering":false,"id":19347},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":3,"title":"Now Museum, Now You Don't","airDate":"2020-10-11","airDateUtc":"2020-10-12T00:00:00Z","overview":"Lisa stays home from school to explore the wonders of Western art. She appears as Lisanardo da Vinci, while Bart takes the shape of a French impressionist, Homer and Marge as Diego Rivera and Frida Kahlo, and Maggie as a warrior Cupid.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":687,"unverifiedSceneNumbering":false,"id":19450},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":4,"title":"Treehouse of Horror XXXI","airDate":"2020-11-01","airDateUtc":"2020-11-02T01:00:00Z","overview":"Frightening look at the 2020 election, parodies of Pixar and Spider-Man: Into the Spider-Verse and a ninth birthday Lisa just can't get over.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":688,"unverifiedSceneNumbering":false,"id":19451},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":5,"title":"The 7 Beer Itch","airDate":"2020-11-08","airDateUtc":"2020-11-09T01:00:00Z","overview":"When Marge and the kids take a seaside vacation, Homer is unwittingly tempted by a British femme fatale.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":689,"unverifiedSceneNumbering":false,"id":19452},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":6,"title":"Podcast News","airDate":"2020-11-15","airDateUtc":"2020-11-16T01:00:00Z","overview":"Grampa is accused of a crime. Meanwhile, Kent Brockman questions his career.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":690,"unverifiedSceneNumbering":false,"id":19453},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":7,"title":"Three Dreams Denied","airDate":"2020-11-22","airDateUtc":"2020-11-23T01:00:00Z","overview":"Bart becomes a voiceover actor and Comic Book Guy is humiliated at Comic-Con. Meanwhile, Lisa is set up for a fall.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":691,"unverifiedSceneNumbering":false,"id":19807},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":8,"title":"The Road to Cincinnati","airDate":"2020-11-29","airDateUtc":"2020-11-30T01:00:00Z","overview":"Odd couple Skinner and Chalmers embark on an 800-mile car ride to Cincinnati to attend an administrator's convention. But whether they reach their destination without killing each other first is anyone's guess.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":692,"unverifiedSceneNumbering":false,"id":19929},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":9,"title":"Sorry Not Sorry","airDate":"2020-12-06","airDateUtc":"2020-12-07T01:00:00Z","overview":"Lisa calls her teacher, Ms. Hoover, a hack and refuses to apologize. Then, she learns Ms. Hoover's private pain.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":693,"unverifiedSceneNumbering":false,"id":19930},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":10,"title":"A Springfield Summer Christmas for Christmas","airDate":"2020-12-13","airDateUtc":"2020-12-14T01:00:00Z","overview":"A cable channel films a Christmas movie in Springfield and Skinner falls in love.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":694,"unverifiedSceneNumbering":false,"id":19931},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":11,"title":"The Dad-Feelings Limited","airDate":"2021-01-03","airDateUtc":"2021-01-04T01:00:00Z","overview":"Comic book guy and his wife Kumiko debate having a baby and we learn his awesome origin story.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":695,"unverifiedSceneNumbering":false,"id":19932},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":12,"title":"Diary Queen","airDate":"2021-02-21","airDateUtc":"2021-02-22T01:00:00Z","overview":"Bart finds his old teacher's diary and learns a surprising secret. Then, Lisa discovers an even bigger surprise.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":696,"unverifiedSceneNumbering":false,"id":19933},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":13,"title":"Wad Goals","airDate":"2021-02-28","airDateUtc":"2021-03-01T01:00:00Z","overview":"Bart becomes a successful caddy, but Marge worries it is ruining his character.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":697,"unverifiedSceneNumbering":false,"id":20047},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":14,"title":"Yokel Hero","airDate":"2021-03-07","airDateUtc":"2021-03-08T01:00:00Z","overview":"Cletus becomes a singing sensation, while Homer becomes a new man. Then, Cletus turns on his fans, ruining everything.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":698,"unverifiedSceneNumbering":false,"id":20048},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":15,"title":"Do Pizza Bots Dream of Electric Guitars","airDate":"2021-03-14","airDateUtc":"2021-03-15T00:00:00Z","overview":"Homer tries to reunite a mechanical band from his youth, but film and TV creator J.J. Abrams gets ahold of them first.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":699,"unverifiedSceneNumbering":false,"id":20049},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":16,"title":"Manger Things","airDate":"2021-03-21","airDateUtc":"2021-03-22T00:00:00Z","overview":"Learn a secret of Flanders\u2019 past and discover a never-before-seen room in the Simpson home.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":700,"unverifiedSceneNumbering":false,"id":20050},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":17,"title":"Uncut Femmes","airDate":"2021-03-28","airDateUtc":"2021-03-29T00:00:00Z","overview":"We learn that Chief Wiggum's wife is more than she seems. Meanwhile, Marge takes part in a jewel heist.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":701,"unverifiedSceneNumbering":false,"id":20777},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":18,"title":"Burger Kings","airDate":"2021-04-11","airDateUtc":"2021-04-12T00:00:00Z","overview":"Mr. Burns gets into the plant-based burger business. Lisa refuses to believe he's up to no good.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":702,"unverifiedSceneNumbering":false,"id":20778},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":19,"title":"Panic on the Streets of Springfield","airDate":"2021-04-18","airDateUtc":"2021-04-19T00:00:00Z","overview":"Lisa gets an imaginary friend who makes her feel much better about her friends. Meanwhile, Homer gets a vehicle with awesome torque.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":703,"unverifiedSceneNumbering":false,"id":20779},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":65,"title":"Maggie Simpson in \u201cThe Force Awakens From Its Nap\u201d","airDate":"2021-05-04","airDateUtc":"2021-05-05T00:00:00Z","overview":"In a daycare, far, far away... but still in Springfield, Maggie is on an epic quest for her stolen pacifier. Her adventure brings her face-to-face with young Padawans, Sith Lords, familiar droids, Rebel scum, and an ultimate battle against the dark side, in this original short celebrating the Star Wars galaxy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21637},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":20,"title":"Mother and Child Reunion","airDate":"2021-05-09","airDateUtc":"2021-05-10T00:00:00Z","overview":"Lisa makes a shocking college decision, wounding Marge. It leads to a very surprising place.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":704,"unverifiedSceneNumbering":false,"id":21269},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":21,"title":"The Man from G.R.A.M.P.A.","airDate":"2021-05-16","airDateUtc":"2021-05-17T00:00:00Z","overview":"A British secret agent comes to Springfield in search of a Russian spy.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":705,"unverifiedSceneNumbering":false,"id":21270},{"seriesId":49,"episodeFileId":0,"seasonNumber":32,"episodeNumber":22,"title":"The Last Barfighter","airDate":"2021-05-23","airDateUtc":"2021-05-24T00:00:00Z","overview":"After Moe breaks their most sacred rule, a secret society of bartenders seeks ultimate vengeance on Homer and his friends.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":706,"unverifiedSceneNumbering":false,"id":21271},{"seriesId":49,"episodeFileId":0,"seasonNumber":0,"episodeNumber":66,"title":"The Simpsons: The Good, the Bart, and the Loki","airDate":"2021-07-07","airDateUtc":"2021-07-08T00:00:00Z","overview":"Loki joins forces with Bart Simpson to fight against his toughest opponents in Springfield after he is banished from Asgard yet again.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21641},{"seriesId":49,"episodeFileId":0,"seasonNumber":33,"episodeNumber":1,"title":"The Star of Backstage","airDate":"2021-09-26","airDateUtc":"2021-09-27T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21665}],"episodeFile":[{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E01.Monty Burns' Fleeing Circus-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E01.Monty Burns' Fleeing Circus-WEBDL-1080p.mkv","size":947439874,"dateAdded":"2018-10-10T23:00:07.001228Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5147405,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2253},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E01.Every Man's Dream-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E01.Every Man's Dream-HDTV-1080p.mkv","size":941666276,"dateAdded":"2018-10-10T23:00:07.042736Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4822770,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2254},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E01.Clown in the Dumps-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E01.Clown in the Dumps-HDTV-1080p.mkv","size":883432861,"dateAdded":"2018-10-10T23:00:07.079948Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4648270,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2255},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E01.The Serfsons-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E01.The Serfsons-HDTV-1080p.mkv","size":752458346,"dateAdded":"2018-10-10T23:00:07.115901Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126789,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4507493,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2256},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E01.Bart's Not Dead-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E01.Bart's Not Dead-WEBDL-1080p.mkv","size":527358481,"dateAdded":"2018-10-10T23:00:07.152824Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2709801,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2257},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Stark Raving Dad-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E01.Stark Raving Dad-SDTV.avi","size":303900158,"dateAdded":"2018-10-10T23:00:07.33339Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098306,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2262},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E01.Treehouse of Horror XIV-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E01.Treehouse of Horror XIV-SDTV.avi","size":299634680,"dateAdded":"2018-10-10T23:00:07.442837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1220804,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2265},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E01.Homerland-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E01.Homerland-SDTV.avi","size":296965424,"dateAdded":"2018-10-10T23:00:07.479346Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1272252,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2266},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E01.Homer the Whopper-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E01.Homer the Whopper-SDTV.avi","size":291807736,"dateAdded":"2018-10-10T23:00:07.552074Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1215212,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2268},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E01.Treehouse of Horror XIII-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E01.Treehouse of Horror XIII-SDTV.avi","size":289166890,"dateAdded":"2018-10-10T23:00:07.588184Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1113847,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2269},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E01.The Falcon and the D'Ohman-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E01.The Falcon and the D'Ohman-SDTV.avi","size":286301850,"dateAdded":"2018-10-10T23:00:07.625629Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1153345,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2270},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E01.Treehouse of Horror XV-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E01.Treehouse of Horror XV-SDTV.avi","size":280006718,"dateAdded":"2018-10-10T23:00:07.66168Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1294581,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2271},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E01.The Bonfire of the Manatees-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E01.The Bonfire of the Manatees-SDTV.avi","size":274904496,"dateAdded":"2018-10-10T23:00:07.697609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1304101,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2272},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E01.Sex, Pies and Idiot Scrapes-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E01.Sex, Pies and Idiot Scrapes-SDTV.avi","size":271741678,"dateAdded":"2018-10-10T23:00:07.770428Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1248235,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2274},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E02.The Wreck of the Relationship-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E02.The Wreck of the Relationship-HDTV-1080p.mkv","size":1001911686,"dateAdded":"2018-10-10T23:00:08.116838Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4818124,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2283},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E02.Friends and Family-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E02.Friends and Family-WEBDL-1080p.mkv","size":894514489,"dateAdded":"2018-10-10T23:00:08.155481Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5128106,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2284},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E02.Cue Detective-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E02.Cue Detective-HDTV-1080p.mkv","size":883765587,"dateAdded":"2018-10-10T23:00:08.191966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4848099,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2285},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E02.Heartbreak Hotel-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E02.Heartbreak Hotel-WEBDL-1080p.mkv","size":741234386,"dateAdded":"2018-10-10T23:00:08.227926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126804,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2286},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E02.Springfield Splendor-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E02.Springfield Splendor-HDTV-1080p.mkv","size":635831874,"dateAdded":"2018-10-10T23:00:08.264419Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3224412,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2287},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E02.Treehouse of Horror XXIV-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E02.Treehouse of Horror XXIV-SDTV.avi","size":318638984,"dateAdded":"2018-10-10T23:00:08.337815Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1352887,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2289},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E02.My Mother the Carjacker-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E02.My Mother the Carjacker-SDTV.avi","size":298030592,"dateAdded":"2018-10-10T23:00:08.598017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1213147,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2296},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E02.Bart Gets a 'Z'-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E02.Bart Gets a 'Z'-SDTV.avi","size":293102084,"dateAdded":"2018-10-10T23:00:08.635726Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1184270,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2297},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E02.How I Spent My Strummer Vacation-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E02.How I Spent My Strummer Vacation-SDTV.avi","size":287083340,"dateAdded":"2018-10-10T23:00:08.709364Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1101553,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2299},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E02.The Girl Who Slept Too Little-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E02.The Girl Who Slept Too Little-SDTV.avi","size":286351044,"dateAdded":"2018-10-10T23:00:08.746464Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1334472,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2300},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E02.Bart Stops to Smell the Roosevelts-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E02.Bart Stops to Smell the Roosevelts-SDTV.avi","size":281913908,"dateAdded":"2018-10-10T23:00:08.785796Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1152948,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2301},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E02.Lost Verizon-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E02.Lost Verizon-SDTV.avi","size":266785758,"dateAdded":"2018-10-10T23:00:08.822963Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1243387,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2302},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E02.Radioactive Man-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E02.Radioactive Man-SDTV.avi","size":265796514,"dateAdded":"2018-10-10T23:00:08.861198Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1148987,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2303},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E02.All's Fair in Oven War-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E02.All's Fair in Oven War-SDTV.avi","size":258512866,"dateAdded":"2018-10-10T23:00:08.938485Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1163904,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2305},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E02.Jazzy and the Pussycats-SDTV.avi","path":"\/tv\/The Simpsons\/Season 18\/S18E02.Jazzy and the Pussycats-SDTV.avi","size":251718282,"dateAdded":"2018-10-10T23:00:09.049523Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1202667,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"20:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2308},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E03.The Town-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E03.The Town-WEBDL-1080p.mkv","size":910140951,"dateAdded":"2018-10-10T23:00:09.236963Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5139184,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2313},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E03.Super Franchise Me-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E03.Super Franchise Me-HDTV-1080p.mkv","size":895876221,"dateAdded":"2018-10-10T23:00:09.275165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4677147,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2314},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E03.Puffless-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E03.Puffless-HDTV-1080p.mkv","size":876380803,"dateAdded":"2018-10-10T23:00:09.311991Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4826198,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2315},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E03.Whistler's Father-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E03.Whistler's Father-HDTV-1080p.mkv","size":707656643,"dateAdded":"2018-10-10T23:00:09.348692Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126803,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2316},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E03.Four Regrettings and a Funeral-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E03.Four Regrettings and a Funeral-SDTV.avi","size":311018476,"dateAdded":"2018-10-10T23:00:09.423851Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1302265,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2318},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E03.The Great Wife Hope-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E03.The Great Wife Hope-SDTV.avi","size":308585914,"dateAdded":"2018-10-10T23:00:09.46065Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1308476,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2319},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E03.The President Wore Pearls-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E03.The President Wore Pearls-SDTV.avi","size":296081218,"dateAdded":"2018-10-10T23:00:09.697574Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1200481,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2325},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E03.Milhouse of Sand and Fog-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E03.Milhouse of Sand and Fog-SDTV.avi","size":292811856,"dateAdded":"2018-10-10T23:00:09.743416Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1373623,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2326},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E03.Treehouse of Horror XXII-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E03.Treehouse of Horror XXII-SDTV.avi","size":288504364,"dateAdded":"2018-10-10T23:00:09.819181Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1153670,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2328},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E03.Sleeping with the Enemy-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E03.Sleeping with the Enemy-SDTV.avi","size":274339184,"dateAdded":"2018-10-10T23:00:09.85669Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1259741,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2329},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E03.Bart vs. Lisa vs. the Third Grade-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E03.Bart vs. Lisa vs. the Third Grade-SDTV.avi","size":272452768,"dateAdded":"2018-10-10T23:00:09.89372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1100259,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2330},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E03.Double, Double, Boy in Trouble-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E03.Double, Double, Boy in Trouble-SDTV.avi","size":270805840,"dateAdded":"2018-10-10T23:00:09.932256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1268806,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2331},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E03.MoneyBART-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E03.MoneyBART-SDTV.avi","size":249258644,"dateAdded":"2018-10-10T23:00:10.116183Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1144997,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2336},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E04.Treehouse of Horror XXV-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E04.Treehouse of Horror XXV-HDTV-1080p.mkv","size":950142041,"dateAdded":"2018-10-10T23:00:10.337391Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4832882,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2342},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E04.Treehouse of Horror XXVII-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E04.Treehouse of Horror XXVII-WEBDL-1080p.mkv","size":938069787,"dateAdded":"2018-10-10T23:00:10.374146Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5120563,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2343},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E04.Halloween of Horror-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E04.Halloween of Horror-HDTV-1080p.mkv","size":915689607,"dateAdded":"2018-10-10T23:00:10.410898Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5064380,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2344},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E04.Treehouse of Horror XXVIII-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E04.Treehouse of Horror XXVIII-HDTV-1080p.mkv","size":636712874,"dateAdded":"2018-10-10T23:00:10.448933Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3319829,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2345},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Bart the Murderer-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E04.Bart the Murderer-SDTV.avi","size":303260374,"dateAdded":"2018-10-10T23:00:10.672465Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098351,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2351},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E04.Treehouse of Horror XVI-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E04.Treehouse of Horror XVI-SDTV.avi","size":301315374,"dateAdded":"2018-10-10T23:00:10.709263Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1411411,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2352},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E04.YOLO-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E04.YOLO-SDTV.avi","size":298818914,"dateAdded":"2018-10-10T23:00:10.746157Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1272172,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2353},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E04.The Regina Monologues-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E04.The Regina Monologues-SDTV.avi","size":295902004,"dateAdded":"2018-10-10T23:00:10.782905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199962,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2354},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E04.Replaceable You-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E04.Replaceable You-SDTV.avi","size":289423792,"dateAdded":"2018-10-10T23:00:10.894136Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199405,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2357},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E04.Large Marge-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E04.Large Marge-SDTV.avi","size":277980338,"dateAdded":"2018-10-10T23:00:10.974984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1100331,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2359},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E04.Treehouse of Horror XIX-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E04.Treehouse of Horror XIX-SDTV.avi","size":277814762,"dateAdded":"2018-10-10T23:00:11.00366Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1291028,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2360},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E04.She Used to Be My Girl-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E04.She Used to Be My Girl-SDTV.avi","size":273204834,"dateAdded":"2018-10-10T23:00:11.032242Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1250845,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2361},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E05.Opposites A-Frack-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E05.Opposites A-Frack-HDTV-1080p.mkv","size":935698654,"dateAdded":"2018-10-10T23:00:11.310784Z","releaseGroup":"Frack","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4773804,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2371},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E05.Trust But Clarify-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E05.Trust But Clarify-WEBDL-1080p.mkv","size":901818703,"dateAdded":"2018-10-10T23:00:11.332817Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5173159,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2372},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E05.Treehouse of Horror XXVI-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E05.Treehouse of Horror XXVI-HDTV-1080p.mkv","size":830164488,"dateAdded":"2018-10-10T23:00:11.358292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4593312,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2373},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E05.Grampy, Can Ya Hear Me-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E05.Grampy, Can Ya Hear Me-HDTV-1080p.mkv","size":715766057,"dateAdded":"2018-10-10T23:00:11.38035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126779,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2374},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E05.Labor Pains-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E05.Labor Pains-SDTV.avi","size":305018118,"dateAdded":"2018-10-10T23:00:11.502393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1328424,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2379},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E05.The Devil Wears Nada-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E05.The Devil Wears Nada-SDTV.avi","size":297698122,"dateAdded":"2018-10-10T23:00:11.57217Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1227580,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2382},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E05.Dangerous Curves-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E05.Dangerous Curves-SDTV.avi","size":290122996,"dateAdded":"2018-10-10T23:00:11.619723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1360893,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2384},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E05.Marge's Son Poisoning-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E05.Marge's Son Poisoning-SDTV.avi","size":290069488,"dateAdded":"2018-10-10T23:00:11.646467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1357163,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2385},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E05.The Fat and the Furriest-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E05.The Fat and the Furriest-SDTV.avi","size":288609806,"dateAdded":"2018-10-10T23:00:11.669125Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1244329,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"20:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2386},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E05.The Food Wife-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E05.The Food Wife-SDTV.avi","size":288367736,"dateAdded":"2018-10-10T23:00:11.694828Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1152905,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2387},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E05.Helter Shelter-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E05.Helter Shelter-SDTV.avi","size":278121596,"dateAdded":"2018-10-10T23:00:11.717132Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099955,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2388},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E05.Fat Man and Little Boy-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E05.Fat Man and Little Boy-SDTV.avi","size":278103518,"dateAdded":"2018-10-10T23:00:11.742512Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1282787,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2389},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E05.Lisa Simpson, This Isn't Your Life-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E05.Lisa Simpson, This Isn't Your Life-SDTV.avi","size":269987850,"dateAdded":"2018-10-10T23:00:11.76475Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1233384,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2390},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E06.There Will Be Buds-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E06.There Will Be Buds-WEBDL-1080p.mkv","size":909861778,"dateAdded":"2018-10-10T23:00:12.015193Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5075246,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2400},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E06.Simpsorama-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E06.Simpsorama-HDTV-1080p.mkv","size":905370772,"dateAdded":"2018-10-10T23:00:12.045662Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4843600,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2401},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E06.Friend with Benefit-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E06.Friend with Benefit-HDTV-1080p.mkv","size":901141468,"dateAdded":"2018-10-10T23:00:12.076266Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4977814,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2402},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E06.The Old Blue Mayor She Ain't What She Used to Be-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E06.The Old Blue Mayor She Ain't What She Used to Be-HDTV-1080p.mkv","size":710622739,"dateAdded":"2018-10-10T23:00:12.110336Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126799,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2403},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Like Father Like Clown-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E06.Like Father Like Clown-SDTV.avi","size":303935018,"dateAdded":"2018-10-10T23:00:12.295868Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098506,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2410},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E06.The Kid is All Right-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E06.The Kid is All Right-SDTV.avi","size":300666102,"dateAdded":"2018-10-10T23:00:12.344055Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1250011,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2412},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E06.See Homer Run-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E06.See Homer Run-SDTV.avi","size":295690232,"dateAdded":"2018-10-10T23:00:12.392361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1396569,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2414},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E06.Today, I Am a Klown-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E06.Today, I Am a Klown-SDTV.avi","size":292065752,"dateAdded":"2018-10-10T23:00:12.417511Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1214632,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2415},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E06.The Book Job-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E06.The Book Job-SDTV.avi","size":288291350,"dateAdded":"2018-10-10T23:00:12.441921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1152442,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2416},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E06.The Great Louse Detective-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E06.The Great Louse Detective-SDTV.avi","size":287250142,"dateAdded":"2018-10-10T23:00:12.527882Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1100072,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2417},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E06.Homer and Lisa Exchange Cross Words-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E06.Homer and Lisa Exchange Cross Words-SDTV.avi","size":269717474,"dateAdded":"2018-10-10T23:00:12.557531Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1233468,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2418},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E06.Midnight Rx-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E06.Midnight Rx-SDTV.avi","size":269712630,"dateAdded":"2018-10-10T23:00:12.585719Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1243462,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2419},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E06.The Fool Monty-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E06.The Fool Monty-SDTV.avi","size":267477950,"dateAdded":"2018-10-10T23:00:12.615832Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1223375,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2420},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E07.Blazed and Confused-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E07.Blazed and Confused-HDTV-1080p.mkv","size":904136591,"dateAdded":"2018-10-10T23:00:12.878393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4760823,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2429},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E07.Lisa with an 'S'-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E07.Lisa with an 'S'-HDTV-1080p.mkv","size":885471678,"dateAdded":"2018-10-10T23:00:12.908348Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4798138,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2430},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E07.Havana Wild Weekend-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E07.Havana Wild Weekend-WEBDL-1080p.mkv","size":884402573,"dateAdded":"2018-10-10T23:00:12.938Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5125305,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2431},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E07.Singin' in the Lane-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E07.Singin' in the Lane-HDTV-1080p.mkv","size":635563469,"dateAdded":"2018-10-10T23:00:12.967977Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3310629,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2432},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E07.Yellow Subterfuge-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E07.Yellow Subterfuge-SDTV.avi","size":310828146,"dateAdded":"2018-10-10T23:00:13.027023Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1301096,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2434},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Treehouse of Horror II-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E07.Treehouse of Horror II-SDTV.avi","size":302960086,"dateAdded":"2018-10-10T23:00:13.176305Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1097864,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2439},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E07.Rednecks and Broomsticks-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E07.Rednecks and Broomsticks-SDTV.avi","size":299618090,"dateAdded":"2018-10-10T23:00:13.236823Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1263156,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2441},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E07.'Tis the Fifteenth Season-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E07.'Tis the Fifteenth Season-SDTV.avi","size":298486330,"dateAdded":"2018-10-10T23:00:13.268305Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1215338,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2442},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E07.The Last of the Red Hat Mamas-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E07.The Last of the Red Hat Mamas-SDTV.avi","size":287597378,"dateAdded":"2018-10-10T23:00:13.297202Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1329015,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2443},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E07.The Man in the Blue Flannel Pants-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E07.The Man in the Blue Flannel Pants-SDTV.avi","size":282381460,"dateAdded":"2018-10-10T23:00:13.328243Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1152634,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2444},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E07.Special Edna (a.k.a. Love and Marking)-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E07.Special Edna (a.k.a. Love and Marking)-SDTV.avi","size":279354394,"dateAdded":"2018-10-10T23:00:13.35593Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099676,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2445},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E07.Mypods and Boomsticks-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E07.Mypods and Boomsticks-SDTV.avi","size":278998506,"dateAdded":"2018-10-10T23:00:13.387117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1300775,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2446},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E07.Mommie Beerest-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E07.Mommie Beerest-SDTV.avi","size":270031764,"dateAdded":"2018-10-10T23:00:13.414596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1235427,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2447},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E07.How Munched is that Birdie in the Window-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E07.How Munched is that Birdie in the Window-SDTV.avi","size":263139198,"dateAdded":"2018-10-10T23:00:13.445864Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1227594,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2448},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E08.Covercraft-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E08.Covercraft-HDTV-1080p.mkv","size":904530438,"dateAdded":"2018-10-10T23:00:13.746148Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4693261,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2458},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E08.Dad Behavior-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E08.Dad Behavior-WEBDL-1080p.mkv","size":901972222,"dateAdded":"2018-10-10T23:00:13.774024Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5153092,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2459},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E08.Paths of Glory-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E08.Paths of Glory-HDTV-1080p.mkv","size":890034411,"dateAdded":"2018-10-10T23:00:13.805266Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4766800,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2460},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E08.Mr. Lisa's Opus-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E08.Mr. Lisa's Opus-WEBDL-1080p.mkv","size":507635907,"dateAdded":"2018-10-10T23:00:13.833444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2559062,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2461},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E08.White Christmas Blues-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E08.White Christmas Blues-SDTV.avi","size":311665534,"dateAdded":"2018-10-10T23:00:13.893873Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1371987,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2463},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Lisa's Pony-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E08.Lisa's Pony-SDTV.avi","size":303869394,"dateAdded":"2018-10-10T23:00:14.004675Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098127,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2466},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E08.Marge vs. Singles, Seniors, Childless Couples and Teens, and Gays-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E08.Marge vs. Singles, Seniors, Childless Couples and Teens, and Gays-SDTV.avi","size":294022866,"dateAdded":"2018-10-10T23:00:14.126814Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1201959,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2470},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E08.The Italian Bob-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E08.The Italian Bob-SDTV.avi","size":293921174,"dateAdded":"2018-10-10T23:00:14.154465Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1387012,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2471},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E08.The Ten-Per-Cent Solution-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E08.The Ten-Per-Cent Solution-SDTV.avi","size":289335944,"dateAdded":"2018-10-10T23:00:14.213929Z","releaseGroup":"Cent","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199504,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2473},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E08.The Dad Who Knew Too Little-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E08.The Dad Who Knew Too Little-SDTV.avi","size":279114616,"dateAdded":"2018-10-10T23:00:14.244879Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099516,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2474},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E08.Homer and Ned's Hail Mary Pass-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E08.Homer and Ned's Hail Mary Pass-SDTV.avi","size":274680350,"dateAdded":"2018-10-10T23:00:14.273174Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1261805,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2475},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E08.The Burns and the Bees-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E08.The Burns and the Bees-SDTV.avi","size":270229914,"dateAdded":"2018-10-10T23:00:14.306086Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1265041,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2476},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E08.The Haw-Hawed Couple-SDTV.avi","path":"\/tv\/The Simpsons\/Season 18\/S18E08.The Haw-Hawed Couple-SDTV.avi","size":262682518,"dateAdded":"2018-10-10T23:00:14.334358Z","releaseGroup":"Hawed","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1202648,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2477},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E08.The Fight Before Christmas-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E08.The Fight Before Christmas-SDTV.avi","size":262542808,"dateAdded":"2018-10-10T23:00:14.365921Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1187226,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2478},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Mother Simpson-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E08.Mother Simpson-SDTV.avi","size":257157020,"dateAdded":"2018-10-10T23:00:14.454316Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099899,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2481},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E09.Barthood-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E09.Barthood-HDTV-1080p.mkv","size":931213073,"dateAdded":"2018-10-10T23:00:14.644677Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5005442,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2487},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E09.The Last Traction Hero-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E09.The Last Traction Hero-WEBDL-1080p.mkv","size":917714762,"dateAdded":"2018-10-10T23:00:14.67471Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5185193,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2488},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E09.I Won't Be Home for Christmas-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E09.I Won't Be Home for Christmas-HDTV-1080p.mkv","size":903985632,"dateAdded":"2018-10-10T23:00:14.705896Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4718725,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2489},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E09.Gone Boy-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E09.Gone Boy-HDTV-1080p.mkv","size":711971833,"dateAdded":"2018-10-10T23:00:14.735587Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126798,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2490},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E09.Steal This Episode-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E09.Steal This Episode-SDTV.avi","size":305285776,"dateAdded":"2018-10-10T23:00:14.860761Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1284555,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2494},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Saturdays of Thunder-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E09.Saturdays of Thunder-SDTV.avi","size":302282798,"dateAdded":"2018-10-10T23:00:14.924777Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1097761,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"22:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2496},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E09.I, (Annoyed Grunt)-Bot-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E09.I, (Annoyed Grunt)-Bot-SDTV.avi","size":296206766,"dateAdded":"2018-10-10T23:00:15.01479Z","releaseGroup":"Bot","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1201359,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2499},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E09.Holidays of Future Passed-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E09.Holidays of Future Passed-SDTV.avi","size":291569472,"dateAdded":"2018-10-10T23:00:15.075527Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199450,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2501},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E09.Simpsons Christmas Stories-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E09.Simpsons Christmas Stories-SDTV.avi","size":291371678,"dateAdded":"2018-10-10T23:00:15.105301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1364833,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2502},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E09.Lisa the Drama Queen-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E09.Lisa the Drama Queen-SDTV.avi","size":278591460,"dateAdded":"2018-10-10T23:00:15.136707Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1331507,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2503},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E09.Strong Arms of the Ma-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E09.Strong Arms of the Ma-SDTV.avi","size":273722880,"dateAdded":"2018-10-10T23:00:15.166606Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1100214,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2504},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E09.Pranksta Rap-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E09.Pranksta Rap-SDTV.avi","size":267884388,"dateAdded":"2018-10-10T23:00:15.227166Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1209441,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2506},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E09.Donnie Fatso-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E09.Donnie Fatso-SDTV.avi","size":259069630,"dateAdded":"2018-10-10T23:00:15.318641Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1198597,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2509},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E09.Kill Gil- Vols. 1 & 2-SDTV.avi","path":"\/tv\/The Simpsons\/Season 18\/S18E09.Kill Gil- Vols. 1 & 2-SDTV.avi","size":256801792,"dateAdded":"2018-10-10T23:00:15.378965Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1202145,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2511},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E10.The Man Who Came to Be Dinner-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E10.The Man Who Came to Be Dinner-HDTV-1080p.mkv","size":964606799,"dateAdded":"2018-10-10T23:00:15.535663Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4931120,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2516},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E10.The Nightmare After Krustmas-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E10.The Nightmare After Krustmas-WEBDL-1080p.mkv","size":951634784,"dateAdded":"2018-10-10T23:00:15.567431Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5151352,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2517},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E10.The Girl Code-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E10.The Girl Code-HDTV-1080p.mkv","size":927859071,"dateAdded":"2018-10-10T23:00:15.599689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4923126,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2518},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E10.Haw-Haw Land-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E10.Haw-Haw Land-HDTV-1080p.mkv","size":747551314,"dateAdded":"2018-10-10T23:00:15.636959Z","releaseGroup":"Haw","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126806,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2519},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E10.Married to the Blob-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E10.Married to the Blob-SDTV.avi","size":299118146,"dateAdded":"2018-10-10T23:00:15.890232Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1291334,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2527},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E10.Diatribe of a Mad Housewife-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E10.Diatribe of a Mad Housewife-SDTV.avi","size":296140692,"dateAdded":"2018-10-10T23:00:15.954842Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1200500,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2529},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E10.Homer's Paternity Coot-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E10.Homer's Paternity Coot-SDTV.avi","size":288781804,"dateAdded":"2018-10-10T23:00:15.990389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1349197,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2530},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E10.Politically Inept, with Homer Simpson-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E10.Politically Inept, with Homer Simpson-SDTV.avi","size":283053968,"dateAdded":"2018-10-10T23:00:16.029583Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1153133,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2531},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E10.There's Something About Marrying-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E10.There's Something About Marrying-SDTV.avi","size":281154500,"dateAdded":"2018-10-10T23:00:16.055102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1328767,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2532},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E10.Pray Anything-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E10.Pray Anything-SDTV.avi","size":274117256,"dateAdded":"2018-10-10T23:00:16.082361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1111933,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2533},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E10.Take My Life, Please-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E10.Take My Life, Please-SDTV.avi","size":270599054,"dateAdded":"2018-10-10T23:00:16.107913Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1310825,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2534},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E10.Moms I'd Like to Forget-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E10.Moms I'd Like to Forget-SDTV.avi","size":267389350,"dateAdded":"2018-10-10T23:00:16.13531Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1256461,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2535},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E10.The Simpsons 138th Episode Spectacular-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E10.The Simpsons 138th Episode Spectacular-SDTV.avi","size":257473964,"dateAdded":"2018-10-10T23:00:16.243041Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1102476,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2539},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E11.Pork and Burns-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E11.Pork and Burns-WEBDL-1080p.mkv","size":973693985,"dateAdded":"2018-10-10T23:00:16.404326Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5154501,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2545},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E11.Bart's New Friend-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E11.Bart's New Friend-HDTV-1080p.mkv","size":894677267,"dateAdded":"2018-10-10T23:00:16.4305Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4659327,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2546},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E11.Teenage Mutant Milk-caused Hurdles-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E11.Teenage Mutant Milk-caused Hurdles-HDTV-1080p.mkv","size":780069912,"dateAdded":"2018-10-10T23:00:16.458495Z","releaseGroup":"caused","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233178,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2547},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E11.Frink Gets Testy-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E11.Frink Gets Testy-HDTV-1080p.mkv","size":670962865,"dateAdded":"2018-10-10T23:00:16.48486Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126789,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2548},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Burns Verkaufen der Kraftwerk-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E11.Burns Verkaufen der Kraftwerk-SDTV.avi","size":303108610,"dateAdded":"2018-10-10T23:00:16.646593Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098726,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2554},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E11.Margical History Tour-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E11.Margical History Tour-SDTV.avi","size":299390580,"dateAdded":"2018-10-10T23:00:16.700389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1221962,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2556},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E11.Million Dollar Maybe-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E11.Million Dollar Maybe-SDTV.avi","size":297302432,"dateAdded":"2018-10-10T23:00:16.728959Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1220014,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2557},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E11.We're on the Road to D'ohwhere-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E11.We're on the Road to D'ohwhere-SDTV.avi","size":296934916,"dateAdded":"2018-10-10T23:00:16.755025Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1398889,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2558},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E11.Specs and the City-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E11.Specs and the City-SDTV.avi","size":295725590,"dateAdded":"2018-10-10T23:00:16.782821Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1238454,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2559},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E11.How the Test Was Won-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E11.How the Test Was Won-SDTV.avi","size":286398606,"dateAdded":"2018-10-10T23:00:16.808793Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1375902,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2560},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E11.The D'oh-cial Network-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E11.The D'oh-cial Network-SDTV.avi","size":284564390,"dateAdded":"2018-10-10T23:00:16.836813Z","releaseGroup":"cial","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1156709,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2561},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E11.Barting Over-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E11.Barting Over-SDTV.avi","size":279571028,"dateAdded":"2018-10-10T23:00:16.863667Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099710,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2562},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E11.On a Clear Day I Can't See My Sister-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E11.On a Clear Day I Can't See My Sister-SDTV.avi","size":262148720,"dateAdded":"2018-10-10T23:00:16.891607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1185661,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2563},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Marge Be Not Proud-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E11.Marge Be Not Proud-SDTV.avi","size":257403606,"dateAdded":"2018-10-10T23:00:16.977854Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099873,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2566},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E11.Flaming Moe-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E11.Flaming Moe-SDTV.avi","size":255986302,"dateAdded":"2018-10-10T23:00:17.006122Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1153602,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2567},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E12E13.The Great Phatsby-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E12E13.The Great Phatsby-WEBDL-1080p.mkv","size":1786897305,"dateAdded":"2018-10-10T23:00:17.225252Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5144207,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2574},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E12.The Musk Who Fell to Earth-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E12.The Musk Who Fell to Earth-HDTV-1080p.mkv","size":898728752,"dateAdded":"2018-10-10T23:00:17.256744Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4707702,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2575},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E12.Much Apu About Something-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E12.Much Apu About Something-HDTV-1080p.mkv","size":881227399,"dateAdded":"2018-10-10T23:00:17.350526Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4773307,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2576},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E12.Homer Is Where the Art Isn't-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E12.Homer Is Where the Art Isn't-WEBDL-1080p.mkv","size":471052372,"dateAdded":"2018-10-10T23:00:17.376233Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2282236,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2577},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E12.Boy Meets Curl-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E12.Boy Meets Curl-SDTV.avi","size":310060526,"dateAdded":"2018-10-10T23:00:17.443471Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1284439,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2579},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E12.Milhouse Doesn't Live Here Anymore-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E12.Milhouse Doesn't Live Here Anymore-SDTV.avi","size":298600992,"dateAdded":"2018-10-10T23:00:17.774916Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1213345,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2586},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E12.Diggs-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E12.Diggs-SDTV.avi","size":296476328,"dateAdded":"2018-10-10T23:00:17.809111Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1264868,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2587},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E12.My Fair Laddy-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E12.My Fair Laddy-SDTV.avi","size":283153374,"dateAdded":"2018-10-10T23:00:17.839215Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1320369,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2588},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E12.Moe Goes from Rags to Riches-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E12.Moe Goes from Rags to Riches-SDTV.avi","size":282337238,"dateAdded":"2018-10-10T23:00:17.879293Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1153369,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2589},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E12.I'm Spelling as Fast as I Can-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E12.I'm Spelling as Fast as I Can-SDTV.avi","size":277462110,"dateAdded":"2018-10-10T23:00:17.943699Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099760,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2591},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E12.No Loan Again, Naturally-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E12.No Loan Again, Naturally-SDTV.avi","size":276476164,"dateAdded":"2018-10-10T23:00:17.973735Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1315070,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2592},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Team Homer-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E12.Team Homer-SDTV.avi","size":258433086,"dateAdded":"2018-10-10T23:00:18.037672Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1100863,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2594},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E12.Goo Goo Gai Pan-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E12.Goo Goo Gai Pan-SDTV.avi","size":256368918,"dateAdded":"2018-10-10T23:00:18.072615Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1161328,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2595},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E12.Homer the Father-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E12.Homer the Father-SDTV.avi","size":256025464,"dateAdded":"2018-10-10T23:00:18.103584Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1185830,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2596},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E12.Little Big Girl-SDTV.avi","path":"\/tv\/The Simpsons\/Season 18\/S18E12.Little Big Girl-SDTV.avi","size":249291826,"dateAdded":"2018-10-10T23:00:18.16767Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1202655,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"20:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2598},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E13.Walking Big & Tall-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E13.Walking Big & Tall-HDTV-1080p.mkv","size":933651673,"dateAdded":"2018-10-10T23:00:18.33149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4932600,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2603},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E13.Love Is in the N2-O2-Ar-CO2-Ne-He-CH4-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E13.Love Is in the N2-O2-Ar-CO2-Ne-He-CH4-HDTV-1080p.mkv","size":870771546,"dateAdded":"2018-10-10T23:00:18.361745Z","releaseGroup":"CH4","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4897408,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2604},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E13.3 Scenes Plus a Tag From a Marriage-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E13.3 Scenes Plus a Tag From a Marriage-WEBDL-1080p.mkv","size":702094891,"dateAdded":"2018-10-10T23:00:18.395489Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3683068,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2605},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E13.The Man Who Grew Too Much-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E13.The Man Who Grew Too Much-SDTV.avi","size":305079394,"dateAdded":"2018-10-10T23:00:18.490095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1286002,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2608},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E13.Smart and Smarter-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E13.Smart and Smarter-SDTV.avi","size":297893588,"dateAdded":"2018-10-10T23:00:18.6618Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1222059,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2613},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E13.The Seemingly Never-Ending Story-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E13.The Seemingly Never-Ending Story-SDTV.avi","size":295313100,"dateAdded":"2018-10-10T23:00:18.694966Z","releaseGroup":"Ending","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1380562,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2614},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E13.The Daughter Also Rises-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E13.The Daughter Also Rises-SDTV.avi","size":289430204,"dateAdded":"2018-10-10T23:00:18.761723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199436,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2616},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E13.A Star Is Born-Again-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E13.A Star Is Born-Again-SDTV.avi","size":278969922,"dateAdded":"2018-10-10T23:00:18.794301Z","releaseGroup":"Again","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099919,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2617},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E13.Gone Maggie Gone-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E13.Gone Maggie Gone-SDTV.avi","size":276260544,"dateAdded":"2018-10-10T23:00:18.828392Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1271898,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2618},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E13.Mobile Homer-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E13.Mobile Homer-SDTV.avi","size":261601100,"dateAdded":"2018-10-10T23:00:18.93554Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1183341,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2621},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E13.The Blue and the Gray-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E13.The Blue and the Gray-SDTV.avi","size":259994430,"dateAdded":"2018-10-10T23:00:18.970668Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1211099,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2622},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E14.My Fare Lady-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E14.My Fare Lady-HDTV-1080p.mkv","size":933630836,"dateAdded":"2018-10-10T23:00:19.273538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4948095,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2631},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E14.Gal of Constant Sorrow-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E14.Gal of Constant Sorrow-HDTV-1080p.mkv","size":845582932,"dateAdded":"2018-10-10T23:00:19.306911Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4685754,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2632},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E14.Fatzcarraldo-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E14.Fatzcarraldo-WEBDL-1080p.mkv","size":836954486,"dateAdded":"2018-10-10T23:00:19.338439Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4817379,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2633},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E14.Fears of a Clown-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E14.Fears of a Clown-WEBDL-1080p.mkv","size":510019588,"dateAdded":"2018-10-10T23:00:19.372117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2535025,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2634},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E14.The Winter of His Content-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E14.The Winter of His Content-SDTV.avi","size":299353822,"dateAdded":"2018-10-10T23:00:19.600139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1284675,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2641},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E14.The Ziff Who Came to Dinner-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E14.The Ziff Who Came to Dinner-SDTV.avi","size":293941788,"dateAdded":"2018-10-10T23:00:19.666417Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1201120,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2643},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E14.In the Name of the Grandfather-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E14.In the Name of the Grandfather-SDTV.avi","size":287270748,"dateAdded":"2018-10-10T23:00:19.701278Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1339002,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2644},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E14.Bart Has Two Mommies-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E14.Bart Has Two Mommies-SDTV.avi","size":287118054,"dateAdded":"2018-10-10T23:00:19.732967Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1339285,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2645},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E14.Mr. Spritz Goes to Washington-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E14.Mr. Spritz Goes to Washington-SDTV.avi","size":279067154,"dateAdded":"2018-10-10T23:00:19.76666Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099229,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2646},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E14.At Long Last Leave-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E14.At Long Last Leave-SDTV.avi","size":277639048,"dateAdded":"2018-10-10T23:00:19.798292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1152969,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2647},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E14.The Seven-Beer Snitch-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E14.The Seven-Beer Snitch-SDTV.avi","size":272094470,"dateAdded":"2018-10-10T23:00:19.833433Z","releaseGroup":"Beer","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1246836,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2648},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E14.Angry Dad- The Movie-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E14.Angry Dad- The Movie-SDTV.avi","size":266828462,"dateAdded":"2018-10-10T23:00:19.865494Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1215237,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2649},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E14.Scenes from the Class Struggle in Springfield-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E14.Scenes from the Class Struggle in Springfield-SDTV.avi","size":257186220,"dateAdded":"2018-10-10T23:00:19.964462Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099883,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2652},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E14.Yokel Chords-SDTV.avi","path":"\/tv\/The Simpsons\/Season 18\/S18E14.Yokel Chords-SDTV.avi","size":253278978,"dateAdded":"2018-10-10T23:00:19.996608Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1202653,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"21:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2653},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E15.The Princess Guide-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E15.The Princess Guide-HDTV-1080p.mkv","size":906372402,"dateAdded":"2018-10-10T23:00:20.1962Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4656374,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2659},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E15.Lisa the Veterinarian-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E15.Lisa the Veterinarian-HDTV-1080p.mkv","size":906295752,"dateAdded":"2018-10-10T23:00:20.233752Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4919850,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2660},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E15.The Cad and the Hat-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E15.The Cad and the Hat-WEBDL-1080p.mkv","size":893622312,"dateAdded":"2018-10-10T23:00:20.269616Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5019613,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2661},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E15.No Good Read Goes Unpunished-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E15.No Good Read Goes Unpunished-WEBDL-1080p.mkv","size":570341465,"dateAdded":"2018-10-10T23:00:20.302659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2954658,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2662},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E15.The War of Art-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E15.The War of Art-SDTV.avi","size":312549820,"dateAdded":"2018-10-10T23:00:20.369508Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1291645,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2664},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E15.Stealing First Base-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E15.Stealing First Base-SDTV.avi","size":303583978,"dateAdded":"2018-10-10T23:00:20.473387Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1279866,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2667},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Homer Alone-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E15.Homer Alone-SDTV.avi","size":303518222,"dateAdded":"2018-10-10T23:00:20.506073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098811,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2668},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E15.Co-Dependent's Day-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E15.Co-Dependent's Day-SDTV.avi","size":300518778,"dateAdded":"2018-10-10T23:00:20.572778Z","releaseGroup":"Dependent","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1200749,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2670},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E15.Exit Through the Kwik-E-Mart-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E15.Exit Through the Kwik-E-Mart-SDTV.avi","size":282051562,"dateAdded":"2018-10-10T23:00:20.673454Z","releaseGroup":"Mart","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1154365,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2673},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E15.Homer Simpson, This Is Your Wife-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E15.Homer Simpson, This Is Your Wife-SDTV.avi","size":280469102,"dateAdded":"2018-10-10T23:00:20.704897Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1337232,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2674},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E15.C.E. D'oh!-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E15.C.E. D'oh!-SDTV.avi","size":279116614,"dateAdded":"2018-10-10T23:00:20.740914Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099529,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2675},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E15.Wedding for Disaster-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E15.Wedding for Disaster-SDTV.avi","size":275775062,"dateAdded":"2018-10-10T23:00:20.772851Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1284867,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2676},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E15.Future-Drama-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E15.Future-Drama-SDTV.avi","size":271303782,"dateAdded":"2018-10-10T23:00:20.824552Z","releaseGroup":"Drama","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1243338,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2677},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E16.Sky Police-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E16.Sky Police-HDTV-1080p.mkv","size":920001336,"dateAdded":"2018-10-10T23:00:21.161388Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4703870,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2687},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E16.Kamp Krustier-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E16.Kamp Krustier-WEBDL-1080p.mkv","size":875506278,"dateAdded":"2018-10-10T23:00:21.192947Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4993003,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2688},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E16.The Marge-ian Chronicles-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E16.The Marge-ian Chronicles-HDTV-1080p.mkv","size":868634064,"dateAdded":"2018-10-10T23:00:21.225324Z","releaseGroup":"ian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4784398,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2689},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E16.King Leer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E16.King Leer-WEBDL-1080p.mkv","size":672133718,"dateAdded":"2018-10-10T23:00:21.258194Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3509782,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2690},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E16.You Don't Have to Live Like a Referee-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E16.You Don't Have to Live Like a Referee-SDTV.avi","size":305320760,"dateAdded":"2018-10-10T23:00:21.38401Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1283442,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2694},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E16.The Greatest Story Ever D'ohed-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E16.The Greatest Story Ever D'ohed-SDTV.avi","size":301745762,"dateAdded":"2018-10-10T23:00:21.489192Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1233963,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2697},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E16.The Wandering Juvie-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E16.The Wandering Juvie-SDTV.avi","size":296390990,"dateAdded":"2018-10-10T23:00:21.544713Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1207416,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2699},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E16.Million Dollar Abie-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E16.Million Dollar Abie-SDTV.avi","size":291958130,"dateAdded":"2018-10-10T23:00:21.572461Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1368566,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2700},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E16.How I Wet Your Mother-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E16.How I Wet Your Mother-SDTV.avi","size":285981796,"dateAdded":"2018-10-10T23:00:21.599993Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1164128,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2701},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E16.Scuse Me While I Miss the Sky-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E16.Scuse Me While I Miss the Sky-SDTV.avi","size":279292044,"dateAdded":"2018-10-10T23:00:21.627656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1100592,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2702},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E16.Eeny Teeny Maya Moe-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E16.Eeny Teeny Maya Moe-SDTV.avi","size":278085812,"dateAdded":"2018-10-10T23:00:21.6566Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1285557,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2703},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E16.Don't Fear the Roofer-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E16.Don't Fear the Roofer-SDTV.avi","size":267124784,"dateAdded":"2018-10-10T23:00:21.684463Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1229088,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2704},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E16.A Midsummer's Nice Dream-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E16.A Midsummer's Nice Dream-SDTV.avi","size":266044250,"dateAdded":"2018-10-10T23:00:21.712486Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1250473,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2705},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E16.Lisa the Iconoclast-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E16.Lisa the Iconoclast-SDTV.avi","size":257674102,"dateAdded":"2018-10-10T23:00:21.795471Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1102178,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2708},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E16.Homerazzi-SDTV.avi","path":"\/tv\/The Simpsons\/Season 18\/S18E16.Homerazzi-SDTV.avi","size":242496520,"dateAdded":"2018-10-10T23:00:21.949301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1202665,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"20:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2713},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E17.Waiting For Duffman-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E17.Waiting For Duffman-HDTV-1080p.mkv","size":932622765,"dateAdded":"2018-10-10T23:00:22.004687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4773324,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2715},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E17.The Burns Cage-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E17.The Burns Cage-HDTV-1080p.mkv","size":911408316,"dateAdded":"2018-10-10T23:00:22.032793Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5010224,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2716},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E17.22 for 30-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E17.22 for 30-WEBDL-1080p.mkv","size":899302451,"dateAdded":"2018-10-10T23:00:22.061236Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5032972,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2717},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E17.Lisa Gets the Blues-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E17.Lisa Gets the Blues-WEBDL-1080p.mkv","size":687142209,"dateAdded":"2018-10-10T23:00:22.087708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3687809,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2718},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E17.Luca$-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E17.Luca$-SDTV.avi","size":299502152,"dateAdded":"2018-10-10T23:00:22.282518Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1249099,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2725},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E17.My Big Fat Geek Wedding-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E17.My Big Fat Geek Wedding-SDTV.avi","size":295548538,"dateAdded":"2018-10-10T23:00:22.30934Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199859,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2726},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E17.American History X-cellent-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E17.American History X-cellent-SDTV.avi","size":292615310,"dateAdded":"2018-10-10T23:00:22.337992Z","releaseGroup":"cellent","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1207404,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2727},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E17.Kiss, Kiss Bang Bangalore-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E17.Kiss, Kiss Bang Bangalore-SDTV.avi","size":288635340,"dateAdded":"2018-10-10T23:00:22.364629Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1348366,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2728},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E17.The Good, the Sad and the Drugly-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E17.The Good, the Sad and the Drugly-SDTV.avi","size":281335896,"dateAdded":"2018-10-10T23:00:22.394348Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1319078,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2729},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E17.The Heartbroke Kid-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E17.The Heartbroke Kid-SDTV.avi","size":281200052,"dateAdded":"2018-10-10T23:00:22.421238Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1303313,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2730},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E17.Three Gays of the Condo-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E17.Three Gays of the Condo-SDTV.avi","size":279110310,"dateAdded":"2018-10-10T23:00:22.449795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099491,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2731},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E17.Love is a Many Strangled Thing-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E17.Love is a Many Strangled Thing-SDTV.avi","size":261168462,"dateAdded":"2018-10-10T23:00:22.552139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1220214,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2734},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E17.Homer the Smithers-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E17.Homer the Smithers-SDTV.avi","size":257066782,"dateAdded":"2018-10-10T23:00:22.614384Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099909,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2736},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E18.Peeping Mom-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E18.Peeping Mom-HDTV-1080p.mkv","size":901070318,"dateAdded":"2018-10-10T23:00:22.848065Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4598730,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2743},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E18.A Father's Watch-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E18.A Father's Watch-WEBDL-1080p.mkv","size":896774066,"dateAdded":"2018-10-10T23:00:22.881757Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5038805,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2744},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E18.How Lisa Got Her Marge Back-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E18.How Lisa Got Her Marge Back-HDTV-1080p.mkv","size":893235144,"dateAdded":"2018-10-10T23:00:22.913967Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4843418,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2745},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E18.Forgive and Regret-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E18.Forgive and Regret-WEBDL-1080p.mkv","size":739436077,"dateAdded":"2018-10-10T23:00:22.947507Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126811,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2746},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E18.Days of Future Future-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E18.Days of Future Future-SDTV.avi","size":304975008,"dateAdded":"2018-10-10T23:00:23.081417Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1290079,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2750},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E18.Catch 'Em If You Can-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E18.Catch 'Em If You Can-SDTV.avi","size":297394820,"dateAdded":"2018-10-10T23:00:23.215257Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1205995,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2754},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E18.The Wettest Stories Ever Told-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E18.The Wettest Stories Ever Told-SDTV.avi","size":290188542,"dateAdded":"2018-10-10T23:00:23.281197Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1357726,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2756},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E18.Dude, Where's My Ranch-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E18.Dude, Where's My Ranch-SDTV.avi","size":279793892,"dateAdded":"2018-10-10T23:00:23.347469Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1112682,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2758},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E18.Father Knows Worst-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E18.Father Knows Worst-SDTV.avi","size":275438914,"dateAdded":"2018-10-10T23:00:23.379661Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1295734,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2759},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E18.A Star Is Torn-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E18.A Star Is Torn-SDTV.avi","size":274410652,"dateAdded":"2018-10-10T23:00:23.415073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1259863,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2760},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E18.The Day the Violence Died-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E18.The Day the Violence Died-SDTV.avi","size":257182868,"dateAdded":"2018-10-10T23:00:23.548914Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099864,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2764},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E19.Fland Canyon-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E19.Fland Canyon-HDTV-1080p.mkv","size":914663450,"dateAdded":"2018-10-10T23:00:23.790932Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5058270,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2771},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E19.The Kids are All Fight-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E19.The Kids are All Fight-HDTV-1080p.mkv","size":902995939,"dateAdded":"2018-10-10T23:00:23.82637Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4717958,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2772},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E19.Caper Chase-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E19.Caper Chase-WEBDL-1080p.mkv","size":898142830,"dateAdded":"2018-10-10T23:00:23.860691Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5021734,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2773},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E19.Left Behind-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E19.Left Behind-WEBDL-1080p.mkv","size":705174548,"dateAdded":"2018-10-10T23:00:23.898896Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126809,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2774},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E19.What to Expect When Bart's Expecting-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E19.What to Expect When Bart's Expecting-SDTV.avi","size":311759438,"dateAdded":"2018-10-10T23:00:23.965247Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1307148,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2776},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E19.Simple Simpson-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E19.Simple Simpson-SDTV.avi","size":297678640,"dateAdded":"2018-10-10T23:00:24.16883Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1209931,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2782},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E19.Girls Just Want to Have Sums-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E19.Girls Just Want to Have Sums-SDTV.avi","size":296549640,"dateAdded":"2018-10-10T23:00:24.218107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1396269,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2783},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E19.The Squirt and the Whale-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E19.The Squirt and the Whale-SDTV.avi","size":291374986,"dateAdded":"2018-10-10T23:00:24.252987Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1212218,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2784},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E19.A Totally Fun Thing That Bart Will Never Do Again-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E19.A Totally Fun Thing That Bart Will Never Do Again-SDTV.avi","size":288814594,"dateAdded":"2018-10-10T23:00:24.284664Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1153345,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2785},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E19.Old Yeller Belly-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E19.Old Yeller Belly-SDTV.avi","size":279750764,"dateAdded":"2018-10-10T23:00:24.321143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1103374,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2786},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E19.Waverly Hills 9-0-2-1-D'oh-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E19.Waverly Hills 9-0-2-1-D'oh-SDTV.avi","size":279612452,"dateAdded":"2018-10-10T23:00:24.353125Z","releaseGroup":"D","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1295996,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2787},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E19.Thank God, It's Doomsday-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E19.Thank God, It's Doomsday-SDTV.avi","size":273450546,"dateAdded":"2018-10-10T23:00:24.388379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1255619,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2788},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E19.The Real Housewives of Fat Tony-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E19.The Real Housewives of Fat Tony-SDTV.avi","size":260664728,"dateAdded":"2018-10-10T23:00:24.456047Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1176963,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2790},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E19.A Fish Called Selma-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E19.A Fish Called Selma-SDTV.avi","size":257253486,"dateAdded":"2018-10-10T23:00:24.523381Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099909,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2792},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E20.Let's Go Fly a Coot-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E20.Let's Go Fly a Coot-HDTV-1080p.mkv","size":927229692,"dateAdded":"2018-10-10T23:00:24.760016Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4786796,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2799},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E20.To Courier with Love-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E20.To Courier with Love-HDTV-1080p.mkv","size":883728385,"dateAdded":"2018-10-10T23:00:24.797996Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4726688,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2800},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E20.Looking for Mr. Goodbart-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E20.Looking for Mr. Goodbart-WEBDL-1080p.mkv","size":873471200,"dateAdded":"2018-10-10T23:00:24.830548Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5108878,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2801},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E20.Throw Grampa from the Dane-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E20.Throw Grampa from the Dane-WEBDL-1080p.mkv","size":720084936,"dateAdded":"2018-10-10T23:00:24.866104Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126816,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2802},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E20.Brick Like Me-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E20.Brick Like Me-SDTV.avi","size":298946018,"dateAdded":"2018-10-10T23:00:25.104168Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1216337,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2809},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E20.The Way We Weren't-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E20.The Way We Weren't-SDTV.avi","size":296833746,"dateAdded":"2018-10-10T23:00:25.142147Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1205725,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2810},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E20.To Surveil with Love-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E20.To Surveil with Love-SDTV.avi","size":295343740,"dateAdded":"2018-10-10T23:00:25.174836Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1236445,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2811},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E20.Regarding Margie-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E20.Regarding Margie-SDTV.avi","size":285534318,"dateAdded":"2018-10-10T23:00:25.210405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1342854,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2812},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E20.The Spy Who Learned Me-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E20.The Spy Who Learned Me-SDTV.avi","size":284193356,"dateAdded":"2018-10-10T23:00:25.244019Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1154038,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2813},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E20.Brake My Wife, Please-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E20.Brake My Wife, Please-SDTV.avi","size":280851490,"dateAdded":"2018-10-10T23:00:25.280177Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1110047,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2814},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E20.Four Great Women and a Manicure-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E20.Four Great Women and a Manicure-SDTV.avi","size":276515846,"dateAdded":"2018-10-10T23:00:25.313017Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1275562,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2815},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E20.Home Away from Homer-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E20.Home Away from Homer-SDTV.avi","size":267495704,"dateAdded":"2018-10-10T23:00:25.349095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1244491,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2816},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E20.Homer Scissorhands-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E20.Homer Scissorhands-SDTV.avi","size":266910178,"dateAdded":"2018-10-10T23:00:25.382035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1244825,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2817},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E20.Bart on the Road-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E20.Bart on the Road-SDTV.avi","size":256911408,"dateAdded":"2018-10-10T23:00:25.488082Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099933,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2820},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E21.Simprovised-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E21.Simprovised-HDTV-1080p.mkv","size":905846552,"dateAdded":"2018-10-10T23:00:25.727792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4668101,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2827},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E21.Moho House-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E21.Moho House-WEBDL-1080p.mkv","size":900471811,"dateAdded":"2018-10-10T23:00:25.76359Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5148080,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2828},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E21.Bull-E-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E21.Bull-E-HDTV-1080p.mkv","size":888395426,"dateAdded":"2018-10-10T23:00:25.795739Z","releaseGroup":"E","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4620348,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2829},{"seriesId":49,"seasonNumber":29,"relativePath":"Season 29\/S29E21.Flanders' Ladder-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 29\/S29E21.Flanders' Ladder-WEBDL-1080p.mkv","size":717101835,"dateAdded":"2018-10-10T23:00:25.831463Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126787,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2830},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E21.Bart-Mangled Banner-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E21.Bart-Mangled Banner-SDTV.avi","size":307308736,"dateAdded":"2018-10-10T23:00:25.863925Z","releaseGroup":"Mangled","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1236207,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2831},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E21.Pay Pal-DVD.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E21.Pay Pal-DVD.avi","size":300812180,"dateAdded":"2018-10-10T23:00:26.071705Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1290493,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2837},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E21.Moe Letter Blues-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E21.Moe Letter Blues-SDTV.avi","size":296720982,"dateAdded":"2018-10-10T23:00:26.141394Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1245388,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2839},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E21.Ned 'n' Edna's Blend-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E21.Ned 'n' Edna's Blend-SDTV.avi","size":285711944,"dateAdded":"2018-10-10T23:00:26.1774Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1199399,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2840},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E21.The Monkey Suit-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E21.The Monkey Suit-SDTV.avi","size":285090642,"dateAdded":"2018-10-10T23:00:26.210106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1353554,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2841},{"seriesId":49,"seasonNumber":20,"relativePath":"Season 20\/S20E21.Coming to Homerica-SDTV.avi","path":"\/tv\/The Simpsons\/Season 20\/S20E21.Coming to Homerica-SDTV.avi","size":282420922,"dateAdded":"2018-10-10T23:00:26.246532Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1352647,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2842},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E21.The Bart of War-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E21.The Bart of War-SDTV.avi","size":281871522,"dateAdded":"2018-10-10T23:00:26.280497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1114926,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2843},{"seriesId":49,"seasonNumber":16,"relativePath":"Season 16\/S16E21.The Father, the Son & the Holy Guest Star-SDTV.avi","path":"\/tv\/The Simpsons\/Season 16\/S16E21.The Father, the Son & the Holy Guest Star-SDTV.avi","size":278299936,"dateAdded":"2018-10-10T23:00:26.316599Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1283133,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2844},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E21.500 Keys-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E21.500 Keys-SDTV.avi","size":262254466,"dateAdded":"2018-10-10T23:00:26.350312Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1187385,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2845},{"seriesId":49,"seasonNumber":26,"relativePath":"Season 26\/S26E22.Mathlete's Feat-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 26\/S26E22.Mathlete's Feat-HDTV-1080p.mkv","size":886807390,"dateAdded":"2018-10-10T23:00:26.672639Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4550932,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2854},{"seriesId":49,"seasonNumber":27,"relativePath":"Season 27\/S27E22.Orange is the New Yellow-HDTV-1080p.mkv","path":"\/tv\/The Simpsons\/Season 27\/S27E22.Orange is the New Yellow-HDTV-1080p.mkv","size":878886972,"dateAdded":"2018-10-10T23:00:26.710121Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4774866,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2855},{"seriesId":49,"seasonNumber":28,"relativePath":"Season 28\/S28E22.Dogtown-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 28\/S28E22.Dogtown-WEBDL-1080p.mkv","size":870355070,"dateAdded":"2018-10-10T23:00:26.744272Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5128597,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"21:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2856},{"seriesId":49,"seasonNumber":25,"relativePath":"Season 25\/S25E22.The Yellow Badge of Cowardge-SDTV.avi","path":"\/tv\/The Simpsons\/Season 25\/S25E22.The Yellow Badge of Cowardge-SDTV.avi","size":309527282,"dateAdded":"2018-10-10T23:00:26.900966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1346628,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2860},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E22.The Otto Show-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E22.The Otto Show-SDTV.avi","size":302629118,"dateAdded":"2018-10-10T23:00:27.059604Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098501,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2864},{"seriesId":49,"seasonNumber":15,"relativePath":"Season 15\/S15E22.Fraudcast News-SDTV.avi","path":"\/tv\/The Simpsons\/Season 15\/S15E22.Fraudcast News-SDTV.avi","size":296409782,"dateAdded":"2018-10-10T23:00:27.096461Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1201906,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2865},{"seriesId":49,"seasonNumber":17,"relativePath":"Season 17\/S17E22.Marge and Homer Turn a Couple Play-SDTV.avi","path":"\/tv\/The Simpsons\/Season 17\/S17E22.Marge and Homer Turn a Couple Play-SDTV.avi","size":296080826,"dateAdded":"2018-10-10T23:00:27.125298Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1393545,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2866},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E22.Lisa Goes Gaga-SDTV.avi","path":"\/tv\/The Simpsons\/Season 23\/S23E22.Lisa Goes Gaga-SDTV.avi","size":288669230,"dateAdded":"2018-10-10T23:00:27.156256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1154397,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2867},{"seriesId":49,"seasonNumber":14,"relativePath":"Season 14\/S14E22.Moe Baby Blues-SDTV.avi","path":"\/tv\/The Simpsons\/Season 14\/S14E22.Moe Baby Blues-SDTV.avi","size":279438668,"dateAdded":"2018-10-10T23:00:27.186199Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1101482,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x544","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2868},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E22.The Ned-Liest Catch-SDTV.avi","path":"\/tv\/The Simpsons\/Season 22\/S22E22.The Ned-Liest Catch-SDTV.avi","size":244608892,"dateAdded":"2018-10-10T23:00:27.401296Z","releaseGroup":"Liest","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1082924,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2875},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E23.Bart's Friend Falls in Love-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E23.Bart's Friend Falls in Love-SDTV.avi","size":303774220,"dateAdded":"2018-10-10T23:00:27.462826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1098842,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"23:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2877},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E23.Judge Me Tender-SDTV.avi","path":"\/tv\/The Simpsons\/Season 21\/S21E23.Judge Me Tender-SDTV.avi","size":297499318,"dateAdded":"2018-10-10T23:00:27.49254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1246470,"videoCodec":"XviD","videoFps":23.976,"resolution":"720x400","runTime":"21:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2878},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E23.Much Apu About Nothing-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E23.Much Apu About Nothing-SDTV.avi","size":257380288,"dateAdded":"2018-10-10T23:00:27.523684Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099914,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2879},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Brother, Can You Spare Two Dimes-SDTV.avi","path":"\/tv\/The Simpsons\/Season 03\/S03E24.Brother, Can You Spare Two Dimes-SDTV.avi","size":301510748,"dateAdded":"2018-10-10T23:00:27.675481Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1108675,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2884},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E24.Homerpalooza-SDTV.avi","path":"\/tv\/The Simpsons\/Season 07\/S07E24.Homerpalooza-SDTV.avi","size":258120810,"dateAdded":"2018-10-10T23:00:27.837263Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1099867,"videoCodec":"XviD","videoFps":23.976,"resolution":"640x480","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":2887},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E03.My Way or the Highway to Heaven-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E03.My Way or the Highway to Heaven-WEBDL-1080p.mkv","size":745484447,"dateAdded":"2018-10-15T00:33:21.977634Z","sceneName":"The.Simpsons.S30E03.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126792,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":4440},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E04.Treehouse of Horror XXIX-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E04.Treehouse of Horror XXIX-WEBDL-1080p.mkv","size":186790257,"dateAdded":"2018-10-23T19:11:40.253537Z","sceneName":"The Simpsons (1989) - S30E04 (1080p WEB-DL x265 HEVC 10bit AAC 2.0 ImE)","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1026363,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5096},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E09.Daddicus Finch-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E09.Daddicus Finch-WEBDL-1080p.mkv","size":687386302,"dateAdded":"2018-12-27T17:02:53.466893Z","sceneName":"The.Simpsons.S30E09.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126808,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5716},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E07.Werking Mom-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E07.Werking Mom-WEBDL-1080p.mkv","size":728309361,"dateAdded":"2018-12-27T17:08:55.806687Z","sceneName":"The.Simpsons.S30E07.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126792,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5718},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E10.'Tis the 30th Season-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E10.'Tis the 30th Season-WEBDL-1080p.mkv","size":182136305,"dateAdded":"2018-12-27T17:12:22.494075Z","sceneName":"The Simpsons (1989) - S30E10 (1080p WEB x265 HEVC 10bit AAC 2.0 ImE)","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126786,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1024745,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:03","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5720},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E08.Krusty the Clown-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E08.Krusty the Clown-WEBDL-1080p.mkv","size":766979638,"dateAdded":"2018-12-27T17:13:01.357792Z","sceneName":"The.Simpsons.S30E08.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126800,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5721},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E06.From Russia Without Love-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E06.From Russia Without Love-WEBDL-1080p.mkv","size":746128246,"dateAdded":"2018-12-27T17:57:11.954242Z","sceneName":"The.Simpsons.S30E06.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126823,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5725},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E05.Baby You Can't Drive My Car-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E05.Baby You Can't Drive My Car-WEBDL-1080p.mkv","size":184752685,"dateAdded":"2018-12-27T20:34:52.83683Z","sceneName":"The Simpsons (1989) - S30E05 (1080p WEB-DL x265 HEVC 10bit AAC 2.0 ImE)","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126807,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1023644,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:22","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":5762},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E11.Mad About the Toy-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E11.Mad About the Toy-WEBDL-1080p.mkv","size":730824221,"dateAdded":"2019-01-07T01:29:20.514286Z","sceneName":"The.Simpsons.S30E11.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126793,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6319},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E12.The Girl on the Bus-WEBDL-1080p Proper.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E12.The Girl on the Bus-WEBDL-1080p Proper.mkv","size":541565061,"dateAdded":"2019-01-18T20:25:06.155799Z","sceneName":"The.Simpsons.S30E12.The.Girl.On.the.Bus.REPACK.1080p.AMZN.WEBRip.DDP5.1.x264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2694976,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6456},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E02.The Principal and the Pauper-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E02.The Principal and the Pauper-HDTV-720p.mkv","size":89017024,"dateAdded":"2019-02-07T20:09:47.551631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":83729,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":433851,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6850},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E03.Lisa's Sax-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E03.Lisa's Sax-HDTV-720p.mkv","size":85516495,"dateAdded":"2019-02-07T20:09:48.055013Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80059,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":417084,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6851},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E04.Treehouse of Horror VIII-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E04.Treehouse of Horror VIII-HDTV-720p.mkv","size":90140513,"dateAdded":"2019-02-07T20:09:48.696096Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":83544,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":440206,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:51","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6852},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E07.The Two Mrs. Nahasapeemapetilons-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E07.The Two Mrs. Nahasapeemapetilons-HDTV-720p.mkv","size":88684450,"dateAdded":"2019-02-07T20:09:50.14436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":84434,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":431205,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6855},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E08.Lisa the Skeptic-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E08.Lisa the Skeptic-HDTV-720p.mkv","size":101790404,"dateAdded":"2019-02-07T20:09:50.555599Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":83198,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":508968,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6856},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E09.Realty Bites-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E09.Realty Bites-HDTV-720p.mkv","size":97810764,"dateAdded":"2019-02-07T20:09:50.994168Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":81712,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":487212,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6857},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E12.Bart Carny-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E12.Bart Carny-HDTV-720p.mkv","size":78317550,"dateAdded":"2019-02-07T20:09:52.325852Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":83524,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":371916,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:49","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6860},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E13.The Joy of Sect-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E13.The Joy of Sect-HDTV-720p.mkv","size":90787386,"dateAdded":"2019-02-07T20:09:52.759578Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80570,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":447362,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6861},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E15.The Last Temptation of Krust-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E15.The Last Temptation of Krust-HDTV-720p.mkv","size":93580398,"dateAdded":"2019-02-07T20:09:53.774461Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80967,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":463261,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6863},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E17.Lisa the Simpson-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E17.Lisa the Simpson-HDTV-720p.mkv","size":93516381,"dateAdded":"2019-02-07T20:09:59.89513Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":82077,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":461378,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:51","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6865},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E19.Simpson Tide-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E19.Simpson Tide-HDTV-720p.mkv","size":92910367,"dateAdded":"2019-02-07T20:10:01.555155Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":81987,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":458326,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6867},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E20.The Trouble With Trillions-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E20.The Trouble With Trillions-HDTV-720p.mkv","size":83865165,"dateAdded":"2019-02-07T20:10:05.907594Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":81512,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":405992,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:50","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6868},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E21.Girly Edition-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E21.Girly Edition-HDTV-720p.mkv","size":83732666,"dateAdded":"2019-02-07T20:10:07.635076Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":82185,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":405251,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:48","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6869},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E22.Trash of the Titans-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E22.Trash of the Titans-HDTV-720p.mkv","size":105029849,"dateAdded":"2019-02-07T20:10:09.727254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":82850,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":529123,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:48","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6870},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E23.King of the Hill-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E23.King of the Hill-HDTV-720p.mkv","size":88123828,"dateAdded":"2019-02-07T20:10:10.132205Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":83612,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":429125,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:49","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6871},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E25.Natural Born Kissers-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E25.Natural Born Kissers-HDTV-720p.mkv","size":79414742,"dateAdded":"2019-02-07T20:10:12.993972Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":82544,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":378645,"videoCodec":"x265","videoFps":23.976,"resolution":"960x720","runTime":"22:51","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6873},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E13.I'm Dancing as Fat as I Can-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E13.I'm Dancing as Fat as I Can-WEBDL-1080p.mkv","size":696176083,"dateAdded":"2019-02-11T01:24:25.457135Z","sceneName":"The.Simpsons.S30E13.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126802,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6950},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E14.The Clown Stays in the Picture-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E14.The Clown Stays in the Picture-WEBDL-1080p.mkv","size":726276425,"dateAdded":"2019-02-18T10:50:45.854168Z","sceneName":"The.Simpsons.S30E14.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126800,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":6956},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E15.101 Mitigations-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E15.101 Mitigations-WEBDL-1080p.mkv","size":687959835,"dateAdded":"2019-03-04T01:13:00.344524Z","sceneName":"The.Simpsons.S30E15.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126801,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7134},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E16.I Want You (She's So Heavy)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E16.I Want You (She's So Heavy)-WEBDL-1080p.mkv","size":682874420,"dateAdded":"2019-03-11T00:13:24.800083Z","sceneName":"The.Simpsons.S30E16.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126789,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7147},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E17.E My Sports-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E17.E My Sports-WEBDL-1080p.mkv","size":731301092,"dateAdded":"2019-03-18T00:16:57.059947Z","sceneName":"The.Simpsons.S30E17.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126802,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7187},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E18.Bart vs Itchy & Scratchy-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E18.Bart vs Itchy & Scratchy-WEBDL-1080p.mkv","size":745940915,"dateAdded":"2019-03-25T00:21:32.036566Z","sceneName":"The.Simpsons.S30E18.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7202},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E01.Treehouse of Horror XII-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E01.Treehouse of Horror XII-Bluray-1080p.mkv","size":1173131880,"dateAdded":"2019-03-30T05:01:45.027457Z","sceneName":"the.simpsons.s13e01.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5413000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7213},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E02.The Parent Rap-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E02.The Parent Rap-Bluray-1080p.mkv","size":1172059398,"dateAdded":"2019-03-30T05:01:51.92601Z","sceneName":"the.simpsons.s13e02.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5412000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7214},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E03.Homer the Moe-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E03.Homer the Moe-Bluray-1080p.mkv","size":1172145738,"dateAdded":"2019-03-30T05:01:56.266424Z","sceneName":"the.simpsons.s13e03.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5417000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7215},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E04.Hunka Hunka Burns in Love-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E04.Hunka Hunka Burns in Love-Bluray-1080p.mkv","size":1172443239,"dateAdded":"2019-03-30T05:02:06.306988Z","sceneName":"the.simpsons.s13e04.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5416000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7216},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E05.The Blunder Years-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E05.The Blunder Years-Bluray-1080p.mkv","size":1171716122,"dateAdded":"2019-03-30T05:02:11.242413Z","sceneName":"the.simpsons.s13e05.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5414000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7217},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E06.She of Little Faith-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E06.She of Little Faith-Bluray-1080p.mkv","size":1172280647,"dateAdded":"2019-03-30T05:02:20.213255Z","sceneName":"the.simpsons.s13e06.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5418000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7218},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E07.Brawl in the Family-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E07.Brawl in the Family-Bluray-1080p.mkv","size":1171995508,"dateAdded":"2019-03-30T05:02:25.872064Z","sceneName":"the.simpsons.s13e07.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5414000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7219},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E08.Sweets and Sour Marge-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E08.Sweets and Sour Marge-Bluray-1080p.mkv","size":1172214222,"dateAdded":"2019-03-30T05:02:34.999519Z","sceneName":"the.simpsons.s13e08.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5417000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7220},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E09.Jaws Wired Shut-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E09.Jaws Wired Shut-Bluray-1080p.mkv","size":1172465865,"dateAdded":"2019-03-30T05:02:39.31922Z","sceneName":"the.simpsons.s13e09.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5412000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7221},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E10.Half-Decent Proposal-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E10.Half-Decent Proposal-Bluray-1080p.mkv","size":1172278474,"dateAdded":"2019-03-30T05:02:48.990952Z","sceneName":"the.simpsons.s13e10.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7222},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E11.The Bart Wants What It Wants-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E11.The Bart Wants What It Wants-Bluray-1080p.mkv","size":1172582543,"dateAdded":"2019-03-30T05:02:54.870685Z","sceneName":"the.simpsons.s13e11.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5413000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7223},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E12.The Lastest Gun in the West-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E12.The Lastest Gun in the West-Bluray-1080p.mkv","size":1171594493,"dateAdded":"2019-03-30T05:03:04.097136Z","sceneName":"the.simpsons.s13e12.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5412000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7224},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E13.The Old Man and the Key-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E13.The Old Man and the Key-Bluray-1080p.mkv","size":1173086840,"dateAdded":"2019-03-30T05:03:10.804514Z","sceneName":"the.simpsons.s13e13.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5706000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7225},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E14.Tales From the Public Domain-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E14.Tales From the Public Domain-Bluray-1080p.mkv","size":1172132237,"dateAdded":"2019-03-30T05:03:18.599584Z","sceneName":"the.simpsons.s13e14.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5419000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7226},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E15.Blame It on Lisa-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E15.Blame It on Lisa-Bluray-1080p.mkv","size":1172093955,"dateAdded":"2019-03-30T05:03:25.484814Z","sceneName":"the.simpsons.s13e15.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5555000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7227},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E16.Weekend at Burnsie's-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E16.Weekend at Burnsie's-Bluray-1080p.mkv","size":1172334741,"dateAdded":"2019-03-30T05:03:33.865729Z","sceneName":"the.simpsons.s13e16.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5434000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7228},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E17.Gump Roast-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E17.Gump Roast-Bluray-1080p.mkv","size":1171703224,"dateAdded":"2019-03-30T05:03:43.594576Z","sceneName":"the.simpsons.s13e17.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5727000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7229},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E18.I Am Furious Yellow-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E18.I Am Furious Yellow-Bluray-1080p.mkv","size":1172475222,"dateAdded":"2019-03-30T05:03:48.037104Z","sceneName":"the.simpsons.s13e18.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5468000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7230},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E19.The Sweetest Apu-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E19.The Sweetest Apu-Bluray-1080p.mkv","size":1172245324,"dateAdded":"2019-03-30T05:03:58.774714Z","sceneName":"the.simpsons.s13e19.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5624000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7231},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E20.Little Girl in the Big Ten-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E20.Little Girl in the Big Ten-Bluray-1080p.mkv","size":1172842605,"dateAdded":"2019-03-30T05:04:03.617762Z","sceneName":"the.simpsons.s13e20.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5578000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7232},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E21.The Frying Game-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E21.The Frying Game-Bluray-1080p.mkv","size":1172589266,"dateAdded":"2019-03-30T05:04:13.160394Z","sceneName":"the.simpsons.s13e21.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5709000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7233},{"seriesId":49,"seasonNumber":13,"relativePath":"Season 13\/S13E22.Papa's Got a Brand New Badge-Bluray-1080p.mkv","path":"\/tv\/The Simpsons\/Season 13\/S13E22.Papa's Got a Brand New Badge-Bluray-1080p.mkv","size":1172238773,"dateAdded":"2019-03-30T05:04:18.233632Z","sceneName":"the.simpsons.s13e22.1080p.bluray.x264-teneighty","releaseGroup":"TENEIGHTY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5632000,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":7234},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E19.Girl's in the Band-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E19.Girl's in the Band-WEBDL-1080p.mkv","size":699730202,"dateAdded":"2019-04-01T00:16:42.442323Z","sceneName":"The.Simpsons.S30E19.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126821,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7238},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E20.I'm Just a Girl Who Can't Say D'oh-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E20.I'm Just a Girl Who Can't Say D'oh-WEBDL-1080p.mkv","size":718769276,"dateAdded":"2019-04-09T19:15:12.240003Z","sceneName":"The.Simpsons.S30E20.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126802,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7252},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E21.D'oh Canada-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E21.D'oh Canada-WEBDL-1080p.mkv","size":688756680,"dateAdded":"2019-04-29T00:19:01.416384Z","sceneName":"The.Simpsons.S30E21.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126775,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7381},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E22.Woo-Hoo Dunnit-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E22.Woo-Hoo Dunnit-WEBDL-1080p.mkv","size":674629196,"dateAdded":"2019-05-06T00:12:15.718215Z","sceneName":"The.Simpsons.S30E22.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126822,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7413},{"seriesId":49,"seasonNumber":30,"relativePath":"Season 30\/S30E23.Crystal Blue-Haired Persuasion-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 30\/S30E23.Crystal Blue-Haired Persuasion-WEBDL-1080p.mkv","size":735221615,"dateAdded":"2019-05-13T00:18:23.886729Z","sceneName":"The.Simpsons.S30E23.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7435},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E01.The Winter of Our Monetized Content-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E01.The Winter of Our Monetized Content-WEBDL-1080p.mkv","size":732434606,"dateAdded":"2019-09-30T00:21:18.615944Z","sceneName":"The.Simpsons.S31E01.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126805,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9145},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E02.The Homer of Seville-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E02.The Homer of Seville-HDTV-720p.mkv","size":497199365,"dateAdded":"2019-10-06T21:06:15.435547Z","sceneName":"The.Simpsons.S19E02.The.Homer.of.Seville.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2643461,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9604},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E10.E. Pluribus Wiggum-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E10.E. Pluribus Wiggum-HDTV-720p.mkv","size":439037051,"dateAdded":"2019-10-06T21:06:37.757801Z","sceneName":"The.Simpsons.S19E10.E.Pluribus.Wiggum.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2329833,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9612},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E11.That 90's Show-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E11.That 90's Show-HDTV-720p.mkv","size":484449657,"dateAdded":"2019-10-06T21:06:40.786991Z","sceneName":"The.Simpsons.S19E11.That.90s.Show.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2564366,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9613},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E12.Love, Springfieldian Style-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E12.Love, Springfieldian Style-HDTV-720p.mkv","size":470342712,"dateAdded":"2019-10-06T21:06:43.850985Z","sceneName":"The.Simpsons.S19E12.Love.Springfieldian.Style.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2501776,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9614},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E15.Smoke on the Daughter-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E15.Smoke on the Daughter-HDTV-720p.mkv","size":457915556,"dateAdded":"2019-10-06T21:06:53.848669Z","sceneName":"The.Simpsons.S19E15.Smoke.on.the.Daughter.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2426571,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9617},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E16.Papa Don't Leech-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E16.Papa Don't Leech-HDTV-720p.mkv","size":420178656,"dateAdded":"2019-10-06T21:06:56.45023Z","sceneName":"The.Simpsons.S19E16.Papa.Dont.Leech.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2174419,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9618},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E19.Mona Leaves-a-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E19.Mona Leaves-a-HDTV-720p.mkv","size":478339965,"dateAdded":"2019-10-06T21:07:09.556166Z","sceneName":"The.Simpsons.S19E19.Mona.Leaves-a.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2526726,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9621},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E20.All About Lisa-HDTV-720p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E20.All About Lisa-HDTV-720p.mkv","size":425523393,"dateAdded":"2019-10-06T21:07:18.226551Z","sceneName":"The.Simpsons.S19E20.All.About.Lisa.720p.HDTV.DD5.1.x264-CtrlHD","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2205167,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9622},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E02.Go Big or Go Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E02.Go Big or Go Homer-WEBDL-1080p.mkv","size":751511752,"dateAdded":"2019-10-07T00:21:46.388173Z","sceneName":"The.Simpsons.S31E02.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126812,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4502090,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9623},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E03.The Fat Blue Line-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E03.The Fat Blue Line-WEBDL-1080p.mkv","size":660947623,"dateAdded":"2019-10-14T09:14:09.947811Z","sceneName":"The.Simpsons.S31E03.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126816,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3944679,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9815},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E04.Treehouse of Horror XXX-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E04.Treehouse of Horror XXX-WEBDL-1080p.mkv","size":706289746,"dateAdded":"2019-10-21T03:50:43.13523Z","sceneName":"The.Simpsons.S31E04.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4291322,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9842},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E05.Gorillas on the Mast-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E05.Gorillas on the Mast-WEBDL-1080p.mkv","size":713683507,"dateAdded":"2019-11-04T01:22:43.937743Z","sceneName":"The.Simpsons.S31E05.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126817,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4267418,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9990},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E06.Marge the Lumberjill-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E06.Marge the Lumberjill-WEBDL-1080p.mkv","size":696066306,"dateAdded":"2019-11-11T01:22:32.20325Z","sceneName":"The.Simpsons.S31E06.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126816,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4177717,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10166},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E07.Livin La Pura Vida-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E07.Livin La Pura Vida-WEBDL-1080p.mkv","size":755620742,"dateAdded":"2019-11-18T04:51:07.602834Z","sceneName":"The.Simpsons.S31E07.1080p.WEB.x264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126831,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4527794,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10195},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E01.Moonshine River-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E01.Moonshine River-WEBDL-1080p.mkv","size":863196419,"dateAdded":"2019-11-21T10:37:21.655468Z","sceneName":"The.Simpsons.S24E01.Moonshine.River.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4912622,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10223},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E02.Treehouse of Horror XXIII-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E02.Treehouse of Horror XXIII-WEBDL-1080p.mkv","size":863567433,"dateAdded":"2019-11-21T10:37:26.287241Z","sceneName":"The.Simpsons.S24E02.Treehouse.of.Horror.XXIII.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4789614,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10224},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E03.Adventures in Baby-Getting-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E03.Adventures in Baby-Getting-WEBDL-1080p.mkv","size":916483141,"dateAdded":"2019-11-21T10:37:32.910402Z","sceneName":"The.Simpsons.S24E03.Adventures.in.Baby-Getting.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4872830,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10225},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E04.Gone Abie Gone-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E04.Gone Abie Gone-WEBDL-1080p.mkv","size":920393897,"dateAdded":"2019-11-21T10:37:40.186912Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4740628,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10226},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E05.Penny-Wiseguys-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E05.Penny-Wiseguys-WEBDL-1080p.mkv","size":953495635,"dateAdded":"2019-11-21T10:37:49.834178Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4977812,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10227},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E06.A Tree Grows in Springfield-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E06.A Tree Grows in Springfield-WEBDL-1080p.mkv","size":985856844,"dateAdded":"2019-11-21T10:37:58.820093Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4728372,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"25:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10228},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E07.The Day the Earth Stood Cool-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E07.The Day the Earth Stood Cool-WEBDL-1080p.mkv","size":968038581,"dateAdded":"2019-11-21T10:38:06.678746Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4949071,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10229},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E08.To Cur With Love-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E08.To Cur With Love-WEBDL-1080p.mkv","size":936777558,"dateAdded":"2019-11-21T10:38:14.510919Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5040146,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10230},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E09.Homer Goes to Prep School-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E09.Homer Goes to Prep School-WEBDL-1080p.mkv","size":924537021,"dateAdded":"2019-11-21T10:38:23.339623Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4744236,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10231},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E10.A Test Before Trying-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E10.A Test Before Trying-WEBDL-1080p.mkv","size":898317023,"dateAdded":"2019-11-21T10:38:29.39889Z","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4744262,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"22:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10232},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E11.The Changing of the Guardian-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E11.The Changing of the Guardian-WEBDL-1080p.mkv","size":909249994,"dateAdded":"2019-11-21T10:38:38.187153Z","sceneName":"The.Simpsons.S24E11.The.Changing.of.the.Guardian.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4765999,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10233},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E12.Love is a Many-Splintered Thing-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E12.Love is a Many-Splintered Thing-WEBDL-1080p.mkv","size":932851708,"dateAdded":"2019-11-21T10:38:45.108169Z","sceneName":"The.Simpsons.S24E12.Love.is.a.Many.Splintered.Thing.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4904692,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10234},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E13.Hardly Kirk-ing-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E13.Hardly Kirk-ing-WEBDL-1080p.mkv","size":846806683,"dateAdded":"2019-11-21T10:38:53.526865Z","sceneName":"The.Simpsons.S24E13.Hardly.Kirk-ing.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4837420,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"21:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10235},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E14.Gorgeous Grampa-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E14.Gorgeous Grampa-WEBDL-1080p.mkv","size":984090788,"dateAdded":"2019-11-21T10:38:59.955282Z","sceneName":"The.Simpsons.S24E14.Gorgeous.Grampa.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4928685,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"24:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10236},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E15.Black-Eyed, Please-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E15.Black-Eyed, Please-WEBDL-1080p.mkv","size":922776033,"dateAdded":"2019-11-21T10:39:07.537972Z","sceneName":"The.Simpsons.S24E15.Blake-Eyed.Please.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4804947,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10237},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E16.Dark Knight Court-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E16.Dark Knight Court-WEBDL-1080p.mkv","size":973697073,"dateAdded":"2019-11-21T10:39:15.699826Z","sceneName":"The.Simpsons.S24E16.Dark.Knight.Court.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4925922,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10238},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E17.What Animated Women Want-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E17.What Animated Women Want-WEBDL-1080p.mkv","size":934098787,"dateAdded":"2019-11-21T10:39:21.957156Z","sceneName":"The.Simpsons.S24E17.What.Animated.Women.Want.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4695734,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"24:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10239},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E18.Pulpit Friction-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E18.Pulpit Friction-WEBDL-1080p.mkv","size":972341397,"dateAdded":"2019-11-21T10:39:32.273389Z","sceneName":"The.Simpsons.S24E18.Pulpit.Friction.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5009153,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10240},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E19.Whiskey Business-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E19.Whiskey Business-WEBDL-1080p.mkv","size":968143758,"dateAdded":"2019-11-21T10:39:39.650801Z","sceneName":"The.Simpsons.S24E19.Whiskey.Business.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4983320,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10241},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E20.The Fabulous Faker Boys-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E20.The Fabulous Faker Boys-WEBDL-1080p.mkv","size":928573883,"dateAdded":"2019-11-21T10:39:48.704682Z","sceneName":"The.Simpsons.S24E20.The.Fabulous.Faker.Boy.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4760804,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10242},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E21.The Saga of Carl Carlson-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E21.The Saga of Carl Carlson-WEBDL-1080p.mkv","size":947252815,"dateAdded":"2019-11-21T10:39:55.847305Z","sceneName":"The.Simpsons.S24E21.The.Saga.of.Carl.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4776773,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10243},{"seriesId":49,"seasonNumber":24,"relativePath":"Season 24\/S24E22.Dangers on a Train-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 24\/S24E22.Dangers on a Train-WEBDL-1080p.mkv","size":961896044,"dateAdded":"2019-11-21T10:40:05.538806Z","sceneName":"The.Simpsons.S24E22.Dangers.on.a.Train.1080p.WEB-DL.DD5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4858067,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"23:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10244},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E08.Thanksgiving of Horror-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E08.Thanksgiving of Horror-WEBDL-1080p.mkv","size":799432949,"dateAdded":"2019-11-25T01:15:42.350687Z","sceneName":"The.Simpsons.S31E08.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126809,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4153644,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10273},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E09.Todd, Todd, Why Hast Thou Forsaken Me-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E09.Todd, Todd, Why Hast Thou Forsaken Me-WEBDL-1080p.mkv","size":726799847,"dateAdded":"2019-12-02T01:20:07.222193Z","sceneName":"The.Simpsons.S31E09.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126800,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4348235,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10374},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E10.Bobby, It's Cold Outside-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E10.Bobby, It's Cold Outside-WEBDL-1080p.mkv","size":726810271,"dateAdded":"2019-12-16T01:19:26.387342Z","sceneName":"The.Simpsons.S31E10.1080p.WEB.x264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126799,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4349594,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10622},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E11.Hail to the Teeth-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E11.Hail to the Teeth-WEBDL-1080p.mkv","size":730248189,"dateAdded":"2020-01-06T01:10:32.484576Z","sceneName":"The.Simpsons.S31E11.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126821,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4388314,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11179},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E12.The Miseducation of Lisa Simpson-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E12.The Miseducation of Lisa Simpson-WEBDL-1080p.mkv","size":715973596,"dateAdded":"2020-02-17T01:12:14.57382Z","sceneName":"The.Simpsons.S31E12.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126825,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4281381,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12492},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E13.Frinkcoin-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E13.Frinkcoin-WEBDL-1080p.mkv","size":648274205,"dateAdded":"2020-02-24T01:23:32.010215Z","sceneName":"The.Simpsons.S31E13.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126804,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3863897,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12574},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E14.Bart the Bad Guy-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E14.Bart the Bad Guy-WEBDL-1080p.mkv","size":708014265,"dateAdded":"2020-03-02T01:10:47.677945Z","sceneName":"The.Simpsons.S31E14.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126821,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4184431,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12641},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E15.Screenless-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E15.Screenless-WEBDL-1080p.mkv","size":717273470,"dateAdded":"2020-03-09T00:13:04.121196Z","sceneName":"The.Simpsons.S31E15.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126815,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4290961,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12685},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E16.Better Off Ned-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E16.Better Off Ned-WEBDL-1080p.mkv","size":714559553,"dateAdded":"2020-03-16T00:15:51.551533Z","sceneName":"The.Simpsons.S31E16.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126795,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4274681,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12712},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E17.Highway to Well-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E17.Highway to Well-WEBDL-1080p.mkv","size":735926066,"dateAdded":"2020-03-23T00:22:13.696131Z","sceneName":"The.Simpsons.S31E17.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126801,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4404741,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12744},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E18.The Incredible Lightness of Being a Baby-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E18.The Incredible Lightness of Being a Baby-WEBDL-1080p.mkv","size":729597094,"dateAdded":"2020-04-20T00:35:20.513981Z","sceneName":"The.Simpsons.S31E18.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126775,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4399953,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12902},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E19.Warrin' Priests (1)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E19.Warrin' Priests (1)-WEBDL-1080p.mkv","size":708227281,"dateAdded":"2020-04-27T00:15:07.44311Z","sceneName":"The.Simpsons.S31E19.1080p.WEB.x264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126819,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4265424,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13208},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E21.The Hateful Eight-Year-Olds-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E21.The Hateful Eight-Year-Olds-WEBDL-1080p.mkv","size":737155229,"dateAdded":"2020-05-11T00:11:32.381259Z","sceneName":"The.Simpsons.S31E21.1080p.WEB.X264-ALiGN[rarbg]","releaseGroup":"ALiGN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126809,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4374542,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13294},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E20.Warrin' Priests (2)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E20.Warrin' Priests (2)-WEBDL-1080p.mkv","size":689939173,"dateAdded":"2020-05-17T19:38:20.023973Z","sceneName":"The.Simpsons.S31E20.1080p.WEB.x264-BTX[rarbg]","releaseGroup":"BTX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126785,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4133217,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13350},{"seriesId":49,"seasonNumber":31,"relativePath":"Season 31\/S31E22.The Way of the Dog-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 31\/S31E22.The Way of the Dog-WEBDL-1080p.mkv","size":726693327,"dateAdded":"2020-05-18T00:59:25.627743Z","sceneName":"The.Simpsons.S31E22.1080p.WEB.H264-ALiGN[rarbg]","releaseGroup":"ALiGN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126827,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4348844,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13351},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E13.TBA-WEBRip-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E13.TBA-WEBRip-1080p.mkv","size":1506786857,"dateAdded":"2020-05-30T01:04:47.615783Z","sceneName":"The.Simpsons.S01E13.1080p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8495120,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13782},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Dead Putting Society-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E06.Dead Putting Society-WEBRip-720p.mkv","size":781735713,"dateAdded":"2020-06-11T23:39:43.424243Z","sceneName":"The.Simpsons.S02E06.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4238673,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14167},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Blood Feud-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E22.Blood Feud-WEBRip-720p.mkv","size":777694151,"dateAdded":"2020-06-11T23:42:44.25043Z","sceneName":"The.Simpsons.S02E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4235834,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:03","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14183},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Homer's Barbershop Quartet-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E01.Homer's Barbershop Quartet-WEBRip-720p.mkv","size":772879947,"dateAdded":"2020-06-11T23:52:01.903999Z","sceneName":"The.Simpsons.S05E01.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4238437,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14184},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Cape Feare-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E02.Cape Feare-WEBRip-720p.mkv","size":769627920,"dateAdded":"2020-06-11T23:52:10.055395Z","sceneName":"The.Simpsons.S05E02.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241849,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14185},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Rosebud-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E04.Rosebud-WEBRip-720p.mkv","size":774511951,"dateAdded":"2020-06-11T23:52:38.101321Z","sceneName":"The.Simpsons.S05E04.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233979,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14187},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Treehouse of Horror IV-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E05.Treehouse of Horror IV-WEBRip-720p.mkv","size":775729225,"dateAdded":"2020-06-11T23:52:54.935019Z","sceneName":"The.Simpsons.S05E05.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241646,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14188},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Marge on the Lam-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E06.Marge on the Lam-WEBRip-720p.mkv","size":774338213,"dateAdded":"2020-06-11T23:53:10.014718Z","sceneName":"The.Simpsons.S05E06.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240799,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:56","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14189},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Boy-Scoutz 'N the Hood-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E08.Boy-Scoutz 'N the Hood-WEBRip-720p.mkv","size":774214316,"dateAdded":"2020-06-11T23:53:42.124682Z","sceneName":"The.Simpsons.S05E08.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244923,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:55","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14191},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Bart Gets Famous-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E12.Bart Gets Famous-WEBRip-720p.mkv","size":774852418,"dateAdded":"2020-06-11T23:54:55.010655Z","sceneName":"The.Simpsons.S05E12.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242601,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:56","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14195},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Lisa vs. Malibu Stacy-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E14.Lisa vs. Malibu Stacy-WEBRip-720p.mkv","size":775788985,"dateAdded":"2020-06-11T23:55:22.563678Z","sceneName":"The.Simpsons.S05E14.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244434,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:57","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14197},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Homer Loves Flanders-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E16.Homer Loves Flanders-WEBRip-720p.mkv","size":774273803,"dateAdded":"2020-06-11T23:55:43.236917Z","sceneName":"The.Simpsons.S05E16.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243870,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:55","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14199},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E17.Bart Gets an Elephant-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E17.Bart Gets an Elephant-WEBRip-720p.mkv","size":773736602,"dateAdded":"2020-06-11T23:55:50.326764Z","sceneName":"The.Simpsons.S05E17.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241821,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:55","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14200},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Sweet Seymour Skinner's Baadasssss Song-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E19.Sweet Seymour Skinner's Baadasssss Song-WEBRip-720p.mkv","size":773688581,"dateAdded":"2020-06-11T23:56:23.553571Z","sceneName":"The.Simpsons.S05E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237724,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:56","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14202},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E22.Secrets of a Successful Marriage-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E22.Secrets of a Successful Marriage-WEBRip-720p.mkv","size":773359734,"dateAdded":"2020-06-11T23:56:58.556719Z","sceneName":"The.Simpsons.S05E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244452,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14205},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Kamp Krusty-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E01.Kamp Krusty-WEBRip-720p.mkv","size":772321452,"dateAdded":"2020-06-11T23:57:22.480697Z","sceneName":"The.Simpsons.S04E01.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4226643,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:57","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14206},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E02.A Streetcar Named Marge-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E02.A Streetcar Named Marge-WEBRip-720p.mkv","size":777130171,"dateAdded":"2020-06-11T23:57:30.829447Z","sceneName":"The.Simpsons.S04E02.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4236154,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:02","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14207},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Marge Gets a Job-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E07.Marge Gets a Job-WEBRip-720p.mkv","size":776522474,"dateAdded":"2020-06-11T23:58:36.108794Z","sceneName":"The.Simpsons.S04E07.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233545,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:02","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14212},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Homer's Triple Bypass-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E11.Homer's Triple Bypass-WEBRip-720p.mkv","size":774319934,"dateAdded":"2020-06-11T23:59:29.704166Z","sceneName":"The.Simpsons.S04E11.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240791,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:56","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14216},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Selma's Choice-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E13.Selma's Choice-WEBRip-720p.mkv","size":776353109,"dateAdded":"2020-06-11T23:59:54.72121Z","sceneName":"The.Simpsons.S04E13.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4226826,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:04","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14218},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Duffless-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E16.Duffless-WEBRip-720p.mkv","size":776754905,"dateAdded":"2020-06-12T00:00:43.841237Z","sceneName":"The.Simpsons.S04E16.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4225233,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:05","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14221},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E19.The Front-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E19.The Front-WEBRip-720p.mkv","size":765831914,"dateAdded":"2020-06-12T00:01:35.607219Z","sceneName":"The.Simpsons.S04E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241988,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:40","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14224},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Marge in Chains-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E21.Marge in Chains-WEBRip-720p.mkv","size":780604059,"dateAdded":"2020-06-12T00:02:10.195432Z","sceneName":"The.Simpsons.S04E21.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245272,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:06","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14226},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Krusty Gets Kancelled-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E22.Krusty Gets Kancelled-WEBRip-720p.mkv","size":780211748,"dateAdded":"2020-06-12T00:02:24.300466Z","sceneName":"The.Simpsons.S04E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244191,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:05","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14227},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E01.Treehouse of Horror VII-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E01.Treehouse of Horror VII-WEBRip-720p.mkv","size":770107318,"dateAdded":"2020-06-12T00:40:33.510439Z","sceneName":"The.Simpsons.S08E01.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243872,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14246},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E03.The Homer They Fall-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E03.The Homer They Fall-WEBRip-720p.mkv","size":770082340,"dateAdded":"2020-06-12T00:40:48.326741Z","sceneName":"The.Simpsons.S08E03.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242365,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14248},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E05.Bart After Dark-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E05.Bart After Dark-WEBRip-720p.mkv","size":770189588,"dateAdded":"2020-06-12T00:41:09.997056Z","sceneName":"The.Simpsons.S08E05.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242977,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14250},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E06.A Milhouse Divided-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E06.A Milhouse Divided-WEBRip-720p.mkv","size":769078196,"dateAdded":"2020-06-12T00:41:21.394686Z","sceneName":"The.Simpsons.S08E06.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4236377,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14251},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E08.Hurricane Neddy-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E08.Hurricane Neddy-WEBRip-720p.mkv","size":769197511,"dateAdded":"2020-06-12T00:41:41.113855Z","sceneName":"The.Simpsons.S08E08.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4235446,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14253},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E13.Simpsoncalifragilisticexpiala (Annoyed Grunt) cious-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E13.Simpsoncalifragilisticexpiala (Annoyed Grunt) cious-WEBRip-720p.mkv","size":770581280,"dateAdded":"2020-06-12T00:42:30.452547Z","sceneName":"The.Simpsons.S08E13.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245431,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14258},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E15.Homer's Phobia-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E15.Homer's Phobia-WEBRip-720p.mkv","size":768826810,"dateAdded":"2020-06-12T00:42:51.147154Z","sceneName":"The.Simpsons.S08E15.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4230479,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14260},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E16.Brother From Another Series-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E16.Brother From Another Series-WEBRip-720p.mkv","size":769461797,"dateAdded":"2020-06-12T00:43:00.689501Z","sceneName":"The.Simpsons.S08E16.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4236448,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14261},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E18.Homer vs. the 18th Amendment-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E18.Homer vs. the 18th Amendment-WEBRip-720p.mkv","size":770842450,"dateAdded":"2020-06-12T00:43:18.747466Z","sceneName":"The.Simpsons.S08E18.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245579,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14263},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E19.Grade School Confidential-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E19.Grade School Confidential-WEBRip-720p.mkv","size":768971326,"dateAdded":"2020-06-12T00:43:27.426562Z","sceneName":"The.Simpsons.S08E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233718,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14264},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E20.The Canine Mutiny-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E20.The Canine Mutiny-WEBRip-720p.mkv","size":769363303,"dateAdded":"2020-06-12T00:43:36.596611Z","sceneName":"The.Simpsons.S08E20.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4238165,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14265},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E21.The Old Man and the Lisa-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E21.The Old Man and the Lisa-WEBRip-720p.mkv","size":769878300,"dateAdded":"2020-06-12T00:43:46.928567Z","sceneName":"The.Simpsons.S08E21.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242075,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14266},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E22.In Marge We Trust-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E22.In Marge We Trust-WEBRip-720p.mkv","size":769817663,"dateAdded":"2020-06-12T00:43:57.779302Z","sceneName":"The.Simpsons.S08E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243766,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14267},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E23.Homer's Enemy-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E23.Homer's Enemy-WEBRip-720p.mkv","size":769620916,"dateAdded":"2020-06-12T00:44:08.334585Z","sceneName":"The.Simpsons.S08E23.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237942,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14268},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E24.The Simpsons Spin-Off Showcase-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E24.The Simpsons Spin-Off Showcase-WEBRip-720p.mkv","size":787521748,"dateAdded":"2020-06-12T00:44:20.137307Z","sceneName":"The.Simpsons.S08E24.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243313,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:19","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14269},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E25.The Secret War of Lisa Simpson-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E25.The Secret War of Lisa Simpson-WEBRip-720p.mkv","size":767256307,"dateAdded":"2020-06-12T00:44:31.563848Z","sceneName":"The.Simpsons.S08E25.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4225649,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14270},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Lisa's Rival-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E02.Lisa's Rival-WEBRip-720p.mkv","size":777224237,"dateAdded":"2020-06-12T00:49:09.36644Z","sceneName":"The.Simpsons.S06E02.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243677,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"23:00","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14272},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Another Simpsons Clip Show-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E03.Another Simpsons Clip Show-WEBRip-720p.mkv","size":768436353,"dateAdded":"2020-06-12T00:49:21.701134Z","sceneName":"The.Simpsons.S06E03.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244888,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:44","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14273},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Sideshow Bob Roberts-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E05.Sideshow Bob Roberts-WEBRip-720p.mkv","size":764092489,"dateAdded":"2020-06-12T00:49:46.017627Z","sceneName":"The.Simpsons.S06E05.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245627,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14275},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Homer Badman-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E09.Homer Badman-WEBRip-720p.mkv","size":762871755,"dateAdded":"2020-06-12T00:50:38.030731Z","sceneName":"The.Simpsons.S06E09.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244103,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14279},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Grampa vs. Sexual Inadequacy-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E10.Grampa vs. Sexual Inadequacy-WEBRip-720p.mkv","size":761697599,"dateAdded":"2020-06-12T00:50:54.577996Z","sceneName":"The.Simpsons.S06E10.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233259,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14280},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Homer the Great-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E12.Homer the Great-WEBRip-720p.mkv","size":763530903,"dateAdded":"2020-06-12T00:51:31.169949Z","sceneName":"The.Simpsons.S06E12.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245791,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14282},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Bart vs. Australia-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E16.Bart vs. Australia-WEBRip-720p.mkv","size":764365261,"dateAdded":"2020-06-12T00:52:18.003866Z","sceneName":"The.Simpsons.S06E16.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4247100,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14286},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E18.A Star Is Burns-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E18.A Star Is Burns-WEBRip-720p.mkv","size":765094871,"dateAdded":"2020-06-12T00:52:45.396005Z","sceneName":"The.Simpsons.S06E18.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245065,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:38","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14288},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E19.Lisa's Wedding-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E19.Lisa's Wedding-WEBRip-720p.mkv","size":763121515,"dateAdded":"2020-06-12T00:53:00.985041Z","sceneName":"The.Simpsons.S06E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4246568,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14289},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E20.Two Dozen and One Greyhounds-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E20.Two Dozen and One Greyhounds-WEBRip-720p.mkv","size":763333964,"dateAdded":"2020-06-12T00:53:13.577511Z","sceneName":"The.Simpsons.S06E20.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4239217,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:37","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14290},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E21.The PTA Disbands-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E21.The PTA Disbands-WEBRip-720p.mkv","size":761975307,"dateAdded":"2020-06-12T00:53:31.043259Z","sceneName":"The.Simpsons.S06E21.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243125,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14291},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E22.Round Springfield-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E22.Round Springfield-WEBRip-720p.mkv","size":761144766,"dateAdded":"2020-06-12T00:53:42.868891Z","sceneName":"The.Simpsons.S06E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4236194,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14292},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E23.The Springfield Connection-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E23.The Springfield Connection-WEBRip-720p.mkv","size":760304836,"dateAdded":"2020-06-12T00:54:01.67009Z","sceneName":"The.Simpsons.S06E23.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4232203,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14293},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E24.Lemon of Troy-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E24.Lemon of Troy-WEBRip-720p.mkv","size":763025581,"dateAdded":"2020-06-12T00:54:10.789958Z","sceneName":"The.Simpsons.S06E24.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4246067,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14294},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E25.Who Shot Mr. Burns! (1)-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E25.Who Shot Mr. Burns! (1)-WEBRip-720p.mkv","size":764634610,"dateAdded":"2020-06-12T00:54:19.677127Z","sceneName":"The.Simpsons.S06E25.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245631,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:37","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14295},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E01.Lard of the Dance-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E01.Lard of the Dance-WEBRip-720p.mkv","size":768622026,"dateAdded":"2020-06-12T01:02:02.799857Z","sceneName":"The.Simpsons.S10E01.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4239131,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:46","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14296},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E02.The Wizard of Evergreen Terrace-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E02.The Wizard of Evergreen Terrace-WEBRip-720p.mkv","size":768041959,"dateAdded":"2020-06-12T01:02:13.893337Z","sceneName":"The.Simpsons.S10E02.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4230183,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14297},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E04.Treehouse of Horror IX-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E04.Treehouse of Horror IX-WEBRip-720p.mkv","size":770349466,"dateAdded":"2020-06-12T01:02:30.505734Z","sceneName":"The.Simpsons.S10E04.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4247385,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14299},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E06.D'oh-in in the Wind-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E06.D'oh-in in the Wind-WEBRip-720p.mkv","size":768653173,"dateAdded":"2020-06-12T01:02:48.936724Z","sceneName":"The.Simpsons.S10E06.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4239291,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:46","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14301},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E07.Lisa Gets an A-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E07.Lisa Gets an A-WEBRip-720p.mkv","size":769608615,"dateAdded":"2020-06-12T01:02:57.138764Z","sceneName":"The.Simpsons.S10E07.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240556,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14302},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E10.Viva Ned Flanders-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E10.Viva Ned Flanders-WEBRip-720p.mkv","size":770933001,"dateAdded":"2020-06-12T01:03:26.458783Z","sceneName":"The.Simpsons.S10E10.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242855,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14305},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E11.Wild Barts Can't Be Broken-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E11.Wild Barts Can't Be Broken-WEBRip-720p.mkv","size":770668919,"dateAdded":"2020-06-12T01:03:35.929209Z","sceneName":"The.Simpsons.S10E11.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240945,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14306},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E12.Sunday, Cruddy Sunday-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E12.Sunday, Cruddy Sunday-WEBRip-720p.mkv","size":770015788,"dateAdded":"2020-06-12T01:03:46.764667Z","sceneName":"The.Simpsons.S10E12.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244253,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14307},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E13.Homer to the Max-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E13.Homer to the Max-WEBRip-720p.mkv","size":770589853,"dateAdded":"2020-06-12T01:03:55.18882Z","sceneName":"The.Simpsons.S10E13.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241294,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14308},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E14.I'm with Cupid-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E14.I'm with Cupid-WEBRip-720p.mkv","size":770049633,"dateAdded":"2020-06-12T01:04:03.791175Z","sceneName":"The.Simpsons.S10E14.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241434,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14309},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E16.Make Room for Lisa-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E16.Make Room for Lisa-WEBRip-720p.mkv","size":771055830,"dateAdded":"2020-06-12T01:04:22.495897Z","sceneName":"The.Simpsons.S10E16.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242243,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14311},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E17.Maximum Homerdrive-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E17.Maximum Homerdrive-WEBRip-720p.mkv","size":770802004,"dateAdded":"2020-06-12T01:04:30.934747Z","sceneName":"The.Simpsons.S10E17.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242101,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14312},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E18.Simpsons Bible Stories-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E18.Simpsons Bible Stories-WEBRip-720p.mkv","size":770357132,"dateAdded":"2020-06-12T01:04:40.203702Z","sceneName":"The.Simpsons.S10E18.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4234469,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14313},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E19.Mom and Pop Art-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E19.Mom and Pop Art-WEBRip-720p.mkv","size":762958326,"dateAdded":"2020-06-12T01:04:50.018788Z","sceneName":"The.Simpsons.S10E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4225354,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:40","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14314},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E20.The Old Man and the C Student-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E20.The Old Man and the C Student-WEBRip-720p.mkv","size":772401484,"dateAdded":"2020-06-12T01:04:58.757251Z","sceneName":"The.Simpsons.S10E20.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4244030,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14315},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E21.Monty Can't Buy Me Love-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E21.Monty Can't Buy Me Love-WEBRip-720p.mkv","size":767427677,"dateAdded":"2020-06-12T01:05:09.840274Z","sceneName":"The.Simpsons.S10E21.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233320,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:46","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14316},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E22.They Saved Lisa's Brain-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E22.They Saved Lisa's Brain-WEBRip-720p.mkv","size":770890157,"dateAdded":"2020-06-12T01:05:19.690339Z","sceneName":"The.Simpsons.S10E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242065,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14317},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E02.A Tale of Two Springfields-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E02.A Tale of Two Springfields-WEBRip-720p.mkv","size":752244836,"dateAdded":"2020-06-12T01:47:38.020061Z","sceneName":"The.Simpsons.S12E02.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240599,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:17","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14320},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E03.Insane Clown Poppy-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E03.Insane Clown Poppy-WEBRip-720p.mkv","size":762595947,"dateAdded":"2020-06-12T01:47:42.687768Z","sceneName":"The.Simpsons.S12E03.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240615,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14321},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E04.Lisa the Tree Hugger-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E04.Lisa the Tree Hugger-WEBRip-720p.mkv","size":762311764,"dateAdded":"2020-06-12T01:47:51.68826Z","sceneName":"The.Simpsons.S12E04.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243755,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14322},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E05.Homer vs. Dignity-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E05.Homer vs. Dignity-WEBRip-720p.mkv","size":755791658,"dateAdded":"2020-06-12T01:47:59.711569Z","sceneName":"The.Simpsons.S12E05.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242025,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14323},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E07.The Great Money Caper-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E07.The Great Money Caper-WEBRip-720p.mkv","size":762019303,"dateAdded":"2020-06-12T01:48:20.547732Z","sceneName":"The.Simpsons.S12E07.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242807,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14325},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E08.Skinner's Sense of Snow-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E08.Skinner's Sense of Snow-WEBRip-720p.mkv","size":762695802,"dateAdded":"2020-06-12T01:48:29.055402Z","sceneName":"The.Simpsons.S12E08.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4239293,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14326},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E09.HOM\u042f-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E09.HOM\u042f-WEBRip-720p.mkv","size":761833293,"dateAdded":"2020-06-12T01:48:37.435648Z","sceneName":"The.Simpsons.S12E09.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237611,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14327},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E10.Pokey Mom-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E10.Pokey Mom-WEBRip-720p.mkv","size":762503473,"dateAdded":"2020-06-12T01:48:44.713655Z","sceneName":"The.Simpsons.S12E10.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4239565,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14328},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E11.Worst Episode Ever-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E11.Worst Episode Ever-WEBRip-720p.mkv","size":761228242,"dateAdded":"2020-06-12T01:48:55.350902Z","sceneName":"The.Simpsons.S12E11.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4236126,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14329},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E12.Tennis the Menace-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E12.Tennis the Menace-WEBRip-720p.mkv","size":760470474,"dateAdded":"2020-06-12T01:49:03.793849Z","sceneName":"The.Simpsons.S12E12.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233879,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14330},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E13.Day of the Jackanapes-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E13.Day of the Jackanapes-WEBRip-720p.mkv","size":762609520,"dateAdded":"2020-06-12T01:49:12.550327Z","sceneName":"The.Simpsons.S12E13.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241675,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14331},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E14.New Kids on the Blecch-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E14.New Kids on the Blecch-WEBRip-720p.mkv","size":761365339,"dateAdded":"2020-06-12T01:49:20.392724Z","sceneName":"The.Simpsons.S12E14.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4238108,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14332},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E15.Hungry Hungry Homer-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E15.Hungry Hungry Homer-WEBRip-720p.mkv","size":761613456,"dateAdded":"2020-06-12T01:49:29.013296Z","sceneName":"The.Simpsons.S12E15.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4239945,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14333},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E17.Simpson Safari-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E17.Simpson Safari-WEBRip-720p.mkv","size":760426924,"dateAdded":"2020-06-12T01:49:46.48209Z","sceneName":"The.Simpsons.S12E17.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4233505,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14335},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E18.Trilogy of Error-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E18.Trilogy of Error-WEBRip-720p.mkv","size":762963278,"dateAdded":"2020-06-12T01:49:53.810714Z","sceneName":"The.Simpsons.S12E18.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4240247,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14336},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E19.I'm Goin' to Praiseland-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E19.I'm Goin' to Praiseland-WEBRip-720p.mkv","size":761702794,"dateAdded":"2020-06-12T01:50:06.443635Z","sceneName":"The.Simpsons.S12E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241678,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14337},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E20.Children of a Lesser Clod-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E20.Children of a Lesser Clod-WEBRip-720p.mkv","size":762480715,"dateAdded":"2020-06-12T01:50:14.964663Z","sceneName":"The.Simpsons.S12E20.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243142,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14338},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E21.Simpsons Tall Tales-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E21.Simpsons Tall Tales-WEBRip-720p.mkv","size":761876098,"dateAdded":"2020-06-12T01:50:24.008703Z","sceneName":"The.Simpsons.S12E21.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245150,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14339},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E01.Beyond Blunderdome-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E01.Beyond Blunderdome-WEBRip-720p.mkv","size":761127336,"dateAdded":"2020-06-12T02:01:03.74215Z","sceneName":"The.Simpsons.S11E01.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237549,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14340},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E03.Guess Who's Coming to Criticize Dinner-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E03.Guess Who's Coming to Criticize Dinner-WEBRip-720p.mkv","size":761531982,"dateAdded":"2020-06-12T02:01:14.737695Z","sceneName":"The.Simpsons.S11E03.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4234400,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14342},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E04.Treehouse of Horror X-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E04.Treehouse of Horror X-WEBRip-720p.mkv","size":762922800,"dateAdded":"2020-06-12T02:01:20.600537Z","sceneName":"The.Simpsons.S11E04.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243755,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14343},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E07.Eight Misbehavin'-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E07.Eight Misbehavin'-WEBRip-720p.mkv","size":762770482,"dateAdded":"2020-06-12T02:01:45.849504Z","sceneName":"The.Simpsons.S11E07.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4245434,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14346},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E09.Grift of the Magi-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E09.Grift of the Magi-WEBRip-720p.mkv","size":760030577,"dateAdded":"2020-06-12T02:02:01.573302Z","sceneName":"The.Simpsons.S11E09.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4228759,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14348},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E10.Little Big Mom-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E10.Little Big Mom-WEBRip-720p.mkv","size":762230662,"dateAdded":"2020-06-12T02:02:10.293682Z","sceneName":"The.Simpsons.S11E10.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242119,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14349},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E11.Faith Off-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E11.Faith Off-WEBRip-720p.mkv","size":760613707,"dateAdded":"2020-06-12T02:02:20.604367Z","sceneName":"The.Simpsons.S11E11.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4231903,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14350},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E13.Saddlesore Galactica-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E13.Saddlesore Galactica-WEBRip-720p.mkv","size":762562812,"dateAdded":"2020-06-12T02:02:35.946317Z","sceneName":"The.Simpsons.S11E13.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242592,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14352},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E14.Alone Again, Natura-Diddily-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E14.Alone Again, Natura-Diddily-WEBRip-720p.mkv","size":762062501,"dateAdded":"2020-06-12T02:02:44.08134Z","sceneName":"The.Simpsons.S11E14.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242096,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14353},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E16.Pygmoelian-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E16.Pygmoelian-WEBRip-720p.mkv","size":760933350,"dateAdded":"2020-06-12T02:02:59.980191Z","sceneName":"The.Simpsons.S11E16.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241424,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:32","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14355},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E17.Bart to the Future-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E17.Bart to the Future-WEBRip-720p.mkv","size":759382910,"dateAdded":"2020-06-12T02:03:09.382386Z","sceneName":"The.Simpsons.S11E17.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243341,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:28","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14356},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E18.Days of Wine and D'ohses-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E18.Days of Wine and D'ohses-WEBRip-720p.mkv","size":762529129,"dateAdded":"2020-06-12T02:03:18.380649Z","sceneName":"The.Simpsons.S11E18.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4243679,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14357},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E19.Kill the Alligator and Run-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E19.Kill the Alligator and Run-WEBRip-720p.mkv","size":761215455,"dateAdded":"2020-06-12T02:03:24.817525Z","sceneName":"The.Simpsons.S11E19.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4237608,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14358},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E20.Last Tap Dance in Springfield-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E20.Last Tap Dance in Springfield-WEBRip-720p.mkv","size":760360319,"dateAdded":"2020-06-12T02:03:33.323161Z","sceneName":"The.Simpsons.S11E20.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4229310,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14359},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E21.It's a Mad, Mad, Mad, Mad Marge-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E21.It's a Mad, Mad, Mad, Mad Marge-WEBRip-720p.mkv","size":761663393,"dateAdded":"2020-06-12T02:03:39.977487Z","sceneName":"The.Simpsons.S11E21.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4241464,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14360},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E22.Behind the Laughter-WEBRip-720p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E22.Behind the Laughter-WEBRip-720p.mkv","size":762304997,"dateAdded":"2020-06-12T02:03:49.823809Z","sceneName":"The.Simpsons.S11E22.720p.DSNP.WEB-DL.DDP5.1.H.264-MZABI","releaseGroup":"MZABI","language":{"id":1,"name":"English"},"quality":{"quality":{"id":14,"name":"WEBRip-720p","source":"webRip","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4242910,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14361},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Homer's Odyssey-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E03.Homer's Odyssey-WEBDL-1080p.mkv","size":1521565412,"dateAdded":"2020-07-07T03:56:12.522052Z","sceneName":"The.Simpsons.S01E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305754,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14817},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Call of the Simpsons-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E07.The Call of the Simpsons-WEBDL-1080p.mkv","size":1517932433,"dateAdded":"2020-07-07T03:58:31.891757Z","sceneName":"The.Simpsons.S01E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309309,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14818},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Homer's Night Out-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E10.Homer's Night Out-WEBDL-1080p.mkv","size":1516979935,"dateAdded":"2020-07-07T04:00:12.217609Z","sceneName":"The.Simpsons.S01E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315382,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14819},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E04.There's No Disgrace Like Home-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E04.There's No Disgrace Like Home-WEBDL-1080p.mkv","size":1476838576,"dateAdded":"2020-07-07T04:00:37.069442Z","sceneName":"The.Simpsons.S01E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309803,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14820},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Simpson and Delilah-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E02.Simpson and Delilah-WEBDL-1080p.mkv","size":1519715221,"dateAdded":"2020-07-07T04:01:07.220855Z","sceneName":"The.Simpsons.S02E02.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316801,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14821},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E11.One Fish, Two Fish, Blowfish, Blue Fish-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E11.One Fish, Two Fish, Blowfish, Blue Fish-WEBDL-1080p.mkv","size":1524661174,"dateAdded":"2020-07-07T04:02:42.144639Z","sceneName":"The.Simpsons.S02E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8324356,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14822},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Treehouse of Horror-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E03.Treehouse of Horror-WEBDL-1080p.mkv","size":1527524919,"dateAdded":"2020-07-07T04:04:12.35965Z","sceneName":"The.Simpsons.S02E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325886,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14823},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Telltale Head-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E08.The Telltale Head-WEBDL-1080p.mkv","size":1511694979,"dateAdded":"2020-07-07T04:04:34.863436Z","sceneName":"The.Simpsons.S01E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8321322,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14824},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Bart Gets Hit by a Car-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E10.Bart Gets Hit by a Car-WEBDL-1080p.mkv","size":1524723307,"dateAdded":"2020-07-07T04:04:54.529804Z","sceneName":"The.Simpsons.S02E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8323720,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14825},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Bart the Genius-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E02.Bart the Genius-WEBDL-1080p.mkv","size":1522173740,"dateAdded":"2020-07-07T04:05:22.600548Z","sceneName":"The.Simpsons.S01E02.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8323560,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:11","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14826},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Way We Was-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E12.The Way We Was-WEBDL-1080p.mkv","size":1516768877,"dateAdded":"2020-07-07T04:05:45.249329Z","sceneName":"The.Simpsons.S02E12.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8317811,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14827},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Simpsons Roasting on an Open Fire-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E01.Simpsons Roasting on an Open Fire-WEBDL-1080p.mkv","size":1526821052,"dateAdded":"2020-07-07T04:06:05.016542Z","sceneName":"The.Simpsons.S01E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325670,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:15","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14828},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Moaning Lisa-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E06.Moaning Lisa-WEBDL-1080p.mkv","size":1520906682,"dateAdded":"2020-07-07T04:09:12.337114Z","sceneName":"The.Simpsons.S01E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8321943,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14829},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Principal Charming-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E14.Principal Charming-WEBDL-1080p.mkv","size":1521865489,"dateAdded":"2020-07-07T04:09:35.983591Z","sceneName":"The.Simpsons.S02E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8313740,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14830},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Two Cars in Every Garage and Three Eyes on Every Fish-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E04.Two Cars in Every Garage and Three Eyes on Every Fish-WEBDL-1080p.mkv","size":1524776327,"dateAdded":"2020-07-07T04:11:12.327654Z","sceneName":"The.Simpsons.S02E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325595,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14831},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Crepes of Wrath-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E11.The Crepes of Wrath-WEBDL-1080p.mkv","size":1519731299,"dateAdded":"2020-07-07T04:12:42.278255Z","sceneName":"The.Simpsons.S01E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305067,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:11","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14832},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Bart Gets an F-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E01.Bart Gets an F-WEBDL-1080p.mkv","size":1516187949,"dateAdded":"2020-07-07T04:12:57.302741Z","sceneName":"The.Simpsons.S02E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305379,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:08","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14833},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Life on the Fast Lane-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E09.Life on the Fast Lane-WEBDL-1080p.mkv","size":1516886454,"dateAdded":"2020-07-07T04:13:16.688825Z","sceneName":"The.Simpsons.S01E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8301632,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14834},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Bart's Dog Gets an F-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E16.Bart's Dog Gets an F-WEBDL-1080p.mkv","size":1523575946,"dateAdded":"2020-07-07T04:13:40.985838Z","sceneName":"The.Simpsons.S02E16.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8307824,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:14","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14835},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E20.The War of the Simpsons-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E20.The War of the Simpsons-WEBDL-1080p.mkv","size":1507675319,"dateAdded":"2020-07-07T04:19:42.400266Z","sceneName":"The.Simpsons.S02E20.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309225,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:00","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14836},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Lisa's Substitute-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E19.Lisa's Substitute-WEBDL-1080p.mkv","size":1508331139,"dateAdded":"2020-07-07T04:28:42.597732Z","sceneName":"The.Simpsons.S02E19.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314341,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14837},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Krusty Gets Busted-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E12.Krusty Gets Busted-WEBDL-1080p.mkv","size":1520221705,"dateAdded":"2020-07-07T04:36:42.933243Z","sceneName":"The.Simpsons.S01E12.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8304090,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14838},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Three Men and a Comic Book-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E21.Three Men and a Comic Book-WEBDL-1080p.mkv","size":1509279101,"dateAdded":"2020-07-07T04:42:42.862758Z","sceneName":"The.Simpsons.S02E21.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8324304,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14839},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Brush With Greatness-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E18.Brush With Greatness-WEBDL-1080p.mkv","size":1503179041,"dateAdded":"2020-07-07T05:04:43.340215Z","sceneName":"The.Simpsons.S02E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8287841,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14841},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Dancin' Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E05.Dancin' Homer-WEBDL-1080p.mkv","size":1521825449,"dateAdded":"2020-07-07T05:06:13.399458Z","sceneName":"The.Simpsons.S02E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8308397,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14842},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Homer vs. Lisa and the Eighth Commandment-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E13.Homer vs. Lisa and the Eighth Commandment-WEBDL-1080p.mkv","size":1519451192,"dateAdded":"2020-07-07T05:12:13.371858Z","sceneName":"The.Simpsons.S02E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8320248,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14843},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Old Money-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E17.Old Money-WEBDL-1080p.mkv","size":1507483833,"dateAdded":"2020-07-07T05:12:29.783166Z","sceneName":"The.Simpsons.S02E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8317281,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14844},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Itchy & Scratchy & Marge-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E09.Itchy & Scratchy & Marge-WEBDL-1080p.mkv","size":1515817976,"dateAdded":"2020-07-07T05:15:43.407956Z","sceneName":"The.Simpsons.S02E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8296196,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14845},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Treehouse of Horror III-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E05.Treehouse of Horror III-WEBDL-1080p.mkv","size":1514730797,"dateAdded":"2020-07-07T05:34:13.838387Z","sceneName":"The.Simpsons.S04E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325034,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:04","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14846},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E10.$pringfield (Or, How I Learned to Stop Worrying and Love Legalized Gambling)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E10.$pringfield (Or, How I Learned to Stop Worrying and Love Legalized Gambling)-WEBDL-1080p.mkv","size":1513508993,"dateAdded":"2020-07-07T05:35:43.825936Z","sceneName":"The.Simpsons.S05E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8312368,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:05","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14847},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Mr. Lisa Goes to Washington-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E02.Mr. Lisa Goes to Washington-WEBDL-1080p.mkv","size":1509397494,"dateAdded":"2020-07-07T05:38:43.827478Z","sceneName":"The.Simpsons.S03E02.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8323186,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14848},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E21.Black Widower-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E21.Black Widower-WEBDL-1080p.mkv","size":1505599733,"dateAdded":"2020-07-07T05:39:08.967977Z","sceneName":"The.Simpsons.S03E21.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315120,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14849},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Colonel Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E20.Colonel Homer-WEBDL-1080p.mkv","size":1506730493,"dateAdded":"2020-07-07T05:42:13.908457Z","sceneName":"The.Simpsons.S03E20.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8298700,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14850},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Oh Brother, Where Art Thou-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E15.Oh Brother, Where Art Thou-WEBDL-1080p.mkv","size":1519045986,"dateAdded":"2020-07-07T05:51:13.952276Z","sceneName":"The.Simpsons.S02E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8318554,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14851},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Separate Vocations-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E18.Separate Vocations-WEBDL-1080p.mkv","size":1487525077,"dateAdded":"2020-07-07T05:58:44.333177Z","sceneName":"The.Simpsons.S03E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8288856,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:44","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14852},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Treehouse of Horror V-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E06.Treehouse of Horror V-WEBDL-1080p.mkv","size":1504126920,"dateAdded":"2020-07-07T05:59:09.468245Z","sceneName":"The.Simpsons.S06E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8323480,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14853},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E09.The Last Temptation of Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E09.The Last Temptation of Homer-WEBDL-1080p.mkv","size":1506600016,"dateAdded":"2020-07-07T06:03:44.336241Z","sceneName":"The.Simpsons.S05E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8311850,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14854},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E03.When Flanders Failed-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E03.When Flanders Failed-WEBDL-1080p.mkv","size":1507362462,"dateAdded":"2020-07-07T06:05:14.255078Z","sceneName":"The.Simpsons.S03E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315596,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14855},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Itchy & Scratchy - The Movie-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E06.Itchy & Scratchy - The Movie-WEBDL-1080p.mkv","size":1508067534,"dateAdded":"2020-07-07T06:06:44.343214Z","sceneName":"The.Simpsons.S04E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8295987,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14856},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Bart the Daredevil-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E08.Bart the Daredevil-WEBDL-1080p.mkv","size":1499752469,"dateAdded":"2020-07-07T06:19:14.661429Z","sceneName":"The.Simpsons.S02E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325296,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14857},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E18.So It's Come to This - A Simpsons Clip Show-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E18.So It's Come to This - A Simpsons Clip Show-WEBDL-1080p.mkv","size":1512740728,"dateAdded":"2020-07-07T06:26:44.727717Z","sceneName":"The.Simpsons.S04E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316932,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14858},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Homer Goes to College-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E03.Homer Goes to College-WEBDL-1080p.mkv","size":1503412403,"dateAdded":"2020-07-07T06:56:15.395728Z","sceneName":"The.Simpsons.S05E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8321401,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14859},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E21.Lady Bouvier's Lover-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E21.Lady Bouvier's Lover-WEBDL-1080p.mkv","size":1505501839,"dateAdded":"2020-07-07T07:13:15.778567Z","sceneName":"The.Simpsons.S05E21.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8317750,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14860},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Last Exit to Springfield-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E17.Last Exit to Springfield-WEBDL-1080p.mkv","size":1511496506,"dateAdded":"2020-07-07T07:14:45.734106Z","sceneName":"The.Simpsons.S04E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8306712,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:04","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14861},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Marge vs. the Monorail-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E12.Marge vs. the Monorail-WEBDL-1080p.mkv","size":1514549144,"dateAdded":"2020-07-07T07:27:15.922889Z","sceneName":"The.Simpsons.S04E12.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8310142,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:06","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14862},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Dog of Death-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E19.Dog of Death-WEBDL-1080p.mkv","size":1507921454,"dateAdded":"2020-07-07T07:30:16.346773Z","sceneName":"The.Simpsons.S03E19.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316586,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14863},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E22.Raging Abe Simpson and his Grumbling Grandson in - 'The Curse of the Flying Hellfish'-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E22.Raging Abe Simpson and his Grumbling Grandson in - 'The Curse of the Flying Hellfish'-WEBDL-1080p.mkv","size":1499940321,"dateAdded":"2020-07-07T07:34:46.267323Z","sceneName":"The.Simpsons.S07E22.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315163,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14864},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E08.The New Kid on the Block-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E08.The New Kid on the Block-WEBDL-1080p.mkv","size":1444971532,"dateAdded":"2020-07-07T07:39:46.257362Z","sceneName":"The.Simpsons.S04E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315702,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14865},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Homer Defined-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E05.Homer Defined-WEBDL-1080p.mkv","size":1508751840,"dateAdded":"2020-07-07T07:39:56.054267Z","sceneName":"The.Simpsons.S03E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314347,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:00","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14866},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Sideshow Bob's Last Gleaming-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E09.Sideshow Bob's Last Gleaming-WEBDL-1080p.mkv","size":1497670133,"dateAdded":"2020-07-07T08:12:16.979863Z","sceneName":"The.Simpsons.S07E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8288440,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14867},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Lisa the Greek-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E14.Lisa the Greek-WEBDL-1080p.mkv","size":1508798135,"dateAdded":"2020-07-07T08:21:17.235119Z","sceneName":"The.Simpsons.S03E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8318586,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14868},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E15.Marge Simpson in - 'Screaming Yellow Honkers'-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E15.Marge Simpson in - 'Screaming Yellow Honkers'-WEBDL-1080p.mkv","size":1496998587,"dateAdded":"2020-07-07T08:35:17.420586Z","sceneName":"The.Simpsons.S10E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315143,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14869},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E13.And Maggie Makes Three-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E13.And Maggie Makes Three-WEBDL-1080p.mkv","size":1482237592,"dateAdded":"2020-07-07T08:38:22.703933Z","sceneName":"The.Simpsons.S06E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8323045,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14870},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E15.Missionary - Impossible-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E15.Missionary - Impossible-WEBDL-1080p.mkv","size":1478640348,"dateAdded":"2020-07-07T09:01:48.357576Z","sceneName":"The.Simpsons.S11E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8302830,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14871},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Homie the Clown-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E15.Homie the Clown-WEBDL-1080p.mkv","size":1479649115,"dateAdded":"2020-07-07T09:09:48.469756Z","sceneName":"The.Simpsons.S06E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314338,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14872},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E23.Thirty Minutes Over Tokyo-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E23.Thirty Minutes Over Tokyo-WEBDL-1080p.mkv","size":1496699502,"dateAdded":"2020-07-07T09:10:08.784522Z","sceneName":"The.Simpsons.S10E23.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8320044,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14873},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E11.The Twisted World of Marge Simpson-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E11.The Twisted World of Marge Simpson-WEBDL-1080p.mkv","size":1489285211,"dateAdded":"2020-07-07T09:11:48.455892Z","sceneName":"The.Simpsons.S08E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8275566,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14874},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E08.Homer Simpson in - 'Kidney Trouble'-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E08.Homer Simpson in - 'Kidney Trouble'-WEBDL-1080p.mkv","size":1496366115,"dateAdded":"2020-07-07T09:14:48.58248Z","sceneName":"The.Simpsons.S10E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8318735,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14875},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Fear of Flying-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E11.Fear of Flying-WEBDL-1080p.mkv","size":1480393073,"dateAdded":"2020-07-07T09:17:48.639553Z","sceneName":"The.Simpsons.S06E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316418,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14876},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E04.Bart Sells His Soul-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E04.Bart Sells His Soul-WEBDL-1080p.mkv","size":1494221607,"dateAdded":"2020-07-07T09:20:48.534715Z","sceneName":"The.Simpsons.S07E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8299844,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14877},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E05.E-I-E-I-(Annoyed Grunt)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E05.E-I-E-I-(Annoyed Grunt)-WEBDL-1080p.mkv","size":1480798779,"dateAdded":"2020-07-07T09:22:18.608683Z","sceneName":"The.Simpsons.S11E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316539,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14878},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Lisa the Beauty Queen-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E04.Lisa the Beauty Queen-WEBDL-1080p.mkv","size":1508117942,"dateAdded":"2020-07-07T09:42:19.025605Z","sceneName":"The.Simpsons.S04E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8292910,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14879},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E03.Bart the Mother-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E03.Bart the Mother-WEBDL-1080p.mkv","size":1496318254,"dateAdded":"2020-07-07T09:42:50.596772Z","sceneName":"The.Simpsons.S10E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315454,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14880},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E09.El Viaje Misterioso de Nuestro Jomer (The Mysterious Voyage of Our Homer)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E09.El Viaje Misterioso de Nuestro Jomer (The Mysterious Voyage of Our Homer)-WEBDL-1080p.mkv","size":1497062748,"dateAdded":"2020-07-07T09:44:48.937941Z","sceneName":"The.Simpsons.S08E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8311707,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14881},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Bart the Lover-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E16.Bart the Lover-WEBDL-1080p.mkv","size":1511213603,"dateAdded":"2020-07-07T09:47:49.126615Z","sceneName":"The.Simpsons.S03E16.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8327932,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:00","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14882},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E20.Whacking Day-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E20.Whacking Day-WEBDL-1080p.mkv","size":1513674647,"dateAdded":"2020-07-07T09:50:49.141758Z","sceneName":"The.Simpsons.S04E20.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315484,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:04","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14883},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E14.The Itchy & Scratchy & Poochie Show-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E14.The Itchy & Scratchy & Poochie Show-WEBDL-1080p.mkv","size":1498161727,"dateAdded":"2020-07-07T09:57:19.19498Z","sceneName":"The.Simpsons.S08E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8324209,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14884},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Bart's Comet-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E14.Bart's Comet-WEBDL-1080p.mkv","size":1479391992,"dateAdded":"2020-07-07T10:00:19.446858Z","sceneName":"The.Simpsons.S06E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8306574,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14885},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E01.Treehouse of Horror XI-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E01.Treehouse of Horror XI-WEBDL-1080p.mkv","size":1474017221,"dateAdded":"2020-07-07T10:03:49.457793Z","sceneName":"The.Simpsons.S12E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8275668,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14886},{"seriesId":49,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Bart vs. Thanksgiving-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 02\/S02E07.Bart vs. Thanksgiving-WEBDL-1080p.mkv","size":1521494399,"dateAdded":"2020-07-07T10:09:52.228713Z","sceneName":"The.Simpsons.S02E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316939,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:11","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14887},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E10.The Springfield Files-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E10.The Springfield Files-WEBDL-1080p.mkv","size":1496121833,"dateAdded":"2020-07-07T10:10:17.955298Z","sceneName":"The.Simpsons.S08E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8312526,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14888},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Homer and Apu-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E13.Homer and Apu-WEBDL-1080p.mkv","size":1505473093,"dateAdded":"2020-07-07T10:11:52.412499Z","sceneName":"The.Simpsons.S05E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315395,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14889},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E20.The Boy Who Knew Too Much-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E20.The Boy Who Knew Too Much-WEBDL-1080p.mkv","size":1502685752,"dateAdded":"2020-07-07T10:13:19.740013Z","sceneName":"The.Simpsons.S05E20.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8312068,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14890},{"seriesId":49,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Bart the General-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 01\/S01E05.Bart the General-WEBDL-1080p.mkv","size":1492195438,"dateAdded":"2020-07-07T10:13:49.097932Z","sceneName":"The.Simpsons.S01E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8319102,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:44","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14891},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E02.You Only Move Twice-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E02.You Only Move Twice-WEBDL-1080p.mkv","size":1494321446,"dateAdded":"2020-07-07T10:18:49.728215Z","sceneName":"The.Simpsons.S08E02.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8293223,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14892},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Itchy & Scratchy Land-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E04.Itchy & Scratchy Land-WEBDL-1080p.mkv","size":1498758242,"dateAdded":"2020-07-07T10:22:19.996081Z","sceneName":"The.Simpsons.S06E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8308807,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14893},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E15.I Love Lisa-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E15.I Love Lisa-WEBDL-1080p.mkv","size":1511155145,"dateAdded":"2020-07-07T10:25:19.996897Z","sceneName":"The.Simpsons.S04E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8290946,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:06","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14894},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Who Shot Mr. Burns! (2)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E01.Who Shot Mr. Burns! (2)-WEBDL-1080p.mkv","size":1528019119,"dateAdded":"2020-07-07T10:27:20.099676Z","sceneName":"The.Simpsons.S07E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8295916,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:20","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14895},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Bart's Inner Child-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E07.Bart's Inner Child-WEBDL-1080p.mkv","size":1505599607,"dateAdded":"2020-07-07T10:40:50.653476Z","sceneName":"The.Simpsons.S05E07.1080p.WEB.H264-BATV[ettv]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309149,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14896},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Burns' Heir-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E18.Burns' Heir-WEBDL-1080p.mkv","size":1504187297,"dateAdded":"2020-07-07T11:07:51.153973Z","sceneName":"The.Simpsons.S05E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315443,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14897},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Mr. Plow-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E09.Mr. Plow-WEBDL-1080p.mkv","size":1511190617,"dateAdded":"2020-07-07T11:17:21.275389Z","sceneName":"The.Simpsons.S04E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305771,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14898},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E07.King-Size Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E07.King-Size Homer-WEBDL-1080p.mkv","size":1498538979,"dateAdded":"2020-07-07T11:19:21.332024Z","sceneName":"The.Simpsons.S07E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315751,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14899},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Brother From the Same Planet-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E14.Brother From the Same Planet-WEBDL-1080p.mkv","size":1516556340,"dateAdded":"2020-07-07T11:20:52.474817Z","sceneName":"The.Simpsons.S04E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8312199,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14900},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Deep Space Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E15.Deep Space Homer-WEBDL-1080p.mkv","size":1501475195,"dateAdded":"2020-07-07T11:26:51.668127Z","sceneName":"The.Simpsons.S05E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309750,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14901},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E01.The Mook, the Chef, the Wife, and Her Homer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E01.The Mook, the Chef, the Wife, and Her Homer-WEBDL-1080p.mkv","size":1437695312,"dateAdded":"2020-07-07T11:35:55.849121Z","sceneName":"The.Simpsons.S18E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305079,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:56","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14902},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E25.Summer of 4 Ft. 2-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E25.Summer of 4 Ft. 2-WEBDL-1080p.mkv","size":1495328659,"dateAdded":"2020-07-07T11:46:52.126592Z","sceneName":"The.Simpsons.S07E25.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8307784,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14903},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Homer the Heretic-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E03.Homer the Heretic-WEBDL-1080p.mkv","size":1513562472,"dateAdded":"2020-07-07T11:49:52.33691Z","sceneName":"The.Simpsons.S04E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8297256,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14904},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Burns Baby Burns-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E04.Burns Baby Burns-WEBDL-1080p.mkv","size":1494076754,"dateAdded":"2020-07-07T12:09:55.86406Z","sceneName":"The.Simpsons.S08E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305016,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14905},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E07.Lisa's Date With Density-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E07.Lisa's Date With Density-WEBDL-1080p.mkv","size":1496308776,"dateAdded":"2020-07-07T12:15:53.058058Z","sceneName":"The.Simpsons.S08E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8319810,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14906},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Bart's Girlfriend-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E07.Bart's Girlfriend-WEBDL-1080p.mkv","size":1476549864,"dateAdded":"2020-07-07T12:16:20.12105Z","sceneName":"The.Simpsons.S06E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8327838,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:28","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14907},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E03.Please Homer, Don't Hammer 'Em-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E03.Please Homer, Don't Hammer 'Em-WEBDL-1080p.mkv","size":1443493097,"dateAdded":"2020-07-07T12:34:23.813045Z","sceneName":"The.Simpsons.S18E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8297199,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14908},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Radio Bart-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E13.Radio Bart-WEBDL-1080p.mkv","size":1508094738,"dateAdded":"2020-07-07T12:34:43.253151Z","sceneName":"The.Simpsons.S03E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314389,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14909},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Flaming Moe's-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E10.Flaming Moe's-WEBDL-1080p.mkv","size":1506715942,"dateAdded":"2020-07-07T12:48:23.844767Z","sceneName":"The.Simpsons.S03E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314505,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14910},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E05.The Cartridge Family-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E05.The Cartridge Family-WEBDL-1080p.mkv","size":1494952983,"dateAdded":"2020-07-07T13:03:57.28853Z","sceneName":"The.Simpsons.S09E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8302231,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14911},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E19.Crook and Ladder-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E19.Crook and Ladder-WEBDL-1080p.mkv","size":1438402149,"dateAdded":"2020-07-07T13:05:24.423952Z","sceneName":"The.Simpsons.S18E19.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8311162,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:56","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14912},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E15.Rome-Old and Juli-Eh-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E15.Rome-Old and Juli-Eh-WEBDL-1080p.mkv","size":1417582345,"dateAdded":"2020-07-07T13:23:26.346519Z","sceneName":"The.Simpsons.S18E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8303465,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14913},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E05.Treehouse of Horror XVIII-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E05.Treehouse of Horror XVIII-WEBDL-1080p.mkv","size":1413802540,"dateAdded":"2020-07-07T13:23:39.995218Z","sceneName":"The.Simpsons.S19E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8299829,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:35","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14914},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Two Bad Neighbors-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E13.Two Bad Neighbors-WEBDL-1080p.mkv","size":1499754151,"dateAdded":"2020-07-07T13:26:54.493414Z","sceneName":"The.Simpsons.S07E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8308307,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14915},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E04.Treehouse of Horror XVII-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E04.Treehouse of Horror XVII-WEBDL-1080p.mkv","size":1425659600,"dateAdded":"2020-07-07T13:42:25.032327Z","sceneName":"The.Simpsons.S18E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8294915,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:47","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14916},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E11.Revenge Is a Dish Best Served Three Times-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E11.Revenge Is a Dish Best Served Three Times-WEBDL-1080p.mkv","size":1444226462,"dateAdded":"2020-07-07T13:42:50.432209Z","sceneName":"The.Simpsons.S18E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8300717,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14917},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E17.Marge Gamer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E17.Marge Gamer-WEBDL-1080p.mkv","size":1444873691,"dateAdded":"2020-07-07T13:44:25.027041Z","sceneName":"The.Simpsons.S18E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314707,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14918},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E07.Husbands and Knives-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E07.Husbands and Knives-WEBDL-1080p.mkv","size":1431977458,"dateAdded":"2020-07-07T13:48:55.182493Z","sceneName":"The.Simpsons.S19E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8287226,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14919},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E14.Postcards from the Wedge-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E14.Postcards from the Wedge-WEBDL-1080p.mkv","size":1432677848,"dateAdded":"2020-07-07T13:53:34.548894Z","sceneName":"The.Simpsons.S21E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8300362,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:52","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14920},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E06.Treehouse of Horror VI-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E06.Treehouse of Horror VI-WEBDL-1080p.mkv","size":1500005157,"dateAdded":"2020-07-07T13:53:51.068776Z","sceneName":"The.Simpsons.S07E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325139,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14921},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E10.The Wife Aquatic-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E10.The Wife Aquatic-WEBDL-1080p.mkv","size":1405042757,"dateAdded":"2020-07-07T14:00:05.852669Z","sceneName":"The.Simpsons.S18E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8274629,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:31","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14922},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E08.Funeral for a Fiend-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E08.Funeral for a Fiend-WEBDL-1080p.mkv","size":1440229210,"dateAdded":"2020-07-07T14:01:56.068527Z","sceneName":"The.Simpsons.S19E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8311424,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14923},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E11.All Singing, All Dancing-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E11.All Singing, All Dancing-WEBDL-1080p.mkv","size":1495272143,"dateAdded":"2020-07-07T14:03:59.620173Z","sceneName":"The.Simpsons.S09E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8317078,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14924},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E20.Stop or My Dog Will Shoot-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E20.Stop or My Dog Will Shoot-WEBDL-1080p.mkv","size":1424246739,"dateAdded":"2020-07-07T14:04:21.505529Z","sceneName":"The.Simpsons.S18E20.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305939,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14925},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E16.Dumbbell Indemnity-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E16.Dumbbell Indemnity-WEBDL-1080p.mkv","size":1495864716,"dateAdded":"2020-07-07T14:04:49.765036Z","sceneName":"The.Simpsons.S09E16.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315261,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14926},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E08.Oh Brother, Where Bart Thou-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E08.Oh Brother, Where Bart Thou-WEBDL-1080p.mkv","size":1445320470,"dateAdded":"2020-07-07T14:07:59.062998Z","sceneName":"The.Simpsons.S21E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8313001,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14927},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E17.Homer vs. Patty and Selma-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E17.Homer vs. Patty and Selma-WEBDL-1080p.mkv","size":1479884415,"dateAdded":"2020-07-07T14:10:55.921379Z","sceneName":"The.Simpsons.S06E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8308008,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14928},{"seriesId":49,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Homer the Vigilante-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 05\/S05E11.Homer the Vigilante-WEBDL-1080p.mkv","size":1506144547,"dateAdded":"2020-07-07T14:11:09.825604Z","sceneName":"The.Simpsons.S05E11.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309465,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14929},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E10.Miracle on Evergreen Terrace-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E10.Miracle on Evergreen Terrace-WEBDL-1080p.mkv","size":1495170515,"dateAdded":"2020-07-07T14:32:27.267898Z","sceneName":"The.Simpsons.S09E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8302676,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14930},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E06.Hello Gutter, Hello Fadder-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E06.Hello Gutter, Hello Fadder-WEBDL-1080p.mkv","size":1478727426,"dateAdded":"2020-07-07T14:35:59.23757Z","sceneName":"The.Simpsons.S11E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8289406,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14931},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E06.Little Orphan Millie-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E06.Little Orphan Millie-WEBDL-1080p.mkv","size":1439146639,"dateAdded":"2020-07-07T14:40:56.752857Z","sceneName":"The.Simpsons.S19E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8313097,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:56","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14932},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E05.Lisa the Vegetarian-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E05.Lisa the Vegetarian-WEBDL-1080p.mkv","size":1498448942,"dateAdded":"2020-07-07T14:54:27.368559Z","sceneName":"The.Simpsons.S07E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316036,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14933},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E01.He Loves to Fly and He D'ohs-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E01.He Loves to Fly and He D'ohs-WEBDL-1080p.mkv","size":1377189740,"dateAdded":"2020-07-07T14:54:49.142906Z","sceneName":"The.Simpsons.S19E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8304272,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14934},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E14.Das Bus-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E14.Das Bus-WEBDL-1080p.mkv","size":1496517748,"dateAdded":"2020-07-07T14:55:11.170825Z","sceneName":"The.Simpsons.S09E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315188,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14935},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E22.The Bob Next Door-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E22.The Bob Next Door-WEBDL-1080p.mkv","size":1410115879,"dateAdded":"2020-07-07T15:03:00.459047Z","sceneName":"The.Simpsons.S21E22.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8296093,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14936},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E12.Mountain of Madness-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E12.Mountain of Madness-WEBDL-1080p.mkv","size":1498917735,"dateAdded":"2020-07-07T15:03:12.688723Z","sceneName":"The.Simpsons.S08E12.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316116,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14937},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Home Sweet Homediddily-Dum-Doodily-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E03.Home Sweet Homediddily-Dum-Doodily-WEBDL-1080p.mkv","size":1499880288,"dateAdded":"2020-07-07T15:15:27.750889Z","sceneName":"The.Simpsons.S07E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315220,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14938},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E17.Apocalypse Cow-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E17.Apocalypse Cow-WEBDL-1080p.mkv","size":1438770860,"dateAdded":"2020-07-07T15:16:57.801889Z","sceneName":"The.Simpsons.S19E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8279953,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14939},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Lisa on Ice-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E08.Lisa on Ice-WEBDL-1080p.mkv","size":1484151477,"dateAdded":"2020-07-07T15:21:27.887136Z","sceneName":"The.Simpsons.S06E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8323381,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14940},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E09.Mayored to the Mob-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E09.Mayored to the Mob-WEBDL-1080p.mkv","size":1497243583,"dateAdded":"2020-07-07T15:24:27.906847Z","sceneName":"The.Simpsons.S10E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314543,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14941},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E18.Any Given Sundance-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E18.Any Given Sundance-WEBDL-1080p.mkv","size":1439266017,"dateAdded":"2020-07-07T15:28:57.770825Z","sceneName":"The.Simpsons.S19E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8306733,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:57","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14942},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E18.The Boys of Bummer-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E18.The Boys of Bummer-WEBDL-1080p.mkv","size":1437995756,"dateAdded":"2020-07-07T15:30:27.893992Z","sceneName":"The.Simpsons.S18E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8308117,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:56","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14943},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E13.The Color Yellow-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E13.The Color Yellow-WEBDL-1080p.mkv","size":1429904717,"dateAdded":"2020-07-07T15:30:46.860126Z","sceneName":"The.Simpsons.S21E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8219758,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14944},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E06.The Computer Wore Menace Shoes-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E06.The Computer Wore Menace Shoes-WEBDL-1080p.mkv","size":1476415260,"dateAdded":"2020-07-07T15:31:13.465456Z","sceneName":"The.Simpsons.S12E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8304309,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14945},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E06.Bart Star-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E06.Bart Star-WEBDL-1080p.mkv","size":1495577221,"dateAdded":"2020-07-07T15:39:00.283035Z","sceneName":"The.Simpsons.S09E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8310408,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14946},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E01.The City of New York vs. Homer Simpson-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E01.The City of New York vs. Homer Simpson-WEBDL-1080p.mkv","size":1497629038,"dateAdded":"2020-07-07T15:40:29.765305Z","sceneName":"The.Simpsons.S09E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8325370,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14947},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E06.Moe 'N' a Lisa-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E06.Moe 'N' a Lisa-WEBDL-1080p.mkv","size":1443240948,"dateAdded":"2020-07-07T15:43:29.843586Z","sceneName":"The.Simpsons.S18E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8304192,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14948},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E02.Brother's Little Helper-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E02.Brother's Little Helper-WEBDL-1080p.mkv","size":1477032596,"dateAdded":"2020-07-07T15:44:59.834262Z","sceneName":"The.Simpsons.S11E02.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8296347,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14949},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E09.Eternal Moonshine of the Simpson Mind-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E09.Eternal Moonshine of the Simpson Mind-WEBDL-1080p.mkv","size":1432039613,"dateAdded":"2020-07-07T15:45:22.226953Z","sceneName":"The.Simpsons.S19E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8303853,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:51","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14950},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E22.You Kent Always Say What You Want-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E22.You Kent Always Say What You Want-WEBDL-1080p.mkv","size":1431118825,"dateAdded":"2020-07-07T15:53:30.383306Z","sceneName":"The.Simpsons.S18E22.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8298558,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:51","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14951},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E14.Dial 'N' for Nerder-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E14.Dial 'N' for Nerder-WEBDL-1080p.mkv","size":1441162663,"dateAdded":"2020-07-07T16:15:00.753581Z","sceneName":"The.Simpsons.S19E14.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8291866,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14952},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E08.Take My Wife, Sleaze-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E08.Take My Wife, Sleaze-WEBDL-1080p.mkv","size":1479704312,"dateAdded":"2020-07-07T16:16:30.510709Z","sceneName":"The.Simpsons.S11E08.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309799,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14953},{"seriesId":49,"seasonNumber":8,"relativePath":"Season 08\/S08E17.My Sister, My Sitter-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 08\/S08E17.My Sister, My Sitter-WEBDL-1080p.mkv","size":1491627103,"dateAdded":"2020-07-07T16:18:30.586983Z","sceneName":"The.Simpsons.S08E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8295178,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14954},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E07.Ice Cream of Margie (With the Light Blue Hair)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E07.Ice Cream of Margie (With the Light Blue Hair)-WEBDL-1080p.mkv","size":1443623145,"dateAdded":"2020-07-07T16:21:35.615897Z","sceneName":"The.Simpsons.S18E07.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8308532,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14955},{"seriesId":49,"seasonNumber":11,"relativePath":"Season 11\/S11E12.The Mansion Family-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 11\/S11E12.The Mansion Family-WEBDL-1080p.mkv","size":1479580326,"dateAdded":"2020-07-07T16:21:57.077524Z","sceneName":"The.Simpsons.S11E12.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8310700,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14956},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E10.Once Upon a Time in Springfield-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E10.Once Upon a Time in Springfield-WEBDL-1080p.mkv","size":1413822635,"dateAdded":"2020-07-07T16:22:25.725976Z","sceneName":"The.Simpsons.S21E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8318573,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14957},{"seriesId":49,"seasonNumber":12,"relativePath":"Season 12\/S12E16.Bye Bye Nerdy-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 12\/S12E16.Bye Bye Nerdy-WEBDL-1080p.mkv","size":1480395119,"dateAdded":"2020-07-07T16:23:25.686415Z","sceneName":"The.Simpsons.S12E16.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8309346,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14958},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E06.Pranks and Greens-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E06.Pranks and Greens-WEBDL-1080p.mkv","size":1408347222,"dateAdded":"2020-07-07T16:23:44.358093Z","sceneName":"The.Simpsons.S21E06.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8254618,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14959},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Homer at the Bat-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E17.Homer at the Bat-WEBDL-1080p.mkv","size":1511941814,"dateAdded":"2020-07-07T16:31:30.783116Z","sceneName":"The.Simpsons.S03E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8310423,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14960},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E04.Treehouse of Horror XX-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E04.Treehouse of Horror XX-WEBDL-1080p.mkv","size":1439036030,"dateAdded":"2020-07-07T16:34:30.937074Z","sceneName":"The.Simpsons.S21E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8291045,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14961},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E04.I Don't Wanna Know Why the Caged Bird Sings-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E04.I Don't Wanna Know Why the Caged Bird Sings-WEBDL-1080p.mkv","size":1438734825,"dateAdded":"2020-07-07T16:34:46.400108Z","sceneName":"The.Simpsons.S19E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8273955,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14962},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E15.The Scorpion's Tale-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 22\/S22E15.The Scorpion's Tale-WEBDL-1080p.mkv","size":1419961828,"dateAdded":"2020-07-07T16:35:19.025327Z","sceneName":"The.Simpsons.S22E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8322484,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14963},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E04.Treehouse of Horror XXI-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 22\/S22E04.Treehouse of Horror XXI-WEBDL-1080p.mkv","size":1446154714,"dateAdded":"2020-07-07T16:35:44.039813Z","sceneName":"The.Simpsons.S22E04.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8315458,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14964},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E05.G.I. (Annoyed Grunt)-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E05.G.I. (Annoyed Grunt)-WEBDL-1080p.mkv","size":1407617299,"dateAdded":"2020-07-07T16:51:01.565793Z","sceneName":"The.Simpsons.S18E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8301923,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:29","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14965},{"seriesId":49,"seasonNumber":10,"relativePath":"Season 10\/S10E05.When You Dish Upon a Star-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 10\/S10E05.When You Dish Upon a Star-WEBDL-1080p.mkv","size":1495063978,"dateAdded":"2020-07-07T16:59:32.136866Z","sceneName":"The.Simpsons.S10E05.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314681,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14967},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E21.22 Short Films About Springfield-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E21.22 Short Films About Springfield-WEBDL-1080p.mkv","size":1497810921,"dateAdded":"2020-07-07T16:59:46.923168Z","sceneName":"The.Simpsons.S07E21.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8311986,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14968},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E21.24 Minutes-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E21.24 Minutes-WEBDL-1080p.mkv","size":1442728896,"dateAdded":"2020-07-07T17:03:02.036402Z","sceneName":"The.Simpsons.S18E21.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8314433,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:59","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14969},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E18.The Great Simpsina-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 22\/S22E18.The Great Simpsina-WEBDL-1080p.mkv","size":1437964120,"dateAdded":"2020-07-07T17:06:02.326863Z","sceneName":"The.Simpsons.S22E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8299195,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:57","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14970},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E13.The Debarted-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E13.The Debarted-WEBDL-1080p.mkv","size":1443322500,"dateAdded":"2020-07-07T17:15:02.350845Z","sceneName":"The.Simpsons.S19E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8303847,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14971},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E09.Thursdays with Abie-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E09.Thursdays with Abie-WEBDL-1080p.mkv","size":1425508929,"dateAdded":"2020-07-07T17:20:02.301667Z","sceneName":"The.Simpsons.S21E09.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8313316,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14972},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E18.Beware My Cheating Bart-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 23\/S23E18.Beware My Cheating Bart-WEBDL-1080p.mkv","size":1424553237,"dateAdded":"2020-07-07T17:36:32.766287Z","sceneName":"The.Simpsons.S23E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8329055,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14973},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E18.This Little Wiggy-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E18.This Little Wiggy-WEBDL-1080p.mkv","size":1494822112,"dateAdded":"2020-07-07T17:54:33.443524Z","sceneName":"The.Simpsons.S09E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8317708,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14974},{"seriesId":49,"seasonNumber":21,"relativePath":"Season 21\/S21E18.Chief of Hearts-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 21\/S21E18.Chief of Hearts-WEBDL-1080p.mkv","size":1419587256,"dateAdded":"2020-07-07T18:02:03.65634Z","sceneName":"The.Simpsons.S21E18.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8287360,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:42","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14975},{"seriesId":49,"seasonNumber":9,"relativePath":"Season 09\/S09E24.Lost Our Lisa-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 09\/S09E24.Lost Our Lisa-WEBDL-1080p.mkv","size":1494434241,"dateAdded":"2020-07-07T18:17:03.879351Z","sceneName":"The.Simpsons.S09E24.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8305263,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:48","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14976},{"seriesId":49,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Lisa's First Word-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 04\/S04E10.Lisa's First Word-WEBDL-1080p.mkv","size":1514923348,"dateAdded":"2020-07-07T18:29:34.201697Z","sceneName":"The.Simpsons.S04E10.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8306329,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14977},{"seriesId":49,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Bart of Darkness-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 06\/S06E01.Bart of Darkness-WEBDL-1080p.mkv","size":1504589271,"dateAdded":"2020-07-07T18:43:07.24031Z","sceneName":"The.Simpsons.S06E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8321325,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14978},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E01.Elementary School Musical-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 22\/S22E01.Elementary School Musical-WEBDL-1080p.mkv","size":1445912051,"dateAdded":"2020-07-07T18:45:04.714238Z","sceneName":"The.Simpsons.S22E01.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316923,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:02","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14979},{"seriesId":49,"seasonNumber":19,"relativePath":"Season 19\/S19E03.Midnight Towboy-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 19\/S19E03.Midnight Towboy-WEBDL-1080p.mkv","size":1446981739,"dateAdded":"2020-07-07T18:47:04.630339Z","sceneName":"The.Simpsons.S19E03.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8312276,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14980},{"seriesId":49,"seasonNumber":22,"relativePath":"Season 22\/S22E02.Loan-a-Lisa-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 22\/S22E02.Loan-a-Lisa-WEBDL-1080p.mkv","size":1423345532,"dateAdded":"2020-07-07T18:53:04.950761Z","sceneName":"The.Simpsons.S22E02.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8312925,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:42","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14981},{"seriesId":49,"seasonNumber":23,"relativePath":"Season 23\/S23E17.Them, Robot-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 23\/S23E17.Them, Robot-WEBDL-1080p.mkv","size":1382674019,"dateAdded":"2020-07-07T19:02:05.307118Z","sceneName":"The.Simpsons.S23E17.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8240080,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14982},{"seriesId":49,"seasonNumber":7,"relativePath":"Season 07\/S07E15.Bart the Fink-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 07\/S07E15.Bart the Fink-WEBDL-1080p.mkv","size":1502605890,"dateAdded":"2020-07-07T19:03:35.54892Z","sceneName":"The.Simpsons.S07E15.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8316001,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14983},{"seriesId":49,"seasonNumber":18,"relativePath":"Season 18\/S18E13.Springfield Up-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 18\/S18E13.Springfield Up-WEBDL-1080p.mkv","size":1444551593,"dateAdded":"2020-07-07T19:14:35.838308Z","sceneName":"The.Simpsons.S18E13.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8313211,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14984},{"seriesId":49,"seasonNumber":3,"relativePath":"Season 03\/S03E12.I Married Marge-WEBDL-1080p.mkv","path":"\/tv\/The Simpsons\/Season 03\/S03E12.I Married Marge-WEBDL-1080p.mkv","size":1508255274,"dateAdded":"2020-07-07T19:19:47.805761Z","sceneName":"The.Simpsons.S03E12.1080p.WEB.H264-BATV[eztv.io]","releaseGroup":"BATV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8310335,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:00","scanType":"Progressive","subtitles":"English \/ Danish \/ German \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14985}],"queue":[]},"170":{"series":{"title":"Batman: The Animated Series","alternateTitles":[{"title":"Batman TAS","seasonNumber":-1},{"title":"Batman (1992)","seasonNumber":-1}],"sortTitle":"batman animated series","status":"ended","ended":true,"overview":"The Dark Knight battles crime in Gotham City with occasional help from Robin and Batgirl.","previousAiring":"2003-10-21T04:25:00Z","network":"FOX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/159\/banner.jpg?lastWrite=637022821284282540","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/76168-g10.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/159\/poster.jpg?lastWrite=637022821284842530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/76168-7.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/159\/fanart.jpg?lastWrite=637103832320600620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/76168-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2003-10-21T04:25:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":20,"sizeOnDisk":38467349,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1993-05-24T04:00:00Z","episodeFileCount":60,"episodeCount":60,"totalEpisodeCount":60,"sizeOnDisk":28737637631,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"1994-05-23T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":30061256367,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"1994-11-26T05:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":28470507492,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"1995-09-15T04:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":14256184057,"percentOfEpisodes":100.0}}],"year":1992,"path":"\/tv\/Batman- The Animated Series","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":76168,"tvRageId":2721,"tvMazeId":757,"firstAired":"1992-09-05T00:00:00Z","seriesType":"standard","cleanTitle":"batmananimatedseries","imdbId":"tt0103359","titleSlug":"batman-the-animated-series","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Animation","Thriller"],"tags":[],"added":"2019-08-24T22:22:06.439274Z","ratings":{"votes":3286,"value":9.1},"statistics":{"seasonCount":4,"episodeFileCount":86,"episodeCount":86,"totalEpisodeCount":105,"sizeOnDisk":101564052896,"percentOfEpisodes":100.0},"id":159},"episodes":[{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"A Conversation with Director Producer Bruce Timm - On Leather Wings","overview":"A Conversation with Director Producer Bruce Timm about the episode \"On Leather Wings\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21509},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"A Conversation with Director Producer Bruce Timm - Christmas with the Joker","overview":"A Conversation with Director Producer Bruce Timm about the episode \"Christmas with the Joker\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21510},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"A Conversation with Director Producer Bruce Timm - Nothing to Fear","overview":"A Conversation with Director Producer Bruce Timm about the episode \"Nothing to Fear\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21511},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"A Conversation with Director Producer Bruce Timm - The Last Laugh","overview":"A Conversation with Director Producer Bruce Timm about the episode \"The Last Laugh\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21512},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"A Conversation with Director Producer Bruce Timm - Petty Poison","overview":"A Conversation with Director Producer Bruce Timm about the episode \"Petty Poison\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21513},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Batman - The Legacy Continues - Retrospective","overview":"A look at the series legacy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21514},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Tour of the Batcave","overview":"Take a tour of the Batcave.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21515},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Robin Rising - How the Boy Wonders Character Evolved","overview":"A look at how the character of Robin evolved through the series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21516},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Gothams Guardians - The Stalwart Supporting Characters","overview":"A look at the other characters in the series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21517},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Voices of the Knight","overview":"Meet the people behind the voices.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21518},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Gothams New Knight","overview":"A look back at how different this series was than the other Batman incarnations.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21519},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"House and Garden - Video Commentary","overview":"House and Garden - Video Commentary","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21520},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Arkham Asylum: Examine the Top-Secret Case files of the Dark Knights Many Foes","overview":"Examine the Top-Secret Case files of the Dark Knights Many Foes","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21521},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Heart of Batman","overview":"What is the heart of the Batman series?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21522},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Concepting Harley Quinn","overview":"A look back at how the character of Harley Quinn was created.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21523},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Dark Knight's First Night","airDate":"1991-03-05","airDateUtc":"1991-03-05T05:00:00Z","overview":"\"The Dark Knight's First Night\" is the name given to the short two-minute pilot used by Bruce Timm and Eric Radomski to show Fox executives what they were planning to do with Batman: The Animated Series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12273},{"seriesId":159,"episodeFileId":8299,"seasonNumber":1,"episodeNumber":1,"title":"The Cat and the Claw (1)","airDate":"1992-09-05","airDateUtc":"1992-09-05T04:00:00Z","overview":"Batman encounters a new cat burglar, Catwoman, and around the same time, meets a woman named Selina Kyle (as Bruce Wayne), to whom he is visibly attracted. When Selina runs into trouble with a terrorist cartel known as The Red Claw (who wants the mountain lion sanctuary she was trying to protect), she decides to take matters into her own hands and investigate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12279},{"seriesId":159,"episodeFileId":8303,"seasonNumber":1,"episodeNumber":2,"title":"On Leather Wings","airDate":"1992-09-06","airDateUtc":"1992-09-06T04:00:00Z","overview":"When a horrifying bat creature terrorizes Gotham City, the authorities conclude it must be Batman and put out an all-points bulletin on the Dark Knight . Meanwhile, Batman's investigation leads him to the laboratory of Kirk Langstrom, a prominent zoologist, who has been experimenting with a formula that turns him into the Man-Bat creature. Not only does Batman have to capture Man-Bat in order to save Langstrom, but also to set the police straight and clear his name","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12280},{"seriesId":159,"episodeFileId":8307,"seasonNumber":1,"episodeNumber":3,"title":"Heart of Ice","airDate":"1992-09-07","airDateUtc":"1992-09-07T04:00:00Z","overview":"Bitter scientist Victor Fries, as Mr. Freeze, attacks several divisions of Gothcorp, each time stealing a piece for a secret weapon he intends to build. Batman investigates the connections, and discovers that the start of Freeze's vendetta against Gothcorp was a bitter falling out between Fries and Gothcorp's CEO, Ferris Boyle, during which Boyle almost killed Fries (mutating him into Freeze) and presumably killed Fries' terminally ill wife, Nora. Batman must find a way to bring Boyle to justice before Freeze carries out his revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12281},{"seriesId":159,"episodeFileId":8311,"seasonNumber":1,"episodeNumber":4,"title":"Feat of Clay (1)","airDate":"1992-09-08","airDateUtc":"1992-09-08T04:00:00Z","overview":"Bruce Wayne is framed for the attempted murder of Lucius Fox. The real perpetrator is an actor and master of disguise named Matt Hagen, who was disfigured in a car accident years ago. In order to keep his fame, he secretly started working for Roland Daggett, who provides him with a monthly supply of an addictive face cream known as Renuyu (a pun on \"Renew You\") that can temporarily reshape his face back to normal, and who wants to take Wayne Enterprises over for marketing expansion. For botching the murder, Hagen's supply is cut off, and when he breaks into Daggett's lab for more Renuyu, he pays the price dearly when Daggett's men drench his face in the formula. Meanwhile, Bruce Wayne is arrested and taken into custody.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12282},{"seriesId":159,"episodeFileId":8315,"seasonNumber":1,"episodeNumber":5,"title":"Feat of Clay (2)","airDate":"1992-09-09","airDateUtc":"1992-09-09T04:00:00Z","overview":"Bruce Wayne is released from prison on bail. Hagen, as it turns out, survived the murder attempt on him, but at a high cost: the formula entered his body and soaked every single one of his cells, mutating him into a shape-shifting mutant. With his newfound powers, Hagen, now calling himself Clayface, decides to take his revenge on Daggett and his men. Can Batman bring Daggett to justice and stop Clayface before innocent people are hurt?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12283},{"seriesId":159,"episodeFileId":8320,"seasonNumber":1,"episodeNumber":6,"title":"It's Never Too Late","airDate":"1992-09-10","airDateUtc":"1992-09-10T04:00:00Z","overview":"A mob war between crime bosses Rupert Thorne and Arnold Stromwell is nearing its end, and comes to a climax when Stromwell is set up to be killed in an exploding restaurant by Thorne. Batman saves him at the last moment, and persuades Stromwell to use his fall into disgrace to help him bring Thorne in, mostly for the sakes of his wife, his ill son and his estranged brother, as well as his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12284},{"seriesId":159,"episodeFileId":8323,"seasonNumber":1,"episodeNumber":7,"title":"Joker's Favor","airDate":"1992-09-11","airDateUtc":"1992-09-11T04:00:00Z","overview":"After Charlie Collins accidentally curses at the Joker on the road for bumping him, the Clown Prince of Crime corners him and intimidates him into doing him a \"small favor\". Two years pass, and the Joker finally decides how to use Charlie: to sneak a bomb into Gotham University, where Commissioner Gordon is to give a speech at an award ceremony. Charlie, who merely has to open the door, is skeptical at first, but for the sake of his family, he reluctantly decides to obey. But is the Joker really the type to let someone who insulted him live?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12285},{"seriesId":159,"episodeFileId":8327,"seasonNumber":1,"episodeNumber":8,"title":"The Cat and the Claw (2)","airDate":"1992-09-12","airDateUtc":"1992-09-12T04:00:00Z","overview":"The leader of the Red Claw cartel (known herself only as Red Claw), attacks a military train and steals a viral plague, which she intends to plant on the resort and release if she isn't paid a ransom, leading to her first encounter with Batman, who is forced to let her flee. Around the same time, Red Claw and Batman discover that Catwoman and Selina Kyle are the same. Can Batman and Catwoman put aside their differences and work together to stop Red Claw before it's too late?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12286},{"seriesId":159,"episodeFileId":8329,"seasonNumber":1,"episodeNumber":9,"title":"Pretty Poison","airDate":"1992-09-14","airDateUtc":"1992-09-14T04:00:00Z","overview":"When District Attorney Harvey Dent collapses after a meal with Bruce Wayne and his fiancee Pamela Isley, it transpires that he has been poisoned. Batman must find the culprit and discover an antidote before Dent's time runs out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12287},{"seriesId":159,"episodeFileId":8332,"seasonNumber":1,"episodeNumber":10,"title":"Nothing to Fear","airDate":"1992-09-15","airDateUtc":"1992-09-15T04:00:00Z","overview":"Batman encounters the Scarecrow and attempts to foil his scheme to burn down Gotham University, but in the process is exposed to the Scarecrow's fear gas, and is forced to face his own guilt over the deaths of his parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12288},{"seriesId":159,"episodeFileId":8335,"seasonNumber":1,"episodeNumber":11,"title":"Be a Clown","airDate":"1992-09-16","airDateUtc":"1992-09-16T04:00:00Z","overview":"Mayor Hamilton Hill's miserable son, Jordan, becomes even sadder when his father uses his birthday party as a political gathering, and ends up stowing away in the truck of the circus performer hired by Hill for the party, whom he doesn't know is actually the Joker in disguise. It is now up to Batman, whom Mayor Hill distrusts, to rescue the boy before it's too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12289},{"seriesId":159,"episodeFileId":8336,"seasonNumber":1,"episodeNumber":12,"title":"Appointment in Crime Alley","airDate":"1992-09-17","airDateUtc":"1992-09-17T04:00:00Z","overview":"Roland Daggett, with the help of two explosive experts, Crocker and Nitro, plans to destroy the infamous Crime Alley (while making it look like an underground accident) and use the land to expand his business empire, even if it means killing the residents or forcing them to abandon their homes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12290},{"seriesId":159,"episodeFileId":8337,"seasonNumber":1,"episodeNumber":13,"title":"P.O.V.","airDate":"1992-09-18","airDateUtc":"1992-09-18T04:00:00Z","overview":"A botched police operation results in the suspension of those involved: Officer Wilkes, Officer Montoya and Harvey Bullock. Confronted by their superiors, each of them is forced to tell their tale of what happened that night.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12291},{"seriesId":159,"episodeFileId":8338,"seasonNumber":1,"episodeNumber":14,"title":"The Clock King","airDate":"1992-09-21","airDateUtc":"1992-09-21T04:00:00Z","overview":"After his company goes bankrupt (without a hearing), Temple Fugate takes up the mantle of the Clock King and pursues the one who he believes responsible for his loss: Mayor Hill, who merely persuaded Fugate to take a later coffee break, which ended in disaster. Can Batman rescue Hill in time, despite his dislike for the Mayor?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12292},{"seriesId":159,"episodeFileId":8339,"seasonNumber":1,"episodeNumber":15,"title":"The Last Laugh","airDate":"1992-09-22","airDateUtc":"1992-09-22T04:00:00Z","overview":"The Joker covers Gotham City in a cloud of laughing gas and begins plundering the crazed city. But after Alfred is infected with the toxin, Batman has added incentive to stop the Joker and acquire an antidote from him before all of Gotham dies with a smile.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12293},{"seriesId":159,"episodeFileId":8340,"seasonNumber":1,"episodeNumber":16,"title":"Eternal Youth","airDate":"1992-09-23","airDateUtc":"1992-09-23T04:00:00Z","overview":"Several rich industrialists are invited to the Eternal Youth Health Spa, and that's where they are last seen before disappearing. The only connection: they had something to do with the death of plants. Bruce Wayne also receives an invitation (although it was one of his greedy directors who nearly made the deal to destroy a rainforest before Bruce forced him to shut the operation down), but Alfred and his \"lady friend\", Maggie, go in his place. When they don't return, Batman is forced to investigate, discovering that the spa is run by Poison Ivy, and that she has been using a formula to turn the industrialists into humanoid trees, including Alfred and Maggie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12294},{"seriesId":159,"episodeFileId":8341,"seasonNumber":1,"episodeNumber":17,"title":"Two-Face (1)","airDate":"1992-09-25","airDateUtc":"1992-09-25T04:00:00Z","overview":"Harvey Dent, campaigning for a re-election, vows to rid Gotham of Rupert Thorne's crime and corruption. The tables turn when Thorne gets a hold of Dent's psychological records and discovers his alternate personality: the violent Big Bad Harv. Thorne attempts to blackmail Dent with this, and the following fight in Thorne's chemical plant hideout results in an explosion that scars the left side of Dent's body, despite Batman's attempts to save him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12295},{"seriesId":159,"episodeFileId":8342,"seasonNumber":1,"episodeNumber":18,"title":"Two-Face (2)","airDate":"1992-09-28","airDateUtc":"1992-09-28T04:00:00Z","overview":"Now calling himself Two-Face, Dent goes on a crime spree throughout Gotham, attacking Rupert Thorne's businesses to draw the gangster out of hiding. Batman must find a way to stop his former friend before he and Thorne kill each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12296},{"seriesId":159,"episodeFileId":8343,"seasonNumber":1,"episodeNumber":19,"title":"Fear of Victory","airDate":"1992-09-29","airDateUtc":"1992-09-29T04:00:00Z","overview":"Several sportsmen start receiving strange letters in the mail, and having frightening hallucinations at their next game. At the same time, one man is making thousands of dollars betting on the events. Batman and Robin (the latter of whom becomes infected), start their own investigation, and come to the conclusion that someone else is continuing the Scarecrow's crimes, since the Scarecrow is currently locked up in Arkham Asylum. Or is he?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12297},{"seriesId":159,"episodeFileId":8344,"seasonNumber":1,"episodeNumber":20,"title":"I've Got Batman in My Basement","airDate":"1992-09-30","airDateUtc":"1992-09-30T04:00:00Z","overview":"During a fight with Batman over a stolen egg ruby, the Penguin douses Batman with gas, although he is rescued by a teenage \"would-be\" detective named Sherman and his friend Roberta, who hide Batman in Sherman's basement long enough for him to heal before the Penguin finds them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12298},{"seriesId":159,"episodeFileId":8345,"seasonNumber":1,"episodeNumber":21,"title":"Vendetta","airDate":"1992-10-05","airDateUtc":"1992-10-05T04:00:00Z","overview":"Detective Bullock is arrested for kidnapping. Batman, who dislikes Bullock but nevertheless believes him to be a good man, investigates, and discovers the identity of the real criminal: Killer Croc, who harbours a vendetta against Bullock for capturing him once. Can he clear Bullock's name before it is too late?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12299},{"seriesId":159,"episodeFileId":8346,"seasonNumber":1,"episodeNumber":22,"title":"Prophecy of Doom","airDate":"1992-10-06","airDateUtc":"1992-10-06T04:00:00Z","overview":"Batman investigates a cult, called The Brotherhood, founded by the \"mystic\" Nostromos after hearing about a number of stories from his colleagues about his ability to predict the future. Batman finds out that Nostromos is actually a con artist who was rigging near-fatal accidents to gain the confidence of Gotham's upper class citizens. Can Batman expose this ruse before it's too late?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12300},{"seriesId":159,"episodeFileId":8347,"seasonNumber":1,"episodeNumber":23,"title":"The Forgotten","airDate":"1992-10-08","airDateUtc":"1992-10-08T04:00:00Z","overview":"While investigating the disappearances of Gotham's homeless in an undercover disguise, Bruce Wayne is kidnapped. Imprisoned in a chain gang mining camp and suffering from amnesia, will he be able to escape and free the rest of the prisoners?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12301},{"seriesId":159,"episodeFileId":8348,"seasonNumber":1,"episodeNumber":24,"title":"Mad as a Hatter","airDate":"1992-10-12","airDateUtc":"1992-10-12T04:00:00Z","overview":"Miserable Wayne Industries scientist Jervis Tetch is unable to pursue the girl he loves, Alice, the secretary. When she splits up from her boyfriend, he makes an advance and develops a fast friendship with her, until her boyfriend reconciles with her and proposes to her. Enraged, Tetch decides to take matters into his own hands, and dons the mantle of the Mad Hatter, using his mind control devices to force those who have wronged him all his life to become his mindless slaves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12302},{"seriesId":159,"episodeFileId":8349,"seasonNumber":1,"episodeNumber":25,"title":"The Cape and Cowl Conspiracy","airDate":"1992-10-14","airDateUtc":"1992-10-14T04:00:00Z","overview":"Baron Jozek, furious at Batman for humiliating him at a dinner party (over Jozek's underworld connections), hires Josiah Wormwood, a master in setting traps for his victims, to hunt down Batman and bring back the hero's cape and cowl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12303},{"seriesId":159,"episodeFileId":8350,"seasonNumber":1,"episodeNumber":26,"title":"Perchance to Dream","airDate":"1992-10-19","airDateUtc":"1992-10-19T04:00:00Z","overview":"Bruce Wayne wakes up one morning to find that his life is completely upside-down: his parents are alive, the Batcave doesn't exist, Alfred does not remember Robin, and he is engaged to Selina Kyle. However, it doesn't mean that Batman isn't still around, and Bruce starts to wonder what has happened, especially after seeing the characteristics of a dream (such as book and newspaper prints not making sense) inside this new life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12304},{"seriesId":159,"episodeFileId":8351,"seasonNumber":1,"episodeNumber":27,"title":"The Underdwellers","airDate":"1992-10-21","airDateUtc":"1992-10-21T04:00:00Z","overview":"Batman traces a series of bizarre robberies on the streets of Gotham back to a band of children - poverty-stricken outcasts who have been raised to do the bidding of their master, the Sewer King.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":27,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12305},{"seriesId":159,"episodeFileId":8352,"seasonNumber":1,"episodeNumber":28,"title":"Night of the Ninja","airDate":"1992-10-26","airDateUtc":"1992-10-26T05:00:00Z","overview":"A mysterious ninja is robbing Wayne Enterprises subsidiaries, and Batman discovers that the ninja is actually his equal in combat. A grudge against Bruce Wayne and skills to match him can only mean one person: Kyodai Ken, an old rival of Wayne's from his days in Japan, and whom was thrown out of the dojo after attempting to rob it, only to be stopped by Wayne. Ken, it turns out, wants revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":28,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12306},{"seriesId":159,"episodeFileId":8353,"seasonNumber":1,"episodeNumber":29,"title":"The Strange Secret of Bruce Wayne","airDate":"1992-10-29","airDateUtc":"1992-10-29T05:00:00Z","overview":"After a prominent judge is injured during a struggle with some thugs demanding money from her in exchange for a strange tape, Bruce Wayne decides to take a trip to Yucca Springs, a resort where the judge had vacationed, and consult Dr. Hugo Strange, a psychiatrist. Bruce soon learns that Strange has invented a machine that extracts people's darkest secrets from their minds and transfers them to videotape\u2014and now Strange has proof of Bruce's secret identity as Batman and plans to auction it to three of Gotham's prominent crime bosses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":29,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12307},{"seriesId":159,"episodeFileId":8354,"seasonNumber":1,"episodeNumber":30,"title":"Tyger, Tyger","airDate":"1992-10-30","airDateUtc":"1992-10-30T05:00:00Z","overview":"Selina Kyle is kidnapped by an evil scientist who turns her into a real cat-woman.Selina Kyle is kidnapped by the villainous genetic engineer Dr. Emile Dorian and becomes his latest experiment to provide his man-cat hybrid named Tygrus with a mate. Batman learns of this and comes to the island to rescue Selina. He is captured and forced into a deadly game of cat-and-flying mouse as Tygrus hunts Batman through the island's jungles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":30,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12308},{"seriesId":159,"episodeFileId":8355,"seasonNumber":1,"episodeNumber":31,"title":"Dreams in Darkness","airDate":"1992-11-03","airDateUtc":"1992-11-03T05:00:00Z","overview":"Batman is incarcerated in Arkham Asylum after being exposed to Scarecrow's fear gas and suffering hallucinations that nearly cause him to harm innocent people. Batman knows that the Scarecrow has escaped for the second time and is planning to dump his fear toxin into the water supply. Can Batman bring himself to break the law and escape from Arkham before the Scarecrow brings Gotham to its knees?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":31,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12309},{"seriesId":159,"episodeFileId":8356,"seasonNumber":1,"episodeNumber":32,"title":"Beware the Gray Ghost","airDate":"1992-11-04","airDateUtc":"1992-11-04T05:00:00Z","overview":"Simon Trent, an actor best known for his past role as \"The Gray Ghost\", is on the verge of bankruptcy thanks to his declining career. To save himself, he sells off all of his Gray Ghost merchandise. Immediately afterwards, a series of crimes related to the old show begin to occur. Batman, having himself been inspired partly by the show to become the crimefighter he now is, goes to Trent for help, and they team up to put an end to the crimes. \r\nIn this episode, the voice of Simon Trent is none other than Adam West, the man who played Batman in the 1960's version of Batman","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":32,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12310},{"seriesId":159,"episodeFileId":8357,"seasonNumber":1,"episodeNumber":33,"title":"Cat Scratch Fever","airDate":"1992-11-05","airDateUtc":"1992-11-05T05:00:00Z","overview":"Batman must stop Roland Daggett's plan to release a viral plague designed by Professor Milo into Gotham by way of its stray cat population. The case gains new urgency when Catwoman becomes infected with the virus during her search for her missing cat, Isis.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":33,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12311},{"seriesId":159,"episodeFileId":8358,"seasonNumber":1,"episodeNumber":34,"title":"I Am the Night","airDate":"1992-11-09","airDateUtc":"1992-11-09T05:00:00Z","overview":"On the anniversary of the death of Bruce's parents, Batman accompanies Leslie Thompkins to Crime Alley to place roses on the spot where they were gunned down. Meanwhile, Commissioner Gordon is on stakeout to arrest James \"The Jazzman\" Peake during a drug smuggling ring. Batman had promised to be there, but arrives late to find a gun battle going on. He helps defeat the gangsters and arrest the Jazzman, but at a high cost\u2014Gordon is severely wounded. The incident traumatizes Batman, and he decides to give up crime-fighting, despite the Jazzman escaping prison to carry out his personal vendetta against Gordon (who had sent him to prison six years before).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":34,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12312},{"seriesId":159,"episodeFileId":8359,"seasonNumber":1,"episodeNumber":35,"title":"Almost Got 'Im","airDate":"1992-11-10","airDateUtc":"1992-11-10T05:00:00Z","overview":"Joker, Killer Croc, Penguin, Two-Face and Poison Ivy all meet at a poker table, each telling a tale of times when they almost defeated Batman. At the same time, Harley Quinn is about to kill Catwoman. Will Batman be able to save her?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":35,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12313},{"seriesId":159,"episodeFileId":8360,"seasonNumber":1,"episodeNumber":36,"title":"Moon of the Wolf","airDate":"1992-11-11","airDateUtc":"1992-11-11T05:00:00Z","overview":"Batman investigates the appearance of a werewolf-like creature in Gotham, not realizing that the monster happens to be one of Bruce Wayne's associates - Anthony Romulus, ex-Olympic champion. Behind the scheme is twisted chemist Professor Milo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":36,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12314},{"seriesId":159,"episodeFileId":8361,"seasonNumber":1,"episodeNumber":37,"title":"Terror in the Sky","airDate":"1992-11-12","airDateUtc":"1992-11-12T05:00:00Z","overview":"When a man-sized bat ransacks Gotham harbor, Batman suspects that Dr. Kirk Langstrom is up to his old tricks, taking the Man-Bat formula again. Batman isn't the only one. Kirk's wife, Francine, is so distrustful of her husband that she decides to leave him. After further investigation, Batman discovers that this Man-Bat is not Kirk, but someone else.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":37,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12315},{"seriesId":159,"episodeFileId":8362,"seasonNumber":1,"episodeNumber":38,"title":"Christmas with the Joker","airDate":"1992-11-13","airDateUtc":"1992-11-13T05:00:00Z","overview":"After escaping Arkham Asylum on Christmas Eve, The Joker takes over Gotham's airwaves and terrorizes the city. He then challenges Batman and Robin to find his hidden TV studio and free his hostages, Commissioner Gordon, Detective Bullock, and Summer Gleason, before midnight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":38,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12316},{"seriesId":159,"episodeFileId":8363,"seasonNumber":1,"episodeNumber":39,"title":"Heart of Steel (1)","airDate":"1992-11-16","airDateUtc":"1992-11-16T05:00:00Z","overview":"Several robberies take place at major companies, including Wayne Enterprises, and Bruce Wayne, as Batman, discovers the thief to be a mechanical briefcase. Bruce meets with his old friend, Karl Rossum, an expert in robotics who lost his daughter to a vehicle accident years ago. He also meets Rossum's assistant, Randa Duane, and Rossum's ultimate creation: a prototype A.I. known as Holographic Analytical Reciprocating Digital Computer (H.A.R.D.A.C.) Bruce invites Duane to dinner, and around the same time, certain civilians start acting strangely. Most surprising is when Duane unexpectedly leaves Wayne Manor while Bruce is on the phone, and the entire Batcave turns on Batman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":39,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12317},{"seriesId":159,"episodeFileId":8364,"seasonNumber":1,"episodeNumber":40,"title":"Heart of Steel (2)","airDate":"1992-11-17","airDateUtc":"1992-11-17T05:00:00Z","overview":"Batman manages to free himself from the Batcave's clutches, and brings it back under his control, although he fails to track Duane down. Barbara Gordon approaches Batman to inform him of her father's sudden change in behaviour. A brutal fight between Batman and Detective Bullock ensues, during which Batman pushes Bullock onto the Bat Signal, and reveals him to actually be an android, meaning that the real Bullock and James Gordon have gone missing, and Batman knows who the culprit is: H.A.R.D.A.C. Can he stop the evil supercomputer before it's too late?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":40,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12318},{"seriesId":159,"episodeFileId":8365,"seasonNumber":1,"episodeNumber":41,"title":"If You're So Smart, Why Aren't You Rich?","airDate":"1992-11-18","airDateUtc":"1992-11-18T05:00:00Z","overview":"Edward Nygma creates the game, \"The Riddle of the Minotaur\", and makes millions for the company Competitron. He is then fired by his superior, Daniel Mockridge, who wants the profits for himself. Nygma vows revenge, and two years later, he takes up the mantle of the Riddler and traps Mockridge inside a life-sized version of the Minotaur maze. Batman's sympathy is with Nygma, but he and Robin have to stop him before he kills Mockridge, despite the fact that Mockridge cannot legally be brought to justice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":41,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12319},{"seriesId":159,"episodeFileId":8366,"seasonNumber":1,"episodeNumber":42,"title":"Joker's Wild","airDate":"1992-11-19","airDateUtc":"1992-11-19T05:00:00Z","overview":"Cameron Kaiser builds a Casino Hotel modeled after the Joker, called the Joker's Wild. The Joker sees this on the news, and, enraged, escapes from Arkham again, with one thought on his mind: destroying the casino, unaware that this is exactly what Kaiser wants him to do as part of an insurance claim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":42,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12320},{"seriesId":159,"episodeFileId":8367,"seasonNumber":1,"episodeNumber":43,"title":"His Silicon Soul","airDate":"1992-11-20","airDateUtc":"1992-11-20T05:00:00Z","overview":"When a Batman impersonator appears in Gotham City, the real Batman deduces that Karl Rossum is somehow involved and confronts the inventor. The other Batman, a duplicate, then shows up and a battle between the two takes place. After the duplicate Batman escapes, it begins its campaign to recreate H.A.R.D.A.C.'s goals of a robotic society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":43,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12321},{"seriesId":159,"episodeFileId":8368,"seasonNumber":1,"episodeNumber":44,"title":"Off Balance","airDate":"1992-11-23","airDateUtc":"1992-11-23T05:00:00Z","overview":"While following Count Vertigo's trail, Batman encounters Talia, daughter of the head of the Society of Shadows, who was sent by her father to prevent the capture of a sonic drill that the Count stole. But after his identity is mistakenly revealed to Talia, Batman remains off-balance as to where her true loyalties lie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":44,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12322},{"seriesId":159,"episodeFileId":8369,"seasonNumber":1,"episodeNumber":45,"title":"What is Reality?","airDate":"1992-11-24","airDateUtc":"1992-11-24T05:00:00Z","overview":"Seeking to prove once and for all that his is the superior mind, the Riddler lures Batman into a riddle-solving contest inside the virtual reality of a computer game in order to save Police Jim Gordon's life. In the course of solving the riddles and escaping the Riddler's traps, Batman learns that he is able to manipulate the virtual reality landscape much like the Riddler does","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":45,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12323},{"seriesId":159,"episodeFileId":8370,"seasonNumber":1,"episodeNumber":46,"title":"The Laughing Fish","airDate":"1993-01-10","airDateUtc":"1993-01-10T05:00:00Z","overview":"Fishermen discover that Gotham's fish all have the Joker's colors and signature smile. Batman investigates, and realises that the Joker is hoping to make money off of these new fish by having them trademarked. After two government employees are killed by Joker toxin, Batman examines that specific fish, and sees that it is actually a Japanese one, meaning that the Joker is hiding at the Aquarium. Bullock tracks the Joker down, but is captured and used as live shark bait as part of a trap for Batman. Can Batman save him in time?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":46,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12324},{"seriesId":159,"episodeFileId":8371,"seasonNumber":1,"episodeNumber":47,"title":"Harley and Ivy","airDate":"1993-01-18","airDateUtc":"1993-01-18T05:00:00Z","overview":"When the Joker fires Harley, she tries going on a crime spree of her own, joining up with Poison Ivy, and the two become Gotham's Queens of Crime, much to Joker's fury.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":47,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12325},{"seriesId":159,"episodeFileId":8372,"seasonNumber":1,"episodeNumber":48,"title":"The Mechanic","airDate":"1993-01-24","airDateUtc":"1993-01-24T05:00:00Z","overview":"Thanks to a freak accident during a high-speed chase, the Batmobile is virtually demolished. After Batman takes the car to his personal mechanic, Earl Cooper, the Penguin makes his move and tampers with the Batmobile, putting it under his control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":48,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12326},{"seriesId":159,"episodeFileId":8373,"seasonNumber":1,"episodeNumber":49,"title":"The Man Who Killed Batman","airDate":"1993-02-01","airDateUtc":"1993-02-01T05:00:00Z","overview":"When a small time gang member seemingly kills Batman by accident, he gets involved with gangs all over Gotham, as well as the Joker and Rupert Thorne.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":49,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12327},{"seriesId":159,"episodeFileId":8374,"seasonNumber":1,"episodeNumber":50,"title":"Zatanna","airDate":"1993-02-02","airDateUtc":"1993-02-02T05:00:00Z","overview":"When the glamorous magician Zatanna is framed for a robbery during her act, Batman swings to her defense. Zatanna is grateful though a little puzzled by the Dark Knight's commitment to prove her innocence, but the two heroes unite and use the skills her father, Zatara, taught them to expose and combat the culprit: an evil illusionist named Montague Kane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":50,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12328},{"seriesId":159,"episodeFileId":8375,"seasonNumber":1,"episodeNumber":51,"title":"Robin's Reckoning (1)","airDate":"1993-02-07","airDateUtc":"1993-02-07T05:00:00Z","overview":"During a fight with some gangsters at a construction yard, Batman and Robin learn the name of their boss: Billy Marin. While Robin looks forward to going up against Marin, Batman becomes distant, and after a falling out at the Batcave, Batman doesn't allow Robin to accompany him on the search for Marin. Robin investigates on the Batcomputer, and soon realises that Billy Marin is not the boss' real name. Rather, it is an alias of Tony Zucco, the man who killed his parents","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":51,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12329},{"seriesId":159,"episodeFileId":8376,"seasonNumber":1,"episodeNumber":52,"title":"Birds of a Feather","airDate":"1993-02-08","airDateUtc":"1993-02-08T05:00:00Z","overview":"Veronica Vreeland is looking for a way to create a splash with her next party and arrives at the idea of having a former criminal in attendance\u2014especially if there's one whose manners would create a stir. Penguin, who has recently reformed, fits the bill perfectly. In the process of convincing the Penguin to come to her party, Veronica finds she likes the corpulent little guy. For his part, the Penguin begins to fall in love with her, until he overhears that he is merely being used...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":52,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12330},{"seriesId":159,"episodeFileId":8377,"seasonNumber":1,"episodeNumber":53,"title":"Robin's Reckoning (2)","airDate":"1993-02-14","airDateUtc":"1993-02-14T05:00:00Z","overview":"Robin sets out to find Tony Zucco, all the while plagued by the memories of his parents' death and how Bruce took him in as his own son. Eventually, Batman finds Zucco at an old amusement park, but breaks his leg during the fight. Robin arrives, and prepares to kill Zucco in revenge. He initially scoffs Batman's advice, but realises that justice and revenge are not the same. Zucco is arrested, and Batman makes amends with Robin, stating that he wouldn't let Robin accompany him under the fear of Zucco killing him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":53,"sceneEpisodeNumber":53,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12331},{"seriesId":159,"episodeFileId":8378,"seasonNumber":1,"episodeNumber":54,"title":"Blind as a Bat","airDate":"1993-02-22","airDateUtc":"1993-02-22T05:00:00Z","overview":"The Penguin steals an experimental helicopter from an air show, causing an explosion that temporarily blinds Bruce Wayne. Batman knows he won't be able to wait until his vision returns to track the Penguin down, but will he be able to do so without the use of his eyes?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"sceneAbsoluteEpisodeNumber":54,"sceneEpisodeNumber":54,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12332},{"seriesId":159,"episodeFileId":8379,"seasonNumber":1,"episodeNumber":55,"title":"Day of the Samurai","airDate":"1993-02-23","airDateUtc":"1993-02-23T05:00:00Z","overview":"Kyodai Ken kidnaps Kairi, daughter of Yoru Sensei, the martial arts instructor who taught both Kyodai and Bruce. The ninja's ransom for her is a scroll that teaches the location of the fabled Death Touch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":55,"sceneEpisodeNumber":55,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12333},{"seriesId":159,"episodeFileId":8380,"seasonNumber":1,"episodeNumber":56,"title":"See No Evil","airDate":"1993-02-24","airDateUtc":"1993-02-24T05:00:00Z","overview":"Lloyd \"Eddie\" Ventrix is on the verge of losing his daughter, Kimberly, to his ex-wife, Helen, due to his past as an con artist. Determined not to lose Kimberly, Ventrix dons a suit, stolen from where he used to work while on parole, which grants the user invisibility but also becomes highly toxic, and poses as Kimberly's imaginary friend, Mojo, while stealing jewellery for her. Can Batman solve the mystery crimes and stop Ventrix, and at the same time, save his life, despite the fact that he can't even see him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":56,"sceneEpisodeNumber":56,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12334},{"seriesId":159,"episodeFileId":8381,"seasonNumber":1,"episodeNumber":57,"title":"The Demon's Quest (1)","airDate":"1993-05-03","airDateUtc":"1993-05-03T04:00:00Z","overview":"When Robin is mysteriously abducted from his college campus, the Batman begins a fruitless search ... until he is astounded by the sudden appearance in the Batcave of Ra's Al Ghul. Ra's quickly reveals that his daughter, Talia, has been abducted under circumstances similar to Robin's, suggesting that the same persons are responsible. So begins an uneasy truce between the Batman and 'The Demon'.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"sceneAbsoluteEpisodeNumber":57,"sceneEpisodeNumber":57,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12335},{"seriesId":159,"episodeFileId":8382,"seasonNumber":1,"episodeNumber":58,"title":"The Demon's Quest (2)","airDate":"1993-05-04","airDateUtc":"1993-05-04T04:00:00Z","overview":"After freeing Talia from her father's clutches and escaping from an avalanche, Batman and Robin follow the only clue they have - the word 'Orpheus'. After discovering that 'Orpheus' is Ra's private satellite that will orbit over the Sahara, the duo travel to the Demon's desert stronghold. There, Batman learns that the satellite is actually a weapon which will explosively destroy all the Lazarus Pits simultaneously, throughout the world, destroying all the life that exists.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"sceneAbsoluteEpisodeNumber":58,"sceneEpisodeNumber":58,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12336},{"seriesId":159,"episodeFileId":8383,"seasonNumber":1,"episodeNumber":59,"title":"Read My Lips","airDate":"1993-05-10","airDateUtc":"1993-05-10T04:00:00Z","overview":"Batman discovers that A brand new gang has made its debut committing the slickest crimes ever, thanks to the gang leader, Scarface. It's up to Batman to stop Scarface and his \"dummy\", the Ventriloquist.\r\n new crime czar is a wooden dummy manipulated by a mild mannered man with a split personality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"sceneAbsoluteEpisodeNumber":59,"sceneEpisodeNumber":59,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12337},{"seriesId":159,"episodeFileId":8384,"seasonNumber":1,"episodeNumber":60,"title":"Fire from Olympus","airDate":"1993-05-24","airDateUtc":"1993-05-24T04:00:00Z","overview":"Believing hiself to be a Greek God, Maxie Zeus steals an experimental electricity weapon with plans of using it on Gotham City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"sceneAbsoluteEpisodeNumber":60,"sceneEpisodeNumber":60,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":12338},{"seriesId":159,"episodeFileId":8438,"seasonNumber":2,"episodeNumber":1,"title":"Shadow of the Bat (1)","airDate":"1993-09-13","airDateUtc":"1993-09-13T04:00:00Z","overview":"When Commissioner Gordon is framed for taking bribes from Rupert Thorne, his daughter Barbara pleads with Batman to show up at a rally being put on in the commissioner's behalf. But when Batman disappears after finding the person behind the frame-up, Barbara takes the law into her own hands as Batgirl.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"sceneAbsoluteEpisodeNumber":61,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12339},{"seriesId":159,"episodeFileId":8439,"seasonNumber":2,"episodeNumber":2,"title":"Shadow of the Bat (2)","airDate":"1993-09-14","airDateUtc":"1993-09-14T04:00:00Z","overview":"Robin discovers that Gil Mason is in league with the underworld and goes to investigate him. He encounters Batgirl along the way, and go their separate ways to stop Mason. They then meet again to learn that Gil is working with Two-Face to take out Gordon, and have Batman (as Matches Malone) captured.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"sceneAbsoluteEpisodeNumber":62,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12340},{"seriesId":159,"episodeFileId":8440,"seasonNumber":2,"episodeNumber":3,"title":"Mudslide","airDate":"1993-09-15","airDateUtc":"1993-09-15T04:00:00Z","overview":"A female scientist helps Clayface when his body begins to disintegrate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":63,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12341},{"seriesId":159,"episodeFileId":8441,"seasonNumber":2,"episodeNumber":4,"title":"The Worry Men","airDate":"1993-09-16","airDateUtc":"1993-09-16T04:00:00Z","overview":"Wealthy socialite Veronica Vreeland returns from Central America bringing tiny handmade dolls for all her friends. According to native legend, once placed under a pillow the dolls do the sleeper's worrying for them. Unknown to Veronica or her guests, each of the dolls was made by the Mad Hatter, and contains a tiny microchip which plants hypnotic suggestions inside the sleepers' brains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"sceneAbsoluteEpisodeNumber":64,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12342},{"seriesId":159,"episodeFileId":8442,"seasonNumber":2,"episodeNumber":5,"title":"Paging the Crime Doctor","airDate":"1993-09-17","airDateUtc":"1993-09-17T04:00:00Z","overview":"Dr. Leslie Thompkins is kidnapped when crime boss Rupert Thorne requires surgery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":65,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12343},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Batman: Mask of the Phantasm","airDate":"1993-12-25","airDateUtc":"1993-12-25T05:00:00Z","overview":"During a conference of crime bosses held in a Gotham City skyscraper, gangster Chuckie Sol is killed by a mysterious cloaked figure shortly after Batman bursts in on the meeting. Batman is blamed for the death. Councilman Arthur Reeves tells the media that Batman is an irresponsible menace, then attends a party at the mansion of billionaire Bruce Wayne, Batman's alter ego. Reeves jokingly taunts Bruce for his bad luck with women and for having allowed an old girlfriend, Andrea Beaumont, to get away.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12274},{"seriesId":159,"episodeFileId":8443,"seasonNumber":2,"episodeNumber":6,"title":"House and Garden","airDate":"1994-05-02","airDateUtc":"1994-05-02T04:00:00Z","overview":"Poison Ivy appears to have gone straight and become suburban homemaker, nevertheless Batman suspects her of a series of plant based crimes in Gotham City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"sceneAbsoluteEpisodeNumber":66,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12344},{"seriesId":159,"episodeFileId":8444,"seasonNumber":2,"episodeNumber":7,"title":"Sideshow","airDate":"1994-05-03","airDateUtc":"1994-05-03T04:00:00Z","overview":"When pursuing the escaped convict Killer Croc, Batman encounters a small group of sideshow freaks who apparently trust Croc more than Batman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"sceneAbsoluteEpisodeNumber":67,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12345},{"seriesId":159,"episodeFileId":8445,"seasonNumber":2,"episodeNumber":8,"title":"Avatar","airDate":"1994-05-09","airDateUtc":"1994-05-09T04:00:00Z","overview":"Batman must stop Ra's Al Ghul when he attempts to unleash the power of the ancient God Thoth Khepera.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"sceneAbsoluteEpisodeNumber":68,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12346},{"seriesId":159,"episodeFileId":8446,"seasonNumber":2,"episodeNumber":9,"title":"Trial","airDate":"1994-05-16","airDateUtc":"1994-05-16T04:00:00Z","overview":"Batman's worst enemies kidnap him and put him on trial for crimes committed against them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"sceneAbsoluteEpisodeNumber":69,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12347},{"seriesId":159,"episodeFileId":8447,"seasonNumber":2,"episodeNumber":10,"title":"Harlequinade","airDate":"1994-05-23","airDateUtc":"1994-05-23T04:00:00Z","overview":"The Joker steals an atomic bomb and Batman and Robin must team up with Harley Quinn in order to find him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"sceneAbsoluteEpisodeNumber":70,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":12348},{"seriesId":159,"episodeFileId":8415,"seasonNumber":3,"episodeNumber":1,"title":"Bane","airDate":"1994-09-10","airDateUtc":"1994-09-10T04:00:00Z","overview":"Rupert Thorne hires the chemically-augmented assassin Bane to kill Batman.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"sceneAbsoluteEpisodeNumber":71,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12349},{"seriesId":159,"episodeFileId":8416,"seasonNumber":3,"episodeNumber":2,"title":"Second Chance","airDate":"1994-09-17","airDateUtc":"1994-09-17T04:00:00Z","overview":"Harvey Dent (Two-Face) is kidnapped by a mysterious villian before he has an operation that will restore his face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"sceneAbsoluteEpisodeNumber":72,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12350},{"seriesId":159,"episodeFileId":8417,"seasonNumber":3,"episodeNumber":3,"title":"Riddler's Reform","airDate":"1994-09-24","airDateUtc":"1994-09-24T04:00:00Z","overview":"The Riddler appears to have gone straight when he develops a new and successful puzzle based toy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"sceneAbsoluteEpisodeNumber":73,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12351},{"seriesId":159,"episodeFileId":8418,"seasonNumber":3,"episodeNumber":4,"title":"Baby-Doll","airDate":"1994-10-01","airDateUtc":"1994-10-01T04:00:00Z","overview":"A tiny former child star kidnaps her TV family and holds them prisoner in a reconstruction of her old TV home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"sceneAbsoluteEpisodeNumber":74,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12352},{"seriesId":159,"episodeFileId":8419,"seasonNumber":3,"episodeNumber":5,"title":"Time Out of Joint","airDate":"1994-10-08","airDateUtc":"1994-10-08T04:00:00Z","overview":"The Clock King plots against Mayor Hill after he steals an invention that allows him to travel at super speed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"sceneAbsoluteEpisodeNumber":75,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12353},{"seriesId":159,"episodeFileId":8420,"seasonNumber":3,"episodeNumber":6,"title":"Harley's Holiday","airDate":"1994-10-15","airDateUtc":"1994-10-15T04:00:00Z","overview":"After being discharged from Arkham, Harley Quinn tries to lead a normal life but she keeps getting into trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"sceneAbsoluteEpisodeNumber":76,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12354},{"seriesId":159,"episodeFileId":8421,"seasonNumber":3,"episodeNumber":7,"title":"Make 'em Laugh","airDate":"1994-11-05","airDateUtc":"1994-11-05T05:00:00Z","overview":"Batman and Robin investigate a string of crimes committed by a group of famous comedians brainwashed by the Joker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"sceneAbsoluteEpisodeNumber":77,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12355},{"seriesId":159,"episodeFileId":8422,"seasonNumber":3,"episodeNumber":8,"title":"Batgirl Returns","airDate":"1994-11-12","airDateUtc":"1994-11-12T05:00:00Z","overview":"Batgirl and Catwoman team up to investigate the theft of a rare cat statue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"sceneAbsoluteEpisodeNumber":78,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12356},{"seriesId":159,"episodeFileId":8423,"seasonNumber":3,"episodeNumber":9,"title":"Lock-Up","airDate":"1994-11-19","airDateUtc":"1994-11-19T05:00:00Z","overview":"Lyle Bolton Arkam's former chief of security becomes the vigilante Lock-up and kidnaps Commissioner Gordon and Mayor Hill seeing them as the cause of rampant crime in Gotham City.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"sceneAbsoluteEpisodeNumber":79,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12357},{"seriesId":159,"episodeFileId":8424,"seasonNumber":3,"episodeNumber":10,"title":"Deep Freeze","airDate":"1994-11-26","airDateUtc":"1994-11-26T05:00:00Z","overview":"Aging billionaire Grant Walker breaks Mr. Freeze out of prison so he can use the scientist's knowledge to can gain immortality and cover the world in a new ice age.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"sceneAbsoluteEpisodeNumber":80,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":12358},{"seriesId":159,"episodeFileId":8385,"seasonNumber":4,"episodeNumber":1,"title":"The Terrible Trio","airDate":"1995-09-11","airDateUtc":"1995-09-11T04:00:00Z","overview":"Batman tracks three wealthy playboys who commit crimes out of boredom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"sceneAbsoluteEpisodeNumber":81,"sceneEpisodeNumber":1,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":12359},{"seriesId":159,"episodeFileId":8386,"seasonNumber":4,"episodeNumber":2,"title":"Showdown","airDate":"1995-09-12","airDateUtc":"1995-09-12T04:00:00Z","overview":"Batman and Robin learn about the exploits of Jonah Hex an Old West crimefighter who once dealt with the immortal Ra's Al Ghul.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"sceneAbsoluteEpisodeNumber":82,"sceneEpisodeNumber":2,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":12360},{"seriesId":159,"episodeFileId":8387,"seasonNumber":4,"episodeNumber":3,"title":"Catwalk","airDate":"1995-09-13","airDateUtc":"1995-09-13T04:00:00Z","overview":"Catwoman's attempt to go straight runs into problems when she is enticed into one last job by the Ventriloquist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"sceneAbsoluteEpisodeNumber":83,"sceneEpisodeNumber":3,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":12361},{"seriesId":159,"episodeFileId":8388,"seasonNumber":4,"episodeNumber":4,"title":"A Bullet for Bullock","airDate":"1995-09-14","airDateUtc":"1995-09-14T04:00:00Z","overview":"Batman helps Detective Harvey Bullock who appears to be the target of someone's revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"sceneAbsoluteEpisodeNumber":84,"sceneEpisodeNumber":4,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":12362},{"seriesId":159,"episodeFileId":8389,"seasonNumber":4,"episodeNumber":5,"title":"The Lion and the Unicorn","airDate":"1995-09-15","airDateUtc":"1995-09-15T04:00:00Z","overview":"Alfred, a former British spy, is called into duty and becomes of the target of the Red Claw.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"sceneAbsoluteEpisodeNumber":85,"sceneEpisodeNumber":5,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":12363},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Batman & Mr. Freeze: SubZero","airDate":"1998-03-17","airDateUtc":"1998-03-17T05:00:00Z","overview":"Since his last encounter against Batman, Mr. Freeze has found a home in the Arctic and started a family (of sorts) with the still cryogenically-encased Nora, an Inuit boy named Kunac, and two pet polar bears, Notchka and Chokka. Freeze returns to Gotham City with his companions, and enlists the help of Dr. Gregory Belson to find a cure. Belson determines that Nora needs an organ transplant, but due to her rare blood type there are no suitable donors available.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12275},{"seriesId":159,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Batman: Mystery of the Batwoman","airDate":"2003-10-21","airDateUtc":"2003-10-21T04:00:00Z","overview":"A new hero has arrived in Gotham, but as the title suggests, her identity is a mystery\u2014even to Batman. During patrol, the Dynamic Duo after spots her trying to stop one of Penguin's shipment on Gotham's interstate and apparently would use lethal force after seeing her using a plasma rifle sending Penguin's truck with its driver off the bridge. Batman and Robin saves the driver from falling to his death. Batman must figure out who Batwoman is and to stop familiar enemies Penguin and Rupert Thorne from selling illegal weapons to the fictional nation of Kasnia. At the beginning of the story, the two employ Carlton Duquesne, a gangster, to provide protection.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12276},{"seriesId":159,"episodeFileId":8319,"seasonNumber":0,"episodeNumber":5,"title":"Chase Me","airDate":"2003-10-21","airDateUtc":"2003-10-21T04:25:00Z","overview":"Catwoman steals some things from Bruce Wayne's mansion and tries to escape while Bruce (as Batman) chases her. This is a short film with no dialogue, released as a special feature on the Batman: Mystery of the Batwoman DVD.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":12277}],"episodeFile":[{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Cat & the Claw (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E01.The Cat & the Claw (Part 1)-Bluray-1080p.mkv","size":433658596,"dateAdded":"2019-08-24T23:00:50.626287Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163010,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2239300,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8299},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E02.On Leather Wings-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E02.On Leather Wings-Bluray-1080p.mkv","size":473475255,"dateAdded":"2019-08-24T23:01:32.30218Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":172656,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":2382360,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:28","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8303},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Heart of Ice-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E03.Heart of Ice-Bluray-1080p.mkv","size":607735299,"dateAdded":"2019-08-24T23:02:14.401253Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156812,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":3194634,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:28","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8307},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Feat of Clay (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E04.Feat of Clay (Part 1)-Bluray-1080p.mkv","size":474467907,"dateAdded":"2019-08-24T23:03:11.985221Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159348,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2546064,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"21:58","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8311},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Feat of Clay (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E05.Feat of Clay (Part 2)-Bluray-1080p.mkv","size":547145944,"dateAdded":"2019-08-24T23:03:59.259551Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":164886,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2901150,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:30","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8315},{"seriesId":159,"seasonNumber":0,"relativePath":"Specials\/S00E05.The Dark Knight's First Night-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Specials\/S00E05.The Dark Knight's First Night-Bluray-1080p.mkv","size":38467349,"dateAdded":"2019-08-24T23:04:43.649889Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":79998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":917663,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"5:03","scanType":"","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8319},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E06.It's Never Too Late-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E06.It's Never Too Late-Bluray-1080p.mkv","size":446897825,"dateAdded":"2019-08-24T23:04:45.751473Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":170851,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2310750,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8320},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Joker's Favor-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E07.Joker's Favor-Bluray-1080p.mkv","size":529842965,"dateAdded":"2019-08-24T23:05:20.503811Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171913,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2791908,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:30","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8323},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Cat & the Claw (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E08.The Cat & the Claw (Part 2)-Bluray-1080p.mkv","size":465429214,"dateAdded":"2019-08-24T23:06:15.059002Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175129,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2416000,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8327},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Pretty Poison-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E09.Pretty Poison-Bluray-1080p.mkv","size":548528982,"dateAdded":"2019-08-24T23:06:42.083799Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175628,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2917852,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:23","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8329},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Nothing to Fear-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E10.Nothing to Fear-Bluray-1080p.mkv","size":532278527,"dateAdded":"2019-08-24T23:07:20.238803Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171851,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2816339,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8332},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Be a Clown-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E11.Be a Clown-Bluray-1080p.mkv","size":606838874,"dateAdded":"2019-08-24T23:08:11.58474Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160623,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3275617,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8335},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Appointment In Crime Alley-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E12.Appointment In Crime Alley-Bluray-1080p.mkv","size":444816628,"dateAdded":"2019-08-24T23:08:29.948165Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162232,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2300542,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:29","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8336},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E13.P.O.V-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E13.P.O.V-Bluray-1080p.mkv","size":444019844,"dateAdded":"2019-08-24T23:08:45.558703Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166108,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2307294,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:22","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8337},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Clock King-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E14.The Clock King-Bluray-1080p.mkv","size":544513186,"dateAdded":"2019-08-24T23:09:02.449764Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163077,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2889704,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:29","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8338},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Last Laugh-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E15.The Last Laugh-Bluray-1080p.mkv","size":556178210,"dateAdded":"2019-08-24T23:09:17.122269Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":196023,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2940685,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8339},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Eternal Youth-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E16.Eternal Youth-Bluray-1080p.mkv","size":632579400,"dateAdded":"2019-08-24T23:09:37.674949Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153781,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3422659,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:29","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8340},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Two-Face (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E17.Two-Face (Part 1)-Bluray-1080p.mkv","size":554813670,"dateAdded":"2019-08-24T23:10:04.733695Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":159526,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2956369,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8341},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Two-Face (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E18.Two-Face (Part 2)-Bluray-1080p.mkv","size":532798583,"dateAdded":"2019-08-24T23:10:20.158236Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166542,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2816718,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:30","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8342},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Fear of Victory-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E19.Fear of Victory-Bluray-1080p.mkv","size":498574564,"dateAdded":"2019-08-24T23:10:33.196491Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":170188,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2615542,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8343},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E20.I've Got Batman In My Basement-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E20.I've Got Batman In My Basement-Bluray-1080p.mkv","size":451551808,"dateAdded":"2019-08-24T23:10:50.218763Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175366,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2346990,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:20","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8344},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Vendetta-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E21.Vendetta-Bluray-1080p.mkv","size":488992405,"dateAdded":"2019-08-24T23:11:07.213047Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177458,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2545880,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:30","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8345},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Prophecy of Doom-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E22.Prophecy of Doom-Bluray-1080p.mkv","size":519781280,"dateAdded":"2019-08-24T23:11:20.583709Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":183841,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2729165,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8346},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E23.The Forgotten-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E23.The Forgotten-Bluray-1080p.mkv","size":507467922,"dateAdded":"2019-08-24T23:11:33.058108Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162215,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2678594,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8347},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Mad as a Hatter-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E24.Mad as a Hatter-Bluray-1080p.mkv","size":554890764,"dateAdded":"2019-08-24T23:11:48.064957Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":181949,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2944370,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8348},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E25.The Cape and Cowl Conspiracy-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E25.The Cape and Cowl Conspiracy-Bluray-1080p.mkv","size":367385533,"dateAdded":"2019-08-24T23:12:10.583662Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":164667,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1842719,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8349},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Perchance to Dream-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E26.Perchance to Dream-Bluray-1080p.mkv","size":580748582,"dateAdded":"2019-08-24T23:12:22.162386Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174980,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3109196,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:23","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8350},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E27.The Underdwellers-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E27.The Underdwellers-Bluray-1080p.mkv","size":462900839,"dateAdded":"2019-08-24T23:12:41.318354Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":167432,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2410186,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8351},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Night of the Ninja-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E28.Night of the Ninja-Bluray-1080p.mkv","size":411899201,"dateAdded":"2019-08-24T23:12:58.770421Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":172228,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2104186,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8352},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E29.The Strange Secret of Bruce Wayne-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E29.The Strange Secret of Bruce Wayne-Bluray-1080p.mkv","size":535260599,"dateAdded":"2019-08-24T23:13:11.776745Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171948,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2832677,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8353},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Tyger, Tyger-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E30.Tyger, Tyger-Bluray-1080p.mkv","size":549962945,"dateAdded":"2019-08-24T23:13:29.142086Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":168256,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2931968,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8354},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E31.Dreams In Darkness-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E31.Dreams In Darkness-Bluray-1080p.mkv","size":498573881,"dateAdded":"2019-08-24T23:13:51.849464Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158889,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2621457,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:30","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8355},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Beware the Gray Ghost-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E32.Beware the Gray Ghost-Bluray-1080p.mkv","size":426801891,"dateAdded":"2019-08-24T23:14:02.84986Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175152,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2190018,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8356},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E33.Cat Scratch Fever-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E33.Cat Scratch Fever-Bluray-1080p.mkv","size":498833312,"dateAdded":"2019-08-24T23:14:23.809083Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":169450,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2624453,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8357},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E34.I Am the Night-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E34.I Am the Night-Bluray-1080p.mkv","size":352989987,"dateAdded":"2019-08-24T23:14:37.016815Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":170021,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1756093,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8358},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Almost Got 'Im-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E35.Almost Got 'Im-Bluray-1080p.mkv","size":472864653,"dateAdded":"2019-08-24T23:14:45.878818Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171926,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":2384613,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8359},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E36.Moon of the Wolf-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E36.Moon of the Wolf-Bluray-1080p.mkv","size":432369342,"dateAdded":"2019-08-24T23:15:04.364293Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161375,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2295839,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"21:54","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8360},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E37.Terror In the Sky-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E37.Terror In the Sky-Bluray-1080p.mkv","size":495456072,"dateAdded":"2019-08-24T23:15:21.967388Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162360,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2679112,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"21:55","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8361},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E38.Christmas with the Joker-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E38.Christmas with the Joker-Bluray-1080p.mkv","size":507149216,"dateAdded":"2019-08-24T23:15:38.8452Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":172217,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2669861,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8362},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E39.Heart of Steel (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E39.Heart of Steel (Part 1)-Bluray-1080p.mkv","size":434605195,"dateAdded":"2019-08-24T23:15:55.515268Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":175302,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2224568,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:31","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8363},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E40.Heart of Steel (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E40.Heart of Steel (Part 2)-Bluray-1080p.mkv","size":420123929,"dateAdded":"2019-08-24T23:16:06.995552Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165606,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":2077502,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8364},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E41.If You're So Smart, Why Aren't You Rich-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E41.If You're So Smart, Why Aren't You Rich-Bluray-1080p.mkv","size":478328980,"dateAdded":"2019-08-24T23:16:20.179862Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":168617,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2561720,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"21:56","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8365},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E42.Joker's Wild-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E42.Joker's Wild-Bluray-1080p.mkv","size":489315667,"dateAdded":"2019-08-24T23:16:33.780196Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165879,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2573982,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:23","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8366},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E43.His Silicon Soul-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E43.His Silicon Soul-Bluray-1080p.mkv","size":435744454,"dateAdded":"2019-08-24T23:16:50.949396Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":169858,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2250668,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:23","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8367},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E44.Off Balance-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E44.Off Balance-Bluray-1080p.mkv","size":397451497,"dateAdded":"2019-08-24T23:17:08.171668Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":174107,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2024847,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:20","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8368},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E45.What Is Reality-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E45.What Is Reality-Bluray-1080p.mkv","size":452216485,"dateAdded":"2019-08-24T23:17:24.145502Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":171589,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2342877,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8369},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E46.The Laughing Fish-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E46.The Laughing Fish-Bluray-1080p.mkv","size":435321497,"dateAdded":"2019-08-24T23:17:35.893637Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":156995,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2263764,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:21","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8370},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E47.Harley and Ivy-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E47.Harley and Ivy-Bluray-1080p.mkv","size":505021916,"dateAdded":"2019-08-24T23:17:51.48209Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153686,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":2592045,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8371},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E48.The Mechanic-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E48.The Mechanic-Bluray-1080p.mkv","size":499744612,"dateAdded":"2019-08-24T23:18:05.776768Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":153478,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2651729,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:21","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8372},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E49.The Man Who Killed Batman-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E49.The Man Who Killed Batman-Bluray-1080p.mkv","size":439454018,"dateAdded":"2019-08-24T23:18:17.36637Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":150395,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2284478,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8373},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E50.Zatanna-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E50.Zatanna-Bluray-1080p.mkv","size":402018198,"dateAdded":"2019-08-24T23:18:31.480875Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161704,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2051491,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8374},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E51.Robin's Reckoning (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E51.Robin's Reckoning (Part 1)-Bluray-1080p.mkv","size":514176374,"dateAdded":"2019-08-24T23:18:46.980847Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":179819,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":2623860,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8375},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E52.Birds of a Feather-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E52.Birds of a Feather-Bluray-1080p.mkv","size":403845941,"dateAdded":"2019-08-24T23:19:01.574916Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":158151,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2066802,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:26","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8376},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E53.Robin's Reckoning (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E53.Robin's Reckoning (Part 2)-Bluray-1080p.mkv","size":411172358,"dateAdded":"2019-08-24T23:19:18.211943Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162800,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2119538,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:20","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8377},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E54.Blind as a Bat-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E54.Blind as a Bat-Bluray-1080p.mkv","size":468549564,"dateAdded":"2019-08-24T23:19:29.01918Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162985,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2456530,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:22","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8378},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E55.Day of the Samurai-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E55.Day of the Samurai-Bluray-1080p.mkv","size":373327051,"dateAdded":"2019-08-24T23:19:43.889853Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":154646,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1889789,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:27","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8379},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E56.See No Evil-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E56.See No Evil-Bluray-1080p.mkv","size":482222789,"dateAdded":"2019-08-24T23:19:59.219333Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":169883,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2524629,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:25","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8380},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E57.The Demon's Quest (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E57.The Demon's Quest (Part 1)-Bluray-1080p.mkv","size":390912999,"dateAdded":"2019-08-24T23:20:11.814819Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":157899,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":1995702,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8381},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E58.The Demon's Quest (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E58.The Demon's Quest (Part 2)-Bluray-1080p.mkv","size":462123807,"dateAdded":"2019-08-24T23:20:20.010162Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":168524,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2415470,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:20","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8382},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E59.Read My Lips-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E59.Read My Lips-Bluray-1080p.mkv","size":392956868,"dateAdded":"2019-08-24T23:20:38.396191Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160692,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish \/ English","audioStreamCount":4,"videoBitDepth":10,"videoBitrate":1923498,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:24","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8383},{"seriesId":159,"seasonNumber":1,"relativePath":"Season 01\/S01E60.Fire from Olympus-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 01\/S01E60.Fire from Olympus-Bluray-1080p.mkv","size":458529727,"dateAdded":"2019-08-24T23:20:48.408453Z","releaseGroup":"S04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160528,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":2401318,"videoCodec":"x265","videoFps":23.976,"resolution":"1436x1080","runTime":"22:21","scanType":"","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8384},{"seriesId":159,"seasonNumber":4,"relativePath":"Season 04\/S04E01.The Terrible Trio-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 04\/S04E01.The Terrible Trio-Bluray-1080p.mkv","size":2847931134,"dateAdded":"2019-08-25T03:53:23.50966Z","sceneName":"Batman.The.Animated.Series.S04E01.The.Terrible.Trio.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711009,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15720041,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8385},{"seriesId":159,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Showdown-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 04\/S04E02.Showdown-Bluray-1080p.mkv","size":2841767746,"dateAdded":"2019-08-25T03:55:18.535272Z","sceneName":"Batman.The.Animated.Series.S04E02.Showdown.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710698,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15710685,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:15","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8386},{"seriesId":159,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Catwalk-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 04\/S04E03.Catwalk-Bluray-1080p.mkv","size":2847524126,"dateAdded":"2019-08-25T03:57:15.2962Z","sceneName":"Batman.The.Animated.Series.S04E03.Catwalk.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711068,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15713651,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8387},{"seriesId":159,"seasonNumber":4,"relativePath":"Season 04\/S04E04.A Bullet for Bullock-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 04\/S04E04.A Bullet for Bullock-Bluray-1080p.mkv","size":2845291319,"dateAdded":"2019-08-25T03:59:09.842285Z","sceneName":"Batman.The.Animated.Series.S04E04.A.Bullet.for.Bullock.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711397,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15708877,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8388},{"seriesId":159,"seasonNumber":4,"relativePath":"Season 04\/S04E05.The Lion and the Unicorn-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 04\/S04E05.The Lion and the Unicorn-Bluray-1080p.mkv","size":2873669732,"dateAdded":"2019-08-25T04:00:50.391075Z","sceneName":"Batman.The.Animated.Series.S04E05.The.Lion.and.the.Unicorn.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710398,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15716378,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:28","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8389},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Bane-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E01.Bane-Bluray-1080p.mkv","size":2853997481,"dateAdded":"2019-08-25T07:03:04.525839Z","sceneName":"Batman.The.Animated.Series.S03E01.Bane.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710076,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15719923,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:20","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8415},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Second Chance-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E02.Second Chance-Bluray-1080p.mkv","size":2849256631,"dateAdded":"2019-08-25T07:04:45.1605Z","sceneName":"Batman.The.Animated.Series.S03E02.Second.Chance.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711197,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15738938,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8416},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Riddler's Reform-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E03.Riddler's Reform-Bluray-1080p.mkv","size":2845045682,"dateAdded":"2019-08-25T07:06:36.839853Z","sceneName":"Batman.The.Animated.Series.S03E03.Riddlers.Reform.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710105,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15737363,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:14","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8417},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Baby-Doll-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E04.Baby-Doll-Bluray-1080p.mkv","size":2842223841,"dateAdded":"2019-08-25T07:08:30.354078Z","sceneName":"Batman.The.Animated.Series.S03E04.Baby-Doll.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710242,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15711570,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:15","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8418},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Time Out of Joint-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E05.Time Out of Joint-Bluray-1080p.mkv","size":2849669280,"dateAdded":"2019-08-25T07:10:18.392155Z","sceneName":"Batman.The.Animated.Series.S03E05.Time.Out.of.Joint.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710653,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15684275,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:20","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8419},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Harley's Holiday-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E06.Harley's Holiday-Bluray-1080p.mkv","size":2837878826,"dateAdded":"2019-08-25T07:12:15.342062Z","sceneName":"Batman.The.Animated.Series.S03E06.Harleys.Holiday.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710480,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15724831,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:12","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8420},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Make 'Em Laugh-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E07.Make 'Em Laugh-Bluray-1080p.mkv","size":2854149989,"dateAdded":"2019-08-25T07:14:02.890134Z","sceneName":"Batman.The.Animated.Series.S03E07.Make.Em.Laugh.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1709998,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15746370,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:17","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8421},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Batgirl Returns-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E08.Batgirl Returns-Bluray-1080p.mkv","size":2848801840,"dateAdded":"2019-08-25T07:15:52.131881Z","sceneName":"Batman.The.Animated.Series.S03E08.Batgirl.Returns.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710293,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15740935,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8422},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Lock-Up-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E09.Lock-Up-Bluray-1080p.mkv","size":2844219762,"dateAdded":"2019-08-25T07:17:33.966955Z","sceneName":"Batman.The.Animated.Series.S03E09.Lock-Up.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1709941,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15705919,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:16","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8423},{"seriesId":159,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Deep Freeze-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 03\/S03E10.Deep Freeze-Bluray-1080p.mkv","size":2845264160,"dateAdded":"2019-08-25T07:19:27.346722Z","sceneName":"Batman.The.Animated.Series.S03E10.Deep.Freeze.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711278,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15728870,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:15","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8424},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Shadow of the Bat (Part 1)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E01.Shadow of the Bat (Part 1)-Bluray-1080p.mkv","size":3000144561,"dateAdded":"2019-08-25T07:43:17.454917Z","sceneName":"Batman.The.Animated.Series.S02E01.Shadow.of.the.Bat.Part.One.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710416,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15659737,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8438},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Shadow of the Bat (Part 2)-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E02.Shadow of the Bat (Part 2)-Bluray-1080p.mkv","size":2996615357,"dateAdded":"2019-08-25T07:44:54.776109Z","sceneName":"Batman.The.Animated.Series.S02E02.Shadow.of.the.Bat.Part.Two.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710939,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15703827,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8439},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Mudslide-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E03.Mudslide-Bluray-1080p.mkv","size":2996967715,"dateAdded":"2019-08-25T07:46:47.033347Z","sceneName":"Batman.The.Animated.Series.S02E03.Mudslide.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711518,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15727556,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8440},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Worry Men-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E04.The Worry Men-Bluray-1080p.mkv","size":2989105784,"dateAdded":"2019-08-25T07:48:28.4521Z","sceneName":"Batman.The.Animated.Series.S02E04.The.Worry.Men.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1712280,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15689972,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8441},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Paging the Crime Doctor-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E05.Paging the Crime Doctor-Bluray-1080p.mkv","size":2994329389,"dateAdded":"2019-08-25T07:50:13.249864Z","sceneName":"Batman.The.Animated.Series.S02E05.Paging.the.Crime.Doctor.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1711424,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15720143,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8442},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E06.House and Garden-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E06.House and Garden-Bluray-1080p.mkv","size":3001433592,"dateAdded":"2019-08-25T07:52:14.443572Z","sceneName":"Batman.The.Animated.Series.S02E06.House.and.Garden.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1709613,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15729413,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8443},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Sideshow-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E07.Sideshow-Bluray-1080p.mkv","size":2999920773,"dateAdded":"2019-08-25T07:53:44.086556Z","sceneName":"Batman.The.Animated.Series.S02E07.Sideshow.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1712356,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15729448,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8444},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Avatar-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E08.Avatar-Bluray-1080p.mkv","size":2998923766,"dateAdded":"2019-08-25T07:55:38.395198Z","sceneName":"Batman.The.Animated.Series.S02E08.Avatar.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710689,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15725697,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8445},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Trial-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E09.Trial-Bluray-1080p.mkv","size":2991807954,"dateAdded":"2019-08-25T07:57:25.821342Z","sceneName":"Batman.The.Animated.Series.S02E09.Trial.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710186,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":15714992,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8446},{"seriesId":159,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Harlequinade-Bluray-1080p.mkv","path":"\/tv\/Batman- The Animated Series\/Season 02\/S02E10.Harlequinade-Bluray-1080p.mkv","size":3092007476,"dateAdded":"2019-08-25T07:59:09.007241Z","sceneName":"Batman.The.Animated.Series.S02E10.Harlequinade.1080p.BluRay.DTSHD-MA.H.264-BTN","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1710871,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English \/ French \/ Spanish \/ English \/ English \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":15710022,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":"English \/ French \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8447}],"queue":[]},"173":{"series":{"title":"Junji Ito Collection","alternateTitles":[{"title":"Ito Junji: Collection","sceneSeasonNumber":-1}],"sortTitle":"junji ito collection","status":"ended","ended":true,"overview":"TV anime based on internationally acclaimed Japanese artist Junji Ito (Gyo, Uzumaki, Tomie)'s horror manga stories.","previousAiring":"2018-03-22T15:00:00Z","network":"WOWOW","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/178\/banner.jpg?lastWrite=637057074437502320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/335237-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/178\/poster.jpg?lastWrite=637057074438142310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/335237-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/178\/fanart.jpg?lastWrite=637103832873110610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/335237-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-03-22T15:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":6812543669,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/Junji Ito Collection","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":335237,"tvRageId":0,"tvMazeId":32967,"firstAired":"2018-01-05T00:00:00Z","seriesType":"standard","cleanTitle":"junjiitocollection","imdbId":"tt7814574","titleSlug":"junji-ito-collection","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Fantasy","Horror","Suspense"],"tags":[],"added":"2019-10-03T13:50:41.779696Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":14,"sizeOnDisk":6812543669,"percentOfEpisodes":100.0},"id":178},"episodes":[{"seriesId":178,"episodeFileId":9441,"seasonNumber":1,"episodeNumber":1,"title":"Collection No. 068: Souichi's Convenient Curses \/ Collection No. 090: Hellish Doll Funeral","airDate":"2018-01-05","airDateUtc":"2018-01-04T15:00:00Z","overview":"From the master of horror manga, this anthology series shines a light on many of Junji Ito's twisted stories, starting with introducing the gloomy, curse-obsessed Souichi. Then, in the second story, a strange plague forces a couple to make a difficult decision about their child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13180},{"seriesId":178,"episodeFileId":9442,"seasonNumber":1,"episodeNumber":2,"title":"Collection No. 041: Fashion Model \/ Collection No. 084: Long Dreams","airDate":"2018-01-12","airDateUtc":"2018-01-11T15:00:00Z","overview":"In \"Fashion Model\", a group of amateur filmmakers get more than they bargained for when they cast a strange looking actress in their new indie movie. And in one of the most critically acclaimed stories from Junji Ito, \"Long Dream\" asks questions about the nature of reality and perception of time in the face of the mind's ability to warp both.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13181},{"seriesId":178,"episodeFileId":9410,"seasonNumber":1,"episodeNumber":3,"title":"Collection No. 080: The Crossroads Pretty Boy - The Lovesick Dead \/ Collection No. 066: Slug Girl","airDate":"2018-01-19","airDateUtc":"2018-01-18T15:00:00Z","overview":"Crossroads divination is a type of fortune telling in many different cultures, but in this episode's first story, it becomes something far more dangerous. Then, in the second story, a family who are being troubled by slugs all over their property find out just how much worse their plight can become.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13182},{"seriesId":178,"episodeFileId":9411,"seasonNumber":1,"episodeNumber":4,"title":"Collection No. 034: Shiver \/ Collection No. 060: House of Puppets","airDate":"2018-01-26","airDateUtc":"2018-01-25T15:00:00Z","overview":"In Shiver, a young boy notices the puzzling disease affecting his neighbor, and recognizes it's symptoms from his own past. And in House of Puppets, a puppeteer family finds themselves questioning who exactly is pulling the strings in their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13183},{"seriesId":178,"episodeFileId":9412,"seasonNumber":1,"episodeNumber":5,"title":"Collection No. 040: The Ongoing Tale of Oshikiri Collection \/ Collection No. 049: Cloth Teacher","airDate":"2018-02-02","airDateUtc":"2018-02-01T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13184},{"seriesId":178,"episodeFileId":9413,"seasonNumber":1,"episodeNumber":6,"title":"Collection No. 067: Window Next Door \/ Collection No. 123: Gentle Goodbye","airDate":"2018-02-09","airDateUtc":"2018-02-08T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13185},{"seriesId":178,"episodeFileId":9443,"seasonNumber":1,"episodeNumber":7,"title":"Collection No. 022: Used Record \/ Collection No. 038: Town of No Roads","airDate":"2018-02-16","airDateUtc":"2018-02-15T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13186},{"seriesId":178,"episodeFileId":9444,"seasonNumber":1,"episodeNumber":8,"title":"Collection No. 088: Honored Ancestors \/ Collection No. 027: The Circus Comes To Town","airDate":"2018-02-23","airDateUtc":"2018-02-22T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13187},{"seriesId":178,"episodeFileId":9445,"seasonNumber":1,"episodeNumber":9,"title":"Collection No. 072: Painter \/ Collection No. 058: Blood-bubble Bushes","airDate":"2018-03-02","airDateUtc":"2018-03-01T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13188},{"seriesId":178,"episodeFileId":9446,"seasonNumber":1,"episodeNumber":10,"title":"Collection No. 107: Greased \/ Collection No. 026: Bridge","airDate":"2018-03-09","airDateUtc":"2018-03-08T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13189},{"seriesId":178,"episodeFileId":9447,"seasonNumber":1,"episodeNumber":11,"title":"Collection No. 055: Supernatural Transfer Student \/ Collection No. 035: Scarecrow","airDate":"2018-03-16","airDateUtc":"2018-03-15T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13190},{"seriesId":178,"episodeFileId":9448,"seasonNumber":1,"episodeNumber":12,"title":"Collection No. 116: Smashed \/ Collection No. 071: Rumors","airDate":"2018-03-23","airDateUtc":"2018-03-22T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":13191},{"seriesId":178,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Tomie, Part 1","airDate":"2018-04-27","airDateUtc":"2018-04-26T15:00:00Z","overview":"Tomie Kawakami is a femme fatale with long black hair and a beauty mark just under her left eye. She can seduce nearly any man, and drive them to murder as well, even though the victim is often Tomie herself. While one lover seeks to keep her for himself, another grows terrified of the immortal succubus. But soon they realize no matter how many times they kill her, the world will never be free of Tomie.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13178},{"seriesId":178,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Tomie, Part 2","airDate":"2018-05-25","airDateUtc":"2018-05-24T15:00:00Z","overview":"Tomie Kawakami is a femme fatale with long black hair and a beauty mark just under her left eye. She can seduce nearly any man, and drive them to murder as well, even though the victim is often Tomie herself. While one lover seeks to keep her for himself, another grows terrified of the immortal succubus. But soon they realize no matter how many times they kill her, the world will never be free of Tomie.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13179}],"episodeFile":[{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 03 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 03 [1080p].mkv","size":568036617,"dateAdded":"2019-10-03T19:47:11.62398Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9410},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 04 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 04 [1080p].mkv","size":567123289,"dateAdded":"2019-10-03T19:47:11.6861Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9411},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 05 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 05 [1080p].mkv","size":566539482,"dateAdded":"2019-10-03T19:47:11.749848Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9412},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 06 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 06 [1080p].mkv","size":567130976,"dateAdded":"2019-10-03T19:47:11.806298Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9413},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 01 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 01 [1080p].mkv","size":568122780,"dateAdded":"2019-10-03T21:07:35.150819Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9441},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 02 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 02 [1080p].mkv","size":568088240,"dateAdded":"2019-10-03T21:07:35.215622Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9442},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 07 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 07 [1080p].mkv","size":568056939,"dateAdded":"2019-10-03T21:07:35.280675Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9443},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 08 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 08 [1080p].mkv","size":568512406,"dateAdded":"2019-10-03T21:07:35.355459Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9444},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 09 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 09 [1080p].mkv","size":568496749,"dateAdded":"2019-10-03T21:07:35.419437Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9445},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 10 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 10 [1080p].mkv","size":568318421,"dateAdded":"2019-10-03T21:07:35.477427Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9446},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 11 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 11 [1080p].mkv","size":568447948,"dateAdded":"2019-10-03T21:07:35.533285Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9447},{"seriesId":178,"seasonNumber":1,"relativePath":"Season 1\/[HorribleSubs] Ito Junji Collection - 12 [1080p].mkv","path":"\/tv\/Junji Ito Collection\/Season 1\/[HorribleSubs] Ito Junji Collection - 12 [1080p].mkv","size":565669822,"dateAdded":"2019-10-03T21:07:35.591111Z","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3072000,"videoCodec":"x264","videoFps":23.81,"resolution":"1920x1080","runTime":"23:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9448}],"queue":[]},"175":{"series":{"title":"The Triangle","alternateTitles":[],"sortTitle":"triangle","status":"ended","ended":true,"overview":"Billionaire Eric Benirall assembles a team of experts in many fields to investigate why many of his ships have gone missing in the Bermuda Triangle. He chooses tabloid journalist Howard Thomas, ocean resource engineer Emily Patterson, scientist\/adventurer Bruce Gellar, and psychic Stan Latham. They join forces as Benirall promises them unlimited funding for their projects and the chance for a once in a lifetime experience.","previousAiring":"2005-12-07T05:00:00Z","network":"Syfy","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/176\/banner.jpg?lastWrite=637052936257320970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/32982-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/176\/poster.jpg?lastWrite=637058983965985860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75599-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/176\/fanart.jpg?lastWrite=637052936247361160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75599-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2005-12-07T05:00:00Z","episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":3,"sizeOnDisk":7668769981,"percentOfEpisodes":100.0}}],"year":2005,"path":"\/tv\/The Triangle","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":75599,"tvRageId":6768,"tvMazeId":2022,"firstAired":"2005-12-05T00:00:00Z","seriesType":"standard","cleanTitle":"thetriangle","imdbId":"tt0452573","titleSlug":"the-triangle","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Mini-Series","Science Fiction"],"tags":[],"added":"2019-09-28T18:53:43.147289Z","ratings":{"votes":285,"value":6.5},"statistics":{"seasonCount":1,"episodeFileCount":3,"episodeCount":3,"totalEpisodeCount":4,"sizeOnDisk":7668769981,"percentOfEpisodes":100.0},"id":176},"episodes":[{"seriesId":176,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Sci Fi Inside: The Triangle","airDate":"2005-11-27","airDateUtc":"2005-11-27T05:00:00Z","overview":"A special featurette detailing the making of SciFi original mini-series The Triangle. Interviews include executive producers Bryan Singer and Dean Devlin, executive producer\/writer Rockne S. O'Bannon, director Craig R. Baxley, all the six main cast members, and some of the the special effects crew. Also features behind-the-scenes footage and clips from the mini-series.\r\nTopics discussed were the special effects and the crew behind them, assembling the cast and the chemistry between actors, characters' backgrounds, writing the story, shooting in Cape Town, South Africa, the sets and equipment used, and -- special effects (again).","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":13110},{"seriesId":176,"episodeFileId":10338,"seasonNumber":1,"episodeNumber":1,"title":"Part 1","airDate":"2005-12-05","airDateUtc":"2005-12-05T05:00:00Z","overview":"A shipping company employs four people \u2013 a reporter, a psychic, a meteorologist and an oceanographer \u2013 to discover the secret of the Bermuda Triangle. It describes a region in the western part of the North Atlantic Ocean which is notorious for the disappearance of aircraft and surface vessels in mysterious circumstances.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13111},{"seriesId":176,"episodeFileId":10339,"seasonNumber":1,"episodeNumber":2,"title":"Part 2","airDate":"2005-12-06","airDateUtc":"2005-12-06T05:00:00Z","overview":"Benirall's team is captured and interrogated by mysterious military personnel in an underwater facility. Afterwards, the team members wake up on a beach to find out their realities have been altered.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13112},{"seriesId":176,"episodeFileId":10340,"seasonNumber":1,"episodeNumber":3,"title":"Part 3","airDate":"2005-12-07","airDateUtc":"2005-12-07T05:00:00Z","overview":"Stormy weather is brewing over the Bermuda Triangle. Benirall's personal motives for hiring the team are exposed. The Navy's connection with the events is revealed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13113}],"episodeFile":[{"seriesId":176,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Part 1-WEBDL-1080p.mkv","path":"\/tv\/The Triangle\/Season 01\/S01E01.Part 1-WEBDL-1080p.mkv","size":2971782536,"dateAdded":"2019-11-28T19:46:52.427359Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4093983,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:28:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10338},{"seriesId":176,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Part 2-WEBDL-1080p.mkv","path":"\/tv\/The Triangle\/Season 01\/S01E02.Part 2-WEBDL-1080p.mkv","size":2262973912,"dateAdded":"2019-11-28T19:47:09.549376Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":366901,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3257115,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:23:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10339},{"seriesId":176,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Part 3-WEBDL-1080p.mkv","path":"\/tv\/The Triangle\/Season 01\/S01E03.Part 3-WEBDL-1080p.mkv","size":2434013533,"dateAdded":"2019-11-28T19:47:25.381377Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":444810,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3433123,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:23:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10340}],"queue":[]},"176":{"series":{"title":"Dan Vs.","alternateTitles":[],"sortTitle":"dan vs","status":"ended","ended":true,"overview":"Dan thinks the whole world is against him. Maybe it is, and maybe it isn't -- not even his laid-back friend Chris is totally sure. Maybe Dan's just imagining it all. But, like Chris, you can't help going along for the ride when Dan dreams up his wild plots to get even with whoever or whatever he thinks is out to get him.","previousAiring":"2013-03-10T02:00:00Z","network":"The Hub","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/177\/banner.jpg?lastWrite=637056570824611380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/219851-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/177\/poster.jpg?lastWrite=637513593083679470","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/219851\/posters\/6037021072311.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/177\/fanart.jpg?lastWrite=637056570811531600","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/219851-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2011-07-03T01:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":14291551089,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2012-06-24T01:00:00Z","episodeFileCount":18,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":11753655290,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2013-03-10T02:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9892539233,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Dan Vs","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":219851,"tvRageId":27120,"tvMazeId":5630,"firstAired":"2011-01-01T00:00:00Z","seriesType":"standard","cleanTitle":"danvs","imdbId":"tt1675276","titleSlug":"dan-vs","rootFolderPath":"\/tv\/","genres":["Animation","Comedy"],"tags":[],"added":"2019-10-02T23:51:20.159552Z","ratings":{"votes":87,"value":9.7},"statistics":{"seasonCount":3,"episodeFileCount":53,"episodeCount":53,"totalEpisodeCount":53,"sizeOnDisk":35937745612,"percentOfEpisodes":100.0},"id":177},"episodes":[{"seriesId":177,"episodeFileId":18785,"seasonNumber":1,"episodeNumber":1,"title":"New Mexico","airDate":"2011-01-01","airDateUtc":"2011-01-02T02:00:00Z","overview":"Dan's grudge against the state of New Mexico leads to a road trip with his best friend Chris and Chris's wife, Elise.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13122},{"seriesId":177,"episodeFileId":18786,"seasonNumber":1,"episodeNumber":2,"title":"The Wolf-Man","airDate":"2011-01-01","airDateUtc":"2011-01-02T02:30:00Z","overview":"When Dan discovers mysterious scratches on his car, he plots revenge against the only culprit he believes could be responsible... The Wolf-Man.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13123},{"seriesId":177,"episodeFileId":18787,"seasonNumber":1,"episodeNumber":3,"title":"The Dentist","airDate":"2011-01-08","airDateUtc":"2011-01-09T02:00:00Z","overview":"Dan is convinced his dentist is evil and enlists Chris to help him expose the fiend's secret agenda.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13124},{"seriesId":177,"episodeFileId":18788,"seasonNumber":1,"episodeNumber":4,"title":"The Ninja","airDate":"2011-01-15","airDateUtc":"2011-01-16T02:00:00Z","overview":"Dan discovers an unlikely ninja vendetta.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13125},{"seriesId":177,"episodeFileId":18789,"seasonNumber":1,"episodeNumber":5,"title":"The Animal Shelter","airDate":"2011-01-22","airDateUtc":"2011-01-23T02:00:00Z","overview":"Noise from the animal shelter keeps Dan awake, so he vows revenge.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13126},{"seriesId":177,"episodeFileId":18790,"seasonNumber":1,"episodeNumber":6,"title":"Canada","airDate":"2011-01-29","airDateUtc":"2011-01-30T02:00:00Z","overview":"Dan and Chris hit the road to get even with their friendly neighbor to the north, Canada.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13127},{"seriesId":177,"episodeFileId":18791,"seasonNumber":1,"episodeNumber":7,"title":"Traffic","airDate":"2011-02-26","airDateUtc":"2011-02-27T02:00:00Z","overview":"Gridlock motivates Dan to seek revenge against traffic in the city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13128},{"seriesId":177,"episodeFileId":18792,"seasonNumber":1,"episodeNumber":8,"title":"Ye Olde Shakespeare Dinner Theatre","airDate":"2011-03-05","airDateUtc":"2011-03-06T02:00:00Z","overview":"Displeased by the quality of a Shakespeare performance at a local dinner theater, Dan decides the only solution is to shut the theater down for good.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13129},{"seriesId":177,"episodeFileId":18793,"seasonNumber":1,"episodeNumber":9,"title":"Baseball","airDate":"2011-03-12","airDateUtc":"2011-03-13T02:00:00Z","overview":"Dan seeks revenge on baseball when the World Series preempts his favorite TV program.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13130},{"seriesId":177,"episodeFileId":18794,"seasonNumber":1,"episodeNumber":10,"title":"The Salvation Armed Forces","airDate":"2011-03-19","airDateUtc":"2011-03-20T01:00:00Z","overview":"Dan goes to war after his car is accidentally donated to charity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13131},{"seriesId":177,"episodeFileId":18795,"seasonNumber":1,"episodeNumber":11,"title":"The Beach","airDate":"2011-03-26","airDateUtc":"2011-03-27T01:00:00Z","overview":"Dan tries to destroy the beach after his car is smashed up by Beach traffic.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13132},{"seriesId":177,"episodeFileId":18796,"seasonNumber":1,"episodeNumber":12,"title":"George Washington","airDate":"2011-04-02","airDateUtc":"2011-04-03T01:00:00Z","overview":"After a tree falls on top of Dan's car, Dan blames George Washington.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13133},{"seriesId":177,"episodeFileId":18797,"seasonNumber":1,"episodeNumber":13,"title":"Technology","airDate":"2011-04-09","airDateUtc":"2011-04-10T01:00:00Z","overview":"After Dan's brand-new computer becomes obsolete right when it needs to be repaired, Dan heads out to Silicon Valley to take down Barry Ditmer, the CEO of the tech company that produced it. Meanwhile, Elise gets assigned to protect Ditmer from an unidentified threatenning caller (Dan), until he decides to use Elise as the first subject of his mind control technology, turning her into his slave.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13134},{"seriesId":177,"episodeFileId":18798,"seasonNumber":1,"episodeNumber":14,"title":"The Barber","airDate":"2011-04-16","airDateUtc":"2011-04-17T01:00:00Z","overview":"Dan swears revenge against his barber after he gives Dan a bad haircut.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13135},{"seriesId":177,"episodeFileId":18799,"seasonNumber":1,"episodeNumber":15,"title":"Art","airDate":"2011-04-30","airDateUtc":"2011-05-01T01:00:00Z","overview":"Dan tries to destroy the artist who decorated his car without asking permission.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13136},{"seriesId":177,"episodeFileId":18800,"seasonNumber":1,"episodeNumber":16,"title":"Elise's Parents","airDate":"2011-05-14","airDateUtc":"2011-05-15T01:00:00Z","overview":"Dan plots revenge on Elise's parents after they interfere with his social life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13137},{"seriesId":177,"episodeFileId":18801,"seasonNumber":1,"episodeNumber":17,"title":"The Fancy Restaurant","airDate":"2011-05-21","airDateUtc":"2011-05-22T01:00:00Z","overview":"Dan's favorite sandwich shop gets closed down, so Dan goes after the new gourmet restaurant that replaced it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13138},{"seriesId":177,"episodeFileId":18802,"seasonNumber":1,"episodeNumber":18,"title":"Dan","airDate":"2011-05-28","airDateUtc":"2011-05-29T01:00:00Z","overview":"Dan brings tyranny to a man who steals his identity.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13139},{"seriesId":177,"episodeFileId":18803,"seasonNumber":1,"episodeNumber":19,"title":"The Family Camping Trip","airDate":"2011-06-04","airDateUtc":"2011-06-05T01:00:00Z","overview":"When Chris decides to go on a camping trip with Elise and her family instead of hanging out with Dan, Dan vows to ruin the trip for everyone. Guest starring Meredith Baxter and Michael Gross as Elise's Parents and Daran Norris as Colby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13140},{"seriesId":177,"episodeFileId":18804,"seasonNumber":1,"episodeNumber":20,"title":"Burgerphile","airDate":"2011-06-18","airDateUtc":"2011-06-19T01:00:00Z","overview":"When a fast food restaurant gets Dan's order wrong and the megalomaniac manager, Jeff, refuses to correct his mistake, Dan chains himself to the restaurant counter as a protest, inadvertedly attracting the attention of the cashier, Hortence, who is attracted to \"determined men\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13141},{"seriesId":177,"episodeFileId":18805,"seasonNumber":1,"episodeNumber":21,"title":"The Magician","airDate":"2011-06-25","airDateUtc":"2011-06-26T01:00:00Z","overview":"When a street magician named Magnifico the Magnificent publicly reveals Dan's underwear and steals a necklace Chris was planning to give to Elise, Dan sets out to prove all magicians are frauds, with Chris in tow to try and get the necklace back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13142},{"seriesId":177,"episodeFileId":18806,"seasonNumber":1,"episodeNumber":22,"title":"The Lemonade Stand Gang","airDate":"2011-07-02","airDateUtc":"2011-07-03T01:00:00Z","overview":"Dan starts a crusade against a gang of thuggish children who are aggressively selling lemonade outside his apartment building.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13143},{"seriesId":177,"episodeFileId":18767,"seasonNumber":2,"episodeNumber":1,"title":"The Family Thanksgiving","airDate":"2011-11-19","airDateUtc":"2011-11-20T02:00:00Z","overview":"Dan is surprised when Elise's parents invite him to their family Thanksgiving, but soon swears revenge when he learns that they only want to steal his secret family recipe for deviled eggs.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13144},{"seriesId":177,"episodeFileId":18768,"seasonNumber":2,"episodeNumber":2,"title":"The Mall Santa","airDate":"2011-12-17","airDateUtc":"2011-12-18T02:00:00Z","overview":"When Dan and Chris land jobs at the mall's Christmas display, Dan vows revenge on a curmudgeonly Mall Santa who despises Christmas. Meanwhile, Elise is assigned by the secret agency to take down the assassin under the codename of \"The Snowman\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13145},{"seriesId":177,"episodeFileId":18769,"seasonNumber":2,"episodeNumber":3,"title":"The Neighbors","airDate":"2012-01-28","airDateUtc":"2012-01-29T02:00:00Z","overview":"Dan fears his new neighbors are cannibals plotting to eat him, so he tries to run them out of town.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13146},{"seriesId":177,"episodeFileId":18770,"seasonNumber":2,"episodeNumber":4,"title":"Dancing","airDate":"2012-02-04","airDateUtc":"2012-02-05T02:00:00Z","overview":"When Dan goes on an anti-dance crusade, he end up interfering with Chris and Elise's plan to enter a dance contest. Elise then exiles him to a ghost town populated by feral dancers, where he must learn the ancient art of \"fight-dancing\" to survive.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13147},{"seriesId":177,"episodeFileId":18771,"seasonNumber":2,"episodeNumber":5,"title":"The Bank","airDate":"2012-02-11","airDateUtc":"2012-02-12T02:00:00Z","overview":"After Dan's bank raises their ATM fees, Dan enlists Chris and Elise to help him pull off a heist to reclaim his money.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13148},{"seriesId":177,"episodeFileId":18772,"seasonNumber":2,"episodeNumber":6,"title":"The Monster Under The Bed","airDate":"2012-02-18","airDateUtc":"2012-02-19T02:00:00Z","overview":"Dan, Chris and Elise try to get rid of the monster that Dan accidentally summons from beneath his bed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13149},{"seriesId":177,"episodeFileId":18773,"seasonNumber":2,"episodeNumber":7,"title":"Golf","airDate":"2012-02-25","airDateUtc":"2012-02-26T02:00:00Z","overview":"Chris shirks his responsibilities to go golfing with his boss Mr. Bambridge, so Dan and Elise team up to put an end to his new hobby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13150},{"seriesId":177,"episodeFileId":18774,"seasonNumber":2,"episodeNumber":8,"title":"The Gym","airDate":"2012-03-03","airDateUtc":"2012-03-04T02:00:00Z","overview":"Dan gets tricked into signing up for a long-term gym membership, and while fighting it, uncovers an alarming conspiracy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13151},{"seriesId":177,"episodeFileId":18775,"seasonNumber":2,"episodeNumber":9,"title":"The Wedding","airDate":"2012-03-24","airDateUtc":"2012-03-25T01:00:00Z","overview":"As they sit in a jail cell, Chris and Dan reminisce about Dan's past attempts to sabotage Chris' relationship with Elise.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13152},{"seriesId":177,"episodeFileId":18776,"seasonNumber":2,"episodeNumber":10,"title":"The Catburglar","airDate":"2012-03-31","airDateUtc":"2012-04-01T01:00:00Z","overview":"Dan's cat, Mr. Mumbles goes missing drawing him into a thriller and the arms of a captivating, mysterious woman.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13153},{"seriesId":177,"episodeFileId":18777,"seasonNumber":2,"episodeNumber":11,"title":"The Dinosaur","airDate":"2012-04-07","airDateUtc":"2012-04-08T01:00:00Z","overview":"A rampaging dinosaur destroys Dan's car, so he and Chris partner up with a croc hunter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13154},{"seriesId":177,"episodeFileId":18778,"seasonNumber":2,"episodeNumber":12,"title":"Stupidity","airDate":"2012-04-14","airDateUtc":"2012-04-15T01:00:00Z","overview":"Dan seeks out the Governor for revenge for America's sinking I.Q.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13155},{"seriesId":177,"episodeFileId":18779,"seasonNumber":2,"episodeNumber":13,"title":"The Telemarketer","airDate":"2012-05-19","airDateUtc":"2012-05-20T01:00:00Z","overview":"Dan plots to end the persistant phone calls of a telemarketer, but is soon surprised to find out he knows the caller.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13156},{"seriesId":177,"episodeFileId":18780,"seasonNumber":2,"episodeNumber":14,"title":"Reality TV","airDate":"2012-05-26","airDateUtc":"2012-05-27T01:00:00Z","overview":"Dan tries to ruin Reality TV after he's humiliated by a producer named Buddy Starr, but he still wants to win the trip to Astronaut Sleepaway Camp.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13157},{"seriesId":177,"episodeFileId":18781,"seasonNumber":2,"episodeNumber":15,"title":"Parents","airDate":"2012-06-02","airDateUtc":"2012-06-03T01:00:00Z","overview":"Displays of poor parenting motivates Dan to adopt a child of his own to prove he could be a terrific dad.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13158},{"seriesId":177,"episodeFileId":18782,"seasonNumber":2,"episodeNumber":16,"title":"Gigundo-Mart","airDate":"2012-06-09","airDateUtc":"2012-06-10T01:00:00Z","overview":"Dan wants to drive a new superstore out of business, because it's hurting his favorite stores and encouraging Chris to purchase too many items in bulk.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13159},{"seriesId":177,"episodeFileId":18783,"seasonNumber":2,"episodeNumber":17,"title":"Chris","airDate":"2012-06-16","airDateUtc":"2012-06-17T01:00:00Z","overview":"Dan and Chris battle over a piece of sci-fi film memorabilia that may destroy their friendship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13160},{"seriesId":177,"episodeFileId":18784,"seasonNumber":2,"episodeNumber":18,"title":"Wild West Town","airDate":"2012-06-23","airDateUtc":"2012-06-24T01:00:00Z","overview":"Dan goes to a low quality dude ranch where he discovers he can't get a refund.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13161},{"seriesId":177,"episodeFileId":18754,"seasonNumber":3,"episodeNumber":1,"title":"Anger Management","airDate":"2012-11-17","airDateUtc":"2012-11-18T02:00:00Z","overview":"Dan is forced to take a course in anger management to control his destructive instincts, and finds a kindred spirit in the mild-mannered, but incredibly unstable class instructor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13162},{"seriesId":177,"episodeFileId":18755,"seasonNumber":3,"episodeNumber":2,"title":"The Mummy","airDate":"2012-11-24","airDateUtc":"2012-11-25T02:00:00Z","overview":"When the object of Dan\u2019s revenge turns out to be a laid back, undead Egyptian king who won\u2019t leave him alone, Dan resorts to some ancient means of pest control.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13163},{"seriesId":177,"episodeFileId":18756,"seasonNumber":3,"episodeNumber":3,"title":"The Boss","airDate":"2012-12-01","airDateUtc":"2012-12-02T02:00:00Z","overview":"When Dan is forced to get a temp job to pay his rent, his aggressive behavior helps him climb the corporate ladder.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13164},{"seriesId":177,"episodeFileId":18757,"seasonNumber":3,"episodeNumber":4,"title":"The Mechanic","airDate":"2012-12-08","airDateUtc":"2012-12-09T02:00:00Z","overview":"Dan learns that his mechanic has been using parts of Dan's car to build a giant robot and he gets in on the action for revenge.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13165},{"seriesId":177,"episodeFileId":18758,"seasonNumber":3,"episodeNumber":5,"title":"The High School Reunion","airDate":"2012-12-15","airDateUtc":"2012-12-16T02:00:00Z","overview":"Dan plans to pull the ultimate prank on his high school reunion out of revenge for not inviting him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13166},{"seriesId":177,"episodeFileId":18759,"seasonNumber":3,"episodeNumber":6,"title":"The Common Cold","airDate":"2013-01-19","airDateUtc":"2013-01-20T02:00:00Z","overview":"Dan heads to the Department of Controlling Diseases in hopes of ridding the world from the common cold.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13167},{"seriesId":177,"episodeFileId":18760,"seasonNumber":3,"episodeNumber":7,"title":"The DMV","airDate":"2013-01-26","airDateUtc":"2013-01-27T02:00:00Z","overview":"When Dan is categorized as a difficult case for a routine traffic issue, he must use all his wits and driving skills to renew his license.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13168},{"seriesId":177,"episodeFileId":18761,"seasonNumber":3,"episodeNumber":8,"title":"The Ski Trip","airDate":"2013-02-02","airDateUtc":"2013-02-03T02:00:00Z","overview":"A sudden blizzard strands Dan inside an isolated cabin with Elise while Chris kicks back and drinks hot cocoa with new found friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13169},{"seriesId":177,"episodeFileId":18762,"seasonNumber":3,"episodeNumber":9,"title":"Jury Duty","airDate":"2013-02-09","airDateUtc":"2013-02-10T02:00:00Z","overview":"Dan serves on jury duty and empathizes with the defendant in a trial, so he plots to get a non-guilty verdict.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13170},{"seriesId":177,"episodeFileId":18763,"seasonNumber":3,"episodeNumber":10,"title":"Vegetables","airDate":"2013-02-16","airDateUtc":"2013-02-17T02:00:00Z","overview":"Dan's favorite burger joint, Burgerphile, starts serving vegetables instead of burgers and french fries, so he goes on a mission to eradicate vegetables from the city.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13171},{"seriesId":177,"episodeFileId":18764,"seasonNumber":3,"episodeNumber":11,"title":"The Superhero","airDate":"2013-02-23","airDateUtc":"2013-02-24T02:00:00Z","overview":"Dan takes revenge on a superhero for crushing his car.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13172},{"seriesId":177,"episodeFileId":18765,"seasonNumber":3,"episodeNumber":12,"title":"The Family Cruise","airDate":"2013-03-02","airDateUtc":"2013-03-03T02:00:00Z","overview":"Dan can't escape the ship's never ending family activities.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13173},{"seriesId":177,"episodeFileId":18766,"seasonNumber":3,"episodeNumber":13,"title":"Summer Camp","airDate":"2013-03-09","airDateUtc":"2013-03-10T02:00:00Z","overview":"Dan and Chris recount their first adventure together as friends, meeting in summer camp and joining forces to take on a bullying camp counselor bent on making their young lives miserable.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":13174}],"episodeFile":[{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Anger Management-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E01.Anger Management-WEBDL-1080p.mkv","size":600461906,"dateAdded":"2021-08-08T14:48:51.374586Z","sceneName":"Dan.Vs.S03E01.1080p.AMZN.WEB-DL.DD2.0.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3383243,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18754},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Mummy-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E02.The Mummy-WEBDL-1080p.mkv","size":743461063,"dateAdded":"2021-08-08T14:50:36.389405Z","sceneName":"Dan.Vs.S03E02.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3821793,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18755},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Boss-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E03.The Boss-WEBDL-1080p.mkv","size":814491188,"dateAdded":"2021-08-08T14:52:21.130638Z","sceneName":"Dan.Vs.S03E03.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4258352,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18756},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Mechanic-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E04.The Mechanic-WEBDL-1080p.mkv","size":782846266,"dateAdded":"2021-08-08T14:54:07.965085Z","sceneName":"Dan.Vs.S03E04.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4060300,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18757},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The High School Reunion-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E05.The High School Reunion-WEBDL-1080p.mkv","size":733785544,"dateAdded":"2021-08-08T14:55:52.575038Z","sceneName":"Dan.Vs.S03E05.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3767143,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18758},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E06.The Common Cold-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E06.The Common Cold-WEBDL-1080p.mkv","size":730618633,"dateAdded":"2021-08-08T14:57:37.638575Z","sceneName":"Dan.Vs.S03E06.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3709003,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18759},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The DMV-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E07.The DMV-WEBDL-1080p.mkv","size":660301738,"dateAdded":"2021-08-08T14:59:22.711205Z","sceneName":"Dan.Vs.S03E07.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3422643,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18760},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Ski Trip-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E08.The Ski Trip-WEBDL-1080p.mkv","size":725110362,"dateAdded":"2021-08-08T15:01:07.372673Z","sceneName":"Dan.Vs.S03E08.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3711753,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18761},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Jury Duty-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E09.Jury Duty-WEBDL-1080p.mkv","size":748889799,"dateAdded":"2021-08-08T15:02:52.318366Z","sceneName":"Dan.Vs.S03E09.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3893276,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18762},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Vegetables-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E10.Vegetables-WEBDL-1080p.mkv","size":748209521,"dateAdded":"2021-08-08T15:04:37.347263Z","sceneName":"Dan.Vs.S03E10.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3862696,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18763},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Superhero-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E11.The Superhero-WEBDL-1080p.mkv","size":793243762,"dateAdded":"2021-08-08T15:06:21.226556Z","sceneName":"Dan.Vs.S03E11.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3685113,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18764},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Family Cruise-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E12.The Family Cruise-WEBDL-1080p.mkv","size":1093328784,"dateAdded":"2021-08-08T15:08:07.513402Z","sceneName":"Dan.Vs.S03E12.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5907292,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18765},{"seriesId":177,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Summer Camp-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 03\/S03E13.Summer Camp-WEBDL-1080p.mkv","size":717790667,"dateAdded":"2021-08-08T15:09:55.375782Z","sceneName":"Dan.Vs.S03E13.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3672544,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18766},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Family Thanksgiving-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E01.The Family Thanksgiving-WEBDL-1080p.mkv","size":617481317,"dateAdded":"2021-08-08T15:11:46.962058Z","sceneName":"Dan.Vs.S02E01.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3066032,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18767},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Mall Santa-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E02.The Mall Santa-WEBDL-1080p.mkv","size":695537463,"dateAdded":"2021-08-08T15:13:31.593932Z","sceneName":"Dan.Vs.S02E02.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3533937,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18768},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Neighbors-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E03.The Neighbors-WEBDL-1080p.mkv","size":667207546,"dateAdded":"2021-08-08T15:15:16.11613Z","sceneName":"Dan.Vs.S02E03.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3372907,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18769},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Dancing-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E04.Dancing-WEBDL-1080p.mkv","size":607701570,"dateAdded":"2021-08-08T15:17:00.066125Z","sceneName":"Dan.Vs.S02E04.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3009712,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18770},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Bank-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E05.The Bank-WEBDL-1080p.mkv","size":532261949,"dateAdded":"2021-08-08T15:18:43.85644Z","sceneName":"Dan.Vs.S02E05.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2582800,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18771},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Monster Under The Bed-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E06.The Monster Under The Bed-WEBDL-1080p.mkv","size":607325078,"dateAdded":"2021-08-08T15:20:28.315018Z","sceneName":"Dan.Vs.S02E06.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2999696,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18772},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Golf-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E07.Golf-WEBDL-1080p.mkv","size":651601042,"dateAdded":"2021-08-08T15:22:11.839691Z","sceneName":"Dan.Vs.S02E07.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3270670,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18773},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Gym-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E08.The Gym-WEBDL-1080p.mkv","size":611476203,"dateAdded":"2021-08-08T15:23:55.736574Z","sceneName":"Dan.Vs.S02E08.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3045903,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18774},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Wedding-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E09.The Wedding-WEBDL-1080p.mkv","size":650433118,"dateAdded":"2021-08-08T15:25:39.506863Z","sceneName":"Dan.Vs.S02E09.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3256204,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18775},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Catburglar-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E10.The Catburglar-WEBDL-1080p.mkv","size":568780328,"dateAdded":"2021-08-08T15:27:23.843973Z","sceneName":"Dan.Vs.S02E10.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2855718,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18776},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Dinosaur-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E11.The Dinosaur-WEBDL-1080p.mkv","size":721916123,"dateAdded":"2021-08-08T15:29:07.067573Z","sceneName":"Dan.Vs.S02E11.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3683099,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18777},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Stupidity-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E12.Stupidity-WEBDL-1080p.mkv","size":564729913,"dateAdded":"2021-08-08T15:30:52.570327Z","sceneName":"Dan.Vs.S02E12.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2769787,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18778},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Telemarketer-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E13.The Telemarketer-WEBDL-1080p.mkv","size":678540326,"dateAdded":"2021-08-08T15:32:35.386214Z","sceneName":"Dan.Vs.S02E13.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3449174,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18779},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Reality TV-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E14.Reality TV-WEBDL-1080p.mkv","size":668514370,"dateAdded":"2021-08-08T15:34:20.834183Z","sceneName":"Dan.Vs.S02E14.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3372598,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18780},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Parents-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E15.Parents-WEBDL-1080p.mkv","size":676305170,"dateAdded":"2021-08-08T15:36:05.472951Z","sceneName":"Dan.Vs.S02E15.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3423823,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18781},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Gigundo-Mart-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E16.Gigundo-Mart-WEBDL-1080p.mkv","size":721479536,"dateAdded":"2021-08-08T15:37:49.811615Z","sceneName":"Dan.Vs.S02E16.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3822858,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18782},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Chris-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E17.Chris-WEBDL-1080p.mkv","size":851018581,"dateAdded":"2021-08-08T15:39:35.999377Z","sceneName":"Dan.Vs.S02E17.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4491122,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18783},{"seriesId":177,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Wild West Town-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 02\/S02E18.Wild West Town-WEBDL-1080p.mkv","size":661345657,"dateAdded":"2021-08-08T15:41:22.976453Z","sceneName":"Dan.Vs.S02E18.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3347787,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18784},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E01.New Mexico-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E01.New Mexico-WEBDL-1080p.mkv","size":687895096,"dateAdded":"2021-08-08T15:43:09.599628Z","sceneName":"Dan.Vs.S01E01.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3517086,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18785},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Wolf-Man-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E02.The Wolf-Man-WEBDL-1080p.mkv","size":585220946,"dateAdded":"2021-08-08T15:44:53.888865Z","sceneName":"Dan.Vs.S01E02.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2830036,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18786},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Dentist-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E03.The Dentist-WEBDL-1080p.mkv","size":715378521,"dateAdded":"2021-08-08T15:46:36.96946Z","sceneName":"Dan.Vs.S01E03.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3628324,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18787},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Ninja-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E04.The Ninja-WEBDL-1080p.mkv","size":617126541,"dateAdded":"2021-08-08T15:48:21.3155Z","sceneName":"Dan.Vs.S01E04.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3093730,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18788},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Animal Shelter-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E05.The Animal Shelter-WEBDL-1080p.mkv","size":595027374,"dateAdded":"2021-08-08T15:50:08.166568Z","sceneName":"Dan.Vs.S01E05.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2907770,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18789},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Canada-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E06.Canada-WEBDL-1080p.mkv","size":698522322,"dateAdded":"2021-08-08T15:51:53.212642Z","sceneName":"Dan.Vs.S01E06.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3522144,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18790},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Traffic-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E07.Traffic-WEBDL-1080p.mkv","size":719009035,"dateAdded":"2021-08-08T15:53:37.022068Z","sceneName":"Dan.Vs.S01E07.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3683102,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18791},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Ye Olde Shakespeare Dinner Theatre-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E08.Ye Olde Shakespeare Dinner Theatre-WEBDL-1080p.mkv","size":663019913,"dateAdded":"2021-08-08T15:55:20.263276Z","sceneName":"Dan.Vs.S01E08.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3348080,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18792},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Baseball-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E09.Baseball-WEBDL-1080p.mkv","size":660227577,"dateAdded":"2021-08-08T15:57:03.667807Z","sceneName":"Dan.Vs.S01E09.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3302589,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18793},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Salvation Armed Forces-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E10.The Salvation Armed Forces-WEBDL-1080p.mkv","size":626431235,"dateAdded":"2021-08-08T15:58:47.847323Z","sceneName":"Dan.Vs.S01E10.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3091389,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18794},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Beach-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E11.The Beach-WEBDL-1080p.mkv","size":633747673,"dateAdded":"2021-08-08T16:00:31.639661Z","sceneName":"Dan.Vs.S01E11.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3126666,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18795},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E12.George Washington-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E12.George Washington-WEBDL-1080p.mkv","size":610006296,"dateAdded":"2021-08-08T16:02:15.662474Z","sceneName":"Dan.Vs.S01E12.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2550410,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18796},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Technology-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E13.Technology-WEBDL-1080p.mkv","size":693974550,"dateAdded":"2021-08-08T16:04:00.494879Z","sceneName":"Dan.Vs.S01E13.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3070095,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18797},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Barber-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E14.The Barber-WEBDL-1080p.mkv","size":663888905,"dateAdded":"2021-08-08T16:05:46.439697Z","sceneName":"Dan.Vs.S01E14.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2809851,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18798},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Art-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E15.Art-WEBDL-1080p.mkv","size":680614482,"dateAdded":"2021-08-08T16:07:29.823511Z","sceneName":"Dan.Vs.S01E15.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3411379,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18799},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Elise's Parents-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E16.Elise's Parents-WEBDL-1080p.mkv","size":569664847,"dateAdded":"2021-08-08T16:09:13.429075Z","sceneName":"Dan.Vs.S01E16.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2744051,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18800},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E17.The Fancy Restaurant-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E17.The Fancy Restaurant-WEBDL-1080p.mkv","size":648167509,"dateAdded":"2021-08-08T16:10:58.026196Z","sceneName":"Dan.Vs.S01E17.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3247968,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18801},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Dan-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E18.Dan-WEBDL-1080p.mkv","size":635615171,"dateAdded":"2021-08-08T16:12:42.642544Z","sceneName":"Dan.Vs.S01E18.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3137770,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18802},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Family Camping Trip-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E19.The Family Camping Trip-WEBDL-1080p.mkv","size":499164636,"dateAdded":"2021-08-08T16:14:27.446334Z","sceneName":"Dan.Vs.S01E19.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2330583,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18803},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Burgerphile-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E20.Burgerphile-WEBDL-1080p.mkv","size":610620256,"dateAdded":"2021-08-08T16:16:10.293571Z","sceneName":"Dan.Vs.S01E20.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2992534,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18804},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Magician-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E21.The Magician-WEBDL-1080p.mkv","size":765203351,"dateAdded":"2021-08-08T16:17:53.83286Z","sceneName":"Dan.Vs.S01E21.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3921323,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18805},{"seriesId":177,"seasonNumber":1,"relativePath":"Season 01\/S01E22.The Lemonade Stand Gang-WEBDL-1080p.mkv","path":"\/tv\/Dan Vs\/Season 01\/S01E22.The Lemonade Stand Gang-WEBDL-1080p.mkv","size":713024853,"dateAdded":"2021-08-08T16:19:38.300993Z","sceneName":"Dan.Vs.S01E22.1080p.AMZN.WEB-DL.DD5.1.H.264-Cinefeel","releaseGroup":"Cinefeel","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3607535,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18806}],"queue":[]},"177":{"series":{"title":"The Truth About the Harry Quebert Affair","alternateTitles":[{"title":"La V\u00e9rit\u00e9 sur l'affaire Harry Quebert","seasonNumber":-1},{"title":"La verit\u00e0 sul caso Harry Quebert","seasonNumber":-1}],"sortTitle":"truth about harry quebert affair","status":"ended","ended":true,"overview":"A writer gets caught up in a murder investigation involving his mentor, an esteemed American author. Based on the book of the same name, by Jo\u00ebl Dicker. Created by Jean-Jacques Annaud.\r\nThe Truth About the Harry Quebert Affair follows Harry Quebert, a literary icon who suddenly finds himself indicted for murder after the body of a Nola Kellergan, a 15-year-old girl who has been missing for many years, is found buried on his property.","previousAiring":"2018-11-06T21:00:00Z","network":"Sky Witness","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/200\/banner.jpg?lastWrite=637103833618457090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5b7d2ea5b6a12.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/200\/poster.jpg?lastWrite=637103833621977030","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/339464-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/200\/fanart.jpg?lastWrite=637103833603697360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5b7edc6172bc3.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-11-06T21:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":26279766879,"percentOfEpisodes":100.0}}],"year":2018,"path":"\/tv\/The Truth About the Harry Quebert Affair","qualityProfileId":1,"languageProfileId":2,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":339464,"tvRageId":0,"tvMazeId":31183,"firstAired":"2018-09-04T00:00:00Z","seriesType":"standard","cleanTitle":"thetruthaboutharryquebertaffair","imdbId":"tt7134194","titleSlug":"the-truth-about-the-harry-quebert-affair","rootFolderPath":"\/tv\/","genres":["Crime","Drama","Mini-Series"],"tags":[],"added":"2019-11-04T10:56:49.649694Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":26279766879,"percentOfEpisodes":100.0},"id":200},"episodes":[{"seriesId":200,"episodeFileId":9994,"seasonNumber":1,"episodeNumber":1,"title":"How Does Your Garden Grow","airDate":"2018-09-04","airDateUtc":"2018-09-04T20:00:00Z","overview":"A writer gets caught up in a murder investigation involving his mentor, an esteemed American author.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":14764},{"seriesId":200,"episodeFileId":9995,"seasonNumber":1,"episodeNumber":2,"title":"The Boxing Match","airDate":"2018-09-11","airDateUtc":"2018-09-11T20:00:00Z","overview":"Marcus begins his investigation into Harry's involvement in the Nola Kellergan murder, while receiving threats from an unknown source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":14765},{"seriesId":200,"episodeFileId":9996,"seasonNumber":1,"episodeNumber":3,"title":"The Fourth of July","airDate":"2018-09-18","airDateUtc":"2018-09-18T20:00:00Z","overview":"In 1975, a conflicted Harry attempts to distance himself from Nola. In 2008, more evidence emerges that appears to connect Harry to Nola's remains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":14766},{"seriesId":200,"episodeFileId":9997,"seasonNumber":1,"episodeNumber":4,"title":"Family Matters","airDate":"2018-09-25","airDateUtc":"2018-09-25T20:00:00Z","overview":"As Marcus follows a lead linking Nola to a wealthy and influential member of the community, more details regarding Nola's tragic home life are revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":14767},{"seriesId":200,"episodeFileId":9998,"seasonNumber":1,"episodeNumber":5,"title":"Mirror, Mirror","airDate":"2018-10-02","airDateUtc":"2018-10-02T20:00:00Z","overview":"Marcus explores the link between Nola and Elijah Stern. Harry reflects on an arguably ill advised trip away with Nola.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":14768},{"seriesId":200,"episodeFileId":9999,"seasonNumber":1,"episodeNumber":6,"title":"No Angel","airDate":"2018-10-09","airDateUtc":"2018-10-09T20:00:00Z","overview":"Marcus and Perry receive testimony that casts Nola in a new light, leading to an explosive reaction from Harry.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":14769},{"seriesId":200,"episodeFileId":10000,"seasonNumber":1,"episodeNumber":7,"title":"Persona Non Grata","airDate":"2018-10-16","airDateUtc":"2018-10-16T20:00:00Z","overview":"The anonymous threats against Marcus continue as a hacker gains access to his manuscript, along with every detail of his investigation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":14770},{"seriesId":200,"episodeFileId":10001,"seasonNumber":1,"episodeNumber":8,"title":"Got It All Wrong","airDate":"2018-10-23","airDateUtc":"2018-10-23T20:00:00Z","overview":"Marcus's book is discredited when new facts about Nola's past are revealed. Gahalowood accompanies Marcus to Alabama on another lead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":14771},{"seriesId":200,"episodeFileId":10002,"seasonNumber":1,"episodeNumber":9,"title":"Firebug","airDate":"2018-10-30","airDateUtc":"2018-10-30T21:00:00Z","overview":"Disturbing revelations regarding Nola's upbringing lead Marcus to reevaluate the chain of events that lead to her murder in 1975.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":14772},{"seriesId":200,"episodeFileId":10003,"seasonNumber":1,"episodeNumber":10,"title":"The End","airDate":"2018-11-06","airDateUtc":"2018-11-06T21:00:00Z","overview":"With Harry fleeing to Canada for reasons unknown, and the range of suspects shifting once again, what surprises lurk in the mystery's final chapter?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":14773}],"episodeFile":[{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E01.How Does Your Garden Grow-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E01.How Does Your Garden Grow-WEBRip-1080p.mkv","size":2917477634,"dateAdded":"2019-11-04T14:09:56.693846Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E01.How.Does.Your.Garden.Grow.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8378973,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9994},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Boxing Match-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E02.The Boxing Match-WEBRip-1080p.mkv","size":2669443078,"dateAdded":"2019-11-04T14:10:12.920235Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E02.The.Boxing.Match.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6811516,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"47:45","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9995},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Fourth of July-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E03.The Fourth of July-WEBRip-1080p.mkv","size":2754569013,"dateAdded":"2019-11-04T14:10:29.722324Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E03.The.Fourth.of.July.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6722631,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9996},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Questioni di famiglia-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E04.Questioni di famiglia-WEBRip-1080p.mkv","size":2582884030,"dateAdded":"2019-11-04T14:10:46.537599Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E04.Family.Matters.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6869750,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:50","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9997},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Mirror, Mirror-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E05.Mirror, Mirror-WEBRip-1080p.mkv","size":2608761958,"dateAdded":"2019-11-04T14:11:01.524939Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E05.Mirror.Mirror.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6951749,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:48","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9998},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E06.No Angel-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E06.No Angel-WEBRip-1080p.mkv","size":2570314378,"dateAdded":"2019-11-04T14:11:17.386407Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E06.No.Angel.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6827745,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9999},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Persona Non Grata-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E07.Persona Non Grata-WEBRip-1080p.mkv","size":2690914992,"dateAdded":"2019-11-04T14:11:32.998508Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E07.Persona.Non.Granta.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7150317,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10000},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Got It All Wrong-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E08.Got It All Wrong-WEBRip-1080p.mkv","size":2547951092,"dateAdded":"2019-11-04T14:11:47.252307Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E08.Got.It.All.Wrong.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6144852,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10001},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Firebug-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E09.Firebug-WEBRip-1080p.mkv","size":2615599022,"dateAdded":"2019-11-04T14:12:02.876954Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E09.Firebug.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7161876,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:41","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10002},{"seriesId":200,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The End-WEBRip-1080p.mkv","path":"\/tv\/The Truth About the Harry Quebert Affair\/Season 01\/S01E10.The End-WEBRip-1080p.mkv","size":2321851682,"dateAdded":"2019-11-04T14:12:17.346207Z","sceneName":"The.Truth.About.the.Harry.Quebert.Affair.S01E10.The.End.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5662175,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:06","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10003}],"queue":[]},"178":{"series":{"title":"Grimm","alternateTitles":[],"sortTitle":"grimm","status":"ended","ended":true,"overview":"Nick Burkhardt thought he prepared himself for the realities of working as a homicide detective until he started seeing things he couldn't explain. Nick's life turns upside down when his Aunt Marie reveals they are descendants of an elite group of hunters, known as \"Grimms,\" who fight to keep humanity safe from supernatural creatures. As Nick digs deeper into her past, he realizes that he will have to shoulder the responsibility of his ancestors.","previousAiring":"2017-04-01T00:00:00Z","network":"NBC","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/134\/banner.jpg?lastWrite=637103832768392500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/248736-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/134\/poster.jpg?lastWrite=636871490067718370","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/248736-13.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/134\/fanart.jpg?lastWrite=636871490045318800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/248736-14.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":20,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-05-19T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":16283381513,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2013-05-22T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":8737830949,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2014-05-17T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":7866060310,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2015-05-16T00:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":84481181807,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2016-05-21T00:43:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":11673816047,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2017-04-01T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":45732694815,"percentOfEpisodes":100.0}}],"year":2011,"path":"\/tv\/Grimm","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":248736,"tvRageId":28352,"tvMazeId":10,"firstAired":"2011-10-28T00:00:00Z","seriesType":"standard","cleanTitle":"grimm","imdbId":"tt1830617","titleSlug":"grimm","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy","Horror"],"tags":[],"added":"2019-03-02T18:43:23.23828Z","ratings":{"votes":5829,"value":8.3},"statistics":{"seasonCount":6,"episodeFileCount":123,"episodeCount":123,"totalEpisodeCount":143,"sizeOnDisk":174774965441,"percentOfEpisodes":100.0},"id":134},"episodes":[{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Grimm Guide #1","overview":"Grimm Guide: Bauerschwein, Blutbad, Daemonfeuer, Dickfellig, Eisbiber, Fuchsbau, Geier, Hasslich, Mellifer, Hexenbiest, Hundjager, Jagerbar, Klaustreich, Lausenschlange, Lowen, Mauzhertz, Murcielago, Reinigen, Schakal, Siegbarste, Skalengeck, Skalenzahne, Spinnetod, Steinadler, Wildermann and Ziegevolk.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20416},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Grimm Guide #2","overview":"Grimm Guide: Balam, Coyotl, Cracher-Mortel, Drang-Zorn, Fuchsteufelswild, Genio Innocuo, Gl\u00fchenvolk, Jinnamuru Xunte, K\u00f6nigsschlange, Lebensauger, Luisant-P\u00eacheur, Mauvais Dentes, Musai, Nuckelavee, Raub-Kondor, Scharfblicke, Seelengut, Stangeb\u00e4r, Taureus-Armenta, Volcanalis and Wendigo","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20417},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Grimm Guide #3","overview":"Anubis, Aswang, El Cucuy, Gelumcaedus, Grausen, Hollentier, Koschie, Krampus, Malin Fatal, Manticore, Naiad, Pflichttreue, Wildesheer, Yaguarate","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21524},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Grimm Guide #4","overview":"Excandesco, Folterseele, Gedachtnis Esser, Golem, Heftigauroch, Huntha Lami Muuaji, Indole Gentile, Kallikantzaroi, Luison, Matanca Zumbido, Mishipeshu, Phansigar, Schinderdiv, Varme Tyv, Vulpesmyrca, Waeldreor, Willahara.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21525},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Grimm Guide #5","overview":"Apgadnieka, Barbatus Ossifrage, Fuilcre, Furis Rubian, Hasenfussige Schnecke, Inugami, Kackenkopf, Kitsune, Lycanthrope, Musasat Alsh-shabab, Primal Wu, Quijada Vil, Riesen-ratte, Uhranuti, Ungeziefer Greifer, Vibora Dorada, Wasser Zahne, Weten Ogen, Zauberbiest.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21526},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Grimm Guide #6","overview":"Alpe, Ataktos Fuse, Cupiditas, El Cuegle, Gevatter Tod, Kinoshimobe, Strange Man, Taweret, Zerstorer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21527},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Grimm Sneak Peek","airDate":"2011-10-10","airDateUtc":"2011-10-11T00:00:00Z","overview":"Executive Producer Sean Hayes joins the show's cast and crew as they pull back the curtain on the secret world of fairytales in this behind-the-scenes sneak peek of Grimm.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10777},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"20 Minute Extended Preview","airDate":"2011-10-20","airDateUtc":"2011-10-21T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10778},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Fairytales","airDate":"2011-10-28","airDateUtc":"2011-10-29T00:00:00Z","overview":"The cast explain how the new drama series \"Grimm\" is inspired by the classic, and sometimes terrifying, Grimm's Fairy Tales.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10779},{"seriesId":134,"episodeFileId":18351,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2011-10-28","airDateUtc":"2011-10-29T00:00:00Z","overview":"After the mysterious brutal attack of a local college co-ed, Portland homicide Detective Nick Burkhardt discovers he is descended from an elite line of criminal profilers known as \"Grimms\", charged with keeping balance between humanity and the mythological creatures of the world. As he tries to hide the dangers of his new found calling from his fianc\u00e9e, Juliette Silverton, and his partner, Hank Griffin, he becomes ever more entrenched in the ancient rivalries and alliances of the Grimm world. With help from his reluctant confidant, Monroe, a reformed Grimm creature himself, Nick must navigate through the forces of a larger-than-life mythology.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":10790},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Grimm Makeup & VFX","airDate":"2011-10-29","airDateUtc":"2011-10-30T00:00:00Z","overview":"Oscar winning creature creator and make-up artist Barney Burman joins the cast and crew in an in-depth behind-the-scenes tour of the make-up and visual effects wizardry that goes into each episode of Grimm.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21026},{"seriesId":134,"episodeFileId":18352,"seasonNumber":1,"episodeNumber":2,"title":"Bears Will Be Bears","airDate":"2011-11-04","airDateUtc":"2011-11-05T00:00:00Z","overview":"After a case of breaking and entering has one of the intruders go missing, Nick and Hank talk to a mysterious family whose cultural background blurs the line of right and wrong. Meanwhile, Nick tasks Monroe with the safeguarding Aunt Marie, who was almost killed the night prior by a hexenbiest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":10791},{"seriesId":134,"episodeFileId":18353,"seasonNumber":1,"episodeNumber":3,"title":"Beeware","airDate":"2011-11-11","airDateUtc":"2011-11-12T01:00:00Z","overview":"The station is abuzz as Nick and Hank are called to a case where an innocent flash mob results in a gruesome homicide. As Nick delves further into the investigation, he learns more about his unique family history, and finds himself at odds when he and Hank are assigned to protect a dark character from his recent past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":10792},{"seriesId":134,"episodeFileId":18354,"seasonNumber":1,"episodeNumber":4,"title":"Lonelyhearts","airDate":"2011-11-18","airDateUtc":"2011-11-19T01:00:00Z","overview":"After investigating a strange cluster of female deaths and disappearances, Nick sends Monroe undercover to get a whiff of a hypnotic suspect. In the meantime, a stranger shows up looking to avenge the death of his friend at the hands of a Grimm, but he'll have to get past Captain Renard.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":10793},{"seriesId":134,"episodeFileId":18355,"seasonNumber":1,"episodeNumber":5,"title":"Danse Macabre","airDate":"2011-12-08","airDateUtc":"2011-12-09T01:00:00Z","overview":"Nick and Hank's investigation of a dead high school teacher leads them to the school's outcast, Roddy. Nick realizes that there's more to Roddy than meets the eye, and enlists Monroe's help to get through to the troubled teenager before he exacts revenge on the students who wronged him. Meanwhile, Nick learns that his presence is beginning to affect the creature world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":10794},{"seriesId":134,"episodeFileId":18356,"seasonNumber":1,"episodeNumber":6,"title":"The Three Bad Wolves","airDate":"2011-12-09","airDateUtc":"2011-12-10T01:00:00Z","overview":"Nick is called to a suspected arson case, which exposes a longstanding family feud that brings Monroe face-to-face with characters from his troubled past. While Monroe wrestles with restraining his wild side, it's up to Nick to keep everything from going up in flames.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":10795},{"seriesId":134,"episodeFileId":18357,"seasonNumber":1,"episodeNumber":7,"title":"Let Your Hair Down","airDate":"2011-12-16","airDateUtc":"2011-12-17T01:00:00Z","overview":"A mysterious homicide deep in the woods leads to Nick and Hank reopening a long-cold missing persons case. When Nick suspects this abducted person might be a feral creature, he asks Monroe to help remind this wild child of her human nature.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":10796},{"seriesId":134,"episodeFileId":18358,"seasonNumber":1,"episodeNumber":8,"title":"Game Ogre","airDate":"2012-01-13","airDateUtc":"2012-01-14T01:00:00Z","overview":"An escapee returns to Portland seeking revenge against those who put him behind bars, including Hank, the arresting officer. His unusual strength and high tolerance for pain makes Nick suspicious that he might be more than human. As the case escalates Nick and Juliette are put in danger, and Monroe is called into action to help put an end to the convict's deadly rampage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":10797},{"seriesId":134,"episodeFileId":18359,"seasonNumber":1,"episodeNumber":9,"title":"Of Mouse and Man","airDate":"2012-01-20","airDateUtc":"2012-01-21T01:00:00Z","overview":"While investigating a gruesome homicide, Nick learns that a seemingly mild-mannered resident could be festering a potential monster created from a dark childhood. Meanwhile, Monroe is sent an unsettling message by the creature community, who are beginning to wonder if his priorities lie with them or a Grimm.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":10798},{"seriesId":134,"episodeFileId":18360,"seasonNumber":1,"episodeNumber":10,"title":"Organ Grinder","airDate":"2012-02-03","airDateUtc":"2012-02-04T01:00:00Z","overview":"As Portland\u2019s homeless youth start to go missing, Nick uncovers a deadly black market supplying the Grimm world with human organs for all types of elixirs. As the investigation heightens, Nick and Juliette befriend a pair of homeless siblings, Hanson and Gracie, whose friends have gone missing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":10799},{"seriesId":134,"episodeFileId":18361,"seasonNumber":1,"episodeNumber":11,"title":"Tarantella","airDate":"2012-02-10","airDateUtc":"2012-02-11T01:00:00Z","overview":"Nick and Hank find themselves on the hunt for a deadly heartbreaker leaving behind a web of dead bodies. Meanwhile, Nick\u2019s growing recognition among the creature world is starting to threaten not only his safety but Juliette\u2019s as well, and it may be time for him to take action to keep her safe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":10800},{"seriesId":134,"episodeFileId":18362,"seasonNumber":1,"episodeNumber":12,"title":"Last Grimm Standing","airDate":"2012-02-24","airDateUtc":"2012-02-25T01:00:00Z","overview":"A bizarre double homicide leads Nick and Hank to a boxing gym, which Nick discovers is a supplier for a darker, ritualistic fight club in the creature world. When Monroe lends a hand and gets in over his head, Nick must dig deep and find his inner \u201cGrimm\u201d to defend him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":10801},{"seriesId":134,"episodeFileId":18363,"seasonNumber":1,"episodeNumber":13,"title":"Three Coins in a Fuchsbau","airDate":"2012-03-02","airDateUtc":"2012-03-03T01:00:00Z","overview":"A failed jewelry store robbery results in a murder that finds Nick and Hank immersed in a hunt for rare coins. Nick soon learns that these coins have an unsettling effect on whoever possesses them, as Hank and Captain Renard begin to exhibit unusual behavior. Meanwhile, a mysterious old friend of Aunt Marie\u2019s comes to Nick with information about his family and what led to his parent\u2019s death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":10802},{"seriesId":134,"episodeFileId":18364,"seasonNumber":1,"episodeNumber":14,"title":"Plumed Serpent","airDate":"2012-03-09","airDateUtc":"2012-03-10T01:00:00Z","overview":"While investigating an arson-related homicide with Hank, Nick finds himself in the heated world of Portland fire-dancing where he meets a woman who might just be too hot to handle. With Monroe\u2019s help, Nick will have to find out if he can investigate the case without getting himself or those close to him burned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":10803},{"seriesId":134,"episodeFileId":18365,"seasonNumber":1,"episodeNumber":15,"title":"Island of Dreams","airDate":"2012-03-30","airDateUtc":"2012-03-31T00:00:00Z","overview":"After the grisly murder of a familiar shop owner, Nick joins forces with Monroe to help solve the murder. When the shop owner\u2019s sister, Rosalee, comes to town, Nick thinks he may have found a new ally in the creature world. Elsewhere, Captain Renard enlists Adalind to cast a spell on Hank. Meanwhile, Sgt. Wu unwittingly becomes entangled in Adalind\u2019s dastardly plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":10804},{"seriesId":134,"episodeFileId":18366,"seasonNumber":1,"episodeNumber":16,"title":"The Thing with Feathers","airDate":"2012-04-06","airDateUtc":"2012-04-07T00:00:00Z","overview":"Nick pulls out all the stops to plan a romantic getaway for Juliette in an attempt to get their relationship back on track. Nick\u2019s duties as a Grimm get in the way of romance when he meets the unsettling neighbors and discovers that the troubled wife has a rare and valuable treasure to protect. It\u2019s left to Nick to keep everyone safe. Back in Portland, Hank and Monroe each find themselves on the brink of new romantic relationships.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":10805},{"seriesId":134,"episodeFileId":18367,"seasonNumber":1,"episodeNumber":17,"title":"Love Sick","airDate":"2012-04-13","airDateUtc":"2012-04-14T00:00:00Z","overview":"Nick and Juliette join Hank for dinner, where Nick discovers Hank\u2019s mystery date is none other than Adalind, the same Hexenbiest who tried to kill Aunt Marie. Meanwhile, Captain Renard takes matters into his own hands when a visit from foreign representatives of his royal bloodline threatens his position. Elsewhere, Monroe and Rosalee are called into action when the lives of Hank and Sgt. Wu hang in the balance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":10806},{"seriesId":134,"episodeFileId":18368,"seasonNumber":1,"episodeNumber":18,"title":"Cat and Mouse","airDate":"2012-04-20","airDateUtc":"2012-04-21T00:00:00Z","overview":"While investigating a string of murders, Nick and Hank learn that their suspect\u2019s crime wave began overseas. When Nick discovers the suspect is being harbored by none other than Monroe and Rosalee, he realizes he\u2019s hunting the hunted, a freedom fighter trying desperately to escape the clutches of a creature bounty hunter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":10807},{"seriesId":134,"episodeFileId":18369,"seasonNumber":1,"episodeNumber":19,"title":"Leave It to Beavers","airDate":"2012-04-27","airDateUtc":"2012-04-28T00:00:00Z","overview":"As Nick delves into the trailer\u2019s weapons cabinet and his inner Grimm, the investigation of a dead construction worker leads him into a long standing conflict in the creature world. Sensing an unfamiliar threat, the suspect takes it upon himself to summon reapers to town to eliminate the Grimm once and for all. Meanwhile, Juliette insists that Nick invite Monroe over for dinner, making for quite the interesting evening.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":10808},{"seriesId":134,"episodeFileId":18370,"seasonNumber":1,"episodeNumber":20,"title":"Happily Ever Aftermath","airDate":"2012-05-04","airDateUtc":"2012-05-05T00:00:00Z","overview":"Nick and Hank are called to investigate the mysterious death of a wealthy matriarch, after her stepdaughter loses everything in a Ponzi scheme. Meanwhile, Juliette does some digging into the mysterious death of Nick\u2019s parents in an effort to help him find closure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":10809},{"seriesId":134,"episodeFileId":18371,"seasonNumber":1,"episodeNumber":21,"title":"Big Feet","airDate":"2012-05-11","airDateUtc":"2012-05-12T00:00:00Z","overview":"After Juliette stumbles upon a brutal murder, Nick learns the suspected creature, and friend of Monroe, is suffering from a mysterious condition \u2014 the inability to completely return to human form. This mysterious condition leads them to a therapist who\u2019s created an artificial drug to suppress the creature side, with horrifying side effects. Meanwhile, the investigation takes a surprising turn when Hank sees something he can\u2019t quite explain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":10810},{"seriesId":134,"episodeFileId":18372,"seasonNumber":1,"episodeNumber":22,"title":"Woman in Black","airDate":"2012-05-18","airDateUtc":"2012-05-19T00:00:00Z","overview":"As Nick delves deeper into his life as a Grimm, a trail of grotesque murders reignites the search for the elusive gold coins. The arrival of a mysterious woman in black begins to get in the way of Nick and Hank\u2019s investigation as extra precautions have to be taken to ensure their safety. Meanwhile, Nick\u2019s ability to keep his true nature secret from Juliette comes to a tipping point.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":10811},{"seriesId":134,"episodeFileId":7021,"seasonNumber":2,"episodeNumber":1,"title":"Bad Teeth","airDate":"2012-08-13","airDateUtc":"2012-08-14T00:00:00Z","overview":"After their face-off with Kimura, Nick finds himself trying to come to grips with the return of his mother, Kelly Burkhardt. A trail of brutal murders unveils a foreign conspiracy to hunt down Nick, leading to several revelations about his past. Meanwhile, Juliette still lies in her mysteriously-induced coma as Rosalee and Monroe work tirelessly to bring her out of it safely. Elsewhere, Hank struggles with the shocking truths he\u2019s recently seen and Captain Renard deals with unexpected family issues when his estranged brother comes back into his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":10812},{"seriesId":134,"episodeFileId":7023,"seasonNumber":2,"episodeNumber":2,"title":"The Kiss","airDate":"2012-08-20","airDateUtc":"2012-08-21T00:00:00Z","overview":"As Nick and his mother continue to battle the Mauvais Dentes, Monroe and Rosalee fight against the clock to save Juliette. More details are revealed about the source of Juliette\u2019s illness, resulting in an epic showdown. Back at the precinct, Hank senses that something is amiss when Nick lands in hot water with the FBI. Meanwhile, Captain Renard continues to reveal himself as he deals with his estranged brother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":10813},{"seriesId":134,"episodeFileId":7026,"seasonNumber":2,"episodeNumber":3,"title":"Bad Moon Rising","airDate":"2012-08-27","airDateUtc":"2012-08-28T00:00:00Z","overview":"As Hank continues to seek help to cope with the inexplicable sighting he had, an old friend, Jarold Kempfer, needs his help when his daughter goes missing. Nick\u2019s expertise as a Grimm comes into play as he investigates the disturbing motives linked to the disappearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":10814},{"seriesId":134,"episodeFileId":7030,"seasonNumber":2,"episodeNumber":4,"title":"Quill","airDate":"2012-09-03","airDateUtc":"2012-09-04T00:00:00Z","overview":"While investigating an accident site, Nick comes upon a bizarre and gruesome Wesen disease that is spreading quickly. A romantic day out for Monroe and Rosalee takes a dangerous turn when they encounter an infected creature that is out for blood. Meanwhile, Captain Renard gets a tip about a dangerous foreign fugitive who\u2019s made his way to Portland","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":10815},{"seriesId":134,"episodeFileId":7032,"seasonNumber":2,"episodeNumber":5,"title":"The Good Shepherd","airDate":"2012-09-28","airDateUtc":"2012-09-29T00:00:00Z","overview":"When a local Reverend reports that his church has been robbed, Nick quickly learns that it's a Wesen church, and enlists Monroe to check for any suspicious activity regarding the shepherd's flock. Meanwhile, Nick and Juliette continue to figure out the rules of their relationship as a dangerous opponent lurks in the shadows with his sights on Nick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":10816},{"seriesId":134,"episodeFileId":7036,"seasonNumber":2,"episodeNumber":6,"title":"Over My Dead Body","airDate":"2012-10-05","airDateUtc":"2012-10-06T00:00:00Z","overview":"Angelina comes back in to town with bad tidings as Monroe learns his continued cooperation with the Grimm may come at a high cost. Nick comes to Hank for help to keep Monroe safe and Hank uses this time to get caught up with his knowledge of the \u201cWesen world.\u201d Meanwhile, an old European acquaintance pays Captain Renard a visit, but it\u2019s hard to tell if this visit is for business or pleasure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":10817},{"seriesId":134,"episodeFileId":7041,"seasonNumber":2,"episodeNumber":7,"title":"The Bottle Imp","airDate":"2012-10-12","airDateUtc":"2012-10-13T00:00:00Z","overview":"After investigating a grisly murder, clues lead Nick and Hank to a seemingly unstable father who is on the run with his daughter. As they learn more about the case they realize that the girl\u2019s father may be the least of their worries. At the spice shop, Monroe finds out filling in for Rosalee isn\u2019t as simple as he\u2019d hoped it would be. Meanwhile, Captain Renard finds himself paying unwarranted attention to more than one woman from his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":10818},{"seriesId":134,"episodeFileId":7044,"seasonNumber":2,"episodeNumber":8,"title":"The Other Side","airDate":"2012-10-19","airDateUtc":"2012-10-20T00:00:00Z","overview":"Nick and Hank are called to the scene of a murdered high school academic decathlete and learn just how competitive some extracurricular activities can be, and the extremes some coaches and parents will go to give students the best chance for success. In other police matters, Captain Renard deals with an unwanted infatuation while we learn an old accomplice of his has been spending time with his family in Europe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":10819},{"seriesId":134,"episodeFileId":7049,"seasonNumber":2,"episodeNumber":9,"title":"La Llorona","airDate":"2012-10-26","airDateUtc":"2012-10-27T00:00:00Z","overview":"Despite the enthusiastic anticipation of the city\u2019s residents for Halloween, a series of horrifying child abductions make their way to Portland, quickly spoiling the holiday spirit. Nick and Hank join forces with Valentina Espinosa, a mysterious detective from Albuquerque, to help find and capture the elusive suspect. Meanwhile, Monroe celebrates the holiday in fine style as he teaches the neighborhood bullies a lesson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":10820},{"seriesId":134,"episodeFileId":7052,"seasonNumber":2,"episodeNumber":10,"title":"The Hour of Death","airDate":"2012-11-02","airDateUtc":"2012-11-03T00:00:00Z","overview":"When a brutal vigilante homicide is made public, it sends Portland\u2019s Wesen community into a frenzy. As Nick investigates further, he discovers a pattern similar to that of a particularly brutal line of past Grimms. Is there another Grimm in town, or is Nick dealing with a sadistic copycat? Meanwhile, Captain Renard takes it upon himself to offer Juliette comfort in handling her ongoing dilemma with Nick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":10821},{"seriesId":134,"episodeFileId":7056,"seasonNumber":2,"episodeNumber":11,"title":"To Protect and Serve Man","airDate":"2012-11-09","airDateUtc":"2012-11-10T01:00:00Z","overview":"Hank starts reflecting on an arrest he made earlier in his career regarding a man who committed murder claiming \u201cself-defense against monsters.\u201d With the man\u2019s death sentence rapidly approaching and the knowledge he\u2019s recently gathered from Nick, Hank begins to wonder if there was more truth to the man\u2019s seemingly absurd story than he once thought. Back at the spice shop, Monroe finds himself involved in a situation he never saw coming.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":10822},{"seriesId":134,"episodeFileId":7061,"seasonNumber":2,"episodeNumber":12,"title":"Season of the Hexenbiest (1)","airDate":"2012-11-16","airDateUtc":"2012-11-17T01:00:00Z","overview":"Adalind returns to wreak havoc in everyone\u2019s lives and avenge her mother\u2019s brutal death. She has her eyes set on Nick and those closest to him \u2013 especially Hank and Juliette. Elsewhere, Captain Renard\u2019s obsession continues to escalate. Meanwhile, a surprise visit at the spice shop gives Monroe more than he ever bargained for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":10823},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Bad Hair Day: Part 1 - A Sore Subject","airDate":"2013-01-16","airDateUtc":"2013-01-17T01:00:00Z","overview":"Bud Wurstner shows up at the Spice Shop to meet Monroe and Rosalee, whom Nick Burkhardt recommended he see regarding his hair loss problem. Bud asks if Rosalee has a remedy for hair loss for his \"friend\", and satisfied with their answer, he excitedly leaves.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10780},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Bad Hair Day: Part 2 - A Helping Hand","airDate":"2013-01-16","airDateUtc":"2013-01-17T01:43:00Z","overview":"Rosalee employs the help of Monroe in making the hair regrowth formula.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10781},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Bad Hair Day: Part 3 - Friendly Neighborhood Eisbiber","airDate":"2013-01-16","airDateUtc":"2013-01-17T02:26:00Z","overview":"Bud returns to thank Monroe and Rosalee for preparing the formula \"for his friend\". Rosalee also tries Monroe's \"creative\" baking, which involved making a dandelion-seaweed cookie.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10782},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Bad Hair Day: Part 4 - Late Night Crisis","airDate":"2013-01-16","airDateUtc":"2013-01-17T03:09:00Z","overview":"Bud comes into Rosalee's shop panicking because his hair (and his friend's hair) is growing out of control.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10783},{"seriesId":134,"episodeFileId":7065,"seasonNumber":2,"episodeNumber":13,"title":"Face Off (2)","airDate":"2013-03-08","airDateUtc":"2013-03-09T01:00:00Z","overview":"After Nick learns about Juliette and Captain Renard, he must deal with the consequences. Things get even more complicated when Nick is called to investigate his own crime. Meanwhile, the search for the key intensifies as Captain Renard finds Nick\u2019s trailer and makes a surprising alliance. With Rosalee\u2019s help, Monroe informs Nick that they might be able to stop what\u2019s going on with Renard and Juliette before it goes too far. Elsewhere, Wu responds to a bizarre shooting at Nick and Juliette\u2019s house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":10824},{"seriesId":134,"episodeFileId":7068,"seasonNumber":2,"episodeNumber":14,"title":"Natural Born Wesen","airDate":"2013-03-15","airDateUtc":"2013-03-16T00:00:00Z","overview":"The Wesen code of honor comes into question when Nick, Hank and Monroe discover a series of bank robberies with Wesen using true natures as their disguises. Meanwhile, Juliette finds herself tormented by faint, slowly returning memories that cause her to question her mental state.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":10825},{"seriesId":134,"episodeFileId":7071,"seasonNumber":2,"episodeNumber":15,"title":"Mr. Sandman","airDate":"2013-03-22","airDateUtc":"2013-03-23T00:00:00Z","overview":"While trying to work out the ramifications of his new alliance with Renard, Nick investigates a murder where the victim was blinded with parasites sprayed into her eyes. Meanwhile, Juliette's hallucinations become clearer, and Adalind asks for help with her pregnancy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":10826},{"seriesId":134,"episodeFileId":7074,"seasonNumber":2,"episodeNumber":16,"title":"Nameless","airDate":"2013-03-29","airDateUtc":"2013-03-30T00:00:00Z","overview":"When a gruesome homicide brings an office party to a screeching halt, Nick and Hank find themselves battling a Wesen on a completely new platform - online. Meanwhile, Juliette's mysterious hallucinations finally start to take shape, giving them a whole new meaning.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":10827},{"seriesId":134,"episodeFileId":7078,"seasonNumber":2,"episodeNumber":17,"title":"One Angry Fuchsbau","airDate":"2013-04-05","airDateUtc":"2013-04-06T00:00:00Z","overview":"While on jury duty, Rosalee tasks Nick, Hank and Monroe to help stop a defense attorney from using his particular \u201cWesen wiles\u201d to overturn what should be an open-and-shut murder case. Back at the precinct, Captain Renard brings Nick and Hank in on his own recent dealings with the Verrat, to keep them on their toes. Meanwhile, a return to the trailer brings a flurry of memories of Nick rushing back to Juliette.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":10828},{"seriesId":134,"episodeFileId":7080,"seasonNumber":2,"episodeNumber":18,"title":"Volcanalis","airDate":"2013-04-26","airDateUtc":"2013-04-27T00:00:00Z","overview":"Nick finds himself fighting a wildly different sort of nature freak in a desperate attempt to keep a volcano from burying Portland in lava. Meanwhile a pregnant Adalind meets a powerful new ally in Europe. Meanwhile, Juliette seeks out help after becoming overwhelmed by the latest side effect of her recovery \u2013 multiple memories of Nick showing up everywhere.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":10829},{"seriesId":134,"episodeFileId":7083,"seasonNumber":2,"episodeNumber":19,"title":"Endangered","airDate":"2013-04-30","airDateUtc":"2013-05-01T00:00:00Z","overview":"Mysterious cow mutilations and reports of glowing creatures put Nick on a case that forces him to question the existence of aliens within the Wesen world. He also meets a strange UFO expert who seems to know more than he\u2019s letting on. Meanwhile, Nick digs further into the key, and Juliette\u2019s romantic memories of Nick start coming back in a big way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":10830},{"seriesId":134,"episodeFileId":7086,"seasonNumber":2,"episodeNumber":20,"title":"Kiss of the Muse","airDate":"2013-05-07","airDateUtc":"2013-05-08T00:00:00Z","overview":"Nick discovers a muse-like Wesen with the ability to influence those she gets close to \u2013 some with positive results, others with terrifying ones. Nick must find a way to get close without losing himself in the process. Juliette arranges a dinner date with Nick in the hopes of clearing the air, but their plans go awry as the case intensifies. Meanwhile, Rosalee takes her first visit to Aunt Marie\u2019s trailer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":10831},{"seriesId":134,"episodeFileId":7089,"seasonNumber":2,"episodeNumber":21,"title":"The Waking Dead (1)","airDate":"2013-05-14","airDateUtc":"2013-05-15T00:00:00Z","overview":"Nick and Hank discover a new kind of strange when they investigate suspects being found dead - for the second time. In Europe, Adalind finds herself in the middle of a feud between Frau Pech and Stefania while working over the details of her pending transaction. Meanwhile, determined to remember every last detail to get things started once more, Juliette insists Monroe share with her Nick\u2019s darkest secret - the world of Grimms and Wesen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":10832},{"seriesId":134,"episodeFileId":7092,"seasonNumber":2,"episodeNumber":22,"title":"Goodnight, Sweet Grimm (2)","airDate":"2013-05-21","airDateUtc":"2013-05-22T00:00:00Z","overview":"Just when things look like they\u2019re back to normal with Juliette, Nick is called to investigate a flurry of rage-fueled assaults happening all over Portland. He goes to Monroe and Rosalee for help battling Portland\u2019s newest wave of \"undead.\" As if that weren\u2019t enough, Captain Renard informs Nick that his brother Eric is in town on family business. Meanwhile, Stefania and Frau Pech methodically use their alliances with Adalind to battle one another.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":10833},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Meltdown: Part 1 - Deep Freeze","airDate":"2013-10-04","airDateUtc":"2013-10-05T00:00:00Z","overview":"While the gang is battling the zombie horde in the shipyard, Bud is tormented by a zombie in his shop.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10784},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Meltdown: Part 2 - On Hands and Knees","airDate":"2013-10-11","airDateUtc":"2013-10-12T00:00:00Z","overview":"While Nick and the gang are distracted in the shipyard, Bud deals with a zombie problem of his own.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10785},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Meltdown: Part 3 - Tight Squeeze","airDate":"2013-10-18","airDateUtc":"2013-10-19T00:00:00Z","overview":"Sergeant Wu comes to Bud's rescue, but it doesn't go quite as planned.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10786},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Meltdown: Part 4 - Dance with the Dammerzustand","airDate":"2013-10-25","airDateUtc":"2013-10-26T00:00:00Z","overview":"Hank arrives to rescue Bud and Sergeant Wu, but the trio gets more than they bargained for.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10787},{"seriesId":134,"episodeFileId":7020,"seasonNumber":3,"episodeNumber":1,"title":"The Ungrateful Dead (3)","airDate":"2013-10-25","airDateUtc":"2013-10-26T00:00:00Z","overview":"A panicked Juliette, Monroe, and Rosalee enlist Hank's help in fending off a zombie hoard while trying to figure out what happened to Nick. Knowing the truth, Captain Renard takes measures to help rescue Nick from the clutches of his brother, Eric. Elsewhere, along with the help of the mysterious Stefania, Adalind finds herself facing her most gruesome task yet in her effort to regain her Hexenbiest abilities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":10834},{"seriesId":134,"episodeFileId":7024,"seasonNumber":3,"episodeNumber":2,"title":"PTZD (4)","airDate":"2013-11-01","airDateUtc":"2013-11-02T00:00:00Z","overview":"Monroe, Hank, Rosalee and Juliette track down a manic Nick and do all they can to find him and reverse what's been done to him before he causes any more damage. Meanwhile, Captain Renard does his best to clean up the zombie fallout on all fronts - domestic and international. Elsewhere, the more time Adalind spends with Stefania, the more disturbing things seem to get in her quest to regain her Hexenbiest abilities.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":10835},{"seriesId":134,"episodeFileId":7027,"seasonNumber":3,"episodeNumber":3,"title":"A Dish Best Served Cold","airDate":"2013-11-08","airDateUtc":"2013-11-09T01:00:00Z","overview":"A series of disturbing crime scenes leads Nick and Hank to the resurrection of an old feud that's all too familiar for Nick and Monroe. With the news of a royal family member's demise, several key players start to make their move. Meanwhile despite his recent trauma, Nick finds himself healthier than normal and Monroe and Rosalee talk about moving their relationship forward.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":10836},{"seriesId":134,"episodeFileId":7029,"seasonNumber":3,"episodeNumber":4,"title":"One Night Stand","airDate":"2013-11-15","airDateUtc":"2013-11-16T01:00:00Z","overview":"When Nick and Hank investigate a drowning death with mysterious marks on the victim\u2019s ankles, they happen upon a group of water-bound Wesen with a deadly postcoital cuddle. Meanwhile, Rosalee starts unpacking her things at Monroe\u2019s, and Captain Renard makes a startling realization about the possible identities of the Royal Baby\u2019s parents.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":10837},{"seriesId":134,"episodeFileId":7034,"seasonNumber":3,"episodeNumber":5,"title":"El Cucuy","airDate":"2013-11-29","airDateUtc":"2013-11-30T01:00:00Z","overview":"Nick and Hank are on the case as repeat instances of apparent vigilantism have whispers of an old Spanish legend making their way through a working-class Portland neighborhood. Elsewhere, Juliette learns the truth about Nick\u2019s mother. Meanwhile, Adalind has a brief scare during her ultrasound.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":10838},{"seriesId":134,"episodeFileId":7039,"seasonNumber":3,"episodeNumber":6,"title":"Stories We Tell Our Young","airDate":"2013-12-06","airDateUtc":"2013-12-07T01:00:00Z","overview":"Nick faces his toughest challenge yet when he and Hank investigate a case that combines religious phenomenon with the dark dealings of the Wesen Council. Meanwhile, Rosalee is torn when Nick's case challenges her Wesen loyalties. Elsewhere, Captain Renard leaves town to tend to some \"family matters.\"","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":10839},{"seriesId":134,"episodeFileId":7043,"seasonNumber":3,"episodeNumber":7,"title":"Cold Blooded","airDate":"2013-12-13","airDateUtc":"2013-12-14T01:00:00Z","overview":"As a deadly crime spree begins to surface, a century-old urban legend takes shape in Portland's sewers and becomes Nick's latest case. In Europe, Adalind meets Prince Viktor, who\u2019s come to bring those responsible for his cousin Eric\u2019s demise to justice. Meanwhile, Captain Renard responds to the recent attempt on his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":10840},{"seriesId":134,"episodeFileId":7046,"seasonNumber":3,"episodeNumber":8,"title":"Twelve Days of Krampus","airDate":"2013-12-13","airDateUtc":"2013-12-14T01:43:00Z","overview":"After a string of delinquent teens go missing, an old Wesen tale of an evil Santa who brings more than just a lump of coal may be the prime suspect. The investigation intensifies as Nick and Hank take things a little too far. Meanwhile, Monroe enlists Juliet to surprise Rosalee for their first Christmas together with unintended results. Elsewhere, Captain Renard\u2019s tour of Europe brings him closer to tracking down Adalind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":10841},{"seriesId":134,"episodeFileId":7050,"seasonNumber":3,"episodeNumber":9,"title":"Red Menace","airDate":"2014-01-03","airDateUtc":"2014-01-04T01:00:00Z","overview":"Nick and Hank investigate a Wesen \"healer\" whose ability holds risks that far outweigh its rewards. Meanwhile, Juliette takes in a friend when domestic issues escalate and Hank makes a move on his physical therapist Zuri. Elsewhere, Captain Renard finally tracks down Adalind and has a stern warning for her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":10842},{"seriesId":134,"episodeFileId":7054,"seasonNumber":3,"episodeNumber":10,"title":"Eyes of the Beholder","airDate":"2014-01-10","airDateUtc":"2014-01-11T01:00:00Z","overview":"Nick and Hank are called to the scene of a gang-related homicide. The case escalates as Zuri, Hank\u2019s physical therapist, and her brother get caught up in the investigation. Meanwhile, Juliette seeks advice from Rosalee in dealing with the news that her friend is Wesen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":10843},{"seriesId":134,"episodeFileId":7058,"seasonNumber":3,"episodeNumber":11,"title":"The Good Soldier","airDate":"2014-01-17","airDateUtc":"2014-01-18T01:00:00Z","overview":"Nick and Hank are called to the gruesome murder of a veteran working in home security. During their investigation, they discover this might be one of several revenge killings regarding a horrifying cover-up involving members of the army and military contractors. On the domestic front, Monroe accompanies Rosalee during her long overdue reunion with her mother and sister. In Europe, Adalind sees hints of what she thinks might be her powers returning.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":10844},{"seriesId":134,"episodeFileId":7062,"seasonNumber":3,"episodeNumber":12,"title":"The Wild Hunt (1)","airDate":"2014-01-24","airDateUtc":"2014-01-25T01:00:00Z","overview":"Nick and Hank investigate a cop killer who scalps his victims. Meanwhile, Juliette begins to communicate with Nick's mom via email and Adalind finds herself much closer to delivering her baby than she previously thought. Elsewhere, Monroe's parents decide to surprise him and Rosalee with an early arrival to Portland after learning some exciting news.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":10845},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Love Is in the Air - Elegant Endeavors","airDate":"2014-02-14","airDateUtc":"2014-02-15T01:00:00Z","overview":"Rosalee and Juliette gather their girlfriends for a Valentine's Day spa party, only to discover a Ziegevolk casting a love spell among the group.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10788},{"seriesId":134,"episodeFileId":7066,"seasonNumber":3,"episodeNumber":13,"title":"Revelation (2)","airDate":"2014-02-28","airDateUtc":"2014-03-01T01:00:00Z","overview":"Monroe fights an impossible battle to convince his parents to embrace the life choices he\u2019s made. Meanwhile, Nick turns to Juliette to help him figure out the Wesen aspect of his cop-killing scalper investigation. On the Royal Baby front, Captain Renard learns new information that forces him to contact Adalind in the interest of keeping her and the baby safe from Viktor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":10846},{"seriesId":134,"episodeFileId":7069,"seasonNumber":3,"episodeNumber":14,"title":"Mommy Dearest","airDate":"2014-03-07","airDateUtc":"2014-03-08T01:00:00Z","overview":"A horrible new predator creeps into Portland with its sight set on a young expectant couple who are close friends of Sgt. Wu. Nick and Hank must figure out how to deal with Wu as the investigation escalates. Meanwhile, Adalind prepares for a special delivery while her enemies are hot on her trail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":10847},{"seriesId":134,"episodeFileId":7072,"seasonNumber":3,"episodeNumber":15,"title":"Once We Were Gods","airDate":"2014-03-14","airDateUtc":"2014-03-15T00:00:00Z","overview":"Nick and Hank find themselves thrown into the middle of an ancient battle and things heat up when the Wesen Council decides to get involved. Monroe and Rosalee fill everyone in on early Wesen history. Meanwhile, Sgt. Wu is still reeling from the events he recently experienced. As things heat up in Europe, one of the Resistance\u2019s most trusted allies gets compromised as he tries to protect Adalind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":10848},{"seriesId":134,"episodeFileId":7073,"seasonNumber":3,"episodeNumber":16,"title":"The Show Must Go On","airDate":"2014-03-21","airDateUtc":"2014-03-22T00:00:00Z","overview":"A double homicide leads Nick and Hank to a traveling carnival where the performers are not what they seem. To get a better understanding of what's going on behind the scenes Monroe and Rosalee go undercover. On the wedding front, Monroe has a really important question for Nick. In Austria, an invaluable member of the Resistance makes the ultimate sacrifice to help Adalind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":10849},{"seriesId":134,"episodeFileId":7076,"seasonNumber":3,"episodeNumber":17,"title":"Synchronicity","airDate":"2014-04-04","airDateUtc":"2014-04-05T00:00:00Z","overview":"The Resistance's plan to keep Adalind safe gets kicked into high gear when an unexpected ally arrives to ensure she and the baby make it out of Europe safely. In Portland, as Monroe and Rosalee prepare for their upcoming wedding, Nick and Juliette are reminded of their failed proposal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":10850},{"seriesId":134,"episodeFileId":7081,"seasonNumber":3,"episodeNumber":18,"title":"The Law of Sacrifice","airDate":"2014-04-11","airDateUtc":"2014-04-12T00:00:00Z","overview":"Nick and his mom, Kelly Burkhardt, join forces to protect Adalind's baby. Meanwhile, Prince Viktor activates a deadly stateside asset to find Adalind and her child.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":10851},{"seriesId":134,"episodeFileId":7082,"seasonNumber":3,"episodeNumber":19,"title":"Nobody Knows the Trubel I've Seen","airDate":"2014-04-25","airDateUtc":"2014-04-26T00:00:00Z","overview":"Nick and Hank investigate a dangerous female suspect leaving a trail of Wesen in her wake. Elsewhere, Adalind takes measures into her own hands, even if that means forging a dangerous alliance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":10852},{"seriesId":134,"episodeFileId":7087,"seasonNumber":3,"episodeNumber":20,"title":"My Fair Wesen","airDate":"2014-05-02","airDateUtc":"2014-05-03T00:00:00Z","overview":"Nick does his best to educate Trubel on how best to handle the world she is learning about for the first time, and decides it best to bring her on a ride along with Hank. They find themselves investigating the homicide of a young woman that strikes a chord for Trubel. Meanwhile, Adalind makes a discovery that she hopes will lead her to regain something she has lost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":10853},{"seriesId":134,"episodeFileId":7090,"seasonNumber":3,"episodeNumber":21,"title":"The Inheritance","airDate":"2014-05-09","airDateUtc":"2014-05-10T00:00:00Z","overview":"Nick and Hank are called to investigate a double homicide, and quickly learn the victims were from a special section of the Verrat tasked with finding rare objects pertaining to the Wesen world. Trubel gets involved with a mysterious father-and-son tandem that crossed the country in a desperate attempt to deliver invaluable cargo to \"the Portland Grimm.\" Meanwhile, Captain Renard begins to grow suspicious of Adalind's recent behavior and quietly decides to put extra eyes on her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":10854},{"seriesId":134,"episodeFileId":7093,"seasonNumber":3,"episodeNumber":22,"title":"Blonde Ambition","airDate":"2014-05-16","airDateUtc":"2014-05-17T00:00:00Z","overview":"It's Monroe and Rosalee's big day and their joy will only be matched by unexpected heartache for those around them. Nick and Juliette make a startling realization that could shake their relationship to its core. Meanwhile, Adalind proceeds with a delicately laid plan that leads to a catastrophic event that will alter the course of Nick's journey.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":10855},{"seriesId":134,"episodeFileId":15369,"seasonNumber":4,"episodeNumber":1,"title":"Thanks for the Memories","airDate":"2014-10-24","airDateUtc":"2014-10-25T00:00:00Z","overview":"Nick adjusts to his new reality and tries to figure out how to deal with Trubel. Wu has an unpleasant flashback. A new group of Wesen come to Portland and steal people's memories. Captain Renard fights for his life. Adalind's desperation to find her child lands her in Prince Viktor's clutches.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":10856},{"seriesId":134,"episodeFileId":15370,"seasonNumber":4,"episodeNumber":2,"title":"Octopus Head","airDate":"2014-10-31","airDateUtc":"2014-11-01T00:00:00Z","overview":"As Nick and Hank turn their attention to a string of attacks where victims are left without their memories, Nick weighs whether or not he should regain his Grimm abilities. Trubel joins the investigation and puts herself in harms way. Adalind is held captive and learns that she is more connected than ever to Nick. Captain Renard continues to fight for his life as a mysterious visitor arrives to help him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":10857},{"seriesId":134,"episodeFileId":15371,"seasonNumber":4,"episodeNumber":3,"title":"The Last Fight","airDate":"2014-11-07","airDateUtc":"2014-11-08T01:00:00Z","overview":"After Nick has a bizarre, unsettling vision, he and Hank find themselves on a case that takes them into the world of boxing. Trubel finds herself under the watchful eye of Agent Chavez before jumping into the ring to help with Nick's investigation. Monroe and Rosalee get some unexpected help in figuring out a way to restore Nick's Grimm abilities. Adalind encounters a mysterious visitor in her dungeon cell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":10858},{"seriesId":134,"episodeFileId":15372,"seasonNumber":4,"episodeNumber":4,"title":"Dyin' on a Prayer","airDate":"2014-11-14","airDateUtc":"2014-11-15T01:00:00Z","overview":"Nick and Hank are called to an unusual crime scene with a victim who appears to have died from clay-induced asphyxiation. Wu begins to grow more suspicious of Trubel\u2019s presence. Elizabeth makes a major breakthrough with regards to restoring Nick\u2019s powers. Monroe and Rosalee experience cultural backlash as a result of their inter-Wesen marriage. Adalind hopes that putting trust in her mysterious visitor will help her escape the dungeon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":10859},{"seriesId":134,"episodeFileId":15373,"seasonNumber":4,"episodeNumber":5,"title":"Cry Luison","airDate":"2014-11-21","airDateUtc":"2014-11-22T01:00:00Z","overview":"A woman claims a very persistent, talking wolf drove her to the point of madness when she's questioned by Nick and Hank after committing a deadly crime. Meanwhile, Nick and Juliette wonder if getting his Grimm powers back is worth the sacrifice of a normal life; at the same time, Bud hopes Trubel can help with a wesen-related issue; threats against Monroe and Rosalee intensify; and Adalind's perilous trek to retrieve her daughter continues in Austria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":10860},{"seriesId":134,"episodeFileId":15374,"seasonNumber":4,"episodeNumber":6,"title":"Highway of Tears","airDate":"2014-11-28","airDateUtc":"2014-11-29T01:00:00Z","overview":"The justification for Nick to become a Grimm again is made much clearer in the wake of the most recent attack against Monroe and Rosalee. At work, Nick and Hank are called to a stretch of highway that acts as a staging area for a horrifying Wesen ritual. In Vienna, Viktor meets with a completely broken Adalind, now ready to be of assistance in finding and retrieving the baby. Meanwhile, Trubel is surprised by the sudden arrival of an old friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":10861},{"seriesId":134,"episodeFileId":15375,"seasonNumber":4,"episodeNumber":7,"title":"The Grimm Who Stole Christmas","airDate":"2014-12-05","airDateUtc":"2014-12-06T01:00:00Z","overview":"Nick and Hank are called to investigate a bizarre string of home invasions that lead to an even stranger Wesen phenomena. Monroe has a very special Christmas surprise in store for Rosalee. Meanwhile, Truble comes to a life changing realization that will affect everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":10862},{"seriesId":134,"episodeFileId":15376,"seasonNumber":4,"episodeNumber":8,"title":"Chupacabra","airDate":"2014-12-12","airDateUtc":"2014-12-13T01:00:00Z","overview":"An unsuspecting traveler brings a blood-sucking legend with him to Portland, and Nick and Hank find themselves investigating the gruesome trail of \"El Chupacabra.\" Meanwhile, Monroe and Rosalee prepare to leave for their long-overdue honeymoon as they are met with more threats regarding their marriage. Elsewhere, Viktor and Adalind decide to take a trip of their own, while Wu decides to confront Nick about what he has been seeing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":10863},{"seriesId":134,"episodeFileId":15377,"seasonNumber":4,"episodeNumber":9,"title":"Wesenrein","airDate":"2015-01-16","airDateUtc":"2015-01-17T01:00:00Z","overview":"Nick and Hank must save Monroe from the Secundum Naturae Ordinem Wesen while Juliette considers life as a Hexenbiest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":10864},{"seriesId":134,"episodeFileId":15378,"seasonNumber":4,"episodeNumber":10,"title":"Tribunal","airDate":"2015-01-23","airDateUtc":"2015-01-24T01:00:00Z","overview":"After Monroe\u2019s abduction by the Wesenrein, Nick gathers the whole team, including Wu, to track him down and return him to Rosalee. As the search intensifies, Juliette learns more about her new reality as a Hexenbiest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":10865},{"seriesId":134,"episodeFileId":15379,"seasonNumber":4,"episodeNumber":11,"title":"Death Do Us Part","airDate":"2015-01-30","airDateUtc":"2015-01-31T01:00:00Z","overview":"Monroe and Rosalee are finally off on their honeymoon, but that doesn\u2019t mean trouble isn\u2019t stirring in Portland. Nick and Hank are called to a shocking homicide at an abandoned residence many Portland locals think is haunted. Even the survivors of the attack swear a ghost committed the murder. Meanwhile, on the heels of Juliette\u2019s startling revelation Captain Renard seeks the help of a mystical woman from his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":10866},{"seriesId":134,"episodeFileId":15380,"seasonNumber":4,"episodeNumber":12,"title":"Mare\u0301chausse\u0301e","airDate":"2015-02-06","airDateUtc":"2015-02-07T01:00:00Z","overview":"Nick and Hank investigate a series of murders that lead back to the Wesen Council and a mysterious bounty hunter. Juliette\u2019s meeting with Henrietta brings about more disturbing news than she was expecting. Adalind and Viktor make their way back to Portland.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":10867},{"seriesId":134,"episodeFileId":15381,"seasonNumber":4,"episodeNumber":13,"title":"Trial by Fire","airDate":"2015-02-13","airDateUtc":"2015-02-14T01:00:00Z","overview":"When an arson case looks to have Wesen origins, Nick find himself reluctantly having to ask an old foe for help. Viktor teaches Adalind the effectiveness of well-played diplomacy. Juliette finds herself in a confrontation sooner than expected.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":10868},{"seriesId":134,"episodeFileId":15382,"seasonNumber":4,"episodeNumber":14,"title":"Bad Luck","airDate":"2015-03-20","airDateUtc":"2015-03-21T00:00:00Z","overview":"Nick and Hank investigate a murder victim with his foot cut off, and stumble onto a disturbing Wesen take on the \"lucky rabbit\u2019s foot.\" In an effort to help, Monroe and Rosalee go undercover. Meanwhile, the fallout from Adalind and Juliette\u2019s showdown still has Nick reeling and sends him on a path that leads to Henrietta.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":10869},{"seriesId":134,"episodeFileId":15383,"seasonNumber":4,"episodeNumber":15,"title":"Double Date","airDate":"2015-03-27","airDateUtc":"2015-03-28T00:00:00Z","overview":"Nick and Hank are called to investigate a one night stand turned deadly when a man finds himself in the middle of a very bizarre love triangle. Captain Renard hopes Monroe and Rosalee can help him deal with recurring episodes of phantom bleeding. Meanwhile, Adalind makes a discovery that might turn the tables in her favor and Juliette makes a big decision that could change the course of her relationship with Nick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":10870},{"seriesId":134,"episodeFileId":15384,"seasonNumber":4,"episodeNumber":16,"title":"Heartbreaker","airDate":"2015-04-03","airDateUtc":"2015-04-04T00:00:00Z","overview":"A cyclist's homicide introduces Nick and Hank to a Wesen with a tragic fatal touch. Captain Renard and Adalind learn the Royals have stepped up their efforts to find their child, and another member of the Royal family is introduced. Meanwhile, Juliette ponders the idea of embracing what she's become as opposed to fighting it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":10871},{"seriesId":134,"episodeFileId":15385,"seasonNumber":4,"episodeNumber":17,"title":"Hibernaculum","airDate":"2015-04-10","airDateUtc":"2015-04-11T00:00:00Z","overview":"Nick and Hank are called to investigate a rare Wesen that leaves its victims frozen solid. Meanwhile, Juliette starts to feel that she is losing her humanity as she seeks to get revenge on Adalind. Elsewhere, Captain Renard continues to suffer from mysterious bleeding and visions while Monroe works toward coming to grips with the Wesenrein incident.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":10872},{"seriesId":134,"episodeFileId":15386,"seasonNumber":4,"episodeNumber":18,"title":"Mishipeshu","airDate":"2015-04-17","airDateUtc":"2015-04-18T00:00:00Z","overview":"A homicide leads Nick and Hank onto the dark and mysterious path of a local Native American power quest. Meanwhile, Juliette's erratic behavior lands her on the wrong side of the law. At the spice shop, Rosalee and Monroe are on a mission and call on Captain Renard for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":10873},{"seriesId":134,"episodeFileId":15387,"seasonNumber":4,"episodeNumber":19,"title":"Iron Hans","airDate":"2015-04-24","airDateUtc":"2015-04-25T00:00:00Z","overview":"Nick and Hank investigate a homicide they discover is linked to a wesen rite of passage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":10874},{"seriesId":134,"episodeFileId":15388,"seasonNumber":4,"episodeNumber":20,"title":"You Don't Know Jack","airDate":"2015-05-01","airDateUtc":"2015-05-02T00:00:00Z","overview":"A string of homicides have the press asking Captain Renard if a Jack the Ripper copycat has arrived in Portland. While dealing with the investigation, Nick, Hank, Monroe and Wu deal with a situation they never expected. Meanwhile, Adalind and Rosalee must work together on a last ditch attempt to fix Juliette's condition. Elsewhere, Juliette decides to help her new ally even if it means hurting those around her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":10875},{"seriesId":134,"episodeFileId":15389,"seasonNumber":4,"episodeNumber":21,"title":"Headache","airDate":"2015-05-08","airDateUtc":"2015-05-09T00:00:00Z","overview":"While investigating a grisly murder, Nick and Hank get closer to uncovering the identity of the serial killer while Wu's life is put in grave danger. Having turned down Monroe and Rosalee's offer, Juliette solidifies a new alliance as she works to get her revenge. Elsewhere, Trubel makes a surprising return to Portland.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":10876},{"seriesId":134,"episodeFileId":15390,"seasonNumber":4,"episodeNumber":22,"title":"Cry Havoc","airDate":"2015-05-15","airDateUtc":"2015-05-16T00:00:00Z","overview":"On the heels of a shocking discovery, Nick is hell bent on getting revenge and taking the fight to the Royals with help from Trubel. Meanwhile, Juliette's alliance continues to lead her down a dark path.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":10877},{"seriesId":134,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Nick's Journey - The First Four Seasons","airDate":"2015-08-31","airDateUtc":"2015-09-01T00:00:00Z","overview":"Look back at Detective Nick Burkhardt's wild ride through four seasons of Grimm, in preparation for the continuation of his adventures in Season 5.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":10789},{"seriesId":134,"episodeFileId":18373,"seasonNumber":5,"episodeNumber":1,"title":"The Grimm Identity","airDate":"2015-10-30","airDateUtc":"2015-10-31T00:00:00Z","overview":"Nick must look inside himself and decide who he wants to be while also dealing with fathering a child with Adalind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":10878},{"seriesId":134,"episodeFileId":18374,"seasonNumber":5,"episodeNumber":2,"title":"Clear and Wesen Danger","airDate":"2015-11-06","airDateUtc":"2015-11-07T01:00:00Z","overview":"Nick makes changes to keep Adalind and his child safe, with the help of Monroe and Rosalee. Hank and his new partner investigate a murder at an investment group.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":10879},{"seriesId":134,"episodeFileId":18375,"seasonNumber":5,"episodeNumber":3,"title":"Lost Boys","airDate":"2015-11-13","airDateUtc":"2015-11-14T01:00:00Z","overview":"Rosalee disappears after some orphans decide she is the mother figure they always wanted and an encounter with a former colleague prompts Adalind to consider going back to work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":10880},{"seriesId":134,"episodeFileId":18376,"seasonNumber":5,"episodeNumber":4,"title":"Maiden Quest","airDate":"2015-11-20","airDateUtc":"2015-11-21T01:00:00Z","overview":"A wealthy mobster entices three young men to work for his daughter's hand in marriage, and a surprise visitor shakes things up as Nick and Adalind struggle to adjust to home life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":10881},{"seriesId":134,"episodeFileId":18377,"seasonNumber":5,"episodeNumber":5,"title":"Rat King","airDate":"2015-12-04","airDateUtc":"2015-12-05T01:00:00Z","overview":"Nick and Hank are called to the scene when three Wesen go out on a hunt at a local dump and get more than they bargained for when two turn up dead after they encounter the mythical Rat King. Meanwhile, a very badly wounded Trubel is taken to the hospital and Nick finally meets Meisner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":10882},{"seriesId":134,"episodeFileId":18378,"seasonNumber":5,"episodeNumber":6,"title":"Wesen Nacht","airDate":"2015-12-11","airDateUtc":"2015-12-12T01:00:00Z","overview":"Nick and Hank investigate a wave of coordinated Wesen gang vandalism that results in the death of a local business owner and the kidnapping of Monroe and Rosalee's friend. As they dig deeper, they learn that Portland wasn't the only city hit with a wave of violence. Meanwhile, Truble fills Nick and Adalind on what she has been up to. Elsewhere, Capt. Renard dips his toes into politics as he endorses a local candidate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":10883},{"seriesId":134,"episodeFileId":18379,"seasonNumber":5,"episodeNumber":7,"title":"Eve of Destruction","airDate":"2016-01-29","airDateUtc":"2016-01-30T01:00:00Z","overview":"Nick and the gang are still reeling from the scope of the ambush and the surprise return of \"Juliette\", but not everything is as it seems. In light of the heightened Wesen violence, Monroe and Rosalee seek answers from the Wesen Council. Meanwhile, Trubel has some information for Nick that will help him get what he is looking for.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":10884},{"seriesId":134,"episodeFileId":18380,"seasonNumber":5,"episodeNumber":8,"title":"A Reptile Dysfunction","airDate":"2016-02-05","airDateUtc":"2016-02-06T01:00:00Z","overview":"A local legend comes back to life as Nick and Hank investigate a mysterious sighting linked to a tourist's death at a local lake. Rosalee's past comes back to haunt her. Elsewhere, Capt. Renard continues to support a candidate for mayor. Meanwhile, Nick is shown the scope of the Wesen uprising as the secret government agency takes him into the heart of their Portland operations center.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":10885},{"seriesId":134,"episodeFileId":18381,"seasonNumber":5,"episodeNumber":9,"title":"Star-Crossed","airDate":"2016-02-12","airDateUtc":"2016-02-13T01:00:00Z","overview":"A barbaric Wesen ritual is brought to the present and Nick, Hank and Wu are already five steps behind the serial killer. To aid in the investigation, Monroe goes undercover. Meanwhile, Hadrian's Wall's war against Black Claw intensifies as Eve uses her unique skills to interrogate a suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":10886},{"seriesId":134,"episodeFileId":18382,"seasonNumber":5,"episodeNumber":10,"title":"Map of the Seven Knights","airDate":"2016-02-19","airDateUtc":"2016-02-20T01:00:00Z","overview":"Monroe gets a call from a relative in Germany that will bring Nick closer to his ancestors. Things get complicated when the nefarious group Black Claw is also after the same artifacts. Elsewhere, Capt. Renard helps a mayoral candidate get an edge on his opponent. Meanwhile, Trubel confronts Eve about Nick and Adalind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":10887},{"seriesId":134,"episodeFileId":18383,"seasonNumber":5,"episodeNumber":11,"title":"Key Move","airDate":"2016-03-04","airDateUtc":"2016-03-05T01:00:00Z","overview":"Newly gained artifacts take Nick and Monroe closer to the source of a long-gestating mystery. Elsewhere, Black Claw makes a deadly move that will send Portland into disarray.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":10888},{"seriesId":134,"episodeFileId":18384,"seasonNumber":5,"episodeNumber":12,"title":"Into the Schwarzwald","airDate":"2016-03-11","airDateUtc":"2016-03-12T01:00:00Z","overview":"Nick and Monroe find a treasure in Germany that has been hidden for centuries. Back in Portland, Capt. Renard joins Hank and Wu to track down a deadly assassin who has thrown Portland into havoc. Little do they know that Eve is on a hunt of her own for the same man. Meanwhile, someone from Rosalee's past tracks her down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":10889},{"seriesId":134,"episodeFileId":18385,"seasonNumber":5,"episodeNumber":13,"title":"Silence of the Slams","airDate":"2016-03-18","airDateUtc":"2016-03-19T00:00:00Z","overview":"A local maskmaker is targeting Wesen to create Luchador masks that bestows great power to its wearer. As Nick, Hank, Monroe and Rosalee work to stop the killings, Capt. Renard considers an offer that will bring him closer to claiming his destiny. Meanwhile, Eve's further investigation of a recent incident raises new questions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":10890},{"seriesId":134,"episodeFileId":18386,"seasonNumber":5,"episodeNumber":14,"title":"Lycanthropia","airDate":"2016-03-25","airDateUtc":"2016-03-26T00:00:00Z","overview":"Following a brutal attack in the woods, Nick and Hank stumble upon a terrifying Wesen disease that may be the inspiration for the modern-day werewolf myth. Meanwhile, Adalind is offered an uneasy alliance that may help her get back what she wants most. Elsewhere, Eve's investigation uncovers a surprising revelation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":10891},{"seriesId":134,"episodeFileId":18387,"seasonNumber":5,"episodeNumber":15,"title":"Skin Deep","airDate":"2016-04-01","airDateUtc":"2016-04-02T00:00:00Z","overview":"When Nick and Hank come across a beautiful young woman who seems to have aged 70 years overnight and died, they suspect Wesen involvement. The investigation leads to a local doctor and Rosalee is enlisted to help find the truth. Meanwhile, Eve takes bold steps to learn more about Capt. Renard's nefarious dealings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":10892},{"seriesId":134,"episodeFileId":18388,"seasonNumber":5,"episodeNumber":16,"title":"The Believer","airDate":"2016-04-08","airDateUtc":"2016-04-09T00:00:00Z","overview":"An evangelical preacher has a tent revival unlike any other when he uses his Wesen identity to gain more believers. Nick and Hank are called to the scene as things escalate when a group of \"true believers\" are hell bent on saving the preacher and his flock by any means necessary. Meanwhile, Capt. Renard takes further steps to gain power in local government. Elsewhere, Eve uses Adalind's ol' hat trick to gain more access to Black Claw.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":10893},{"seriesId":134,"episodeFileId":18389,"seasonNumber":5,"episodeNumber":17,"title":"Inugami","airDate":"2016-04-15","airDateUtc":"2016-04-16T00:00:00Z","overview":"When the severed head of a young man is found under a bridge, Nick and Hank find themselves on the case of Japanese Wesen acting on an ancient tradition of revenge. Elsewhere, Adalind decides to go back to work at her old law firm and has her first face-to-face with Eve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":10894},{"seriesId":134,"episodeFileId":18390,"seasonNumber":5,"episodeNumber":18,"title":"Good to the Bone","airDate":"2016-04-22","airDateUtc":"2016-04-23T00:00:00Z","overview":"When a man is found dead with all of the bones in his body seemingly liquefied and removed, Nick and Hank find themselves in the middle of a gruesome family arrangement. Meanwhile, Wu deals with a crisis of his own and Hank reunites with his old flame, Zuri.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":10895},{"seriesId":134,"episodeFileId":18391,"seasonNumber":5,"episodeNumber":19,"title":"The Taming of the Wu","airDate":"2016-04-29","airDateUtc":"2016-04-30T00:00:00Z","overview":"Suffering from the bite he sustained, Sargeant Wu becomes entangled in a surprising altercation that may land him in hot water. After meeting the mysterious Bonaparte (Shaun Toub), Adalind is faced with a difficult decision that could change her and Nick's lives forever. Meanwhile, Hank gets even closer to Zuri and their relationship begins to take shape. Back at HW, Eve senses that a new force may jeopardize the entire operation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":10896},{"seriesId":134,"episodeFileId":18392,"seasonNumber":5,"episodeNumber":20,"title":"Bad Night","airDate":"2016-05-13","airDateUtc":"2016-05-14T00:00:00Z","overview":"Nick leans on Monroe and Rosalee as he worries that he may lose everything as he continues to battle Black Claw. Captain Renard ramps up his campaign as election day nears. Elsewhere, Adalind is faced with a very difficult decision in order to protect her children. Meanwhile, Hank's relationship with Zuri takes an unexpected turn and Sargeant Wu tries to gain control of his new reality.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":10897},{"seriesId":134,"episodeFileId":18393,"seasonNumber":5,"episodeNumber":21,"title":"Beginning of the End (1)","airDate":"2016-05-20","airDateUtc":"2016-05-21T00:00:00Z","overview":"Black Claw makes a strategic move against Hank that shocks everyone and sends Nick on a war path. Hadrian's Wall ramps up their investigation as they seek out a mysterious man named Bonaparte. Meanwhile, Adalind and Capt. Renard must learn to deal with their new and very unpredictable reality with Diana.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":10898},{"seriesId":134,"episodeFileId":18393,"seasonNumber":5,"episodeNumber":22,"title":"Beginning of the End (2)","airDate":"2016-05-20","airDateUtc":"2016-05-21T00:43:00Z","overview":"Black Claw makes a strategic move against Hank that shocks everyone and sends Nick on a war path. Hadrian's Wall ramps up their investigation as they seek out a mysterious man named Bonaparte. Meanwhile, Adalind and Capt. Renard must learn to deal with their new and very unpredictable reality with Diana.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":10899},{"seriesId":134,"episodeFileId":15355,"seasonNumber":6,"episodeNumber":1,"title":"Fugitive","airDate":"2017-01-06","airDateUtc":"2017-01-07T01:00:00Z","overview":"Nick is forced into hiding after Captain Renard pins multiple Black Claw deaths on him, making him a wanted man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":10900},{"seriesId":134,"episodeFileId":15356,"seasonNumber":6,"episodeNumber":2,"title":"Trust Me Knot","airDate":"2017-01-13","airDateUtc":"2017-01-14T01:00:00Z","overview":"Hank and Wu find a solution to stop Renard while Nick is still on the run. Adalind receives a phone call that throws her into the middle of everything. Back at the spice shop, Monroe and Rosalee's adventure in babysitting takes an interesting turn when Diana demonstrates her power. Meanwhile, Eve and Trubel work to solve the mystery of the cloth found with the healing stick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":10901},{"seriesId":134,"episodeFileId":15357,"seasonNumber":6,"episodeNumber":3,"title":"Oh Captain, My Captain","airDate":"2017-01-20","airDateUtc":"2017-01-21T01:00:00Z","overview":"In order to stop the rise of Capt. Renard, Nick devises a plan that will take him out of his element. Adalind and Monroe do everything in their power to keep the plan on track. Meanwhile, Eve and Rosalee race against time to get the spell ready before it is too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":10902},{"seriesId":134,"episodeFileId":15358,"seasonNumber":6,"episodeNumber":4,"title":"El Cuegle","airDate":"2017-01-27","airDateUtc":"2017-01-28T01:00:00Z","overview":"Nick, Hank and Wu investigate a terrifying new Wesen who terrorizes a young family and has a surprising motive. Capt. Renard is reeling after an unexpected guest appears. Meanwhile, Diana has some interesting news for Monroe and Rosalee. Elsewhere, Eve returns to the catacombs beneath Nick\u2019s loft to search for answers to her bizarre visions and side effects from being healed by the mysterious stick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":10903},{"seriesId":134,"episodeFileId":15359,"seasonNumber":6,"episodeNumber":5,"title":"The Seven Year Itch","airDate":"2017-02-03","airDateUtc":"2017-02-04T01:00:00Z","overview":"Nick and Hank join Wu to investigate a bizarre murder in a local park. Elsewhere, Capt. Renard continues to deal with a ghost from his past. Meanwhile, Monroe and Rosalee visit the doctor to see if Diana's premonition is true. Back at the loft, Adalind finds a very weak Eve in the tunnels and mysterious drawings scrawled on the walls.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":10904},{"seriesId":134,"episodeFileId":15360,"seasonNumber":6,"episodeNumber":6,"title":"Breakfast in Bed","airDate":"2017-02-10","airDateUtc":"2017-02-11T01:00:00Z","overview":"Nick, Hank and Wu investigate a local hotel after a grisly murder leads to one of its guests who claims to be haunted by a frightening creature in the night. At the Spice Shop, Monroe, Rosalee and Eve continue to research the origins of the symbols on the cloth and may be getting closer to unlocking its mystery. Meanwhile, Capt. Renard continues to be haunted by his past transgressions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":10905},{"seriesId":134,"episodeFileId":15361,"seasonNumber":6,"episodeNumber":7,"title":"Blind Love","airDate":"2017-02-17","airDateUtc":"2017-02-18T01:00:00Z","overview":"Rosalee surprises Monroe with a getaway for his birthday and invites most of the gang to join them. Things take a shocking turn when a hotel employee targets Nick in an effort to avenge his father. Meanwhile, Eve gets a visit from a dark force that she has seen before. Elsewhere, Capt. Renard spends the weekend with Diana when a former ally decides to get even.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":10906},{"seriesId":134,"episodeFileId":15362,"seasonNumber":6,"episodeNumber":8,"title":"The Son Also Rises","airDate":"2017-02-24","airDateUtc":"2017-02-25T01:00:00Z","overview":"Deadly attacks on a team of scientists lead Nick, Hank and Wu on a investigation unlike any they have had before. Meanwhile, as the research continues into the origins of the cloth, Monroe and Rosalee learn that Eve is still feeling the after effects of the death grip. Elsewhere, Capt. Renard reaches out to an old friend to get answers to the origins of the symbols drawn by Diana.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":10907},{"seriesId":134,"episodeFileId":15363,"seasonNumber":6,"episodeNumber":9,"title":"Tree People","airDate":"2017-03-03","airDateUtc":"2017-03-04T01:00:00Z","overview":"Nick, Hank and Wu are called to the scene of the crime where a man claims his friend was consumed by a tree-like figure. Meanwhile, after the gang learns of Eve's disturbing mirror encounter, everyone takes extra precautions. Elsewhere, Capt. Renard searches for answers to what Diana was drawing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":10908},{"seriesId":134,"episodeFileId":15364,"seasonNumber":6,"episodeNumber":10,"title":"Blood Magic","airDate":"2017-03-10","airDateUtc":"2017-03-11T01:00:00Z","overview":"After a series of brutal and deadly attacks, Nick and Hank find an unlikely lead in a local nursing home. Meanwhile, Eve goes to Adalind to get answers that only a Hexenbiest can provide. Elsewhere, Capt. Renard confronts Nick about the mysterious symbols and tries to strike a deal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":10909},{"seriesId":134,"episodeFileId":15365,"seasonNumber":6,"episodeNumber":11,"title":"Where the Wild Things Were","airDate":"2017-03-17","airDateUtc":"2017-03-18T00:00:00Z","overview":"Eve goes on a mission to take on the mysterious force she saw in the mirror and finds herself in unfamiliar territory. When the gang discovers what she has done, Nick finds a way to join her. Meanwhile, an uneasy alliance is established when Capt. Renard is brought in to help and discovers this all may be connected to the person he cares for the most, Diana.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":10910},{"seriesId":134,"episodeFileId":15366,"seasonNumber":6,"episodeNumber":12,"title":"Zerst\u00f6rer Shrugged","airDate":"2017-03-24","airDateUtc":"2017-03-25T00:00:00Z","overview":"The prophecy that was uncovered comes to pass when a dark force arrives in Portland with its eyes set on Diana. In an effort to protect her, Nick, along with Capt. Renard and Adalind, returns to the scene of his first investigation as a Grimm. Back at the Spice Shop, Monroe, Eve and Rosalee make a discovery that uncovers the origins of the mysterious stick. Meanwhile, Hank and Wu are called to a crime scene that is connected to the gang's greatest threat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":10911},{"seriesId":134,"episodeFileId":15367,"seasonNumber":6,"episodeNumber":13,"title":"The End","airDate":"2017-03-31","airDateUtc":"2017-04-01T00:00:00Z","overview":"In the series finale, Nick faces off against his greatest foe yet as it seems no weapon can defeat him. At the Spice Shop, Monroe, Rosalee and Eve search for answers and stumble upon a rare potion that may help the fight. Elsewhere, Capt. Renard and Adalind try to keep Diana and baby Kelly safe as the threat has its eyes set on the children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":10912}],"episodeFile":[{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Ungrateful Dead (3)-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E01.The Ungrateful Dead (3)-DVD.mkv","size":425402887,"dateAdded":"2019-03-03T18:32:59.86331Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7020},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Bad Teeth (1)-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E01.Bad Teeth (1)-DVD.mp4","size":398773096,"dateAdded":"2019-03-03T18:32:59.909506Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7021},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Kiss (2)-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E02.The Kiss (2)-DVD.mp4","size":398088268,"dateAdded":"2019-03-03T18:33:00.103954Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7023},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E02.PTZD (4)-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E02.PTZD (4)-DVD.mkv","size":329132321,"dateAdded":"2019-03-03T18:33:00.162815Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7024},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Bad Moon Rising-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E03.Bad Moon Rising-DVD.mp4","size":397298547,"dateAdded":"2019-03-03T18:33:00.282927Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7026},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E03.A Dish Best Served Cold-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E03.A Dish Best Served Cold-DVD.mkv","size":364339703,"dateAdded":"2019-03-03T18:33:00.340644Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7027},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E04.One Night Stand-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E04.One Night Stand-DVD.mkv","size":451326837,"dateAdded":"2019-03-03T18:33:00.447573Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7029},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Quill-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E04.Quill-DVD.mp4","size":395111142,"dateAdded":"2019-03-03T18:33:00.538829Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7030},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Good Shepherd-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E05.The Good Shepherd-DVD.mp4","size":401120072,"dateAdded":"2019-03-03T18:33:00.711022Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7032},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E05.El Cucuy-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E05.El Cucuy-DVD.mkv","size":352886696,"dateAdded":"2019-03-03T18:33:00.89785Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7034},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Over My Dead Body-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E06.Over My Dead Body-DVD.mp4","size":402725035,"dateAdded":"2019-03-03T18:33:01.066117Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7036},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Stories We Tell Our Young-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E06.Stories We Tell Our Young-DVD.mkv","size":286475124,"dateAdded":"2019-03-03T18:33:01.28841Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7039},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Bottle Imp-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E07.The Bottle Imp-DVD.mp4","size":396389708,"dateAdded":"2019-03-03T18:33:01.455404Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7041},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Cold Blooded-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E07.Cold Blooded-DVD.mkv","size":300401292,"dateAdded":"2019-03-03T18:33:01.622178Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7043},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Other Side-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E08.The Other Side-DVD.mp4","size":399699321,"dateAdded":"2019-03-03T18:33:01.685114Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7044},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Twelve Days of Krampus-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E08.Twelve Days of Krampus-DVD.mkv","size":378283833,"dateAdded":"2019-03-03T18:33:01.850801Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7046},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E09.La Llorona-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E09.La Llorona-DVD.mp4","size":393600603,"dateAdded":"2019-03-03T18:33:02.192091Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"42:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7049},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Red Menace-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E09.Red Menace-DVD.mkv","size":362214477,"dateAdded":"2019-03-03T18:33:02.268138Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7050},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Hour of Death-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E10.The Hour of Death-DVD.mp4","size":399042193,"dateAdded":"2019-03-03T18:33:02.4353Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7052},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Eyes of the Beholder-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E10.Eyes of the Beholder-DVD.mkv","size":334738374,"dateAdded":"2019-03-03T18:33:02.63116Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7054},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E11.To Protect and Serve Man-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E11.To Protect and Serve Man-DVD.mp4","size":395221120,"dateAdded":"2019-03-03T18:33:02.810847Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7056},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E11.The Good Soldier-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E11.The Good Soldier-DVD.mkv","size":313678753,"dateAdded":"2019-03-03T18:33:02.97428Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7058},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Season of the Hexenbiest (1)-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E12.Season of the Hexenbiest (1)-DVD.mp4","size":396030831,"dateAdded":"2019-03-03T18:33:03.204252Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7061},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Wild Hunt (1)-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E12.The Wild Hunt (1)-DVD.mkv","size":335550894,"dateAdded":"2019-03-03T18:33:03.272199Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7062},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Face Off (2)-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E13.Face Off (2)-DVD.mp4","size":397673729,"dateAdded":"2019-03-03T18:33:03.569124Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7065},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Revelation (2)-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E13.Revelation (2)-DVD.mkv","size":329547060,"dateAdded":"2019-03-03T18:33:03.634666Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7066},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Natural Born Wesen-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E14.Natural Born Wesen-DVD.mp4","size":396374550,"dateAdded":"2019-03-03T18:33:03.915535Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7068},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Mommy Dearest-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E14.Mommy Dearest-DVD.mkv","size":324169032,"dateAdded":"2019-03-03T18:33:03.977757Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7069},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Mr. Sandman-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E15.Mr. Sandman-DVD.mp4","size":398166018,"dateAdded":"2019-03-03T18:33:04.089138Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7071},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Once We Were Gods-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E15.Once We Were Gods-DVD.mkv","size":322964188,"dateAdded":"2019-03-03T18:33:04.267163Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7072},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E16.The Show Must Go On-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E16.The Show Must Go On-DVD.mkv","size":407644399,"dateAdded":"2019-03-03T18:33:04.347828Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7073},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Nameless-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E16.Nameless-DVD.mp4","size":396754318,"dateAdded":"2019-03-03T18:33:04.44716Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7074},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Synchronicity-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E17.Synchronicity-DVD.mkv","size":414077666,"dateAdded":"2019-03-03T18:33:04.725426Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7076},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E17.One Angry Fuchsbau-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E17.One Angry Fuchsbau-DVD.mp4","size":395489945,"dateAdded":"2019-03-03T18:33:04.932949Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7078},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Volcanalis-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E18.Volcanalis-DVD.mp4","size":393443985,"dateAdded":"2019-03-03T18:33:05.144659Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7080},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E18.The Law of Sacrifice-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E18.The Law of Sacrifice-DVD.mkv","size":345954371,"dateAdded":"2019-03-03T18:33:05.282372Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7081},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Nobody Knows the Trubel I've Seen-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E19.Nobody Knows the Trubel I've Seen-DVD.mkv","size":435455494,"dateAdded":"2019-03-03T18:33:05.367475Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7082},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Endangered-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E19.Endangered-DVD.mp4","size":399085736,"dateAdded":"2019-03-03T18:33:05.47355Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7083},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Kiss of the Muse-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E20.Kiss of the Muse-DVD.mp4","size":395595964,"dateAdded":"2019-03-03T18:33:05.836519Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7086},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E20.My Fair Wesen-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E20.My Fair Wesen-DVD.mkv","size":352865686,"dateAdded":"2019-03-03T18:33:05.919488Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7087},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E21.The Waking Dead (1)-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E21.The Waking Dead (1)-DVD.mp4","size":395605539,"dateAdded":"2019-03-03T18:33:06.140886Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7089},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E21.The Inheritance-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E21.The Inheritance-DVD.mkv","size":335770142,"dateAdded":"2019-03-03T18:33:06.237636Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7090},{"seriesId":134,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Goodnight, Sweet Grimm (2)-DVD.mp4","path":"\/tv\/Grimm\/Season 02\/S02E22.Goodnight, Sweet Grimm (2)-DVD.mp4","size":396541229,"dateAdded":"2019-03-03T18:33:06.421654Z","releaseGroup":"FGT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"43:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7092},{"seriesId":134,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Blonde Ambition-DVD.mkv","path":"\/tv\/Grimm\/Season 03\/S03E22.Blonde Ambition-DVD.mkv","size":363181081,"dateAdded":"2019-03-03T18:33:06.5153Z","releaseGroup":"DEMAND","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":7093},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Fugitive-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E01.Fugitive-Bluray-1080p.mkv","size":3517770717,"dateAdded":"2020-08-25T18:20:44.079116Z","sceneName":"grimm.s06e01.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9398000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15355},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Trust Me Knot-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E02.Trust Me Knot-Bluray-1080p.mkv","size":3517579314,"dateAdded":"2020-08-25T18:22:47.370957Z","sceneName":"grimm.s06e02.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9381000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15356},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Oh Captain, My Captain-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E03.Oh Captain, My Captain-Bluray-1080p.mkv","size":3517634664,"dateAdded":"2020-08-25T18:24:51.368892Z","sceneName":"grimm.s06e03.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9386000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15357},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E04.El Cuegle-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E04.El Cuegle-Bluray-1080p.mkv","size":3518263551,"dateAdded":"2020-08-25T18:26:54.492107Z","sceneName":"grimm.s06e04.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9373000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15358},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E05.The Seven Year Itch-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E05.The Seven Year Itch-Bluray-1080p.mkv","size":3518796819,"dateAdded":"2020-08-25T18:28:57.604269Z","sceneName":"grimm.s06e05.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9386000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15359},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Breakfast in Bed-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E06.Breakfast in Bed-Bluray-1080p.mkv","size":3516666350,"dateAdded":"2020-08-25T18:31:03.448405Z","sceneName":"grimm.s06e06.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9369000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15360},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Blind Love-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E07.Blind Love-Bluray-1080p.mkv","size":3517991170,"dateAdded":"2020-08-25T18:33:04.388966Z","sceneName":"grimm.s06e07.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9698000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15361},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E08.The Son Also Rises-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E08.The Son Also Rises-Bluray-1080p.mkv","size":3517994031,"dateAdded":"2020-08-25T18:35:07.467236Z","sceneName":"grimm.s06e08.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9380000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15362},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Tree People-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E09.Tree People-Bluray-1080p.mkv","size":3517177799,"dateAdded":"2020-08-25T18:37:12.679634Z","sceneName":"grimm.s06e09.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9459000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15363},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Blood Magic-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E10.Blood Magic-Bluray-1080p.mkv","size":3518475494,"dateAdded":"2020-08-25T18:39:16.820248Z","sceneName":"grimm.s06e10.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9373000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15364},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Where the Wild Things Were-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E11.Where the Wild Things Were-Bluray-1080p.mkv","size":3518217173,"dateAdded":"2020-08-25T18:41:22.80124Z","sceneName":"grimm.s06e11.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9382000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15365},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Zerst\u00f6rer Shrugged-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E12.Zerst\u00f6rer Shrugged-Bluray-1080p.mkv","size":3518017725,"dateAdded":"2020-08-25T18:43:33.072124Z","sceneName":"grimm.s06e12.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9381000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15366},{"seriesId":134,"seasonNumber":6,"relativePath":"Season 06\/S06E13.The End-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 06\/S06E13.The End-Bluray-1080p.mkv","size":3518110008,"dateAdded":"2020-08-25T18:45:42.224936Z","sceneName":"grimm.s06e13.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9381000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15367},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Thanks for the Memories-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E01.Thanks for the Memories-Bluray-1080p.mkv","size":4558926865,"dateAdded":"2020-08-25T22:56:18.188751Z","sceneName":"Grimm.S04E01.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13502798,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15369},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Octopus Head-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E02.Octopus Head-Bluray-1080p.mkv","size":4340962502,"dateAdded":"2020-08-25T22:58:33.264916Z","sceneName":"Grimm.S04E02.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12826742,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15370},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E03.The Last Fight-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E03.The Last Fight-Bluray-1080p.mkv","size":4429127409,"dateAdded":"2020-08-25T23:00:47.331123Z","sceneName":"Grimm.S04E03.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13098102,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15371},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Dyin' on a Prayer-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E04.Dyin' on a Prayer-Bluray-1080p.mkv","size":4178670264,"dateAdded":"2020-08-25T23:03:02.230562Z","sceneName":"Grimm.S04E04.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12317880,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15372},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Cry Luison-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E05.Cry Luison-Bluray-1080p.mkv","size":4490383363,"dateAdded":"2020-08-25T23:05:18.167166Z","sceneName":"Grimm.S04E05.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13279317,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15373},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Highway of Tears-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E06.Highway of Tears-Bluray-1080p.mkv","size":4266729299,"dateAdded":"2020-08-25T23:07:32.26833Z","sceneName":"Grimm.S04E06.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12595128,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15374},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E07.The Grimm Who Stole Christmas-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E07.The Grimm Who Stole Christmas-Bluray-1080p.mkv","size":3946706204,"dateAdded":"2020-08-25T23:09:43.124678Z","sceneName":"Grimm.S04E07.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11604086,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15375},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Chupacabra-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E08.Chupacabra-Bluray-1080p.mkv","size":4214507936,"dateAdded":"2020-08-25T23:11:51.503118Z","sceneName":"Grimm.S04E08.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12425137,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15376},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Wesenrein-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E09.Wesenrein-Bluray-1080p.mkv","size":3965794195,"dateAdded":"2020-08-25T23:14:03.319131Z","sceneName":"Grimm.S04E09.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11664580,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15377},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Tribunal-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E10.Tribunal-Bluray-1080p.mkv","size":3634789140,"dateAdded":"2020-08-25T23:16:15.320941Z","sceneName":"Grimm.S04E10.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10635180,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15378},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Death Do Us Part-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E11.Death Do Us Part-Bluray-1080p.mkv","size":3407364934,"dateAdded":"2020-08-25T23:18:24.349255Z","sceneName":"Grimm.S04E11.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9987412,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:44","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15379},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Mar\u00e9chauss\u00e9e-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E12.Mar\u00e9chauss\u00e9e-Bluray-1080p.mkv","size":3608161062,"dateAdded":"2020-08-25T23:20:26.139177Z","sceneName":"Grimm.S04E12.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10555345,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15380},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Trial by Fire-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E13.Trial by Fire-Bluray-1080p.mkv","size":3622424232,"dateAdded":"2020-08-25T23:22:32.657975Z","sceneName":"Grimm.S04E13.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10595786,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15381},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Bad Luck-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E14.Bad Luck-Bluray-1080p.mkv","size":3801329988,"dateAdded":"2020-08-25T23:24:36.117791Z","sceneName":"Grimm.S04E14.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11147506,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15382},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Double Date-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E15.Double Date-Bluray-1080p.mkv","size":3985798627,"dateAdded":"2020-08-25T23:26:41.488458Z","sceneName":"Grimm.S04E15.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11719720,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15383},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Heartbreaker-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E16.Heartbreaker-Bluray-1080p.mkv","size":3529603201,"dateAdded":"2020-08-25T23:28:52.427977Z","sceneName":"Grimm.S04E16.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10307355,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15384},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Hibernaculum-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E17.Hibernaculum-Bluray-1080p.mkv","size":3662415701,"dateAdded":"2020-08-25T23:30:56.56882Z","sceneName":"Grimm.S04E17.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10716795,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15385},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E18.Mishipeshu-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E18.Mishipeshu-Bluray-1080p.mkv","size":3474275493,"dateAdded":"2020-08-25T23:32:59.937397Z","sceneName":"Grimm.S04E18.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10129904,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15386},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E19.Iron Hans-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E19.Iron Hans-Bluray-1080p.mkv","size":3273304544,"dateAdded":"2020-08-25T23:35:05.081673Z","sceneName":"Grimm.S04E19.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9510512,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15387},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E20.You Don't Know Jack-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E20.You Don't Know Jack-Bluray-1080p.mkv","size":3653810810,"dateAdded":"2020-08-25T23:37:07.835578Z","sceneName":"Grimm.S04E20.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10696734,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15388},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Headache-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E21.Headache-Bluray-1080p.mkv","size":3201486007,"dateAdded":"2020-08-25T23:39:12.39615Z","sceneName":"Grimm.S04E21.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9284858,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15389},{"seriesId":134,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Cry Havoc-Bluray-1080p.mkv","path":"\/tv\/Grimm\/Season 04\/S04E22.Cry Havoc-Bluray-1080p.mkv","size":3234610031,"dateAdded":"2020-08-25T23:41:15.716343Z","sceneName":"Grimm.S04E22.1080p.BluRay.DD5.1.x264-DON","releaseGroup":"DON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9388832,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ Swedish \/ Danish \/ Dutch \/ Finnish \/ French \/ Norwegian"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15390},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E01.Pilot-Bluray-720p.mkv","size":755923505,"dateAdded":"2021-06-13T13:12:29.924216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18351},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Bears Will Be Bears-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E02.Bears Will Be Bears-Bluray-720p.mkv","size":691522698,"dateAdded":"2021-06-13T13:14:18.572299Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"42:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18352},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Beeware-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E03.Beeware-Bluray-720p.mkv","size":682468457,"dateAdded":"2021-06-13T13:16:09.496168Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18353},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Lonelyhearts-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E04.Lonelyhearts-Bluray-720p.mkv","size":681461097,"dateAdded":"2021-06-13T13:17:55.566939Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18354},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Danse Macabre-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E05.Danse Macabre-Bluray-720p.mkv","size":797778286,"dateAdded":"2021-06-13T13:19:42.002783Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18355},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Three Bad Wolves-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E06.The Three Bad Wolves-Bluray-720p.mkv","size":702634453,"dateAdded":"2021-06-13T13:21:29.175496Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18356},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Let Your Hair Down-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E07.Let Your Hair Down-Bluray-720p.mkv","size":830558182,"dateAdded":"2021-06-13T13:23:13.636343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1278x720","runTime":"43:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18357},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Game Ogre-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E08.Game Ogre-Bluray-720p.mkv","size":672633232,"dateAdded":"2021-06-13T13:24:58.738118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18358},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Of Mouse and Man-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E09.Of Mouse and Man-Bluray-720p.mkv","size":729720717,"dateAdded":"2021-06-13T13:26:45.354372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18359},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Organ Grinder-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E10.Organ Grinder-Bluray-720p.mkv","size":706073847,"dateAdded":"2021-06-13T13:28:30.26469Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18360},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Tarantella-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E11.Tarantella-Bluray-720p.mkv","size":657835868,"dateAdded":"2021-06-13T13:30:15.681723Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18361},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Last Grimm Standing-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E12.Last Grimm Standing-Bluray-720p.mkv","size":755602507,"dateAdded":"2021-06-13T13:32:02.103634Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18362},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Three Coins in a Fuchsbau-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E13.Three Coins in a Fuchsbau-Bluray-720p.mkv","size":572836703,"dateAdded":"2021-06-13T13:33:48.069106Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18363},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Plumed Serpent-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E14.Plumed Serpent-Bluray-720p.mkv","size":736330223,"dateAdded":"2021-06-13T13:35:31.704609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18364},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Island of Dreams-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E15.Island of Dreams-Bluray-720p.mkv","size":616363257,"dateAdded":"2021-06-13T13:37:18.098516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1254x720","runTime":"43:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18365},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Thing with Feathers-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E16.The Thing with Feathers-Bluray-720p.mkv","size":828926224,"dateAdded":"2021-06-13T13:39:04.057079Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18366},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Love Sick-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E17.Love Sick-Bluray-720p.mkv","size":817117041,"dateAdded":"2021-06-13T13:40:49.787722Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18367},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Cat and Mouse-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E18.Cat and Mouse-Bluray-720p.mkv","size":782273247,"dateAdded":"2021-06-13T13:42:36.279453Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18368},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Leave It to Beavers-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E19.Leave It to Beavers-Bluray-720p.mkv","size":748996647,"dateAdded":"2021-06-13T13:44:22.267033Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1276x720","runTime":"43:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18369},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Happily Ever Aftermath-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E20.Happily Ever Aftermath-Bluray-720p.mkv","size":743681606,"dateAdded":"2021-06-13T13:46:08.108345Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18370},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Big Feet-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E21.Big Feet-Bluray-720p.mkv","size":950253730,"dateAdded":"2021-06-13T13:47:53.557194Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18371},{"seriesId":134,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Woman in Black-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 01\/S01E22.Woman in Black-Bluray-720p.mkv","size":822389986,"dateAdded":"2021-06-13T13:49:43.496241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18372},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E01.The Grimm Identity-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E01.The Grimm Identity-Bluray-720p.mkv","size":552340011,"dateAdded":"2021-06-13T14:15:32.774543Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"41:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18373},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Clear and Wesen Danger-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E02.Clear and Wesen Danger-Bluray-720p.mkv","size":524624678,"dateAdded":"2021-06-13T14:17:16.617787Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18374},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Lost Boys-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E03.Lost Boys-Bluray-720p.mkv","size":513005727,"dateAdded":"2021-06-13T14:19:00.211033Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18375},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Maiden Quest-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E04.Maiden Quest-Bluray-720p.mkv","size":518342971,"dateAdded":"2021-06-13T14:20:44.681765Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18376},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Rat King-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E05.Rat King-Bluray-720p.mkv","size":572412492,"dateAdded":"2021-06-13T14:22:29.069031Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"42:56","scanType":"Progressive","subtitles":"English \/ Dutch"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18377},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Wesen Nacht-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E06.Wesen Nacht-Bluray-720p.mkv","size":507075030,"dateAdded":"2021-06-13T14:24:13.231047Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18378},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Eve of Destruction-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E07.Eve of Destruction-Bluray-720p.mkv","size":491740436,"dateAdded":"2021-06-13T14:25:56.004397Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18379},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E08.A Reptile Dysfunction-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E08.A Reptile Dysfunction-Bluray-720p.mkv","size":616455619,"dateAdded":"2021-06-13T14:27:39.507694Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18380},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Star-Crossed-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E09.Star-Crossed-Bluray-720p.mkv","size":539328228,"dateAdded":"2021-06-13T14:29:24.833462Z","releaseGroup":"Crossed","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18381},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Map of the Seven Knights-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E10.Map of the Seven Knights-Bluray-720p.mkv","size":524404040,"dateAdded":"2021-06-13T14:31:09.036822Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"41:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18382},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Key Move-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E11.Key Move-Bluray-720p.mkv","size":572145293,"dateAdded":"2021-06-13T14:32:54.37195Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18383},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Into the Schwarzwald-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E12.Into the Schwarzwald-Bluray-720p.mkv","size":531226822,"dateAdded":"2021-06-13T14:34:38.461859Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18384},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Silence of the Slams-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E13.Silence of the Slams-Bluray-720p.mkv","size":559091145,"dateAdded":"2021-06-13T14:36:21.813657Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18385},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Lycanthropia-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E14.Lycanthropia-Bluray-720p.mkv","size":650602750,"dateAdded":"2021-06-13T14:38:06.604305Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18386},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Skin Deep-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E15.Skin Deep-Bluray-720p.mkv","size":453340064,"dateAdded":"2021-06-13T14:39:52.545117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"39:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18387},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E16.The Believer-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E16.The Believer-Bluray-720p.mkv","size":514955320,"dateAdded":"2021-06-13T14:41:36.688714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18388},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E17.Inugami-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E17.Inugami-Bluray-720p.mkv","size":510764104,"dateAdded":"2021-06-13T14:43:21.974656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"42:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18389},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Good to the Bone-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E18.Good to the Bone-Bluray-720p.mkv","size":518472090,"dateAdded":"2021-06-13T14:45:05.647739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18390},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E19.The Taming of the Wu-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E19.The Taming of the Wu-Bluray-720p.mkv","size":565263517,"dateAdded":"2021-06-13T14:46:50.764584Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18391},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E20.Bad Night-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E20.Bad Night-Bluray-720p.mkv","size":460242799,"dateAdded":"2021-06-13T14:48:35.488942Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"42:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18392},{"seriesId":134,"seasonNumber":5,"relativePath":"Season 05\/S05E21.S05E22.Beginning of the End-Bluray-720p.mkv","path":"\/tv\/Grimm\/Season 05\/S05E21.S05E22.Beginning of the End-Bluray-720p.mkv","size":977982911,"dateAdded":"2021-06-13T14:50:19.886652Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"1:23:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18393}],"queue":[]},"188":{"series":{"title":"Uzumaki: Spiral into Horror","alternateTitles":[],"sortTitle":"uzumaki spiral into horror","status":"upcoming","ended":false,"overview":"Kirei lives in a town that lately has odd occurrences, and each one somehow is connected to a spiral. Soon the spiral occurrences spread to infect even the bodies of people, which suddenly turns the everyday events in her life into chaos and horror.","network":"Adult Swim","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/196\/banner.jpg?lastWrite=637083955614316740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d7e6a8404342.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/196\/poster.jpg?lastWrite=637410102918491490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/369026\/posters\/5faffcf6049bf.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/196\/fanart.jpg?lastWrite=637410102920891450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/369026\/backgrounds\/5faffd13a5479.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":0,"path":"\/tv\/Uzumaki","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":369026,"tvRageId":0,"tvMazeId":46565,"seriesType":"standard","cleanTitle":"uzumakispiralintohorror","imdbId":"tt10905902","titleSlug":"uzumaki-spiral-into-horror","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Anime","Drama","Horror","Mini-Series","Romance"],"tags":[],"added":"2019-11-03T16:32:39.547235Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":196},"episodes":[{"seriesId":196,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"DELAYED October 2022","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14745},{"seriesId":196,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14746},{"seriesId":196,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14747},{"seriesId":196,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14748}],"episodeFile":[],"queue":[]},"192":{"series":{"title":"Lilo & Stitch: The Series","alternateTitles":[{"title":"Lilo and Stitch","seasonNumber":-1}],"sortTitle":"lilo stitch series","status":"ended","ended":true,"overview":"Picking up where the 2002 Walt Disney movie hit left off, this animated series chronicles the further adventures of renegade scientist Dr. Jumba Jookiba's beloved Experiment 626, who is now living happily as Lilo's alien buddy Stitch. The previous 625 experiments become activated when submerged in water and, like Stitch, each experiment has its own terrible talent. Lilo and Stitch's mission is to catch Stitch's cousins before they fall into the clutches of wrongdoers and redirect them to live productively.","previousAiring":"2005-11-29T10:00:00Z","network":"Toon Disney","airTime":"05:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/192\/banner.jpg?lastWrite=637079731073852130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71624-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/192\/poster.jpg?lastWrite=637079731075612100","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71624-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/192\/fanart.jpg?lastWrite=637101147524774270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71624-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-02-09T10:00:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":9350212410,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-11-29T10:00:00Z","episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2003,"path":"\/tv\/Lilo & Stitch - The Series","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":71624,"tvRageId":4247,"tvMazeId":9803,"firstAired":"2003-09-20T00:00:00Z","seriesType":"standard","cleanTitle":"lilostitchseries","imdbId":"tt0364774","titleSlug":"lilo-and-stitch-the-series","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Animation"],"tags":[],"added":"2019-10-29T19:11:45.776672Z","ratings":{"votes":317,"value":8.8},"statistics":{"seasonCount":2,"episodeFileCount":39,"episodeCount":65,"totalEpisodeCount":70,"sizeOnDisk":9350212410,"percentOfEpisodes":60.0},"id":192},"episodes":[{"seriesId":192,"episodeFileId":0,"seasonNumber":0,"episodeNumber":99,"title":"TBA","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21027},{"seriesId":192,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Lilo & Stitch: The Movie","airDate":"2002-06-16","airDateUtc":"2002-06-16T09:00:00Z","overview":"The story of a little creature created by genetic experimentation and bound to prison with his evil creator. Stitch escapes and heads for Earth where he tries to impersonate a dog and gets adopted by little Lilo, whom, bent on self preservation, he plans to use as a human shield to protect him for the aliens sent to recapture him. But without a greater purpose in life, no friends, family or memories, Stitch does a little soul searching and begins to understand the meanings of \"love\" and \"family\" and his feeling for Lilo begin to change.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14543},{"seriesId":192,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Stitch! The Movie","airDate":"2003-08-26","airDateUtc":"2003-08-26T09:00:00Z","overview":"The pilot episode. The film starts out with ex-Captain Gantu on his new spaceship (his original got destroyed in the first film), being hired by H\u00e4msterviel to retrieve the experiments. Meanwhile, on Earth, Stitch is still not fitting in. Lilo tries to encourage him by saying he's one-of-a-kind, comparing him to Frankenstein. Naturally, that just makes him feel worse. Suddenly, a crash is heard from below. Running downstairs, the pair encounters Gantu, breaking into their home. In the ensuing chaos, Gantu finds and takes a blue ball with the number \"625\" on it before abducting Jumba for interrogation. Lilo and Stitch manage to take Jumba's ship to chase Gantu into space and engage him in battle, before being defeated and falling back towards Earth.\r\n\r\nBack at the house, Lilo, Stitch and Pleakley talk and find the container Jumba was hiding. Pleakley decides that these are the other experiments, in dehydrated form. He warns them not to tell anyone or put the experiments in water. Deliberately disobeying Pleakley, Stitch and Lilo retrieve the container and hydrate Experiment 221, who promptly escapes.\r\n\r\nMeanwhile, Jumba is being held captive on the ship of Dr. H\u00e4msterviel, who makes his appearance and is surprisingly a small gerbil\/poodle\/rabbit-like alien. Unable to intimidate Jumba, H\u00e4msterviel activates Experiment 625 to attack him. Fortunately for Jumba, while 625 has all of Stitch's powers, he is incredibly lazy, a terrible coward, and prioritizes sandwiches above all else.\r\n\r\nMeanwhile, Pleakley is able to come into contact with H\u00e4msterviel's ship via telephone. H\u00e4msterviel tells Pleakley that he wants a ransom of the 624 experiments in return for Jumba. When Pleakley informs the other family members what the ransom is, Nani proceeds to call Cobra Bubbles while Lilo and Stitch go out to find 221. When Cobra arrives the next morning, he seems to already know about what happened. Meanwhile, Lilo and Stitch finally catch a troublesome Experiment 221 at a hote","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14545},{"seriesId":192,"episodeFileId":10378,"seasonNumber":1,"episodeNumber":1,"title":"Richter","airDate":"2003-09-20","airDateUtc":"2003-09-20T09:00:00Z","overview":"Experiment #513 - Richter\r\nStitch doesn't know how to take care of anything, or things that don't belong to him. He's already got Nani in trouble at the Rental Shack, by breaking the Shake Machine. However, when Richter turns up and is causing earthquakes, will Stitch be able to stop him breaking everything... Even his favourite ball?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14547},{"seriesId":192,"episodeFileId":10379,"seasonNumber":1,"episodeNumber":2,"title":"Phantasmo","airDate":"2003-09-27","airDateUtc":"2003-09-27T09:00:00Z","overview":"Experiment #375 - Phantasmo\r\nExperiment #375 has been activated; a phantom-like experiment that can inhabit and animate inanimate objects. So when it gets loose in the family's house, it inhabits Lilo's toys and creates all sorts of mess, for which Stitch gets the blame. Can they catch the real culprit, or will Stitch be blamed for everything?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14548},{"seriesId":192,"episodeFileId":10380,"seasonNumber":1,"episodeNumber":3,"title":"Clip","airDate":"2003-10-04","airDateUtc":"2003-10-04T09:00:00Z","overview":"Experiment #177 - Clip\r\nLilo is upset when Mertle gets a nice-looking fancy hairdo. But when she encounters a hair-eating experiment, Clip, she decides to get her revenge on Mertle by placing it in her bedroom with the plan of ruining Mertle's hair. But the plan runs amock and the experiment eats Mertle's mom's hair instead, and now the experiment is loose on the island. Now Lilo and Stitch must track down the experiment before everyone goes bald!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14549},{"seriesId":192,"episodeFileId":10381,"seasonNumber":1,"episodeNumber":4,"title":"Mr. Stenchy","airDate":"2003-10-11","airDateUtc":"2003-10-11T09:00:00Z","overview":"Experiment #254 - Mr. Stenchy\r\nLilo and Stitch have captured a new experiment, #254. He is insanely cute too, and charms all of Lilo's friends. Stitch is jealous though, so at the first chance he gets, he lets Gantu capture him.\r\nAs luck would have it, 42 hours after the experiment's activation, Mr. Stenchy releases such a foul stench, the area he releases it in is uninhabitable for decades. But without knowing of when Mr. Stenchy was activated, how will Lilo and Stitch save him before he releases the smell?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14550},{"seriesId":192,"episodeFileId":10383,"seasonNumber":1,"episodeNumber":6,"title":"Spooky","airDate":"2003-10-12","airDateUtc":"2003-10-12T09:25:00Z","overview":"Experiment #300 - Spooky\r\nIt's Hallowe'en! Lilo has dressed up as a gory character, while Nani is trying to get everything ready for the trick-or-treaters. Sadly, the house never gets any trick-or-treaters, but Nani wants to fix this. However, Experiment #300, Spooky, is activated, and it can turn into anyone's greatest fear. So, it makes it's way to Kaiaulu Hale's Hallowe'en party, and is terrifying everyone. Can Lilo and Stitch stop it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":14542},{"seriesId":192,"episodeFileId":10382,"seasonNumber":1,"episodeNumber":5,"title":"Holio","airDate":"2003-10-12","airDateUtc":"2003-10-12T09:00:00Z","overview":"Experiment #606 - Holio\r\nIt's Mertle's birthday, and she's got a brand new bracelet! But Lilo soon finds out it's got an experiment pod, though she doesn't know the number. So, Stitch goes undercover for her, and discovers it is the pod for Experiment #606. Now Lilo must get the pod back as quickly as possible; as #606 is an experiment that can suck in the entire world!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14551},{"seriesId":192,"episodeFileId":10384,"seasonNumber":1,"episodeNumber":7,"title":"Cannonball","airDate":"2003-10-13","airDateUtc":"2003-10-13T09:00:00Z","overview":"Experiment #520 - Cannonball\r\nA bird has discovered a strange blue ball in her nest. After deciding she doesn't need it, she discards it into the river running below her tree. It turns out it's #520's pod, and it activates. Now the experiment is wreaking havoc over the island with it's huge behind by bouncing and shaking the ground. So, Lilo and Stitch must capture it, but Gantu is on it's trail too.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14552},{"seriesId":192,"episodeFileId":10385,"seasonNumber":1,"episodeNumber":8,"title":"Yapper","airDate":"2003-10-13","airDateUtc":"2003-10-13T09:25:00Z","overview":"Experiment #007 - Gigi\r\nMertle has got a new dog; Gigi. Little does she know, it's really Experiment #007, a dog that can keep everyone in the neighbourhood awake with it's loud yapping. So, Lilo and Stitch must protect it from Gantu, but have to go to a dog show to do it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14553},{"seriesId":192,"episodeFileId":10386,"seasonNumber":1,"episodeNumber":9,"title":"Yin-Yang","airDate":"2003-10-17","airDateUtc":"2003-10-17T09:00:00Z","overview":"Experiments #501 - Yin and #501 - Yang\r\nExperiments #501 and #502 are both activated at the same time, a water sprayer and a lava sprayer. Unfortunately, Lilo and Stitch are having some problems with each other, and soon decide to split apart, with Lilo teaming up with Pleakley, and Stitch teaming up with Jumba. Can the 2 capture the experiments without their partner?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14554},{"seriesId":192,"episodeFileId":10387,"seasonNumber":1,"episodeNumber":10,"title":"Kixx","airDate":"2003-10-20","airDateUtc":"2003-10-20T09:00:00Z","overview":"Experiment #601 - Kixx\r\nWhen Experiment #601 is activated, things are looking bad, as he is beating up the islanders. Stitch is ready for it, but when he eats the combination of a left tennis shoe and macadamia nuts, it creates a toxic poision, which erases all of his super abilities. Now Lilo has to retrain him from scratch, but Stitch doesn't like the idea.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14555},{"seriesId":192,"episodeFileId":10388,"seasonNumber":1,"episodeNumber":11,"title":"Splodyhead","airDate":"2003-10-24","airDateUtc":"2003-10-24T09:00:00Z","overview":"Experiment #619 - Splodyhead\r\nStitch won't listen to Lilo's advice about trying to see the good in people, and will go to any lengths to stop him capturing an experiment pod, including racing to a neighbouring desert island, with Lilo, Jumba and Pleakley in tow. But after the camp of the 'hunting parties' are destroyed, Stitch and Gantu blame each other. Turns out it's an experiment. Who will capture Splodyhead?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14556},{"seriesId":192,"episodeFileId":10389,"seasonNumber":1,"episodeNumber":12,"title":"Amnesio","airDate":"2003-10-27","airDateUtc":"2003-10-27T10:00:00Z","overview":"Experiment #303 - Amnesio\r\nIt's Lilo's birthday, but no one has remembered. So, she decides to give herself her own party. However, during the day, Experiment #303 is activated and wipes Lilo's, Stitch's and Gantu's memory. Lilo and Gantu, who think they are Martha and Lenny go after Stitch, who has returned to his natural destructive programming, and so they think is a criminal.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14557},{"seriesId":192,"episodeFileId":10390,"seasonNumber":1,"episodeNumber":13,"title":"Swirly","airDate":"2003-11-03","airDateUtc":"2003-11-03T10:00:00Z","overview":"Experiment #383 - Swirly\r\nA new show called 'Look at This!' is going to be broadcast lives in the Birds of Paradise Hotel, and everyone is excited, except Lilo and Stitch. At the same time, Experiment #383 is activated and is a hynotic experiment. Hamsterviel sends Gantu after it to hynotise everyone who watches the episode of 'Look at This!'.\r\nThings soon break into chaos when Lilo and Stitch capture Swirly from Gantu and take him home, ending up hynotised, and Swirly is recaptured. Will Lilo and Stitch realise who they are? Will they recapture Swirly and give him his one true place?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14558},{"seriesId":192,"episodeFileId":10391,"seasonNumber":1,"episodeNumber":14,"title":"Fibber","airDate":"2003-11-07","airDateUtc":"2003-11-07T10:00:00Z","overview":"Experiment #032 - Fibber\r\nPleakley's mother is badgering him about finding a wife, and has even found a perfect candidate on his home planet, so Lilo comes up with an idea: To tell his mom he is already engaged to a human. But Pleakley's family turn up on Earth, so Pleakley must put on a fake wedding, passing Nani as his bride-to-be. But Experiment #032 has turned up, Fibber, and will beep whenever someone is lying. So, as Pleakley tries to plan his fake wedding, Lilo and Stitch have to prevent Fibber from giving away the game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14559},{"seriesId":192,"episodeFileId":10392,"seasonNumber":1,"episodeNumber":15,"title":"Tank","airDate":"2003-11-10","airDateUtc":"2003-11-10T10:00:00Z","overview":"Experiment #586 - Tank\r\nThe Hula Girls have ditched Mertle for Lilo, and consequently, Lilo neglects Stitch to hang with them at the Kauai Medieval Festival. So, when Experiment #586 is activated, Stitch needs someone to capture it with. And who does he team up with? Mertle. Strangely, Stitch and Mertle are having fun trying to capture the metal eater, but this ends when it storms the Medieval Festival.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14560},{"seriesId":192,"episodeFileId":10393,"seasonNumber":1,"episodeNumber":16,"title":"Sprout","airDate":"2003-11-14","airDateUtc":"2003-11-14T10:00:00Z","overview":"Experiment #509 - Sprout\r\nLilo finds the pod for Experiment #509, which is a plant experiment. Lilo wants to activate to find it's true place, but Jumba won't let her and locks it up. However, when she makes a bet with Mertle, she breaks the lock and activates #509 and dubs it Sprout. But things get out of control at the Kauai Town Fair, and Stitch has a showdown with a cowboy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14561},{"seriesId":192,"episodeFileId":10394,"seasonNumber":1,"episodeNumber":17,"title":"Elastico","airDate":"2003-11-17","airDateUtc":"2003-11-17T10:00:00Z","overview":"Experiment #345 - Elastico\r\nLilo is going to perform a Hula Dance, but gets angry when Stitch gets in her way. He runs away and finds Experiment #345, Elastico, who is performing at a local circus. Gantu arrives, though, and steals Elastico. The Ringmaster lets Stitch take Elastico's place. He invites Lilo to visit him, but she refuses.\r\nSoon Elastico escapes Gantu and returns to the circus, and Lilo needs Stitch to dance, so has to look for him. But which ohana will Stitch choose?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14562},{"seriesId":192,"episodeFileId":10395,"seasonNumber":1,"episodeNumber":18,"title":"Yaarp","airDate":"2003-11-21","airDateUtc":"2003-11-21T10:00:00Z","overview":"Experiment #613 - Yaarp\r\nMrs. Hasagawa is watering her vegetables innocently one morning. However, she activates Experiment #613, Yaarp, which is designed to destroy buildings with it's sonic blasts. Lilo and Stitch are hot on it's trail, when it yarps, and because of Stitch's super hearing, Stitch is temporarily deaf. So, when Jumba says only someone with no ears could be safe from Yaarp, Pleakley is on the stage as an Experiment Hunter. Pleakley catches Yaarp, but Stitch's plan to deter Gantu away from the hunt goes wrong, and he captures Stitch. And now he is offering Lilo a trade: Stitch for Yaarp.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14563},{"seriesId":192,"episodeFileId":10396,"seasonNumber":1,"episodeNumber":19,"title":"627","airDate":"2003-11-24","airDateUtc":"2003-11-24T10:00:00Z","overview":"Experiment #627\r\nStitch has been recently very successful at capturing and repurposing the Experiments, but it's gone to his head. He thinks he's too good for everything and is being a royal pain.\r\nBut things are set to change when Pleakley goes into Jumba's ship and sees an experiment pod with the number '627' on it. Jumba has been making a new experiment. Luckily, it's in containment. That is, until they leave the ship and it escapes! Now it's employed by Gantu and Stitch wants to prove he's better than it. But he just gets beaten, and as 627 can't be turned good, Lilo and Stitch are in trouble...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14564},{"seriesId":192,"episodeFileId":10397,"seasonNumber":1,"episodeNumber":20,"title":"The Asteroid","airDate":"2003-12-01","airDateUtc":"2003-12-01T10:00:00Z","overview":"No Experiments Are Featured In This Episode\r\nIn a trip to the observatory, Lilo and Stitch overhear Cobra telling an astronomer about a huge asteroid heading towards Earth. Lilo and Stitch go around Kauai telling the people to evacuate with them onto their ship. Stitch also warns his cousins. However, only 6 Experiments - Digger, Swirly, Hammerhead, Sparky, Spooky and Kixx - and a surfer from the beach arrive at the ship. So, Stitch comes up with a new idea; Digger will drill a hole to the center of the asteroid, it can be smashed. Things seem to be going to plan, but they soon find out something lives on the asteroid, and their plan comes crashing down.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14565},{"seriesId":192,"episodeFileId":10398,"seasonNumber":1,"episodeNumber":21,"title":"Topper","airDate":"2003-12-05","airDateUtc":"2003-12-05T10:00:00Z","overview":"Experiment #025 - Topper\r\nStitch is having his first Christmas on Earth, and Lilo is trying to teach him about the holiday. But when Stitch sees an unactivated pod fall into a gift in the mall, he goes crazy trying to track it down. Soon he ends up stealing every gift on the island, and Lilo thinks he has become greedy. However, the truth comes out... But can they find the Experiment pod?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14566},{"seriesId":192,"episodeFileId":10399,"seasonNumber":1,"episodeNumber":22,"title":"Melty","airDate":"2003-12-08","airDateUtc":"2003-12-08T10:00:00Z","overview":"Experiment #228 - Melty\r\nLilo makes an idiot of herself in front of Keoni, so she and Stitch decide to use Jumba's Time Machine to go back and change the past. However, she may have fixed her problem, but she creates a bigger problem when Stitch destroys the Birds of Paradise hotel chasing Experiment #228 and Nani is fired from her new job. Will things work out?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14567},{"seriesId":192,"episodeFileId":10400,"seasonNumber":1,"episodeNumber":23,"title":"Houdini","airDate":"2003-12-12","airDateUtc":"2003-12-12T10:00:00Z","overview":"Experiment #604 - Houdini\r\nStitch and Pleakley are working up a terrible magic act to perform at one of Mertle's parties, so Lilo secretly helps them out by activating Experiment #303, Houdini, which can make things disappear and reappear with a blink of it's eyes. But when Gantu crashes the party, things go wrong, and Stitch is made invisible and Houdini gets away. And just to make things worse, Mertle's aunt, who is a big LA producer, wants to make Stitch a star because of his magic act, but only Lilo, Jumba, Pleakley and Houdini know it is phony.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14568},{"seriesId":192,"episodeFileId":10401,"seasonNumber":1,"episodeNumber":24,"title":"Sinker","airDate":"2003-12-15","airDateUtc":"2003-12-15T10:00:00Z","overview":"Experiment #602 - Sinker\r\nLilo is having high hopes for Keoni and his sailboat entry in a regatta, until his boat is sliced in half by Experiment #602. Soon Lilo, Stitch, Jumba and Pleakley are stowaways on a cruise ship. So while Pleakley is fascinated by shuffleboard, and Stitch digs into the buffet, Lilo must find the ship's Captain and warn him about Experiment #602.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14569},{"seriesId":192,"episodeFileId":10402,"seasonNumber":1,"episodeNumber":25,"title":"Nosy","airDate":"2003-12-19","airDateUtc":"2003-12-19T10:00:00Z","overview":"Experiment #199 - Nosy\r\nNani wants a job at Mr. Jameson's hotel, so she invites him and his son Keoni over for brunch to prove how much 'Aloha Hospitality' she has. Unforunately, Experiment #199 has been activated, and he seeks out enemy's secrets. However, a glitch in his programming has made him into nothing more than a gossip. So now Lilo and Stitch must stop him blurting out the family's secrets to Mr. Jameson and Keoni.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14570},{"seriesId":192,"episodeFileId":10403,"seasonNumber":1,"episodeNumber":26,"title":"Finder","airDate":"2003-12-22","airDateUtc":"2003-12-22T10:00:00Z","overview":"Experiment #458 - Finder\r\nExperiment #458 can find absolutely anything, so Lilo names him Finder. And when she takes him to show-and-tell, he's a huge hit, upstaging Mertle. Mertle is bitter, so she searches for something to compete with Lilo's show-and-tell. Unfortunately, she is unsuccessful. That is, until she sees Hamsterviel on planet Earth!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14571},{"seriesId":192,"episodeFileId":10404,"seasonNumber":1,"episodeNumber":27,"title":"Slushy","airDate":"2003-12-26","airDateUtc":"2003-12-26T10:00:00Z","overview":"Experiment #523 - Slushy\r\nA giant heatwave has struck Kauai. Lilo is trying to get Stitch to try something to escape the heat, but Stitch just refuses: He's a creature of habit, and won't try new things. As he tries to get a cold sofa, he activates Experiment #509, an ice experiment from the elemental series, who has frosty breath that can transform any town into a frozen one.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14572},{"seriesId":192,"episodeFileId":10405,"seasonNumber":1,"episodeNumber":28,"title":"Dupe","airDate":"2003-12-29","airDateUtc":"2003-12-29T10:00:00Z","overview":"Experiment #344 - Dupe\r\nLilo and Stitch have managed to capture Experiment #344, who can duplicate anything. This leaves Gantu feeling down, so he goes home to talk to 625 about it. However, 625 gets bored and tells him he doesn't care, causing Gantu to go off in a rage.\r\nMeanwhile, Lilo, who has hosted a slumber party but no one turned up, decides to clone herself using #344, but Stitch jumps in the way, creating an extra 3 copies of himself, who all need training.\r\nGantu, in his rage, discovers 4 experiment pods: Heat, Plasmoid, Thrasher and HammerFace. He activates them and plans an attack on Lilo and Stitch. But surely 4 Stitches can beat Gantu.. Right?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14573},{"seriesId":192,"episodeFileId":10406,"seasonNumber":1,"episodeNumber":29,"title":"Short Stuff","airDate":"2004-01-02","airDateUtc":"2004-01-02T10:00:00Z","overview":"Experiment #297 - ShortStuff\r\nStitch is getting really upset about people thinking he's too short, so Pleakley uses Jumba's growing ray to make Stitch bigger. Meanwhile, an experiment is activated and it is soon short circuiting mechanical devices all over the island.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14574},{"seriesId":192,"episodeFileId":10407,"seasonNumber":1,"episodeNumber":30,"title":"Angel","airDate":"2004-01-05","airDateUtc":"2004-01-05T10:00:00Z","overview":"Experiment #624 - Angel\r\nExperiment #624 has been activated by Gantu, and is used as a secret weapon to try to turn Stitch evil. But because Stitch is more advanced than #624, aka Angel, her evil song doesn't work on either him or 625. Her song does work, however, on the other 623 experiments, so she makes up an army of the experiments on the island. Meanwhile, Stitch tries to get Angel's affections, and Lilo experiences jealousy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14575},{"seriesId":192,"episodeFileId":10408,"seasonNumber":1,"episodeNumber":31,"title":"Felix","airDate":"2004-01-09","airDateUtc":"2004-01-09T10:00:00Z","overview":"Experiments #010 - Felix and #010.2 - Oscar\r\nExperiment #010 is a neat-freak, named Felix. So when it won't stop cleaning things, Jumba reprograms it to Experiment #10.2, Oscar. However, the newly programmed Oscar doesn't work quite as it should.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14576},{"seriesId":192,"episodeFileId":10409,"seasonNumber":1,"episodeNumber":32,"title":"Poxy","airDate":"2004-01-11","airDateUtc":"2004-01-11T10:00:00Z","overview":"Experiment #222 - Poxy\r\nPoxy is activated one day when Pleakley eats it in his cereal! So, Lilo and Stitch must get shrunk with one of Jumba's machine, along with a buggy, and travel through Pleakley to find the experiment. However, Pleakley is captured by Gantu and is going to be sent to Hamsterviel for Poxy. Can Lilo and Stitch get Poxy and save Pleakley in time? And will they do it before they start to turn back to normal size?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":14541},{"seriesId":192,"episodeFileId":10410,"seasonNumber":1,"episodeNumber":33,"title":"HunkaHunka","airDate":"2004-01-11","airDateUtc":"2004-01-11T10:25:00Z","overview":"Experiment #323 - HunkaHunka\r\nKeoni is in love with Pleakley, and Lilo thinks Experiment #323 has been activated and is loose. So, they go after it, while it causes chaos and makes people all over the island fall in love with the first people they see.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14577},{"seriesId":192,"episodeFileId":10411,"seasonNumber":1,"episodeNumber":34,"title":"Sample","airDate":"2004-01-11","airDateUtc":"2004-01-11T10:50:00Z","overview":"Experiment #258 - Sample\r\n#258 is activated. #258 is a sound experiment, that records sounds and plays them back to people, like a sample. Meanwhile, Stitch is worried about getting his shots.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14578},{"seriesId":192,"episodeFileId":10412,"seasonNumber":1,"episodeNumber":35,"title":"Baby-Fier","airDate":"2004-01-12","airDateUtc":"2004-01-12T10:00:00Z","overview":"Experiment #151 - BabyFier\r\nExperiment #151, BabyFier, has been activated, and has the ability to turn adults into babies! Can Lilo and Stitch stop it before every adult on Kauai is turned into a baby again?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14579},{"seriesId":192,"episodeFileId":10413,"seasonNumber":1,"episodeNumber":36,"title":"Bonnie And Clyde","airDate":"2004-01-16","airDateUtc":"2004-01-16T10:00:00Z","overview":"Experiments #149 - Bonnie and #150 Clyde\r\nBonnie and Clyde, two stealing experiments, are activated at the same time and are stealing stuff all over the island. Lilo and Stitch decide to leave their room secretly after they are sent there after getting in trouble. They run into Bonnie and Clyde and the two experiments soon convince the two to do some not-so-nice things while the steal stuff. Will Lilo and Stitch get caught, or will Bonnie and Clyde?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14580},{"seriesId":192,"episodeFileId":10414,"seasonNumber":1,"episodeNumber":37,"title":"Slugger","airDate":"2004-01-26","airDateUtc":"2004-01-26T10:00:00Z","overview":"Experiment #608 - Slugger\r\nAfter Pleakley's incompetence in baseball causes Lilo, Stitch, and Stitch's cousins to lose to Mertle's team, Lilo and Mertle arrange a rematch, with Lilo's collection of Elvis records and Mertle's collection of dolls on the line. Lilo finds Experiment #608, aka 'Slugger', and decides his projectile-deflection skills would make him an excellent pinch-hitter for her team. Unfortunately, Mertle gets her own ringer in Gantu, and makes the rematch a game of basketball instead of baseball, with Slugger on the line as well! Can Lilo and the experiments win under these circumstances, or will they need help from an unlikely source?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14581},{"seriesId":192,"episodeFileId":10415,"seasonNumber":1,"episodeNumber":38,"title":"Bad Stitch","airDate":"2004-01-30","airDateUtc":"2004-01-30T10:00:00Z","overview":"No Experiments Are Featured In This Episode\r\nStitch has been acting badly, and Nani is having trouble paying all the bills. If he keeps up the bad behavior, they will have to give Stitch away. So, to help pay the bills, Stitch goes to a scientist and admits to being an alien to be checked out for money. However, the scientist turns out to be Hamsterviel, who reverts Stitch to his old destructive programming!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14582},{"seriesId":192,"episodeFileId":10416,"seasonNumber":1,"episodeNumber":39,"title":"Drowsy","airDate":"2004-02-09","airDateUtc":"2004-02-09T10:00:00Z","overview":"Experiment #360 - Drowsy\r\nStitch uses a sleeping experiment to get Lilo to sleep. The only problem is he doesn't know how to wake her up.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":14583},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Spike","airDate":"2004-11-05","airDateUtc":"2004-11-05T10:00:00Z","overview":"Experiment 319: SPIKE\r\n\r\nLilo and co. set out to beat Myrtle and her family in the Ohana-Rama.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14584},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Frenchfry","airDate":"2004-11-12","airDateUtc":"2004-11-12T10:00:00Z","overview":"Experiment 062: FRENCHFRY\r\n\r\nWhen Nani restricts Lilo's food to healthy food, Lilo finds an experiment pod that is designed to make tasty, irresistible food, but he is secretly fattening them up to eat them. Will they be saved in time?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14585},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Swapper","airDate":"2004-11-19","airDateUtc":"2004-11-19T10:00:00Z","overview":"Experiment 355 swaps minds of Gantu and H\u00e4msterviel just about he was to transport it. Lilo meets a girl named Victoria who also joins her hula class. However, Mertle will stop at nothing to try and befriend her so that she will not be Lilo's friend. Lilo then attempts to prove that she's normal by throwing a \"Lilo's Not Weird\" party. However, 355 appears, resulting in Lilo, Stitch, Jumba and Pleakley swapping bodies. Lilo must make sure the party is successful while Stitch has to pretend to be her.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14586},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Shoe","airDate":"2004-12-10","airDateUtc":"2004-12-10T10:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14587},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"Slick","airDate":"2005-01-07","airDateUtc":"2005-01-07T10:00:00Z","overview":"Experiment 020: SLICK\r\n\r\nChaos ensues as Slick, a fast-talking experiment who can sell anything to anyone, teams up with Lilo and Stitch to sell candy bars for the Hale Kaiulu's annual fundraiser. Lilo soon learns the hard way that Slick is not designed to stop, and she and Stitch must reclaim their household items before it gets too late.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14588},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Skip","airDate":"2005-02-11","airDateUtc":"2005-02-11T10:00:00Z","overview":"Experiment 089: SKIP\r\n\r\nLilo's hurry to grow up is immediately satisfied when Skip, experiment 089, arrives and ages her up to a 17-year-old and then a 27-year-old. Lilo soon realizes she wants to be age 7 again because she misses out and ruins the future. She must figure out how to \"reset\" herself.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14589},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Checkers","airDate":"2005-03-04","airDateUtc":"2005-03-04T10:00:00Z","overview":"Experiment 029: CHECKERS\r\n\r\nLilo is angry and under appreciated about her float not getting chosen for the parade, and being grounded (along with Stitch) by Nani and Pleakley.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14590},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"PJ","airDate":"2005-04-01","airDateUtc":"2005-04-01T10:00:00Z","overview":"Experiment 133: PJ\r\n\r\nLilo's always getting blamed for Mertle's pranks, so she figures it's high-time to pull a few pranks of her own, and what better prank-ee than the mean old substitute hula teacher?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14591},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Ploot","airDate":"2005-04-22","airDateUtc":"2005-04-22T09:00:00Z","overview":"Experiment 505: PLOOT\r\n\r\nWhen Lilo sets out to clean the pollutants from the Grotto where Pudge the fish lives, she comes across Ploot, a.k.a Experiment 505, eating all the litter around him.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14592},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Phoon","airDate":"2005-04-25","airDateUtc":"2005-04-25T09:00:00Z","overview":"Experiment 540: PHOON\r\n\r\nLilo quits experiment hunting go to Hula Hip Hop Fusion school. Meanwhile, Experiment 540 is unleashed, causing Gantu to take a bad blow to the head. Jumba new device causes Phoon to mutate into a giant monster. And Gantu thinks thing like 625 and Hamsterveil are just figments of his imagination.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14593},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Snooty","airDate":"2005-05-13","airDateUtc":"2005-05-13T09:00:00Z","overview":"Experiment 277: SNOOTY\r\n\r\nAfter making zombie calenders, Lilo, Stitch, and Victoria encounter experiment 277, a vampire bat like experiment who was made to find and enrich Snootonium, a dangerous chemical that is similar to mucus. Can Lilo and Stitch safely catch Snooty bafore Victoria, who is distrustful and teams up with Gantu to slay him?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14594},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"Bugby","airDate":"2005-05-16","airDateUtc":"2005-05-16T09:00:00Z","overview":"Experiment 128: BUGBY\r\n\r\nLilo, Stitch, Jumba, and Pleakley are turned into bugs after Lilo captures an experiment for her bug collection.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14595},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":13,"title":"Rufus","airDate":"2005-05-16","airDateUtc":"2005-05-16T09:25:00Z","overview":"CROSSOVER: With KIM POSSIBLE\r\n\r\nWhen Dr. Drakken and H\ufffdmsterviel team up to kidnap Stitch in order to mass multiply him in order to destroy the world, Kim Possible and Lilo set off to try and save Experiment 626. Jumba, on the other hand, is quite sure that a certain Naked Mole Rat is his experiment 607...","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14596},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":14,"title":"Retro","airDate":"2005-05-20","airDateUtc":"2005-05-20T09:00:00Z","overview":"Experiment 210: RETRO\r\n\r\nNani meets some of her friends from high school and tries to impress them by saying she is vice president and they convince her to introduce them to her family. The day only gets worse when experiment 210, tries to revert everyone back to a prehistoric state...","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14597},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":15,"title":"Link","airDate":"2005-05-20","airDateUtc":"2005-05-20T09:25:00Z","overview":"Experiment 251: LINK\r\n\r\nAfter being inadvertently activated, Experiment 251(later called Link),starts joining people together with a sticky rope. He joins, among others, Lilo and Mertle, Jumba and Pleakley, and Nani and Stitch. Will Lilo be able to capture the experiment? Will teamwork save the day?\r\n\r\nNote: This episode is the bonus episode on the Leroy and Stitch DVD.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14598},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":16,"title":"Belle","airDate":"2005-06-03","airDateUtc":"2005-06-03T09:00:00Z","overview":"Experiment 248: BELLE\r\n\r\nWhile out trying to prove the existence of the Night Marchers (an ancient Hawaiian legend), Lilo, Mertle, Stitch, Jumba, and Pleakley tell each other scary stories. Meanwhile an experiment 248, later known as Belle, is being chased by Gantu.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14599},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":17,"title":"Morpholomew","airDate":"2005-07-01","airDateUtc":"2005-07-01T09:00:00Z","overview":"Exxperiment 316: MORPHOLOMEW\r\n(Crossover with American Dragon: Jake Long)\r\n\r\nLilo enters the island's skateboarding competition in an attempt to win the heart of her one and only crush, Keoni. At the same time, Jake, Gramps and Fu Dog visit the island to check out reports that magical creatures - actually Jumba's experiments -- are running rampant.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14600},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":18,"title":"Remmy","airDate":"2005-08-03","airDateUtc":"2005-08-03T09:00:00Z","overview":"Experiment 276: REMMYOn the anniversary of the day when Lilo's ohana became broken, Lilo desides to take a nap, the day only gets worse when a nightmare causing experiment enters her dreams.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14601},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":19,"title":"Heckler","airDate":"2005-08-08","airDateUtc":"2005-08-08T09:00:00Z","overview":"Experiment 322: HECKLER\r\n\r\nExperiment 322 is activated just in time to taunt Pleakley as he makes his stand-up comedy debut at Nani's charity event. While Lilo is first amused by his off-the-cuff jabs, especially towards Mertle, she soon learns that mean words only hurt if you let them.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14602},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":20,"title":"Lax","airDate":"2005-08-09","airDateUtc":"2005-08-09T09:00:00Z","overview":"Experiment 285: LAX\r\n(Crossover with RECESS)\r\n\r\nThe gang from Recess are on 'holiday' in Hawaii! But experiment 285 is on the loose, causing Vince, Mikey and Stitch to abandon any and all forms of work. Can Lilo stop 285 and Hamsterviel's new experiment locator satellite without Stitch, or will Gantu finally succeed in catching an experiment?\r\n\r\nNote: This episode first aired on Disney Channel on September 5, 2006 at 5 a.m.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14603},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":21,"title":"Wishy Washy","airDate":"2005-08-11","airDateUtc":"2005-08-11T09:00:00Z","overview":"Experiment 267: WISHY-WASHY\r\n\r\nLilo learns a valuable lesson in being careful what you wish for when Experiment 267 is activated.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14604},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":22,"title":"Spats","airDate":"2005-08-12","airDateUtc":"2005-08-12T09:00:00Z","overview":"Experiment 397: SPATS\r\n(Crossover with The Proud Family)\r\n\r\nThe Prouds pack their bags for a Hawaiian vacation on. Lilo prepares for the grand re-opening of Jumba & Pleakley's Bed Not Breakfast and eagerly awaits the arrival of their scheduled guests - Mr. Cooper, a reviewer for Relaxing Times Magazine, and the Proud Family who are attending Wizard Kelly's Smack-up Throw-down Hi-wyan Style Y'all. While trying to impress Mr. Cooper, arguments ensue when Suga Mama accidentally activates Experiment 397, \"Spats\" causing friction among all. It's up to Penny and Lilo to find the cure.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14605},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":23,"title":"Shush","airDate":"2005-08-12","airDateUtc":"2005-08-12T09:25:00Z","overview":"Experiment 234: SHUSH\r\n\r\nExperiment 234, designed to listen to other people's conversations through her tail, is accidentally activated by Lilo.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14606},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":24,"title":"Glitch \/ Woops","airDate":"2005-08-16","airDateUtc":"2005-08-16T09:00:00Z","overview":"Another 2-in-1 episode.\r\n\r\nExperiment 223: GLITCH\r\nJumba automates the house, but an experiment gets into the computer and the house goes crazy! Can Lilo and Stitch save the day?\r\n\r\nExperiment 600: WOOPS\r\nGantu sends Hamsterveil an unactivated pod whilst Pleakley enters a domino competition. Will Woops get in the way?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14607},{"seriesId":192,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Lilo & Stitch 2 - Stitch Has A Glitch","airDate":"2005-08-30","airDateUtc":"2005-08-30T09:00:00Z","overview":"Taking place between the original \"Lilo and Stitch\" and \"Stitch: The Movie\", \"Lilo and Stitch 2\" finds the rowdy extraterrestrial getting used to life with his new ohana. However, a malfunction in the ultimate creation of Dr. Jumba soon emerges, which reinstates his destructive programming and threatens to both ruin his friendship with Lilo and to short him out for good!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14544},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":25,"title":"Snafu","airDate":"2005-09-07","airDateUtc":"2005-09-07T09:00:00Z","overview":"Nosy, (who escaped at from Gantu's ship at the end of Woops,) complains to Lilo about the fact that she just left all the experiments behind and never found their one true place. (Lilo and Stitch never went back and saved them). So, Lilo plans to save them, especially Angel. But when Snafu, a plan ruiner is on the loose, will Lilo be able to save Stitch's cousins?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14608},{"seriesId":192,"episodeFileId":0,"seasonNumber":2,"episodeNumber":26,"title":"Mrs. Hasagawa's Cats \/ Ace","airDate":"2005-11-29","airDateUtc":"2005-11-29T10:00:00Z","overview":"Two episodes in one both 11 minutes.\r\n1. Mrs. Hasagawa's Cats\r\nLilo & Stitch learn that Mrs. Hasagawa has adopted a lot of cats that are not cats at all but experiments.\r\n2. Experiment 262: Ace\r\nWhen Jumba is in danger of losing his membership to E.G.O. (Evil Genius Organization) he has to show the leader that his experiments are still evil. But when Experiment 262 is activated and according to the experiment computer it has no evil function, things get worse.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":14609},{"seriesId":192,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Leroy & Stitch","airDate":"2006-06-23","airDateUtc":"2006-06-23T09:00:00Z","overview":"Lilo, Stitch, Jumba and Pleakley have finally caught all of Jumba's genetic experiments and found the one true place where each of them belongs. Stitch, Jumba and Pleakley are offered positions in the Galactic Alliance, turning them down so they can stay on Earth with Lilo. But Lilo realizes her alien friends have places where they belong, and it's finally time to say \"aloha.\" Meanwhile, Gantu has left Earth and broken Doctor Jacques Von Hamsterviel out of prison, who's planning to create and clone a new experiment named \"Leroy,\" one that will allow him take over the galaxy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14546}],"episodeFile":[{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Richter-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E01.Richter-WEBDL-1080p.mkv","size":239995646,"dateAdded":"2019-12-02T07:01:13.702831Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275792,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10378},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Phantasmo-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E02.Phantasmo-WEBDL-1080p.mkv","size":239621054,"dateAdded":"2019-12-02T07:01:16.265505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275741,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10379},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Clip-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E03.Clip-WEBDL-1080p.mkv","size":239657452,"dateAdded":"2019-12-02T07:01:18.832481Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275977,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10380},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Mr. Stenchy-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E04.Mr. Stenchy-WEBDL-1080p.mkv","size":239989060,"dateAdded":"2019-12-02T07:01:20.849764Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275713,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10381},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Holio-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E05.Holio-WEBDL-1080p.mkv","size":240067508,"dateAdded":"2019-12-02T07:01:23.040378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276186,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10382},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Spooky-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E06.Spooky-WEBDL-1080p.mkv","size":239601871,"dateAdded":"2019-12-02T07:01:25.1918Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275634,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10383},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Cannonball-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E07.Cannonball-WEBDL-1080p.mkv","size":240165277,"dateAdded":"2019-12-02T07:01:26.884893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275692,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:46","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10384},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Yapper-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E08.Yapper-WEBDL-1080p.mkv","size":240060338,"dateAdded":"2019-12-02T07:01:28.663661Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276184,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10385},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Yin-Yang-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E09.Yin-Yang-WEBDL-1080p.mkv","size":239551332,"dateAdded":"2019-12-02T07:01:31.877091Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275313,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10386},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Kixx-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E10.Kixx-WEBDL-1080p.mkv","size":239641443,"dateAdded":"2019-12-02T07:01:35.602239Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275834,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10387},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Splodyhead-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E11.Splodyhead-WEBDL-1080p.mkv","size":240028577,"dateAdded":"2019-12-02T07:01:37.805738Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275995,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10388},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Amnesio-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E12.Amnesio-WEBDL-1080p.mkv","size":239893831,"dateAdded":"2019-12-02T07:01:40.456482Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275068,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10389},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Swirly-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E13.Swirly-WEBDL-1080p.mkv","size":239918846,"dateAdded":"2019-12-02T07:01:43.452414Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275240,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10390},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Fibber-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E14.Fibber-WEBDL-1080p.mkv","size":239792161,"dateAdded":"2019-12-02T07:01:46.177798Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275626,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:44","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10391},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Tank-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E15.Tank-WEBDL-1080p.mkv","size":239955889,"dateAdded":"2019-12-02T07:01:48.190389Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275424,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10392},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Sprout-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E16.Sprout-WEBDL-1080p.mkv","size":240140580,"dateAdded":"2019-12-02T07:01:50.600324Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275529,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:46","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10393},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Elastico-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E17.Elastico-WEBDL-1080p.mkv","size":240135876,"dateAdded":"2019-12-02T07:01:54.382829Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276530,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10394},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Yaarp-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E18.Yaarp-WEBDL-1080p.mkv","size":239337357,"dateAdded":"2019-12-02T07:01:57.339659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276135,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10395},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E19.627-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E19.627-WEBDL-1080p.mkv","size":239366233,"dateAdded":"2019-12-02T07:02:00.655075Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276412,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10396},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Asteroid-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E20.The Asteroid-WEBDL-1080p.mkv","size":237793507,"dateAdded":"2019-12-02T07:02:03.641904Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275763,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:33","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10397},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Topper-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E21.Topper-WEBDL-1080p.mkv","size":239603061,"dateAdded":"2019-12-02T07:02:08.516008Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275612,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10398},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Melty-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E22.Melty-WEBDL-1080p.mkv","size":239194413,"dateAdded":"2019-12-02T07:02:14.656202Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275343,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10399},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Houdini-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E23.Houdini-WEBDL-1080p.mkv","size":240075229,"dateAdded":"2019-12-02T07:02:19.197508Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276284,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10400},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Sinker-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E24.Sinker-WEBDL-1080p.mkv","size":240009436,"dateAdded":"2019-12-02T07:02:25.059173Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275840,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10401},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Nosy-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E25.Nosy-WEBDL-1080p.mkv","size":240022168,"dateAdded":"2019-12-02T07:02:28.717615Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275826,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10402},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Finder-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E26.Finder-WEBDL-1080p.mkv","size":239656944,"dateAdded":"2019-12-02T07:02:33.225803Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275831,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10403},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E27.Slushy-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E27.Slushy-WEBDL-1080p.mkv","size":239563467,"dateAdded":"2019-12-02T07:02:37.33368Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275402,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10404},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E28.Dupe-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E28.Dupe-WEBDL-1080p.mkv","size":239985956,"dateAdded":"2019-12-02T07:02:40.61343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275702,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10405},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E29.Short Stuff-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E29.Short Stuff-WEBDL-1080p.mkv","size":240051324,"dateAdded":"2019-12-02T07:02:44.729115Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276101,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10406},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Angel-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E30.Angel-WEBDL-1080p.mkv","size":239261912,"dateAdded":"2019-12-02T07:02:49.458862Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275719,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10407},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E31.Felix-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E31.Felix-WEBDL-1080p.mkv","size":239963807,"dateAdded":"2019-12-02T07:02:53.125654Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275562,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10408},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Poxy-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E32.Poxy-WEBDL-1080p.mkv","size":239649378,"dateAdded":"2019-12-02T07:02:57.745103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275914,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:43","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10409},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E33.HunkaHunka-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E33.HunkaHunka-WEBDL-1080p.mkv","size":239832998,"dateAdded":"2019-12-02T07:03:02.364831Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275806,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:44","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10410},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Sample-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E34.Sample-WEBDL-1080p.mkv","size":240090847,"dateAdded":"2019-12-02T07:03:07.515559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1276296,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10411},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Baby-Fier-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E35.Baby-Fier-WEBDL-1080p.mkv","size":239283745,"dateAdded":"2019-12-02T07:03:12.280739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275901,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10412},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E36.Bonnie And Clyde-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E36.Bonnie And Clyde-WEBDL-1080p.mkv","size":240024074,"dateAdded":"2019-12-02T07:03:17.524935Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275883,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10413},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E37.Slugger-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E37.Slugger-WEBDL-1080p.mkv","size":240024604,"dateAdded":"2019-12-02T07:03:24.384658Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275844,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10414},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E38.Bad Stitch-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E38.Bad Stitch-WEBDL-1080p.mkv","size":239263114,"dateAdded":"2019-12-02T07:03:29.90157Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275826,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:41","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10415},{"seriesId":192,"seasonNumber":1,"relativePath":"Season 01\/S01E39.Drowsy-WEBDL-1080p.mkv","path":"\/tv\/Lilo & Stitch - The Series\/Season 01\/S01E39.Drowsy-WEBDL-1080p.mkv","size":239942095,"dateAdded":"2019-12-02T07:03:36.088708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1275342,"videoCodec":"x265","videoFps":25.0,"resolution":"1912x1072","runTime":"21:45","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10416}],"queue":[]},"195":{"series":{"title":"War of the Worlds (2019)","alternateTitles":[{"title":"Krieg der Welten","seasonNumber":-1},{"title":"Krieg der Welten 2019","seasonNumber":-1}],"sortTitle":"war worlds 2019","status":"continuing","ended":false,"overview":"When astronomers detect a transmission from another galaxy, it is definitive proof of intelligent extra-terrestrial life. The world\u2019s population waits for further contact with bated breath. They do not have to wait long. Within days, mankind is all but wiped out by a devastating attack; pockets of humanity are left in an eerily deserted world. As aliens hunt and kill those left alive, the survivors ask a burning question \u2013 who are these attackers and why are they hell-bent on our destruction? Emotional, cinematic and rooted in character, it is a unique marriage of human drama and the best science fiction. This is a story of ordinary people in extraordinary circumstances - but they are more than just victims in a brutal war. For, as we will come to realize, the aliens\u2019 savage attack on earth is not arbitrary: its seeds are being sown before our very eyes.","previousAiring":"2021-06-06T19:50:00Z","network":"Canal+","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/205\/banner.jpg?lastWrite=637586411572200570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/370139\/banners\/60b665ac2a804.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/205\/poster.jpg?lastWrite=637345068301148510","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/370139\/posters\/62096714.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/205\/fanart.jpg?lastWrite=637320358454440230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5da446440fda6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-11-18T20:50:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":53473147326,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-06-06T19:50:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":16720958463,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/War of the Worlds (2019)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":370139,"tvRageId":0,"tvMazeId":37808,"firstAired":"2019-10-28T00:00:00Z","seriesType":"standard","cleanTitle":"warworlds2019","imdbId":"tt9686194","titleSlug":"war-of-the-worlds-2019","rootFolderPath":"\/tv\/","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-11-22T16:31:08.932314Z","ratings":{"votes":6,"value":8.0},"statistics":{"seasonCount":2,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":70194105789,"percentOfEpisodes":100.0},"id":205},"episodes":[{"seriesId":205,"episodeFileId":10362,"seasonNumber":1,"episodeNumber":1,"title":"Episode 1","airDate":"2019-10-28","airDateUtc":"2019-10-28T20:00:00Z","overview":"When astrophysicists detect a transmission from another galaxy, it is definitive proof of intelligent extra-terrestrial life. The world's population waits for further contact with baited breath. They do not have to wait long. Within days, mankind is all but wiped out; just pockets of humanity are left in an eerily deserted world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":15610},{"seriesId":205,"episodeFileId":10363,"seasonNumber":1,"episodeNumber":2,"title":"Episode 2","airDate":"2019-10-28","airDateUtc":"2019-10-28T20:50:00Z","overview":"After the devastating alien attack, disparate pockets of survivors emerge into a shattered world. They quickly realise they must put their differences aside if they are to stand any chance of survival. For they are not alone. Something sinister lurks in the shadows and whatever it is, it won't consider its victory complete until it has killed every last human.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":15611},{"seriesId":205,"episodeFileId":10364,"seasonNumber":1,"episodeNumber":3,"title":"Episode 3","airDate":"2019-11-04","airDateUtc":"2019-11-04T20:00:00Z","overview":"As the dust settles on their brave new world, the survivors are forced to face some cold truths. Catherine is stunned to discover the part she played in bringing about the alien attack. Helen becomes fixated on revenge. Emily momentarily regains her sight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":15612},{"seriesId":205,"episodeFileId":10365,"seasonNumber":1,"episodeNumber":4,"title":"Episode 4","airDate":"2019-11-04","airDateUtc":"2019-11-04T20:50:00Z","overview":"The survivors make some disarming discoveries not only about the aliens but also about themselves. Mokrani goes on the offensive, taking the fight to the aliens. Ash is forced to make the hardest decision of his life. Chloe's past catches up with her, threatening to rip apart the delicate semblance of normality she is so desperately clinging on to.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":15613},{"seriesId":205,"episodeFileId":10366,"seasonNumber":1,"episodeNumber":5,"title":"Episode 5","airDate":"2019-11-11","airDateUtc":"2019-11-11T20:00:00Z","overview":"Cracks start to show as the survivors find different ways to cope. Jonathan's increasingly perturbed by Sacha's strange behaviour. Emily proves to be an exciting conundrum for Bill. Mokrani is horrified as his men delight in the opportunity to exact revenge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":15614},{"seriesId":205,"episodeFileId":10367,"seasonNumber":1,"episodeNumber":6,"title":"Episode 6","airDate":"2019-11-11","airDateUtc":"2019-11-11T20:50:00Z","overview":"The alien's connection to certain survivors raises difficult questions. Bill makes a startling discovery. Sacha's behaviour is increasingly erratic. Tom's birthday proves cause for celebration.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":15615},{"seriesId":205,"episodeFileId":10368,"seasonNumber":1,"episodeNumber":7,"title":"Episode 7","airDate":"2019-11-18","airDateUtc":"2019-11-18T20:00:00Z","overview":"Tragedy strikes, altering the course of the future forever. Catherine's priorities change with the arrival of Sophia. Things come to a head between Jonathan and Sacha. Emily's so happy she can see again that she's stopped asking why, even if others haven't.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":15616},{"seriesId":205,"episodeFileId":10369,"seasonNumber":1,"episodeNumber":8,"title":"Episode 8","airDate":"2019-11-18","airDateUtc":"2019-11-18T20:50:00Z","overview":"Mokrani and Catherine are preparing to fight their lives. Emily looks for answers to her many questions, even if she knows that the consequences of the truth could come to light. Sacha's visions continue, projecting a confusing image of the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":15617},{"seriesId":205,"episodeFileId":18262,"seasonNumber":2,"episodeNumber":1,"title":"Episode 1","airDate":"2021-05-17","airDateUtc":"2021-05-17T19:00:00Z","overview":"London, four months after the attack. The survivors organize the Resistance. Bill continues his research on aliens and understands that their DNA is human but that their organs are degenerating. In France, a severely wounded dissident alien reaches the Observatory.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21441},{"seriesId":205,"episodeFileId":18265,"seasonNumber":2,"episodeNumber":2,"title":"Episode 2","airDate":"2021-05-17","airDateUtc":"2021-05-17T19:50:00Z","overview":"At the Observatory, Mokrani and Catherine clash over the fate to be reserved for Micah, whom Catherine considers to be a major source of information. Micah reveals to Catherine that she has to find Bill Ward. The latter, for his part, tries to find out more about Emily, still assailed by visions of Adina, the leader of the aliens urging him to kill Bill.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21490},{"seriesId":205,"episodeFileId":18325,"seasonNumber":2,"episodeNumber":3,"title":"Episode 3","airDate":"2021-05-24","airDateUtc":"2021-05-24T19:00:00Z","overview":"Without telling Emily or her parents anything, Bill decides with Zoe to test on Emily the biological weapon he hopes to be able to use against the aliens. Catherine, for her part, has had difficulty managing her grief since Mokrani's death. She now has only one thing on her mind: to find out who Bill Ward is and find him. Sophia is ready to help him, but Nathan hesitates.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21491},{"seriesId":205,"episodeFileId":18342,"seasonNumber":2,"episodeNumber":4,"title":"Episode 4","airDate":"2021-05-24","airDateUtc":"2021-05-24T19:50:00Z","overview":"Catherine, Sophia and Nathan make their way to London, accompanied by Victor, a survivor encountered by chance. Along the way, the dangers multiply. Sacha's feelings towards Emily intensify and the young man's behavior becomes more and more disturbing. Feeling threatened, Bill is forced to flee.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21492},{"seriesId":205,"episodeFileId":18430,"seasonNumber":2,"episodeNumber":5,"title":"Episode 5","airDate":"2021-05-31","airDateUtc":"2021-05-31T19:00:00Z","overview":"Bill joins the military group formed by Ethan, Dominic and Michael. The three men hold a young alien hostage, Isla. Catherine, Sophia and Nathan continue to search for Bill. Adina, and the aliens also set out to find Bill. Chloe accuses the blow when she realizes that Sacha killed Ash. She suggests to her increasingly unstable son to run away with her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21493},{"seriesId":205,"episodeFileId":18472,"seasonNumber":2,"episodeNumber":6,"title":"Episode 6","airDate":"2021-05-31","airDateUtc":"2021-05-31T19:50:00Z","overview":"At the university, Sophia watches the videos recorded by Dylan, a young man they found dead, while Catherine focuses on the algorithms he left behind and which decipher the behavior of robots. Thanks to Bill's intervention, Isla manages to flee and join her family.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21494},{"seriesId":205,"episodeFileId":18596,"seasonNumber":2,"episodeNumber":7,"title":"Episode 7","airDate":"2021-06-06","airDateUtc":"2021-06-06T19:00:00Z","overview":"Emily agrees to help Bill test her for the virus, but soon experiences serious side effects. Sacha, who has secretly followed the group to stay close to Emily, tries to remove her from the group. For their part, Catherine, Sophia and Nathan set out again in search of Bill Ward.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21495},{"seriesId":205,"episodeFileId":18619,"seasonNumber":2,"episodeNumber":8,"title":"Episode 8","airDate":"2021-06-06","airDateUtc":"2021-06-06T19:50:00Z","overview":"Catherine, Sophia, Zoe and the other survivors, finally reunited, prepare for the ultimate attack. But it is Bill who is the only one to hold the fate of humanity in his hands, provided he is helped by Isla.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21496}],"episodeFile":[{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Episode 1-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E01.Episode 1-Bluray-1080p.mkv","size":6770265104,"dateAdded":"2019-11-30T20:26:08.443169Z","sceneName":"War.Of.The.Worlds.2019.S01E01.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":17219460,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"48:12","scanType":"Progressive","subtitles":"English \/ English \/ French \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10362},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Episode 2-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E02.Episode 2-Bluray-1080p.mkv","size":6443734777,"dateAdded":"2019-11-30T20:27:02.305541Z","sceneName":"War.Of.The.Worlds.2019.S01E02.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16436721,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"47:52","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10363},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Episode 3-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E03.Episode 3-Bluray-1080p.mkv","size":6177162811,"dateAdded":"2019-11-30T20:27:57.277732Z","sceneName":"War.Of.The.Worlds.2019.S01E03.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15574394,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"48:12","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10364},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Episode 4-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E04.Episode 4-Bluray-1080p.mkv","size":6325575430,"dateAdded":"2019-11-30T20:28:53.546263Z","sceneName":"War.Of.The.Worlds.2019.S01E04.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16095820,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"47:54","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10365},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Episode 5-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E05.Episode 5-Bluray-1080p.mkv","size":6661111092,"dateAdded":"2019-11-30T20:29:53.390776Z","sceneName":"War.Of.The.Worlds.2019.S01E05.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16972760,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"48:03","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10366},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Episode 6-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E06.Episode 6-Bluray-1080p.mkv","size":7400543946,"dateAdded":"2019-11-30T20:30:53.465355Z","sceneName":"War.Of.The.Worlds.2019.S01E06.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":19387219,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"47:13","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10367},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Episode 7-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E07.Episode 7-Bluray-1080p.mkv","size":6939899365,"dateAdded":"2019-11-30T20:32:04.797812Z","sceneName":"War.Of.The.Worlds.2019.S01E07.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":17599067,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"48:25","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10368},{"seriesId":205,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Episode 8-Bluray-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 01\/S01E08.Episode 8-Bluray-1080p.mkv","size":6754854801,"dateAdded":"2019-11-30T20:33:13.560504Z","sceneName":"War.Of.The.Worlds.2019.S01E08.1080p.BluRay.DTS.x264-SbR","releaseGroup":"SbR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":17661348,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x804","runTime":"46:59","scanType":"Progressive","subtitles":"English \/ English \/ French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10369},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Episode 1-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E01.Episode 1-WEBDL-1080p.mkv","size":2100791095,"dateAdded":"2021-05-28T09:43:45.382464Z","sceneName":"War.Of.The.Worlds.2019.S02E01.1080p.DSNP.WEBRip.DDP5.1.x264-PlayWEB[rartv]","releaseGroup":"PlayWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5470236,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:53","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18262},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Episode 2-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E02.Episode 2-WEBDL-1080p.mkv","size":2039365700,"dateAdded":"2021-05-29T10:29:43.144877Z","sceneName":"War.Of.The.Worlds.2019.S02E02.1080p.DSNP.WEBRip.DDP5.1.x264-PlayWEB[rartv]","releaseGroup":"PlayWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5373909,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:16","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18265},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Episode 3-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E03.Episode 3-WEBDL-1080p.mkv","size":2105829883,"dateAdded":"2021-06-04T09:00:21.097289Z","sceneName":"War.of.the.Worlds.2019.S02E03.1080p.DSNP.WEBRip.DDP5.1.x264-playWEB[rartv]","releaseGroup":"playWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5514431,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:38","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18325},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Episode 4-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E04.Episode 4-WEBDL-1080p.mkv","size":2094564323,"dateAdded":"2021-06-11T07:58:26.459051Z","sceneName":"War.Of.The.Worlds.2019.S02E04.1080p.DSNP.WEBRip.DDP5.1.x264-PlayWEB[rartv]","releaseGroup":"PlayWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5516509,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:21","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18342},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Episode 5-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E05.Episode 5-WEBDL-1080p.mkv","size":2073152176,"dateAdded":"2021-06-18T07:45:18.279724Z","sceneName":"War.of.the.Worlds.2019.S02E05.1080p.DSNP.WEBRip.DDP5.1.x264-playWEB[rartv]","releaseGroup":"playWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5388895,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:56","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18430},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Episode 6-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E06.Episode 6-WEBDL-1080p.mkv","size":2095934448,"dateAdded":"2021-06-25T09:13:14.883907Z","sceneName":"War.of.the.Worlds.2019.S02E06.1080p.DSNP.WEBRip.DDP5.1.x264-playWEB[rartv]","releaseGroup":"playWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5556545,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:03","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18472},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Episode 7-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E07.Episode 7-WEBDL-1080p.mkv","size":2098466316,"dateAdded":"2021-07-02T07:49:24.646586Z","sceneName":"War.of.the.Worlds.2019.S02E07.1080p.DSNP.WEBRip.DDP5.1.x264-playWEB[rartv]","releaseGroup":"playWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5590416,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"47:50","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18596},{"seriesId":205,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Episode 8-WEBDL-1080p.mkv","path":"\/tv\/War of the Worlds (2019)\/Season 02\/S02E08.Episode 8-WEBDL-1080p.mkv","size":2112854522,"dateAdded":"2021-07-09T08:09:29.23224Z","sceneName":"War.Of.The.Worlds.2019.S02E08.1080p.DSNP.WEBRip.DDP5.1.x264-PlayWEB[rartv]","releaseGroup":"PlayWEB","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5490948,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"48:59","scanType":"Progressive","subtitles":"English \/ English \/ Danish \/ German \/ Spanish \/ Finnish \/ Italian \/ Norwegian Bokmal \/ Dutch \/ Portuguese \/ Swedish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18619}],"queue":[]},"196":{"series":{"title":"We Are the Wave","alternateTitles":[{"title":"Somos la Ola","seasonNumber":-1}],"sortTitle":"we are wave","status":"ended","ended":true,"overview":"Rebellious teens ignite a fast-spreading political movement that takes a terrifying turn.","previousAiring":"2019-11-01T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/204\/banner.jpg?lastWrite=637216551298658340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368386\/banners\/5e87dbe2900df.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/204\/poster.jpg?lastWrite=637147751150173230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368386\/posters\/62049837.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/204\/fanart.jpg?lastWrite=637216551286338560","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5dba938b65858.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-11-01T07:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":11117022103,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/We Are the Wave","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":368386,"tvRageId":0,"tvMazeId":0,"firstAired":"2019-11-01T00:00:00Z","seriesType":"standard","cleanTitle":"wearewave","imdbId":"tt11053220","titleSlug":"we-are-the-wave","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama"],"tags":[],"added":"2019-11-22T16:29:32.209527Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":11117022103,"percentOfEpisodes":100.0},"id":204},"episodes":[{"seriesId":204,"episodeFileId":10261,"seasonNumber":1,"episodeNumber":1,"title":"Do You Know That Feeling?","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"Obedient high schooler Lea is drawn to smart, confident new student Tristan and his rebellious defense of misfits, but is unaware of his double life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15604},{"seriesId":204,"episodeFileId":10262,"seasonNumber":1,"episodeNumber":2,"title":"What\u2019s Wrong with You?","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"Tristan defends his friends when the school's neo-Nazi contingent attacks them during a weekend hangout, while Lea breaks away from her former circle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15605},{"seriesId":204,"episodeFileId":10263,"seasonNumber":1,"episodeNumber":3,"title":"What's Next?","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"After their protests go viral on social media, Lea pressures Tristan to allow more members into the Wave, but the movement escalates uncontrollably.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15606},{"seriesId":204,"episodeFileId":10264,"seasonNumber":1,"episodeNumber":4,"title":"You\u2019re Destroying Everything!","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"After a poorly planned raid on a slaughterhouse, the Wave spins out of control and a rift develops between Lea and Tristan that tears the group apart.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15607},{"seriesId":204,"episodeFileId":10265,"seasonNumber":1,"episodeNumber":5,"title":"The 99%!","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"The original five members of the Wave reunite and take action against a right-wing politician and an SUV dealership, but the authorities close in.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15608},{"seriesId":204,"episodeFileId":10266,"seasonNumber":1,"episodeNumber":6,"title":"It's the Only Way","airDate":"2019-11-01","airDateUtc":"2019-11-01T07:00:00Z","overview":"After blood is shed for the movement, the Wave's remaining members plan a new action that crosses the line between peaceful protest and violence.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":15609}],"episodeFile":[{"seriesId":204,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Do You Know That Feeling-WEBDL-1080p.mkv","path":"\/tv\/We Are the Wave\/Season 01\/S01E01.Do You Know That Feeling-WEBDL-1080p.mkv","size":1792992579,"dateAdded":"2019-11-23T15:40:41.752773Z","sceneName":"We.Are.the.Wave.S01E01.PL.1080p.NF.WEB-DL.x264.AC3-KiT","releaseGroup":"KiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"48:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10261},{"seriesId":204,"seasonNumber":1,"relativePath":"Season 01\/S01E02.What\u2019s Wrong with You-WEBDL-1080p.mkv","path":"\/tv\/We Are the Wave\/Season 01\/S01E02.What\u2019s Wrong with You-WEBDL-1080p.mkv","size":1904886786,"dateAdded":"2019-11-23T15:40:53.164801Z","sceneName":"We.Are.the.Wave.S01E02.PL.1080p.NF.WEB-DL.x264.AC3-KiT","releaseGroup":"KiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5110000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"45:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10262},{"seriesId":204,"seasonNumber":1,"relativePath":"Season 01\/S01E03.What's Next-WEBDL-1080p.mkv","path":"\/tv\/We Are the Wave\/Season 01\/S01E03.What's Next-WEBDL-1080p.mkv","size":1946232219,"dateAdded":"2019-11-23T15:41:11.915943Z","sceneName":"We.Are.the.Wave.S01E03.PL.1080p.NF.WEB-DL.x264.AC3-KiT","releaseGroup":"KiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4640000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"49:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10263},{"seriesId":204,"seasonNumber":1,"relativePath":"Season 01\/S01E04.You\u2019re Destroying Everything!-WEBDL-1080p.mkv","path":"\/tv\/We Are the Wave\/Season 01\/S01E04.You\u2019re Destroying Everything!-WEBDL-1080p.mkv","size":1866466039,"dateAdded":"2019-11-23T15:41:30.805144Z","sceneName":"We.Are.the.Wave.S01E04.PL.1080p.NF.WEB-DL.x264.AC3-KiT","releaseGroup":"KiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4020000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"54:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10264},{"seriesId":204,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The 99%!-WEBDL-1080p.mkv","path":"\/tv\/We Are the Wave\/Season 01\/S01E05.The 99%!-WEBDL-1080p.mkv","size":1805874235,"dateAdded":"2019-11-23T15:41:54.138837Z","sceneName":"We.Are.the.Wave.S01E05.PL.1080p.NF.WEB-DL.x264.AC3-KiT","releaseGroup":"KiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4420000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"48:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10265},{"seriesId":204,"seasonNumber":1,"relativePath":"Season 01\/S01E06.It's the Only Way-WEBDL-1080p.mkv","path":"\/tv\/We Are the Wave\/Season 01\/S01E06.It's the Only Way-WEBDL-1080p.mkv","size":1800570245,"dateAdded":"2019-11-23T15:42:09.855708Z","sceneName":"We.Are.the.Wave.S01E06.PL.1080p.NF.WEB-DL.x264.AC3-KiT","releaseGroup":"KiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"54:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10266}],"queue":[]},"199":{"series":{"title":"The Witcher","alternateTitles":[{"title":"The Witcher US","seasonNumber":-1}],"sortTitle":"witcher","status":"continuing","ended":false,"overview":"Geralt of Rivia, a solitary monster hunter, struggles to find his place in a world where people often prove more wicked than beasts.","nextAiring":"2021-12-17T08:00:00Z","previousAiring":"2019-12-20T08:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/203\/banner.jpg?lastWrite=637617210611577910","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/362696\/banners\/60eadadee81c4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/203\/poster.jpg?lastWrite=637616343949522350","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/362696\/posters\/60e8b82424027.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/203\/fanart.jpg?lastWrite=637129560201475990","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/362696\/backgrounds\/62032150.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":9,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-20T08:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":27720370496,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"nextAiring":"2021-12-17T08:00:00Z","episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2019,"path":"\/tv\/The Witcher","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":60,"tvdbId":362696,"tvRageId":0,"tvMazeId":28276,"firstAired":"2019-12-20T00:00:00Z","seriesType":"standard","cleanTitle":"thewitcher","imdbId":"tt5180504","titleSlug":"the-witcher","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Adventure","Fantasy"],"tags":[],"added":"2019-11-18T09:38:21.616379Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":25,"sizeOnDisk":27720370496,"percentOfEpisodes":100.0},"id":203},"episodes":[{"seriesId":203,"episodeFileId":10656,"seasonNumber":1,"episodeNumber":1,"title":"The End's Beginning","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"Hostile townsfolk and a cunning mage greet Geralt in the town of Blaviken. Ciri finds her royal world upended when Nilfgaard sets its sights on Cintra.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":15564},{"seriesId":203,"episodeFileId":10657,"seasonNumber":1,"episodeNumber":2,"title":"Four Marks","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"Bullied and neglected, Yennefer accidentally finds a means of escape. Geralt's hunt for a so-called devil goes to hell. Ciri seeks safety in numbers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":15565},{"seriesId":203,"episodeFileId":10658,"seasonNumber":1,"episodeNumber":3,"title":"Betrayer Moon","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"Geralt takes on another Witcher's unfinished business in a kingdom stalked by a ferocious beast. At a brutal cost, Yennefer forges a magical new future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":15566},{"seriesId":203,"episodeFileId":10659,"seasonNumber":1,"episodeNumber":4,"title":"Of Banquets, Bastards and Burials","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"Against his better judgment, Geralt accompanies Jaskier to a royal ball. Ciri wanders into an enchanted forest. Yennefer tries to protect her charges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":15567},{"seriesId":203,"episodeFileId":10660,"seasonNumber":1,"episodeNumber":5,"title":"Bottled Appetites","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"Heedless of warnings, Yennefer looks for a cure to restore what she's lost. Geralt inadvertently puts Jaskier in peril. The search for Ciri intensifies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":15568},{"seriesId":203,"episodeFileId":10661,"seasonNumber":1,"episodeNumber":6,"title":"Rare Species","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"A mysterious man tries to entice Geralt to join a hunt for a rampaging dragon, a quest that attracts a familiar face. Ciri questions who she can trust.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":15569},{"seriesId":203,"episodeFileId":10662,"seasonNumber":1,"episodeNumber":7,"title":"Before a Fall","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"With the Continent at risk from Nilfgaard's rising power, Yennefer revisits her past. Geralt reconsiders his obligation to the Law of Surprise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":15570},{"seriesId":203,"episodeFileId":10663,"seasonNumber":1,"episodeNumber":8,"title":"Much More","airDate":"2019-12-20","airDateUtc":"2019-12-20T08:00:00Z","overview":"A terrifying pack of foes lays Geralt low. Yennefer and her fellow mages prepare to fight back. A shaken Ciri depends on the kindness of a stranger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":15571},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Making The Witcher","airDate":"2020-08-26","airDateUtc":"2020-08-26T07:00:00Z","overview":"Journey into the extraordinary world of \"The Witcher\" \u2014 from casting the roles to Jaskier's catchy song \u2014 in this behind-the-scenes look at the series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19526},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Witcher: A Look Inside the Episodes (1)","airDate":"2020-09-02","airDateUtc":"2020-09-02T07:00:00Z","overview":"Series creator and showrunner Lauren S. Hissrich breaks down the opening scenes and outlines how Geralt's encounter with Renfri sets up the season.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19696},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Witcher: A Look Inside the Episodes (2)","airDate":"2020-09-02","airDateUtc":"2020-09-02T08:00:00Z","overview":"Take a deep dive into the crucial role that Yennefer's backstory plays in her journey, and how the elves are a pillar in the Continent's world-building.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19697},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Witcher: A Look Inside the Episodes (3)","airDate":"2020-09-02","airDateUtc":"2020-09-02T09:00:00Z","overview":"Delve into Geralt and Yennefer\u2019s transformation stories, as he turns from slayer to savior, and she makes the ultimate sacrifice to become beautiful.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19698},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Witcher: A Look Inside the Episodes (4)","airDate":"2020-09-02","airDateUtc":"2020-09-02T10:00:00Z","overview":"Hissrich explains how the show's timelines come together, the moment Geralt changes his destiny and what compels Ciri to continue on her quest.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19699},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The Witcher: A Look Inside the Episodes (5)","airDate":"2020-09-02","airDateUtc":"2020-09-02T11:00:00Z","overview":"Find out why the writers gave Geralt a terrible bout of insomnia and explore the magic-entangled dynamics of his fateful first encounter with Yennefer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19700},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"The Witcher: A Look Inside the Episodes (6)","airDate":"2020-09-02","airDateUtc":"2020-09-02T12:00:00Z","overview":"After an intimate glimpse inside Geralt and Yennefer's complicated relationship, discover what it means for Ciri's story arc when she picks up a knife.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19701},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"The Witcher: A Look Inside the Episodes (7)","airDate":"2020-09-02","airDateUtc":"2020-09-02T13:00:00Z","overview":"Dig into Geralt's white-knight complex, Ciri's character growth and what Hissrich describes as one of the season's loveliest scenes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19702},{"seriesId":203,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"The Witcher: A Look Inside the Episodes (8)","airDate":"2020-09-02","airDateUtc":"2020-09-02T14:00:00Z","overview":"From the meaning behind the finale's title to Geralt's dream and Yennefer's real motivation, Hissrich dissects events as the paths of destiny collide.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19703},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"A Grain of Truth","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21642},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Kaer Morhen","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21643},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"What is Lost","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":21644},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Redanian Intelligence","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":21645},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"Turn Your Back","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":21646},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Dear Friend","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":21647},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Voleth Meir","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":21648},{"seriesId":203,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"TBA","airDate":"2021-12-17","airDateUtc":"2021-12-17T08:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":21649}],"episodeFile":[{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The End's Beginning-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E01.The End's Beginning-WEBDL-1080p.mkv","size":3665692048,"dateAdded":"2019-12-22T03:52:10.30629Z","sceneName":"The.Witcher.S01E01.Le.d\u00e9but.de.la.fin.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":5800000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:01:04","scanType":"Progressive","subtitles":"German \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10656},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Four Marks-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E02.Four Marks-WEBDL-1080p.mkv","size":3827879810,"dateAdded":"2019-12-22T03:52:35.058655Z","sceneName":"The.Witcher.S01E02.Quatre.marks.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":6190000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:00:56","scanType":"Progressive","subtitles":"German \/ German \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10657},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Betrayer Moon-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E03.Betrayer Moon-WEBDL-1080p.mkv","size":2788312673,"dateAdded":"2019-12-22T03:53:10.382004Z","sceneName":"The.Witcher.S01E03.Lune.de.trahison.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":3130964,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:07:02","scanType":"Progressive","subtitles":"German \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10658},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Of Banquets, Bastards and Burials-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E04.Of Banquets, Bastards and Burials-WEBDL-1080p.mkv","size":3384216965,"dateAdded":"2019-12-22T03:53:35.967473Z","sceneName":"The.Witcher.S01E04.Des.banquets.des.b\u00e2tards.et.des.obs\u00e8ques.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4808819,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:02:10","scanType":"Progressive","subtitles":"German \/ German \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10659},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Bottled Appetites-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E05.Bottled Appetites-WEBDL-1080p.mkv","size":3947041114,"dateAdded":"2019-12-22T03:54:01.631608Z","sceneName":"The.Witcher.S01E05.D\u00e9sirs.inassouvis.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":6417214,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"59:08","scanType":"Progressive","subtitles":"German \/ German \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10660},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Rare Species-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E06.Rare Species-WEBDL-1080p.mkv","size":4097088107,"dateAdded":"2019-12-22T03:54:36.967075Z","sceneName":"The.Witcher.S01E06.Esp\u00e8ces.rares.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":6682905,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"59:34","scanType":"Progressive","subtitles":"German \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10661},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Before A Fall-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E07.Before A Fall-WEBDL-1080p.mkv","size":2320758788,"dateAdded":"2019-12-22T03:55:13.626673Z","sceneName":"The.Witcher.S01E07.Avant.la.chute.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":4097431,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"47:22","scanType":"Progressive","subtitles":"German \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10662},{"seriesId":203,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Much More-WEBDL-1080p.mkv","path":"\/tv\/The Witcher\/Season 01\/S01E08.Much More-WEBDL-1080p.mkv","size":3689380991,"dateAdded":"2019-12-22T03:55:32.103733Z","sceneName":"The.Witcher.S01E08.Bien.plus.1080p.NF.WEB-DL.DD+5.1.Atmos.x264-DDR","releaseGroup":"DDR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English \/ French \/ German","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":5779560,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"59:38","scanType":"Progressive","subtitles":"German \/ German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10663}],"queue":[]},"200":{"series":{"title":"His Dark Materials","alternateTitles":[{"title":"La materia oscura","seasonNumber":-1},{"title":"His Dark Materials","seasonNumber":-1},{"title":"Queste oscure materie","seasonNumber":-1},{"title":"Az \u00dar s\u00f6t\u00e9t anyagai","seasonNumber":-1},{"title":"Az Ur sotet anyagai","seasonNumber":-1}],"sortTitle":"his dark materials","status":"continuing","ended":false,"overview":"In an alternative world where all humans have animal companions called d\u00e6mons, which are the manifestation of the human soul, a young orphan living with the tutors at Jordan College, Oxford discovers a dangerous secret that involves Lord Asriel and Marisa Coulter. In her search for her missing friend, she uncovers a slew of kidnappings and its link to the mysterious substance called Dust.","previousAiring":"2020-12-20T20:00:00Z","network":"BBC One","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/199\/banner.jpg?lastWrite=637138655491994430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5dbbc1f5b2b50.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/199\/poster.jpg?lastWrite=637383652608754220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/360295\/posters\/5f8490b855f99.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/199\/fanart.jpg?lastWrite=637143852514678110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5db6a5a4e552c.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-22T20:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":37534792004,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-12-20T20:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":39027011487,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/His Dark Materials","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":57,"tvdbId":360295,"tvRageId":0,"tvMazeId":7626,"firstAired":"2019-11-03T00:00:00Z","seriesType":"standard","cleanTitle":"hisdarkmaterials","imdbId":"tt5607976","titleSlug":"his-dark-materials","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Fantasy","Science Fiction"],"tags":[],"added":"2019-11-04T04:30:46.35519Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":16,"sizeOnDisk":76561803491,"percentOfEpisodes":100.0},"id":199},"episodes":[{"seriesId":199,"episodeFileId":12063,"seasonNumber":1,"episodeNumber":1,"title":"Lyra's Jordan","airDate":"2019-11-03","airDateUtc":"2019-11-03T20:00:00Z","overview":"Orphan Lyra Belacqua's world is turned upside-down by her long-absent uncle's return from the north, while the glamorous Mrs Coulter visits Jordan College with a proposition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":14756},{"seriesId":199,"episodeFileId":12064,"seasonNumber":1,"episodeNumber":2,"title":"The Idea of North","airDate":"2019-11-10","airDateUtc":"2019-11-10T20:00:00Z","overview":"Lyra starts her new life in London, determined to find Roger with Mrs Coulter\u2019s help. The Gyptians continue their search for the missing children and the elusive Gobblers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":14757},{"seriesId":199,"episodeFileId":12065,"seasonNumber":1,"episodeNumber":3,"title":"The Spies","airDate":"2019-11-17","airDateUtc":"2019-11-17T20:00:00Z","overview":"From the clutches of the Gobblers, Lyra finds help from an unlikely source, which helps her piece together more about her past and keep safe from the Magisterium.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":14758},{"seriesId":199,"episodeFileId":12066,"seasonNumber":1,"episodeNumber":4,"title":"Armour","airDate":"2019-11-24","airDateUtc":"2019-11-24T20:00:00Z","overview":"Lyra and the Gyptians arrive in the North and seek the help of the Witches\u2019 Consul, Texan aeronaut Lee Scoresby and an armoured bear in service to the town.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":14759},{"seriesId":199,"episodeFileId":12067,"seasonNumber":1,"episodeNumber":5,"title":"The Lost Boy","airDate":"2019-12-01","airDateUtc":"2019-12-01T20:00:00Z","overview":"The alethiometer sends Lyra and Iorek on a new path, leading to a shocking but vital clue in her search to find her friend Roger and the other missing children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":14760},{"seriesId":199,"episodeFileId":12068,"seasonNumber":1,"episodeNumber":6,"title":"The D\u00e6mon-Cages","airDate":"2019-12-08","airDateUtc":"2019-12-08T20:00:00Z","overview":"Lyra discovers the horrific truth behind the Gobbler\u2019s activities in the North. She must use all her wits to help free those around her and avoid suffering a terrible fate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":14761},{"seriesId":199,"episodeFileId":12069,"seasonNumber":1,"episodeNumber":7,"title":"The Fight to the Death","airDate":"2019-12-15","airDateUtc":"2019-12-15T20:00:00Z","overview":"Separated from her friends, Lyra must use all of her methods of deception to thwart a formidable foe. Meanwhile, Mrs Coulter plots her next move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":14762},{"seriesId":199,"episodeFileId":12070,"seasonNumber":1,"episodeNumber":8,"title":"Betrayal","airDate":"2019-12-22","airDateUtc":"2019-12-22T20:00:00Z","overview":"As the Magisterium closes in, Lyra learns more about Asriel\u2019s rebellion. But her assistance to him comes at great personal cost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":14763},{"seriesId":199,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Making His Dark Materials","airDate":"2020-04-26","airDateUtc":"2020-04-26T19:00:00Z","overview":"The cast and crew of His Dark Materials uncover the magic behind this epic adaptation, featuring Daphne Keen, Ruth Wilson, James McAvoy and Lin-Manuel Miranda.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17774},{"seriesId":199,"episodeFileId":16955,"seasonNumber":2,"episodeNumber":1,"title":"The City of Magpies","airDate":"2020-11-08","airDateUtc":"2020-11-08T20:00:00Z","overview":"Lyra and Will find themselves in a strange new place. The Magisterium take action as Mrs Coulter interrogates a suspected heretic witch, and Lee Scoresby embarks on a mission.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19917},{"seriesId":199,"episodeFileId":16956,"seasonNumber":2,"episodeNumber":2,"title":"The Cave","airDate":"2020-11-15","airDateUtc":"2020-11-15T20:00:00Z","overview":"Lyra crosses into Will's world, and they set off to find answers about Dust. Will is shocked to discover he has grandparents, but quickly realises he can\u2019t trust them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19920},{"seriesId":199,"episodeFileId":16957,"seasonNumber":2,"episodeNumber":3,"title":"Theft","airDate":"2020-11-22","airDateUtc":"2020-11-22T20:00:00Z","overview":"Lyra ignores the alethiometer's advice leading to dangerous consequences.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19921},{"seriesId":199,"episodeFileId":16958,"seasonNumber":2,"episodeNumber":4,"title":"Tower of the Angels","airDate":"2020-11-29","airDateUtc":"2020-11-29T20:00:00Z","overview":"Will and Lyra make a plan, unaware of the dangers or the cost involved.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19922},{"seriesId":199,"episodeFileId":16959,"seasonNumber":2,"episodeNumber":5,"title":"The Scholar","airDate":"2020-12-06","airDateUtc":"2020-12-06T20:00:00Z","overview":"Will and Lyra set out to retrieve what's been lost. Mary takes a leap of faith.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19923},{"seriesId":199,"episodeFileId":16960,"seasonNumber":2,"episodeNumber":6,"title":"Malice","airDate":"2020-12-13","airDateUtc":"2020-12-13T20:00:00Z","overview":"Lyra and Will find allies who can help them in their search for Will\u2019s father. The Magisterium learn something shocking, and Mrs Coulter meets a formidable foe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19924},{"seriesId":199,"episodeFileId":16961,"seasonNumber":2,"episodeNumber":7,"title":"\u00c6sah\u00e6ttr","airDate":"2020-12-20","airDateUtc":"2020-12-20T20:00:00Z","overview":"As all paths converge on Citt\u00e0gazze, Lee is determined to fulfil his quest, whatever the cost. Mrs Coulter's question is answered, and Will takes on his father's mantle.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19925}],"episodeFile":[{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Lyra's Jordan-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E01.Lyra's Jordan-Bluray-1080p.mkv","size":4690550749,"dateAdded":"2020-01-26T01:06:33.929504Z","sceneName":"His.Dark.Materials.S01E01.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9957000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"54:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12063},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Idea of North-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E02.The Idea of North-Bluray-1080p.mkv","size":4691496945,"dateAdded":"2020-01-26T01:07:11.532124Z","sceneName":"His.Dark.Materials.S01E02.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9680000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"55:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12064},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Spies-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E03.The Spies-Bluray-1080p.mkv","size":4692864704,"dateAdded":"2020-01-26T01:07:52.173489Z","sceneName":"His.Dark.Materials.S01E03.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9815000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"55:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12065},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Armour-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E04.Armour-Bluray-1080p.mkv","size":4691248236,"dateAdded":"2020-01-26T01:08:31.135319Z","sceneName":"His.Dark.Materials.S01E04.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9594000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"56:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12066},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Lost Boy-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E05.The Lost Boy-Bluray-1080p.mkv","size":4691505804,"dateAdded":"2020-01-26T01:09:07.304849Z","sceneName":"His.Dark.Materials.S01E05.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9744000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"55:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12067},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The D\u00e6mon-Cages-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E06.The D\u00e6mon-Cages-Bluray-1080p.mkv","size":4692317435,"dateAdded":"2020-01-26T01:09:44.766349Z","sceneName":"His.Dark.Materials.S01E06.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10255000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"53:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12068},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Fight to the Death-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E07.The Fight to the Death-Bluray-1080p.mkv","size":4691781830,"dateAdded":"2020-01-26T01:10:21.959896Z","sceneName":"His.Dark.Materials.S01E07.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9815000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"55:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12069},{"seriesId":199,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Betrayal-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 01\/S01E08.Betrayal-Bluray-1080p.mkv","size":4693026301,"dateAdded":"2020-01-26T01:10:53.484814Z","sceneName":"His.Dark.Materials.S01E08.1080p.BluRay.x264-SHORTBREHD","releaseGroup":"SHORTBREHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9647000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1080","runTime":"56:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12070},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The City of Magpies-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E01.The City of Magpies-Bluray-1080p.mkv","size":6253162143,"dateAdded":"2020-12-27T03:55:39.542003Z","sceneName":"His.Dark.Materials.S02E01.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1850296,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16062268,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"46:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16955},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Cave-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E02.The Cave-Bluray-1080p.mkv","size":6723996932,"dateAdded":"2020-12-27T03:58:04.422133Z","sceneName":"His.Dark.Materials.S02E02.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1803623,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16112063,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"50:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16956},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Theft-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E03.Theft-Bluray-1080p.mkv","size":5121214834,"dateAdded":"2020-12-27T04:00:29.083744Z","sceneName":"His.Dark.Materials.S02E03.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1818696,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12285458,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"48:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16957},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Tower of the Angels-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E04.Tower of the Angels-Bluray-1080p.mkv","size":4826098509,"dateAdded":"2020-12-27T04:02:44.97523Z","sceneName":"His.Dark.Materials.S02E04.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1811980,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11481388,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"48:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16958},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Scholar-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E05.The Scholar-Bluray-1080p.mkv","size":4936527437,"dateAdded":"2020-12-27T04:05:00.935457Z","sceneName":"His.Dark.Materials.S02E05.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1844322,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12573865,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"45:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16959},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Malice-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E06.Malice-Bluray-1080p.mkv","size":4963440869,"dateAdded":"2020-12-27T04:07:18.479781Z","sceneName":"His.Dark.Materials.S02E06.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1851025,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12111116,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"47:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16960},{"seriesId":199,"seasonNumber":2,"relativePath":"Season 02\/S02E07.\u00c6sah\u00e6ttr-Bluray-1080p.mkv","path":"\/tv\/His Dark Materials\/Season 02\/S02E07.\u00c6sah\u00e6ttr-Bluray-1080p.mkv","size":6202570763,"dateAdded":"2020-12-27T04:09:41.006027Z","sceneName":"His.Dark.Materials.S02E07.1080p.BluRay.x264-PANTALAiMON","releaseGroup":"PANTALAiMON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1901742,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15467313,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x960","runTime":"47:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16961}],"queue":[]},"203":{"series":{"title":"Steven Universe Future","alternateTitles":[],"sortTitle":"steven universe future","status":"ended","ended":true,"overview":"After saving the universe, Steven is still at it, tying up every loose end. But as he runs out of other people's problems to solve, he'll finally have to face his own. Haunted by the past and lost in the present, Steven begins manifesting new, uncontrollable powers that the Crystal Gems have never seen from him before. What does it all mean, and what does Steven want for his future?","previousAiring":"2020-03-27T23:00:00Z","network":"Cartoon Network","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/208\/banner.jpg?lastWrite=637156412866850520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/370471\/banners\/62062627.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/208\/poster.jpg?lastWrite=637114797235642460","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/370471\/posters\/62019501.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/208\/fanart.jpg?lastWrite=637380617891091620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5d97b83a53852.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-03-27T23:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":8841733544,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Steven Universe Future","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":11,"tvdbId":370471,"tvRageId":0,"tvMazeId":45148,"firstAired":"2019-12-07T00:00:00Z","seriesType":"standard","cleanTitle":"stevenuniversefuture","imdbId":"tt13714610","titleSlug":"steven-universe-future","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Animation","Comedy","Fantasy","Mini-Series","Science Fiction"],"tags":[],"added":"2019-12-07T21:07:00.773369Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":21,"sizeOnDisk":8841733544,"percentOfEpisodes":100.0},"id":208},"episodes":[{"seriesId":208,"episodeFileId":12767,"seasonNumber":1,"episodeNumber":1,"title":"Little Homeschool","airDate":"2019-12-07","airDateUtc":"2019-12-08T00:00:00Z","overview":"Welcome to Little Homeschool, a place on earth where Gems from all over the universe can come learn how to live together peacefully! But there\u2019s one Gem who refuses to attend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":15776},{"seriesId":208,"episodeFileId":12768,"seasonNumber":1,"episodeNumber":2,"title":"Guidance","airDate":"2019-12-07","airDateUtc":"2019-12-08T00:00:00Z","overview":"Amethyst has been helping Little Homeschool Gems find jobs on the boardwalk, but Steven isn\u2019t sure about her approach.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":15777},{"seriesId":208,"episodeFileId":12769,"seasonNumber":1,"episodeNumber":3,"title":"Rose Buds","airDate":"2019-12-07","airDateUtc":"2019-12-08T00:00:00Z","overview":"Steven gets a surprise visit from some old friends, and an even more surprising introduction to some new ones.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":15778},{"seriesId":208,"episodeFileId":12770,"seasonNumber":1,"episodeNumber":4,"title":"Volleyball","airDate":"2019-12-07","airDateUtc":"2019-12-08T00:00:00Z","overview":"Steven is determined to help Pink Diamond\u2019s original Pearl heal the scar on her face.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":15779},{"seriesId":208,"episodeFileId":12771,"seasonNumber":1,"episodeNumber":5,"title":"Bluebird","airDate":"2019-12-14","airDateUtc":"2019-12-15T00:00:00Z","overview":"Steven questions the motives of a mysterious fusion that suddenly shows up at his house.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":15780},{"seriesId":208,"episodeFileId":12772,"seasonNumber":1,"episodeNumber":6,"title":"A Very Special Episode","airDate":"2019-12-14","airDateUtc":"2019-12-15T00:11:00Z","overview":"Rainbow Quartz 2.0 promised to hang out with Onion the same day Sunstone scheduled a home safety Geminar! How can Steven be in two places, and two fusions, at once?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":15781},{"seriesId":208,"episodeFileId":12773,"seasonNumber":1,"episodeNumber":7,"title":"Snow Day","airDate":"2019-12-21","airDateUtc":"2019-12-22T00:00:00Z","overview":"Steven and the Crystal Gems get a chance to catch up when they\u2019re all snowed in together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":15782},{"seriesId":208,"episodeFileId":12774,"seasonNumber":1,"episodeNumber":8,"title":"Why So Blue?","airDate":"2019-12-21","airDateUtc":"2019-12-22T00:11:00Z","overview":"Steven has heard rumors of a pair of Gems that are still destroying worlds. If he can\u2019t stop them, maybe Lapis can.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":15783},{"seriesId":208,"episodeFileId":12775,"seasonNumber":1,"episodeNumber":9,"title":"Little Graduation","airDate":"2019-12-28","airDateUtc":"2019-12-29T00:00:00Z","overview":"Steven and the Gems celebrate Little Homeschool\u2019s first graduating class.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":15784},{"seriesId":208,"episodeFileId":12776,"seasonNumber":1,"episodeNumber":10,"title":"Prickly Pair","airDate":"2019-12-28","airDateUtc":"2019-12-29T00:11:00Z","overview":"After leaving Little Homeschool, Steven has found a new hobby, plants.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":15785},{"seriesId":208,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Farewell to Steven Universe","airDate":"2020-03-05","airDateUtc":"2020-03-06T00:00:00Z","overview":"Thank you Rebecca Sugar, the Crewniverse, and our amazing fans for the incredible ride. We will always be your family. \r\n\r\nAbout Steven Universe:\r\nIntroducing the Crystal Gems! Garnet, Amethyst, Pearl\u2026 and Steven. Steven might not know how to use the magical powers that come out of his bellybutton, but that doesn\u2019t stop him from joining the Gems on their magical adventures!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":15775},{"seriesId":208,"episodeFileId":12777,"seasonNumber":1,"episodeNumber":11,"title":"In Dreams","airDate":"2020-03-06","airDateUtc":"2020-03-07T00:00:00Z","overview":"Steven\u2019s dreams start broadcasting onto his bedroom TV.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":17181},{"seriesId":208,"episodeFileId":12778,"seasonNumber":1,"episodeNumber":12,"title":"Bismuth Casual","airDate":"2020-03-06","airDateUtc":"2020-03-07T00:11:00Z","overview":"Pearl invites Bismuth to the roller rink for a lesson on how to forge human relationships.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":17182},{"seriesId":208,"episodeFileId":12779,"seasonNumber":1,"episodeNumber":13,"title":"Together Forever","airDate":"2020-03-13","airDateUtc":"2020-03-13T23:00:00Z","overview":"Connie has a really clear vision for her future. Steven wants to make sure he'll be a part of it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":17183},{"seriesId":208,"episodeFileId":12780,"seasonNumber":1,"episodeNumber":14,"title":"Growing Pains","airDate":"2020-03-13","airDateUtc":"2020-03-13T23:11:00Z","overview":"Steven visits a doctor for the first time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":17184},{"seriesId":208,"episodeFileId":12781,"seasonNumber":1,"episodeNumber":15,"title":"Mr. Universe","airDate":"2020-03-20","airDateUtc":"2020-03-20T23:00:00Z","overview":"Greg takes Steven on the road to find the origins of the Universe name.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":17185},{"seriesId":208,"episodeFileId":12782,"seasonNumber":1,"episodeNumber":16,"title":"Fragments","airDate":"2020-03-20","airDateUtc":"2020-03-20T23:11:00Z","overview":"Steven heads to the woods to train with a powerful mentor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":17186},{"seriesId":208,"episodeFileId":12783,"seasonNumber":1,"episodeNumber":17,"title":"Homeworld Bound","airDate":"2020-03-27","airDateUtc":"2020-03-27T23:00:00Z","overview":"Steven heads to the Diamonds for advice on how to control his new powers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":17187},{"seriesId":208,"episodeFileId":12784,"seasonNumber":1,"episodeNumber":18,"title":"Everything's Fine","airDate":"2020-03-27","airDateUtc":"2020-03-27T23:00:00Z","overview":"Steven insists that everything is fine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":17188},{"seriesId":208,"episodeFileId":12785,"seasonNumber":1,"episodeNumber":19,"title":"I Am My Monster","airDate":"2020-03-27","airDateUtc":"2020-03-27T23:00:00Z","overview":"Everything is not fine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":17189},{"seriesId":208,"episodeFileId":12786,"seasonNumber":1,"episodeNumber":20,"title":"The Future","airDate":"2020-03-27","airDateUtc":"2020-03-27T23:00:00Z","overview":"Steven is finally ready to move on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":17190}],"episodeFile":[{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Little Homeschool-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E01.Little Homeschool-WEBDL-1080p.mp4","size":443848330,"dateAdded":"2020-03-28T13:25:39.897649Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126186,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5100606,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12767},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Guidance-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E02.Guidance-WEBDL-1080p.mp4","size":448835400,"dateAdded":"2020-03-28T13:25:39.960321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124807,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5161139,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12768},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Rose Buds-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E03.Rose Buds-WEBDL-1080p.mp4","size":437122231,"dateAdded":"2020-03-28T13:25:40.030116Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":123779,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5023670,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12769},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Volleyball-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E04.Volleyball-WEBDL-1080p.mp4","size":440402185,"dateAdded":"2020-03-28T13:25:40.094666Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125727,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5061067,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12770},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Bluebird-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E05.Bluebird-WEBDL-1080p.mp4","size":436660920,"dateAdded":"2020-03-28T13:25:40.159484Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125382,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5016964,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12771},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E06.A Very Special Episode-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E06.A Very Special Episode-WEBDL-1080p.mp4","size":449164498,"dateAdded":"2020-03-28T13:25:40.223542Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124424,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5161430,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12772},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Snow Day-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E07.Snow Day-WEBDL-1080p.mp4","size":447060359,"dateAdded":"2020-03-28T13:25:40.284165Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125355,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5135342,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12773},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Why So Blue-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E08.Why So Blue-WEBDL-1080p.mp4","size":447425828,"dateAdded":"2020-03-28T13:25:40.343863Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125020,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5143959,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12774},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Little Graduation-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E09.Little Graduation-WEBDL-1080p.mp4","size":448802561,"dateAdded":"2020-03-28T13:25:40.404497Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124762,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5137322,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12775},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Prickly Pair-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E10.Prickly Pair-WEBDL-1080p.mp4","size":440937262,"dateAdded":"2020-03-28T13:25:40.464118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124449,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5045081,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12776},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E11.In Dreams-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E11.In Dreams-WEBDL-1080p.mp4","size":441159179,"dateAdded":"2020-03-28T13:25:40.522434Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125273,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5070128,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12777},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Bismuth Casual-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E12.Bismuth Casual-WEBDL-1080p.mp4","size":443554420,"dateAdded":"2020-03-28T13:25:40.582724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125346,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5098286,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12778},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Together Forever-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E13.Together Forever-WEBDL-1080p.mp4","size":428180928,"dateAdded":"2020-03-28T13:25:40.643645Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125569,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4910922,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12779},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Growing Pains-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E14.Growing Pains-WEBDL-1080p.mp4","size":431938135,"dateAdded":"2020-03-28T13:25:40.704241Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124732,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4957892,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12780},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Mr. Universe-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E15.Mr. Universe-WEBDL-1080p.mp4","size":433003918,"dateAdded":"2020-03-28T13:25:40.76256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125847,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4973353,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12781},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Fragments-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E16.Fragments-WEBDL-1080p.mp4","size":464302096,"dateAdded":"2020-03-28T13:25:40.823052Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126688,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5341258,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12782},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Homeworld Bound-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E17.Homeworld Bound-WEBDL-1080p.mp4","size":445258033,"dateAdded":"2020-03-28T13:25:40.882952Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125661,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5118066,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12783},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Everything's Fine-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E18.Everything's Fine-WEBDL-1080p.mp4","size":439941365,"dateAdded":"2020-03-28T13:25:40.94554Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124787,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5051157,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12784},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E19.I Am My Monster-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E19.I Am My Monster-WEBDL-1080p.mp4","size":454021888,"dateAdded":"2020-03-28T13:25:41.004838Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125654,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5221152,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12785},{"seriesId":208,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Future-WEBDL-1080p.mp4","path":"\/tv\/Steven Universe Future\/Season 01\/S01E20.The Future-WEBDL-1080p.mp4","size":420114008,"dateAdded":"2020-03-28T13:25:41.066452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125377,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4821585,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12786}],"queue":[]},"204":{"series":{"title":"Regular Show","alternateTitles":[],"sortTitle":"regular show","status":"ended","ended":true,"overview":"The daily surreal adventures of a blue jay and raccoon duo that attempt to deal with their mundane jobs as groundskeepers at the local park.","previousAiring":"2017-01-17T00:30:00Z","network":"Cartoon Network","airTime":"19:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/158\/banner.jpg?lastWrite=637103833197224730","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/188401-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/158\/poster.jpg?lastWrite=637432653571333200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/188401-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/158\/fanart.jpg?lastWrite=637103833183904970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/188401-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2010-05-09T23:30:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":28,"sizeOnDisk":195042455,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-11-23T00:30:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":3301495854,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2011-08-01T23:30:00Z","episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":14566630919,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2012-09-02T23:30:00Z","episodeFileCount":39,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":15559434345,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2013-08-12T23:30:00Z","episodeFileCount":37,"episodeCount":38,"totalEpisodeCount":38,"sizeOnDisk":24145806568,"percentOfEpisodes":97.36842105263158}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2014-08-14T23:30:00Z","episodeFileCount":37,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":18349756285,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2015-06-25T23:30:00Z","episodeFileCount":27,"episodeCount":28,"totalEpisodeCount":28,"sizeOnDisk":3462244854,"percentOfEpisodes":96.42857142857143}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2016-06-30T23:30:00Z","episodeFileCount":35,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":17383065869,"percentOfEpisodes":97.22222222222223}},{"seasonNumber":8,"monitored":true,"statistics":{"previousAiring":"2017-01-17T00:30:00Z","episodeFileCount":27,"episodeCount":29,"totalEpisodeCount":29,"sizeOnDisk":12318560876,"percentOfEpisodes":93.10344827586206}}],"year":2010,"path":"\/tv\/Regular Show","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":10,"tvdbId":188401,"tvRageId":26426,"tvMazeId":868,"firstAired":"2010-09-06T00:00:00Z","seriesType":"standard","cleanTitle":"regularshow","imdbId":"tt1710308","titleSlug":"regular-show","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Action","Adventure","Animation","Comedy"],"tags":[],"added":"2019-08-24T22:19:25.318349Z","ratings":{"votes":1161,"value":8.9},"statistics":{"seasonCount":8,"episodeFileCount":243,"episodeCount":248,"totalEpisodeCount":275,"sizeOnDisk":109282038025,"percentOfEpisodes":97.98387096774194},"id":158},"episodes":[{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"2010 Comic-Con Teaser Trailer","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12017},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Animatic For 'The Power'","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12018},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Animatic For The Unaired Pilot","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12019},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Interview With JG Quintel","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12020},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"JG Pitches 'The Power'","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12021},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Sam Sings Mystery Karaoke","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12022},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Behind The Voices","overview":"A Cartoon Network short featuring the actors behind the voices.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17135},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Secret Prints","overview":"A Mini-Documentary showcasing the making of the secret 1000 hand made prints inserted into DVD copies of Regular Show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17136},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Naive Man from Lolliland","airDate":"2005-01-01","airDateUtc":"2005-01-02T00:30:00Z","overview":"Quintel's 1st student film, \"The Naive Man from Lolliland\" tells the story of a foreign ambassador who visits the United States only to learn that his customs are unwelcome. Features an early inspiration for Pops.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12015},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"2 in the AM PM","airDate":"2006-01-01","airDateUtc":"2006-01-02T00:30:00Z","overview":"Quintel's 2nd student film, \"2 in the AM PM\" tells the story of two slackers, who are left alone to run a convenience store on Halloween night, where candy filled with drugs creates a mini-nightmare. Features early inspirations for Mordecai and Benson.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12016},{"seriesId":158,"episodeFileId":8426,"seasonNumber":0,"episodeNumber":1,"title":"Pilot","airDate":"2010-05-09","airDateUtc":"2010-05-09T23:30:00Z","overview":"Mordecai and Rigby have started their new job, and are pretty pleased with their lodgings. The only cloud on the horizon is the fact they have no furniture. Luckily, Pops is throwing out a chair he doesn't find comfortable, so the two decide to settle ownership with a game of Rock Paper Scissors.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":12011},{"seriesId":158,"episodeFileId":8425,"seasonNumber":1,"episodeNumber":1,"title":"The Power","airDate":"2010-09-06","airDateUtc":"2010-09-06T23:30:00Z","overview":"Mordecai and Rigby must find a way to cover up a hole in the wall they created, and a magical keyboard they name 'The Power' might be just the thing for it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12026},{"seriesId":158,"episodeFileId":8427,"seasonNumber":1,"episodeNumber":2,"title":"Just Set Up The Chairs","airDate":"2010-09-13","airDateUtc":"2010-09-13T23:30:00Z","overview":"A birthday party is scheduled in the park, and everyone has interesting jobs to do. That is, everybody but Mordecai and Rigby, who are only trusted with the lame job of setting up the chairs. In order to prove they are not slackers, the duo agree to set them up without being distracted.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12027},{"seriesId":158,"episodeFileId":8428,"seasonNumber":1,"episodeNumber":3,"title":"Caffeinated Concert Tickets","airDate":"2010-09-20","airDateUtc":"2010-09-20T23:30:00Z","overview":"Mordecai and Rigby need money in order to see their favourite childhood band. They decide to take on extra shifts, but soon start to tire out so they turn to coffee in order to stay awake.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12028},{"seriesId":158,"episodeFileId":8429,"seasonNumber":1,"episodeNumber":4,"title":"Death Punchies","airDate":"2010-09-27","airDateUtc":"2010-09-27T23:30:00Z","overview":"Rigby suffers a final humiliation as he loses a fight to Mordecai over a video game. He turns to 'Death Kwon Do' in order to finally win one over his friend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12029},{"seriesId":158,"episodeFileId":8430,"seasonNumber":1,"episodeNumber":5,"title":"Free Cake","airDate":"2010-10-04","airDateUtc":"2010-10-04T23:30:00Z","overview":"When Rigby digs up a good-looking plate from the garbage, he and Mordecai decide to use it by eating a piece of chocolate cake on it. As their efforts prove fruitless, they decide the only way forward is to convince the solitary Skips to have a birthday party.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12030},{"seriesId":158,"episodeFileId":8431,"seasonNumber":1,"episodeNumber":6,"title":"Meat Your Maker","airDate":"2010-10-11","airDateUtc":"2010-10-11T23:30:00Z","overview":"The annual park barbecue has arrived, and Benson is so excited he has ordered premium hot dogs. When things go wrong, Mordecai blames Rigby for always making things worse, despite his claims that he can 'totally fix it.'","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12031},{"seriesId":158,"episodeFileId":8432,"seasonNumber":1,"episodeNumber":7,"title":"Grilled Cheese Deluxe","airDate":"2010-10-18","airDateUtc":"2010-10-18T23:30:00Z","overview":"Mordecai and Rigby need to buy a grilled cheese sandwich for Benson, but can't be bothered to wait in line. Instead, they pretend to be astronauts, which results in them trying to out lie each other.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12032},{"seriesId":158,"episodeFileId":8433,"seasonNumber":1,"episodeNumber":8,"title":"The Unicorns Have Got To Go","airDate":"2010-10-25","airDateUtc":"2010-10-25T23:30:00Z","overview":"In an effort to woo Margaret, Mordecai starts using a cologne that can supposedly attract women, called \"Dude Time\". Unfortunately, all it seems to attract are unicorns.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12033},{"seriesId":158,"episodeFileId":8434,"seasonNumber":1,"episodeNumber":9,"title":"Prank Callers","airDate":"2010-11-01","airDateUtc":"2010-11-01T23:30:00Z","overview":"Mordecai and Rigby's constant prank calls result in one of their victims sending them back in time to the eighties.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12034},{"seriesId":158,"episodeFileId":8435,"seasonNumber":1,"episodeNumber":10,"title":"Don","airDate":"2010-11-08","airDateUtc":"2010-11-09T00:30:00Z","overview":"When the park is going to be audited, the guys must find a way to sort their taxes out or face it being closed down. Mordecai suggests Rigby's accountant brother, Don, but Rigby must first get over a long running feud.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12035},{"seriesId":158,"episodeFileId":8436,"seasonNumber":1,"episodeNumber":11,"title":"Rigby's Body","airDate":"2010-11-15","airDateUtc":"2010-11-16T00:30:00Z","overview":"After gorging on snacks at the snack bar, Rigby suffers an unfortunate accident as his consciousness separates from his body.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12036},{"seriesId":158,"episodeFileId":8437,"seasonNumber":1,"episodeNumber":12,"title":"Mordecai and the Rigbys","airDate":"2010-11-22","airDateUtc":"2010-11-23T00:30:00Z","overview":"After ordering a bunch of shirts for a fake band, Mordecai and Rigby find themselves having to learn to play for real to avoid looking like idiots at the local open mic night.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12037},{"seriesId":158,"episodeFileId":8588,"seasonNumber":2,"episodeNumber":1,"title":"Ello Gov'nor","airDate":"2010-11-29","airDateUtc":"2010-11-30T00:30:00Z","overview":"Rigby is haunted by nightmares about a possessed British taxi after watching a cheesy horror film. Mordecai is convinced that desensitising him is the only way to cure it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12038},{"seriesId":158,"episodeFileId":8589,"seasonNumber":2,"episodeNumber":2,"title":"It's Time","airDate":"2011-01-03","airDateUtc":"2011-01-04T00:30:00Z","overview":"When Mordecai and Rigby help Margaret move out of her house, Mordecai becomes jealous when Margaret starts to like Rigby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12039},{"seriesId":158,"episodeFileId":8590,"seasonNumber":2,"episodeNumber":3,"title":"Appreciation Day","airDate":"2011-01-10","airDateUtc":"2011-01-11T00:30:00Z","overview":"Mordecai and Rigby learn the price of being appreciated at work after altering Benson's magic book of records.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12040},{"seriesId":158,"episodeFileId":8591,"seasonNumber":2,"episodeNumber":4,"title":"Peeps","airDate":"2011-01-17","airDateUtc":"2011-01-18T00:30:00Z","overview":"Benson installs surveillance cameras in the workplace.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12041},{"seriesId":158,"episodeFileId":8592,"seasonNumber":2,"episodeNumber":5,"title":"Dizzy","airDate":"2011-01-24","airDateUtc":"2011-01-25T00:30:00Z","overview":"Mordecai and Rigby help Pops get over his fear of public speaking.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12042},{"seriesId":158,"episodeFileId":8593,"seasonNumber":2,"episodeNumber":6,"title":"My Mom","airDate":"2011-01-31","airDateUtc":"2011-02-01T00:30:00Z","overview":"Muscle Man's incessant usage of outdated and confusing \"My Mom\" jokes during a day filled with pressing deadlines and assignments infuriates Mordecai, especially after Rigby decides to join in and issue more of his own jokes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12043},{"seriesId":158,"episodeFileId":8594,"seasonNumber":2,"episodeNumber":7,"title":"High Score","airDate":"2011-02-07","airDateUtc":"2011-02-08T00:30:00Z","overview":"Looking to find respect, Mordecai and Rigby take on a video game high score at the coffee shop.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12044},{"seriesId":158,"episodeFileId":8595,"seasonNumber":2,"episodeNumber":8,"title":"Rage Against the TV","airDate":"2011-02-14","airDateUtc":"2011-02-15T00:30:00Z","overview":"Mordecai and Rigby are about to beat \"The Hammer\" the supposedly unbeatable last boss in their new video game,but the TV breaks. Skips, Pops, Muscle Man, and High-Five Ghost want to see The Hammer lose and modernize the replacement TV.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12045},{"seriesId":158,"episodeFileId":8596,"seasonNumber":2,"episodeNumber":9,"title":"Party Pete","airDate":"2011-02-21","airDateUtc":"2011-02-22T00:30:00Z","overview":"When Benson takes the night off, Mordecai and Rigby decide to throw a party, but as it gets off on a rocky start, they seek the help of Party Pete to get their party going. But the duo soon learn the hard way that Party Pete is unstoppable when drinking RadiCola.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12046},{"seriesId":158,"episodeFileId":8597,"seasonNumber":2,"episodeNumber":10,"title":"Brain Eraser","airDate":"2011-02-25","airDateUtc":"2011-02-26T00:30:00Z","overview":"Mordecai sees Pops naked and tries to forget about it. Rigby decides to help out by showing him an anime with supernatural powers. In turn, the anime ends up wiping out all of Mordecai's memories and it's up to Rigby and Skips to get back Mordecai's mind.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12047},{"seriesId":158,"episodeFileId":8598,"seasonNumber":2,"episodeNumber":11,"title":"Benson Be Gone","airDate":"2011-02-28","airDateUtc":"2011-03-01T00:30:00Z","overview":"Mr. Mallard demotes Benson due to Mordecai and Rigby slacking off on his time. Mordecai and Rigby teach Benson how to slack off, but end up teaching him too well.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12048},{"seriesId":158,"episodeFileId":8599,"seasonNumber":2,"episodeNumber":12,"title":"But I Have A Receipt","airDate":"2011-03-07","airDateUtc":"2011-03-08T00:30:00Z","overview":"After finding out their new game isn't as awesome as they thought, Mordecai and Rigby fruitlessly try to get their money back. In retaliation, Mordecai and Rigby sabotage the sale of the game so much they are pulled into the game by the manager and must defeat him to get their freedom and their refund.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12049},{"seriesId":158,"episodeFileId":8600,"seasonNumber":2,"episodeNumber":13,"title":"This is My Jam","airDate":"2011-03-28","airDateUtc":"2011-03-28T23:30:00Z","overview":"Rigby finds an old tape with one of his former favorite songs on it, only to find that it's not as good as he remembers. Problem is, the song gets lodged in his brain and cannot stop humming or singing it so Mordecai tries various methods to get rid of it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12050},{"seriesId":158,"episodeFileId":8601,"seasonNumber":2,"episodeNumber":14,"title":"Muscle Woman","airDate":"2011-04-04","airDateUtc":"2011-04-04T23:30:00Z","overview":"Mordecai and Rigby must go and get Muscle Man and his ex-girlfriend back together again after Muscle Man's broken heart costs them more work and an unwanted crush.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12051},{"seriesId":158,"episodeFileId":8602,"seasonNumber":2,"episodeNumber":15,"title":"Temp Check","airDate":"2011-04-11","airDateUtc":"2011-04-11T23:30:00Z","overview":"Rigby employs a beaver named Doug to do his work for him, but soon runs into issues.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12052},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Ringtoneers","airDate":"2011-04-15","airDateUtc":"2011-04-15T23:30:00Z","overview":"Mordecai and Rigby try to write a hit song. When their coworkers doubt it, the duo try to prove themselves by showing their song to Really Cool Records. When that fails, Mordecai and Rigby propose a variant of their song as an idea for a ringtone but they keep it to themselves.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12012},{"seriesId":158,"episodeFileId":8603,"seasonNumber":2,"episodeNumber":16,"title":"Jinx","airDate":"2011-04-18","airDateUtc":"2011-04-18T23:30:00Z","overview":"Rigby got jinxed and has got to find a way to un-jinx himself so he can talk again. Only problem is, he can't tell anybody to say his name three times to un-jinx him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12053},{"seriesId":158,"episodeFileId":8604,"seasonNumber":2,"episodeNumber":17,"title":"See You There","airDate":"2011-04-25","airDateUtc":"2011-04-25T23:30:00Z","overview":"Muscle Man invites everyone to High Five Ghost's birthday party, except for Mordecai and Rigby who decide to crash it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12054},{"seriesId":158,"episodeFileId":8605,"seasonNumber":2,"episodeNumber":18,"title":"Do Me A Solid","airDate":"2011-05-02","airDateUtc":"2011-05-02T23:30:00Z","overview":"Much to Skips' annoyance, Mordecai and Rigby start to overask each other for favors by saying \"do me a solid.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12055},{"seriesId":158,"episodeFileId":8606,"seasonNumber":2,"episodeNumber":19,"title":"Grave Sights","airDate":"2011-05-09","airDateUtc":"2011-05-09T23:30:00Z","overview":"Mordecai and Rigby organize a scary movie fund-raiser for the park. They end up raising more than just funds.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12056},{"seriesId":158,"episodeFileId":8607,"seasonNumber":2,"episodeNumber":20,"title":"Really Real Wrestling","airDate":"2011-05-16","airDateUtc":"2011-05-16T23:30:00Z","overview":"Mordecai and Rigby injure Pops by wrestling him and in the end, have to take care of him during the night when Pops got them tickets to go to the wrestling championship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12057},{"seriesId":158,"episodeFileId":8608,"seasonNumber":2,"episodeNumber":21,"title":"Over the Top","airDate":"2011-05-23","airDateUtc":"2011-05-23T23:30:00Z","overview":"When Skips kills Rigby, he must defeat Death in an arm wrestle competition to bring Rigby back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12058},{"seriesId":158,"episodeFileId":8609,"seasonNumber":2,"episodeNumber":22,"title":"The Night Owl","airDate":"2011-05-30","airDateUtc":"2011-05-30T23:30:00Z","overview":"Mordecai and Rigby compete against Muscle Man and High Five Ghost in a radio contest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12059},{"seriesId":158,"episodeFileId":8610,"seasonNumber":2,"episodeNumber":23,"title":"A Bunch of Baby Ducks","airDate":"2011-06-06","airDateUtc":"2011-06-06T23:30:00Z","overview":"Mordecai and Rigby find a bunch of baby ducks when they are asked to clean the old fountain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12060},{"seriesId":158,"episodeFileId":8611,"seasonNumber":2,"episodeNumber":24,"title":"More Smarter","airDate":"2011-06-13","airDateUtc":"2011-06-13T23:30:00Z","overview":"Fed up with being insulted all the time, Rigby decides to boost his intelligence with whatever methods he can find.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12061},{"seriesId":158,"episodeFileId":8612,"seasonNumber":2,"episodeNumber":25,"title":"First Day","airDate":"2011-07-11","airDateUtc":"2011-07-11T23:30:00Z","overview":"In this updated version of the pilot episode, Mordecai and Rigby answer a newspaper ad posted by Benson for two groundskeepers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12062},{"seriesId":158,"episodeFileId":8613,"seasonNumber":2,"episodeNumber":26,"title":"Go Viral","airDate":"2011-07-18","airDateUtc":"2011-07-18T23:30:00Z","overview":"Mordecai and Rigby try to create a viral internet video for a bet with Muscle Man.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12063},{"seriesId":158,"episodeFileId":8614,"seasonNumber":2,"episodeNumber":27,"title":"Skunked","airDate":"2011-07-25","airDateUtc":"2011-07-25T23:30:00Z","overview":"Rigby gets sprayed by a skunk and the duo try all kinds of methods to get the smell out.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12064},{"seriesId":158,"episodeFileId":8615,"seasonNumber":2,"episodeNumber":28,"title":"Karaoke Video","airDate":"2011-08-01","airDateUtc":"2011-08-01T23:30:00Z","overview":"Mordecai and Rigby spend a night at Carrey O'Key's Karaoke bar, but the song they sing (We're Not Gonna Take It) is so motivating that they accidentally begin talking trash about Benson, Pops and Skips.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12065},{"seriesId":158,"episodeFileId":8448,"seasonNumber":3,"episodeNumber":1,"title":"Stick Hockey","airDate":"2011-09-19","airDateUtc":"2011-09-19T23:30:00Z","overview":"Mordecai and Rigby are slacking off again, this time with a stick hockey table. Benson finds out and makes a deal with the two--if they finish all their work, they can play the game. However, when Benson goes against his word and sells it, Mordecai and Rigby must set out to retrieve it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12066},{"seriesId":158,"episodeFileId":8449,"seasonNumber":3,"episodeNumber":2,"title":"Bet to Be Blonde","airDate":"2011-09-26","airDateUtc":"2011-09-26T23:30:00Z","overview":"After losing a bet, Mordecai dyes his hair blonde and gets pulled into a shadowy blonde cult.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12067},{"seriesId":158,"episodeFileId":8450,"seasonNumber":3,"episodeNumber":3,"title":"Skips Strikes","airDate":"2011-10-03","airDateUtc":"2011-10-03T23:30:00Z","overview":"The gang must get Skips to rejoin their bowling team, or face losing their souls to Death.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12068},{"seriesId":158,"episodeFileId":8451,"seasonNumber":3,"episodeNumber":4,"title":"Terror Tales of the Park","airDate":"2011-10-10","airDateUtc":"2011-10-10T23:30:00Z","overview":"A three-part Halloween special in which terrifying tales are told.\r\n\r\nCreepy Doll: The guys discover an old doll that wants revenge on Pops.\r\n\r\nDeath Metal Crash Pit: A pit is haunted by a 1980s death-metal band.\r\n\r\nIn the House: On Halloween, Mordecai dresses up as a father with five \"kids\", to receive more candy, while Rigby goes as a robber and scares away people.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12069},{"seriesId":158,"episodeFileId":8452,"seasonNumber":3,"episodeNumber":5,"title":"Camping Can Be Cool","airDate":"2011-10-17","airDateUtc":"2011-10-17T23:30:00Z","overview":"Mordecai, Rigby, Margaret and Eileen head to the mountains for a camping trip in their \"secret spot.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12070},{"seriesId":158,"episodeFileId":8453,"seasonNumber":3,"episodeNumber":6,"title":"Slam Dunk","airDate":"2011-10-24","airDateUtc":"2011-10-24T23:30:00Z","overview":"The guys challenge Muscle Man and High Five Ghost to a basketball competition in order to win time to use the computer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12071},{"seriesId":158,"episodeFileId":8454,"seasonNumber":3,"episodeNumber":7,"title":"Cool Bikes","airDate":"2011-11-07","airDateUtc":"2011-11-08T00:30:00Z","overview":"After wrecking the cart, Benson takes it away from Mordecai and Rigby and replaces it with two bikes. The guys make a deal with Benson that if he admits they are cool, he'll give it back to them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12072},{"seriesId":158,"episodeFileId":8455,"seasonNumber":3,"episodeNumber":8,"title":"House Rules","airDate":"2011-11-14","airDateUtc":"2011-11-15T00:30:00Z","overview":"Mordecai and Rigby are tired of Benson's new laws for the house, so they try to find a new place to stay that is free from rules.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12073},{"seriesId":158,"episodeFileId":8456,"seasonNumber":3,"episodeNumber":9,"title":"Rap It Up","airDate":"2011-11-21","airDateUtc":"2011-11-22T00:30:00Z","overview":"When Pops is humiliated by a bunch of rappers, Mordecai and Rigby attempt to teach him to rap instead of recite poetry.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12074},{"seriesId":158,"episodeFileId":8457,"seasonNumber":3,"episodeNumber":10,"title":"Cruisin'","airDate":"2011-11-28","airDateUtc":"2011-11-29T00:30:00Z","overview":"Influenced by a movie trailer, Mordecai and Rigby believe that a cool car can get you girls, much to the disgust of Margaret and Eileen.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12075},{"seriesId":158,"episodeFileId":8458,"seasonNumber":3,"episodeNumber":11,"title":"Under the Hood","airDate":"2011-12-12","airDateUtc":"2011-12-13T00:30:00Z","overview":"The guys must erase graffiti in the park.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12076},{"seriesId":158,"episodeFileId":8459,"seasonNumber":3,"episodeNumber":12,"title":"Weekend at Benson's","airDate":"2012-01-16","airDateUtc":"2012-01-17T00:30:00Z","overview":"Mordecai and Rigby help Benson try to impress Audrey, but Chuck gets in the way of that.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12077},{"seriesId":158,"episodeFileId":8460,"seasonNumber":3,"episodeNumber":13,"title":"Fortune Cookie","airDate":"2012-01-23","airDateUtc":"2012-01-24T00:30:00Z","overview":"Rigby swaps fortune cookies with Benson in hopes of improving his luck.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12078},{"seriesId":158,"episodeFileId":8461,"seasonNumber":3,"episodeNumber":14,"title":"Think Positive","airDate":"2012-01-30","airDateUtc":"2012-01-31T00:30:00Z","overview":"Pops bans Benson from yelling at Mordecai and Rigby, causing Benson to have a major meltdown.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12079},{"seriesId":158,"episodeFileId":8462,"seasonNumber":3,"episodeNumber":15,"title":"Skips vs. Technology","airDate":"2012-02-06","airDateUtc":"2012-02-07T00:30:00Z","overview":"Skips lacks computer skills and can't help Mordecai and Rigby master technology.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12080},{"seriesId":158,"episodeFileId":8463,"seasonNumber":3,"episodeNumber":16,"title":"Butt Dial","airDate":"2012-02-13","airDateUtc":"2012-02-14T00:30:00Z","overview":"Mordecai accidentally calls Margaret and must find a way to erase the embarrassing message he left on her voicemail.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12081},{"seriesId":158,"episodeFileId":8464,"seasonNumber":3,"episodeNumber":17,"title":"Eggscellent","airDate":"2012-02-27","airDateUtc":"2012-02-28T00:30:00Z","overview":"Mordecai tries to eat a large omelette in order to win a hat for Rigby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12082},{"seriesId":158,"episodeFileId":8465,"seasonNumber":3,"episodeNumber":18,"title":"Gut Model","airDate":"2012-03-05","airDateUtc":"2012-03-06T00:30:00Z","overview":"Muscle Man wants to be appreciated at the park so he threatens to leave and take a job as a gut model.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12083},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Party Tonight - Regular Show 1 Million Fan Exclusive","airDate":"2012-03-10","airDateUtc":"2012-03-11T00:30:00Z","overview":"OOOOOOOHHHHHHH!!! Regular Show's creator JG Quintel and Cartoon Network love all 1 Million of you so much, we had Mordecai, Rigby, and the rest of the park guys make this Party Tonight music video that's so awesome, it can only be described with three letters: R-A-D. You can only see it here, so thanks for being a Regular Show fan!!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12013},{"seriesId":158,"episodeFileId":8466,"seasonNumber":3,"episodeNumber":19,"title":"Video Game Wizards","airDate":"2012-03-26","airDateUtc":"2012-03-26T23:30:00Z","overview":"Mordecai and Rigby enter a video game tournament to win a prototype video game controller called \u201cThe Maximum Glove\u201d.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12084},{"seriesId":158,"episodeFileId":8467,"seasonNumber":3,"episodeNumber":20,"title":"Big Winner","airDate":"2012-04-02","airDateUtc":"2012-04-02T23:30:00Z","overview":"Mordecai and Rigby must tell Muscle Man that the scratch ticket they gave him was a fake.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12085},{"seriesId":158,"episodeFileId":8468,"seasonNumber":3,"episodeNumber":21,"title":"The Best Burger in the World","airDate":"2012-04-09","airDateUtc":"2012-04-09T23:30:00Z","overview":"Mordecai and Rigby try to fool Benson so they can eat the best burgers in the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12086},{"seriesId":158,"episodeFileId":8469,"seasonNumber":3,"episodeNumber":22,"title":"Replaced","airDate":"2012-04-16","airDateUtc":"2012-04-16T23:30:00Z","overview":"The guys fight for their jobs after Benson replaces them with an ostrich and a possum.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12087},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Party Tonight - TV Version","airDate":"2012-04-17","airDateUtc":"2012-04-17T23:30:00Z","overview":"A live action music video by the Regular Show Gang served as a \"thank you\" for 1 million Facebook likes. This short made its first appearance on Cartoon Network on April 17, 2012.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12014},{"seriesId":158,"episodeFileId":8470,"seasonNumber":3,"episodeNumber":23,"title":"Trash Boat","airDate":"2012-04-23","airDateUtc":"2012-04-23T23:30:00Z","overview":"Rigby changes his name and quickly regrets his choice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12088},{"seriesId":158,"episodeFileId":8471,"seasonNumber":3,"episodeNumber":24,"title":"Fists of Justice","airDate":"2012-04-30","airDateUtc":"2012-04-30T23:30:00Z","overview":"Mordecai and Rigby do Skips work for his birthday, but Skips hurts his hand. He was supposed to fight someone, but with his hands injured, Mordecai and Rigby must fight the person themselves with the Fists of Justice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12089},{"seriesId":158,"episodeFileId":8472,"seasonNumber":3,"episodeNumber":25,"title":"Yes Dude Yes","airDate":"2012-05-07","airDateUtc":"2012-05-07T23:30:00Z","overview":"Mordecai thinks that Margaret is engaged, and he wants to find a girlfriend as soon as possible to try and get over her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12090},{"seriesId":158,"episodeFileId":8473,"seasonNumber":3,"episodeNumber":26,"title":"Busted Cart","airDate":"2012-05-14","airDateUtc":"2012-05-14T23:30:00Z","overview":"Mordecai and Rigby bust up the cart and have to go on a road trip with Benson to the dealership before the warranty expires.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12091},{"seriesId":158,"episodeFileId":8474,"seasonNumber":3,"episodeNumber":27,"title":"Dead at Eight","airDate":"2012-05-28","airDateUtc":"2012-05-28T23:30:00Z","overview":"Death will spare Muscle Man\u2019s life if Mordecai and Rigby babysit his kid.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12092},{"seriesId":158,"episodeFileId":8475,"seasonNumber":3,"episodeNumber":28,"title":"Access Denied","airDate":"2012-06-04","airDateUtc":"2012-06-04T23:30:00Z","overview":"Margret plans a last minute party at a local club so that she can dance. The List becomes their mortal enemy in this episode.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12093},{"seriesId":158,"episodeFileId":8476,"seasonNumber":3,"episodeNumber":29,"title":"Muscle Mentor","airDate":"2012-06-11","airDateUtc":"2012-06-11T23:30:00Z","overview":"Rigby must prove he can complete a task or risk losing his job.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12094},{"seriesId":158,"episodeFileId":8477,"seasonNumber":3,"episodeNumber":30,"title":"Trucker Hall of Fame","airDate":"2012-06-18","airDateUtc":"2012-06-18T23:30:00Z","overview":"Muscle Man wants to spread his dad's ashes at the Big Rig Museum and needs Mordecai and Rigy's help getting there.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12095},{"seriesId":158,"episodeFileId":8478,"seasonNumber":3,"episodeNumber":31,"title":"Out of Commission","airDate":"2012-06-25","airDateUtc":"2012-06-25T23:30:00Z","overview":"The guys plan a day with the cart before they have to get rid of it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12096},{"seriesId":158,"episodeFileId":8479,"seasonNumber":3,"episodeNumber":32,"title":"Fancy Restaurant","airDate":"2012-07-16","airDateUtc":"2012-07-16T23:30:00Z","overview":"Muscle Man must learn to be a true gentleman in order to impress Starla's parents.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12097},{"seriesId":158,"episodeFileId":8480,"seasonNumber":3,"episodeNumber":33,"title":"Diary","airDate":"2012-07-23","airDateUtc":"2012-07-23T23:30:00Z","overview":"After being asked by Margret to water the plants, the duo discover a diary disaster down on the ground. They begin to repair it and make things worse. What secrets will be revealed in Margret's Diary?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12098},{"seriesId":158,"episodeFileId":8481,"seasonNumber":3,"episodeNumber":34,"title":"The Best VHS in the World","airDate":"2012-07-30","airDateUtc":"2012-07-30T23:30:00Z","overview":"Mordecai and Rigby have to return an overdue VHS to the store so they won't be banned from renting new movies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12099},{"seriesId":158,"episodeFileId":8482,"seasonNumber":3,"episodeNumber":35,"title":"Prankless","airDate":"2012-08-06","airDateUtc":"2012-08-06T23:30:00Z","overview":"The gang wants to win a prank war against a rival park.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12100},{"seriesId":158,"episodeFileId":8483,"seasonNumber":3,"episodeNumber":36,"title":"Death Bear","airDate":"2012-08-13","airDateUtc":"2012-08-13T23:30:00Z","overview":"Mordecai and Rigby hope to impress Margaret and Eileen by taking a picture with Deathbear.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12101},{"seriesId":158,"episodeFileId":8484,"seasonNumber":3,"episodeNumber":37,"title":"Fuzzy Dice","airDate":"2012-08-20","airDateUtc":"2012-08-20T23:30:00Z","overview":"Pop's Birthday is coming up so the gane decide that they will purchase the Fuzzy dice that Pops wants, but it turns out they can't purchase the dice. They have to win them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12102},{"seriesId":158,"episodeFileId":8485,"seasonNumber":3,"episodeNumber":38,"title":"Sugar Rush","airDate":"2012-08-27","airDateUtc":"2012-08-27T23:30:00Z","overview":"After Pops consumes a double glazed apple crisp, the gang must figure out a way to make Pops crash.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12103},{"seriesId":158,"episodeFileId":8486,"seasonNumber":3,"episodeNumber":39,"title":"Bad Kiss","airDate":"2012-09-02","airDateUtc":"2012-09-02T23:30:00Z","overview":"Mordecai finally tries to kiss Margaret, but Mordecai is left disappointed after it was cut short by his bad breath, and wants to go back in time to re-do it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12104},{"seriesId":158,"episodeFileId":9532,"seasonNumber":4,"episodeNumber":1,"title":"Exit 9B (1)","airDate":"2012-10-01","airDateUtc":"2012-10-01T23:30:00Z","overview":"Mordecai and Rigby must save the park after the rest of the gang are brainwashed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12105},{"seriesId":158,"episodeFileId":9532,"seasonNumber":4,"episodeNumber":2,"title":"Exit 9B (2)","airDate":"2012-10-01","airDateUtc":"2012-10-01T23:40:00Z","overview":"Mordecai and Rigby must save the park after the rest of the gang are brainwashed.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12106},{"seriesId":158,"episodeFileId":14131,"seasonNumber":4,"episodeNumber":3,"title":"Starter Pack","airDate":"2012-10-08","airDateUtc":"2012-10-08T23:30:00Z","overview":"Mordecai and Rigby want to stop Muscle Man from screwing with Thomas.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12107},{"seriesId":158,"episodeFileId":14154,"seasonNumber":4,"episodeNumber":4,"title":"Terror Tales of the Park II","airDate":"2012-10-15","airDateUtc":"2012-10-15T23:30:00Z","overview":"While on their drive to a Halloween party, Mordecai and Rigby tells scary stories to Benson, Pops, Skips, Muscle Man, High Five Ghost and Thomas.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12108},{"seriesId":158,"episodeFileId":14140,"seasonNumber":4,"episodeNumber":5,"title":"Pie Contest","airDate":"2012-10-22","airDateUtc":"2012-10-22T23:30:00Z","overview":"Mordecai and Rigby sign up to be judges in a pie contest.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12109},{"seriesId":158,"episodeFileId":14128,"seasonNumber":4,"episodeNumber":6,"title":"150-Piece Kit","airDate":"2012-10-29","airDateUtc":"2012-10-29T23:30:00Z","overview":"Benson wants to prove that he performed a famous drum solo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12110},{"seriesId":158,"episodeFileId":14146,"seasonNumber":4,"episodeNumber":7,"title":"Bald Spot","airDate":"2012-11-12","airDateUtc":"2012-11-13T00:30:00Z","overview":"Muscle Man starts to go bald.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12111},{"seriesId":158,"episodeFileId":14153,"seasonNumber":4,"episodeNumber":8,"title":"Guy's Night","airDate":"2012-11-19","airDateUtc":"2012-11-20T00:30:00Z","overview":"Mordecai and Rigby have a guy's night.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12112},{"seriesId":158,"episodeFileId":14135,"seasonNumber":4,"episodeNumber":9,"title":"One Pull Up","airDate":"2012-11-26","airDateUtc":"2012-11-27T00:30:00Z","overview":"Rigby has never been known for his upper-body strength, so when the park employees have to go into the doctor and get their physicals, Rigby has trouble doing even one pull up, and so he must find a way to do so or get fired.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12113},{"seriesId":158,"episodeFileId":14152,"seasonNumber":4,"episodeNumber":10,"title":"The Christmas Special","airDate":"2012-12-03","airDateUtc":"2012-12-04T00:30:00Z","overview":"The house is decorated, the guests have arrived and it seems like it's the season to save Christmas when the gang finds themselves faced with the task of destroying a present for Santa that has the potential to destroy them and the holiday.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12114},{"seriesId":158,"episodeFileId":14132,"seasonNumber":4,"episodeNumber":11,"title":"T.G.I. Tuesday","airDate":"2013-01-07","airDateUtc":"2013-01-08T00:30:00Z","overview":"It\u2019s Margaret\u2019s last night of freedom before she transfers to a new college. So Mordecai, Rigby and Eileen decide to surprise her with the biggest party of her life. What could possibly go wrong?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12115},{"seriesId":158,"episodeFileId":14142,"seasonNumber":4,"episodeNumber":12,"title":"Firework Run","airDate":"2013-01-14","airDateUtc":"2013-01-15T00:30:00Z","overview":"After Mordecai, Rigby and Muscle Man squander the fireworks that Benson had purchased for an upcoming event at the park, the three have to go and find more to replace them before Benson blows a fuse and they lose their jobs.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12116},{"seriesId":158,"episodeFileId":14143,"seasonNumber":4,"episodeNumber":13,"title":"The Longest Weekend","airDate":"2013-01-21","airDateUtc":"2013-01-22T00:30:00Z","overview":"Muscle Man tries not to contact Starla for an entire weekend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12117},{"seriesId":158,"episodeFileId":14147,"seasonNumber":4,"episodeNumber":14,"title":"Sandwich of Death","airDate":"2013-01-28","airDateUtc":"2013-01-29T00:30:00Z","overview":"Benson eats a magical, deadly sandwich that Mordecai and Rigby bought, so the trio must travel with the restaurant's manager, Sensei, to find the cure.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12118},{"seriesId":158,"episodeFileId":14151,"seasonNumber":4,"episodeNumber":15,"title":"Ace Balthazar Lives","airDate":"2013-02-04","airDateUtc":"2013-02-05T00:30:00Z","overview":"Mordecai and Rigby want to reunite the band Adrenaline.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12119},{"seriesId":158,"episodeFileId":14145,"seasonNumber":4,"episodeNumber":16,"title":"Do or Diaper","airDate":"2013-02-11","airDateUtc":"2013-02-12T00:30:00Z","overview":"Muscle Man, Rigby and Starla are annoyed about Mordecai's awkward goodbye to Margaret so they try to get Mordecai to tell Margaret how he feels about her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12120},{"seriesId":158,"episodeFileId":14141,"seasonNumber":4,"episodeNumber":17,"title":"Quips","airDate":"2013-02-18","airDateUtc":"2013-02-19T00:30:00Z","overview":"Skips intervenes to stop his cousin's bad jokes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12121},{"seriesId":158,"episodeFileId":14136,"seasonNumber":4,"episodeNumber":18,"title":"Caveman","airDate":"2013-02-25","airDateUtc":"2013-02-26T00:30:00Z","overview":"When Mordecai and Rigby meet a caveman, they decide to put his unique prehistoric physique to good use: chugging cheese! But could this caveman actually turn out to be a Neanderthal nuisance?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12122},{"seriesId":158,"episodeFileId":14144,"seasonNumber":4,"episodeNumber":19,"title":"That's My Television","airDate":"2013-03-04","airDateUtc":"2013-03-05T00:30:00Z","overview":"Mordecai and Rigby help their favorite '80s sitcom star, RGB2, escape from the studio lot and into the mountains so he can avoid starring in a revival of his show.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12123},{"seriesId":158,"episodeFileId":14126,"seasonNumber":4,"episodeNumber":20,"title":"A Bunch of Full Grown Geese","airDate":"2013-03-25","airDateUtc":"2013-03-25T23:30:00Z","overview":"Mordecai and Rigby must rid the park of troublesome geese.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12124},{"seriesId":158,"episodeFileId":14150,"seasonNumber":4,"episodeNumber":21,"title":"Fool Me Twice","airDate":"2013-04-01","airDateUtc":"2013-04-01T23:30:00Z","overview":"Mordecai and Rigby want to win the grand prize on a Japanese game show.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12125},{"seriesId":158,"episodeFileId":14148,"seasonNumber":4,"episodeNumber":22,"title":"Limousine Lunchtime","airDate":"2013-04-08","airDateUtc":"2013-04-08T23:30:00Z","overview":"Rigby stains Mr. Maellard's expensive white limousine with a meatball sub.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12126},{"seriesId":158,"episodeFileId":14139,"seasonNumber":4,"episodeNumber":23,"title":"Picking Up Margaret","airDate":"2013-04-15","airDateUtc":"2013-04-15T23:30:00Z","overview":"Mordecai offers Margaret a ride to the airport.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12127},{"seriesId":158,"episodeFileId":14129,"seasonNumber":4,"episodeNumber":24,"title":"K.I.L.I.T. Radio","airDate":"2013-04-22","airDateUtc":"2013-04-22T23:30:00Z","overview":"Muscle Man writes a song for Starla and decides to play it on his favorite radio station.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12128},{"seriesId":158,"episodeFileId":14130,"seasonNumber":4,"episodeNumber":25,"title":"Carter and Briggs","airDate":"2013-05-06","airDateUtc":"2013-05-06T23:30:00Z","overview":"The guys enter a donut contest in hopes of winning a cameo on their favorite cop show.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12129},{"seriesId":158,"episodeFileId":14138,"seasonNumber":4,"episodeNumber":26,"title":"Skips' Stress","airDate":"2013-05-13","airDateUtc":"2013-05-13T23:30:00Z","overview":"Skips has to lower his stress for health reasons.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12130},{"seriesId":158,"episodeFileId":14137,"seasonNumber":4,"episodeNumber":27,"title":"Cool Cubed","airDate":"2013-05-20","airDateUtc":"2013-05-20T23:30:00Z","overview":"Thomas must save his brain after he chugs a slushy that freezes his brain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12131},{"seriesId":158,"episodeFileId":14149,"seasonNumber":4,"episodeNumber":28,"title":"Trailer Trashed","airDate":"2013-05-27","airDateUtc":"2013-05-27T23:30:00Z","overview":"Muscle Man tries to save his trailer after it fails a health inspection.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12132},{"seriesId":158,"episodeFileId":14134,"seasonNumber":4,"episodeNumber":29,"title":"Meteor Moves","airDate":"2013-06-10","airDateUtc":"2013-06-10T23:30:00Z","overview":"Mordecai plans to kiss Margaret at a meteor shower.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12133},{"seriesId":158,"episodeFileId":9560,"seasonNumber":4,"episodeNumber":30,"title":"Family BBQ","airDate":"2013-06-17","airDateUtc":"2013-06-17T23:30:00Z","overview":"Mordecai tries to shake hands with Margaret's father.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12134},{"seriesId":158,"episodeFileId":14133,"seasonNumber":4,"episodeNumber":31,"title":"The Last LaserDisc Player","airDate":"2013-06-24","airDateUtc":"2013-06-24T23:30:00Z","overview":"The guys need to obtain a LaserDisc player in order to watch the director's cut of a cult classic.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12135},{"seriesId":158,"episodeFileId":9562,"seasonNumber":4,"episodeNumber":32,"title":"Country Club","airDate":"2013-07-01","airDateUtc":"2013-07-01T23:30:00Z","overview":"Mordecai and Rigby must save the golf cart from rich people at a country club.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12136},{"seriesId":158,"episodeFileId":9563,"seasonNumber":4,"episodeNumber":33,"title":"Blind Trust","airDate":"2013-07-15","airDateUtc":"2013-07-15T23:30:00Z","overview":"Benson must trust Mordecai and Rigby to help get him down a mountain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12137},{"seriesId":158,"episodeFileId":9564,"seasonNumber":4,"episodeNumber":34,"title":"World's Best Boss","airDate":"2013-07-15","airDateUtc":"2013-07-15T23:40:00Z","overview":"The park employees want to give Benson a special mug.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":12138},{"seriesId":158,"episodeFileId":9565,"seasonNumber":4,"episodeNumber":35,"title":"Last Meal","airDate":"2013-07-22","airDateUtc":"2013-07-22T23:30:00Z","overview":"Muscle Man wants to binge on his favorite foods before going on a diet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":12139},{"seriesId":158,"episodeFileId":9566,"seasonNumber":4,"episodeNumber":36,"title":"Sleep Fighter","airDate":"2013-07-29","airDateUtc":"2013-07-29T23:30:00Z","overview":"The park employees must help Muscle Man to stop fighting in his sleep.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":12140},{"seriesId":158,"episodeFileId":9567,"seasonNumber":4,"episodeNumber":37,"title":"Party Re-Pete","airDate":"2013-08-05","airDateUtc":"2013-08-05T23:30:00Z","overview":"Mordecai and Rigby must save Benson from an evil party company.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":12141},{"seriesId":158,"episodeFileId":0,"seasonNumber":4,"episodeNumber":38,"title":"Steak Me Amadeus","airDate":"2013-08-12","airDateUtc":"2013-08-12T23:30:00Z","overview":"Mordecai wants to ask Margaret to be his girlfriend.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":12142},{"seriesId":158,"episodeFileId":8551,"seasonNumber":5,"episodeNumber":1,"title":"Laundry Woes","airDate":"2013-09-02","airDateUtc":"2013-09-02T23:30:00Z","overview":"Mordecai and Rigby venture off on a road trip to return Margaret's sweater, eventually getting pulled over in the process.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":12143},{"seriesId":158,"episodeFileId":8552,"seasonNumber":5,"episodeNumber":2,"title":"Silver Dude","airDate":"2013-09-02","airDateUtc":"2013-09-02T23:40:00Z","overview":"The guys try street-performing to earn money for a video game.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":12144},{"seriesId":158,"episodeFileId":8553,"seasonNumber":5,"episodeNumber":3,"title":"Benson's Car","airDate":"2013-09-09","airDateUtc":"2013-09-09T23:30:00Z","overview":"The guys try to fix a broken windshield in Benson's car.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":12145},{"seriesId":158,"episodeFileId":8554,"seasonNumber":5,"episodeNumber":4,"title":"Every Meat Burritos","airDate":"2013-09-16","airDateUtc":"2013-09-16T23:30:00Z","overview":"The guys want to get Every Meat Burritos from the Jimbros' Burritos drive-thru.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":12146},{"seriesId":158,"episodeFileId":8555,"seasonNumber":5,"episodeNumber":5,"title":"Wall Buddy","airDate":"2013-09-23","airDateUtc":"2013-09-23T23:30:00Z","overview":"Mordecai and Rigby must straighten up their room.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":12147},{"seriesId":158,"episodeFileId":8556,"seasonNumber":5,"episodeNumber":6,"title":"A Skips in Time","airDate":"2013-09-30","airDateUtc":"2013-09-30T23:30:00Z","overview":"Mordecai and Rigby help Skips return a teenage Skips to the 1700s.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":12148},{"seriesId":158,"episodeFileId":8557,"seasonNumber":5,"episodeNumber":7,"title":"Survival Skills","airDate":"2013-10-14","airDateUtc":"2013-10-14T23:30:00Z","overview":"Mordecai and Rigby are charged with bringing Benson tortillas.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":12149},{"seriesId":158,"episodeFileId":8558,"seasonNumber":5,"episodeNumber":8,"title":"Terror Tales of The Park III","airDate":"2013-10-21","airDateUtc":"2013-10-21T23:30:00Z","overview":"The park staff make a bet about telling the scariest story at a Halloween party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":12150},{"seriesId":158,"episodeFileId":8559,"seasonNumber":5,"episodeNumber":9,"title":"Tants","airDate":"2013-11-04","airDateUtc":"2013-11-05T00:30:00Z","overview":"Pops surprises Mordecai and Rigby with the gift of tants \u2013 pants which double as tables.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":12151},{"seriesId":158,"episodeFileId":8560,"seasonNumber":5,"episodeNumber":10,"title":"Bank Shot","airDate":"2013-11-11","airDateUtc":"2013-11-12T00:30:00Z","overview":"Rigby has to win a bet by beating a guy at the arcade game, Bank Shot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":12152},{"seriesId":158,"episodeFileId":8561,"seasonNumber":5,"episodeNumber":11,"title":"Power Tower","airDate":"2013-11-18","airDateUtc":"2013-11-19T00:30:00Z","overview":"Muscle Man wants to win the bodybuilding competition at his gym.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":128,"unverifiedSceneNumbering":false,"id":12153},{"seriesId":158,"episodeFileId":8562,"seasonNumber":5,"episodeNumber":12,"title":"The Thanksgiving Special","airDate":"2013-11-25","airDateUtc":"2013-11-26T00:30:00Z","overview":"Mordecai and Rigby accidentally ruin Thanksgiving and must find a way to save it before their families arrive for dinner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":129,"unverifiedSceneNumbering":false,"id":12154},{"seriesId":158,"episodeFileId":8563,"seasonNumber":5,"episodeNumber":13,"title":"The Heart of a Stuntman","airDate":"2013-12-02","airDateUtc":"2013-12-03T00:30:00Z","overview":"The guys want to get a stuntman license for Timmy's birthday party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":131,"unverifiedSceneNumbering":false,"id":12155},{"seriesId":158,"episodeFileId":8564,"seasonNumber":5,"episodeNumber":14,"title":"New Year's Kiss","airDate":"2013-12-31","airDateUtc":"2014-01-01T00:30:00Z","overview":"Rigby has to stop Mordecai from kissing a girl on New Year\u2019s Eve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":132,"unverifiedSceneNumbering":false,"id":12156},{"seriesId":158,"episodeFileId":8565,"seasonNumber":5,"episodeNumber":15,"title":"Dodge This","airDate":"2014-01-13","airDateUtc":"2014-01-14T00:30:00Z","overview":"The gang wants to win a dodge ball tournament.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":133,"unverifiedSceneNumbering":false,"id":12157},{"seriesId":158,"episodeFileId":8566,"seasonNumber":5,"episodeNumber":16,"title":"Portable Toilet","airDate":"2014-01-27","airDateUtc":"2014-01-28T00:30:00Z","overview":"Modecai and Rigby need to escape a portable toilet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":134,"unverifiedSceneNumbering":false,"id":12158},{"seriesId":158,"episodeFileId":8567,"seasonNumber":5,"episodeNumber":17,"title":"The Postcard","airDate":"2014-02-10","airDateUtc":"2014-02-11T00:30:00Z","overview":"Hi-Five Ghost hopes to reunite with a lady from his past after receiving a long-awaited postcard from her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":135,"unverifiedSceneNumbering":false,"id":12159},{"seriesId":158,"episodeFileId":8568,"seasonNumber":5,"episodeNumber":18,"title":"Rigby in the Sky With Burrito","airDate":"2014-02-24","airDateUtc":"2014-02-25T00:30:00Z","overview":"Before his high school reunion, Rigby hopes to accomplish something he said he would do.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":136,"unverifiedSceneNumbering":false,"id":12160},{"seriesId":158,"episodeFileId":8569,"seasonNumber":5,"episodeNumber":19,"title":"Journey to the Bottom of the Crash Pit","airDate":"2014-03-03","airDateUtc":"2014-03-04T00:30:00Z","overview":"The guys must venture into the bottom of the crash pit in order to find their video camera.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":137,"unverifiedSceneNumbering":false,"id":12161},{"seriesId":158,"episodeFileId":8570,"seasonNumber":5,"episodeNumber":20,"title":"Saving Time","airDate":"2014-03-10","airDateUtc":"2014-03-10T23:30:00Z","overview":"Thanks to Daylight Savings Time, Mordecai and Rigby must reset all the clocks in the park.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":138,"unverifiedSceneNumbering":false,"id":12162},{"seriesId":158,"episodeFileId":8571,"seasonNumber":5,"episodeNumber":21,"title":"Guitar of Rock","airDate":"2014-03-17","airDateUtc":"2014-03-17T23:30:00Z","overview":"An electric guitar signed by a rock star must be replaced, so Mordecai, Rigby and Benson must find a replacement or Benson will be fired.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":139,"unverifiedSceneNumbering":false,"id":12163},{"seriesId":158,"episodeFileId":8572,"seasonNumber":5,"episodeNumber":22,"title":"Skips' Story","airDate":"2014-04-14","airDateUtc":"2014-04-14T23:30:00Z","overview":"Skips tells Mordecai and Rigby the story of how he became immortal.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12164},{"seriesId":158,"episodeFileId":8573,"seasonNumber":5,"episodeNumber":23,"title":"Return of Mordecai and the Rigbys","airDate":"2014-04-21","airDateUtc":"2014-04-21T23:30:00Z","overview":"Mordecai and Rigby compete in a battle of the bands to win an air conditioner.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12165},{"seriesId":158,"episodeFileId":8574,"seasonNumber":5,"episodeNumber":24,"title":"Bad Portrait","airDate":"2014-04-28","airDateUtc":"2014-04-28T23:30:00Z","overview":"When the guys damage an important painting of Benson, they must find a way to repair it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12166},{"seriesId":158,"episodeFileId":8575,"seasonNumber":5,"episodeNumber":25,"title":"Video 101","airDate":"2014-05-05","airDateUtc":"2014-05-05T23:30:00Z","overview":"Eileen has to make a music video for her introductory film class, but when Mordecai and Rigby volunteer to help her, she gets a little more than she bargained for.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12167},{"seriesId":158,"episodeFileId":8576,"seasonNumber":5,"episodeNumber":26,"title":"I Like You Hi","airDate":"2014-05-12","airDateUtc":"2014-05-12T23:30:00Z","overview":"Mordecai is a victim of auto-correct when he sends CJ a message.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12168},{"seriesId":158,"episodeFileId":8577,"seasonNumber":5,"episodeNumber":27,"title":"Play Date","airDate":"2014-06-05","airDateUtc":"2014-06-05T23:30:00Z","overview":"Mordecai has a date with C.J., but he unfortunately also has to babysit Death's 300-year-old son, Thomas (from \"Dead at Eight\").","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12169},{"seriesId":158,"episodeFileId":8578,"seasonNumber":5,"episodeNumber":28,"title":"Expert or Liar","airDate":"2014-06-12","airDateUtc":"2014-06-12T23:30:00Z","overview":"Rigby wants to redeem himself by winning on \"Expert or Liar.\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12170},{"seriesId":158,"episodeFileId":8579,"seasonNumber":5,"episodeNumber":29,"title":"Catching the Wave","airDate":"2014-06-19","airDateUtc":"2014-06-19T23:30:00Z","overview":"Pops wants to learn how to surf in order to catch a wave, but in the Surf School he meets other professional surfers who think he is not worthy to be a surfer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12171},{"seriesId":158,"episodeFileId":8580,"seasonNumber":5,"episodeNumber":30,"title":"Gold Watch","airDate":"2014-06-26","airDateUtc":"2014-06-26T23:30:00Z","overview":"Benson has to get to work on time so he can win a gold watch.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12172},{"seriesId":158,"episodeFileId":8581,"seasonNumber":5,"episodeNumber":31,"title":"Paint Job","airDate":"2014-07-03","airDateUtc":"2014-07-03T23:30:00Z","overview":"Mordecai and Rigby have to paint a house.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12173},{"seriesId":158,"episodeFileId":8582,"seasonNumber":5,"episodeNumber":32,"title":"Take the Cake","airDate":"2014-07-10","airDateUtc":"2014-07-10T23:30:00Z","overview":"Mordecai and Rigby have to deliver a cake to Maellard's birthday party.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12174},{"seriesId":158,"episodeFileId":8583,"seasonNumber":5,"episodeNumber":33,"title":"Skips in the Saddle","airDate":"2014-07-17","airDateUtc":"2014-07-17T23:30:00Z","overview":"Skips tries to get back into the dating scene, resulting in Mordecai and Rigby making an account for him on a dating website. His account gets so popular, he ends up participating in a dating game show.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12175},{"seriesId":158,"episodeFileId":8584,"seasonNumber":5,"episodeNumber":34,"title":"Thomas Fights Back","airDate":"2014-07-24","airDateUtc":"2014-07-24T23:30:00Z","overview":"Thomas wants to get the park founder's statue back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12176},{"seriesId":158,"episodeFileId":8585,"seasonNumber":5,"episodeNumber":35,"title":"Bachelor Party! Zingo!","airDate":"2014-07-31","airDateUtc":"2014-07-31T23:30:00Z","overview":"Skips must plan the perfect bachelor party for his cousin, Quips.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12177},{"seriesId":158,"episodeFileId":8586,"seasonNumber":5,"episodeNumber":36,"title":"Tent Trouble","airDate":"2014-08-07","airDateUtc":"2014-08-07T23:30:00Z","overview":"Mordecai and Rigby accidentally destroy CJ's brand-new tent.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12178},{"seriesId":158,"episodeFileId":8587,"seasonNumber":5,"episodeNumber":37,"title":"Real Date","airDate":"2014-08-14","airDateUtc":"2014-08-14T23:30:00Z","overview":"Mordecai and CJ want to go on a romantic date.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12179},{"seriesId":158,"episodeFileId":14676,"seasonNumber":6,"episodeNumber":1,"title":"Maxin' and Relaxin'","airDate":"2014-10-09","airDateUtc":"2014-10-09T23:30:00Z","overview":"Mordecai wants to get a mix tape from his parents' house.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12180},{"seriesId":158,"episodeFileId":14677,"seasonNumber":6,"episodeNumber":2,"title":"New Bro on Campus","airDate":"2014-10-16","airDateUtc":"2014-10-16T23:30:00Z","overview":"Muscle Man goes to high school and tries to prove himself as being cooler than the new student on campus.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12181},{"seriesId":158,"episodeFileId":14678,"seasonNumber":6,"episodeNumber":3,"title":"Daddy Issues","airDate":"2014-10-23","airDateUtc":"2014-10-23T23:30:00Z","overview":"CJ is eager to win a \"Cut the Cheezer's\" card while at a mini-golf tournament, to try and defeat her father, Carl Putter, to show him that she is just as good as he is at mini-golf.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12182},{"seriesId":158,"episodeFileId":14679,"seasonNumber":6,"episodeNumber":4,"title":"Terror Tales of the Park IV","airDate":"2014-10-29","airDateUtc":"2014-10-29T23:30:00Z","overview":"The park workers try to keep Muscle Man awake by telling him scary stories in the car while driving to visit his mother.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12183},{"seriesId":158,"episodeFileId":14681,"seasonNumber":6,"episodeNumber":5,"title":"The End of Muscle Man","airDate":"2014-10-30","airDateUtc":"2014-10-30T23:30:00Z","overview":"Muscle Man wants help from the gang to finish his bucket list.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12184},{"seriesId":158,"episodeFileId":14682,"seasonNumber":6,"episodeNumber":6,"title":"Lift With Your Back","airDate":"2014-11-06","airDateUtc":"2014-11-07T00:30:00Z","overview":"Rigby tries to prove he can earn a paycheck.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12185},{"seriesId":158,"episodeFileId":14683,"seasonNumber":6,"episodeNumber":7,"title":"Eileen Flat Screen","airDate":"2014-11-13","airDateUtc":"2014-11-14T00:30:00Z","overview":"After Eileen wins a new TV at the City College dance competition, Rigby offers to set up Eileen's flat screen television for her.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12186},{"seriesId":158,"episodeFileId":14684,"seasonNumber":6,"episodeNumber":8,"title":"The Real Thomas: An Intern Special","airDate":"2014-11-20","airDateUtc":"2014-11-21T00:30:00Z","overview":"Rigby grows suspicious of Thomas' activity and sets out to stop him.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12187},{"seriesId":158,"episodeFileId":14685,"seasonNumber":6,"episodeNumber":9,"title":"White Elephant Gift Exchange","airDate":"2014-12-04","airDateUtc":"2014-12-05T00:30:00Z","overview":"The gang gets back at Muscle Man after he gives them bad gifts.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12188},{"seriesId":158,"episodeFileId":14686,"seasonNumber":6,"episodeNumber":10,"title":"Merry Christmas Mordecai","airDate":"2014-12-04","airDateUtc":"2014-12-05T00:40:00Z","overview":"Mordecai has to make it through a Christmas party at Eileen's house with CJ without messing everything up when he finds out Margaret is invited.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12189},{"seriesId":158,"episodeFileId":14687,"seasonNumber":6,"episodeNumber":11,"title":"Sad Sax","airDate":"2015-01-08","airDateUtc":"2015-01-09T00:30:00Z","overview":"While lamenting losing CJ to a kiss with Margaret, Mordecai turns to the Sad Sax Guy in the park to help him get CJ back.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12190},{"seriesId":158,"episodeFileId":14688,"seasonNumber":6,"episodeNumber":12,"title":"Park Managers Lunch","airDate":"2015-01-15","airDateUtc":"2015-01-16T00:30:00Z","overview":"Benson is invited to a luncheon with other park managers, but the other park workers think it is all a prank set up by the prankster manager Jean.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12191},{"seriesId":158,"episodeFileId":14689,"seasonNumber":6,"episodeNumber":13,"title":"Mordecai and Rigby Down Under","airDate":"2015-01-22","airDateUtc":"2015-01-23T00:30:00Z","overview":"After staying up all night, Mordecai and Rigby try to sneak a nap in a crate at the park, only to wake up in Australia.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12192},{"seriesId":158,"episodeFileId":14690,"seasonNumber":6,"episodeNumber":14,"title":"Married and Broke","airDate":"2015-01-29","airDateUtc":"2015-01-30T00:30:00Z","overview":"Muscle Man and Starla hope game show winnings will pay for their wedding","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12193},{"seriesId":158,"episodeFileId":14691,"seasonNumber":6,"episodeNumber":15,"title":"I See Turtles","airDate":"2015-02-05","airDateUtc":"2015-02-06T00:30:00Z","overview":"Eileen and the others want to watch baby sea turtles hatch and descend into the ocean.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12194},{"seriesId":158,"episodeFileId":14692,"seasonNumber":6,"episodeNumber":16,"title":"Format Wars II","airDate":"2015-02-12","airDateUtc":"2015-02-13T00:30:00Z","overview":"The Discmasters must put an end to the Format Wars.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12195},{"seriesId":158,"episodeFileId":14693,"seasonNumber":6,"episodeNumber":17,"title":"Happy Birthday Song Contest","airDate":"2015-02-19","airDateUtc":"2015-02-20T00:30:00Z","overview":"Mordecai and Rigby are determined to win a happy birthday song contest.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12196},{"seriesId":158,"episodeFileId":14694,"seasonNumber":6,"episodeNumber":18,"title":"Benson's Suit","airDate":"2015-02-26","airDateUtc":"2015-02-27T00:30:00Z","overview":"Benson keeps a suit he finds in the lost and found, and finally gets the respect from the others he wanted. Unfortunately, an evil man is hunting down that suit.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12197},{"seriesId":158,"episodeFileId":14695,"seasonNumber":6,"episodeNumber":19,"title":"Gamers Never Say Die","airDate":"2015-03-05","airDateUtc":"2015-03-06T00:30:00Z","overview":"Mordecai and Rigby set out to find a rare video game patch.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12198},{"seriesId":158,"episodeFileId":14696,"seasonNumber":6,"episodeNumber":20,"title":"1000th Chopper Flight Party","airDate":"2015-03-12","airDateUtc":"2015-03-12T23:30:00Z","overview":"Mordecai sets out to share a piece of cake with C.J.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12199},{"seriesId":158,"episodeFileId":14697,"seasonNumber":6,"episodeNumber":21,"title":"Party Horse","airDate":"2015-03-19","airDateUtc":"2015-03-19T23:30:00Z","overview":"The guys are determined to help Party Horse pass his U.S. history test.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12200},{"seriesId":158,"episodeFileId":14698,"seasonNumber":6,"episodeNumber":22,"title":"Men in Uniform","airDate":"2015-03-26","airDateUtc":"2015-03-26T23:30:00Z","overview":"The guys want to keep the park open for business.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12201},{"seriesId":158,"episodeFileId":14699,"seasonNumber":6,"episodeNumber":23,"title":"Garage Door","airDate":"2015-04-02","airDateUtc":"2015-04-02T23:30:00Z","overview":"Mordecai and Rigby have to get a new garage door for the house, but get lost in a massive warehouse store trying to get it.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12202},{"seriesId":158,"episodeFileId":14700,"seasonNumber":6,"episodeNumber":24,"title":"Brilliant Century Duck Crisis Special","airDate":"2015-04-09","airDateUtc":"2015-04-09T23:30:00Z","overview":"Playco is determined to get Mordecai, Rigby, and the baby ducks to sign a toy contract that they bring in the geese to beat them into signing.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12203},{"seriesId":158,"episodeFileId":14701,"seasonNumber":6,"episodeNumber":25,"title":"Not Great Double Date","airDate":"2015-06-22","airDateUtc":"2015-06-22T23:30:00Z","overview":"CJ asks out Margaret out on a double date with Mordecai and her boyfriend, but Margaret lied about having one.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12204},{"seriesId":158,"episodeFileId":14702,"seasonNumber":6,"episodeNumber":26,"title":"Death Kwon Do-Livery","airDate":"2015-06-23","airDateUtc":"2015-06-23T23:30:00Z","overview":"The Death Kwon-Do master is in need of a new stomach, so Mordecai and Rigby head to the Death Kwon-Do Hospital to receive one.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":27,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12205},{"seriesId":158,"episodeFileId":14703,"seasonNumber":6,"episodeNumber":27,"title":"Lunch Break","airDate":"2015-06-24","airDateUtc":"2015-06-24T23:30:00Z","overview":"Mordecai and Rigby want to finish a ten-foot sub.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":28,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12206},{"seriesId":158,"episodeFileId":0,"seasonNumber":6,"episodeNumber":28,"title":"Dumped at the Altar","airDate":"2015-06-25","airDateUtc":"2015-06-25T23:30:00Z","overview":"The gang helps Muscle Man get married, but problems arise that involve Mordecai and CJ.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":29,"sceneSeasonNumber":6,"unverifiedSceneNumbering":false,"id":12207},{"seriesId":158,"episodeFileId":9474,"seasonNumber":7,"episodeNumber":1,"title":"Dumptown USA","airDate":"2015-06-26","airDateUtc":"2015-06-26T23:30:00Z","overview":"Benson is going to fire Mordecai if Rigby can\u2019t bring him back from a bizarre land of dudes also known as Dumptown USA.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":1,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12208},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"USA! USA!","airDate":"2015-07-06","airDateUtc":"2015-07-06T23:30:00Z","overview":"Mordecai and Rigby chant USA around the world.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12023},{"seriesId":158,"episodeFileId":9475,"seasonNumber":7,"episodeNumber":2,"title":"The Parkie Awards","airDate":"2015-08-06","airDateUtc":"2015-08-06T23:30:00Z","overview":"When Benson does not win an award for Park Manager of the Year, the others try to make him feel better.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":2,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12209},{"seriesId":158,"episodeFileId":9476,"seasonNumber":7,"episodeNumber":3,"title":"The Lunch Club","airDate":"2015-08-13","airDateUtc":"2015-08-13T23:30:00Z","overview":"When Rigby ruins Maellard's fancy lunch, either he or Benson must write a letter of resignation.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":3,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12210},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Regular Show: The Movie","airDate":"2015-08-14","airDateUtc":"2015-08-14T23:30:00Z","overview":"After a high school lab experiment goes horribly wrong, and accidentally creating a \"timenado\" the universe is on the verge of being destroyed and it\u2019s up to the slackers Mordecai and Rigby to go back in time and make the things right. Their mission: save their friendship and save the universe from themselves, or they will be fired.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12024},{"seriesId":158,"episodeFileId":9477,"seasonNumber":7,"episodeNumber":4,"title":"Local News Legend","airDate":"2015-08-20","airDateUtc":"2015-08-20T23:30:00Z","overview":"Margaret wants to host a weekly segment on the local nightly news.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":4,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12211},{"seriesId":158,"episodeFileId":9478,"seasonNumber":7,"episodeNumber":5,"title":"The Dome Experiment","airDate":"2015-08-27","airDateUtc":"2015-08-27T23:30:00Z","overview":"Benson is determined to prove he was right about the date of the \"Dome Experiment\".","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":5,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12212},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Fun Run","airDate":"2015-09-01","airDateUtc":"2015-09-01T23:30:00Z","overview":"Pops goes on a fun run across the country.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":12025},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"OOOHH!!!","airDate":"2015-09-01","airDateUtc":"2015-09-01T23:40:00Z","overview":"Mordecai and Rigby tour the world doing their \"OOOHH!!!\" celebration.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17124},{"seriesId":158,"episodeFileId":9479,"seasonNumber":7,"episodeNumber":6,"title":"Birthday Gift","airDate":"2015-09-03","airDateUtc":"2015-09-03T23:30:00Z","overview":"Mordecai is upset at Rigby when he doesn't bring a present to his birthday party.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":6,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12213},{"seriesId":158,"episodeFileId":9480,"seasonNumber":7,"episodeNumber":7,"title":"Cat Videos","airDate":"2015-09-10","airDateUtc":"2015-09-10T23:30:00Z","overview":"Benson get addicted to cat videos and disappears, and Mordecai and Rigby need to save him.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":7,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12214},{"seriesId":158,"episodeFileId":9481,"seasonNumber":7,"episodeNumber":8,"title":"Struck by Lightning","airDate":"2015-09-17","airDateUtc":"2015-09-17T23:30:00Z","overview":"Muscle Man and High Five Ghost get struck by lightning, losing their memories of each other.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":8,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12215},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Break Time","airDate":"2015-10-08","airDateUtc":"2015-10-08T23:30:00Z","overview":"Mordecai, Rigby, Muscle Man, and Hi-Five Ghost ask Benson for a break, and he responds by giving them a break.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17134},{"seriesId":158,"episodeFileId":9482,"seasonNumber":7,"episodeNumber":9,"title":"Terror Tales of the Park V","airDate":"2015-10-29","airDateUtc":"2015-10-29T23:30:00Z","overview":"Benson tries to spice up the park's annual Halloween party by renting a wish making machine.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":9,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12216},{"seriesId":158,"episodeFileId":9483,"seasonNumber":7,"episodeNumber":10,"title":"Return of the Party Horse","airDate":"2015-11-09","airDateUtc":"2015-11-10T00:30:00Z","overview":"Mordecai and Rigby want to help Party Horse get back together with his girlfriend.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":11,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12217},{"seriesId":158,"episodeFileId":9484,"seasonNumber":7,"episodeNumber":11,"title":"Sleep Cycle","airDate":"2015-11-10","airDateUtc":"2015-11-11T00:30:00Z","overview":"Mordecai and Rigby watch movies for two whole nights, throwing off their sleep cycles.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":12,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12218},{"seriesId":158,"episodeFileId":9485,"seasonNumber":7,"episodeNumber":12,"title":"Just Friends","airDate":"2015-11-11","airDateUtc":"2015-11-12T00:30:00Z","overview":"Rigby and Eileen get called away to Don's black belt ceremony forcing Mordecai and Margaret to hang out alone -- and Mordecai to confront his feelings for Margaret now that he and CJ are no longer together and Rigby convinced Mordecai to enjoy being single.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":13,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12219},{"seriesId":158,"episodeFileId":9486,"seasonNumber":7,"episodeNumber":13,"title":"Benson's Pig","airDate":"2015-11-12","airDateUtc":"2015-11-13T00:30:00Z","overview":"Benson decides to stop becoming a cat person and becomes a pig person, so he gets a pig, but asks Mordecai and Rigby to look after it.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":14,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12220},{"seriesId":158,"episodeFileId":9487,"seasonNumber":7,"episodeNumber":14,"title":"The Eileen Plan","airDate":"2015-11-13","airDateUtc":"2015-11-14T00:30:00Z","overview":"Rigby goes back to High School.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":15,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12221},{"seriesId":158,"episodeFileId":9488,"seasonNumber":7,"episodeNumber":15,"title":"Hello China","airDate":"2015-11-30","airDateUtc":"2015-12-01T00:30:00Z","overview":"In order to get high school credits, Rigby has to pass a foreign language class taught by Benson in China.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":16,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12222},{"seriesId":158,"episodeFileId":9489,"seasonNumber":7,"episodeNumber":16,"title":"Crazy Fake Plan","airDate":"2015-12-01","airDateUtc":"2015-12-02T00:30:00Z","overview":"Rigby wants to surprise Eileen for the first time.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":17,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12223},{"seriesId":158,"episodeFileId":9490,"seasonNumber":7,"episodeNumber":17,"title":"Win That Prize","airDate":"2015-12-02","airDateUtc":"2015-12-03T00:30:00Z","overview":"Pops and the gang try to win a game show.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":18,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12224},{"seriesId":158,"episodeFileId":9491,"seasonNumber":7,"episodeNumber":18,"title":"Snow Tubing","airDate":"2015-12-03","airDateUtc":"2015-12-04T00:30:00Z","overview":"Eileen, Rigby, Mordecai and Margaret go on a snow tubing trip, while Eileen tries to conquer her fear of snow tubing.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":19,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12225},{"seriesId":158,"episodeFileId":9492,"seasonNumber":7,"episodeNumber":19,"title":"Chili Cook-Off","airDate":"2016-03-05","airDateUtc":"2016-03-06T00:30:00Z","overview":"Benson enters the park managers' chili cook-off to beat Jean.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":20,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12226},{"seriesId":158,"episodeFileId":9493,"seasonNumber":7,"episodeNumber":20,"title":"Donut Factory Holiday","airDate":"2016-03-12","airDateUtc":"2016-03-13T00:30:00Z","overview":"The guys try to return a movie before they get hit with a late fee.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":21,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12227},{"seriesId":158,"episodeFileId":9494,"seasonNumber":7,"episodeNumber":21,"title":"Gymblonski","airDate":"2016-03-19","airDateUtc":"2016-03-19T23:30:00Z","overview":"Rigby's high school nemesis returns and threatens to ruin his chances at passing gym class and graduating high school.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":22,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12228},{"seriesId":158,"episodeFileId":9495,"seasonNumber":7,"episodeNumber":22,"title":"Guys Night 2","airDate":"2016-03-26","airDateUtc":"2016-03-26T23:30:00Z","overview":"Thomas reunites with the Park Crew for one last Guys Night together.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":23,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12229},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Ninja Shoes","airDate":"2016-03-26","airDateUtc":"2016-03-26T23:30:00Z","overview":"Mordecai and Rigby try to sneak out of the house wearing Ninja Shoes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17126},{"seriesId":158,"episodeFileId":9496,"seasonNumber":7,"episodeNumber":23,"title":"Gary's Synthesizer","airDate":"2016-04-02","airDateUtc":"2016-04-02T23:30:00Z","overview":"When Mordecai and Rigby mess around with the cables in an old synthesizer, Gary disappears, and the guys now have to find a way to bring him back.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":53,"sceneEpisodeNumber":24,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12230},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Coming Soon","airDate":"2016-04-02","airDateUtc":"2016-04-02T23:30:00Z","overview":"Mordecai and Rigby mimic the Movie Trailer voices.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17125},{"seriesId":158,"episodeFileId":9497,"seasonNumber":7,"episodeNumber":24,"title":"California King","airDate":"2016-04-09","airDateUtc":"2016-04-09T23:30:00Z","overview":"After Rigby wins a king-size bed, he gets rid of his trampoline. But when he realises that he can't sleep without his trampoline, he has to go through an elaborate junkyard to find it.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":54,"sceneEpisodeNumber":25,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12231},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Sick Day","airDate":"2016-04-09","airDateUtc":"2016-04-09T23:30:00Z","overview":"Mordecai and Rigby decide to slide into a sick day.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17128},{"seriesId":158,"episodeFileId":9498,"seasonNumber":7,"episodeNumber":25,"title":"Cube Bros","airDate":"2016-04-16","airDateUtc":"2016-04-16T23:30:00Z","overview":"Muscle Man gets a job in a corporate office.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":55,"sceneEpisodeNumber":26,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12232},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Pizza Pouch Drop","airDate":"2016-04-16","airDateUtc":"2016-04-16T23:30:00Z","overview":"Mordecai and Rigby strive to make the ultimate Pizza Pouch.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17127},{"seriesId":158,"episodeFileId":9499,"seasonNumber":7,"episodeNumber":26,"title":"Maellard's Package","airDate":"2016-04-23","airDateUtc":"2016-04-23T23:30:00Z","overview":"Mordecai and Rigby have to wait at Maellard's mansion for a package as Mordecai contemplates whether he still wants to work at the park.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":56,"sceneEpisodeNumber":27,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12233},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"The 1973 Tetherball Championship Trophy","airDate":"2016-04-23","airDateUtc":"2016-04-23T23:30:00Z","overview":"In a spoof of Wes Anderson films, Mordecai and Rigby try to win a vintage tetherball championship trophy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17133},{"seriesId":158,"episodeFileId":9500,"seasonNumber":7,"episodeNumber":27,"title":"Rigby Goes to the Prom","airDate":"2016-05-05","airDateUtc":"2016-05-05T23:30:00Z","overview":"Rigby must sneak his dad's car out of the garage and return it unnoticed in order to take Eileen to the prom.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":57,"sceneEpisodeNumber":28,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12234},{"seriesId":158,"episodeFileId":9501,"seasonNumber":7,"episodeNumber":28,"title":"The Button","airDate":"2016-05-12","airDateUtc":"2016-05-12T23:30:00Z","overview":"The guys have to protect a large red button from being pushed.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":58,"sceneEpisodeNumber":29,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12235},{"seriesId":158,"episodeFileId":9502,"seasonNumber":7,"episodeNumber":29,"title":"Favorite Shirt","airDate":"2016-05-19","airDateUtc":"2016-05-19T23:30:00Z","overview":"The guys accidentally destroyed Muscle Man's favorite shirt.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":59,"sceneEpisodeNumber":30,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12236},{"seriesId":158,"episodeFileId":9503,"seasonNumber":7,"episodeNumber":30,"title":"Marvolo the Wizard","airDate":"2016-05-26","airDateUtc":"2016-05-26T23:30:00Z","overview":"Pops thinks that he's a wizard trapped in medieval times, and he wants to go back home.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":60,"sceneEpisodeNumber":31,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12237},{"seriesId":158,"episodeFileId":9504,"seasonNumber":7,"episodeNumber":31,"title":"Pops' Favorite Planet","airDate":"2016-06-02","airDateUtc":"2016-06-02T23:30:00Z","overview":"Pops wants to see his favorite planet when the guys sleep outside.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":61,"sceneEpisodeNumber":32,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12238},{"seriesId":158,"episodeFileId":9505,"seasonNumber":7,"episodeNumber":32,"title":"Pam I Am","airDate":"2016-06-02","airDateUtc":"2016-06-02T23:40:00Z","overview":"Benson has a crush on one of the Dome scientists, and he wants to sneak her a bucket of chicken wings so that he can ask her out.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":62,"sceneEpisodeNumber":33,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12239},{"seriesId":158,"episodeFileId":9506,"seasonNumber":7,"episodeNumber":33,"title":"Lame Lockdown","airDate":"2016-06-09","airDateUtc":"2016-06-09T23:30:00Z","overview":"The head scientist puts Mordecai and Rigby on a 24-hour lockdown inside the Dome, but they want to sneak out and see one of their favorite bands\u200b.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":63,"sceneEpisodeNumber":34,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12240},{"seriesId":158,"episodeFileId":9507,"seasonNumber":7,"episodeNumber":34,"title":"VIP Members Only","airDate":"2016-06-16","airDateUtc":"2016-06-16T23:30:00Z","overview":"Mordecai, Rigby, Muscle Man, and Hi Five Ghost want to be VIP members at Cheezer's.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":64,"sceneEpisodeNumber":35,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12241},{"seriesId":158,"episodeFileId":9508,"seasonNumber":7,"episodeNumber":35,"title":"Deez Keys","airDate":"2016-06-23","airDateUtc":"2016-06-23T23:30:00Z","overview":"A search for Benson's car keys leads the guys to make a deal with scientists.","hasFile":true,"monitored":true,"sceneAbsoluteEpisodeNumber":65,"sceneEpisodeNumber":36,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12242},{"seriesId":158,"episodeFileId":0,"seasonNumber":7,"episodeNumber":36,"title":"Rigby's Graduation Day Special","airDate":"2016-06-30","airDateUtc":"2016-06-30T23:30:00Z","overview":"Rigby must write a speech for his high school graduation that will be broadcasted on national TV.","hasFile":false,"monitored":true,"sceneAbsoluteEpisodeNumber":66,"sceneEpisodeNumber":37,"sceneSeasonNumber":7,"unverifiedSceneNumbering":false,"id":12243},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"2001: A Nap Odyssey","airDate":"2016-09-23","airDateUtc":"2016-09-23T23:30:00Z","overview":"The guys take a nap in zero gravity.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17129},{"seriesId":158,"episodeFileId":9449,"seasonNumber":8,"episodeNumber":1,"title":"One Space Day at a Time","airDate":"2016-09-26","airDateUtc":"2016-09-26T23:30:00Z","overview":"After the events of \"Rigby's Graduation Day Special\" the Park crew and Eileen must formulate a plan to survive in space.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12244},{"seriesId":158,"episodeFileId":9450,"seasonNumber":8,"episodeNumber":2,"title":"Cool Brobots","airDate":"2016-09-26","airDateUtc":"2016-09-26T23:40:00Z","overview":"The crew have an encounter with \"brobots\" whose purpose is to serve others, but Mordecai and Rigby are suspicious of them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12245},{"seriesId":158,"episodeFileId":9451,"seasonNumber":8,"episodeNumber":3,"title":"Welcome to Space","airDate":"2016-09-27","airDateUtc":"2016-09-27T23:30:00Z","overview":"After learning their true mission in space, the crew is excited to make history, but Benson still wants to return home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12246},{"seriesId":158,"episodeFileId":9452,"seasonNumber":8,"episodeNumber":4,"title":"Space Creds","airDate":"2016-09-27","airDateUtc":"2016-09-27T23:40:00Z","overview":"Mordecai and Rigby volunteer to rescue a scientist's husband in exchange to earn space creds so that they can buy hover shoes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12247},{"seriesId":158,"episodeFileId":9453,"seasonNumber":8,"episodeNumber":5,"title":"Lost and Found","airDate":"2016-09-28","airDateUtc":"2016-09-28T23:30:00Z","overview":"Chance Sureshot loses his wallet and is enclosed in a robot's bubble until he can pay for his food. In order to free him, Mordecai, Rigby, Toothpick Sally and Recap Robot must travel to the Mantis Planet to get it back.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12248},{"seriesId":158,"episodeFileId":9454,"seasonNumber":8,"episodeNumber":6,"title":"Ugly Moons","airDate":"2016-09-29","airDateUtc":"2016-09-29T23:30:00Z","overview":"Muscle Man sets out to prank someone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12249},{"seriesId":158,"episodeFileId":9455,"seasonNumber":8,"episodeNumber":7,"title":"The Dream Warrior","airDate":"2016-09-30","airDateUtc":"2016-09-30T23:30:00Z","overview":"The guys try to help Pops overcome his nightmares.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12250},{"seriesId":158,"episodeFileId":9456,"seasonNumber":8,"episodeNumber":8,"title":"The Brain of Evil","airDate":"2016-10-03","airDateUtc":"2016-10-03T23:30:00Z","overview":"Mordecai and Rigby must stop an evil brain after Rigby releases it from a cage.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12251},{"seriesId":158,"episodeFileId":9457,"seasonNumber":8,"episodeNumber":9,"title":"Fries Night","airDate":"2016-10-04","airDateUtc":"2016-10-04T23:30:00Z","overview":"Benson hunts for some fries.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12252},{"seriesId":158,"episodeFileId":9458,"seasonNumber":8,"episodeNumber":10,"title":"Spacey McSpaceTree","airDate":"2016-10-05","airDateUtc":"2016-10-05T23:30:00Z","overview":"Rigby must pass the Space Tree Safety Test.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12253},{"seriesId":158,"episodeFileId":9459,"seasonNumber":8,"episodeNumber":11,"title":"Can You Ear Me Now?","airDate":"2016-10-06","airDateUtc":"2016-10-06T23:30:00Z","overview":"Mordecai and Rigby are on trial for an incident that happened downtown.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12254},{"seriesId":158,"episodeFileId":9460,"seasonNumber":8,"episodeNumber":12,"title":"Stuck In an Elevator","airDate":"2016-10-07","airDateUtc":"2016-10-07T23:30:00Z","overview":"Mordecai and Rigby get pumped to see a rock concert on the spaceship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12255},{"seriesId":158,"episodeFileId":9461,"seasonNumber":8,"episodeNumber":13,"title":"The Space Race","airDate":"2016-10-10","airDateUtc":"2016-10-10T23:30:00Z","overview":"The guys race through space.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12256},{"seriesId":158,"episodeFileId":9462,"seasonNumber":8,"episodeNumber":14,"title":"Operation: Hear No Evil","airDate":"2016-10-11","airDateUtc":"2016-10-11T23:30:00Z","overview":"Mordecai and Rigby try to avoid spoilers about their favourite TV show.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12257},{"seriesId":158,"episodeFileId":9463,"seasonNumber":8,"episodeNumber":15,"title":"Space Escape","airDate":"2016-10-12","airDateUtc":"2016-10-12T23:30:00Z","overview":"The guys must escape a bad guy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12258},{"seriesId":158,"episodeFileId":9464,"seasonNumber":8,"episodeNumber":16,"title":"New Beds","airDate":"2016-10-13","airDateUtc":"2016-10-13T23:30:00Z","overview":"The guys get new beds.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12259},{"seriesId":158,"episodeFileId":9465,"seasonNumber":8,"episodeNumber":17,"title":"Mordeby and Rigbecai","airDate":"2016-10-14","airDateUtc":"2016-10-14T23:30:00Z","overview":"The guys screw around with a teleportation machine.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12260},{"seriesId":158,"episodeFileId":9466,"seasonNumber":8,"episodeNumber":18,"title":"Alpha Dome","airDate":"2016-10-20","airDateUtc":"2016-10-20T23:30:00Z","overview":"The guys engage in confrontations.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12261},{"seriesId":158,"episodeFileId":9467,"seasonNumber":8,"episodeNumber":19,"title":"Terror Tales of the Park VI","airDate":"2016-10-27","airDateUtc":"2016-10-27T23:30:00Z","overview":"The gang tells scary stories with a science fiction twist.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12262},{"seriesId":158,"episodeFileId":9467,"seasonNumber":8,"episodeNumber":20,"title":"The Ice Tape","airDate":"2016-11-03","airDateUtc":"2016-11-03T23:30:00Z","overview":"The guys have to play a special VHS tape.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12263},{"seriesId":158,"episodeFileId":9468,"seasonNumber":8,"episodeNumber":21,"title":"The Key To The Universe","airDate":"2016-11-10","airDateUtc":"2016-11-11T00:30:00Z","overview":"The guys have a super important lesson.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12264},{"seriesId":158,"episodeFileId":9469,"seasonNumber":8,"episodeNumber":22,"title":"No Train No Gain","airDate":"2016-11-17","airDateUtc":"2016-11-18T00:30:00Z","overview":"The guys help Pops' train.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12265},{"seriesId":158,"episodeFileId":9470,"seasonNumber":8,"episodeNumber":23,"title":"Christmas in Space","airDate":"2016-12-01","airDateUtc":"2016-12-02T00:30:00Z","overview":"The guys celebrate their first Christmas in space by sharing stories and opening presents, but Benson gets annoyed that the stories have scary elements.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12266},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Synth Buttons","airDate":"2016-12-23","airDateUtc":"2016-12-24T00:30:00Z","overview":"Mordecai and Rigby realize that the bridge of the ship is also a synthesizer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17130},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Robot Rap Battle","airDate":"2016-12-26","airDateUtc":"2016-12-27T00:30:00Z","overview":"Mordecai and Rigby participate in the 10th Annual Robot Rap Battle.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17131},{"seriesId":158,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Space Worm","airDate":"2017-01-02","airDateUtc":"2017-01-03T00:30:00Z","overview":"Mordecai and Rigby ride a needy space worm.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17132},{"seriesId":158,"episodeFileId":9471,"seasonNumber":8,"episodeNumber":24,"title":"Kill 'Em with Kindness","airDate":"2017-01-14","airDateUtc":"2017-01-15T00:30:00Z","overview":"Pops wants to be friends with Anti-Pops.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12267},{"seriesId":158,"episodeFileId":9471,"seasonNumber":8,"episodeNumber":25,"title":"Meet the Seer","airDate":"2017-01-14","airDateUtc":"2017-01-15T00:40:00Z","overview":"The guys need to talk to someone smart.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12268},{"seriesId":158,"episodeFileId":9472,"seasonNumber":8,"episodeNumber":26,"title":"Cheer Up Pops","airDate":"2017-01-16","airDateUtc":"2017-01-17T00:30:00Z","overview":"The guys try to cheer up Pops for his upcoming fight.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12269},{"seriesId":158,"episodeFileId":9473,"seasonNumber":8,"episodeNumber":27,"title":"A Regular Epic Final Battle, Part 1","airDate":"2017-01-16","airDateUtc":"2017-01-17T00:30:00Z","overview":"In the epic series finale, the fate of the universe will be decided.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":12270},{"seriesId":158,"episodeFileId":0,"seasonNumber":8,"episodeNumber":28,"title":"A Regular Epic Final Battle, Part 2","airDate":"2017-01-16","airDateUtc":"2017-01-17T00:30:00Z","overview":"Allies from both sides rally together for the epic fight. However, Pops and Anti-Pops are once again at a stalemate. Mordecai and Rigby are forced to jump between the two factions.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":12271},{"seriesId":158,"episodeFileId":0,"seasonNumber":8,"episodeNumber":29,"title":"A Regular Epic Final Battle, Part 3","airDate":"2017-01-16","airDateUtc":"2017-01-17T00:30:00Z","overview":"Mordecai and Rigby relive the first episode, but soon realize that they need to help Pops. Pops realizes that he must reach out to Anti-Pops and finally saves the universe at the cost of his life. The entire park crew return home to their friends and family where they are seen growing up and moving on to better lives. 25 years later, the entire crew return and Mordecai and Rigby reflect on Pops' sacrifice. Regular Show ends with Pops watching the series on VHS and uttering one final, \"Jolly Good Show.\"","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":12272}],"episodeFile":[{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Power-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E01.The Power-Bluray-720p.mkv","size":275042617,"dateAdded":"2019-08-25T07:40:41.384304Z","sceneName":"Regular.Show.S01E01.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3036000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8425},{"seriesId":158,"seasonNumber":0,"relativePath":"Specials\/S00E01.Pilot-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Specials\/S00E01.Pilot-Bluray-720p.mkv","size":195042455,"dateAdded":"2019-08-25T07:40:52.673891Z","sceneName":"Regular.Show.S01E00.Original.Unaired.Pilot.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3065000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"7:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8426},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Just Set Up The Chairs-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E02.Just Set Up The Chairs-Bluray-720p.mkv","size":275427841,"dateAdded":"2019-08-25T07:40:59.49847Z","sceneName":"Regular.Show.S01E02.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3033000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8427},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Caffeinated Concert Tickets-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E03.Caffeinated Concert Tickets-Bluray-720p.mkv","size":274876920,"dateAdded":"2019-08-25T07:41:12.305262Z","sceneName":"Regular.Show.S01E03.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3032000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8428},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Death Punchies-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E04.Death Punchies-Bluray-720p.mkv","size":275249680,"dateAdded":"2019-08-25T07:41:23.784762Z","sceneName":"Regular.Show.S01E04.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3036000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8429},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Free Cake-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E05.Free Cake-Bluray-720p.mkv","size":274599747,"dateAdded":"2019-08-25T07:41:41.079327Z","sceneName":"Regular.Show.S01E05.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3041000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8430},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Meat Your Maker-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E06.Meat Your Maker-Bluray-720p.mkv","size":275483471,"dateAdded":"2019-08-25T07:41:51.517504Z","sceneName":"Regular.Show.S01E06.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3044000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8431},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Grilled Cheese Deluxe-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E07.Grilled Cheese Deluxe-Bluray-720p.mkv","size":274860870,"dateAdded":"2019-08-25T07:42:05.553359Z","sceneName":"Regular.Show.S01E07.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3026000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8432},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Unicorns Have Got To Go-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E08.The Unicorns Have Got To Go-Bluray-720p.mkv","size":275415608,"dateAdded":"2019-08-25T07:42:15.954081Z","sceneName":"Regular.Show.S01E08.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3034000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8433},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Prank Callers-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E09.Prank Callers-Bluray-720p.mkv","size":275212163,"dateAdded":"2019-08-25T07:42:25.649388Z","sceneName":"Regular.Show.S01E09.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3039000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8434},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Don-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E10.Don-Bluray-720p.mkv","size":275392755,"dateAdded":"2019-08-25T07:42:36.037187Z","sceneName":"Regular.Show.S01E10.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3045000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8435},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Rigby's Body-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E11.Rigby's Body-Bluray-720p.mkv","size":274757234,"dateAdded":"2019-08-25T07:42:46.993461Z","sceneName":"Regular.Show.S01E11.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3045000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8436},{"seriesId":158,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Mordecai and the Rigbys-Bluray-720p.mkv","path":"\/tv\/Regular Show\/Season 01\/S01E12.Mordecai and the Rigbys-Bluray-720p.mkv","size":275176948,"dateAdded":"2019-08-25T07:43:03.227822Z","sceneName":"Regular.Show.S01E12.720p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3045000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8437},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Stick Hockey-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E01.Stick Hockey-WEBDL-1080p.mkv","size":429804234,"dateAdded":"2019-08-25T10:44:26.899958Z","sceneName":"Regular.Show.S03E01.Stick.Hockey.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8448},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Bet To Be Blonde-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E02.Bet To Be Blonde-WEBDL-1080p.mkv","size":436208238,"dateAdded":"2019-08-25T10:44:44.400319Z","sceneName":"Regular.Show.S03E02.Bet.to.Be.Blonde.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8449},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Skips Strikes-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E03.Skips Strikes-WEBDL-1080p.mkv","size":370525229,"dateAdded":"2019-08-25T10:45:05.58632Z","sceneName":"Regular.Show.S03E03.Skips.Strikes.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8450},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Terror Tales of the Park-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E04.Terror Tales of the Park-WEBDL-1080p.mkv","size":435647731,"dateAdded":"2019-08-25T10:45:27.672576Z","sceneName":"Regular.Show.S03E04a.In.the.House.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8451},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Camping Can Be Cool-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E05.Camping Can Be Cool-WEBDL-1080p.mkv","size":465816770,"dateAdded":"2019-08-25T10:45:37.971964Z","sceneName":"Regular.Show.S03E05.Camping.Can.Be.Cool.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8452},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Slam Dunk-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E06.Slam Dunk-WEBDL-1080p.mkv","size":362359963,"dateAdded":"2019-08-25T10:46:04.108985Z","sceneName":"Regular.Show.S03E06.Slam.Dunk.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8453},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Cool Bikes-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E07.Cool Bikes-WEBDL-1080p.mkv","size":370410370,"dateAdded":"2019-08-25T10:46:18.073859Z","sceneName":"Regular.Show.S03E07.Cool.Bikes.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8454},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E08.House Rules-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E08.House Rules-WEBDL-1080p.mkv","size":400557193,"dateAdded":"2019-08-25T10:46:32.708821Z","sceneName":"Regular.Show.S03E08.House.Rules.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8455},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Rap It Up-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E09.Rap It Up-WEBDL-1080p.mkv","size":495487962,"dateAdded":"2019-08-25T10:46:43.514286Z","sceneName":"Regular.Show.S03E09.Rap.It.Up.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8456},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Cruisin'-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E10.Cruisin'-WEBDL-1080p.mkv","size":440310495,"dateAdded":"2019-08-25T10:47:12.477769Z","sceneName":"Regular.Show.S03E10.Cruisin'.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8457},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Under the Hood-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E11.Under the Hood-WEBDL-1080p.mkv","size":288937530,"dateAdded":"2019-08-25T10:47:32.959989Z","sceneName":"Regular.Show.S03E11.Under.the.Hood.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8458},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Weekend at Benson's-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E12.Weekend at Benson's-WEBDL-1080p.mkv","size":383176098,"dateAdded":"2019-08-25T10:47:42.675257Z","sceneName":"Regular.Show.S03E12.Weekend.At.Bensons.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8459},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Fortune Cookie-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E13.Fortune Cookie-WEBDL-1080p.mkv","size":391556625,"dateAdded":"2019-08-25T10:48:02.565207Z","sceneName":"Regular.Show.S03E13.Fortune.Cookie.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8460},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E14.Think Positive-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E14.Think Positive-WEBDL-1080p.mkv","size":407718294,"dateAdded":"2019-08-25T10:48:18.62075Z","sceneName":"Regular.Show.S03E14.Think.Positive.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8461},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Skips vs. Technology-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E15.Skips vs. Technology-WEBDL-1080p.mkv","size":424425202,"dateAdded":"2019-08-25T10:48:36.165241Z","sceneName":"Regular.Show.S03E15.Skips.vs.Technology.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8462},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E16.Butt Dial-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E16.Butt Dial-WEBDL-1080p.mkv","size":398011755,"dateAdded":"2019-08-25T10:48:58.905935Z","sceneName":"Regular.Show.S03E16.Butt.Dial.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8463},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E17.Eggscellent-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E17.Eggscellent-WEBDL-1080p.mkv","size":392443551,"dateAdded":"2019-08-25T10:49:16.339554Z","sceneName":"Regular.Show.S03E17.Eggscellent.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8464},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E18.Gut Model-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E18.Gut Model-WEBDL-1080p.mkv","size":342406330,"dateAdded":"2019-08-25T10:49:34.131923Z","sceneName":"Regular.Show.S03E18.Gut.Model.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8465},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E19.Video Game Wizards-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E19.Video Game Wizards-WEBDL-1080p.mkv","size":380869173,"dateAdded":"2019-08-25T10:49:48.752912Z","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8466},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E20.Big Winner-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E20.Big Winner-WEBDL-1080p.mkv","size":406437026,"dateAdded":"2019-08-25T10:50:03.437407Z","sceneName":"Regular.Show.S03E20.Big.Winner.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8467},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E21.The Best Burger in the World-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E21.The Best Burger in the World-WEBDL-1080p.mkv","size":370807235,"dateAdded":"2019-08-25T10:50:18.154929Z","sceneName":"Regular.Show.S03E21.Best.Burger.in.the.World.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8468},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E22.Replaced-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E22.Replaced-WEBDL-1080p.mkv","size":368162480,"dateAdded":"2019-08-25T10:50:32.043716Z","sceneName":"Regular.Show.S03E22.Replaced.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8469},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E23.Trash Boat-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E23.Trash Boat-WEBDL-1080p.mkv","size":394615664,"dateAdded":"2019-08-25T10:50:45.210661Z","sceneName":"Regular.Show.S03E23.Trash.Boat.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8470},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E24.Fists of Justice-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E24.Fists of Justice-WEBDL-1080p.mkv","size":497799787,"dateAdded":"2019-08-25T10:51:03.275192Z","sceneName":"Regular.Show.S03E24.Fists.of.Justice.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8471},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E25.Yes Dude Yes-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E25.Yes Dude Yes-WEBDL-1080p.mkv","size":355620275,"dateAdded":"2019-08-25T10:51:22.899432Z","sceneName":"Regular.Show.S03E25.Yes.Dude.Yes.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8472},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E26.Busted Cart-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E26.Busted Cart-WEBDL-1080p.mkv","size":517511791,"dateAdded":"2019-08-25T10:51:34.645666Z","sceneName":"Regular.Show.S03E26.Busted.Cart.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8473},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E27.Dead At Eight-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E27.Dead At Eight-WEBDL-1080p.mkv","size":316880139,"dateAdded":"2019-08-25T10:52:05.618647Z","sceneName":"Regular.Show.S03E27.Dead.At.Eight.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8474},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E28.Access Denied-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E28.Access Denied-WEBDL-1080p.mkv","size":436180528,"dateAdded":"2019-08-25T10:52:23.2856Z","sceneName":"Regular.Show.S03E28.Access.Denied.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8475},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E29.Muscle Mentor-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E29.Muscle Mentor-WEBDL-1080p.mkv","size":390901822,"dateAdded":"2019-08-25T10:52:42.249966Z","sceneName":"Regular.Show.S03E29.Muscle.Mentor.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8476},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E30.Trucker Hall of Fame-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E30.Trucker Hall of Fame-WEBDL-1080p.mkv","size":370910901,"dateAdded":"2019-08-25T10:53:00.866476Z","sceneName":"Regular.Show.S03E30.Trucker.Hall.of.Fame.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8477},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E31.Out of Commission-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E31.Out of Commission-WEBDL-1080p.mkv","size":301522184,"dateAdded":"2019-08-25T10:53:16.257571Z","sceneName":"Regular.Show.S03E31.Out.of.Commission.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8478},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E32.Fancy Restaurant-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E32.Fancy Restaurant-WEBDL-1080p.mkv","size":294171046,"dateAdded":"2019-08-25T10:53:31.135212Z","sceneName":"Regular.Show.S03E32.Fancy.Restaurant.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8479},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E33.Diary-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E33.Diary-WEBDL-1080p.mkv","size":337875397,"dateAdded":"2019-08-25T10:53:39.896264Z","sceneName":"Regular.Show.S03E33.Diary.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8480},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E34.The Best VHS in the World-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E34.The Best VHS in the World-WEBDL-1080p.mkv","size":465153817,"dateAdded":"2019-08-25T10:53:55.321602Z","sceneName":"Regular.Show.S03E34.The.Best.VHS.in.the.World.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8481},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E35.Prankless-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E35.Prankless-WEBDL-1080p.mkv","size":403117915,"dateAdded":"2019-08-25T10:54:10.938605Z","sceneName":"Regular.Show.S03E35.Prankless.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8482},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E36.Death Bear-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E36.Death Bear-WEBDL-1080p.mkv","size":387255395,"dateAdded":"2019-08-25T10:54:29.93539Z","sceneName":"Regular.Show.S03E36.Death.Bear.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8483},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E37.Fuzzy Dice-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E37.Fuzzy Dice-WEBDL-1080p.mkv","size":452219461,"dateAdded":"2019-08-25T10:54:46.282442Z","sceneName":"Regular.Show.S03E37.Fuzzy.Dice.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8484},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E38.Sugar Rush-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E38.Sugar Rush-WEBDL-1080p.mkv","size":499443308,"dateAdded":"2019-08-25T10:55:03.759133Z","sceneName":"Regular.Show.S03E38.Sugar.Rush.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8485},{"seriesId":158,"seasonNumber":3,"relativePath":"Season 03\/S03E39.Bad Kiss-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 03\/S03E39.Bad Kiss-WEBDL-1080p.mkv","size":376175431,"dateAdded":"2019-08-25T10:55:21.896325Z","sceneName":"Regular.Show.S03E39.Bad.Kiss.1080p.WEB-DL.AAC2.0.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8486},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Laundry Woes-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E01.Laundry Woes-WEBDL-1080p.mkv","size":469937222,"dateAdded":"2019-08-25T14:23:10.014456Z","sceneName":"Regular.Show.S05E01.Laundry.Woes.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127909,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671319,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8551},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Silver Dude-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E02.Silver Dude-WEBDL-1080p.mkv","size":454765121,"dateAdded":"2019-08-25T14:23:28.90703Z","sceneName":"Regular.Show.S05E02.Silver.Dude.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127834,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5484058,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8552},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Benson's Car-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E03.Benson's Car-WEBDL-1080p.mkv","size":453754926,"dateAdded":"2019-08-25T14:23:44.941658Z","sceneName":"Regular.Show.S05E03.Bensons.Car.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127876,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5437179,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8553},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Every Meat Burritos-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E04.Every Meat Burritos-WEBDL-1080p.mkv","size":454343036,"dateAdded":"2019-08-25T14:23:58.05062Z","sceneName":"Regular.Show.S05E04.Every.Meat.Burritos.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127940,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5444345,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8554},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Wall Buddy-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E05.Wall Buddy-WEBDL-1080p.mkv","size":458244244,"dateAdded":"2019-08-25T14:24:15.154872Z","sceneName":"Regular.Show.S05E05.Wall.Buddy.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127901,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5492245,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8555},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E06.A Skips in Time-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E06.A Skips in Time-WEBDL-1080p.mkv","size":464069552,"dateAdded":"2019-08-25T14:24:31.154363Z","sceneName":"Regular.Show.S05E06.A.Skips.in.Time.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127890,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5598874,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8556},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Survival Skills-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E07.Survival Skills-WEBDL-1080p.mkv","size":452208377,"dateAdded":"2019-08-25T14:24:44.934429Z","sceneName":"Regular.Show.S05E07.Survival.Skills.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127923,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5418151,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8557},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Terror Tales of The Park III-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E08.Terror Tales of The Park III-WEBDL-1080p.mkv","size":902907043,"dateAdded":"2019-08-25T14:25:05.009831Z","sceneName":"Regular.Show.S05E08.Terror.Tales.of.the.Park.III.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5547823,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8558},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Tants-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E09.Tants-WEBDL-1080p.mkv","size":453374502,"dateAdded":"2019-08-25T14:25:37.486067Z","sceneName":"Regular.Show.S05E09.Tants.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127865,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5432525,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8559},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Bank Shot-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E10.Bank Shot-WEBDL-1080p.mkv","size":463268897,"dateAdded":"2019-08-25T14:25:53.014227Z","sceneName":"Regular.Show.S05E10.Bank.Shot.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127838,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5553997,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8560},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Power Tower-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E11.Power Tower-WEBDL-1080p.mkv","size":453583542,"dateAdded":"2019-08-25T14:26:15.705257Z","sceneName":"Regular.Show.S05E11.Power.Tower.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127842,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5435131,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8561},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E12.The Thanksgiving Special-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E12.The Thanksgiving Special-WEBDL-1080p.mkv","size":933625795,"dateAdded":"2019-08-25T14:26:30.063703Z","sceneName":"Regular.Show.S05E12.The.Thanksgiving.Special.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128027,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5632266,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8562},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E13.The Heart of a Stuntman-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E13.The Heart of a Stuntman-WEBDL-1080p.mkv","size":460532303,"dateAdded":"2019-08-25T14:27:07.975509Z","sceneName":"Regular.Show.S05E13.The.Heart.of.a.Stuntman.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127096,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5521128,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8563},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E14.New Year's Kiss-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E14.New Year's Kiss-WEBDL-1080p.mkv","size":459672792,"dateAdded":"2019-08-25T14:27:26.146814Z","sceneName":"Regular.Show.S05E14.New.Years.Kiss.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127917,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5509735,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8564},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Dodge This-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E15.Dodge This-WEBDL-1080p.mkv","size":468612698,"dateAdded":"2019-08-25T14:27:48.70776Z","sceneName":"Regular.Show.S05E15.Dodge.This.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127921,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5619498,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8565},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E16.Portable Toilet-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E16.Portable Toilet-WEBDL-1080p.mkv","size":463288341,"dateAdded":"2019-08-25T14:28:02.784599Z","sceneName":"Regular.Show.S05E16.Portable.Toilet.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127753,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5554260,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8566},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E17.The Postcard-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E17.The Postcard-WEBDL-1080p.mkv","size":455793795,"dateAdded":"2019-08-25T14:28:20.696313Z","sceneName":"Regular.Show.S05E17.The.Postcard.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127833,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5462256,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8567},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E18.Rigby in the Sky With Burrito-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E18.Rigby in the Sky With Burrito-WEBDL-1080p.mkv","size":461320140,"dateAdded":"2019-08-25T14:28:36.068462Z","sceneName":"Regular.Show.S05E18.Rigby.in.the.Sky.with.Burrito.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127912,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5529955,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8568},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E19.Journey to the Bottom of the Crash Pit-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E19.Journey to the Bottom of the Crash Pit-WEBDL-1080p.mkv","size":462606614,"dateAdded":"2019-08-25T14:28:55.00885Z","sceneName":"Regular.Show.S05E19.Journey.to.the.Bottom.of.the.Crash.Pit.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127775,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5545913,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8569},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E20.Saving Time-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E20.Saving Time-WEBDL-1080p.mkv","size":462426805,"dateAdded":"2019-08-25T14:29:09.942854Z","sceneName":"Regular.Show.S05E20.Saving.Time.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127752,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5543712,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8570},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E21.Guitar of Rock-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E21.Guitar of Rock-WEBDL-1080p.mkv","size":457435408,"dateAdded":"2019-08-25T14:29:29.731878Z","sceneName":"Regular.Show.S05E21.Guitar.of.Rock.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127783,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5482429,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8571},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E22.Skips' Story-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E22.Skips' Story-WEBDL-1080p.mkv","size":903682843,"dateAdded":"2019-08-25T14:29:47.621654Z","sceneName":"Regular.Show.S05E22.Skips.Story.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127941,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5464800,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8572},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E23.Return of Mordecai and the Rigbys-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E23.Return of Mordecai and the Rigbys-WEBDL-1080p.mkv","size":458560811,"dateAdded":"2019-08-25T14:30:16.308488Z","sceneName":"Regular.Show.S05E23.Return.of.Mordecai.and.the.Rigbys.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127832,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5496199,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8573},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E24.Bad Portrait-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E24.Bad Portrait-WEBDL-1080p.mkv","size":452497107,"dateAdded":"2019-08-25T14:30:28.880215Z","sceneName":"Regular.Show.S05E24.Bad.Portrait.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127824,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5421779,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8574},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E25.Video 101-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E25.Video 101-WEBDL-1080p.mkv","size":463322321,"dateAdded":"2019-08-25T14:30:43.713085Z","sceneName":"Regular.Show.S05E25.Video.101.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127843,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5554644,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8575},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E26.I Like You Hi-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E26.I Like You Hi-WEBDL-1080p.mkv","size":448908296,"dateAdded":"2019-08-25T14:31:02.953929Z","sceneName":"Regular.Show.S05E26.I.Like.You.Hi.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127798,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5377791,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8576},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E27.Play Date-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E27.Play Date-WEBDL-1080p.mkv","size":462964461,"dateAdded":"2019-08-25T14:31:15.519978Z","sceneName":"Regular.Show.S05E27.Play.Date.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127862,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5550164,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8577},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E28.Expert or Liar-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E28.Expert or Liar-WEBDL-1080p.mkv","size":456794505,"dateAdded":"2019-08-25T14:31:33.642114Z","sceneName":"Regular.Show.S05E28.Expert.or.Liar.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127862,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5474494,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8578},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E29.Catching the Wave-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E29.Catching the Wave-WEBDL-1080p.mkv","size":471330789,"dateAdded":"2019-08-25T14:31:50.707062Z","sceneName":"Regular.Show.S05E29.Catching.the.Wave.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127807,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5652942,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8579},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E30.Gold Watch-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E30.Gold Watch-WEBDL-1080p.mkv","size":458791537,"dateAdded":"2019-08-25T14:32:08.496522Z","sceneName":"Regular.Show.S05E30.Gold.Watch.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127850,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5499009,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8580},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E31.Paint Job-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E31.Paint Job-WEBDL-1080p.mkv","size":462435742,"dateAdded":"2019-08-25T14:32:28.854587Z","sceneName":"Regular.Show.S05E31.Paint.Job.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127805,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5543740,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8581},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E32.Take the Cake-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E32.Take the Cake-WEBDL-1080p.mkv","size":455724908,"dateAdded":"2019-08-25T14:32:42.945426Z","sceneName":"Regular.Show.S05E32.Take.the.Cake.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127844,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5461368,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8582},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E33.Skips in the Saddle-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E33.Skips in the Saddle-WEBDL-1080p.mkv","size":452114790,"dateAdded":"2019-08-25T14:33:08.962614Z","sceneName":"Regular.Show.S05E33.Skips.in.the.Saddle.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127882,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5417057,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8583},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E34.Thomas Fights Back-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E34.Thomas Fights Back-WEBDL-1080p.mkv","size":457597870,"dateAdded":"2019-08-25T14:33:22.477898Z","sceneName":"Regular.Show.S05E34.Thomas.Fights.Back.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127804,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5484398,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8584},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E35.Bachelor Party! Zingo!-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E35.Bachelor Party! Zingo!-WEBDL-1080p.mkv","size":459082485,"dateAdded":"2019-08-25T14:33:43.575689Z","sceneName":"Regular.Show.S05E35.Bachelor.Party.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127847,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5502603,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8585},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E36.Tent Trouble-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E36.Tent Trouble-WEBDL-1080p.mkv","size":459739071,"dateAdded":"2019-08-25T14:34:00.92732Z","sceneName":"Regular.Show.S05E36.Tent.Trouble.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127849,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5510636,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8586},{"seriesId":158,"seasonNumber":5,"relativePath":"Season 05\/S05E37.Real Date-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 05\/S05E37.Real Date-WEBDL-1080p.mkv","size":460437596,"dateAdded":"2019-08-25T14:34:20.843053Z","sceneName":"Regular.Show.S05E37.Real.Date.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127905,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5519120,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":8587},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Ello Gov'nor-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E01.Ello Gov'nor-Bluray-1080p.mkv","size":519641909,"dateAdded":"2019-08-25T14:37:04.210775Z","sceneName":"Regular.Show.S02E01.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5916000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8588},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E02.It's Time-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E02.It's Time-Bluray-1080p.mkv","size":520678828,"dateAdded":"2019-08-25T14:37:19.643889Z","sceneName":"Regular.Show.S02E02.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5931000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8589},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Appreciation Day-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E03.Appreciation Day-Bluray-1080p.mkv","size":520399309,"dateAdded":"2019-08-25T14:37:37.938536Z","sceneName":"Regular.Show.S02E03.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5915000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8590},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Peeps-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E04.Peeps-Bluray-1080p.mkv","size":520000555,"dateAdded":"2019-08-25T14:37:58.677805Z","sceneName":"Regular.Show.S02E04.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5921000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8591},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Dizzy-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E05.Dizzy-Bluray-1080p.mkv","size":519994502,"dateAdded":"2019-08-25T14:38:15.277276Z","sceneName":"Regular.Show.S02E05.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5930000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8592},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E06.My Mom-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E06.My Mom-Bluray-1080p.mkv","size":520281852,"dateAdded":"2019-08-25T14:38:36.236809Z","sceneName":"Regular.Show.S02E06.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5929000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8593},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E07.High Score-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E07.High Score-Bluray-1080p.mkv","size":520445713,"dateAdded":"2019-08-25T14:38:58.366622Z","sceneName":"Regular.Show.S02E07.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5927000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8594},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Rage Against the TV-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E08.Rage Against the TV-Bluray-1080p.mkv","size":520324699,"dateAdded":"2019-08-25T14:39:18.435394Z","sceneName":"Regular.Show.S02E08.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5914000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8595},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Party Pete-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E09.Party Pete-Bluray-1080p.mkv","size":520698665,"dateAdded":"2019-08-25T14:39:35.907358Z","sceneName":"Regular.Show.S02E09.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5929000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8596},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Brain Eraser-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E10.Brain Eraser-Bluray-1080p.mkv","size":520050067,"dateAdded":"2019-08-25T14:39:56.40976Z","sceneName":"Regular.Show.S02E10.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5915000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8597},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Benson Be Gone-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E11.Benson Be Gone-Bluray-1080p.mkv","size":520524995,"dateAdded":"2019-08-25T14:40:09.282327Z","sceneName":"Regular.Show.S02E11.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5930000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8598},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E12.But I Have A Receipt-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E12.But I Have A Receipt-Bluray-1080p.mkv","size":520243851,"dateAdded":"2019-08-25T14:40:27.929182Z","sceneName":"Regular.Show.S02E12.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5922000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8599},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E13.This is My Jam-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E13.This is My Jam-Bluray-1080p.mkv","size":520694508,"dateAdded":"2019-08-25T14:40:45.699834Z","sceneName":"Regular.Show.S02E13.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5922000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8600},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Muscle Woman-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E14.Muscle Woman-Bluray-1080p.mkv","size":520456566,"dateAdded":"2019-08-25T14:41:00.355976Z","sceneName":"Regular.Show.S02E14.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5925000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8601},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Temp Check-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E15.Temp Check-Bluray-1080p.mkv","size":520478263,"dateAdded":"2019-08-25T14:41:16.915693Z","sceneName":"Regular.Show.S02E15.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5930000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8602},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Jinx-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E16.Jinx-Bluray-1080p.mkv","size":520878377,"dateAdded":"2019-08-25T14:41:35.16652Z","sceneName":"Regular.Show.S02E16.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5923000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8603},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E17.See You There-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E17.See You There-Bluray-1080p.mkv","size":519304720,"dateAdded":"2019-08-25T14:41:59.773195Z","sceneName":"Regular.Show.S02E17.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8604},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Do Me A Solid-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E18.Do Me A Solid-Bluray-1080p.mkv","size":519962751,"dateAdded":"2019-08-25T14:42:22.052586Z","sceneName":"Regular.Show.S02E18.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8605},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Grave Sights-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E19.Grave Sights-Bluray-1080p.mkv","size":519775210,"dateAdded":"2019-08-25T14:42:37.834426Z","sceneName":"Regular.Show.S02E19.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5923000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8606},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Really Real Wrestling-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E20.Really Real Wrestling-Bluray-1080p.mkv","size":520040973,"dateAdded":"2019-08-25T14:42:55.016601Z","sceneName":"Regular.Show.S02E20.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5915000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8607},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Over the Top-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E21.Over the Top-Bluray-1080p.mkv","size":520210524,"dateAdded":"2019-08-25T14:43:15.024355Z","sceneName":"Regular.Show.S02E21.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5945000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8608},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E22.The Night Owl-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E22.The Night Owl-Bluray-1080p.mkv","size":520781534,"dateAdded":"2019-08-25T14:43:31.963818Z","sceneName":"Regular.Show.S02E22.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5917000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8609},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E23.A Bunch of Baby Ducks-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E23.A Bunch of Baby Ducks-Bluray-1080p.mkv","size":520381921,"dateAdded":"2019-08-25T14:43:56.579228Z","sceneName":"Regular.Show.S02E23.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5930000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8610},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E24.More Smarter-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E24.More Smarter-Bluray-1080p.mkv","size":519396132,"dateAdded":"2019-08-25T14:44:13.721859Z","sceneName":"Regular.Show.S02E24.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5929000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8611},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E25.First Day-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E25.First Day-Bluray-1080p.mkv","size":520458844,"dateAdded":"2019-08-25T14:44:33.670583Z","sceneName":"Regular.Show.S02E25.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5924000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8612},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E26.Go Viral-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E26.Go Viral-Bluray-1080p.mkv","size":520561350,"dateAdded":"2019-08-25T14:44:57.833706Z","sceneName":"Regular.Show.S02E26.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5926000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8613},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E27.Skunked-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E27.Skunked-Bluray-1080p.mkv","size":519791954,"dateAdded":"2019-08-25T14:45:15.969127Z","sceneName":"Regular.Show.S02E27.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5922000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8614},{"seriesId":158,"seasonNumber":2,"relativePath":"Season 02\/S02E28.Karaoke Video-Bluray-1080p.mkv","path":"\/tv\/Regular Show\/Season 02\/S02E28.Karaoke Video-Bluray-1080p.mkv","size":520172347,"dateAdded":"2019-08-25T14:45:35.459251Z","sceneName":"Regular.Show.S02E28.1080p.BluRay.x264-DEiMOS","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":8615},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E01.One Space Day at a Time-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E01.One Space Day at a Time-WEBRip-1080p.mkv","size":453894490,"dateAdded":"2019-10-04T00:19:24.304001Z","sceneName":"Regular.Show.S08E01.One.Space.Day.at.a.Time.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127773,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5439059,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9449},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E02.Cool Brobots-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E02.Cool Brobots-WEBRip-1080p.mkv","size":452914986,"dateAdded":"2019-10-04T00:19:27.305276Z","sceneName":"Regular.Show.S08E02.Cool.Bro.Bots.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127688,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5427175,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9450},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E03.Welcome to Space-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E03.Welcome to Space-WEBRip-1080p.mkv","size":444041099,"dateAdded":"2019-10-04T00:19:30.087166Z","sceneName":"Regular.Show.S08E03.Welcome.to.Space.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127794,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5318127,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9451},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E04.Space Creds-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E04.Space Creds-WEBRip-1080p.mkv","size":459906467,"dateAdded":"2019-10-04T00:19:33.04372Z","sceneName":"Regular.Show.S08E04.Space.Creds.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127793,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5512778,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9452},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E05.Lost and Found-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E05.Lost and Found-WEBRip-1080p.mkv","size":452240631,"dateAdded":"2019-10-04T00:19:37.570244Z","sceneName":"Regular.Show.S08E05.The.Brain.of.Evil.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127798,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5418738,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9453},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E06.Ugly Moons-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E06.Ugly Moons-WEBRip-1080p.mkv","size":458278186,"dateAdded":"2019-10-04T00:19:40.359336Z","sceneName":"Regular.Show.S08E06.Lost.and.Found.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127823,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5492770,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9454},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E07.The Dream Warrior-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E07.The Dream Warrior-WEBRip-1080p.mkv","size":453041087,"dateAdded":"2019-10-04T00:19:43.291376Z","sceneName":"Regular.Show.S08E07.Ugly.Moons.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127727,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5428642,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9455},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E08.The Brain of Evil-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E08.The Brain of Evil-WEBRip-1080p.mkv","size":450697172,"dateAdded":"2019-10-04T00:19:47.130283Z","sceneName":"Regular.Show.S08E08.The.Dream.Warrior.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127576,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5400048,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9456},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E09.Fries Night-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E09.Fries Night-WEBRip-1080p.mkv","size":456769390,"dateAdded":"2019-10-04T00:19:51.560379Z","sceneName":"Regular.Show.S08E09.Fries.Night.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127817,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5474274,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9457},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E10.Spacey McSpaceTree-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E10.Spacey McSpaceTree-WEBRip-1080p.mkv","size":458060599,"dateAdded":"2019-10-04T00:19:56.42114Z","sceneName":"Regular.Show.S08E10.Spacey.McSpaceTree.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127667,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5490280,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9458},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E11.Can You Ear Me Now-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E11.Can You Ear Me Now-WEBRip-1080p.mkv","size":451221359,"dateAdded":"2019-10-04T00:19:59.171686Z","sceneName":"Regular.Show.S08E11.Can.You.Ear.Me.Now.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127818,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5406194,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9459},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E12.Stuck In an Elevator-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E12.Stuck In an Elevator-WEBRip-1080p.mkv","size":454902717,"dateAdded":"2019-10-04T00:20:02.701287Z","sceneName":"Regular.Show.S08E12.Stuck.In.An.Elevator.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127867,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5451291,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9460},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E13.The Space Race-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E13.The Space Race-WEBRip-1080p.mkv","size":467610349,"dateAdded":"2019-10-04T00:20:05.392498Z","sceneName":"Regular.Show.S08E13.The.Space.Race.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127707,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5607408,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9461},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E14.Operation - Hear No Evil-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E14.Operation - Hear No Evil-WEBRip-1080p.mkv","size":456116394,"dateAdded":"2019-10-04T00:20:09.060995Z","sceneName":"Regular.Show.S08E14.Operation.Hear.No.Evil.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127828,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5466240,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9462},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E15.Space Escape-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E15.Space Escape-WEBRip-1080p.mkv","size":460391082,"dateAdded":"2019-10-04T00:20:12.457733Z","sceneName":"Regular.Show.S08E15.Space.Escape.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127713,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5518859,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9463},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E16.New Beds-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E16.New Beds-WEBRip-1080p.mkv","size":456283030,"dateAdded":"2019-10-04T00:20:17.147745Z","sceneName":"Regular.Show.S08E16.New.Beds.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127714,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5468448,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9464},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E17.Mordeby and Rigbecai-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E17.Mordeby and Rigbecai-WEBRip-1080p.mkv","size":449315840,"dateAdded":"2019-10-04T00:20:34.428554Z","sceneName":"Regular.Show.S08E17.Mordeby.and.Rigbecai.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127731,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5382923,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9465},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E18.Alpha Dome-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E18.Alpha Dome-WEBRip-1080p.mkv","size":455568894,"dateAdded":"2019-10-04T00:20:44.124223Z","sceneName":"Regular.Show.S08E18.Alpha.Dome.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127740,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5459625,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9466},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E19E20.Terror Tales of the Park VI + The Ice Tape-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E19E20.Terror Tales of the Park VI + The Ice Tape-WEBRip-1080p.mkv","size":906073697,"dateAdded":"2019-10-04T00:20:52.857884Z","sceneName":"Regular.Show.S08E19E20.Terror.Tales.of.the.Park.VI.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127958,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5480027,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9467},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E21.The Key To The Universe-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E21.The Key To The Universe-WEBRip-1080p.mkv","size":463977659,"dateAdded":"2019-10-04T00:21:04.913373Z","sceneName":"Regular.Show.S08E21.The.Ice.Tape.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127751,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5597131,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9468},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E22.No Train No Gain-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E22.No Train No Gain-WEBRip-1080p.mkv","size":458036498,"dateAdded":"2019-10-04T00:21:09.495368Z","sceneName":"Regular.Show.S08E22.The.Key.to.the.Universe.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127799,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5489870,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9469},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E23.Christmas in Space-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E23.Christmas in Space-WEBRip-1080p.mkv","size":458525488,"dateAdded":"2019-10-04T00:21:12.64508Z","sceneName":"Regular.Show.S08E23.No.Train.No.Gain.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127756,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5495916,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9470},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E24E25.Kill 'Em with Kindness + Meet the Seer-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E24E25.Kill 'Em with Kindness + Meet the Seer-WEBRip-1080p.mkv","size":925659023,"dateAdded":"2019-10-04T00:21:17.323992Z","sceneName":"Regular.Show.S08E24E25.Christmas.In.Space.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127911,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5565684,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9471},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E26.Cheer Up Pops-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E26.Cheer Up Pops-WEBRip-1080p.mkv","size":463771476,"dateAdded":"2019-10-04T00:21:29.794824Z","sceneName":"Regular.Show.S08E26.Cheer.Up.Pops.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127701,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5560290,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9472},{"seriesId":158,"seasonNumber":8,"relativePath":"Season 08\/S08E27.A Regular Epic Final Battle, Part 1-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 08\/S08E27.A Regular Epic Final Battle, Part 1-WEBRip-1080p.mkv","size":451263263,"dateAdded":"2019-10-04T00:21:35.78582Z","sceneName":"Regular.Show.S08E27.A.Regular.Epic.Final.Battle.Part.1.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127827,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5406756,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9473},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E01.Dumptown USA-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E01.Dumptown USA-WEBRip-1080p.mkv","size":456746216,"dateAdded":"2019-10-04T01:54:24.663537Z","sceneName":"Regular.Show.S07E01.Dumptown.U.S.A.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127804,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5473997,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9474},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E02.The Parkie Awards-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E02.The Parkie Awards-WEBRip-1080p.mkv","size":463344659,"dateAdded":"2019-10-04T01:54:27.841406Z","sceneName":"Regular.Show.S07E02.The.Parkie.Awards.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127791,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5554992,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9475},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E03.The Lunch Club-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E03.The Lunch Club-WEBRip-1080p.mkv","size":463193263,"dateAdded":"2019-10-04T01:54:30.601431Z","sceneName":"Regular.Show.S07E03.The.Lunch.Club.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127777,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5553140,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9476},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E04.Local News Legend-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E04.Local News Legend-WEBRip-1080p.mkv","size":452292603,"dateAdded":"2019-10-04T01:54:33.393563Z","sceneName":"Regular.Show.S07E04.Local.News.Legend.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127895,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5452695,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9477},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E05.The Dome Experiment-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E05.The Dome Experiment-WEBRip-1080p.mkv","size":923801945,"dateAdded":"2019-10-04T01:54:36.93579Z","sceneName":"Regular.Show.S07E05.The.Dome.Experiment.Special.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127903,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5537213,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9478},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E06.Birthday Gift-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E06.Birthday Gift-WEBRip-1080p.mkv","size":460055609,"dateAdded":"2019-10-04T01:54:42.758787Z","sceneName":"Regular.Show.S07E06.Birthday.Gift.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127838,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5514614,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9479},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E07.Cat Videos-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E07.Cat Videos-WEBRip-1080p.mkv","size":459691658,"dateAdded":"2019-10-04T01:54:46.811883Z","sceneName":"Regular.Show.S07E07.Cat.Videos.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127870,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5510074,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9480},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E08.Struck by Lightning-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E08.Struck by Lightning-WEBRip-1080p.mkv","size":471383365,"dateAdded":"2019-10-04T01:54:51.161505Z","sceneName":"Regular.Show.S07E08.Struck.by.Lightning.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127844,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5653562,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9481},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E09.Terror Tales of the Park V-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E09.Terror Tales of the Park V-WEBRip-1080p.mkv","size":925919705,"dateAdded":"2019-10-04T01:54:55.414331Z","sceneName":"Regular.Show.S07E09.Terror.Tales.of.the.Park.V.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127977,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5549733,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9482},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E10.Return of the Party Horse-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E10.Return of the Party Horse-WEBRip-1080p.mkv","size":457946929,"dateAdded":"2019-10-04T01:55:01.425786Z","sceneName":"Regular.Show.S07E11.Sleep.Cycle.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127790,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5488755,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9483},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E11.Sleep Cycle-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E11.Sleep Cycle-WEBRip-1080p.mkv","size":466534993,"dateAdded":"2019-10-04T01:55:05.955064Z","sceneName":"Regular.Show.S07E12.Just.Friends.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127784,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5594119,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9484},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E12.Just Friends-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E12.Just Friends-WEBRip-1080p.mkv","size":458917864,"dateAdded":"2019-10-04T01:55:12.257332Z","sceneName":"Regular.Show.S07E13.Bensons.Pig.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127770,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5500681,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9485},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E13.Benson's Pig-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E13.Benson's Pig-WEBRip-1080p.mkv","size":452393093,"dateAdded":"2019-10-04T01:55:23.892857Z","sceneName":"Regular.Show.S07E14.The.Eileen.Plan.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127891,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5420478,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9486},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E14.The Eileen Plan-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E14.The Eileen Plan-WEBRip-1080p.mkv","size":456732856,"dateAdded":"2019-10-04T01:55:33.136428Z","sceneName":"Regular.Show.S07E15.Hello.China.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127824,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5473809,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9487},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E15.Hello China-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E15.Hello China-WEBRip-1080p.mkv","size":449062949,"dateAdded":"2019-10-04T01:55:45.118498Z","sceneName":"Regular.Show.S07E16.Crazy.Fake.Plan.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127953,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5412819,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9488},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E16.Crazy Fake Plan-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E16.Crazy Fake Plan-WEBRip-1080p.mkv","size":445753153,"dateAdded":"2019-10-04T01:55:55.124458Z","sceneName":"Regular.Show.S07E17.Win.That.Prize.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127913,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5372019,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9489},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E17.Win That Prize-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E17.Win That Prize-WEBRip-1080p.mkv","size":461712510,"dateAdded":"2019-10-04T01:56:04.971804Z","sceneName":"Regular.Show.S07E18.Snow.Tubing.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127856,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5534882,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9490},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E18.Snow Tubing-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E18.Snow Tubing-WEBRip-1080p.mkv","size":459118324,"dateAdded":"2019-10-04T01:56:13.516066Z","sceneName":"Regular.Show.S07E19.Chili.Cook.Off.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127783,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5503140,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9491},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E19.Chili Cook-Off-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E19.Chili Cook-Off-WEBRip-1080p.mkv","size":455989941,"dateAdded":"2019-10-04T01:56:22.712477Z","sceneName":"Regular.Show.S07E20.Donut.Factory.Holiday.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127785,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5464737,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9492},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E20.Donut Factory Holiday-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E20.Donut Factory Holiday-WEBRip-1080p.mkv","size":459105965,"dateAdded":"2019-10-04T01:56:31.710686Z","sceneName":"Regular.Show.S07E21.Gymblonski.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127792,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5502976,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9493},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E21.Gymblonski-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E21.Gymblonski-WEBRip-1080p.mkv","size":462729098,"dateAdded":"2019-10-04T01:56:44.133353Z","sceneName":"Regular.Show.S07E22.Guys.Night.2.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127808,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5547457,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9494},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E22.Guys Night 2-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E22.Guys Night 2-WEBRip-1080p.mkv","size":452832409,"dateAdded":"2019-10-04T01:56:53.100187Z","sceneName":"Regular.Show.S07E23.Garys.Synthesizer.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127847,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5425958,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9495},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E23.Gary's Synthesizer-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E23.Gary's Synthesizer-WEBRip-1080p.mkv","size":450920491,"dateAdded":"2019-10-04T01:57:04.672343Z","sceneName":"Regular.Show.S07E24.California.King.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127972,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5402389,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9496},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E24.California King-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E24.California King-WEBRip-1080p.mkv","size":451587817,"dateAdded":"2019-10-04T01:57:14.152403Z","sceneName":"Regular.Show.S07E25.Cube.Bros.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127813,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5410713,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9497},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E25.Cube Bros-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E25.Cube Bros-WEBRip-1080p.mkv","size":454093511,"dateAdded":"2019-10-04T01:57:23.156154Z","sceneName":"Regular.Show.S07E26.Maellards.Package.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127890,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5441356,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9498},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E26.Maellard's Package-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E26.Maellard's Package-WEBRip-1080p.mkv","size":456710799,"dateAdded":"2019-10-04T01:57:32.426541Z","sceneName":"Regular.Show.S07E27.Rigby.Goes.to.the.Prom.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127886,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5473507,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9499},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E27.Rigby Goes to the Prom-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E27.Rigby Goes to the Prom-WEBRip-1080p.mkv","size":454352854,"dateAdded":"2019-10-04T01:57:39.79095Z","sceneName":"Regular.Show.S07E28.The.Button.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127786,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5444668,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9500},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E28.The Button-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E28.The Button-WEBRip-1080p.mkv","size":455191475,"dateAdded":"2019-10-04T01:57:46.92026Z","sceneName":"Regular.Show.S07E29.Favorite.Shirt.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127804,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5454944,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9501},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E29.Favorite Shirt-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E29.Favorite Shirt-WEBRip-1080p.mkv","size":458310512,"dateAdded":"2019-10-04T01:57:56.161522Z","sceneName":"Regular.Show.S07E30.Marvolo.the.Wizard.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127685,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5493359,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9502},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E30.Marvolo the Wizard-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E30.Marvolo the Wizard-WEBRip-1080p.mkv","size":462836336,"dateAdded":"2019-10-04T01:58:05.957617Z","sceneName":"Regular.Show.S07E31.Pops.Favorite.Planet.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127800,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5548740,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9503},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E31.Pops' Favorite Planet-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E31.Pops' Favorite Planet-WEBRip-1080p.mkv","size":455867395,"dateAdded":"2019-10-04T01:58:14.951014Z","sceneName":"Regular.Show.S07E32.Pam.I.Am.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127901,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5463127,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9504},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E32.Pam I Am-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E32.Pam I Am-WEBRip-1080p.mkv","size":446965269,"dateAdded":"2019-10-04T01:58:20.728206Z","sceneName":"Regular.Show.S07E33.Lame.Lockdown.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127759,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5354061,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9505},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E33.Lame Lockdown-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E33.Lame Lockdown-WEBRip-1080p.mkv","size":453085045,"dateAdded":"2019-10-04T01:58:27.355089Z","sceneName":"Regular.Show.S07E34.VIP.Members.Only.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127766,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5429122,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9506},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E34.VIP Members Only-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E34.VIP Members Only-WEBRip-1080p.mkv","size":460543456,"dateAdded":"2019-10-04T01:58:31.01747Z","sceneName":"Regular.Show.S07E35.Deez.Keys.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127828,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5520573,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9507},{"seriesId":158,"seasonNumber":7,"relativePath":"Season 07\/S07E35.Deez Keys-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 07\/S07E35.Deez Keys-WEBRip-1080p.mkv","size":907341802,"dateAdded":"2019-10-04T01:58:35.378867Z","sceneName":"Regular.Show.S07E36.Rigbys.Graduation.Day.Special.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127907,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5452966,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9508},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E01E02.Exit 9B-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E01E02.Exit 9B-WEBRip-1080p.mkv","size":920209332,"dateAdded":"2019-10-04T03:54:56.936077Z","sceneName":"Regular.Show.S04E01E02.Exit.9B.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127934,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5532498,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9532},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E30.Family BBQ-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E30.Family BBQ-WEBRip-1080p.mkv","size":459468982,"dateAdded":"2019-10-04T03:58:24.00059Z","sceneName":"Regular.Show.S04E30.The.Last.Laserdisc.Player.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128032,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5507159,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9560},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E32.Country Club-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E32.Country Club-WEBRip-1080p.mkv","size":472713014,"dateAdded":"2019-10-04T03:58:40.505065Z","sceneName":"Regular.Show.S04E32.Blind.Trust.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128070,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5669596,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9562},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E33.Blind Trust-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E33.Blind Trust-WEBRip-1080p.mkv","size":455368240,"dateAdded":"2019-10-04T03:58:50.411926Z","sceneName":"Regular.Show.S04E33.Worlds.Best.Boss.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128048,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5456840,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9563},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E34.World's Best Boss-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E34.World's Best Boss-WEBRip-1080p.mkv","size":451441312,"dateAdded":"2019-10-04T03:58:58.310587Z","sceneName":"Regular.Show.S04E34.Last.Meal.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128050,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5442831,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9564},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E35.Last Meal-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E35.Last Meal-WEBRip-1080p.mkv","size":455526700,"dateAdded":"2019-10-04T03:59:07.343452Z","sceneName":"Regular.Show.S04E35.Sleep.Fighter.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128060,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5458765,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9565},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E36.Sleep Fighter-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E36.Sleep Fighter-WEBRip-1080p.mkv","size":453720360,"dateAdded":"2019-10-04T03:59:17.620469Z","sceneName":"Regular.Show.S04E36.Party.Re-Pete.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128065,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5470170,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9566},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E37.Party Re-Pete-WEBRip-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E37.Party Re-Pete-WEBRip-1080p.mkv","size":458824321,"dateAdded":"2019-10-04T03:59:25.581332Z","sceneName":"Regular.Show.S04E37.Steak.Me.Amadeus.1080p.STAN.WEB-DL.AAC2.0.H264-SiGMA","releaseGroup":"SiGMA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128068,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5499235,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9567},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E20.A Bunch of Full Grown Geese-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E20.A Bunch of Full Grown Geese-WEBDL-1080p.mkv","size":706565574,"dateAdded":"2020-06-10T22:14:34.875617Z","sceneName":"Regular.Show.S04E20.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7905881,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14126},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E06.150-Piece Kit-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E06.150-Piece Kit-WEBDL-1080p.mkv","size":686131242,"dateAdded":"2020-06-10T22:17:03.854516Z","sceneName":"Regular.Show.S04E06.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7642466,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14128},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E24.K.I.L.I.T. Radio-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E24.K.I.L.I.T. Radio-WEBDL-1080p.mkv","size":677315080,"dateAdded":"2020-06-10T22:17:21.003771Z","sceneName":"Regular.Show.S04E24.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7562563,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14129},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E25.Carter and Briggs-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E25.Carter and Briggs-WEBDL-1080p.mkv","size":699109029,"dateAdded":"2020-06-10T22:17:32.825091Z","sceneName":"Regular.Show.S04E25.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7794271,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14130},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Starter Pack-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E03.Starter Pack-WEBDL-1080p.mkv","size":721445133,"dateAdded":"2020-06-10T22:21:03.763473Z","sceneName":"Regular.Show.S04E03.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8093897,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14131},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E11.T.G.I. Tuesday-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E11.T.G.I. Tuesday-WEBDL-1080p.mkv","size":683893639,"dateAdded":"2020-06-10T22:21:23.435524Z","sceneName":"Regular.Show.S04E11.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7651992,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14132},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E31.The Last LaserDisc Player-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E31.The Last LaserDisc Player-WEBDL-1080p.mkv","size":725354366,"dateAdded":"2020-06-10T22:21:35.425831Z","sceneName":"Regular.Show.S04E31.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8139320,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14133},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E29.Meteor Moves-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E29.Meteor Moves-WEBDL-1080p.mkv","size":693042120,"dateAdded":"2020-06-10T22:23:03.92903Z","sceneName":"Regular.Show.S04E29.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7723222,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14134},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E09.One Pull Up-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E09.One Pull Up-WEBDL-1080p.mkv","size":648774527,"dateAdded":"2020-06-10T22:23:17.147747Z","sceneName":"Regular.Show.S04E09.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7204901,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14135},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E18.Caveman-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E18.Caveman-WEBDL-1080p.mkv","size":719704717,"dateAdded":"2020-06-10T22:23:32.137414Z","sceneName":"Regular.Show.S04E18.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8075065,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14136},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E27.Cool Cubed-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E27.Cool Cubed-WEBDL-1080p.mkv","size":708575367,"dateAdded":"2020-06-10T22:23:44.858839Z","sceneName":"Regular.Show.S04E27.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7905084,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14137},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E26.Skips' Stress-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E26.Skips' Stress-WEBDL-1080p.mkv","size":690614653,"dateAdded":"2020-06-10T22:24:01.544041Z","sceneName":"Regular.Show.S04E26.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7694958,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14138},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E23.Picking Up Margaret-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E23.Picking Up Margaret-WEBDL-1080p.mkv","size":689253239,"dateAdded":"2020-06-10T22:24:37.749769Z","sceneName":"Regular.Show.S04E23.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7678926,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14139},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Pie Contest-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E05.Pie Contest-WEBDL-1080p.mkv","size":690676832,"dateAdded":"2020-06-10T22:24:49.171124Z","sceneName":"Regular.Show.S04E05.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7695584,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14140},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E17.Quips-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E17.Quips-WEBDL-1080p.mkv","size":610814890,"dateAdded":"2020-06-10T22:25:02.959268Z","sceneName":"Regular.Show.S04E17.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6761075,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14141},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Firework Run-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E12.Firework Run-WEBDL-1080p.mkv","size":671103419,"dateAdded":"2020-06-10T22:25:20.888797Z","sceneName":"Regular.Show.S04E12.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7466610,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14142},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The Longest Weekend-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E13.The Longest Weekend-WEBDL-1080p.mkv","size":680048215,"dateAdded":"2020-06-10T22:25:40.719919Z","sceneName":"Regular.Show.S04E13.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7609290,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14143},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E19.That's My Television-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E19.That's My Television-WEBDL-1080p.mkv","size":695806289,"dateAdded":"2020-06-10T22:26:01.598963Z","sceneName":"Regular.Show.S04E19.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7755660,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14144},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Do or Diaper-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E16.Do or Diaper-WEBDL-1080p.mkv","size":692139184,"dateAdded":"2020-06-10T22:26:12.566546Z","sceneName":"Regular.Show.S04E16.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7712674,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14145},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Bald Spot-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E07.Bald Spot-WEBDL-1080p.mkv","size":712998302,"dateAdded":"2020-06-10T22:26:23.883442Z","sceneName":"Regular.Show.S04E07.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7955786,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14146},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Sandwich of Death-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E14.Sandwich of Death-WEBDL-1080p.mkv","size":691331132,"dateAdded":"2020-06-10T22:26:36.64198Z","sceneName":"Regular.Show.S04E14.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7703270,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14147},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E22.Limousine Lunchtime-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E22.Limousine Lunchtime-WEBDL-1080p.mkv","size":696787324,"dateAdded":"2020-06-10T22:26:50.337504Z","sceneName":"Regular.Show.S04E22.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7767143,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14148},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E28.Trailer Trashed-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E28.Trailer Trashed-WEBDL-1080p.mkv","size":703596256,"dateAdded":"2020-06-10T22:27:04.869729Z","sceneName":"Regular.Show.S04E28.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7846801,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14149},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E21.Fool Me Twice-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E21.Fool Me Twice-WEBDL-1080p.mkv","size":705286990,"dateAdded":"2020-06-10T22:27:15.800059Z","sceneName":"Regular.Show.S04E21.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7866607,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14150},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Ace Balthazar Lives-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E15.Ace Balthazar Lives-WEBDL-1080p.mkv","size":677848992,"dateAdded":"2020-06-10T22:27:26.059421Z","sceneName":"Regular.Show.S04E15.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7545523,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14151},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E10.The Christmas Special-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E10.The Christmas Special-WEBDL-1080p.mkv","size":1405452344,"dateAdded":"2020-06-10T22:27:34.909031Z","sceneName":"Regular.Show.S04E10.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7848980,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14152},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Guy's Night-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E08.Guy's Night-WEBDL-1080p.mkv","size":678041818,"dateAdded":"2020-06-10T22:27:57.306654Z","sceneName":"Regular.Show.S04E08.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7547790,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14153},{"seriesId":158,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Terror Tales of the Park II-WEBDL-1080p.mkv","path":"\/tv\/Regular Show\/Season 04\/S04E04.Terror Tales of the Park II-WEBDL-1080p.mkv","size":656823634,"dateAdded":"2020-06-10T22:28:06.610747Z","sceneName":"Regular.Show.S04E04.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7299461,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"11:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14154},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Maxin' and Relaxin'-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E01.Maxin' and Relaxin'-WEBRip-480p.mp4","size":114082908,"dateAdded":"2020-06-27T13:52:12.629827Z","sceneName":"Regular.Show.S06E01.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14676},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E02.New Bro on Campus-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E02.New Bro on Campus-WEBRip-480p.mp4","size":115009200,"dateAdded":"2020-06-27T13:52:14.394955Z","sceneName":"Regular.Show.S06E02.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14677},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Daddy Issues-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E03.Daddy Issues-WEBRip-480p.mp4","size":114416848,"dateAdded":"2020-06-27T13:52:18.462147Z","sceneName":"Regular.Show.S06E03.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14678},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Terror Tales of the Park IV-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E04.Terror Tales of the Park IV-WEBRip-480p.mp4","size":225462680,"dateAdded":"2020-06-27T13:52:20.45371Z","sceneName":"Regular.Show.S06E04.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"22:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14679},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E05.The End of Muscle Man-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E05.The End of Muscle Man-WEBRip-480p.mp4","size":114696842,"dateAdded":"2020-06-27T13:52:25.710226Z","sceneName":"Regular.Show.S06E06.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14681},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Lift With Your Back-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E06.Lift With Your Back-WEBRip-480p.mp4","size":113440873,"dateAdded":"2020-06-27T13:52:27.324291Z","sceneName":"Regular.Show.S06E07.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14682},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Eileen Flat Screen-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E07.Eileen Flat Screen-WEBRip-480p.mp4","size":228006273,"dateAdded":"2020-06-27T13:52:29.186194Z","sceneName":"Regular.Show.S06E08.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14683},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E08.The Real Thomas - An Intern Special-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E08.The Real Thomas - An Intern Special-WEBRip-480p.mp4","size":119453387,"dateAdded":"2020-06-27T13:52:35.409239Z","sceneName":"Regular.Show.S06E09.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14684},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E09.White Elephant Gift Exchange-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E09.White Elephant Gift Exchange-WEBRip-480p.mp4","size":116832224,"dateAdded":"2020-06-27T13:52:38.405496Z","sceneName":"Regular.Show.S06E10.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14685},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E10.Merry Christmas Mordecai-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E10.Merry Christmas Mordecai-WEBRip-480p.mp4","size":113616713,"dateAdded":"2020-06-27T13:52:41.781122Z","sceneName":"Regular.Show.S06E11.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14686},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E11.Sad Sax-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E11.Sad Sax-WEBRip-480p.mp4","size":115486500,"dateAdded":"2020-06-27T13:52:44.26113Z","sceneName":"Regular.Show.S06E12.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14687},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Park Managers Lunch-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E12.Park Managers Lunch-WEBRip-480p.mp4","size":114562109,"dateAdded":"2020-06-27T13:52:46.352081Z","sceneName":"Regular.Show.S06E13.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14688},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E13.Mordecai and Rigby Down Under-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E13.Mordecai and Rigby Down Under-WEBRip-480p.mp4","size":115377395,"dateAdded":"2020-06-27T13:52:49.331204Z","sceneName":"Regular.Show.S06E14.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14689},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Married and Broke-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E14.Married and Broke-WEBRip-480p.mp4","size":118507724,"dateAdded":"2020-06-27T13:52:52.600656Z","sceneName":"Regular.Show.S06E15.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14690},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E15.I See Turtles-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E15.I See Turtles-WEBRip-480p.mp4","size":116572580,"dateAdded":"2020-06-27T13:52:56.212136Z","sceneName":"Regular.Show.S06E16.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14691},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E16.Format Wars II-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E16.Format Wars II-WEBRip-480p.mp4","size":116935431,"dateAdded":"2020-06-27T13:52:59.000731Z","sceneName":"Regular.Show.S06E17.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14692},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E17.Happy Birthday Song Contest-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E17.Happy Birthday Song Contest-WEBRip-480p.mp4","size":115010169,"dateAdded":"2020-06-27T13:53:01.2009Z","sceneName":"Regular.Show.S06E18.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14693},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E18.Benson's Suit-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E18.Benson's Suit-WEBRip-480p.mp4","size":115293182,"dateAdded":"2020-06-27T13:53:03.281882Z","sceneName":"Regular.Show.S06E19.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14694},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E19.Gamers Never Say Die-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E19.Gamers Never Say Die-WEBRip-480p.mp4","size":118976501,"dateAdded":"2020-06-27T13:53:05.16671Z","sceneName":"Regular.Show.S06E20.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14695},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E20.1000th Chopper Flight Party-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E20.1000th Chopper Flight Party-WEBRip-480p.mp4","size":116272095,"dateAdded":"2020-06-27T13:53:08.319189Z","sceneName":"Regular.Show.S06E21.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14696},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E21.Party Horse-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E21.Party Horse-WEBRip-480p.mp4","size":118139523,"dateAdded":"2020-06-27T13:53:10.270312Z","sceneName":"Regular.Show.S06E22.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14697},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E22.Men in Uniform-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E22.Men in Uniform-WEBRip-480p.mp4","size":113530276,"dateAdded":"2020-06-27T13:53:14.523894Z","sceneName":"Regular.Show.S06E23.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14698},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E23.Garage Door-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E23.Garage Door-WEBRip-480p.mp4","size":231727143,"dateAdded":"2020-06-27T13:53:16.99515Z","sceneName":"Regular.Show.S06E24.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14699},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E24.Brilliant Century Duck Crisis Special-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E24.Brilliant Century Duck Crisis Special-WEBRip-480p.mp4","size":114555740,"dateAdded":"2020-06-27T13:53:21.064227Z","sceneName":"Regular.Show.S06E25.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14700},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E25.Not Great Double Date-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E25.Not Great Double Date-WEBRip-480p.mp4","size":112376704,"dateAdded":"2020-06-27T13:53:22.58652Z","sceneName":"Regular.Show.S06E26.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14701},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E26.Death Kwon Do-Livery-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E26.Death Kwon Do-Livery-WEBRip-480p.mp4","size":118752452,"dateAdded":"2020-06-27T13:53:24.370392Z","sceneName":"Regular.Show.S06E27.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14702},{"seriesId":158,"seasonNumber":6,"relativePath":"Season 06\/S06E27.Lunch Break-WEBRip-480p.mp4","path":"\/tv\/Regular Show\/Season 06\/S06E27.Lunch Break-WEBRip-480p.mp4","size":115151382,"dateAdded":"2020-06-27T13:53:27.668588Z","sceneName":"Regular.Show.S06E28.WEBRip.x264-ION10","releaseGroup":"ION10","language":{"id":1,"name":"English"},"quality":{"quality":{"id":12,"name":"WEBRip-480p","source":"webRip","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256004,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1100000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x400","runTime":"11:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14703}],"queue":[]},"205":{"series":{"title":"Digimon: Digital Monsters","alternateTitles":[{"title":"Digimon Adventure","sceneSeasonNumber":1},{"title":"Digimon Adventure 02","sceneSeasonNumber":2},{"title":"Digimon Adventure Zero Two","sceneSeasonNumber":2},{"title":"Digimon Zero Two","sceneSeasonNumber":2}],"sortTitle":"digimon digital monsters","status":"ended","ended":true,"overview":"\"Digimon\" are \"Digital Monsters\". According to the stories, they are inhabitants of the \"Digital World\", a manifestation of Earth's communication network. The stories tell of a group of mostly pre-teens, the \"Chosen Children\" (DigiDestined in the English version), who accompany special Digimon born to defend their world (and ours) from various evil forces. To help them surmount the most difficult obstacles found within both realms, the Digimon have the ability to evolve (Digivolve). In this process, the Digimon change appearance and become much stronger, often changing in personality as well. The group of children who come in contact with the Digital World changes from season to season.","previousAiring":"2001-03-25T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/188\/banner.jpg?lastWrite=637064113845807580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/72241-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/188\/poster.jpg?lastWrite=637103832557796320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/72241-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/188\/fanart.jpg?lastWrite=637103832553316400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/72241-6.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":13,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2000-03-26T00:00:00Z","episodeFileCount":54,"episodeCount":54,"totalEpisodeCount":54,"sizeOnDisk":56318043465,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2001-03-25T00:00:00Z","episodeFileCount":50,"episodeCount":50,"totalEpisodeCount":50,"sizeOnDisk":22044987779,"percentOfEpisodes":100.0}}],"year":1999,"path":"\/tv\/Digimon - Digital Monsters","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":72241,"tvRageId":3311,"tvMazeId":1517,"firstAired":"1999-03-07T00:00:00Z","seriesType":"standard","cleanTitle":"digimondigitalmonsters","imdbId":"tt0210418","titleSlug":"digimon-digital-monsters","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Animation","Anime"],"tags":[],"added":"2019-10-11T17:23:03.019832Z","ratings":{"votes":1349,"value":7.7},"statistics":{"seasonCount":2,"episodeFileCount":104,"episodeCount":104,"totalEpisodeCount":117,"sizeOnDisk":78363031244,"percentOfEpisodes":100.0},"id":188},"episodes":[{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Digimon Adventure: The Movie","airDate":"1999-03-06","airDateUtc":"1999-03-06T00:00:00Z","overview":"This 20-minute motion picture was the original pilot for the Digimon Adventure series, and tells, in more detail, the story that was regaled in Ep. 20 of Adventures. The story of the mysterious Digimon sighting and battle outside the Hieghton Veiw Terrace, where all the Chosen Children live.\r\n\r\nWhen Taichi's little sister, Hikari, finds an Egg on their computer. The egg comes to life, hatching into a Digital Monster. Taichi and Hikari befriend Koromon, as the monster calls itself. However, when another Digimon is warped into the human world, Koromon evolves, and a battle between the two takes place, leaving Taichi and Hikari as helpless bystanders. The kids first encounter with Digimon shape them into the heroes they become in the series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14151},{"seriesId":188,"episodeFileId":10057,"seasonNumber":1,"episodeNumber":1,"title":"And So It Begins...","airDate":"1999-03-07","airDateUtc":"1999-03-07T00:00:00Z","overview":"Seven kids are warped into a strange digital world where they get monsters for companions. Can they find a way home?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14164},{"seriesId":188,"episodeFileId":10058,"seasonNumber":1,"episodeNumber":2,"title":"The Birth of Greymon","airDate":"1999-03-14","airDateUtc":"1999-03-14T00:00:00Z","overview":"After being chased away by Kuwagamon, the digi-destined arrive at a beach where none of the phones work. Then Shelldramon arrives, and the Digimon are too weak to help. Can the kids or any of the digimon find a way to defeat him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14165},{"seriesId":188,"episodeFileId":10059,"seasonNumber":1,"episodeNumber":3,"title":"Garurumon","airDate":"1999-03-21","airDateUtc":"1999-03-21T00:00:00Z","overview":"The digital world continues to have more monsters attack the kids. Can their digimon find a way to digivolve and keep their friends from being eaten?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14166},{"seriesId":188,"episodeFileId":10060,"seasonNumber":1,"episodeNumber":4,"title":"Biyomon Gets Firepower","airDate":"1999-03-28","airDateUtc":"1999-03-28T00:00:00Z","overview":"Izzy figures out how the Digimon can digivolve. Can Biyomon master the skills to save her friends now, or will the fire Digimon Meramon destroy the kids and their friends?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14167},{"seriesId":188,"episodeFileId":10061,"seasonNumber":1,"episodeNumber":5,"title":"Kabuterimon's Electro Shocker","airDate":"1999-04-04","airDateUtc":"1999-04-04T00:00:00Z","overview":"Izzy finds computer code in a strange factory. What does this code have to do with Tentomon getting hotter and hotter, and can it help them free Andromon from a black gear?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14168},{"seriesId":188,"episodeFileId":10062,"seasonNumber":1,"episodeNumber":6,"title":"Togemon in Toy Town","airDate":"1999-04-11","airDateUtc":"1999-04-11T00:00:00Z","overview":"After escaping in the sewers, the digidestined meet the strange Numemon who fall in love with Mimi. Can the digidestined get away from them, and if they do, what could be worse outside?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14169},{"seriesId":188,"episodeFileId":10063,"seasonNumber":1,"episodeNumber":7,"title":"Ikkakumon's Harpoon Torpedo","airDate":"1999-04-18","airDateUtc":"1999-04-18T00:00:00Z","overview":"Joe fills he must take some leadership because he is the oldest, but when he heads off on his own, trouble is the result. Can anyone protect him from his own ambitions?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14170},{"seriesId":188,"episodeFileId":10064,"seasonNumber":1,"episodeNumber":8,"title":"Evil Shows His Face","airDate":"1999-04-25","airDateUtc":"1999-04-25T00:00:00Z","overview":"Leomon is looking for the digidestined to help them in the battle. Instead of finding the digidestined, he is turned into a slave by Devimon. Can he find some way to get free, or will he be forced to destroy the digidestined?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14171},{"seriesId":188,"episodeFileId":10065,"seasonNumber":1,"episodeNumber":9,"title":"Subzero Ice Punch!","airDate":"1999-05-02","airDateUtc":"1999-05-02T00:00:00Z","overview":"After being seperated from the others, Tai and Agumon find themselves in Freeze Land. Can they find the other digidestined and defeat Devimon, or will they look for their clothes first?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14172},{"seriesId":188,"episodeFileId":10066,"seasonNumber":1,"episodeNumber":10,"title":"A Clue From the Digi-Past","airDate":"1999-05-09","airDateUtc":"1999-05-09T00:00:00Z","overview":"After being chased off the island they were on, Mimi and Palmon find Izzy and Tentomon in a set of ruins. What awaits them in the ruins?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14173},{"seriesId":188,"episodeFileId":10067,"seasonNumber":1,"episodeNumber":11,"title":"The Dancing Digimon","airDate":"1999-05-16","airDateUtc":"1999-05-16T00:00:00Z","overview":"Joe, Sora, Gomamon, and Biyomon get back together on an island with a church where they find a group of people. Are these people real, or is something more hideous being hidden from them?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14174},{"seriesId":188,"episodeFileId":10068,"seasonNumber":1,"episodeNumber":12,"title":"DigiBaby Boom","airDate":"1999-05-23","airDateUtc":"1999-05-23T00:00:00Z","overview":"Devimon decides to focus on the one Digimon that hasn't digivolved since he knows he can defeat the others. What does this mean for TK and Patamon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14175},{"seriesId":188,"episodeFileId":10069,"seasonNumber":1,"episodeNumber":13,"title":"The Legend of the Digidestined","airDate":"1999-05-30","airDateUtc":"1999-05-30T00:00:00Z","overview":"TK and Patamon are attacked by Leomon. Can the others arrive to save them, and if they do, how can they defeat Devimon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14176},{"seriesId":188,"episodeFileId":10070,"seasonNumber":1,"episodeNumber":14,"title":"Departure For a New Continent","airDate":"1999-06-06","airDateUtc":"1999-06-06T00:00:00Z","overview":"The mysterious man named Gennai reveals that the kids can't return home until they've defeated the evil on his island. To do so, their Digimon need to digivolve again. How can this be achieved?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14177},{"seriesId":188,"episodeFileId":10071,"seasonNumber":1,"episodeNumber":15,"title":"The Dark Network of Etemon","airDate":"1999-06-13","airDateUtc":"1999-06-13T00:00:00Z","overview":"With Whamon's help, the kids arrive at Server earlier than expected. They head toward a Koromon village, but no Koromon are in sight. What has happened to them?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14178},{"seriesId":188,"episodeFileId":10072,"seasonNumber":1,"episodeNumber":16,"title":"The Arrival of SkullGreymon","airDate":"1999-06-20","airDateUtc":"1999-06-20T00:00:00Z","overview":"With Augumon being the only one that can get to Ultimate form now, Tai decides to give him special treatment, but when Etemon sends an evil Greymon to deal with the kids, what will be the results?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14179},{"seriesId":188,"episodeFileId":10073,"seasonNumber":1,"episodeNumber":17,"title":"The Crest of Sincerity","airDate":"1999-06-27","airDateUtc":"1999-06-27T00:00:00Z","overview":"When Gennai appears and questions the kids abilities, the digimon wonder if they're being taken care of. How can the digi-destined prove to their Digimon that they know how to take care of them properly?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14180},{"seriesId":188,"episodeFileId":10074,"seasonNumber":1,"episodeNumber":18,"title":"The Piximon Cometh","airDate":"1999-07-04","airDateUtc":"1999-07-04T00:00:00Z","overview":"When Agumon and Tai begin doubting themselves, it's up to Piximon to show them the way. Can they pass his test?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14181},{"seriesId":188,"episodeFileId":10075,"seasonNumber":1,"episodeNumber":19,"title":"The Prisoner of the Pyramid","airDate":"1999-07-11","airDateUtc":"1999-07-11T00:00:00Z","overview":"When TK's crest is found, an e-mail comes to Izzy claiming he can help them if they will free him. Should they trust this unknown source?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14182},{"seriesId":188,"episodeFileId":10076,"seasonNumber":1,"episodeNumber":20,"title":"The Earthquake of MetalGreymon","airDate":"1999-07-25","airDateUtc":"1999-07-25T00:00:00Z","overview":"Tai and company realize that Sora and Datamon never left the pyramid, so they figure out where Datamon is at. Tai, Izzy, Agumon, and Tentomon plan a rescue mission, but they'll have to go through an electric wall to succeed. Can Tai master the courage and show he deserves the Crest of Courage?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14183},{"seriesId":188,"episodeFileId":10077,"seasonNumber":1,"episodeNumber":21,"title":"Home Away From Home","airDate":"1999-08-01","airDateUtc":"1999-08-01T00:00:00Z","overview":"When Tai and Agumon realize they are on Earth, they wonder who else has followed them there. What will be the consquences?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14184},{"seriesId":188,"episodeFileId":10078,"seasonNumber":1,"episodeNumber":22,"title":"Forget About It!","airDate":"1999-08-08","airDateUtc":"1999-08-08T00:00:00Z","overview":"When Agumon and Tai find Tokomon abandoned, they wonder what they can do to reunite the entire team.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14185},{"seriesId":188,"episodeFileId":10079,"seasonNumber":1,"episodeNumber":23,"title":"WereGarurumon's Diner","airDate":"1999-08-15","airDateUtc":"1999-08-15T00:00:00Z","overview":"Joe's gets tricked into working at a diner, but Matt agrees to help him. What will happen when Joe's gets framed for accidents? Will the team's friendship be broken for good?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14186},{"seriesId":188,"episodeFileId":10080,"seasonNumber":1,"episodeNumber":24,"title":"No Questions, Please","airDate":"1999-08-22","airDateUtc":"1999-08-22T00:00:00Z","overview":"Your individuality is what makes you you, but what happens when you give up yourself? Izzy is about to find out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14187},{"seriesId":188,"episodeFileId":10081,"seasonNumber":1,"episodeNumber":25,"title":"Princess Karaoke","airDate":"1999-08-29","airDateUtc":"1999-08-29T00:00:00Z","overview":"Mimi is found with the royal treatment, and she doesn't want to leave. Can Joe and Tai manage to convience her of the truth, or will they be punished instead?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14188},{"seriesId":188,"episodeFileId":10082,"seasonNumber":1,"episodeNumber":26,"title":"Sora's Crest of Love","airDate":"1999-09-05","airDateUtc":"1999-09-05T00:00:00Z","overview":"The 6 digidestined reunite and are led to Sora by Birdramon. Sora tells them what Demidevimon has told her, that she'll never be able to love, so her Crest of Love is useless. Can the others help her see how false this is?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14189},{"seriesId":188,"episodeFileId":10083,"seasonNumber":1,"episodeNumber":27,"title":"The Gateway to Home","airDate":"1999-09-12","airDateUtc":"1999-09-12T00:00:00Z","overview":"Myotismon and the digidestined discover that an eigth child in Japan is the key to saving the digital world. Now it's a race to the gate that will take everyone to the real world, but who can reach the 8th child first?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":27,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14190},{"seriesId":188,"episodeFileId":10084,"seasonNumber":1,"episodeNumber":28,"title":"It's All in the Cards","airDate":"1999-09-19","airDateUtc":"1999-09-19T00:00:00Z","overview":"After Myotismon has escaped to the real world, the kids must use a set of cards from Gennai to open the gate. Will they be able to put the cards in the right place, or will the real world be terrorized by Myotismon without any help?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":28,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14191},{"seriesId":188,"episodeFileId":10085,"seasonNumber":1,"episodeNumber":29,"title":"Return to Highton View Terrace","airDate":"1999-09-26","airDateUtc":"1999-09-26T00:00:00Z","overview":"After returning to the real world, the kids must figure out how to defeat Myotismon, but why are he and his minions searching Highton View Terrace?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":29,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14192},{"seriesId":188,"episodeFileId":10086,"seasonNumber":1,"episodeNumber":30,"title":"Almost Home Free","airDate":"1999-10-03","airDateUtc":"1999-10-03T00:00:00Z","overview":"The kids head to their homes to begin the search anew for the 8th Digi-destined child, but how will they get home when they use all their money on food and subway tickets only to sleep through their stop?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":30,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14193},{"seriesId":188,"episodeFileId":10087,"seasonNumber":1,"episodeNumber":31,"title":"The Eighth Digivice","airDate":"1999-10-10","airDateUtc":"1999-10-10T00:00:00Z","overview":"Tai begins to think that Kari is the 8th digidestined, and Izzy decides it's time to hide things from his step-parents, but when Izzy detects a new digivice, trouble begins anew. How can the digi-destined save the eigth child when Izzy's the only one awake?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":31,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14194},{"seriesId":188,"episodeFileId":10088,"seasonNumber":1,"episodeNumber":32,"title":"Gatomon Comes Calling","airDate":"1999-10-17","airDateUtc":"1999-10-17T00:00:00Z","overview":"The digi-destined decide to get together to search the city for the 8th child, but when Gatomon runs into Kari, she begins to suspect her. What does this mean for Kari?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":32,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14195},{"seriesId":188,"episodeFileId":10089,"seasonNumber":1,"episodeNumber":33,"title":"Out on the Town","airDate":"1999-10-24","airDateUtc":"1999-10-24T00:00:00Z","overview":"With another day of failures aside, the kids head home, but when TK and Matt run into two comic Digimon, they realize their day has only just begun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":33,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14196},{"seriesId":188,"episodeFileId":10090,"seasonNumber":1,"episodeNumber":34,"title":"The Eighth Child Revealed","airDate":"1999-10-31","airDateUtc":"1999-10-31T00:00:00Z","overview":"With help from Wizardmon, Gatomon finds out she's the 8th digimon. Tai and Agumon have a hard time accepting it until er and Wizardmon give Tai Kari's digivice so Myotismon won't know about her. What will happen to Gatomon when Myotismon discovers her true identity?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":34,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14197},{"seriesId":188,"episodeFileId":10091,"seasonNumber":1,"episodeNumber":35,"title":"Flower Power","airDate":"1999-11-07","airDateUtc":"1999-11-07T00:00:00Z","overview":"Myotismon decides to divide the kids and their parents into two groups as he overruns the city. Little does he know that the crests will allow something new to happen. What will it be?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":35,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14198},{"seriesId":188,"episodeFileId":10092,"seasonNumber":1,"episodeNumber":36,"title":"City Under Siege","airDate":"1999-11-14","airDateUtc":"1999-11-14T00:00:00Z","overview":"While Tai and company try to figure out how to free the parents and kids being held hostage, TK and Joe try to figure out how to get back into the city to help fight Myotismon. What will come of it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":36,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14199},{"seriesId":188,"episodeFileId":10093,"seasonNumber":1,"episodeNumber":37,"title":"Wizardmon's Gift","airDate":"1999-11-21","airDateUtc":"1999-11-21T00:00:00Z","overview":"The digi-destined must try and save Kari from Myotismon. Can Gatomon save the day, or will Wizardmon pay the ultimate price?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":37,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14200},{"seriesId":188,"episodeFileId":10094,"seasonNumber":1,"episodeNumber":38,"title":"Prophecy","airDate":"1999-11-28","airDateUtc":"1999-11-28T00:00:00Z","overview":"The digi-destined must learn how to warp digivolve before VenomMyotismon succeeds in eating their parents. Will they succeed?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":38,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14201},{"seriesId":188,"episodeFileId":10095,"seasonNumber":1,"episodeNumber":39,"title":"The Battle For Earth","airDate":"1999-12-05","airDateUtc":"1999-12-05T00:00:00Z","overview":"When Wargreymon and Metalgarurumon don't have the power to defeat Venommyotismon, it's up to the kids to remember the prophecy of the digivice. Can their tags and crests have the same type of effect?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":39,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14202},{"seriesId":188,"episodeFileId":10096,"seasonNumber":1,"episodeNumber":40,"title":"Enter the Dark Masters","airDate":"1999-12-12","airDateUtc":"1999-12-12T00:00:00Z","overview":"When the digi-destined return to the digital world, they find things in even more chaos than before. Can their new mega Digimon defeat the unknown Dark Masters who are causing the chaos?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":40,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14203},{"seriesId":188,"episodeFileId":10097,"seasonNumber":1,"episodeNumber":41,"title":"Sea-Sick and Tired","airDate":"1999-12-19","airDateUtc":"1999-12-19T00:00:00Z","overview":"The digi-destined realize their digimon most once again grow stronger if they are to defeat the Dark Masters, but when Metal SeaDramon's henchmen put them to sleep, can their digimon prove they've gained strength?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":41,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14204},{"seriesId":188,"episodeFileId":10098,"seasonNumber":1,"episodeNumber":42,"title":"Under Pressure","airDate":"1999-12-26","airDateUtc":"1999-12-26T00:00:00Z","overview":"When Whamon saves the digi-destined, a water chase ensues. Can the kids sucessfully avoid Metal Seadramon and his Divermon henchmon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":42,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14205},{"seriesId":188,"episodeFileId":10099,"seasonNumber":1,"episodeNumber":43,"title":"Playing Games","airDate":"2000-01-09","airDateUtc":"2000-01-09T00:00:00Z","overview":"When Whamon gives his life to save the digi-destined, Wargreymon must save the day, but even if he succeeds, what will Puppetmon have in store for the digi-destined?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":43,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14206},{"seriesId":188,"episodeFileId":10100,"seasonNumber":1,"episodeNumber":44,"title":"Trash Day","airDate":"2000-01-16","airDateUtc":"2000-01-16T00:00:00Z","overview":"When Matt goes missing, the others begin a search grid trying to find him, but will they succeed when they are being chased by a bunch of Garbagemon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":44,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14207},{"seriesId":188,"episodeFileId":10101,"seasonNumber":1,"episodeNumber":45,"title":"The Ultimate Clash","airDate":"2000-01-23","airDateUtc":"2000-01-23T00:00:00Z","overview":"When an unknown entity takes over Kari's body, the digi-destined's future will change forever, but will it stop the fight between Tai and Matt?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":45,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14208},{"seriesId":188,"episodeFileId":10102,"seasonNumber":1,"episodeNumber":46,"title":"Etemon's Comeback Tour","airDate":"2000-01-30","airDateUtc":"2000-01-30T00:00:00Z","overview":"When old enemies return (MetalEtemon and Ogremon), the kids must wonder how they can defeat 2 mega digimon. Perhaps an old friend can go mega to help them out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":46,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14209},{"seriesId":188,"episodeFileId":10103,"seasonNumber":1,"episodeNumber":47,"title":"Ogremon's Honor","airDate":"2000-02-06","airDateUtc":"2000-02-06T00:00:00Z","overview":"Can Ogremon become friends with his old enemy Leomon to help defeat MetalEtemon, and can the others defeat the RedVegiemon so they can finally finish off Puppetmon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":47,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14210},{"seriesId":188,"episodeFileId":10104,"seasonNumber":1,"episodeNumber":48,"title":"My Sister's Keeper","airDate":"2000-02-13","airDateUtc":"2000-02-13T00:00:00Z","overview":"When Kari falls sick, Machinedramon decides it's the perfect time to attack. Can Tai and Izzy find medicine for Kari while dodging Machinedramon's attacks, or will they meet an unpleasant doom?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":48,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14211},{"seriesId":188,"episodeFileId":10105,"seasonNumber":1,"episodeNumber":49,"title":"The Crest of Light","airDate":"2000-02-20","airDateUtc":"2000-02-20T00:00:00Z","overview":"The digi-destined have been seperated in the sewers. Can they reunite without running into WaruMonzaemon or Machinedramon, or will Andromon be able to come help them save the day?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":49,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14212},{"seriesId":188,"episodeFileId":10106,"seasonNumber":1,"episodeNumber":50,"title":"Joe's Battle","airDate":"2000-02-27","airDateUtc":"2000-02-27T00:00:00Z","overview":"Joe must find himself before facing the last of the Dark Masters. Meanwhile Angewomon and Wargreymon battle LadyDevimon. Can they succeed at defeating her to get through to Piedmon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":50,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14213},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Digimon Adventure: Our War Game","airDate":"2000-03-04","airDateUtc":"2000-03-04T00:00:00Z","overview":"This movie takes place after the Adventure series ends. It begins when a new Digimon Egg is found on the internet, and manages to penetrate into almost every computer system in Japan. When the egg hatches, it's identified as a new kind of Digimon, a Virus-type. It sustains itself by eating data from various system, and starts wreaking havok in Japan. As it consumes more and more data, it continues to evolve. And Taichi and Koushiro decide it's time to stop it.\r\n\r\nThey're off, sending Agumon and Tentomon through the internet to fight off this new enemy. But, with the Virus controlling systems like the American military, all too soon, this digital menace may become all too real. Calling in the help of Yamato and Takeru, they hope that they can stop what's already begun, and maybe save this world a second time.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14152},{"seriesId":188,"episodeFileId":10107,"seasonNumber":1,"episodeNumber":51,"title":"The Crest of Friendship","airDate":"2000-03-05","airDateUtc":"2000-03-05T00:00:00Z","overview":"When Matt and Joe regain their confidence, they are ready to help in the battle against Piedmon, but when Sora arrives in their weird dimension, she must overcome her own doubts as well. Can Matt and Joe help Sora gain her confidence back?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":51,"sceneEpisodeNumber":51,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14214},{"seriesId":188,"episodeFileId":10108,"seasonNumber":1,"episodeNumber":52,"title":"Piedmon's Last Jest","airDate":"2000-03-12","airDateUtc":"2000-03-12T00:00:00Z","overview":"Piedmon reveals his final attack, a white cloth that turns anyone it covers into key chains. Can TK and kari help Angemon digivolve to even the score with Piedmon, and can Mimi arrive in time for the final battle?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":52,"sceneEpisodeNumber":52,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14215},{"seriesId":188,"episodeFileId":10109,"seasonNumber":1,"episodeNumber":53,"title":"Now Apocalymon","airDate":"2000-03-19","airDateUtc":"2000-03-19T00:00:00Z","overview":"Apocalymon arrives and destroys the kids crest and tags making them doubt themselves. can their digimon help them regain their confidence so the digital and real worlds can be saved?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":53,"sceneEpisodeNumber":53,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14216},{"seriesId":188,"episodeFileId":10110,"seasonNumber":1,"episodeNumber":54,"title":"The Fate of Two Worlds","airDate":"2000-03-26","airDateUtc":"2000-03-26T00:00:00Z","overview":"The kids chest begin to glow with their crests. It indicates that the power for their digimon to digivolve always came from their hearts. Their digimon digivolve to their ultimate and mega forms, but can they defeat Apocalyamon?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":54,"sceneEpisodeNumber":54,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14217},{"seriesId":188,"episodeFileId":18602,"seasonNumber":2,"episodeNumber":1,"title":"Enter Flamedramon","airDate":"2000-04-02","airDateUtc":"2000-04-02T00:00:00Z","overview":"When the original digi-destined Digimon can't digivolve due to a new Black digivice, a new group of digi-destined must be called, but who will be a part of that team, and how can they digivolve if their predecessors can't?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14218},{"seriesId":188,"episodeFileId":18629,"seasonNumber":2,"episodeNumber":2,"title":"The Digiteam Complete","airDate":"2000-04-09","airDateUtc":"2000-04-09T00:00:00Z","overview":"When Davis gets captured, it's up to Cody and Yolei to save the day, but first they must find their digimon partners and digieggs. Can Sora and Izzi help them in doing so?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14219},{"seriesId":188,"episodeFileId":18664,"seasonNumber":2,"episodeNumber":3,"title":"A New Digitude","airDate":"2000-04-16","airDateUtc":"2000-04-16T00:00:00Z","overview":"The new digi-destined return to the Digital World only to have the Digimon Emperoror spoil their fun. Can TK and Kari help Gatomon and Patamon to digivolve, and if so what will it mean for the rest of the team?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14220},{"seriesId":188,"episodeFileId":18695,"seasonNumber":2,"episodeNumber":4,"title":"Iron Vegiemon","airDate":"2000-04-23","airDateUtc":"2000-04-23T00:00:00Z","overview":"When Gabumon gets captured by the digimon emperor, Matt decides to return to the digital world, but can they find a way to get Gabumon to digivolve and help out in the battle?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14221},{"seriesId":188,"episodeFileId":18725,"seasonNumber":2,"episodeNumber":5,"title":"Old Reliable","airDate":"2000-04-30","airDateUtc":"2000-04-30T00:00:00Z","overview":"Gomamon contacts Joe to let him know what the Digimon Emperor's next target is. Can the digi-destined save the day in a world of snow, especially without the help of Cody, who Joe's having to take care of?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14222},{"seriesId":188,"episodeFileId":18751,"seasonNumber":2,"episodeNumber":6,"title":"Family Picnic","airDate":"2000-05-07","airDateUtc":"2000-05-07T00:00:00Z","overview":"Mimi returns to Japan for a visit and decides to accompany the new digi-destined to the digital world, but what has become of Palmon and all the digimon that think of her as a princess?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14223},{"seriesId":188,"episodeFileId":18830,"seasonNumber":2,"episodeNumber":7,"title":"Guardian Angel","airDate":"2000-05-14","airDateUtc":"2000-05-14T00:00:00Z","overview":"Kari gets caught in the digital world when the Tv is destroyed, but can the rest of the gang find a way to save her?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14224},{"seriesId":188,"episodeFileId":18850,"seasonNumber":2,"episodeNumber":8,"title":"Ken's Secret","airDate":"2000-05-21","airDateUtc":"2000-05-21T00:00:00Z","overview":"Davis has a soccer game against the defending champs, but an even bigger event occurs when the Digimon Emperor's identity is revealed. Who will it end up being?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14225},{"seriesId":188,"episodeFileId":18874,"seasonNumber":2,"episodeNumber":9,"title":"The Emperor's New Home","airDate":"2000-05-28","airDateUtc":"2000-05-28T00:00:00Z","overview":"Ken leaves the real world because his identity has been revealed, but when he targets Agumon for control, can the digi-destined find some way to free their friend?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14226},{"seriesId":188,"episodeFileId":12843,"seasonNumber":2,"episodeNumber":10,"title":"The Captive Digimon","airDate":"2000-06-04","airDateUtc":"2000-06-04T00:00:00Z","overview":"The kids find out where Ken is holding Agumon and decide to free him, but will they be successful?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14227},{"seriesId":188,"episodeFileId":12844,"seasonNumber":2,"episodeNumber":11,"title":"Storm of Friendship","airDate":"2000-06-11","airDateUtc":"2000-06-11T00:00:00Z","overview":"The digi-destined find a new digi-egg, but can they use it to free Agumon from Ken's control, and just who will get to use this new digi-egg?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14228},{"seriesId":188,"episodeFileId":12845,"seasonNumber":2,"episodeNumber":12,"title":"The Good, the Bad, and the Digi","airDate":"2000-06-18","airDateUtc":"2000-06-18T00:00:00Z","overview":"When Biyomon gets a warrant for her arrest out, it's up to the digi-destined to prove her innocence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14229},{"seriesId":188,"episodeFileId":12846,"seasonNumber":2,"episodeNumber":13,"title":"His Master's Voice","airDate":"2000-06-25","airDateUtc":"2000-06-25T00:00:00Z","overview":"Kari was seeing visions about an ocean and a village. She realized that someone was desperately calling for help so she answered it. She went to the Village, what could be waiting for her in that small village?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14230},{"seriesId":188,"episodeFileId":12847,"seasonNumber":2,"episodeNumber":14,"title":"The Samurai of Sincerity","airDate":"2000-07-02","airDateUtc":"2000-07-02T00:00:00Z","overview":"The digi-destined return to the digital world in search of a new digi-egg, but can Yolei's lack of trust help them or hurt them?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14231},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Digimon Adventure 02: Digimon Hurricane Touchdown! Supreme Evolution! The Golden Digimentals","airDate":"2000-07-08","airDateUtc":"2000-07-08T00:00:00Z","overview":"Occurring in the summer during 02, Takeru and Hikari are vacationing in America, visiting their friend Mimi. However, a mysterious wind passes over the world, and suddenly all the original Chosen Children have disappeared. Hikari feels the presence of a 'crying Digimon', and they follow her feeling to where a young American boy is facing off a large Digimon with his Digimon partner. It seems that the boy knows this monster he's fighting, and tells his partner not to hurt it. After being struck a few times, it disappears, and the boy runs away from Hikari and Takeru.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14153},{"seriesId":188,"episodeFileId":12848,"seasonNumber":2,"episodeNumber":15,"title":"Big Trouble in Little Edo","airDate":"2000-07-16","airDateUtc":"2000-07-16T00:00:00Z","overview":"The Digimon Emperor builds a new control tower in Little Edo, and he manages to take over Shogangekomon with a dark spiral. Can the digi-destined free them without the help of Shurimon, who has a samurai battle of his own to attend to?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14232},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Digimon Adventure 3D: Digimon Grand Prix!","airDate":"2000-07-20","airDateUtc":"2000-07-20T00:00:00Z","overview":"Originally screened at the Time Machine of Dreams theme park attraction at Sanrio Puroland from July 20, 2000 to June 23, 2002 and Harmonyland. It made its theatrical debut on October 3, 2009. Together with Digimon Savers 3D: Digital World Kiki Ippatsu!, and 2 other CG anime works by Toei, it was released on DVD February 21, 2010.\r\nA short movie of a hilarious race among our beloved Digimon Adventure 01 and 02 digimons.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14154},{"seriesId":188,"episodeFileId":12849,"seasonNumber":2,"episodeNumber":16,"title":"20,000 Digi-Leagues Under the Sea","airDate":"2000-07-23","airDateUtc":"2000-07-23T00:00:00Z","overview":"The digi-destined search under the seas for a new digi-egg, but the Digimon Emperor sends Megaseadramon down to take them out. When Cody's the only one that can fit in the escape pod, he goes out for help, but can Joe and Ikkakumon arrive in time to save the day, or will the new digi-egg end up being the answer?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14233},{"seriesId":188,"episodeFileId":12850,"seasonNumber":2,"episodeNumber":17,"title":"Ghost of a Chance","airDate":"2000-07-30","airDateUtc":"2000-07-30T00:00:00Z","overview":"The digi-destined of the past and present, including Mimi, meet together to remember the day they defeat Myotismon, but when strange events begin occuring at the TV station, they're the only ones that can save the day, but will they?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14234},{"seriesId":188,"episodeFileId":12851,"seasonNumber":2,"episodeNumber":18,"title":"Run Yolei Run","airDate":"2000-08-06","airDateUtc":"2000-08-06T00:00:00Z","overview":"The digi-destined arrive in the digital world to find it full of control spires. When they realize Ken is taking over everything, they decide to come back to the digital world and not leave until Ken and his base is defetaed, but what will be the consquences?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14235},{"seriesId":188,"episodeFileId":12852,"seasonNumber":2,"episodeNumber":19,"title":"An Old Enemy Returns","airDate":"2000-08-13","airDateUtc":"2000-08-13T00:00:00Z","overview":"Ken goes to get the final piece for his ultimate Digimon creation, but it makes TK start to go crazy. Is there any way TK can defeat Ken in a one on one battle?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14236},{"seriesId":188,"episodeFileId":12853,"seasonNumber":2,"episodeNumber":20,"title":"The Darkness Before Dawn","airDate":"2000-08-20","airDateUtc":"2000-08-20T00:00:00Z","overview":"When Ken's base is finally brought down, it's up to the digi-destined to find a way to free Ken from the powers of darkness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14237},{"seriesId":188,"episodeFileId":12854,"seasonNumber":2,"episodeNumber":21,"title":"The Crest of Kindness","airDate":"2000-08-27","airDateUtc":"2000-08-27T00:00:00Z","overview":"It's Magnamon versus Chimeramon in the fight to save the digital world, but when Magnamon begins to run out of power, is there any one who can save him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14238},{"seriesId":188,"episodeFileId":12855,"seasonNumber":2,"episodeNumber":22,"title":"Davis Cries Wolfmon","airDate":"2000-09-03","airDateUtc":"2000-09-03T00:00:00Z","overview":"Davis thinks he must make Veemon digivolve to impress Kari, but will his plan backfire when they want to fix the digital world?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14239},{"seriesId":188,"episodeFileId":12856,"seasonNumber":2,"episodeNumber":23,"title":"Genesis of Evil","airDate":"2000-09-10","airDateUtc":"2000-09-10T00:00:00Z","overview":"Ken must discover his true self by searching out his past, but what horrors await him, and why did he become the Emperor in the first place?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14240},{"seriesId":188,"episodeFileId":12857,"seasonNumber":2,"episodeNumber":24,"title":"If I Had a Tail Hammer","airDate":"2000-09-17","airDateUtc":"2000-09-17T00:00:00Z","overview":"The mysterious shadow from before appears in Kens room and calls him a disgrace for being the Emperor, but who is this mysterious person, and why is she reactivating the control spires?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14241},{"seriesId":188,"episodeFileId":12858,"seasonNumber":2,"episodeNumber":25,"title":"Spirit Needle","airDate":"2000-09-24","airDateUtc":"2000-09-24T00:00:00Z","overview":"While Davis thinks Ken has changed, the others aren't so sure, but their ready to fight when Golemon attaks the dam protecting Primary Village. Can they bring themselves to destroy Golemon though?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14242},{"seriesId":188,"episodeFileId":12859,"seasonNumber":2,"episodeNumber":26,"title":"United We Stand","airDate":"2000-10-01","airDateUtc":"2000-10-01T00:00:00Z","overview":"When Arukenimon reveals that she plans to destory the digital world, it's up to the digi-destined to find a way to defeat her, but can they do it when she keeps creating her own monsters to fight them?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14243},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Digimon: The Movie","airDate":"2000-10-06","airDateUtc":"2000-10-06T00:00:00Z","overview":"A compilation film with footage from the featurettes Digimon Adventure (1999), Digimon Adventure: Children's War Game! (2000), and Digimon Adventure 02: Part 1: Digimon Hurricane Touchdown!!\/Part 2: Supreme Evolution!! The Golden Digimentals (2000). It was released in the U.S. and Canada by Fox Kids","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14155},{"seriesId":188,"episodeFileId":12860,"seasonNumber":2,"episodeNumber":27,"title":"Fusion Confusion","airDate":"2000-10-08","airDateUtc":"2000-10-08T00:00:00Z","overview":"After saving the digi-world with Ken, the kids begin to wonder how DNA Digivolution works. Can always knowledable Izzy provide them with the information?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"sceneAbsoluteEpisodeNumber":27,"sceneEpisodeNumber":27,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14244},{"seriesId":188,"episodeFileId":12861,"seasonNumber":2,"episodeNumber":28,"title":"The Insect Master's Trap","airDate":"2000-10-15","airDateUtc":"2000-10-15T00:00:00Z","overview":"Arukenimon ends up having the ability to control insect digimon, and she manages to turn Stingmon and Digmon against the kids. Can the digi-destined find a way to free them from her control, or are they about to be defeated?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"sceneAbsoluteEpisodeNumber":28,"sceneEpisodeNumber":28,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14245},{"seriesId":188,"episodeFileId":12862,"seasonNumber":2,"episodeNumber":29,"title":"Arukenimon's Tangled Web","airDate":"2000-10-22","airDateUtc":"2000-10-22T00:00:00Z","overview":"With Davis, Cody, and Ken trapped in Dokugaon's web, it's up to Ex-Veemon to free his friends from Arukenimon's control, but is it possible, or will Yolei, TK, and Kari have to save the day?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"sceneAbsoluteEpisodeNumber":29,"sceneEpisodeNumber":29,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14246},{"seriesId":188,"episodeFileId":12863,"seasonNumber":2,"episodeNumber":30,"title":"Ultimate Anti-Hero","airDate":"2000-10-29","airDateUtc":"2000-10-29T00:00:00Z","overview":"Can Ken and Cody start to have a friendship, or will Ken be forced to go off on his own? Also, what is Arukenimon going to create next?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"sceneAbsoluteEpisodeNumber":30,"sceneEpisodeNumber":30,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14247},{"seriesId":188,"episodeFileId":12864,"seasonNumber":2,"episodeNumber":31,"title":"Opposites Attract","airDate":"2000-11-05","airDateUtc":"2000-11-05T00:00:00Z","overview":"When Gatomon realizes she's in the part of the digital world where she lost her tail ring, the digi-destined decide to search for the tail ring thinking that it may give Gatomon the ability to digivolve again to ultimate, but when the Dark Ocean world comes after Ken and Kari, only Yolei can save them. Will she succeed, or can Arukenimon give a hand to their destruction?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"sceneAbsoluteEpisodeNumber":31,"sceneEpisodeNumber":31,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14248},{"seriesId":188,"episodeFileId":12865,"seasonNumber":2,"episodeNumber":32,"title":"If I Only Had a Heart","airDate":"2000-11-12","airDateUtc":"2000-11-12T00:00:00Z","overview":"Arukenimon and Mummymon decide to try and destroy the destiny stones, but when an unknown digimon is shown in the stones Black Wargreymon decides it's his ultimate enemy, and the only way to draw him out is by destroying all the stones. Can the digi-destined stop him with 2 DNA digimon, or is the digital world doomed?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"sceneAbsoluteEpisodeNumber":32,"sceneEpisodeNumber":32,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14249},{"seriesId":188,"episodeFileId":12866,"seasonNumber":2,"episodeNumber":33,"title":"A Chance Encounter","airDate":"2000-11-19","airDateUtc":"2000-11-19T00:00:00Z","overview":"Yolei leaves Poromon with the others when she has to go on a field trip, but when unknown portals open allowing digimon into the real world, Yolei must find a way to make them return home. Can she do it without her digimon partner?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"sceneAbsoluteEpisodeNumber":33,"sceneEpisodeNumber":33,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14250},{"seriesId":188,"episodeFileId":12867,"seasonNumber":2,"episodeNumber":34,"title":"Destiny in Doubt","airDate":"2000-11-26","airDateUtc":"2000-11-26T00:00:00Z","overview":"Everybody decides to fly to the next destiny stone on their digimon, but TK decides to stay behind and walk with Cody since Armadillomon doesn't have a flying form. Can they get to the destiny stone in time to defeat Blackwargreymon, or are the others doomed to be destroyed?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"sceneAbsoluteEpisodeNumber":34,"sceneEpisodeNumber":34,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14251},{"seriesId":188,"episodeFileId":12868,"seasonNumber":2,"episodeNumber":35,"title":"Cody Takes a Stand","airDate":"2000-12-03","airDateUtc":"2000-12-03T00:00:00Z","overview":"With only 3 destiny stones left the digi-destined must find a way to defeat Black WarGreymon. When one of them is found at the bottom of the ocean, only Submarimon can save it, but will a bunch of champion digimon in the ocean be able to defeat Black WarGreymon, or will only 1 destiny stone be left to save?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"sceneAbsoluteEpisodeNumber":35,"sceneEpisodeNumber":35,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14252},{"seriesId":188,"episodeFileId":12869,"seasonNumber":2,"episodeNumber":36,"title":"Stone Soup","airDate":"2000-12-10","airDateUtc":"2000-12-10T00:00:00Z","overview":"The search for the final destiny stone begins, but when the digimon become hungry and need additional strength it's up to the kids to make Stone Soup to save the day. Can Cody and TK finally DNA digivolve with some home cooking?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"sceneAbsoluteEpisodeNumber":36,"sceneEpisodeNumber":36,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14253},{"seriesId":188,"episodeFileId":12870,"seasonNumber":2,"episodeNumber":37,"title":"Kyoto Dragon","airDate":"2000-12-17","airDateUtc":"2000-12-17T00:00:00Z","overview":"With the last destiny stone discovered, and Shakkakumon formed, can the digi destined find a way to save the stone, or can another mega save the day?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":91,"sceneAbsoluteEpisodeNumber":37,"sceneEpisodeNumber":37,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14254},{"seriesId":188,"episodeFileId":12871,"seasonNumber":2,"episodeNumber":38,"title":"A Very Digi Christmas","airDate":"2000-12-24","airDateUtc":"2000-12-24T00:00:00Z","overview":"It's Christmas Eve, so Ken invites the younger digi-destined to a Christmas party while the older ones go to Matt's concert, but there fun is at an end when Control Spires begin appearing in the real world. Can the digi-destined save the day against real digimon in the real world?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":92,"sceneAbsoluteEpisodeNumber":38,"sceneEpisodeNumber":38,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14255},{"seriesId":188,"episodeFileId":12872,"seasonNumber":2,"episodeNumber":39,"title":"Dramon Power","airDate":"2000-12-24","airDateUtc":"2000-12-24T00:25:00Z","overview":"Control spires continue to appear over the entire world, but all the digi-ports have also been opened causing more trouble. Can the digi-destined rely on Genni to come up with an answer to their problems like he did in days past?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":93,"sceneAbsoluteEpisodeNumber":39,"sceneEpisodeNumber":39,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14256},{"seriesId":188,"episodeFileId":12873,"seasonNumber":2,"episodeNumber":40,"title":"Digimon World Tour (1)","airDate":"2001-01-14","airDateUtc":"2001-01-14T00:00:00Z","overview":"The digi-destined divide into teams of 2 to head to 6 specific locations, because only the D3's can open the digiports. New York and Hong Kong are the first 2 stops, but when the Digimon cause problems can new friends help them get out of a jam?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":94,"sceneAbsoluteEpisodeNumber":40,"sceneEpisodeNumber":40,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14257},{"seriesId":188,"episodeFileId":12874,"seasonNumber":2,"episodeNumber":41,"title":"Digimon World Tour (2)","airDate":"2001-01-21","airDateUtc":"2001-01-21T00:00:00Z","overview":"The quest to return all the digimon to the digital world continues in France and Australia. Also more new digi-destined arrive to join in on the fun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":95,"sceneAbsoluteEpisodeNumber":41,"sceneEpisodeNumber":41,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14258},{"seriesId":188,"episodeFileId":12875,"seasonNumber":2,"episodeNumber":42,"title":"Digimon World Tour (3)","airDate":"2001-01-28","airDateUtc":"2001-01-28T00:00:00Z","overview":"The World Tour ends in Moscow and Mexico City, but will the emmense heat in one spot and the emmense cold in the other prevent the digi-destined from saving the day?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":96,"sceneAbsoluteEpisodeNumber":42,"sceneEpisodeNumber":42,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14259},{"seriesId":188,"episodeFileId":12876,"seasonNumber":2,"episodeNumber":43,"title":"Invasion of the Daemon Corps","airDate":"2001-02-04","airDateUtc":"2001-02-04T00:00:00Z","overview":"The digi-destined return to Japan to discover that kids have gone missing, and new digimon appear. To make things worse Arukenimon and Mummymon appear to be involved. Can they solve this riddle, or will Ken have to give himself up to find those kids?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":97,"sceneAbsoluteEpisodeNumber":43,"sceneEpisodeNumber":43,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14260},{"seriesId":188,"episodeFileId":12877,"seasonNumber":2,"episodeNumber":44,"title":"Dark Sun, Dark Spore","airDate":"2001-02-11","airDateUtc":"2001-02-11T00:00:00Z","overview":"Without the assistance of Imperialdramon, the digi-destined face off against Lady Devimon and her forces. Will Lady Devimon go back to the digital world willingly, or will Yolei be faced with the toughest challenge of her life?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":98,"sceneAbsoluteEpisodeNumber":44,"sceneEpisodeNumber":44,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14261},{"seriesId":188,"episodeFileId":12878,"seasonNumber":2,"episodeNumber":45,"title":"The Dark Gate","airDate":"2001-02-18","airDateUtc":"2001-02-18T00:00:00Z","overview":"The kids must defeat Daemon before he can destroy Ken, but when Daemon reveals he can travel back and forth from the digital world, the kids must figure out another place to send him to.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":99,"sceneAbsoluteEpisodeNumber":45,"sceneEpisodeNumber":45,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14262},{"seriesId":188,"episodeFileId":12879,"seasonNumber":2,"episodeNumber":46,"title":"Duel of the WarGreymon","airDate":"2001-02-25","airDateUtc":"2001-02-25T00:00:00Z","overview":"Black WarGreymon decides to destroy Arukenimon and Mummymon to free himself from any possible control. Agumon is forcde to Warpdigivolve into WarGreymon to stop him. Who will end up prevailing in the battle of the WarGreymon's?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":100,"sceneAbsoluteEpisodeNumber":46,"sceneEpisodeNumber":46,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14263},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Digimon Adventure 02: Revenge of Diaboromon","airDate":"2001-03-03","airDateUtc":"2001-03-03T00:00:00Z","overview":"After the events of 02, everything is finally getting back to normal. That is, until a strangely familiar icon starts showing up on computer systems around the Japan. And not just computer systems... TVs, mobile phones, video games; anything with a screen with online capabilities. And this icon seems to be looking for someone... Yagami Taichi, and Ishida Yamato, who defeated it several years before. Yes, it turns out that this jellyfish digimon is in fact Diablomon, the Virus-type Digimon that was defeated in the second movie. But this time, he's learned to make himself physical, and is sending thousands of copies of himself into the real world.\r\nKoushiro and Ken devise a plan to rid the world of the virus once and for all, but it'll take the help of all the Destined, past and present. Once again, it's a race against time to put a stop to Diablomon's plot... but even that is cloaked in shadow.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14156},{"seriesId":188,"episodeFileId":12880,"seasonNumber":2,"episodeNumber":47,"title":"BlackWarGreymon's Destiny","airDate":"2001-03-04","airDateUtc":"2001-03-04T00:00:00Z","overview":"BlackWarGreymon finally realizes his destiny, to make sure no one can use the Highton View Terrace gate again. Will the digi-destined help him out, or do they think he has another destiny?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":101,"sceneAbsoluteEpisodeNumber":47,"sceneEpisodeNumber":47,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14264},{"seriesId":188,"episodeFileId":12881,"seasonNumber":2,"episodeNumber":48,"title":"Oikawa's Shame","airDate":"2001-03-11","airDateUtc":"2001-03-11T00:00:00Z","overview":"The kids with the Dark Spores reveal they were told the Dark Spores were their key to the digital world, but it ends up that Myotismon was behind everything so he could gain a new body. The final battle with Myotismon is about to begin, but in what world will it be?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":102,"sceneAbsoluteEpisodeNumber":48,"sceneEpisodeNumber":48,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14265},{"seriesId":188,"episodeFileId":12882,"seasonNumber":2,"episodeNumber":49,"title":"The Last Temptation of the DigiDestined","airDate":"2001-03-18","airDateUtc":"2001-03-18T00:00:00Z","overview":"MaloMyotismon captures all the kids in fantasy worlds and decides to take over all the world with his new power. Can the digi-destined realize reality and stop him?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":103,"sceneAbsoluteEpisodeNumber":49,"sceneEpisodeNumber":49,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14266},{"seriesId":188,"episodeFileId":12883,"seasonNumber":2,"episodeNumber":50,"title":"A Million Points of Light","airDate":"2001-03-25","airDateUtc":"2001-03-25T00:00:00Z","overview":"All the digi-destined from around the world and their digimon gather to watch the final battle between MaloMyotismon and the new digi-destined. Who will end up being the victor?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":104,"sceneAbsoluteEpisodeNumber":50,"sceneEpisodeNumber":50,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14267},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Digimon Adventure tri. Part 1: Reunion","airDate":"2015-11-21","airDateUtc":"2015-11-21T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14157},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Digimon Adventure tri. Part 2: Determination","airDate":"2016-03-12","airDateUtc":"2016-03-12T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14158},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Digimon Adventure tri. Part 3: Confession","airDate":"2016-09-24","airDateUtc":"2016-09-24T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14159},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Digimon Adventure tri. Part 4: Loss","airDate":"2017-02-25","airDateUtc":"2017-02-25T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14160},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Digimon Adventure tri. Part 5: Coexistence","airDate":"2017-09-30","airDateUtc":"2017-09-30T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14161},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Digimon Adventure tri. Part 6: Future","airDate":"2018-05-05","airDateUtc":"2018-05-05T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14162},{"seriesId":188,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Digimon Adventure: Last Evolution Kizuna","airDate":"2020-01-21","airDateUtc":"2020-01-21T00:00:00Z","overview":"The team discovers that when they grow up, their relationship with their Digimon will come closer to an end. They realize that the more they fight, the faster their bond breaks and the time to choose is approaching fast.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":14163}],"episodeFile":[{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E01.And So It Begins-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E01.And So It Begins-Bluray-1080p.mkv","size":1008279645,"dateAdded":"2019-11-05T20:43:18.135228Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":708721,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English \/ Japanese","audioStreamCount":3,"videoBitDepth":0,"videoBitrate":4794061,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10057},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Birth of Greymon-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E02.The Birth of Greymon-Bluray-1080p.mkv","size":1116850141,"dateAdded":"2019-11-05T20:43:18.198107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":730871,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English \/ Japanese","audioStreamCount":3,"videoBitDepth":0,"videoBitrate":5381453,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:09","scanType":"","subtitles":"English \/ English \/ English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10058},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Garurumon-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E03.Garurumon-Bluray-1080p.mkv","size":1069194992,"dateAdded":"2019-11-05T20:43:18.2543Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":707377,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5340878,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10059},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Biyomon Gets Firepower [a.k.a. Fireman's Ball]-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E04.Biyomon Gets Firepower [a.k.a. Fireman's Ball]-Bluray-1080p.mkv","size":1108835971,"dateAdded":"2019-11-05T20:43:18.308098Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120545,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6084397,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10060},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Kabuterimon's Electro Shocker-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E05.Kabuterimon's Electro Shocker-Bluray-1080p.mkv","size":975748398,"dateAdded":"2019-11-05T20:43:18.3633Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":121046,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5298584,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10061},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Togemon in Toy Town-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E06.Togemon in Toy Town-Bluray-1080p.mkv","size":1046793391,"dateAdded":"2019-11-05T20:43:18.416753Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120877,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5708013,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"24:00","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10062},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Ikkakumon's Harpoon Torpedo-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E07.Ikkakumon's Harpoon Torpedo-Bluray-1080p.mkv","size":847277807,"dateAdded":"2019-11-05T20:43:18.470656Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":121410,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4557117,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"24:00","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10063},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Evil Shows His Face-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E08.Evil Shows His Face-Bluray-1080p.mkv","size":884597812,"dateAdded":"2019-11-05T20:43:18.524642Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119207,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4775025,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"24:00","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10064},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Subzero Ice Punch!-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E09.Subzero Ice Punch!-Bluray-1080p.mkv","size":1062757182,"dateAdded":"2019-11-05T20:43:18.579914Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120842,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese \/ ","audioStreamCount":3,"videoBitDepth":0,"videoBitrate":5105876,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"24:00","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10065},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E10.A Clue From the Digi-Past-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E10.A Clue From the Digi-Past-Bluray-1080p.mkv","size":988877909,"dateAdded":"2019-11-05T20:43:18.633662Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119454,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5376400,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"29:01","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10066},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Dancing Digimon-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E11.The Dancing Digimon-Bluray-1080p.mkv","size":985582674,"dateAdded":"2019-11-05T20:43:18.687733Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119060,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5358175,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10067},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E12.DigiBaby Boom-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E12.DigiBaby Boom-Bluray-1080p.mkv","size":989614342,"dateAdded":"2019-11-05T20:43:18.742388Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118587,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5381551,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10068},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Legend of the Digidestined-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E13.The Legend of the Digidestined-Bluray-1080p.mkv","size":916883183,"dateAdded":"2019-11-05T20:43:18.798498Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119021,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4961649,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10069},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Departure For a New Continent-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E14.Departure For a New Continent-Bluray-1080p.mkv","size":1002140752,"dateAdded":"2019-11-05T20:43:18.853953Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118718,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5452372,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10070},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Dark Network of Etemon-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E15.The Dark Network of Etemon-Bluray-1080p.mkv","size":1071646314,"dateAdded":"2019-11-05T20:43:18.907852Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118899,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5853628,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10071},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Arrival of Skullgreymon [a.k.a. The Arrival of Scar Greymon]-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E16.The Arrival of Skullgreymon [a.k.a. The Arrival of Scar Greymon]-Bluray-1080p.mkv","size":1078885472,"dateAdded":"2019-11-05T20:43:18.963344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119187,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5896652,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10072},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E17.The Crest of Sincerity-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E17.The Crest of Sincerity-Bluray-1080p.mkv","size":1113241551,"dateAdded":"2019-11-05T20:43:19.020943Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118740,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6095089,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10073},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Piximon Cometh-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E18.The Piximon Cometh-Bluray-1080p.mkv","size":1002713937,"dateAdded":"2019-11-05T20:43:19.078964Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119390,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5456635,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10074},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Prisoner of the Pyramid (1)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E19.The Prisoner of the Pyramid (1)-Bluray-1080p.mkv","size":787561815,"dateAdded":"2019-11-05T20:43:19.13488Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119397,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4213443,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10075},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Earthquake of MetalGreymon (2)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E20.The Earthquake of MetalGreymon (2)-Bluray-1080p.mkv","size":1032225582,"dateAdded":"2019-11-05T20:43:19.189575Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119153,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5627265,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10076},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Home Away From Home-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E21.Home Away From Home-Bluray-1080p.mkv","size":883462469,"dateAdded":"2019-11-05T20:43:19.247513Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119583,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4766713,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10077},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Forget About It!-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E22.Forget About It!-Bluray-1080p.mkv","size":1055827095,"dateAdded":"2019-11-05T20:43:19.30188Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119265,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5763298,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10078},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E23.WereGarurumon's Diner [a.k.a. WereGarurumon's Dinner]-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E23.WereGarurumon's Diner [a.k.a. WereGarurumon's Dinner]-Bluray-1080p.mkv","size":876503617,"dateAdded":"2019-11-05T20:43:19.357585Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4727359,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10079},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E24.No Questions, Please-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E24.No Questions, Please-Bluray-1080p.mkv","size":867530642,"dateAdded":"2019-11-05T20:43:19.423592Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119185,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4676549,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10080},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Princess Karaoke [a.k.a. Princess Karoake]-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E25.Princess Karaoke [a.k.a. Princess Karoake]-Bluray-1080p.mkv","size":1042739819,"dateAdded":"2019-11-05T20:43:19.480685Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119585,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5687470,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10081},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Sora's Crest of Love-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E26.Sora's Crest of Love-Bluray-1080p.mkv","size":873355655,"dateAdded":"2019-11-05T20:43:19.534786Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119081,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4709988,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10082},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E27.The Gateway to Home (1)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E27.The Gateway to Home (1)-Bluray-1080p.mkv","size":993858958,"dateAdded":"2019-11-05T20:43:19.590707Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118773,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5475744,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10083},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E28.It's All in the Cards (2)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E28.It's All in the Cards (2)-Bluray-1080p.mkv","size":999929767,"dateAdded":"2019-11-05T20:43:19.643837Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118543,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5511180,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10084},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E29.Return to Highton View Terrace-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E29.Return to Highton View Terrace-Bluray-1080p.mkv","size":1055135893,"dateAdded":"2019-11-05T20:43:19.699655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119274,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5828479,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10085},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E30.Almost Home Free-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E30.Almost Home Free-Bluray-1080p.mkv","size":955260176,"dateAdded":"2019-11-05T20:43:19.754328Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118757,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5253365,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10086},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E31.The Eighth Digivice-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E31.The Eighth Digivice-Bluray-1080p.mkv","size":844381970,"dateAdded":"2019-11-05T20:43:19.809869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118994,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4612417,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10087},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E32.Gatomon Comes Calling-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E32.Gatomon Comes Calling-Bluray-1080p.mkv","size":1042667589,"dateAdded":"2019-11-05T20:43:19.862483Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118960,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5757428,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10088},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E33.Out on the Town-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E33.Out on the Town-Bluray-1080p.mkv","size":862810348,"dateAdded":"2019-11-05T20:43:19.918037Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118901,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4719781,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10089},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E34.The Eighth Child Revealed (1)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E34.The Eighth Child Revealed (1)-Bluray-1080p.mkv","size":829744407,"dateAdded":"2019-11-05T20:43:19.985601Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":118868,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":4528144,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10090},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Flower Power (2)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E35.Flower Power (2)-Bluray-1080p.mkv","size":934893939,"dateAdded":"2019-11-05T20:43:20.171896Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119085,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5134958,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10091},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E36.City Under Siege (3)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E36.City Under Siege (3)-Bluray-1080p.mkv","size":1010570770,"dateAdded":"2019-11-05T20:43:20.233826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5500350,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10092},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E37.Wizardmon's Gift (4)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E37.Wizardmon's Gift (4)-Bluray-1080p.mkv","size":1131846324,"dateAdded":"2019-11-05T20:43:20.295563Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6129355,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10093},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E38.Prophecy-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E38.Prophecy-Bluray-1080p.mkv","size":1109313690,"dateAdded":"2019-11-05T20:43:20.359393Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5999627,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10094},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E39.The Battle For Earth-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E39.The Battle For Earth-Bluray-1080p.mkv","size":1165625095,"dateAdded":"2019-11-05T20:43:20.428545Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6322894,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10095},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E40.Enter the Dark Masters-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E40.Enter the Dark Masters-Bluray-1080p.mkv","size":1284047171,"dateAdded":"2019-11-05T20:43:20.490763Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":7008354,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10096},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E41.Sea-Sick and Tired-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E41.Sea-Sick and Tired-Bluray-1080p.mkv","size":1270389657,"dateAdded":"2019-11-05T20:43:20.553577Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6929131,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10097},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E42.Under Pressure-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E42.Under Pressure-Bluray-1080p.mkv","size":1160659649,"dateAdded":"2019-11-05T20:43:20.617361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6295782,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10098},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E43.Playing Games-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E43.Playing Games-Bluray-1080p.mkv","size":1203261856,"dateAdded":"2019-11-05T20:43:20.678729Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6541614,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10099},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E44.Trash Day-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E44.Trash Day-Bluray-1080p.mkv","size":1161017294,"dateAdded":"2019-11-05T20:43:20.741045Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6297783,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10100},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E45.The Ultimate Clash-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E45.The Ultimate Clash-Bluray-1080p.mkv","size":1250905402,"dateAdded":"2019-11-05T20:43:20.802966Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6816625,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10101},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E46.Etemon's Comeback Tour-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E46.Etemon's Comeback Tour-Bluray-1080p.mkv","size":1232447355,"dateAdded":"2019-11-05T20:43:20.865597Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6710449,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10102},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E47.Ogremon's Honor-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E47.Ogremon's Honor-Bluray-1080p.mkv","size":1246441322,"dateAdded":"2019-11-05T20:43:20.927346Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6790854,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10103},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E48.My Sister's Keeper-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E48.My Sister's Keeper-Bluray-1080p.mkv","size":1136916701,"dateAdded":"2019-11-05T20:43:20.989273Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6158433,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10104},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E49.The Crest of Light-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E49.The Crest of Light-Bluray-1080p.mkv","size":1159666143,"dateAdded":"2019-11-05T20:43:21.052578Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6289337,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:06","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10105},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E50.Joe's Battle-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E50.Joe's Battle-Bluray-1080p.mkv","size":1177271752,"dateAdded":"2019-11-05T20:43:21.115078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese \/ ","audioStreamCount":3,"videoBitDepth":0,"videoBitrate":5732704,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10106},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E51.The Crest of Friendship-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E51.The Crest of Friendship-Bluray-1080p.mkv","size":942279351,"dateAdded":"2019-11-05T20:43:21.175455Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":5034936,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10107},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E52.Piedmon's Last Jest-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E52.Piedmon's Last Jest-Bluray-1080p.mkv","size":1219009700,"dateAdded":"2019-11-05T20:43:21.238826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6632639,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10108},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E53.Now Apocalymon (1) [a.k.a. Apocalymon Now (1)]-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E53.Now Apocalymon (1) [a.k.a. Apocalymon Now (1)]-Bluray-1080p.mkv","size":1158265541,"dateAdded":"2019-11-05T20:43:21.301078Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6281595,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"23:05","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10109},{"seriesId":188,"seasonNumber":1,"relativePath":"Season 01\/S01E54.The Fate of Two Worlds (2)-Bluray-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 01\/S01E54.The Fate of Two Worlds (2)-Bluray-1080p.mkv","size":1090297478,"dateAdded":"2019-11-05T20:43:21.363559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":0,"videoBitrate":6006827,"videoCodec":"h265","videoFps":23.976,"resolution":"1440x1080","runTime":"22:40","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":10110},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Captive Digimon (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E10.The Captive Digimon (2)-HDTV-1080p.mkv","size":240701928,"dateAdded":"2020-04-11T23:14:28.596782Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1137752,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12843},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Storm of Friendship (3)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E11.Storm of Friendship (3)-HDTV-1080p.mkv","size":245572832,"dateAdded":"2020-04-11T23:14:31.272695Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1165267,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12844},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Good, the Bad, and the Digi-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E12.The Good, the Bad, and the Digi-HDTV-1080p.mkv","size":220192740,"dateAdded":"2020-04-11T23:14:33.478932Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1021687,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12845},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E13.His Master's Voice-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E13.His Master's Voice-HDTV-1080p.mkv","size":183023519,"dateAdded":"2020-04-11T23:14:35.611461Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":811410,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12846},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E14.The Samurai of Sincerity-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E14.The Samurai of Sincerity-HDTV-1080p.mkv","size":224574598,"dateAdded":"2020-04-11T23:14:38.765363Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1046475,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12847},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Big Trouble in Little Edo-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E15.Big Trouble in Little Edo-HDTV-1080p.mkv","size":253491363,"dateAdded":"2020-04-11T23:14:42.47734Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1209977,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12848},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E16.20,000 Digi-Leagues Under the Sea-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E16.20,000 Digi-Leagues Under the Sea-HDTV-1080p.mkv","size":214324364,"dateAdded":"2020-04-11T23:14:45.364509Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":988488,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12849},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Ghost of a Chance-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E17.Ghost of a Chance-HDTV-1080p.mkv","size":187368080,"dateAdded":"2020-04-11T23:14:48.733605Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":835989,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12850},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Run Yolei Run [a.k.a. Run Yolie Run] (1)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E18.Run Yolei Run [a.k.a. Run Yolie Run] (1)-HDTV-1080p.mkv","size":205242183,"dateAdded":"2020-04-11T23:14:50.76753Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":937107,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12851},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E19.An Old Enemy Returns (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E19.An Old Enemy Returns (2)-HDTV-1080p.mkv","size":200129629,"dateAdded":"2020-04-11T23:14:53.442444Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":908184,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12852},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E20.The Darkness Before Dawn (3)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E20.The Darkness Before Dawn (3)-HDTV-1080p.mkv","size":192438019,"dateAdded":"2020-04-11T23:14:55.61517Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":864671,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12853},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E21.The Crest of Kindness (4)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E21.The Crest of Kindness (4)-HDTV-1080p.mkv","size":224247170,"dateAdded":"2020-04-11T23:14:58.000263Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1044623,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12854},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Davis Cries Wolfmon [a.k.a. Davis Cries Wolfman]-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E22.Davis Cries Wolfmon [a.k.a. Davis Cries Wolfman]-HDTV-1080p.mkv","size":245880855,"dateAdded":"2020-04-11T23:15:01.179127Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1167010,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12855},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Genesis of Evil-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E23.Genesis of Evil-HDTV-1080p.mkv","size":185230492,"dateAdded":"2020-04-11T23:15:04.077419Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":823895,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12856},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E24.If I Had a Tail Hammer-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E24.If I Had a Tail Hammer-HDTV-1080p.mkv","size":217508869,"dateAdded":"2020-04-11T23:15:07.433374Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1006503,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12857},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E25.Spirit Needle-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E25.Spirit Needle-HDTV-1080p.mkv","size":233330781,"dateAdded":"2020-04-11T23:15:10.824468Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1096011,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12858},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E26.United We Stand (1)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E26.United We Stand (1)-HDTV-1080p.mkv","size":229322628,"dateAdded":"2020-04-11T23:15:13.481118Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1073336,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12859},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E27.Fusion Confusion (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E27.Fusion Confusion (2)-HDTV-1080p.mkv","size":197426091,"dateAdded":"2020-04-11T23:15:15.661847Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":892890,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12860},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E28.The Insect Master's Trap (1)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E28.The Insect Master's Trap (1)-HDTV-1080p.mkv","size":262076985,"dateAdded":"2020-04-11T23:15:18.497602Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1258635,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12861},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E29.Arukenimon's Tangled Web (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E29.Arukenimon's Tangled Web (2)-HDTV-1080p.mkv","size":223011720,"dateAdded":"2020-04-11T23:15:20.956828Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1037634,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12862},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E30.Ultimate Anti-Hero-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E30.Ultimate Anti-Hero-HDTV-1080p.mkv","size":226342638,"dateAdded":"2020-04-11T23:15:23.920906Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1056400,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12863},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E31.Opposites Attract-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E31.Opposites Attract-HDTV-1080p.mkv","size":181813905,"dateAdded":"2020-04-11T23:15:26.63634Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":804567,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12864},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E32.If I Only Had a Heart-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E32.If I Only Had a Heart-HDTV-1080p.mkv","size":215908208,"dateAdded":"2020-04-11T23:15:28.430075Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":997448,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12865},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E33.A Chance Encounter-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E33.A Chance Encounter-HDTV-1080p.mkv","size":215960029,"dateAdded":"2020-04-11T23:15:31.728775Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":997741,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12866},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E34.Destiny in Doubt-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E34.Destiny in Doubt-HDTV-1080p.mkv","size":244311029,"dateAdded":"2020-04-11T23:15:34.961858Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1158129,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12867},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E35.Cody Takes a Stand-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E35.Cody Takes a Stand-HDTV-1080p.mkv","size":227016604,"dateAdded":"2020-04-11T23:15:38.306926Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1060291,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12868},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E36.Stone Soup (1)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E36.Stone Soup (1)-HDTV-1080p.mkv","size":263820248,"dateAdded":"2020-04-11T23:15:41.621772Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1268498,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12869},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E37.Kyoto Dragon (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E37.Kyoto Dragon (2)-HDTV-1080p.mkv","size":227205150,"dateAdded":"2020-04-11T23:15:44.83889Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1061280,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12870},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E38.A Very Digi Christmas-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E38.A Very Digi Christmas-HDTV-1080p.mkv","size":207777440,"dateAdded":"2020-04-11T23:15:47.972198Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900970,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"24:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12871},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E39.Dramon Power-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E39.Dramon Power-HDTV-1080p.mkv","size":213057692,"dateAdded":"2020-04-11T23:15:51.13579Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":981321,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12872},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E40.Digimon World Tour (1)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E40.Digimon World Tour (1)-HDTV-1080p.mkv","size":210612890,"dateAdded":"2020-04-11T23:15:53.680744Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":967490,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12873},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E41.Digimon World Tour (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E41.Digimon World Tour (2)-HDTV-1080p.mkv","size":270683808,"dateAdded":"2020-04-11T23:15:56.211044Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1307327,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12874},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E42.Digimon World Tour (3)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E42.Digimon World Tour (3)-HDTV-1080p.mkv","size":279912671,"dateAdded":"2020-04-11T23:16:00.466974Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1359441,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12875},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E43.Invasion of the Daemon Corps-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E43.Invasion of the Daemon Corps-HDTV-1080p.mkv","size":250079272,"dateAdded":"2020-04-11T23:16:04.606125Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1190676,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12876},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E44.Dark Sun, Dark Spore [a.k.a. Dark Sun, Dark Seed]-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E44.Dark Sun, Dark Spore [a.k.a. Dark Sun, Dark Seed]-HDTV-1080p.mkv","size":218730514,"dateAdded":"2020-04-11T23:16:08.059423Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1013413,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12877},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E45.The Dark Gate-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E45.The Dark Gate-HDTV-1080p.mkv","size":220399098,"dateAdded":"2020-04-11T23:16:10.663212Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1022778,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12878},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E46.Duel of the WarGreymon-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E46.Duel of the WarGreymon-HDTV-1080p.mkv","size":223734431,"dateAdded":"2020-04-11T23:16:13.658135Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1041645,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12879},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E47.BlackWarGreymon's Destiny-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E47.BlackWarGreymon's Destiny-HDTV-1080p.mkv","size":226318678,"dateAdded":"2020-04-11T23:16:16.348479Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1056342,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12880},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E48.Oikawa's Shame (1)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E48.Oikawa's Shame (1)-HDTV-1080p.mkv","size":258422600,"dateAdded":"2020-04-11T23:16:19.156741Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1237962,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12881},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E49.The Last Temptation of the DigiDestined (2)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E49.The Last Temptation of the DigiDestined (2)-HDTV-1080p.mkv","size":280847574,"dateAdded":"2020-04-11T23:16:23.109039Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1364825,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:05","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12882},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E50.A Million Points of Light (3)-HDTV-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E50.A Million Points of Light (3)-HDTV-1080p.mkv","size":224267909,"dateAdded":"2020-04-11T23:16:26.334239Z","sceneName":"Digimon Adventure 02","releaseGroup":"fullmetal","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1021332,"videoCodec":"x265","videoFps":23.976,"resolution":"1420x1080","runTime":"23:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12883},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Enter Flamedramon-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E01.Enter Flamedramon-WEBDL-1080p.mkv","size":1420065005,"dateAdded":"2021-07-04T02:48:37.235994Z","sceneName":"Digimon Adventure - 55 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18602},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Digiteam Complete-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E02.The Digiteam Complete-WEBDL-1080p.mkv","size":1418867488,"dateAdded":"2021-07-11T02:57:48.208183Z","sceneName":"Digimon Adventure - 56 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18629},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E03.A New Digitude-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E03.A New Digitude-WEBDL-1080p.mkv","size":1418880070,"dateAdded":"2021-07-18T02:53:07.92555Z","sceneName":"Digimon Adventure - 57 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18664},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Iron Vegiemon-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E04.Iron Vegiemon-WEBDL-1080p.mkv","size":1419296960,"dateAdded":"2021-07-25T03:03:22.07413Z","sceneName":"Digimon Adventure - 58 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18695},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Old Reliable-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E05.Old Reliable-WEBDL-1080p.mkv","size":1420326664,"dateAdded":"2021-08-01T03:06:10.796967Z","sceneName":"Digimon Adventure - 59 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18725},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Family Picnic-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E06.Family Picnic-WEBDL-1080p.mkv","size":1418221038,"dateAdded":"2021-08-08T02:53:37.226995Z","sceneName":"Digimon Adventure - 60 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18751},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Guardian Angel-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E07.Guardian Angel-WEBDL-1080p.mkv","size":1420519332,"dateAdded":"2021-08-15T03:00:24.567936Z","sceneName":"Digimon Adventure - 61 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18830},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Ken's Secret-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E08.Ken's Secret-WEBDL-1080p.mkv","size":1419268036,"dateAdded":"2021-08-22T02:52:59.660699Z","sceneName":"Digimon Adventure - 62 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18850},{"seriesId":188,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Emperor's New Home-WEBDL-1080p.mkv","path":"\/tv\/Digimon - Digital Monsters\/Season 02\/S02E09.The Emperor's New Home-WEBDL-1080p.mkv","size":1417225952,"dateAdded":"2021-08-29T09:53:07.269767Z","sceneName":"Digimon Adventure - 63 VOSTFR 1080p WEB x264 -NanDesuKa (CR)","releaseGroup":"NanDesuKa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18874}],"queue":[]},"207":{"series":{"title":"House of Cards (US)","alternateTitles":[{"title":"House of Cards 2013","seasonNumber":-1},{"title":"House of Cards","seasonNumber":5}],"sortTitle":"house cards us","status":"ended","ended":true,"overview":"Ruthless and cunning, Congressman Francis Underwood and his wife Claire stop at nothing to conquer everything. It penetrates the shadowy world of greed, sex and corruption in modern D.C.","previousAiring":"2018-11-02T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/211\/banner.jpg?lastWrite=637128911046070550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/262980-g5.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/211\/poster.jpg?lastWrite=637128911047470520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/262980-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/211\/fanart.jpg?lastWrite=637128911045030570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/262980-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-02-01T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":52460809994,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2014-02-14T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":51373412018,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2015-02-27T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":56329504635,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2016-03-04T08:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4870040836,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2017-05-30T07:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":55432197548,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2018-11-02T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":37541175784,"percentOfEpisodes":100.0}}],"year":2013,"path":"\/tv\/House of Cards (US)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":52,"tvdbId":262980,"tvRageId":27822,"tvMazeId":175,"firstAired":"2013-02-01T00:00:00Z","seriesType":"standard","cleanTitle":"housecardsus","imdbId":"tt1856010","titleSlug":"house-of-cards-us","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama"],"tags":[],"added":"2019-12-25T17:18:23.817856Z","ratings":{"votes":4719,"value":8.9},"statistics":{"seasonCount":6,"episodeFileCount":73,"episodeCount":73,"totalEpisodeCount":73,"sizeOnDisk":258007140815,"percentOfEpisodes":100.0},"id":211},"episodes":[{"seriesId":211,"episodeFileId":11009,"seasonNumber":1,"episodeNumber":1,"title":"Chapter 1","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"When the newly elected President reneges on a promise, Francis and Claire decide to sever all allegiances and toss the rules out the window.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":16772},{"seriesId":211,"episodeFileId":11010,"seasonNumber":1,"episodeNumber":2,"title":"Chapter 2","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Francis and Doug plan to frame Secretary of State nominee, Michael Kern. Meanwhile, Zoe's popularity at the Washington Herald continues to grow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":16773},{"seriesId":211,"episodeFileId":11011,"seasonNumber":1,"episodeNumber":3,"title":"Chapter 3","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Francis heads for his hometown to deal with a crisis. Zoe negotiates the politics of being a journalist on the rise. Claire finds herself a new business partner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":16774},{"seriesId":211,"episodeFileId":11012,"seasonNumber":1,"episodeNumber":4,"title":"Chapter 4","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Francis shakes down the Congressional leadership. Zoe is offered the promotion of White House Correspondent and doesn't know if she should take it or not.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":16775},{"seriesId":211,"episodeFileId":11013,"seasonNumber":1,"episodeNumber":5,"title":"Chapter 5","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"A feud starts between Francis and Marty Spinella. Russo goes into depression about the job losses at the shipyards.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":16776},{"seriesId":211,"episodeFileId":11014,"seasonNumber":1,"episodeNumber":6,"title":"Chapter 6","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"The strike between Frank and Marty starts to get out of hand. Russo has decided to run for Governor of Pennsylvania.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":16777},{"seriesId":211,"episodeFileId":11015,"seasonNumber":1,"episodeNumber":7,"title":"Chapter 7","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Frank helps Peter get ready for his governor race, but Peter is starting to have second thoughts. Doug tries to help a young hooker in trouble.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":16778},{"seriesId":211,"episodeFileId":11016,"seasonNumber":1,"episodeNumber":8,"title":"Chapter 8","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Frank has a library named after him at his old military school. Peter tries to win back the support of his hometown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":16779},{"seriesId":211,"episodeFileId":11017,"seasonNumber":1,"episodeNumber":9,"title":"Chapter 9","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Frank tries to do whatever it takes to get the new bill passed in Congress. Russo goes on a bus campaign with the Vice President, but the VP is not making it an easy trip for him. Zoe's relationship with Frank gets a little bumpy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":16780},{"seriesId":211,"episodeFileId":11018,"seasonNumber":1,"episodeNumber":10,"title":"Chapter 10","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Claire fuels an old flame. Peter wrestles with his demons. Francis crosses the point of no return.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":16781},{"seriesId":211,"episodeFileId":11019,"seasonNumber":1,"episodeNumber":11,"title":"Chapter 11","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Zoe extends her time away from The Hill while Francis tracks down Russo and engages in damage control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":16782},{"seriesId":211,"episodeFileId":11020,"seasonNumber":1,"episodeNumber":12,"title":"Chapter 12","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"The President sends Frank to St. Louis to persuade Raymond Tusk into becoming the new Vice President. Zoe and Janine investigate Peter Russo's death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":16783},{"seriesId":211,"episodeFileId":11021,"seasonNumber":1,"episodeNumber":13,"title":"Chapter 13","airDate":"2013-02-01","airDateUtc":"2013-02-01T08:00:00Z","overview":"Frank scrambles to keep his plan on track. Gillian is planning to sue Claire. Zoe, Janine, and Lucas investigate Rachel Posner and her relationship with Peter Russo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":16784},{"seriesId":211,"episodeFileId":11132,"seasonNumber":2,"episodeNumber":1,"title":"Chapter 14","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"The Underwoods tackle two threats that could bring their plans to ruin. Francis grooms his replacement as Whip. Claire goes on the offensive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":16785},{"seriesId":211,"episodeFileId":11133,"seasonNumber":2,"episodeNumber":2,"title":"Chapter 15","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Amid turmoil in the home, Frank takes office. Foreign relations become entangled as Durant's team bungles a meeting. As foes negotiate to thwart her, Jackie maneuvers to strengthen her position. Lucas acquires new skills in order to pursue his secret investigation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":16786},{"seriesId":211,"episodeFileId":11134,"seasonNumber":2,"episodeNumber":3,"title":"Chapter 16","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Tension rises between Francis and Raymond Tusk as the situation with China deteriorates. A battle in the Senate pits Francis against the Republicans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":16787},{"seriesId":211,"episodeFileId":11135,"seasonNumber":2,"episodeNumber":4,"title":"Chapter 17","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"A terror scare at the Capitol traps Francis with a resentful Donald Blythe. Claire gives a live interview that rocks the media.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":16788},{"seriesId":211,"episodeFileId":11136,"seasonNumber":2,"episodeNumber":5,"title":"Chapter 18","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Francis back-channels with a Chinese billionaire. Lucas uses extreme measures to expose the Vice President. A shadowy figure joins Team Underwood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":16789},{"seriesId":211,"episodeFileId":11137,"seasonNumber":2,"episodeNumber":6,"title":"Chapter 19","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Amidst an energy crisis, Francis and Tusk end their shaky alliance. Lucas must make a difficult choice. Stamper grows closer to Rachel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":16790},{"seriesId":211,"episodeFileId":11138,"seasonNumber":2,"episodeNumber":7,"title":"Chapter 20","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Despite some friction, the Walkers deepen their friendship with the Underwoods. But it's all-out war between Francis and Tusk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":16791},{"seriesId":211,"episodeFileId":11139,"seasonNumber":2,"episodeNumber":8,"title":"Chapter 21","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"The war with Tusk intensifies. Claire influences Tricia Walker politically and domestically. Francis has a show-down with Linda Vasquez.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":16792},{"seriesId":211,"episodeFileId":11140,"seasonNumber":2,"episodeNumber":9,"title":"Chapter 22","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Things get personal when Tusk blindsides the Underwoods with a scandal. Freddy and his BBQ joint get caught up in the mix.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":16793},{"seriesId":211,"episodeFileId":11141,"seasonNumber":2,"episodeNumber":10,"title":"Chapter 23","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"With a military stand-off overseas and potential violence at home, Francis wants to finish off Tusk for good. Claire and Jackie Sharp collide.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":16794},{"seriesId":211,"episodeFileId":11142,"seasonNumber":2,"episodeNumber":11,"title":"Chapter 24","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"A Special Prosecutor interrogates Francis. Remy Danton tries to keep his options open. Stamper wrestles with his demons.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":16795},{"seriesId":211,"episodeFileId":11143,"seasonNumber":2,"episodeNumber":12,"title":"Chapter 25","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Francis finds himself shut out and Claire makes a difficult sacrifice. Stamper tries to regain control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":16796},{"seriesId":211,"episodeFileId":11144,"seasonNumber":2,"episodeNumber":13,"title":"Chapter 26","airDate":"2014-02-14","airDateUtc":"2014-02-14T08:00:00Z","overview":"Francis faces annihilation while the nation is in an uproar. Stamper must tie up loose ends. Claire feels the cost of ruthlessness.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":16797},{"seriesId":211,"episodeFileId":11119,"seasonNumber":3,"episodeNumber":1,"title":"Chapter 27","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"A rocky start for the Underwood Presidency. Frank wants to introduce an ambitious jobs program, while Claire sets her sights on the United Nations.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":16798},{"seriesId":211,"episodeFileId":11120,"seasonNumber":3,"episodeNumber":2,"title":"Chapter 28","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Claire's U.N. bid runs into trouble. Frank fights off mutiny with a bold address to the country.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":16799},{"seriesId":211,"episodeFileId":11121,"seasonNumber":3,"episodeNumber":3,"title":"Chapter 29","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"The Russian president's state visit becomes a cold war of wills, and some punks heat things up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":16800},{"seriesId":211,"episodeFileId":11122,"seasonNumber":3,"episodeNumber":4,"title":"Chapter 30","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Claire bypasses Russia at the U.N. Frank tries to outmaneuver a potential challenger and ends up face to face with a higher power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":16801},{"seriesId":211,"episodeFileId":11123,"seasonNumber":3,"episodeNumber":5,"title":"Chapter 31","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Frank declares war on Congress to jump-start his jobs program. Claire spars with the Russian Ambassador.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":16802},{"seriesId":211,"episodeFileId":11124,"seasonNumber":3,"episodeNumber":6,"title":"Chapter 32","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Frank and Claire travel to Moscow to negotiate the return of an imprisoned U.S. citizen. Claire takes a stand that jeopardizes their plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":16803},{"seriesId":211,"episodeFileId":11125,"seasonNumber":3,"episodeNumber":7,"title":"Chapter 33","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"The damage is done and the Underwoods must repair it. But deep wounds don't heal fast, and sometimes not at all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":16804},{"seriesId":211,"episodeFileId":11126,"seasonNumber":3,"episodeNumber":8,"title":"Chapter 34","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"A hurricane endangers more than just the entire East Coast and Frank must make a difficult choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":16805},{"seriesId":211,"episodeFileId":11127,"seasonNumber":3,"episodeNumber":9,"title":"Chapter 35","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"The Jordan Valley erupts in chaos as Frank's campaign is picking up steam. Claire gets disturbing intel and counsels him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":16806},{"seriesId":211,"episodeFileId":11128,"seasonNumber":3,"episodeNumber":10,"title":"Chapter 36","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Frank needs to deal with Petrov one on one while Claire tries to preserve the peace-keeping mission. Sacrifices must be made.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":16807},{"seriesId":211,"episodeFileId":11129,"seasonNumber":3,"episodeNumber":11,"title":"Chapter 37","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Things turn ugly when Frank, Jackie, and Heather square off during their first debate. Tom joins Claire on the campaign trail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":16808},{"seriesId":211,"episodeFileId":11130,"seasonNumber":3,"episodeNumber":12,"title":"Chapter 38","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"Heather Dunbar goes for the jugular, forcing Claire to confront her worst fears. The rift between Frank and Claire widens.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":16809},{"seriesId":211,"episodeFileId":11131,"seasonNumber":3,"episodeNumber":13,"title":"Chapter 39","airDate":"2015-02-27","airDateUtc":"2015-02-27T08:00:00Z","overview":"In the midst of the Iowa caucuses, Frank and Claire must confront hard truths about each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":16810},{"seriesId":211,"episodeFileId":18412,"seasonNumber":4,"episodeNumber":1,"title":"Chapter 40","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Claire's absence causes problems for Frank on the campaign trail amid rumors of a marital rift. Claire tries to strike out on her own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":16811},{"seriesId":211,"episodeFileId":18413,"seasonNumber":4,"episodeNumber":2,"title":"Chapter 41","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"As Claire begins exploring a campaign of her own, she and Frank engage in backdoor political maneuvering. But this time they're not on the same side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":16812},{"seriesId":211,"episodeFileId":18414,"seasonNumber":4,"episodeNumber":3,"title":"Chapter 42","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Claire joins Frank as he stumps in South Carolina, but he doesn't trust her. A disastrous scandal blindsides Frank's campaign on primary day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":16813},{"seriesId":211,"episodeFileId":18415,"seasonNumber":4,"episodeNumber":4,"title":"Chapter 43","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Claire threatens Frank. Frank makes a politically bold move that may provoke Russia. An event at a campaign stop changes everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":16814},{"seriesId":211,"episodeFileId":18416,"seasonNumber":4,"episodeNumber":5,"title":"Chapter 44","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Claire advises Donald Blythe on dealing with Petrov. Further investigations of Lucas Goodwin dredges up his accusations against Frank.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":16815},{"seriesId":211,"episodeFileId":18417,"seasonNumber":4,"episodeNumber":6,"title":"Chapter 45","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Claire clashes with the Secretary of State over her involvement in negotiations with Russia. Dunbar must choose between her campaign and her ethics.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":16816},{"seriesId":211,"episodeFileId":18418,"seasonNumber":4,"episodeNumber":7,"title":"Chapter 46","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Frank and Claire adjust to their new reality. The search for Frank's running mate begins. Frank starts a campaign to weaken Conway's strong support.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":16817},{"seriesId":211,"episodeFileId":18419,"seasonNumber":4,"episodeNumber":8,"title":"Chapter 47","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Formidable as ever, both Underwoods have their eyes on the big picture as they manipulate a potential running mate and push the gun bill.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":16818},{"seriesId":211,"episodeFileId":18420,"seasonNumber":4,"episodeNumber":9,"title":"Chapter 48","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"At the convention, Frank and his team publicly push for Catherine Durant to be chosen as his running mate, but privately pursue a different agenda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":16819},{"seriesId":211,"episodeFileId":18421,"seasonNumber":4,"episodeNumber":10,"title":"Chapter 49","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"As Frank deals with a new threat to his candidacy, Claire has doubts about their plan. Claire faces a difficult decision concerning her mother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":16820},{"seriesId":211,"episodeFileId":18422,"seasonNumber":4,"episodeNumber":11,"title":"Chapter 50","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Frank ups the ante on the war on terror to counter Conway's public show of strength. Tom joins Claire on the campaign trail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":16821},{"seriesId":211,"episodeFileId":18423,"seasonNumber":4,"episodeNumber":12,"title":"Chapter 51","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"Frank asks Will to help deal with extremists threatening to murder hostages. Hammerschmidt digs deeper into the allegations against Frank.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":16822},{"seriesId":211,"episodeFileId":18424,"seasonNumber":4,"episodeNumber":13,"title":"Chapter 52","airDate":"2016-03-04","airDateUtc":"2016-03-04T08:00:00Z","overview":"As the hostage situation continues, Claire secretly negotiates with Yusuf al Ahmadi. Frank confronts Hammerschmidt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":16823},{"seriesId":211,"episodeFileId":11048,"seasonNumber":5,"episodeNumber":1,"title":"Chapter 53","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"As Congress debates investigating Frank, he and Claire attempt to stoke fear of terrorism. Tom Yates continues his stay in the White House.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":16824},{"seriesId":211,"episodeFileId":11049,"seasonNumber":5,"episodeNumber":2,"title":"Chapter 54","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"Frank and his team work to leverage support in key states by any means necessary. Claire learns some upsetting news about one of Frank's friends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":16825},{"seriesId":211,"episodeFileId":11050,"seasonNumber":5,"episodeNumber":3,"title":"Chapter 55","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"The day before the election, Conway holds a 24-hour Skype session with voters, while Frank and Claire stump in key states and try to discredit him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":16826},{"seriesId":211,"episodeFileId":11051,"seasonNumber":5,"episodeNumber":4,"title":"Chapter 56","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"With a tight race and low voter turnout on Election Day, things look grim for Frank. But he's still got one more trick up his sleeve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":16827},{"seriesId":211,"episodeFileId":11052,"seasonNumber":5,"episodeNumber":5,"title":"Chapter 57","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"Nine weeks after Election Day, the Underwoods work to consolidate their power. Leann tries to track down a missing Aidan Macallan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":16828},{"seriesId":211,"episodeFileId":11053,"seasonNumber":5,"episodeNumber":6,"title":"Chapter 58","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"In the midst of uncertainty, suspected Russian forces take over an American station in Antarctica. Meanwhile, a damaging news leak could hurt Frank.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":16829},{"seriesId":211,"episodeFileId":11054,"seasonNumber":5,"episodeNumber":7,"title":"Chapter 59","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"When a crisis forces White House personnel to take shelter in a bunker, Commerce Department official Jane Davis negotiates through back channels.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":16830},{"seriesId":211,"episodeFileId":11055,"seasonNumber":5,"episodeNumber":8,"title":"Chapter 60","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"While Frank attends an elite men's weekend gathering to firm up support, Claire deals with a stranded Russian ship and threats from Petrov.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":16831},{"seriesId":211,"episodeFileId":11056,"seasonNumber":5,"episodeNumber":9,"title":"Chapter 61","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"Petrov tries to influence affairs in the U.S. Jane discusses her agenda with Claire. With her job at stake, Leann reaches out to a reporter for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":16832},{"seriesId":211,"episodeFileId":11057,"seasonNumber":5,"episodeNumber":10,"title":"Chapter 62","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"The Underwoods and their team angle to undermine the revived committee investigating Frank. Hammerschmidt's investigation heats up.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":16833},{"seriesId":211,"episodeFileId":11058,"seasonNumber":5,"episodeNumber":11,"title":"Chapter 63","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"As the team tries to control fallout from damaging testimony and leaks, everyone is under suspicion and tensions flare between Frank and Claire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":16834},{"seriesId":211,"episodeFileId":11059,"seasonNumber":5,"episodeNumber":12,"title":"Chapter 64","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"Frank attempts to stop Cathy from testifying. With Hammerschmidt sniffing out the truth, the Underwoods throw someone close to them under the bus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":16835},{"seriesId":211,"episodeFileId":11060,"seasonNumber":5,"episodeNumber":13,"title":"Chapter 65","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"In the wake of a surprising announcement, everything at the White House is shaken up. A decision must be made about whether to go to war.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":16836},{"seriesId":211,"episodeFileId":11040,"seasonNumber":6,"episodeNumber":1,"title":"Chapter 66","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"As the first woman president, Claire faces increased scrutiny and threats. Sibling power couple Annette and Bill Shepherd attempt to influence policy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":16837},{"seriesId":211,"episodeFileId":11041,"seasonNumber":6,"episodeNumber":2,"title":"Chapter 67","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"Claire clashes with the Shepherds and Mark Usher, who pressure her to sign the Future Act. Doug makes an unexpected move.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":16838},{"seriesId":211,"episodeFileId":11042,"seasonNumber":6,"episodeNumber":3,"title":"Chapter 68","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"The Shepherds push Claire on a Supreme Court nomination. Doug works to find a new path for himself. Claire consults with Jane on Syria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":16839},{"seriesId":211,"episodeFileId":11043,"seasonNumber":6,"episodeNumber":4,"title":"Chapter 69","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"As a crisis mounts in Syria, Russian President Viktor Petrov wants to make a deal with Claire. Questions arise about Tom Yates's whereabouts.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":16840},{"seriesId":211,"episodeFileId":11044,"seasonNumber":6,"episodeNumber":5,"title":"Chapter 70","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"Claire allows her enemies to think she's incapacitated as they plot to remove her from office. Doug's investigation leads him to uncover a secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":16841},{"seriesId":211,"episodeFileId":11045,"seasonNumber":6,"episodeNumber":6,"title":"Chapter 71","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"Claire makes staff changes. The Shepherds try to recruit Doug to their side. With Mark facing intense scrutiny, Jane offers advice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":16842},{"seriesId":211,"episodeFileId":11046,"seasonNumber":6,"episodeNumber":7,"title":"Chapter 72","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"While the Shepherd family attempts to diminish Claire's power, Doug goes off the grid but continues angling to advance his agenda.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":16843},{"seriesId":211,"episodeFileId":11047,"seasonNumber":6,"episodeNumber":8,"title":"Chapter 73","airDate":"2018-11-02","airDateUtc":"2018-11-02T07:00:00Z","overview":"Claire tries to tarnish Frank's legacy. Doug provokes Claire by releasing excerpts from Frank's diary. A rift develops between the Shepherds.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":16844}],"episodeFile":[{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Chapter 1-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E01.Chapter 1-Bluray-1080p.mkv","size":4264549128,"dateAdded":"2019-12-25T18:29:54.668105Z","sceneName":"house.of.cards.2013.s01e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8644000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11009},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Chapter 2-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E02.Chapter 2-Bluray-1080p.mkv","size":3520632068,"dateAdded":"2019-12-25T18:30:33.386212Z","sceneName":"house.of.cards.2013.s01e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8090000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"48:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11010},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Chapter 3-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E03.Chapter 3-Bluray-1080p.mkv","size":4263419946,"dateAdded":"2019-12-25T18:31:13.562403Z","sceneName":"house.of.cards.2013.s01e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9689000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"50:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11011},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Chapter 4-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E04.Chapter 4-Bluray-1080p.mkv","size":3520307695,"dateAdded":"2019-12-25T18:31:56.767204Z","sceneName":"house.of.cards.2013.s01e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8205000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"48:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11012},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Chapter 5-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E05.Chapter 5-Bluray-1080p.mkv","size":4264596723,"dateAdded":"2019-12-25T18:32:40.70093Z","sceneName":"house.of.cards.2013.s01e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11013},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Chapter 6-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E06.Chapter 6-Bluray-1080p.mkv","size":4264863011,"dateAdded":"2019-12-25T18:33:24.150322Z","sceneName":"house.of.cards.2013.s01e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9888000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11014},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Chapter 7-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E07.Chapter 7-Bluray-1080p.mkv","size":4264556388,"dateAdded":"2019-12-25T18:34:22.267213Z","sceneName":"house.of.cards.2013.s01e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9105000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11015},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Chapter 8-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E08.Chapter 8-Bluray-1080p.mkv","size":3520311588,"dateAdded":"2019-12-25T18:35:06.033766Z","sceneName":"house.of.cards.2013.s01e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8581000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"46:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11016},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Chapter 9-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E09.Chapter 9-Bluray-1080p.mkv","size":4264625916,"dateAdded":"2019-12-25T18:35:44.165982Z","sceneName":"house.of.cards.2013.s01e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9625000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11017},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Chapter 10-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E10.Chapter 10-Bluray-1080p.mkv","size":4264663089,"dateAdded":"2019-12-25T18:36:36.50621Z","sceneName":"house.of.cards.2013.s01e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9413000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11018},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Chapter 11-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E11.Chapter 11-Bluray-1080p.mkv","size":4264442916,"dateAdded":"2019-12-25T18:37:18.286524Z","sceneName":"house.of.cards.2013.s01e11.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9093000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11019},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Chapter 12-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E12.Chapter 12-Bluray-1080p.mkv","size":4263568348,"dateAdded":"2019-12-25T18:38:11.226072Z","sceneName":"house.of.cards.2013.s01e12.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9308000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11020},{"seriesId":211,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Chapter 13-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 01\/S01E13.Chapter 13-Bluray-1080p.mkv","size":3520273178,"dateAdded":"2019-12-25T18:39:07.408689Z","sceneName":"house.of.cards.2013.s01e13.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8027000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11021},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Chapter 66-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E01.Chapter 66-Bluray-1080p.mkv","size":4692831442,"dateAdded":"2019-12-26T13:41:10.601302Z","sceneName":"house.of.cards.2013.s06e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10300000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11040},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Chapter 67-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E02.Chapter 67-Bluray-1080p.mkv","size":4692514244,"dateAdded":"2019-12-26T13:41:48.137317Z","sceneName":"house.of.cards.2013.s06e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10249000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11041},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Chapter 68-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E03.Chapter 68-Bluray-1080p.mkv","size":4692387870,"dateAdded":"2019-12-26T13:42:42.448928Z","sceneName":"house.of.cards.2013.s06e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10265000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11042},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Chapter 69-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E04.Chapter 69-Bluray-1080p.mkv","size":4692654291,"dateAdded":"2019-12-26T13:43:37.388262Z","sceneName":"house.of.cards.2013.s06e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10254000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11043},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Chapter 70-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E05.Chapter 70-Bluray-1080p.mkv","size":4692864503,"dateAdded":"2019-12-26T13:44:27.220292Z","sceneName":"house.of.cards.2013.s06e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9081000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"59:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11044},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Chapter 71-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E06.Chapter 71-Bluray-1080p.mkv","size":4692364751,"dateAdded":"2019-12-26T13:45:17.03907Z","sceneName":"house.of.cards.2013.s06e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9486000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"56:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11045},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E07.Chapter 72-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E07.Chapter 72-Bluray-1080p.mkv","size":4692877880,"dateAdded":"2019-12-26T13:46:00.075747Z","sceneName":"house.of.cards.2013.s06e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9410000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"57:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11046},{"seriesId":211,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Chapter 73-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 06\/S06E08.Chapter 73-Bluray-1080p.mkv","size":4692680803,"dateAdded":"2019-12-26T13:46:43.872121Z","sceneName":"house.of.cards.2013.s06e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9763000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11047},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Chapter 53-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E01.Chapter 53-Bluray-1080p.mkv","size":4264400477,"dateAdded":"2019-12-26T13:57:40.950963Z","sceneName":"house.of.cards.2013.s05e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8730000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11048},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Chapter 54-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E02.Chapter 54-Bluray-1080p.mkv","size":4264405245,"dateAdded":"2019-12-26T13:58:07.803179Z","sceneName":"house.of.cards.2013.s05e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9298000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11049},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Chapter 55-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E03.Chapter 55-Bluray-1080p.mkv","size":4264295472,"dateAdded":"2019-12-26T13:58:43.969221Z","sceneName":"house.of.cards.2013.s05e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9251000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11050},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Chapter 56-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E04.Chapter 56-Bluray-1080p.mkv","size":4264282014,"dateAdded":"2019-12-26T13:59:22.299083Z","sceneName":"house.of.cards.2013.s05e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11022000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"45:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11051},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Chapter 57-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E05.Chapter 57-Bluray-1080p.mkv","size":4263456147,"dateAdded":"2019-12-26T13:59:58.665566Z","sceneName":"house.of.cards.2013.s05e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9437000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11052},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Chapter 58-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E06.Chapter 58-Bluray-1080p.mkv","size":4263666421,"dateAdded":"2019-12-26T14:00:38.409817Z","sceneName":"house.of.cards.2013.s05e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8685000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"55:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11053},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Chapter 59-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E07.Chapter 59-Bluray-1080p.mkv","size":4264065531,"dateAdded":"2019-12-26T14:01:18.746648Z","sceneName":"house.of.cards.2013.s05e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10057000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11054},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Chapter 60-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E08.Chapter 60-Bluray-1080p.mkv","size":4263700248,"dateAdded":"2019-12-26T14:01:56.603265Z","sceneName":"house.of.cards.2013.s05e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10876000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"45:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11055},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Chapter 61-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E09.Chapter 61-Bluray-1080p.mkv","size":4263822308,"dateAdded":"2019-12-26T14:02:36.696823Z","sceneName":"house.of.cards.2013.s05e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8867000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"54:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11056},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Chapter 62-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E10.Chapter 62-Bluray-1080p.mkv","size":4263970562,"dateAdded":"2019-12-26T14:03:17.022472Z","sceneName":"house.of.cards.2013.s05e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8476000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"56:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11057},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Chapter 63-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E11.Chapter 63-Bluray-1080p.mkv","size":4264586852,"dateAdded":"2019-12-26T14:03:58.108404Z","sceneName":"house.of.cards.2013.s05e11.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9533000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11058},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Chapter 64-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E12.Chapter 64-Bluray-1080p.mkv","size":4264203280,"dateAdded":"2019-12-26T14:04:39.631716Z","sceneName":"house.of.cards.2013.s05e12.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8934000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"54:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11059},{"seriesId":211,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Chapter 65-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 05\/S05E13.Chapter 65-Bluray-1080p.mkv","size":4263342991,"dateAdded":"2019-12-26T14:05:17.611545Z","sceneName":"house.of.cards.2013.s05e13.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8534000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"56:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11060},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Chapter 27-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E01.Chapter 27-Bluray-1080p.mkv","size":4688261534,"dateAdded":"2019-12-27T12:28:32.191851Z","sceneName":"house.of.cards.2013.s03e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9154000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"58:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11119},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Chapter 28-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E02.Chapter 28-Bluray-1080p.mkv","size":4688433402,"dateAdded":"2019-12-27T12:29:08.266749Z","sceneName":"house.of.cards.2013.s03e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9963000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"54:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11120},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Chapter 29-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E03.Chapter 29-Bluray-1080p.mkv","size":4263155270,"dateAdded":"2019-12-27T12:29:51.540634Z","sceneName":"house.of.cards.2013.s03e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9293000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11121},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Chapter 30-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E04.Chapter 30-Bluray-1080p.mkv","size":4258207450,"dateAdded":"2019-12-27T12:30:33.78243Z","sceneName":"house.of.cards.2013.s03e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10489000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"47:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11122},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Chapter 31-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E05.Chapter 31-Bluray-1080p.mkv","size":4256955671,"dateAdded":"2019-12-27T12:31:25.448951Z","sceneName":"house.of.cards.2013.s03e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9428000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11123},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Chapter 32-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E06.Chapter 32-Bluray-1080p.mkv","size":4258436259,"dateAdded":"2019-12-27T12:32:16.202533Z","sceneName":"house.of.cards.2013.s03e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9041000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11124},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Chapter 33-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E07.Chapter 33-Bluray-1080p.mkv","size":4257744592,"dateAdded":"2019-12-27T12:33:04.462915Z","sceneName":"house.of.cards.2013.s03e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9221000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11125},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Chapter 34-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E08.Chapter 34-Bluray-1080p.mkv","size":3510551544,"dateAdded":"2019-12-27T12:33:50.418882Z","sceneName":"house.of.cards.2013.s03e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9195000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"43:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11126},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Chapter 35-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E09.Chapter 35-Bluray-1080p.mkv","size":4257773184,"dateAdded":"2019-12-27T12:34:24.769051Z","sceneName":"house.of.cards.2013.s03e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9547000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11127},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Chapter 36-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E10.Chapter 36-Bluray-1080p.mkv","size":4686425420,"dateAdded":"2019-12-27T12:35:09.073383Z","sceneName":"house.of.cards.2013.s03e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9501000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"56:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11128},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Chapter 37-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E11.Chapter 37-Bluray-1080p.mkv","size":4258225246,"dateAdded":"2019-12-27T12:35:54.968157Z","sceneName":"house.of.cards.2013.s03e11.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9312000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"52:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11129},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Chapter 38-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E12.Chapter 38-Bluray-1080p.mkv","size":4256705592,"dateAdded":"2019-12-27T12:36:43.897232Z","sceneName":"house.of.cards.2013.s03e12.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10036000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11130},{"seriesId":211,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Chapter 39-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 03\/S03E13.Chapter 39-Bluray-1080p.mkv","size":4688629471,"dateAdded":"2019-12-27T12:37:33.88111Z","sceneName":"house.of.cards.2013.s03e13.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9351000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"57:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11131},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Chapter 14-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E01.Chapter 14-Bluray-1080p.mkv","size":4262998393,"dateAdded":"2019-12-28T15:40:24.449696Z","sceneName":"house.of.cards.2013.s02e01.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9990000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"49:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11132},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Chapter 15-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E02.Chapter 15-Bluray-1080p.mkv","size":3518033046,"dateAdded":"2019-12-28T15:40:58.118357Z","sceneName":"house.of.cards.2013.s02e02.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8134000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"48:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11133},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Chapter 16-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E03.Chapter 16-Bluray-1080p.mkv","size":4262459297,"dateAdded":"2019-12-28T15:41:33.277756Z","sceneName":"house.of.cards.2013.s02e03.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9640000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"50:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11134},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Chapter 17-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E04.Chapter 17-Bluray-1080p.mkv","size":3517344813,"dateAdded":"2019-12-28T15:42:13.716178Z","sceneName":"house.of.cards.2013.s02e04.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8311000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"47:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11135},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Chapter 18-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E05.Chapter 18-Bluray-1080p.mkv","size":3518632164,"dateAdded":"2019-12-28T15:42:50.44431Z","sceneName":"house.of.cards.2013.s02e05.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8108000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"48:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11136},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Chapter 19-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E06.Chapter 19-Bluray-1080p.mkv","size":4262811714,"dateAdded":"2019-12-28T15:43:30.674204Z","sceneName":"house.of.cards.2013.s02e06.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"51:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11137},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Chapter 20-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E07.Chapter 20-Bluray-1080p.mkv","size":3517684477,"dateAdded":"2019-12-28T15:44:12.136021Z","sceneName":"house.of.cards.2013.s02e07.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8236000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"48:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11138},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Chapter 21-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E08.Chapter 21-Bluray-1080p.mkv","size":3518004576,"dateAdded":"2019-12-28T15:44:47.962579Z","sceneName":"house.of.cards.2013.s02e08.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8460000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"47:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11139},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Chapter 22-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E09.Chapter 22-Bluray-1080p.mkv","size":4261825599,"dateAdded":"2019-12-28T15:45:27.358948Z","sceneName":"house.of.cards.2013.s02e09.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10105000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"48:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11140},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Chapter 23-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E10.Chapter 23-Bluray-1080p.mkv","size":4261831627,"dateAdded":"2019-12-28T15:46:11.005189Z","sceneName":"house.of.cards.2013.s02e10.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9713000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"50:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11141},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Chapter 24-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E11.Chapter 24-Bluray-1080p.mkv","size":4262231304,"dateAdded":"2019-12-28T15:46:54.186714Z","sceneName":"house.of.cards.2013.s02e11.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9156000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"53:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11142},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Chapter 25-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E12.Chapter 25-Bluray-1080p.mkv","size":3517781604,"dateAdded":"2019-12-28T15:47:39.273108Z","sceneName":"house.of.cards.2013.s02e12.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8489000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"46:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11143},{"seriesId":211,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Chapter 26-Bluray-1080p.mkv","path":"\/tv\/House of Cards (US)\/Season 02\/S02E13.Chapter 26-Bluray-1080p.mkv","size":4691773404,"dateAdded":"2019-12-28T15:48:17.431724Z","sceneName":"house.of.cards.2013.s02e13.1080p.bluray.x264-rovers","releaseGroup":"ROVERS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9062000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"59:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":11144},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Chapter 40-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E01.Chapter 40-Bluray-720p.mkv","size":394690347,"dateAdded":"2021-06-16T12:07:26.112002Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"48:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18412},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Chapter 41-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E02.Chapter 41-Bluray-720p.mkv","size":324657423,"dateAdded":"2021-06-16T12:09:09.64994Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"41:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18413},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Chapter 42-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E03.Chapter 42-Bluray-720p.mkv","size":425636031,"dateAdded":"2021-06-16T12:10:53.325257Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"53:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18414},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Chapter 43-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E04.Chapter 43-Bluray-720p.mkv","size":325559759,"dateAdded":"2021-06-16T12:12:37.557883Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"42:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18415},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Chapter 44-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E05.Chapter 44-Bluray-720p.mkv","size":394098495,"dateAdded":"2021-06-16T12:14:21.371601Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"47:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18416},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Chapter 45-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E06.Chapter 45-Bluray-720p.mkv","size":325368273,"dateAdded":"2021-06-16T12:16:05.459458Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"47:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18417},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Chapter 46-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E07.Chapter 46-Bluray-720p.mkv","size":452814716,"dateAdded":"2021-06-16T12:17:48.263361Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"51:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18418},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Chapter 47-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E08.Chapter 47-Bluray-720p.mkv","size":339030592,"dateAdded":"2021-06-16T12:19:32.1873Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"46:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18419},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Chapter 48-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E09.Chapter 48-Bluray-720p.mkv","size":377025038,"dateAdded":"2021-06-16T12:21:14.875516Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"45:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18420},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Chapter 49-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E10.Chapter 49-Bluray-720p.mkv","size":437024241,"dateAdded":"2021-06-16T12:22:58.270578Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"56:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18421},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Chapter 50-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E11.Chapter 50-Bluray-720p.mkv","size":369203990,"dateAdded":"2021-06-16T12:24:41.833095Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"51:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18422},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Chapter 51-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E12.Chapter 51-Bluray-720p.mkv","size":330665891,"dateAdded":"2021-06-16T12:26:24.927331Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"46:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18423},{"seriesId":211,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Chapter 52-Bluray-720p.mkv","path":"\/tv\/House of Cards (US)\/Season 04\/S04E13.Chapter 52-Bluray-720p.mkv","size":374266040,"dateAdded":"2021-06-16T12:28:07.59209Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1280x720","runTime":"54:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18424}],"queue":[]},"208":{"series":{"title":"Psycho-Pass","alternateTitles":[{"title":"Psycho-Pass 2","sceneSeasonNumber":2},{"title":"PSYCHO-PASS Extended Edition","sceneSeasonNumber":0},{"title":"Psycho-Pass 3","sceneSeasonNumber":3}],"sortTitle":"psycho pass","status":"ended","ended":true,"overview":"In the near future it is possible to instantaneously measure and quantify a person's state of mind and personality. This information is recorded and processed. The standard by which a persons' mind is referred to as the \"Psycho-Pass\".","previousAiring":"2019-12-12T16:00:00Z","network":"Fuji TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/195\/banner.jpg?lastWrite=637100124038791020","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/262090-g6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/195\/poster.jpg?lastWrite=637100124041590970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/262090-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/195\/fanart.jpg?lastWrite=637100124036671060","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/262090-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":19,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2013-03-21T16:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":29107545536,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2014-12-17T16:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":33790356016,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2019-12-12T16:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":13321988993,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Psycho-Pass","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":262090,"tvRageId":32925,"tvMazeId":1939,"firstAired":"2012-10-12T00:00:00Z","seriesType":"standard","cleanTitle":"psychopass","imdbId":"tt2379308","titleSlug":"psycho-pass","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Science Fiction"],"tags":[],"added":"2019-11-02T20:51:25.721479Z","ratings":{"votes":6527,"value":8.5},"statistics":{"seasonCount":3,"episodeFileCount":41,"episodeCount":41,"totalEpisodeCount":60,"sizeOnDisk":76219890545,"percentOfEpisodes":100.0},"id":195},"episodes":[{"seriesId":195,"episodeFileId":12617,"seasonNumber":1,"episodeNumber":1,"title":"Crime Coefficient","airDate":"2012-10-12","airDateUtc":"2012-10-11T16:00:00Z","overview":"In a world where minds can be analysed for potential threats of crime and mental instability, Inspector Tsunemori Akane is sent to deal with her first case, along with fellow inspector Ginoza and a group of Enforcers, latent criminals hired by the police to work for them. Akane\u2019s case deals with an insane man who has taken a woman hostage and raped her, holing himself up in a building inhabited by groups of the homeless.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14689},{"seriesId":195,"episodeFileId":12618,"seasonNumber":1,"episodeNumber":2,"title":"Those Capable","airDate":"2012-10-19","airDateUtc":"2012-10-18T16:00:00Z","overview":"While Kogami is recuperating from Akane\u2019s Paralyzer shot, she begins to worry about whether she is suited to be an Inspector after the fallout from her first case. On her second day on the job, she begins to learn more about the Enforcers she works with.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14690},{"seriesId":195,"episodeFileId":12619,"seasonNumber":1,"episodeNumber":3,"title":"Rearing Conventions","airDate":"2012-10-26","airDateUtc":"2012-10-25T16:00:00Z","overview":"Ginoza and Akane, along with the Enforcers, are brought in to investigate a death caused by a Drone at a Drone manufacturing plant. When the Psycho-Pass of the entire staff checks out, they question whether it was an accident or possibly murder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14691},{"seriesId":195,"episodeFileId":12620,"seasonNumber":1,"episodeNumber":4,"title":"Nobody Knows Your Mask","airDate":"2012-11-02","airDateUtc":"2012-11-01T16:00:00Z","overview":"When the CID is brought in to investigate a disappearance of Kimihiko Hayama, they discover that not only has he been killed, but someone has taken over his net avatar, Talisman. The CID tries to track down the fake Talisman in order to find the killer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14692},{"seriesId":195,"episodeFileId":12621,"seasonNumber":1,"episodeNumber":5,"title":"Nobody Knows Your Face","airDate":"2012-11-09","airDateUtc":"2012-11-08T16:00:00Z","overview":"The CID\u2019s hunt for Kimihiko Hayama\u2019s killer leads them to another murder with the same modus operandi. Now it\u2019s up to the CID to figure out how to track down the killer\u2019s real identity and get justice for the victims.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14693},{"seriesId":195,"episodeFileId":12622,"seasonNumber":1,"episodeNumber":6,"title":"Return of the Psychotic Prince","airDate":"2012-11-16","airDateUtc":"2012-11-15T16:00:00Z","overview":"After reading Kogami\u2019s personnel file, Akane attempts to learn more about Kogami\u2019s past and why he ended up as an Enforcer. Meanwhile, the CID detectives attempt to figure out who was helping Kanehara commit murders in the Hachioji Drone incident.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14694},{"seriesId":195,"episodeFileId":12623,"seasonNumber":1,"episodeNumber":7,"title":"Symbolism of Bletilla Striata","airDate":"2012-11-23","airDateUtc":"2012-11-22T16:00:00Z","overview":"After realizing that the recent murders and the Specimen Case are indeed connected, Ginoza takes Kogami off the case and requests Tsunemori to watch over him. Tsunemori discusses Sasayama's murder with Kogami, and he gives her his one piece of evidence: a blurry image of Makishima. Meanwhile, Makishima, in a study with another older man, reveals the circumstances of Rikako Oryo's father's death and discusses the nature of the shortening life expectancy in this \"perfect\" world. Later, Rikako continues her crimes with the help of Makishima's colleague, Choe Gu-Sung, and abducts another fellow student who is worried about her friend's disappearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14695},{"seriesId":195,"episodeFileId":12624,"seasonNumber":1,"episodeNumber":8,"title":"And Then, Silence","airDate":"2012-11-30","airDateUtc":"2012-11-29T16:00:00Z","overview":"With his profiling skills, Kogami determines that the girls' school killer isn't the same murderer from the unsolved case years ago; he explains that the recent murders lack \"originality\" and pointed social commentary of the previous killings. When he and Tsunemori realize the culprit is one of the students, they locate Rikako - who escapes when one of teachers stops Kogami from executing her. As the Enforcers try to locate her secret routes and hiding places, Rikako flees - but not before everyone discovers her latest creation. Makishima calls Rikako to tell her that she's a disappointment and has one of his colleagues dispose her. In the meantime, Kogami picks up a damaged audio file which was deliberately left by Makishima. Due to Rikako's failure, Makishima develops an interest in Kogami.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14696},{"seriesId":195,"episodeFileId":9968,"seasonNumber":1,"episodeNumber":9,"title":"Paradise Fruit","airDate":"2012-12-07","airDateUtc":"2012-12-06T16:00:00Z","overview":"Kogami, attempting to track down Makishima, takes Tsunemori to visit his former teacher, Jouji Saiga, who agrees to give her a crash course on criminal profiling; however, Ginoza reprimands her harshly which results into an argument. Afterwards, Masaoka explains to her Ginoza's attitude by revealing his past. In the meantime, Makishima discusses humanity and philosophy with Senguji, who in an earlier interview reveals himself to be nearly a full cyborg. He gives him his next target: Shinya Kougami.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14697},{"seriesId":195,"episodeFileId":9969,"seasonNumber":1,"episodeNumber":10,"title":"Methuselah's Game","airDate":"2012-12-14","airDateUtc":"2012-12-13T16:00:00Z","overview":"Makishima and Senguji set up a hunt by using Tsunemori's friend Yuki as bait to lure Kogami into an abandoned subway station. Upon entering the station, Kogami discovers Yuki and loses contact with Tsunemori; the two must evade Senguji and his canine drones as a curious Makishima observes from above. Ginoza scolds Tsunemori for letting Kogami go on his own but Masaoka chastises him over his treatment of her. Meanwhile, Makishima rigs the hunt to give Kogami a chance to create a working transponder and, as a result, Kogami makes contact with the group outside and they go in after him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14698},{"seriesId":195,"episodeFileId":9971,"seasonNumber":1,"episodeNumber":11,"title":"The Saint's Supper","airDate":"2012-12-21","airDateUtc":"2012-12-20T16:00:00Z","overview":"With a drone delivering him a Dominator, Kogami manages to outwit Senguji and kill him, although he also takes some shots in the process. Just then, Yuki is captured by Makishima, with Kogami too weak to follow. As Masaoka tends to Kogami's injuries, Tsunemori goes alone to pursue Makishima. To her shock, she discovers her Dominator is useless against him as his Crime Coefficent levels are too low, with Makishima attributing his murderous intent to his own free will. He gives Tsunemori the opportunity to try killing him with Senguji's shotgun, but she finds herself unable to do it and is forced to helplessly watch Makishima kill Yuki right before her eyes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14699},{"seriesId":195,"episodeFileId":9973,"seasonNumber":1,"episodeNumber":12,"title":"Devil's Crossroad","airDate":"2013-01-11","airDateUtc":"2013-01-10T16:00:00Z","overview":"Taking place three years prior to the series, the episode focuses on Yayoi, who was a guitarist in a band before being imprisoned in a rehabilitation facility for being a latent criminal. As she anxiously waits for release so she can play the guitar again, she is approached by Kogami, who was still a detective, and Ginoza about a series of crimes occuring in the area she was once familiar with. She initially rejects their offer until Kogami gives her some guitar strings which reminded her of a guitarist she admired, Rina Takizaki. When the club they are investigating gets set on fire after Kogami's partner Mitsuru Sasayama jumps the gun in approaching culprits dealing with molotov cocktails, Yayoi decides to search for Rina, only to discover she is part of a resistance group selling the molotov cocktails in the hopes of overthrowing the Sybil system. Yayoi tries to stop Rina but finds she is unable to use the Dominator that Kogami gave her, as she wasn't actually an enforcer, and Rina escapes. Afterwards, Yayoi resolves to become an enforcer and leaves the rehabilitation center.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14700},{"seriesId":195,"episodeFileId":12098,"seasonNumber":1,"episodeNumber":13,"title":"Invitation From the Abyss","airDate":"2013-01-18","airDateUtc":"2013-01-17T16:00:00Z","overview":"Ginoza meets up with the head of the Public Security Bureau about Makishima, who confidentially reveals to him about the real culprit of the Specimen Case, Touma Kouzoburou, three years ago who happens to be \"criminally asymptomatic\" just like Makishima. She urges him to keep any doubts away from the public eye and orders him to capture Makishima. Following Yuki's funeral, Akane agrees to undergo a 'Memory Scoop' to provide a photofit of Makishima based on her memories of the incident, despite warnings from others that it may damage her Psycho-Pass. Despite reliving the traumatizing memory, the Memory Scoop is successfully completed without her Psycho-Pass reaching into dangerous levels, providing a photofit image of Makishima to aid in the investigation. Later, Ginoza discusses with Masaoka, who is actually his father, about how Akane manages to keep her Psycho-Pass from becoming unclouded.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14701},{"seriesId":195,"episodeFileId":9975,"seasonNumber":1,"episodeNumber":14,"title":"Sweet Poison","airDate":"2013-01-25","airDateUtc":"2013-01-24T16:00:00Z","overview":"A man in a helmet breaks into a pharmacy, kills the staff, and departs with drugs. When the MWSPB arrives on the scene, they find his coefficient wasn't high enough to raise an alarm. The same man attacks a woman in public, brutally beating her to death with a hammer in front of a crowd and a Psycho-Pass scanner. Later, the team learn that more culprits, wearing the same helmets, rob an armored car. Kogami deduces that the second crime would have a motive, leading their investigation to a man named Jyunmei Itoh who had a grudge against the victim. As Itoh attempts to escape, Kogami deduces that helmets copy the clear Psycho-pass rate of innocent bystanders and thus help criminals avoid evasion. With Akane and Masaoka's help, he apprehends the murderer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14702},{"seriesId":195,"episodeFileId":9976,"seasonNumber":1,"episodeNumber":15,"title":"The Town Where Sulfur Falls","airDate":"2013-02-01","airDateUtc":"2013-01-31T16:00:00Z","overview":"As footage of the helmet killings appear on the internet, the helmets are distributed to more criminals who begin committing more horrendous crimes out in the open, prompting bloodthirsty revenge from the public in the name of self-defense. As the MWSPB are sent in to suppress the riots, Kogami deduces that the riots are intended to draw the police away from the Health and Welfare Ministry's Nona Tower facility, where the Sibyl System is located. As Makishima and his gang break in, Kogami, Akane and Shuusei head to the scene.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14703},{"seriesId":195,"episodeFileId":9977,"seasonNumber":1,"episodeNumber":16,"title":"The Gate to Judgment","airDate":"2013-02-08","airDateUtc":"2013-02-07T16:00:00Z","overview":"As Akane, Kogami, and Shuusei enter the Nona Tower, Makishima intends to act as a diversion at the top of the tower while Guseong reaches the core of the Sibyl System in the hidden basement. Kogami and Akane decide to chase after Makishima to the top of the tower as Shuusei descends to the basement. After descending to the hidden basement, Shuusei has lost connection with the network and discovers the truth behind the Sibyl System. Meanwhile, Kogami engages in a battle with Makishima. Makishima beats Kogami but is knocked out by Akane. Kogami instructs Akane to kill Makishima but Akane was able to control her emotions. Meanwhile, Shuusei defeats the guards and confronts Guseong at the heart of the Sibyl System, who is suddenly killed by Kasei, who is revealed to be a cyborg and proceeds to override her Dominator to fire at Shuusei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14704},{"seriesId":195,"episodeFileId":9978,"seasonNumber":1,"episodeNumber":17,"title":"Iron Heart","airDate":"2013-02-15","airDateUtc":"2013-02-14T16:00:00Z","overview":"After Makishima is taken in and the riots are brought under control, Kogami remains curious about how Makishima will be judged, as well as the whereabouts of Shuusei. Later that day, Kasei tells Ginoza that Makishima's case has been taken out of the MWPSB's hands and orders him to investigate Shuusei's whereabouts, much to the ire of both Ginoza and Kogami. Later, Makishima is confronted by Kasei who reveals herself as Kouzoborou and shares a cybernetic body with Kasei. He explains to Makishima about the true nature of the Sybil System, which is revealed to be a supercomputer network comprised of human brains of criminally asymptomatic individuals like him. Kouzoborou offers Makishima to become a part of the System. But he refuses and instead kills Kouzaborou and escapes from the transit which is supposed to take him to the Ministry of Welfare before briefly contacting Kogami about his escape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14705},{"seriesId":195,"episodeFileId":9979,"seasonNumber":1,"episodeNumber":18,"title":"A Promise Written on Water","airDate":"2013-02-22","airDateUtc":"2013-02-21T16:00:00Z","overview":"As Ginoza discovers that he is unauthorized to investigate the crash site of Makishima's carrier, Kasei reassigns him on recapturing Makishima and requests that Kogami should be taken off the case. Kogami suspects that something is amiss behind the whole order, believing there is something Kasei is hiding from them. Agreeing with him, Ginoza arranges for Kogami to be transferred to Division 2 who are in charge of investigating Shuusei's whereabouts. However, they are confronted by Kasei, who tries to get Ginoza to kill Kogami, but luckily Akane knocks him out with Paralyzer mode before anything can happen. Upon awakening, Kogami borrows one of the helmets from Shion and retrieves keys to a safehouse from Masaoka before leaving the MWPSB, explaining in a letter to Akane that the only way where he can stop Makishima is to step outside of the law.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14706},{"seriesId":195,"episodeFileId":9980,"seasonNumber":1,"episodeNumber":19,"title":"Transparent Shadow","airDate":"2013-03-01","airDateUtc":"2013-02-28T16:00:00Z","overview":"Ginoza, whose Hue is now problematic, eschews intensive therapy in order to work on retrieving Kogami and Makishima. He argues with Masaoka over his \"softness,\" and declares his intention to see his \"obsession\" through to the end. Kogami, meanwhile, goes to visit Saiga in order to figure out Makishima's next move; the two surmise that Makishima might attempt to meddle with Japan's food supply in order to force open borders for the country. Shion does her best to comfort Akane and Kasei connects with Sibyl to determine their new \"pawn.\" Later, a Dominator-bearing drone comes to visit Akane in the office - and declares that it will tell her the truth about everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14707},{"seriesId":195,"episodeFileId":9981,"seasonNumber":1,"episodeNumber":20,"title":"Where Justice Lies","airDate":"2013-03-08","airDateUtc":"2013-03-07T16:00:00Z","overview":"The Sibyl System reveals itself to Akane and notes that she understands the necessity of the system, if not its justifiability. Makishima finds the professor who is responsible for the hyper-oats and murders him after finding the information he seeks, taking along the man's fingers and eyeballs as a measure against biometric security. Kogami arrives on the scene not long after and leaves a clue for the MWSPB in the man's airpipe. Meanwhile, Akane makes a deal with Sibyl: if the System withdraws the execution order for Kogami, she will capture Makishima alive. Thanks to her detective work, they quickly find Kogami's clue and understand what Makishima's up to.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14708},{"seriesId":195,"episodeFileId":9982,"seasonNumber":1,"episodeNumber":21,"title":"Blood-stained Reward","airDate":"2013-03-15","airDateUtc":"2013-03-14T16:00:00Z","overview":"As Makishima works on reprogramming the virus, both Kogami and the MWPSB arrive at the factory, with Kogami instructing Akane that they need to shut down power to the facility to bypass the security. Prior to arriving, Akane manages to convince the Sibyl System to keep her Dominator on Paralyzer mode with the safety unlocked regardless of Crime Coefficient to use as a trump card against Makishima and Kogami. After the power is shut down, Kogami sneaks into the facility whilst Akane and Yayoi head to the control room in case Makishima attempts to activate the emergency power. Finding the control room empty, Akane comes to realise that Ginoza and Masaoka are in danger. As Ginoza becomes trapped under a container after tripping up a trap, Masaoka comes face to face with Makishima. Although Masaoka appears to get the upper hand, Makishima threatens to blow Ginoza up with a stick of dynamite, with Masaoka ultimately sacrificing himself to save his son. As Ginoza remains horrified by his father's death, Kogami pursues Makishima and prepares to engage in a knife fight with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14709},{"seriesId":195,"episodeFileId":9983,"seasonNumber":1,"episodeNumber":22,"title":"Perfect World","airDate":"2013-03-22","airDateUtc":"2013-03-21T16:00:00Z","overview":"Kogami and Makishima fight against each other, with Kogami managing to land a hit, but their fight is broken up when Akane arrives on the scene. Instead of arresting Kogami, Akane gives her the modified Dominator so they can both pursue Makishima. Makishima attempts to escape via truck, but Akane manages to get onto it and burst its tire, causing it to crash. With Akane to injured to fight, Kogami takes a reloaded revolver and pursues Makishima as he tries to escape. Reaching the end of his road, Makishima simply waits as Kogami finally shoots him, with Akane unable to do anything about it. Afterwards, the Sybil System tells Akane of how they intend to make itself public at a time where the public will come to accept it, though Akane responds that there will come a day when humans stand up against them. Two months later, Ginoza becomes an Enforcer whilst Mika Shimotsuki, one of the girls from the statue incident, joins the MWPSB as a detective under Akane's wing, whilst Kogami is seen elsewhere.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":14710},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Criminal Coefficient \/ Those Capable (Extended)","airDate":"2014-07-10","airDateUtc":"2014-07-09T16:00:00Z","overview":"Akane\u2019s case deals with an insane man who has taken a woman hostage and raped her, holing himself up in a building inhabited by groups of the homeless. While Kogami is recuperating from Akane\u2019s Paralyzer shot, she begins to worry about whether she is suited to be an Inspector after the fallout from her first case. On her second day on the job, she begins to learn more about the Enforcers she works with.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":1,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14730},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Raising Manners \/ Nobody Knows Your Mask (Extended)","airDate":"2014-07-17","airDateUtc":"2014-07-16T16:00:00Z","overview":"Ginoza and Akane, along with the Enforcers, are brought in to investigate a death caused by a Drone at a Drone manufacturing plant. When the Psycho-Pass of the entire staff checks out, they question whether it was an accident or possibly murder. When the CID is brought in to investigate a disappearance of Kimihiko Hayama, they discover that not only has he been killed, but someone has taken over his net avatar, Talisman. The CID tries to track down the fake Talisman in order to find the killer.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":2,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14731},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Nobody Knows Your Face \/ Return of the Lunatic Prince (Extended)","airDate":"2014-07-24","airDateUtc":"2014-07-23T16:00:00Z","overview":"The CID\u2019s hunt for Kimihiko Hayama\u2019s killer leads them to another murder with the same modus operandi. Now it\u2019s up to the CID to figure out how to track down the killer\u2019s real identity and get justice for the victims.\r\nAfter reading Kogami\u2019s personnel file, Akane attempts to learn more about Kogami\u2019s past and why he ended up as an Enforcer. Meanwhile, the CID detectives attempt to figure out who was helping Kanehara commit murders in the Hachioji Drone incident.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":3,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14732},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Symbolism of Bletilla Striata \/ The Rest is Silence (Extended)","airDate":"2014-07-31","airDateUtc":"2014-07-30T16:00:00Z","overview":"After realizing that the recent murders and the Specimen Case are indeed connected, Ginoza takes Kogami off the case and requests Tsunemori to watch over him. Tsunemori discusses Sasayama's murder with Kogami, and he gives her his one piece of evidence: a blurry image of Makishima.\r\nWith his profiling skills, Kogami determines that the girls' school killer isn't the same murderer from the unsolved case years ago; he explains that the recent murders lack \"originality\" and pointed social commentary of the previous killings.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":4,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14733},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Fruit of Paradise \/ Methuselah's Game (Extended)","airDate":"2014-08-07","airDateUtc":"2014-08-06T16:00:00Z","overview":"Kogami, attempting to track down Makishima, takes Tsunemori to visit his former teacher, Jouji Saiga, who agrees to give her a crash course on criminal profiling; however, Ginoza reprimands her harshly which results into an argument.\r\nMakishima and Senguji set up a hunt by using Tsunemori's friend Yuki as bait to lure Kogami into an abandoned subway station. Upon entering the station, Kogami discovers Yuki and loses contact with Tsunemori; the two must evade Senguji and his canine drones as a curious Makishima observes from above.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":5,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14734},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The Saint's Supper \/ Devil's Crossroad (Extended)","airDate":"2014-08-07","airDateUtc":"2014-08-06T16:25:00Z","overview":"With a drone delivering him a Dominator, Kogami manages to outwit Senguji and kill him, although he also takes some shots in the process. Just then, Yuki is captured by Makishima, with Kogami too weak to follow. As Masaoka tends to Kogami's injuries, Tsunemori goes alone to pursue Makishima.\r\nTaking place three years prior to the series, the episode focuses on Yayoi, who was a guitarist in a band before being imprisoned in a rehabilitation facility for being a latent criminal.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":6,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14735},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Invitation From the Abyss \/ Sweet Poison (Extended)","airDate":"2014-08-14","airDateUtc":"2014-08-13T16:00:00Z","overview":"Ginoza meets up with the head of the Public Security Bureau about Makishima, who confidentially reveals to him about the real culprit of the Specimen Case, Touma Kouzoburou, three years ago who happens to be \"criminally asymptomatic\" just like Makishima.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":7,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14736},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"The Town Where Sulfur Falls \/ The Gates of Judgment (Extended)","airDate":"2014-08-21","airDateUtc":"2014-08-20T16:00:00Z","overview":"As footage of the helmet killings appear on the internet, the helmets are distributed to more criminals who begin committing more horrendous crimes out in the open, prompting bloodthirsty revenge from the public in the name of self-defense. As the MWSPB are sent in to suppress the riots, Kogami deduces that the riots are intended to draw the police away from the Health and Welfare Ministry's Nona Tower facility, where the Sibyl System is located. As Makishima and his gang break in, Kogami, Akane and Shuusei head to the scene.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":8,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14737},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Iron Heart \/ Promises Written in Water (Extended)","airDate":"2014-09-04","airDateUtc":"2014-09-03T16:00:00Z","overview":"After Makishima is taken in and the riots are brought under control, Kogami remains curious about how Makishima will be judged, as well as the whereabouts of Shuusei. Later that day, Kasei tells Ginoza that Makishima's case has been taken out of the MWPSB's hands and orders him to investigate Shuusei's whereabouts, much to the ire of both Ginoza and Kogami. Later, Makishima is confronted by Kasei who reveals herself as Kouzoborou and shares a cybernetic body with Kasei. He explains to Makishima about the true nature of the Sybil System, which is revealed to be a supercomputer network comprised of human brains of criminally asymptomatic individuals like him. Kouzoborou offers Makishima to become a part of the System. But he refuses and instead kills Kouzaborou and escapes from the transit which is supposed to take him to the Ministry of Welfare before briefly contacting Kogami about his escape..","hasFile":false,"monitored":false,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":9,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14738},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Transparent Shadows \/ Where Justice is Found (Extended)","airDate":"2014-09-11","airDateUtc":"2014-09-10T16:00:00Z","overview":"Ginoza, whose Hue is now problematic, eschews intensive therapy in order to work on retrieving Kogami and Makishima. He argues with Masaoka over his \"softness,\" and declares his intention to see his \"obsession\" through to the end. Kogami, meanwhile, goes to visit Saiga in order to figure out Makishima's next move; the two surmise that Makishima might attempt to meddle with Japan's food supply in order to force open borders for the country. Shion does her best to comfort Akane and Kasei connects with Sibyl to determine their new \"pawn.\" Later, a Dominator-bearing drone comes to visit Akane in the office - and declares that it will tell her the truth about everything.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":10,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14739},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Blood-stained Reward \/ Perfect World (Extended)","airDate":"2014-09-18","airDateUtc":"2014-09-17T16:00:00Z","overview":"As Makishima works on reprogramming the virus, both Kogami and the MWPSB arrive at the factory, with Kogami instructing Akane that they need to shut down power to the facility to bypass the security. Prior to arriving, Akane manages to convince the Sibyl System to keep her Dominator on Paralyzer mode with the safety unlocked regardless of Crime Coefficient to use as a trump card against Makishima and Kogami. After the power is shut down, Kogami sneaks into the facility whilst Akane and Yayoi head to the control room in case Makishima attempts to activate the emergency power. Finding the control room empty, Akane comes to realise that Ginoza and Masaoka are in danger. As Ginoza becomes trapped under a container after tripping up a trap, Masaoka comes face to face with Makishima. Although Masaoka appears to get the upper hand, Makishima threatens to blow Ginoza up with a stick of dynamite, with Masaoka ultimately sacrificing himself to save his son. As Ginoza remains horrified by his father's death, Kogami pursues Makishima and prepares to engage in a knife fight with him..","hasFile":false,"monitored":false,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":11,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":14740},{"seriesId":195,"episodeFileId":16872,"seasonNumber":2,"episodeNumber":1,"title":"The Scales of Justice","airDate":"2014-10-09","airDateUtc":"2014-10-08T16:00:00Z","overview":"A series of bombings takes place in Tokyo. After some analysis, the detectives figure out who the culprit is and his whereabouts, and head to his location. Akane wants to be cautious, but the other Inspectors decide to rush in, and...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14711},{"seriesId":195,"episodeFileId":16873,"seasonNumber":2,"episodeNumber":2,"title":"The Creeping Unknown","airDate":"2014-10-16","airDateUtc":"2014-10-15T16:00:00Z","overview":"An Enforcer from Division 2 was executed by a Dominator and an Inspector from the same division has gone missing. The only clue they have is the mysterious message \u201cWC?\u201d left at the crime scene. But who could commit a crime without being detected?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14712},{"seriesId":195,"episodeFileId":16874,"seasonNumber":2,"episodeNumber":3,"title":"The Devil\u2019s Proof","airDate":"2014-10-23","airDateUtc":"2014-10-22T16:00:00Z","overview":"Right before Kitazawa was executed, he mentioned the name of someone who had supposedly been helping him. While others just think that he was crazy, Akane wants to get to the bottom of this case and tries to seek out help from someone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14713},{"seriesId":195,"episodeFileId":16875,"seasonNumber":2,"episodeNumber":4,"title":"The Salvation of Job","airDate":"2014-10-30","airDateUtc":"2014-10-29T16:00:00Z","overview":"A man occupies a mental care facility and starts acting violent, but Inspector Aoyanagi\u2019s Dominator does not consider him a threat. As the Area Stress Level rises, Division 3 takes over the case and brings in a new armament to deal with the situation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14714},{"seriesId":195,"episodeFileId":16876,"seasonNumber":2,"episodeNumber":5,"title":"Unforbidden Games","airDate":"2014-11-06","airDateUtc":"2014-11-05T16:00:00Z","overview":"The MSPWB has identified a possible hiding place for Kamui, and Divisions 1 and 3 are sent to the scene in order to investigate. Meanwhile, Akane has Saiga help with Representative Masuda\u2019s interrogation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14715},{"seriesId":195,"episodeFileId":16877,"seasonNumber":2,"episodeNumber":6,"title":"Those Who Cast Stones","airDate":"2014-11-13","airDateUtc":"2014-11-12T16:00:00Z","overview":"The Military Drones hunt down the MWPSB detectives. While attempting to evacuate the detectives, Akane realizes what Kamui\u2019s true objective is. Meanwhile, the Analysis Lab rushes to track down and deactivate the program that hacked the Drones.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14716},{"seriesId":195,"episodeFileId":16878,"seasonNumber":2,"episodeNumber":7,"title":"Untraceable Children","airDate":"2014-11-20","airDateUtc":"2014-11-19T16:00:00Z","overview":"Multiple Dominators were stolen by Kamui during the massacre caused by the Military Drones. Who does he intend to use those Dominators on? And why hasn\u2019t the Sibyl System taken any action to deactivate them? Akane goes to see Kasei to get answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14717},{"seriesId":195,"episodeFileId":16879,"seasonNumber":2,"episodeNumber":8,"title":"Conception of the Oracle","airDate":"2014-11-27","airDateUtc":"2014-11-26T16:00:00Z","overview":"Kamui has been hiding in plain sight using Holos that take the form of dead people aged up, which makes Akane realize that his actions have been planned in great detail. Meanwhile, Mika closes in on the truth about Kamui and submits a report to Kasei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14718},{"seriesId":195,"episodeFileId":16880,"seasonNumber":2,"episodeNumber":9,"title":"Omnipotence Paradox","airDate":"2014-12-04","airDateUtc":"2014-12-03T16:00:00Z","overview":"After figuring out who Sakuya Togane really is, Inspector Shimotsuki also learns the truth about the Sibyl System. In the meantime, Kamui and his accomplices are moving forward with their plan using the Dominators he took from the MWPSB.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14719},{"seriesId":195,"episodeFileId":16881,"seasonNumber":2,"episodeNumber":10,"title":"Gauging the Soul","airDate":"2014-12-11","airDateUtc":"2014-12-10T16:00:00Z","overview":"The ghost has revealed himself and taken action. Kamui and his group take over five hundred passengers in subway trains as hostages and start shooting them randomly with Dominators. What are they trying to accomplish? What is the MWPSB\u2019s next move?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14720},{"seriesId":195,"episodeFileId":16882,"seasonNumber":2,"episodeNumber":11,"title":"What Color?","airDate":"2014-12-18","airDateUtc":"2014-12-17T16:00:00Z","overview":"The time for judgment has come. Akane advances towards the core of the Sibyl System with Kamui. Which will be judged, Kamui or Sibyl? What is Sibyl\u2019s answer to Kamui\u2019s existence? What is Kamui\u2019s intention? The rules of the world are about to change.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":14721},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Psycho-Pass: The Movie","airDate":"2015-01-09","airDateUtc":"2015-01-08T16:00:00Z","overview":"Due to the incredible success of the Sibyl System, Japan has begun exporting the technology to other countries with the hope that it will one day be used all around the world. In order to test its effectiveness in a foreign location, the war-torn state of the South East Asian Union (SEAUn) decides to implement the system, hoping to bring peace and stability to the town of Shambala Float and keep the population in check.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":15670},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Psycho-Pass: Sinners of the System Case.1 (Crime and Punishment)","airDate":"2019-01-25","airDateUtc":"2019-01-24T16:00:00Z","overview":"In the winter of 2117, a runaway vehicle crashes into the Public Safety Bureau Building. The driver is identified as Izumi Yasaka, a psychological counselor at the Sanctuary, a Latent Criminal Isolation Facility in Aomori Prefecture. But right before her interrogation, Inspector Mika Shimotsuki and Enforcer Nobuchika Ginoza are tasked with promptly escorting Yasaka back to Aomori. What awaits them there is a False Paradise.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":14742},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Psycho-Pass: Sinners of the System Case.2 (First Guardian)","airDate":"2019-02-15","airDateUtc":"2019-02-14T16:00:00Z","overview":"2112; the summer before Akane Tsunemori was assigned to Division One of the Public Safety Bureau's Criminal Investigation Department. Teppei Sugo, an accomplished pilot of the Defense Army's 15th Integrated Task Force, joins the military operation in Okinawa. Three months later, an unmanned combat drone opens fire on the Ministry of Defense in Tokyo. Enforcer Tomomi Masaoka of CID Division One is dispatched to Sugo's military base to investigate the truth behind this case.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":14743},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Psycho-Pass: Sinners of the System Case.3 (On the Other Side of Love and Hate)","airDate":"2019-03-08","airDateUtc":"2019-03-07T16:00:00Z","overview":"Following the incident in the Southeast Asia Union in 2116, Shinya Kogami resumes his vagrant journey. In a small South Asian nation, Kogami rescues a bus of refugees under attack by armed guerrilla forces. Among the refugees is a young lady by the name of Tenzin, who begs Kogami to teach her how to retaliate against the enemy. Just what do the girl who wishes for revenge and the man who has exacted revenge see as they gaze upon the edge of a world from which there is no escape?","hasFile":false,"monitored":false,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":14744},{"seriesId":195,"episodeFileId":9984,"seasonNumber":3,"episodeNumber":1,"title":"Laelaps' Calling","airDate":"2019-10-25","airDateUtc":"2019-10-24T16:00:00Z","overview":"Tokyo, 2120. A massive transport drone crashes, and Unit One's new inspectors Arata Shindo and Kei Mikhail Ignatov head to investigate. Discovering that Hyper Transport Co. accountant Asahi Rick Fellows is missing, Arata performs a Mental Trace to track him, but finds only his waterlogged corpse. Arata and Kei suspect the crash was staged, and pursue the mastermind who tried to silence Rick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14722},{"seriesId":195,"episodeFileId":9950,"seasonNumber":3,"episodeNumber":2,"title":"Teumessian Sacrifices","airDate":"2019-11-01","airDateUtc":"2019-10-31T16:00:00Z","overview":"Unit One chases a suspect in the staged crash, Hyper Transport Co. executive Takumi Yonehara, into an abandoned zone. But when they track Yonehara down, they find he's already dead. Arata and Kei ignore Chief Shimotsuki's orders and pursue the mastermind, Sasagawa, to Ariake Airport, where two unfamiliar men stand in their way: Shinya Kogami and Nobuchika Ginoza of the Ministry of Foreign Affairs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14723},{"seriesId":195,"episodeFileId":10153,"seasonNumber":3,"episodeNumber":3,"title":"Herakles and the Sirens","airDate":"2019-11-08","airDateUtc":"2019-11-07T16:00:00Z","overview":"After meeting Karina Komiya face-to-face, Arata senses something unfathomable from her, but can't find a clue to the case. Then Lee Aki, the secretary of her opponent, Kosuke \"Heracles\" Yakushiji, is murdered. Unit One decides to split up to investigate both the attackers and their victims, but...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14724},{"seriesId":195,"episodeFileId":10171,"seasonNumber":3,"episodeNumber":4,"title":"Political Strife in the Colosseum","airDate":"2019-11-15","airDateUtc":"2019-11-14T16:00:00Z","overview":"Freelance journalist Yayoi Kunizuka joins Unit One as an investigation consultant to fill the gap left by Kei's suspension. As the investigation progresses, Unit One uncovers Karina Komiya's greatest secret. Guessing that Karina will be the next to be attacked, they rush to her gubernatorial debate at the Giga Arena.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14725},{"seriesId":195,"episodeFileId":10245,"seasonNumber":3,"episodeNumber":5,"title":"Agamemnon's Offering","airDate":"2019-11-22","airDateUtc":"2019-11-21T16:00:00Z","overview":"A Special Religious Zone is established, where immigrants can practice religion freely. Religious leaders gather for a press event in Mitake New Town, the site of the Special Zone, but the venue becomes the target of a terrorist attack by a suicide bomber with explosives implanted in his stomach. Unit One starts investigating the anti-special-zone faction.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14726},{"seriesId":195,"episodeFileId":10336,"seasonNumber":3,"episodeNumber":6,"title":"Caesar's Gold Coins","airDate":"2019-11-29","airDateUtc":"2019-11-28T16:00:00Z","overview":"Arata and the others have just learned that there are three more human bombs when a third suicide bombing in New Town's factory district takes Joseph Auma's life. Meanwhile, Kei and Kisaragi have infiltrated Heaven's Leap in search of clues to the terrorist serial bombings. They discover proof they're looking for, but find themselves exposed and taken captive.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14727},{"seriesId":195,"episodeFileId":10421,"seasonNumber":3,"episodeNumber":7,"title":"Don't Take God's Name in Vain","airDate":"2019-12-06","airDateUtc":"2019-12-05T16:00:00Z","overview":"Through a Mental Trace, Arata discovers that the supposedly-dead Kurisu is alive and uncovers the truth behind the terrorist bombings. Shimotsuki, meanwhile, has launched a forced search of Heaven's Leap and brought Unit Two to locate Kei. Torri, cornered, takes Maiko hostage and confronts Kei, but Maiko takes advantage of a momentary opening to end his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14728},{"seriesId":195,"episodeFileId":10446,"seasonNumber":3,"episodeNumber":8,"title":"Cubism","airDate":"2019-12-13","airDateUtc":"2019-12-12T16:00:00Z","overview":"Unit One has begun to grasp the truth behind the incidents following each other like a line of falling dominoes and team up with the SAD to continue their investigation. Arata guards the governor, who is at risk of being targeted again, while Kei organizes a sting using Kisaragi as bait. When he arrives at the appointed meeting place, however, he finds Shizuka Homura waiting for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":14729},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"First Inspector - Ziggurat Capture: Part 1","airDate":"2020-03-27","airDateUtc":"2020-03-26T16:00:00Z","overview":"When Arata and Kei, the two inspectors who lead CID Unit One, clash over truth and justice during an investigation, the mastermind behind the case, Koichi Azusawa, launches an assault on the Public Safety Bureau Building, putting the detectives in a predicament like never seen before.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":17561},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"First Inspector - Ziggurat Capture: Part 2","airDate":"2020-03-27","airDateUtc":"2020-03-26T16:25:00Z","overview":"When Arata and Kei, the two inspectors who lead CID Unit One, clash over truth and justice during an investigation, the mastermind behind the case, Koichi Azusawa, launches an assault on the Public Safety Bureau Building, putting the detectives in a predicament like never seen before.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":17562},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"First Inspector - Rainy Day, And","airDate":"2020-03-27","airDateUtc":"2020-03-26T16:50:00Z","overview":"When Arata and Kei, the two inspectors who lead CID Unit One, clash over truth and justice during an investigation, the mastermind behind the case, Koichi Azusawa, launches an assault on the Public Safety Bureau Building, putting the detectives in a predicament like never seen before.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":17563},{"seriesId":195,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Psycho-Pass 3: First Inspector","airDate":"2020-03-27","airDateUtc":"2020-03-26T17:15:00Z","overview":"When Arata and Kei, the two inspectors who lead CID Unit One, clash over truth and justice during an investigation, the mastermind behind the case, Koichi Azusawa, launches an assault on the Public Safety Bureau Building, putting the detectives in a predicament like never seen before.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":17586}],"episodeFile":[{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Teumessian Sacrifices-HDTV-720p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E02.Teumessian Sacrifices-HDTV-720p.mkv","size":1136929522,"dateAdded":"2019-11-02T21:46:43.940953Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 02 [720p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6000000,"videoCodec":"h264","videoFps":23.976,"resolution":"1280x720","runTime":"45:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9950},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Fruit of Paradise-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E09.The Fruit of Paradise-HDTV-1080p.mkv","size":1925903072,"dateAdded":"2019-11-02T21:48:50.259983Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2214863,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8226126,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9968},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Methuselah's Game-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E10.Methuselah's Game-HDTV-1080p.mkv","size":2116908646,"dateAdded":"2019-11-02T21:48:50.323014Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2482016,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9016565,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9969},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Saint's Supper-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E11.The Saint's Supper-HDTV-1080p.mkv","size":2131995305,"dateAdded":"2019-11-02T21:48:50.444954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2513355,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":8511916,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9971},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Devil's Crossroad-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E12.Devil's Crossroad-HDTV-1080p.mkv","size":1951771959,"dateAdded":"2019-11-02T21:48:50.565626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2396669,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":8174830,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9973},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Sweet Poison-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E14.Sweet Poison-HDTV-1080p.mkv","size":1652962598,"dateAdded":"2019-11-02T21:48:50.685412Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2439256,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6347595,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9975},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Town Where Sulfur Falls-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E15.The Town Where Sulfur Falls-HDTV-1080p.mkv","size":1723785740,"dateAdded":"2019-11-02T21:48:50.746282Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2456516,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6747840,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9976},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Gates of Judgment-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E16.The Gates of Judgment-HDTV-1080p.mkv","size":1776031722,"dateAdded":"2019-11-02T21:48:50.810364Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2527508,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6961604,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9977},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Iron Heart-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E17.Iron Heart-HDTV-1080p.mkv","size":1584436294,"dateAdded":"2019-11-02T21:48:50.870794Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2283911,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6151843,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9978},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Promises Written in Water-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E18.Promises Written in Water-HDTV-1080p.mkv","size":1544486501,"dateAdded":"2019-11-02T21:48:50.933216Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2197256,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":5529277,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9979},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Transparent Shadows-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E19.Transparent Shadows-HDTV-1080p.mkv","size":1506434437,"dateAdded":"2019-11-02T21:48:50.994517Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2291731,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5686704,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9980},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Where Justice is Found-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E20.Where Justice is Found-HDTV-1080p.mkv","size":1574116457,"dateAdded":"2019-11-02T21:48:51.054935Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2248830,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6081684,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9981},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Blood-stained Reward-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E21.Blood-stained Reward-HDTV-1080p.mkv","size":1716685436,"dateAdded":"2019-11-02T21:48:51.1139Z","releaseGroup":"stained","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2525888,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6615368,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9982},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Perfect World-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E22.Perfect World-HDTV-1080p.mkv","size":1837553110,"dateAdded":"2019-11-02T21:48:51.174484Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2496279,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":7352568,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9983},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Laelaps' Calling-WEBDL-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E01.Laelaps' Calling-WEBDL-1080p.mkv","size":3146087092,"dateAdded":"2019-11-02T22:23:14.515741Z","sceneName":"Psycho-Pass.S03E01.Laelaps.Calling.1080p.AMZN.WEB-DL.AAC2.0.H.264-aKraa","releaseGroup":"aKraa","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9022150,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":9984},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Episode 03-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E03.Episode 03-HDTV-1080p.mkv","size":1442530088,"dateAdded":"2019-11-07T18:11:26.655789Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 03 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10153},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Episode 04-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E04.Episode 04-HDTV-1080p.mkv","size":1606657430,"dateAdded":"2019-11-14T17:19:26.000634Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 04 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10171},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Episode 05-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E05.Episode 05-HDTV-1080p.mkv","size":1420467991,"dateAdded":"2019-11-21T17:26:57.729154Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 05 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10245},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Episode 06-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E06.Episode 06-HDTV-1080p.mkv","size":1500247521,"dateAdded":"2019-11-28T17:13:20.188012Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 06 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10336},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Episode 07-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E07.Episode 07-HDTV-1080p.mkv","size":1620580828,"dateAdded":"2019-12-05T17:59:39.180288Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 07 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10421},{"seriesId":195,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Episode 08-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 03\/S03E08.Episode 08-HDTV-1080p.mkv","size":1448488521,"dateAdded":"2019-12-12T17:20:19.558219Z","sceneName":"[HorribleSubs] PSYCHO-PASS 3 - 08 [1080p]","releaseGroup":"HorribleSubs","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10446},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Invitation From the Abyss-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E13.Invitation From the Abyss-Bluray-1080p.mkv","size":347978820,"dateAdded":"2020-02-03T01:24:59.579023Z","sceneName":"[SSF]_Psycho-Pass_-_13_1080p_BD_10bit_[010A2E3D]","releaseGroup":"SSF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12098},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Criminal Coefficient-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E01.Criminal Coefficient-HDTV-1080p.mkv","size":924435051,"dateAdded":"2020-02-27T00:46:00.437659Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96400,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2585621,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12617},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Those Capable-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E02.Those Capable-HDTV-1080p.mkv","size":805991465,"dateAdded":"2020-02-27T00:46:09.124809Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":95916,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2241491,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:59","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12618},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Raising Manners-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E03.Raising Manners-HDTV-1080p.mkv","size":719717750,"dateAdded":"2020-02-27T00:46:16.530832Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96400,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1990102,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12619},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Nobody Knows Your Mask-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E04.Nobody Knows Your Mask-HDTV-1080p.mkv","size":733896030,"dateAdded":"2020-02-27T00:46:23.729659Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96400,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2031585,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12620},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Nobody Knows Your Face-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E05.Nobody Knows Your Face-HDTV-1080p.mkv","size":647765385,"dateAdded":"2020-02-27T00:46:31.036925Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96401,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1780673,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12621},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Return of the Lunatic Prince-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E06.Return of the Lunatic Prince-HDTV-1080p.mkv","size":682334944,"dateAdded":"2020-02-27T00:46:38.021482Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96400,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1881285,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12622},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Symbolism of Bletilla Striata-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E07.Symbolism of Bletilla Striata-HDTV-1080p.mkv","size":738898076,"dateAdded":"2020-02-27T00:46:45.321893Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96400,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2046333,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:49","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12623},{"seriesId":195,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Rest is Silence-HDTV-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 01\/S01E08.The Rest is Silence-HDTV-1080p.mkv","size":463456738,"dateAdded":"2020-02-27T00:46:51.271808Z","releaseGroup":"Hakata Ramen","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96400,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1244498,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:50","scanType":"","subtitles":"English \/ English \/ French \/ Chinese \/ Korean \/ Spanish \/ Spanish \/ Arabic \/ Portuguese \/ German \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12624},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Scales of Justice-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E01.The Scales of Justice-Bluray-1080p.mkv","size":3059513998,"dateAdded":"2020-12-14T21:57:56.62876Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16872},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Creeping Unknown-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E02.The Creeping Unknown-Bluray-1080p.mkv","size":3066851097,"dateAdded":"2020-12-14T22:00:09.274789Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16873},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Devil\u2019s Proof-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E03.The Devil\u2019s Proof-Bluray-1080p.mkv","size":3066385699,"dateAdded":"2020-12-14T22:02:15.794979Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17412000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16874},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Salvation of Job-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E04.The Salvation of Job-Bluray-1080p.mkv","size":3098947844,"dateAdded":"2020-12-14T22:04:21.817248Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":17408000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16875},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Unforbidden Games-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E05.Unforbidden Games-Bluray-1080p.mkv","size":3066649399,"dateAdded":"2020-12-14T22:06:25.187185Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16876},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Those Who Cast Stones-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E06.Those Who Cast Stones-Bluray-1080p.mkv","size":3066511037,"dateAdded":"2020-12-14T22:08:27.60121Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16877},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Untraceable Children-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E07.Untraceable Children-Bluray-1080p.mkv","size":3066706517,"dateAdded":"2020-12-14T22:10:42.080383Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17412000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16878},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Conception of the Oracle-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E08.Conception of the Oracle-Bluray-1080p.mkv","size":3098368531,"dateAdded":"2020-12-14T22:12:53.889715Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":17407000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16879},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Omnipotence Paradox-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E09.Omnipotence Paradox-Bluray-1080p.mkv","size":3067650662,"dateAdded":"2020-12-14T22:15:03.267794Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16880},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Gauging the Soul-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E10.Gauging the Soul-Bluray-1080p.mkv","size":3066949665,"dateAdded":"2020-12-14T22:17:12.131125Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17415000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:21","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16881},{"seriesId":195,"seasonNumber":2,"relativePath":"Season 02\/S02E11.What Color-Bluray-1080p.mkv","path":"\/tv\/Psycho-Pass\/Season 02\/S02E11.What Color-Bluray-1080p.mkv","size":3065821567,"dateAdded":"2020-12-14T22:19:16.235152Z","releaseGroup":"DarkDream","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":17409000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:22","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16882}],"queue":[]},"211":{"series":{"title":"Primal","alternateTitles":[{"title":"Genndy Tartakovskys Primal","seasonNumber":-1}],"sortTitle":"primal","status":"continuing","ended":false,"overview":"Primal features a caveman at the dawn of evolution. A dinosaur on the brink of extinction. Bonded by tragedy, this unlikely friendship becomes the only hope of survival in a violent, primordial world.","previousAiring":"2020-11-02T04:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/213\/banner.jpg?lastWrite=637383219187092160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364007\/banners\/5f8628b2ef5e6.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/213\/poster.jpg?lastWrite=637142986534481310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5d7e678d4a5ef.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/213\/fanart.jpg?lastWrite=637378449496492500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364007\/backgrounds\/5f7ebb8dce7ec.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-11-02T04:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":12182385463,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Primal","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":364007,"tvRageId":0,"tvMazeId":42184,"firstAired":"2019-10-08T00:00:00Z","seriesType":"standard","cleanTitle":"primal","imdbId":"tt10332508","titleSlug":"primal","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Adventure","Animation"],"tags":[],"added":"2020-01-07T21:06:49.49271Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":12,"sizeOnDisk":12182385463,"percentOfEpisodes":100.0},"id":213},"episodes":[{"seriesId":213,"episodeFileId":16947,"seasonNumber":1,"episodeNumber":1,"title":"Spear and Fang","airDate":"2019-10-08","airDateUtc":"2019-10-09T03:30:00Z","overview":"Tragedy forces a caveman and a dinosaur to rely upon each other for their survival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":16877},{"seriesId":213,"episodeFileId":15670,"seasonNumber":1,"episodeNumber":2,"title":"River of Snakes","airDate":"2019-10-09","airDateUtc":"2019-10-10T03:30:00Z","overview":"Man and beast are challenged to find a way to exist together.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":16878},{"seriesId":213,"episodeFileId":16948,"seasonNumber":1,"episodeNumber":3,"title":"A Cold Death","airDate":"2019-10-10","airDateUtc":"2019-10-11T03:30:00Z","overview":"In the harshness of the primordial winter, a herd of woolly mammoths hunt for the murderers of one of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":16879},{"seriesId":213,"episodeFileId":15671,"seasonNumber":1,"episodeNumber":4,"title":"Terror Under the Blood Moon","airDate":"2019-10-11","airDateUtc":"2019-10-12T03:30:00Z","overview":"The horrors of the red night challenge Spear and Fang for their very survival.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":16880},{"seriesId":213,"episodeFileId":15672,"seasonNumber":1,"episodeNumber":5,"title":"Rage of the Ape-Men","airDate":"2019-10-12","airDateUtc":"2019-10-13T03:30:00Z","overview":"An oasis of peace only leads to a brutal attack from a vicious tribe of apelike men.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":16881},{"seriesId":213,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Primal: Tales of Savagery","airDate":"2020-01-07","airDateUtc":"2020-01-08T04:30:00Z","overview":"Genndy Tartakovsky's Primal: Tales of Savagery features a caveman and a dinosaur on the brink of extinction. Bonded by tragedy, this unlikely friendship becomes the only hope of survival.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17957},{"seriesId":213,"episodeFileId":17981,"seasonNumber":1,"episodeNumber":6,"title":"Scent of Prey","airDate":"2020-10-04","airDateUtc":"2020-10-05T03:30:00Z","overview":"Spear struggles to nurse Fang back to health and escape the scavengers of the primordial world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":18534},{"seriesId":213,"episodeFileId":17980,"seasonNumber":1,"episodeNumber":7,"title":"Plague of Madness","airDate":"2020-10-11","airDateUtc":"2020-10-12T03:30:00Z","overview":"A sick and unstoppable sauropod has set an eye for two new preys","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":19758},{"seriesId":213,"episodeFileId":15902,"seasonNumber":1,"episodeNumber":8,"title":"Coven of the Damned","airDate":"2020-10-18","airDateUtc":"2020-10-19T03:30:00Z","overview":"A tribe of mysterious, primitive women seek to further their coven by using dark magic on Spear and Fang.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":19759},{"seriesId":213,"episodeFileId":15954,"seasonNumber":1,"episodeNumber":9,"title":"The Night Feeder","airDate":"2020-10-25","airDateUtc":"2020-10-26T03:30:00Z","overview":"Spear and Fang are followed in the night by an unseen horror.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":19760},{"seriesId":213,"episodeFileId":15999,"seasonNumber":1,"episodeNumber":10,"title":"Slave of the Scorpion","airDate":"2020-11-01","airDateUtc":"2020-11-02T04:30:00Z","overview":"Spear and Fang are confronted by a far more developed human than they've ever encountered before.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":19761},{"seriesId":213,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Behind The Scenes: Genndy Tartakovsky's Primal","airDate":"2020-11-14","airDateUtc":"2020-11-15T04:30:00Z","overview":"Get a glimpse at how this Emmy\u00ae winning TV series came to be.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20053}],"episodeFile":[{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E02.River of Snakes-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E02.River of Snakes-WEBDL-1080p.mkv","size":1261201538,"dateAdded":"2020-10-05T18:22:51.414306Z","sceneName":"Primal.S01E02.1080p.WEB.h264-BAE[rarbg]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125660,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000790,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15670},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Terror Under the Blood Moon-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E04.Terror Under the Blood Moon-WEBDL-1080p.mkv","size":1382768653,"dateAdded":"2020-10-05T18:24:48.527805Z","sceneName":"Primal.S01E04.1080p.WEB.h264-BAE[rarbg]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125660,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8047741,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15671},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Rage of the Ape-Men-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E05.Rage of the Ape-Men-WEBDL-1080p.mkv","size":1377665537,"dateAdded":"2020-10-05T18:26:43.383759Z","sceneName":"Primal.S01E05.1080p.WEB.h264-BAE[rarbg]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125660,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8018869,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15672},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Coven of the Damned-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E08.Coven of the Damned-WEBDL-1080p.mkv","size":854030870,"dateAdded":"2020-10-19T23:30:15.852428Z","sceneName":"Primal.S01E08.Coven.of.the.Damned.1080p.AS.WEBRip.AAC2.0.x264-BTN[rarbg]","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15902},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Night Feeder-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E09.The Night Feeder-WEBDL-1080p.mkv","size":745481536,"dateAdded":"2020-10-26T04:36:55.035739Z","sceneName":"Primal.S01E09.The.Night.Feeder.1080p.AS.WEBRip.AAC2.0.x264-BTN[rarbg]","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"20:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15954},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Slave of the Scorpion-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E10.Slave of the Scorpion-WEBDL-1080p.mkv","size":849902504,"dateAdded":"2020-11-02T05:28:23.276663Z","sceneName":"Primal.S01E10.Slave.of.the.Scorpion.1080p.AS.WEBRip.AAC2.0.x264-BTN[rarbg]","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5000000,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15999},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Spear and Fang-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E01.Spear and Fang-WEBDL-1080p.mkv","size":1397421364,"dateAdded":"2020-12-24T19:24:16.093303Z","sceneName":"Primal.S01E01.1080p.WEB.h264-KOGi[rartv]","releaseGroup":"KOGi","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8230257,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16947},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A Cold Death-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E03.A Cold Death-WEBDL-1080p.mkv","size":1452758097,"dateAdded":"2020-12-24T20:12:16.692958Z","sceneName":"Primal.S01E03.1080p.WEB.h264-KOGi[rartv]","releaseGroup":"KOGi","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8237437,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16948},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Plague of Madness-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E07.Plague of Madness-WEBDL-1080p.mkv","size":1400464444,"dateAdded":"2021-04-11T21:30:53.313244Z","sceneName":"Primal.S01E07.1080p.WEB.h264-KOGi[rartv]","releaseGroup":"KOGi","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8247615,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17980},{"seriesId":213,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Scent of Prey-WEBDL-1080p.mkv","path":"\/tv\/Primal\/Season 01\/S01E06.Scent of Prey-WEBDL-1080p.mkv","size":1460690920,"dateAdded":"2021-04-11T21:32:36.309837Z","sceneName":"Primal.S01E06.1080p.WEB.h264-KOGi[rartv]","releaseGroup":"KOGi","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8235986,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17981}],"queue":[]},"213":{"series":{"title":"Epithet Erased","alternateTitles":[],"sortTitle":"epithet erased","status":"continuing","ended":false,"overview":"An ensemble comedy show about people with superpowers based around a random word attached to their soul called an Epithet. The show follows our protagonist, Molly, who gets stuck in a museum the same time a bunch of thieves break in to steal an artifact.","previousAiring":"2019-12-20T05:00:00Z","network":"VRV","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/217\/poster.jpg?lastWrite=637144529176053190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5dbdbd386856e.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/217\/fanart.jpg?lastWrite=637144529164933390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5dbdb122bc6f8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-20T05:00:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":764057335,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Epithet Erased","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":371712,"tvRageId":0,"tvMazeId":0,"firstAired":"2019-11-08T00:00:00Z","seriesType":"standard","cleanTitle":"epitheterased","titleSlug":"epithet-erased","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Comedy"],"tags":[],"added":"2020-01-12T19:08:34.356047Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":9,"sizeOnDisk":764057335,"percentOfEpisodes":100.0},"id":217},"episodes":[{"seriesId":217,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Epithet Erased - Official Opening","airDate":"2019-10-25","airDateUtc":"2019-10-25T04:00:00Z","overview":"Official Opening for Epithet Erased.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17034},{"seriesId":217,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"GREAT AT CRIME (feat. The Musical Ghost + OR3O)","airDate":"2019-11-02","airDateUtc":"2019-11-02T04:00:00Z","overview":"The credits theme for Epithet Erased.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17035},{"seriesId":217,"episodeFileId":11276,"seasonNumber":1,"episodeNumber":1,"title":"Quiet in the Museum","airDate":"2019-11-08","airDateUtc":"2019-11-08T05:00:00Z","overview":"12-year-old Molly Blyndeff finds herself trapped overnight in the Sweet Jazz City Museum. Now she\u2019s trying to break out on the same night that a group of thieves have decided to break in.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17036},{"seriesId":217,"episodeFileId":11277,"seasonNumber":1,"episodeNumber":2,"title":"Bear Trap","airDate":"2019-11-15","airDateUtc":"2019-11-15T05:00:00Z","overview":"Faced with an even bigger threat than the Banzai Blasters, Molly must team up with their leader, Giovanni, if she wants to stand a fighting chance of escaping the museum. But there may be even more nightmarish foes lurking in the darkened halls\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17037},{"seriesId":217,"episodeFileId":11278,"seasonNumber":1,"episodeNumber":3,"title":"The Doctor is In","airDate":"2019-11-22","airDateUtc":"2019-11-22T05:00:00Z","overview":"Molly and Giovanni square off against the gargantuan Dr. Beefton while Mera and Indus desperately search for the amulet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17038},{"seriesId":217,"episodeFileId":11279,"seasonNumber":1,"episodeNumber":4,"title":"Reflection","airDate":"2019-11-29","airDateUtc":"2019-11-29T05:00:00Z","overview":"The amulet has been found! All parties converge on the museum storeroom for the final confrontation as the police raid the museum!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17039},{"seriesId":217,"episodeFileId":11280,"seasonNumber":1,"episodeNumber":5,"title":"Redwood Run","airDate":"2019-12-06","airDateUtc":"2019-12-06T05:00:00Z","overview":"A week after the museum incident, Detective Percy King has been placed in charge of hunting down the Arsene Amulet and the thieves who stole it. Giovanni makes arrangements to meet with an underworld appraiser in the backwoods town of Redwood Run.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17040},{"seriesId":217,"episodeFileId":11281,"seasonNumber":1,"episodeNumber":6,"title":"All's Well That Ends Well","airDate":"2019-12-13","airDateUtc":"2019-12-13T05:00:00Z","overview":"Percy and Ramsey tussle with an entire town full of Banzai Blasters! Giovanni makes his play! A whistling shadow lurks in the woods! ...But who has the amulet?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17041},{"seriesId":217,"episodeFileId":11282,"seasonNumber":1,"episodeNumber":7,"title":"Winner Takes All","airDate":"2019-12-20","airDateUtc":"2019-12-20T05:00:00Z","overview":"Zora appears at the train station and challenges Ramsey and Percy to one final duel: Winner gets the Arsene Amulet and control of Ramsey\u2019s fate! The catch? No epithets allowed!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17042}],"episodeFile":[{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Quiet in the Museum-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E01.Quiet in the Museum-HDTV-720p.mkv","size":106598393,"dateAdded":"2020-01-12T19:09:28.486451Z","releaseGroup":"yio2JNgQKBM","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"25:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11276},{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Bear Trap-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E02.Bear Trap-HDTV-720p.mkv","size":115865411,"dateAdded":"2020-01-12T19:09:28.564308Z","releaseGroup":"8hIr9H","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"29:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11277},{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Doctor is In-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E03.The Doctor is In-HDTV-720p.mkv","size":88224496,"dateAdded":"2020-01-12T19:09:28.61828Z","releaseGroup":"hVEH7AQIDIY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"21:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11278},{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Reflection-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E04.Reflection-HDTV-720p.mkv","size":103948421,"dateAdded":"2020-01-12T19:09:28.673352Z","releaseGroup":"xHvSGzhXx1k","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"24:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11279},{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Redwood Run-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E05.Redwood Run-HDTV-720p.mkv","size":110010541,"dateAdded":"2020-01-12T19:09:28.728077Z","releaseGroup":"to","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"26:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11280},{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E06.All's Well That Ends Well-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E06.All's Well That Ends Well-HDTV-720p.mkv","size":113476011,"dateAdded":"2020-01-12T19:09:28.782989Z","releaseGroup":"0eish7R27r8","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"24:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11281},{"seriesId":217,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Episode 07-HDTV-720p.mkv","path":"\/tv\/Epithet Erased\/Season 01\/S01E07.Episode 07-HDTV-720p.mkv","size":125934062,"dateAdded":"2020-01-12T19:09:28.838256Z","releaseGroup":"CKKSkA2lKF0","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"27:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11282}],"queue":[]},"215":{"series":{"title":"The Owl House","alternateTitles":[{"title":"Willkommen im Haus der Eulen","seasonNumber":-1}],"sortTitle":"owl house","status":"continuing","ended":false,"overview":"An animated fantasy-comedy series that follows Luz, a self-assured teenage girl who accidentally stumbles upon a portal to a magical world where she befriends a rebellious witch, Eda, and an adorably tiny warrior, King. Despite not having magical abilities, Luz pursues her dream of becoming a witch by serving as Eda's apprentice at the Owl House and ultimately finds a new family in an unlikely setting.","previousAiring":"2021-08-14T14:00:00Z","network":"Disney Channel","airTime":"10:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/215\/banner.jpg?lastWrite=637148183783391550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/banners\/62050528.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/215\/poster.jpg?lastWrite=637307781670563240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/posters\/62003549.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/215\/fanart.jpg?lastWrite=637297377276225640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/349578\/backgrounds\/5f041c4896063.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-08-29T14:00:00Z","episodeFileCount":19,"episodeCount":19,"totalEpisodeCount":19,"sizeOnDisk":14390005338,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-08-14T14:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":21,"sizeOnDisk":7970763080,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/The Owl House","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":22,"tvdbId":349578,"tvRageId":0,"tvMazeId":35073,"firstAired":"2020-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"theowlhouse","imdbId":"tt8050756","titleSlug":"the-owl-house","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Fantasy"],"tags":[],"added":"2020-01-11T03:18:24.888281Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":29,"episodeCount":29,"totalEpisodeCount":48,"sizeOnDisk":22360768418,"percentOfEpisodes":100.0},"id":215},"episodes":[{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Follies at the Coven Day Parade","overview":"No description yet","hasFile":false,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":21633},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"Elsewhere and Elsewhen","overview":"No description yet","hasFile":false,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":21634},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":13,"title":"Any Sport in a Storm","overview":"No description yet","hasFile":false,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":21635},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":14,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21668},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":15,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21669},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":16,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21670},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":17,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21671},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":18,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21672},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":19,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21673},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":20,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21674},{"seriesId":215,"episodeFileId":0,"seasonNumber":2,"episodeNumber":21,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21675},{"seriesId":215,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"Episode 3.1","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":22165},{"seriesId":215,"episodeFileId":0,"seasonNumber":3,"episodeNumber":2,"title":"Episode 3.2","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":22166},{"seriesId":215,"episodeFileId":0,"seasonNumber":3,"episodeNumber":3,"title":"Episode 3.3","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":22167},{"seriesId":215,"episodeFileId":11220,"seasonNumber":1,"episodeNumber":1,"title":"A Lying Witch and a Warden","airDate":"2020-01-10","airDateUtc":"2020-01-10T15:00:00Z","overview":"When Luz stumbles upon a portal to a magical realm, she befriends a rebellious witch, Eda, and a tiny warrior, King.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":16956},{"seriesId":215,"episodeFileId":12045,"seasonNumber":1,"episodeNumber":2,"title":"Witches Before Wizards","airDate":"2020-01-17","airDateUtc":"2020-01-17T15:00:00Z","overview":"An ancient wizard gives Luz a map for a mystical quest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":16957},{"seriesId":215,"episodeFileId":12061,"seasonNumber":1,"episodeNumber":3,"title":"I Was a Teenage Abomination","airDate":"2020-01-24","airDateUtc":"2020-01-24T15:00:00Z","overview":"Luz sneaks into the local magic school to help a friend and makes a new enemy in the process.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":16958},{"seriesId":215,"episodeFileId":12094,"seasonNumber":1,"episodeNumber":4,"title":"The Intruder","airDate":"2020-01-31","airDateUtc":"2020-01-31T15:00:00Z","overview":"Luz and King must defend The Owl House from a mysterious intruder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":16959},{"seriesId":215,"episodeFileId":12124,"seasonNumber":1,"episodeNumber":5,"title":"Covention","airDate":"2020-02-07","airDateUtc":"2020-02-07T15:00:00Z","overview":"Luz learns about witch covens, but her lesson goes awry when she finds herself thrust into a witch's duel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":16960},{"seriesId":215,"episodeFileId":12549,"seasonNumber":1,"episodeNumber":6,"title":"Hooty's Moving Hassle","airDate":"2020-02-21","airDateUtc":"2020-02-21T15:00:00Z","overview":"When Luz, Willow and Gus accidentally animate the Owl House, the house runs amok all over Bonesborough.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":16961},{"seriesId":215,"episodeFileId":12636,"seasonNumber":1,"episodeNumber":7,"title":"Lost in Language","airDate":"2020-02-28","airDateUtc":"2020-02-28T15:00:00Z","overview":"While checking out the library, Luz\u2019s pranks lead to unintended consequences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":16962},{"seriesId":215,"episodeFileId":12666,"seasonNumber":1,"episodeNumber":8,"title":"Once Upon a Swap","airDate":"2020-03-06","airDateUtc":"2020-03-06T15:00:00Z","overview":"A simple disagreement leads to a complex situation when Eda, King and Luz triple-down on a wager.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":16963},{"seriesId":215,"episodeFileId":12706,"seasonNumber":1,"episodeNumber":9,"title":"Something Ventured, Someone Framed","airDate":"2020-03-13","airDateUtc":"2020-03-13T14:00:00Z","overview":"When Gus sneaks Luz into Hexside School to present at the Human Appreciation Society, Luz sees a side of the school she didn't expect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":16964},{"seriesId":215,"episodeFileId":12736,"seasonNumber":1,"episodeNumber":10,"title":"Escape of the Palisman","airDate":"2020-03-20","airDateUtc":"2020-03-20T14:00:00Z","overview":"When an adventure with Eda\u2019s staff goes awry, Luz and her friends have to earn the staff back from a mysterious forest creature or lose it forever.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":16965},{"seriesId":215,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Welcome to Hexside!","airDate":"2020-04-04","airDateUtc":"2020-04-04T14:00:00Z","overview":"Principal Bump welcomes you to Hexside School of Magic and Demonics! Their top priority is keeping students safe, providing amazing food in the cafeteria, and give students the support they need!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17579},{"seriesId":215,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Eda's Cursed Brush","airDate":"2020-04-11","airDateUtc":"2020-04-11T14:00:00Z","overview":"Luz teaches Eda how to make fine art out of anything! But when Luz uses Eda's cursed pencil, things go awry!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17580},{"seriesId":215,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Paint Scare!","airDate":"2020-04-18","airDateUtc":"2020-04-18T14:00:00Z","overview":"Luz and King head off to the woods to paint scenic nature! But they can't seem to escape a dark mysterious figure in their painting!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17771},{"seriesId":215,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Art Lessons with Luz","airDate":"2020-04-25","airDateUtc":"2020-04-25T14:00:00Z","overview":"King is fascinated by Luz's drawings, but Hooty loses his cool when he can't tell the difference between a drawing and real life!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17772},{"seriesId":215,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Coven Lovin Soap Opera","airDate":"2020-05-02","airDateUtc":"2020-05-02T14:00:00Z","overview":"Luz watches her favorite romantic soap opera \"Bleeding Hearts\" and King slowly becomes addicted!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17804},{"seriesId":215,"episodeFileId":15012,"seasonNumber":1,"episodeNumber":11,"title":"Sense and Insensitivity","airDate":"2020-07-11","airDateUtc":"2020-07-11T14:00:00Z","overview":"When King becomes a bestselling author, he learns a valuable lesson in reading the fine print.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":17826},{"seriesId":215,"episodeFileId":15045,"seasonNumber":1,"episodeNumber":12,"title":"Adventures in the Elements","airDate":"2020-07-18","airDateUtc":"2020-07-18T14:00:00Z","overview":"Luz needs to learn a new spell, so Eda takes her to the most magical place on the island to train.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":18459},{"seriesId":215,"episodeFileId":15085,"seasonNumber":1,"episodeNumber":13,"title":"The First Day","airDate":"2020-07-25","airDateUtc":"2020-07-25T14:00:00Z","overview":"During Luz\u2019s first day of Magic School, curiosity gets the best of her, and she finds herself thrown into the Delinquent Track, where she\u2019s not allowed to learn magic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":18460},{"seriesId":215,"episodeFileId":15115,"seasonNumber":1,"episodeNumber":14,"title":"Really Small Problems","airDate":"2020-08-01","airDateUtc":"2020-08-01T14:00:00Z","overview":"King confides in a carnival fortuneteller who makes his dream come true, but it comes at a cost.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":18492},{"seriesId":215,"episodeFileId":15120,"seasonNumber":1,"episodeNumber":15,"title":"Understanding Willow","airDate":"2020-08-01","airDateUtc":"2020-08-01T14:22:00Z","overview":"Luz, Willow and Amity take a trip down memory lane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":18493},{"seriesId":215,"episodeFileId":15218,"seasonNumber":1,"episodeNumber":16,"title":"Enchanting Grom Fright","airDate":"2020-08-08","airDateUtc":"2020-08-08T14:00:00Z","overview":"Luz experiences Grom, Hexside\u2019s version of Prom, and it\u2019s not what she expects.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":18562},{"seriesId":215,"episodeFileId":15254,"seasonNumber":1,"episodeNumber":17,"title":"Wing It Like Witches","airDate":"2020-08-15","airDateUtc":"2020-08-15T14:00:00Z","overview":"Not your average underdog story.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":18563},{"seriesId":215,"episodeFileId":15309,"seasonNumber":1,"episodeNumber":18,"title":"Agony of a Witch","airDate":"2020-08-22","airDateUtc":"2020-08-22T14:00:00Z","overview":"On a school field trip to the mysterious Emperor\u2019s Castle, Luz strays from the group and into danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":18564},{"seriesId":215,"episodeFileId":15483,"seasonNumber":1,"episodeNumber":19,"title":"Young Blood, Old Souls","airDate":"2020-08-29","airDateUtc":"2020-08-29T14:00:00Z","overview":"Luz\u2019s skills as a witch are put to the test when she attempts the impossible.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":18565},{"seriesId":215,"episodeFileId":18346,"seasonNumber":2,"episodeNumber":1,"title":"Separate Tides","airDate":"2021-06-12","airDateUtc":"2021-06-12T14:00:00Z","overview":"Luz feels guilty about Eda losing her powers, so she sets sail in search of a lucrative bounty to help the Owl House.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":21547},{"seriesId":215,"episodeFileId":18436,"seasonNumber":2,"episodeNumber":2,"title":"Escaping Expulsion","airDate":"2021-06-19","airDateUtc":"2021-06-19T14:00:00Z","overview":"When Amity's parents get Luz, Willow, and Gus expelled from Hexside, Luz strikes a dangerous deal with them to get back into school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":21548},{"seriesId":215,"episodeFileId":18488,"seasonNumber":2,"episodeNumber":3,"title":"Echoes of the Past","airDate":"2021-06-26","airDateUtc":"2021-06-26T14:00:00Z","overview":"King's delusions of grandeur lead Luz, Lilith and Hooty to a dangerous new island.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":21549},{"seriesId":215,"episodeFileId":18603,"seasonNumber":2,"episodeNumber":4,"title":"Keeping Up A-fear-ances","airDate":"2021-07-03","airDateUtc":"2021-07-03T14:00:00Z","overview":"Eda gets an unwelcome visit from a family member who puts a strain on everyone in the Owl House.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":21550},{"seriesId":215,"episodeFileId":18626,"seasonNumber":2,"episodeNumber":5,"title":"Through the Looking Glass Ruins","airDate":"2021-07-10","airDateUtc":"2021-07-10T14:00:00Z","overview":"Gus tries to impress a group of cool kids from Glandus High, while Luz and Amity journey into the most dangerous section of the library.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":21551},{"seriesId":215,"episodeFileId":18665,"seasonNumber":2,"episodeNumber":6,"title":"Hunting Palismen","airDate":"2021-07-17","airDateUtc":"2021-07-17T14:00:00Z","overview":"It's Palisman Pairing Day at Hexside, but Luz doesn't match with a Palisman of her own and soon finds herself on an unexpected journey with a foe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":21552},{"seriesId":215,"episodeFileId":18694,"seasonNumber":2,"episodeNumber":7,"title":"Eda's Requiem","airDate":"2021-07-24","airDateUtc":"2021-07-24T14:00:00Z","overview":"A special witch from Eda's past enlists her in a rebellion against the Emperor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":21553},{"seriesId":215,"episodeFileId":18728,"seasonNumber":2,"episodeNumber":8,"title":"Knock, Knock, Knockin' on Hooty's Door","airDate":"2021-07-31","airDateUtc":"2021-07-31T14:00:00Z","overview":"Hooty tries to help King, Eda and Luz with their problems, but it doesn't go as planned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":21554},{"seriesId":215,"episodeFileId":18811,"seasonNumber":2,"episodeNumber":9,"title":"Eclipse Lake","airDate":"2021-08-07","airDateUtc":"2021-08-07T14:00:00Z","overview":"When Luz gets sick, Amity must find an important ingredient for the portal door.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":21555},{"seriesId":215,"episodeFileId":18832,"seasonNumber":2,"episodeNumber":10,"title":"Yesterday's Lie","airDate":"2021-08-14","airDateUtc":"2021-08-14T14:00:00Z","overview":"Luz thinks she's found a way back home, but she may not be ready for what awaits on the other side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":21556}],"episodeFile":[{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Lying Witch and a Warden-WEBRip-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E01.A Lying Witch and a Warden-WEBRip-1080p.mkv","size":675703538,"dateAdded":"2020-01-11T03:20:10.721864Z","sceneName":"The.Owl.House.S01E01.A.Lying.Witch.and.a.Warden.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4018518,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11220},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Witches Before Wizards-WEBRip-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E02.Witches Before Wizards-WEBRip-1080p.mkv","size":816832374,"dateAdded":"2020-01-18T00:17:37.533113Z","sceneName":"The.Owl.House.S01E02.Witches.Before.Wizards.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4871634,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12045},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E03.I Was a Teenage Abomination-WEBRip-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E03.I Was a Teenage Abomination-WEBRip-1080p.mkv","size":782595358,"dateAdded":"2020-01-25T02:36:09.672343Z","sceneName":"The.Owl.House.S01E03.I.Was.a.Teenage.Abomination.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4664674,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12061},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Intruder-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E04.The Intruder-WEBDL-1080p.mkv","size":685446100,"dateAdded":"2020-02-01T05:19:11.015506Z","sceneName":"The.Owl.House.S01E04.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":64000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4223402,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12094},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Covention-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E05.Covention-WEBDL-1080p.mkv","size":753971533,"dateAdded":"2020-02-08T05:08:43.928399Z","sceneName":"The.Owl.House.S01E05.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4491641,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12124},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Hooty's Moving Hassle-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E06.Hooty's Moving Hassle-WEBDL-1080p.mkv","size":787276414,"dateAdded":"2020-02-22T05:22:17.92102Z","sceneName":"The.Owl.House.S01E06.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4692955,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12549},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Lost in Language-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E07.Lost in Language-WEBDL-1080p.mkv","size":696899126,"dateAdded":"2020-02-29T05:08:33.858608Z","sceneName":"The.Owl.House.S01E07.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4146635,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12636},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Once Upon a Swap-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E08.Once Upon a Swap-WEBDL-1080p.mkv","size":844448752,"dateAdded":"2020-03-07T05:15:20.907207Z","sceneName":"The.Owl.House.S01E08.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5097146,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12666},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Something Ventured, Someone Framed-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E09.Something Ventured, Someone Framed-WEBDL-1080p.mkv","size":742997658,"dateAdded":"2020-03-14T05:21:39.781283Z","sceneName":"The.Owl.House.S01E09.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4529572,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12706},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Escape of the Palisman-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E10.Escape of the Palisman-WEBDL-1080p.mkv","size":823891652,"dateAdded":"2020-03-21T04:10:01.171488Z","sceneName":"The.Owl.House.S01E10.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4971443,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12736},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Sense and Insensitivity-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E11.Sense and Insensitivity-WEBDL-1080p.mkv","size":785422507,"dateAdded":"2020-07-12T04:08:56.189569Z","sceneName":"The.Owl.House.S01E11.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4628487,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15012},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Adventures in the Elements-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E12.Adventures in the Elements-WEBDL-1080p.mkv","size":748453428,"dateAdded":"2020-07-18T21:23:01.056194Z","sceneName":"The.Owl.House.S01E12.1080p.WEB.h264-WALT[rarbg]","releaseGroup":"WALT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4458275,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15045},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The First Day-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E13.The First Day-WEBDL-1080p.mkv","size":767795112,"dateAdded":"2020-07-25T16:58:17.133657Z","sceneName":"The.Owl.House.S01E13.The.First.Day.1080p.HULU.WEBRip.AAC2.0.H264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4628457,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15085},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Really Small Problems-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E14.Really Small Problems-WEBDL-1080p.mkv","size":740661780,"dateAdded":"2020-08-01T20:58:48.398756Z","sceneName":"The.Owl.House.S01E14.Really.Small.Problems.1080p.HULU.WEBRip.AAC2.0.H264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4515120,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15115},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Understanding Willow-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E15.Understanding Willow-WEBDL-1080p.mkv","size":772318988,"dateAdded":"2020-08-02T20:13:11.644469Z","sceneName":"The.Owl.House.S01E15.Understanding.Willow.1080p.HULU.WEB-DL.AAC2.0.H.264-CtrlHD[eztv.io]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4656133,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15120},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Enchanting Grom Fright-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E16.Enchanting Grom Fright-WEBDL-1080p.mkv","size":735147179,"dateAdded":"2020-08-08T15:54:44.556848Z","sceneName":"The.Owl.House.S01E16.Enchanting.Grom.Fright.1080p.HULU.WEBRip.AAC2.0.H264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4481039,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15218},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Wing It Like Witches-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E17.Wing It Like Witches-WEBDL-1080p.mkv","size":790901402,"dateAdded":"2020-08-15T19:12:29.275562Z","sceneName":"The.Owl.House.S01E17.Wing.It.Like.Witches.1080p.HULU.WEBRip.AAC2.0.H264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4714875,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15254},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Agony of a Witch-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E18.Agony of a Witch-WEBDL-1080p.mkv","size":729284599,"dateAdded":"2020-08-22T16:39:32.805741Z","sceneName":"The.Owl.House.S01E18.Agony.of.a.Witch.1080p.HULU.WEBRip.AAC2.0.H264-CtrlHD[rarbg]","releaseGroup":"CtrlHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4551857,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15309},{"seriesId":215,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Young Blood, Old Souls-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 01\/S01E19.Young Blood, Old Souls-WEBDL-1080p.mkv","size":709957838,"dateAdded":"2020-08-29T14:43:26.093225Z","sceneName":"The.Owl.House.S01E19.Young.Blood.Old.Souls.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4274850,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15483},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Separate Tides-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E01.Separate Tides-WEBDL-1080p.mkv","size":811805448,"dateAdded":"2021-06-13T02:35:15.469442Z","sceneName":"The.Owl.House.S02E01.Separate.Tides.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4841252,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18346},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Escaping Expulsion-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E02.Escaping Expulsion-WEBDL-1080p.mkv","size":745987915,"dateAdded":"2021-06-20T03:54:45.142191Z","sceneName":"The.Owl.House.S02E02.Escaping.Expulsion.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4443383,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18436},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Echoes of the Past-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E03.Echoes of the Past-WEBDL-1080p.mkv","size":811420450,"dateAdded":"2021-06-27T06:58:38.971332Z","sceneName":"The.Owl.House.S02E03.Echoes.of.the.Past.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4838774,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18488},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Keeping Up A-fear-ances-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E04.Keeping Up A-fear-ances-WEBDL-1080p.mkv","size":821610027,"dateAdded":"2021-07-04T04:18:38.530996Z","sceneName":"The.Owl.House.S02E04.Keeping.up.A-fear-ances.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4790312,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18603},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Through the Looking Glass Ruins-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E05.Through the Looking Glass Ruins-WEBDL-1080p.mkv","size":789431382,"dateAdded":"2021-07-10T14:46:04.472336Z","sceneName":"The.Owl.House.S02E05.Through.the.Looking.Glass.Ruins.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4652295,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18626},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Hunting Palismen-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E06.Hunting Palismen-WEBDL-1080p.mkv","size":831830871,"dateAdded":"2021-07-18T03:08:38.296638Z","sceneName":"The.Owl.House.S02E06.Hunting.Palismen.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4905749,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18665},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Eda's Requiem-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E07.Eda's Requiem-WEBDL-1080p.mkv","size":848236010,"dateAdded":"2021-07-25T02:57:22.02392Z","sceneName":"The.Owl.House.S02E07.Edas.Requiem.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5003786,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18694},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Knock, Knock, Knockin' on Hooty's Door-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E08.Knock, Knock, Knockin' on Hooty's Door-WEBDL-1080p.mkv","size":765323961,"dateAdded":"2021-08-01T05:10:13.214899Z","sceneName":"The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.1080p.HULU.WEBRip.AAC2.0.H264-LAZY...","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4508381,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18728},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Eclipse Lake-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E09.Eclipse Lake-WEBDL-1080p.mkv","size":740459114,"dateAdded":"2021-08-09T03:42:33.981998Z","sceneName":"The.Owl.House.S02E09.Eclipse.Lake.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4359598,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18811},{"seriesId":215,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Yesterday's Lie-WEBDL-1080p.mkv","path":"\/tv\/The Owl House\/Season 02\/S02E10.Yesterday's Lie-WEBDL-1080p.mkv","size":804657902,"dateAdded":"2021-08-15T05:17:19.751903Z","sceneName":"The.Owl.House.S02E10.Yesterdays.Lie.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4536901,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18832}],"queue":[]},"216":{"series":{"title":"Danger 5","alternateTitles":[],"sortTitle":"danger 5","status":"ended","ended":true,"overview":"Set in a bizarre, 1960's inspired version of World War II, action comedy series Danger 5 follows a team of five spies on a mission to kill Adolf Hitler. \r\n\r\nDanger 5 is the finest group of special operatives the Allies have to offer; Jackson from the USA, Tucker from Australia, Ilsa from Russia, Claire from Britain and Pierre from Europe. In each episode Danger 5 unravels another of Hitler's diabolical schemes as they travel across a myriad of exotic locations.\r\n\r\nThe action and offbeat humour is relentless as Danger 5 mounts a series of thrilling missions which include discovering Josef Mengele's perverted Antarctic death circus, busting down Erwin Rommel's golden murder casino and posting as exotic dancers in an attempt to take out Hitler at his own birthday party.","previousAiring":"2015-02-15T10:30:00Z","network":"SBS (AU)","airTime":"21:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/220\/banner.jpg?lastWrite=637201613263004570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/253823-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/220\/poster.jpg?lastWrite=637201613266364520","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/253823-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/220\/fanart.jpg?lastWrite=637201613251564760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/253823-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2012-04-02T11:30:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":7330125673,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-02-15T10:30:00Z","episodeFileCount":7,"episodeCount":7,"totalEpisodeCount":7,"sizeOnDisk":1501094653,"percentOfEpisodes":100.0}}],"year":2012,"path":"\/tv\/Danger 5","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":253823,"tvRageId":30245,"tvMazeId":1619,"firstAired":"2012-02-27T00:00:00Z","seriesType":"standard","cleanTitle":"danger5","imdbId":"tt1807165","titleSlug":"danger-5","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy"],"tags":[],"added":"2020-03-18T20:48:42.856494Z","ratings":{"votes":344,"value":8.4},"statistics":{"seasonCount":2,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":18,"sizeOnDisk":8831220326,"percentOfEpisodes":100.0},"id":220},"episodes":[{"seriesId":220,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Diamond Girls (1)","airDate":"2011-11-20","airDateUtc":"2011-11-20T10:30:00Z","overview":"Jackson, Pierre and Tucker are deep undercover in Nazi Germany. Armed with guns, poison, plastic explosive and raw patriotism, they plan to end World War II at Hitler's favourite nightspot, the Black Dog. Just as the Big Man shows up in their iron sights, so does his new bullet-proof vest -- made of 24-carat She-Nazis!\r\n\r\nThis is part one of a five part prologue web series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17295},{"seriesId":220,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Diamond Girls (2)","airDate":"2011-11-27","airDateUtc":"2011-11-27T10:30:00Z","overview":"In their first mission together as a team, Danger 5 must stop the Nazis from stealing the world's largest holding of black diamonds, which are kept in the Swiss World Bank. Seems like a piece of cake... served with gas and punishment.\r\n\r\nThis is part two of a five part prologue web series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17296},{"seriesId":220,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Diamond Girls (3)","airDate":"2011-12-04","airDateUtc":"2011-12-04T10:30:00Z","overview":"Danger 5 have scored themselves a free trip to the Bahamas, but it turns out this holiday package has hidden fees. Looks like Danger 5 will have to make a down payment in bullets.\r\n\r\nThis is part three of a five part prologue web series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17297},{"seriesId":220,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Diamond Girls (4)","airDate":"2011-12-11","airDateUtc":"2011-12-11T10:30:00Z","overview":"After a quick round of Marconis at the Nassau airport bar, Danger 5 rendezvous with their Nazi liaison and embark on a road-trip to G\u00f6ring's island getaway. However, Nassau roadways are a dangerous place and Danger 5 soon fall victim to the \"Terror of the Streets\" ...Italians.\r\n\r\nThis is part four of a five part prologue web series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17298},{"seriesId":220,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Diamond Girls (5)","airDate":"2011-12-18","airDateUtc":"2011-12-18T10:30:00Z","overview":"In the final instalment of The Diamond Girls, Danger 5 go head-to-head with Herman G\u00f6ring and his posse of invincible She-Nazis. Apes and trains ensue.\r\n\r\nThis is part five of a five part prologue web series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17299},{"seriesId":220,"episodeFileId":12725,"seasonNumber":1,"episodeNumber":1,"title":"I Danced for Hitler","airDate":"2012-02-27","airDateUtc":"2012-02-27T10:30:00Z","overview":"In the first episode, Danger 5 must find out why Hitler has been abducting the world's national monuments with a squad of zeppelins. Claire poses as a dancer at Hitler's birthday party while Pierre is reunited with a lover from his past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17300},{"seriesId":220,"episodeFileId":12726,"seasonNumber":1,"episodeNumber":2,"title":"Lizard Soldiers of the Third Reich","airDate":"2012-03-05","airDateUtc":"2012-03-05T10:30:00Z","overview":"Nazi dinosaurs are turning up all over the European front, devouring their way through the Allied war effort. Danger 5 heads to Belgium to investigate and has a series of close shaves with a trigger-happy Triceratops and a perverted Nazi Pterodactyl. When Claire traces the dinosaurs to Antarctica, Danger 5 embarks on a journey to the South Pole where they encounter the sinister Dr Mengele.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17301},{"seriesId":220,"episodeFileId":12727,"seasonNumber":1,"episodeNumber":3,"title":"Kill-Men of the Rising Sun","airDate":"2012-03-12","airDateUtc":"2012-03-12T10:30:00Z","overview":"Allied Air Support surrounding China is being thrashed by Japanese Zero fighters piloted by robotic super-soldiers and, to make matters worse, Japan itself has completely vanished off the map. Danger 5 sets off in their Danger Fighters to give the Japanese some healthy competition. But even our heroes are no match for the deadly robo-pilots.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17302},{"seriesId":220,"episodeFileId":12728,"seasonNumber":1,"episodeNumber":4,"title":"Hitler's Golden Murder Palace","airDate":"2012-03-19","airDateUtc":"2012-03-19T10:30:00Z","overview":"An Allied agent has uncovered strange happenings at a Nazi-owned casino in Morocco where Hitler is rumoured to be located. After the agent goes missing under mysterious circumstances, Danger 5 is sent in to smoke Hitler out of his African cash-hole. Things get complicated when Tucker is captured by Italian submariners and Ilsa bumps into her ex-husband, Erwin Rommel, the Desert Fox.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17303},{"seriesId":220,"episodeFileId":12729,"seasonNumber":1,"episodeNumber":5,"title":"Fresh Meat for Hitler's Sex Kitchen","airDate":"2012-03-26","airDateUtc":"2012-03-26T10:30:00Z","overview":"Allied troops all over Europe are spontaneously transforming into blonde haired, blue eyed, blood-thirsty Nazis. Danger 5 is sent to Switzerland to connect with Field Marshall Jenkins, whose entire platoon has recently turned Nazi. Allied Command want Jenkins home safe before he can be turned too. But things turn pear-shaped on the way when Ilsa and Jackson's drinks are spiked, buying them a one way ticket to Hitler's dungeon of occult perversions.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17304},{"seriesId":220,"episodeFileId":12730,"seasonNumber":1,"episodeNumber":6,"title":"Final Victory","airDate":"2012-04-02","airDateUtc":"2012-04-02T11:30:00Z","overview":"As World War Two reaches boiling point, giant Nazi monsters are rampaging across the world leaving a wake of destruction. Captain Gibraltar, a sailor who claims to be from the lost civilisation of Atlantis, contacts Allied Command and offers salvation in the form of an invincible super weapon. Danger 5 travels to Atlantis, but they discover that Gibraltar is not as friendly as he appears.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17305},{"seriesId":220,"episodeFileId":12731,"seasonNumber":2,"episodeNumber":1,"title":"Merry Christmas Colonel","airDate":"2015-01-04","airDateUtc":"2015-01-04T10:30:00Z","overview":"Last time it was war. This time it's personal.\r\n\r\nIt's Christmas in the 1980s. Adolf Hitler is alive and has two Yuletide wishes: Danger 5 dead... and the world under his Christmas tree.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17306},{"seriesId":220,"episodeFileId":12724,"seasonNumber":2,"episodeNumber":2,"title":"Johnny Hitler","airDate":"2015-01-11","airDateUtc":"2015-01-11T10:30:00Z","overview":"Hitler has infiltrated a high school in the American mid-west in search of a female senior student.\r\n\r\nHis motives are unknown.\r\n\r\nDanger 5 are forced to go undercover and back to school, where Tucker\u2019s teaching skills are pushed to the limit, Pierre\u2019s coolness is put to the test and Jackson is hunted by a ruby-eyed wolf man with a machine gun and a grudge.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17307},{"seriesId":220,"episodeFileId":12720,"seasonNumber":2,"episodeNumber":3,"title":"Revenge of the Lizardmen","airDate":"2015-01-18","airDateUtc":"2015-01-18T10:30:00Z","overview":"Danger 5 are fugitives in Metro City, wrongfully accused of kidnapping high school senior Holly De Palma.\r\n\r\nHitler has infiltrated the police and leads the hunt for Danger 5 but little does he know that his own people are working against him: Joseph Mengele and his sinister accomplice Mr. Pedro are plotting a scheme, which involves the return of some scaly prehistoric bad-guys.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17308},{"seriesId":220,"episodeFileId":12722,"seasonNumber":2,"episodeNumber":4,"title":"Un Sacco Di Natale (A Sack of Christmas)","airDate":"2015-01-25","airDateUtc":"2015-01-25T10:30:00Z","overview":"After being abducted by Mr. Pedro, Hitler is taken captive in the Vatican. A gang of surviving Nazi war criminals have formed a mutiny against Hitler and plan to hijack Catholicism in a bid for world domination. Pierre's faith is put to the test as he fights to save Christmas from the Nazis. Meanwhile Tucker retreats into a fantasy world, Ilsa encounters an old flame and McKenzie investigates Holly's newfound ability.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17309},{"seriesId":220,"episodeFileId":12719,"seasonNumber":2,"episodeNumber":5,"title":"Super Dead","airDate":"2015-02-01","airDateUtc":"2015-02-01T10:30:00Z","overview":"Hitler comes back from the dead as a zombie, and he's brought a horde of Nazis with him. As he continues his quest for Holly, Ilsa seeks revenge against Khrushchev for throwing her over, and McKenzie must pump or die when Claire's zombie head bites him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17310},{"seriesId":220,"episodeFileId":12723,"seasonNumber":2,"episodeNumber":6,"title":"Back to the Fuhrer","airDate":"2015-02-08","airDateUtc":"2015-02-08T10:30:00Z","overview":"Danger 5 go back to World War II in an attempt to stop Hitler from changing the fabric of time. Ignoring the perils of messing with the space-time continuum, Tucker is dead set on changing the course of history for his own selfish motives while Pierre suffers the consequences. Jackson and Ilsa have a run-in with their past selves and share advice on the future. Meanwhile Hitler is holding Colonel Chestbridge hostage in his mountain lair.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17311},{"seriesId":220,"episodeFileId":12721,"seasonNumber":2,"episodeNumber":7,"title":"Welcome to Hitlerland","airDate":"2015-02-15","airDateUtc":"2015-02-15T10:30:00Z","overview":"In the final instalment of Danger 5, the team find themselves in an alternate future where Hitler is undisputed ruler of the universe. In Hitlerland everyone speaks German, everyone loves dogs and worst of all, everything is vegetarian! Danger 5 embark on a quest across space dodging Hitler\u2019s deception at every turn. They encounter old friends, new foes and a talking pelican on this epic quest to save the universe.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17312}],"episodeFile":[{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Super Dead-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E05.Super Dead-SDTV.mp4","size":248133318,"dateAdded":"2020-03-18T20:54:36.360708Z","sceneName":"Danger.5.S02E05.Super.Dead.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":115904,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1220255,"videoCodec":"x264","videoFps":25.0,"resolution":"716x404","runTime":"24:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12719},{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Revenge of the Lizardmen-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E03.Revenge of the Lizardmen-SDTV.mp4","size":201448571,"dateAdded":"2020-03-18T21:09:36.484696Z","sceneName":"Danger.5.S02E03.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136072,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":937467,"videoCodec":"x264","videoFps":25.0,"resolution":"720x404","runTime":"24:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12720},{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Welcome to Hitlerland-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E07.Welcome to Hitlerland-SDTV.mp4","size":196604998,"dateAdded":"2020-03-18T21:15:36.54179Z","sceneName":"Danger.5.S02E07.Welcome.to.Hitlerland.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":915757,"videoCodec":"x264","videoFps":25.0,"resolution":"720x404","runTime":"24:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12721},{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Un Sacco Di Natale (A Sack of Christmas)-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E04.Un Sacco Di Natale (A Sack of Christmas)-SDTV.mp4","size":203257027,"dateAdded":"2020-03-18T21:17:06.537168Z","sceneName":"Danger.5.S02E04.Un.Sacco.Di.Natale.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":951458,"videoCodec":"x264","videoFps":25.0,"resolution":"720x404","runTime":"24:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12722},{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Back to the Fuhrer-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E06.Back to the Fuhrer-SDTV.mp4","size":192051737,"dateAdded":"2020-03-18T21:26:06.705341Z","sceneName":"Danger.5.S02E06.Back.to.the.Fuhrer.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":897581,"videoCodec":"x264","videoFps":25.0,"resolution":"720x404","runTime":"24:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12723},{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Johnny Hitler-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E02.Johnny Hitler-SDTV.mp4","size":231310622,"dateAdded":"2020-03-18T21:32:06.75007Z","sceneName":"Danger.5.S02E02.Johnny.Hitler.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":117672,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1123629,"videoCodec":"x264","videoFps":25.0,"resolution":"716x404","runTime":"24:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12724},{"seriesId":220,"seasonNumber":1,"relativePath":"Season 01\/S01E01.I Danced for Hitler-Bluray-1080p.mkv","path":"\/tv\/Danger 5\/Season 01\/S01E01.I Danced for Hitler-Bluray-1080p.mkv","size":1230362569,"dateAdded":"2020-03-19T04:57:44.164526Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":106159,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6000335,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"26:24","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12725},{"seriesId":220,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Lizard Soldiers of the Third Reich-Bluray-1080p.mkv","path":"\/tv\/Danger 5\/Season 01\/S01E02.Lizard Soldiers of the Third Reich-Bluray-1080p.mkv","size":1246742594,"dateAdded":"2020-03-19T04:57:54.436301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120005,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5999431,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"26:40","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12726},{"seriesId":220,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Kill-Men of the Rising Sun-Bluray-1080p.mkv","path":"\/tv\/Danger 5\/Season 01\/S01E03.Kill-Men of the Rising Sun-Bluray-1080p.mkv","size":1213566915,"dateAdded":"2020-03-19T04:58:06.625176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":92002,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5999419,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"26:08","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12727},{"seriesId":220,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Hitler's Golden Murder Palace-Bluray-1080p.mkv","path":"\/tv\/Danger 5\/Season 01\/S01E04.Hitler's Golden Murder Palace-Bluray-1080p.mkv","size":1213009234,"dateAdded":"2020-03-19T04:58:18.665533Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":115206,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5999869,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"25:59","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12728},{"seriesId":220,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Fresh Meat for Hitler's Sex Kitchen-Bluray-1080p.mkv","path":"\/tv\/Danger 5\/Season 01\/S01E05.Fresh Meat for Hitler's Sex Kitchen-Bluray-1080p.mkv","size":1229186757,"dateAdded":"2020-03-19T04:58:30.929068Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":112499,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5999776,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"26:21","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12729},{"seriesId":220,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Final Victory-Bluray-1080p.mkv","path":"\/tv\/Danger 5\/Season 01\/S01E06.Final Victory-Bluray-1080p.mkv","size":1197257604,"dateAdded":"2020-03-19T04:58:43.985674Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":109237,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5997994,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"25:41","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":12730},{"seriesId":220,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Merry Christmas Colonel-SDTV.mp4","path":"\/tv\/Danger 5\/Season 02\/S02E01.Merry Christmas Colonel-SDTV.mp4","size":228288380,"dateAdded":"2020-03-19T05:45:14.227951Z","sceneName":"Danger.5.S02E01.PDTV.x264-W4F","releaseGroup":"W4F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":122976,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1094619,"videoCodec":"x264","videoFps":25.0,"resolution":"716x404","runTime":"24:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12731}],"queue":[]},"217":{"series":{"title":"Avenue 5","alternateTitles":[],"sortTitle":"avenue 5","status":"continuing","ended":false,"overview":"40 years in the future, space captain Ryan Clark and the crew of the luxury space cruise ship Avenue 5 navigate disgruntled passengers and unexpected events after experiencing technical difficulties onboard.","previousAiring":"2020-03-16T02:00:00Z","network":"HBO","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/223\/banner.jpg?lastWrite=637206762878464620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364106\/banners\/62045492.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/223\/poster.jpg?lastWrite=637206762881064570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364106\/posters\/62083392.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/223\/fanart.jpg?lastWrite=637206762875984670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364106\/backgrounds\/62003599.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-03-16T02:00:00Z","episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":9,"sizeOnDisk":6310559605,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/Avenue 5","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":28,"tvdbId":364106,"tvRageId":0,"tvMazeId":32263,"firstAired":"2020-01-19T00:00:00Z","seriesType":"standard","cleanTitle":"avenue5","imdbId":"tt10234362","titleSlug":"avenue-5","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Science Fiction"],"tags":[],"added":"2020-03-24T19:51:26.493182Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":9,"episodeCount":9,"totalEpisodeCount":10,"sizeOnDisk":6310559605,"percentOfEpisodes":100.0},"id":223},"episodes":[{"seriesId":223,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":19944},{"seriesId":223,"episodeFileId":12752,"seasonNumber":1,"episodeNumber":1,"title":"I Was Flying","airDate":"2020-01-19","airDateUtc":"2020-01-20T03:00:00Z","overview":"When a malfunction occurs aboard the luxury space cruise ship Avenue 5, it\u2019s up to engineer Billie McEvoy to warn Captain Ryan Clark, Avenue 5 owner Herman Judd and his right-hand-woman Iris Kimura that the incident may have a cataclysmic knock-on effect. As Rav Mulcair manages the situation from mission control back on Earth, Matt Spencer, the head of customer relations, tries his best to calm frayed nerves on board, and persistent passenger Karen Kelly discovers the crew may know more than they\u2019re letting on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":17479},{"seriesId":223,"episodeFileId":12753,"seasonNumber":1,"episodeNumber":2,"title":"And Then He's Gonna Shoot Off\u2026","airDate":"2020-01-26","airDateUtc":"2020-01-27T03:00:00Z","overview":"As Rav and her team meet with a NASA representative to plot a potential rescue mission, Ryan learns that Cyrus an engineer working in a hidden part of the ship, has a surprisingly optimistic theory about the ship\u2019s future. Judd donates a lavish personal item to help commemorate a fallen crew member. Karen becomes a vocal advocate for passengers. Mia and Doug receive marital counselling from Matt.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":17480},{"seriesId":223,"episodeFileId":12754,"seasonNumber":1,"episodeNumber":3,"title":"I'm a Hand Model","airDate":"2020-02-02","airDateUtc":"2020-02-03T03:00:00Z","overview":"With Avenue 5 staff slacking in their customer service, Ryan offers Karen the opportunity to channel her unique talent for speaking the passengers\u2019 language. Judd outlines the plan for a rescue mission and tasks Iris with organizing a vigil on Earth to raise the money to fund it. Rav endures a barrage of messages from the ship and handles an unruly press conference.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":17481},{"seriesId":223,"episodeFileId":12755,"seasonNumber":1,"episodeNumber":4,"title":"Wait a Minute, Then Who Was That on the Ladder?","airDate":"2020-02-09","airDateUtc":"2020-02-10T03:00:00Z","overview":"With Judd worried about his reputation, Iris arranges a meet-and-greet with several passengers in his luxury suite. Frustrated by a bridge crew with no answers, Ryan and Billie bond with the engineers below deck. Matt encourages Frank to become the man he always wanted to be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":17482},{"seriesId":223,"episodeFileId":12756,"seasonNumber":1,"episodeNumber":5,"title":"He's Only There to Stop His Skeleton from Falling Over","airDate":"2020-02-16","airDateUtc":"2020-02-17T03:00:00Z","overview":"Billie seeks her moment in the limelight after stepping in to help Ryan during the ship's newest crisis. Iris vets comedian Jordan Hatwal's material for the Halfway Home Party, which Judd has decided should go on as planned. Doug tries to get in the way of Mia's newfound sexual freedom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":17483},{"seriesId":223,"episodeFileId":12757,"seasonNumber":1,"episodeNumber":6,"title":"Was It Your Ears?","airDate":"2020-02-23","airDateUtc":"2020-02-24T03:00:00Z","overview":"As Avenue 5 celebrates the birth of a space baby, Ryan and Billie try to identify the source of an incessant beeping, and Judd shares his latest grand idea at Karen\u2019s passenger-crew liaison meeting. Rav appeals to the President for rescue funds but, in exchange, is faced with an ethical dilemma.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":17484},{"seriesId":223,"episodeFileId":12758,"seasonNumber":1,"episodeNumber":7,"title":"Are You a Spider, Matt?","airDate":"2020-03-01","airDateUtc":"2020-03-02T03:00:00Z","overview":"Judd enlists Ryan to help charm Harrison Aimes, an uber-wealthy passenger who has a strange effect on Judd. Meanwhile, the passengers become transfixed by a divine image circling the ship and Rav deals with the fallout when the ship's moral quandary hits the media.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":17485},{"seriesId":223,"episodeFileId":12759,"seasonNumber":1,"episodeNumber":8,"title":"This is Physically Hurting Me","airDate":"2020-03-08","airDateUtc":"2020-03-09T02:00:00Z","overview":"While Karen oversees an effort to jettison non-essential passenger items, Billie tries to teach an inattentive Ryan how to dock the ship. Matt learns of Judd's plan to make the 'ultimate sacrifice' by returning to Earth. The passengers suspect all is not as it seems with the journey.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":17486},{"seriesId":223,"episodeFileId":12760,"seasonNumber":1,"episodeNumber":9,"title":"Eight Arms But No Hands","airDate":"2020-03-15","airDateUtc":"2020-03-16T02:00:00Z","overview":"A search party commences for Matt, who's in hiding with a guilty conscience\u2014and the airlock codes. Iris questions Karen about her rumored affair with Ryan. Rav seeks an apology from Judd for ruining her life. Chaos ensues when a seat on a rescue shuttle suddenly becomes available.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":17487}],"episodeFile":[{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E01.I Was Flying-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E01.I Was Flying-WEBDL-1080p.mkv","size":723254283,"dateAdded":"2020-03-24T21:34:58.222494Z","sceneName":"Avenue.5.S01E01.I.Was.Flying.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2741910,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"28:29","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12752},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E02.And Then He's Gonna Shoot Off-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E02.And Then He's Gonna Shoot Off-WEBDL-1080p.mkv","size":694828023,"dateAdded":"2020-03-24T21:35:01.827143Z","sceneName":"Avenue.5.S01E02.And.Then.He's.Gonna.Shoot.Off.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2538166,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"29:07","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12753},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E03.I'm a Hand Model-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E03.I'm a Hand Model-WEBDL-1080p.mkv","size":654026844,"dateAdded":"2020-03-24T21:35:08.985689Z","sceneName":"Avenue.5.S01E03.I'm.a.Hand.Model.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2337755,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"29:15","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12754},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Wait a Minute, Then Who Was That on the Ladder-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E04.Wait a Minute, Then Who Was That on the Ladder-WEBDL-1080p.mkv","size":663985336,"dateAdded":"2020-03-24T21:35:16.043956Z","sceneName":"Avenue.5.S01E04.Wait.a.Minute,.Then.Who.Was.That.on.the.Ladder.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2435789,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"28:45","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12755},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E05.He's Only There to Stop His Skeleton Falling Over-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E05.He's Only There to Stop His Skeleton Falling Over-WEBDL-1080p.mkv","size":817554240,"dateAdded":"2020-03-24T21:35:24.98531Z","sceneName":"Avenue.5.S01E05.He's.Only.There.to.Stop.His.Skeleton.Falling.Over.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3095623,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"29:09","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12756},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Was It Your Ears-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E06.Was It Your Ears-WEBDL-1080p.mkv","size":672903754,"dateAdded":"2020-03-24T21:35:31.353053Z","sceneName":"Avenue.5.S01E06.Was.It.Your.Ears.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2372199,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"29:45","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12757},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Are You a Spider, Matt-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E07.Are You a Spider, Matt-WEBDL-1080p.mkv","size":730758774,"dateAdded":"2020-03-24T21:35:42.227901Z","sceneName":"Avenue.5.S01E07.Are.You.a.Spider,.Matt.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2765046,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"28:35","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12758},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E08.This Is Physically Hurting Me-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E08.This Is Physically Hurting Me-WEBDL-1080p.mkv","size":690026427,"dateAdded":"2020-03-24T21:35:50.000109Z","sceneName":"Avenue.5.S01E08.This.Is.Physically.Hurting.Me.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2597815,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"28:23","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12759},{"seriesId":223,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Eight Arms But No Hands-WEBDL-1080p.mkv","path":"\/tv\/Avenue 5\/Season 01\/S01E09.Eight Arms But No Hands-WEBDL-1080p.mkv","size":663221924,"dateAdded":"2020-03-24T21:35:56.93054Z","sceneName":"Avenue.5.S01E09.Eight.Arms.But.No.Hands.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros","releaseGroup":"Vyndros","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2375026,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x960","runTime":"29:18","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12760}],"queue":[]},"219":{"series":{"title":"How to Get Away with Murder","alternateTitles":[{"title":"Le Regole del Delitto Perfetto","seasonNumber":-1},{"title":"Como defender a un asesino","seasonNumber":-1}],"sortTitle":"how to get away with murder","status":"ended","ended":true,"overview":"Murder, deception, fear and guilt are the ties that bind Middelton University Professor Annalise Keating to her long-time associates Frank Delfino, Bonnie Winterbottom and her students. But as the group struggles to move on with their lives and focus on their clients, their past continues to haunt them, as Annalise and her inner circle struggle to keep their secrets from getting exposed. Relationships will be fractured, lies will spin out of control, and shocking, new mysteries upend their entire lives.","previousAiring":"2020-05-15T02:00:00Z","network":"ABC (US)","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/207\/banner.jpg?lastWrite=637104594968681400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/281620-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/207\/poster.jpg?lastWrite=637104594969761390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/281620-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/207\/fanart.jpg?lastWrite=637144285780806490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/281620-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-02-27T03:43:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":26304896520,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-03-18T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":56191867853,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-02-24T03:43:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":28545343464,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2018-03-16T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":47401397794,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2019-03-01T03:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":30498128092,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2020-05-15T02:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":41045163848,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/How to Get Away with Murder","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":43,"tvdbId":281620,"tvRageId":37307,"tvMazeId":52,"firstAired":"2014-09-25T00:00:00Z","seriesType":"standard","cleanTitle":"howtogetawaywithmurder","imdbId":"tt3205802","titleSlug":"how-to-get-away-with-murder","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime","Drama","Mystery","Suspense","Thriller"],"tags":[],"added":"2019-11-27T13:51:35.495842Z","ratings":{"votes":2058,"value":9.1},"statistics":{"seasonCount":6,"episodeFileCount":90,"episodeCount":90,"totalEpisodeCount":90,"sizeOnDisk":229986797571,"percentOfEpisodes":100.0},"id":207},"episodes":[{"seriesId":207,"episodeFileId":10297,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2014-09-25","airDateUtc":"2014-09-26T02:00:00Z","overview":"Annalise Keating is everything you hope your Criminal Law professor will be - brilliant, passionate, creative and charismatic. She's also everything you don't expect - sexy, glamorous, unpredictable and dangerous. As fearless in the courtroom as she is in the classroom, Annalise is a defense attorney who represents the most hardened, violent criminals - people who've committed everything from fraud to arson to murder - and she'll do almost anything to win their freedom. Each year, Annalise selects a group of the smartest, most promising students to come work at her law firm. Working for Annalise is the opportunity of a lifetime, one that can change the course of our students' lives forever, which is exactly what happens when they find themselves involved in a murder plot that will rock the entire university.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":15672},{"seriesId":207,"episodeFileId":10335,"seasonNumber":1,"episodeNumber":2,"title":"It's All Her Fault","airDate":"2014-10-02","airDateUtc":"2014-10-03T02:00:00Z","overview":"Annalise takes on a new client, Max St. Vincent, an eccentric millionaire who is the key suspect in his wife's brutal murder. All the clues point to St. Vincent as the killer, but Annalise challenges her students to prove he's innocent - whether that's the truth or not. Meanwhile, Annalise deals with issues in her own home when her growing suspicions that Sam is somehow involved in Lila's disappearance start to affect their marriage. In flash forwards, we go back to the night of the murder and learn that Wes might be hiding a few secrets of his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":15673},{"seriesId":207,"episodeFileId":10294,"seasonNumber":1,"episodeNumber":3,"title":"Smile, or Go to Jail","airDate":"2014-10-09","airDateUtc":"2014-10-10T02:00:00Z","overview":"Annalise helps Paula Murphy, a suburban soccer mom, get released from jail after she was arrested for a misdemeanor, but just as she\u2019s about to walk free, she\u2019s arrested again by the FBI in connection for felony murder. Annalise and her students are tasked with proving her innocence which will depend on the testimony from another suspect in the case. Meanwhile, the Middleton University president asks Annalise to represent Griffin O\u2019 Reilly, the star quarterback who has also been linked to Lila\u2019s disappearance but she\u2019s unable to make a decision until she knows that Sam wasn\u2019t involved in the case. In flash forwards, more clues are revealed and we discover someone else was also there besides the students during the night of the murder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":15674},{"seriesId":207,"episodeFileId":10307,"seasonNumber":1,"episodeNumber":4,"title":"Let's Get to Scooping","airDate":"2014-10-16","airDateUtc":"2014-10-17T02:00:00Z","overview":"Annalise and her students uncover a shocking truth while investigating the case of Marren Trudeau, founder and CEO of a major brokerage firm, who has recently been arrested for insider trading. Meanwhile, Wes discovers a cell phone hidden by Rebecca whose contents reveal an unsettling clue in the Lila Stangard murder case.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":15675},{"seriesId":207,"episodeFileId":10296,"seasonNumber":1,"episodeNumber":5,"title":"We're Not Friends","airDate":"2014-10-23","airDateUtc":"2014-10-24T02:00:00Z","overview":"Annalise takes on a tough case defending a minor who fatally shoots his police officer father. Meanwhile, Annalise and Sam continue to argue over his relationship with Lila, and Wes and Rebecca begin to question Annalise\u2019s motives. In flash-forwards, we learn more about Laurel\u2019s relationship with Frank and why he was calling her the night of Sam\u2019s death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":15676},{"seriesId":207,"episodeFileId":10304,"seasonNumber":1,"episodeNumber":6,"title":"Freakin' Whack-a-Mole","airDate":"2014-10-30","airDateUtc":"2014-10-31T02:00:00Z","overview":"A case gets personal for Annalise and the team when their client is a man from the projects who was sentenced to death by Asher\u2019s father several years ago. Meanwhile, Wes is still angry at Annalise for hiding information about Lila\u2019s case, so Annalise must convince him to get back in line. In flash-forwards, we find out exactly where Asher was on the night of the murder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":15677},{"seriesId":207,"episodeFileId":10308,"seasonNumber":1,"episodeNumber":7,"title":"He Deserved to Die","airDate":"2014-11-06","airDateUtc":"2014-11-07T03:00:00Z","overview":"Annalise and the team are focused on Rebecca\u2019s case, but when the judge enforces a gag order, Rebecca takes things into her own hands. Meanwhile, Michaela is surprised by a pre-nup, sparks fly between Laurel and Frank, and in flash-forwards, we find out more about Wes and Rebecca\u2019s relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":15678},{"seriesId":207,"episodeFileId":10329,"seasonNumber":1,"episodeNumber":8,"title":"He Has a Wife","airDate":"2014-11-13","airDateUtc":"2014-11-14T03:00:00Z","overview":"The team represents a mother who's on trial for killing her family's nanny while on heavy medication. Meanwhile, a shocking discovery is revealed in Lila's case that could change everything for Rebecca and Bonnie's loyalty to Annalise. In flashbacks, we learn more about Lila and Sam's relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":15679},{"seriesId":207,"episodeFileId":10302,"seasonNumber":1,"episodeNumber":9,"title":"Kill Me, Kill Me, Kill Me","airDate":"2014-11-20","airDateUtc":"2014-11-21T03:00:00Z","overview":"It\u2019s the evening of the bonfire and we finally see what exactly happened on the night of Sam\u2019s death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":15680},{"seriesId":207,"episodeFileId":10298,"seasonNumber":1,"episodeNumber":10,"title":"Hello, Raskolnikov","airDate":"2015-01-29","airDateUtc":"2015-01-30T03:00:00Z","overview":"It\u2019s the day after Sam\u2019s murder and the students are called in to help Annalise find her missing husband, but just how much does Annalise know? And when a surprise visitor shows up in town, getting away with this murder might not be as easy as the students had hoped.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":15681},{"seriesId":207,"episodeFileId":10300,"seasonNumber":1,"episodeNumber":11,"title":"Best Christmas Ever","airDate":"2015-02-05","airDateUtc":"2015-02-06T03:00:00Z","overview":"School is back in session after the holiday break and the entire university is talking about Annalise's missing husband. The Keating Five continue to be questioned by the police and we find out exactly how they've been dealing with the guilt of killing Sam. Meanwhile, Annalise tries to keep things business as usual by taking on a new client who is in the mob, but Hannah continues to pressure her for answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":15682},{"seriesId":207,"episodeFileId":10311,"seasonNumber":1,"episodeNumber":12,"title":"She's a Murderer","airDate":"2015-02-12","airDateUtc":"2015-02-13T03:00:00Z","overview":"A stunning discovery in Sam's murder case leads to changes for Annalise and the students.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":15683},{"seriesId":207,"episodeFileId":10309,"seasonNumber":1,"episodeNumber":13,"title":"Mama's Here Now","airDate":"2015-02-19","airDateUtc":"2015-02-20T03:00:00Z","overview":"Annalise is wracked with guilt and turns to an unlikely source for help. Meanwhile, Bonnie must step up and represent a new client accused of rape.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":15684},{"seriesId":207,"episodeFileId":10312,"seasonNumber":1,"episodeNumber":14,"title":"The Night Lila Died","airDate":"2015-02-26","airDateUtc":"2015-02-27T03:00:00Z","overview":"In flashbacks, we start to piece together what really happened the night of Lila's murder. In present day, Annalise takes on a priest who is accused of murdering another priest. Meanwhile, Connor and Oliver take things to a new level in their relationship, and Wes and Rebecca continue to grow suspicious of each other.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":15685},{"seriesId":207,"episodeFileId":10306,"seasonNumber":1,"episodeNumber":15,"title":"It\u2019s All My Fault","airDate":"2015-02-26","airDateUtc":"2015-02-27T03:43:00Z","overview":"Wes, Connor, Michaela and Laurel may have dug themselves in too deep a hole for Annalise to save them, and the shocking truth about Lila's murder is finally revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":15686},{"seriesId":207,"episodeFileId":10630,"seasonNumber":2,"episodeNumber":1,"title":"It's Time to Move On","airDate":"2015-09-24","airDateUtc":"2015-09-25T02:00:00Z","overview":"Annalise and her students must move on with their lives as though nothing has happened, but the students are still reeling over Rebecca\u2019s disappearance. Only Annalise and Frank know that Rebecca was murdered and the two are determined to find out who killed her. Annalise decides she wants to take on a new client, a brother and sister who are accused of killing their parents. An old friend surprises Annalise at home and teaches her a valuable lesson.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":15687},{"seriesId":207,"episodeFileId":10631,"seasonNumber":2,"episodeNumber":2,"title":"She's Dying","airDate":"2015-10-01","airDateUtc":"2015-10-02T02:00:00Z","overview":"Annalise and her team are blindsided when investigators try to pin a new charge on the wealthy siblings she\u2019s been hired to represent. Things for Annalise become even more difficult when she\u2019s brutally cross-examined on the witness stand during Nate\u2019s preliminary hearing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":15688},{"seriesId":207,"episodeFileId":10632,"seasonNumber":2,"episodeNumber":3,"title":"It's Called the Octopus","airDate":"2015-10-08","airDateUtc":"2015-10-09T02:00:00Z","overview":"When Annalise takes on a new client, the team must investigate a very high end sex club to get answers. Annalise is still representing the siblings accused of killing their parents, but the case takes a turn for the worse when a new motive surfaces, and Wes teams up with an unexpected ally.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":15689},{"seriesId":207,"episodeFileId":10633,"seasonNumber":2,"episodeNumber":4,"title":"Skanks Get Shanked","airDate":"2015-10-15","airDateUtc":"2015-10-16T02:00:00Z","overview":"When a teenager is found murdered in the woods, Annalise and her team is hired to represent an unlikely suspect named in the case. Asher comes across a shocking confession, and Wes learns new information about Rebecca\u2019s disappearance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":15690},{"seriesId":207,"episodeFileId":10634,"seasonNumber":2,"episodeNumber":5,"title":"Meet Bonnie","airDate":"2015-10-22","airDateUtc":"2015-10-23T02:00:00Z","overview":"Asher discovers not everything is what it seems when you work for Annalise. Frank is presented with a situation that hits close to home, and Wes\u2019 search to find out more about Rebecca\u2019s disappearance culminates into an explosive confrontation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":15691},{"seriesId":207,"episodeFileId":10635,"seasonNumber":2,"episodeNumber":6,"title":"Two Birds, One Millstone","airDate":"2015-10-29","airDateUtc":"2015-10-30T02:00:00Z","overview":"Annalise takes on a new client, a transgender professor accused of killing her husband. The Keating 5 are left to handle the Hapstall case and they discover a shocking new suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":15692},{"seriesId":207,"episodeFileId":10636,"seasonNumber":2,"episodeNumber":7,"title":"I Want You to Die","airDate":"2015-11-05","airDateUtc":"2015-11-06T03:00:00Z","overview":"Annalise and the team are hired to represent a client accused of badgering somebody to the point of suicide. Eve returns to defend Nate after ADA Sinclair serves him for a possible new murder charge, and Bonnie learns about what happened at Trotter Lake.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":15693},{"seriesId":207,"episodeFileId":10637,"seasonNumber":2,"episodeNumber":8,"title":"Hi, I'm Philip","airDate":"2015-11-12","airDateUtc":"2015-11-13T03:00:00Z","overview":"Philip makes a threatening move and ADA Sinclair may have figured out a way to take down Annalise. Catherine and Caleb are forced to make a life changing decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":15694},{"seriesId":207,"episodeFileId":10638,"seasonNumber":2,"episodeNumber":9,"title":"What Did We Do?","airDate":"2015-11-19","airDateUtc":"2015-11-20T03:00:00Z","overview":"ADA Sinclair discovers a break in her favor in the Hapstall case, but her actions result in a deadly outcome as details are revealed about the night Annalise was shot, including the person responsible for pulling the trigger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":15695},{"seriesId":207,"episodeFileId":10639,"seasonNumber":2,"episodeNumber":10,"title":"What Happened to You, Annalise?","airDate":"2016-02-11","airDateUtc":"2016-02-12T03:00:00Z","overview":"A few weeks have passed since Wes shot Annalise. Wes and The Keating 5 deal with the fallout from that night, as Annalise is faced with a complicated road to recovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":15696},{"seriesId":207,"episodeFileId":10640,"seasonNumber":2,"episodeNumber":11,"title":"She Hates Us","airDate":"2016-02-18","airDateUtc":"2016-02-19T03:00:00Z","overview":"Tensions in the Keating household run high, as each student struggles in their own way trying to return to normalcy. In a flashback, we\u2019ll learn new details about Annalise\u2019s past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":15697},{"seriesId":207,"episodeFileId":10641,"seasonNumber":2,"episodeNumber":12,"title":"It's a Trap","airDate":"2016-02-25","airDateUtc":"2016-02-26T03:00:00Z","overview":"With Philip still out there, Annalise tries to keep the team from panicking and get one step ahead of Philip\u2019s threats. Wes and Laurel start putting the pieces of Wes\u2019 mothers death together, but some things just aren\u2019t adding up on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":15698},{"seriesId":207,"episodeFileId":10642,"seasonNumber":2,"episodeNumber":13,"title":"Something Bad Happened","airDate":"2016-03-03","airDateUtc":"2016-03-04T03:00:00Z","overview":"Annalise moves forward with a plan to protect the team from Philip but the risk involved may prove to be too dangerous. Wes continues to search for new information regarding his mother\u2019s death. In flashback, the Mahoney case takes a drastic turn for Annalise\u2019s client.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":15699},{"seriesId":207,"episodeFileId":10643,"seasonNumber":2,"episodeNumber":14,"title":"There's My Baby","airDate":"2016-03-10","airDateUtc":"2016-03-11T03:00:00Z","overview":"The Keating 5 are called into questioning by A.D.A Denver about the night Emily Sinclair was murdered. Caleb goes missing as the manhunt for Philip intensifies. In flashback, Annalise\u2019s tactics in the Mahoney case leads to a devastating result.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":15700},{"seriesId":207,"episodeFileId":10644,"seasonNumber":2,"episodeNumber":15,"title":"Anna Mae","airDate":"2016-03-17","airDateUtc":"2016-03-18T02:00:00Z","overview":"With chaos surrounding Annalise, she just can\u2019t stand the pressure anymore and needs to escape. Frank must come to terms with the things he has done while Wes continues to get closer to finding out about his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":15701},{"seriesId":207,"episodeFileId":10313,"seasonNumber":3,"episodeNumber":1,"title":"We're Good People Now","airDate":"2016-09-22","airDateUtc":"2016-09-23T02:00:00Z","overview":"With Wallace Mahoney\u2019s murder unsolved and Frank\u2019s whereabouts unknown, the \u201dKeating 5\u201d struggle to move on with their lives as they enter into their second year of law school. Meanwhile, Annalise\u2019s reputation at Middleton University is on the line, so she creates a criminal law clinic where the students will compete to try their own pro bono cases. Annalise also wrestles with a decision involving Frank that could change everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":15702},{"seriesId":207,"episodeFileId":10314,"seasonNumber":3,"episodeNumber":2,"title":"There Are Worse Things Than Murder","airDate":"2016-09-29","airDateUtc":"2016-09-30T02:00:00Z","overview":"With her job in jeopardy, Annalise confronts the Middleton University Board; secrets come to light as the Keating 5 compete for the case of a battered woman accused of killing her husband.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":15703},{"seriesId":207,"episodeFileId":10315,"seasonNumber":3,"episodeNumber":3,"title":"Always Bet Black","airDate":"2016-10-06","airDateUtc":"2016-10-07T02:00:00Z","overview":"Annalise presents a high-profile murder case that tests the Keating 5\u2019s morals; Laurel makes a startling discovery through a surprising source.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":15704},{"seriesId":207,"episodeFileId":10316,"seasonNumber":3,"episodeNumber":4,"title":"Don't Tell Annalise","airDate":"2016-10-13","airDateUtc":"2016-10-14T02:00:00Z","overview":"A young client's fate is jeopardized when the Bar Association disciplinary board finds damaging information about Annalise. Someone close to Frank must deal with him after he commits a shocking act.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":15705},{"seriesId":207,"episodeFileId":10317,"seasonNumber":3,"episodeNumber":5,"title":"It's About Frank","airDate":"2016-10-20","airDateUtc":"2016-10-21T02:00:00Z","overview":"The mystery behind the Annalise \u201ckiller\u201d flyers takes a surprising twist. Frank\u2019s troubled past is exposed and a shocking new discovery changes everything about the night of the fire.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":15706},{"seriesId":207,"episodeFileId":10318,"seasonNumber":3,"episodeNumber":6,"title":"Is Someone Really Dead?","airDate":"2016-10-27","airDateUtc":"2016-10-28T02:00:00Z","overview":"A revelation in the Wallace Mahoney murder rattles Annalise and the Keating 5, as the team takes on the case of a veteran facing assault charges.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":15707},{"seriesId":207,"episodeFileId":10319,"seasonNumber":3,"episodeNumber":7,"title":"Call It Mother's Intuition","airDate":"2016-11-03","airDateUtc":"2016-11-04T02:00:00Z","overview":"Annalise and her students take on a case defending siblings who have been charged with conspiracy to commit murder against their mother. Meanwhile, Frank\u2019s actions lead to a painful consequence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":15708},{"seriesId":207,"episodeFileId":10320,"seasonNumber":3,"episodeNumber":8,"title":"No More Blood","airDate":"2016-11-10","airDateUtc":"2016-11-11T03:00:00Z","overview":"Annalise and Bonnie turn to an unlikely source for help, bringing the tension among the Keating 5 to a head. Annalise takes on a surprising client.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":15709},{"seriesId":207,"episodeFileId":10321,"seasonNumber":3,"episodeNumber":9,"title":"Who's Dead?","airDate":"2016-11-17","airDateUtc":"2016-11-18T03:00:00Z","overview":"Annalise receives a tip about A.D.A. Atwood that leads to a heated confrontation with Nate. Meanwhile, the deadly events leading up to Annalise\u2019s house fire reveal who\u2019s under the sheet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":15710},{"seriesId":207,"episodeFileId":10322,"seasonNumber":3,"episodeNumber":10,"title":"We're Bad People","airDate":"2017-01-26","airDateUtc":"2017-01-27T03:00:00Z","overview":"With Annalise in jail facing arson and first-degree murder. charges, the D.A.\u2019s office continues to build their case against her, and the police investigate what happened to Wes on the night of the house fire. The Keating 4 try to cope with the devastating realization that one of their own is dead.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":15711},{"seriesId":207,"episodeFileId":10323,"seasonNumber":3,"episodeNumber":11,"title":"Not Everything's About Annalise","airDate":"2017-02-02","airDateUtc":"2017-02-03T03:00:00Z","overview":"Annalise reaches her breaking point as she struggles to adapt to her new reality behind bars, but a surprise confession to Wes\u2019 murder could change everything. The K4 find their own freedom at risk as they discover the D.A.\u2019s investigation is much bigger than they imagined.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":15712},{"seriesId":207,"episodeFileId":10324,"seasonNumber":3,"episodeNumber":12,"title":"Go Cry Somewhere Else","airDate":"2017-02-09","airDateUtc":"2017-02-10T03:00:00Z","overview":"Tensions in the courtroom run high, as the prosecution seeks to bring forth a new charge against Annalise. Nate uncovers a crucial piece of information that could threaten his own innocence, as detectives call Oliver in for questioning.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":15713},{"seriesId":207,"episodeFileId":10325,"seasonNumber":3,"episodeNumber":13,"title":"It's War","airDate":"2017-02-16","airDateUtc":"2017-02-17T03:00:00Z","overview":"After being robbed of her power, Annalise makes it her mission to take down DA Denver and ADA Atwood. Meanwhile, Asher, Connor, Michaela, Laurel and Oliver continue to wrestle with the weight of Wes\u2019 unsolved murder, and Nate makes a shocking discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":15714},{"seriesId":207,"episodeFileId":10326,"seasonNumber":3,"episodeNumber":14,"title":"He Made a Terrible Mistake","airDate":"2017-02-23","airDateUtc":"2017-02-24T03:00:00Z","overview":"Annalise tries to ward off a surprising new angle in the D.A.\u2019s case. Meanwhile, alliances shift amongst the Keating 4, as they discover crucial information about the circumstances surrounding Wes\u2019s death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":15715},{"seriesId":207,"episodeFileId":10327,"seasonNumber":3,"episodeNumber":15,"title":"Wes","airDate":"2017-02-23","airDateUtc":"2017-02-24T03:43:00Z","overview":"Annalise and the Keating 4 test the limits of how far they\u2019ll go to save themselves while the chilling details from the night of the fire reveal who killed Wes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":15716},{"seriesId":207,"episodeFileId":10342,"seasonNumber":4,"episodeNumber":1,"title":"I'm Going Away","airDate":"2017-09-28","airDateUtc":"2017-09-29T02:00:00Z","overview":"In the wake of Wes\u2019 tragic death, Annalise returns to her family home to pick up the pieces of her shattered life, and realizes that, in order to rebuild, she must make a tough and shocking decision. The \u201cKeating 4\u201d all face an uncertain future while Laurel becomes obsessed with finding out what actually happened to Wes the night he died. In a flash-forward, a terrifying crime is committed and everyone is a suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":15717},{"seriesId":207,"episodeFileId":10343,"seasonNumber":4,"episodeNumber":2,"title":"I'm Not Her","airDate":"2017-10-05","airDateUtc":"2017-10-06T02:00:00Z","overview":"While Annalise reconnects with an important client from her past, she continues to struggle to move forward in her personal life. The \u201cKeating 4\u201d find it difficult to move past their tarnished reputations; and in a flash-forward, details to a tragic crime begin to unfold on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":15718},{"seriesId":207,"episodeFileId":10344,"seasonNumber":4,"episodeNumber":3,"title":"It's for the Greater Good","airDate":"2017-10-12","airDateUtc":"2017-10-13T02:00:00Z","overview":"Annalise takes on a case for the greater good and quickly realizes the stakes are much higher than she originally thought. Laurel asks Michaela to help get information regarding Wes\u2019 death and Connor makes a major life decision that is not supported by the group. In a flash-forward, a surprising confrontation during the night of the crime is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":15719},{"seriesId":207,"episodeFileId":10345,"seasonNumber":4,"episodeNumber":4,"title":"Was She Ever Good at Her Job?","airDate":"2017-10-19","airDateUtc":"2017-10-20T02:00:00Z","overview":"Feeling like she\u2019s found her purpose again, Annalise focuses on developing her big case and Bonnie grows suspicious. Connor gets a surprise visit from his dad, and Laurel turns to an old friend to relieve some stress.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":15720},{"seriesId":207,"episodeFileId":10346,"seasonNumber":4,"episodeNumber":5,"title":"I Love Her","airDate":"2017-10-26","airDateUtc":"2017-10-27T02:00:00Z","overview":"Bonnie\u2019s suspicions about Annalise\u2019s big case drive her to surprising lengths to get answers, while flashbacks reveal the genesis of the two women\u2019s long and complicated history, and the flash forward reveals the shocking whereabouts of one of the Keating 4.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":15721},{"seriesId":207,"episodeFileId":10347,"seasonNumber":4,"episodeNumber":6,"title":"Stay Strong, Mama","airDate":"2017-11-02","airDateUtc":"2017-11-03T02:00:00Z","overview":"A former colleague helps Annalise with her class action lawsuit. Laurel continues to investigate her father\u2019s company. Asher confronts Michaela about her odd behavior. Details about Isaac\u2019s past are revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":15722},{"seriesId":207,"episodeFileId":10348,"seasonNumber":4,"episodeNumber":7,"title":"Nobody Roots for Goliath","airDate":"2017-11-09","airDateUtc":"2017-11-10T03:00:00Z","overview":"When Annalise\u2019s resolve to certify her class action lawsuit is tested, a surprising ally comes to her aid. Laurel and Michaela hit a roadblock after someone discovers their plans to take down Laurel\u2019s father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":15723},{"seriesId":207,"episodeFileId":10349,"seasonNumber":4,"episodeNumber":8,"title":"Live. Live. Live.","airDate":"2017-11-16","airDateUtc":"2017-11-17T03:00:00Z","overview":"Annalise is confronted with disturbing news involving one of Isaac\u2019s patients; the investigation into Wes\u2019 murder comes to a head. details of the whereabouts of Laurel\u2019s baby are revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":15724},{"seriesId":207,"episodeFileId":10350,"seasonNumber":4,"episodeNumber":9,"title":"He's Dead","airDate":"2018-01-18","airDateUtc":"2018-01-19T03:00:00Z","overview":"The group deals with more obstacles as police investigate the accidental shooting of Simon. Laurel and her baby cling to life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":15725},{"seriesId":207,"episodeFileId":10351,"seasonNumber":4,"episodeNumber":10,"title":"Everything We Did Was for Nothing","airDate":"2018-01-25","airDateUtc":"2018-01-26T03:00:00Z","overview":"As Laurel struggles to come to terms with what happened on that tragic night, Annalise and Frank work together to do what they believe is best for the group. Details involving a past murder come to light as Annalise continues to build her class action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":15726},{"seriesId":207,"episodeFileId":10352,"seasonNumber":4,"episodeNumber":11,"title":"He's a Bad Father","airDate":"2018-02-01","airDateUtc":"2018-02-02T03:00:00Z","overview":"An important person in Laurel\u2019s life comes to town to help her as private details regarding her past are revealed. Annalise encounters an obstacle involving a potential plaintiff for her class action.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":15727},{"seriesId":207,"episodeFileId":10353,"seasonNumber":4,"episodeNumber":12,"title":"Ask Him About Stella","airDate":"2018-02-08","airDateUtc":"2018-02-09T03:00:00Z","overview":"Annalise deals with an unforeseen issue after damaging details about a key witness are exposed in her case to help Laurel. The \u201cK4\u201d continue their efforts to help build a case for Annalise\u2019s class action lawsuit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":15728},{"seriesId":207,"episodeFileId":10354,"seasonNumber":4,"episodeNumber":13,"title":"Lahey v. Commonwealth of Pennsylvania (II)","airDate":"2018-03-01","airDateUtc":"2018-03-02T03:00:00Z","overview":"The events of Annalise\u2019s class-action case hang in the balance after a meeting with Olivia proves to be crucial in getting the opportunity to argue Annalise\u2019s case in the nation\u2019s highest court. Bonnie discovers concerning information pertaining to Simon that threatens to expose what really happened during night he was shot.\r\n\r\nThe crossover starts on Scandal S7E12 Allow Me to Reintroduce Myself (I).","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":15729},{"seriesId":207,"episodeFileId":10355,"seasonNumber":4,"episodeNumber":14,"title":"The Day Before He Died","airDate":"2018-03-08","airDateUtc":"2018-03-09T03:00:00Z","overview":"Annalise helps the \u201cKeating 4\u201d concoct a plan to prepare for another round of questioning after detectives get a break involving Simon\u2019s case. Laurel discovers new details about the night Wes was killed which lead to a surprising confrontation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":15730},{"seriesId":207,"episodeFileId":10356,"seasonNumber":4,"episodeNumber":15,"title":"Nobody Else Is Dying","airDate":"2018-03-15","airDateUtc":"2018-03-16T02:00:00Z","overview":"Annalise and her inner circle deal with the aftermath of a suspicious death that culminates with a shocking arrest. A new development involving one of their own changes everything.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":15731},{"seriesId":207,"episodeFileId":10301,"seasonNumber":5,"episodeNumber":1,"title":"Your Funeral","airDate":"2018-09-27","airDateUtc":"2018-09-28T02:00:00Z","overview":"Annalise selects students for her new legal clinic and juggles job offers from competing firms. the Keating 4 attempt to move on from last semester\u2019s turmoil. A new mystery is introduced and it shakes things up for everyone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":15732},{"seriesId":207,"episodeFileId":10303,"seasonNumber":5,"episodeNumber":2,"title":"Whose Blood Is That?","airDate":"2018-10-04","airDateUtc":"2018-10-05T02:00:00Z","overview":"Annalise preps to defend her first class action plaintiff and adjusts to the politics of the new job. Frank is suspicious of Gabriel and does some investigating of his own. Asher complicates Bonnie's new life away from Annalise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":15733},{"seriesId":207,"episodeFileId":10284,"seasonNumber":5,"episodeNumber":3,"title":"The Baby Was Never Dead","airDate":"2018-10-11","airDateUtc":"2018-10-12T02:00:00Z","overview":"Annalise and Emmett defend a wealthy CEO accused of killing his business partner, while the governor goes after Annalise and puts her new caseload and legal clinic in jeopardy. Bonnie struggles to accept her budding romance, and Asher tries to outmaneuver his old mentor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":15734},{"seriesId":207,"episodeFileId":10283,"seasonNumber":5,"episodeNumber":4,"title":"It's Her Kid","airDate":"2018-10-18","airDateUtc":"2018-10-19T02:00:00Z","overview":"Annalise and Nate look to get Nate\u2019s dad a psych evaluation so that they can have his murder case retried under an insanity plea. Michaela works overtime to convince Tegan to give her a chance to earn her trust back, and Bonnie gets an offer she mulls over.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":15735},{"seriesId":207,"episodeFileId":10287,"seasonNumber":5,"episodeNumber":5,"title":"It Was the Worst Day of My Life","airDate":"2018-10-25","airDateUtc":"2018-10-26T02:00:00Z","overview":"After Annalise chooses Gabriel as her second chair, the unexpected duo puts all of their efforts into Nate Sr.\u2019s murder re-trial as they try to convince a jury to grant an insanity plea. Bonnie struggles to rebound after a dark part of her past resurfaces.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":15736},{"seriesId":207,"episodeFileId":10288,"seasonNumber":5,"episodeNumber":6,"title":"We Can Find Him","airDate":"2018-11-01","airDateUtc":"2018-11-02T02:00:00Z","overview":"Annalise receives a call from Governor Birkhead, and she\u2019s forced to weigh an interesting offer, while Bonnie reunites with her sister looking for answers from what happened years ago. Connor and Oliver try to keep their cool while their mothers are in town helping with wedding plans, and Tegan surprisingly enlists Laurel\u2019s help on a big case at the firm.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":15737},{"seriesId":207,"episodeFileId":10341,"seasonNumber":5,"episodeNumber":7,"title":"I Got Played","airDate":"2018-11-08","airDateUtc":"2018-11-09T03:00:00Z","overview":"Connor and Oliver attempt to secure a church for their wedding to appease their moms. Annalise and Nate continue their quest for justice in the face of endless obstacles. Annalise begins to doubt the governor\u2019s dedication to her cause.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":15738},{"seriesId":207,"episodeFileId":10290,"seasonNumber":5,"episodeNumber":8,"title":"I Want to Love You Until the Day I Die","airDate":"2018-11-15","airDateUtc":"2018-11-16T03:00:00Z","overview":"Connor and Oliver\u2019s big wedding day has arrived, but there\u2019s murder in the air; and the mystery of who the unlucky victim is will be revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":15739},{"seriesId":207,"episodeFileId":10282,"seasonNumber":5,"episodeNumber":9,"title":"He Betrayed Us Both","airDate":"2019-01-17","airDateUtc":"2019-01-18T03:00:00Z","overview":"Now that Connor and Oliver have tied the knot, the crew must deal with the consequences of the wedding night\u2019s murder; and Annalise is forced to reckon with secrets from her past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":15740},{"seriesId":207,"episodeFileId":10281,"seasonNumber":5,"episodeNumber":10,"title":"Don't Go Dark on Me","airDate":"2019-01-24","airDateUtc":"2019-01-25T03:00:00Z","overview":"As the investigation into Miller\u2019s murder intensifies, Bonnie and Nate formulate their alibis while Annalise devises a plan to ensure Gabriel never learns the truth about his father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":15741},{"seriesId":207,"episodeFileId":10431,"seasonNumber":5,"episodeNumber":11,"title":"Be the Martyr","airDate":"2019-01-31","airDateUtc":"2019-02-01T03:00:00Z","overview":"Nate is on a mission to prove he was right about the culprit in his father\u2019s murder. Bonnie begins to doubt herself. Annalise turns the tables in the courtroom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":15742},{"seriesId":207,"episodeFileId":10330,"seasonNumber":5,"episodeNumber":12,"title":"We Know Everything","airDate":"2019-02-07","airDateUtc":"2019-02-08T03:00:00Z","overview":"Nate and Annalise both need to keep Gabriel close to ensure their secrets stay hidden.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":15743},{"seriesId":207,"episodeFileId":10328,"seasonNumber":5,"episodeNumber":13,"title":"Where Are Your Parents?","airDate":"2019-02-14","airDateUtc":"2019-02-15T03:00:00Z","overview":"Annalise gathers everyone together for the holidays while she wrestles over a difficult decision about her future, and the investigation into Miller\u2019s murder starts to widen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":15744},{"seriesId":207,"episodeFileId":10417,"seasonNumber":5,"episodeNumber":14,"title":"Make Me the Enemy","airDate":"2019-02-21","airDateUtc":"2019-02-22T03:00:00Z","overview":"Annalise is determined to get to the truth about Nate Sr.\u2019s murder and will stop at nothing until she does.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":15745},{"seriesId":207,"episodeFileId":10295,"seasonNumber":5,"episodeNumber":15,"title":"Please Say No One Else Is Dead","airDate":"2019-02-28","airDateUtc":"2019-03-01T03:00:00Z","overview":"Annalise and her team need to get to the truth before the truth gets them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":15746},{"seriesId":207,"episodeFileId":10291,"seasonNumber":6,"episodeNumber":1,"title":"Say Goodbye","airDate":"2019-09-26","airDateUtc":"2019-09-27T02:00:00Z","overview":"Annalise struggles with the personal toll that Laurel and Christopher\u2019s disappearance has taken on everyone. Meanwhile, the remaining Keating 4, Oliver, Frank and Bonnie disagree on the possible reasons behind Laurel\u2019s disappearance. Tegan handles the aftermath of Emmett\u2019s apparent poisoning, and Gabriel wants to take his budding relationship with Michaela to the next level.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":15747},{"seriesId":207,"episodeFileId":10299,"seasonNumber":6,"episodeNumber":2,"title":"Vivian's Here","airDate":"2019-10-03","airDateUtc":"2019-10-04T02:00:00Z","overview":"As Michaela, Asher and Connor gear up for their last semester of law school, they take on a weighty case involving an illegal immigrant who wants asylum. Meanwhile, Michaela boycotts going to class after a blowup with Annalise about her father. Elsewhere, in an unexpected confrontation, Annalise learns a shocking truth that makes her question everything she thought she knew.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":15748},{"seriesId":207,"episodeFileId":10293,"seasonNumber":6,"episodeNumber":3,"title":"Do You Think I'm a Bad Man?","airDate":"2019-10-10","airDateUtc":"2019-10-11T02:00:00Z","overview":"After Michaela\u2019s courtroom tactics do more harm than help, Annalise draws on memories of Sam to guide Michaela back to the winning path. Connor bites off more than he can chew in his effort to reunite a family, forcing Tegan to call in a favor and fix his mess. Frank enlists Oliver\u2019s help to follow a lead on Laurel. Gabriel learns new information about Michaela\u2019s birth father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":15749},{"seriesId":207,"episodeFileId":10280,"seasonNumber":6,"episodeNumber":4,"title":"I Hate the World","airDate":"2019-10-17","airDateUtc":"2019-10-18T02:00:00Z","overview":"The FBI continues to interrogate Connor which leads him to panic under the pressure. Annalise, Tegan and the students defend a woman accused of violating a disabled man\u2019s civil rights for developing a dating app that discriminates against him. Bonnie helps Nate get more intel on Tegan. Michaela and Gabriel travel to New York to track down her father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":15750},{"seriesId":207,"episodeFileId":10285,"seasonNumber":6,"episodeNumber":5,"title":"We're All Gonna Die","airDate":"2019-10-24","airDateUtc":"2019-10-25T02:00:00Z","overview":"During therapy, a young Annalise is forced to acknowledge a very emotional and pivotal reality that makes her admit a hard truth. A brutally beaten Frank returns home with a secret to share about Laurel\u2019s disappearance. In an attempt to get to know her father, Michaela accepts an offer to work alongside him but quickly learns that it\u2019s not all that it\u2019s cracked up to be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":15751},{"seriesId":207,"episodeFileId":10292,"seasonNumber":6,"episodeNumber":6,"title":"Family Sucks","airDate":"2019-10-31","airDateUtc":"2019-11-01T02:00:00Z","overview":"Annalise intervenes in Michaela\u2019s relationship with her father and asks for his help in return. Because Nate still doesn\u2019t trust Tegan, he attempts to get in good with someone who was once close to her. After Asher reunites and has an unpleasant conversation with his estranged mother, he shares a meaningful moment with Michaela. Connor finally learns why he was originally picked for the Keating 5.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":15752},{"seriesId":207,"episodeFileId":10289,"seasonNumber":6,"episodeNumber":7,"title":"I'm the Murderer","airDate":"2019-11-07","airDateUtc":"2019-11-08T03:00:00Z","overview":"Gabriel is first chair on a case defending a teacher involved in a school shooting, and this case hits particularly close to home for both Gabriel and Annalise. Annalise attempts to discourage Tegan from her new quest to right a wrong. Oliver makes a shocking confession.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":15753},{"seriesId":207,"episodeFileId":10286,"seasonNumber":6,"episodeNumber":8,"title":"I Want to Be Free","airDate":"2019-11-14","airDateUtc":"2019-11-15T03:00:00Z","overview":"After taking the stand during Nate Senior\u2019s murder trial, Bonnie\u2019s world is turned upside down when a mysterious accident leads her to a hard realization. The students compete for a large cash bonus during the final exam where they must come up with the best defense for a conspiracy-to-murder charge.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":15754},{"seriesId":207,"episodeFileId":10279,"seasonNumber":6,"episodeNumber":9,"title":"Are You the Mole?","airDate":"2019-11-21","airDateUtc":"2019-11-22T03:00:00Z","overview":"On the eve of graduation, Oliver gifts Connor, Michaela and Asher something unexpected. At the Dean\u2019s cocktail party, Annalise learns disturbing news. Michaela receives a surprise phone call. The FBI informant is finally revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":15755},{"seriesId":207,"episodeFileId":12812,"seasonNumber":6,"episodeNumber":10,"title":"We're Not Getting Away With It","airDate":"2020-04-02","airDateUtc":"2020-04-03T02:00:00Z","overview":"Annalise\u2019s disappearance is uncovered, and the fallout affects everyone. Following Asher\u2019s death, Michaela and Connor are booked on murder charges and forced to make the most difficult decision of their lives. Bonnie reveals a secret about Tegan, and Gabriel becomes a potential murder suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":15756},{"seriesId":207,"episodeFileId":12832,"seasonNumber":6,"episodeNumber":11,"title":"The Reckoning","airDate":"2020-04-09","airDateUtc":"2020-04-10T02:00:00Z","overview":"Annalise\u2019s disappearance leads to panic and paranoia as Michaela and Connor consider taking a deal in their cases. All the while anxious, everyone mourns Asher\u2019s death as Gabriel holds on to key details about his murder.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":16935},{"seriesId":207,"episodeFileId":12897,"seasonNumber":6,"episodeNumber":12,"title":"Let's Hurt Him","airDate":"2020-04-16","airDateUtc":"2020-04-17T02:00:00Z","overview":"Annalise is forced to fight for her life. Gabriel approaches Michaela, Connor and Oliver with a theory about Sam\u2019s murder. Frank and Bonnie have a heart-to-heart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":16936},{"seriesId":207,"episodeFileId":13237,"seasonNumber":6,"episodeNumber":13,"title":"What If Sam Wasn't the Bad Guy This Whole Time?","airDate":"2020-04-30","airDateUtc":"2020-05-01T02:00:00Z","overview":"Annalise learns unexpected and shocking details about Sam's past. Connor and Michaela feel the pressure when the FBI learns there is new evidence in the case. Frank and Bonnie's history is explored, revealing what originally fractured their relationship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":16937},{"seriesId":207,"episodeFileId":13283,"seasonNumber":6,"episodeNumber":14,"title":"Annalise Keating Is Dead","airDate":"2020-05-07","airDateUtc":"2020-05-08T02:00:00Z","overview":"Annalise's murder trial has arrived, but Tegan's history complicates her role as counsel. While Nate visits Jorge Castillo in prison with a proposition, news breaks about Xavier. Bonnie works to help Annalise use Hannah Keating's past as blackmail.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":16938},{"seriesId":207,"episodeFileId":13311,"seasonNumber":6,"episodeNumber":15,"title":"Stay","airDate":"2020-05-14","airDateUtc":"2020-05-15T02:00:00Z","overview":"Annalise discovers there's a surprise witness that threatens her case. Meanwhile, Connor tries to persuade the K3 to go along with a new plan. Elsewhere, a lie between Frank and Bonnie threatens their relationship as Annalise's killer is finally revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":16939}],"episodeFile":[{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E09.Are You the Mole-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E09.Are You the Mole-WEBDL-1080p.mkv","size":3171238645,"dateAdded":"2019-11-27T14:07:24.73382Z","sceneName":"How.to.Get.Away.with.Murder.S06E09.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9241393,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10279},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E04.I Hate the World-WEBRip-1080p Proper.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E04.I Hate the World-WEBRip-1080p Proper.mkv","size":2869409116,"dateAdded":"2019-11-27T14:11:24.776137Z","sceneName":"How.to.Get.Away.with.Murder.S06E04.I.Hate.the.World.REPACK.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8254935,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10280},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Don't Go Dark on Me-WEBDL-1080p Proper.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E10.Don't Go Dark on Me-WEBDL-1080p Proper.mkv","size":1539790968,"dateAdded":"2019-11-27T14:16:53.769317Z","sceneName":"How.to.Get.Away.with.Murder.S05E10.REPACK.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4733609,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10281},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E09.He Betrayed Us Both-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E09.He Betrayed Us Both-WEBRip-1080p.mkv","size":1577453891,"dateAdded":"2019-11-27T14:17:15.320995Z","sceneName":"How.to.Get.Away.with.Murder.S05E09.He.Betrayed.Us.Both.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4252263,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10282},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E04.It's Her Kid-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E04.It's Her Kid-WEBRip-1080p.mkv","size":1902116043,"dateAdded":"2019-11-27T14:21:25.005034Z","sceneName":"How.to.Get.Away.with.Murder.S05E04.Its.Her.Kid.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5255969,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10283},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E03.The Baby Was Never Dead-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E03.The Baby Was Never Dead-WEBRip-1080p.mkv","size":1909033172,"dateAdded":"2019-11-27T14:24:54.93256Z","sceneName":"How.to.Get.Away.with.Murder.S05E03.The.Baby.Was.Never.Dead.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5276648,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10284},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E05.We're All Gonna Die-WEBRip-1080p Proper.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E05.We're All Gonna Die-WEBRip-1080p Proper.mkv","size":2926832930,"dateAdded":"2019-11-27T14:25:32.797714Z","sceneName":"How.to.Get.Away.with.Murder.S06E05.Were.All.Gonna.Die.REPACK.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8426874,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10285},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E08.I Want to Be Free-WEBRip-1080p Proper.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E08.I Want to Be Free-WEBRip-1080p Proper.mkv","size":2840621247,"dateAdded":"2019-11-27T14:26:46.650992Z","sceneName":"How.to.Get.Away.with.Murder.S06E08.REPACK.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8160395,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10286},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E05.It Was the Worst Day of My Life-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E05.It Was the Worst Day of My Life-WEBRip-1080p.mkv","size":2336973226,"dateAdded":"2019-11-27T14:27:43.122425Z","sceneName":"How.to.Get.Away.with.Murder.S05E05.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6601411,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10287},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E06.We Can Find Him-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E06.We Can Find Him-WEBDL-1080p.mkv","size":2006004199,"dateAdded":"2019-11-27T14:28:14.497725Z","sceneName":"How.to.Get.Away.with.Murder.S05E06.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"null","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5449137,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10288},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E07.I'm the Murderer-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E07.I'm the Murderer-WEBDL-1080p.mkv","size":2720371674,"dateAdded":"2019-11-27T14:28:49.951436Z","sceneName":"How.to.Get.Away.with.Murder.S06E07.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7961571,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:09","scanType":"Progressive","subtitles":"German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10289},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E08.I Want to Love You Until the Day I Die-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E08.I Want to Love You Until the Day I Die-WEBRip-1080p.mkv","size":2016247221,"dateAdded":"2019-11-27T14:29:34.595889Z","sceneName":"How.to.Get.Away.with.Murder.S05E08.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5608951,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10290},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Say Goodbye-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E01.Say Goodbye-WEBDL-1080p.mkv","size":3016459995,"dateAdded":"2019-11-27T14:32:55.137474Z","sceneName":"How.to.Get.Away.with.Murder.S06E01.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8719312,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:57","scanType":"Progressive","subtitles":"German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10291},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E06.Family Sucks-WEBRip-1080p Proper.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E06.Family Sucks-WEBRip-1080p Proper.mkv","size":3175668674,"dateAdded":"2019-11-27T14:33:40.977413Z","sceneName":"How.to.Get.Away.with.Murder.S06E06.Family.Sucks.REPACK.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9192497,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10292},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Do You Think I'm a Bad Man-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E03.Do You Think I'm a Bad Man-WEBRip-1080p.mkv","size":2725078599,"dateAdded":"2019-11-27T14:37:24.061941Z","sceneName":"How.to.Get.Away.with.Murder.S06E03.Do.You.Think.Im.a.Bad.Man.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7943716,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:19","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10293},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Smile, or Go to Jail-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E03.Smile, or Go to Jail-WEBDL-1080p.mkv","size":1731369522,"dateAdded":"2019-11-27T15:03:24.514033Z","sceneName":"How.to.Get.Away.With.Murder.S01E03.Smile.Or.Go.to.Jail.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4976972,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10294},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E15.Please Say No One Else Is Dead-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E15.Please Say No One Else Is Dead-WEBDL-1080p.mkv","size":1605157197,"dateAdded":"2019-11-27T15:03:42.434182Z","sceneName":"How.to.Get.Away.with.Murder.S05E15.1080p.WEB.h264-TBS[TGx]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4905343,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10295},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E05.We're Not Friends-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E05.We're Not Friends-WEBDL-1080p.mkv","size":1707651295,"dateAdded":"2019-11-27T15:08:24.654655Z","sceneName":"How.to.Get.Away.With.Murder.S01E05.Were.Not.Friends.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4901866,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10296},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E01.Pilot-WEBDL-1080p.mkv","size":1877465985,"dateAdded":"2019-11-27T15:15:54.648069Z","sceneName":"How.To.Get.Away.With.Murder.S01E01.Pilot.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5364311,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10297},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Hello, Raskolnikov-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E10.Hello, Raskolnikov-WEBDL-1080p.mkv","size":1740660714,"dateAdded":"2019-11-27T15:16:13.434269Z","sceneName":"How.to.Get.Away.With.Murder.S01E10.Hello.Raskolnikov.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5004191,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10298},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Vivian's Here-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E02.Vivian's Here-WEBDL-1080p.mkv","size":3069250616,"dateAdded":"2019-11-27T15:20:54.781155Z","sceneName":"How.to.Get.Away.with.Murder.S06E02.1080p.WEB.H264-METCON[rarbg]","releaseGroup":"METCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8863255,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"German \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10299},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Best Christmas Ever-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E11.Best Christmas Ever-WEBDL-1080p.mkv","size":1719689380,"dateAdded":"2019-11-27T15:21:20.028879Z","sceneName":"How.to.Get.Away.With.Murder.S01E11.Best.Christmas.Ever.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4938989,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10300},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Your Funeral-HDTV-720p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E01.Your Funeral-HDTV-720p.mkv","size":1252701561,"dateAdded":"2019-11-27T15:24:24.88871Z","sceneName":"How.to.Get.Away.with.Murder.S05E01.720p.HDTV.x264-AVS[eztv]","releaseGroup":"AVS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3581194,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10301},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Kill Me, Kill Me, Kill Me-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E09.Kill Me, Kill Me, Kill Me-WEBDL-1080p.mkv","size":1780112018,"dateAdded":"2019-11-27T15:24:36.145824Z","sceneName":"How.to.Get.Away.With.Murder.S01E09.Kill.Me.Kill.Me.Kill.Me.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5127602,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10302},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Whose Blood Is That-HDTV-720p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E02.Whose Blood Is That-HDTV-720p.mkv","size":1251820644,"dateAdded":"2019-11-27T15:39:55.078389Z","sceneName":"How.to.Get.Away.with.Murder.S05E02.720p.HDTV.x264-AVS[eztv]","releaseGroup":"AVS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3571413,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"41:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10303},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Freakin' Whack-a-Mole-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E06.Freakin' Whack-a-Mole-WEBDL-1080p.mkv","size":1705706559,"dateAdded":"2019-11-27T16:02:26.446508Z","sceneName":"How.to.Get.Away.With.Murder.S01E06.Freakin.Whack-A-Mole.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4896626,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10304},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E15.It\u2019s All My Fault-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E15.It\u2019s All My Fault-WEBDL-1080p.mkv","size":1800011530,"dateAdded":"2019-11-27T16:23:26.023967Z","sceneName":"How.to.Get.Away.With.Murder.S01E15.Its.All.My.Fault.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5188075,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10306},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Let's Get to Scooping-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E04.Let's Get to Scooping-WEBDL-1080p.mkv","size":1709465065,"dateAdded":"2019-11-27T16:26:25.898216Z","sceneName":"How.to.Get.Away.With.Murder.S01E04.Lets.Get.to.Scooping.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4908074,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10307},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E07.He Deserved to Die-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E07.He Deserved to Die-WEBDL-1080p.mkv","size":1721625584,"dateAdded":"2019-11-27T16:27:55.919488Z","sceneName":"How.to.Get.Away.With.Murder.S01E07.He.Deserved.to.Die.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4945138,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10308},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Mama's Here Now-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E13.Mama's Here Now-WEBDL-1080p.mkv","size":1782337104,"dateAdded":"2019-11-27T16:29:27.034842Z","sceneName":"How.to.Get.Away.With.Murder.S01E13.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5132523,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10309},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E12.She's a Murderer-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E12.She's a Murderer-WEBDL-1080p.mkv","size":1739057953,"dateAdded":"2019-11-27T16:35:27.498311Z","sceneName":"How.to.Get.Away.With.Murder.S01E12.Shes.A.Murderer.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5048265,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10311},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Night Lila Died-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E14.The Night Lila Died-WEBDL-1080p.mkv","size":1831373597,"dateAdded":"2019-11-27T16:35:45.205386Z","sceneName":"How.to.Get.Away.With.Murder.S01E14.The.Night.Lila.Died.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5285428,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10312},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E01.We're Good People Now-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E01.We're Good People Now-WEBDL-1080p.mkv","size":1876272287,"dateAdded":"2019-11-27T16:49:28.368325Z","sceneName":"How.to.Get.Away.with.Murder.S03E01.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5230655,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10313},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E02.There Are Worse Things Than Murder-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E02.There Are Worse Things Than Murder-WEBDL-1080p.mkv","size":1880450409,"dateAdded":"2019-11-27T16:49:35.599395Z","sceneName":"How.to.Get.Away.with.Murder.S03E02.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5239662,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:04","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10314},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Always Bet Black-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E03.Always Bet Black-WEBDL-1080p.mkv","size":1850886485,"dateAdded":"2019-11-27T16:49:51.865427Z","sceneName":"How.to.Get.Away.with.Murder.S03E03.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5152738,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10315},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Don't Tell Annalise-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E04.Don't Tell Annalise-WEBDL-1080p.mkv","size":1852454623,"dateAdded":"2019-11-27T16:50:17.72459Z","sceneName":"How.to.Get.Away.with.Murder.S03E04.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5161396,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10316},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E05.It's About Frank-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E05.It's About Frank-WEBDL-1080p.mkv","size":1924372969,"dateAdded":"2019-11-27T16:50:40.453395Z","sceneName":"How.to.Get.Away.with.Murder.S03E05.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5235575,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:07","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10317},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Is Someone Really Dead-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E06.Is Someone Really Dead-WEBDL-1080p.mkv","size":1913806213,"dateAdded":"2019-11-27T16:51:04.262909Z","sceneName":"How.to.Get.Away.with.Murder.S03E06.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5354452,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10318},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Call It Mother's Intuition-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E07.Call It Mother's Intuition-WEBDL-1080p.mkv","size":1897693827,"dateAdded":"2019-11-27T16:51:21.791973Z","sceneName":"How.to.Get.Away.with.Murder.S03E07.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5219348,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:37","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10319},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E08.No More Blood-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E08.No More Blood-WEBDL-1080p.mkv","size":1912398867,"dateAdded":"2019-11-27T16:51:35.647234Z","sceneName":"How.to.Get.Away.with.Murder.S03E08.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5205884,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:04","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10320},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Who's Dead-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E09.Who's Dead-WEBDL-1080p.mkv","size":1918359270,"dateAdded":"2019-11-27T16:51:58.496858Z","sceneName":"How.to.Get.Away.with.Murder.S03E09.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5219199,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:06","scanType":"Progressive","subtitles":"Russian \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10321},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E10.We're Bad People-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E10.We're Bad People-WEBDL-1080p.mkv","size":1916290779,"dateAdded":"2019-11-27T16:52:17.430234Z","sceneName":"How.to.Get.Away.with.Murder.S03E10.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5210505,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:07","scanType":"Progressive","subtitles":"Russian \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10322},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Not Everything's About Annalise-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E11.Not Everything's About Annalise-WEBDL-1080p.mkv","size":1920207812,"dateAdded":"2019-11-27T16:53:02.555997Z","sceneName":"How.to.Get.Away.with.Murder.S03E11.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5252544,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:53","scanType":"Progressive","subtitles":"Russian \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10323},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Go Cry Somewhere Else-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E12.Go Cry Somewhere Else-WEBDL-1080p.mkv","size":1920937193,"dateAdded":"2019-11-27T16:53:31.891025Z","sceneName":"How.to.Get.Away.with.Murder.S03E12.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5236104,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:02","scanType":"Progressive","subtitles":"Russian \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10324},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E13.It's War-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E13.It's War-WEBDL-1080p.mkv","size":1926391839,"dateAdded":"2019-11-27T16:53:56.292145Z","sceneName":"How.to.Get.Away.with.Murder.S03E13.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5241165,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:07","scanType":"Progressive","subtitles":"Russian \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10325},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E14.He Made a Terrible Mistake-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E14.He Made a Terrible Mistake-WEBDL-1080p.mkv","size":1930232465,"dateAdded":"2019-11-27T16:54:26.13242Z","sceneName":"How.to.Get.Away.with.Murder.S03E14.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5253764,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:06","scanType":"Progressive","subtitles":"Russian \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10326},{"seriesId":207,"seasonNumber":3,"relativePath":"Season 03\/S03E15.Wes-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 03\/S03E15.Wes-WEBDL-1080p.mkv","size":1904588426,"dateAdded":"2019-11-27T16:54:52.716469Z","sceneName":"How.to.Get.Away.with.Murder.S03E15.1080p.WEB-DL.H264-FOX","releaseGroup":"FOX","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"Russian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5186499,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:02","scanType":"Progressive","subtitles":"Russian \/ English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10327},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Where Are Your Parents-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E13.Where Are Your Parents-WEBDL-1080p.mkv","size":1619074361,"dateAdded":"2019-11-27T17:05:57.716577Z","sceneName":"How.to.Get.Away.with.Murder.S05E13.1080p.WEB.h264-TBS[TGx]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4954374,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10328},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E08.He Has a Wife-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E08.He Has a Wife-WEBDL-1080p.mkv","size":1703432444,"dateAdded":"2019-11-27T17:32:58.020545Z","sceneName":"How.to.Get.Away.With.Murder.S01E08.He.Has.A.Wife.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4888407,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10329},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E12.We Know Everything-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E12.We Know Everything-WEBDL-1080p.mkv","size":2950654812,"dateAdded":"2019-11-27T23:22:33.660927Z","sceneName":"How.to.Get.Away.with.Murder.S05E12.1080p.WEB.H264-AMCON[TGx]","releaseGroup":"AMCON","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8496004,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10330},{"seriesId":207,"seasonNumber":1,"relativePath":"Season 01\/S01E02.It's All Her Fault-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 01\/S01E02.It's All Her Fault-WEBDL-1080p.mkv","size":1754937770,"dateAdded":"2019-11-28T09:20:12.689645Z","sceneName":"How.to.Get.Away.With.Murder.S01E02.Its.All.Her.Fault.1080p.WEB-DL.DD5.1.H.264-BS[rarbg]","releaseGroup":"BS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5051912,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10335},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E07.I Got Played-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E07.I Got Played-WEBRip-1080p.mkv","size":3237625088,"dateAdded":"2019-11-28T22:03:54.721429Z","sceneName":"How.to.Get.Away.with.Murder.S05E07.I.Got.Played.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[rarbg]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9999872,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10341},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E01.I'm Going Away-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E01.I'm Going Away-WEBRip-1080p.mkv","size":3639794382,"dateAdded":"2019-11-29T02:56:59.879419Z","sceneName":"How.to.Get.Away.with.Murder.S04E01.Im.Going.Away.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10631847,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10342},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E02.I'm Not Her-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E02.I'm Not Her-WEBRip-1080p.mkv","size":3724469263,"dateAdded":"2019-11-29T02:57:23.042843Z","sceneName":"How.to.Get.Away.with.Murder.S04E02.Im.Not.Her.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10933702,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10343},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E03.It's for the Greater Good-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E03.It's for the Greater Good-WEBRip-1080p.mkv","size":3751757151,"dateAdded":"2019-11-29T02:57:55.639209Z","sceneName":"How.to.Get.Away.with.Murder.S04E03.Its.for.the.Greater.Good.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10996644,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10344},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Was She Ever Good at Her Job-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E04.Was She Ever Good at Her Job-WEBRip-1080p.mkv","size":3822329662,"dateAdded":"2019-11-29T02:58:21.911512Z","sceneName":"How.to.Get.Away.with.Murder.S04E04.Was.She.Ever.Good.at.Her.Job.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11195472,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10345},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E05.I Love Her-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E05.I Love Her-WEBRip-1080p.mkv","size":2844233049,"dateAdded":"2019-11-29T02:58:49.321544Z","sceneName":"How.to.Get.Away.with.Murder.S04E05.I.Love.Her.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8171080,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10346},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Stay Strong, Mama-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E06.Stay Strong, Mama-WEBRip-1080p.mkv","size":3015281975,"dateAdded":"2019-11-29T02:59:10.234655Z","sceneName":"How.to.Get.Away.with.Murder.S04E06.Stay.Strong.Mama.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8696079,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10347},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E07.Nobody Roots for Goliath-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E07.Nobody Roots for Goliath-WEBRip-1080p.mkv","size":2838514045,"dateAdded":"2019-11-29T02:59:29.778988Z","sceneName":"How.to.Get.Away.with.Murder.S04E07.Nobody.Roots.for.Goliath.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8149223,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10348},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Live. Live. Live-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E08.Live. Live. Live-WEBRip-1080p.mkv","size":3225289496,"dateAdded":"2019-11-29T02:59:50.365091Z","sceneName":"How.to.Get.Away.with.Murder.S04E08.Live.Live.Live.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9470742,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10349},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E09.He's Dead-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E09.He's Dead-WEBRip-1080p.mkv","size":2635031116,"dateAdded":"2019-11-29T03:00:10.621228Z","sceneName":"How.to.Get.Away.with.Murder.S04E09.Hes.Dead.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7672537,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:15","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10350},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Everything We Did Was for Nothing-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E10.Everything We Did Was for Nothing-WEBRip-1080p.mkv","size":2884413392,"dateAdded":"2019-11-29T03:00:28.69365Z","sceneName":"How.to.Get.Away.with.Murder.S04E10.Everything.We.Did.Was.For.Nothing.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8301571,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10351},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E11.He's a Bad Father-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E11.He's a Bad Father-WEBRip-1080p.mkv","size":2892449779,"dateAdded":"2019-11-29T03:00:48.457773Z","sceneName":"How.to.Get.Away.with.Murder.S04E11.Hes.a.Bad.Father.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8322311,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10352},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Ask Him About Stella-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E12.Ask Him About Stella-WEBRip-1080p.mkv","size":3008814763,"dateAdded":"2019-11-29T03:01:07.782327Z","sceneName":"How.to.Get.Away.with.Murder.S04E12.Ask.Him.About.Stella.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8676219,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10353},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Lahey v. Commonwealth of Pennsylvania (2)-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E13.Lahey v. Commonwealth of Pennsylvania (2)-WEBRip-1080p.mkv","size":3207397488,"dateAdded":"2019-11-29T03:01:26.345845Z","sceneName":"How.to.Get.Away.with.Murder.S04E13.Lahey.v.Commonwealth.of.Pennsylvania.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9293448,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10354},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E14.The Day Before He Died-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E14.The Day Before He Died-WEBRip-1080p.mkv","size":3228457375,"dateAdded":"2019-11-29T03:01:46.81547Z","sceneName":"How.to.Get.Away.with.Murder.S04E14.The.Day.Before.He.Died.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9363560,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10355},{"seriesId":207,"seasonNumber":4,"relativePath":"Season 04\/S04E15.Nobody Else Is Dying-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 04\/S04E15.Nobody Else Is Dying-WEBRip-1080p.mkv","size":2683164858,"dateAdded":"2019-11-29T03:02:06.062905Z","sceneName":"How.to.Get.Away.with.Murder.S04E15.Nobody.Else.Is.Dying.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7667536,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10356},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E14.Make Me the Enemy-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E14.Make Me the Enemy-WEBDL-1080p.mkv","size":2652041910,"dateAdded":"2019-12-02T14:05:16.086778Z","sceneName":"How.to.Get.Away.with.Murder.S05E14.Make.Me.the.Enemy.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb[TGx]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7570973,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10417},{"seriesId":207,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Be the Martyr-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 05\/S05E11.Be the Martyr-WEBDL-1080p.mkv","size":2641433799,"dateAdded":"2019-12-08T00:53:34.561587Z","sceneName":"How.to.Get.Away.with.Murder.S05E11.Be.the.Martyr.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb[TGx]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7835478,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"41:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10431},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E01.It's Time to Move On-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E01.It's Time to Move On-WEBRip-1080p.mkv","size":3547717133,"dateAdded":"2019-12-17T16:10:30.746242Z","sceneName":"How.to.Get.Away.with.Murder.S02E01.Its.Time.to.Move.On.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10344466,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10630},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E02.She's Dying-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E02.She's Dying-WEBRip-1080p.mkv","size":3641629006,"dateAdded":"2019-12-17T16:10:53.883952Z","sceneName":"How.to.Get.Away.with.Murder.S02E02.Shes.Dying.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10636583,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10631},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E03.It's Called the Octopus-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E03.It's Called the Octopus-WEBRip-1080p.mkv","size":3086538488,"dateAdded":"2019-12-17T16:11:23.765801Z","sceneName":"How.to.Get.Away.with.Murder.S02E03.Its.Called.the.Octopus.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8916454,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10632},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Skanks Get Shanked-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E04.Skanks Get Shanked-WEBRip-1080p.mkv","size":3727467527,"dateAdded":"2019-12-17T16:11:45.406605Z","sceneName":"How.to.Get.Away.with.Murder.S02E04.Skanks.Get.Shanked.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10993342,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10633},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Meet Bonnie-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E05.Meet Bonnie-WEBRip-1080p.mkv","size":3328646850,"dateAdded":"2019-12-17T16:12:14.319585Z","sceneName":"How.to.Get.Away.with.Murder.S02E05.Meet.Bonnie.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9666235,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10634},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Two Birds, One Millstone-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E06.Two Birds, One Millstone-WEBRip-1080p.mkv","size":3435358649,"dateAdded":"2019-12-17T16:12:41.480095Z","sceneName":"How.to.Get.Away.with.Murder.S02E06.Two.Birds.One.Millstone.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9998254,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10635},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E07.I Want You to Die-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E07.I Want You to Die-WEBRip-1080p.mkv","size":4190873906,"dateAdded":"2019-12-17T16:13:11.895036Z","sceneName":"How.to.Get.Away.with.Murder.S02E07.I.Want.You.To.Die.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12404649,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10636},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Hi, I'm Philip-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E08.Hi, I'm Philip-WEBRip-1080p.mkv","size":4205491463,"dateAdded":"2019-12-17T16:13:40.64917Z","sceneName":"How.to.Get.Away.with.Murder.S02E08.Hi.Im.Philip.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12381896,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10637},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E09.What Did We Do-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E09.What Did We Do-WEBRip-1080p.mkv","size":3950085579,"dateAdded":"2019-12-17T16:14:16.473298Z","sceneName":"How.to.Get.Away.with.Murder.S02E09.What.Did.We.Do.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11594101,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10638},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E10.What Happened to You, Annalise-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E10.What Happened to You, Annalise-WEBRip-1080p.mkv","size":4011907253,"dateAdded":"2019-12-17T16:14:49.059911Z","sceneName":"How.to.Get.Away.with.Murder.S02E10.What.Happened.to.You.Annalise.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11782399,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10639},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E11.She Hates Us-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E11.She Hates Us-WEBRip-1080p.mkv","size":3821837232,"dateAdded":"2019-12-17T16:15:19.854445Z","sceneName":"How.to.Get.Away.with.Murder.S02E11.She.Hates.Us.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11193931,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10640},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E12.It's a Trap-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E12.It's a Trap-WEBRip-1080p.mkv","size":4101875115,"dateAdded":"2019-12-17T16:15:48.306789Z","sceneName":"How.to.Get.Away.with.Murder.S02E12.Its.a.Trap.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12061220,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10641},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Something Bad Happened-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E13.Something Bad Happened-WEBRip-1080p.mkv","size":3762135132,"dateAdded":"2019-12-17T16:16:21.459629Z","sceneName":"How.to.Get.Away.with.Murder.S02E13.Something.Bad.Happened.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11008678,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10642},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E14.There's My Baby-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E14.There's My Baby-WEBRip-1080p.mkv","size":3784170421,"dateAdded":"2019-12-17T16:16:49.42692Z","sceneName":"How.to.Get.Away.with.Murder.S02E14.Theres.My.Baby.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11078823,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10643},{"seriesId":207,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Anna Mae-WEBRip-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 02\/S02E15.Anna Mae-WEBRip-1080p.mkv","size":3596134099,"dateAdded":"2019-12-17T16:17:21.192427Z","sceneName":"How.to.Get.Away.with.Murder.S02E15.Anna.Mae.1080p.AMZN.WEBRip.DD5.1.x264-CasStudio","releaseGroup":"CasStudio","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10495334,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":10644},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E10.We're Not Getting Away With It-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E10.We're Not Getting Away With It-WEBDL-1080p.mkv","size":2817252776,"dateAdded":"2020-04-02T23:40:30.591847Z","sceneName":"How.to.Get.Away.with.Murder.S06E10.1080p.WEB.H264-iNSiDiOUS[rarbg]","releaseGroup":"iNSiDiOUS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8085284,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12812},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E11.The Reckoning-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E11.The Reckoning-WEBDL-1080p.mkv","size":2818540710,"dateAdded":"2020-04-10T00:41:17.442504Z","sceneName":"How.to.Get.Away.with.Murder.S06E11.1080p.WEB.H264-iNSiDiOUS[rarbg]","releaseGroup":"iNSiDiOUS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8191122,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12832},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E12.Let's Hurt Him-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E12.Let's Hurt Him-WEBDL-1080p.mkv","size":2806456283,"dateAdded":"2020-04-16T23:55:08.46575Z","sceneName":"How.to.Get.Away.with.Murder.S06E12.1080p.WEB.H264-iNSiDiOUS[rarbg]","releaseGroup":"iNSiDiOUS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8169944,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12897},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E13.What If Sam Wasn't the Bad Guy This Whole Time-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E13.What If Sam Wasn't the Bad Guy This Whole Time-WEBDL-1080p.mkv","size":1457640839,"dateAdded":"2020-05-01T09:24:21.901787Z","sceneName":"How.to.Get.Away.with.Murder.S06E13.1080p.WEB.h264-TBS[rarbg]","releaseGroup":"TBS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4256423,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"43:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13237},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E14.Annalise Keating Is Dead-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E14.Annalise Keating Is Dead-WEBDL-1080p.mkv","size":2985677042,"dateAdded":"2020-05-08T07:40:53.611061Z","sceneName":"How.to.Get.Away.with.Murder.S06E14.1080p.WEB.H264-MEMENTO[rarbg]","releaseGroup":"MEMENTO","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8616727,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13283},{"seriesId":207,"seasonNumber":6,"relativePath":"Season 06\/S06E15.Stay-WEBDL-1080p.mkv","path":"\/tv\/How to Get Away with Murder\/Season 06\/S06E15.Stay-WEBDL-1080p.mkv","size":1644664702,"dateAdded":"2020-05-15T09:24:47.463253Z","sceneName":"How.to.Get.Away.with.Murder.S06E15.1080p.WEB.H264-OATH[rarbg]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4719728,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13311}],"queue":[]},"220":{"series":{"title":"Devs","alternateTitles":[],"sortTitle":"devs","status":"ended","ended":true,"overview":"A young computer engineer, Lily, investigates the secretive development division of her employer, a cutting-edge tech company based in San Francisco, which she believes is behind the disappearance of her boyfriend.","previousAiring":"2020-04-16T04:00:00Z","network":"Hulu","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/228\/banner.jpg?lastWrite=637226678994223760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364149\/banners\/62101184.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/228\/poster.jpg?lastWrite=637226678996303720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364149\/posters\/62102197.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/228\/fanart.jpg?lastWrite=637226678992983790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/364149\/backgrounds\/62108555.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-04-16T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10720114131,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Devs","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":364149,"tvRageId":0,"tvMazeId":35017,"firstAired":"2020-03-05T00:00:00Z","seriesType":"standard","cleanTitle":"devs","imdbId":"tt8134186","titleSlug":"devs","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Mini-Series","Science Fiction","Thriller"],"tags":[],"added":"2020-04-16T21:04:58.198888Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":10720114131,"percentOfEpisodes":100.0},"id":228},"episodes":[{"seriesId":228,"episodeFileId":12894,"seasonNumber":1,"episodeNumber":1,"title":"Episode 1","airDate":"2020-03-05","airDateUtc":"2020-03-05T05:00:00Z","overview":"When her boyfriend Sergei vanishes after starting a new job at the secretive Devs division of tech company Amaya, software engineer Lily begins to suspect that his disappearance may not be as clear-cut as it seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":17607},{"seriesId":228,"episodeFileId":12893,"seasonNumber":1,"episodeNumber":2,"title":"Episode 2","airDate":"2020-03-05","airDateUtc":"2020-03-05T05:50:00Z","overview":"Lily enlists ex-boyfriend Jamie\u2019s help to investigate Sergei\u2019s disappearance. She begins to question what she really knew about Sergei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":17608},{"seriesId":228,"episodeFileId":12895,"seasonNumber":1,"episodeNumber":3,"title":"Episode 3","airDate":"2020-03-12","airDateUtc":"2020-03-12T04:00:00Z","overview":"Lily returns to work at Amaya and explains her suspicions to Jen and Anya. Forest is visited by Line, a powerful senator asking questions about the Devs project.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":17609},{"seriesId":228,"episodeFileId":12896,"seasonNumber":1,"episodeNumber":4,"title":"Episode 4","airDate":"2020-03-19","airDateUtc":"2020-03-19T04:00:00Z","overview":"After Lily\u2019s behavior at Amaya, Kenton forces her to see a psychiatrist. The Devs team disagree over the ethics of their invention, and Forest asserts his commitment to the project.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":17610},{"seriesId":228,"episodeFileId":12892,"seasonNumber":1,"episodeNumber":5,"title":"Episode 5","airDate":"2020-03-26","airDateUtc":"2020-03-26T04:00:00Z","overview":"Kenton pays Jamie a visit to guarantee his silence, while Katie covertly exploits the Devs system for her own ends.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":17611},{"seriesId":228,"episodeFileId":12890,"seasonNumber":1,"episodeNumber":6,"title":"Episode 6","airDate":"2020-04-02","airDateUtc":"2020-04-02T04:00:00Z","overview":"Lily and Jamie visit Forest looking for answers, and Katie reveals to Lily the true nature of the Devs system.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":17612},{"seriesId":228,"episodeFileId":12891,"seasonNumber":1,"episodeNumber":7,"title":"Episode 7","airDate":"2020-04-09","airDateUtc":"2020-04-09T04:00:00Z","overview":"The Devs team perfect the system, and Forest and Katie wait for completion of the Devs project. Lily and Jamie try to avoid its threat, but a visit from Kenton leaves Lily with no choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":17613},{"seriesId":228,"episodeFileId":12889,"seasonNumber":1,"episodeNumber":8,"title":"Episode 8","airDate":"2020-04-16","airDateUtc":"2020-04-16T04:00:00Z","overview":"Lily arrives for her final confrontation with Forest and Katie.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":17614}],"episodeFile":[{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Episode 8-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E08.Episode 8-WEBDL-1080p.mkv","size":1681788974,"dateAdded":"2020-04-16T21:14:05.701012Z","sceneName":"Devs.S01E08.iNTERNAL.1080p.WEB.h264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4183524,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"50:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12889},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Episode 6-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E06.Episode 6-WEBDL-1080p.mkv","size":985078829,"dateAdded":"2020-04-16T21:14:28.882024Z","sceneName":"Devs.S01E06.iNTERNAL.1080p.WEB.h264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2294209,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:28","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12890},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Episode 7-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E07.Episode 7-WEBDL-1080p.mkv","size":1566934390,"dateAdded":"2020-04-16T21:14:47.861316Z","sceneName":"Devs.S01E07.iNTERNAL.1080p.WEB.h264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3758040,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12891},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Episode 5-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E05.Episode 5-WEBDL-1080p.mkv","size":1264590609,"dateAdded":"2020-04-16T21:16:35.797034Z","sceneName":"Devs.S01E05.iNTERNAL.1080p.WEB.h264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3385636,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"46:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12892},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Episode 2-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E02.Episode 2-WEBDL-1080p.mkv","size":1311751672,"dateAdded":"2020-04-16T21:17:00.782643Z","sceneName":"Devs.S01E02.iNTERNAL.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3247175,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12893},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Episode 1-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E01.Episode 1-WEBDL-1080p.mkv","size":1526024650,"dateAdded":"2020-04-16T21:18:35.687037Z","sceneName":"Devs.S01E01.iNTERNAL.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3340067,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12894},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Episode 3-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E03.Episode 3-WEBDL-1080p.mkv","size":1163246172,"dateAdded":"2020-04-16T21:18:48.693353Z","sceneName":"Devs.S01E03.iNTERNAL.1080p.WEB.h264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3355861,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"42:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12895},{"seriesId":228,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Episode 4-WEBDL-1080p.mkv","path":"\/tv\/Devs\/Season 01\/S01E04.Episode 4-WEBDL-1080p.mkv","size":1220698835,"dateAdded":"2020-04-16T21:20:35.644934Z","sceneName":"Devs.S01E04.iNTERNAL.1080p.WEB.h264-TRUMP[rarbg]","releaseGroup":"TRUMP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3298055,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:46","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12896}],"queue":[]},"223":{"series":{"title":"Assassination Classroom","alternateTitles":[{"title":"Ansatsu Kyoushitsu","sceneSeasonNumber":-1},{"title":"Assassination Classroom S2","sceneSeasonNumber":2},{"title":"Ansatsu Kyoushitsu S2","sceneSeasonNumber":2},{"title":"Ansatsu Kyoushitsu 2","sceneSeasonNumber":2}],"sortTitle":"assassination classroom","status":"ended","ended":true,"overview":"The students of class 3-E have a mission: kill their teacher before graduation. He has already destroyed the moon, and has promised to destroy the Earth if he can not be killed within a year. But how can this class of misfits kill a tentacled monster, capable of reaching Mach 20 speed, who may be the best teacher any of them have ever had?","previousAiring":"2016-06-30T15:00:00Z","network":"Fuji TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/216\/banner.jpg?lastWrite=637143581249489160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/283947-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/216\/poster.jpg?lastWrite=637143581255569040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/283947-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/216\/fanart.jpg?lastWrite=637143581244649250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/283947-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2014-11-08T15:00:00Z","episodeFileCount":1,"episodeCount":1,"totalEpisodeCount":11,"sizeOnDisk":63195587,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-06-19T15:00:00Z","episodeFileCount":22,"episodeCount":22,"totalEpisodeCount":22,"sizeOnDisk":30628993180,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2016-06-30T15:00:00Z","episodeFileCount":25,"episodeCount":25,"totalEpisodeCount":25,"sizeOnDisk":34167626042,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/Assassination Classroom","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":23,"tvdbId":283947,"tvRageId":47110,"tvMazeId":4907,"firstAired":"2015-01-10T00:00:00Z","seriesType":"standard","cleanTitle":"assassinationclassroom","imdbId":"tt3837246","titleSlug":"assassination-classroom","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Anime","Comedy"],"tags":[],"added":"2020-01-11T16:48:41.596999Z","ratings":{"votes":458,"value":8.4},"statistics":{"seasonCount":2,"episodeFileCount":48,"episodeCount":48,"totalEpisodeCount":58,"sizeOnDisk":64859814809,"percentOfEpisodes":100.0},"id":216},"episodes":[{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Jump Festa 2013 Special","airDate":"2013-10-06","airDateUtc":"2013-10-05T15:00:00Z","overview":"The story of the original manga begins after 70% of the moon was suddenly vaporized in an explosion. The super lifeform responsible for this catastrophe is a strange tentacled creature that can slink around at supersonic Mach 20 speeds. It has a 10 billion yen (US$100 million) price on its head, but for some reason, this creature ends up teaching a middle school class at the beginning of the school year. The students have until graduation to assassinate the teacher, or it will destroy Earth as well. \r\n\r\nThe event anime special will adapt the original manga's popular segment about the field trip to ancient Kyoto.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":17015},{"seriesId":216,"episodeFileId":11275,"seasonNumber":0,"episodeNumber":2,"title":"Episode 0 \"Meeting Time\"","airDate":"2014-11-09","airDateUtc":"2014-11-08T15:00:00Z","overview":"Koro-sensei reminisces about his first meeting with Karasuma, where they first butted heads and fought against each other, ultimately coming to respect one another. However, Karasuma eventually points out their actual meeting wasn't nearly as eventful.","hasFile":true,"monitored":false,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":17016},{"seriesId":216,"episodeFileId":13183,"seasonNumber":1,"episodeNumber":1,"title":"Assassination Time","airDate":"2015-01-10","airDateUtc":"2015-01-09T15:00:00Z","overview":"A creature who blasted the moon into a crescent shows up at Kunugigaoka Junior High School--and he's giving the students a year to assassinate him!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16968},{"seriesId":216,"episodeFileId":13184,"seasonNumber":1,"episodeNumber":2,"title":"Baseball Time","airDate":"2015-01-17","airDateUtc":"2015-01-16T15:00:00Z","overview":"The reasoning behind the E Class's segregation is revealed. Nagisa tracks Koro Sensei's weak points in the hopes of using them to take him down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16969},{"seriesId":216,"episodeFileId":13185,"seasonNumber":1,"episodeNumber":3,"title":"Karma Time","airDate":"2015-01-31","airDateUtc":"2015-01-30T15:00:00Z","overview":"The brilliant, belligerent Karma Akabane, Nagisa's former classmate, joins 3-E and immediately jumps into the assassination mission with both feet.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16970},{"seriesId":216,"episodeFileId":13186,"seasonNumber":1,"episodeNumber":4,"title":"Grown-Up Time","airDate":"2015-02-07","airDateUtc":"2015-02-06T15:00:00Z","overview":"A new foreign-language teacher comes to 3-E with some major ulterior motives... among other things. Will she get any closer to killing Koro Sensei?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16971},{"seriesId":216,"episodeFileId":13187,"seasonNumber":1,"episodeNumber":5,"title":"Assembly Time","airDate":"2015-02-14","airDateUtc":"2015-02-13T15:00:00Z","overview":"Before the torturous school assembly begins, Okuda attempts to poison Koro Sensei in an unexpected way... with unexpected results.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16972},{"seriesId":216,"episodeFileId":13188,"seasonNumber":1,"episodeNumber":6,"title":"Test Time","airDate":"2015-02-21","airDateUtc":"2015-02-20T15:00:00Z","overview":"Time for midterms! Koro Sensei gives his aspiring assassins an ultimatum as they battle a grueling test and the disdain of the rest of the school.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16973},{"seriesId":216,"episodeFileId":13189,"seasonNumber":1,"episodeNumber":7,"title":"School Trip Time, First Period","airDate":"2015-02-28","airDateUtc":"2015-02-27T15:00:00Z","overview":"The students go on a school trip to Kyoto, where they must still keep assassination foremost in their minds. Kanzaki faces trouble from her past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16974},{"seriesId":216,"episodeFileId":13190,"seasonNumber":1,"episodeNumber":8,"title":"School Trip Time, Second Period","airDate":"2015-03-07","airDateUtc":"2015-03-06T15:00:00Z","overview":"The E Class gives a pro sniper plenty of chances to take down Koro Sensei, then try to make the most of what's left of their school trip to Kyoto.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16975},{"seriesId":216,"episodeFileId":13191,"seasonNumber":1,"episodeNumber":9,"title":"Transfer Student Time","airDate":"2015-03-14","airDateUtc":"2015-03-13T15:00:00Z","overview":"A new student joins the E Class with a singleminded focus on assassination that drives her classmates to distraction. Koro Sensei to the rescue!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16976},{"seriesId":216,"episodeFileId":13192,"seasonNumber":1,"episodeNumber":10,"title":"L and R Time","airDate":"2015-03-21","airDateUtc":"2015-03-20T15:00:00Z","overview":"Irina is greeted by her former master, retired assassin Lovro, who thinks she should give up as she has no chance of killing Koro-sensei. Hoping to prove him wrong, Koro-sensei proposes a match between Irina and Lovro to see who will be the first to 'kill' Karasuma, offering Karasuma his own incentive should neither win. Despite Lovro's doubts after he fails to kill Karasuma himself, Irina manages to use what she's learned targeting Koro-sensei to get close, with Karasuma accepting defeat at her hands and Lovro acknowledging her efforts. Later, Nagisa, Karma, and Ritsu accompany Koro-sensei on a mach speed trip to Hawaii to watch the premiere of a new movie, getting a lecture along the way and learning a lot more about Koro-sensei's point of view. On their way back, a man in a while cloak observes alongside a boy, the second transfer student who claims to be Koro-sensei's brother.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16977},{"seriesId":216,"episodeFileId":13193,"seasonNumber":1,"episodeNumber":11,"title":"Transfer Student Time, Second Period","airDate":"2015-03-28","airDateUtc":"2015-03-27T15:00:00Z","overview":"Class 3-E prepare for the arrival of their second transfer student, who is allegedly more powerful than Ritsu. At that moment, a white-robed man named Shiro arrives with the new student, Itona Horibe, who claims to be Koro-sensei's younger brother. When Itona faces against Koro-sensei later that day, it is revealed that he possesses the same kinda of tentacles Koro-sensei has in his hair. While Shiro uses his knowledge of Koro-sensei's weaknesses to give Itona the advantage, Koro-sensei takes advantage of that Itona's tentacles are identical to his and uses Anti-Sensei knives against them, allowing him to knock Itona out of the ring and win the match. When Itona reacts negatively to the thought of studying and tries to counterattack, Shiro knocks him out and takes him back with him. Afterwards, the class try to ask Koro-sensei about how he and Itona are connected, but he remains tight-lipped, stating they must use assassination to find the answers they seek. The students, determined to kill Koro-sensei before anyone else, decide to have Karasuma teach them more assassination techniques.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16978},{"seriesId":216,"episodeFileId":13194,"seasonNumber":1,"episodeNumber":12,"title":"Ball Game Tournament Time","airDate":"2015-04-11","airDateUtc":"2015-04-10T15:00:00Z","overview":"A baseball tournament is to be held, in which Class 3-E are forced to play an exhibition match against the top players of the school's baseball club, which Sugino used to be a part of. Despite knowing the odds are against them, particularly when pitted against the club captain Shindo, Sugino remains determined to win, prompting Koro-sensei to coach them for the match, teaching them how to go up against his mach speed fastballs. On the day of the match, Class 3-E use a bunting strategy to load the bases, allowing them to get an early lead. Not willing to let this slide, Asano takes over as the baseball club's coach to put a stop to Class 3-E's bunting strategy, using the power of hypnotic suggestion to turn Shindo into a bloodthirsty warrior. With the bases loaded against them, Class 3-E manage to use some provocations Karma made concerning some unfair play earlier to their own advantage, placing some of their player up close to Shindo to prevent him from swinging without hurting them, allowing Class-E to win the match. Afterwards. Sugino expresses how he wanted to show off the friends he made in Class 3-E, managing to rekindle his old friendship with Shindo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16979},{"seriesId":216,"episodeFileId":13195,"seasonNumber":1,"episodeNumber":13,"title":"Talent Time","airDate":"2015-04-18","airDateUtc":"2015-04-17T15:00:00Z","overview":"As Karasuma briefly senses what appears to be a fearsome aura coming from Nagisa, Akira Takaoka, an aquaintance of Karasuma from the Ministry of Defense, is sent to Class 3-E to take over Karasuma's role as P.E. teacher. While initially proving popular with the students to do his light-hearted personality, they soon learn his true nature as a ruthless and sadistic instructor who uses fear and violence to train his pupils. When Karasuma voices his objection, Takaoka challenges him to pick one of his students to face off against him using a real knife. Placing his faith in the aura he felt before, Karasuma nominates Nagisa to fight against Takaoka. Following Karasuma's advice and going against Takaoka's expectations of being afraid of wielding a knife, Nagisa uses the assassination skills he had learned and manages to get the upper hand on Takaoka, winning the match. When Takaoka violently objects to defeat, Karasuma beats him back while Asano fires him, with Karasuma returning to his usual teaching position.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16980},{"seriesId":216,"episodeFileId":13196,"seasonNumber":1,"episodeNumber":14,"title":"Vision Time","airDate":"2015-04-25","airDateUtc":"2015-04-24T15:00:00Z","overview":"Koro Sensei exposes a major weakness, and Terasaka interrupts a fun summer day out with an assassination attempt that goes a little too far.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16981},{"seriesId":216,"episodeFileId":13197,"seasonNumber":1,"episodeNumber":15,"title":"End-of-Term Time","airDate":"2015-05-02","airDateUtc":"2015-05-01T15:00:00Z","overview":"For finals, Koro Sensei gives his class a new goal--with an irresistible reward. The E Class makes its own deal with the top-tier A Class's Big Five.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16982},{"seriesId":216,"episodeFileId":13198,"seasonNumber":1,"episodeNumber":16,"title":"School's Out - First Term","airDate":"2015-05-09","airDateUtc":"2015-05-08T15:00:00Z","overview":"After two days of exams, the results are in. Both the ace A Class and the end E Class must come to terms with the outcome--and so must Koro Sensei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16983},{"seriesId":216,"episodeFileId":13199,"seasonNumber":1,"episodeNumber":17,"title":"Island Time","airDate":"2015-05-16","airDateUtc":"2015-05-15T15:00:00Z","overview":"The E Class trains intently under a pro killer to prepare for their island assassination. Once there, they must make sure everything falls into place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16984},{"seriesId":216,"episodeFileId":13200,"seasonNumber":1,"episodeNumber":18,"title":"Go Time","airDate":"2015-05-23","airDateUtc":"2015-05-22T15:00:00Z","overview":"The summer assassination attempt is followed by a crisis affecting nearly half the E Class. Can the rest think and move fast enough to save them?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16985},{"seriesId":216,"episodeFileId":13201,"seasonNumber":1,"episodeNumber":19,"title":"Pandemonium Time","airDate":"2015-05-30","airDateUtc":"2015-05-29T15:00:00Z","overview":"The E Class must put their lessons into practice as they tackle an intimidating hotel brimming with baddies--and all without Koro Sensei's help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16986},{"seriesId":216,"episodeFileId":13202,"seasonNumber":1,"episodeNumber":20,"title":"Karma Time, Second Period","airDate":"2015-06-06","airDateUtc":"2015-06-05T15:00:00Z","overview":"Karma must use his head to get past a formidable foe. Nagisa goes undercover as the E Class continues to sneak its way to the hotel's top floor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16987},{"seriesId":216,"episodeFileId":13203,"seasonNumber":1,"episodeNumber":21,"title":"XX Time","airDate":"2015-06-13","airDateUtc":"2015-06-12T15:00:00Z","overview":"The students take on one last assassin opponent before meeting the shadowy figure who's holding the virus remedy hostage in exhange for Koro Sensei.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16988},{"seriesId":216,"episodeFileId":13204,"seasonNumber":1,"episodeNumber":22,"title":"Nagisa Time","airDate":"2015-06-20","airDateUtc":"2015-06-19T15:00:00Z","overview":"Before Nagisa completely gives into his anger, Terasaka throws a stun-gun at him, urging him not to become a murderer and think about what's truly important. Despite being heavily beaten by Takaoka, Nagisa uses what he learned from Lovro to perform his secret technique; shocking Takaoka with a sudden clap before using the stun-gun Terasaka gave him to bring him to his knees, leaving him with the smile he fears so much before shocking him unconscious. Afterwards, the three assassins from earlier reveal the virus they used is nothing more than an enhanced food-poisoning bug that will wear off eventually, as they didn't agree with Takaoka's methods. The next day, after the affected students recover from their symptoms and Koro-sensei emerges from his crystallized state, the students makes the most of the remainder of their vacation before returning to school for the second term of their assassination classroom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":16989},{"seriesId":216,"episodeFileId":13211,"seasonNumber":2,"episodeNumber":1,"title":"Time for the Summer Festival","airDate":"2016-01-08","airDateUtc":"2016-01-07T15:00:00Z","overview":"Koro Sensei and his students try some matchmaking at the end of their island trip. Class 3-E's eventful summer ends with a taste of pure festival fun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16990},{"seriesId":216,"episodeFileId":13212,"seasonNumber":2,"episodeNumber":2,"title":"Kaede Time","airDate":"2016-01-15","airDateUtc":"2016-01-14T15:00:00Z","overview":"Kaede comes up with a delicious plan of attack, Class 3-E plays an intense game of Cops and Robbers, and Koro Sensei is accused of a serious crime.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16991},{"seriesId":216,"episodeFileId":13213,"seasonNumber":2,"episodeNumber":3,"title":"Itona Horibe Time","airDate":"2016-01-22","airDateUtc":"2016-01-21T15:00:00Z","overview":"Koro Sensei faces off against the powerful, tentacled Itona and his handler Shiro yet again, revealing more of his teaching philosophy along the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16992},{"seriesId":216,"episodeFileId":13214,"seasonNumber":2,"episodeNumber":4,"title":"Spinning Time","airDate":"2016-01-29","airDateUtc":"2016-01-28T15:00:00Z","overview":"Itona endears himself to the boys in Class 3-E as he shows off his assassination creation. The students call each other code names for an entire day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16993},{"seriesId":216,"episodeFileId":13215,"seasonNumber":2,"episodeNumber":5,"title":"Leader Time","airDate":"2016-02-05","airDateUtc":"2016-02-04T15:00:00Z","overview":"Competition between the elite A Class and downtrodden E Class heats up at the school sports festival, with Isogai's livelihood hanging in the balance.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16994},{"seriesId":216,"episodeFileId":13216,"seasonNumber":2,"episodeNumber":6,"title":"Before & After Time","airDate":"2016-02-12","airDateUtc":"2016-02-11T15:00:00Z","overview":"After an accident, the E Class winds up doing a whole different kind of studying off campus. But will they have a chance to bone up for the midterms?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16995},{"seriesId":216,"episodeFileId":13217,"seasonNumber":2,"episodeNumber":7,"title":"Reaper Time, Part 1","airDate":"2016-02-19","airDateUtc":"2016-02-18T15:00:00Z","overview":"A well-intentioned act leads to a falling-out with Professor Bitch. Soon the E Class finds itself facing off alone against a formidable assassin foe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16996},{"seriesId":216,"episodeFileId":13218,"seasonNumber":2,"episodeNumber":8,"title":"Reaper Time, Part 2","airDate":"2016-02-26","airDateUtc":"2016-02-25T15:00:00Z","overview":"When Koro Sensei and Mr. Karasuma reach the Reaper's hideout, it's anyone's guess who'll come out on top--especially with wild-card Irina in the mix.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16997},{"seriesId":216,"episodeFileId":13219,"seasonNumber":2,"episodeNumber":9,"title":"Round Two Time","airDate":"2016-03-04","airDateUtc":"2016-03-03T15:00:00Z","overview":"The students consider their future career options. Nagisa struggles to come to terms with his talent; meanwhile, his mother has her own plans for him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16998},{"seriesId":216,"episodeFileId":13220,"seasonNumber":2,"episodeNumber":10,"title":"School Festival Time","airDate":"2016-03-11","airDateUtc":"2016-03-10T15:00:00Z","overview":"Each class at Kunugigaoka Academy is competing for the highest sales totals in the school festival. How can the E Class even hope to stand a chance?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":16999},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Extracurricular Lesson Takebayashi's Time 1","airDate":"2016-03-11","airDateUtc":"2016-03-10T15:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":17020},{"seriesId":216,"episodeFileId":13221,"seasonNumber":2,"episodeNumber":11,"title":"End-of-Term Time - 2nd Period","airDate":"2016-03-18","airDateUtc":"2016-03-17T15:00:00Z","overview":"It's exam time again, and the cream-of-the-crop A Class is a bigger threat than ever before. Top-ranking Asano, however, has something up his sleeve.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17000},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Extracurricular Lesson Takebayashi's Time 2","airDate":"2016-03-18","airDateUtc":"2016-03-17T15:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":17021},{"seriesId":216,"episodeFileId":13222,"seasonNumber":2,"episodeNumber":12,"title":"Think Outside the Box Time","airDate":"2016-03-25","airDateUtc":"2016-03-24T15:00:00Z","overview":"The end-of-term exams come down to one doozy of a final problem. Principal Asano comes to Koro Sensei with a little wager that has a lot riding on it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17001},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Extracurricular Lesson Sovereign Time, 2nd Period 1","airDate":"2016-03-25","airDateUtc":"2016-03-24T15:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":17022},{"seriesId":216,"episodeFileId":13223,"seasonNumber":2,"episodeNumber":13,"title":"Let Live Time","airDate":"2016-04-01","airDateUtc":"2016-03-31T15:00:00Z","overview":"Principal Asano recalls his first foray into the world of education. In the drama festival, the E Class puts on a play with a few unexpected twists.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17002},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Extracurricular Lesson Sovereign Time, 2nd Period 2","airDate":"2016-04-01","airDateUtc":"2016-03-31T15:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":17023},{"seriesId":216,"episodeFileId":13224,"seasonNumber":2,"episodeNumber":14,"title":"Secret Identity Time","airDate":"2016-04-08","airDateUtc":"2016-04-07T15:00:00Z","overview":"Following the drama festival, the E Class learn that one of their classmates is hiding a big secret connected to Koro Sensei's past!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17003},{"seriesId":216,"episodeFileId":13225,"seasonNumber":2,"episodeNumber":15,"title":"Confession Time","airDate":"2016-04-22","airDateUtc":"2016-04-21T15:00:00Z","overview":"Koro Sensei begins to come clean about his background after a tense and terrifying encounter with a student who has her own reasons to kill him,","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17004},{"seriesId":216,"episodeFileId":13226,"seasonNumber":2,"episodeNumber":16,"title":"Past Time","airDate":"2016-04-29","airDateUtc":"2016-04-28T15:00:00Z","overview":"Following the traumatic story of Koro Sensei's past, the E Class is left reeling after learning revelations about his past deeds and identity. As the gather themselves with this new information, it begins to affect their assassination plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17005},{"seriesId":216,"episodeFileId":13227,"seasonNumber":2,"episodeNumber":17,"title":"Discord Time","airDate":"2016-05-06","airDateUtc":"2016-05-05T15:00:00Z","overview":"The E class is divided over whether to kill Koro Sensei or try to save him. Koro Sensei suggests a way of settling the issue between the two sides.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17006},{"seriesId":216,"episodeFileId":13228,"seasonNumber":2,"episodeNumber":18,"title":"Outcome Time","airDate":"2016-05-13","airDateUtc":"2016-05-12T15:00:00Z","overview":"The battle amongst the E-Class comes down to the final two on each side: Karma vs. Nagisa. But, a new obstacle throws a wrench into the E Class's plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17007},{"seriesId":216,"episodeFileId":13229,"seasonNumber":2,"episodeNumber":19,"title":"Outer Space Time","airDate":"2016-05-20","airDateUtc":"2016-05-19T15:00:00Z","overview":"Class 3-E has agreed to try and save Koro Sensei. In order to do this, they must track down confidential information -- information that takes the class to another height.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17008},{"seriesId":216,"episodeFileId":13230,"seasonNumber":2,"episodeNumber":20,"title":"Valentine's Day Time","airDate":"2016-05-27","airDateUtc":"2016-05-26T15:00:00Z","overview":"Nagisa remains uncertain about his future as high-school entrance exams loom over him. It's time for Class 3-E to celebrate Valentine's Day!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17009},{"seriesId":216,"episodeFileId":13231,"seasonNumber":2,"episodeNumber":21,"title":"Trust Time","airDate":"2016-06-03","airDateUtc":"2016-06-02T15:00:00Z","overview":"It's time for the last project from Koro Sensei before the E-Class closes out the year, but the government's own plans and threatens to get in the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17010},{"seriesId":216,"episodeFileId":13232,"seasonNumber":2,"episodeNumber":22,"title":"Happy Birthday Time","airDate":"2016-06-10","airDateUtc":"2016-06-09T15:00:00Z","overview":"The students fight to see their teacher one last time. A figure from Koro Sensei's past arrives with a serious grudge against the super-creature.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17011},{"seriesId":216,"episodeFileId":13233,"seasonNumber":2,"episodeNumber":23,"title":"Final Boss Time","airDate":"2016-06-17","airDateUtc":"2016-06-16T15:00:00Z","overview":"A pitched battle between two super-creatures threatens to harm the students of Class 3-E. Can Koro Sensei protect them while fighting for his life?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17012},{"seriesId":216,"episodeFileId":13234,"seasonNumber":2,"episodeNumber":24,"title":"Graduation Time","airDate":"2016-06-24","airDateUtc":"2016-06-23T15:00:00Z","overview":"Time is running out, and the E Class students must decide once and for all whether to kill the teacher who so changed their lives over the past year.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17013},{"seriesId":216,"episodeFileId":13235,"seasonNumber":2,"episodeNumber":25,"title":"Future Time","airDate":"2016-07-01","airDateUtc":"2016-06-30T15:00:00Z","overview":"Graduation day: one of life's chapters ends and another begins as the students and teachers of Class 3-E go on to forge their own paths in the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17014},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Assassination Classroom the Movie: 365 Days","airDate":"2016-11-19","airDateUtc":"2016-11-18T15:00:00Z","overview":"A compilation film of the Ansatsu Kyoushitsu TV series, featuring anime-only epilogue scenes not originally in the manga.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":19709},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Extracurricular Lesson Everyone's Time 1","airDate":"2016-11-25","airDateUtc":"2016-11-24T15:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":17024},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Extracurricular Lesson Everyone's Time 2","airDate":"2016-11-25","airDateUtc":"2016-11-24T15:23:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":17025},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Extracurricular Lesson Everyone's Time 3","airDate":"2016-11-25","airDateUtc":"2016-11-24T15:46:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":17026},{"seriesId":216,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Extracurricular Lesson Everyone's Time 4","airDate":"2016-11-25","airDateUtc":"2016-11-24T16:09:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":17027}],"episodeFile":[{"seriesId":216,"seasonNumber":0,"relativePath":"Specials\/S00E02.Episode 0 - Meeting Time-HDTV-1080p.mkv","path":"\/tv\/Assassination Classroom\/Specials\/S00E02.Episode 0 - Meeting Time-HDTV-1080p.mkv","size":63195587,"dateAdded":"2020-01-12T16:43:17.727424Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126326,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":703608,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"9:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":11275},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Assassination Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E01.Assassination Time-Bluray-1080p.mkv","size":1346423850,"dateAdded":"2020-04-25T01:12:51.392253Z","sceneName":"Assassination.Classroom.S01E01.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1969816,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4876151,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13183},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Baseball Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E02.Baseball Time-Bluray-1080p.mkv","size":1333976284,"dateAdded":"2020-04-25T01:13:00.32602Z","sceneName":"Assassination.Classroom.S01E02.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1950283,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4822312,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13184},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Karma Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E03.Karma Time-Bluray-1080p.mkv","size":1363135217,"dateAdded":"2020-04-25T01:13:08.492034Z","sceneName":"Assassination.Classroom.S01E03.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1964729,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4988223,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13185},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Grown-Up Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E04.Grown-Up Time-Bluray-1080p.mkv","size":1398103277,"dateAdded":"2020-04-25T01:13:20.531526Z","sceneName":"Assassination.Classroom.S01E04.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2007049,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5150611,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13186},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Assembly Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E05.Assembly Time-Bluray-1080p.mkv","size":1390692806,"dateAdded":"2020-04-25T01:13:31.982673Z","sceneName":"Assassination.Classroom.S01E05.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1967145,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5126105,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13187},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Test Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E06.Test Time-Bluray-1080p.mkv","size":1422908833,"dateAdded":"2020-04-25T01:13:42.463259Z","sceneName":"Assassination.Classroom.S01E06.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1895907,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5404846,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13188},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E07.School Trip Time, First Period-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E07.School Trip Time, First Period-Bluray-1080p.mkv","size":1492692609,"dateAdded":"2020-04-25T01:13:53.346456Z","sceneName":"Assassination.Classroom.S01E07.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2059010,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":4613274,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13189},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E08.School Trip Time, Second Period-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E08.School Trip Time, Second Period-Bluray-1080p.mkv","size":1255411203,"dateAdded":"2020-04-25T01:14:06.201251Z","sceneName":"Assassination.Classroom.S01E08.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1879078,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4489169,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13190},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Transfer Student Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E09.Transfer Student Time-Bluray-1080p.mkv","size":1462642480,"dateAdded":"2020-04-25T01:14:16.4477Z","sceneName":"Assassination.Classroom.S01E09.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1987869,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5555452,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13191},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E10.L and R Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E10.L and R Time-Bluray-1080p.mkv","size":1332083203,"dateAdded":"2020-04-25T01:14:25.174841Z","sceneName":"Assassination.Classroom.S01E10.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2045800,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4726484,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13192},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Transfer Student Time, Second Period-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E11.Transfer Student Time, Second Period-Bluray-1080p.mkv","size":1328883537,"dateAdded":"2020-04-25T01:14:32.977921Z","sceneName":"Assassination.Classroom.S01E11.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1956791,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4827984,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13193},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Ball Game Tournament Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E12.Ball Game Tournament Time-Bluray-1080p.mkv","size":1444329854,"dateAdded":"2020-04-25T01:14:42.759801Z","sceneName":"Assassination.Classroom.S01E12.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2129590,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5233764,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13194},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Talent Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E13.Talent Time-Bluray-1080p.mkv","size":1279410491,"dateAdded":"2020-04-25T01:14:52.877476Z","sceneName":"Assassination.Classroom.S01E13.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1969738,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4518438,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13195},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Vision Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E14.Vision Time-Bluray-1080p.mkv","size":1670262568,"dateAdded":"2020-04-25T01:15:03.441741Z","sceneName":"Assassination.Classroom.S01E14.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2159849,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":5445703,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13196},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E15.End-of-Term Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E15.End-of-Term Time-Bluray-1080p.mkv","size":1354883584,"dateAdded":"2020-04-25T01:15:15.496152Z","sceneName":"Assassination.Classroom.S01E15.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2165416,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4718914,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13197},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E16.School's Out - First Term-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E16.School's Out - First Term-Bluray-1080p.mkv","size":1477584030,"dateAdded":"2020-04-25T01:15:26.18951Z","sceneName":"Assassination.Classroom.S01E16.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2136063,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5438219,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13198},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Island Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E17.Island Time-Bluray-1080p.mkv","size":1584321854,"dateAdded":"2020-04-25T01:15:36.65536Z","sceneName":"Assassination.Classroom.S01E17.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2032929,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":5174728,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13199},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Go Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E18.Go Time-Bluray-1080p.mkv","size":1315166944,"dateAdded":"2020-04-25T01:15:46.077359Z","sceneName":"Assassination.Classroom.S01E18.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1997762,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4664229,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13200},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Pandemonium Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E19.Pandemonium Time-Bluray-1080p.mkv","size":1443225129,"dateAdded":"2020-04-25T01:15:56.386634Z","sceneName":"Assassination.Classroom.S01E19.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2039499,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5395846,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13201},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Karma Time, Second Period-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E20.Karma Time, Second Period-Bluray-1080p.mkv","size":1319168958,"dateAdded":"2020-04-25T01:16:09.07896Z","sceneName":"Assassination.Classroom.S01E20.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2162799,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4515884,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13202},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E21.XX Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E21.XX Time-Bluray-1080p.mkv","size":1291690439,"dateAdded":"2020-04-25T01:16:19.824554Z","sceneName":"Assassination.Classroom.S01E21.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2011508,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4539726,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13203},{"seriesId":216,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Nagisa Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 01\/S01E22.Nagisa Time-Bluray-1080p.mkv","size":1321996030,"dateAdded":"2020-04-25T01:16:26.292701Z","sceneName":"Assassination.Classroom.S01E22.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1965271,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4748286,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13204},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Time for the Summer Festival-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E01.Time for the Summer Festival-Bluray-1080p.mkv","size":1468562191,"dateAdded":"2020-04-27T08:58:47.670508Z","sceneName":"Assassination.Classroom.S02E01.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2095930,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5489446,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13211},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Kaede Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E02.Kaede Time-Bluray-1080p.mkv","size":1493104249,"dateAdded":"2020-04-27T08:58:56.577268Z","sceneName":"Assassination.Classroom.S02E02.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2064035,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5618759,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13212},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Itona Horibe Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E03.Itona Horibe Time-Bluray-1080p.mkv","size":1533017250,"dateAdded":"2020-04-27T08:59:07.801118Z","sceneName":"Assassination.Classroom.S02E03.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2053596,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":4913740,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13213},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Spinning Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E04.Spinning Time-Bluray-1080p.mkv","size":1466542266,"dateAdded":"2020-04-27T08:59:21.52404Z","sceneName":"Assassination.Classroom.S02E04.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2125680,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5433876,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13214},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Leader Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E05.Leader Time-Bluray-1080p.mkv","size":1717280261,"dateAdded":"2020-04-27T08:59:33.511956Z","sceneName":"Assassination.Classroom.S02E05.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2182427,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":5770485,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13215},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Before & After Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E06.Before & After Time-Bluray-1080p.mkv","size":1524436744,"dateAdded":"2020-04-27T08:59:47.356238Z","sceneName":"Assassination.Classroom.S02E06.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2082427,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5825570,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13216},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Reaper Time (1)-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E07.Reaper Time (1)-Bluray-1080p.mkv","size":1372048143,"dateAdded":"2020-04-27T08:59:58.001762Z","sceneName":"Assassination.Classroom.S02E07.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2059709,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4988271,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13217},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Reaper Time (2)-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E08.Reaper Time (2)-Bluray-1080p.mkv","size":1292035903,"dateAdded":"2020-04-27T09:00:08.09276Z","sceneName":"Assassination.Classroom.S02E08.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2178734,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4392538,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13218},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Round Two Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E09.Round Two Time-Bluray-1080p.mkv","size":1296453161,"dateAdded":"2020-04-27T09:00:19.925268Z","sceneName":"Assassination.Classroom.S02E09.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2028022,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4389565,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13219},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E10.School Festival Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E10.School Festival Time-Bluray-1080p.mkv","size":1586460719,"dateAdded":"2020-04-27T09:00:30.555327Z","sceneName":"Assassination.Classroom.S02E10.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2106452,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6133433,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13220},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E11.End-of-Term Time - 2nd Period-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E11.End-of-Term Time - 2nd Period-Bluray-1080p.mkv","size":1426026299,"dateAdded":"2020-04-27T09:00:41.28663Z","sceneName":"Assassination.Classroom.S02E11.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2128035,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5184468,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13221},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Think Outside the Box Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E12.Think Outside the Box Time-Bluray-1080p.mkv","size":1542905850,"dateAdded":"2020-04-27T09:00:54.226037Z","sceneName":"Assassination.Classroom.S02E12.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2056466,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5965764,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13222},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Let Live Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E13.Let Live Time-Bluray-1080p.mkv","size":1375415139,"dateAdded":"2020-04-27T09:01:05.287896Z","sceneName":"Assassination.Classroom.S02E13.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1972186,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5111689,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13223},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Secret Identity Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E14.Secret Identity Time-Bluray-1080p.mkv","size":1411969549,"dateAdded":"2020-04-27T09:01:15.606104Z","sceneName":"Assassination.Classroom.S02E14.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2246358,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5033658,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13224},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Confession Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E15.Confession Time-Bluray-1080p.mkv","size":1256699749,"dateAdded":"2020-04-27T09:01:26.883173Z","sceneName":"Assassination.Classroom.S02E15.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2156693,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":3272940,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13225},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Past Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E16.Past Time-Bluray-1080p.mkv","size":1065992963,"dateAdded":"2020-04-27T09:01:37.443144Z","sceneName":"Assassination.Classroom.S02E16.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2135492,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3217060,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13226},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Discord Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E17.Discord Time-Bluray-1080p.mkv","size":1504827371,"dateAdded":"2020-04-27T09:01:45.602946Z","sceneName":"Assassination.Classroom.S02E17.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2398283,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5352585,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13227},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Outcome Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E18.Outcome Time-Bluray-1080p.mkv","size":1386315042,"dateAdded":"2020-04-27T09:01:56.994383Z","sceneName":"Assassination.Classroom.S02E18.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2226143,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4892002,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13228},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Outer Space Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E19.Outer Space Time-Bluray-1080p.mkv","size":1277574293,"dateAdded":"2020-04-27T09:02:06.865293Z","sceneName":"Assassination.Classroom.S02E19.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2239001,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4267890,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13229},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Valentine's Day Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E20.Valentine's Day Time-Bluray-1080p.mkv","size":1197346387,"dateAdded":"2020-04-27T09:02:16.326587Z","sceneName":"Assassination.Classroom.S02E20.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2120677,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3972640,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13230},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Trust Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E21.Trust Time-Bluray-1080p.mkv","size":1219042630,"dateAdded":"2020-04-27T09:02:26.75205Z","sceneName":"Assassination.Classroom.S02E21.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2215712,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3908287,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13231},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Happy Birthday Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E22.Happy Birthday Time-Bluray-1080p.mkv","size":1124948148,"dateAdded":"2020-04-27T09:02:34.177093Z","sceneName":"Assassination.Classroom.S02E22.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2187589,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3432385,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13232},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Final Boss Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E23.Final Boss Time-Bluray-1080p.mkv","size":1492855192,"dateAdded":"2020-04-27T09:02:40.063589Z","sceneName":"Assassination.Classroom.S02E23.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2350583,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":4342344,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13233},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Graduation Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E24.Graduation Time-Bluray-1080p.mkv","size":998139800,"dateAdded":"2020-04-27T09:02:51.883327Z","sceneName":"Assassination.Classroom.S02E24.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1877520,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3145870,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:02","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13234},{"seriesId":216,"seasonNumber":2,"relativePath":"Season 02\/S02E25.Future Time-Bluray-1080p.mkv","path":"\/tv\/Assassination Classroom\/Season 02\/S02E25.Future Time-Bluray-1080p.mkv","size":1137626743,"dateAdded":"2020-04-27T09:02:58.441003Z","sceneName":"Assassination.Classroom.S02E25.1080p.Blu-Ray.10-Bit.Dual-Audio.TrueHD.x265-iAHD","releaseGroup":"iAHD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2241165,"audioChannels":5.1,"audioCodec":"TrueHD","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3449959,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13235}],"queue":[]},"227":{"series":{"title":"Kindred: The Embraced","alternateTitles":[],"sortTitle":"kindred embraced","status":"ended","ended":true,"overview":"Kindred: The Embraced was a prime-time drama by Aaron Spelling that revolved around the lives and loves of the clan-based vampire society of San Francisco.","previousAiring":"1996-05-08T04:00:00Z","network":"FOX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/219\/banner.jpg?lastWrite=637203987606053230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/75758\/banners\/62098397.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/219\/poster.jpg?lastWrite=637186173218225390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75758-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/219\/fanart.jpg?lastWrite=637186173215745430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75758-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"1996-05-08T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":4578877307,"percentOfEpisodes":100.0}}],"year":1996,"path":"\/tv\/Kindred - The Embraced","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":75758,"tvRageId":4129,"tvMazeId":3883,"firstAired":"1996-04-02T00:00:00Z","seriesType":"standard","cleanTitle":"kindredembraced","imdbId":"tt0115232","titleSlug":"kindred-the-embraced","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Fantasy"],"tags":[],"added":"2020-02-29T23:55:20.519395Z","ratings":{"votes":27,"value":7.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":10,"sizeOnDisk":4578877307,"percentOfEpisodes":100.0},"id":219},"episodes":[{"seriesId":219,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Kindred: The Embraced","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17227},{"seriesId":219,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Daedalus: Last Will and Testament","overview":"This unique piece features Jeff Kober and the original series special effects make-up designer, Todd Masters, once again applying the character\u2019s makeup to deliver a special video message as Daedalus revealing new details on the Kindred mythology and closing the story of the original Vampire saga. Released in 2013 as part of the Book Of Nod Special Edition DVD version.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19434},{"seriesId":219,"episodeFileId":12643,"seasonNumber":1,"episodeNumber":1,"title":"The Original Saga","airDate":"1996-04-02","airDateUtc":"1996-04-02T05:00:00Z","overview":"A police detective, Frank Kohanek, has learned that vampires exist, but doesn't realise that he's surrounded by them. The businessman whom he suspects is a mobster, Julian Luna, is the Prince of the San Francisco \"Kindred\" clans. And Frank's girlfriend, Alexandra, is Julian's ex and also a vampire. When she reveals herself, breaking the Masquerade, her life is forfeit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":17228},{"seriesId":219,"episodeFileId":12644,"seasonNumber":1,"episodeNumber":2,"title":"Prince of the City","airDate":"1996-04-03","airDateUtc":"1996-04-03T05:00:00Z","overview":"The feud with the Brujah is escalating. Against Masquerade policy, Eddie Fiori has ordered the death of Boyle, an informant of Detective Kohanek. Fortunately for Eddie, the vote by the ruling primogens is split, and Eddie is not sentenced to final death. Julian has fallen in love with reporter Caitlin Byrne, a human who wants to do an article on him because he is wealthy, powerful, and unseen. In order to control her, Julian buys the San Francisco Times and appoints her as the editor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":17229},{"seriesId":219,"episodeFileId":12645,"seasonNumber":1,"episodeNumber":3,"title":"Nightstalker (Unaired)","airDate":"1996-04-05","airDateUtc":"1996-04-05T05:00:00Z","overview":"A recently embraced and insane Kindred is making the news as a serial killer. Falling in love with human women is an issue for Julian, Cash, and Daedalus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":17230},{"seriesId":219,"episodeFileId":12646,"seasonNumber":1,"episodeNumber":4,"title":"Romeo and Juliet","airDate":"1996-04-10","airDateUtc":"1996-04-10T04:00:00Z","overview":"Cash and Sasha have become lovers and Julian grudgingly gives permission for Cash to \"embrace\" Sasha. He's too late, however, because the Brujah clan, trying to provoke a war between clans, has already embraced her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":17231},{"seriesId":219,"episodeFileId":12647,"seasonNumber":1,"episodeNumber":5,"title":"Live Fast, Die Young and Leave a Good Looking Corpse","airDate":"1996-04-17","airDateUtc":"1996-04-17T04:00:00Z","overview":"Zane, a rock star embraced by Lily, endangers the Masquerade, but she's having trouble admitting that he's a problem. Sasha embraces her Brujah blood.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":17232},{"seriesId":219,"episodeFileId":12648,"seasonNumber":1,"episodeNumber":6,"title":"The Rise and Fall of Eddie Fiori","airDate":"1996-04-24","airDateUtc":"1996-04-24T04:00:00Z","overview":"Lily is jealous of Caitlin and sends a P.I. to take photos of Julian and Caitlin together. The P.I. ends up capturing Eddie's assassination attempt on film. Frank ends up with a copy of the photos and shows them to Caitlin, so she breaks up with Julian. Lily, meanwhile, has sided with Eddie, who is still planning to kill Julian. Heads will roll, but not the ones Eddie plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":17233},{"seriesId":219,"episodeFileId":12649,"seasonNumber":1,"episodeNumber":7,"title":"Bad Moon Rising","airDate":"1996-05-01","airDateUtc":"1996-05-01T04:00:00Z","overview":"With Brujah primogen Eddie Fiori gone, fights are breaking out all over San Francisco to determine which Brujah will succeed him. This is to be expected. What isn't expected is the return of the Nosferatu Goth. Julian ran Goth out of town years ago, but he has returned, stronger than ever. And, when he performs the ritual and drinks the blood of the human infant he has just kidnapped, he will be unbeatable.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":17234},{"seriesId":219,"episodeFileId":12650,"seasonNumber":1,"episodeNumber":8,"title":"Cabin in the Woods","airDate":"1996-05-08","airDateUtc":"1996-05-08T04:00:00Z","overview":"Julian hasn't been out of San Francisco in seven years. So when Caitlin asks him to go away with her for the weekend, Julian leaves Archon in charge and goes with her sans bodyguards to Manzanita Springs in Sonoma County where Caitlin has secured a secluded cabin in the woods. Unbeknown to Julian, the sole survivor of that bloodbath, a Brujah named Cameron, has reunited with the three remaining Manzanita Springs Brujah and has plans to take over Eddie's seat on the San Francisco conclave.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":17235}],"episodeFile":[{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Original Saga-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E01.The Original Saga-SDTV.mp4","size":801348526,"dateAdded":"2020-03-02T15:39:58.909251Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128289,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x540","runTime":"1:07:41","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12643},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Prince of the City-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E02.Prince of the City-SDTV.mp4","size":540005048,"dateAdded":"2020-03-02T15:39:59.010438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128390,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":29.97,"resolution":"720x540","runTime":"45:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12644},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Nightstalker (Unaired)-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E03.Nightstalker (Unaired)-SDTV.mp4","size":539930167,"dateAdded":"2020-03-02T15:39:59.065608Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128333,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":29.97,"resolution":"720x540","runTime":"45:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12645},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Romeo and Juliet-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E04.Romeo and Juliet-SDTV.mp4","size":540204074,"dateAdded":"2020-03-02T15:39:59.121935Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128411,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":29.97,"resolution":"720x540","runTime":"45:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12646},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Live Fast, Die Young and Leave a Good Looking Corpse-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E05.Live Fast, Die Young and Leave a Good Looking Corpse-SDTV.mp4","size":539928960,"dateAdded":"2020-03-02T15:39:59.178379Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128378,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":29.97,"resolution":"720x540","runTime":"45:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12647},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Rise and Fall of Eddie Fiori-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E06.The Rise and Fall of Eddie Fiori-SDTV.mp4","size":538774056,"dateAdded":"2020-03-02T15:39:59.235257Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128351,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x540","runTime":"45:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12648},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Bad Moon Rising-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E07.Bad Moon Rising-SDTV.mp4","size":539540718,"dateAdded":"2020-03-02T15:39:59.291537Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128387,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":29.97,"resolution":"720x540","runTime":"45:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12649},{"seriesId":219,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Cabin in the Woods-SDTV.mp4","path":"\/tv\/Kindred - The Embraced\/Season 01\/S01E08.Cabin in the Woods-SDTV.mp4","size":539145758,"dateAdded":"2020-03-02T15:39:59.347756Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128376,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1444000,"videoCodec":"x264","videoFps":23.976,"resolution":"720x540","runTime":"45:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12650}],"queue":[]},"228":{"series":{"title":"The Midnight Gospel","alternateTitles":[],"sortTitle":"midnight gospel","status":"ended","ended":true,"overview":"Traversing trippy worlds inside his multiverse simulator, a space-caster explores existential questions about life, death and everything in between.","previousAiring":"2020-04-20T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/232\/banner.jpg?lastWrite=637233914271440590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/378553\/banners\/5ea12f98e7ebf.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/232\/poster.jpg?lastWrite=637266436638374490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/378553\/posters\/5e8c3165bf9ca.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/232\/fanart.jpg?lastWrite=637230923713105310","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/378553\/backgrounds\/5e80cf36c8805.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-04-20T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":12029805611,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/The Midnight Gospel","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":378553,"tvRageId":0,"tvMazeId":45499,"firstAired":"2020-04-20T00:00:00Z","seriesType":"standard","cleanTitle":"themidnightgospel","imdbId":"tt11639414","titleSlug":"the-midnight-gospel","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2020-04-21T18:59:30.458849Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":12029805611,"percentOfEpisodes":100.0},"id":232},"episodes":[{"seriesId":232,"episodeFileId":13127,"seasonNumber":1,"episodeNumber":1,"title":"Taste of the King","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"The simulator lands Clancy on a zombie-ravaged earth, where he meets the president, who's a fan of drugs and meditation. With Dr. Drew Pinsky.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17760},{"seriesId":232,"episodeFileId":13128,"seasonNumber":1,"episodeNumber":2,"title":"Officers and Wolves","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"On a planet populated by baby clowns, Clancy hears a deer-dog's thoughts on death as they head to a slaughterhouse. With Anne Lamott and Raghu Markus.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17761},{"seriesId":232,"episodeFileId":13129,"seasonNumber":1,"episodeNumber":3,"title":"Hunters Without a Home","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"Clancy zaps to an underwater planet, where he crosses paths with Darryl, a student of ceremonial magic and the path to enlightenment. With Damien Echols.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17762},{"seriesId":232,"episodeFileId":13130,"seasonNumber":1,"episodeNumber":4,"title":"Blinded By My End","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"A mishap sends Clancy to a medieval planet, where he rides along with a knight on a mission to avenge her lover's murder. With Trudy Goodman.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17763},{"seriesId":232,"episodeFileId":13131,"seasonNumber":1,"episodeNumber":5,"title":"Annihilation of Joy","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"At a prison for simulated beings suffering from existential dread, Clancy ponders reality as he watches an inmate perish over and over. With Jason Louv.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17764},{"seriesId":232,"episodeFileId":13132,"seasonNumber":1,"episodeNumber":6,"title":"Vulture With Honor","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"When his simulator malfunctions, Clancy is forced to face a few real-world problems. Later, he meets a meditation master. With David Nichtern.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17765},{"seriesId":232,"episodeFileId":13133,"seasonNumber":1,"episodeNumber":7,"title":"Turtles of the Eclipse","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"A boring trip takes a remarkable turn when Clancy accidentally falls into another world \u2014 and comes face to face with Death. With Caitlin Doughty.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17766},{"seriesId":232,"episodeFileId":13134,"seasonNumber":1,"episodeNumber":8,"title":"Mouse of Silver","airDate":"2020-04-20","airDateUtc":"2020-04-20T07:00:00Z","overview":"Clancy joins his mother on an emotional journey through the wondrous cycle of birth, life and death. With Deneen Fendig, Duncan Trussell's late mother.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17767}],"episodeFile":[{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Taste of the King-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E01.Taste of the King-WEBDL-1080p.mkv","size":1310804642,"dateAdded":"2020-04-21T22:59:37.706011Z","sceneName":"The.Midnight.Gospel.S01E01.Taste.of.the.King.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13127},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Officers and Wolves-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E02.Officers and Wolves-WEBDL-1080p.mkv","size":1198234708,"dateAdded":"2020-04-21T22:59:44.681379Z","sceneName":"The.Midnight.Gospel.S01E02.Officers.and.Wolves.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"20:13","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13128},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Hunters Without a Home-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E03.Hunters Without a Home-WEBDL-1080p.mkv","size":1534321551,"dateAdded":"2020-04-21T22:59:52.46925Z","sceneName":"The.Midnight.Gospel.S01E03.Hunters.Without.a.Home.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:46","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13129},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Blinded By My End-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E04.Blinded By My End-WEBDL-1080p.mkv","size":1605547048,"dateAdded":"2020-04-21T23:00:03.039867Z","sceneName":"The.Midnight.Gospel.S01E04.Blinded.By.My.End.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:58","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13130},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Annihilation of Joy-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E05.Annihilation of Joy-WEBDL-1080p.mkv","size":1491780890,"dateAdded":"2020-04-21T23:00:14.435706Z","sceneName":"The.Midnight.Gospel.S01E05.Annihilation.of.Joy.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:02","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13131},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Vulture With Honor-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E06.Vulture With Honor-WEBDL-1080p.mkv","size":1591864546,"dateAdded":"2020-04-21T23:00:26.165148Z","sceneName":"The.Midnight.Gospel.S01E06.Vulture.With.Honor.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:40","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13132},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Turtles of the Eclipse-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E07.Turtles of the Eclipse-WEBDL-1080p.mkv","size":1446625638,"dateAdded":"2020-04-21T23:00:39.807593Z","sceneName":"The.Midnight.Gospel.S01E07.Turtles.of.the.Eclipse.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:23","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13133},{"seriesId":232,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Mouse of Silver-WEBDL-1080p.mkv","path":"\/tv\/The Midnight Gospel\/Season 01\/S01E08.Mouse of Silver-WEBDL-1080p.mkv","size":1850626588,"dateAdded":"2020-04-21T23:00:50.12484Z","sceneName":"The.Midnight.Gospel.S01E08.Mouse.of.Silver.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6190000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"36:46","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13134}],"queue":[]},"229":{"series":{"title":"Tales from the Loop","alternateTitles":[],"sortTitle":"tales from loop","status":"ended","ended":true,"overview":"Inspired by the wondrous paintings of Simon St\u00e5lenhag, Tales from the Loop explores the mind-bending adventures of the people who live above the Loop, a machine built to unlock and explore the mysteries of the universe - making things previously relegated to science fiction, possible.","previousAiring":"2020-04-03T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/227\/banner.jpg?lastWrite=637215397365327980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368210\/banners\/5e831698dbee8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/227\/poster.jpg?lastWrite=637215397368607920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368210\/posters\/62094780.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/227\/fanart.jpg?lastWrite=637553466980521870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368210\/backgrounds\/5e86122ddb110.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-04-03T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":23295136036,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Tales from the Loop","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":54,"tvdbId":368210,"tvRageId":0,"tvMazeId":37780,"firstAired":"2020-04-03T00:00:00Z","seriesType":"standard","cleanTitle":"talesfromloop","imdbId":"tt8741290","titleSlug":"tales-from-the-loop","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Drama","Science Fiction"],"tags":[],"added":"2020-04-03T19:42:14.518885Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":9,"sizeOnDisk":23295136036,"percentOfEpisodes":100.0},"id":227},"episodes":[{"seriesId":227,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Behind the Scenes","airDate":"2020-03-11","airDateUtc":"2020-03-11T04:00:00Z","overview":"The cast and crew discuss the journey of bringing Simon St\u00e5lenhag\u2019s paintings to life for the series.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17564},{"seriesId":227,"episodeFileId":12815,"seasonNumber":1,"episodeNumber":1,"title":"Loop","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"A young girl living in a small town becomes curious about the mysterious work her mother conducts beneath ground at a facility known as the Loop.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17565},{"seriesId":227,"episodeFileId":12816,"seasonNumber":1,"episodeNumber":2,"title":"Transpose","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"A discovery in the woods gives two teenaged boys an opportunity to step outside their lives.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17566},{"seriesId":227,"episodeFileId":12817,"seasonNumber":1,"episodeNumber":3,"title":"Stasis","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"Upon falling in love, a teenaged girl attempts to make the moment last forever.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17567},{"seriesId":227,"episodeFileId":12818,"seasonNumber":1,"episodeNumber":4,"title":"Echo Sphere","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"A young boy encounters a mysterious structure known as the Echo Sphere and must confront the nature of existence.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17568},{"seriesId":227,"episodeFileId":12819,"seasonNumber":1,"episodeNumber":5,"title":"Control","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"In an effort to keep his family safe, a man makes an unusual choice.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17569},{"seriesId":227,"episodeFileId":12820,"seasonNumber":1,"episodeNumber":6,"title":"Parallel","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"A man travels to an unknown world in search of love.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17570},{"seriesId":227,"episodeFileId":12821,"seasonNumber":1,"episodeNumber":7,"title":"Enemies","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"A journey to a mysterious island leads to a monstrous discovery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17571},{"seriesId":227,"episodeFileId":12822,"seasonNumber":1,"episodeNumber":8,"title":"Home","airDate":"2020-04-03","airDateUtc":"2020-04-03T04:00:00Z","overview":"A boy searches for his lost brother in an attempt to recapture the past.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17572}],"episodeFile":[{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Loop-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E01.Loop-WEBDL-1080p.mkv","size":2771940901,"dateAdded":"2020-04-04T04:34:59.290052Z","sceneName":"Tales.From.the.Loop.S01E01.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6159718,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:19","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12815},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Tranpose-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E02.Tranpose-WEBDL-1080p.mkv","size":2940123636,"dateAdded":"2020-04-04T04:35:19.137796Z","sceneName":"Tales.From.the.Loop.S01E02.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6795279,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:41","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanes"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12816},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Stasis-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E03.Stasis-WEBDL-1080p.mkv","size":3594157029,"dateAdded":"2020-04-04T04:35:37.085598Z","sceneName":"Tales.From.the.Loop.S01E03.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7747105,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:06","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanes"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12817},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Echo Sphere-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E04.Echo Sphere-WEBDL-1080p.mkv","size":3136016243,"dateAdded":"2020-04-04T04:35:59.597839Z","sceneName":"Tales.From.the.Loop.S01E04.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7360837,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:14","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12818},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Control-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E05.Control-WEBDL-1080p.mkv","size":2697579691,"dateAdded":"2020-04-04T04:36:16.929891Z","sceneName":"Tales.From.the.Loop.S01E05.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5927410,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:44","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanes"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12819},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Parallel-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E06.Parallel-WEBDL-1080p.mkv","size":2593658145,"dateAdded":"2020-04-04T04:36:30.618952Z","sceneName":"Tales.From.the.Loop.S01E06.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5424829,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:59","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12820},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Enemies-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E07.Enemies-WEBDL-1080p.mkv","size":2703315863,"dateAdded":"2020-04-04T04:36:44.198903Z","sceneName":"Tales.From.the.Loop.S01E07.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6409679,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"51:06","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12821},{"seriesId":227,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Home-WEBDL-1080p.mkv","path":"\/tv\/Tales from the Loop\/Season 01\/S01E08.Home-WEBDL-1080p.mkv","size":2858344528,"dateAdded":"2020-04-04T04:36:58.089904Z","sceneName":"Tales.From.the.Loop.S01E08.1080p.iNTERNAL.WEB.H264-GHOSTS","releaseGroup":"GHOSTS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6997965,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"49:52","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":12822}],"queue":[]},"231":{"series":{"title":"Kipo and the Age of Wonderbeasts","alternateTitles":[],"sortTitle":"kipo age wonderbeasts","status":"ended","ended":true,"overview":"A sheltered girl gets a crash course in survival when a mutant attack sends her to the surface, far from the safety of her underground home.","previousAiring":"2020-10-12T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/235\/banner.jpg?lastWrite=637247623146778880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/365463\/banners\/62062666.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/235\/poster.jpg?lastWrite=637247623147898860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/365463\/posters\/62042769.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/235\/fanart.jpg?lastWrite=637251268258322540","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/365463\/backgrounds\/5ebd1a5994fed.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-01-14T08:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3440865772,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-06-12T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":32293235311,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-10-12T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":5519699235,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Kipo and the Age of Wonderbeasts","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":365463,"tvRageId":0,"tvMazeId":42593,"firstAired":"2020-01-14T00:00:00Z","seriesType":"standard","cleanTitle":"kipoagewonderbeasts","imdbId":"tt10482560","titleSlug":"kipo-and-the-age-of-wonderbeasts","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Adventure","Animation","Children","Science Fiction"],"tags":[],"added":"2020-05-11T02:51:53.489567Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":30,"episodeCount":30,"totalEpisodeCount":30,"sizeOnDisk":41253800318,"percentOfEpisodes":100.0},"id":235},"episodes":[{"seriesId":235,"episodeFileId":13745,"seasonNumber":1,"episodeNumber":1,"title":"Burrow Girl","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"Swept from her safe burrow, Kipo emerges in a wild surface world full of weird mutant animals. Will her new friends Wolf and Mandu help her get home?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17814},{"seriesId":235,"episodeFileId":13746,"seasonNumber":1,"episodeNumber":2,"title":"Explosion Berries","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"Benson gets a jump on the Mod Frogs to save Kipo, Wolf and his little buddy Dave. But it'll take a hopping mad Mega Bunny to get them out of another jam.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17815},{"seriesId":235,"episodeFileId":13747,"seasonNumber":1,"episodeNumber":3,"title":"Real Cats Wear Plaid","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"Held captive by the brawling Timbercats, Kipo and pals must find the tough kitties\u2019 leader, Yumyan Hammerpaw, if they want to avoid becoming cat food.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17816},{"seriesId":235,"episodeFileId":13748,"seasonNumber":1,"episodeNumber":4,"title":"Cactus Town","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"Leading an army of new allies, Kipo argues with Wolf about the best way to avoid a hissy fit on Umlaut Sn\u00e4ke turf. Can she talk it out with a Mega Mute?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17817},{"seriesId":235,"episodeFileId":13749,"seasonNumber":1,"episodeNumber":5,"title":"The Astronomers in Turtlenecks","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"Kipo and the gang act like a pack to cozy up to the nerdy Newton Wolves and use their telescope to find the burrow people. The hunt is on.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17818},{"seriesId":235,"episodeFileId":13750,"seasonNumber":1,"episodeNumber":6,"title":"Ratland","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"The wolves break the news to Scarlemagne as Kipo tries to crack her father\u2019s code. Then Benson gives the burrow girl a 13th birthday surprise -- or two.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17819},{"seriesId":235,"episodeFileId":13751,"seasonNumber":1,"episodeNumber":7,"title":"Mulholland","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"The friends stumble upon tardigrade dream-maker Tad Mulholland, who allows the gang to realize their bliss. But let's get real: It comes at a price.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17820},{"seriesId":235,"episodeFileId":13752,"seasonNumber":1,"episodeNumber":8,"title":"Twin Beaks","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"Scarlemagne rallies his troops as Kipo searches for her next clue, which sends her into a trash canyon -- and into a hideaway for Fitness Raccoons.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17821},{"seriesId":235,"episodeFileId":13753,"seasonNumber":1,"episodeNumber":9,"title":"Mute-Eat-Mute World","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"A big secret\u2019s out, and Wolf can\u2019t deal. Meanwhile, Kipo must resist the urge to pet Mega Bunny babies before escaping from sticky Mod Frog Jamack.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17822},{"seriesId":235,"episodeFileId":13754,"seasonNumber":1,"episodeNumber":10,"title":"Beyond the Valley of the Dogs","airDate":"2020-01-14","airDateUtc":"2020-01-14T08:00:00Z","overview":"It\u2019s a high-jumping, thirsty Mega Flea vs. the Mega Dogs as Kipo closes in on the burrow. But has she also brought home disaster?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17823},{"seriesId":235,"episodeFileId":14478,"seasonNumber":2,"episodeNumber":1,"title":"Paw of the Jaguar","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"Kipo flies off to find Scarlemagne and save her father. But first, she'll have to go through an old friend. Time to learn Timbercat survival skills.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17824},{"seriesId":235,"episodeFileId":14479,"seasonNumber":2,"episodeNumber":2,"title":"The Goat Cheese Prophecy","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"Hoping to tap her inner strength, Kipo hitches a ride in search of the wise Chevre Sisters. Scarlemagne turns to Lio for help. The cheese sees all.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18400},{"seriesId":235,"episodeFileId":14480,"seasonNumber":2,"episodeNumber":3,"title":"The Ballad of Brunchington Beach","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"Kipo and the gang embark on a risky mission to Cappuccino\u2019s Mute brunch spot and reconnect with an old frenemy. But will they all end up on the menu?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18401},{"seriesId":235,"episodeFileId":14481,"seasonNumber":2,"episodeNumber":4,"title":"To Catch a Deathstalker","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"The chase continues for the old burrow, but first, Kipo and Wolf must keep their cool among the Deathstalkers. Scarlemagne makes a whopping discovery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18402},{"seriesId":235,"episodeFileId":14482,"seasonNumber":2,"episodeNumber":5,"title":"Fun Gus Part I","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"Kipo and company look for answers - and an anchor - in her parents\u2019 old quarters. But are they alone? Above, mysterious forces gather against a ruler.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18403},{"seriesId":235,"episodeFileId":14483,"seasonNumber":2,"episodeNumber":6,"title":"Fun Gus Part II","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"Fun Gus is among us. The chums frolic with the pushy player till a slippery helper arrives. Time to throw Kipo an anchor as the Mega Monkey moves on.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18404},{"seriesId":235,"episodeFileId":14484,"seasonNumber":2,"episodeNumber":7,"title":"Benson and the Beast","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"The Mega Jaguar rages out of control, but Benson has a knack for handling rowdy Mutes. Can the gang rely on Dr. Emilia - and Kipo herself?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18405},{"seriesId":235,"episodeFileId":14485,"seasonNumber":2,"episodeNumber":8,"title":"Sympathy for the Mandrill","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"From Hugo to Scarlemagne, from victim to villain, a tyrant tells his tale. Wolf, Benson and Dave hatch a plan that could blow up in their faces.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18406},{"seriesId":235,"episodeFileId":14486,"seasonNumber":2,"episodeNumber":9,"title":"All That Glitters","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"Game on. Kipo just won't give up hope when it comes to finding the good beneath the savagery. Can the Brunch Bunch flip the odds with flapjacks?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18407},{"seriesId":235,"episodeFileId":14487,"seasonNumber":2,"episodeNumber":10,"title":"Heroes on Fire","airDate":"2020-06-12","airDateUtc":"2020-06-12T07:00:00Z","overview":"With a little help from friends, Kipo breaks the chains of mind control as chaos comes to the coronation. Will she sacrifice it all to save everyone?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":18408},{"seriesId":235,"episodeFileId":15838,"seasonNumber":3,"episodeNumber":1,"title":"Everything Is Crabs","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"The hunt is on for Dr. Emilia, and friends start to vanish. It'll take teamwork to make Kipo's dream of a Human Mute Ultimate Friendship Alliance work.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19708},{"seriesId":235,"episodeFileId":15839,"seasonNumber":3,"episodeNumber":2,"title":"Code Word Milkshake","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"Emilia's kidnapping her way to a cure. Kipo and her pals must keep their cool as they stake out the doc's unexpected hideout. Does K-pop hold the key?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19788},{"seriesId":235,"episodeFileId":15840,"seasonNumber":3,"episodeNumber":3,"title":"A Wolf in Wolf's Clothing","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"Old frenemies are on the comeback. Kipo reaches out to alliance stopper Scarlemagne, and Margot asks Wolf for a favor. Are second chances possible?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19789},{"seriesId":235,"episodeFileId":15841,"seasonNumber":3,"episodeNumber":4,"title":"Don't You Forget a Meow Me","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"With Wolf, Benson and Dave in danger, Kipo must use her brain \u2014 not her brawn \u2014 to outsmart Dr. Emilia. A Mega gets a helping hand from Scarlemagne.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19790},{"seriesId":235,"episodeFileId":15842,"seasonNumber":3,"episodeNumber":5,"title":"Song ReMix","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"A \"cured\" chum returns. Later, a dream family reunion becomes a reality. The race for a vaccine begins after a feverish frolic with the Dubstep Bees.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19791},{"seriesId":235,"episodeFileId":15843,"seasonNumber":3,"episodeNumber":6,"title":"It's a Trap","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"Dr. Emilia and her army work through the death ivy while the alliance creates cunning traps. But can Kipo fight an unstoppable force like destiny?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19792},{"seriesId":235,"episodeFileId":15844,"seasonNumber":3,"episodeNumber":7,"title":"Requiem for a Dave","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"As everyone regroups, Kipo blames herself for the damage done and springs into action. Enter Dave with a tale about fanatics \u2014 and one awesome fan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19793},{"seriesId":235,"episodeFileId":15845,"seasonNumber":3,"episodeNumber":8,"title":"Hidden Treasures","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"Kipo hopes that Prahm will end the war with killer banjo and dance ... but first she must convince the Mutes to forgive. Dr. Emilia smiles and schemes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19794},{"seriesId":235,"episodeFileId":15846,"seasonNumber":3,"episodeNumber":9,"title":"Prahmises","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"Dr. Emilia's determination runs deep \u2014 and gets dark. Scarlemagne and Wolf set out to end her, and Song reveals a secret. Let's get the party started!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19795},{"seriesId":235,"episodeFileId":15847,"seasonNumber":3,"episodeNumber":10,"title":"Age of the Wonderbeasts","airDate":"2020-10-12","airDateUtc":"2020-10-12T07:00:00Z","overview":"Sabotaged! Everyone must work together to stop Dr. Emilia as an epic Mega Mute battle shuts down a successful bash. Now's the time for real heroes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19796}],"episodeFile":[{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Burrow Girl-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E01.Burrow Girl-WEBDL-1080p.mkv","size":344326979,"dateAdded":"2020-05-28T21:41:04.977877Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1253819,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13745},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Explosion Berries-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E02.Explosion Berries-WEBDL-1080p.mkv","size":344270006,"dateAdded":"2020-05-28T21:41:06.253321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1253283,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13746},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Real Cats Wear Plaid-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E03.Real Cats Wear Plaid-WEBDL-1080p.mkv","size":344364056,"dateAdded":"2020-05-28T21:41:07.935591Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1253621,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ Greek \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chine"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13747},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Cactus Town-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E04.Cactus Town-WEBDL-1080p.mkv","size":344033037,"dateAdded":"2020-05-28T21:41:10.692943Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1251634,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13748},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Astronomers in Turtlenecks-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E05.The Astronomers in Turtlenecks-WEBDL-1080p.mkv","size":344276931,"dateAdded":"2020-05-28T21:41:13.138734Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1252846,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13749},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Ratland-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E06.Ratland-WEBDL-1080p.mkv","size":343898445,"dateAdded":"2020-05-28T21:41:16.118945Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250934,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13750},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Mulholland-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E07.Mulholland-WEBDL-1080p.mkv","size":343923148,"dateAdded":"2020-05-28T21:41:19.111028Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1251196,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13751},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Twin Beaks-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E08.Twin Beaks-WEBDL-1080p.mkv","size":344133896,"dateAdded":"2020-05-28T21:41:21.816993Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1252636,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13752},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Mute-Eat-Mute World-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E09.Mute-Eat-Mute World-WEBDL-1080p.mkv","size":343921930,"dateAdded":"2020-05-28T21:41:25.18866Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1251432,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13753},{"seriesId":235,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Beyond the Valley of the Dogs-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 01\/S01E10.Beyond the Valley of the Dogs-WEBDL-1080p.mkv","size":343717344,"dateAdded":"2020-05-28T21:41:28.30171Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1250444,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:10","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chin"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13754},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Paw of the Jaguar-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E01.Paw of the Jaguar-WEBDL-1080p.mkv","size":3244984404,"dateAdded":"2020-06-13T14:37:20.065359Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E01.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14478},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Goat Cheese Prophecy-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E02.The Goat Cheese Prophecy-WEBDL-1080p.mkv","size":3203421178,"dateAdded":"2020-06-13T14:37:40.750604Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E02.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14479},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Ballad of Brunchington Beach-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E03.The Ballad of Brunchington Beach-WEBDL-1080p.mkv","size":3314378786,"dateAdded":"2020-06-13T14:38:09.15114Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E03.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14480},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E04.To Catch a Deathstalker-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E04.To Catch a Deathstalker-WEBDL-1080p.mkv","size":3203689923,"dateAdded":"2020-06-13T14:38:34.037532Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E04.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14481},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Fun Gus Part I-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E05.Fun Gus Part I-WEBDL-1080p.mkv","size":3245859540,"dateAdded":"2020-06-13T14:40:14.832206Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E05.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2740000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14482},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Fun Gus Part II-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E06.Fun Gus Part II-WEBDL-1080p.mkv","size":3315252209,"dateAdded":"2020-06-13T14:40:30.230494Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E06.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14483},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Benson and the Beast-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E07.Benson and the Beast-WEBDL-1080p.mkv","size":3203221330,"dateAdded":"2020-06-13T14:40:53.508492Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E07.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14484},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Symphony for the Mandrill-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E08.Symphony for the Mandrill-WEBDL-1080p.mkv","size":3130248945,"dateAdded":"2020-06-13T14:41:18.941226Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E08.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2050000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14485},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E09.All That Glitters-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E09.All That Glitters-WEBDL-1080p.mkv","size":3165005826,"dateAdded":"2020-06-13T14:41:43.719592Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E09.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2260000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14486},{"seriesId":235,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Heroes on Fire-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 02\/S02E10.Heroes on Fire-WEBDL-1080p.mkv","size":3267173170,"dateAdded":"2020-06-13T14:42:06.428234Z","sceneName":"Kipo.and.the.Age.of.Wonderbeasts.S02E10.1080p.NF.WEB-DL.DDP5.1.x264-Telly","releaseGroup":"Telly","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Arabic \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ Vietnamese","audioStreamCount":25,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Spanish \/ Spanish \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":14487},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Everything Is Crabs-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E01.Everything Is Crabs-WEBDL-1080p.mkv","size":552476415,"dateAdded":"2020-10-13T08:58:21.799955Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E01.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2610000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15838},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Code Word Milkshake-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E02.Code Word Milkshake-WEBDL-1080p.mkv","size":532671653,"dateAdded":"2020-10-13T08:58:26.592415Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E02.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15839},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E03.A Wolf in Wolf's Clothing-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E03.A Wolf in Wolf's Clothing-WEBDL-1080p.mkv","size":492862388,"dateAdded":"2020-10-13T08:58:31.631129Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E03.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2260000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15840},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Don't You Forget a Meow Me-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E04.Don't You Forget a Meow Me-WEBDL-1080p.mkv","size":443802096,"dateAdded":"2020-10-13T08:58:36.686566Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E04.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1960000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15841},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Song ReMix-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E05.Song ReMix-WEBDL-1080p.mkv","size":594830962,"dateAdded":"2020-10-13T08:58:43.696264Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E05.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15842},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E06.It's a Trap-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E06.It's a Trap-WEBDL-1080p.mkv","size":513161037,"dateAdded":"2020-10-13T08:58:49.810532Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E06.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2370000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:14","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15843},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Requiem for a Dave-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E07.Requiem for a Dave-WEBDL-1080p.mkv","size":617946518,"dateAdded":"2020-10-13T08:58:55.950958Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E07.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3010000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15844},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Hidden Treasures-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E08.Hidden Treasures-WEBDL-1080p.mkv","size":595863324,"dateAdded":"2020-10-13T08:59:03.247794Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E08.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2870000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15845},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Prahmises-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E09.Prahmises-WEBDL-1080p.mkv","size":531601896,"dateAdded":"2020-10-13T08:59:09.550983Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E09.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2490000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15846},{"seriesId":235,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Age of the Wonderbeasts-WEBDL-1080p.mkv","path":"\/tv\/Kipo and the Age of Wonderbeasts\/Season 03\/S03E10.Age of the Wonderbeasts-WEBDL-1080p.mkv","size":644482946,"dateAdded":"2020-10-13T08:59:16.213956Z","sceneName":"Kipo.And.The.Age.Of.Wonderbeasts.S03E10.1080p.NF.WEB-DL.DDP5.1.H.264-NTb","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:10","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15847}],"queue":[]},"232":{"series":{"title":"Beastars","alternateTitles":[{"title":"Beastars 2","sceneSeasonNumber":2},{"title":"Beastars S2","sceneSeasonNumber":2}],"sortTitle":"beastars","status":"continuing","ended":false,"overview":"In a world of anthropomorphic animals, a reclusive wolf's complicated relationship with a kindly rabbit is tested by a classmate's murder, a charismatic deer's influence, and his own burgeoning predatory instincts.","previousAiring":"2021-03-24T16:00:00Z","network":"Fuji TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/233\/banner.jpg?lastWrite=637239741737669790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5da1105770587.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/233\/poster.jpg?lastWrite=637401431526589800","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361013\/posters\/5fa1f659b9bbf.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/233\/fanart.jpg?lastWrite=637239741728149950","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/5c98b9a151898.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-12-25T16:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":4816663233,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-03-24T16:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":9732433269,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Beastars","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":23,"tvdbId":361013,"tvRageId":0,"tvMazeId":43426,"firstAired":"2019-10-10T00:00:00Z","seriesType":"standard","cleanTitle":"beastars","imdbId":"tt11043632","titleSlug":"beastars","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Anime","Crime","Drama"],"tags":[],"added":"2020-05-01T23:56:10.727264Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":14549096502,"percentOfEpisodes":100.0},"id":233},"episodes":[{"seriesId":233,"episodeFileId":17458,"seasonNumber":1,"episodeNumber":1,"title":"The Moon and the Beast","airDate":"2019-10-10","airDateUtc":"2019-10-09T16:00:00Z","overview":"An herbivore's murder unsettles Cherryton Academy, with some suspecting grey wolf Legoshi. Dwarf rabbit Hal struggles with her classmates' bullying.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17775},{"seriesId":233,"episodeFileId":17459,"seasonNumber":1,"episodeNumber":2,"title":"The Academy\u2019s Top Dogs","airDate":"2019-10-17","airDateUtc":"2019-10-16T16:00:00Z","overview":"Legoshi ponders his own ferocious impulses; an altercation at breakfast unsettles him further. The theater students prepare for their play.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17776},{"seriesId":233,"episodeFileId":17460,"seasonNumber":1,"episodeNumber":3,"title":"A Wolf is Born","airDate":"2019-10-24","airDateUtc":"2019-10-23T16:00:00Z","overview":"Hal and Legoshi's interaction ends extremely awkwardly. With two days to the performance, the school newspaper is sniffing out what Rouis is hiding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17777},{"seriesId":233,"episodeFileId":17461,"seasonNumber":1,"episodeNumber":4,"title":"Give it Your All","airDate":"2019-10-31","airDateUtc":"2019-10-30T16:00:00Z","overview":"The drama club switches up parts after the last performance. Tapped to appear onstage, Legoshi confronts the new lead actor about a dangerous issue.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17778},{"seriesId":233,"episodeFileId":17462,"seasonNumber":1,"episodeNumber":5,"title":"Two Sides to the Story","airDate":"2019-11-07","airDateUtc":"2019-11-06T16:00:00Z","overview":"Legoshi deals with misplaced notoriety after the chaotic but successful play, with Jack's support. Hal and Rouis have a clandestine encounter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17779},{"seriesId":233,"episodeFileId":17463,"seasonNumber":1,"episodeNumber":6,"title":"Blurred Vision \u2013 Dream or Reality?","airDate":"2019-11-14","airDateUtc":"2019-11-13T16:00:00Z","overview":"After another murder, herbivores are confined to campus. Out in town, the theater club carnivores enter a shady district for adult meat eaters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17780},{"seriesId":233,"episodeFileId":17464,"seasonNumber":1,"episodeNumber":7,"title":"Below the Fur Coat","airDate":"2019-11-21","airDateUtc":"2019-11-20T16:00:00Z","overview":"The mystery of Legoshi's favorite lunch is solved. Hal recalls her first encounter with a vulnerable Rouis, who has a fianc\u00e9e.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17781},{"seriesId":233,"episodeFileId":17465,"seasonNumber":1,"episodeNumber":8,"title":"Caught like Floss in a Canine's Teeth","airDate":"2019-11-28","airDateUtc":"2019-11-27T16:00:00Z","overview":"Legoshi offers to escort Hal home; on the way she attempts to become better friends with him, unaware of his guilt. Juno has a revelation.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17782},{"seriesId":233,"episodeFileId":17466,"seasonNumber":1,"episodeNumber":9,"title":"Into the Lion's Den","airDate":"2019-12-05","airDateUtc":"2019-12-04T16:00:00Z","overview":"Rouis recalls his harrowing past, and Legoshi makes a personal vow despite conflicting feelings. Meanwhile, Hal is kidnapped for ransom by carnivores.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17783},{"seriesId":233,"episodeFileId":17467,"seasonNumber":1,"episodeNumber":10,"title":"A Wolf in Sheep's Clothing","airDate":"2019-12-12","airDateUtc":"2019-12-11T16:00:00Z","overview":"Legoshi risks his life to find the Shishi-Gumi. A friend helps him channel and control his inner beast so that he can save Hal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17784},{"seriesId":233,"episodeFileId":17468,"seasonNumber":1,"episodeNumber":11,"title":"To the Neon District","airDate":"2019-12-19","airDateUtc":"2019-12-18T16:00:00Z","overview":"A ferocious Legoshi wreaks havoc to save Hal, while an unknown ally assists in their escape. Awkward timing causes some awkward situations afterwards.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17785},{"seriesId":233,"episodeFileId":17469,"seasonNumber":1,"episodeNumber":12,"title":"In the Storm's Wake","airDate":"2019-12-26","airDateUtc":"2019-12-25T16:00:00Z","overview":"Hal and Legoshi return to school after their strange night. As the festival gets underway, Juno challenges Hal for Legoshi's affections.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17786},{"seriesId":233,"episodeFileId":18645,"seasonNumber":2,"episodeNumber":1,"title":"A Teen's Never-Ending Alarm","airDate":"2021-01-07","airDateUtc":"2021-01-06T16:00:00Z","overview":"Things are somewhat calm again, but with Tem\u2019s murder unsolved and Rouis missing, the school is filled with rumors of hauntings and strange occurrences.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":17788},{"seriesId":233,"episodeFileId":18646,"seasonNumber":2,"episodeNumber":2,"title":"The Grey Police Hound Runs","airDate":"2021-01-14","airDateUtc":"2021-01-13T16:00:00Z","overview":"Rokume, a giant rattlesnake claiming to be the only security guard in the school, approaches Legoshi and asks him to track down the murderer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20383},{"seriesId":233,"episodeFileId":18647,"seasonNumber":2,"episodeNumber":3,"title":"Changes","airDate":"2021-01-21","airDateUtc":"2021-01-20T16:00:00Z","overview":"After taking a drastic step against the Shishi-Gumi, Rouis faces an impossible choice. The drama club gets a new, very confident member.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20384},{"seriesId":233,"episodeFileId":18648,"seasonNumber":2,"episodeNumber":4,"title":"Entangled","airDate":"2021-01-28","airDateUtc":"2021-01-27T16:00:00Z","overview":"Legoshi is attacked by a powerful carnivore. As Rouis earns the trust of the Shishi-Gumi, he loses his own health and peace of mind.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20385},{"seriesId":233,"episodeFileId":18649,"seasonNumber":2,"episodeNumber":5,"title":"Call It Like It Is","airDate":"2021-02-04","airDateUtc":"2021-02-03T16:00:00Z","overview":"While attending school during the day, Legoshi spends his nights in intense training sessions with Gohin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20430},{"seriesId":233,"episodeFileId":18650,"seasonNumber":2,"episodeNumber":6,"title":"Fly, O Corrupt One","airDate":"2021-02-11","airDateUtc":"2021-02-10T16:00:00Z","overview":"Rouis wants to officially quit school to make a break with his past, but his father refuses to allow it. Hal and Legoshi talk things out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20431},{"seriesId":233,"episodeFileId":18651,"seasonNumber":2,"episodeNumber":7,"title":"Unforgettable Sweetness","airDate":"2021-02-18","airDateUtc":"2021-02-17T16:00:00Z","overview":"Tao \u2014 a black panther \u2014 accidentally injures another student. After Legoshi confronts them, the killer thinks back on how and why they murdered Tem.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20432},{"seriesId":233,"episodeFileId":18652,"seasonNumber":2,"episodeNumber":8,"title":"Laughing at the Shadows We Cast","airDate":"2021-02-25","airDateUtc":"2021-02-24T16:00:00Z","overview":"After clapping a muzzle on Legoshi, Gohin orders him to capture a beast in the throes of a flesh addiction. Juno ends up spending some time with Hal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20433},{"seriesId":233,"episodeFileId":18653,"seasonNumber":2,"episodeNumber":9,"title":"A Busted Electric Fan","airDate":"2021-03-04","airDateUtc":"2021-03-03T16:00:00Z","overview":"Legoshi is shocked when he meets Rouis in the Black Market district. At school, he's disgusted to hear Riz say he\u2019ll visit Kibi in the hospital.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20771},{"seriesId":233,"episodeFileId":18654,"seasonNumber":2,"episodeNumber":10,"title":"The Chef's Suspense","airDate":"2021-03-11","airDateUtc":"2021-03-10T16:00:00Z","overview":"After Pina makes it clear he won\u2019t be intimidated by Riz, Legoshi gets into a bloody bare-knuckled fight with the bear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20772},{"seriesId":233,"episodeFileId":18655,"seasonNumber":2,"episodeNumber":11,"title":"Scatter Your Scales","airDate":"2021-03-18","airDateUtc":"2021-03-17T16:00:00Z","overview":"To grow stronger for his New Year\u2019s Day confrontation with Riz, Legoshi tries ingesting a moth larva and has an intense hallucination.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20773},{"seriesId":233,"episodeFileId":18656,"seasonNumber":2,"episodeNumber":12,"title":"The Taste of Rebellion","airDate":"2021-03-25","airDateUtc":"2021-03-24T16:00:00Z","overview":"While getting pummeled by Riz, Legoshi realizes that they\u2019re not so different: he could easily have succumbed to his carnivorous instincts, too.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":20774}],"episodeFile":[{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Moon and the Beast-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E01.The Moon and the Beast-Bluray-1080p.mkv","size":346821214,"dateAdded":"2021-02-01T15:31:39.769163Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137897,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1672922,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17458},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Academy's Top Dogs-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E02.The Academy's Top Dogs-Bluray-1080p.mkv","size":399884606,"dateAdded":"2021-02-01T15:33:21.803044Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137635,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1987457,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17459},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A Wolf is Born-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E03.A Wolf is Born-Bluray-1080p.mkv","size":378523075,"dateAdded":"2021-02-01T15:35:04.303968Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136212,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1868057,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17460},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Give it Your All-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E04.Give it Your All-Bluray-1080p.mkv","size":460939332,"dateAdded":"2021-02-01T15:36:45.929358Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137309,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2349669,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17461},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Two Sides to the Story-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E05.Two Sides to the Story-Bluray-1080p.mkv","size":454838167,"dateAdded":"2021-02-01T15:38:28.244623Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":135617,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2321172,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17462},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Blurred Vision - Dream or Reality-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E06.Blurred Vision - Dream or Reality-Bluray-1080p.mkv","size":417468628,"dateAdded":"2021-02-01T15:40:10.815514Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":136917,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2010780,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17463},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Below the Fur Coat-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E07.Below the Fur Coat-Bluray-1080p.mkv","size":431152407,"dateAdded":"2021-02-01T15:41:53.3252Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137883,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2102833,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17464},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Caught like Floss in a Canine's Teeth-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E08.Caught like Floss in a Canine's Teeth-Bluray-1080p.mkv","size":376653939,"dateAdded":"2021-02-01T15:43:36.333934Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1871806,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17465},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Into the Lion's Den-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E09.Into the Lion's Den-Bluray-1080p.mkv","size":459135600,"dateAdded":"2021-02-01T15:45:18.131311Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":138066,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2345341,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17466},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E10.A Wolf in Sheep's Clothing-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E10.A Wolf in Sheep's Clothing-Bluray-1080p.mkv","size":334336032,"dateAdded":"2021-02-01T15:47:01.384671Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":144000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1613440,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17467},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E11.To the Neon District-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E11.To the Neon District-Bluray-1080p.mkv","size":366093517,"dateAdded":"2021-02-01T15:48:43.22845Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":137497,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1776634,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17468},{"seriesId":233,"seasonNumber":1,"relativePath":"Season 01\/S01E12.In the Storm's Wake-Bluray-1080p.mkv","path":"\/tv\/Beastars\/Season 01\/S01E12.In the Storm's Wake-Bluray-1080p.mkv","size":390816716,"dateAdded":"2021-02-01T15:50:25.197348Z","releaseGroup":"Anime Time","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":139432,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":1934780,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17469},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E01.A Teen's Never-Ending Alarm-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E01.A Teen's Never-Ending Alarm-WEBDL-1080p.mkv","size":1216756454,"dateAdded":"2021-07-15T08:06:23.675467Z","sceneName":"Beastars.S02E01.a.Teens.NeverEnding.Alarm.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":5583047,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:03","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18645},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Gray Police Hound Runs-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E02.The Gray Police Hound Runs-WEBDL-1080p.mkv","size":739461569,"dateAdded":"2021-07-15T08:06:31.452938Z","sceneName":"Beastars.S02E02.the.Grey.Police.Hound.Runs.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":3030408,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:31","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18646},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Lead Stuck in your Throat-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E03.The Lead Stuck in your Throat-WEBDL-1080p.mkv","size":739270888,"dateAdded":"2021-07-15T08:06:39.582874Z","sceneName":"Beastars.S02E03.Changes.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":3041974,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18647},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Entangled-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E04.Entangled-WEBDL-1080p.mkv","size":869586151,"dateAdded":"2021-07-15T08:06:47.674925Z","sceneName":"Beastars.S02E04.Entangled.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":3789936,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:25","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18648},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E05.White is Still White in Monochrome-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E05.White is Still White in Monochrome-WEBDL-1080p.mkv","size":762969617,"dateAdded":"2021-07-15T08:06:58.272438Z","sceneName":"Beastars.S02E05.Call.It.Like.It.Is.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":3177151,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:27","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18649},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Fly, O Corrupt One-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E06.Fly, O Corrupt One-WEBDL-1080p.mkv","size":702220577,"dateAdded":"2021-07-15T08:07:06.619842Z","sceneName":"Beastars.S02E06.Fly.O.Corrupt.One.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":2813710,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:33","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18650},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Unforgettable Sweetness-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E07.Unforgettable Sweetness-WEBDL-1080p.mkv","size":728373494,"dateAdded":"2021-07-15T08:07:15.873876Z","sceneName":"Beastars.S02E07.Unforgettable.Sweetness.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":2967575,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:31","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18651},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Laughing at the Shadows We Cast-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E08.Laughing at the Shadows We Cast-WEBDL-1080p.mkv","size":736671981,"dateAdded":"2021-07-15T08:07:26.142851Z","sceneName":"Beastars.S02E08.Laughing.at.the.Shadows.We.Cast.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":3033587,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:25","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18652},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E09.A Busted Electric Fan-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E09.A Busted Electric Fan-WEBDL-1080p.mkv","size":893758743,"dateAdded":"2021-07-15T08:07:34.846471Z","sceneName":"Beastars.S02E09.a.Busted.Electric.Fan.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":3905995,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:31","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18653},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Chef's Suspense-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E10.The Chef's Suspense-WEBDL-1080p.mkv","size":714718721,"dateAdded":"2021-07-15T08:07:45.019761Z","sceneName":"Beastars.S02E10.the.Chefs.Suspense.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":2890435,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:31","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18654},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Scatter Your Scales-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E11.Scatter Your Scales-WEBDL-1080p.mkv","size":716051968,"dateAdded":"2021-07-15T08:07:53.658745Z","sceneName":"Beastars.S02E11.Scatter.Your.Scales.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":2922037,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:23","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18655},{"seriesId":233,"seasonNumber":2,"relativePath":"Season 02\/S02E12.A Revolutionary Feast-WEBDL-1080p.mkv","path":"\/tv\/Beastars\/Season 02\/S02E12.A Revolutionary Feast-WEBDL-1080p.mkv","size":912593106,"dateAdded":"2021-07-15T08:08:03.509606Z","sceneName":"Beastars.S02E12.the.Taste.of.Rebellion.1080p.NF.WEB-DL.DDP2.0.x264-KRP","releaseGroup":"KRP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English \/ French \/ German \/ Italian \/ Japanese \/ Portuguese \/ Spanish \/ Spanish \/ Thai","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":4035102,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:25","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portugu"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18656}],"queue":[]},"233":{"series":{"title":"BPS: Battle Programmer Shirase","alternateTitles":[],"sortTitle":"bps battle programmer shirase","status":"ended","ended":true,"overview":"Battle Programmer Shirase, also known as BPS, is a free programmer with super hacking abilities who doesn't work for money. What he does work for is certainly something that only people like him would appreciate. But, his demeanor certainly doesn't suit the jobs he is hired for. With the evil King of America causing trouble via the internet, Shirase is nothing but busy as each new adventure brings even more interesting people into the picture.","previousAiring":"2004-01-02T15:12:00Z","network":"tvk","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/239\/banner.jpg?lastWrite=637251659838468240","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81147-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/239\/poster.jpg?lastWrite=637251659839548220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81147-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/239\/fanart.jpg?lastWrite=637251659848908070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81147-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-01-02T15:12:00Z","episodeFileCount":14,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":842071548,"percentOfEpisodes":93.33333333333333}}],"year":2003,"path":"\/tv\/Battle Programmer Shirase","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":12,"tvdbId":81147,"tvRageId":2277,"tvMazeId":12657,"firstAired":"2003-10-04T00:00:00Z","seriesType":"standard","cleanTitle":"bpsbattleprogrammershirase","titleSlug":"bps-battle-programmer-shirase","rootFolderPath":"\/tv\/","genres":["Animation","Anime","Comedy","Science Fiction"],"tags":[],"added":"2020-05-15T18:59:42.939379Z","ratings":{"votes":167,"value":8.5},"statistics":{"seasonCount":1,"episodeFileCount":14,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":842071548,"percentOfEpisodes":93.33333333333333},"id":239},"episodes":[{"seriesId":239,"episodeFileId":13344,"seasonNumber":1,"episodeNumber":1,"title":"Enter BPS! i-mode vs Supercomputer and introducing the King of America!","airDate":"2003-10-04","airDateUtc":"2003-10-03T15:00:00Z","overview":"BPS is recruited by an electronics company. The king of America hacks a shipping company.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":17892},{"seriesId":239,"episodeFileId":13344,"seasonNumber":1,"episodeNumber":2,"title":"Tropical BPS! School Swimsuit Seaside Shenanigans! Misao in Peril!","airDate":"2003-10-25","airDateUtc":"2003-10-24T15:00:00Z","overview":"The coast guard recruits BPS. Misao Amano is planning on going to the beach.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":17893},{"seriesId":239,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"TBA","airDate":"2003-11-07","airDateUtc":"2003-11-06T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21713},{"seriesId":239,"episodeFileId":18854,"seasonNumber":1,"episodeNumber":7,"title":"TBA","airDate":"2003-11-14","airDateUtc":"2003-11-13T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21714},{"seriesId":239,"episodeFileId":13344,"seasonNumber":1,"episodeNumber":3,"title":"BPS Under Threat! A Schoolgirl Genius?!","airDate":"2003-11-15","airDateUtc":"2003-11-14T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":17894},{"seriesId":239,"episodeFileId":18854,"seasonNumber":1,"episodeNumber":8,"title":"TBA","airDate":"2003-11-21","airDateUtc":"2003-11-20T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21715},{"seriesId":239,"episodeFileId":18854,"seasonNumber":1,"episodeNumber":9,"title":"TBA","airDate":"2003-11-28","airDateUtc":"2003-11-27T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21716},{"seriesId":239,"episodeFileId":18855,"seasonNumber":1,"episodeNumber":10,"title":"TBA","airDate":"2003-12-05","airDateUtc":"2003-12-04T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21717},{"seriesId":239,"episodeFileId":13345,"seasonNumber":1,"episodeNumber":4,"title":"BPS Married Off? Meaningless Marriage Interview with Sae-Sensei","airDate":"2003-12-06","airDateUtc":"2003-12-05T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":17895},{"seriesId":239,"episodeFileId":18855,"seasonNumber":1,"episodeNumber":11,"title":"TBA","airDate":"2003-12-13","airDateUtc":"2003-12-12T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21718},{"seriesId":239,"episodeFileId":18855,"seasonNumber":1,"episodeNumber":12,"title":"TBA","airDate":"2003-12-20","airDateUtc":"2003-12-19T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21719},{"seriesId":239,"episodeFileId":18856,"seasonNumber":1,"episodeNumber":13,"title":"TBA","airDate":"2003-12-27","airDateUtc":"2003-12-26T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21720},{"seriesId":239,"episodeFileId":13345,"seasonNumber":1,"episodeNumber":5,"title":"Infatuated BPS! Honey Trap and Day Trip Kidnapping","airDate":"2003-12-28","airDateUtc":"2003-12-27T15:00:00Z","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":17896},{"seriesId":239,"episodeFileId":18856,"seasonNumber":1,"episodeNumber":14,"title":"TBA","airDate":"2004-01-03","airDateUtc":"2004-01-02T15:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21721},{"seriesId":239,"episodeFileId":18856,"seasonNumber":1,"episodeNumber":15,"title":"TBA","airDate":"2004-01-03","airDateUtc":"2004-01-02T15:12:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21722}],"episodeFile":[{"seriesId":239,"seasonNumber":1,"relativePath":"Season 01\/S01E01E02E03.BPS Arrives! E-Mode vs. Super Computer, Guest Appearance by the King of America!-SDTV.mkv","path":"\/tv\/Battle Programmer Shirase\/Season 01\/S01E01E02E03.BPS Arrives! E-Mode vs. Super Computer, Guest Appearance by the King of America!-SDTV.mkv","size":171996048,"dateAdded":"2020-05-15T19:13:13.376179Z","releaseGroup":"Mode","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":685083,"videoCodec":"x264","videoFps":23.976,"resolution":"704x480","runTime":"26:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13344},{"seriesId":239,"seasonNumber":1,"relativePath":"Season 01\/S01E04E05E06.Burning BPS! Seaside School in Swimsuits is Sweet but Dangerous, Misao-chan's Crisis!-SDTV.mkv","path":"\/tv\/Battle Programmer Shirase\/Season 01\/S01E04E05E06.Burning BPS! Seaside School in Swimsuits is Sweet but Dangerous, Misao-chan's Crisis!-SDTV.mkv","size":182719494,"dateAdded":"2020-05-15T19:13:13.508985Z","releaseGroup":"chan","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":737748,"videoCodec":"x264","videoFps":23.976,"resolution":"704x480","runTime":"26:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13345},{"seriesId":239,"seasonNumber":1,"relativePath":"Season 01\/S01E07E08E09.BPS in Danger! The Brilliant Female Programmer is a Schoolkid!-SDTV.mkv","path":"\/tv\/Battle Programmer Shirase\/Season 01\/S01E07E08E09.BPS in Danger! The Brilliant Female Programmer is a Schoolkid!-SDTV.mkv","size":163804770,"dateAdded":"2021-08-22T12:10:36.865632Z","releaseGroup":"SDTV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":574726,"videoCodec":"x264","videoFps":23.976,"resolution":"704x480","runTime":"29:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18854},{"seriesId":239,"seasonNumber":1,"relativePath":"Season 01\/S01E10E11E12.BPS Retiring! The Counterpart at the 'All is Vanity' Marriage Interview is Sae-sensei!-SDTV.mkv","path":"\/tv\/Battle Programmer Shirase\/Season 01\/S01E10E11E12.BPS Retiring! The Counterpart at the 'All is Vanity' Marriage Interview is Sae-sensei!-SDTV.mkv","size":163073644,"dateAdded":"2021-08-22T12:10:36.926315Z","releaseGroup":"SDTV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":608562,"videoCodec":"x264","videoFps":23.976,"resolution":"704x480","runTime":"27:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18855},{"seriesId":239,"seasonNumber":1,"relativePath":"Season 01\/S01E13E14E15.Perplexed BPS! Female Spy's Sweet Trap - Good Day, Departure, Kidnapping, Imprisonment!-SDTV.mkv","path":"\/tv\/Battle Programmer Shirase\/Season 01\/S01E13E14E15.Perplexed BPS! Female Spy's Sweet Trap - Good Day, Departure, Kidnapping, Imprisonment!-SDTV.mkv","size":160477592,"dateAdded":"2021-08-22T12:10:36.990849Z","releaseGroup":"SDTV","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":593456,"videoCodec":"x264","videoFps":23.976,"resolution":"704x480","runTime":"27:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18856}],"queue":[]},"235":{"series":{"title":"The Day the Universe Changed","alternateTitles":[],"sortTitle":"day universe changed","status":"ended","ended":true,"overview":"The Day the Universe Changed (the 10-part series) is one of the best teaching tools available today for making students aware of the great ebb and flow of ideas that have gone into the development of Western thought. Host James Burke gives a stunning overview of this evolution of thought since the days of the Greeks in this ten-part series co-produced by BBC-TV and RKO Pictures.","network":"BBC","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/252\/banner.jpg?lastWrite=637319988193104770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79634-g3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/252\/poster.jpg?lastWrite=637319988210224490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79634-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/252\/fanart.jpg?lastWrite=637319988216144390","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79634-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":1985,"path":"\/tv\/The Day the Universe Changed","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":false,"useSceneNumbering":false,"runtime":60,"tvdbId":79634,"tvRageId":0,"tvMazeId":25366,"firstAired":"1985-03-19T00:00:00Z","seriesType":"standard","cleanTitle":"thedayuniversechanged","imdbId":"tt0199208","titleSlug":"the-day-the-universe-changed","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Documentary"],"tags":[],"added":"2020-08-02T21:00:17.948454Z","ratings":{"votes":202,"value":8.3},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":252},"episodes":[{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"The Way We Are: It Started with the Greeks","airDate":"1985-03-19","airDateUtc":"1985-03-19T00:00:00Z","overview":"Written and presented by James Burke, this 10-part series traces the development of Western thought through its major transformations since the days of ancient Greece. Program one is an overview of the series, showing how a culture\u2019s view of the world around it determines how it sees itself, and is reflected even in the smallest details of its customs and habits.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19398},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"In the Light of the Above: Medieval Conflict: Faith and Reason","airDate":"1985-03-26","airDateUtc":"1985-03-26T00:00:00Z","overview":"Relates that in the course of overrunning Moorish Spain, Christian Europe discovered libraries, universities, optics, mechanics, and natural philosophy. This rediscovery of classical knowledge led to the founding of universities and the replacement of Augustinian philosophies by Aristotelian theories.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19399},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"Point of View: Scientific Imagination in the Renaissance","airDate":"1985-04-02","airDateUtc":"1985-04-01T23:00:00Z","overview":"Shows that Western Europe\u2019s rediscovery of perspective through the study of Arab optics led to revolutions in art and architecture. The West\u2019s new-found ability to control things at a distance resulted in new methods of warfare and the confidence to make long voyages of exploration.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19400},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"A Matter of Fact: Printing Transforms Knowledge","airDate":"1985-04-09","airDateUtc":"1985-04-08T23:00:00Z","overview":"Observes that the invention of printing and the advent of cheap paper forever transformed the nature of knowledge from the local and traditional to the systematic and testable. Nationalism, public relations, and propaganda are among the results.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19401},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"Infinitely Reasonable: Science Revises the Heavens","airDate":"1985-04-16","airDateUtc":"1985-04-15T23:00:00Z","overview":"Notes that investigators such as Copernicus, Kepler, Galileo, and Newton evolved better explanations of natural phenomena than those of Aristotle. Highlights the theories that led to a new conception of how the universe works and of man\u2019s place in it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19402},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"Credit Where It's Due: The Factory and Marketplace Revolution","airDate":"1985-04-23","airDateUtc":"1985-04-22T23:00:00Z","overview":"Locates the origins of contemporary consumerism in the English industrial Revolution, powered by religious dissenters barred from all activities except trade. The invention of the steam engine, new forms of credit, surplus wealth, and opening markets laid the foundation for industrial society.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19403},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"What the Doctor Ordered: Impacts of New Medical Knowledge","airDate":"1985-04-30","airDateUtc":"1985-04-29T23:00:00Z","overview":"Traces modern society\u2019s recognition of the value of statistics to medical advances stemming from responses to the French Revolution and an English cholera epidemic. Identifies the origins of medicine as a science with the discovery of anesthesia, antiseptics, and bacteriology.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19404},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":8,"title":"Fit to Rule: Darwin's Revolution","airDate":"1985-05-07","airDateUtc":"1985-05-06T23:00:00Z","overview":"Tracks the expectation of change, fundamental to contemporary society, through the developing sciences of botany, geology, and biology to Darwin\u2019s theory of evolution. Darwin\u2019s theory, in turn, has been used as a justification for Nazism, communism, and cut-throat capitalism.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19405},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":9,"title":"Making Waves: The New Physics: Newton Revised","airDate":"1985-05-14","airDateUtc":"1985-05-13T23:00:00Z","overview":"Points out that studies of the properties of magnetism, electricity, and light have led scientists to the realization that Newtonian physics is inadequate to explain all that they observe. The public, meanwhile, has continued to concentrate on the technological by-products of science.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19406},{"seriesId":252,"episodeFileId":0,"seasonNumber":1,"episodeNumber":10,"title":"Worlds Without End: Changing Knowledge, Changing Reality","airDate":"1985-05-21","airDateUtc":"1985-05-20T23:00:00Z","overview":"Observes that over the centuries Western civilization has regularly shifted its conception of the nature of truth. The series closes with host James Burke's remarkably prescient assessment of the role in which modern computer networks are beginning to now play in shaping man's current conception of his reality as well as how they may well define the fundamental nature of all future human interaction. And while his message is ultimately a positive one, it is tempered with the warning that while the promise of the computer may indeed provide a framework for a future anarchism where human freedom is nourished and where every individual conception of reality is a valid one, it could conversely become of tool of totalitarian repression and conformity.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19407}],"episodeFile":[],"queue":[]},"236":{"series":{"title":"Doodlez","alternateTitles":[],"sortTitle":"doodlez","status":"ended","ended":true,"overview":"Dood, is a generally good-natured, if somewhat short-tempered doodle drawn by an omnipotent and unknowable Hand onto a blank page. As Hand draws more and more elements into existence, Dood is led by his overpowering curiosity into a misadventure that more than likely will involve him being put through a veritable blender of cartoon torture. When he comes out the other side, Dood may be broken, but his spirit never is.\r\n\r\nFunny and fast-paced, the overall style and attitude of the show is edgy and irreverent, always playing with cartoon conventions. Like any doodle, doesn't have a purpose beyond simple entertainment, it\u2019s completely free and unpredictable. It will take you anywhere, anytime, in an animated world of undefined potential where normal rules don't apply.","previousAiring":"2004-01-23T05:00:00Z","network":"Teletoon","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/231\/banner.jpg?lastWrite=637230683201075580","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/108761-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/231\/poster.jpg?lastWrite=637230683207275480","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/108761-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/231\/fanart.jpg?lastWrite=637230683197195650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/108761-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-09-12T04:00:00Z","episodeFileCount":11,"episodeCount":11,"totalEpisodeCount":11,"sizeOnDisk":227080406,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2004-01-23T05:00:00Z","episodeFileCount":26,"episodeCount":39,"totalEpisodeCount":39,"sizeOnDisk":541469824,"percentOfEpisodes":66.66666666666667}}],"year":2002,"path":"\/tv\/Doodlez (2002)\/","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":2,"tvdbId":108761,"tvRageId":0,"tvMazeId":28123,"firstAired":"2002-09-06T00:00:00Z","seriesType":"standard","cleanTitle":"doodlez","imdbId":"tt0489596","titleSlug":"doodlez","rootFolderPath":"\/tv\/","genres":["Animation","Children","Comedy"],"tags":[],"added":"2020-04-21T12:18:37.723513Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":37,"episodeCount":50,"totalEpisodeCount":50,"sizeOnDisk":768550230,"percentOfEpisodes":74.0},"id":231},"episodes":[{"seriesId":231,"episodeFileId":13174,"seasonNumber":1,"episodeNumber":3,"title":"Dood McLood","airDate":"2002-09-06","airDateUtc":"2002-09-06T04:00:00Z","overview":"Dood puts on the hat of a hero in this action packed episode of Doodlez. He is a brave hero with his trusty Moose by his side and a mischievous Hand around every corner. Every clich\u00e9 in the book will be in this adventure, but with Doodlez, as we\u2019ve learned, the Hero doesn\u2019t always win.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17712},{"seriesId":231,"episodeFileId":13175,"seasonNumber":1,"episodeNumber":4,"title":"The Littlest Hero","airDate":"2002-09-06","airDateUtc":"2002-09-06T04:02:00Z","overview":"In this episode, Dood dons the cape of \u201cSuper Dood\u201d and goes after the bad guys that have just robbed the bank. Once again, nothing is ever easy for Dood. See what happens next...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17713},{"seriesId":231,"episodeFileId":13176,"seasonNumber":1,"episodeNumber":5,"title":"Holidayz","airDate":"2002-09-06","airDateUtc":"2002-09-06T04:04:00Z","overview":"Dood will experience all of the Holidays in two minutes flat, starting with Halloween and moving right on through to Thanksgiving. But I\u2019m pretty sure that at the end of this ride he won\u2019t have much to be thankful for.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17714},{"seriesId":231,"episodeFileId":13177,"seasonNumber":1,"episodeNumber":6,"title":"Going for Gold","airDate":"2002-09-07","airDateUtc":"2002-09-07T04:00:00Z","overview":"Hand has the Olympic spirit in this episode. He creates Dood on a speed skating rink, a hockey rink, and a figure skating rink. As Dood goes from sport to sport winning gold medals, he has lots of experiences along the way. From the Zamboni to Dim, his partner in the figure skating event, nothing is ever dull or easy in Dood\u2019s world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17715},{"seriesId":231,"episodeFileId":13179,"seasonNumber":1,"episodeNumber":8,"title":"Dood.com","airDate":"2002-09-08","airDateUtc":"2002-09-08T04:00:00Z","overview":"We take a bit of a different approach on this episode and rather than drawing Dood on a piece of paper, he is created in a digital world. Using the circle and square tools associated with most illustration programs, Dood comes to life and Hand gets a little creative. Hand proceeds to stretch, squash, rotate, duplicate and cut Dood up, and then pieces him back together like a Mr. Potato Head. Then Hand starts to play with the background tools. He switches the background to Niagara Falls (which Dood happens to be right on top of), then into the CN Tower (Dood lands\u2026 you get the picture). But the Hand has pushed Dood too far; you can see the anger building in Dood as the background turns into a matrix-esque series of binary 1s and 0s. He has figured out the Matrix, or has he?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17717},{"seriesId":231,"episodeFileId":13181,"seasonNumber":1,"episodeNumber":10,"title":"Snooze","airDate":"2002-09-08","airDateUtc":"2002-09-08T04:02:00Z","overview":"Have you ever had one of those days when you should have stayed in bed? Follow Dood through on one of those days from the minute he first hits the snooze button. We begin with Dood comfy in his bed with the little alarm clock going off. Each time the snooze bar is hit, the little alarm clock gets louder and louder, until finally, Dood has had enough and blows it up\u2026\r\n\r\nOnce the stage goes black, Dood notices another pair of eyes in the room that seem to be growling at him. The light clicks on to reveal a cute little kitten. The cute little kitten sits on top of a huge stereo and decides to turn it up full blast , hitting Dood like a Sony commercial. Dood takes out his remote and poof! The cat and stereo are gone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17719},{"seriesId":231,"episodeFileId":13182,"seasonNumber":1,"episodeNumber":11,"title":"Airborne","airDate":"2002-09-08","airDateUtc":"2002-09-08T04:04:00Z","overview":"Dood has been given a spacecraft capable of light speed x1000. Making his way past a few Galaxies, Dood finally runs out of gas and lands on a \u201cdeserted\u201d planet. To make the best of the situation Dood claims this land as property of Canada by sticking a large flag into the soil. To make it interesting Hand enters and draws an \"alien\" version of Dood doing the same thing with his flag and the war for land begins.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17720},{"seriesId":231,"episodeFileId":13178,"seasonNumber":1,"episodeNumber":7,"title":"Lumber Jerk","airDate":"2002-09-09","airDateUtc":"2002-09-09T04:00:00Z","overview":"Dood makes a friend!!! In this episode Dood befriends a little beaver (Created by Hand). Once again, Dood\u2019s innocence and naivet\u00e9 gets the better of him. That cute little beaver is bad to the bone. But Dood has a little something up his sleeve as well. But will it be enough to outsmart the cunning wild beaver? Me thinks not.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17716},{"seriesId":231,"episodeFileId":13172,"seasonNumber":1,"episodeNumber":1,"title":"Arcade","airDate":"2002-09-11","airDateUtc":"2002-09-11T04:00:00Z","overview":"Dood joins the land of virtual reality as he puts on the helmet of a virtual game. From adventures underwater to the middle of the desert, Dood finds himself in a few virtual situations that challenge him every step of the way.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17710},{"seriesId":231,"episodeFileId":13180,"seasonNumber":1,"episodeNumber":9,"title":"Polar Problems","airDate":"2002-09-11","airDateUtc":"2002-09-11T04:02:00Z","overview":"Set in the cold mountains of Whistler, British Columbia, Dood is given the opportunity to try his luck at skiing. With a tilt of the page a bunny hill is instantly changed into a downhill run that even a \u201cgreat Canadian skier\u201d wouldn\u2019t want to tackle. From here things go from bad to worse. At the end of the hill there is an Evil Knievalesque jump. Fear is replaced with determination as Dood prepares himself for the jump. It looks like he\u2019s going to make it. Hand decides to make things a little more interesting by erasing Dood\u2019s skis and drawing anvils on his feet. Dood drops like a stone. At the bottom of his drop Dood is greeted by paper-thin ice, which he breaks through and pops back up looking like a gag ice cube with a fly in it. Hand enters and draws a polar bear that instantly falls in love with the \u201cDood-Sicle\u201d. The polar bear sits on top of the cube, which melts under his blubbery butt. Then starts the real excitement\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17718},{"seriesId":231,"episodeFileId":13173,"seasonNumber":1,"episodeNumber":2,"title":"Genesis X 2 (Pilot)","airDate":"2002-09-12","airDateUtc":"2002-09-12T04:00:00Z","overview":"In this pilot episode, we discover the relationship between Dood and the Hand (Adam and the Creator if you will). Hand enters and draws Dood. With the final dots of the eyes, Dood comes to life. Excited by his new life he celebrates with a little dance but soon discovers the \u201cplayful\u201d nature of his creator when he realizes he\u2019s miles from the ground. Dood plummets towards the earth, landing on a telephone line, which splits him in two. The two halves pop into two wholes and the Dr. Jekyll and Mr. Hyde adventure begins\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17711},{"seriesId":231,"episodeFileId":13151,"seasonNumber":2,"episodeNumber":17,"title":"Coin-Op","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"What do you do when you want to go on a coin-operated ride, but have no change? Watch Dood as he tries to earn some change to go on the \u2018beaver ride\u2019.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17737},{"seriesId":231,"episodeFileId":13152,"seasonNumber":2,"episodeNumber":18,"title":"Bounce","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"From beds to pogo sticks, Dood bounces into numerous adventures in this comedic short with a special appearance by Martini Moose\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17738},{"seriesId":231,"episodeFileId":13153,"seasonNumber":2,"episodeNumber":19,"title":"Castaway","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"Palm trees and coconuts are the background in this classic Doodlez adventure. Dood is stranded on a desert island. What adventures will he experience on his quest for solid ground? What new friends will he make on the way?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17739},{"seriesId":231,"episodeFileId":13169,"seasonNumber":2,"episodeNumber":36,"title":"Actra","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"Look out Hollywood, here comes Dood! In this episode, Dood stumbles onto a movie set and becomes the leading man who does his own stunts\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17756},{"seriesId":231,"episodeFileId":13170,"seasonNumber":2,"episodeNumber":37,"title":"Trapeze","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"In this episode, Dood finds himself at the circus, well, in the circus actually. From the high wire to the flying trapeze, the adventures never stop, all carefully orchestrated by Hand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17757},{"seriesId":231,"episodeFileId":13171,"seasonNumber":2,"episodeNumber":38,"title":"Tubbo","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"Binge eating and crash dieting take on a whole new meaning when Dood is involved. After Dood goes on a small eating binge, Dim (Olympic skater\/personal trainer) takes it upon himself to get Dood back into shape, whatever shape that may be\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17758},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":39,"title":"Dood on a Date","airDate":"2003-09-01","airDateUtc":"2003-09-01T04:00:00Z","overview":"Romance blooms in Niagara Falls when Cupid makes his mark on Dood and Doodette enters his heart. Will he be able to get Doodette to notice him? Will he be able to get past her father?","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17759},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"High Definition Dood","airDate":"2003-09-02","airDateUtc":"2003-09-02T04:00:00Z","overview":"Unfortunately, nothing is ever easy for Dood. In this fast passed episode, all Dood wants is to watch the TV that Hand has supplied him, but there are a few obstacles in his way.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17731},{"seriesId":231,"episodeFileId":13150,"seasonNumber":2,"episodeNumber":16,"title":"Masterpiece","airDate":"2003-09-02","airDateUtc":"2003-09-02T04:02:00Z","overview":"The Louvre has nothing on the masterpieces in this episode. Introducing the \u201cMoosa Lisa\u201d and a few new characters to give Dood the full museum experience.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17736},{"seriesId":231,"episodeFileId":13148,"seasonNumber":2,"episodeNumber":14,"title":"Dood Not Included","airDate":"2003-09-03","airDateUtc":"2003-09-03T04:00:00Z","overview":"Guy is back as Dood\u2019s rival in this battle of man and his machine.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17734},{"seriesId":231,"episodeFileId":13149,"seasonNumber":2,"episodeNumber":15,"title":"Dood on a Rope","airDate":"2003-09-03","airDateUtc":"2003-09-03T04:02:00Z","overview":"From a bus stop, to a shower stall, to a hockey stadium, Hand takes Dood on another wacky adventure where he ends up back where he started.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17735},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Inside","airDate":"2003-10-02","airDateUtc":"2003-10-02T04:00:00Z","overview":"Dood starts off with a lollipop, but ends up getting up close and extremely personal with a monster in this Doodlez episode.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17730},{"seriesId":231,"episodeFileId":13168,"seasonNumber":2,"episodeNumber":35,"title":"Just Deserts","airDate":"2003-10-02","airDateUtc":"2003-10-02T04:02:00Z","overview":"Dood is on vacation in Egypt and having an experience with the Sphinx, taking him on a trek through the desert and into a lost pyramid.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17755},{"seriesId":231,"episodeFileId":13147,"seasonNumber":2,"episodeNumber":13,"title":"Jalapeno","airDate":"2003-10-06","airDateUtc":"2003-10-06T04:00:00Z","overview":"All Dood wants is a hot dog with jalapeno peppers, but he just can\u2019t seem to get one. When he finally succeeds, he realizes he was probably better off without them.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17733},{"seriesId":231,"episodeFileId":13164,"seasonNumber":2,"episodeNumber":31,"title":"Heavy Metal","airDate":"2003-10-06","airDateUtc":"2003-10-06T04:02:00Z","overview":"Hand gives Dood a metal detector and you would not believe the \u2018treasures\u2019 he finds, not to mention the trouble he finds himself in.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17751},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Soundtrack","airDate":"2003-10-07","airDateUtc":"2003-10-07T04:00:00Z","overview":"Dood\u2019s life has become quite musical in this classic episode where he experiences a new opponent, the new age \u2018DJ\u2019.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17723},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"4 Seasons","airDate":"2003-10-07","airDateUtc":"2003-10-07T04:00:00Z","overview":"In this episode, we have a lesson in Global Warming. Dood experiences all four seasons very quickly as we watch what Hand is doing to move them along\u2026","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17725},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"Headache","airDate":"2003-10-07","airDateUtc":"2003-10-07T04:00:00Z","overview":"Dood treats himself to some ice cream on a hot summer day, but ends up with a terrible ice cream headache (aka brain freeze). Typical Dood antics take us through this fun Doodlez episode.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17728},{"seriesId":231,"episodeFileId":13156,"seasonNumber":2,"episodeNumber":23,"title":"Black Hat","airDate":"2003-10-07","airDateUtc":"2003-10-07T04:00:00Z","overview":"Magic is the theme when Hand gives Dood a magical top hat. Watch Dood try to figure out his new \u2018toy\u2019 and what he is willing to go through to keep it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17743},{"seriesId":231,"episodeFileId":13161,"seasonNumber":2,"episodeNumber":28,"title":"Fishin'","airDate":"2003-10-07","airDateUtc":"2003-10-07T04:00:00Z","overview":"Join Dood for a nice, relaxing fishing trip. Well, nice and relaxing may not be accurate when Hand gets involved.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17748},{"seriesId":231,"episodeFileId":13162,"seasonNumber":2,"episodeNumber":29,"title":"Java","airDate":"2003-10-08","airDateUtc":"2003-10-08T04:00:00Z","overview":"All Dood wants is a cup of coffee to start off his morning, but he can\u2019t even do that easily when Hand begins to alter shapes, and characters\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17749},{"seriesId":231,"episodeFileId":13167,"seasonNumber":2,"episodeNumber":34,"title":"Doors","airDate":"2003-10-08","airDateUtc":"2003-10-08T04:02:00Z","overview":"Doodette is back in this fun episode, where we have our own version of the circus fun house. See how Hand places Dood in situation after situation with doors being the common theme.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17754},{"seriesId":231,"episodeFileId":13165,"seasonNumber":2,"episodeNumber":32,"title":"Tabloid","airDate":"2003-10-09","airDateUtc":"2003-10-09T04:00:00Z","overview":"Dood finds himself in the role of a tabloid reporter in this Doodlez classic. From the ghost of Elvis to Loch Ness to deep in the BC interior, Dood goes after his stories, or do they go after him?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17752},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Captain Canada","airDate":"2003-12-02","airDateUtc":"2003-12-02T05:00:00Z","overview":"In this fun episode around the wonderful world of wrestling, watch Dood try to keep his new \u2018belt\u2019.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17729},{"seriesId":231,"episodeFileId":13159,"seasonNumber":2,"episodeNumber":26,"title":"High Hopes","airDate":"2003-12-05","airDateUtc":"2003-12-05T05:00:00Z","overview":"Dood is up to more outdoor adventures with some vertical challenges. With some new characters, this promises to be a great adventure.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17746},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Go Fly a Kite","airDate":"2003-12-08","airDateUtc":"2003-12-08T05:00:00Z","overview":"As we all know by now, nothing is ever easy in Dood\u2019s world, but flying a kite takes on a whole new meaning in this classic Doodlez short.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17721},{"seriesId":231,"episodeFileId":13146,"seasonNumber":2,"episodeNumber":12,"title":"Vegetate","airDate":"2003-12-08","airDateUtc":"2003-12-08T05:00:00Z","overview":"Join Dood as he tries to raise a sunflower with some help\/hindrance from Hand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17732},{"seriesId":231,"episodeFileId":13154,"seasonNumber":2,"episodeNumber":21,"title":"Air a Fare","airDate":"2003-12-08","airDateUtc":"2003-12-08T05:00:00Z","overview":"Dood has won a vacation! Where will he end up and what will Hand do to make it (un)pleasant?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17741},{"seriesId":231,"episodeFileId":13155,"seasonNumber":2,"episodeNumber":22,"title":"The Substitute","airDate":"2003-12-08","airDateUtc":"2003-12-08T05:00:00Z","overview":"Hand decides that Dood should become a substitute teacher, and we all know what they go through. From cooking classes to silent reading, nothing is ever easy for Dood.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17742},{"seriesId":231,"episodeFileId":13163,"seasonNumber":2,"episodeNumber":30,"title":"Grave Matters","airDate":"2003-12-08","airDateUtc":"2003-12-08T05:00:00Z","overview":"Doodette is back again and is trying to have a nice picnic with Dood. Hand, however, has some other things in \u2018hand\u2019 for them. This episode promises to be a \u201cHalloween\u201d Classic for years to come\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17750},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Maple Sap","airDate":"2003-12-09","airDateUtc":"2003-12-09T05:00:00Z","overview":"All Dood wants is some waffles with fresh Maple Syrup. Join us to see the lengths Dood goes through to have them.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17726},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Dooditis","airDate":"2003-12-09","airDateUtc":"2003-12-09T05:02:00Z","overview":"A stubborn cold has taken hold of Dood and Hand is doing nothing to make him feel better. From hot sweats to cold shakes, Dood has a new adversary making things worse.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17727},{"seriesId":231,"episodeFileId":13160,"seasonNumber":2,"episodeNumber":27,"title":"Big House Dood","airDate":"2003-12-09","airDateUtc":"2003-12-09T05:04:00Z","overview":"Dood just wants to skip rope, but ends up in the \u2018Big House\u2019. Typical Dood antics take us through this fun and fast paced short.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17747},{"seriesId":231,"episodeFileId":13157,"seasonNumber":2,"episodeNumber":24,"title":"Wer-Dood","airDate":"2003-12-10","airDateUtc":"2003-12-10T05:00:00Z","overview":"More new characters frame this episode of Doodlez where Dood takes on a new \u2018form\u2019.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17744},{"seriesId":231,"episodeFileId":13166,"seasonNumber":2,"episodeNumber":33,"title":"Doodsitting","airDate":"2003-12-12","airDateUtc":"2003-12-12T05:00:00Z","overview":"Hand takes Dood from the stork delivering him to his new \u201cMama\u201d to High School Graduation in this classic Doodlez short.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17753},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Dood of the Deep","airDate":"2004-01-23","airDateUtc":"2004-01-23T05:00:00Z","overview":"Ocean adventures take Dood to the world under the sea.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17722},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Zoo","airDate":"2004-01-23","airDateUtc":"2004-01-23T05:00:00Z","overview":"Hand decides to take Dood to the Zoo and takes him on the safari of a lifetime, with a few \u2018Dood\u2019 adventures along the way.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17724},{"seriesId":231,"episodeFileId":0,"seasonNumber":2,"episodeNumber":20,"title":"Makeover","airDate":"2004-01-23","airDateUtc":"2004-01-23T05:00:00Z","overview":"Another day, another \u2018hairstyle\u2019? Follow Dood through his day with bizarre Hand induced hairstyles and incidents.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":17740},{"seriesId":231,"episodeFileId":13158,"seasonNumber":2,"episodeNumber":25,"title":"Noisy Neighbour","airDate":"2004-01-23","airDateUtc":"2004-01-23T05:00:00Z","overview":"The lovable Polar Bear returns as Dood\u2019s \u2018neighbour\u2019 who is not at all happy with the noise going on below him. See what lengths Dood goes through to quiet his unwanted houseguest\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17745}],"episodeFile":[{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E12 - Vegetate.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E12 - Vegetate.mkv","size":20759914,"dateAdded":"2020-04-24T18:20:15.690709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1115441,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13146},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E13 - Jalapeno.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E13 - Jalapeno.mkv","size":21208026,"dateAdded":"2020-04-24T18:20:15.739867Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1118596,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13147},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E14 - Dood Not Included.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E14 - Dood Not Included.mkv","size":20873491,"dateAdded":"2020-04-24T18:20:15.790759Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1111144,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13148},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E15 - Dood on a Rope.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E15 - Dood on a Rope.mkv","size":20768528,"dateAdded":"2020-04-24T18:20:15.841249Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1113934,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13149},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E16 - Masterpiece.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E16 - Masterpiece.mkv","size":20779788,"dateAdded":"2020-04-24T18:20:15.888404Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112832,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13150},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E17 - Coin-Op.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E17 - Coin-Op.mkv","size":20695567,"dateAdded":"2020-04-24T18:20:15.935508Z","releaseGroup":"Op","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1109518,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13151},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E18 - Bounce.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E18 - Bounce.mkv","size":20597294,"dateAdded":"2020-04-24T18:20:15.984382Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112800,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13152},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E19 - Castaway.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E19 - Castaway.mkv","size":20928812,"dateAdded":"2020-04-24T18:20:16.032126Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1110841,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13153},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E21 - Air a Fare.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E21 - Air a Fare.mkv","size":20733137,"dateAdded":"2020-04-24T18:20:16.079062Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1111823,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13154},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E22 - The Substitute.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E22 - The Substitute.mkv","size":20977753,"dateAdded":"2020-04-24T18:20:16.126221Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1110271,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13155},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E23 - Black Hat.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E23 - Black Hat.mkv","size":20924570,"dateAdded":"2020-04-24T18:20:16.174807Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1110731,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13156},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E24 - Wer-Dood.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E24 - Wer-Dood.mkv","size":20878589,"dateAdded":"2020-04-24T18:20:16.224583Z","releaseGroup":"Dood","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1118834,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13157},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E25 - Noisy Neighbour.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E25 - Noisy Neighbour.mkv","size":20711364,"dateAdded":"2020-04-24T18:20:16.272788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1110517,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13158},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E26 - High Hopes.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E26 - High Hopes.mkv","size":20747583,"dateAdded":"2020-04-24T18:20:16.320036Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112739,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13159},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E27 - Big House Dood.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E27 - Big House Dood.mkv","size":21084706,"dateAdded":"2020-04-24T18:20:16.368233Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1113149,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13160},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E28 - Fishin'.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E28 - Fishin'.mkv","size":20743630,"dateAdded":"2020-04-24T18:20:16.418036Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112586,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13161},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E29 - Java.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E29 - Java.mkv","size":20775047,"dateAdded":"2020-04-24T18:20:16.466961Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1116191,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13162},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E30 - Grave Matters.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E30 - Grave Matters.mkv","size":20798110,"dateAdded":"2020-04-24T18:20:16.513949Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1115748,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13163},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E31 - Heavy Metal.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E31 - Heavy Metal.mkv","size":20781258,"dateAdded":"2020-04-24T18:20:16.565273Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1113042,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13164},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E32 - Tabloid.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E32 - Tabloid.mkv","size":20662958,"dateAdded":"2020-04-24T18:20:16.615709Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1107518,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13165},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E33 - Doodsitting.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E33 - Doodsitting.mkv","size":20804367,"dateAdded":"2020-04-24T18:20:16.665642Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1114288,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13166},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E34 - Doors.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E34 - Doors.mkv","size":20745458,"dateAdded":"2020-04-24T18:20:16.715172Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1114373,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13167},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E35 - Just Deserts.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E35 - Just Deserts.mkv","size":20844787,"dateAdded":"2020-04-24T18:20:16.767708Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1118701,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13168},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E36 - Actra.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E36 - Actra.mkv","size":21036258,"dateAdded":"2020-04-24T18:20:16.819609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1113755,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13169},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E37 - Trapeze.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E37 - Trapeze.mkv","size":20818267,"dateAdded":"2020-04-24T18:20:16.869552Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1117195,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13170},{"seriesId":231,"seasonNumber":2,"relativePath":"Season 2\/S02E38 - Tubbo.mkv","path":"\/tv\/Doodlez (2002)\/Season 2\/S02E38 - Tubbo.mkv","size":20790562,"dateAdded":"2020-04-24T18:20:16.918076Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1115286,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13171},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E01 - Arcade.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E01 - Arcade.mkv","size":20619475,"dateAdded":"2020-04-24T18:21:07.350248Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1114051,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13172},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E02 - Genesis X 2 (Pilot).mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E02 - Genesis X 2 (Pilot).mkv","size":20598245,"dateAdded":"2020-04-24T18:21:07.399492Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1107346,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13173},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E03 - Dood McLood.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E03 - Dood McLood.mkv","size":20677151,"dateAdded":"2020-04-24T18:21:07.449333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1110357,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13174},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E04 - The Littlest Hero.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E04 - The Littlest Hero.mkv","size":20819399,"dateAdded":"2020-04-24T18:21:07.495333Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1111662,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13175},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E05 - Holidayz.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E05 - Holidayz.mkv","size":20723669,"dateAdded":"2020-04-24T18:21:07.544605Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1111212,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13176},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E06 - Going for Gold.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E06 - Going for Gold.mkv","size":20384894,"dateAdded":"2020-04-24T18:21:07.590561Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112593,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13177},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E07 - Lumber Jerk.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E07 - Lumber Jerk.mkv","size":20747343,"dateAdded":"2020-04-24T18:21:07.640331Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1110845,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13178},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E08 - Dood.com.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E08 - Dood.com.mkv","size":20149999,"dateAdded":"2020-04-24T18:21:07.686585Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1115117,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13179},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E09 - Polar Problems.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E09 - Polar Problems.mkv","size":20743682,"dateAdded":"2020-04-24T18:21:07.734681Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112529,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13180},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E10 - Snooze.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E10 - Snooze.mkv","size":20876202,"dateAdded":"2020-04-24T18:21:07.781771Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1115072,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13181},{"seriesId":231,"seasonNumber":1,"relativePath":"Season 1\/S01E11 - Airborne.mkv","path":"\/tv\/Doodlez (2002)\/Season 1\/S01E11 - Airborne.mkv","size":20740347,"dateAdded":"2020-04-24T18:21:07.831407Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160000,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1112355,"videoCodec":"x264","videoFps":30.0,"resolution":"640x480","runTime":"2:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13182}],"queue":[]},"237":{"series":{"title":"Solar Opposites","alternateTitles":[],"sortTitle":"solar opposites","status":"continuing","ended":false,"overview":"A family of aliens move to middle America, where they debate whether life is better there or on their home planet.","previousAiring":"2021-03-26T04:00:00Z","network":"Hulu","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/236\/banner.jpg?lastWrite=637254735285650160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/375892\/banners\/5ec2dc68c67ab.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/236\/poster.jpg?lastWrite=637520962184563050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/375892\/posters\/603b6a37d9223.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/236\/fanart.jpg?lastWrite=637531367172341700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/375892\/backgrounds\/5ee1f02bb9a20.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-05-08T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":4470086006,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-03-26T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":4621690623,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/Solar Opposites","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":375892,"tvRageId":0,"tvMazeId":38432,"firstAired":"2020-05-08T00:00:00Z","seriesType":"standard","cleanTitle":"solaropposites","imdbId":"tt8910922","titleSlug":"solar-opposites","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2020-05-15T13:36:05.597494Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":3,"episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":20,"sizeOnDisk":9091776629,"percentOfEpisodes":100.0},"id":236},"episodes":[{"seriesId":236,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"TBA","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21488},{"seriesId":236,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Making of Solar Opposites","airDate":"2020-04-01","airDateUtc":"2020-04-01T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21272},{"seriesId":236,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Meet The Cast Of Solar Opposites","airDate":"2020-04-01","airDateUtc":"2020-04-01T04:23:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21273},{"seriesId":236,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Solar Opposites Comic-Con Home Panel","airDate":"2020-04-01","airDateUtc":"2020-04-01T04:46:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21274},{"seriesId":236,"episodeFileId":13318,"seasonNumber":1,"episodeNumber":1,"title":"The Matter Transfer Array","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"Uh oh! Korvo and Terry make a Funbucket real while the replicants deal with a school bully.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17860},{"seriesId":236,"episodeFileId":13315,"seasonNumber":1,"episodeNumber":2,"title":"The Unstable Grey Hole","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"Yikes! Korvo and Terry use alien technology to make their neighbors like them. Jesse tries to show Yumyulack that humans are basically good.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17861},{"seriesId":236,"episodeFileId":13319,"seasonNumber":1,"episodeNumber":3,"title":"The Quantum Ring","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"TaDAH! Korvo becomes a magician!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17862},{"seriesId":236,"episodeFileId":13317,"seasonNumber":1,"episodeNumber":4,"title":"The Booster Manifold","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"Egad! Korvo and Terry try to manage their stress. The replicants learn about their growing bodies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17863},{"seriesId":236,"episodeFileId":13314,"seasonNumber":1,"episodeNumber":5,"title":"The Lavatic Reactor","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"YAKKITY YACK! TERRY AND KORVO ARE GOING TO SCHOOL! Jesse and Yumyulack *also* go to school.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17864},{"seriesId":236,"episodeFileId":13316,"seasonNumber":1,"episodeNumber":6,"title":"The P.A.T.R.I.C.I.A. Device","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"G\u2019day! This episode is all about Yumyulack and koalas!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17865},{"seriesId":236,"episodeFileId":13313,"seasonNumber":1,"episodeNumber":7,"title":"Terry and Korvo Steal a Bear","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"Whoops! Terry, Korvo, Yumyulack and Jesse work together to steal a bear from the zoo\u2026 with hilarious consequences.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17866},{"seriesId":236,"episodeFileId":13312,"seasonNumber":1,"episodeNumber":8,"title":"Retrace-Your-Step-Alizer","airDate":"2020-05-08","airDateUtc":"2020-05-08T04:00:00Z","overview":"Finally! It\u2019s season finale time, baby!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17867},{"seriesId":236,"episodeFileId":17897,"seasonNumber":2,"episodeNumber":1,"title":"The Sacred Non-Repeating Number","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Blimey! The Solar Opposites have repaired their ship and are heading to space, unless something goes hilariously wrong\u2026","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20390},{"seriesId":236,"episodeFileId":17898,"seasonNumber":2,"episodeNumber":2,"title":"The Earth Eraser","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Heyo! Terry\u2019s obsession with dinner parties gets the whole team in a mess-o-trouble.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20391},{"seriesId":236,"episodeFileId":17899,"seasonNumber":2,"episodeNumber":3,"title":"The Lake House Device","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Far out! Korvo and Terry manipulate each other with time travel while Yumyulack grows a fat hog.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20392},{"seriesId":236,"episodeFileId":17900,"seasonNumber":2,"episodeNumber":4,"title":"The Emergency Urbanizer","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Woohoo! School\u2019s out, so the Solars make a splash at summer camp!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20393},{"seriesId":236,"episodeFileId":17901,"seasonNumber":2,"episodeNumber":5,"title":"The Rad Awesome Terrific Ray","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Oh no! The Red Goobler\u2019s back and this time he\u2019s jacked! This one\u2019s too scary for me.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20394},{"seriesId":236,"episodeFileId":17902,"seasonNumber":2,"episodeNumber":6,"title":"The Apple Pencil Pro","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Dinner Time! Korvo wins top prize at the annual neighborhood rib festival.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20395},{"seriesId":236,"episodeFileId":17903,"seasonNumber":2,"episodeNumber":7,"title":"The Unlikely Demise of Terry's Favorite Shot Glass","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Oops! The wild story that explains why Terry had to order a new shot glass.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20396},{"seriesId":236,"episodeFileId":17904,"seasonNumber":2,"episodeNumber":8,"title":"The Solar Opposites Almost Get an Xbox","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"Finally! It\u2019s season finale time again! The Solars learn about death!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20397}],"episodeFile":[{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Retrace-Your-Step-Alizer-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E08.Retrace-Your-Step-Alizer-WEBDL-1080p.mkv","size":579038660,"dateAdded":"2020-05-15T13:40:51.741654Z","sceneName":"Solar.Opposites.S01E08.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2958246,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13312},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Terry and Korvo Steal a Bear-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E07.Terry and Korvo Steal a Bear-WEBDL-1080p.mkv","size":616193011,"dateAdded":"2020-05-15T13:41:01.641519Z","sceneName":"Solar.Opposites.S01E07.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3381712,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13313},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Lavatic Reactor-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E05.The Lavatic Reactor-WEBDL-1080p.mkv","size":460306005,"dateAdded":"2020-05-15T13:41:08.529636Z","sceneName":"Solar.Opposites.S01E05.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2564654,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13314},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Unstable Grey Hole-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E02.The Unstable Grey Hole-WEBDL-1080p.mkv","size":524783178,"dateAdded":"2020-05-15T13:41:13.800139Z","sceneName":"Solar.Opposites.S01E02.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2792383,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13315},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The P.A.T.R.I.C.I.A. Device-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E06.The P.A.T.R.I.C.I.A. Device-WEBDL-1080p.mkv","size":539078217,"dateAdded":"2020-05-15T13:42:51.651076Z","sceneName":"Solar.Opposites.S01E06.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2972410,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13316},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Booster Manifold-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E04.The Booster Manifold-WEBDL-1080p.mkv","size":645756549,"dateAdded":"2020-05-15T13:42:56.012796Z","sceneName":"Solar.Opposites.S01E04.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3373231,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13317},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Matter Transfer Array-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E01.The Matter Transfer Array-WEBDL-1080p.mkv","size":533899994,"dateAdded":"2020-05-15T13:43:00.348972Z","sceneName":"Solar.Opposites.S01E01.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2992250,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13318},{"seriesId":236,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Quantum Ring-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 01\/S01E03.The Quantum Ring-WEBDL-1080p.mkv","size":571030392,"dateAdded":"2020-05-15T13:43:04.7805Z","sceneName":"Solar.Opposites.S01E03.1080p.WEB.H264-XLF[rarbg]","releaseGroup":"XLF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3312687,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:19","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13319},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Sacred Non-repeating Number-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E01.The Sacred Non-repeating Number-WEBDL-1080p.mkv","size":554495979,"dateAdded":"2021-03-26T05:44:19.95277Z","sceneName":"Solar.Opposites.S02E01.1080p.WEB.H264-GLHF","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3054237,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"21:53","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17897},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Earth Eraser-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E02.The Earth Eraser-WEBDL-1080p.mkv","size":547309099,"dateAdded":"2021-03-26T05:46:06.489837Z","sceneName":"Solar.Opposites.S02E02.1080p.WEB.H264-GGWP","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3011333,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"21:53","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17898},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Lake House Device-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E03.The Lake House Device-WEBDL-1080p.mkv","size":539955752,"dateAdded":"2021-03-26T05:47:50.820349Z","sceneName":"Solar.Opposites.S02E03.1080p.WEB.H264-GGEZ","releaseGroup":"GGEZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2969872,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"21:52","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17899},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Emergency Urbanizer-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E04.The Emergency Urbanizer-WEBDL-1080p.mkv","size":641113172,"dateAdded":"2021-03-26T05:49:36.053209Z","sceneName":"Solar.Opposites.S02E04.1080p.WEB.H264-GGWP","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3437946,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"22:40","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17900},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Rad Awesome Terrific Ray-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E05.The Rad Awesome Terrific Ray-WEBDL-1080p.mkv","size":518705663,"dateAdded":"2021-03-26T05:51:21.770693Z","sceneName":"Solar.Opposites.S02E05.1080p.WEB.H264-GGWP","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2888380,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"21:33","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17901},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Apple Pencil Pro-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E06.The Apple Pencil Pro-WEBDL-1080p.mkv","size":543033076,"dateAdded":"2021-03-26T05:53:05.136676Z","sceneName":"Solar.Opposites.S02E06.1080p.WEB.H264-GGWP","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2825371,"videoCodec":"h264","videoFps":0.0,"resolution":"1920x1080","runTime":"23:01","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17902},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Unlikely Demise of Terry's Favorite Shot Glass-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E07.The Unlikely Demise of Terry's Favorite Shot Glass-WEBDL-1080p.mkv","size":690701520,"dateAdded":"2021-03-26T05:54:48.751035Z","sceneName":"Solar.Opposites.S02E07.1080p.WEB.H264-GGWP","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3241255,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:48","scanType":"Progressive","subtitles":"Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17903},{"seriesId":236,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Solar Opposites Almost Get an Xbox-WEBDL-1080p.mkv","path":"\/tv\/Solar Opposites\/Season 02\/S02E08.The Solar Opposites Almost Get an Xbox-WEBDL-1080p.mkv","size":586376362,"dateAdded":"2021-03-26T05:56:33.886597Z","sceneName":"Solar.Opposites.S02E08.1080p.WEB.H264-GLHF","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3089913,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17904}],"queue":[]},"239":{"series":{"title":"Clone High","alternateTitles":[],"sortTitle":"clone high","status":"ended","ended":true,"overview":"A secret government plan to dig up historical figures and clone them has worked. It is 16 years later, and the clones are now in high school. The five main characters are Abe Lincoln, an all around nice but naive guy who lusts after the school sexpot Cleopatra, who is dating the macho JFK. Also, Abe's two best friends are Joan of Arc, an angst ridden goth girl who is in love with him, and Gandhi, a non-stop party animal. Clone High bravely tackles challenging teen issues, such as sleep deprivation, catching ADD from toilet seats, the evils of litter, and having the guy you like not like you back the same way you like him. Will Abe get together with Cleo, or be thwarted by the handsome JFK? Will Joan finally get Abe to notice her? Who's to say?","previousAiring":"2003-04-13T04:00:00Z","network":"Teletoon","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/255\/banner.jpg?lastWrite=637339058532532340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78560-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/255\/poster.jpg?lastWrite=637339058533412330","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78560-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/255\/fanart.jpg?lastWrite=637339058539452230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78560-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":5,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-04-13T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":4612692032,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Clone High","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":78560,"tvRageId":3089,"tvMazeId":1643,"firstAired":"2002-11-02T00:00:00Z","seriesType":"standard","cleanTitle":"clonehigh","imdbId":"tt0305011","titleSlug":"clone-high","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2020-08-24T22:44:12.193742Z","ratings":{"votes":391,"value":8.5},"statistics":{"seasonCount":1,"episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":18,"sizeOnDisk":4612692032,"percentOfEpisodes":100.0},"id":255},"episodes":[{"seriesId":255,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Christopher Miller Performing as \"Mr. B\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19494},{"seriesId":255,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Phil Lord Performing as \"Principal Scudworth\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19495},{"seriesId":255,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Bill Lawrence, the Executive Producer, in a Hot Tub","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19496},{"seriesId":255,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Tom Martin Describing the Writing Process","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19497},{"seriesId":255,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Live-Action Cat Depicted in \"Raisin the Stakes: A Rock Opera in 3 Acts\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19498},{"seriesId":255,"episodeFileId":15341,"seasonNumber":1,"episodeNumber":1,"title":"Escape to Beer Mountain: A Rope of Sand","airDate":"2002-11-02","airDateUtc":"2002-11-02T05:00:00Z","overview":"In desperation to get with the beautiful and popular Cleopatra, Abe Lincoln is hoping to make a move on her at JFK's party. JFK, however, also has the hots for her and will only let Abe come on the condition that he brings the beer. Meanwhile, Joan of Arc, who is trying to win Abe's heart, starts up a Teen Crisis Hotline in an attempt to impress him with her commitment to community service; their mutual friend, Gandhi, who accidentally agrees to help with the hotline, forwards the calls to his cell phone so he can go to the party. All the while, Principal Scudworth and Mr. Butlertron attempt to crash the party so as to better understand the students.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":19499},{"seriesId":255,"episodeFileId":15342,"seasonNumber":1,"episodeNumber":2,"title":"Episode Two: Election Blu-Galoo","airDate":"2002-11-03","airDateUtc":"2002-11-03T05:00:00Z","overview":"Cleopatra discovers she cannot continue to run for Student Body President because of term limits, so she convinces JFK to run on her behalf, and when Abe sees that Cleo appreciates leaders, he decides to run as well. But students of Clone High do not care about real issues, and many are infatuated with JFK; Abe employs a corporate sponsor, \"X-Stream Blu,\" to jazz up his campaign. The only problem is that Gandhi becomes horribly addicted to this mysterious food product.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":19500},{"seriesId":255,"episodeFileId":15343,"seasonNumber":1,"episodeNumber":3,"title":"A.D.D.: The Last 'D' is for Disorder","airDate":"2002-11-10","airDateUtc":"2002-11-10T05:00:00Z","overview":"When Gandhi is diagnosed with Attention Deficit Disorder (A.D.D.), the students of Clone High begin to ostracize him. Abe must decide whether to please Cleo by doing the same, or to stand up for his \"best dude 4 ever\" and lose any chance of being with Cleo. Meanwhile, Joan struggles with living up to the legacy of her 15th century clone mother, and begins hearing strange religious voices in her head. Also, Principal Scudworth starts wearing Mr. Butlertron's sweater vest, in the belief that it gives him the power to relate to the students of Clone High.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":19501},{"seriesId":255,"episodeFileId":15344,"seasonNumber":1,"episodeNumber":4,"title":"Film Fest: Tears of a Clone","airDate":"2002-11-17","airDateUtc":"2002-11-17T05:00:00Z","overview":"When Abe decides to organize a Clone High Student Film Festival, he spends much time working on a movie about a misunderstood football-playing giraffe; Cleopatra stars in an autobiographical epic about how difficult it is to be as perfect and glamorous as her; Joan directs an avant-garde film which expresses her love for Abe through psychoanalytic dream imagery; and Gandhi and George Washington Carver work together to make a hilarious mixed-race buddy cop action comedy called Black and Tan. Meanwhile, JFK plans a film but never manages to leave the casting couch with his various wouldbe female co-stars, and Principal Scudworth starts to panic when his bosses on the Secret Board of Shadowy Figures invite themselves to his house for dinner, but thankfully for him, Mr. Butlertron is there to save the day.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":19502},{"seriesId":255,"episodeFileId":15345,"seasonNumber":1,"episodeNumber":5,"title":"Homecoming: A Shot in D'Arc","airDate":"2002-11-24","airDateUtc":"2002-11-24T05:00:00Z","overview":"Since the CHHS basketball team refuses to allow girls or animals to play, the athletic Joan of Arc decides to cleverly disguise herself as \"John D'Arc\", becoming the star player. Cleopatra then falls for D'Arc, making team-captain Abe \"Weakest\"-Lincoln jealous. But Cleo's not the only one falling for John, as fellow athlete JFK finds himself having confusingly sexual feelings about the whole affair. Meanwhile, Gandhi and Genghis Khan kidnap the mascot of Clone High's rival school, Genetically Engineered Superhuman High.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":19503},{"seriesId":255,"episodeFileId":15346,"seasonNumber":1,"episodeNumber":6,"title":"Sleep of Faith: La Rue D'Awakening","airDate":"2002-12-01","airDateUtc":"2002-12-01T05:00:00Z","overview":"The PXJTs are right around the corner, but Abe Lincoln is losing sleep running errands for his beloved Cleopatra. When Joan keeps trying to warn Abe about his sleep deprivation, a secret of hers is uncovered. Also, Gandhi, overwhelmed by the pressure of studying, decides not take the test and become a trucker instead. Mr. Butlertron and an old foe battle it out for the last time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":19504},{"seriesId":255,"episodeFileId":15347,"seasonNumber":1,"episodeNumber":7,"title":"Plane Crazy: Gate Expectations","airDate":"2002-12-08","airDateUtc":"2002-12-08T05:00:00Z","overview":"Abe and Cleopatra's new relationship is threatened when she is picked to be on a Canadian Spring Break Dance show, hosted by Ashley Angel from O-Town. Meanwhile, Gandhi becomes an international rap sensation with the help of JFK as his manager. Also, Principal Scudworth is constantly being tricked by a pesky skunk.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":19505},{"seriesId":255,"episodeFileId":15348,"seasonNumber":1,"episodeNumber":8,"title":"A Room of One's Clone: The Pie of the Storm","airDate":"2002-12-15","airDateUtc":"2002-12-15T05:00:00Z","overview":"Storm's-a-brewin' when Joan of Arc's house burns down and her family has no choice but to move in with Cleopatra's, where conflict ensues; Abe attends a Conflict Mediation Seminar to learn how to more effectively resolve disputes between the two. Gandhi and JFK find themselves in escalating arguments. Meanwhile, Mr. Butlertron becomes jealous when Principal Scudworth forms a relationship with a robotic toy dog.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":19506},{"seriesId":255,"episodeFileId":15349,"seasonNumber":1,"episodeNumber":9,"title":"Raisin the Stakes: A Rock Opera in Three Acts","airDate":"2003-01-12","airDateUtc":"2003-01-12T05:00:00Z","overview":"After an anti-drugs assembly at the school, a rumor goes around that one can get high smoking raisins, leading the clones to embark on a musical, mystical journey of intoxication and irresponsibly long hair. Sober Joan of Arc is trying to keep Abe from turning into a drugged-out hippie, while Principal Scudworth and the PTA build a giant wall in an attempt to fence the students in. Also, Gandhi goes on a raisined-out subconscious mindtrip where he encounters a hummingbird-unicorn-donkey creature, a two-headed Olsen Twins monster, a talking Italian pencil, and a stereotypically Australian dragon, on his quest to rescue a princess who he believes will have sex with him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":19507},{"seriesId":255,"episodeFileId":15350,"seasonNumber":1,"episodeNumber":10,"title":"Litter Kills: Litterally","airDate":"2003-01-19","airDateUtc":"2003-01-19T05:00:00Z","overview":"JFK's long time best friend, Ponce de Le\u00f3n, litterally dies, causing JFK to sink into a spiral of depression. This causes tension between Abe and Cleopatra, who dutifully attempts to comfort JFK, her former boyfriend, during his grief. Meanwhile, Gandhi is mistakenly sent to death row where he has trouble getting high fives, but makes new friends in the showers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":19508},{"seriesId":255,"episodeFileId":15351,"seasonNumber":1,"episodeNumber":11,"title":"Makeover, Makeover, Makeover: The Makeover Episode","airDate":"2003-02-03","airDateUtc":"2003-02-03T05:00:00Z","overview":"With prom not too far away, Abe wants to ask his girlfriend, Cleopatra, but cannot stop thinking about Joan of Arc's prom date situation. Meanwhile, Gandhi goes on a desperate search for a date. So, Abe and Cleo each have a go at making over Joan for prom, JFK gives Gandhi a makeover, and Mr. B gives Scudworth a makeover to help him execute a sinister, evil plan to \"win\" the prom king vote.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":19509},{"seriesId":255,"episodeFileId":15352,"seasonNumber":1,"episodeNumber":12,"title":"Changes: The Big Prom: The Sex Romp: The Season Finale","airDate":"2003-02-10","airDateUtc":"2003-02-10T05:00:00Z","overview":"As all the clones are preparing for the winter prom, Abe Lincoln decides whether to ask Cleopatra or Joan of Arc; Gandhi concocts a brilliant plan to get dates for all the school geeks; and Principal Scudworth attempts to execute his sinister, evil plan, while the Secret Board of Shadowy Figures prepares to abduct the clones on prom night to advance their own evil plan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":19510},{"seriesId":255,"episodeFileId":15353,"seasonNumber":1,"episodeNumber":13,"title":"Snowflake Day: A Very Special Holiday Episode","airDate":"2003-04-13","airDateUtc":"2003-04-13T04:00:00Z","overview":"It's the politically correct Snowflake Day season, and everyone is in the holiday spirit, except for Joan of Arc, who is against the commercialism of the made-up holiday. But a homeless urchin who may be an angel or the pop sensation Mandy Moore teaches Joan an important lesson. Meanwhile, Abe and Gandhi attempt to invent and market an interesting device, so that Abe will have money to buy Cleopatra an expensive Snowflake Day gift.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":19511}],"episodeFile":[{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Escape to Beer Mountain - A Rope of Sand-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E01.Escape to Beer Mountain - A Rope of Sand-WEBDL-480p.mkv","size":358689591,"dateAdded":"2020-08-25T00:26:57.719904Z","sceneName":"Clone.High.S01E01.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15341},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Episode Two - Election Blu-Galoo-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E02.Episode Two - Election Blu-Galoo-WEBDL-480p.mkv","size":357150273,"dateAdded":"2020-08-25T00:27:18.533159Z","sceneName":"Clone.High.S01E02.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15342},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E03.A.D.D. - The Last 'D' is for Disorder-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E03.A.D.D. - The Last 'D' is for Disorder-WEBDL-480p.mkv","size":358785969,"dateAdded":"2020-08-25T00:27:25.472795Z","sceneName":"Clone.High.S01E03.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15343},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Film Fest - Tears of a Clone-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E04.Film Fest - Tears of a Clone-WEBDL-480p.mkv","size":358936222,"dateAdded":"2020-08-25T00:27:31.905198Z","sceneName":"Clone.High.S01E04.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15344},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Sleep of Faith - La Rue D'Awakening-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E05.Sleep of Faith - La Rue D'Awakening-WEBDL-480p.mkv","size":351735531,"dateAdded":"2020-08-25T00:27:38.083106Z","sceneName":"Clone.High.S01E05.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15345},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Homecoming - A Shot in D'Arc-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E06.Homecoming - A Shot in D'Arc-WEBDL-480p.mkv","size":356746586,"dateAdded":"2020-08-25T00:27:45.759159Z","sceneName":"Clone.High.S01E06.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15346},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Plane Crazy - Gate Expectations-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E07.Plane Crazy - Gate Expectations-WEBDL-480p.mkv","size":358001352,"dateAdded":"2020-08-25T00:27:52.547608Z","sceneName":"Clone.High.S01E07.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15347},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E08.A Room of One's Clone - The Pie of the Storm-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E08.A Room of One's Clone - The Pie of the Storm-WEBDL-480p.mkv","size":355934074,"dateAdded":"2020-08-25T00:27:58.495371Z","sceneName":"Clone.High.S01E08.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15348},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Raisin the Stakes - A Rock Opera in Three Acts-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E09.Raisin the Stakes - A Rock Opera in Three Acts-WEBDL-480p.mkv","size":351628792,"dateAdded":"2020-08-25T00:28:05.335438Z","sceneName":"Clone.High.S01E09.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15349},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Litter Kills - Litterally-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E10.Litter Kills - Litterally-WEBDL-480p.mkv","size":350142216,"dateAdded":"2020-08-25T00:28:11.811873Z","sceneName":"Clone.High.S01E10.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15350},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Snowflake Day - A Very Special Holiday Episode-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E11.Snowflake Day - A Very Special Holiday Episode-WEBDL-480p.mkv","size":352580829,"dateAdded":"2020-08-25T00:28:17.183235Z","sceneName":"Clone.High.S01E11.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15351},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Makeover, Makeover, Makeover - The Makeover Episode-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E12.Makeover, Makeover, Makeover - The Makeover Episode-WEBDL-480p.mkv","size":356716455,"dateAdded":"2020-08-25T00:28:24.447192Z","sceneName":"Clone.High.S01E12.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15352},{"seriesId":255,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Changes - The Big Prom - The Sex Romp - The Season Finale-WEBDL-480p.mkv","path":"\/tv\/Clone High\/Season 01\/S01E13.Changes - The Big Prom - The Sex Romp - The Season Finale-WEBDL-480p.mkv","size":345644142,"dateAdded":"2020-08-25T00:28:30.52781Z","sceneName":"Clone.High.S01E13.480p.AMZN.WEB-DL.DDP2.0.H.264-TEPES","releaseGroup":"TEPES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":8,"name":"WEBDL-480p","source":"web","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":224000,"audioChannels":2.0,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15353}],"queue":[]},"241":{"series":{"title":"When They Cry - Higurashi","alternateTitles":[{"title":"Higurashi no Naku Koro ni","sceneSeasonNumber":1},{"title":"Higurashi no Naku Koro ni Kai","sceneSeasonNumber":2},{"title":"Higurashi no Naku Koro ni Rei","sceneSeasonNumber":3},{"title":"Higurashi no Naku Koro ni Kira","sceneSeasonNumber":4}],"sortTitle":"when they cry higurashi","status":"ended","ended":true,"overview":"Life couldn't be better for Keiichi Maebara. He\u2019s just moved to the rural village of Hinamizawa and befriended four classmates \u2014 his life in the little village has been peaceful. One day, when he happens upon a story about a grisly local murder, his contentment turns to uneasiness as he finds himself drawn into a disturbing web of mystery that involves his newfound friends and threatens his very life.","previousAiring":"2009-08-20T15:00:00Z","network":"Kansai TV","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/244\/banner.jpg?lastWrite=637271817372276550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79682-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/244\/poster.jpg?lastWrite=637271817375396500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79682-6.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/244\/fanart.jpg?lastWrite=637271817389516260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79682-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":6,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2006-09-26T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11435842864,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2007-12-17T15:00:00Z","episodeFileCount":24,"episodeCount":24,"totalEpisodeCount":24,"sizeOnDisk":13194859522,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-08-20T15:00:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":5,"sizeOnDisk":3429692441,"percentOfEpisodes":100.0}}],"year":2006,"path":"\/tv\/When They Cry - Higurashi","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":79682,"tvRageId":12519,"tvMazeId":5370,"firstAired":"2006-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"whentheycryhigurashi","imdbId":"tt0845738","titleSlug":"when-they-cry---higurashi","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Horror","Suspense"],"tags":[],"added":"2020-06-08T02:55:35.417516Z","ratings":{"votes":5875,"value":8.3},"statistics":{"seasonCount":3,"episodeFileCount":55,"episodeCount":55,"totalEpisodeCount":61,"sizeOnDisk":28060394827,"percentOfEpisodes":100.0},"id":244},"episodes":[{"seriesId":244,"episodeFileId":15128,"seasonNumber":1,"episodeNumber":1,"title":"The Spirited Away by the Demon Chapter - Part 1 - The Beginning","airDate":"2006-04-05","airDateUtc":"2006-04-04T15:00:00Z","overview":"Keiichi Maebara, a student who recently moved into the village of Hinamizawa, is invited by his new friends at school to join their club. But while searching for treasure at a garbage dump, he discovers the village is not as peaceful as it seems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18318},{"seriesId":244,"episodeFileId":15129,"seasonNumber":1,"episodeNumber":2,"title":"The Spirited Away by the Demon Chapter - Part 2 - The Secret","airDate":"2006-04-12","airDateUtc":"2006-04-11T15:00:00Z","overview":"The Cotton Drifting Festival is coming up and everyone goes to have a day of fun. During the festival, Keiichi gets separated from everyone and he meets Tomitake the photographer again, who later tells him more about the shocking past of Hinamizawa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18319},{"seriesId":244,"episodeFileId":15130,"seasonNumber":1,"episodeNumber":3,"title":"The Spirited Away by the Demon Chapter - Part 3 - Suspicion","airDate":"2006-04-19","airDateUtc":"2006-04-18T15:00:00Z","overview":"Delving further into the mysteries surrounding the village, Keiichi's paranoia grows after he starts to suspect that someone might be after his life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18320},{"seriesId":244,"episodeFileId":15131,"seasonNumber":1,"episodeNumber":4,"title":"The Spirited Away by the Demon Chapter - Part 4 - Disturbance","airDate":"2006-04-26","airDateUtc":"2006-04-25T15:00:00Z","overview":"Unnerved by Rena and Mion's menacing behavior, Keiichi begins to distance himself from his former friends \u2014 but it might already be too late.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18321},{"seriesId":244,"episodeFileId":15132,"seasonNumber":1,"episodeNumber":5,"title":"The Cotton Drifting Chapter - Part 1 - Jealousy","airDate":"2006-05-03","airDateUtc":"2006-05-02T15:00:00Z","overview":"Keiichi meets his friends in town to win prizes at a card game. Afterwards, at a restaurant, he is surprised to see Mion as a waitress, and even more surprised to find out it's not actually Mion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18322},{"seriesId":244,"episodeFileId":15133,"seasonNumber":1,"episodeNumber":6,"title":"The Cotton Drifting Chapter - Part 2 - Takano","airDate":"2006-05-10","airDateUtc":"2006-05-09T15:00:00Z","overview":"The day for the Cotton Drifting Festival has arrived, and during Rika's ritual performance, Keiichi is taken to see the sacred festival storehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18323},{"seriesId":244,"episodeFileId":15134,"seasonNumber":1,"episodeNumber":7,"title":"The Cotton Drifting Chapter - Part 3 - Lies","airDate":"2006-05-17","airDateUtc":"2006-05-16T15:00:00Z","overview":"Keiichi indirectly confesses to Rika about sneaking into the forbidden shrine, and he fears his admission may have put Rika and Satako's lives in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18324},{"seriesId":244,"episodeFileId":15135,"seasonNumber":1,"episodeNumber":8,"title":"The Cotton Drifting Chapter - Part 4 - Wish","airDate":"2006-05-24","airDateUtc":"2006-05-23T15:00:00Z","overview":"The truth behind the recent incidents and the dark origins of Hinamizawa finally start to unravel as Keiichi and Rena decide to confront their suspect.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18325},{"seriesId":244,"episodeFileId":15136,"seasonNumber":1,"episodeNumber":9,"title":"The Curse Killing Chapter - Part 1 - Older Brother","airDate":"2006-05-31","airDateUtc":"2006-05-30T15:00:00Z","overview":"When Keiichi's parents leave for Tokyo for a few days, Satoko and Rika offer to help him around the house and he learns about the mysterious disappearance of Satoko's older brother, Satoshi.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18326},{"seriesId":244,"episodeFileId":15137,"seasonNumber":1,"episodeNumber":10,"title":"The Curse Killing Chapter - Part 2 - Bond","airDate":"2006-06-07","airDateUtc":"2006-06-06T15:00:00Z","overview":"Satoko has been absent from school, and Keiichi starts to worry about her family situation after discovering the cause of her absence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18327},{"seriesId":244,"episodeFileId":15138,"seasonNumber":1,"episodeNumber":11,"title":"The Curse Killing Chapter - Part 3 - Borderline","airDate":"2006-06-14","airDateUtc":"2006-06-13T15:00:00Z","overview":"Following Satoko\u2019s disturbing panic attack in the classroom, Keiichi\u2019s concern for her well-being grows to the point where he plans to take matters into his own hands.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18328},{"seriesId":244,"episodeFileId":15139,"seasonNumber":1,"episodeNumber":12,"title":"The Curse Killing Chapter - Part 4 - Lost Item","airDate":"2006-06-21","airDateUtc":"2006-06-20T15:00:00Z","overview":"After strange encounters with Takano, Dr. Irie, and Inspector Oishi, Keiichi starts to question whether the previous night's incident actually occurred.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18329},{"seriesId":244,"episodeFileId":15140,"seasonNumber":1,"episodeNumber":13,"title":"The Curse Killing Chapter - Part 5 - Apology","airDate":"2006-06-28","airDateUtc":"2006-06-27T15:00:00Z","overview":"When Keiichi heads to Satoko's house and finds her in need of medical attention, he becomes convinced that Oyashiro-sama's curse may be the cause of all these recent misfortunes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18330},{"seriesId":244,"episodeFileId":15141,"seasonNumber":1,"episodeNumber":14,"title":"The Time Wasting Chapter - Part 1 - Hinamizawa","airDate":"2006-07-05","airDateUtc":"2006-07-04T15:00:00Z","overview":"Four years ago, during the Hinamizawa dam incident, young police investigator Mamoru Akasaka comes to the village to investigate a child kidnapping, where he meets young Rika.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18331},{"seriesId":244,"episodeFileId":15142,"seasonNumber":1,"episodeNumber":15,"title":"The Time Wasting Chapter - Part 2 - Sign","airDate":"2006-07-12","airDateUtc":"2006-07-11T15:00:00Z","overview":"Mamoru and Oishi discover some important clues, and head to the district of Takatsudo to continue the search for the Cabinet Minister's son. Little do they know, there are much more sinister forces at work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18332},{"seriesId":244,"episodeFileId":15143,"seasonNumber":1,"episodeNumber":16,"title":"The Eye Opening Chapter - Part 1 - First Love","airDate":"2006-07-19","airDateUtc":"2006-07-18T15:00:00Z","overview":"The events from The Cotton Drifting Chapter are retold from another point of view. After two years away from the village, Shion comes back to Hinamizawa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18333},{"seriesId":244,"episodeFileId":15144,"seasonNumber":1,"episodeNumber":17,"title":"The Eye Opening Chapter - Part 2 - Responsibility","airDate":"2006-07-26","airDateUtc":"2006-07-25T15:00:00Z","overview":"The recent incident at school has left Shion feeling very uneasy. She is able to muster the courage to call Satoshi, only to receive an apology from him. Something doesn't seem right.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18334},{"seriesId":244,"episodeFileId":15145,"seasonNumber":1,"episodeNumber":18,"title":"The Eye Opening Chapter - Part 3 - Oni's.Blood.Line","airDate":"2006-08-02","airDateUtc":"2006-08-01T15:00:00Z","overview":"When Shion decides to investigate Satoshi's disappearance, she meets Takano at the library, who tells her more about the dark history of Hinamizawa. The very next year, the past begins to repeat itself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18335},{"seriesId":244,"episodeFileId":15146,"seasonNumber":1,"episodeNumber":19,"title":"The Eye Opening Chapter - Part 4 - Revenge","airDate":"2006-08-09","airDateUtc":"2006-08-08T15:00:00Z","overview":"Shion overhears a conversation between Mion and her grandmother and begins to suspect her family may be involved in the recent events.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18336},{"seriesId":244,"episodeFileId":15147,"seasonNumber":1,"episodeNumber":20,"title":"The Eye Opening Chapter - Part 5 - Cold Hands","airDate":"2006-08-16","airDateUtc":"2006-08-15T15:00:00Z","overview":"After questioning Headmaster Kimiyoshi for information about the previous murders and Satoshi's disappearance, Shion sets her sights on another one of the Three Great Families.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18337},{"seriesId":244,"episodeFileId":15148,"seasonNumber":1,"episodeNumber":21,"title":"The Eye Opening Chapter - Part 6 - Condemnation","airDate":"2006-08-23","airDateUtc":"2006-08-22T15:00:00Z","overview":"Shion tricks Keiichi into thinking that he may have put his friends in danger. However, when he figures out the truth, Shion is confronted by Keiichi and Rena.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18338},{"seriesId":244,"episodeFileId":15149,"seasonNumber":1,"episodeNumber":22,"title":"The Atonement Chapter - Part 1 - Happiness","airDate":"2006-08-30","airDateUtc":"2006-08-29T15:00:00Z","overview":"After a day of summer fun, Rena goes to the garbage dump, where she begins to remember things from her troubling family background.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18339},{"seriesId":244,"episodeFileId":15150,"seasonNumber":1,"episodeNumber":23,"title":"The Atonement Chapter - Part 2 - Place to Return","airDate":"2006-09-06","airDateUtc":"2006-09-05T15:00:00Z","overview":"Rena learns of Rina's plot, and a confrontation at the deserted garbage dump triggers another disastrous chain of events.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18340},{"seriesId":244,"episodeFileId":15151,"seasonNumber":1,"episodeNumber":24,"title":"The Atonement Chapter - Part 3 - Document 34","airDate":"2006-09-13","airDateUtc":"2006-09-12T15:00:00Z","overview":"While studying Takano's scrapbooks, Rena starts to uncover the the truth behind Oyashiro-sama's curse and Hinamizawa's dark past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18341},{"seriesId":244,"episodeFileId":15152,"seasonNumber":1,"episodeNumber":25,"title":"The Atonement Chapter - Part 4 - Earth Invasion","airDate":"2006-09-20","airDateUtc":"2006-09-19T15:00:00Z","overview":"By discovering the truth behind Oyashiro-sama's curse, Rena has become a target of one of the Three Great Families, and she decides to go into hiding.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18342},{"seriesId":244,"episodeFileId":15153,"seasonNumber":1,"episodeNumber":26,"title":"The Atonement Chapter - Part 5 - Retake","airDate":"2006-09-27","airDateUtc":"2006-09-26T15:00:00Z","overview":"Rena has returned, but not for the right reasons, as she causes a serious crisis at the school, and demands the police investigate the Three Great Families' connection to Oyashiro-sama's curse. What will become of Keiichi and his friends?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18343},{"seriesId":244,"episodeFileId":15873,"seasonNumber":2,"episodeNumber":1,"title":"Prologue - Reunion","airDate":"2007-07-06","airDateUtc":"2007-07-05T15:00:00Z","overview":"In 2007, after the Great Hinamizawa Disaster, Akasaka and Oishi return to the ruined village, and reflect on the events that happened twenty-four years before.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18344},{"seriesId":244,"episodeFileId":15874,"seasonNumber":2,"episodeNumber":2,"title":"The Disaster Awakening Chapter - Part 1 - Tag","airDate":"2007-07-13","airDateUtc":"2007-07-12T15:00:00Z","overview":"The gang plays a game of \"zombie tag\" at school, and on the way home, Keiichi learns of Oyashiro-sama's curse and the mysterious Hinamizawa serial murders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18345},{"seriesId":244,"episodeFileId":15875,"seasonNumber":2,"episodeNumber":3,"title":"The Disaster Awakening Chapter - Part 2 - Powerless","airDate":"2007-07-20","airDateUtc":"2007-07-19T15:00:00Z","overview":"The gang goes to visit the festival site during the preparations and later participates in a baseball game. Meanwhile, Satoko worries about Rika's depression and tries to confront her about it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18346},{"seriesId":244,"episodeFileId":15876,"seasonNumber":2,"episodeNumber":4,"title":"The Disaster Awakening Chapter - Part 3 - Pre-established Harmony","airDate":"2007-07-27","airDateUtc":"2007-07-26T15:00:00Z","overview":"During the Cotton Drifting Festival, the gang's club activities consist of eating contests and watching Rika's dance. After the festival, Satoko becomes convinced that she and Rika are being watched.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18347},{"seriesId":244,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Cat Killing Chapter","airDate":"2007-08-02","airDateUtc":"2007-08-01T15:00:00Z","overview":"After losing a bet, Keichii, Mion, Rena, Satoko and Rika parade around the town in costumes. When they come to a fork in the road, they decide to go to Yagouchi, a nearby abandoned village.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":1,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":18312},{"seriesId":244,"episodeFileId":15877,"seasonNumber":2,"episodeNumber":5,"title":"The Disaster Awakening Chapter - Part 4 - The Great Hinamizawa Disaster","airDate":"2007-08-03","airDateUtc":"2007-08-02T15:00:00Z","overview":"As mysterious men storm the Furude house, Satoko manages to hide, but Rika refuses to join her. When Satoko leaves her hiding place, she discovers many horrifying sights in the once peaceful village of Hinamizawa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18348},{"seriesId":244,"episodeFileId":15878,"seasonNumber":2,"episodeNumber":6,"title":"The Mass Slaughter Chapter - Part 1 - Rules of the Maze","airDate":"2007-08-10","airDateUtc":"2007-08-09T15:00:00Z","overview":"Rika begins a new world, but is getting tired of the same events repeating themselves. However, Keiichi proves to her that fate isn't always set in stone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18349},{"seriesId":244,"episodeFileId":15879,"seasonNumber":2,"episodeNumber":7,"title":"The Mass Slaughter Chapter - Part 2 - How to Alter Fate","airDate":"2007-08-17","airDateUtc":"2007-08-16T15:00:00Z","overview":"Influenced by Keiichi's encouragement and the fact that her friends are starting to avoid repeating their mistakes by remembering glimpses of the other worlds, Rika decides to begin the fight against her own fate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18350},{"seriesId":244,"episodeFileId":15880,"seasonNumber":2,"episodeNumber":8,"title":"The Mass Slaughter Chapter - Part 3 - Stirrings","airDate":"2007-08-24","airDateUtc":"2007-08-23T15:00:00Z","overview":"Rika's plans are hindered by the appearance of Satoko's abusive uncle, Teppei, and she starts to lose her newfound faith. Keiichi and the rest of the gang decide to find a way to release Satoko from the clutches of her uncle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18351},{"seriesId":244,"episodeFileId":15881,"seasonNumber":2,"episodeNumber":9,"title":"The Mass Slaughter Chapter - Part 4 - Negotiation","airDate":"2007-08-31","airDateUtc":"2007-08-30T15:00:00Z","overview":"The fight to save Satoko from her uncle continues as the gang tries to appeal to the Child Counseling Center, first alone, and then they gather the whole class. But will it be enough?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18352},{"seriesId":244,"episodeFileId":15882,"seasonNumber":2,"episodeNumber":10,"title":"The Mass Slaughter Chapter - Part 5 - Confrontation","airDate":"2007-09-07","airDateUtc":"2007-09-06T15:00:00Z","overview":"The gang's struggle to help Satoko forces them to confront the village elders, including the leader of the Sonozaki family as Satoko's resilience nears its limit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18353},{"seriesId":244,"episodeFileId":15883,"seasonNumber":2,"episodeNumber":11,"title":"The Mass Slaughter Chapter - Part 6 - Strong Will","airDate":"2007-09-14","airDateUtc":"2007-09-13T15:00:00Z","overview":"The efforts to rescue Satoko reach a conclusion, and with the Cotton Drifting Festival the next day, everything seems to moving in the direction of a happy ending \u2014 until the true culprit finally comes forth.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18354},{"seriesId":244,"episodeFileId":15884,"seasonNumber":2,"episodeNumber":12,"title":"The Mass Slaughter Chapter - Part 7 - The Hinamizawa Syndrome","airDate":"2007-09-21","airDateUtc":"2007-09-20T15:00:00Z","overview":"Rika tells her friends the truth behind the mysterious Hinamizawa Syndrome. Meanwhile, the enemy continues with their plan, eliminating any opposition.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18355},{"seriesId":244,"episodeFileId":15885,"seasonNumber":2,"episodeNumber":13,"title":"The Mass Slaughter Chapter - Part 8 - Doomsday","airDate":"2007-09-28","airDateUtc":"2007-09-27T15:00:00Z","overview":"The enemy closes in on the Furude house, and the gang comes to Rika's aid. As they fight the attackers, they realize that if everyone stands together and believes, they can indeed fight fate. But, does everyone truly believe?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18356},{"seriesId":244,"episodeFileId":15886,"seasonNumber":2,"episodeNumber":14,"title":"The Festival Orchestrating Chapter - Part 1 - Miyo","airDate":"2007-10-05","airDateUtc":"2007-10-04T15:00:00Z","overview":"Takano's past is revealed, ranging from her stay in an abusive orphanage, to the beginning of her research into the Hinamizawa Syndrome.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18357},{"seriesId":244,"episodeFileId":15887,"seasonNumber":2,"episodeNumber":15,"title":"The Festival Orchestrating Chapter - Part 2 - Writhing","airDate":"2007-10-16","airDateUtc":"2007-10-15T15:00:00Z","overview":"Takano's story continues, including how she met her foster grandfather, and her determination to continue his work.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18358},{"seriesId":244,"episodeFileId":15888,"seasonNumber":2,"episodeNumber":16,"title":"The Festival Orchestrating Chapter - Part 3 - Beginning of the End","airDate":"2007-10-23","airDateUtc":"2007-10-22T15:00:00Z","overview":"As Hanyu hopelessly watches the cruel events that occur during the dam incident, she and Rika eagerly await the arrival of the one person who will be the key in bringing an end to the enemy's intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18359},{"seriesId":244,"episodeFileId":15889,"seasonNumber":2,"episodeNumber":17,"title":"The Festival Orchestrating Chapter - Part 4 - Stratagem","airDate":"2007-10-30","airDateUtc":"2007-10-29T15:00:00Z","overview":"Rika offers herself as a test subject for Irie and Takano's research. More light is shed on the deaths of Satoko's and Rika's parents and their involvement with the legend of Oyashiro-sama's curse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18360},{"seriesId":244,"episodeFileId":15890,"seasonNumber":2,"episodeNumber":18,"title":"The Festival Orchestrating Chapter - Part 5 - The Final Playing Piece","airDate":"2007-11-06","airDateUtc":"2007-11-05T15:00:00Z","overview":"Details about Satoshi's past are revealed, including the reason for his disappearance. Rika and Hanyu make their final preparations for the impending struggle against destiny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18361},{"seriesId":244,"episodeFileId":15891,"seasonNumber":2,"episodeNumber":19,"title":"The Festival Orchestrating Chapter - Part 6 - Curtain's Rise","airDate":"2007-11-13","airDateUtc":"2007-11-12T15:00:00Z","overview":"Hanyu is physically introduced into the world as a transfer student to the Hinamizawa school. After a brief meeting with Takano and Tomitake, she remembers the past worlds and informs Rika of the enemy's intentions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18362},{"seriesId":244,"episodeFileId":15892,"seasonNumber":2,"episodeNumber":20,"title":"The Festival Orchestrating Chapter - Part 7 - Trap","airDate":"2007-11-20","airDateUtc":"2007-11-19T15:00:00Z","overview":"Rika gathers her allies and starts to make plans, while obtaining more information about the enemy and those supporting their ambitions.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18363},{"seriesId":244,"episodeFileId":15893,"seasonNumber":2,"episodeNumber":21,"title":"The Festival Orchestrating Chapter - Part 8 - 48 Hours","airDate":"2007-11-27","airDateUtc":"2007-11-26T15:00:00Z","overview":"False information regarding Rika is spread by Oishi's group at the precinct, leaving the Yamainu in disarray, and racing to prevent their plans from being foiled.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18364},{"seriesId":244,"episodeFileId":15894,"seasonNumber":2,"episodeNumber":22,"title":"The Festival Orchestrating Chapter - Part 9 - Attack and Defense","airDate":"2007-12-04","airDateUtc":"2007-12-03T15:00:00Z","overview":"Upon discovering that Tomitake has been captured, Irie rushes to escape and ends up meeting Shion and her bodyguard, Kasai, on their way to the Sonozaki Estate. Little do they know, they're being followed...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18365},{"seriesId":244,"episodeFileId":15895,"seasonNumber":2,"episodeNumber":23,"title":"The Festival Orchestrating Chapter - Part 10 - Bloody Battle","airDate":"2007-12-11","airDateUtc":"2007-12-10T15:00:00Z","overview":"Irie, Kasai, and Shion head to the clinic to rescue Tomitake, and Irie finally reveals the truth about Satoshi's disappearance to Shion. Elsewhere, the gang battles the Yamainu in the mountains.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18366},{"seriesId":244,"episodeFileId":15896,"seasonNumber":2,"episodeNumber":24,"title":"The Festival Orchestrating Chapter - Part 11 - The End","airDate":"2007-12-18","airDateUtc":"2007-12-17T15:00:00Z","overview":"The Yamainu concede defeat, but Takano refuses to surrender. As she flees into the mountains, she has a final, emotional confrontation with Rika's group. At last, Rika and all of her friends are able to attend the Cotton Drifting Festival, finally free from fate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18367},{"seriesId":244,"episodeFileId":13860,"seasonNumber":3,"episodeNumber":1,"title":"The Public Embarrassment Chapter","airDate":"2009-02-25","airDateUtc":"2009-02-24T15:00:00Z","overview":"Realizing that he forgot to pack his bathing suit while rushing to meet his friends at the pool, Keiichi borrows a pair of trunks from Mion's uncle, who claims that these trunks have the magical ability to make women attracted to whoever writes their name on them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18368},{"seriesId":244,"episodeFileId":13861,"seasonNumber":3,"episodeNumber":2,"title":"The Dice Killing Chapter - Part 1","airDate":"2009-03-25","airDateUtc":"2009-03-24T15:00:00Z","overview":"Now that she and her friends are finally free from the eternally repeating tragedies of June 1983, Rika has a new lease on life. While biking with her friends, Rika carelessly collides with an oncoming truck. When she awakens, she finds herself in another Hinamizawa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18369},{"seriesId":244,"episodeFileId":13862,"seasonNumber":3,"episodeNumber":3,"title":"The Dice Killing Chapter - Part 2","airDate":"2009-05-22","airDateUtc":"2009-05-21T15:00:00Z","overview":"Rika finally makes contact with Hanyu, who tells her that for her to return to her old world, she must find and dispose of a piece from her old world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18370},{"seriesId":244,"episodeFileId":13863,"seasonNumber":3,"episodeNumber":4,"title":"The Dice Killing Chapter - Part 3","airDate":"2009-06-24","airDateUtc":"2009-06-23T15:00:00Z","overview":"Rika becomes gradually more torn between remaining in this new world that knows no sin, or killing someone she loves and returning to her old world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18371},{"seriesId":244,"episodeFileId":13864,"seasonNumber":3,"episodeNumber":5,"title":"The Daybreak Chapter","airDate":"2009-08-21","airDateUtc":"2009-08-20T15:00:00Z","overview":"During a picnic with Keiichi, Rena accidentally swallows one of the mysterious \"Fuwazaru Magatama\" which falls from the sky, and begins acting lovesick.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18372},{"seriesId":244,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Love Penalty Arc: Joy","airDate":"2011-07-21","airDateUtc":"2011-07-20T15:00:00Z","overview":"Higurashi no Naku Koro ni Kira, Part 1.\r\nKeiichi, Tomitake, Irie, and Oishi speculate over punishment games for the girls in Hinamizawa after Keiichi's recent string of losses in the games.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":57,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":18313},{"seriesId":244,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Bewitching Battle Arc: Exert","airDate":"2011-09-22","airDateUtc":"2011-09-21T15:00:00Z","overview":"Higurashi no Naku Koro ni Kira, Part 2.\r\nRika wakes up in an parallel world where she is a magical girl known as Rika Oyashiro. She and Satoko must fight against the four evil generals of the secret magic society, Tokyo Magika, to save their friends and the people of Hinamizawa.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":58,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":18314},{"seriesId":244,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Intertwined Destiny Chapter: Love","airDate":"2011-11-23","airDateUtc":"2011-11-22T15:00:00Z","overview":"Higurashi no Naku Koro ni Kira, Part 3.\r\nA love rectangle between Keiichi, Mion, Shion, and Rena ensues, with the girls competing for Keiichi's affection through numerous methods.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":59,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":18315},{"seriesId":244,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Daydreaming Chapter: Ease","airDate":"2012-01-25","airDateUtc":"2012-01-24T15:00:00Z","overview":"Higurashi no Naku Koro ni Kira, Part 4.\r\nA young Rika and Hanyu play a game of hide and seek that results in little Rika being thrown into a time paradox, where she finds herself sent into the future Hinamizawa everyone fought for prior to Kira.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":60,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":4,"unverifiedSceneNumbering":false,"id":18316},{"seriesId":244,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Outbreak","airDate":"2013-08-15","airDateUtc":"2013-08-14T15:00:00Z","overview":"Higurashi no Naku Koro ni Kaku.\r\nThe village of Hinamizawa has been completely sealed off due to a mysterious virus in 1983, and Keiichi and Rena deal with the outbreak.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":61,"sceneAbsoluteEpisodeNumber":0,"sceneEpisodeNumber":6,"sceneSeasonNumber":0,"unverifiedSceneNumbering":false,"id":18317}],"episodeFile":[{"seriesId":244,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Public Embarrassment Chapter-Bluray-1080p.mp4","path":"\/tv\/When They Cry - Higurashi\/Season 03\/S03E01.The Public Embarrassment Chapter-Bluray-1080p.mp4","size":534061500,"dateAdded":"2020-06-08T03:46:16.424057Z","sceneName":"[Leopard-Raws] Higurashi no Naku Koro ni Rei 01-05 (BD 1920x1080 H264 AAC Chap)","releaseGroup":"Leopard-Raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2260809,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13860},{"seriesId":244,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Dice Killing Chapter - Part 1-Bluray-1080p.mp4","path":"\/tv\/When They Cry - Higurashi\/Season 03\/S03E02.The Dice Killing Chapter - Part 1-Bluray-1080p.mp4","size":1178468963,"dateAdded":"2020-06-08T03:46:18.696885Z","sceneName":"[Leopard-Raws] Higurashi no Naku Koro ni Rei 01-05 (BD 1920x1080 H264 AAC Chap)","releaseGroup":"Leopard-Raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5238020,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13861},{"seriesId":244,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Dice Killing Chapter - Part 2-Bluray-1080p.mp4","path":"\/tv\/When They Cry - Higurashi\/Season 03\/S03E03.The Dice Killing Chapter - Part 2-Bluray-1080p.mp4","size":482152813,"dateAdded":"2020-06-08T03:46:23.808672Z","sceneName":"[Leopard-Raws] Higurashi no Naku Koro ni Rei 01-05 (BD 1920x1080 H264 AAC Chap)","releaseGroup":"Leopard-Raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1862573,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"31:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13862},{"seriesId":244,"seasonNumber":3,"relativePath":"Season 03\/S03E04.The Dice Killing Chapter - Part 3-Bluray-1080p.mp4","path":"\/tv\/When They Cry - Higurashi\/Season 03\/S03E04.The Dice Killing Chapter - Part 3-Bluray-1080p.mp4","size":576171353,"dateAdded":"2020-06-08T03:46:28.385796Z","sceneName":"[Leopard-Raws] Higurashi no Naku Koro ni Rei 01-05 (BD 1920x1080 H264 AAC Chap)","releaseGroup":"Leopard-Raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2309329,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"30:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13863},{"seriesId":244,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Daybreak Chapter-Bluray-1080p.mp4","path":"\/tv\/When They Cry - Higurashi\/Season 03\/S03E05.The Daybreak Chapter-Bluray-1080p.mp4","size":658837812,"dateAdded":"2020-06-08T03:46:34.138411Z","sceneName":"[Leopard-Raws] Higurashi no Naku Koro ni Rei 01-05 (BD 1920x1080 H264 AAC Chap)","releaseGroup":"Leopard-Raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2725215,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"30:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13864},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Spirited Away by the Demon Chapter - Part 1 - The Beginning-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E01.The Spirited Away by the Demon Chapter - Part 1 - The Beginning-Bluray-1080p.mkv","size":446045661,"dateAdded":"2020-08-03T21:47:37.759005Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2108603,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15128},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Spirited Away by the Demon Chapter - Part 2 - The Secret-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E02.The Spirited Away by the Demon Chapter - Part 2 - The Secret-Bluray-1080p.mkv","size":400050606,"dateAdded":"2020-08-03T21:49:22.148583Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1849524,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15129},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Spirited Away by the Demon Chapter - Part 3 - Suspicion-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E03.The Spirited Away by the Demon Chapter - Part 3 - Suspicion-Bluray-1080p.mkv","size":387066734,"dateAdded":"2020-08-03T21:51:05.417368Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1776704,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15130},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Spirited Away by the Demon Chapter - Part 4 - Disturbance-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E04.The Spirited Away by the Demon Chapter - Part 4 - Disturbance-Bluray-1080p.mkv","size":438902758,"dateAdded":"2020-08-03T21:52:48.683193Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2068236,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15131},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Cotton Drifting Chapter - Part 1 - Jealousy-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E05.The Cotton Drifting Chapter - Part 1 - Jealousy-Bluray-1080p.mkv","size":419407935,"dateAdded":"2020-08-03T21:54:31.963346Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1958497,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15132},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Cotton Drifting Chapter - Part 2 - Takano-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E06.The Cotton Drifting Chapter - Part 2 - Takano-Bluray-1080p.mkv","size":362138135,"dateAdded":"2020-08-03T21:56:14.550917Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1636101,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15133},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Cotton Drifting Chapter - Part 3 - Lies-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E07.The Cotton Drifting Chapter - Part 3 - Lies-Bluray-1080p.mkv","size":470288457,"dateAdded":"2020-08-03T21:57:56.966335Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2244915,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15134},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Cotton Drifting Chapter - Part 4 - Wish-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E08.The Cotton Drifting Chapter - Part 4 - Wish-Bluray-1080p.mkv","size":420103160,"dateAdded":"2020-08-03T21:59:41.61711Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1962567,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15135},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Curse Killing Chapter - Part 1 - Older Brother-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E09.The Curse Killing Chapter - Part 1 - Older Brother-Bluray-1080p.mkv","size":400719887,"dateAdded":"2020-08-03T22:01:24.447829Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1853296,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15136},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Curse Killing Chapter - Part 2 - Bond-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E10.The Curse Killing Chapter - Part 2 - Bond-Bluray-1080p.mkv","size":354482299,"dateAdded":"2020-08-03T22:03:07.720048Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1593138,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15137},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Curse Killing Chapter - Part 3 - Borderline-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E11.The Curse Killing Chapter - Part 3 - Borderline-Bluray-1080p.mkv","size":533308185,"dateAdded":"2020-08-03T22:04:50.176052Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2599915,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15138},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Curse Killing Chapter - Part 4 - Lost Item-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E12.The Curse Killing Chapter - Part 4 - Lost Item-Bluray-1080p.mkv","size":588832353,"dateAdded":"2020-08-03T22:06:33.652407Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2912440,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15139},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Curse Killing Chapter - Part 5 - Apology-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E13.The Curse Killing Chapter - Part 5 - Apology-Bluray-1080p.mkv","size":534727830,"dateAdded":"2020-08-03T22:08:17.704115Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2607862,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15140},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Time Wasting Chapter - Part 1 - Hinamizawa-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E14.The Time Wasting Chapter - Part 1 - Hinamizawa-Bluray-1080p.mkv","size":381327288,"dateAdded":"2020-08-03T22:10:00.920797Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1744381,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15141},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E15.The Time Wasting Chapter - Part 2 - Sign-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E15.The Time Wasting Chapter - Part 2 - Sign-Bluray-1080p.mkv","size":437808331,"dateAdded":"2020-08-03T22:11:43.628021Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2062089,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15142},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Eye Opening Chapter - Part 1 - First Love-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E16.The Eye Opening Chapter - Part 1 - First Love-Bluray-1080p.mkv","size":585795769,"dateAdded":"2020-08-03T22:13:26.220232Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2895352,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15143},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E17.The Eye Opening Chapter - Part 2 - Responsibility-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E17.The Eye Opening Chapter - Part 2 - Responsibility-Bluray-1080p.mkv","size":390089804,"dateAdded":"2020-08-03T22:15:09.667983Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1793459,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15144},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Eye Opening Chapter - Part 3 - Oni's.Blood.Line-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E18.The Eye Opening Chapter - Part 3 - Oni's.Blood.Line-Bluray-1080p.mkv","size":382422018,"dateAdded":"2020-08-03T22:16:52.993657Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1750303,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15145},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E19.The Eye Opening Chapter - Part 4 - Revenge-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E19.The Eye Opening Chapter - Part 4 - Revenge-Bluray-1080p.mkv","size":354570308,"dateAdded":"2020-08-03T22:18:36.381486Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1593627,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15146},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E20.The Eye Opening Chapter - Part 5 - Cold Hands-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E20.The Eye Opening Chapter - Part 5 - Cold Hands-Bluray-1080p.mkv","size":383448528,"dateAdded":"2020-08-03T22:20:18.900077Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1756351,"videoCodec":"x264","videoFps":23.614,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15147},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E21.The Eye Opening Chapter - Part 6 - Condemnation-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E21.The Eye Opening Chapter - Part 6 - Condemnation-Bluray-1080p.mkv","size":459798798,"dateAdded":"2020-08-03T22:22:02.322453Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2185873,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15148},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E22.The Atonement Chapter - Part 1 - Happiness-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E22.The Atonement Chapter - Part 1 - Happiness-Bluray-1080p.mkv","size":698279566,"dateAdded":"2020-08-03T22:23:45.645309Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3528610,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15149},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E23.The Atonement Chapter - Part 2 - Place to Return-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E23.The Atonement Chapter - Part 2 - Place to Return-Bluray-1080p.mkv","size":399114843,"dateAdded":"2020-08-03T22:25:29.797984Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1844414,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15150},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E24.The Atonement Chapter - Part 3 - Document 34-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E24.The Atonement Chapter - Part 3 - Document 34-Bluray-1080p.mkv","size":351964032,"dateAdded":"2020-08-03T22:27:13.040762Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1578954,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15151},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E25.The Atonement Chapter - Part 4 - Earth Invasion-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E25.The Atonement Chapter - Part 4 - Earth Invasion-Bluray-1080p.mkv","size":503470801,"dateAdded":"2020-08-03T22:28:55.299343Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2432054,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15152},{"seriesId":244,"seasonNumber":1,"relativePath":"Season 01\/S01E26.The Atonement Chapter - Part 5 - Retake-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 01\/S01E26.The Atonement Chapter - Part 5 - Retake-Bluray-1080p.mkv","size":351678778,"dateAdded":"2020-08-03T22:30:39.000136Z","releaseGroup":"BRF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1576115,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:41","scanType":"Progressive","subtitles":"Portuguese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15153},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Prologue - Reunion-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E01.Prologue - Reunion-Bluray-1080p.mkv","size":563297125,"dateAdded":"2020-10-17T15:18:55.533006Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":0.0,"resolution":"1920x1080","runTime":"25:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15873},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E02.The Disaster Awakening Chapter - Part 1 - Tag-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E02.The Disaster Awakening Chapter - Part 1 - Tag-Bluray-1080p.mkv","size":576644967,"dateAdded":"2020-10-17T15:20:39.545029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2143290,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":952627,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15874},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E03.The Disaster Awakening Chapter - Part 2 - Powerless-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E03.The Disaster Awakening Chapter - Part 2 - Powerless-Bluray-1080p.mkv","size":572983645,"dateAdded":"2020-10-17T15:22:22.027523Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x265","videoFps":0.0,"resolution":"1920x1080","runTime":"25:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15875},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E04.The Disaster Awakening Chapter - Part 3 - Pre-established Harmony-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E04.The Disaster Awakening Chapter - Part 3 - Pre-established Harmony-Bluray-1080p.mkv","size":555123495,"dateAdded":"2020-10-17T15:24:04.673924Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2131478,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":857262,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15876},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E05.The Disaster Awakening Chapter - Part 4 - The Great Hinamizawa Disaster-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E05.The Disaster Awakening Chapter - Part 4 - The Great Hinamizawa Disaster-Bluray-1080p.mkv","size":517861319,"dateAdded":"2020-10-17T15:25:48.062859Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2119576,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":669847,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15877},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Mass Slaughter Chapter - Part 1 - Rules of the Maze-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E06.The Mass Slaughter Chapter - Part 1 - Rules of the Maze-Bluray-1080p.mkv","size":548107820,"dateAdded":"2020-10-17T15:27:30.400749Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2124062,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":795068,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15878},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E07.The Mass Slaughter Chapter - Part 2 - How to Alter Fate-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E07.The Mass Slaughter Chapter - Part 2 - How to Alter Fate-Bluray-1080p.mkv","size":546273905,"dateAdded":"2020-10-17T15:29:12.748629Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2121892,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":847377,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:12","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15879},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E08.The Mass Slaughter Chapter - Part 3 - Stirrings-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E08.The Mass Slaughter Chapter - Part 3 - Stirrings-Bluray-1080p.mkv","size":533270782,"dateAdded":"2020-10-17T15:30:56.15205Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2119374,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":750605,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:28","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15880},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Mass Slaughter Chapter - Part 4 - Negotiation-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E09.The Mass Slaughter Chapter - Part 4 - Negotiation-Bluray-1080p.mkv","size":579268990,"dateAdded":"2020-10-17T15:32:38.813322Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2128030,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":976951,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:31","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15881},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Mass Slaughter Chapter - Part 5 - Confrontation-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E10.The Mass Slaughter Chapter - Part 5 - Confrontation-Bluray-1080p.mkv","size":532428711,"dateAdded":"2020-10-17T15:34:22.407112Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2127249,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":716307,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15882},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E11.The Mass Slaughter Chapter - Part 6 - Strong Will-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E11.The Mass Slaughter Chapter - Part 6 - Strong Will-Bluray-1080p.mkv","size":527857584,"dateAdded":"2020-10-17T15:36:05.067875Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2117461,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":696503,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15883},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E12.The Mass Slaughter Chapter - Part 7 - The Hinamizawa Syndrome-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E12.The Mass Slaughter Chapter - Part 7 - The Hinamizawa Syndrome-Bluray-1080p.mkv","size":652331717,"dateAdded":"2020-10-17T15:37:47.744986Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2107279,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1369427,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15884},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Mass Slaughter Chapter - Part 8 - Doomsday-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E13.The Mass Slaughter Chapter - Part 8 - Doomsday-Bluray-1080p.mkv","size":524745046,"dateAdded":"2020-10-17T15:39:32.039321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2133197,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":690874,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15885},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E14.The Festival Orchestrating Chapter - Part 1 - Miyo-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E14.The Festival Orchestrating Chapter - Part 1 - Miyo-Bluray-1080p.mkv","size":517642807,"dateAdded":"2020-10-17T15:41:14.532478Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2125153,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":678026,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15886},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E15.The Festival Orchestrating Chapter - Part 2 - Writhing-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E15.The Festival Orchestrating Chapter - Part 2 - Writhing-Bluray-1080p.mkv","size":568372479,"dateAdded":"2020-10-17T15:42:57.112968Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2106190,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":939087,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:32","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15887},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Festival Orchestrating Chapter - Part 3 - Beginning of the End-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E16.The Festival Orchestrating Chapter - Part 3 - Beginning of the End-Bluray-1080p.mkv","size":522307272,"dateAdded":"2020-10-17T15:44:40.104566Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2123272,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":671226,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15888},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E17.The Festival Orchestrating Chapter - Part 4 - Stratagem-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E17.The Festival Orchestrating Chapter - Part 4 - Stratagem-Bluray-1080p.mkv","size":559606448,"dateAdded":"2020-10-17T15:46:23.646825Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2111136,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":857497,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:48","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15889},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E18.The Festival Orchestrating Chapter - Part 5 - The Final Playing Piece-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E18.The Festival Orchestrating Chapter - Part 5 - The Final Playing Piece-Bluray-1080p.mkv","size":545066924,"dateAdded":"2020-10-17T15:48:06.179018Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2112339,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":805777,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:35","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15890},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E19.The Festival Orchestrating Chapter - Part 6 - Curtain's Rise-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E19.The Festival Orchestrating Chapter - Part 6 - Curtain's Rise-Bluray-1080p.mkv","size":527465881,"dateAdded":"2020-10-17T15:49:48.683075Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2115156,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":733623,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15891},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E20.The Festival Orchestrating Chapter - Part 7 - Trap-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E20.The Festival Orchestrating Chapter - Part 7 - Trap-Bluray-1080p.mkv","size":514631862,"dateAdded":"2020-10-17T15:51:31.292399Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2110761,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":668633,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15892},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E21.The Festival Orchestrating Chapter - Part 8 - 48 Hours-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E21.The Festival Orchestrating Chapter - Part 8 - 48 Hours-Bluray-1080p.mkv","size":511699461,"dateAdded":"2020-10-17T15:53:13.778704Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2113788,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":657598,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:20","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15893},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E22.The Festival Orchestrating Chapter - Part 9 - Attack and Defense-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E22.The Festival Orchestrating Chapter - Part 9 - Attack and Defense-Bluray-1080p.mkv","size":547696036,"dateAdded":"2020-10-17T15:54:56.355751Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2129058,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":828438,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:22","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15894},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E23.The Festival Orchestrating Chapter - Part 10 - Bloody Battle-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E23.The Festival Orchestrating Chapter - Part 10 - Bloody Battle-Bluray-1080p.mkv","size":533901828,"dateAdded":"2020-10-17T15:56:38.928985Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2120752,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":750724,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"25:29","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15895},{"seriesId":244,"seasonNumber":2,"relativePath":"Season 02\/S02E24.The Festival Orchestrating Chapter - Part 11 - The End-Bluray-1080p.mkv","path":"\/tv\/When They Cry - Higurashi\/Season 02\/S02E24.The Festival Orchestrating Chapter - Part 11 - The End-Bluray-1080p.mkv","size":616273418,"dateAdded":"2020-10-17T15:58:22.090926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":2130676,"audioChannels":2.0,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1274577,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"24:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15896}],"queue":[]},"243":{"series":{"title":"Codename: Kids Next Door","alternateTitles":[],"sortTitle":"codename kids next door","status":"ended","ended":true,"overview":"Taking numbers instead of names, five extraordinary 10-year-olds form a covert team called the Kids Next Door with one dedicated mission: to free all children from the tyrannical rule of adults.","network":"Cartoon Network","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/243\/banner.jpg?lastWrite=637270651800843590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/71685-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/243\/poster.jpg?lastWrite=637270651802243570","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71685-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/243\/fanart.jpg?lastWrite=637270651811883400","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71685-2.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":3,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":2,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":25,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":3,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":23,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":4,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":22,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":5,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":22,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":6,"monitored":true,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":21,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2002,"path":"\/tv\/Codename - Kids Next Door","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":false,"useSceneNumbering":false,"runtime":25,"tvdbId":71685,"tvRageId":0,"tvMazeId":7302,"firstAired":"2002-11-01T00:00:00Z","seriesType":"standard","cleanTitle":"codenamekidsnextdoor","imdbId":"tt0312109","titleSlug":"codename-kids-next-door","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation"],"tags":[],"added":"2020-06-06T18:32:58.262934Z","ratings":{"votes":139,"value":9.6},"statistics":{"seasonCount":6,"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":142,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":243},"episodes":[{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"Operation: C.A.K.E.D.","airDate":"2002-11-01","airDateUtc":"2002-11-02T00:00:00Z","overview":"The Kids Next Door attempts to stop a birthday party for their arch-enemies, the Delightful Children From Down The Lane. But a surprise, and a monstrous guest stands between them and the greatest birthday cake ever.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18171},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"Kenny and the Chimp: Diseasy Does It or Chimp N'Pox","airDate":"2002-11-01","airDateUtc":"2002-11-02T00:25:00Z","overview":"A little kid named Kenny takes Chimpy to Professor XXXL's lab. While the Professor suspects Kenny will knock open the mysterious disease containers, it is actually Chimpy who causes the havoc.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18172},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"No P in the OOL","airDate":"2002-11-06","airDateUtc":"2002-11-07T00:00:00Z","overview":"When the villainous Mr. Wink and Mr. Fibb extend the adult swimtime to extreme lengths at the neighborhood pool, the Kids Next Door plan to strike back with a vengeance.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18173},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"Operation: I.-S.C.R.E.A.M.","airDate":"2002-12-06","airDateUtc":"2002-12-07T00:00:00Z","overview":"Adults are running around with ice cream trucks. But dont give any ice cream to the kids. So the Kids Next Door bust them up and get the password for the ice cream headquarters, then are soon confronted with the delightful children from down the lane...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18174},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"Operation: C.A.N.N.O.N.","airDate":"2002-12-06","airDateUtc":"2002-12-07T00:25:00Z","overview":"Numbuh 1 has to go to a park with his parents one day and leaves the other 4 Kids Next Door to watch the place. Soon the Kids Next Door are bombarded with evil dooers including the evil kids. Later on that day after the delightful children from down the lane are told to go back home Numbuh 5 accidently suggests making a huge cannon. Numbuh 4 claims the roll of the leader then after alot of attempts on making the other kids make a cannon, they finally do it...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18175},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"Operation: N.O.-P.O.W.U.H.","airDate":"2002-12-13","airDateUtc":"2002-12-14T00:00:00Z","overview":"When Numbah 3 releases the hamsters powering the treehouse, Grandma Stuffums attacks! Will the Kids Next Door be able to fend off this foody fiend?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18176},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"Operation: T.E.E.T.H.","airDate":"2002-12-13","airDateUtc":"2002-12-14T00:25:00Z","overview":"When the KND get attacked by Knightbrace on the way to the candy store, they must use the evil dentist's own abilities against him!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18177},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":8,"title":"Operation: P.I.R.A.T.E.","airDate":"2002-12-20","airDateUtc":"2002-12-21T00:00:00Z","overview":"Stickybeard and his candy-stealing pirates invade the Kids' tree fort, stealing all their candy... including Numbuh 5's secret stash, and Numbuh 5! Can the rest of the kids recover their teammate and their candy?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18178},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":9,"title":"Operation: C.O.W.G.I.R.L.","airDate":"2002-12-20","airDateUtc":"2002-12-21T00:25:00Z","overview":"The Kids Next Door are on the run from Fibb and Wink (from the pilot \"\"No P in the OOl\"\"), when they're rescued by Lasso Lass, the only member of the original anti-adult super squad \"\"The Cowboy Kids' Club\"\" who's grown old, but not grown up. She offers to help the Kids recover Fibb and Wink's secret weapon (\"\"The Dome\"\"), but can the kids trust an adult, even one who's still a kid at heart?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18179},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":10,"title":"Operation: T.U.R.N.I.P.","airDate":"2002-12-27","airDateUtc":"2002-12-28T00:00:00Z","overview":"When the KND headquarters are flooded by turnips, the gang must travel to the source where they meet an evil monster turnip who has big plans!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18180},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":11,"title":"Operation: M.I.N.I.G.O.L.F.","airDate":"2002-12-27","airDateUtc":"2002-12-28T00:25:00Z","overview":"When Numbuh 2 challenges mini golf champ Rupert Puttkin to a match but soon realizes Rupert has another plan in his golfbag!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18181},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":12,"title":"Operation: O.F.F.I.C.E.","airDate":"2003-01-03","airDateUtc":"2003-01-04T00:00:00Z","overview":"Numbuh 4 reluctantly accompanies his dad to work uncovers a scheme including Rainbow Monkeys and screaming girls plus a one way trip to Pluto!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18182},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":13,"title":"Operation: A.R.C.T.I.C.","airDate":"2003-01-03","airDateUtc":"2003-01-04T00:25:00Z","overview":"The Kids Next Door journey to to the artic and hope to uncover a weather control device from a mad scientist who wants to put an end to snowy days.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18183},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":14,"title":"Operation: L.I.C.E.","airDate":"2003-01-10","airDateUtc":"2003-01-11T00:00:00Z","overview":"Numbuh 5 goes on a secret mission to find nachos at the delightful children from down the lane's house, when her hat gets lost. She quickly recovers it and hurriedly runs to the KND headquarters, she then starts itching her head alot and lice comes out of her hat! But it's not really her hat her other hat is with the delightful children from down the lane. The Lice start to take over. The only way to get rid of them is with nacho cheese.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18184},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":15,"title":"Operation: L.I.Z.Z.I.E.","airDate":"2003-01-10","airDateUtc":"2003-01-11T00:25:00Z","overview":"Numbuh 1 has a secret girlfriend who is bent on mind controling him! So, Numbuh 1's friends have to save Numbuh 1 from being mind controlled or their days as KND could be numbered.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18185},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":16,"title":"Operation: T.H.E.-F.L.Y.","airDate":"2003-01-17","airDateUtc":"2003-01-18T00:00:00Z","overview":"A fly finds it's way into the KND headquarters and gets five different reactions form Numbah 1, 2, 3, 4 and 5.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18186},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":17,"title":"Operation: P.O.I.N.T.","airDate":"2003-01-17","airDateUtc":"2003-01-18T00:25:00Z","overview":"All the teenagers in the KND's hommetown have formed a group called The Point and Numbah 1 suspects that they are helping the parents. So, the KND stage a raid at the Point's secret headquarters and are horrified at what the see.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18187},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":18,"title":"Operation: C.A.B.L.E.-T.V.","airDate":"2003-01-24","airDateUtc":"2003-01-25T00:00:00Z","overview":"The kids are chosen to star in a show on a 'kid-centric' network.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18188},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":19,"title":"Operation: C.A.M.P.","airDate":"2003-01-24","airDateUtc":"2003-01-25T00:25:00Z","overview":"Can Numbuh 1 stop a camp counselor without the help of 2 and 3? Probably not...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18189},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":20,"title":"Operation: T.O.M.M.Y.","airDate":"2003-02-07","airDateUtc":"2003-02-08T00:00:00Z","overview":"Numbuh 2's little brother will do anything to hang out with his big brother, even if that means forming an alliance with the Common Cold.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18190},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":21,"title":"Operation: C.H.A.D.","airDate":"2003-02-07","airDateUtc":"2003-02-08T00:25:00Z","overview":"When operatives from the KND international organization are neutralized by Mega Mom and Destructo Dad, The KND team up with the legendary operative Numbuh 274 to \"\" ground the powerful parental enemies.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18191},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":22,"title":"Operation: P.I.A.N.O.","airDate":"2003-02-21","airDateUtc":"2003-02-22T00:00:00Z","overview":"Operation P.I.A.N.O.: Numbah 4 discovers a shipment of type P kid torcher devices, thats right pianos! On the mission he is impatient to destroy the pianos hurt badly. Then an ambitious hamster takes his place temporarily and makes a very effective plan to destroy the final piano until a jelous Numbah 4 ruins it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18192},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":23,"title":"Operation: Z.O.O.","airDate":"2003-02-21","airDateUtc":"2003-02-22T00:25:00Z","overview":"The kids of the town are captured by an evil zoologist who tags them and puts them in cages. Now if they want to escape the need to work along with the Delightful Children!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18193},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":24,"title":"Operation: Q.U.I.E.T.","airDate":"2003-02-28","airDateUtc":"2003-03-01T00:00:00Z","overview":"What a time for every single villain, they ever faced, to invade the tree house -- at night, when Numbuh 5 is trying to keep things quiet for Numbuh 1 to sleep!!!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18194},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":25,"title":"Operation: R.A.I.N.B.O.W.S.","airDate":"2003-02-28","airDateUtc":"2003-03-01T00:25:00Z","overview":"Numbuh 3 learns that her Rainbow Monkey dolls are based on real creatures and plans on finding them at the Rainbow Monkey Island.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18195},{"seriesId":243,"episodeFileId":0,"seasonNumber":1,"episodeNumber":26,"title":"Operation: G.R.O.W.-U.P.","airDate":"2003-03-07","airDateUtc":"2003-03-08T00:00:00Z","overview":"The frustrated Delightful Children from down the lane turn to there Father for help destroying the KND, who are almost defeated. With their leader gone, treehouse destroyed and faith shattered the KND are forced into a showdown with their most dangerous foe ever.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18196},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Operation: C.A.T.S.","airDate":"2003-10-03","airDateUtc":"2003-10-03T23:00:00Z","overview":"Numbuh 4 accidently destroys Numbuh 3's favorite toy, and then lands himself in the clutches of the creepy old cat lady and her billions of cats! Will his fellow operatives save him? And will Numbuh 3 forgive him in time TO save him?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18197},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Operation: P.O.P.","airDate":"2003-10-03","airDateUtc":"2003-10-03T23:25:00Z","overview":"When the drinking age of root beer is raised to 13, the Kids Next Door swing into action, delivering soda to speakeasies for youngsters. But soon the Kids discover the prohibtion's leader, Mr. Fizz, has something even more sinister in store. Can the Kids Next Door stop Fizz from bottling up children everywhere?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18198},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Operation: S.P.A.N.K.","airDate":"2003-10-10","airDateUtc":"2003-10-10T23:00:00Z","overview":"After spending a stretch in the slammer for spanking the wrong child, the vampiric villain Count Spankulot vows to use his abilities to help children instead of harm them, and approaches the Kids Next Door with an offer to join them! But when the former Bounty Hunter of Bottoms turns out to be more annoying now than he ever was as a villain, how will the KND get rid of the Pesky Paddler?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18199},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Operation: D.A.T.E.","airDate":"2003-10-10","airDateUtc":"2003-10-10T23:25:00Z","overview":"The Delightful Children From Down the Lane are holding a social, and the KND are invited! Smelling a rat, Numbah One and the team decide to go for a reconaissance mission - and as the only one without a date, he brings Lizzie along. But when the Delightful Children spring their trap, Lizzie becomes more of a hindrance than ever. Will Numbah 1 prevail? Will his relationship with Lizzie survive?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18200},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"Operation: S.U.P.P.O.R.T.","airDate":"2003-10-17","airDateUtc":"2003-10-17T23:00:00Z","overview":"Numbuh 5 is sick at home with the flu, and Numbuhs 1 and 2 take it upon themselves to protect her from the enemy. While at her house, her father lets it slip that teenage sister Cree is wearing a training bra! Ever suspisious of teenagers, Numbuh 1 figures that this odd device must be \"\"Battle Ready Armor\"\", and becomes determined to discover the workings behind it. But when the two of them are discovered, can even the Kids Next Door survive the wrath of a humiliated teenager?! And could there be more than meets the eye in this lingerie liason?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18201},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Operation: T.A.P.I.O.C.A.","airDate":"2003-10-17","airDateUtc":"2003-10-17T23:25:00Z","overview":"On a seemingly routine mission, Numbuh 2 seizes a truckload of disgusting tapioca pudding from a trio of masked teenagers; unfortunatly, when trying to dispose of it, he plants it right in the middle of the treehouse! Now the team is up to their necks trying to clean up the putrid pudding, and the original teen-age owners still want it back! But why? Only Numbuh 2's grandmother knows for su","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18202},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Operation: M.O.V.I.E.","airDate":"2003-10-24","airDateUtc":"2003-10-24T23:00:00Z","overview":"When Numbuh 4 is sickened by the cutsey \"\"Rainbow Monkeys\"\" double feature movie that the team goes to, he tries to theater-jump into to R-rated \"\"Violence: The Movie,\"\" and after several unsuccessful tries, he makes it in disguised as an adult. But triumph turns to tragedy when he discovers that what promises to be a cool film is actually a front for a meeting for practically every villain that the KND have ever faced! And when his diguise fails, will Numbuh 4 escape this sinister cinema and leave room for a sequel?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18203},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"Operation: F.A.S.T.-F.O.O.D.","airDate":"2003-10-24","airDateUtc":"2003-10-24T23:25:00Z","overview":"It's Numbuh 3's birthday! Her party seems to go well, until the team hears her birthday wish - to lead the team on a mission! Hoping to make her happy, Numbuh 1 quickly makes up a simple task for her - to retrieve a Kid's Meal from the new fast food place, the Burger Frenzy. But Numbuh 3 gets more than she bargains for when she discovers that, in this case, \"\"Kid's Meal\"\" actually refers to the main ingredient of the meal!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18204},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Operation: S.H.A.V.E.","airDate":"2003-10-31","airDateUtc":"2003-11-01T00:00:00Z","overview":"The KND learn about evil moustaches taking over the faces of their fellow KND down south as well as adults.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18205},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Operation: O.O.M.P.P.A.H.","airDate":"2003-10-31","airDateUtc":"2003-11-01T00:25:00Z","overview":"While on a fishing trip with his overbearing, sousaphone-playing father, Numbuh 1 has to rescue him from a kid seeking a father of his own.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18206},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Operation: F.L.A.V.O.R.","airDate":"2003-11-07","airDateUtc":"2003-11-08T00:00:00Z","overview":"Everybody knows that ice cream comes in three basic flavors - chocolate, vanilla, and strawberry. But Numbuh 5 knows only too well the legend of how the ancient ice cream monks created a FOURTH basic flavor, and hid it away in a hidden temple, where only an ice cream lover with the purest taste buds could ever taste it. But when the Delightful Children steal the sacred Golden Scoop, Numbuh 5 finds herself dragged to the trap-laden temple, where the evil children force her to penetrate its inner sanctum. Will Numbuh 5 prevail in this frozen frenzy and get a taste of the fabled Fourth Flavor?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18207},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"Operation: K.I.S.S.","airDate":"2003-11-07","airDateUtc":"2003-11-08T00:25:00Z","overview":"It is a clear case of Dr. Jekyll and Mr. Hyde when Numbuh 2's attempt to create a formula to strengthen hamsters causes him to transform into a teenager and back! Thrown out of the treehouse by his unknowing teamates, he seemingly finds solace when he runs into Numbuh 5's evil sister Cree, and she develops a crush on him! But a bad situation only gets","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18208},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":13,"title":"Operation: G.H.O.S.T.","airDate":"2003-11-14","airDateUtc":"2003-11-15T00:00:00Z","overview":"It is a sad day in the treehouse, when Chubbo, one of the KND's power-providing hamsters passes away; and it is saddest for the overly sensitive Numbuh 3, who even maintains a vigil at his grave until the weather proves inclement. But unwise is the one who mourns too long for the dead, because during the dark and stormy night, a gang of ghostly hamster arrive, and drag the terrified Three to the hamster afterlife! Now the team must penetrate the very netherworld to rescue their friend, but can even the KND overcome a mob of restless rodents?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18209},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":14,"title":"Operation: F.U.G.I.T.I.V.E.","airDate":"2003-11-14","airDateUtc":"2003-11-15T00:25:00Z","overview":"An operative has apparently reached her thirteenth birthday, and is scheduled for decommission; but on route to the moon base, the transport ship carrying her is shanghied and forced to land. When the local KND arrive on the scene, they now must work with Decommission Officer Numbah 86, a boy-hating brat with a bad attitude! And when the fugitive flees to the Delightful Children's mansion, the","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18210},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":15,"title":"Operation: T.H.E.-S.H.O.G.U.N.","airDate":"2003-11-21","airDateUtc":"2003-11-22T00:00:00Z","overview":"Numbuh 2 and Numbuh 4 visit the grand opening of a cheese-themed restaurant which seems to have a big problem - an appalling lack of cheese! And when 2 reveals that he's brought his own, the source of the problem is revealed, when the operatives are kidnapped by cheese headed ninja, and then dragged before the Cheese Shogun, a mad martial artist who holds cheese to be more valueable than gold. Can 2 and 4 defeat this insane samurai and escape his deadly dairy dojo?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18211},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":16,"title":"Operation: C.O.L.L.E.G.E.","airDate":"2003-11-21","airDateUtc":"2003-11-22T00:25:00Z","overview":"Numbuh 1 hears word that a ten-year-old progidy has been accepted into a prestigious British College, and fears that the adults seek to remove his brain. With the rest of the team refusing to give up their day off, 1 travels across the Pond himself - only to find that the report was a ruse by the misunderstood mad scientist Professor Triple Extra-Large! The snow-cone expert has come close to perfecting his masterpiece, and now needs a test subject who is immune","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18212},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":17,"title":"Operation: R.E.P.O.R.T.","airDate":"2003-12-05","airDateUtc":"2003-12-06T00:00:00Z","overview":"The team is giving a report on their mission to retrieve a mysterious box, while trying to keep the Delightful Children from getting it. Unfortunately, each operative's version of the story is... exaggerated to say the least. Can their superiors find any truth in their speculative snafu?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18213},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":18,"title":"Operation: B.R.I.E.F.","airDate":"2003-12-05","airDateUtc":"2003-12-06T00:25:00Z","overview":"The Delightful Children put out a contract on Numbah One's head, and send the most unlikely of assassins - the sentient pair of underpants known as Mr. White! Unfortunately, his attacks make the team think that their leader has gone loco! Can Numbah One survive the assault of this unruly underwear? And is there more to this pair of beastly briefs than meets the eye?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18214},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":19,"title":"Operation: C.A.K.E.D.-T.W.O.","airDate":"2003-12-12","airDateUtc":"2003-12-13T00:00:00Z","overview":"The Delightful Children once again hold their annual birthday party in the usual sadistic manner - planning to eat their cake and not let any of their unwilling guests have so much as a taste. Like clockwork, the KND appear, but the crafty miscreants escape with the pastry. Hot on their heels, Numbuh 1 finds that his foes have sunk to the lowest form of cruelty, when he finds that one of the decoys that they have hired for their getaway is his own girlfriend Lizzie! Finally cornering the not-so-Delightful Children at a huge arena, the team has them cornered - until they unleash their most twisted trap to date: bringing the huge confection into a carnivorous creature! Can the Kids Next Door defeat this demonic dessert??!!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18215},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":20,"title":"Operation: S.P.A.C.E.","airDate":"2003-12-12","airDateUtc":"2003-12-13T00:25:00Z","overview":"On a rountine mission to the Moon Base - in which Numbuh 3 is forced to bring along her kid sister Moshi - the team encounters a seemingly abandoned prison transport ship; and thanks to Moshi, they crash into it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18216},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":21,"title":"Operation: B.E.A.C.H.","airDate":"2004-05-21","airDateUtc":"2004-05-21T23:00:00Z","overview":"The KND take a vacation to the beach (and Numbuh 1 promptly leaves, since he hates the place), where Numbuh 3 is quickly kidnapped by the armored Kinights of the Round Towel, who drag her before King Sandy, a miniature monarch who quickly falls in love with her! Naturally, the concerned Numbuhs 4 with Numbuhs 2 and 5 confronting the beachcombing brat in his enormous sandcastle... but they are soon overwhelmed. Can the KND topple this tiny tyrant before high tide?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18217},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":22,"title":"Operation: U.N.D.E.R.C.O.V.E.R.","airDate":"2004-05-21","airDateUtc":"2004-05-21T23:25:00Z","overview":"The Delightful Children have the team right where they want them (again), when suddenly, the helmet headed member (his name revealed as Lenny) pushes the wrong button on their vehicle, ruining the villains' plans. The KND start to head home, when they are called to the Moon Base, where they meet with Numbuh 274... and Lenny himself! The Delightful Child claims that he is the reason that his siblings plans always fail, and that he intends to help the KND organization by","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18218},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":23,"title":"Operation: D.O.G.F.I.G.H.T.","airDate":"2004-05-28","airDateUtc":"2004-05-28T23:00:00Z","overview":"Numbuh 2 has always been one of the best pilots in the organization - but one day while taking his 2X4 aircraft for a spin, he's shot down by a mysterious child pilot with a 2X4 plane of his own. 2 seeks revenge, but the pilot is untouchable, and manages to shoot him down out of every aircraft in the team's arsenal! Considering giving up, piloting, Hogie finally finds a way to defeat the pilot - only to discover that his supplier has been fooling them both into fighting each other in a plot to destroy every chili dog in town! Can the dueling dogfaces prevent this mystery meat massacre?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18219},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":24,"title":"Operation: T.R.I.P.","airDate":"2004-05-28","airDateUtc":"2004-05-28T23:25:00Z","overview":"Father learns that Numbuh 3 is traveling to her homeland to meet up with the secret Japanese branch of the Kids Next Door; so he sends his best spies, the Interesting Twins From Beneth the Mountain, to trail Kuki and find the location of the Japanese agents' hideaway so an attack can be made. But when the two young spies trail 3, a combination of thei","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18220},{"seriesId":243,"episodeFileId":0,"seasonNumber":2,"episodeNumber":25,"title":"Operation: E.N.D.","airDate":"2004-06-04","airDateUtc":"2004-06-04T23:00:00Z","overview":"When Numbuh 1 is fishing with his dad, Numbuh 86 and her group appear and tell him that he's been scheduled for a decommissioning! Although he escapes, his teammates are taken to be decommissioned, so he has to enlist the help of Numbuh 2's little brother Tommy to try and save them! Unfortunatly, he is too late, but can he still save the Moon Base from a fiery demise?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18221},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"Operation: F.U.T.U.R.E.","airDate":"2004-06-11","airDateUtc":"2004-06-11T23:00:00Z","overview":"Numbuh 4 learns he is to be sent to a boarding school - but he isn't worried, as he's always escaped from them before. But then he learns that the school is being run by the evil child Madam Margie, a girl who is getting high-tech aid from none other than her future self! Madam Margie's abominable plan is to create a twisted utopia where girls rule the world, using a demonic weapon called the girlifying ray that can turn anything feminine! The team seeming doesn't stand a chance - until they recieve aid from a strange source - Numbuh 4's OWN future self! Now the team must defeat this fiendish femme fatale and save the future, lest inter-gender relations between boys and girls perish forever!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18222},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":2,"title":"Operation: A.F.L.O.A.T.","airDate":"2004-06-18","airDateUtc":"2004-06-18T23:00:00Z","overview":"The Team attempts to crash the Annual We Hate The Kids Next Door Barbecue, only to find that the party has far more villains than they can handle! The team flees in their M.E.G.A.R.A.G.E aircraft, but Stickbeard and his band of buccaneers do not give up pursuit! When their craft is shot down by the Sweet Revenge, they land in the worst of places - in the middle of the ocean, in a disgusting sargasso of asparagus! Stranded, lost, with no edible food, a bad situation gets much worse when they are found by a great white aspargus monster! And when the vile vegetable seeks to make them its prey, all hope seems lost. Can their be any escape from this savage sprout?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18223},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":3,"title":"Operation: L.E.A.D.E.R.","airDate":"2004-06-18","airDateUtc":"2004-06-18T23:25:00Z","overview":"Nigel is exhausted and dirty after a hard mission, and when he takes a break, Lizzie intercepts a mission spec from Numbuh 65.3. Deciding to give Nigel a break, Lizzie tricks the rest of the team into thinking Nigel put him in charge, and assumes the role as leader. But Lizzie i","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18224},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":4,"title":"Operation: U.T.O.P.I.A.","airDate":"2004-06-25","airDateUtc":"2004-06-25T23:00:00Z","overview":"The evil Chester is developing his Happy Headband, a strange device he plans to sell to parents to keep kids \"\"out of their hair.\"\" Numbuh 1 breaks into his lab and steals it, but when escaping on his G.A.R.G.O.C.Y.C.L.E., Chester shoots him down. The operative lands on a strange island which seems to be a children's utopia - lakes are made of soda, candy grows from trees, you can have birthday cake for dinner, and best of all, no adults! But soon, Numbuh 1 r","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18225},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":5,"title":"Operation: R.O.B.B.E.R.S.","airDate":"2004-06-25","airDateUtc":"2004-06-25T23:25:00Z","overview":"It's time for the morning commute to school, and for once, Numbuh 4 is anxious to go, mostly because he has a crush on the new teacher. But on the way to school, the bus is attacked by kids dressed by cowboys packing chewing-gun loaded six-shooters, demanding the students' spelling homework! Now Numbuh 4 pursues the bandits outside, while Numbuh 5 engages them on the bus itself. Can they save the day before first bell? And who is the brains behind these delinquent desperadoes?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18226},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":6,"title":"Operation: F.O.U.N.T.A.I.N.","airDate":"2004-07-09","airDateUtc":"2004-07-09T23:00:00Z","overview":"The Delightful Children kidnap the team's classmate, nerdy, spit-talking \"\"Leaky\"\" Leona, and force her to lead them to the dark underbellies of the school. Alerted by Numbuh 5, the team follows them, and find themselves in an ancient school, laden with deadly booby traps. Avoiding them all, the team finds Leona, strangely aged to an old woman, who leads them to the mythical Fountain of Youth! The KND are amazed at the prospect of remaining ten years old forever, but the Delightful Children desire nothing less than to destroy the Fountain, claiming that the goal of all children should be to grow up. Can the Kids Next door save the supernatural spring? And what strange secret is \"\"Leaky\"\" Leona hiding?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18227},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":7,"title":"Operation: B.U.T.T.","airDate":"2004-07-16","airDateUtc":"2004-07-16T23:00:00Z","overview":"Feeling that Numbuh 1 must take a day off, the team force him to go to the beach, telling him to have fun or else. Nigel makes an honest attempt - until a crab swipes his swim trunks! After suffering a great amount of public embarrassment, 1 makes his way back to the Treehouse... and minutes later, walks out of his room to tell his terrified team that he's resigning from the Kids Next Door! After he leaves, the purpose becomes quite clear... an envelope is found in his room from the Delightful Children, with a picture of his tush and a note saying \"\"Leave your team behind or we'll put your behind in the school yearbook.\"\" Now Numbuh 1 is heading for Delightful Manor, where the evil peeping toms desire to make him one of them! Can the team save their leader from the sadistic shutterbugs?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18228},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":8,"title":"Operation: T.R.A.I.N.I.N.G.","airDate":"2004-07-16","airDateUtc":"2004-07-16T23:25:00Z","overview":"At the KND Arctic training facility (the second largest KND base in existence, and location of the top secret KND Code Module), young cadet Tommy is","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18229},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":9,"title":"Operation: A.R.C.H.I.V.E.","airDate":"2004-07-23","airDateUtc":"2004-07-23T23:00:00Z","overview":"The true history of the genesis of the Adult-Child conflict is revealed. This is the story the Adults do not want you to hear.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18230},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":10,"title":"Operation: S.L.U.M.B.E.R.","airDate":"2004-07-23","airDateUtc":"2004-07-23T23:25:00Z","overview":"Numbuh 86 is having a top-secret girls only slumber party. Numbuh 4 is willing to find out what the slumber party is all about even if it means having to put on a little make up.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18231},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":11,"title":"Operation: P.I.N.K.E.Y.E.","airDate":"2004-07-30","airDateUtc":"2004-07-30T23:00:00Z","overview":"Numbuh 2 has set up a private eye office in the school janitor closet, and soon he gets his first case - someone is inflicting students with bad cases of pink-eye! When Numbuh 86 becomes the latest victim and he gets no help from Joe the hall monitor (his old partner before he joined the KND), 2 does some of his own deductive work - until Joe attacks him. When he confronts the crooked monitor, Joe himself is attacked, and 2's investigations lead him to the school nurse - who appears to be using the students' illness to make the topping for crumb cake! Can Numbuh 2 close the case on this crummy cake caper?!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18232},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":12,"title":"Operation: K.A.S.T.L.E.","airDate":"2004-07-30","airDateUtc":"2004-07-30T23:25:00Z","overview":"Numbuh 3 takes her little sister Mushi for a ride through the Rainbow Monkey Sugar Coated Castle of Love, but what promises to be a day of fun is ruined when King Sandy and his knights attack! The insane sovereign has never given up in his quest to marry Numbuh 3, and he threatens to destroy the Rainbow Monkeys unless Kuki agre","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18233},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":13,"title":"Operation: C.A.K.E.D.-T.H.R.E.E.","airDate":"2004-08-06","airDateUtc":"2004-08-06T23:00:00Z","overview":"It's the Delightful Children From Down The Lane's birthday again, and that means it's time once again for the Kids Next Door to make off with their fantastic cake! But when the plan to egg the Delightfuls to submission goes afowl, the Kids must decide whether the cake is really worth it.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18234},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":14,"title":"Operation: L.O.C.K.D.O.W.N.","airDate":"2004-08-06","airDateUtc":"2004-08-06T23:25:00Z","overview":"Upon returning to the Treehouse, an injured Numbuh 1 orders a lockdown! But it soon becomes clear that the five are trapped with Count Spankulot! But is the Count the real intruder? Or is another spank-happy vampire in their midsts?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18235},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":15,"title":"Operation: G.R.A.D.U.A.T.E.S","airDate":"2004-08-06","airDateUtc":"2004-08-06T23:50:00Z","overview":"Hoagie and the gang go to the KND Academy to watch his brother Tommy graduate while Father plans an all-out attack.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18236},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":16,"title":"Operation: H.U.G.S.","airDate":"2004-08-13","airDateUtc":"2004-08-13T23:00:00Z","overview":"Numbuh 4's disgust at anything Rainbow Monkey only increases when he finds himself trapped on Rainbow Monkey with a garganturn, montstrous Rainbow Monkey Kong.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18237},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":17,"title":"Operation: J.E.W.E.L.S.","airDate":"2004-08-13","airDateUtc":"2004-08-13T23:25:00Z","overview":"Numbuh 5 journeys to the exotic Al-Suhgar Desert to recover her stolen candy, the Blurpleberry Supreme, and discovers she's not the only one searching for the powerful, mystical candy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18238},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":18,"title":"Operation: T.R.I.C.K.Y","airDate":"2004-10-29","airDateUtc":"2004-10-29T23:00:00Z","overview":"Trivial Rival Instigates Candy Krazy Yearning","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18239},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":19,"title":"Operation: U.N.C.O.O.L.","airDate":"2004-10-29","airDateUtc":"2004-10-29T23:25:00Z","overview":"Numbuh 4 tries to get his candy back from Stickybeard on Halloween.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18240},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":3,"title":"Operation: F.O.O.D.F.I.T.E.","airDate":"2004-11-05","airDateUtc":"2004-11-06T00:00:00Z","overview":"Grandma Stuffum returns as the cafeteria lady with some sinister recipes.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18247},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":4,"title":"Operation: C.L.U.E.S.","airDate":"2004-11-05","airDateUtc":"2004-11-06T00:25:00Z","overview":"A dinner with Numbuh 2's family turns sour when Numbuh 3's Sigh & Care Rainbow Monkey is found with a fork in it's back, it's up to Hoagie to find this monkey murderer.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18248},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":20,"title":"Operation: P.R.E.S.I.D.E.N.T.","airDate":"2004-11-06","airDateUtc":"2004-11-07T00:00:00Z","overview":"The KND try to get the Fourth Grade Class President to his Town Council meetings safely. A parody of Air Force One.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18241},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":21,"title":"Operation: H.O.S.P.I.T.A.L.","airDate":"2004-11-06","airDateUtc":"2004-11-07T00:25:00Z","overview":"An important operative suffers an accident on a dangerous mission and is sent to the hospital. But one ex-KND member is out to scramblify his brain, and it's up to Sector V to make sure he is safe, especially Numbuh 3.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18242},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":22,"title":"Operation: S.P.R.O.U.T.","airDate":"2004-11-12","airDateUtc":"2004-11-13T00:00:00Z","overview":"Numbuh 4 accidentally eats a brussels sprout, sending the rest of the KND on an emergency Fantastic Voyage to stop the dreaded vegetable from being digested.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18243},{"seriesId":243,"episodeFileId":0,"seasonNumber":3,"episodeNumber":23,"title":"Operation: H.O.U.N.D.","airDate":"2004-11-12","airDateUtc":"2004-11-13T00:25:00Z","overview":"Numbuh 5 takes on a vicious dog who is always eating her homework.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18244},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":1,"title":"Operation: R.A.B.B.I.T.","airDate":"2004-11-19","airDateUtc":"2004-11-20T00:00:00Z","overview":"The Temple of Doom, of the KND parodies. Abigail and Hogie venture deep into the Jungle Gym to recover Mr. Fluffleupagus, the second grade mascot bunny, & come across Heinrich Von Marzipan who has a sticky plot in store.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18245},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":2,"title":"Operation: F.L.U.S.H.","airDate":"2004-11-19","airDateUtc":"2004-11-20T00:25:00Z","overview":"In an attempt to capture the KND's Treehouse, the Adult villains learn that there is no such thing as a \"foolproof\" plan when the fool you're dealing with is the Toilenator!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18246},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":7,"title":"Operation: P.O.O.L.","airDate":"2004-11-19","airDateUtc":"2004-11-20T00:50:00Z","overview":"Prevent Opposite Operative's Larceny: Numbuh 4's new pool contains a portal that leads into a \"negative\" equivalent of the KND's world, where children obey evil dictator Negative Numbuh 4 and work for adults. A parody of Star Trek's \"Mirror, Mirror\".","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18251},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":8,"title":"Operation: C.A.K.E.D.-F.O.U.R.","airDate":"2004-11-26","airDateUtc":"2004-11-27T00:00:00Z","overview":"Children's Annual Kompetition Exposes Devilishly \u2013 Fiendish Operation Up River: When the Delightful Children promise their birthday cake to the winner of the Tubathon, everyone is raring to go, especially Numbuh 2. With his old tube Betsy, and his \"Farfegtubing\", will Numbuh 2's dreams come true? Or do the Delightful Children have other plans?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18252},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":5,"title":"Operation: N.U.G.G.E.T.","airDate":"2004-12-03","airDateUtc":"2004-12-04T00:00:00Z","overview":"Numbuh 4 tries to protect chicken nugget mines from the DCFDTL.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18249},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":6,"title":"Operation: M.A.C.A.R.R.O.N.I.","airDate":"2004-12-03","airDateUtc":"2004-12-04T00:25:00Z","overview":"The KND try to protect the Macaroni Museum of Art from being ransacked, with the worst KND operative ever, Numbuh 13, on their side.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18250},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":11,"title":"Operation: C.H.O.C.O.L.A.T.E.","airDate":"2004-12-10","airDateUtc":"2004-12-11T00:00:00Z","overview":"Numbuh 5 tries to stop a chocolate monster from destroying her friends.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18255},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":12,"title":"Operation: M.A.T.A.D.O.R.","airDate":"2004-12-10","airDateUtc":"2004-12-11T00:25:00Z","overview":"Numbuh 4 must choose between his job as a KND operative or be a bully fighter.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18256},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":9,"title":"Operation: V.I.R.U.S.","airDate":"2005-01-09","airDateUtc":"2005-01-10T00:00:00Z","overview":"Numbuh 5 tries to save her sister Cree from a contagious disease that KND have made in revenge for creating chicken pox which is revealed to be a giant pimple on Cree's cheek. Cree has unleashed Patient C before leaving the KND Scientific Research SeaBase.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18275},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":10,"title":"Operation: O.U.T.B.R.E.A.K.","airDate":"2005-01-09","airDateUtc":"2005-01-10T00:25:00Z","overview":"The KND scientists at the Deep-Sea Science Lab capture \"Patient C\", due to their belief that she has cooties. When Cree lets Patient C out of her containment unit, in Operation: V.I.R.U.S. , as revenge for the KND ruining Cree's date with Numbuh 9, can Sector V recapture the escape without catching \"the C.O.O.T.I.E.S.\"?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18276},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":13,"title":"Operation: L.U.N.C.H.","airDate":"2005-02-21","airDateUtc":"2005-02-22T00:00:00Z","overview":"Lizzie feels that Nigel works too much during lunch, so she forces him to have lunch with her, but he can't work. Meanwhile, a group of lunch thieves and their leader Robin Food break into the cafeteria and start stealing everybody's lunches, including Lizzie and Numbuh 1's.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18257},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":14,"title":"Operation: M.U.N.C.H.I.E.S.","airDate":"2005-02-21","airDateUtc":"2005-02-22T00:25:00Z","overview":"The KND have run out of Rainbow Munchies, their favorite cereal, so they send out tennis-ball probes to find a box. They find it in Aisle Number 60-teen at the Supervillains Supermarket & Deli, but it is the last one the store has, and it's as popular with the bad guys as it is with the KND!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18258},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":9,"title":"Operation: S.I.T.T.E.R.","airDate":"2005-04-29","airDateUtc":"2005-04-29T23:00:00Z","overview":"Sweetheart's Involvement Transforms The Evening's Reality. Cree Lincoln becomes the Gilligan bros.'s new babysitter. A parody of Little Nemo: Adventures in Slumberland.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18253},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":10,"title":"Operation: S.A.T.U.R.N.","airDate":"2005-04-29","airDateUtc":"2005-04-29T23:00:00Z","overview":"Stuff Abducted Turns Up Nowhere The KND try to stop a mysterious being from collecting all the Rainbow Monkeys in the world-- including Numbuh 3's beloved toys. A parody of Star Trek: The Motion Picture.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18254},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":15,"title":"Operation: K.N.O.T.","airDate":"2005-04-29","airDateUtc":"2005-04-29T23:00:00Z","overview":"Numbuh 1 battles a group of snake ties with an adult against them.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18259},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":16,"title":"Operation: C.L.O.S.E.T.","airDate":"2005-04-29","airDateUtc":"2005-04-29T23:00:00Z","overview":"The KND try to rescue a boy from a monster in the closet.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18260},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":1,"title":"Operation: E.L.E.C.T.I.O.N.S.","airDate":"2005-05-06","airDateUtc":"2005-05-06T23:00:00Z","overview":"The KND are up against more than they bargained for when they try to prevent the DCFDTL for dashing the school elections, especially when the situation involves 8th graders.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18267},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":4,"title":"Operation: B.U.L.L.I.E.S.","airDate":"2005-05-13","airDateUtc":"2005-05-13T23:00:00Z","overview":"Numbuh 2 and Numbuh 4 visit Bully Island, a bully habitat owned by Jerry Rassic (an obvious parody of Jurassic Park). Numbuh 2 is interested in the scientific aspect of it, while Numbuh 4 is only in it to see the different types of bullies on the island. After seeing a 'teasing time' (similar to feeding time, but instead kid crash dummies are set on swings and Spitballasaurises come and shot spitballs at them), Numbuh 2 asks Jerry anxiously if he's ever worried about his own safety, being surrounded by bullies all the time. Jerry replies that Bully Island is perfectly safe, and the bullies are in cages that keep them away from him and his sister Eliza, who also lives on the island.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18270},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":5,"title":"Operation: F.I.S.H.Y.","airDate":"2005-05-13","airDateUtc":"2005-05-13T23:25:00Z","overview":"Numbuh 4 shakes the bowl that contains Numbuh 3's pet fish, Mr. Fishy, and kills him by accident. When Numbuh 3 sees her fish dead, she assumes he's just sleeping. The team decides that Numbuhs 2 and 4 should dump the fish while 1 and 5 try to win a new one from a fair, all without Numbuh 3's knowledge of the plan. After they leave, Numbuh 3 comes to check on Mr. Fishy and thinks that someone stole him when she finds him missing.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18271},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":17,"title":"Operation: S.N.O.W.I.N.G.","airDate":"2005-05-20","airDateUtc":"2005-05-20T23:00:00Z","overview":"Jimmy McGarfield (the fourth-grade president) forces other kids back into school on a first snow day for a special assembly after Numbuh One is too sick to play. A parody of Star Wars Episode V: The Empire Strikes Back and the buswalkers of The War of the Worlds.What's worse than Numbuh 1 being sick on the first snow day of the year? Why, the evil Fourth Grade President Jimmy spoiling everything, of course! The nasty Class President wants everyone back at school for a special assembly, especially for selfish reasons. When the other 4 try to stop Jimmy by rallying the kids against him, their attempts are unsuccessful and they are immediately captured. When Jimmy tries to crown Lizzie his queen with a Girlfriend\/Boyfriend Helmet, Numbuh 1 must defeat Jimmy and free her despite his cold. Anna eventually frees the KND and helps Numbuh 1 infiltrate the school. At the start of the assembly, the final fight began. As the KND thrash President Jimmy's Hall Monitors, Numbuh 1 and Jimmy face off with rulers and brooms (parody of light sabers) but Numbuh 1 is knocked down by Jimmy. As Jimmy tries to finish him off, Nigel uses the thermos containing Lizzie's disgusting soup, which she gave him earlier, as a shield. The thermos breaks and the soup drops to Lizzie where the girlfriend helmet is broken due to the soup. The battle is over and Commandos sent by KND Global Command arrive to apprehend Jimmy and Anna. As Jimmy is being apprehended, Anna reveals her love for Jimmy. Numbuh 4 is disgusted by this and when he says that he will never act \"lovey-dovey\" with anybody, Numbuh 3 pushes him onto the ground and walks away angry","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18261},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":2,"title":"Operation: D.U.C.K.Y.","airDate":"2005-05-20","airDateUtc":"2005-05-20T23:00:00Z","overview":"Tommy refuses to take a bath, until he goes down the drain (literally)! He meets Captain Jimmy, a parody of Captain Kirk in Star Trek, who is the high-strung leader of the crew of a ship called the S.S. Stinkypants. Tommy gets inevitably involved in a battle with Moby Duck, which ends with the crew hiding from the giant bird in bubble fog. The team attacks Moby Duck after hearing an inspired speech by Tommy, but the plan goes overboard and Tommy and Captain Dirt learns why it's usually a good idea to listen to your parents!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18268},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":3,"title":"Operation: D.I.A.P.E.R.","airDate":"2005-05-20","airDateUtc":"2005-05-20T23:25:00Z","overview":"Numbuhs 1-4 are on a mission to save the babies from being transformed into adults at the hospital. After they return to the treehouse, the try to care for the babies, with little success. Numbuh 5 then comes in and yells at them for taking the babies, saying they were born there. She then asked Numbuh 1 if he even knows where babies come from, he replies \"Of course I do, they come from baby eggs,\" Numbuh 5 then attempts to tell them were babies come from, but the babies start crying. Numbuh 1 blames Numbuh 5 and she leaves.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18269},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":6,"title":"Operation: B.R.E.A.K.U.P.","airDate":"2005-05-27","airDateUtc":"2005-05-27T23:00:00Z","overview":"Wallabee Beetles is charged with protecting his mom's prized\/priceless koala bear vase, or he'll have to go to Ballroom Dancing School for ballroom dancing lessons. This becomes increasingly hard as the vase is stolen. He follows the robber, which takes him to a base ball stadium and used for a baseball-like game called \"Vaseball\", where kids use glass and pottery as the balls. Numbuh 4 thinks he must play, and turns out to be very good. But then, the pitcher throws the vase he was supposed to protect. He tries to get away with the vase, only to find himself in a room of bullies. In the office, Wallabee uncovers an insidious plot by his old friend turned enemy Ernest (the commissioner of Vaseball) and his band of bullies, who plan to rat the kids out for their misbehavior, so they can get the kids grounded that way no one can tattle on them as they vandalize every house in the neighborhood. He accidentally knocks over a bookshelf -- \"Uhh... Does that count as a home run?\" He gets away, only to find himself in a match to the death with Ernest. They duel with plates, vases, and all sorts of breakable china. The only thing they don't destroy is the vase Wallabee is supposed to protect. Finally, he knocks a bookcase on Ernest, knocking him out cold. He saves the vase, but the other bullies have already carried out their plan. Every kid (including Ernest) is grounded except for Wallabee. \"He will always live in the hearts of kids who love to break things.\" As the screen goes black, we can hear the vase finally breaking and his mother angrily screaming \"WALLABEE!\". It's unknown if she follows through with her earlier threat.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18272},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":7,"title":"Operation: S.A.F.A.R.I.","airDate":"2005-05-27","airDateUtc":"2005-05-27T23:25:00Z","overview":"Numbuh 1 goes to the doctor to get moosebump shots, and the doctor turns out to be Chester who turns him into a moose. Chester then chases him around his jungle office using various weapons to shoot shots at him including a cross bow and a rifle until he finally hits Numbuh 1. Chester then reveals that he was really creating moosebumps to turn kids into mooses and ground up their antlers to make moosicles, which are ice creams with mooses' antlers coming out of them. It is then revealed that it was just a pathetic attempt by Numbuh 1 to change his mother's mind about giving him his moosebump shots. It is then revealed that Chester really is the doctor he goes to. The end credits is a moosicle ad.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18273},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":18,"title":"Operation: M.A.U.R.I.C.E.","airDate":"2005-07-08","airDateUtc":"2005-07-08T23:00:00Z","overview":"Maurice, a member of the Kids Next Door is de-commissioned. Numbuh 5 is saddened by it, and suggests that they monitor Maurice to make sure the teenagers don\u2019t recruit him.The episode starts when a group of Teens break in to ten year old Numbuh 9's bedroom. Thinking that he is asleep, they try to fire their 'Pox Gun' at him. Suddenly, Numbuh 9 leaps up and yells for the rest of his team, the old Sector V, and they bravely fight off the Teens.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18262},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":19,"title":"Operation: L.O.V.E.","airDate":"2005-07-15","airDateUtc":"2005-07-15T23:00:00Z","overview":"Numbuh 3 stars in a romantic musical as the lead girl. But when Numbuh 4 interrupts the play, it becomes a real war on stage between the DCFDTL and the KND.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18263},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":20,"title":"Operation: C.O.U.C.H.","airDate":"2005-07-15","airDateUtc":"2005-07-15T23:25:00Z","overview":"Numbuh 4 tries to battle it out with an evil adult in his couch.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18264},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":21,"title":"Operation: D.O.D.G.E.B.A.L.L.","airDate":"2005-07-22","airDateUtc":"2005-07-22T23:00:00Z","overview":"Numbuh 4 tries to battle against the Dodgeball Wizard for his rank.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18265},{"seriesId":243,"episodeFileId":0,"seasonNumber":4,"episodeNumber":22,"title":"Operation: F.E.R.A.L.","airDate":"2005-07-22","airDateUtc":"2005-07-22T23:25:00Z","overview":"Numbuh 1 and Sector V are on Rainbow Monkey Island trying to take \"The Code\" from the Delightful Children.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18266},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":8,"title":"Operation: N.A.U.G.H.T.Y","airDate":"2005-12-16","airDateUtc":"2005-12-17T00:00:00Z","overview":"A Christmas Episode.\r\n\r\nHow the Delightfuls stole Christmas. The story is similar to How the Grinch Stole Christmas, but has many elements from the X-men series.\r\n\r\nWhen the Delightful Children From Down The Lane steal Santa's REINDEER machine and frame Sector V for the crime. The DCFDTL plan to use the REINDEER system to get all the presents for themselves while every other kid will get nothing coal! Now, the Sector V team must fight the Elfa Strike team if they are going to clear their names and prevent the DCFDTL from ruining Christmas.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18274},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":11,"title":"Operation: C.A.N.Y.O.N.","airDate":"2006-01-20","airDateUtc":"2006-01-21T00:00:00Z","overview":"The scene opens up with a large barricade in the surrounding desert that's blocking a large amount of traffic. KND personnel who is led by Numbuh 5 guard this barricade as a bus full of senior citizens charges through, crashing through the barricade only to be stopped a moment later by a large net trap.\r\n\r\nNumbuh 5 deters the bus to retreat, falsely claiming that \"denture-eating bears\" were seen around the area, which causes the senior citizens to hurriedly retreat. It is then discovered that the Kids Next Door are blocking all ground and air access towards the Grand Canyon, with Numbuh 2 forcing planes to turn around from passing over the area.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18277},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":12,"title":"Operation: H.O.L.I.D.A.Y.","airDate":"2006-01-20","airDateUtc":"2006-01-21T00:25:00Z","overview":"Numbuhs 2 and 3 are about to take a plane of hamsters to Jamaica for their annual holiday vacation. Lizzie then arrives at the treehouse, intent on giving Numbuh 1 a pie she had baked for him.\r\n\r\nNumbuh 2 and 3 inform her that Numbuh 1 is on a secret mission in Sector J (Jamaica), but they inadvertently mention that he is actually on vacation with Numbuh 10, who is the prettiest of all the operatives according to Numbuh 2 and 3. Lizzie becomes furious that Numbuh 1 lied to her and that he may be cheating on her with Numbuh 10. She demands Numbuh 2 and 3 to take her to Sector J so that she can deliver the pie to Numbuh 1 to his face.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18278},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":13,"title":"Operation: C.A.K.E.D. F.I.V.E.","airDate":"2006-04-14","airDateUtc":"2006-04-14T23:00:00Z","overview":"The KND revive Numbuh 19th Century in order to learn about an old delicious cake recipe even more delicious than the Delightful Children's cake, that used to be baked annually by the DCFDTL's predecessors: the Annoyingly Cute Triplets Who Lived Upon The Hill. However, this plan lures the KND all the way to the DCFDTL's cake in outer space, which is really a huge space station with the ice cream cake as its outer layer with the power to destroy huge storage facilities, where Father plots to destroy all the ice cream in the universe. This was so that when the DCFDTL eat their ice cream cake, it will be the last ice cream in the universe.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18279},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":14,"title":"Operation: R.E.C.R.U.I.T.","airDate":"2006-06-16","airDateUtc":"2006-06-16T23:00:00Z","overview":"n eccentric child named Bobby is obsessed with the KND, and has great desire to join. After mailing 38 videos to them, he abruptly receives a message on his computer that reads \"are u in?\". He is then lead to an abandoned KND treehouse, where he is given the decision to continue life as a normal kid, or to face the danger of being a KND operative. After choosing to be an operative, Sector V gives him various missions, but can he handle it?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18280},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":15,"title":"Operation: D.A.D.D.Y.","airDate":"2006-06-16","airDateUtc":"2006-06-16T23:25:00Z","overview":"Numbuh 85 is taken to the KND Hairstyle Headquarters (Sector HH). Numbuh VO5 and his hair doctors try to get his hair back to some form of coolness. It didn't work. Numbuh 1 hides in the room that Numbuhs 83, 84, and 85 are in and informs the trio that the hair doctors were trying to rub dog poop on his head to see if it (his hair) can grow back. Numbuh 1 then notices Numbuh 85's haircut asking \"Leaping Lizzies! What did they do to you?!\". Numbuh 85 responds that the hair doctors didn't do it, his father did.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18281},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":16,"title":"Operation: C.L.O.W.N.","airDate":"2006-07-07","airDateUtc":"2006-07-07T23:00:00Z","overview":"The episode starts with Numbuh 2 cracking bad puns during his report on King Arthur and his knights. Later, Numbuh 5 punches Numbuh 2 and he asks what was that for. Numbuh 5 says it's for having her listen to those lame jokes. Numbuh 2 counters with a newspaper column saying he's the four star riot of fourth grade. Numbuh 5 than says the column was written by Numbuh 2 himself. This doesn't effect Numbuh 2 and he asks if he should of given himself more stars.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18282},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":17,"title":"Operation: S.P.A.N.K.E.N.S.T.I.N.E.","airDate":"2006-07-07","airDateUtc":"2006-07-07T23:25:00Z","overview":"Once-sweet Mushi Sanban has one thing in mind after Numbuh 2 got her grounded for forking Numbuh 3's Posh-Party Rainbow Monkey Doll- her lust for vengeance. She plans his comeuppance by digging the Rainbow Monkey from its burial site at Plush Meadows Stuffed Animal Cemetery, and transferring Count Spankulot's powers into her Spankenstine Monster. Meanwhile, Numbuh 2 faces the monster at the local grocery store while getting chocolate sauce. After defeating the Spankenstine Monster, Numbuh 2 returns to the house to confront Mushi, however Numbhuh 2 is out matched by Mushi's Crayon base powers. However, Count Spankulot sucks out the stolen powers in the Rainbow Monkey doll to gain his powers back and unleshes a spanking wrath for transferring his powers to stuffed animals. Count Spankulot then joins the Gilligans and the Sanbans for dessert, and Numbuh 2 then sneaks a sundae to Mushi, only to discover her riding away with King Sandy.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18283},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":18,"title":"Operation: H.O.T.S.T.U.F.F.","airDate":"2006-07-14","airDateUtc":"2006-07-14T23:00:00Z","overview":"Before the theme starts, Kani tells his eldest daughter, Kuki, not to touch the thermostat even though the house is unbearably cold. After seeing the thermostat's temperature dropping to colder temperature, Kuki decides to touch the thermostat and make things hotter.\r\n\r\nThe next day, the other Sector V agents are gathered for a meeting. Nigel goes jabbering on about cauliflower being rainbow monkey brains. The rest of Sector V doubted this and, while Nigel jabbers on, Kani comes in and tells the agents about Kuki turning up the thermostat. Nigie leaves Wallabee to guard Kani. The rest of Sector V shows up to Kuki's house which is now transformed into an active volcano and ready to explode. Rachel suggests sending Sector P in Pompeii to turn down the thermostat as they have more experience with volcanoes but Numbuh 1 disapproves of this since Kuki is a member of their sector.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18284},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":19,"title":"Operation: M.I.S.S.I.O.N.","airDate":"2006-07-14","airDateUtc":"2006-07-14T23:25:00Z","overview":"Numbuh 4 sets free Mr. Boss, Count Spankulot, Stickybeard, and Soccer Mom and offers them suspended sentences if they do what he says, which is why he has taken the liberty of poisoning their sodas! In 48 hours, the villains' tonsils will inflate to ginormous blimps until their tonsils pop like balloons. Toiletnator escapes from the Arctic Prison and drinks the soda, forcing Numbuh 4 to include him as well. The only way for the villains to get the antidote it to win a bowling tournament being held at Pinhead Lanes Bowling Alley. The reason why Numbuh 4 wants the villains to win is because he's tired of polishing his dad's trophies.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18285},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":20,"title":"Operation: L.I.C.O.R.I.C.E.","airDate":"2006-08-04","airDateUtc":"2006-08-04T23:00:00Z","overview":"Heinrich Von Marzipan is kidnapped from the KND Arctic Prison by a ship of black licorice pirates. After the theme song, it shows a different scene where a large group of candy pirates are drinking pure sugar. After Stickybeard defeats a candy pirate at drinking sugar. Stickybeard challenges anybody to face Stickybeard. No one answers but Numbuh 5 is next and challenges Stickybeard to a chugging match to see who can drink a cup of sugar faster. Numbuh 5 wants information about Heinrich's disappearance, which somehow involves black licorice, in return if she wins. Stickybeard is even dared when Numbuh 5 says Stickybeard is \"Sugar free\". Sticky accepts but loses to Abby. Stickybeard asks for 2 outta 3 but Numbuh 5 declines. So Stickybeard begins telling a tale in song, along with the rest of the candy pirates. The pirates tell the tale of Black John Licorice and his pirate crew who find a island near North Dakota filled with red licorice trees. Black John took all the trees but a terrible misfortune was exposed for him and the pirates. The fate was that the licorice turned black and every night, the pirates would turn into licorice and at dawn and day, they would become a pile of bones. The pirates soon discover from a gypsy fortune-teller that they must plant a licorice seed that she gives them on the island so the licorice would grow again, and the curse would be broken. The pirates do so but while on the island, the dawn rose and they became a pile of bones.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18286},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":21,"title":"Operation: H.O.M.E.","airDate":"2006-08-04","airDateUtc":"2006-08-04T23:25:00Z","overview":"It starts out when Numbuh 3 was a baby, she receiving a purple rainbow monkey called \"My First Rainbow Monkey\" at birth. The next couple of scenes show Numbuh 3 taking her first steps, learning to ride a bike, and graduating into the Kids Next Door with My First Rainbow Monkey by her side each time. My First Rainbow Monkey also grows a beard throughout these flashbacks.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18287},{"seriesId":243,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Operation: Z.E.R.O.","airDate":"2006-08-11","airDateUtc":"2006-08-11T23:00:00Z","overview":"The enemies of the Kids Next Door, led by Father, join forces to resurrect the Ultimate Evil, Grandfather, a tyrant who once ruled the world many years ago when most of the villains were themselves kids. When Grandfather uses his reality-warping powers to reconquer the world and transform every human on the planet into his obedient \"Senior Citi-Zombies\" slaves who are forced to make Tapioca to refuel Grandfather so he can find and destroy the Book of K.N.D. The Kids Next Door are quickly overrun and transformed.\r\n\r\nIt falls upon Numbuh 1 to locate the KND's only hope for salvation, the legendary hero Numbuh 0. In the process, Numbuh 1 learns some startling revelations about the origins of the KND, his arch-enemies Father and the Delightful Children From Down The Lane, and even his own family history.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18168},{"seriesId":243,"episodeFileId":0,"seasonNumber":5,"episodeNumber":22,"title":"Operation: I.T.","airDate":"2006-08-24","airDateUtc":"2006-08-24T23:00:00Z","overview":"Every year, the KND choose someone to be \"IT\" which involves a game of tag to choose the next Supreme Leader, so Numbuh 362 sets up the game after she decides to resign after being tired of the job. But when Numbuh 2 accidentally tags Father, he becomes Supreme Leader.\r\n\r\nNow, it's up to Numbuh 1 and Numbuh 362 to stop him before he wipes out the entire KND.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18288},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":1,"title":"Operation: S.A.F.E.T.Y.","airDate":"2006-08-25","airDateUtc":"2006-08-25T23:00:00Z","overview":"When a kid-friendly senator receives a funding of approximately eleven-billion dollars, he uses it to build an army of Safety-bots, to make the world a safe place for children. But the robots grow more and more extreme in their actions, eventually planning to eliminate adults, and cover the Earth in bubble wrap","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18289},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":2,"title":"Operation: E.N.G.L.A.N.D.","airDate":"2006-09-15","airDateUtc":"2006-09-15T23:00:00Z","overview":"When Numbuh 1 is taken to England, someone gives him a book, resulting in Numbuh 1 getting followed by 3 kids.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18290},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":3,"title":"Operation: A.W.A.R.D.S.","airDate":"2006-09-15","airDateUtc":"2006-09-15T23:25:00Z","overview":"Sector V attempts to sabotage the Villain's Choice Awards.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18291},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":4,"title":"Operation: R.E.C.E.S.S.","airDate":"2006-09-22","airDateUtc":"2006-09-22T23:00:00Z","overview":"When salad oil is discovered in the school playground, Numbuh 1 must find a way to save recess, while still keeping a promise to Lizzie.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18292},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":5,"title":"Operation: H.A.M.S.T.E.R.","airDate":"2006-09-22","airDateUtc":"2006-09-22T23:25:00Z","overview":"While the team is off on their recess-rescuing mission, the hamsters are attacked and captured by the Sinister Felines from Atop the Litterbox, but end up battling the Hamsters Next Door.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18293},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":6,"title":"Operation: W.H.I.T.E.H.O.U.S.E.","airDate":"2006-09-29","airDateUtc":"2006-09-29T23:00:00Z","overview":"Numbuh 1 wakes up to discover that he is the president of the United States in an alternate dimension, who is about to sign the Bill of No Rights For Kids.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18294},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":7,"title":"Operation: S.P.I.N.A.C.H.","airDate":"2007-01-05","airDateUtc":"2007-01-06T00:00:00Z","overview":"Amerigo Vespinaccio tries to spread spinach throughout the school, and it's up to Sector V to stop him.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18295},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":8,"title":"Operation: M.E.S.S.A.G.E.","airDate":"2007-01-05","airDateUtc":"2007-01-06T00:25:00Z","overview":"Numbuh 2 attempts to deliver the fourth grade president's message.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18296},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":9,"title":"Operation: B.R.I.D.G.E.","airDate":"2007-01-12","airDateUtc":"2007-01-13T00:00:00Z","overview":"Numbuh 20,000 and his Squid Squad work with Sector V to destroy the bridge leading into Le Sissie, a store in the mall that sells horrible back-to-school clothes for kids.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18297},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":10,"title":"Operation: S.I.X.","airDate":"2007-01-12","airDateUtc":"2007-01-13T00:25:00Z","overview":"Numbuhs 2, 3, and 6 are tricked and must get a truckload of soda to a girl's birthday party and keep Mr. Fizz and Lieutenant Seltzer from getting the soda.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18298},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":11,"title":"Operation: T.R.I.C.Y.C.L.E.","airDate":"2007-01-19","airDateUtc":"2007-01-20T00:00:00Z","overview":"Tommy loves Numbuh 2's cruddy, old tricycle but gets laughed at when the other kids see him riding it. Using his 2x4 technology expertise, Tommy rebuilds it into the \"Best Bike in the Whole World\", but the bike turns evil trying to impress Numbuh 2.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18299},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":12,"title":"Operation: C.R.I.M.E.","airDate":"2007-01-26","airDateUtc":"2007-01-27T00:00:00Z","overview":"When Gallagher Elementary students are being arrested by the School Safety Patrol for crimes they are envisioned to commit, including detective Numbuh 2, it's up to Numbuh 3 to investigate a psychic member of the School Safety Patrol while trying to finish her social studies homework.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18300},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":13,"title":"Operation: P.A.R.T.Y.","airDate":"2007-01-26","airDateUtc":"2007-01-27T00:25:00Z","overview":"With Father away for the day, The DCFDTL invite Cree and the teenagers to their mansion to plan a new strategy against the Kids Next Door, but instead, the teenagers turn it into a wild house party, leaving the DCFDTL to call Sector V for help.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18301},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":14,"title":"Operation: D.O.G.H.O.U.S.E.","airDate":"2007-06-01","airDateUtc":"2007-06-01T23:00:00Z","overview":"Numbuh 5 goes into the Haunted Doghouse to get Sector V's cinder block back, but later comes out with different results.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18302},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":15,"title":"Operation: P.L.A.N.E.T.","airDate":"2007-06-01","airDateUtc":"2007-06-01T23:25:00Z","overview":"Numbuhs 3 and 4 are launched into space to break the \"Ridiculous\" space barrier, but black out in mid-flight and wake up on a world ruled by anthropomorphic, talking Rainbow Monkeys.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18303},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":16,"title":"Operation: S.C.I.E.N.C.E.","airDate":"2007-11-02","airDateUtc":"2007-11-02T23:00:00Z","overview":"This episode illustrates a day at the annual kids' 2x4 tech science fair. Numbuh 2 is present, shoving his \"I Can't Believe It's Not Booger\" product down the judges' throats.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18304},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":17,"title":"Operation: A.M.I.S.H.","airDate":"2007-11-02","airDateUtc":"2007-11-02T23:25:00Z","overview":"Continues from Operation: S.C.I.E.N.C.E.. Sector V sends Numbuh 2 into hiding at an Amish sector to his extreme dismay.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18305},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":18,"title":"Operation: G.I.R.L.F.R.I.E.N.D.","airDate":"2007-11-09","airDateUtc":"2007-11-10T00:00:00Z","overview":"Lizzie's always had to compete with the Kids Next Door for Nigel's attention, and she thinks Nigel has found a new girlfriend. but now it seems she has a rival for his love!","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18306},{"seriesId":243,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"The Grim Adventures of the Kids Next Door","airDate":"2007-11-11","airDateUtc":"2007-11-12T00:00:00Z","overview":"When Billy's dad leaves to buy underwear, Billy wears his dad's \"lucky pants\", despite being told not to. Billy accidentally gets Grim's scythe stuck in the pants, and he tries to get help fixing them before his dad gets home. He calls \"Ed, Edd, n Eddy's Pesky Problem Fixers\", but Billy doesn't have any money, so Eddy tells him to call the Kids Next Door since \"they're cheap.\"\r\n\r\nThe KND soon arrive (Billy is confused by this, stating that he tried to call the Power Puff Girls\"), and they find they need 2x4 Technology, so Numbuh 1 dresses up as Billy to stall Billy's dad, while the rest of Sector V take Billy to the KND Deep Sea Base to fix the pants. Mandy comes to Billy's house, and knows that Numbuh 1 is not Billy. Mandy captures Numbuh 1, and tortures him until Numbuh 1 tells Mandy everything about the KND.\r\n\r\nMeanwhile, the rest of Sector V are flying Billy to the Deep Sea Base, and they get an urgent message that the Delightful Children from Down the Lane are using a \"delightfulization machine\" to make more children into their delightful slaves. Sector V reluctantly takes Billy on the mission, where he mistakes the delightful machine for a bathroom, fusing him, the lucky pants, Grim's scythe and the Delightful Children (who only ran inside the machine to pull Billy out) into a being called the \"Delightful Reaper\".\r\n\r\nMeanwhile, Grim comes to Billy's house, and mistakes Numbuh 1 for Billy. In a sudden show of pain, Grim senses that his scythe has been fused with evil and strangely delightful children, and Numbuh 1 realizes that he is talking about the Delightful Children from Down the Lane. The Delightful Reaper begins fusing kids into it, including Numbuh 2.\r\n\r\nSector V returns to the Moonbase, where they find Mandy disguised as Numbuh 1. Only Numbuh 5 and later, Numbuh 362 knew that she's an impostor, but since nobody else does, Mandy convinces everyone that Numbuh 5 is losing her mind. Soon Mandy becomes ruler of the KND, renaming it the MND (Mandy New Dicta","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18169},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":19,"title":"Operation: C.A.R.A.M.E.L.","airDate":"2007-11-16","airDateUtc":"2007-11-17T00:00:00Z","overview":"Heinrich uses a ritual involving sacred golden caramels to take away the qualities the Sector V operatives value the most. (Numbuh 1's leadership, Numbuh 2's intellect, Numbuh 3's giddiness, Numbuh 4's toughness, and Numbuh 5's Coolness) Numbuh 5 eventually teaches Heinrich that he needs to share his candy to revert to his original form, She is then seen leaving with a young Blonde girl.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18307},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":20,"title":"Operation: M.O.O.N.","airDate":"2007-11-16","airDateUtc":"2007-11-17T00:25:00Z","overview":"Adults send Numbuh 4's family to the Moon to colonize it. But Sector V diverts the colony to Hollywood, where they stage a fake colonization, tricking the Beatles family and the adults at mission control to prevent them from discovering the KND Moonbase.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18308},{"seriesId":243,"episodeFileId":0,"seasonNumber":6,"episodeNumber":21,"title":"Operation: T.R.E.A.T.Y","airDate":"2007-12-07","airDateUtc":"2007-12-08T00:00:00Z","overview":"The KND and the Teens are about to sign the \"You don't mess with us-We don't mess with you\" Kid-Teen treaty. It is going to be signed by Numbuh 8000 (KND and the Teens leader), but it turns out to be a trap for the KND, making Numbuhs 1 and 274 set out to prevent it after being falsely convicted by the KND.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18309},{"seriesId":243,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Operation: I.N.T.E.R.V.I.E.W.S.","airDate":"2008-01-25","airDateUtc":"2008-01-26T00:00:00Z","overview":"The show starts off with a live-action interview of Abigail Lincoln (now Abigail Gilligan) (Numbuh 5) and the rest of Sector V. Even though they are now adults, they are told by an unnamed, unseen interviewer that the effects of decommissioning have been temporarily reversed so they could be interviewed on their final mission.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18170}],"episodeFile":[],"queue":[]},"244":{"series":{"title":"The Valley","alternateTitles":[],"sortTitle":"valley","status":"ended","ended":true,"overview":"Between forests and hills, the river Ahr meanders through a mystical, foggy autumn landscape. Amidst this idyll a man awakens in the middle of a vineyard. He does not know who he is, where he is or how he came to be here. Next to him is a dead young woman lying among the vines.\r\nAs a foreigner in the secluded town in the Ahr valley he enters an archaic village community, which seems to keep a secret from him.","previousAiring":"2015-11-09T23:00:00Z","network":"TNT Serie","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/259\/banner.jpg?lastWrite=637381360253630790","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/text\/301321.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/259\/poster.jpg?lastWrite=637381360254750770","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/301321-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/259\/fanart.jpg?lastWrite=637381360255830750","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/301321-7.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2015-11-09T23:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":2773405935,"percentOfEpisodes":100.0}}],"year":2015,"path":"\/tv\/The Valley","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":301321,"tvRageId":0,"tvMazeId":6825,"firstAired":"2015-10-06T00:00:00Z","seriesType":"standard","cleanTitle":"thevalley","imdbId":"tt4380968","titleSlug":"the-valley","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Drama","Mini-Series","Suspense","Thriller"],"tags":[],"added":"2020-10-12T21:47:04.440138Z","ratings":{"votes":59,"value":9.5},"statistics":{"seasonCount":1,"episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":2773405935,"percentOfEpisodes":100.0},"id":259},"episodes":[{"seriesId":259,"episodeFileId":15705,"seasonNumber":1,"episodeNumber":1,"title":"Portent","airDate":"2015-10-06","airDateUtc":"2015-10-05T22:00:00Z","overview":"A man wakes up in a vineyard with no memory, next to him the body of a woman. Distraught, he takes refuge in the nearest village but when he returns with help the body has disappeared.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":19818},{"seriesId":259,"episodeFileId":15706,"seasonNumber":1,"episodeNumber":2,"title":"Fate","airDate":"2015-10-13","airDateUtc":"2015-10-12T22:00:00Z","overview":"Sophia was killed and our protagonist believes he can solve the mystery of his identity if he only could solve her murder. As he starts to investigate on their own, he encounters numerous inconsistencies, surprising suspects and entanglements within the village.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":19819},{"seriesId":259,"episodeFileId":15707,"seasonNumber":1,"episodeNumber":3,"title":"Demons","airDate":"2015-10-20","airDateUtc":"2015-10-19T22:00:00Z","overview":"During his investigations, our protagonist comes across an old accident: Adrian's sister Marie drowned years ago. But does it have something to do with Sophia's death or has someone from the village a more personal motive? In trying to solve the puzzle, our protagonist finds himself in danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":19820},{"seriesId":259,"episodeFileId":15708,"seasonNumber":1,"episodeNumber":4,"title":"Trauma","airDate":"2015-10-27","airDateUtc":"2015-10-26T23:00:00Z","overview":"Adrian is suspected of murder when police find incriminating evidence against him. The atmosphere in the village quickly turns, only the amnesiac protagonist continues to believe in his innocence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":19821},{"seriesId":259,"episodeFileId":15709,"seasonNumber":1,"episodeNumber":5,"title":"Pain","airDate":"2015-11-03","airDateUtc":"2015-11-02T23:00:00Z","overview":"Everything suggests that Adrian has brutally slain Sophia. The interrogation with the taciturn boy leads nowhere, but when it ends Adrian is admitted to a psychiatric ward. Meanwhile In the village there is relief that the killer is caught. But a villager is increasingly nervous when she learns of Adrian's arrest","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":19822},{"seriesId":259,"episodeFileId":15710,"seasonNumber":1,"episodeNumber":6,"title":"Realisation","airDate":"2015-11-10","airDateUtc":"2015-11-09T23:00:00Z","overview":"Our protagonist has lost the main lead to solve all the puzzles: is the suicide of a villager with connections to the murder of Sophia and the arrest of Adrian connected? He is becoming increasingly clear that it must be a family tragedy which has led to the murders.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":19823}],"episodeFile":[{"seriesId":259,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Portent-SDTV.mp4","path":"\/tv\/The Valley\/Season 01\/S01E01.Portent-SDTV.mp4","size":437949912,"dateAdded":"2020-10-12T21:47:49.084208Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128224,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":999261,"videoCodec":"x264","videoFps":29.97,"resolution":"852x480","runTime":"51:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15705},{"seriesId":259,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Fate-SDTV.mp4","path":"\/tv\/The Valley\/Season 01\/S01E02.Fate-SDTV.mp4","size":468131948,"dateAdded":"2020-10-12T21:47:49.163961Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128336,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1021727,"videoCodec":"x264","videoFps":29.97,"resolution":"852x480","runTime":"53:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15706},{"seriesId":259,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Demons-SDTV.mp4","path":"\/tv\/The Valley\/Season 01\/S01E03.Demons-SDTV.mp4","size":460316344,"dateAdded":"2020-10-12T21:47:49.242662Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128322,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1028556,"videoCodec":"x264","videoFps":29.97,"resolution":"852x480","runTime":"52:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15707},{"seriesId":259,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Trauma-SDTV.mp4","path":"\/tv\/The Valley\/Season 01\/S01E04.Trauma-SDTV.mp4","size":458349062,"dateAdded":"2020-10-12T21:47:49.318659Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128245,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1030263,"videoCodec":"x264","videoFps":29.97,"resolution":"852x480","runTime":"52:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15708},{"seriesId":259,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Pain-SDTV.mp4","path":"\/tv\/The Valley\/Season 01\/S01E05.Pain-SDTV.mp4","size":471270852,"dateAdded":"2020-10-12T21:47:49.394312Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128239,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1014089,"videoCodec":"x264","videoFps":29.97,"resolution":"852x480","runTime":"54:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15709},{"seriesId":259,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Realisation-SDTV.mp4","path":"\/tv\/The Valley\/Season 01\/S01E06.Realisation-SDTV.mp4","size":477387817,"dateAdded":"2020-10-12T21:47:49.469631Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127802,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1002685,"videoCodec":"x264","videoFps":29.97,"resolution":"852x480","runTime":"55:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15710}],"queue":[]},"245":{"series":{"title":"Upload","alternateTitles":[],"sortTitle":"upload","status":"continuing","ended":false,"overview":"In 2033, people near death can be \u201cuploaded\u201d into virtual reality afterlife hotels run by 6 tech firms. Cash-strapped Nora lives in Brooklyn and works customer service for the luxurious \u201cLakeview\u201d digital afterlife. When L.A. party-boy\/coder Nathan\u2019s self-driving car crashes, his high-maintenance girlfriend uploads him permanently into Nora\u2019s VR world.","previousAiring":"2020-05-01T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/265\/banner.jpg?lastWrite=637440602045548500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368211\/banners\/5eb0e622ee0c2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/265\/poster.jpg?lastWrite=637602911424081900","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368211\/posters\/5ed2cb98d3f6b.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/265\/fanart.jpg?lastWrite=637440602047988460","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368211\/backgrounds\/5eac974ab3da6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-05-01T04:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3064491605,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Upload","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":368211,"tvRageId":0,"tvMazeId":31732,"firstAired":"2020-05-01T00:00:00Z","seriesType":"standard","cleanTitle":"upload","imdbId":"tt7826376","titleSlug":"upload","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Comedy","Romance","Science Fiction"],"tags":[],"added":"2020-12-20T11:23:23.681249Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3064491605,"percentOfEpisodes":100.0},"id":265},"episodes":[{"seriesId":265,"episodeFileId":16918,"seasonNumber":1,"episodeNumber":1,"title":"Welcome to Upload","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"After a self-driving car crash, Nathan is uploaded to Lakeview, his girlfriend's family's digital after-life, where he meets his customer service rep, Nora.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":20252},{"seriesId":265,"episodeFileId":16919,"seasonNumber":1,"episodeNumber":2,"title":"Five Stars","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Nora tries to get her ratings up, so her boss will approve her dad's upload loan. Nathan acclimates to his new world with the help of a Lakeview therapist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":20253},{"seriesId":265,"episodeFileId":16920,"seasonNumber":1,"episodeNumber":3,"title":"The Funeral","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Scientists attempt to download a consciousness back into a clone body. Nathan attends his own funeral and Nora uncovers a mystery surrounding his death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":20254},{"seriesId":265,"episodeFileId":16921,"seasonNumber":1,"episodeNumber":4,"title":"The Sex Suit","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Nora thinks she may have misjudged Nathan. Nathan and his girlfriend Ingrid are interviewed about the challenges of romance between a living person and an Upload.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":20255},{"seriesId":265,"episodeFileId":16922,"seasonNumber":1,"episodeNumber":5,"title":"The Grey Market","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Nora's Dad's vape lung worsens while Nathan, his friend Luke, and Dylan, an uploaded teen whose body is not keeping up with his age, visit a hacker's market in cyberspace.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":20256},{"seriesId":265,"episodeFileId":16923,"seasonNumber":1,"episodeNumber":6,"title":"The Sleepover","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Nathan is thrown when Nora goes on a Nitely date. Ingrid invites Nathan's niece for a sleepover. Nathan and Nora suspect his damaged memories may lead to a greater conspiracy. Luke gets into a fight with Aleesha","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":20257},{"seriesId":265,"episodeFileId":16924,"seasonNumber":1,"episodeNumber":7,"title":"Bring Your Dad to Work Day","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Nathan takes Nora's dad on a do-or-die upload decision tour, but things go awry when Luddites sabotage Lakeview. Nora does some sleuthing on Lucy's computer in the confusion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":20258},{"seriesId":265,"episodeFileId":16925,"seasonNumber":1,"episodeNumber":8,"title":"Shopping Other Digital After-Lives","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"After a surprising revelation, Nathan shops for a new digital after-life. Nora travels to LA to help Ingrid stop him from leaving Lakeview.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":20259},{"seriesId":265,"episodeFileId":16926,"seasonNumber":1,"episodeNumber":9,"title":"Update Eve","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"The Uploads are looking forward to the improvements in the new Lakeview Operating System. Nathan and Nora stay up late to recover Nathan's missing memories.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":20260},{"seriesId":265,"episodeFileId":16927,"seasonNumber":1,"episodeNumber":10,"title":"Freeyond","airDate":"2020-05-01","airDateUtc":"2020-05-01T04:00:00Z","overview":"Nathan's restored memories and shifting emotional allegiances put Nora in physical danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":20261}],"episodeFile":[{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Welcome to Upload-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E01.Welcome to Upload-WEBDL-1080p Proper.mkv","size":476421738,"dateAdded":"2020-12-20T11:34:06.751388Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":174905,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201212,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:56","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16918},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Five Stars-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E02.Five Stars-WEBDL-1080p Proper.mkv","size":306152096,"dateAdded":"2020-12-20T11:34:11.003459Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":173611,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201968,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"29:32","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16919},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Funeral-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E03.The Funeral-WEBDL-1080p Proper.mkv","size":276373259,"dateAdded":"2020-12-20T11:34:15.037382Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":172624,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1200533,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:42","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16920},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Sex Suit-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E04.The Sex Suit-WEBDL-1080p Proper.mkv","size":256726049,"dateAdded":"2020-12-20T11:34:19.268262Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":174998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201117,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:45","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16921},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Grey Market-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E05.The Grey Market-WEBDL-1080p Proper.mkv","size":294001223,"dateAdded":"2020-12-20T11:34:23.323717Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":166443,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1202113,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"28:29","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16922},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Sleepover-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E06.The Sleepover-WEBDL-1080p Proper.mkv","size":312970766,"dateAdded":"2020-12-20T11:34:27.295224Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":170385,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201255,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"30:16","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16923},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Bring Your Dad to Work Day-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E07.Bring Your Dad to Work Day-WEBDL-1080p Proper.mkv","size":267972872,"dateAdded":"2020-12-20T11:34:32.704113Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":172938,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201588,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:52","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16924},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Shopping Other Digital After-Lives-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E08.Shopping Other Digital After-Lives-WEBDL-1080p Proper.mkv","size":293890370,"dateAdded":"2020-12-20T11:34:37.149737Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":169079,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1202587,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"28:26","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16925},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Update Eve-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E09.Update Eve-WEBDL-1080p Proper.mkv","size":335055836,"dateAdded":"2020-12-20T11:34:41.5957Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":175850,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1200929,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"32:18","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16926},{"seriesId":265,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Freeyond-WEBDL-1080p Proper.mkv","path":"\/tv\/Upload\/Season 01\/S01E10.Freeyond-WEBDL-1080p Proper.mkv","size":244927396,"dateAdded":"2020-12-20T11:34:45.787661Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":177692,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1201713,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Indonesian \/ Thai \/ Korean \/ Chinese \/ Chinese \/ Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16927}],"queue":[]},"248":{"series":{"title":"Your Honor (US)","alternateTitles":[{"title":"Your Honor","seasonNumber":-1},{"title":"Your Honor 2019","seasonNumber":-1},{"title":"Your Honor 2020","seasonNumber":-1},{"title":"Your Honor","seasonNumber":-1,"comment":"MeGusta"}],"sortTitle":"your honor us","status":"ended","ended":true,"overview":"The son of a respected New Orleans judge is involved in a hit-and-run that leads to a high-stakes game of lies, deceit and impossible choices.","previousAiring":"2021-02-15T03:00:00Z","network":"Showtime","airTime":"22:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/268\/banner.jpg?lastWrite=637540900060999700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/359579\/banners\/605d0f4d6565d.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/268\/poster.jpg?lastWrite=637466627037949660","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/359579\/posters\/5fa167c0c429f.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/268\/fanart.jpg?lastWrite=637466627039389640","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/359579\/backgrounds\/5fa16751c228d.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2021-02-15T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":48202950456,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Your Honor (US)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":57,"tvdbId":359579,"tvRageId":0,"tvMazeId":32791,"firstAired":"2020-12-06T00:00:00Z","seriesType":"standard","cleanTitle":"yourhonorus","imdbId":"tt7440726","titleSlug":"your-honor-us","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Crime","Drama","Mini-Series"],"tags":[],"added":"2021-01-19T14:18:22.667528Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":48202950456,"percentOfEpisodes":100.0},"id":268},"episodes":[{"seriesId":268,"episodeFileId":18399,"seasonNumber":1,"episodeNumber":1,"title":"Part One","airDate":"2020-12-06","airDateUtc":"2020-12-07T03:00:00Z","overview":"When his teenage son Adam is involved in a tragic accident, New Orleans Judge Michael Desiato is faced with an impossible decision that will impact his family forever, test the bonds with his oldest friend Charlie and put a strain on Adam\u2019s secret relationship with girlfriend Frannie. Dangerous crime lord Jimmy Baxter and his wife Gina Baxter\u2019s birthday gift puts their son Rocco on a collision course with tragedy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20420},{"seriesId":268,"episodeFileId":18400,"seasonNumber":1,"episodeNumber":2,"title":"Part Two","airDate":"2020-12-13","airDateUtc":"2020-12-14T03:00:00Z","overview":"On the anniversary of his wife\u2019s death, New Orleans Judge Michael Desiato and his son Adam create an alibi for the day of the accident. A favor for Michael pulls his close friends and colleagues Charlie and Lee into the web of deception. Kofi gets approached about a job.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20421},{"seriesId":268,"episodeFileId":18401,"seasonNumber":1,"episodeNumber":3,"title":"Part Three","airDate":"2020-12-20","airDateUtc":"2020-12-21T03:00:00Z","overview":"Michael continues to use his power to obscure details of the accident as crime lord Jimmy Baxter and his wife Gina plot their revenge. Things aren\u2019t adding up for Lt. Nancy Costello in her investigation. Bad advice leads Kofi to make a bold move. Gina strikes a deal for her son Carlo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20422},{"seriesId":268,"episodeFileId":18402,"seasonNumber":1,"episodeNumber":4,"title":"Part Four","airDate":"2020-12-27","airDateUtc":"2020-12-28T03:00:00Z","overview":"Complicit in multiple lies and agonized by guilt, Adam moves from one dangerous liaison to another as tensions escalate. Elizabeth steps in to protect her grandson. Family dinner at the Desiatos is plagued by secrets and lies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20423},{"seriesId":268,"episodeFileId":18403,"seasonNumber":1,"episodeNumber":5,"title":"Part Five","airDate":"2021-01-03","airDateUtc":"2021-01-04T03:00:00Z","overview":"Michael attempts to return to business as usual until he discovers that someone is blackmailing him. Jimmy Baxter and Gina Baxter remain committed to avenging their son\u2019s death.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20424},{"seriesId":268,"episodeFileId":18404,"seasonNumber":1,"episodeNumber":6,"title":"Part Six","airDate":"2021-01-10","airDateUtc":"2021-01-11T03:00:00Z","overview":"Adam spends the day with a dangerous new love interest, while Michael searches for his blackmailer. Lee ramps up her involvement in Kofi\u2019s case.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20425},{"seriesId":268,"episodeFileId":18405,"seasonNumber":1,"episodeNumber":7,"title":"Part Seven","airDate":"2021-01-17","airDateUtc":"2021-01-18T03:00:00Z","overview":"Michael\u2019s solution to his blackmail problem unearths deeper troubles. Eugene finds family in Big Mo\u2019s crew. Adam\u2019s secret is threatened to be outed by a problematic relationship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20426},{"seriesId":268,"episodeFileId":18406,"seasonNumber":1,"episodeNumber":8,"title":"Part Eight","airDate":"2021-01-31","airDateUtc":"2021-02-01T03:00:00Z","overview":"Jimmy puts pressure on Michael over Carlo\u2019s trial. At a family dinner, Adam announces his future plans. Nancy and Lee discover some cops aren\u2019t what they seem.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20427},{"seriesId":268,"episodeFileId":18407,"seasonNumber":1,"episodeNumber":9,"title":"Part Nine","airDate":"2021-02-07","airDateUtc":"2021-02-08T03:00:00Z","overview":"With pressure mounting, Michael finds an answer to keeping Carlo out of prison. While helping Adam with his relationship troubles, Charlie makes a shocking discovery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20428},{"seriesId":268,"episodeFileId":18408,"seasonNumber":1,"episodeNumber":10,"title":"Part Ten","airDate":"2021-02-14","airDateUtc":"2021-02-15T03:00:00Z","overview":"Adam reels from new information about his mother\u2019s death. Eugene tries to get justice for his family. Carlo\u2019s trial comes to an end, but Michael and Adam\u2019s secrets are dangerously unraveling.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20429}],"episodeFile":[{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Part One-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E01.Part One-Bluray-1080p.mkv","size":4496607634,"dateAdded":"2021-06-15T13:21:27.50784Z","sceneName":"Your.Honor.S01E01.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3429474,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7222000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"56:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18399},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Part Two-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E02.Part Two-Bluray-1080p.mkv","size":4635094000,"dateAdded":"2021-06-15T13:23:44.567126Z","sceneName":"Your.Honor.S01E02.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3325456,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6477091,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:02:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18400},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Part Three-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E03.Part Three-Bluray-1080p.mkv","size":4395075954,"dateAdded":"2021-06-15T13:26:01.541348Z","sceneName":"Your.Honor.S01E03.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3299233,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6827805,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"57:46","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18401},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Part Four-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E04.Part Four-Bluray-1080p.mkv","size":4443413970,"dateAdded":"2021-06-15T13:28:16.623841Z","sceneName":"Your.Honor.S01E04.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3211311,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6915557,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"58:24","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18402},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Part Five-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E05.Part Five-Bluray-1080p.mkv","size":4658536403,"dateAdded":"2021-06-15T13:30:37.036378Z","sceneName":"Your.Honor.S01E05.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3431422,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8230210,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"53:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18403},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Part Six-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E06.Part Six-Bluray-1080p.mkv","size":5287439049,"dateAdded":"2021-06-15T13:32:56.28817Z","sceneName":"Your.Honor.S01E06.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3247179,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9352456,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"55:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18404},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Part Seven-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E07.Part Seven-Bluray-1080p.mkv","size":5098262303,"dateAdded":"2021-06-15T13:35:21.424288Z","sceneName":"Your.Honor.S01E07.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3362362,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9003120,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"54:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18405},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Part Eight-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E08.Part Eight-Bluray-1080p.mkv","size":5197974392,"dateAdded":"2021-06-15T13:37:41.46017Z","sceneName":"Your.Honor.S01E08.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3242358,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8806408,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"57:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18406},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Part Nine-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E09.Part Nine-Bluray-1080p.mkv","size":4778714171,"dateAdded":"2021-06-15T13:40:07.328316Z","sceneName":"Your.Honor.S01E09.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3200008,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9200826,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"51:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18407},{"seriesId":268,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Part Ten-Bluray-1080p.mkv","path":"\/tv\/Your Honor (US)\/Season 01\/S01E10.Part Ten-Bluray-1080p.mkv","size":5211832580,"dateAdded":"2021-06-15T13:42:27.328193Z","sceneName":"Your.Honor.S01E10.1080p.BluRay.x264-BORDURE","releaseGroup":"BORDURE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3228918,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8654871,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"58:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18408}],"queue":[]},"251":{"series":{"title":"Umineko: When They Cry","alternateTitles":[{"title":"Umineko When They Cry","sceneSeasonNumber":-1},{"title":"Umineko no Naku Koro ni","sceneSeasonNumber":-1}],"sortTitle":"umineko when they cry","status":"ended","ended":true,"overview":"The affluent Ushiromiya family patriarch, Kinzo, is on his deathbed, and his family has assembled at their private island to discuss the division of his estate. As they bicker over their father's immense inheritance, a typhoon closes in, trapping them on the island. They suddenly receive an eerie word of warning...and then, in the dead of night, the murders begin. \r\n\r\nOne by one, family members are discovered murdered in bizarre and inhuman ways. Some within the family turn to superstition, blaming it on a witch rumored to inhabit the island. But one of them - the young Battler Ushiromiya - refuses to accept the supernatural and vows to uncover the real killer behind the seemingly impossible slaughters. He soon finds himself confronted by the apparent witch, and enters into a life-or-death battle for the truth.","previousAiring":"2009-12-23T15:00:00Z","network":"Tokyo MX","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/245\/banner.jpg?lastWrite=637271817579392970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/101981-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/245\/poster.jpg?lastWrite=637539603834282500","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/101981\/posters\/60659587854cb.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/245\/fanart.jpg?lastWrite=637271817603472550","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/101981-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2009-12-23T15:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11309533746,"percentOfEpisodes":100.0}}],"year":2009,"path":"\/tv\/Umineko - When They Cry","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":101981,"tvRageId":0,"tvMazeId":17896,"firstAired":"2009-07-02T00:00:00Z","seriesType":"anime","cleanTitle":"uminekowhentheycry","imdbId":"tt1450620","titleSlug":"umineko-when-they-cry","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Anime","Fantasy"],"tags":[],"added":"2020-06-08T02:55:56.515705Z","ratings":{"votes":1128,"value":7.8},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":11309533746,"percentOfEpisodes":100.0},"id":245},"episodes":[{"seriesId":245,"episodeFileId":13834,"seasonNumber":1,"episodeNumber":1,"title":"Opening","airDate":"2009-07-02","airDateUtc":"2009-07-01T15:00:00Z","overview":"The Ushiromiya family gathers on Rokkenjima, a small island off the coast of Japan, for their annual family conference to discuss how the inheritance of the ailing family head, Kinzo, will be distributed among his children and their spouses. Battler, who has not attended the conference in six years, notices a new painting in the foyer of the mansion. He is told that it is a portrait of the \"Golden Witch\" Beatrice, who had supposedly given Kinzo all his wealth, and who Kinzo desires to see again. Battler, however, does not believe in witches or magic, and doubts she exists. A typhoon approaches the island, and Maria is left outside by her mother Rosa while searching for a wilted rose George had marked for her in the garden. When it begins to rain, Battler, Jessica, George, and Rosa go outside to find Maria with an umbrella she did not have before, which Maria says Beatrice gave her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18373},{"seriesId":245,"episodeFileId":13835,"seasonNumber":1,"episodeNumber":2,"title":"First Move","airDate":"2009-07-09","airDateUtc":"2009-07-08T15:00:00Z","overview":"After dinner is over, Maria reads a letter she says she received from Beatrice earlier. The contents stipulate that Beatrice will take everything the Ushiromiya family owns if no one can solve the witch's cryptic epitaph. While Kinzo's sons and daughters try to ask him what this is about, they are not able to enter his study. The rest of the night has the adults staying up still discussing the family inheritance while the children retreat to the guesthouse. That night, George gives Shannon an engagement ring, and asks her to give her reply the next day. The following morning, six people have gone missing, and Natsuhi is informed of a strange symbol drawn on the outdoor tool shed. When she goes to investigate with Kanon and Genji, they find the missing six people brutally murdered inside. After Genji goes to fetch Dr. Nanjo to inspect the bodies, Battler, Jessica and George follow and see the horrific scene themselves. Among the dead are Krauss, Rudolf, Kyrie, Rosa, Gohda, and Shannon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18374},{"seriesId":245,"episodeFileId":13836,"seasonNumber":1,"episodeNumber":3,"title":"Dubious Move","airDate":"2009-07-16","airDateUtc":"2009-07-15T15:00:00Z","overview":"While attempting to figure out what had happened, the remaining guests discover that their radio is not working, effectively leaving them stranded on the island with the culprit until the typhoon passes. They also quickly discover that Kinzo has gone missing as well. Battler and the rest of the family come up with the theory that one of the eighteen people on the island is posing as Beatrice in an attempt to claim Kinzo's inheritance. The three primary suspects are the servants, who have access to the entire mansion; Natsuhi, who was the last person seen with Kinzo; and Eva, who has the most to gain from the murders. However, after a heated argument between Natsuhi and Eva, they are unable to come to a definitive answer and return to their rooms. Later, Eva and Hideyoshi are found to have been murdered in their locked room.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18375},{"seriesId":245,"episodeFileId":13837,"seasonNumber":1,"episodeNumber":4,"title":"Blunder","airDate":"2009-07-23","airDateUtc":"2009-07-22T15:00:00Z","overview":"Everybody tries to determine how Eva and Hideyoshi could have been killed when an odd smell begins to fill the mansion. Kanon goes to investigate the boiler room along with Kumasawa, but is mortally wounded in the process. The rest of the family and staff arrive and discover the dying Kanon, as well as Kinzo's partially incinerated body. They decide to retreat to Kinzo's study, which should be the safest room in the house. After they enter, however, a letter from Beatrice mysteriously appears. Since Genji, Nanjo, Kumasawa, or Maria are the only possible suspects for planting the letter, Natsuhi forces them to leave the study. Later that night, the phone rings with Maria singing on the other end. Natsuhi, Battler, George, and Jessica rush downstairs to find Genji, Nanjo, and Kumasawa murdered and Maria standing in the corner, still singing.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18376},{"seriesId":245,"episodeFileId":13838,"seasonNumber":1,"episodeNumber":5,"title":"Fool's Mate","airDate":"2009-07-30","airDateUtc":"2009-07-29T15:00:00Z","overview":"Upon being pressed about the murders, Maria tells them that Beatrice is the culprit, though Battler refuses to accept this explanation. As they argue, Natsuhi bars everyone inside the room and demands Beatrice show herself. By the time everyone breaks out of the room, they see Natsuhi as she drops dead, apparently having commited suicide. Golden butterflies soon fill the room, and the remaining survivors are killed. Afterward, everyone is brought to Purgatory, revived and joking about how they should have solved the epitaph rather than determine who was committing the murders. However, everyone except Battler is convinced that the culprit is a witch. When Battler insists that everything that happened could have been carried out by human means, he is confronted by Beatrice herself, who challenges Battler to prove that the murders were not caused by magic. Later, Beatrice discusses the events she has set into motion with a rival witch, Bernkastel, who plans to lend her own powers to assist Battler.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18377},{"seriesId":245,"episodeFileId":13839,"seasonNumber":1,"episodeNumber":6,"title":"Middle Game","airDate":"2009-08-06","airDateUtc":"2009-08-05T15:00:00Z","overview":"After one of the family meetings in 1984, Shannon admits to Jessica that she has a crush on George. However, Eva mentions that George will be taking part in an arranged marriage to keep Shannon away from him. Devastated, Shannon prays for help from Beatrice, who appears and makes a deal with her: in return for smashing a mirror in the island's shrine that limits her power, Beatrice will guarantee George's love. Shannon at first refuses, but in 1985, succumbs to temptation and smashes the mirror. In 1986, Jessica confides to Shannon that she has a crush on Kanon. Jessica manages to convince Kanon to come to her school festival, where Kanon is perplexed at seeing a different side of Jessica in public. However, he refuses to get into any relationship with Jessica, stating that people and furniture are never meant to be together. He then confronts Beatrice and accuses her of toying with people's emotions. Beatrice merely laughs and says that no matter what happens, her power will return and the path to the Golden Land will be opened.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18378},{"seriesId":245,"episodeFileId":13840,"seasonNumber":1,"episodeNumber":7,"title":"Early Queen Move","airDate":"2009-08-13","airDateUtc":"2009-08-12T15:00:00Z","overview":"Battler and Beatrice begin their debate of logic vs. magic from Purgatory when the Ushiromiya family members gather for their annual conference. This time, however, Beatrice appears in the real world as an important yet anonymous guest. During that day, Maria is left outside by her mother Rosa as punishment for constantly talking about Beatrice. When Rosa returns to save Maria from the coming storm, Beatrice appears before them and hands envelopes to both of them. Meanwhile, Shannon discovers Beatrice's devious intentions and decides to resist her. Later, when George proposes to her and asks her to give him her answer by the next day, she accepts immediately. During dinner, the siblings discover their guest to be Beatrice and eventually come to acknowledge her as a witch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18379},{"seriesId":245,"episodeFileId":13841,"seasonNumber":1,"episodeNumber":8,"title":"Week Square","airDate":"2009-08-20","airDateUtc":"2009-08-19T15:00:00Z","overview":"Rosa's siblings and their spouses go missing, while the remaining guests find the chapel door locked. Finding the chapel key inside the envelope Beatrice gave Maria, everyone enters and find the missing people murdered inside, along with some of Kinzo's hidden gold. After separating from the others, Jessica and Kanon are ambushed by Beatrice, who summons her legion of goat servants against them. Kanon fights off the goats until Beatrice summons two Stakes of Purgatory, Asmodeus and Satan, who kill Jessica and Kanon. In Purgatory, Battler and Beatrice suspend their game to determine how the first six people could have been murdered inside a locked room. Battler begins forming several theories, but Beatrice counters most of them, using red text to speak the truth. However, Battler manages to catch Beatrice off guard by theorizing that the culprit could have taken the key from the envelope, locked the dead bodies in the room, and put the key back where it was. Beatrice congratulates Battler, but remains confident he will submit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18380},{"seriesId":245,"episodeFileId":13842,"seasonNumber":1,"episodeNumber":9,"title":"Skewer","airDate":"2009-08-27","airDateUtc":"2009-08-26T15:00:00Z","overview":"Everyone finds Jessica's body in her locked room, while Kanon's is nowhere to be found, having been erased by Beatrice. After the notion of Kanon killing Jessica is deterred since he gave Jessica his master key, the other servants are marked as the most likely suspects. Battler, meanwhile, finds himself unable to think of any way the crime could have been carried out while knowing the servants are innocent. Rosa sends the servants off, hoping to use them as bait to draw out the culprit. In the process, the servants stumble across Kanon, severely wounded but apparently still alive, who tells them that Rosa was the one who attacked him. However, it is soon discovered that this Kanon is a duplicate created by Beatrice. The fake Kanon attacks the servants, killing Nanjo and Kumasawa before being destroyed by the other servants.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18381},{"seriesId":245,"episodeFileId":13843,"seasonNumber":1,"episodeNumber":10,"title":"Accept","airDate":"2009-09-03","airDateUtc":"2009-09-02T15:00:00Z","overview":"The servants try to explain what happened to the others, but when they return to the room where Nanjo and Kumasawa were killed, their bodies are missing. In an effort to gain Rosa's trust, the servants give their master keys to her. Still suspicious, however, Rosa sends the servants off once again, this time with George deciding to accompany them. Put off by Rosa's paranoia and not wanting to suspect his family and friends, Battler begins to accept Beatrice as a witch. Meanwhile, the other servants learn about the mirror Shannon smashed, and remember that Natsuhi was in possession of a similar mirror, which they believe should help them. George, Shannon, and Gohda retrieve Natsuhi's room key from her corpse, but are chased by Beatrice and her furniture along the way. The three manage to enter Natsuhi's room, but Gohda is killed by Beelzebub while he tries to keep the witch's furniture at bay, allowing Beatrice to confront George and Shannon herself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18382},{"seriesId":245,"episodeFileId":13844,"seasonNumber":1,"episodeNumber":11,"title":"Back Rank Mate","airDate":"2009-09-10","airDateUtc":"2009-09-09T15:00:00Z","overview":"Empowered by Natsuhi's mirror, Shannon attempts to defend herself and George, but they are both killed by Beatrice. The remaining survivors find Nanjo's and Kumasawa's bodies, followed by the bodies of George, Shannon, and Gohda. Rosa begins to suspect Battler after they find another letter, but Battler and Maria blame Beatrice. Rosa and Maria go to take one of the gold bars from the chapel, leaving Genji to bring Battler before Beatrice herself. In exchange for an explanation of how Beatrice used her magic to commit the crimes, Battler is enslaved and humiliated by the witch before being killed by her goat butlers along with Kinzo. Rosa and Maria are also ambushed by the goat butlers and killed as they try to escape. In Purgatory, Beatrice tortures Rosa into accepting her as a witch until Battler stops her, having regained his will to fight her. Afterwards, Beatrice reveals to Bernkastel that she is aware of her meddling before the two witches are joined by another witch, Lambdadelta, who seeks to participate in Beatrice's next game against Bernkastel.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18383},{"seriesId":245,"episodeFileId":13845,"seasonNumber":1,"episodeNumber":12,"title":"Castling","airDate":"2009-09-17","airDateUtc":"2009-09-16T15:00:00Z","overview":"Several years in the past, a young, human Beatrice meets the Golden Witch \"Beatrice\" preceeding her and becomes her apprentice in magic. Back in 1986, Eva has recurring visions of her younger self claiming to have magic that will allow her to become the family head, which continue to haunt her during the family conference. Maria receives a letter from Beatrice, who is now powerful enough to summon her butler Ronove, and reads it to the guests during dinner. While discussing the contents and writer of the letter amongst themselves, the siblings talk about a rumor about Kinzo's mistress, a woman named Beatrice, who lived in the forest on the island thirty years ago, prompting Battler to theorize that the human Beatrice is still on the island. However, Rosa confesses to her siblings that she had killed Beatrice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18384},{"seriesId":245,"episodeFileId":13846,"seasonNumber":1,"episodeNumber":13,"title":"Gambit","airDate":"2009-09-24","airDateUtc":"2009-09-23T15:00:00Z","overview":"Rosa recounts how she met the human Beatrice confined in a hidden mansion, Kuwadorian, on the island twenty years ago and helped her escape, only to see her accidentally fall off a cliff to her death. Beatrice confirms to Battler that she truly died as a human, and that there are currently no more than 18 people on the island, forcing Battler to accept his loved ones as possible culprits. Genji, Shannon, and Kanon are later summoned to Kinzo's study, where they see Beatrice offer him as a sacrifice and kill him. Kanon is pit against the seven Sisters of Purgatory, defeating Lucifer in a duel, though he and Shannon are overwhelmed as they try to fend them all off at once, prompting Genji to euthanize Shannon and Kanon before he is put to rest by Ronove. The Sisters search the mansion for more sacrifices, killing Gohda in the process. They find Kumasawa as well, who claims to have been waiting for Beatrice. Beatrice reveals Kumasawa to be her predecessor and teacher, the former Beatrice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18385},{"seriesId":245,"episodeFileId":13847,"seasonNumber":1,"episodeNumber":14,"title":"Positional Play","airDate":"2009-10-01","airDateUtc":"2009-09-30T15:00:00Z","overview":"Beatrice and her predecessor engage in a magic battle, though a surprise attack allows Beatrice to kill her teacher. Battler is bewildered by the entire spectacle, but regains his composure when the former Beatrice, under the new name Virgilia, reappears and gives him advice for countering Beatrice's claims, allowing him to deny that the witches' battle ever took place. In the real world, the siblings discover the bodies of Kinzo and the servants, each locked in a room containing the key to the next locked room, forming one large locked room. With Virgilia's guidance, Battler theorizes that one of the six victims is the murderer, created five of the locked rooms, and then died in an accident in the sixth room, forcing Beatrice to concede this round. Meanwhile, Eva, urged on by the vision of her younger self, solves the riddle of Beatrice's epitaph and discovers Kinzo's hidden gold.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18386},{"seriesId":245,"episodeFileId":13848,"seasonNumber":1,"episodeNumber":15,"title":"Isolated Pawn","airDate":"2009-10-08","airDateUtc":"2009-10-07T15:00:00Z","overview":"Eva is discovered by Rosa and leaves to discuss how Kinzo's gold should be divided among the siblings. The young Eva, however, refuses to share the gold and remains behind, declaring herself to be the head of the Ushiromiya family. Acknowledging the young Eva's achievement, Beatrice appears and dubs her the new \"Beatrice\", whom Battler deems to be an alter ego for the real Eva. Later, Eva falls ill, and Rosa takes a whining Maria outside to spare Eva from her tantrum. They are suddenly attacked by Eva-Beatrice, who repeatedly kills and resurrects them in bizarre ways. Beatrice takes pleasure in the scene, but ends up enraging Battler, who refuses to play with her any longer. Dejected, Beatrice confronts Eva-Beatrice and mercifully kills Rosa and Maria once and for all, ordering her successor to act more dignified and reasonable in the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18387},{"seriesId":245,"episodeFileId":13849,"seasonNumber":1,"episodeNumber":16,"title":"Queening Square","airDate":"2009-10-15","airDateUtc":"2009-10-14T15:00:00Z","overview":"After the bodies of Rosa and Maria are found, Rudolf, Kyrie, and Hideyoshi go to retrieve food from the mansion, only to be trapped inside by Eva-Beatrice. Two Stakes of Purgatory, Leviathan and Belphegor, are sent to kill Rudolf and Kyrie, though they manage to outmaneuver and defeat them. Eva-Beatrice summons more powerful furniture, the Siesta Sisters, who successfully kill Rudolf and Kyrie. Hideyoshi confronts Eva-Beatrice to knock sense into her, but is killed by her as well. Beatrice berates Eva-Beatrice for ignoring her advice, but Eva-Beatrice tells her off, revealing she knows that acting dignified is only a means for Beatrice to get back in Battler's good graces in Purgatory. However, Battler is convinced to continue playing with Beatrice if he is to make any progress, though he still refuses to forgive her. Virgilia, meanwhile, meets with Beatrice and encourages her to act more passively if she is to make Battler accept witches.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18388},{"seriesId":245,"episodeFileId":13850,"seasonNumber":1,"episodeNumber":17,"title":"Promotion","airDate":"2009-10-22","airDateUtc":"2009-10-21T15:00:00Z","overview":"Battler decides to give Beatrice another chance to change her ways, so Beatrice goes to the real world to visit George, who is still grieving over Shannon's death, and offers to bring Shannon back to life. However, her powers have greatly diminished, but with George's assistance, she manages to resurrect Shannon. Sensing this, Eva-Beatrice kills George and Shannon shortly after they reunite, along with Krauss and Natsuhi in the process. Shortly after the survivors discover the bodies, Jessica accuses Eva of being the culprit. Eva panics and accidentally fires her rifle at Jessica, blinding her with the muzzle flash. While Nanjo escorts Jessica away to treat her, Jessica insists he go back to keep Battler out of danger, but Nanjo is killed by Eva-Beatrice before he can, leaving Jessica completely defenseless.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18389},{"seriesId":245,"episodeFileId":13851,"seasonNumber":1,"episodeNumber":18,"title":"Swindles","airDate":"2009-10-29","airDateUtc":"2009-10-28T15:00:00Z","overview":"Beatrice resurrects Kanon's spirit for Jessica and defends her against Eva-Beatrice, nearly getting killed in the process. Before Eva-Beatrice can finish her off, Battler brings her to Purgatory to challenge her. Battler theorizes that the real Eva is the culprit, but is unable to explain how Nanjo could have been killed, since Jessica was blind and he was with Eva the whole time. Battler nearly surrenders until Beatrice uses the red truth to \"deny\" the existence of witches and destroy Eva-Beatrice, leaving the emotionally unstable Eva to kill the other survivors and escape Rokkenjima alive. Battler is brought to the Golden Land where Beatrice and Virgilia suddenly attempt to force him to accept the existence of witches by signing a contract, revealing that Beatrice only pretended to reform to achieve this goal, and that it was Virgilia's strategy to do so. Before they can, Battler is saved by his sister Ange who, twelve years in the future, had been dispatched by Bernkastel to begin a new game. Afterwards, Lambdadelta orders Beatrice to keep winning so that she may be with Bernkastel for eternity. In the year 1998, the resentful, dying Eva grants Ange the name \"Beatrice\" and the Ushiromiya family headship and fortune. Hoping to find out what really happened to her family in 1986, Ange meets Bernkastel and accepts her offer to save them from Beatrice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18390},{"seriesId":245,"episodeFileId":13852,"seasonNumber":1,"episodeNumber":19,"title":"End Game","airDate":"2009-11-05","airDateUtc":"2009-11-04T15:00:00Z","overview":"Between 1986 and 1998, Ange leads a harsh, isolated life at St. Lucia Academy, a boarding school Eva sent her to. Between classes, Ange learns about magic from Maria, whose soul is kept alive in her old diary. Maria shows Ange how she was often left at home by Rosa and forced to care for herself with Sakutaro, a stuffed lion doll Rosa made her for her birthday who was brought to life by Maria. In 1998, Ange discovers that she is being hunted for her fortune by her aunt Kasumi, Kyrie's sister, and escapes with assistance from her bodyguard, Amakusa. She begins her journey to Rokkenjima, where she enters Purgatory and becomes Battler's ally against Beatrice under the name \"Gretel\". To make things more fair for Battler, Ange convinces Beatrice to let Battler use blue text for when he makes his theories. During the family conference in 1986, Kyrie theorizes that Kinzo is already dead, which is why none of them except for Krauss and Natsuhi have supposedly seen him, and that there are actually seventeen people on the island. Battler adopts this theory and states it in blue, but after Krauss and Natsuhi are sent by Kyrie to prove that Kinzo is alive, Kinzo agrees to attend the family conference and settle the argument himself.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18391},{"seriesId":245,"episodeFileId":13853,"seasonNumber":1,"episodeNumber":20,"title":"Zugzwang","airDate":"2009-11-12","airDateUtc":"2009-11-11T15:00:00Z","overview":"Ange briefly withdraws from Beatrice's game to confront Maria over her denial of being neglected by Rosa, but Maria tells her that she is content with Sakutaro ensuring her mother's love. Beatrice decides to show Ange how she, upon noticing how Maria created a soul for Sakutaro, gave a human body to Sakutaro and named Maria the Witch of Origins, joining forces with her in a witch's alliance called Mariage Sorci\u00e8re. Ange recounts how she too was once a member of this alliance and learned how to summon the seven Sisters of Purgatory, becoming close friends with Mammon in the process. By the year 1998, however, she loses the ability to use magic, and continues her investigation of the Rokkenjima murders. Before she returns to the game, Ange is confronted by Lambdadelta, who tells her that if Battler defeats Beatrice, he will return to her past self in 1986 while her current self will remain alone, and proposes that Ange can remain with her brother if he continues to fight against Beatrice for eternity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18392},{"seriesId":245,"episodeFileId":13854,"seasonNumber":1,"episodeNumber":21,"title":"Prophylaxis","airDate":"2009-11-19","airDateUtc":"2009-11-18T15:00:00Z","overview":"During her years at Saint Lucia Academy, Ange is distracted from her studies by Maria, Sakutaro, and the Sisters of Purgatory, and is humiliated by her classmates after failing a test. Ange lashes out against her magical friends for being helpless against the magical resistance of her classmates and denounces them as illusions, prompting Maria to expel her from Mariage Sorci\u00e8re. Inside the world of her diary, Maria accidentally locks herself out of her house with Sakutaro while Rosa is away on vacation with her boyfriend instead of being at work as she told Maria. Upon returning and being confronted by child services, Rosa takes her anger out on Maria and destroys Sakutaro, who Beatrice is unable to resurrect as Rosa created his vessel and has denied his existence. Distraught, Maria demands to learn magic to kill her mother and avenge Sakutaro. In 1998, Ange finally comprehends what Maria tried to teach her about magic and apologizes to the Sisters of Purgatory and Sakutaro, who she is still able to summon, hoping to atone for what she did to Maria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18393},{"seriesId":245,"episodeFileId":13855,"seasonNumber":1,"episodeNumber":22,"title":"Problem Child","airDate":"2009-11-26","airDateUtc":"2009-11-25T15:00:00Z","overview":"Kinzo appears at the family conference and denounces his children as being unfit to succeed him as the head of the Ushiromiya family. Deciding that his grandchildren may be more suitable successors, Kinzo summons the Siesta Sisters to select the first six sacrifices for his ceremony to revive Beatrice (Natsuhi, Eva, Hideyoshi, Rudolf, Rosa, and Genji), while the survivors (Krauss, Kyrie, Shannon, Kanon, and Nanjo) are imprisoned in the dungeon of Kuwadorian by the demon Gaap. Afterwards, Maria has her revenge against Rosa for destroying Sakutaro by torturing her with Beatrice's assistance, and fully realizes her own potential as a witch. Gohda and Kumasawa, who had survived the slaughter and escaped capture, inform the cousins in the guesthouse about what happened when they receive a phone call from the hostages telling them to stay in the guesthouse until Kinzo makes preparations to test his grandchildren for the family headship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18394},{"seriesId":245,"episodeFileId":13856,"seasonNumber":1,"episodeNumber":23,"title":"Breakthrough","airDate":"2009-12-03","airDateUtc":"2009-12-02T15:00:00Z","overview":"In 1998, Ange interrogates relatives of the Rokkenjima murder victims and hires a boat captain to take her to Rokkenjima, discovering Sakutaro's torn remains as well. In 1986, the cousins are informed of Kinzo's test from the hostages in Kuwadorian and are forced to lock Gohda and Kumasawa in the storehouse to keep them from interfering. Jessica and George are individually tested by Ronove and Gaap, respectively, and instructed to choose which of the islanders will be next to die: themselves, their true loves (Shannon for George and Kanon for Jessica), or everyone else. Jessica chooses herself for Kanon's sake so that he may live his life to the fullest, while George chooses everyone else as he is willing to go so far for his love for Shannon to be accepted. Unwilling to leave the hostages in the dungeon, however, Jessica and George defiantly engage their respective demons in combat.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18395},{"seriesId":245,"episodeFileId":13857,"seasonNumber":1,"episodeNumber":24,"title":"Adjourn","airDate":"2009-12-10","airDateUtc":"2009-12-09T15:00:00Z","overview":"Jessica and George are about to land their final blows on their opponents when Gaap teleports the two into each other, killing them both as their attacks collide. Temporarily resurrected by Ronove as a favor, Jessica calls Battler at the guesthouse to warn him of their enemies. Meanwhile, the hostages are able to break out of Kuwadorian, but are killed off one by one on their way to the mansion until only Kyrie remains. Before she too is killed, Kyrie calls Battler as well and tells him to believe in witches. Afterward, Maria is sent off to take her test when Battler receives another phone call, this time from the newly revived Beatrice, and goes to meet her at the mansion entrance, discovering Gohda and Kumasawa dead in the storehouse on his way there. Beatrice gives Battler his test: to remember a sin he committed six years ago. However, Battler is clueless as to what that may be, much to Beatrice's frustration, prompting her to take her anger out on Kinzo by spontaneously killing him. Having lost her interest in the game, Beatrice decides to suspend it by deeming Battler unqualified to be her opponent, revealing that his birth mother was not Rudolf's first wife Asumu as he had believed, and claiming that he is not Kinzo's grandson Battler, the only one eligible to fight her. Questioning his own identity, Battler fades away, and Beatrice retires to the newly opened Golden Land with Maria.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18396},{"seriesId":245,"episodeFileId":13858,"seasonNumber":1,"episodeNumber":25,"title":"Forced Move","airDate":"2009-12-17","airDateUtc":"2009-12-16T15:00:00Z","overview":"In 1998, Ange arrives at Rokkenjima and continues on alone with Mammon and Sakutaro, only to be ambushed by Kasumi and her men, who proceed to beat and taunt her mercilessly, and destroy Maria's diary. Noticing that Kasumi is being manipulated by the spirit of Eva-Beatrice, Ange miraculously summons the Sisters of Purgatory despite the large amount of magical resistance present, killing Kasumi and her men. Before vanishing, Eva-Beatrice resurrects the long-dead, human Eva to shoot and kill Ange, though Mammon destroys her gun, allowing Ange to kill Eva and make peace with her own emotions towards her. Ange meets with Bernkastel, who confirms that she is nothing more than a piece in the game between Battler and Beatrice. However, Ange remains determined to save her family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18397},{"seriesId":245,"episodeFileId":13859,"seasonNumber":1,"episodeNumber":26,"title":"Sacrifice","airDate":"2009-12-24","airDateUtc":"2009-12-23T15:00:00Z","overview":"Ange enters the Golden Land where she happily reunites Maria with Sakutaro and forces Beatrice to continue the game. Battler, however, has lost his soul due to his uncertainty of his own identity. Desperate to revive Battler, Ange confirms his qualifications as Kinzo's grandson, and reveals her own identity as his sister to him, successfully restoring him. Having broken the most important rule as a piece in the game to keep her identity a secret, however, Ange dies. With Battler's resolve strengthened and Beatrice realizing she cannot escape the game, the two engage each other in their final confrontation, with Battler's blue truth against Beatrice's red truth. Kinzo's spirit appears to protect Beatrice, but Battler dispels him in blue by confirming his death not only at the start of the fourth game, but every game thus far; however, Beatrice confirms in red that there are actually no more than seventeen people on Rokkenjima. Nevertheless, Battler manages to explain all four games through human means, while Beatrice is left completely skewered by his blue truth, but unable to die. Beatrice begs Battler to kill her and presents him the last mystery she is able to give: since Battler is the only person left alive on the island, and yet Beatrice is also there to kill him, Beatrice asks, \"Who am I?\" Understanding Beatrice's plight, Battler promises to solve her final mystery and put an end to her suffering. Bernkanstel and Lambdadelta, however, intend to keep Beatrice in the game, torturing her for eternity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18398}],"episodeFile":[{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Opening-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E01.Opening-HDTV-720p.mkv","size":490384070,"dateAdded":"2020-06-08T03:13:17.582208Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13834},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E02.First Move-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E02.First Move-HDTV-720p.mkv","size":454687528,"dateAdded":"2020-06-08T03:13:19.607045Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13835},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Dubious Move-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E03.Dubious Move-HDTV-720p.mkv","size":483340368,"dateAdded":"2020-06-08T03:13:22.190042Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13836},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Blunder-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E04.Blunder-HDTV-720p.mkv","size":431028498,"dateAdded":"2020-06-08T03:13:25.7022Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13837},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Fool's Mate-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E05.Fool's Mate-HDTV-720p.mkv","size":448378168,"dateAdded":"2020-06-08T03:13:27.912101Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2200000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13838},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Middle Game-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E06.Middle Game-HDTV-720p.mkv","size":447858908,"dateAdded":"2020-06-08T03:13:31.596384Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2200000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13839},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Early Queen Move-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E07.Early Queen Move-HDTV-720p.mkv","size":409480576,"dateAdded":"2020-06-08T03:13:35.498934Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13840},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Week Square-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E08.Week Square-HDTV-720p.mkv","size":406955875,"dateAdded":"2020-06-08T03:13:40.914377Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13841},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Skewer-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E09.Skewer-HDTV-720p.mkv","size":408151862,"dateAdded":"2020-06-08T03:13:44.006418Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13842},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Accept-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E10.Accept-HDTV-720p.mkv","size":410419695,"dateAdded":"2020-06-08T03:13:48.694546Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13843},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Back Rank Mate-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E11.Back Rank Mate-HDTV-720p.mkv","size":411014862,"dateAdded":"2020-06-08T03:13:53.611068Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:13","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13844},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Castling-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E12.Castling-HDTV-720p.mkv","size":414838549,"dateAdded":"2020-06-08T03:13:57.261766Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13845},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Gambit-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E13.Gambit-HDTV-720p.mkv","size":489039043,"dateAdded":"2020-06-08T03:14:01.110739Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13846},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Positional Play-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E14.Positional Play-HDTV-720p.mkv","size":429336596,"dateAdded":"2020-06-08T03:14:06.757841Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13847},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Isolated Pawn-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E15.Isolated Pawn-HDTV-720p.mkv","size":446802347,"dateAdded":"2020-06-08T03:14:11.004421Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13848},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Queening Square-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E16.Queening Square-HDTV-720p.mkv","size":445328792,"dateAdded":"2020-06-08T03:14:15.731342Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13849},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Promotion-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E17.Promotion-HDTV-720p.mkv","size":440551524,"dateAdded":"2020-06-08T03:14:21.595976Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13850},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Swindles-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E18.Swindles-HDTV-720p.mkv","size":468061666,"dateAdded":"2020-06-08T03:14:25.124403Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13851},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E19.End Game-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E19.End Game-HDTV-720p.mkv","size":412298179,"dateAdded":"2020-06-08T03:14:32.846837Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13852},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Zugzwang-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E20.Zugzwang-HDTV-720p.mkv","size":426807986,"dateAdded":"2020-06-08T03:14:36.86043Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13853},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Prophylaxis-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E21.Prophylaxis-HDTV-720p.mkv","size":480207370,"dateAdded":"2020-06-08T03:14:41.098293Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13854},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Problem Child-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E22.Problem Child-HDTV-720p.mkv","size":428429461,"dateAdded":"2020-06-08T03:14:45.739741Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13855},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Breakthrough-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E23.Breakthrough-HDTV-720p.mkv","size":460954348,"dateAdded":"2020-06-08T03:14:48.544688Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13856},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Adjourn-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E24.Adjourn-HDTV-720p.mkv","size":494117963,"dateAdded":"2020-06-08T03:14:52.653023Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13857},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Forced Move-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E25.Forced Move-HDTV-720p.mkv","size":378158430,"dateAdded":"2020-06-08T03:14:56.577755Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"24:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13858},{"seriesId":245,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Sacrifice-HDTV-720p.mkv","path":"\/tv\/Umineko - When They Cry\/Season 01\/S01E26.Sacrifice-HDTV-720p.mkv","size":292901082,"dateAdded":"2020-06-08T03:15:01.273834Z","releaseGroup":"DmonHiro","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13859}],"queue":[]},"252":{"series":{"title":"Ghost in the Shell: Stand Alone Complex","alternateTitles":[{"title":"Ghost in the Shell: Stand Alone Complex","sceneSeasonNumber":1},{"title":"Koukaku Kidoutai Stand Alone Complex","sceneSeasonNumber":1},{"title":"\u653b\u6bbb\u6a5f\u52d5\u968a STAND ALONE COMPLEX","sceneSeasonNumber":1},{"title":"Ghost in the Shell: Stand Alone Complex 2nd GIG","sceneSeasonNumber":2},{"title":"Koukaku Kidoutai S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"\u653b\u6bbb\u6a5f\u52d5\u968a S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"Ghost in the Shell: S.A.C. 1st GIG","sceneSeasonNumber":1},{"title":"Ghost in the Shell: S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"Ghost in the Shell","sceneSeasonNumber":1},{"title":"Ghost in the Shell SAC 2nd GIG","sceneSeasonNumber":2},{"title":"G.i.t.S. S.A.C. 2nd GIG","sceneSeasonNumber":2},{"title":"G.i.t.S. S.A.C.","sceneSeasonNumber":1},{"title":"Ghost in the Shell: SAC_2045","sceneSeasonNumber":3},{"title":"\u653b\u6bbb\u6a5f\u52d5\u968a SAC_2045","sceneSeasonNumber":3},{"title":"Ghost in the Shell SAC_2045","sceneSeasonNumber":3}],"sortTitle":"ghost in shell stand alone complex","status":"continuing","ended":false,"overview":"In the future when technological enhancements and robotics are a way of life, Major Motoko Kusanagi and Section 9 take care of the jobs that are too difficult for the police. Section 9 employs hackers, sharpshooters, detectives and cyborgs all in an effort to thwart cyber criminals and their plans to attack the innocent.","previousAiring":"2020-04-23T07:00:00Z","network":"Animax","airTime":"16:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/241\/banner.jpg?lastWrite=637262518728980910","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/73749-g7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/241\/poster.jpg?lastWrite=637262518730300890","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/73749-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/241\/fanart.jpg?lastWrite=637264269610536590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/73749-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":59,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-03-25T07:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":32022210238,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-01-08T07:25:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":35607710181,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2020-04-23T07:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":9249606742,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Ghost in the Shell - Stand Alone Complex","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":true,"runtime":25,"tvdbId":73749,"tvRageId":0,"tvMazeId":1935,"firstAired":"2002-10-01T00:00:00Z","seriesType":"standard","cleanTitle":"ghostinshellstandalonecomplex","imdbId":"tt0346314","titleSlug":"ghost-in-the-shell-stand-alone-complex","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime","Science Fiction"],"tags":[],"added":"2020-05-28T08:37:51.479841Z","ratings":{"votes":6847,"value":8.9},"statistics":{"seasonCount":3,"episodeFileCount":64,"episodeCount":64,"totalEpisodeCount":123,"sizeOnDisk":76879527161,"percentOfEpisodes":100.0},"id":241},"episodes":[{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Ghost in the Shell","airDate":"1995-11-18","airDateUtc":"1995-11-18T07:00:00Z","overview":"The year is 2029. The world has become intensively information oriented and humans are well-connected to the network. Crime has developed into a sophisticated stage by hacking into the interactive network. To prevent this, Section 9 is formed. These are cyborgs with incredible strengths and abilities that can access any network on Earth. \r\n\r\nA mysterious new hacker known only as the Puppet Master threatens to create chaos, erasing and rewriting the memories of his victims: humans who have cast away their physical body to become cyborgs. Is he an evil genius, or could he signal the beginning of a new age in the relationship between man and machine?","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18058},{"seriesId":241,"episodeFileId":13680,"seasonNumber":1,"episodeNumber":1,"title":"SA: Public Security Section 9; SECTION-9","airDate":"2002-10-01","airDateUtc":"2002-10-01T07:00:00Z","overview":"The Minister of Foreign Affairs behaves strange after a hostage situation in a restaurant. Section 9 is sent to investigate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17994},{"seriesId":241,"episodeFileId":13681,"seasonNumber":1,"episodeNumber":2,"title":"Testation","airDate":"2002-10-08","airDateUtc":"2002-10-08T07:00:00Z","overview":"A heavy-assault multiped tank runs amok under the control of an unknown hijacker.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17995},{"seriesId":241,"episodeFileId":13682,"seasonNumber":1,"episodeNumber":3,"title":"Android and I","airDate":"2002-10-15","airDateUtc":"2002-10-15T07:00:00Z","overview":"A series of android suicides prompts Section 9 to investigate the manufacturer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17996},{"seriesId":241,"episodeFileId":13683,"seasonNumber":1,"episodeNumber":4,"title":"C: The Visual Device will Laugh; INTERCEPTER","airDate":"2002-10-22","airDateUtc":"2002-10-22T07:00:00Z","overview":"Yamaguchi, an old friend of Togusa's and a police detective working in the Laughing Man task force, is murdered after he calls Togusa, requesting to see him concerning what Yamaguchi terms \"suspicious internal activity\" by superiors in the police department. At Yamaguchi's wake, Togusa is approached by Yamaguchi's wife, who delivers an envelope from him to Togusa that contain a series of strange photographs. Upon scrutinizing the photographs, Togusa realizes that none of them are taken using a camera. Continuing his investigation, Togusa interviews another detective in the Laughing Man task force, who coincidentally mentions that the task force is waiting to bug a primary suspect in the case with cybernetic surveillance devices called \"interceptors\". The interceptors allow constant audio and visual monitoring of the subject via their own senses. Togusa concludes that the Laughing Man task force members were bugged with these devices illegally for monitoring.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17997},{"seriesId":241,"episodeFileId":13684,"seasonNumber":1,"episodeNumber":5,"title":"C: The Inviting Bird will Chant; DECOY","airDate":"2002-10-29","airDateUtc":"2002-10-29T07:00:00Z","overview":"Section 9 suspects that the police investigators handling the Laughing Man case are using their primary suspect, a former Serano Genomics programmer with a shady anti-corporate past named Ei Nanao, as a decoy to hide some form of higher-level corruption. Aramaki orders Section 9 to commence around the clock surveillance on Nanao in an attempt to catch him in the act, but the hacker is killed before he can be brought in for questioning. Elsewhere, Kusanagi meets with her friend Kurutan, a hospital nurse, to use her external memory device in an effort to learn more about The Laughing Man case. However, when the police Superintendent-General is set to give a speech about the Interceptor incident and the Laughing Man case, one of the officers present has his cyberbrain hacked by the Laughing Man. The Laughing Man demands that the Superintendent-General tell the truth, or he will be assassinated.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17998},{"seriesId":241,"episodeFileId":13685,"seasonNumber":1,"episodeNumber":6,"title":"C: The Copycat will Dance; MEME","airDate":"2002-11-05","airDateUtc":"2002-11-05T07:00:00Z","overview":"The Superintendent-General's press conference quickly descends into chaos after the Laughing Man's assassination threat. Kusanagi suspects that the Laughing Man has inserted a virus into the police units assigned to guard the event. As Section 9 members struggle to evacuate the Superintendent-General to safety, the anti-virus team at HQ races to develop a vaccine to protect against it. However, random civilians begin joining in the assassination attempt as well, without any sort of external influence. After escorting the Superintendent-General to safety and apprehending all of the assassins, the police are left wondering about what caused dozens of completely unrelated people to attempt to murder a single man. After the immediate threat is averted, Aramaki orders Section 9 to open their own investigation into the Laughing Man case","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":17999},{"seriesId":241,"episodeFileId":13686,"seasonNumber":1,"episodeNumber":7,"title":"SA: Idolatry; IDOLATOR","airDate":"2002-11-12","airDateUtc":"2002-11-12T07:00:00Z","overview":"The Ministry of Home Affairs learns that Jenoma revolutionary leader Marcelo Jarti has been visiting Japan regularly every five months. Jarti is a drug trafficker and one of the world\u2019s most wanted men, and has been targeted for assassination by commandos of the United States Delta Force and United Kingdom Special Air Service (SAS) a total of six times and has survived each of these attempts. When Jarti returns to Japan following the most recently failed assassination attempt, Section 9 is called in to follow him and determine why Jarti has been visiting their country. They discover that the real Jarti had died several months ago after using a ghost-dubbing device to create dozens of cybernetic clones of himself, and the Yakuza running the cloning facility had kept releasing duplicates to prevent the Jenoma government from learning of their national hero's death.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18000},{"seriesId":241,"episodeFileId":13687,"seasonNumber":1,"episodeNumber":8,"title":"SA: The Fortunate Ones; MISSING HEARTS","airDate":"2002-11-19","airDateUtc":"2002-11-19T07:00:00Z","overview":"Kurutan calls the Major to the hospital where she works to look into the source of a young girl's heart transplant. The heart she received was given without consent of the owner's parents. The girl's doctors feared she might have had to be given a full-cyborg conversion, a thought that stirs painful memories for Kusanagi. Aramaki, believing that the culprits may be tied to a mass kidnapping ring, orders Section 9 to look into the case for connections between the organs, the company that sold them, and a local refugee camp set up at an abandoned oil refinery. Finally, the culprits are revealed to be a gang of rich medical students. Before arresting them, Kusanagi decides to scare and humiliate the students by posing as a murderous Yakuza enforcer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18001},{"seriesId":241,"episodeFileId":13688,"seasonNumber":1,"episodeNumber":9,"title":"C: The Man Who Lurks in the Darkness of the Net; CHAT! CHAT! CHAT!","airDate":"2002-11-26","airDateUtc":"2002-11-26T07:00:00Z","overview":"Using her net avatar, Kusanagi enters a chat room dedicated to the Laughing Man. Various theories are passed around the chat room as the members view various bits of evidence from the Laughing Man case. While in the chat room, Kusanagi homes in on an older man sitting at the table who seems to have more knowledge about the Laughing Man incidents than anyone else. After confronting the man and exchanging information with him, Kusanagi and one of the other guests are suddenly transferred out of the chat room and she briefly sees the Laughing Man.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18002},{"seriesId":241,"episodeFileId":13689,"seasonNumber":1,"episodeNumber":10,"title":"SA: A Perfect Day for a Jungle Cruise; JUNGLE CRUISE","airDate":"2002-12-03","airDateUtc":"2002-12-03T07:00:00Z","overview":"Marco Amoretti, a former American Imperial Navy Petty Officer turned serial killer, has arrived in Japan and for the last two months has murdered several women by slicing the skin off their torsos in the form of a T-shirt. American CIA officers have been dispatched to Japan, ostensibly to assist Section 9 in their effort to track down and apprehend Amoretti before he can strike again. When the CIA officers show no surprise at the developments in the case, Ishikawa hacks into the CIA database and learns that Amoretti was part of an American Empire commando team sent into the jungles of South America to conduct a covert operation aimed at breaking an enemy\u2019s will to fight by using terror tactics, such as flaying civilians alive. Elsewhere, Batou \u2014 an ex-JGSDF Ranger who has seen first-hand the horrors of the CIA operation \u2014 resolves to stop Amoretti by any means necessary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18003},{"seriesId":241,"episodeFileId":13690,"seasonNumber":1,"episodeNumber":11,"title":"C: Inside the Forest of the Sub-Imagoes; PORTRAITZ","airDate":"2002-12-10","airDateUtc":"2002-12-10T07:00:00Z","overview":"The Ministry of Health, Labour and Welfare's database has been hacked into, and classified material has been stolen. Section 9 traces the hack and determines that the hack job originated from a facility that helps people with Cyberbrain Closed Shell Syndrome. Togusa goes undercover to investigate the social welfare facility, and immediately encounters suspicious behaviour from the facility's supervisors. Togusa manages to learn that a person called \"the Chief\" visited the center during the week that the MHLW was hacked, but before he can determine the significance of this information Togusa is discovered; simultaneously, the facility's security system unexpectedly goes online, and Section 9\u2019s databases are subsequently hacked, leading Kusanagi and Batou to make an emergency insertion to evacuate Togusa.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18004},{"seriesId":241,"episodeFileId":13691,"seasonNumber":1,"episodeNumber":12,"title":"SA: Tachikoma Runaway, The Movie Director's Dream; ESCAPE FROM","airDate":"2002-12-17","airDateUtc":"2002-12-17T07:00:00Z","overview":"Early in the morning Batou's Tachikoma self-activates and leaves the Tachikoma storage bay to explore the outside world. While roaming the streets of Niihama, the Tachikoma encounters a young girl named Miki who is searching for her lost dog. The Tachikoma decides to help the girl, and together they manage to find the dog. While on their journey, the Tachikoma stumbles upon a cyberbrain being sold in a market that contains a ghost, and brings it back to the storage bay. When the Tachikoma returns to Section 9, technicians begin extensive tests to determine why the tank went AWOL in the first place, while Section 9 members turn their attention to the cyberbrain in an effort to determine what the brain contains. When one of the lab technicians investigating the brain links with it and becomes \"lost,\" Kusanagi volunteers to go after the missing man, leading her find the technician watching a movie that lacks a beginning or ending which brings her to tears.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18005},{"seriesId":241,"episodeFileId":13692,"seasonNumber":1,"episodeNumber":13,"title":"SA: Unequal Terrorist; NOT EQUAL","airDate":"2002-12-24","airDateUtc":"2002-12-24T07:00:00Z","overview":"Sixteen years ago, Eka Tokura, the daughter of a pioneering cybernetics company's CEO, was kidnapped by the New World Brigade, a terrorist group opposed to cyberization. The girl's whereabouts remained a mystery until she was spotted by members of the Maritime Safety Team aboard an abandoned radiation scrubbing station off the coast of Okinawa. Four Special Security Team operators of the Japan Coast Guard were sent to find the girl and rescue her, but the team vanished without a trace. Section 9 is covertly dispatched to the island with two objectives: locate any remaining SST members and evacuate them, and find and rescue the missing girl. Section 9 is inserted by submarine, and after a time manages to find the girl, but when they do, they realize that something is wrong: the girl is the same age she was when she was kidnapped all those years ago.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18006},{"seriesId":241,"episodeFileId":13693,"seasonNumber":1,"episodeNumber":14,"title":"SA: Automated Capitalism; \u00a5\u20ac$","airDate":"2002-12-31","airDateUtc":"2002-12-31T07:00:00Z","overview":"Acting on a tip, Section 9 breaks up a cabal of thieves planning to rob a Japanese financial institution. Shortly after the raid, a Chinese intelligence official contacts Section 9 and informs them of suspicious activity that he believes may indicate an assassination attempt by Chinese Socialists on Kanemoto Yokose, a prominent, yet reclusive, Japanese billionaire. Section 9 is therefore tasked with protecting Yokose, a 56-year-old ex-mathematician who has amassed a fortune by playing the stock market. Section 9 and the assassin arrive within minutes of each other, but after reaching Yokose\u2019s bedroom, both sides discover that Yokose died from a medical condition several months ago, and an advanced computer program had been managing his investments the whole time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18007},{"seriesId":241,"episodeFileId":13694,"seasonNumber":1,"episodeNumber":15,"title":"SA: Time of the Machines; MACHINES D\u00c9SIRANTES","airDate":"2003-01-07","airDateUtc":"2003-01-07T07:00:00Z","overview":"Kusanagi's reservations regarding Section 9's Tachikoma units comes to a head. She becomes disturbed by their behaviour, as their artificial intelligence agents appear to be developing too fast; she has additional concerns about the safety of retaining them in the unit for use in a battle situation. The Tachikomas become vaguely aware of Kusanagi's concerns, and attempt to avoid deactivation by hatching a bizarre scheme to appeal to Kusanagi and prevent their removal. When Batou is summoned to a conference by Kusanagi, he learns of the situation with the Tachikomas and is told that they will be disarmed and shipped back to the lab for analysis. Although unhappy with the decision, Batou has no choice but to comply with the order.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18008},{"seriesId":241,"episodeFileId":13695,"seasonNumber":1,"episodeNumber":16,"title":"SA: Chinks in the Armour of the Heart; Ag2O","airDate":"2003-01-14","airDateUtc":"2003-01-14T07:00:00Z","overview":"Sensitive information has been stolen from a U.S. Naval base, and the primary suspect is a former Paralympic silver medalist boxer named Pavlo Zaitsev, who works on the base as a hand-to-hand combat instructor. The Public Security office has instructed Batou to go undercover to spy on Zaitsev, a man whom he admires, to see if Zaitsev is somehow related to the missing information. Batou wants his suspicions to be wrong and for Zaitsev to be innocent. The assignment calls into question Batou's attitude on his duty towards Section 9 and the decisions it forces him to make. However, Batou discovers that Zaitsev is indeed the spy and reluctantly turns him in.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18009},{"seriesId":241,"episodeFileId":13696,"seasonNumber":1,"episodeNumber":17,"title":"SA: The True Reason for the Unfinished Love Affair; ANGELS' SHARE","airDate":"2003-01-21","airDateUtc":"2003-01-21T07:00:00Z","overview":"Kusanagi and Aramaki are visiting London for an anti-terrorism conference. While there, Aramaki stops at a wine bank to visit an old friend of his, who asks for his help in breaking up a Mafia money laundering scheme involving the bank and an unknown third party. Before Aramaki can leave, two thieves break in and a hostage situation ensues. In an effort to not let their scheme be known, the Mafia attempts to have Aramaki and the bank staff killed during a police raid, while Kusanagi makes her own plans to rescue the chief and the others from certain death. Aramaki manages to convince the two amateur thieves to surrender, and the entire group takes shelter in a secret basement underneath the wine vault as the corrupt police officers raid the bank. Kusanagi manages to infiltrate the building and extract Aramaki, as well as the evidence needed to implicate the Mafia and their corrupt associates within the police department.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18010},{"seriesId":241,"episodeFileId":13697,"seasonNumber":1,"episodeNumber":18,"title":"SA: Assassination Duet; LOST HERITAGE","airDate":"2003-01-28","airDateUtc":"2003-01-28T07:00:00Z","overview":"After a five-year wait, Chinese vice foreign minister Jin has been allowed access to the Kagoshima War Memorial in Japan. Jin is the first Chinese dignitary to be granted access to the site, but not everyone is happy with the decision, and before long a death threat is made against Jin. Elsewhere, Aramaki visits the grave of one of his deceased comrades, a Colonel in the GSDF. While at the cemetery, Aramaki encounters the Colonel\u2019s daughter, who voices her concern over her brother Yu\u2019s sudden behavioural changes. When Section 9 determines Yu to be the prime suspect in the assassination attempt, Kusanagi and Togusa are sent to apprehend him, but arrive too late to arrest Yu. Soon after, Aramaki receives a disturbing phone call from his dead friend, who has cheated death by merging his own ghost with his son's, and intends to avenge his wife's death during the war by assassinating Jin.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18011},{"seriesId":241,"episodeFileId":13698,"seasonNumber":1,"episodeNumber":19,"title":"SA: Embraced by a Disguised Net; CAPTIVATED","airDate":"2003-02-04","airDateUtc":"2003-02-04T07:00:00Z","overview":"Former Prime Minister Kanzaki\u2019s daughter has been abducted, and Section 9 is called in to investigate her disappearance. The prime suspect in the case is Blindfold Ivan, the pseudonym for the North Territories Russian Mafia. Blindfold Ivan uses the same modus operandi in its abductions: over a three-day period, multiple underage women are kidnapped and then shipped to chop shops where they are killed, and all organs and cybernetic pieces are taken to be sold on the black market. Kanzaki had previously downplayed these mass kidnappings and denied the existence of Blindfold Ivan in an effort to strengthen ties between Russia and Japan; however, he publicly reveals the kidnapping of his daughter at Aramaki\u2019s request in order to save his daughter. The news abruptly changes the situation by thrusting the kidnapping ring's leader, an ex-SVR officer named Cruzkowa Bosyeltnov, into the center of a scandalous, nationwide media event.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18012},{"seriesId":241,"episodeFileId":13699,"seasonNumber":1,"episodeNumber":20,"title":"C: Vanished Medication; RE-VIEW","airDate":"2003-02-11","airDateUtc":"2003-02-11T07:00:00Z","overview":"After the events of \"Portraitz\", Togusa uses J. D. Salinger's The Catcher in the Rye as a starting point and develops a theory that the Laughing Man is after something published on paper. Togusa receives permission to check out a Ministry of Health, Labour, and Welfare (MHLW) records building and stumbles upon a key piece of evidence: a list of Cyberbrain Sclerosis patients treated with a secret medication, known as the Murai Vaccine, has disappeared from the MHLW. Togusa traces the missing list to a group called the Sunflower Society, where he learns that several prominent Japanese citizens have been secretly treated with the experimental medication. Elsewhere, the head of the Japanese DEA unit dispatches the Narcotics Suppression Squad to eliminate the members of the Sunflower Society and recover the missing list.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18013},{"seriesId":241,"episodeFileId":13700,"seasonNumber":1,"episodeNumber":21,"title":"C: Left-Behind Trace; ERASER","airDate":"2003-02-18","airDateUtc":"2003-02-18T07:00:00Z","overview":"Togusa finds himself in the hospital after being shot, but is desperate to impart what he has learned to the rest of the group. By diving into Togusa\u2019s memories, Section 9 experiences the DEA raid against the Sunflower Society firsthand, prompting anger and rage. The Chief takes it upon himself to notify the head of the DEA of Togusa\u2019s presence at the Sunflower Society building during the raid, prompting the DEA chief to order the Narcotics Suppression Squad (NSS) to the house of Dr. Hisashi Imakurusu. Dr. Imakurusu had overseen the board that denied the Murai Vaccine; after being diagnosed with Cyberbrain Sclerosis, he began using the vaccine in secret and subsequently went into hiding. Section 9 believes Dr. Imakurusu may hold a clue to unraveling the entire Laughing Man case, and undertake a desperate search to locate him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18014},{"seriesId":241,"episodeFileId":13701,"seasonNumber":1,"episodeNumber":22,"title":"C: Corporate Graft; SCANDAL","airDate":"2003-02-25","airDateUtc":"2003-02-25T07:00:00Z","overview":"The Head of the DEA is arrested for murder in connection with the raid at the Sunflower Society building. Aramaki orders Section 9 to go through all of the facility's records to determine who are the remaining members of the Narcotics Suppression Squad. As Aramaki leaves the building he shares an elevator ride with former prime minister Kanzaki, who privately discloses that the prime suspect \"pulling the strings\" has a lot of friends in high places and strong connections to the navy. Elsewhere, the remaining members of the Narcotic Suppression Squad attempt to frame Aramaki with drug trafficking, concocting a story about his homeless brother to lure him to the refugee district and arrest him, but their plan fails when Batou rescues the chief before the police arrive on the scene. Meanwhile, Kusanagi seeks to repair her prosthetic body after incurring severe damage in a battle against the government's latest prototype power armor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18015},{"seriesId":241,"episodeFileId":13702,"seasonNumber":1,"episodeNumber":23,"title":"C: The Other Side of Good and Evil; EQUINOX","airDate":"2003-03-04","airDateUtc":"2003-03-04T07:00:00Z","overview":"The Laughing Man returns to kidnap Ernest Serano, the CEO of Serano Genomics, just as he did six years before. Returning to the caf\u00e9 where Serano was first kidnapped, he and the Laughing Man share the story of the events leading up to the kidnapping and the events following it. During the conversation, the Laughing Man asks Serano why he never fulfilled his promise to tell the truth about the Murai Vaccine, and in response Serano informs the Laughing Man that the whole time, he was under house arrest. Meanwhile, Section 9 determines the Secretary General Yakushima to be the man behind the Laughing Man scandal, and resolve to take Serano into protective custody to obtain his testimony. When the team discovers that Serano has been kidnapped by the Laughing Man again, they mount a frantic search to find and secure him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18016},{"seriesId":241,"episodeFileId":13703,"seasonNumber":1,"episodeNumber":24,"title":"C: Sunset in the Lonely City; ANNIHILATION","airDate":"2003-03-11","airDateUtc":"2003-03-11T07:00:00Z","overview":"Having learned the entire truth behind the Laughing Man Incident from the Laughing Man himself, and confirming the information with Serano, Section 9 is finally ready to make their move against the man behind the corporate terrorism: standing Secretary General Yakushima. However, Yakushima has learned of Section 9\u2019s planned move, and has leaked the existence of the group to the press in an effort to cast the organization in a bad light. When Aramaki arrives to speak with the Prime Minister, he presents the incriminating evidence against Yakushima, expecting the Prime Minister to take action and remove Yakushima from office. However, the Lower House elections are entering a crucial stage, and without the support of his party in that House, the Prime Minister is uncertain of his ability to have Yakushima removed from office and arrested for his crimes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18017},{"seriesId":241,"episodeFileId":13704,"seasonNumber":1,"episodeNumber":25,"title":"C: Smoke of Gunpowder, Hail of Bullets; BARRAGE","airDate":"2003-03-18","airDateUtc":"2003-03-18T07:00:00Z","overview":"Aramaki has been released under his own recognizance, and meets with the head of the Ministry of Justice to explain the situation and ask for help in ensuring his team's safety, but the Minister of Justice is powerless to affect the situation beyond the prosecution of Yakushima. Elsewhere, Saito and Ishikawa are caught in separate traps set by Umibozu teams, but not before successfully dispersing information seeds given to them by the Major. With Batou and Kusanagi as the only uncaptured members of Section 9, Batou undertakes a risky sortie to the Major's apartment to recover her sentimentally-valued watch. Before he can escape, Umibozu commandos arrive and a firefight ensues. Batou successfully fends off the first wave of attacks, but is unexpectedly confronted with two armoured combat suits, the second of which proves to be more than he can handle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18018},{"seriesId":241,"episodeFileId":13705,"seasonNumber":1,"episodeNumber":26,"title":"C: Public Security Section 9, Once Again; STAND ALONE COMPLEX","airDate":"2003-03-25","airDateUtc":"2003-03-25T07:00:00Z","overview":"The dismantling of Section 9, spun by the media as a JSDF preemptive strike against a radical security unit planning a coup, provides the Prime Minister with the public support his party needs to win the Lower House elections. Immediately after the election, in keeping with his promise, the Prime Minister discloses the information regarding The Laughing Man case, fingering Yakushima as the ringleader. Three months pass, during which Togusa tries to come to terms with all that has happened with Section 9. In his attempts to find information on the rest of the team, he learns that the Major was killed and the remaining members of Section 9 are serving time in a state prison for high treason. The news upsets Togusa, and he resolves to assassinate the man responsible for Section 9's dissolution.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":1,"unverifiedSceneNumbering":false,"id":18019},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"The Laughing Man","airDate":"2003-09-09","airDateUtc":"2003-09-09T07:00:00Z","overview":"Alerted to a possible conspiracy active amongst the highest levels of the Police, the members of Section 9 discover that a previously inactive but elite hacker may be involved in the blackmailing of several key business and government leaders. As the conspiracy stretches to affect all levels of society, time is running out for Major Motoko Kusanagi and her team to uncover the truth and capture the elusive Laughing Man.\r\n\r\nReleased in the United States and Canada on October 2, 2007, this film is an OVA version of the first season of the anime series Ghost in the Shell: S.A.C.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18060},{"seriesId":241,"episodeFileId":13719,"seasonNumber":2,"episodeNumber":1,"title":"DI: Reactivation; REEMBODY","airDate":"2004-01-01","airDateUtc":"2004-01-01T07:00:00Z","overview":"Armed terrorists have taken over the Chinese Embassy in New Port City. Holding an unknown number of hostages, the group, calling themselves the Individual Eleven, are demanding that the government cease accepting Asian refugees and dissolve the five Asian refugee camps situated throughout Japan.\r\n\r\nThe members of Section 9 have mobilized and are in position to move in. However, due to the events of the Laughing Man Incident (1st GIG), Section 9 technically no longer exists. The unit must wait for an official order from Chief Aramaki, who is busy making his case in front of the new Prime Minister of Japan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18020},{"seriesId":241,"episodeFileId":13720,"seasonNumber":2,"episodeNumber":2,"title":"DI: Well-Fed Me; NIGHT CRUISE","airDate":"2004-01-01","airDateUtc":"2004-01-01T07:25:00Z","overview":"Post Traumatic Stress Disorder is put on full display. A Japanese National named Gino, who suffered through the horrors of Non-Nuclear World War IV, the Second Vietnam War, now passes his days as a helicopter pilot for the chairman of a media conglomerate. His cushy job, however, does not take away the sheer internal pain that Gino is facing.\r\n\r\nAs he moves through his isolated existence, Gino leaps between reality and fantasy. However, he keeps his dementia solely to himself. Having no one to help him, his condition continues to worsen.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18021},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Tachikomatic Days EP01","airDate":"2004-01-01","airDateUtc":"2004-01-01T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18064},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Tachikomatic Days EP02","airDate":"2004-01-01","airDateUtc":"2004-01-01T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18065},{"seriesId":241,"episodeFileId":13721,"seasonNumber":2,"episodeNumber":3,"title":"DI: Saturday Night and Sunday Morning; CASH EYE","airDate":"2004-02-07","airDateUtc":"2004-02-07T07:00:00Z","overview":"A cat thief named Cash Eye has infiltrated a building owned by Federation of Economic Organizations Chairman Tsutomu Tadokoro. The cat burglar made quick work of the top-notch security system and left a calling card on the Chairman's desk saying that Cash Eye will be infiltrating his vault during an upcoming party.\r\n\r\nAlbeit reluctant to get Section 9 involved, Aramaki has no choice but to assist Tadokoro. Prime Minister Kayabuki has requested that his unit go undercover in order to prevent the burglary.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18022},{"seriesId":241,"episodeFileId":13722,"seasonNumber":2,"episodeNumber":4,"title":"DU: Natural Enemy; NATURAL ENEMY","airDate":"2004-02-07","airDateUtc":"2004-02-07T07:25:00Z","overview":"A joint training exercise between the Japanese Ground and Maritime Self-Defense Armies that takes place within the sealed sector of New Port City's Refugee District goes awry, putting the Asian refugees in danger. Section 9 Chief Aramaki takes the matter up with Kubota, his friend at the Ministry of Defense.\r\n\r\nWhile there, Aramaki is approached by a man from the Cabinet Intelligence Service: Kazunoto Gouda. Acting as a representative for his superior, the Chief Cabinet Secretary, G\u014dda requests that Aramaki bring the full force of Section 9 to bear on the situation. There's just one catch...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18023},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Tachikomatic Days EP03","airDate":"2004-02-07","airDateUtc":"2004-02-07T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18066},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Tachikomatic Days EP04","airDate":"2004-02-07","airDateUtc":"2004-02-07T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18067},{"seriesId":241,"episodeFileId":13723,"seasonNumber":2,"episodeNumber":5,"title":"IN: Those Who Have the Motive; INDUCTANCE","airDate":"2004-03-06","airDateUtc":"2004-03-06T07:00:00Z","overview":"During a visit to the Dejima Refugee Residential District off the coast of Nagasaki, Prime Minister Kayabuki receives a bouquet of flowers that is accompanied by an envelope stamped with the diamond seal seen in \"NATURAL ENEMY\". The envelope contains a letter that promises an attempt to take the Prime Minister's life.\r\n\r\nAt a meeting of the Prime Minister's Cabinet, Aramaki is shown the letter and told that so far the stamp on the envelope has turned up in eight other terrorist incidents. The Cabinet calls for Section 9's assistance. However, much to the unit members' chagrin, Section 9 will not be deployed in an offensive role.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18024},{"seriesId":241,"episodeFileId":13724,"seasonNumber":2,"episodeNumber":6,"title":"DI: Latent Heat Source; EXCAVATION","airDate":"2004-03-06","airDateUtc":"2004-03-06T07:25:00Z","overview":"A highway accident involving a large commercial truck has left a fully prostheticized man dead, his body torn apart from the impact. Togusa is summoned by Aramaki to delve deeper into the matter as the dead man had recently tried to blackmail the Energy Ministry.\r\n\r\nThe dead man's name was Kanji Kotan and he had recently arrived to Niihama by way of T\u014dky\u014d. Due to the rest of Section 9 guarding the Prime Minister (\"INDUCTANCE\"), Aramaki can only send Togusa, with a Tachikoma as protection, to dig up what he can about the man's recent activities before he died.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18025},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Ghost in the Shell 2: Innocence","airDate":"2004-03-06","airDateUtc":"2004-03-06T07:00:00Z","overview":"The year is 2032. Following the events of the first Ghost in the Shell movie, Major Motoko Kusanagi has since left her physical body and is now a \"ghost\" living in the network. This leaves Batou as the top officer at Section 9, the special task force assigned to matters of human\/machine relations. Batou's latest assignment is to investigate the recent string of suicide-murders perpetrated by a certain brand of \"gynoids,\" androids designed to look like women. Together with officer Togusa (one of the last few people who hasn't had his body fitted with cybernetic parts), Batou tracks down the cause of the wayward gynoids \u2014 all the while pondering and discussing the hazy realms where machines become dangerously close to human, and humans become dangerously close to machines.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18059},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Tachikomatic Days EP05","airDate":"2004-03-06","airDateUtc":"2004-03-06T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18068},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Tachikomatic Days EP06","airDate":"2004-03-06","airDateUtc":"2004-03-06T07:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18069},{"seriesId":241,"episodeFileId":13725,"seasonNumber":2,"episodeNumber":7,"title":"DU: Rhapsody - The Melody of a Bygone Nation; Pu239\/94","airDate":"2004-04-03","airDateUtc":"2004-04-03T07:00:00Z","overview":"A botched arms deal reveals that the government's plans to remove Plutonium from the Shinjuku dig site (\"EXCAVATION\") by sea have been compromised. Section 9 is called in to take the Plutonium out of Old T\u014dky\u014d by land.\r\n\r\nThe members of Section 9 are not happy being used by the government. Batou is especially incensed since Section 9 is supposed to be an offensive organization. His patience will be further tried when he and Section 9 find out who will be accompanying them on their mission...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18026},{"seriesId":241,"episodeFileId":13726,"seasonNumber":2,"episodeNumber":8,"title":"DI: Vegetarian Feast; FAKE FOOD","airDate":"2004-04-03","airDateUtc":"2004-04-03T07:25:00Z","overview":"While Ishikawa begins to dig deeper into the background of CIS Representative Kazunoto Gouda, the rest of Section 9 are instructed to arrest one Shou Kawashima, a Taiwanese vegetarian restaurant chef who has been seen at three locations where the Individual Eleven have claimed responsibility for attacking.\r\n\r\nThe Taiwanese restaurant where he works is near the Nanyou Shimbun (Newspaper) building that had received an earlier threat against it by the Individual Eleven. Section 9 moves into position around the Taiwanese restaurant and commences their stakeout.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18027},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Tachikomatic Days EP07","airDate":"2004-04-03","airDateUtc":"2004-04-03T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18070},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Tachikomatic Days EP08","airDate":"2004-04-03","airDateUtc":"2004-04-03T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18071},{"seriesId":241,"episodeFileId":13727,"seasonNumber":2,"episodeNumber":9,"title":"DU: The Hope Named Despair; AMBIVALENCE","airDate":"2004-05-08","airDateUtc":"2004-05-08T07:00:00Z","overview":"Several bombings have occurred throughout New Port City. Each time, Section 9 arrives too late to stop their detonations. With a fifth and final bomb set to go off somewhere in the city, the unit puts all of the information they have found from the first four bombings together.\r\n\r\nEven the Cabinet Intelligence Service is having their fair share of difficulties. A hacker has infiltrated its incredibly advanced computer security system. The hacker enters the vast array of information stored at the CIS and begins to collect data...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18028},{"seriesId":241,"episodeFileId":13728,"seasonNumber":2,"episodeNumber":10,"title":"DI: One Angry Man; TRIAL","airDate":"2004-05-08","airDateUtc":"2004-05-08T07:25:00Z","overview":"Togusa aids a woman who has been chased by a man through the streets of Niihama. With his Mateba, Togusa is able to disable the man's prosthetic body. However, he does not secure the man's pistol. When Togusa helps the woman up, the man has enough movement left in his body to aim his gun and fire at the woman, killing her instantly.\r\n\r\nThe murderer is brought to trial. However, due to the events that occurred immediately following the murder, Togusa is brutally cross-examined by the murderer's lawyer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18029},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Tachikomatic Days EP09","airDate":"2004-05-08","airDateUtc":"2004-05-08T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18072},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Tachikomatic Days EP10","airDate":"2004-05-08","airDateUtc":"2004-05-08T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18073},{"seriesId":241,"episodeFileId":13729,"seasonNumber":2,"episodeNumber":11,"title":"IN: Kusanagi's Labyrinth; AFFECTION","airDate":"2004-06-05","airDateUtc":"2004-06-05T07:00:00Z","overview":"Training has commenced to find new recruits for Section 9. With Motoko acting as the target, Batou and Togusa watch as the recruits try to keep up with the Major.\r\n\r\nAfter ditching some of the recruits, Motoko has to lose just one more pair. She ascends some stairs in an alley and the recruits follow her. Moving out into the street above, the recruits see that they have lost the target. However, Batou and Togusa have lost contact with the Major as well.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18030},{"seriesId":241,"episodeFileId":13730,"seasonNumber":2,"episodeNumber":12,"title":"IN: To Those Without Even a Name...; SELECON","airDate":"2004-06-05","airDateUtc":"2004-06-05T07:25:00Z","overview":"Section 9 has uncovered Sh\u014d Kawashima's (\"FAKE FOOD\") external memory device on the net. Hidden in a route to the Asian matrix only accessible through the European array, Section 9 concludes that the device was hidden by Gouda. Unfortunately, Gouda has left no trace of his movements in the device.\r\n\r\nThe Major prepares to dive into the device with B\u014dma and Ishikawa watching her closely. However, before she can dive, Aramaki notifies her that someone even more important than the external memory device has just surfaced...","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18031},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Tachikomatic Days EP11","airDate":"2004-06-05","airDateUtc":"2004-06-05T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18074},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Tachikomatic Days EP12","airDate":"2004-06-05","airDateUtc":"2004-06-05T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18075},{"seriesId":241,"episodeFileId":13731,"seasonNumber":2,"episodeNumber":13,"title":"DI: Face; MAKE UP","airDate":"2004-07-03","airDateUtc":"2004-07-03T07:00:00Z","overview":"With the latest Individual 11 incident still fresh in the public's mind, Section 9 discovers that only a skilled face sculptor could have created Kuze's prosthetic face. Since only two artists fit that description, they quickly locate the craftsmen and go to question them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"sceneAbsoluteEpisodeNumber":13,"sceneEpisodeNumber":13,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18032},{"seriesId":241,"episodeFileId":13732,"seasonNumber":2,"episodeNumber":14,"title":"DI: Beware the Left Eye; POKER FACE","airDate":"2004-07-03","airDateUtc":"2004-07-03T07:25:00Z","overview":"While on an assignment guarding the Prime Minister, Saitou and the Tachikomas pass the time playing poker with a few policemen who are also assigned to the case. Much to the chagrin of the other men, Saitou wins hand after hand.\r\n\r\nThe Tachikomas take notice of Saitou's uncanny accuracy and start to comment. Their constant chattering quickly gets on the other player's nerves, so to smooth things over Saitou recounts his time working as a sniper for mercenaries in Mexico.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"sceneAbsoluteEpisodeNumber":14,"sceneEpisodeNumber":14,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18033},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Tachikomatic Days EP13","airDate":"2004-07-03","airDateUtc":"2004-07-03T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18076},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Tachikomatic Days EP14","airDate":"2004-07-03","airDateUtc":"2004-07-03T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18077},{"seriesId":241,"episodeFileId":13733,"seasonNumber":2,"episodeNumber":15,"title":"DI: Afternoon of the Machines; PAT.","airDate":"2004-08-07","airDateUtc":"2004-08-07T07:00:00Z","overview":"During a scheduled maintenance, the Tachikomas begin to chat away about the Individual Eleven.\r\n\r\nWhile talking in their new \"forum\", Batou and Togusa appear and take one of the Tachikomas - who just happens to be Batou's pet - with them to Spring-8 to look at the scientific evidence gathered on the Individual Eleven.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"sceneAbsoluteEpisodeNumber":15,"sceneEpisodeNumber":15,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18034},{"seriesId":241,"episodeFileId":13734,"seasonNumber":2,"episodeNumber":16,"title":"IN: The Fact of Being There; ANOTHER CHANCE","airDate":"2004-08-07","airDateUtc":"2004-08-07T07:25:00Z","overview":"Ishikawa returns from the Peninsula with the latest intel on Kuze, but is surprised to learn of a possible refugee uprising. The Major and Aramaki are sent to see the Prime Minister to discuss this matter and the existence of \"hub cyberbrains\". While they wait, the rest of the team listens to Ishikawa's report on Kuze's past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"sceneAbsoluteEpisodeNumber":16,"sceneEpisodeNumber":16,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18035},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Tachikomatic Days EP15","airDate":"2004-08-07","airDateUtc":"2004-08-07T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18078},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Tachikomatic Days EP16","airDate":"2004-08-07","airDateUtc":"2004-08-07T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18079},{"seriesId":241,"episodeFileId":13735,"seasonNumber":2,"episodeNumber":17,"title":"DI: Mother-Child Relationship; RED DATA","airDate":"2004-09-04","airDateUtc":"2004-09-04T07:00:00Z","overview":"Following a tip, the Major conducts an undercover investigation of Kuze in Taiwan. While there, she saves a boy running from the Mafia.\r\n\r\nAfter being saved, the boy follows her, making sure that she finishes what she started. The mafia will continue to pursue the boy and the Major has to protect him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"sceneAbsoluteEpisodeNumber":17,"sceneEpisodeNumber":17,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18036},{"seriesId":241,"episodeFileId":13736,"seasonNumber":2,"episodeNumber":18,"title":"DI: Angel's Poem; TRANS PARENT","airDate":"2004-09-04","airDateUtc":"2004-09-04T07:25:00Z","overview":"The Major and Batou are flown to Berlin in an effort to track down a terrorist called \"Angel's Feathers\". While there, Batou attracts the attention of a young girl in a wheelchair.\r\n\r\nThe girl is waiting for the yearly visit from her father, but Batou's appearance piqued her curiosity. As the days lead up to her father's visit, her curiosity in this stranger grows stronger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"sceneAbsoluteEpisodeNumber":18,"sceneEpisodeNumber":18,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18037},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Tachikomatic Days EP17","airDate":"2004-09-04","airDateUtc":"2004-09-04T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18080},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Tachikomatic Days EP18","airDate":"2004-09-04","airDateUtc":"2004-09-04T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18081},{"seriesId":241,"episodeFileId":13737,"seasonNumber":2,"episodeNumber":19,"title":"IN: Chain of Symmetry; CHAIN REACTION","airDate":"2004-10-02","airDateUtc":"2004-10-02T07:00:00Z","overview":"Despite close scrutiny by the authorities, the Dejima refugees declare their independence. Kuze is suspected to be the mastermind behind this new resistance and Section 9 is sent to detain him.\r\n\r\nThe Major hacks into the refugee cyberbrain hub and easily locates Kuze. When the team rushes to capture him, however, they find themselves in the middle of a trap.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"sceneAbsoluteEpisodeNumber":19,"sceneEpisodeNumber":19,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18038},{"seriesId":241,"episodeFileId":13738,"seasonNumber":2,"episodeNumber":20,"title":"IN: Confusion at the North End; FABRICATE FOG","airDate":"2004-10-02","airDateUtc":"2004-10-02T07:25:00Z","overview":"Section 9 heads to Etorofu in search of Kuze. During their investigations, the Major finds an interesting floppy disk on the body of a dead addict.\r\n\r\nThe floppy proves to be a goldmine of information, as it contains records of plutonium transactions. The last buyer to purchase the material was a group of Asian refugees. Realizing the transaction is about to take place, the team rushes to the location and is surprised by what they find.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"sceneAbsoluteEpisodeNumber":20,"sceneEpisodeNumber":20,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18039},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Tachikomatic Days EP19","airDate":"2004-10-02","airDateUtc":"2004-10-02T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18082},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Tachikomatic Days EP20","airDate":"2004-10-02","airDateUtc":"2004-10-02T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18083},{"seriesId":241,"episodeFileId":13739,"seasonNumber":2,"episodeNumber":21,"title":"IN: Escape in Defeat; EMBARRASSMENT","airDate":"2004-11-06","airDateUtc":"2004-11-06T07:00:00Z","overview":"Much to the chagrin of Batou, Motoko, and the rest of the team, Kuze and the refugees manage to escape in one of the camouflaged boats. They are further hampered when an explosion causes heavy losses, leaving them unable to follow the fleeing boat.\r\n\r\nRegrouping, the team decides to refocus the investigation to the events surrounding Kuze. They start a secret investigation into Sagawa Electronics, the company responsible for the nuclear material transaction, and find that Gouda was involved. Meanwhile, as the boat heads for Dejima, Kuze makes his own unsettling discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"sceneAbsoluteEpisodeNumber":21,"sceneEpisodeNumber":21,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18040},{"seriesId":241,"episodeFileId":13740,"seasonNumber":2,"episodeNumber":22,"title":"DU: Abandoned City; REVERSAL PROCESS","airDate":"2004-11-06","airDateUtc":"2004-11-06T07:25:00Z","overview":"The city of Fukuoka is evacuated when a live nuclear bomb is found. With the Dejima Refugees targeted as the prime suspects, the government sends the Self-Defense Forces into the city.\r\n\r\nAramaki suspects the CIS's involvement in this latest incident is deeper then it appears. Batou is sent to gather more information from Gouda, but will he be able to hold his temper against the arrogant agent?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"sceneAbsoluteEpisodeNumber":22,"sceneEpisodeNumber":22,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18041},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Tachikomatic Days EP21","airDate":"2004-11-06","airDateUtc":"2004-11-06T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18084},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Tachikomatic Days EP22","airDate":"2004-11-06","airDateUtc":"2004-11-06T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18085},{"seriesId":241,"episodeFileId":13741,"seasonNumber":2,"episodeNumber":23,"title":"IN: The Day the Bridge Falls; MARTIAL LAW","airDate":"2004-12-04","airDateUtc":"2004-12-04T07:00:00Z","overview":"The Chief Cabinet Secretary uses the excuse of the refugees possessing 10kg of plutonium to mobilize the military against Dejima. With the available evidence against the refugees, Prime Minister Kayabuki reluctantly agrees. However, she soon learns from the Chief Cabinet Secretary that he's aligned himself with Imperial America and is now after her job.\r\n\r\nKnowing her days as P.M. are numbered, she agrees with Aramaki's plan and calls the U.N. in for a nuclear inspection of Dejima. The move buys them some time to defuse the situation, and Section 9 heads to Dejima to meet up with the U.N in two days. However, with tensions running high it is only a matter of time before someone fires the first shot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"sceneAbsoluteEpisodeNumber":23,"sceneEpisodeNumber":23,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18042},{"seriesId":241,"episodeFileId":13742,"seasonNumber":2,"episodeNumber":24,"title":"IN: Aerial Bombing of Dejima; NUCLEAR POWER","airDate":"2004-12-04","airDateUtc":"2004-12-04T07:25:00Z","overview":"With the felling of Dejima Bridge by the refugees, a rumor circulates around the Cabinet that the refugees plan a mass suicide bombing using nuclear bombs. Fearing this, the Cabinet steps up the attack against the city. Meanwhile, Prime Minister Kayabuki has been secretly arrested and taken to an unknown location. Aramaki, Togusa and Proto, in trying to help the P.M. are also taken into custody and secured in her office.\r\n\r\nWith Section 9 having entered the non-communication zone and Aramaki being cut off from communication, Ishikawa and a Tachikoma make their way to Spring-8 on their own. Meanwhile, Gouda has sent an unwitting Section 4 after Section 9 to retrieve the plutonium.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"sceneAbsoluteEpisodeNumber":24,"sceneEpisodeNumber":24,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18043},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Tachikomatic Days EP23","airDate":"2004-12-04","airDateUtc":"2004-12-04T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18086},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Tachikomatic Days EP24","airDate":"2004-12-04","airDateUtc":"2004-12-04T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18087},{"seriesId":241,"episodeFileId":13743,"seasonNumber":2,"episodeNumber":25,"title":"IN: To the Other Side of Paradise; THIS SIDE OF JUSTICE","airDate":"2005-01-08","airDateUtc":"2005-01-08T07:00:00Z","overview":"As the attack on Dejima escalates, the Major catches up with Kuze. She explains the whole situation to him and he agrees to follow her. They are about to leave when both are attacked by the Self-Defense forces and in the confusion are trapped under the rubble.\r\n\r\nTogusa rescues the Prime Minister and brings her back to her office. There, Aramaki hopes her influence will stop the launching of the ultimate weapon. Meanwhile, Batou reasons with Section 4.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"sceneAbsoluteEpisodeNumber":25,"sceneEpisodeNumber":25,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18044},{"seriesId":241,"episodeFileId":13744,"seasonNumber":2,"episodeNumber":26,"title":"IN: Return to Patriotism; ENDLESS\u221eGIG","airDate":"2005-01-08","airDateUtc":"2005-01-08T07:25:00Z","overview":"Kuze and the Major come up with a plan to save the refugees, but the chances of its success are slim. Realizing this, the Tachikomas disobey the Major's orders and come up with a plan of their own. Batou has also disobeyed the Major's orders to go to the bridge and is desperately searching for her in the ruins of Dejima. Meanwhile, the Prime Minister is frustrated with being spurned by the Chief Cabinet Secretary. Determined to be remembered as more than a mere figurehead, she takes matters into her own hands.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"sceneAbsoluteEpisodeNumber":26,"sceneEpisodeNumber":26,"sceneSeasonNumber":2,"unverifiedSceneNumbering":false,"id":18045},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Tachikomatic Days EP25","airDate":"2005-01-08","airDateUtc":"2005-01-08T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18088},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Tachikomatic Days EP26","airDate":"2005-01-08","airDateUtc":"2005-01-08T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18089},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Individual Eleven","airDate":"2006-01-27","airDateUtc":"2006-01-27T07:00:00Z","overview":"Unlike The Laughing Man, which stuck to the storyline of the TV series, Individual Eleven has gone through a bold editing phase, and the relationship between Kuze and Motoko is even more highlighted than in the TV series. This is a re-born 2nd Gig.\r\n\r\nThe year is 2030. Six months passed since the Laughing Man Incident was solved. About 3 million refugees are living in Japan, invited to fill the labor shortage. However, the emergent presence of the invited-refugees intensified their confrontation with the \"Individualists\", who called for national isolation, which then led to the increased incidences of terrorist attacks. Under these circumstances, a terrorist group called the Individual Eleven carries out a suicide attack.\r\nBut there was a greater scheme behind their action. When Section 9 learns this, they attempt to nail down the mastermind of the incident.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18061},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Solid State Society","airDate":"2006-09-01","airDateUtc":"2006-09-01T07:00:00Z","overview":"A.D. 2034. It has been two years since Motoko Kusanagi left Section 9. Togusa is now the new leader of the team, that has considerably increased its appointed personnel. The expanded new Section 9 confronts a rash of complicated incidents, and investigations reveal that an ultra-wizard hacker nicknamed the \"Puppet Master\" is behind the entire series of events.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18062},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Uchikomatic Days","airDate":"2007-07-24","airDateUtc":"2007-07-24T07:00:00Z","overview":"Uchikomatic Days is a 5-minute short telling the story of the birth of the Uchikomas, the 'ugly duckling' second generation think-tanks that made substandard replacement models for the Tachikomas. The short features a music performance by the A.I. Tough Guy Uchikomas, a group of rising stars that will provide entertainment at the Harima City for Academic Research New Year's Eve Party.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18090},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Ghost in the Shell 2.0","airDate":"2008-07-12","airDateUtc":"2008-07-12T07:00:00Z","overview":"The year is 2029. The world has become intensively information oriented and humans are well-connected to the network. Crime has developed into a sophisticated stage by hacking into the interactive network. To prevent this, Section 9 is formed. These are cyborgs with incredible strengths and abilities that can access any network on Earth. A mysterious new hacker known only as the Puppet Master threatens to create chaos, erasing and rewriting the memories of his victims: humans who have cast away their physical body to become cyborgs. Is he an evil genius, or could he signal the beginning of a new age in the relationship between man and machine?\r\n\r\nGhost in the Shell 2.0 is a reproduced version of the original 1995 classic. For 2.0 all of the original animations were reproduced, and the soundtrack was re-organized and re-recorded.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18063},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"2nd GIG Tachikomatic Days EP01","airDate":"2009-11-25","airDateUtc":"2009-11-25T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18091},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"2nd GIG Tachikomatic Days EP02","airDate":"2009-11-25","airDateUtc":"2009-11-25T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18092},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"2nd GIG Tachikomatic Days EP03","airDate":"2009-11-25","airDateUtc":"2009-11-25T07:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18093},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"2nd GIG Tachikomatic Days EP04","airDate":"2009-11-25","airDateUtc":"2009-11-25T08:15:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18094},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"2nd GIG Tachikomatic Days EP05","airDate":"2009-11-25","airDateUtc":"2009-11-25T08:40:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18095},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"2nd GIG Tachikomatic Days EP06","airDate":"2009-11-25","airDateUtc":"2009-11-25T09:05:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18096},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"2nd GIG Tachikomatic Days EP07","airDate":"2009-11-25","airDateUtc":"2009-11-25T09:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18097},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"2nd GIG Tachikomatic Days EP08","airDate":"2009-11-25","airDateUtc":"2009-11-25T09:55:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18098},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"2nd GIG Tachikomatic Days EP09","airDate":"2009-11-25","airDateUtc":"2009-11-25T10:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18099},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"2nd GIG Tachikomatic Days EP10","airDate":"2009-11-25","airDateUtc":"2009-11-25T10:45:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18100},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"2nd GIG Tachikomatic Days EP11","airDate":"2009-11-25","airDateUtc":"2009-11-25T11:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18101},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"2nd GIG Tachikomatic Days EP12","airDate":"2009-11-25","airDateUtc":"2009-11-25T11:35:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18102},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"2nd GIG Tachikomatic Days EP13","airDate":"2009-11-25","airDateUtc":"2009-11-25T12:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18103},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"2nd GIG Tachikomatic Days EP14","airDate":"2009-12-22","airDateUtc":"2009-12-22T07:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18104},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"2nd GIG Tachikomatic Days EP15","airDate":"2009-12-22","airDateUtc":"2009-12-22T07:25:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18105},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"2nd GIG Tachikomatic Days EP16","airDate":"2009-12-22","airDateUtc":"2009-12-22T07:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18106},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":50,"title":"2nd GIG Tachikomatic Days EP17","airDate":"2009-12-22","airDateUtc":"2009-12-22T08:15:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18107},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":51,"title":"2nd GIG Tachikomatic Days EP18","airDate":"2009-12-22","airDateUtc":"2009-12-22T08:40:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18108},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":52,"title":"2nd GIG Tachikomatic Days EP19","airDate":"2009-12-22","airDateUtc":"2009-12-22T09:05:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18109},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":53,"title":"2nd GIG Tachikomatic Days EP20","airDate":"2009-12-22","airDateUtc":"2009-12-22T09:30:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18110},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":54,"title":"2nd GIG Tachikomatic Days EP21","airDate":"2009-12-22","airDateUtc":"2009-12-22T09:55:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18111},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":55,"title":"2nd GIG Tachikomatic Days EP22","airDate":"2009-12-22","airDateUtc":"2009-12-22T10:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18112},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":56,"title":"2nd GIG Tachikomatic Days EP23","airDate":"2009-12-22","airDateUtc":"2009-12-22T10:45:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18113},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":57,"title":"2nd GIG Tachikomatic Days EP24","airDate":"2009-12-22","airDateUtc":"2009-12-22T11:10:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18114},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":58,"title":"2nd GIG Tachikomatic Days EP25","airDate":"2009-12-22","airDateUtc":"2009-12-22T11:35:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18115},{"seriesId":241,"episodeFileId":0,"seasonNumber":0,"episodeNumber":59,"title":"2nd GIG Tachikomatic Days EP26","airDate":"2009-12-22","airDateUtc":"2009-12-22T12:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":18116},{"seriesId":241,"episodeFileId":15048,"seasonNumber":3,"episodeNumber":1,"title":"NO NOISE NO LIFE - Sustainable War","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"The United States, 2045. Working as mercenaries, the Major and her team, including newbie Stan, defend a gated town from outlaws. Togusa takes a call.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"sceneAbsoluteEpisodeNumber":1,"sceneEpisodeNumber":1,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18607},{"seriesId":241,"episodeFileId":15049,"seasonNumber":3,"episodeNumber":2,"title":"AT YOUR OWN RISK - Divided by a Wall","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Armed by a generous patron, the Nomads attack Section 9 with AI drones. Togusa accepts a new mission from Japan's peace-seeking Prime Minister.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"sceneAbsoluteEpisodeNumber":2,"sceneEpisodeNumber":2,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18608},{"seriesId":241,"episodeFileId":15050,"seasonNumber":3,"episodeNumber":3,"title":"MAVERICK - MIA","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"As Togusa dives into cyberspace to track his former team members, the group is detained by a mysterious American organization seeking to employ them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"sceneAbsoluteEpisodeNumber":3,"sceneEpisodeNumber":3,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18609},{"seriesId":241,"episodeFileId":15051,"seasonNumber":3,"episodeNumber":4,"title":"SACRIFICIAL PAWN - Emissary from the Divide","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"While researching the team's disappearance and John Smith, Togusa takes a calculated risk. The GHOST members question the true nature of their mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"sceneAbsoluteEpisodeNumber":4,"sceneEpisodeNumber":4,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18610},{"seriesId":241,"episodeFileId":15052,"seasonNumber":3,"episodeNumber":5,"title":"PATRICK HUGE - Gift from God","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Aramaki sets off after Kusanagi in a race against time. GHOST begin their assignment, but Huge's cybernetic security forces them to alter their plans.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"sceneAbsoluteEpisodeNumber":5,"sceneEpisodeNumber":5,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18611},{"seriesId":241,"episodeFileId":15053,"seasonNumber":3,"episodeNumber":6,"title":"DISCLOSURE - Quantized Gospel","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Following the Section 9 reunion, Kusanagi and her colleagues learn about the \"post-humans,\" a previously unknown threat to humanity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"sceneAbsoluteEpisodeNumber":6,"sceneEpisodeNumber":6,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18612},{"seriesId":241,"episodeFileId":15054,"seasonNumber":3,"episodeNumber":7,"title":"PIE IN THE SKY - First Bank Robbery","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Back in Japan after six years, Batou decides to take a break while waiting for his delayed team. Then some amateur bank robbers interrupt his fun.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"sceneAbsoluteEpisodeNumber":7,"sceneEpisodeNumber":7,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18613},{"seriesId":241,"episodeFileId":15055,"seasonNumber":3,"episodeNumber":8,"title":"ASSEMBLE - What Came About as a Result of Togusa\u2019s Death","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"The Major and Smith clash over Section 9's new mission hunting post-humans. She orders Togusa to investigate a suspected spy near the Prime Minister.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"sceneAbsoluteEpisodeNumber":8,"sceneEpisodeNumber":8,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18614},{"seriesId":241,"episodeFileId":15056,"seasonNumber":3,"episodeNumber":9,"title":"IDENTITY THEFT - The Lonely Struggle","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Problems arise for Section 9 after one of the three post-humans in Japan murders several politicians, then targets the Prime Minister's father-in-law.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"sceneAbsoluteEpisodeNumber":9,"sceneEpisodeNumber":9,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18615},{"seriesId":241,"episodeFileId":15057,"seasonNumber":3,"episodeNumber":10,"title":"NET PEOPLE - Reasons Leading to Flameout","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Section 9 investigates a possible post-human hacker who uses the web to incite physical attacks on people. The trail leads to a high school student.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"sceneAbsoluteEpisodeNumber":10,"sceneEpisodeNumber":10,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18616},{"seriesId":241,"episodeFileId":15058,"seasonNumber":3,"episodeNumber":11,"title":"EDGELORD - The Revolution of the 14-year-olds","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Pudding helps analyze the Thinkpol program while the Major and Togusa search for clues about the post-human middle school student Takashi Shimamura.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"sceneAbsoluteEpisodeNumber":11,"sceneEpisodeNumber":11,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18617},{"seriesId":241,"episodeFileId":15059,"seasonNumber":3,"episodeNumber":12,"title":"NOSTALGIA - All Will Become N","airDate":"2020-04-23","airDateUtc":"2020-04-23T07:00:00Z","overview":"Togusa has a strange episode while analyzing the data confiscated from Shimamura. When he wakes up, he and Batou head out to investigate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"sceneAbsoluteEpisodeNumber":12,"sceneEpisodeNumber":12,"sceneSeasonNumber":3,"unverifiedSceneNumbering":false,"id":18618}],"episodeFile":[{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Section-9-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E01.Section-9-Bluray-1080p.mkv","size":1402561325,"dateAdded":"2020-05-28T10:52:56.565896Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E01.1080p-Main10.BluRay.DD5.1.x265-CTR.[2C27DC23]","releaseGroup":"2C27DC23","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5674805,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13680},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Testation-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E02.Testation-Bluray-1080p.mkv","size":1381014294,"dateAdded":"2020-05-28T10:53:05.103194Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E02.1080p-Main10.BluRay.DD5.1.x265-CTR.[75D4EE1C]","releaseGroup":"75D4EE1C","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5386962,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13681},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Android and I-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E03.Android and I-Bluray-1080p.mkv","size":1166339283,"dateAdded":"2020-05-28T10:53:15.541084Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E03.1080p-Main10.BluRay.DD5.1.x265-CTR.[5CFD149B]","releaseGroup":"5CFD149B","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4441890,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13682},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Intercepter-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E04.Intercepter-Bluray-1080p.mkv","size":1332195906,"dateAdded":"2020-05-28T10:53:24.578936Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5406597,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13683},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Decoy-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E05.Decoy-Bluray-1080p.mkv","size":1426083582,"dateAdded":"2020-05-28T10:53:38.217119Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E05.1080p-Main10.BluRay.DD5.1.x265-CTR.[F25DB040]","releaseGroup":"F25DB040","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5906928,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13684},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Meme-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E06.Meme-Bluray-1080p.mkv","size":1227449329,"dateAdded":"2020-05-28T10:53:52.075251Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E06.1080p-Main10.BluRay.DD5.1.x265-CTR.[511E9D04]","releaseGroup":"511E9D04","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4632006,"videoCodec":"x265","videoFps":24.342,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13685},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Idolator-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E07.Idolator-Bluray-1080p.mkv","size":1280118066,"dateAdded":"2020-05-28T10:54:01.908037Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E07.1080p-Main10.BluRay.DD5.1.x265-CTR.[9813F5AC]","releaseGroup":"9813F5AC","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4972308,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13686},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Missing Hearts-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E08.Missing Hearts-Bluray-1080p.mkv","size":1198387197,"dateAdded":"2020-05-28T10:54:13.661736Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E08.1080p-Main10.BluRay.DD5.1.x265-CTR.[D8DE1890]","releaseGroup":"D8DE1890","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4557087,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13687},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Chat! Chat! Chat!-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E09.Chat! Chat! Chat!-Bluray-1080p.mkv","size":1582053321,"dateAdded":"2020-05-28T10:54:24.548656Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E09.1080p-Main10.BluRay.DD5.1.x265-CTR.[320F46DE]","releaseGroup":"320F46DE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6615232,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13688},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Jungle Cruise-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E10.Jungle Cruise-Bluray-1080p.mkv","size":1250650025,"dateAdded":"2020-05-28T10:54:38.171703Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E10.1080p-Main10.BluRay.DD5.1.x265-CTR.[A2318978]","releaseGroup":"A2318978","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4844724,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13689},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Portraitz-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E11.Portraitz-Bluray-1080p.mkv","size":1077628217,"dateAdded":"2020-05-28T10:54:49.331829Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E11.1080p-Main10.BluRay.DD5.1.x265-CTR.[0EDDCC79]","releaseGroup":"0EDDCC79","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4022831,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13690},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Escape From-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E12.Escape From-Bluray-1080p.mkv","size":1257264785,"dateAdded":"2020-05-28T10:55:00.209469Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E12.1080p-Main10.BluRay.DD5.1.x265-CTR.[F81045D4]","releaseGroup":"F81045D4","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4977126,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13691},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Not Equal-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E13.Not Equal-Bluray-1080p.mkv","size":1334967114,"dateAdded":"2020-05-28T10:55:12.591299Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E13.1080p-Main10.BluRay.DD5.1.x265-CTR.[5D98EEEF]","releaseGroup":"5D98EEEF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5163454,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13692},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E14.\u00a5\u20ac$-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E14.\u00a5\u20ac$-Bluray-1080p.mkv","size":1264406899,"dateAdded":"2020-05-28T10:55:23.895086Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E14.1080p-Main10.BluRay.DD5.1.x265-CTR.[C3DCE9CE]","releaseGroup":"C3DCE9CE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4881833,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13693},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Machines D\u00e9sirantes-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E15.Machines D\u00e9sirantes-Bluray-1080p.mkv","size":1402126786,"dateAdded":"2020-05-28T10:55:34.78208Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E15.1080p-Main10.BluRay.DD5.1.x265-CTR.[8739FFB7]","releaseGroup":"8739FFB7","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5699331,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13694},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Ag2O-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E16.Ag2O-Bluray-1080p.mkv","size":1164358220,"dateAdded":"2020-05-28T10:55:45.866007Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E16.1080p-Main10.BluRay.DD5.1.x265-CTR.[7DB00481]","releaseGroup":"7DB00481","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4416171,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13695},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Angels' Share-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E17.Angels' Share-Bluray-1080p.mkv","size":986912631,"dateAdded":"2020-05-28T10:55:55.779907Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E17.1080p-Main10.BluRay.DD5.1.x265-CTR.[A379BD05]","releaseGroup":"A379BD05","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3444197,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13696},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Lost Heritage-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E18.Lost Heritage-Bluray-1080p.mkv","size":1002984924,"dateAdded":"2020-05-28T10:56:04.610452Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E18.1080p-Main10.BluRay.DD5.1.x265-CTR.[14C151F4]","releaseGroup":"14C151F4","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3445810,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13697},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Captivated-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E19.Captivated-Bluray-1080p.mkv","size":1070328895,"dateAdded":"2020-05-28T10:56:13.292562Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E19.1080p-Main10.BluRay.DD5.1.x265-CTR.[F2BF26F4]","releaseGroup":"F2BF26F4","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3931795,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13698},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Re-view-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E20.Re-view-Bluray-1080p.mkv","size":1132738940,"dateAdded":"2020-05-28T10:56:23.142424Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E20.1080p-Main10.BluRay.DD5.1.x265-CTR.[6BB646C4]","releaseGroup":"6BB646C4","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4357396,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13699},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Eraser-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E21.Eraser-Bluray-1080p.mkv","size":1177420289,"dateAdded":"2020-05-28T10:56:32.947736Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E21.1080p-Main10.BluRay.DD5.1.x265-CTR.[150FDDCF]","releaseGroup":"150FDDCF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4357308,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13700},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Scandal-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E22.Scandal-Bluray-1080p.mkv","size":1089872026,"dateAdded":"2020-05-28T10:56:43.800255Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E22.1080p-Main10.BluRay.DD5.1.x265-CTR.[31C0218A]","releaseGroup":"31C0218A","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4011203,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13701},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Equinox-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E23.Equinox-Bluray-1080p.mkv","size":1159218925,"dateAdded":"2020-05-28T10:56:54.996778Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E23.1080p-Main10.BluRay.DD5.1.x265-CTR.[3344E30E]","releaseGroup":"3344E30E","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4424618,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13702},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Annihilation-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E24.Annihilation-Bluray-1080p.mkv","size":1122145196,"dateAdded":"2020-05-28T10:57:06.492339Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E24.1080p-Main10.BluRay.DD5.1.x265-CTR.[E7317EFD]","releaseGroup":"E7317EFD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4165202,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13703},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Barrage-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E25.Barrage-Bluray-1080p.mkv","size":1416003554,"dateAdded":"2020-05-28T10:57:17.237018Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E25.1080p-Main10.BluRay.DD5.1.x265-CTR.[77B9411A]","releaseGroup":"77B9411A","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5693368,"videoCodec":"x265","videoFps":24.343,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13704},{"seriesId":241,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Stand Alone Complex-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 01\/S01E26.Stand Alone Complex-Bluray-1080p.mkv","size":1116980509,"dateAdded":"2020-05-28T10:57:26.302953Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S01E26.1080p-Main10.BluRay.DD5.1.x265-CTR.[9396CD41]","releaseGroup":"9396CD41","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4238556,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13705},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Reembody-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E01.Reembody-Bluray-1080p.mkv","size":1347439360,"dateAdded":"2020-05-28T11:35:26.46661Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E01.1080p-Main10.BluRay.DD5.1.x265-CTR.[A86CE68C]","releaseGroup":"A86CE68C","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5209152,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:32","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13719},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Night Cruise-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E02.Night Cruise-Bluray-1080p.mkv","size":1383233194,"dateAdded":"2020-05-28T11:35:35.418835Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E02.1080p-Main10.BluRay.DD5.1.x265-CTR.[B4189298]","releaseGroup":"B4189298","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5596383,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13720},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Cash Eye-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E03.Cash Eye-Bluray-1080p.mkv","size":1290894206,"dateAdded":"2020-05-28T11:35:45.456644Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E03.1080p-Main10.BluRay.DD5.1.x265-CTR.[0F8B666C]","releaseGroup":"0F8B666C","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5090222,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13721},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Natural Enemy-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E04.Natural Enemy-Bluray-1080p.mkv","size":1611475051,"dateAdded":"2020-05-28T11:35:58.882438Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E04.1080p-Main10.BluRay.DD5.1.x265-CTR.[5DD71B2D]","releaseGroup":"5DD71B2D","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6503656,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13722},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Inductance-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E05.Inductance-Bluray-1080p.mkv","size":1466137852,"dateAdded":"2020-05-28T11:36:09.868056Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E05.1080p-Main10.BluRay.DD5.1.x265-CTR.[D12B4CD1]","releaseGroup":"D12B4CD1","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6000555,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13723},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Excavation-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E06.Excavation-Bluray-1080p.mkv","size":1482360814,"dateAdded":"2020-05-28T11:36:23.179178Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E06.1080p-Main10.BluRay.DD5.1.x265-CTR.[403E172E]","releaseGroup":"403E172E","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6056023,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:32","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13724},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E07.239Pu-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E07.239Pu-Bluray-1080p.mkv","size":1348063989,"dateAdded":"2020-05-28T11:36:35.156618Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E07.1080p-Main10.BluRay.DD5.1.x265-CTR.[7BABAD4D]","releaseGroup":"7BABAD4D","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5342565,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13725},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Fake Food-Bluray-1080p v2.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E08.Fake Food-Bluray-1080p v2.mkv","size":1309935237,"dateAdded":"2020-05-28T11:36:47.577398Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E08.PROPER.1080p-Main10.BluRay.DD5.1.x265-CTR.[07B8021A]","releaseGroup":"07B8021A","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5194651,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13726},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Ambivalence-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E09.Ambivalence-Bluray-1080p.mkv","size":1425709691,"dateAdded":"2020-05-28T11:36:59.927312Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E09.1080p-Main10.BluRay.DD5.1.x265-CTR.[D3FEB02B]","releaseGroup":"D3FEB02B","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5583928,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13727},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Trial-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E10.Trial-Bluray-1080p.mkv","size":1131714306,"dateAdded":"2020-05-28T11:37:13.622341Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E10.1080p-Main10.BluRay.DD5.1.x265-CTR.[C0B66D3F]","releaseGroup":"C0B66D3F","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4168011,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:32","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13728},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Affection-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E11.Affection-Bluray-1080p.mkv","size":1179095343,"dateAdded":"2020-05-28T11:37:24.973189Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E11.1080p-Main10.BluRay.DD5.1.x265-CTR.[0A923F18]","releaseGroup":"0A923F18","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4548695,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13729},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Selecon-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E12.Selecon-Bluray-1080p.mkv","size":1429471468,"dateAdded":"2020-05-28T11:37:36.110856Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E12.1080p-Main10.BluRay.DD5.1.x265-CTR.[559EEF1D]","releaseGroup":"559EEF1D","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5816879,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13730},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Make Up-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E13.Make Up-Bluray-1080p.mkv","size":1311371290,"dateAdded":"2020-05-28T11:37:48.209079Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E13.1080p-Main10.BluRay.DD5.1.x265-CTR.[030DEDDA]","releaseGroup":"030DEDDA","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5189051,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13731},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Poker Face-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E14.Poker Face-Bluray-1080p.mkv","size":1366845423,"dateAdded":"2020-05-28T11:38:01.70934Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E14.1080p-Main10.BluRay.DD5.1.x265-CTR.[052481E3]","releaseGroup":"052481E3","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5314322,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:32","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13732},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E15.PAT-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E15.PAT-Bluray-1080p.mkv","size":1286595889,"dateAdded":"2020-05-28T11:38:15.342474Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E15.1080p-Main10.BluRay.DD5.1.x265-CTR.[3A56BEAF]","releaseGroup":"3A56BEAF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5036909,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13733},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Another Chance-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E16.Another Chance-Bluray-1080p.mkv","size":2029700514,"dateAdded":"2020-05-28T11:38:27.193071Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E16.1080p-Main10.BluRay.DD5.1.x265-CTR.[5DE91259]","releaseGroup":"5DE91259","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":9082051,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13734},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E17.Red Data-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E17.Red Data-Bluray-1080p.mkv","size":1088406478,"dateAdded":"2020-05-28T11:38:45.044667Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E17.1080p-Main10.BluRay.DD5.1.x265-CTR.[B1F0415B]","releaseGroup":"B1F0415B","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3973568,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13735},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Trans Parent-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E18.Trans Parent-Bluray-1080p.mkv","size":1386572323,"dateAdded":"2020-05-28T11:38:58.840768Z","releaseGroup":"CTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5550563,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13736},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Chain Reaction-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E19.Chain Reaction-Bluray-1080p.mkv","size":1542057868,"dateAdded":"2020-05-28T11:39:12.318259Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E19.1080p-Main10.BluRay.DD5.1.x265-CTR.[52AF9737]","releaseGroup":"52AF9737","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6354531,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:32","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13737},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Fabricate Fog-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E20.Fabricate Fog-Bluray-1080p.mkv","size":1263783726,"dateAdded":"2020-05-28T11:39:27.521356Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E20.1080p-Main10.BluRay.DD5.1.x265-CTR.[52105FD5]","releaseGroup":"52105FD5","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4769046,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13738},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E21.Embarrassment-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E21.Embarrassment-Bluray-1080p.mkv","size":1413305572,"dateAdded":"2020-05-28T11:39:41.325008Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E21.1080p-Main10.BluRay.DD5.1.x265-CTR.[DE3A5874]","releaseGroup":"DE3A5874","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5535401,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13739},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E22.Reversal Process-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E22.Reversal Process-Bluray-1080p.mkv","size":1107659620,"dateAdded":"2020-05-28T11:39:55.796944Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E22.1080p-Main10.BluRay.DD5.1.x265-CTR.[AAEAB05E]","releaseGroup":"AAEAB05E","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4037737,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13740},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E23.Martial Law-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E23.Martial Law-Bluray-1080p.mkv","size":1339507058,"dateAdded":"2020-05-28T11:40:07.322086Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E23.1080p-Main10.BluRay.DD5.1.x265-CTR.[9AD09DD9]","releaseGroup":"9AD09DD9","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5114910,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:32","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13741},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E24.Nuclear Power-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E24.Nuclear Power-Bluray-1080p.mkv","size":1424066173,"dateAdded":"2020-05-28T11:40:21.871896Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E24.1080p-Main10.BluRay.DD5.1.x265-CTR.[45690A43]","releaseGroup":"45690A43","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5452158,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13742},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E25.This Side of Justice-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E25.This Side of Justice-Bluray-1080p.mkv","size":1383728806,"dateAdded":"2020-05-28T11:40:33.978341Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E25.1080p-Main10.BluRay.DD5.1.x265-CTR.[098FF54C]","releaseGroup":"098FF54C","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5414807,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13743},{"seriesId":241,"seasonNumber":2,"relativePath":"Season 02\/S02E26.Endless Gig-Bluray-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 02\/S02E26.Endless Gig-Bluray-1080p.mkv","size":1258578930,"dateAdded":"2020-05-28T11:40:47.936084Z","sceneName":"Ghost.in.the.Shell.Stand.Alone.Complex.S02E26.1080p-Main10.BluRay.DD5.1.x265-CTR.[84A9BB08]","releaseGroup":"84A9BB08","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4767527,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"24:30","scanType":"","subtitles":"English \/ Japanese"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":13744},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E01.NO NOISE NO LIFE - Sustainable War-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E01.NO NOISE NO LIFE - Sustainable War-HDTV-1080p.mkv","size":1078439029,"dateAdded":"2020-07-19T17:55:33.839791Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4575008,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15048},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E02.AT YOUR OWN RISK - Divided by a Wall-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E02.AT YOUR OWN RISK - Divided by a Wall-HDTV-1080p.mkv","size":839907977,"dateAdded":"2020-07-19T17:55:33.871193Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3253883,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15049},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E03.MAVERICK - MIA-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E03.MAVERICK - MIA-HDTV-1080p.mkv","size":754496178,"dateAdded":"2020-07-19T17:55:33.889878Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2779017,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"zxx \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15050},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E04.SACRIFICIAL PAWN - Emissary from the Divide-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E04.SACRIFICIAL PAWN - Emissary from the Divide-HDTV-1080p.mkv","size":617479864,"dateAdded":"2020-07-19T17:55:33.908311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2658589,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15051},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E05.PATRICK HUGE - Gift from God-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E05.PATRICK HUGE - Gift from God-HDTV-1080p.mkv","size":852835625,"dateAdded":"2020-07-19T17:55:33.929105Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3966136,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15052},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E06.DISCLOSURE - Quantized Gospel-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E06.DISCLOSURE - Quantized Gospel-HDTV-1080p.mkv","size":661938273,"dateAdded":"2020-07-19T17:55:33.948073Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2905583,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15053},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E07.PIE IN THE SKY - First Bank Robbery-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E07.PIE IN THE SKY - First Bank Robbery-HDTV-1080p.mkv","size":566061667,"dateAdded":"2020-07-19T17:55:33.967714Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3012720,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15054},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E08.ASSEMBLE - What Came About as a Result of Togusa\u2019s Death-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E08.ASSEMBLE - What Came About as a Result of Togusa\u2019s Death-HDTV-1080p.mkv","size":746724173,"dateAdded":"2020-07-19T17:55:33.986726Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3376511,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15055},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E09.IDENTITY THEFT - The Lonely Struggle-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E09.IDENTITY THEFT - The Lonely Struggle-HDTV-1080p.mkv","size":777062817,"dateAdded":"2020-07-19T17:55:34.007638Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3544624,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15056},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E10.NET PEOPLE - Reasons Leading to Flameout-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E10.NET PEOPLE - Reasons Leading to Flameout-HDTV-1080p.mkv","size":988389707,"dateAdded":"2020-07-19T17:55:34.026605Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4718254,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15057},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E11.EDGELORD - The Revolution of the 14-year-olds-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E11.EDGELORD - The Revolution of the 14-year-olds-HDTV-1080p.mkv","size":564088280,"dateAdded":"2020-07-19T17:55:34.045422Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2361145,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15058},{"seriesId":241,"seasonNumber":3,"relativePath":"Season 03\/S03E12.NOSTALGIA - All Will Become N-HDTV-1080p.mkv","path":"\/tv\/Ghost in the Shell - Stand Alone Complex\/Season 03\/S03E12.NOSTALGIA - All Will Become N-HDTV-1080p.mkv","size":802183152,"dateAdded":"2020-07-19T17:55:34.064592Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3684490,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15059}],"queue":[]},"254":{"series":{"title":"Lovecraft Country","alternateTitles":[{"title":"Territorio Lovecraft","seasonNumber":-1}],"sortTitle":"lovecraft country","status":"ended","ended":true,"overview":"A young African-American travels across the U.S. in the 1950s in search of his missing father.","previousAiring":"2020-10-19T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/248\/banner.jpg?lastWrite=637329894559670070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/357864\/banners\/5f359f2ed25e7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/248\/poster.jpg?lastWrite=637661843591736220","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/357864\/posters\/5f10baa0a2161.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/248\/fanart.jpg?lastWrite=637310816903118970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/357864\/backgrounds\/5f17f70d8ec97.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-10-19T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":32617647538,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Lovecraft Country","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":58,"tvdbId":357864,"tvRageId":0,"tvMazeId":28893,"firstAired":"2020-08-16T00:00:00Z","seriesType":"standard","cleanTitle":"lovecraftcountry","imdbId":"tt6905686","titleSlug":"lovecraft-country","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Horror","Mystery","Science Fiction","Thriller"],"tags":[],"added":"2020-07-02T17:33:35.25675Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":11,"sizeOnDisk":32617647538,"percentOfEpisodes":100.0},"id":248},"episodes":[{"seriesId":248,"episodeFileId":15941,"seasonNumber":1,"episodeNumber":1,"title":"Sundown","airDate":"2020-08-16","airDateUtc":"2020-08-17T01:00:00Z","overview":"Veteran and pulp-fiction aficionado Atticus Freeman travels from the Jim Crow South to his South Side of Chicago hometown in search of his missing father Montrose. After recruiting his uncle George and childhood friend Letitia to join him, the trio sets out for \u201cArdham,\u201d MA, where they think Montrose may have gone looking for insight into Atticus\u2019 late mother\u2019s ancestry. As they journey across the Midwest, Tic, Leti, and George encounter dangers lurking at every turn, especially after sundown.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":18535},{"seriesId":248,"episodeFileId":15949,"seasonNumber":1,"episodeNumber":2,"title":"Whitey's on the Moon","airDate":"2020-08-23","airDateUtc":"2020-08-24T01:00:00Z","overview":"Inexplicably recovered from their terrifying night, Leti and George luxuriate in their new surroundings, while Atticus grows suspicious of their Ardham Lodge hosts \u2013 Christina Braithwhite and her elusive father Samuel \u2013 who unveil cryptic plans for Atticus\u2019 role in their upcoming \u201cSons of Adam\u201d ceremony. Later, after Tic, Leti, and George stumble upon a clue that could lead them to Montrose, each takes an unwelcome walk down memory lane.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":18536},{"seriesId":248,"episodeFileId":15950,"seasonNumber":1,"episodeNumber":3,"title":"Holy Ghost","airDate":"2020-08-30","airDateUtc":"2020-08-31T01:00:00Z","overview":"Hoping to mend her relationship with her sister Ruby, Leti turns a ramshackle Victorian on Chicago\u2019s North Side into a boarding house \u2013 an endeavor that stokes neighborhood racism and awakens dormant spirits stuck in the house. Meanwhile, Atticus remains burdened by a guilty conscience as George\u2019s wife Hippolyta presses him for the full story of what happened in Ardham.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":18537},{"seriesId":248,"episodeFileId":15944,"seasonNumber":1,"episodeNumber":4,"title":"A History of Violence","airDate":"2020-09-06","airDateUtc":"2020-09-07T01:00:00Z","overview":"After Christina mysteriously shows up at her doorstep, Leti confronts Atticus about his plan to surreptitiously return to Florida. Later, in search of missing pages to a crucial text, Leti, Tic, and Montrose head to Boston, with Hippolyta and Diana along for the ride. Back in Chicago, a handsome stranger nurses Ruby's disappointment over a squandered job opportunity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":18538},{"seriesId":248,"episodeFileId":15946,"seasonNumber":1,"episodeNumber":5,"title":"Strange Case","airDate":"2020-09-13","airDateUtc":"2020-09-14T01:00:00Z","overview":"After making a devil's bargain with William, Ruby steps into the charmed shoes of a white woman, but her transformation only fortifies her resentment of the racial divide. A betrayal by Montrose unleashes Atticus' pent up rage, leaving Leti deeply disturbed and sending Montrose into the comforting arms of his secret lover.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":18539},{"seriesId":248,"episodeFileId":15948,"seasonNumber":1,"episodeNumber":6,"title":"Meet Me in Daegu","airDate":"2020-09-20","airDateUtc":"2020-09-21T01:00:00Z","overview":"In the throes of the Korean War, nursing student Ji-Ah crosses paths with a wounded Atticus, who has no recollection of their violent first encounter.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":18540},{"seriesId":248,"episodeFileId":15945,"seasonNumber":1,"episodeNumber":7,"title":"I Am.","airDate":"2020-09-27","airDateUtc":"2020-09-28T01:00:00Z","overview":"Hippolyta's relentless search for answers takes her on a multidimensional journey of self-discovery and Atticus heads to St. Louis to consult an old family friend.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":18541},{"seriesId":248,"episodeFileId":15942,"seasonNumber":1,"episodeNumber":8,"title":"Jig-a-Bobo","airDate":"2020-10-04","airDateUtc":"2020-10-05T01:00:00Z","overview":"A distraught Diana finds herself in Captain Lancaster's crosshairs. When a visitor from his past arrives at the boarding house, Atticus and Leti each take steps to protect their future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":18542},{"seriesId":248,"episodeFileId":15947,"seasonNumber":1,"episodeNumber":9,"title":"Rewind 1921","airDate":"2020-10-11","airDateUtc":"2020-10-12T01:00:00Z","overview":"With Hippolyta at the helm, Leti, Tic, and Montrose travel to 1921 Tulsa in an effort to save Dee.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":18543},{"seriesId":248,"episodeFileId":15943,"seasonNumber":1,"episodeNumber":10,"title":"Full Circle","airDate":"2020-10-18","airDateUtc":"2020-10-19T01:00:00Z","overview":"After uncovering the origins of the Book of Names, the gang heads back to Ardham to cast the ultimate spell.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":18544},{"seriesId":248,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Crafting Lovecraft Country","airDate":"2020-10-26","airDateUtc":"2020-10-27T01:00:00Z","overview":"Featuring exclusive interviews with showrunner and executive producer Misha Green, along with the series cast and crew, the special will give audiences a look inside the production of LOVECRAFT COUNTRY. The behind-the-scenes presentation also dives into Green\u2019s ambitions and processes, explores the adaptation of the novel and examines the historical references woven in the show.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21022}],"episodeFile":[{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Sundown-WEBDL-1080p Proper.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E01.Sundown-WEBDL-1080p Proper.mkv","size":4731895766,"dateAdded":"2020-10-24T16:16:20.66865Z","sceneName":"Lovecraft.Country.S01E01.PROPER.1080p.WEB.H264-OATH[TGx]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8419678,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:09:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15941},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Jig-a-Bobo-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E08.Jig-a-Bobo-WEBDL-1080p.mkv","size":3443937628,"dateAdded":"2020-10-24T16:21:50.579352Z","sceneName":"Lovecraft.Country.S01E08.1080p.WEB.H264-CAKES[TGx]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6629837,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15942},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Full Circle-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E10.Full Circle-WEBDL-1080p.mkv","size":2745056227,"dateAdded":"2020-10-24T16:25:20.766023Z","sceneName":"Lovecraft.Country.S01E10.Full.Circle.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb[TGx]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5330824,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15943},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E04.A History of Violence-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E04.A History of Violence-WEBDL-1080p.mkv","size":2886704585,"dateAdded":"2020-10-24T16:27:22.046948Z","sceneName":"Lovecraft.Country.S01E04.A.History.of.Violence.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[TGx]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5671960,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15944},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E07.I Am-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E07.I Am-WEBDL-1080p.mkv","size":3697477683,"dateAdded":"2020-10-24T16:29:19.959653Z","sceneName":"Lovecraft.Country.S01E07.1080p.WEB.H264-VIDEOHOLE[TGx]","releaseGroup":"VIDEOHOLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8073724,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:07","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15945},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Strange Case-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E05.Strange Case-WEBDL-1080p.mkv","size":2769814933,"dateAdded":"2020-10-24T16:31:25.017091Z","sceneName":"Lovecraft.Country.S01E05.Strange.Case.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[TGx]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5442657,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15946},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Rewind 1921-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E09.Rewind 1921-WEBDL-1080p.mkv","size":2651339989,"dateAdded":"2020-10-24T17:20:53.20638Z","sceneName":"Lovecraft.Country.S01E09.1080p.WEB.H264-CAKES[TGx]","releaseGroup":"CAKES","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5675453,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15947},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Meet Me in Daegu-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E06.Meet Me in Daegu-WEBDL-1080p.mkv","size":3947439898,"dateAdded":"2020-10-24T18:17:52.218644Z","sceneName":"Lovecraft.Country.S01E06.1080p.WEB.H264-VIDEOHOLE[TGx]","releaseGroup":"VIDEOHOLE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8063275,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15948},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Whitey's on the Moon-WEBDL-1080p Proper.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E02.Whitey's on the Moon-WEBDL-1080p Proper.mkv","size":2892810188,"dateAdded":"2020-10-24T18:30:25.018118Z","sceneName":"Lovecraft.Country.S01E02.PROPER.1080p.WEB.H264-OATH[TGx]","releaseGroup":"OATH","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5810349,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"59:46","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15949},{"seriesId":248,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Holy Ghost-WEBDL-1080p.mkv","path":"\/tv\/Lovecraft Country\/Season 01\/S01E03.Holy Ghost-WEBDL-1080p.mkv","size":2851170641,"dateAdded":"2020-10-24T20:05:26.101608Z","sceneName":"Lovecraft.Country.S01E03.Holy.Ghost.1080p.AMZN.WEBRip.DDP5.1.x264-NTb[TGx]","releaseGroup":"NTb","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5692771,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15950}],"queue":[]},"255":{"series":{"title":"My Life as a Teenage Robot","alternateTitles":[],"sortTitle":"my life as teenage robot","status":"ended","ended":true,"overview":"While most kids think their own problems are the end of the world, there's one girl whose problems really are the end of the world. My Life as a Teenage Robot is the story of Jenny, a super-powered robot with a super-sensitive teenage heart. Her primary function is to protect the planet from certain disaster, but, like all teenagers, she has her own ideas about how she would like to live. Defending the Earth has become a mundane chore, and she would rather do more exciting things like go to high school and be allowed to drive the family car. My Life as a Teenage Robot, a spin-off from Nickelodeon's hit Oh Yeah! Cartoons (under the name My Neighbor Has A Teenage Robot), was created by Rob Renzetti and is executive produced by Renzetti and Fred Seibert. This show is the third of three spinoffs of Oh Yeah! Cartoons, the others being ChalkZone and Fairly OddParents.","previousAiring":"2009-05-02T23:25:00Z","network":"Nickelodeon","airTime":"19:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/229\/banner.jpg?lastWrite=637228439987277160","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/8939-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/229\/poster.jpg?lastWrite=637228439988997130","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78444-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/229\/fanart.jpg?lastWrite=637228439977757320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78444-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":4,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-02-28T00:25:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":12318705360,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2005-09-09T23:50:00Z","episodeFileCount":21,"episodeCount":21,"totalEpisodeCount":21,"sizeOnDisk":10886102490,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2009-05-02T23:25:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":13417975192,"percentOfEpisodes":100.0}}],"year":2003,"path":"\/tv\/My Life as a Teenage Robot","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":78444,"tvRageId":0,"tvMazeId":12450,"firstAired":"2003-08-01T00:00:00Z","seriesType":"standard","cleanTitle":"mylifeasteenagerobot","imdbId":"tt0318233","titleSlug":"my-life-as-a-teenage-robot","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Animation"],"tags":[],"added":"2020-04-18T21:59:55.255413Z","ratings":{"votes":82,"value":6.4},"statistics":{"seasonCount":3,"episodeFileCount":73,"episodeCount":73,"totalEpisodeCount":77,"sizeOnDisk":36622783042,"percentOfEpisodes":100.0},"id":229},"episodes":[{"seriesId":229,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"My Neighbor was a Teenage Robot","overview":"original pilot of the series","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17620},{"seriesId":229,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"How to draw Jenny","overview":"Rob Renzetti, creator of My Life as a Teenage Robot, demostrates how to draw XJ9\/Jenny Wakeman. He'll later go on to work on MLP: FIM.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17623},{"seriesId":229,"episodeFileId":13055,"seasonNumber":1,"episodeNumber":1,"title":"It Came from Next Door","airDate":"2003-08-01","airDateUtc":"2003-08-01T23:00:00Z","overview":"It Came from Next Door Jenny decides she'd rather spend time making friends with neighbor boys Brad and Tuck than stay in her room waiting for dangers to threaten the Earth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17624},{"seriesId":229,"episodeFileId":13056,"seasonNumber":1,"episodeNumber":2,"title":"Pest Control","airDate":"2003-08-01","airDateUtc":"2003-08-01T23:25:00Z","overview":"Having vowed revenge on her for all the injustices placed upon them, Dr. Wakeman's lab rats, led by Vladimir (a.k.a. Mr. Scruffles), have swore to destroy their \"oppressor\", and plan to turn Jenny into their vehicle of revenge... literally.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17625},{"seriesId":229,"episodeFileId":13062,"seasonNumber":1,"episodeNumber":4,"title":"Class Action","airDate":"2003-08-08","airDateUtc":"2003-08-08T23:00:00Z","overview":"Jenny is preparing for the greatest challenge she's ever faced... high school. She's looking to make some new friends, and she's found some in Brit and Tiff Crust. Unfortunately, the Crusts don't quite share the same feelings. Jenny's going to learn the hard way that not all people can be trusted.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17627},{"seriesId":229,"episodeFileId":13061,"seasonNumber":1,"episodeNumber":3,"title":"Raggedy Android","airDate":"2003-08-15","airDateUtc":"2003-08-15T23:00:00Z","overview":"Jenny wants to go to the town fair, but Dr. Wakeman fears that Jenny will spook the townspeople with her presence. When Jenny gets a hold of a prototype \"exo-skin\" for her to wear, she sees her chance to mingle with the fairgoers. However, she should have waited until the exo-skin was finished, for it is making Jenny look even freakier.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17626},{"seriesId":229,"episodeFileId":13067,"seasonNumber":1,"episodeNumber":5,"title":"Attack of the 5\u00bd Ft. Geek","airDate":"2003-08-15","airDateUtc":"2003-08-15T23:25:00Z","overview":"When Jenny saves local school geek Sheldon from a gang of bullies, he quickly becomes her new best friend. The only problem? Sheldon is positively smitten with Jenny, and just won't leave her alone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17628},{"seriesId":229,"episodeFileId":13069,"seasonNumber":1,"episodeNumber":6,"title":"Doom with a View","airDate":"2003-08-15","airDateUtc":"2003-08-15T23:50:00Z","overview":"A simple snowball battle between Jenny, Brad, and Tuck gets interrupted by a strange robot, who wants to invite Jenny into the all-robot \"Cluster\" as a new member. However, when Jenny shows no interest in joining a race of robots that plan to enslave humans for manual labor, the cold war commences.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17629},{"seriesId":229,"episodeFileId":13072,"seasonNumber":1,"episodeNumber":7,"title":"Ear No Evil","airDate":"2003-08-22","airDateUtc":"2003-08-22T23:00:00Z","overview":"Jenny wants to get her ears pierced, but when Dr. Wakeman refuses to give ears, Sheldon offers to build her some ears. But then she should have told him that \"size does matter\". Now, as a result, Jenny's got a pair of ears that could put Dumbo to shame.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17630},{"seriesId":229,"episodeFileId":13075,"seasonNumber":1,"episodeNumber":8,"title":"Unlicensed Flying Object","airDate":"2003-08-22","airDateUtc":"2003-08-22T23:25:00Z","overview":"Brad really wants to get a driver's license, but he needs to learn that joyriding in abandoned UFOs doesn't exactly score points in that regard.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17631},{"seriesId":229,"episodeFileId":13078,"seasonNumber":1,"episodeNumber":9,"title":"Party Machine","airDate":"2003-09-05","airDateUtc":"2003-09-05T23:00:00Z","overview":"Jenny and Brad's secret party is a hit, but between keeping the party-goers under control, keeping the house in one piece, and keeping a group of tiny multiplying aliens from invading Earth, Jenny has her hands full.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17632},{"seriesId":229,"episodeFileId":13081,"seasonNumber":1,"episodeNumber":10,"title":"Speak No Evil","airDate":"2003-09-05","airDateUtc":"2003-09-05T23:25:00Z","overview":"While on an away mission in Japan, Jenny winds up losing one of her language system discs for English speech. Now, Jenny can't switch off from speaking in full Japanese, which is a problem when she can't tell everyone what is happening.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17633},{"seriesId":229,"episodeFileId":13084,"seasonNumber":1,"episodeNumber":11,"title":"See No Evil","airDate":"2003-09-12","airDateUtc":"2003-09-12T23:00:00Z","overview":"Dr. Wakeman is proud of her newest enhancement for Jenny: multi-functional eyes that can see anything in any view. However, they're too awkward (for lack of a better term) for Jenny to wear, so she winds up ditching them. But now she's got no eyes at all.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17634},{"seriesId":229,"episodeFileId":13087,"seasonNumber":1,"episodeNumber":12,"title":"The Great Unwashed","airDate":"2003-09-12","airDateUtc":"2003-09-12T23:25:00Z","overview":"Jenny has an invitation to Don Prima's latest party, and she's gotten a tune-up and a new paint job just for the occasion. However, Brit and Tiff are ready to do anything to sabotage Jenny's chances to impress at the party. Mudslinger's first appearance.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17635},{"seriesId":229,"episodeFileId":13090,"seasonNumber":1,"episodeNumber":13,"title":"The Return of Raggedy Android","airDate":"2003-09-19","airDateUtc":"2003-09-19T23:00:00Z","overview":"Mezmer's is a popular hangout spot for teens all over town, but the owner, Mr. Mezmer, has a strict \"No Robots\" policy. Desperate to get in, Jenny dons the new and improved exo-skin to pass off as a \"perfectly normal human girl\". But what happens when the exo-skin refuses to let Jenny take it off will result in big trouble.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17636},{"seriesId":229,"episodeFileId":13093,"seasonNumber":1,"episodeNumber":14,"title":"The Boy who Cried Robot","airDate":"2003-09-19","airDateUtc":"2003-09-19T23:25:00Z","overview":"Tuck can't help but call Jenny for every little thing that happens. But when a big problem arises, Tuck's call for help winds up going ignored.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17637},{"seriesId":229,"episodeFileId":13095,"seasonNumber":1,"episodeNumber":15,"title":"Sibling Tsunami","airDate":"2003-10-03","airDateUtc":"2003-10-03T23:00:00Z","overview":"Before there was XJ-9, there was XJ-8, and before that XJ-7, then XJ-6, XJ-5, XJ-4, XJ-3, XJ-2, and finally XJ-1. When Jenny finds and reactivates her sisters, she is beyond happy. But each sister has her own personality, and not all of them have the same level of friendliness that Jenny has. Still, sisters can be counted on, right and is there a secret XJ-10? The main villains of this episode are Evil Super Mario Brothers clones known as the Mad Hammer Brothers. They may be Wario and Weegee.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17638},{"seriesId":229,"episodeFileId":13098,"seasonNumber":1,"episodeNumber":16,"title":"I was a Preschool Dropout","airDate":"2003-10-03","airDateUtc":"2003-10-03T23:25:00Z","overview":"Having been found to have only been activated for five years, the school system declares that Jenny has to be moved into a grade level that matches her \"age\". Now Jenny finds herself in a new situation... kindergarten.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17639},{"seriesId":229,"episodeFileId":13103,"seasonNumber":1,"episodeNumber":17,"title":"Hostile Makeover","airDate":"2003-10-24","airDateUtc":"2003-10-24T23:00:00Z","overview":"When Jenny starts to develop zits, voice changes, and body hair, Brad chalks it up to puberty. However, it soon becomes apparent that this puberty isn't exactly normal. Queen Vexus of the Cluster infected her with a virus to warp Jenny into a loyal Cluster-controlled monster.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17640},{"seriesId":229,"episodeFileId":13105,"seasonNumber":1,"episodeNumber":18,"title":"Grid Iron Glory","airDate":"2003-10-24","airDateUtc":"2003-10-24T23:25:00Z","overview":"Jenny becomes the star football player of the high school football team by somehow replacing the original QB. Can she lead Tremorton to glory, or will she wind up reduced to scrap?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17641},{"seriesId":229,"episodeFileId":13107,"seasonNumber":1,"episodeNumber":19,"title":"Dressed to Kill","airDate":"2003-11-07","airDateUtc":"2003-11-08T00:00:00Z","overview":"Thanks to a screw-up from one of his Cluster troops, Commander Smytus loses a cache of super-powered Pip Crystals to the Crust Cousins. Now, the cousins are flaunting both their style and their newfound powers in front of Jenny. Can Jenny's keen fashion sense save her in time?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17642},{"seriesId":229,"episodeFileId":13110,"seasonNumber":1,"episodeNumber":20,"title":"Shell Game","airDate":"2003-11-07","airDateUtc":"2003-11-08T00:25:00Z","overview":"Looking to prove to Jenny that boy robots are jerks compared to him, Sheldon creates a mechanical suit and dubs himself \"The Silver Shell\". But the plan backfires when Jenny starts falling for Silver Shell.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17643},{"seriesId":229,"episodeFileId":13114,"seasonNumber":1,"episodeNumber":21,"title":"Daydream Believer","airDate":"2003-11-21","airDateUtc":"2003-11-22T00:00:00Z","overview":"Jenny wants to experience what it's like to dream. When Dr. Wakeman installs a dream chip, Jenny's joy causes her to abuse its function. Now, she's stuck in dream mode and is sleepwalking, causing mayhem in the process. A tribute to Dr. Seuss.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17644},{"seriesId":229,"episodeFileId":13116,"seasonNumber":1,"episodeNumber":22,"title":"This Time with Feeling","airDate":"2003-11-21","airDateUtc":"2003-11-22T00:25:00Z","overview":"Jenny's desire to know what it's like to actually feel physical contact leads her to steal a set of artificial nerves from Dr. Wakeman. The nerves, however, have only two settings: tickle and pain.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17645},{"seriesId":229,"episodeFileId":13119,"seasonNumber":1,"episodeNumber":23,"title":"Saved by the Shell","airDate":"2004-01-23","airDateUtc":"2004-01-24T00:00:00Z","overview":"Sheldon sets Jenny up for a date with Silver Shell, in hopes that he can reveal himself to her. However, she's already got a date with Don Prima, much to Sheldon's chagrin.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17646},{"seriesId":229,"episodeFileId":13120,"seasonNumber":1,"episodeNumber":24,"title":"Tradeshow Showdown","airDate":"2004-01-23","airDateUtc":"2004-01-24T00:25:00Z","overview":"Jenny is stuck going to a robot convention with Dr. Wakeman. Snubbed by all the other robots and insulted by Dr. Wakeman rival, Dr. Phineas Mogg, Jenny finds herself going to a robot called \"Vee\" for comfort. Of course, \"Vee\" is actually Vexus in disguise, and she's looking to add a few new robots to the Cluster.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17647},{"seriesId":229,"episodeFileId":13123,"seasonNumber":1,"episodeNumber":25,"title":"The Wonderful World of Wizzly","airDate":"2004-02-27","airDateUtc":"2004-02-28T00:00:00Z","overview":"Jenny gets a chance to visit Wizzly World with Brad and Tuck, and she can't help but think that the robots in the park feel miserable. When Jenny breaks them out of the park, however, chaos ensues. A parody of Walt Disney World Resort.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17648},{"seriesId":229,"episodeFileId":13124,"seasonNumber":1,"episodeNumber":26,"title":"Call Hating","airDate":"2004-02-27","airDateUtc":"2004-02-28T00:25:00Z","overview":"When Jenny hangs up on Dr. Wakeman one too many times, the doctor is forced to take drastic measures. Now, Dr. Wakeman is on the communicator constantly... and Jenny can't turn it off.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17649},{"seriesId":229,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"A Robot For All Seasons","airDate":"2004-12-08","airDateUtc":"2004-12-09T00:00:00Z","overview":"Jenny volunteers to be a robot toy for an underprivileged tyke, Todd, at Christmas, only to become his unwitting, remote-controlled weapon in an attack on all the holidays. When Jenny becomes public enemy number one, she must prove that the little boy is the true villain before he forces her to attack Santa's workshop and destroy Christmas forever.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17621},{"seriesId":229,"episodeFileId":13053,"seasonNumber":2,"episodeNumber":1,"title":"Future Shock","airDate":"2005-01-24","airDateUtc":"2005-01-25T00:00:00Z","overview":"Future Shock: Thanks to Tuck peeking through one of Wakeman's inventions, the FutureScope, he believes that Jenny is going to seriously hurt Brad in the near future. Thus, Tuck goes to great lengths to keep the teenage robot as far away from his brother as possible.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17650},{"seriesId":229,"episodeFileId":13057,"seasonNumber":2,"episodeNumber":2,"title":"Humiliation 101","airDate":"2005-01-25","airDateUtc":"2005-01-26T00:00:00Z","overview":"Dr. Wakeman is coming to Tremorton High to speak at an assembly. The main topic: Jenny. Now Jenny is desperate to get away before the assembly starts, and is even going so far as to ask Vexus to start a fight with her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17651},{"seriesId":229,"episodeFileId":13060,"seasonNumber":2,"episodeNumber":3,"title":"Last Action Zero","airDate":"2005-01-26","airDateUtc":"2005-01-27T00:00:00Z","overview":"Brad gets a chance to join the Skyway Patrol in hopes that he can help Jenny in her duties. Skyway, however, is mostly nothing but paperwork and paper cuts. How's Brad going to get a chance to help Jenny when he has to fill a whole stack of forms in triplicate just to get permission to request the order to do so? The Skyway Patrol ship is making background noises as heard on the U.S.S ENTERPRISE from Star Trek.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17652},{"seriesId":229,"episodeFileId":13064,"seasonNumber":2,"episodeNumber":4,"title":"Mind over Matter","airDate":"2005-01-27","airDateUtc":"2005-01-28T00:00:00Z","overview":"Jenny's newest villain, the energy vampire Gigawatt, is practically unstoppable, and Jenny's convinced that she needs more powerful forms to beat this creep.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17653},{"seriesId":229,"episodeFileId":13065,"seasonNumber":2,"episodeNumber":5,"title":"Love 'em or Leash 'em","airDate":"2005-01-28","airDateUtc":"2005-01-29T00:00:00Z","overview":"Jenny's got a new boyfriend, a rather cute boy robot named Kenny. Despite having been made by Dr. Wakeman's rival, Dr. Mogg, Kenny seems to be the perfect match for the young teenage robot. So why is he scratching himself with his legs and barking at the moon? And what happens when Sheldon gets jealous?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17654},{"seriesId":229,"episodeFileId":13070,"seasonNumber":2,"episodeNumber":6,"title":"Teen Team Time","airDate":"2005-03-25","airDateUtc":"2005-03-26T00:00:00Z","overview":"The Teen Team has come to Earth, and they are quite impressed with Jenny's abilities. Jenny seems more than excited to join, but is she willing to ignore her other friends in favor of a group of heroes that are mostly prejudiced against \"normal people\"?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17655},{"seriesId":229,"episodeFileId":13071,"seasonNumber":2,"episodeNumber":7,"title":"Sister Sledgehammer","airDate":"2005-06-23","airDateUtc":"2005-06-23T23:00:00Z","overview":"Commander Smytus has actually succeeded in assimilating Jenny into the Cluster, and has turned her into a massive metal monster. Having been awakened due to Jenny being in crisis, the rest of the XJ line have come to save their captive sister.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17656},{"seriesId":229,"episodeFileId":13089,"seasonNumber":2,"episodeNumber":13,"title":"A Pain in my Sidekick","airDate":"2005-06-25","airDateUtc":"2005-06-25T23:00:00Z","overview":"Tuck admires the Silver Shell, so he manages to \"convince\" Sheldon into making him Silver Shell's faithful sidekick, the Tin Can. Being a sidekick isn't quite what he expects, though.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17662},{"seriesId":229,"episodeFileId":13092,"seasonNumber":2,"episodeNumber":14,"title":"Crash Pad Crash","airDate":"2005-06-25","airDateUtc":"2005-06-25T23:25:00Z","overview":"Jenny's new \"bachelor pad\" is the new hot spot in town, but she's throwing so many parties that she's slacking off on her personal duties.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17663},{"seriesId":229,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Escape from Cluster Prime","airDate":"2005-08-12","airDateUtc":"2005-08-12T23:00:00Z","overview":"When Jenny finds herself on Cluster Prime, the capital of Vexus' empire, she finally gets a chance to live with other robots like her. But there's more to Cluster Prime than meets the eye...","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":17622},{"seriesId":229,"episodeFileId":13074,"seasonNumber":2,"episodeNumber":8,"title":"Pajama Party Prankapalooza","airDate":"2005-08-12","airDateUtc":"2005-08-12T23:00:00Z","overview":"Jenny has managed to get herself invited to Brit and Tiff's slumber party, and, as usual, Jenny's naiveness leads her to cause mischief all over town to impress the Krusts. Now, Dr. Wakeman needs to stop Jenny before Skyway Patrol can catch up to her daughter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17657},{"seriesId":229,"episodeFileId":13097,"seasonNumber":2,"episodeNumber":15,"title":"Victim of Fashion","airDate":"2005-08-19","airDateUtc":"2005-08-19T23:00:00Z","overview":"Not to be out done by each other, a fashion war erupts between Jenny and the Krust Cousins. Jenny had better be careful, though, for fashion can be quite costly in the end.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17664},{"seriesId":229,"episodeFileId":13099,"seasonNumber":2,"episodeNumber":16,"title":"Designing Women","airDate":"2005-08-26","airDateUtc":"2005-08-26T23:00:00Z","overview":"Looking to find a way into Jenny's heart, Sheldon steals a set of XJ-9 schematics from Dr. Wakeman. But Vexus also has eyes for those schematics, and is willing to disguise herself as \"QT2\" to trick Sheldon into giving them to her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17665},{"seriesId":229,"episodeFileId":13102,"seasonNumber":2,"episodeNumber":17,"title":"Robot Riot","airDate":"2005-08-26","airDateUtc":"2005-08-26T23:25:00Z","overview":"Jenny is stuck serving as Tuck's entry for the hit robot combat competition \"Robot Wars\". It may be barbaric to her, but how can she say no to such a cute face like Tuck's?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17666},{"seriesId":229,"episodeFileId":13104,"seasonNumber":2,"episodeNumber":18,"title":"Bradventure","airDate":"2005-09-02","airDateUtc":"2005-09-02T23:00:00Z","overview":"Tired of being stuck under Jenny's shadow, Brad sets out to be his own hero. However, he finds himself in hot water when he runs afoul of the not-evil scientist Dr. Locus and his daughter Melody (who's way more than she appears). Dr. Locus wants the XJ-9 schematics for reasons yet unknown and, when Jenny gets knocked out in battle, Brad's going to have to prove himself.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17667},{"seriesId":229,"episodeFileId":13108,"seasonNumber":2,"episodeNumber":19,"title":"Mama Drama","airDate":"2005-09-02","airDateUtc":"2005-09-02T23:25:00Z","overview":"Dr. Wakeman's got a new boyfriend, and Jenny is convinced that he's a psycho lunatic. Is he really as bad as he appears?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17668},{"seriesId":229,"episodeFileId":13077,"seasonNumber":2,"episodeNumber":9,"title":"Dancing with my Shell","airDate":"2005-09-06","airDateUtc":"2005-09-06T23:00:00Z","overview":"Jenny takes the Silver Shell to the Sadie Hawkins school dance, and Sheldon hopes that he can impress Jenny enough to reveal his identity to her. Everything starts going wrong, however, when Letta and the Space Bikers crash the dance.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17658},{"seriesId":229,"episodeFileId":13080,"seasonNumber":2,"episodeNumber":10,"title":"Around the World in Eighty Pieces","airDate":"2005-09-07","airDateUtc":"2005-09-07T23:00:00Z","overview":"Crackerjack Cluster inventor Krackus has managed to scatter Jenny's parts all over the world. Can Brad, Tuck, and Sheldon put their friend back together before Krackus can call Vexus on his success?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17659},{"seriesId":229,"episodeFileId":13083,"seasonNumber":2,"episodeNumber":11,"title":"Armagedroid","airDate":"2005-09-08","airDateUtc":"2005-09-08T23:00:00Z","overview":"Armagedroid, once a powerful global protector before he went rogue, has returned. Armagedroid was programmed to disarm and destroy all weapons, and part of the problem is that it can't discern between friend and foe. How can Jenny stop a robot built so huge, and what does Dr. Wakeman have to do with this metallic titan?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17660},{"seriesId":229,"episodeFileId":13086,"seasonNumber":2,"episodeNumber":12,"title":"Killgore","airDate":"2005-09-09","airDateUtc":"2005-09-09T23:00:00Z","overview":"Cute little Killgore has big dreams for such a small wind-up robot. In hopes of impressing the Cluster, Killgore has plans to capture Jenny. Surrender!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17661},{"seriesId":229,"episodeFileId":13112,"seasonNumber":2,"episodeNumber":20,"title":"Toying with Jenny","airDate":"2005-09-09","airDateUtc":"2005-09-09T23:25:00Z","overview":"The brand-new \"Action Jenny\" toys are selling like hotcakes, and Jenny can't help but be taken in by the fame. But those \"innocent toys\" are actually Vexus' and Krackus' newest (last) plan to conquer the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17669},{"seriesId":229,"episodeFileId":13115,"seasonNumber":2,"episodeNumber":21,"title":"Teenage Mutant Ninja Troubles","airDate":"2005-09-09","airDateUtc":"2005-09-09T23:50:00Z","overview":"Due to internal disputes, the Teen Team has broken up. With no place left to go, Misty heads back to Earth to be with Jenny. Misty's appearance in school, however, earns her teasing from Brit and Tiff. Scorned, Misty convinces Jenny to get back at the Krusts via a prank war. The only problem, however, is that once Misty gets started on something, she doesn't know when to stop. Jenny's going to have to convince her pal that enough is enough before things get too serious.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17670},{"seriesId":229,"episodeFileId":13054,"seasonNumber":3,"episodeNumber":1,"title":"Teen Idol","airDate":"2008-10-04","airDateUtc":"2008-10-04T23:00:00Z","overview":"A group of aliens worship Jenny after she is mistaken for a \"comet goddess\". It's fun at first but they soon drive Jenny crazy. However, when the aliens demand that Jenny summon the sun to turn her Earth into a comet, she retaliates by putting their spaceship in orbit around the sun. The Earth is saved, but someone's missing...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17671},{"seriesId":229,"episodeFileId":13058,"seasonNumber":3,"episodeNumber":2,"title":"Good Old Sheldon","airDate":"2008-10-05","airDateUtc":"2008-10-05T23:00:00Z","overview":"Turns out, poor Sheldon was stuck on the aliens' ship when Jenny got rid of it (in the previous episode), and he's been spending decades trying to get back to Earth (even though it's only been a short time on Earth since he left). Hopefully, Jenny can get him back to his proper age.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17672},{"seriesId":229,"episodeFileId":13059,"seasonNumber":3,"episodeNumber":3,"title":"Girl of Steal","airDate":"2008-10-11","airDateUtc":"2008-10-11T23:00:00Z","overview":"Jenny really wants a popular music player called the \"Musique,\" but it's very expensive. So Jenny tries another method: steal it!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17673},{"seriesId":229,"episodeFileId":13063,"seasonNumber":3,"episodeNumber":4,"title":"Mist Opportunities","airDate":"2008-10-11","airDateUtc":"2008-10-11T23:25:00Z","overview":"With Misty hanging in Tremorton and doing her part in keeping the town safe (though not for free), Jenny decides to leave the superheroics to her and starts to slack off. But when Misty's mercenary habits clash with Jenny's views on protecting the innocent, fisticuffs break out between the two. What's going to become of their friendship?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17674},{"seriesId":229,"episodeFileId":13066,"seasonNumber":3,"episodeNumber":5,"title":"Puppet Bride","airDate":"2008-10-18","airDateUtc":"2008-10-18T23:00:00Z","overview":"One of Mrs. Wakeman's old creations, a robot puppet named \"Li'l Acorn\", tries to make Jenny his bride.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17675},{"seriesId":229,"episodeFileId":13068,"seasonNumber":3,"episodeNumber":6,"title":"Historionics","airDate":"2008-10-18","airDateUtc":"2008-10-18T23:25:00Z","overview":"Jenny, Brad, Tuck and Sheldon end up stranded on a deserted island inhabited by hostile robotic clones of historical figures. To make matters worse, Jenny's battery is about to run out! Featuring Uncle Wizzly, based on the famous creator of the Disney theme parks.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17676},{"seriesId":229,"episodeFileId":13073,"seasonNumber":3,"episodeNumber":7,"title":"No Harmony with Melody","airDate":"2008-10-25","airDateUtc":"2008-10-25T23:00:00Z","overview":"Melody returns to Tremorton, and Brad begins spending more time with her. Is Jenny merely getting jealous, or is Melody more of a dischord than she seems?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17677},{"seriesId":229,"episodeFileId":13076,"seasonNumber":3,"episodeNumber":8,"title":"Tuckered Out","airDate":"2008-10-25","airDateUtc":"2008-10-25T23:25:00Z","overview":"If Tuck doesn't pass his next assignment, he's going to wind up repeating the second grade. His assignment: a project on his personal hero. His subject: Jenny. His project: create a movie centering around Jenny's life. His personality: too enthusiastic for anyone to stand.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17678},{"seriesId":229,"episodeFileId":13079,"seasonNumber":3,"episodeNumber":9,"title":"Stage Fright","airDate":"2008-11-01","airDateUtc":"2008-11-01T23:00:00Z","overview":"Jenny fails an audition for the school play of Romeo and Juliet, due to her being a robot. However, her views are questioned when two different races of aliens land for a surprise visit.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17679},{"seriesId":229,"episodeFileId":13082,"seasonNumber":3,"episodeNumber":10,"title":"Never Say Uncle","airDate":"2008-11-01","airDateUtc":"2008-11-01T23:25:00Z","overview":"Jenny invites her distant aunt over to visit, but quickly learns that she and her sister Nora Wakeman don't quite see eye to eye.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17680},{"seriesId":229,"episodeFileId":13085,"seasonNumber":3,"episodeNumber":11,"title":"A Spoonful of Mayhem","airDate":"2008-11-08","airDateUtc":"2008-11-09T00:00:00Z","overview":"After a group of runaway living fruits and vegetables is stopped by Jenny, a jealous Skyway Patrol lieutenant seeks to permanently shut her down.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":17681},{"seriesId":229,"episodeFileId":13088,"seasonNumber":3,"episodeNumber":12,"title":"Enclosure of Doom","airDate":"2008-11-08","airDateUtc":"2008-11-09T00:25:00Z","overview":"Jenny wakes to find herself trapped in a mysterious place, where laser guns and other mechanisms meet her every move and the only company she has is...Killgore?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":17682},{"seriesId":229,"episodeFileId":13091,"seasonNumber":3,"episodeNumber":13,"title":"Voyage to the Planet of the Bikers","airDate":"2008-11-15","airDateUtc":"2008-11-16T00:00:00Z","overview":"The Space Bikers have managed to slag Jenny into their new motorcycle, and now she and Tuck are en route to their hideout to demand them to change her back!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17683},{"seriesId":229,"episodeFileId":13094,"seasonNumber":3,"episodeNumber":14,"title":"Queen Bee","airDate":"2008-11-15","airDateUtc":"2008-11-16T00:25:00Z","overview":"Vexus is back, and with a new look. Having paired up with Brit and Tiff, the ex-Cluster Queen is becoming quite popular in school, to the point where even the Crust Cousins can't compete.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17684},{"seriesId":229,"episodeFileId":13096,"seasonNumber":3,"episodeNumber":15,"title":"Infectious Personality","airDate":"2008-11-22","airDateUtc":"2008-11-23T00:00:00Z","overview":"After destroying a series of asteroids that threaten to destroy the Earth, Jenny returns to earth, bringing with her a dust that severely alters the characteristics of her close friends.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17685},{"seriesId":229,"episodeFileId":13101,"seasonNumber":3,"episodeNumber":17,"title":"Weapons of Mass Distraction","airDate":"2009-02-21","airDateUtc":"2009-02-22T00:00:00Z","overview":"Jenny has a crush on a new kid named Travis, but there's only one problem: Travis is afraid of anything mechanical. The scene with Travis' father in the factory is based on the Charlie Chaplin motion picture, \"Modern Times\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17687},{"seriesId":229,"episodeFileId":13106,"seasonNumber":3,"episodeNumber":18,"title":"There's No Place Like Home School","airDate":"2009-02-21","airDateUtc":"2009-02-22T00:25:00Z","overview":"Jenny winds up getting homeschooled by Dr. Wakeman due to her bad behavior at school. Jenny may not like it, but her mother enjoys the chance to teach her daughter... perhaps too much.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17688},{"seriesId":229,"episodeFileId":13109,"seasonNumber":3,"episodeNumber":19,"title":"Ball and Chain","airDate":"2009-02-28","airDateUtc":"2009-03-01T00:00:00Z","overview":"Brad is getting married, but not by choice. The Space Bikers want poor Brad to get hitched to Tammy. But does Brad really want to be rescued?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17689},{"seriesId":229,"episodeFileId":13111,"seasonNumber":3,"episodeNumber":20,"title":"Labor Day","airDate":"2009-02-28","airDateUtc":"2009-03-01T00:25:00Z","overview":"Skyway Patrol wants Jenny to pay for repairs to the city due to her fights, and now Jenny is on a desperate job hunt.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17690},{"seriesId":229,"episodeFileId":13121,"seasonNumber":3,"episodeNumber":24,"title":"Agent 00 Sheldon","airDate":"2009-03-07","airDateUtc":"2009-03-08T00:00:00Z","overview":"Agent 00' Sheldon: Sheldon is recruited to become a sort of secret agent, and stumbles onto a supposed plot to destroy every last robot in Tremorton.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":17694},{"seriesId":229,"episodeFileId":13113,"seasonNumber":3,"episodeNumber":21,"title":"The Legion of Evil","airDate":"2009-04-18","airDateUtc":"2009-04-18T23:00:00Z","overview":"Vladimir, Lancer, Mudslinger and the Mad Hammer Bros. form the 'Legion of Evil' to seek their shared vengeance on Jenny.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17691},{"seriesId":229,"episodeFileId":13117,"seasonNumber":3,"episodeNumber":22,"title":"The Price of Love","airDate":"2009-04-18","airDateUtc":"2009-04-18T23:25:00Z","overview":"Sheldon tries to make Jenny jealous by paying Pteresa to be his girlfriend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17692},{"seriesId":229,"episodeFileId":13118,"seasonNumber":3,"episodeNumber":23,"title":"Indes-Tuck-Tible","airDate":"2009-04-18","airDateUtc":"2009-04-18T23:50:00Z","overview":"Indes-Tuck-tible: Tuck, convinced that he's invincible, decides to become a daredevil, much to Jenny's chagrin.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17693},{"seriesId":229,"episodeFileId":13100,"seasonNumber":3,"episodeNumber":16,"title":"Trash Talk","airDate":"2009-04-25","airDateUtc":"2009-04-25T23:00:00Z","overview":"Jenny, Brad, and Tuck can't seem to agree over the rules of a board game. But when the boys tag along on Jenny's mission to a garbage dump asteroid, they run into Vexus, Smytus, and Krackus who are stuck in the asteroid. The ex-Cluster Queen is looking to drain Jenny of her energy, but she and her henchbots can't agree on how to do it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17686},{"seriesId":229,"episodeFileId":13122,"seasonNumber":3,"episodeNumber":25,"title":"Samurai Vac","airDate":"2009-05-02","airDateUtc":"2009-05-02T23:00:00Z","overview":"Jenny dishonors a Japanese vacuum robot while on a mission to Tokyo, and she must restore the robot's honor.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17695},{"seriesId":229,"episodeFileId":13125,"seasonNumber":3,"episodeNumber":26,"title":"Turncoats","airDate":"2009-05-02","airDateUtc":"2009-05-02T23:25:00Z","overview":"After an experiment goes bad in a science fair, all of Dr. Wakeman's XJ robots at home mysteriously begin to run amok, and even Jenny herself became affected. Who is responsible for this heinous crime?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17696}],"episodeFile":[{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E01 - Victim of Fashion.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E01 - Victim of Fashion.mkv","size":946823919,"dateAdded":"2020-04-21T05:46:57.571071Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4868778,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"23:33","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13053},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E01 - Teen Idol.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E01 - Teen Idol.mkv","size":471468018,"dateAdded":"2020-04-21T05:46:57.592029Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4841560,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13054},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E01 - It came from next door.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E01 - It came from next door.mkv","size":468814067,"dateAdded":"2020-04-21T05:46:57.603022Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4831608,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:44","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13055},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E02 - Pest control.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E02 - Pest control.mkv","size":475490319,"dateAdded":"2020-04-21T05:46:57.615195Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Rundi","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13056},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E02 - Last Action Zero.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E02 - Last Action Zero.mkv","size":473853374,"dateAdded":"2020-04-21T05:46:57.625363Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4869067,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13057},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E02 - Good Old Sheldon.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E02 - Good Old Sheldon.mkv","size":472533093,"dateAdded":"2020-04-21T05:46:57.637043Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4783417,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13058},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E03 - Escape from Cluster Prime.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E03 - Escape from Cluster Prime.mkv","size":1880374357,"dateAdded":"2020-04-21T05:46:57.64719Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4840906,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"47:01","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13059},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E03 - Mind Over Matter.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E03 - Mind Over Matter.mkv","size":472036625,"dateAdded":"2020-04-21T05:46:57.659352Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4850111,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13060},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E03 - Raggedy android.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E03 - Raggedy android.mkv","size":471454920,"dateAdded":"2020-04-21T05:46:57.669233Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4838048,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13061},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E04 - Class action.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E04 - Class action.mkv","size":477577870,"dateAdded":"2020-04-21T05:46:57.681352Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4832356,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13062},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E04 - Weapons of Mass Distraction.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E04 - Weapons of Mass Distraction.mkv","size":472396084,"dateAdded":"2020-04-21T05:46:57.69144Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4854868,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13063},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E04 - Future Shock.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E04 - Future Shock.mkv","size":471300921,"dateAdded":"2020-04-21T05:46:57.702933Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4840180,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13064},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E05 - Humiliation 101.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E05 - Humiliation 101.mkv","size":476952143,"dateAdded":"2020-04-21T05:46:57.722543Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:55","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13065},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E05 - There\u2019s No Place Like Home School.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E05 - There\u2019s No Place Like Home School.mkv","size":472832571,"dateAdded":"2020-04-21T05:46:57.74321Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4790733,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13066},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E05 - Attack of the 5.5 ft. geek.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E05 - Attack of the 5.5 ft. geek.mkv","size":469099804,"dateAdded":"2020-04-21T05:46:57.755378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4844936,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:43","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13067},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E06 - No Harmony with Melody.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E06 - No Harmony with Melody.mkv","size":484168056,"dateAdded":"2020-04-21T05:46:57.776805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4821041,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"12:09","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13068},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E06 - Doom with a view.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E06 - Doom with a view.mkv","size":474993513,"dateAdded":"2020-04-21T05:46:57.799703Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:55","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13069},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E06 - Love 'Em or Leash 'Em.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E06 - Love 'Em or Leash 'Em.mkv","size":472616587,"dateAdded":"2020-04-21T05:46:57.811626Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4861883,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:46","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13070},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E07 - Teen Team Time.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E07 - Teen Team Time.mkv","size":475166397,"dateAdded":"2020-04-21T05:46:57.831893Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13071},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E07 - Ear no evil.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E07 - Ear no evil.mkv","size":472358989,"dateAdded":"2020-04-21T05:46:57.864741Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4847353,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13072},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E07 - Tuckered Out.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E07 - Tuckered Out.mkv","size":456504518,"dateAdded":"2020-04-21T05:46:57.880945Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:32","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13073},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E08 - Robot For All Seasons.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E08 - Robot For All Seasons.mkv","size":949494321,"dateAdded":"2020-04-21T05:46:57.902617Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4858814,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"23:40","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13074},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E08 - Unlicensed flying object.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E08 - Unlicensed flying object.mkv","size":475015838,"dateAdded":"2020-04-21T05:46:57.917859Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4829763,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:54","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13075},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E08 - A Spoonful of Mayhem.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E08 - A Spoonful of Mayhem.mkv","size":430594021,"dateAdded":"2020-04-21T05:46:57.934129Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4393392,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:46","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13076},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E09 - Pajama Party Prankapalooza.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E09 - Pajama Party Prankapalooza.mkv","size":473089605,"dateAdded":"2020-04-21T05:46:57.955793Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4861727,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13077},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E09 - Party machine.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E09 - Party machine.mkv","size":468850763,"dateAdded":"2020-04-21T05:46:57.97377Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4797434,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:49","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13078},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E09 - Enclosure of Doom.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E09 - Enclosure of Doom.mkv","size":430148539,"dateAdded":"2020-04-21T05:46:57.990102Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:48","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13079},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E10 - Sister Sledgehammer.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E10 - Sister Sledgehammer.mkv","size":479696849,"dateAdded":"2020-04-21T05:46:58.011724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13080},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E10 - Speak no evil.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E10 - Speak no evil.mkv","size":478796996,"dateAdded":"2020-04-21T05:46:58.026951Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13081},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E10 - Girl of Steal.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E10 - Girl of Steal.mkv","size":430499536,"dateAdded":"2020-04-21T05:46:58.043436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4390236,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13082},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E11 - Dancing with my shell.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E11 - Dancing with my shell.mkv","size":472679906,"dateAdded":"2020-04-21T05:46:58.065632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4858075,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13083},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E11 - See no evil.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E11 - See no evil.mkv","size":466011546,"dateAdded":"2020-04-21T05:46:58.0899Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4828416,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:41","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13084},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E11 - Mist Opportunities.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E11 - Mist Opportunities.mkv","size":434747751,"dateAdded":"2020-04-21T05:46:58.100687Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4376586,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13085},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E12 - Around the World in 80 Pieces.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E12 - Around the World in 80 Pieces.mkv","size":479312259,"dateAdded":"2020-04-21T05:46:58.117636Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4863112,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13086},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E12 - The Great Unwashed.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E12 - The Great Unwashed.mkv","size":477565792,"dateAdded":"2020-04-21T05:46:58.133256Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4844578,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13087},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E12 - The Legion of Evil.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E12 - The Legion of Evil.mkv","size":427592385,"dateAdded":"2020-04-21T05:46:58.155466Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4360680,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:46","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13088},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E13 - Armagedroid.avi.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E13 - Armagedroid.avi.mkv","size":473949589,"dateAdded":"2020-04-21T05:46:58.167369Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4872156,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13089},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E13 - Return of the Raggedy Android.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E13 - Return of the Raggedy Android.mkv","size":472908251,"dateAdded":"2020-04-21T05:46:58.188705Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4852253,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:48","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13090},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E13 - The Price of Love.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E13 - The Price of Love.mkv","size":436510997,"dateAdded":"2020-04-21T05:46:58.208976Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13091},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E14 - Killgore.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E14 - Killgore.mkv","size":479199344,"dateAdded":"2020-04-21T05:46:58.220879Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4859533,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13092},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E14 - The Boy Who Cried Robot.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E14 - The Boy Who Cried Robot.mkv","size":473616793,"dateAdded":"2020-04-21T05:46:58.243282Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4860513,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:48","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13093},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E14 - Stage Fright.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E14 - Stage Fright.mkv","size":471271130,"dateAdded":"2020-04-21T05:46:58.263107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4863947,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:44","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13094},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E15 - Sibling Tsunami.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E15 - Sibling Tsunami.mkv","size":473082875,"dateAdded":"2020-04-21T05:46:58.274392Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4862544,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13095},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E15 - Never Say Uncle.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E15 - Never Say Uncle.mkv","size":471326822,"dateAdded":"2020-04-21T05:46:58.286174Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:58","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13096},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E15 - A Pain In My Sidekick.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E15 - A Pain In My Sidekick.mkv","size":455533156,"dateAdded":"2020-04-21T05:46:58.297922Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4665401,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13097},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E16 - I Was a Preschool Dropout.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E16 - I Was a Preschool Dropout.mkv","size":478317699,"dateAdded":"2020-04-21T05:46:58.309018Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4851639,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13098},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E16 - Crash Pad Crash.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E16 - Crash Pad Crash.mkv","size":474960559,"dateAdded":"2020-04-21T05:46:58.320176Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13099},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E16 - Infectious Personality.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E16 - Infectious Personality.mkv","size":467891617,"dateAdded":"2020-04-21T05:46:58.331877Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4804913,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13100},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E17 - Trash Talk.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E17 - Trash Talk.mkv","size":474634065,"dateAdded":"2020-04-21T05:46:58.3432Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4807550,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13101},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E17 - Designing Women.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E17 - Designing Women.mkv","size":473285269,"dateAdded":"2020-04-21T05:46:58.354564Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4818109,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:53","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13102},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E17 - Hostile Makeover.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E17 - Hostile Makeover.mkv","size":472611540,"dateAdded":"2020-04-21T05:46:58.366301Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4857316,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13103},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E18 - Robot Riot.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E18 - Robot Riot.mkv","size":478869581,"dateAdded":"2020-04-21T05:46:58.378175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13104},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E18 - Grid Iron Glory.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E18 - Grid Iron Glory.mkv","size":478449885,"dateAdded":"2020-04-21T05:46:58.395505Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4852794,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13105},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E18 - Agent 00Sheldon.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E18 - Agent 00Sheldon.mkv","size":470302402,"dateAdded":"2020-04-21T05:46:58.41527Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4831767,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13106},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E19 - Dressed To Kill.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E19 - Dressed To Kill.mkv","size":472562421,"dateAdded":"2020-04-21T05:46:58.431201Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4853452,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13107},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E19 - Bradventure.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E19 - Bradventure.mkv","size":472059708,"dateAdded":"2020-04-21T05:46:58.445869Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4856414,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:46","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13108},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E19 - Indes-Tuck-Tible.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E19 - Indes-Tuck-Tible.mkv","size":463415648,"dateAdded":"2020-04-21T05:46:58.458557Z","releaseGroup":"Tible","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4686540,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13109},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E20 - Shell Game.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E20 - Shell Game.mkv","size":478117031,"dateAdded":"2020-04-21T05:46:58.474883Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13110},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E20 - Puppet Bride.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E20 - Puppet Bride.mkv","size":468957269,"dateAdded":"2020-04-21T05:46:58.494872Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4846441,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:43","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13111},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E20 - Mama Drama.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E20 - Mama Drama.mkv","size":464683731,"dateAdded":"2020-04-21T05:46:58.507308Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13112},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E21 - Historionics.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E21 - Historionics.mkv","size":474712592,"dateAdded":"2020-04-21T05:46:58.52888Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4812759,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13113},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E21 - Daydream Believer.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E21 - Daydream Believer.mkv","size":471961007,"dateAdded":"2020-04-21T05:46:58.54963Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4848207,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13114},{"seriesId":229,"seasonNumber":2,"relativePath":"Season 2\/S02E21 - Toying with Jenny.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 2\/S02E21 - Toying with Jenny.mkv","size":470538647,"dateAdded":"2020-04-21T05:46:58.562311Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4834269,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13115},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E22 - This Time With Feeling.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E22 - This Time With Feeling.mkv","size":478403226,"dateAdded":"2020-04-21T05:46:58.582338Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13116},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E22 - Ball and Chain.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E22 - Ball and Chain.mkv","size":470398450,"dateAdded":"2020-04-21T05:46:58.612713Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4830412,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13117},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E23 - Labor Day.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E23 - Labor Day.mkv","size":473738550,"dateAdded":"2020-04-21T05:46:58.629064Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13118},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E23 - Saved by the Shell.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E23 - Saved by the Shell.mkv","size":469872903,"dateAdded":"2020-04-21T05:46:58.650846Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4826826,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13119},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E24 - Tradeshow Showdown.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E24 - Tradeshow Showdown.mkv","size":476565615,"dateAdded":"2020-04-21T05:46:58.66569Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4824608,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13120},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E24 - Voyage to the Planet of the Bikers.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E24 - Voyage to the Planet of the Bikers.mkv","size":469879440,"dateAdded":"2020-04-21T05:46:58.678103Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4827076,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13121},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E25 - Queen Bee.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E25 - Queen Bee.mkv","size":478116627,"dateAdded":"2020-04-21T05:46:58.697319Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4847978,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:56","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13122},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E25 The Wonderful World of Wizzly.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E25 The Wonderful World of Wizzly.mkv","size":472261616,"dateAdded":"2020-04-21T05:46:58.728718Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4852487,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13123},{"seriesId":229,"seasonNumber":1,"relativePath":"Season 1\/S01E26 - Call Hating.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 1\/S01E26 - Call Hating.mkv","size":473944081,"dateAdded":"2020-04-21T05:46:58.744944Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:57","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13124},{"seriesId":229,"seasonNumber":3,"relativePath":"Season 3\/S03E26 - Samurai Vac.mkv","path":"\/tv\/My Life as a Teenage Robot\/Season 3\/S03E26 - Samurai Vac.mkv","size":462960654,"dateAdded":"2020-04-21T05:46:58.766805Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ Russian","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4750345,"videoCodec":"MPEG2","videoFps":25.0,"resolution":"720x576","runTime":"11:47","scanType":"Interlaced","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13125}],"queue":[]},"258":{"series":{"title":"Milo Murphy's Law","alternateTitles":[],"sortTitle":"milo murphys law","status":"ended","ended":true,"overview":"Milo Murphy is the personification of Murphy\u2019s Law where anything that can go wrong will go wrong. Suffering from Extreme Hereditary Murphy\u2019s Law condition (EHML), Milo always looks to make the best of the cards he\u2019s been dealt and his endless optimism and enthusiasm can turn any catastrophe into a wild adventure. Together, he and his friends will learn that it\u2019s all about a positive attitude and not to sweat the big stuff\u2026 and it\u2019s all big stuff.","previousAiring":"2019-05-18T11:00:00Z","network":"Disney Channel","airTime":"07:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/266\/banner.jpg?lastWrite=637449752478442940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/315954-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/266\/poster.jpg?lastWrite=637449752479482920","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/315954-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/266\/fanart.jpg?lastWrite=637449752481802880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/315954-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-12-02T12:00:00Z","episodeFileCount":36,"episodeCount":36,"totalEpisodeCount":36,"sizeOnDisk":18142512490,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2019-05-18T11:00:00Z","episodeFileCount":2,"episodeCount":37,"totalEpisodeCount":37,"sizeOnDisk":467278593,"percentOfEpisodes":5.405405405405405}}],"year":2016,"path":"\/tv\/Milo Murphy's Law","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":10,"tvdbId":315954,"tvRageId":0,"tvMazeId":20921,"firstAired":"2016-10-03T00:00:00Z","seriesType":"standard","cleanTitle":"milomurphyslaw","imdbId":"tt5439480","titleSlug":"milo-murphys-law","rootFolderPath":"\/tv\/","certification":"TV-Y","genres":["Animation","Children","Comedy"],"tags":[],"added":"2020-12-31T01:34:06.942766Z","ratings":{"votes":80,"value":10.0},"statistics":{"seasonCount":2,"episodeFileCount":38,"episodeCount":73,"totalEpisodeCount":75,"sizeOnDisk":18609791083,"percentOfEpisodes":52.054794520547944},"id":266},"episodes":[{"seriesId":266,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"We\u2019re Gonna Do It Again (Music Video)","airDate":"2016-09-29","airDateUtc":"2016-09-29T11:00:00Z","overview":"\"Dan Povenmire and Jeff \u201cSwampy\u201d Marsh, creators of Phineas and Ferb, are gonna do it again! Dan and \u201cSwampy\u201d break down their new show, Milo Murphy\u2019s Law, in a new behind-the-scenes video with a rap song score.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20307},{"seriesId":266,"episodeFileId":16985,"seasonNumber":1,"episodeNumber":1,"title":"Going the Extra Milo","airDate":"2016-10-03","airDateUtc":"2016-10-03T11:00:00Z","overview":"Zack Underwood, a new kid in town, meets Milo Murphy, the unluckiest kid in town. Because of Milo's misfortune, he and Zack both miss the bus for school, so Milo shows Zack a \"shortcut\" to school, while attempting to avoid wolves, bees, fire, and even an alien abduction. Meanwhile, Melissa Chase, a friend of Milo's, collects lunches as wagers from other students on whether or not Milo and Zack will make it to school before the bell rings.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":20309},{"seriesId":266,"episodeFileId":16985,"seasonNumber":1,"episodeNumber":2,"title":"The Undergrounders","airDate":"2016-10-03","airDateUtc":"2016-10-03T11:10:00Z","overview":"Milo, Zack, and Melissa's subway car gets derailed on their way to a field trip to the museum. While trying to find their way to the museum, they encounter a society of construction workers who have been underground for a long time.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":20310},{"seriesId":266,"episodeFileId":16986,"seasonNumber":1,"episodeNumber":3,"title":"Rooting For The Enemy","airDate":"2016-10-10","airDateUtc":"2016-10-10T11:00:00Z","overview":"Milo attends his high school's football game, which turns into an extraordinary, explosive sporting event.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":20311},{"seriesId":266,"episodeFileId":16986,"seasonNumber":1,"episodeNumber":4,"title":"Sunny Side Up","airDate":"2016-10-10","airDateUtc":"2016-10-10T11:10:00Z","overview":"Milo, Melissa, and Zack try to protect an egg for a science experiment.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":20312},{"seriesId":266,"episodeFileId":16987,"seasonNumber":1,"episodeNumber":5,"title":"The Doctor Zone Files","airDate":"2016-10-17","airDateUtc":"2016-10-17T11:00:00Z","overview":"Sara wants to see The Doctor Zone Files movie with Milo, but worries about potential problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":20313},{"seriesId":266,"episodeFileId":16987,"seasonNumber":1,"episodeNumber":6,"title":"The Note","airDate":"2016-10-17","airDateUtc":"2016-10-17T11:10:00Z","overview":"Milo and the gang spend the entire day chasing after his doctor's note.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":20314},{"seriesId":266,"episodeFileId":16988,"seasonNumber":1,"episodeNumber":7,"title":"Party of Peril","airDate":"2016-10-26","airDateUtc":"2016-10-26T11:00:00Z","overview":"Melissa and Zack organize a surprise birthday party for Milo, which can be a risky endeavor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":20315},{"seriesId":266,"episodeFileId":16988,"seasonNumber":1,"episodeNumber":8,"title":"Smooth Opera-tor","airDate":"2016-10-26","airDateUtc":"2016-10-26T11:10:00Z","overview":"Milo, Melissa, and Zack go with their classmate Amanda to an opera concert for extra school credit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":20316},{"seriesId":266,"episodeFileId":16989,"seasonNumber":1,"episodeNumber":9,"title":"Worked Day","airDate":"2016-10-27","airDateUtc":"2016-10-27T11:00:00Z","overview":"It's career day and Milo is having a hard time deciding what his career should be. He tries to decide while visiting the water works, fire department, and hospital. But of course, everything goes wrong. Meanwhile, Dakota and Cavendish try and make sure a shipment truck full of pistachios make it to the pistachio warehouse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":20317},{"seriesId":266,"episodeFileId":16989,"seasonNumber":1,"episodeNumber":10,"title":"The Wilder West","airDate":"2016-10-27","airDateUtc":"2016-10-27T11:10:00Z","overview":"Milo and his friends visit a dude ranch. While horse back riding, they meet a girl named Jackie who joins their posse, and Zack is smitten with love. But, Jackie leads them into more danger than usual. Meanwhile, Sara is going crazy because the ranch reminds her of scenes from The Doctor Zone Files, and invites other fans to join in the geek fest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":20318},{"seriesId":266,"episodeFileId":16990,"seasonNumber":1,"episodeNumber":11,"title":"Family Vacation","airDate":"2017-03-06","airDateUtc":"2017-03-06T12:00:00Z","overview":"Milo accidentally vacations with the wrong family.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":20319},{"seriesId":266,"episodeFileId":16990,"seasonNumber":1,"episodeNumber":12,"title":"Murphy's Lard","airDate":"2017-03-07","airDateUtc":"2017-03-07T12:00:00Z","overview":"Milo and Zack try to help Melissa overcome her secret fear of roller coasters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":20320},{"seriesId":266,"episodeFileId":16991,"seasonNumber":1,"episodeNumber":13,"title":"Secrets and Pies","airDate":"2017-03-08","airDateUtc":"2017-03-08T12:00:00Z","overview":"Milo and Melissa share their most embarrassing stories, but Zack refuses.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":20321},{"seriesId":266,"episodeFileId":16991,"seasonNumber":1,"episodeNumber":14,"title":"Athledecamathalon","airDate":"2017-03-09","airDateUtc":"2017-03-09T12:00:00Z","overview":"The gang participates in a school event that combines the Academic Decathlon and the Athletic Decathlon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20322},{"seriesId":266,"episodeFileId":16992,"seasonNumber":1,"episodeNumber":15,"title":"The Substitute","airDate":"2017-03-13","airDateUtc":"2017-03-13T11:00:00Z","overview":"Milo's science class deals with a bored substitute. Meanwhile, Cavendish and Dakota hide in the classroom's closet to hide a substance that will help pistachios grow.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20323},{"seriesId":266,"episodeFileId":16992,"seasonNumber":1,"episodeNumber":16,"title":"Time Out","airDate":"2017-03-14","airDateUtc":"2017-03-14T11:00:00Z","overview":"Milo and Zack go fishing with their dads. Meanwhile, when their phone battery dies, Cavendish and Dakota interfere with Brick and Savannah's time travel mission.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20324},{"seriesId":266,"episodeFileId":16993,"seasonNumber":1,"episodeNumber":17,"title":"We're Going to the Zoo","airDate":"2017-03-15","airDateUtc":"2017-03-15T11:00:00Z","overview":"At a donation drive, Milo accidentally gives away his mother's precious vintage T-shirts. Cavendish and Dakota are assigned to protect the pistachios at the zoo.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20325},{"seriesId":266,"episodeFileId":16993,"seasonNumber":1,"episodeNumber":18,"title":"School Dance","airDate":"2017-03-16","airDateUtc":"2017-03-16T11:00:00Z","overview":"Amanda does everything she can to make sure the school dance goes off without a hitch. Cavendish and Dakota go to the dance to attempt to prove without a doubt that Milo is another agent attempting to thwart their plans. Mort mistakes Cavendish and Dakota for vampire hunters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20326},{"seriesId":266,"episodeFileId":16994,"seasonNumber":1,"episodeNumber":19,"title":"Battle of the Bands","airDate":"2017-03-20","airDateUtc":"2017-03-20T11:00:00Z","overview":"Milo, Melissa, Zack, and Mort's band enters the battle of the bands. Zack discovers his old boy band is competing in the battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20327},{"seriesId":266,"episodeFileId":16994,"seasonNumber":1,"episodeNumber":20,"title":"The Math Book","airDate":"2017-03-21","airDateUtc":"2017-03-21T11:00:00Z","overview":"Milo, Zack and Melissa go to school after sunset to retrieve Melissa's math book. Unfortunately, she leaves the spare key inside the locked classroom, so the three go on a \"quest\" in search of the mysterious janitor, otherwise known as the \"key-keeper\".","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20328},{"seriesId":266,"episodeFileId":16995,"seasonNumber":1,"episodeNumber":21,"title":"The Little Engine That Couldn't","airDate":"2017-03-22","airDateUtc":"2017-03-22T11:00:00Z","overview":"When Melissa\u2019s dad drives her and Milo into town on a decommissioned old fire engine, chaos ensues.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":20329},{"seriesId":266,"episodeFileId":16995,"seasonNumber":1,"episodeNumber":22,"title":"The Llama Incident","airDate":"2017-03-23","airDateUtc":"2017-03-23T11:00:00Z","overview":"Milo and Melissa finally tell Zack the story of the infamous Llama Incident.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":20330},{"seriesId":266,"episodeFileId":16996,"seasonNumber":1,"episodeNumber":23,"title":"Missing Milo","airDate":"2017-07-22","airDateUtc":"2017-07-22T11:00:00Z","overview":"When Cavendish and Dakota stop Milo from destroying a pistachio plant, they change the future. Pistachio plants become sentient and take over the planet, so Cavendish, Dakota and Milo must race through time to save the future.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":20331},{"seriesId":266,"episodeFileId":16997,"seasonNumber":1,"episodeNumber":24,"title":"Star Struck","airDate":"2017-09-25","airDateUtc":"2017-09-25T11:00:00Z","overview":"Milo learns that his favorite actor is supposed to be currently shooting a film nearby in town and decides to travel to the set and get his autograph.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":20332},{"seriesId":266,"episodeFileId":16997,"seasonNumber":1,"episodeNumber":25,"title":"Disaster of My Dreams","airDate":"2017-09-25","airDateUtc":"2017-09-25T11:10:00Z","overview":"Elliot Decker is put in charge as the school's head safety monitor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":20333},{"seriesId":266,"episodeFileId":16998,"seasonNumber":1,"episodeNumber":26,"title":"A Clockwork Origin","airDate":"2017-09-26","airDateUtc":"2017-09-26T11:00:00Z","overview":"Milo, Zack and Melissa set out in search of a missing robot that previously escaped.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":20334},{"seriesId":266,"episodeFileId":16998,"seasonNumber":1,"episodeNumber":27,"title":"Perchance to Sleepwalk","airDate":"2017-09-26","airDateUtc":"2017-09-26T11:10:00Z","overview":"Milo begins to sleepwalk through some nearby woods. Meanwhile, Cavendish and Dakota have a \"ditch day\" from pistachio duties after the ordeal from the evil pistachio creatures.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":20335},{"seriesId":266,"episodeFileId":16999,"seasonNumber":1,"episodeNumber":28,"title":"Some Like It Yacht","airDate":"2017-09-27","airDateUtc":"2017-09-27T11:00:00Z","overview":"The students embark on a special trip while using the school's yacht.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":20336},{"seriesId":266,"episodeFileId":16999,"seasonNumber":1,"episodeNumber":29,"title":"Backward to School Night","airDate":"2017-09-27","airDateUtc":"2017-09-27T11:10:00Z","overview":"During a Back to School Night event, the parents suddenly become children, thanks to Dakota's stolen time device.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":20337},{"seriesId":266,"episodeFileId":17000,"seasonNumber":1,"episodeNumber":30,"title":"World Without Milo","airDate":"2017-09-28","airDateUtc":"2017-09-28T11:00:00Z","overview":"One morning, Elliot wakes up to discover that Milo has been erased. At first, he is naturally overjoyed, but soon becomes bored.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":20338},{"seriesId":266,"episodeFileId":17000,"seasonNumber":1,"episodeNumber":31,"title":"The Race","airDate":"2017-09-28","airDateUtc":"2017-09-28T11:10:00Z","overview":"Milo participates in a race and relies on Melissa and Zack to throw him reinforcements from his backpack to finish it. Meanwhile, Cavendish and Dakota, while attempting to stop the re-assigned Brick and Savannah from saving the pistachios, find themselves in the Old West and meeting Milo's great-great grandfather, Sheriff Murphy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":20339},{"seriesId":266,"episodeFileId":17001,"seasonNumber":1,"episodeNumber":32,"title":"Love Toboggan","airDate":"2017-09-29","airDateUtc":"2017-09-29T11:00:00Z","overview":"Sara contemplates whether or not she's on a date with Neal from the comic book store. Milo, Zack, Melissa and Mr. Murphy go to the skiing slope, but the former three's toboggan goes out of control.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":20340},{"seriesId":266,"episodeFileId":17001,"seasonNumber":1,"episodeNumber":33,"title":"The Island of Lost Dakotas","airDate":"2017-09-29","airDateUtc":"2017-09-29T11:10:00Z","overview":"Cavendish keeps dying and Dakota repeatedly makes time paradox duplicate versions of himself to save him. Milo, Zack, and Melissa go to see Hamosaur 2, but Milo can't find his shoes.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":20341},{"seriesId":266,"episodeFileId":17002,"seasonNumber":1,"episodeNumber":34,"title":"Fungus Among Us","airDate":"2017-09-30","airDateUtc":"2017-09-30T11:00:00Z","overview":"Milo, Cavendish, and Dakota travel to 1965 to help Orton Mahlson create The Doctor Zone Files. Unfortunately, they find that Derek, the son of King Pistashion, has somehow survived and has body snatched pretty much everyone, even in the present. In a cliffhanger, it turns out their sole hope lies in a particularly incompetent pharmacist.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":20342},{"seriesId":266,"episodeFileId":17003,"seasonNumber":1,"episodeNumber":35,"title":"Milo's Halloween Scream-a-Torium!","airDate":"2017-10-07","airDateUtc":"2017-10-07T11:00:00Z","overview":"Milo builds his own haunted house out of a decommissioned old truck and invites his friends to the fright fest, but Zack is not too amused because he's grown out of being scared on halloween, but thanks to Murphy's Law and the truck going on a wild ride throughout town, Zack slowly changes his mind. Meanwhile Dakota and Cavendish take in on the halloween fun while also investigating the mystery of the last halloween, which not surprisingly happens because of them, actually Dakota, and a wayward time grenade.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":20343},{"seriesId":266,"episodeFileId":17004,"seasonNumber":1,"episodeNumber":36,"title":"A Christmas Peril","airDate":"2017-12-02","airDateUtc":"2017-12-02T12:00:00Z","overview":"Sara, Milo, Melissa and Zack bring the Murphy family together for Christmas. Meanwhile, in the future, an older Cavendish and Dakota attempt to repair their broken friendship.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":20344},{"seriesId":266,"episodeFileId":17005,"seasonNumber":2,"episodeNumber":1,"title":"The Phineas and Ferb Effect","airDate":"2019-01-05","airDateUtc":"2019-01-05T12:00:00Z","overview":"Milo and his friends meet up with Phineas, Ferb, and their Danville friends to try to stop Derek and his Pistachions from taking over the world.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":20345},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Snow Way Out","airDate":"2019-01-12","airDateUtc":"2019-01-12T12:00:00Z","overview":"Milo and Zack encounter dangerous, snow-related obstacles on their way to school.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":20346},{"seriesId":266,"episodeFileId":16984,"seasonNumber":2,"episodeNumber":3,"title":"Teacher Feature","airDate":"2019-01-12","airDateUtc":"2019-01-12T12:10:00Z","overview":"Scott the Undergrounder gets a date with Milo\u2019s science teacher, Miss Murawski.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":20347},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Picture Day","airDate":"2019-01-19","airDateUtc":"2019-01-19T12:00:00Z","overview":"It\u2019s Picture Day at school and Milo can\u2019t seem to get a single good portrait.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":20348},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"Agee Ientee Diogee","airDate":"2019-01-19","airDateUtc":"2019-01-19T12:10:00Z","overview":"Diogee is mistaken for a secret agent.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":20349},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Game Night","airDate":"2019-01-26","airDateUtc":"2019-01-26T12:00:00Z","overview":"Milo, Melissa, and Zack try to finish playing a board game for the first time in Milo\u2019s life.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":20350},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Pace Makes Waste","airDate":"2019-01-26","airDateUtc":"2019-01-26T12:10:00Z","overview":"When there\u2019s a big charity stock car race in town, Murphy\u2019s Law wreaks havoc.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":20351},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"Cake 'Splosion!","airDate":"2019-02-02","airDateUtc":"2019-02-02T12:00:00Z","overview":"Amanda and Milo are chosen to compete on a kids\u2019 extreme baking TV show. Will Murphy\u2019s Law ruin Amanda\u2019s lifelong dream of winning the competition?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":20352},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Lady Krillers","airDate":"2019-02-02","airDateUtc":"2019-02-02T12:10:00Z","overview":"Milo convinces Tobias Trollhammer to dress up as a woman in his newest Krillhunter movie.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":20353},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Doof's Day Out","airDate":"2019-02-09","airDateUtc":"2019-02-09T12:00:00Z","overview":"Sarah gets annoyed by Doofenshmirtz spending all his time at the Murphy house and wants him to get out and do more.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":20354},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Disco Do-Over","airDate":"2019-02-09","airDateUtc":"2019-02-09T12:10:00Z","overview":"Milo\u2019s parents have one last chance to fulfill their dream of becoming Disco Dance Champions on roller skates before the skating rink closes down.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":20355},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"The Ticking Clock","airDate":"2019-02-16","airDateUtc":"2019-02-16T12:00:00Z","overview":"Milo and his friends try to save the old clock at City Hall that Melissa\u2019s great-grandmother designed.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":20356},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":13,"title":"Managing Murphy's Law","airDate":"2019-02-16","airDateUtc":"2019-02-16T12:10:00Z","overview":"Amanda decides to become the manager of Milo\u2019s band, and helps the foursome prepare for a concert in the park.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":20357},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":14,"title":"Milo's Shadow","airDate":"2019-02-23","airDateUtc":"2019-02-23T12:00:00Z","overview":"Doofenshmirtz wants to learn how to be good and shadows Milo for an entire day.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":20358},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":15,"title":"Sick Day","airDate":"2019-02-23","airDateUtc":"2019-02-23T12:10:00Z","overview":"Aliens try to get the DNA of a sick Milo while Diogee works hard to prevent it.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":20359},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":16,"title":"Field of Screams","airDate":"2019-03-02","airDateUtc":"2019-03-02T12:00:00Z","overview":"Milo and the gang volunteer to help Zack with farm chores to prove he\u2019s not a city boy.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":20360},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":17,"title":"Spy Little Sister!","airDate":"2019-03-02","airDateUtc":"2019-03-02T12:10:00Z","overview":"Melissa enters a mentoring program with weather agent Savannah.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":20361},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":18,"title":"Dog Walker, Runner, Screamer","airDate":"2019-03-09","airDateUtc":"2019-03-09T12:00:00Z","overview":"Elliot is injured and hospitalized, so Milo substitutes for his side job as dog walker.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":20362},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":19,"title":"Now I Am a Murphy","airDate":"2019-03-09","airDateUtc":"2019-03-09T12:10:00Z","overview":"Milo takes a trip to the woods with his dad and grandfather in order to become a true Murphy.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":20363},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":20,"title":"Freefall","airDate":"2019-03-16","airDateUtc":"2019-03-16T11:00:00Z","overview":"Milo, Zach, and Melissa try indoor skydiving.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":20364},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":21,"title":"Milo's World","airDate":"2019-03-16","airDateUtc":"2019-03-16T11:10:00Z","overview":"Milo\u2019s friends discuss their theories about what is really happening in Milo\u2019s World.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":20365},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":22,"title":"Abducting Murphy's Law","airDate":"2019-03-23","airDateUtc":"2019-03-23T11:00:00Z","overview":"Aliens from Octalia abduct Milo and are beset with problems. Melissa, Zack, and Doofenshmirtz notice Milo is missing and try to find him.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":20366},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":23,"title":"The Goulash Legacy","airDate":"2019-03-30","airDateUtc":"2019-03-30T11:00:00Z","overview":"Milo and the gang try to save his Mom\u2019s last goulash from getting ruined by Murphy\u2019s Law.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":20367},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":24,"title":"The Dog Who Knew Too Much","airDate":"2019-03-30","airDateUtc":"2019-03-30T11:10:00Z","overview":"Diogee becomes involved in intrigue when he eats a jump drive.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":20368},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":25,"title":"Adventure Buddies","airDate":"2019-04-06","airDateUtc":"2019-04-06T11:00:00Z","overview":"Doofenshmirtz becomes adventure buddies with Scott the Undergrounder.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":20369},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":26,"title":"Ride Along Little Doggie","airDate":"2019-04-06","airDateUtc":"2019-04-06T11:10:00Z","overview":"While Milo tries to get inside the school to receive an award at an awards show his school is hosting, Diogee teams up with the police to catch Zippy, the world\u2019s fastest koala.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":20370},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":27,"title":"Look at This Ship","airDate":"2019-04-13","airDateUtc":"2019-04-13T11:00:00Z","overview":"Cavendish finds a crashed UFO.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":20371},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":28,"title":"Cast Party","airDate":"2019-04-13","airDateUtc":"2019-04-13T11:10:00Z","overview":"All the guests at Zack\u2019s surprise party are wearing casts, but their freak accidents apparently have nothing to do with Murphy\u2019s Law.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":20372},{"seriesId":266,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Dr. Doofenshmirtz Theme Song Takeover","airDate":"2019-04-19","airDateUtc":"2019-04-19T11:00:00Z","overview":"Dr. Doofenshmirtz steps in for Milo to perform the theme song to Milo Murphy's Law, but discovers that it is more difficult than he thought.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20308},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":29,"title":"Safety First","airDate":"2019-04-20","airDateUtc":"2019-04-20T11:00:00Z","overview":"Milo and Elliot accidentally get handcuffed together.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":20373},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":30,"title":"Cavendish Unleashed","airDate":"2019-04-20","airDateUtc":"2019-04-20T11:10:00Z","overview":"Cavendish mistakenly unleashes a giant alien.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":20374},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":31,"title":"First Impressions","airDate":"2019-04-27","airDateUtc":"2019-04-27T11:00:00Z","overview":"Six-year-olds Milo and Melissa meet for the first time and Murphy\u2019s Law makes their first day of kindergarten a big adventure.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":20375},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":32,"title":"The Speech and Debate League of Death and Destruction Cross Town Explosion Event","airDate":"2019-04-27","airDateUtc":"2019-04-27T11:10:00Z","overview":"Zack and Milo join Melissa\u2019s new athletically minded wrestling, speech, and debate team.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":20376},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":33,"title":"The Mid-Afternoon Snack Club","airDate":"2019-05-04","airDateUtc":"2019-05-04T11:00:00Z","overview":"Milo, Melissa, Zack, Mort, Amanda, and Bradley are stuck in detention for the afternoon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":20377},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":34,"title":"Parks and Wreck","airDate":"2019-05-04","airDateUtc":"2019-05-04T11:10:00Z","overview":"Milo and the gang volunteer at the local park.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":20378},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":35,"title":"Escape","airDate":"2019-05-11","airDateUtc":"2019-05-11T11:00:00Z","overview":"Doof and Dakota attempt to use a bizarre Cavendish-platypus hybrid to lead them to Dakota\u2019s missing partner and friend.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":20379},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":36,"title":"Milo in Space","airDate":"2019-05-11","airDateUtc":"2019-05-11T11:10:00Z","overview":"Milo is abducted by aliens.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":20380},{"seriesId":266,"episodeFileId":0,"seasonNumber":2,"episodeNumber":37,"title":"Sphere and Loathing in Outer Space","airDate":"2019-05-18","airDateUtc":"2019-05-18T11:00:00Z","overview":"Milo faces down a cosmic storm made of Murphy\u2019s Law while his friends work their way through the alien populace to save him.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":20381}],"episodeFile":[{"seriesId":266,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Teacher Feature-SDTV.mkv","path":"\/tv\/Milo Murphy's Law\/Season 02\/S02E03.Teacher Feature-SDTV.mkv","size":132539500,"dateAdded":"2020-12-31T02:36:09.08848Z","sceneName":"Milo Murphys Law S02E03 HDTV x264-W4F [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":119292,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Spanish","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":558624,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"21:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16984},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E01.S01E02.Going the Extra Milo + The Undergrounders-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E01.S01E02.Going the Extra Milo + The Undergrounders-WEBDL-1080p.mkv","size":868381121,"dateAdded":"2020-12-31T02:46:40.531498Z","sceneName":"Milo.Murphys.Law.S01E01E02.Going.the.Extra.Milo.-.The.Undergrounders.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125600,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5094741,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:10","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16985},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E03.S01E04.Rooting For The Enemy + Sunny Side Up-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E03.S01E04.Rooting For The Enemy + Sunny Side Up-WEBDL-1080p.mkv","size":869040901,"dateAdded":"2020-12-31T02:48:26.425397Z","sceneName":"Milo.Murphys.Law.S01E03E04.Rooting.for.the.Enemy.-.Sunny.Side.Up.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125570,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5100511,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16986},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E05.S01E06.The Doctor Zone Files + The Note-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E05.S01E06.The Doctor Zone Files + The Note-WEBDL-1080p.mkv","size":871169440,"dateAdded":"2020-12-31T02:50:12.678034Z","sceneName":"Milo.Murphys.Law.S01E05E06.The.Doctor.Zone.Files.-.The.Note.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125469,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113080,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16987},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E07.S01E08.Party of Peril + Smooth Opera-tor-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E07.S01E08.Party of Peril + Smooth Opera-tor-WEBDL-1080p.mkv","size":869455850,"dateAdded":"2020-12-31T02:51:56.666413Z","sceneName":"Milo.Murphys.Law.S01E07E08.Party.of.Peril.-.Smooth.Opera-tor.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124966,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5103317,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16988},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E09.S01E10.Worked Day + The Wilder West-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E09.S01E10.Worked Day + The Wilder West-WEBDL-1080p.mkv","size":871198744,"dateAdded":"2020-12-31T02:53:43.214196Z","sceneName":"Milo.Murphys.Law.S01E09E10.Worked.Day.-.Wilder.West.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125393,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113831,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16989},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E11.S01E12.Family Vacation + Murphy's Lard-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E11.S01E12.Family Vacation + Murphy's Lard-WEBDL-1080p.mkv","size":869043324,"dateAdded":"2020-12-31T02:55:27.83817Z","sceneName":"Milo.Murphys.Law.S01E11E12.Family.Vacation-.-Murphys.Lard.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125157,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5100470,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16990},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E13.S01E14.Secrets and Pies + Athledecamathalon-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E13.S01E14.Secrets and Pies + Athledecamathalon-WEBDL-1080p.mkv","size":874587820,"dateAdded":"2020-12-31T02:57:13.718181Z","sceneName":"Milo.Murphys.Law.S01E13E14.Secrets.and.Pies.-.Athledecamathalon.1080p.WEB-DL.AAC2.0.H.264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125003,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5134268,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16991},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E15.S01E16.The Substitute + Time Out-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E15.S01E16.The Substitute + Time Out-WEBDL-1080p.mkv","size":870066822,"dateAdded":"2020-12-31T02:58:57.811322Z","sceneName":"Milo.Murphys.Law.S01E15E16.The.Substitute.-.Time.Out.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124573,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5107412,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16992},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E17.S01E18.We're Going to the Zoo + School Dance-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E17.S01E18.We're Going to the Zoo + School Dance-WEBDL-1080p.mkv","size":868954620,"dateAdded":"2020-12-31T03:00:44.509748Z","sceneName":"Milo.Murphys.Law.S01E17E18.Were.Going.to.the.Zoo.-.School.Dance.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124709,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5100729,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16993},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E19.S01E20.Battle of the Bands + The Math Book-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E19.S01E20.Battle of the Bands + The Math Book-WEBDL-1080p.mkv","size":872559936,"dateAdded":"2020-12-31T03:02:28.452661Z","sceneName":"Milo.Murphys.Law.S01E19E20.Battle.of.the.Bands.-.The.Math.Book.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125244,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5122056,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16994},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E21.S01E22.The Little Engine That Couldn't + The Llama Incident-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E21.S01E22.The Little Engine That Couldn't + The Llama Incident-WEBDL-1080p.mkv","size":869465436,"dateAdded":"2020-12-31T03:04:14.980907Z","sceneName":"Milo.Murphys.Law.S01E21E22.The.Little.Engine.That.Couldnt.-.The.Llama.Incident.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125925,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5102571,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16995},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Missing Milo-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E23.Missing Milo-WEBDL-1080p.mkv","size":1727650824,"dateAdded":"2020-12-31T03:05:58.452126Z","sceneName":"Milo.Murphys.Law.S01E23.Missing.Milo.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125065,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5095741,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"44:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16996},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E24.S01E25.Star Struck + Disaster of My Dreams-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E24.S01E25.Star Struck + Disaster of My Dreams-WEBDL-1080p.mkv","size":866979146,"dateAdded":"2020-12-31T03:07:50.217969Z","sceneName":"Milo.Murphys.Law.S01E24E25.Star.Struck.-.Disaster.of.My.Dreams.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125015,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5088719,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16997},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E26.S01E27.A Clockwork Origin + Perchance to Sleepwalk-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E26.S01E27.A Clockwork Origin + Perchance to Sleepwalk-WEBDL-1080p.mkv","size":873919301,"dateAdded":"2020-12-31T03:09:33.993739Z","sceneName":"Milo.Murphys.Law.S01E26E27.A.Clockwork.Origin.-.Perchance.to.Sleepwalk.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124816,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130669,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16998},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E28.S01E29.Some Like It Yacht + Backward to School Night-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E28.S01E29.Some Like It Yacht + Backward to School Night-WEBDL-1080p.mkv","size":871125988,"dateAdded":"2020-12-31T03:11:17.214976Z","sceneName":"Milo.Murphys.Law.S01E28E29.Some.Like.It.Yacht.-.Backward.to.School.Night.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125094,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5113570,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16999},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E30.S01E31.World Without Milo + The Race-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E30.S01E31.World Without Milo + The Race-WEBDL-1080p.mkv","size":874169572,"dateAdded":"2020-12-31T03:13:00.963246Z","sceneName":"Milo.Murphys.Law.S01E30E31.World.Without.Milo.-.The.Race.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125094,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5131886,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17000},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E32.S01E33.Love Toboggan + The Island of Lost Dakotas-WEBDL-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E32.S01E33.Love Toboggan + The Island of Lost Dakotas-WEBDL-1080p.mkv","size":869564740,"dateAdded":"2020-12-31T03:14:47.34075Z","sceneName":"Milo.Murphys.Law.S01E32E33.Love.Togboggan.-.The.Island.of.Lost.Dakotas.1080p.WEB-DL.AAC2.0.H.264-DiFUN","releaseGroup":"DiFUN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125160,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5103955,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17001},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E34.Fungus Among Us-WEBRip-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E34.Fungus Among Us-WEBRip-1080p.mkv","size":829946731,"dateAdded":"2020-12-31T03:16:33.115726Z","sceneName":"Milo.Murphys.Law.S01E34.Fungus.Among.Us.1080p.DSNY.WEBRip.AAC2.0.x264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126723,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17002},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E35.Milo's Halloween Scream-a-Torium!-WEBRip-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E35.Milo's Halloween Scream-a-Torium!-WEBRip-1080p.mkv","size":825688910,"dateAdded":"2020-12-31T03:18:16.474484Z","sceneName":"Milo.Murphys.Law.S01E35.Milos.Halloween.Scream-A-Torium.1080p.DSNY.WEBRip.AAC2.0.x264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126726,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17003},{"seriesId":266,"seasonNumber":1,"relativePath":"Season 01\/S01E36.A Christmas Peril-WEBRip-1080p.mkv","path":"\/tv\/Milo Murphy's Law\/Season 01\/S01E36.A Christmas Peril-WEBRip-1080p.mkv","size":829543264,"dateAdded":"2020-12-31T03:20:02.262639Z","sceneName":"Milo.Murphys.Law.S01E36.A.Christmas.Peril.1080p.DSNY.WEBRip.AAC2.0.x264-LAZY","releaseGroup":"LAZY","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126735,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17004},{"seriesId":266,"seasonNumber":2,"relativePath":"Season 02\/S02E01.The Phineas and Ferb Effect-SDTV.mkv","path":"\/tv\/Milo Murphy's Law\/Season 02\/S02E01.The Phineas and Ferb Effect-SDTV.mkv","size":334739093,"dateAdded":"2020-12-31T03:21:50.492265Z","sceneName":"Milo Murphys Law S02E01 HDTV x264-W4F [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":120702,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English \/ Spanish","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":775881,"videoCodec":"x264","videoFps":23.976,"resolution":"720x404","runTime":"44:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17005}],"queue":[]},"259":{"series":{"title":"Zentrix","alternateTitles":[],"sortTitle":"zentrix","status":"ended","ended":true,"overview":"Welcome to zentrix, the most perfect city on the planet. This is all thanks to the famous scientist Emperor Jarad, who created the Omicronpsy super-computer. The computer manages all of the city's higher and day to day functions, controlling a wide variety of machines and robots. It's paradise. Until one day, when Omicronpsy realizes that it would be a better ruler than Jarad. The computer revolts, and in the ensuing battle, Jarad and the scientist, Dr. Roark, are lost in time. His daughter Megan learns what happened, and is determined to follow her father back in time to save both him and her homeland. But due to an accident during time travel, she is now stuck in an eight-year-old body. Megan and her loyal sidekick Mango now have to reactivate the robot Zeus, find her father, and fend off attacks from the forces of Omicronpsy, who have followed them through time.","previousAiring":"2002-07-02T16:00:00Z","network":"TVB","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/271\/banner.jpg?lastWrite=637495237883419110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/253583-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/271\/poster.jpg?lastWrite=637495237884619090","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/253583-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/271\/fanart.jpg?lastWrite=637495237894418930","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/253583-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-07-02T16:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7513260629,"percentOfEpisodes":100.0}}],"year":2002,"path":"\/tv\/Zentrix","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":253583,"tvRageId":0,"tvMazeId":0,"firstAired":"2002-07-03T00:00:00Z","seriesType":"standard","cleanTitle":"zentrix","imdbId":"tt0876249","titleSlug":"zentrix","rootFolderPath":"\/tv\/","genres":["Action","Adventure","Animation","Science Fiction"],"tags":[],"added":"2021-02-21T17:03:06.682698Z","ratings":{"votes":29,"value":7.0},"statistics":{"seasonCount":1,"episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":7513260629,"percentOfEpisodes":100.0},"id":271},"episodes":[{"seriesId":271,"episodeFileId":17585,"seasonNumber":1,"episodeNumber":2,"title":"Little Girl Megan","overview":"Megan and Mango arrive back seven years in time. Due to a time machine malfunction, Megan has become a 15-year old in an 8-year-old body. Then she stumbles across Zeus, the super-robot her father built to help him destroy OmicronPsy. Trouble is, most of Zeus' functions have been in 'sleep mode'. Meanwhile, OmicronPsy uses the time machine to dispatch Stinger Bugs to assassinate Megan. Despite his 'weakness', Zeus manages to defend Megan and Mango from the Stinger Bugs. Zeus then detects some weak signals coming from somewhere and which may be transmitted by her father. They set off in search of them. Back at Zentrix, OmicronPsy sends Dark-Alpha to attack Megan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20842},{"seriesId":271,"episodeFileId":17586,"seasonNumber":1,"episodeNumber":3,"title":"The Forest of Peachi-Wigis","overview":"Flashback to the run-off between Quantum and Zeus. Meanwhile, robots combing the Royal Palace for any remaining humans stumble across Quantum. After subduing him, OmicronPsy decides to brainwash him and send Quantum back 7 years to assassinate Jarad. But there's a problem.\r\nMeanwhile, in the forest looking for food, Megan, Mango and Zeus have a scary encounter with the Peachi-Wigis. Eventually, they all make friends and the Peachi-Wigis feed the starving trio. Then they show Megan the Communication Crystal they have found. From it comes the faint voice of Jarad's collaborator, Dr Roark.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20843},{"seriesId":271,"episodeFileId":17587,"seasonNumber":1,"episodeNumber":4,"title":"Showdown With Dark-Alpha","overview":"At Zentrix, OmicronPsy repairs the time machine and speeds up the development of the Dark-Series robots. His first product is Dark-01, the brainwashed Quantum, who pledges to defend the Zentrium against Megan!\r\n\r\nIn the forest, the Peachi-wigis tell Megan that Dr Roark has sought refuge in the Pyramid. Megan makes friends with them all immediately and goes off to play with them, leaving Zeus while his data uploads. While playing, Megan encounters robot-assassin Dark-Alpha. Zeus, his systems restored, comes to Megan's rescue, and eventually Dark-Alpha is destroyed.\r\nBack at Zentrix, OmicronPsy deploys the Dark-Sphere robot to patrol the Pyramid.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20844},{"seriesId":271,"episodeFileId":17588,"seasonNumber":1,"episodeNumber":5,"title":"Sandstorm At The Pyramid","overview":"In the desert, the Desert Five, 'led' by Saiko, are unable to get supplies through to Dr Roark in the Pyramid because of the sandstorm generated by Dark-Sphere. OmicronPsy, meanwhile, plots to ambush Megan using Quantum-now Dark-01.\r\n\r\nBack in the desert, just as Zeus is having trouble with his power system, Megan gets attacked by the Big Tooth Bug. Zeus saves her. But since Zeus has lost his flight function, their journey across the desert to the Pyramid is taking so long that Megan is in danger of dying of thirst.\r\nLuckily, Megan is saved by the Desert Five. Megan gets a lesson in friendship from Saiko. They all head for the Pyramid, where they discover that the sandstorm is caused by a robot sphere. When Zeus attacks it, it spits out smart bombs which Zeus is able to destroy before his energy runs out. Finally, the doors to the Pyramid open wide and Dr Roark emerges unscathed","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20845},{"seriesId":271,"episodeFileId":17589,"seasonNumber":1,"episodeNumber":6,"title":"Showdown With Dark-01","overview":"At the Pyramid, when Dr Roark explains everything to Megan, she decides to complete her father's mission. To knock out OmicronPsy completely, Megan needs to shut down altogether six Zentriums. When she shuts down the first, at the Pyramid, OmicronPsy flies into a rage and sends Dark-01 (Quantum) after her. There is a huge robot fight, but in his powered-down state, Zeus is no match for Dark-01 and retreats with Megan. Dr Roark tells Megan and Zeus how to escape from the Pyramid. But, as they do so, again they are discovered by Dark-01. Eventually Megan and party are trapped in a chamber with no exit.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20846},{"seriesId":271,"episodeFileId":17590,"seasonNumber":1,"episodeNumber":7,"title":"The Deep Sae Monster","overview":"After a precipitous fall down an escape chute, Megan and party land in a kind of warehouse, where they are again attacked by the pursuing Dark-01. Another pitched battle takes place.\r\n\r\nBack at Zentrix, meanwhile, OmicronPsy prepares new robots and summons Silver-General.\r\n\r\nDeep in the Pyramid foundations, Megan locates the mini-submarine, in which they make good their escape. Diving into deep ocean, Megan and Zeus are chased all over by Dark-01, but at the last minute, the sound of torpedoes exploding rouses a gigantic fish-the Monster-which saves Megan by swallowing Dark-01 whole. The action is so violent that Megan and her friends all black out.\r\nLocal resident, 11-year old Nick, whilst out in his submarine, rescues Megan and party and takes them in tow.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20847},{"seriesId":271,"episodeFileId":17591,"seasonNumber":1,"episodeNumber":8,"title":"The complete Zeus","overview":"At Nick's laboratory, Megan tells her story to an incredulous Nick and then makes contact with Dr Roark who helps her restore Zeus to his full powers. In order to repay Nick for rescuing them, Megan decides to help him destroy the Monster that killed his father.\r\n\r\nHis powers now fully restored, Zeus' CPU replays the encounter with the Monster for Nick to see. Nick outlines his plan to annihilate the Monster with the aid of some of his crackpot weapons. After lying in wait for it, Zeus avenges Nick's father by slaying the Monster.\r\nNick then teams up with the trio and they all set off for the second Zentrium, located in the Underwater Stronghold. As well as sending Dark-02 into the attack, OmicronPsy also instructs the robots Silver-01 and Silver-02 to set up a defense shield. Driving forward, Megan orders Zeus against the shield. It injures Zeus and forces Megan and her cohorts to retreat.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20848},{"seriesId":271,"episodeFileId":17592,"seasonNumber":1,"episodeNumber":9,"title":"The Wacky robot Professor","overview":"Nick tells Megan he doesn't like the way she just treats Zeus as a piece of expendable hardware and lectures her on the subject of friendship. As Dr Roark is unable to help fix Zeus' armor, Nick and Megan go and ask for assistance from Dr Coy, the robot expert. But he hates the monarchy, and refuses. But Megan goads him into accepting by challenging his robots to a video fight game. After she has beaten Dr Coy, he agrees to take a look at Zeus. But what he really wants is for Zeus to take part in illegal robot combat and stipulates that he will only agree to help him if Zeus wins. But in this fighting pit, all combat is to the death!\r\nMeanwhile, back at Zentrix, OmicronPsy and Silver-General plot to blow up Zeus and kidnap Megan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20849},{"seriesId":271,"episodeFileId":17593,"seasonNumber":1,"episodeNumber":10,"title":"The Dadly Combat Pit","overview":"A mysterious girl called Akina, who is actually Dr Coy's daughter, arrives with her robot, Fighter. He is an expert at Chinese-style kung-fu, and absolutely loathes Dr Coy. But before he can challenge Dr Coy, he must defeat the Chubby Brothers' robots. After Fighter has beaten their robots, The Blade and Hell Tank, he issues a direct challenge to Dr Coy. But Dr Coy insists that he beat Zeus first. So Fighter and Zeus fight it out until Zeus prevails.\r\nDr Coy's then however insists that Zeus fight his robot King before he will agree to fix Zeus. The two robots clash and eventually Zeus wins when King loses one of his robot arms. Dr Coy keeps his word, and pledges himself to Megan's cause.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20850},{"seriesId":271,"episodeFileId":17594,"seasonNumber":1,"episodeNumber":11,"title":"The Two Silly Fathers","overview":"OmicronPsy terrorizes the human populace by turning off all the computers and robots. Silver-General presents Silver-02 to OmicronPsy. He is impressed and orders her to be sent back 7 years to deploy mini-bots and capture Megan.\r\n\r\nReturning to the laboratory on Dr Coy's truck, Megan learns how Dr Coy and her father fell out over the Zentrium biochip specification. Then they are ambushed by the Silver-02. Zeus and the one-armed King try to defend but are knocked out by the magnetic net. Luckily, Akina arrives with her robot Coy Terminator who helps Zeus destroy Silver-02.\r\nAkina is in fact Dr Coy's daughter. Because Dr Coy was always busy with his research, after her mother fell ill and died, Akina always bore a grudge against her father. Megan encourages father and daughter to reconcile. Dr Coy tells Akina he really loves her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20851},{"seriesId":271,"episodeFileId":17595,"seasonNumber":1,"episodeNumber":12,"title":"The Battle Below","overview":"Dr Coy and Akina work together on a new suit of water-resistant armor and other weapons for Zeus. Zeus tests them successfully. Akina fixes King and Fighter.\r\nMegan and her partners, with King and Fighter, prepare to return to the Underwater Stronghold. But so does Quantum\/Dark-01. And OmicronPsy not only deploys Dark-03 but also booby traps the Zentrium. As they near the Undersea Stronghold, they encounter Silver-01 and the deadly mini-bots. A huge battle rages. Silver-01 is destroyed. Megan's sub has a few close shaves but makes it to the stronghold, from which Dark-02 suddenly emerges. Zeus engages him while Megan enters the stronghold. Dark-03 also appears. A major rumble takes place with Dr Coy and Akina controlling King and Fighter on manual, and eventually, just as Zeus is engaging Dark-02 in a fight to the death, the once-eaten Quantum appears again.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20852},{"seriesId":271,"episodeFileId":17596,"seasonNumber":1,"episodeNumber":13,"title":"Zeus Goes Missing","overview":"Zeus is ambushed by Quantum\/Dark-01 and Dark-02. As they enter the Zentrium chamber inside the Undersea Stronghold, Megan and Nick suspect they have walked into a trap. Sure enough, all kinds of weapons open up at them and, as they try to shut down the Zentrium, the voice of OmicronPsy announces they have activated a time bomb and have five minutes to get clear. Meanwhile Zeus and Quantum slug it out, and Dr Coy and Akina get King and Fighter to deal with Dark-03. Luckily, Nick discovers that they can delay the explosion by ten minutes-maybe-and so they make good their escape yet again, but without Zeus who is detained by Quantum. Right then the Zentrium self destructs in a huge explosion. Megan cannot tell whether Zeus has escaped. Megan finds it hard to hold back the tears.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20853},{"seriesId":271,"episodeFileId":17597,"seasonNumber":1,"episodeNumber":14,"title":"The Volcano Rockmen","overview":"Since the explosion at the Undersea Stronghold, Nick realizes the wounded Megan really cares for Zeus. He asks Dr Coy if he could make a replica Zeus, but is told that because Zentrium chips are 'thinking' chips, any replica would not be identical and would have no memory of Megan. [unknown to Megan, we then see that Zeus is OK.] Meanwhile Dr Coy tells Megan that if they can find Zeus' Zentrium, then they can rebuild him. Megan is happy at this news. Megan, Clump and Morph take over from Nick in the search for Zeus.\r\n\r\nBack at Zentrix, OmicronPsy is enraged to realize that Quantum and Dark-02 probably bought it [but we see that Quantum survived the explosion]. He orders Dark-04 and Silver-03 to go and mount guard at the Volcano Stronghold, where Silver-03 then encounters the RockMen who live in the vicinity. The RockMen put up a fierce resistance to Silver-03\r\nMegan and Nick prepare to set out for the Volcano Stronghold. Dr Coy gives them Fighter to ride shotgun.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20854},{"seriesId":271,"episodeFileId":17598,"seasonNumber":1,"episodeNumber":15,"title":"Zeus Returns!","overview":"When Megan and her cohorts land at the Volcano Stronghold, they encounter the angry tribe of RockMen who assume Megan is on the same side as Silver-03. Fortunately, Megan is able to explain the situation. Meanwhile, Silver-03 spies on them from the volcano.\r\n\r\nMorph and Clump locate Zeus and Quantum by the side of the lake. Dr Coy sends King to help them. Meanwhile, OmicronPsy continues to beef up his preparations to capture Megan. Back at the laboratory, Dr Coy and Dr Roark successfully repair Zeus and Quantum. As soon as he is OK however, Quantum sneaks away.\r\nAt the RockMen temple, Megan meets the RockMen elder, who tips her off that another robot has arrived at the Volcano Stronghold. Then Silver-03 attacks again. The RockMen and Fighter are hard pressed, but at the last minute, a huge red robot streaks in, annihilates Silver-03, and saves the day. Zeus is back!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20855},{"seriesId":271,"episodeFileId":17599,"seasonNumber":1,"episodeNumber":16,"title":"The Battle Of the Volcano","overview":"When the newly fixed Quantum leaves Dr Coy's laboratory, he wanders aimlessly trying to rediscover a sense of his own value, until he encounters Webster the BirdMan.\r\n\r\nNow that Megan has an alliance with the BirdMen and that Zeus is back on board, things are looking up! The only trouble is that the entrance to the Volcano Stronghold is also the site of the sacred image of the RockMan. Thus, not wanting to damage their credibility with the RockMen, Megan and Nick decide to enter the Volcano Stronghold directly via the mouth of the volcano itself.\r\nFinally, as Zeus and Dark-04 battle it out, Megan succeeds in shutting down the 3rd Zentrium.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20856},{"seriesId":271,"episodeFileId":17600,"seasonNumber":1,"episodeNumber":17,"title":"Quantum's Big Pal","overview":"After the third Zentrium has been shut down, Megan and friends all celebrate. But soon they are preparing to go all out for their next objective: the Zentrium at the South Pole.\r\n\r\nMeanwhile Quantum and Webster go off looking for some fighting robots to fight. Not far from the location of the 4th Zentrium near the Sky Stronghold where Webster lives, they come under attack from Silver-04. Quantum and Webster have their hands full with Silver-04, and then Dark-05 joins in against Quantum!\r\n\r\nAt this moment, Megan and Nick are hit by a snowstorm and get socked in on an ice floe at the South Pole.\r\nIn the end, Quantum triumphs over his assailants but is seriously wounded in the process. In order to repay Quantum for his courage, Webster and the BirdMen urge Quantum to stay behind and rest his wounds. Quantum finally agrees.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20857},{"seriesId":271,"episodeFileId":17601,"seasonNumber":1,"episodeNumber":18,"title":"The Penguin Tribe Of The North","overview":"Setting off in search of the Snow-Stronghold, Megan slips off a cliff and is saved just in time by a penguin tribe. These fun-loving penguins press Megan and her pals into playing games with them, and only if Megan wins will they tell her the location of the fifth Zentrium. Megan can only go along with them.\r\nAs she has lost contact with Megan and her party, Akina sends Fighter and King to lend support. On their way, they are attacked by Giant-Robot and Silver-05. Meanwhile, OmicronPsy has devised a new plan that will enable him to survive even if Megan shuts down all the Zentriums. However, there's still a fatal flaw in his design, so he recruits Dark-General to be his unwitting guinea pig.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20858},{"seriesId":271,"episodeFileId":17602,"seasonNumber":1,"episodeNumber":19,"title":"Brave Little Mango","overview":"While making their way across the Snowlands, Megan and her party come across the badly wounded King and Fighter. Akina takes the injured robots back to Dr. Coy's lab. At Just as Megan reaches the Zentrium stronghold, Giant-Robot and Silver-05 appear. Zeus goes into action, but the battles are fierce.\r\nDespite a series of booby traps, Megan turns off the fourth Zentrium. However, Mango gets frozen solid when he heroically steps between Megan and a freeze gun. Meanwhile, OmicronPsy transforms Dark-General into a new robot that can take two Zentrium chips, independent of the Emperor's Zentrium. Dark-General is sent to the Sky-Stronghold to defend the fifth Zentrium.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20859},{"seriesId":271,"episodeFileId":17603,"seasonNumber":1,"episodeNumber":20,"title":"Showdown With Dark-General","overview":"Mango is sick, but recovering at Dr. Coy's lab. Dr. Coy gives Zeus a rocket kit to double his flying speed in the upcoming battle at the Sky-Stronghold.\r\nDark-General arrives at the Sky-Stronghold to find Quantum defending it. When Zeus arrives, he and Quantum beat Dark-General once and for all. Meanwhile, Megan shuts off the Zentrium. Unfortunately, OmicronPsy now has all the data he needs to complete his plan to live independently of the Emperor's Zentrium. Quantum is also gravely injured, but he refuses to return to Dr. Coy's lab for help.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20860},{"seriesId":271,"episodeFileId":17604,"seasonNumber":1,"episodeNumber":21,"title":"Surprise Attack On Doctor Coy's Lab","overview":"Megan convinces Quantum to visit Dr. Coy and get help. This proves to be both a physical and emotional healing experience for Quantum, Dr. Coy, and Zeus. Dr. Coy also upgrades the robots and enlists the help of Blade and HellTank for the upcoming battle at the Space-Stronghold.\r\nOmicronPsy is also preparing for the battle. He sends Silver-General to launch a surprise attack on Dr. Coy's lab, using decoy images to throw off her enemies. When Dr. Coy and Dr. Roark leave Megan and her friends at the lab for a short while, Silver-General prepares to launch her diabolical assault.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20861},{"seriesId":271,"episodeFileId":17605,"seasonNumber":1,"episodeNumber":22,"title":"Silver General Gets The Upper Hand","overview":"With Dr. Coy and Dr. Roark away from Dr. Coy's lab, Silver-General launches a three-pronged attack on Megan's party. First, she creates an image as a decoy to keep Zeus and Quantum busy. Second, she sends humanoid characters to attack Megan, Nick, and Akina. Third, she penetrates the heart of the lab to destroy all its vital robot-repairing machinery.\r\nZeus and Quantum fight the decoy image while Fighter helps save the kids. Nick realizes that Zeus and Quantum are fighting an illusion and sends them to rushing to the lab, but it's too late: the lab explodes. Silver-General escapes and makes for the Space-Stronghold, where she plans to meet OmicronPsy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20862},{"seriesId":271,"episodeFileId":17606,"seasonNumber":1,"episodeNumber":23,"title":"The Fight With Omicronpsy","overview":"Dr. Coy's lab is entirely devastated except for the time machine. Megan's party realizes now that defeating OmicronPsy is going to be harder than they thought. They fly to the holding place for the last of the Emperor's Zentriums, the Space-Stronghold.\r\nMeanwhile, OmicronPsy has already brought a spaceship to the stronghold. The ship contains new bodies for himself and Silver-General that will let them live without the Emperor's Zentrium once the transformations are complete. OmicronPsy unleashes a huge number of flying robots to attack Megan's party as they approach the stronghold.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20863},{"seriesId":271,"episodeFileId":17607,"seasonNumber":1,"episodeNumber":24,"title":"Nothing To Live For","overview":"Megan and Nick are losing ground as they fight off OmicronPsy's huge fleet of flying robots until Zeus comes to the rescue. Megan enters the Space-Stronghold to try to turn off the last Zentrium.\r\nInside the stronghold, HellTank, Blade and Fighter battle against Dark-07 and Dark-08. Quantum fights Silver-General in a fierce battle. Zeus joins him. They finally destroy Silver-General. Lurking inside the stronghold, OmicronPsy is enraged to see that Silver-General is dead. He declares that he now has nothing to live for, and he prepares to exact revenge upon Megan and her party.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20864},{"seriesId":271,"episodeFileId":17608,"seasonNumber":1,"episodeNumber":25,"title":"Race Against Time","overview":"All of the robots in Megan's party are gravely wounded or destroyed altogether. Megan and Nick evade many booby traps and robot guards in reaching the sixth Zentrium.\r\n\r\nIn the race against the clock, OmicronPsy lashes out at Zeus and Quantum in the mother of all battles.\r\nAgainst all odds, Megan and her team turn off the last Zentrium. But, did they win the race against time? Or has OmicronPsy already activated his own Zentrium chips?!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20865},{"seriesId":271,"episodeFileId":17609,"seasonNumber":1,"episodeNumber":26,"title":"A Final Hope","overview":"Quantum is serious damaged by OmicronPsy, realizing that he's not going to survive, gives Zeus his Zentrium and dies. Zeus puts the second Zentrium in his own body, transforming him into \"Ultra Mode.\" He now has a greater chance to win, but he can only fight so long because the second Zentrium will make him overheat all too soon. Megan must push him and OmicronPsy into the time machine and send them elsewhere in time. Can Megan defeated OmicronPsy finally?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20866},{"seriesId":271,"episodeFileId":17584,"seasonNumber":1,"episodeNumber":1,"title":"The City of Zentrix","airDate":"2002-07-03","airDateUtc":"2002-07-02T16:00:00Z","overview":"Zentrix City, world capital of the future! From here the OmicronPsy Network, invented by scientific genius Emperor Jarad, controls the world. Thanks to robots with advanced thinking biochips, humans have never been so prosperous. But having been given 'human characteristics', OmicronPsy 'goes bad' and plans to usurp Jarad. The only thing Jarad can do to save mankind is to change history-by going back seven years in time and shutting down OmicronPsy's Zentrium CPU. But then he vanishes.\r\nFrom a hologram left by her father, Princess Megan, Jarad's 15-year-old daughter, discovers the truth about OmicronPsy, whose robots attack just as Megan and her pet dinosaur Mango escape using her father's time machine.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20841}],"episodeFile":[{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The City of Zentrix-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E01.The City of Zentrix-SDTV.mkv","size":270923882,"dateAdded":"2021-02-23T23:31:36.191432Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5382794,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17584},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Little Girl Megan-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E02.Little Girl Megan-SDTV.mkv","size":260847414,"dateAdded":"2021-02-23T23:31:36.309795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5446210,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17585},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Forest of Peachi-Wigis-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E03.The Forest of Peachi-Wigis-SDTV.mkv","size":279674136,"dateAdded":"2021-02-23T23:31:36.366274Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5490750,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17586},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Showdown With Dark-Alpha-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E04.Showdown With Dark-Alpha-SDTV.mkv","size":376665785,"dateAdded":"2021-02-23T23:31:36.424401Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5681241,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17587},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Sandstorm At The Pyramid-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E05.Sandstorm At The Pyramid-SDTV.mkv","size":272417085,"dateAdded":"2021-02-23T23:31:36.483245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5783311,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17588},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Showdown With Dark-01-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E06.Showdown With Dark-01-SDTV.mkv","size":254709681,"dateAdded":"2021-02-23T23:31:36.531265Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5663440,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17589},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Deep Sae Monster-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E07.The Deep Sae Monster-SDTV.mkv","size":281494857,"dateAdded":"2021-02-23T23:31:36.58143Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5783797,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17590},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The complete Zeus-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E08.The complete Zeus-SDTV.mkv","size":244666222,"dateAdded":"2021-02-23T23:31:36.629217Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5513758,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17591},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Wacky robot Professor-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E09.The Wacky robot Professor-SDTV.mkv","size":276799083,"dateAdded":"2021-02-23T23:31:36.67954Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5597269,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17592},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Dadly Combat Pit-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E10.The Dadly Combat Pit-SDTV.mkv","size":276507050,"dateAdded":"2021-02-23T23:31:36.735067Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5681645,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17593},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Two Silly Fathers-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E11.The Two Silly Fathers-SDTV.mkv","size":235934926,"dateAdded":"2021-02-23T23:31:36.809303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5593901,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17594},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Battle Below-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E12.The Battle Below-SDTV.mkv","size":244276121,"dateAdded":"2021-02-23T23:31:36.860292Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5625382,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17595},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Zeus Goes Missing-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E13.Zeus Goes Missing-SDTV.mkv","size":317379540,"dateAdded":"2021-02-23T23:31:36.94682Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5835796,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17596},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E14.The Volcano Rockmen-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E14.The Volcano Rockmen-SDTV.mkv","size":279163124,"dateAdded":"2021-02-23T23:31:37.052185Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5618773,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17597},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Zeus Returns!-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E15.Zeus Returns!-SDTV.mkv","size":256017912,"dateAdded":"2021-02-23T23:31:37.104298Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5659797,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17598},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E16.The Battle Of the Volcano-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E16.The Battle Of the Volcano-SDTV.mkv","size":283321891,"dateAdded":"2021-02-23T23:31:37.174024Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5720940,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17599},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Quantum's Big Pal-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E17.Quantum's Big Pal-SDTV.mkv","size":280340994,"dateAdded":"2021-02-23T23:31:37.390473Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5856265,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17600},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Penguin Tribe Of The North-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E18.The Penguin Tribe Of The North-SDTV.mkv","size":277344539,"dateAdded":"2021-02-23T23:31:37.488873Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5787088,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17601},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Brave Little Mango-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E19.Brave Little Mango-SDTV.mkv","size":293359230,"dateAdded":"2021-02-23T23:31:37.591082Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5827136,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17602},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Showdown With Dark-General-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E20.Showdown With Dark-General-SDTV.mkv","size":280900251,"dateAdded":"2021-02-23T23:31:37.662438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5809964,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17603},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Surprise Attack On Doctor Coy's Lab-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E21.Surprise Attack On Doctor Coy's Lab-SDTV.mkv","size":304363241,"dateAdded":"2021-02-23T23:31:37.721559Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5654367,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17604},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Silver General Gets The Upper Hand-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E22.Silver General Gets The Upper Hand-SDTV.mkv","size":280308944,"dateAdded":"2021-02-23T23:31:37.783276Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5790558,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17605},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E23.The Fight With Omicronpsy-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E23.The Fight With Omicronpsy-SDTV.mkv","size":280315319,"dateAdded":"2021-02-23T23:31:37.840538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5564682,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17606},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Nothing To Live For-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E24.Nothing To Live For-SDTV.mkv","size":360038606,"dateAdded":"2021-02-23T23:31:37.951013Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5917181,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17607},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Race Against Time-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E25.Race Against Time-SDTV.mkv","size":374884458,"dateAdded":"2021-02-23T23:31:38.041724Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5888376,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"25:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17608},{"seriesId":271,"seasonNumber":1,"relativePath":"Season 01\/S01E26.A Final Hope-SDTV.mkv","path":"\/tv\/Zentrix\/Season 01\/S01E26.A Final Hope-SDTV.mkv","size":370606338,"dateAdded":"2021-02-23T23:31:38.154987Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5772115,"videoCodec":"x264","videoFps":29.97,"resolution":"720x480","runTime":"24:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17609}],"queue":[]},"260":{"series":{"title":"The Leftovers","alternateTitles":[],"sortTitle":"leftovers","status":"ended","ended":true,"overview":"Three years after the disappearance of two percent of the global population, a group of people in a small New York community try to continue their lives while coping with the tragedy of the unexplained nature of the event.","previousAiring":"2017-06-05T01:00:00Z","network":"HBO","airTime":"21:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/261\/banner.jpg?lastWrite=637397929460087110","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/269689-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/261\/poster.jpg?lastWrite=637397929469166960","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/269689-11.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/261\/fanart.jpg?lastWrite=637397929470246940","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/269689-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2014-09-08T01:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":17985326593,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2015-12-07T02:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":47134370266,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2017-06-05T01:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":18405304615,"percentOfEpisodes":100.0}}],"year":2014,"path":"\/tv\/The Leftovers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":56,"tvdbId":269689,"tvRageId":34506,"tvMazeId":138,"firstAired":"2014-06-29T00:00:00Z","seriesType":"standard","cleanTitle":"theleftovers","imdbId":"tt2699128","titleSlug":"the-leftovers","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Mystery"],"tags":[],"added":"2020-11-01T02:02:24.978461Z","ratings":{"votes":2939,"value":8.8},"statistics":{"seasonCount":3,"episodeFileCount":28,"episodeCount":28,"totalEpisodeCount":29,"sizeOnDisk":83525001474,"percentOfEpisodes":100.0},"id":261},"episodes":[{"seriesId":261,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Making The Leftovers","airDate":"2014-06-18","airDateUtc":"2014-06-19T01:00:00Z","overview":"Go behind-the-scenes of the highly anticipated HBO drama series 'The Leftovers' which follows the people left behind after a global rapture.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19945},{"seriesId":261,"episodeFileId":15978,"seasonNumber":1,"episodeNumber":1,"title":"Pilot","airDate":"2014-06-29","airDateUtc":"2014-06-30T01:00:00Z","overview":"Three years after millions of people--some 2% of the world's population--vanished into thin air, residents of Mapleton, NY weigh the pros and cons of a 'Heroes Day' tribute to the local 'Departed.' Attempting to maintain a sense of normalcy in his strained community, police chief Kevin Garvey faces additional challenges at home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":19946},{"seriesId":261,"episodeFileId":15979,"seasonNumber":1,"episodeNumber":2,"title":"Penguin One, Us Zero","airDate":"2014-07-06","airDateUtc":"2014-07-07T01:00:00Z","overview":"In the wake of a series of disturbing encounters, Kevin pays a visit to a therapist. Tom finds himself in a precarious situation with Christine, a favorite of Wayne's. A frustrated Meg is asked to part with pieces of her past. Jill and Aimee tail Nora Durst, who became a local celebrity when her entire family disappeared in the Departure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":19947},{"seriesId":261,"episodeFileId":15980,"seasonNumber":1,"episodeNumber":3,"title":"Two Boats and a Helicopter","airDate":"2014-07-13","airDateUtc":"2014-07-14T01:00:00Z","overview":"In the face of dwindling church attendance and threats on his life, the Rev. Matt Jamison continues to preach his gospel: that many who disappeared in the Departure were sinners and not saints. Matt's campaign is detoured when he learns he may lose the church to foreclosure, forcing him to launch a desperate, last-minute plan to come up with the cash to keep it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":19948},{"seriesId":261,"episodeFileId":15981,"seasonNumber":1,"episodeNumber":4,"title":"B.J. and the A.C.","airDate":"2014-07-20","airDateUtc":"2014-07-21T01:00:00Z","overview":"A holiday display goes wanting, sending Kevin scurrying to find out who is responsible. Tom and Christine run into trouble at a hospital and on the road. Kevin retrieves a surprise detainee from a neighboring police station, and receives some unexpected visitors at home. The Guilty Remnant puts their stamp on the holiday season.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":19949},{"seriesId":261,"episodeFileId":15982,"seasonNumber":1,"episodeNumber":5,"title":"Gladys","airDate":"2014-07-27","airDateUtc":"2014-07-28T01:00:00Z","overview":"Laurie's resolve is put to the test in the wake of a brutal hate crime. After his latest initiatives to maintain peace in Mapleton fall short, Kevin turns down an outside offer to rid the town of its problems. Matt brings his pulpit to the street. Meg takes on a new role.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":19950},{"seriesId":261,"episodeFileId":15983,"seasonNumber":1,"episodeNumber":6,"title":"Guest","airDate":"2014-08-03","airDateUtc":"2014-08-04T01:00:00Z","overview":"Nora takes care of some unfinished business in Mapleton before heading to New York for the Second Annual DROP conference (Departure Related Occupations and Practices). Agitated that her ID has been pinched, Nora, wearing a 'Guest' badge, scours the convention for her imposter, and ends up getting detoured by an amorous salesman, a best-selling author, and a rogue attendee.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":19951},{"seriesId":261,"episodeFileId":15984,"seasonNumber":1,"episodeNumber":7,"title":"Solace for Tired Feet","airDate":"2014-08-10","airDateUtc":"2014-08-11T01:00:00Z","overview":"After learning his father has escaped the psychiatric hospital, Kevin orders an APB to track him down. Jill attempts to break an endurance record. Holed up in Indiana, a disillusioned Tom makes an unsettling discovery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":19952},{"seriesId":261,"episodeFileId":15985,"seasonNumber":1,"episodeNumber":8,"title":"Cairo","airDate":"2014-08-17","airDateUtc":"2014-08-18T01:00:00Z","overview":"Kevin fears he's losing touch with reality after finding himself, inexplicably, in a difficult situation involving Patti Levin, a leader of the Guilty Remnant. Meg loses control during another encounter with Matt; Jill confronts Aimee about her relationship with Kevin; Nora stands up to Laurie, and finds her privacy invaded.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":19953},{"seriesId":261,"episodeFileId":15986,"seasonNumber":1,"episodeNumber":9,"title":"The Garveys at Their Best","airDate":"2014-08-24","airDateUtc":"2014-08-25T01:00:00Z","overview":"Kevin tries to suppress his bad habits while tracking down a marauding deer in Mapleton. Laurie receives some not-unexpected news amidst a rising sense of foreboding. Tom connects with his past, against his better judgment. Nora has a job interview; Kevin Senior receives an honor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":19954},{"seriesId":261,"episodeFileId":15987,"seasonNumber":1,"episodeNumber":10,"title":"The Prodigal Son Returns","airDate":"2014-09-07","airDateUtc":"2014-09-08T01:00:00Z","overview":"An unexpected ally helps Kevin get out of a jam near the town of Cairo. Meanwhile, an elaborate Memorial Day initiative by the Guilty Remnant plunges the town of Mapleton into chaos. Holy Wayne grants a final wish; Tom copes with his new reality; Nora makes a life-changing decision.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":19955},{"seriesId":261,"episodeFileId":16061,"seasonNumber":2,"episodeNumber":1,"title":"Axis Mundi","airDate":"2015-10-04","airDateUtc":"2015-10-05T01:00:00Z","overview":"Jarden, Texas was renamed 'Miracle' after it was discovered no one departed. Among the local families is the Murphys: the father, John, the mother, Erika, and their twins, Evie and Michael. Meanwhile, Kevin Garvey, Nora Durst and Jill Garvey show up in Miracle to start over, but Kevin cannot seem to escape his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":19956},{"seriesId":261,"episodeFileId":16062,"seasonNumber":2,"episodeNumber":2,"title":"A Matter of Geography","airDate":"2015-10-11","airDateUtc":"2015-10-12T01:00:00Z","overview":"Kevin, Nora, and Jill try to pick up the pieces in the aftermath of the Mapleton riots but problems from the past keep resurfacing. The new Garvey clan gets a fresh start in the safety of Miracle. Nora makes an impulsive choice, while Kevin gets entangled in the Murphy family's problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":19957},{"seriesId":261,"episodeFileId":16063,"seasonNumber":2,"episodeNumber":3,"title":"Off Ramp","airDate":"2015-10-18","airDateUtc":"2015-10-19T01:00:00Z","overview":"Laurie and Tom Garvey's work to rescue lost souls takes a toll on theirs. Laurie seeks to spread the word about the Guilty Remnant's dangers, while Tom's infiltration of the cult uncovers a whole new nest of problems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":19958},{"seriesId":261,"episodeFileId":16064,"seasonNumber":2,"episodeNumber":4,"title":"Orange Sticker","airDate":"2015-10-25","airDateUtc":"2015-10-26T01:00:00Z","overview":"In the midst of an earthquake, Nora awakens to find Kevin missing and her hopes of safety in their new town dashed. The Murphys are left reeling after Evie's disappearance. Kevin returns home but without his memory of the night before or his cell phone, which would link him to the missing girls. Meanwhile, an old enemy makes her return in an unexpected way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":19959},{"seriesId":261,"episodeFileId":16065,"seasonNumber":2,"episodeNumber":5,"title":"No Room at the Inn","airDate":"2015-11-01","airDateUtc":"2015-11-02T02:00:00Z","overview":"Rev. Matt Jamison takes his vegetative wife Mary outside of Miracle to seek answers about her condition. But their lives take a dangerous detour when Matt is barred from returning to town. Matt races to get Mary back into Miracle while struggling to keep her safe from desperate tourists who are squatting just outside Miracle's gates.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":19960},{"seriesId":261,"episodeFileId":16066,"seasonNumber":2,"episodeNumber":6,"title":"Lens","airDate":"2015-11-08","airDateUtc":"2015-11-09T02:00:00Z","overview":"Some unexpected visitors get under Nora's skin, and she becomes preoccupied with a burning question about herself. Kevin's predicament becomes impossible to ignore. Erika finds an unlikely ally and reveals some haunting secrets.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":19961},{"seriesId":261,"episodeFileId":16067,"seasonNumber":2,"episodeNumber":7,"title":"A Most Powerful Adversary","airDate":"2015-11-15","airDateUtc":"2015-11-16T02:00:00Z","overview":"Nora gives Kevin and Jill news they weren't expecting. Laurie makes a rash decision that affects the Garveys. Kevin deals with the fallout of Nora's news, and explores his options re: tackling his Patti problem head-on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":19962},{"seriesId":261,"episodeFileId":16068,"seasonNumber":2,"episodeNumber":8,"title":"International Assassin","airDate":"2015-11-22","airDateUtc":"2015-11-23T02:00:00Z","overview":"In the wake of Kevin's desperate decision to vanquish Patti, questions and answers emerge as the world adjusts to the repercussions of what comes next.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":19963},{"seriesId":261,"episodeFileId":16069,"seasonNumber":2,"episodeNumber":9,"title":"Ten Thirteen","airDate":"2015-11-29","airDateUtc":"2015-11-30T02:00:00Z","overview":"A personal loss and subsequent pilgrimage to Miracle offer clues on why Meg embarked on her path as a Remnant crusader. After a fallout with Laurie, Tom seeks to reunite with Meg.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":19964},{"seriesId":261,"episodeFileId":16070,"seasonNumber":2,"episodeNumber":10,"title":"I Live Here Now","airDate":"2015-12-06","airDateUtc":"2015-12-07T02:00:00Z","overview":"Kevin comes clean to a skeptical John about his connection to Evie's disappearance, as Miracle faces an unexpected threat on the fourth anniversary of The Departure.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":19965},{"seriesId":261,"episodeFileId":15988,"seasonNumber":3,"episodeNumber":1,"title":"The Book of Kevin","airDate":"2017-04-16","airDateUtc":"2017-04-17T01:00:00Z","overview":"Three years after Miracle, Texas was overrun by the Guilty Remnant, Kevin Garvey has returned to his role as chief of police. Although he seems to have moved past the incredible events surrounding his \"resurrection,\" the Seventh Anniversary of the Sudden Departure is just two weeks away and many believe another apocalyptic event may come with it.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":19966},{"seriesId":261,"episodeFileId":15989,"seasonNumber":3,"episodeNumber":2,"title":"Don't Be Ridiculous","airDate":"2017-04-23","airDateUtc":"2017-04-24T01:00:00Z","overview":"In her official capacity as fraud investigator for the Department of Sudden Departure (D.S.D.), Nora travels to St. Louis to investigate a possible scam that involves convincing the family members of The Departed there\u2019s a way to see their loved ones again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":19967},{"seriesId":261,"episodeFileId":15990,"seasonNumber":3,"episodeNumber":3,"title":"Crazy Whitefella Thinking","airDate":"2017-04-30","airDateUtc":"2017-05-01T01:00:00Z","overview":"With the clock ticking towards the anniversary of the Departure and emboldened by a vision that is either divine prophecy or utter insanity, Kevin Garvey Sr. wanders the Australian Outback in an effort to save the world from apocalypse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":19968},{"seriesId":261,"episodeFileId":15991,"seasonNumber":3,"episodeNumber":4,"title":"G'Day Melbourne","airDate":"2017-05-07","airDateUtc":"2017-05-08T01:00:00Z","overview":"Kevin and Nora travel to Australia, where she continues to track down the masterminds of an elaborate con, while he catches a glimpse of an unexpected face from the past, forcing him to confront the traumatic events of three years earlier.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":19969},{"seriesId":261,"episodeFileId":15992,"seasonNumber":3,"episodeNumber":5,"title":"It's a Matt, Matt, Matt, Matt World","airDate":"2017-05-14","airDateUtc":"2017-05-15T01:00:00Z","overview":"Convinced it is Kevin\u2019s destiny to be in Miracle for the coming seventh anniversary of the Departure, Matt Jamison impulsively heads to Australia in an effort to bring Kevin home. Unfortunately, God gets in the way.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":19970},{"seriesId":261,"episodeFileId":15993,"seasonNumber":3,"episodeNumber":6,"title":"Certified","airDate":"2017-05-21","airDateUtc":"2017-05-22T01:00:00Z","overview":"Laurie Garvey, a former therapist, must become one again as she heads to Australia to help Nora and Kevin along their paths.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":19971},{"seriesId":261,"episodeFileId":15994,"seasonNumber":3,"episodeNumber":7,"title":"The Most Powerful Man in the World (and His Identical Twin Brother)","airDate":"2017-05-28","airDateUtc":"2017-05-29T01:00:00Z","overview":"On a mission of mercy, Kevin assumes an alternate identity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":19972},{"seriesId":261,"episodeFileId":15995,"seasonNumber":3,"episodeNumber":8,"title":"The Book of Nora","airDate":"2017-06-04","airDateUtc":"2017-06-05T01:00:00Z","overview":"Convinced that she'll be reunited with her children, Nora decides to use the machine - at what cost?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":19973}],"episodeFile":[{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Pilot-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E01.Pilot-Bluray-1080p.mkv","size":2449210517,"dateAdded":"2020-11-01T03:32:44.27353Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":429549,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3871053,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:11:39","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15978},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Penguin One, Us Zero-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E02.Penguin One, Us Zero-Bluray-1080p.mkv","size":1629247610,"dateAdded":"2020-11-01T03:36:09.941035Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425602,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3195552,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"56:09","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15979},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Two Boats and a Helicopter-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E03.Two Boats and a Helicopter-Bluray-1080p.mkv","size":1604820387,"dateAdded":"2020-11-01T03:40:02.577031Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":436063,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3451156,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"52:17","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15980},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E04.B.J. and the A.C-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E04.B.J. and the A.C-Bluray-1080p.mkv","size":1731701213,"dateAdded":"2020-11-01T03:45:13.661641Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":425774,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3928596,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:38","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15981},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Gladys-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E05.Gladys-Bluray-1080p.mkv","size":1636358471,"dateAdded":"2020-11-01T03:48:05.187998Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441415,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3245724,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:11","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15982},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Guest-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E06.Guest-Bluray-1080p.mkv","size":1522786618,"dateAdded":"2020-11-01T03:54:40.261632Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":431672,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3195993,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"51:41","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15983},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Solace for Tired Feet-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E07.Solace for Tired Feet-Bluray-1080p.mkv","size":1858637971,"dateAdded":"2020-11-01T03:57:47.605362Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":443389,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3688345,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:08","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ German \/ Italian \/ Italian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15984},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Cairo-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E08.Cairo-Bluray-1080p.mkv","size":1951821515,"dateAdded":"2020-11-01T04:02:03.745574Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":441433,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4006001,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:57","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ Italian \/ Italian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15985},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Garveys at Their Best-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E09.The Garveys at Their Best-Bluray-1080p.mkv","size":1839869531,"dateAdded":"2020-11-01T04:07:44.347533Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":417891,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3766219,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:40","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ German \/ Italian \/ Italian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15986},{"seriesId":261,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Prodigal Son Returns-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 01\/S01E10.The Prodigal Son Returns-Bluray-1080p.mkv","size":1760872760,"dateAdded":"2020-11-01T04:13:18.003849Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":440324,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3819888,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"52:57","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish \/ French \/ German \/ German \/ Italian \/ Italian \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15987},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E01.The Book of Kevin-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E01.The Book of Kevin-Bluray-1080p.mkv","size":2407219651,"dateAdded":"2020-11-01T05:24:17.087373Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":421947,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4799027,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:22","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15988},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Don't Be Ridiculous-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E02.Don't Be Ridiculous-Bluray-1080p.mkv","size":1994905165,"dateAdded":"2020-11-01T05:31:21.385816Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":414309,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4026532,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:34","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15989},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Crazy Whitefella Thinking-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E03.Crazy Whitefella Thinking-Bluray-1080p.mkv","size":2741672891,"dateAdded":"2020-11-01T05:35:26.606909Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":398948,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5842120,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"57:48","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15990},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E04.G'Day Melbourne-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E04.G'Day Melbourne-Bluray-1080p.mkv","size":2011871101,"dateAdded":"2020-11-01T05:43:27.311107Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418696,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4318889,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:18","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15991},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E05.It's a Matt, Matt, Matt, Matt World-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E05.It's a Matt, Matt, Matt, Matt World-Bluray-1080p.mkv","size":1995257124,"dateAdded":"2020-11-01T05:47:27.696354Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":422846,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4316842,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:57","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15992},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Certified-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E06.Certified-Bluray-1080p.mkv","size":2385793235,"dateAdded":"2020-11-01T05:50:46.19607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":430247,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4947447,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"58:06","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15993},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Most Powerful Man in the World (and His Identical Twin Brother)-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E07.The Most Powerful Man in the World (and His Identical Twin Brother)-Bluray-1080p.mkv","size":2081890591,"dateAdded":"2020-11-01T05:53:50.842538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":418106,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4103461,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:00:05","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15994},{"seriesId":261,"seasonNumber":3,"relativePath":"Season 03\/S03E08.The Book of Nora-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 03\/S03E08.The Book of Nora-Bluray-1080p.mkv","size":2786694857,"dateAdded":"2020-11-01T05:59:31.073368Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4688933,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:11:57","scanType":"","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15995},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Axis Mundi-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E01.Axis Mundi-Bluray-1080p.mkv","size":4693352093,"dateAdded":"2020-11-10T03:13:35.423107Z","sceneName":"the.leftovers.s02e01.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8612000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:01:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16061},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E02.A Matter of Geography-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E02.A Matter of Geography-Bluray-1080p.mkv","size":4264517405,"dateAdded":"2020-11-10T03:15:51.293333Z","sceneName":"the.leftovers.s02e02.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8536000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16062},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Off Ramp-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E03.Off Ramp-Bluray-1080p.mkv","size":4263381599,"dateAdded":"2020-11-10T03:18:06.401799Z","sceneName":"the.leftovers.s02e03.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8538000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16063},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Orange Sticker-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E04.Orange Sticker-Bluray-1080p.mkv","size":4263174545,"dateAdded":"2020-11-10T03:20:15.013242Z","sceneName":"the.leftovers.s02e04.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8824000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"55:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16064},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E05.No Room at the Inn-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E05.No Room at the Inn-Bluray-1080p.mkv","size":4264647219,"dateAdded":"2020-11-10T03:22:23.662754Z","sceneName":"the.leftovers.s02e05.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8623000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"56:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16065},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Lens-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E06.Lens-Bluray-1080p.mkv","size":4693265723,"dateAdded":"2020-11-10T03:24:32.739088Z","sceneName":"the.leftovers.s02e06.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9418000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16066},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E07.A Most Powerful Adversary-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E07.A Most Powerful Adversary-Bluray-1080p.mkv","size":4693126881,"dateAdded":"2020-11-10T03:26:48.030375Z","sceneName":"the.leftovers.s02e07.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9321000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"57:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16067},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E08.International Assassin-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E08.International Assassin-Bluray-1080p.mkv","size":5867181102,"dateAdded":"2020-11-10T03:29:02.8566Z","sceneName":"the.leftovers.s02e08.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10995000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:02:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16068},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Ten Thirteen-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E09.Ten Thirteen-Bluray-1080p.mkv","size":4264264443,"dateAdded":"2020-11-10T03:31:21.106537Z","sceneName":"the.leftovers.s02e09.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8892000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"54:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16069},{"seriesId":261,"seasonNumber":2,"relativePath":"Season 02\/S02E10.I Live Here Now-Bluray-1080p.mkv","path":"\/tv\/The Leftovers\/Season 02\/S02E10.I Live Here Now-Bluray-1080p.mkv","size":5867459256,"dateAdded":"2020-11-10T03:33:29.591008Z","sceneName":"the.leftovers.s02e10.1080p.bluray.x264-rovers","releaseGroup":"rovers","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9374000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:11:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16070}],"queue":[]},"261":{"series":{"title":"Galaxy Angel A","alternateTitles":[],"sortTitle":"galaxy angel","status":"ended","ended":true,"overview":"Their mission is to locate and retrieve the mysterious Lost Technology, even though these girls have never been known to stick to their mission. Milfeulle, Forte, Ranpha, Mint, and Vanilla are back for another round of hilarity. The Galaxy Angels have sworn to protect the galaxy one planet at a time. Now with some competition with the newly-formed Twin Star Brigade, they continue to find themselves in the center of chaos... though usually they're the ones at fault for its cause.","previousAiring":"2003-01-25T15:12:00Z","network":"TV Tokyo","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/278\/poster.jpg?lastWrite=637516693532150040","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/83446-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/278\/fanart.jpg?lastWrite=637516693544029870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/83446-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-01-25T15:12:00Z","episodeFileCount":0,"episodeCount":34,"totalEpisodeCount":54,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2002,"path":"\/tv\/Galaxy Angel A","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":12,"tvdbId":83446,"tvRageId":0,"tvMazeId":0,"firstAired":"2002-10-06T00:00:00Z","seriesType":"standard","cleanTitle":"galaxyangela","titleSlug":"galaxy-angel-a","rootFolderPath":"\/tv\/","genres":["Animation","Comedy"],"tags":[],"added":"2021-03-18T13:02:32.608832Z","ratings":{"votes":28,"value":10.0},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":34,"totalEpisodeCount":54,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":278},"episodes":[{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":35,"title":"Competitive Sake Full of Predictions","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21235},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":36,"title":"Jiggly Pudding","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21236},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":37,"title":"Deep Fried Love Letter","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21237},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":38,"title":"Galactic Rose Tea","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21238},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":39,"title":"Premium Tuna That Just Won't Slip","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21239},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":40,"title":"Assorted Rock Candy Delivery","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21240},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":41,"title":"Magic Pot Roast","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21241},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":42,"title":"Sub-zero Hot Hot Dog","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21242},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":43,"title":"Retry Rice","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21243},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":44,"title":"An Offering That You Must Not Eat","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21244},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":45,"title":"Sneaky Seaweed Wrap","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21245},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":46,"title":"Fish Jerky Over A Thousand Nights","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21246},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":47,"title":"Anyway Angel Morning Set","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21247},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":48,"title":"Starchild Sausage","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21248},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":49,"title":"Fresh Packed Fish","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21249},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":50,"title":"Prohibited String-pulling String-pulling Fermented Beans","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21250},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":51,"title":"Final dish REBECCA (part 1)","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21251},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":52,"title":"Final dish REBECCA (part 2)","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21252},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":53,"title":"Very Fried Chicken","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21253},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":54,"title":"An Oyster Fried Very Shameful","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21254},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"Old Man Detective Novel Rice Porridge","airDate":"2002-10-06","airDateUtc":"2002-10-05T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21201},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"Original Angel Parfait with the Works","airDate":"2002-10-06","airDateUtc":"2002-10-05T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21202},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"Shuffle French without Dessert","airDate":"2002-10-13","airDateUtc":"2002-10-12T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21203},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"Special Appetizer without Main Dish","airDate":"2002-10-13","airDateUtc":"2002-10-12T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21204},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"Deluxe Milfeulle Surprise Sandwich","airDate":"2002-10-20","airDateUtc":"2002-10-19T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21205},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"Hug Hug Fish Pot","airDate":"2002-10-20","airDateUtc":"2002-10-19T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21206},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"Chilled Mackerel with a Prize","airDate":"2002-10-27","airDateUtc":"2002-10-26T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21207},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":8,"title":"Slippery Pasta","airDate":"2002-10-27","airDateUtc":"2002-10-26T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21208},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":9,"title":"Overpriced Salad Bar","airDate":"2002-11-03","airDateUtc":"2002-11-02T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21209},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":10,"title":"Angel Banana Discount","airDate":"2002-11-03","airDateUtc":"2002-11-02T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21210},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":11,"title":"Painful Walnut Pie","airDate":"2002-11-10","airDateUtc":"2002-11-09T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21211},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":12,"title":"Angel Hotchpotch Taste Test","airDate":"2002-11-10","airDateUtc":"2002-11-09T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21212},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":13,"title":"Ultra Rare Fortune Cookie","airDate":"2002-11-17","airDateUtc":"2002-11-16T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21213},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":14,"title":"Ultra Hot Kid's Meal","airDate":"2002-11-17","airDateUtc":"2002-11-16T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21214},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":15,"title":"Good-bye to Our Steaming Teapot","airDate":"2002-11-24","airDateUtc":"2002-11-23T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21215},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":16,"title":"Mustached Beef Rib Rice Bowl with Rich Sauce","airDate":"2002-11-24","airDateUtc":"2002-11-23T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21216},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":17,"title":"Pour, Ambitious, Chilled Sesame Chicken","airDate":"2002-12-01","airDateUtc":"2002-11-30T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21217},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":18,"title":"A String of Handmade Noodles with No Connection","airDate":"2002-12-01","airDateUtc":"2002-11-30T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21218},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":19,"title":"Bamboo-Cutter Platter","airDate":"2002-12-08","airDateUtc":"2002-12-07T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21219},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":20,"title":"Wandering Cat Food","airDate":"2002-12-08","airDateUtc":"2002-12-07T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21220},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":21,"title":"Frequently Ordered Sushi","airDate":"2002-12-15","airDateUtc":"2002-12-14T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21221},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":22,"title":"Fortuitous Family Set","airDate":"2002-12-15","airDateUtc":"2002-12-14T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21222},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":23,"title":"All-You-Can-Eat Juicy Yakiniku","airDate":"2002-12-22","airDateUtc":"2002-12-21T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21223},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":24,"title":"Glitter Clunk Mixed Juice","airDate":"2002-12-22","airDateUtc":"2002-12-21T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21224},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":25,"title":"Junk Ramen, Extra Noodles Available","airDate":"2002-12-29","airDateUtc":"2002-12-28T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21225},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":26,"title":"Continuously Pushed Sweet Red Bean Soup","airDate":"2002-12-29","airDateUtc":"2002-12-28T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21226},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":27,"title":"Pyuru-riku Magical Steak","airDate":"2003-01-05","airDateUtc":"2003-01-04T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21227},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":28,"title":"Baum-kuhen to Worry Over","airDate":"2003-01-05","airDateUtc":"2003-01-04T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21228},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":29,"title":"Sun-dried Pork Feet","airDate":"2003-01-12","airDateUtc":"2003-01-11T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21229},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":30,"title":"Top Imitation Goose","airDate":"2003-01-12","airDateUtc":"2003-01-11T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21230},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":31,"title":"The Sign is Bouillon","airDate":"2003-01-19","airDateUtc":"2003-01-18T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21231},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":32,"title":"Acting Angel Seafood Soup","airDate":"2003-01-19","airDateUtc":"2003-01-18T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21232},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":33,"title":"Specialty Rocky Fish Cake","airDate":"2003-01-26","airDateUtc":"2003-01-25T15:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21233},{"seriesId":278,"episodeFileId":0,"seasonNumber":1,"episodeNumber":34,"title":"Broken-up Hot Spring Rice Cracker","airDate":"2003-01-26","airDateUtc":"2003-01-25T15:12:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21234}],"episodeFile":[],"queue":[]},"263":{"series":{"title":"The Venture Bros.","alternateTitles":[],"sortTitle":"venture bros","status":"ended","ended":true,"overview":"Hank and Dean Venture, with their father Doctor Venture and faithful bodyguard Brock Samson, go on wild adventures facing megalomaniacs, zombies, and suspicious ninjas, all for the glory of adventure. Or something like that.","previousAiring":"2018-10-08T16:00:00Z","network":"Adult Swim","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/263\/banner.jpg?lastWrite=637420030301027620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/17591-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/263\/poster.jpg?lastWrite=637420030301867610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/72306-5.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/263\/fanart.jpg?lastWrite=637420030303147590","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/72306-8.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":12,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2004-10-30T16:00:00Z","episodeFileCount":2,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":1411789923,"percentOfEpisodes":15.384615384615385}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2006-10-15T16:00:00Z","episodeFileCount":6,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":3582272738,"percentOfEpisodes":46.15384615384615}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2008-08-24T16:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":9587021271,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2010-11-21T17:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":3124712278,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2013-07-21T16:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":7960464465,"percentOfEpisodes":100.0}},{"seasonNumber":6,"monitored":true,"statistics":{"previousAiring":"2016-03-21T16:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":9316031360,"percentOfEpisodes":100.0}},{"seasonNumber":7,"monitored":true,"statistics":{"previousAiring":"2018-10-08T16:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":23461407640,"percentOfEpisodes":100.0}}],"year":2004,"path":"\/tv\/The Venture Bros","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":72306,"tvRageId":6270,"tvMazeId":304,"firstAired":"2004-08-07T00:00:00Z","seriesType":"standard","cleanTitle":"theventurebros","imdbId":"tt0417373","titleSlug":"the-venture-bros","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Animation","Comedy","Science Fiction","Suspense"],"tags":[],"added":"2020-11-26T15:57:08.866562Z","ratings":{"votes":2515,"value":9.1},"statistics":{"seasonCount":7,"episodeFileCount":63,"episodeCount":81,"totalEpisodeCount":93,"sizeOnDisk":58443699675,"percentOfEpisodes":77.77777777777777},"id":263},"episodes":[{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"On the Set with The Monarch","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20081},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Animating Hank and Dean: Computer Magic","overview":"With narration by Pete White and Billy Quiz-Boy","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21416},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"The Astrobase Go! Moon Tour","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21417},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Larry Murphy in: Fax My Grandson - The Further Audio Adventures of Diamond Backdraft","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21683},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Terrible Secret of Turtle Bay","airDate":"2003-02-16","airDateUtc":"2003-02-16T17:00:00Z","overview":"The Venture family travels to New York City, where Dr. Venture is presenting his newest invention to the United Nations. They are pursued by a ninja intent on acquiring the device, and by Dr. Venture's archenemy The Monarch.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20073},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"Dia de Los Dangerous!","airDate":"2004-08-07","airDateUtc":"2004-08-07T16:00:00Z","overview":"When the Venture Family visits Tijuana for a lecture Dr. Venture is giving at the (community) University of Mexico, the dastardly Monarch weaves a cocoon of villainy that leaves the Venture brothers trapped in his clutches, Dr. Venture kidney-less and Brock...dead? If only Dr. Venture would return the Monarch's calls...","hasFile":false,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":20082},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"Careers in Science","airDate":"2004-08-14","airDateUtc":"2004-08-14T16:00:00Z","overview":"The Venture family must travel to space to repair an orbiting space station that Dr. Venture's father built in the 1970s, but a mysterious space phantom could be haunting the station! Things get even more intense as Brock's presence adds heat to an already tense romantic relationship between the station's two officers.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":20083},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"Home Insecurity","airDate":"2004-08-21","airDateUtc":"2004-08-21T16:00:00Z","overview":"To protect the Venture compound while Brock is on his yearly mountain survival sabbatical, Dr. Venture builds a panic room and a robotic bodyguard -which are soon put to the test when both the Monarch's and Baron Underbheit's henchmen choose the same night to launch attacks. While the supervillains bicker over who has dibs on Dr. Venture, Brock is busy befriending the strangest couple in the Cascadian mountains. Oh yeah, and H.E.L.P.eR. runs away in a fit of jealousy.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":20084},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"The Incredible Mr. Brisby","airDate":"2004-08-28","airDateUtc":"2004-08-28T16:00:00Z","overview":"Dr. Venture is offered a job by theme park owner and cartoon magnate Roy Brisby, who won't take no for an answer in his quest for worldwide entertainment dominance. Meanwhile, the boys are given the Patty Hearst treatment by the Orange County Liberation Front, a group of militant suburbanites who want to take down Brisby's empire Brock enlists the aid of former lover and fellow superspy Molotov Cocktease to 'mount' a rescue, but she may have her own agenda.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":20085},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"Eeney, Meeney, Miney\u2026 Magic!","airDate":"2004-09-04","airDateUtc":"2004-09-04T16:00:00Z","overview":"Dr. Venture's new experiment has the entire family interested -not to mention trapped inside! The Ventures' strange new neighbor, master of mysticism Dr. Orpheus, may be the only one who can help them escape. Meanwhile Dean falls for Dr. Orpheus's teen aged daughter and Brock falls for his old flame: Molotov Cocktease.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":20086},{"seriesId":263,"episodeFileId":16460,"seasonNumber":1,"episodeNumber":6,"title":"Ghosts of the Sargasso","airDate":"2004-09-11","airDateUtc":"2004-09-11T16:00:00Z","overview":"On a scientific expedition in the Bermuda Triangle, Doc's experimental equipment awakens and possibly enrages the submerged ghost of Major Tom, a test pilot who crashed in an experimental aircraft designed by Doc's father. While there, the Ventures' hydrofoil is hijacked by a group of fake ghost pirates who've been stranded in the sargassum since Jesus Jones was popular.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":20087},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"Ice Station - Impossible!","airDate":"2004-09-18","airDateUtc":"2004-09-18T16:00:00Z","overview":"Dr. Venture, Pete White and Master Billy Quizboy are invited to take part in a top secret government think tank run by supergenius Professor Impossible (coincidentally their former college professor), but Doc's life is in jeopardy once he learns the dark secrets of Impossible's sequestered family. Meanwhile, Hank has become a walking time bomb thanks to a stolen Cold War serum, and Brock and Dean must race the clock to save him.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":20088},{"seriesId":263,"episodeFileId":16400,"seasonNumber":1,"episodeNumber":8,"title":"Mid-Life Chrysalis","airDate":"2004-09-25","airDateUtc":"2004-09-25T16:00:00Z","overview":"The Monarch sends Dr. Girlfriend undercover to seduce Dr. Venture in order to inject him with a body-altering serum. Meanwhile, Brock is deeply depressed to he learn his secret agent license to kill has expired, but the boys are hell-bent on helping him cram for his government exam.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":20089},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":9,"title":"Are You There, God? It's Me, Dean","airDate":"2004-10-02","airDateUtc":"2004-10-02T16:00:00Z","overview":"The Monarch finally has the Venture family right where he wants them- hanging upside down above the Amazon river! But his victory is postponed when Dean suffers a strange but fairly common injury- acute testicular tortion. According to the bylaws of the Guild of Calamitous Intent, a temporary truce must be called in order to get Dean medical attention, so Brock and Hank are held as collateral. Doc calls on his friends, Master Billy Quizboy and Mr. White, to perform orchiopexy on Dean.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":20090},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":10,"title":"Tag Sale - You're It!","airDate":"2004-10-09","airDateUtc":"2004-10-09T16:00:00Z","overview":"Always short on cash, Dr. Venture decides to unload some of his father's old scientific equipment in a huge yard sale that attracts fellow scientists and super-villains alike. Everyone is supposed to be on their best behavior, but The Monarch can't resist the temptation to wreak havoc once he finds himself inside the 'belly of the beast'...nor can he find a bathroom.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":20091},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":11,"title":"Past Tense","airDate":"2004-10-16","airDateUtc":"2004-10-16T16:00:00Z","overview":"When Brock and Dr. Venture are kidnapped from the funeral of a college friend, the boys enlist the aid of the original Team Venture: a group of superscience adventurers who worked for their grandfather in the sixties. Meanwhile, the mysterious kidnapper reveals the secret of his twenty year old grudge through a series of flashbacks to when he, Brock, Doc, Baron Underbheit and Mr. White were all in college together.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":20092},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":12,"title":"The Trial of the Monarch","airDate":"2004-10-23","airDateUtc":"2004-10-23T16:00:00Z","overview":"The Monarch is on trial for the one crime he may not have committed, under mysterious circumstances stemming from his bitter breakup with Dr. Girlfriend. The boys and Dr. Orpheus are forced to testify, but only Brock is aware that something far more sinister is afoot.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":20093},{"seriesId":263,"episodeFileId":0,"seasonNumber":1,"episodeNumber":13,"title":"Return to Spider-Skull Island","airDate":"2004-10-30","airDateUtc":"2004-10-30T16:00:00Z","overview":"Dr. Venture finally learns the secret of his recurring womb nightmares when a stomach tumor turns out to be something far more sinister. In a fit of jealousy over their mistaken belief their father is pregnant, the boys run away from home. But their newfound freedom is short lived once they run afoul of the law and land themselves in a 'Scared Straight'-style outreach program headed by none other than the recently incarcerated Monarch.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20094},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"A Very Venture Christmas","airDate":"2004-12-19","airDateUtc":"2004-12-19T17:00:00Z","overview":"Dr. Venture is a bit behind on his shopping, but he's excited about hosting his annual Christmas Eve shindig. Brock turns out to have some sentimental Yuletide traditions. Dean and Hank, who still believe in Santa Claus, accidentally unlock a magical demon who threatens to ruin Dr. Venture's annual Christmas party and murder all his guests. Dr. Billy Quizboy and Mr. White hit on Triana, Dr. Orpheus' underage daughter. Meanwhile, The Monarch plans the ultimate gift for Dr. Girlfriend--the destruction of the entire Venture Compound.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20074},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Powerless in the Face of Death","airDate":"2006-06-25","airDateUtc":"2006-06-25T16:00:00Z","overview":"The premiere episode finds Team Venture and friends struggling to pick up the pieces of their shattered lives and move on in the wake of Hank and Dean's violent and untimely deaths. While Doc searches for his soul in the far corners of the globe, Dr. Orpheus wallows in guilt, and a mullet-less Brock repairs his beloved Charger, The Monarch plots a daring prison break with the help of his fellow supervillainous inmates.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20095},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Hate Floats","airDate":"2006-07-02","airDateUtc":"2006-07-02T16:00:00Z","overview":"Aided by Henchman 21, 24, and a ragtag band of roughneck new recruits, the Monarch attempts to rebuild his villainous empire and rekindle his relationship with Dr. Girlfriend. A showdown at the local shopping mall forces his hand, and he struggles to choose between revenge and reconciliation amidst a sea of violence. Meanwhile a wounded Brock falls into the clutches of The Phantom Limb, Hank drives Brock's car, and Dr. Venture gets an eye full.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20096},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Assassinanny 911","airDate":"2006-07-09","airDateUtc":"2006-07-09T16:00:00Z","overview":"When Brock is reactivated by the Office of Secret Intelligence to track down a rogue agent, he subcontracts his ex-girlfriend, the malevolently mercenary Molotov Cocktease, to protect the Venture Compound from enemies within and without. Love is in the air! Or is it...murder?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20097},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Escape to the House of Mummies (Part II)","airDate":"2006-07-16","airDateUtc":"2006-07-16T16:00:00Z","overview":"Team Venture find themselves trapped in the clutches of a bloodthirsty Egyptian cult and their time machine. Doc narrowly escapes and teams up with Master Billy Quizboy and Pete White, but promptly forgets to mount a rescue. So it's up to Brock and a pantheon of history's greatest men to find another way out.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20098},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"20 Years to Midnight","airDate":"2006-08-06","airDateUtc":"2006-08-06T16:00:00Z","overview":"In the middle of spring cleaning, Brock's discovery of a lost videotape from Jonas Venture Sr. sets Team Venture off on a global scavenger hunt for the hidden pieces of a fantastic and potentially deadly machine. But to save humanity from a terrible fate, they'll have to overcome death, drug addiction, Jonny Quest and Professor Impossible - all under the watchful eye of the mysterious Grand Galactic Inquisitor.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20099},{"seriesId":263,"episodeFileId":16428,"seasonNumber":2,"episodeNumber":6,"title":"Victor. Echo. November.","airDate":"2006-08-13","airDateUtc":"2006-08-13T16:00:00Z","overview":"The Phantom Limb and Dr. Girlfriend agree to a civil double date with The Monarch and some girl he met on the internet in order to discuss The Monarch's official re-entry into the Guild of Calamitous Intent. Doc and Brock become the unwitting pawns in a low-grade pissing contest when Phantom Limb's sics the Guild's commandos on the Venture compound to prove his dominance. Can Brock hold off an army? Can Doc escape death and finish watching the worst porno ever?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":20100},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Love-Bheits","airDate":"2006-08-20","airDateUtc":"2006-08-20T16:00:00Z","overview":"Baron \u00dcnderbheit captures Team Venture when the X-1 crash lands in \u00dcnderland while en route from a superscience costume party. Rather than execute them immediately, he inflicts an unspeakable torture upon them: they're forced to attend his wedding. Only the shadowy, disorganized \u00dcnderground resistance group can help them escape.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":20101},{"seriesId":263,"episodeFileId":16462,"seasonNumber":2,"episodeNumber":8,"title":"Fallen Arches","airDate":"2006-09-03","airDateUtc":"2006-09-03T16:00:00Z","overview":"When the Guild of Calamitous Intent finally approves Dr. Orpheus for his very own arch nemesis he calls upon old friends The Alchemist and Jefferson Twilight to resurrect their former super-team, The Order of the Triad. While they audition supervillain candidates at the Venture Compound, a jealous Doc isn't about to let Orpheus steal the show. Let loose the Walking Eye!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":20102},{"seriesId":263,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Guess Who's Coming to State Dinner?","airDate":"2006-09-10","airDateUtc":"2006-09-10T16:00:00Z","overview":"When the Gargantua-1 Space Station breaks orbit and crashes into a wanted terrorist, Colonel Bud Manstrong becomes a national hero. But did it really happen or is Bud's mother, the indomitable Mrs. Manstrong, behind an insidious plot to assassinate the President? The mysterious blinking band aid on Bud's head might be the key to a mystery only the ghost of Abraham Lincoln and Team Venture can solve.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":20103},{"seriesId":263,"episodeFileId":16445,"seasonNumber":2,"episodeNumber":10,"title":"I Know Why the Caged Bird Kills","airDate":"2006-09-24","airDateUtc":"2006-09-24T16:00:00Z","overview":"The Monarch continues to rebuild his villainous empire with the aid of his shadowy new Number 2, Dr. Henry Killinger, but Henchman 21 is suspicious of the deadly foreigner's unctuous charms. Meanwhile, as Dr. Orpheus attempts to exorcise a Japanese demon from Dr. Venture, a mysterious woman from Doc's past resurfaces. And she'd kill to find out where Hank and Dean are.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":20104},{"seriesId":263,"episodeFileId":16461,"seasonNumber":2,"episodeNumber":11,"title":"\u00a1Viva los Muertos!","airDate":"2006-10-01","airDateUtc":"2006-10-01T16:00:00Z","overview":"When Dr. Venture finally succeeds in attaining the holy grail of superscience - the revivification of a human corpse for fun and profit - a washed up gang of wandering former teen sleuths is convinced that the Venture Compound is haunted. Their investigation uncovers something far creepier. Meanwhile, Orpheus shepherds Brock through a crisis of conscience with the help of a New Age shaman and a bizarre tea party.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":20105},{"seriesId":263,"episodeFileId":16463,"seasonNumber":2,"episodeNumber":12,"title":"Showdown at Cremation Creek (1)","airDate":"2006-10-08","airDateUtc":"2006-10-08T16:00:00Z","overview":"Dr. Girlfriend finally accepts the Monarch's wedding proposal... if he calls off his grudge with Dr. Venture. He agrees, but things take a turn for the worse when his henchmen mistakenly capture Team Venture, while the Phantom Limb vows not to take his break-up lightly.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":20106},{"seriesId":263,"episodeFileId":16446,"seasonNumber":2,"episodeNumber":13,"title":"Showdown at Cremation Creek (2)","airDate":"2006-10-15","airDateUtc":"2006-10-15T16:00:00Z","overview":"As Phantom Limb makes his stunning power play, only Brock can rally The Monarch's forces to mount a defense. The fate of almost everyone in the Venture universe hangs in the balance as The Sovereign reveals his true identity and guys and stuff explode all over the place.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":20107},{"seriesId":263,"episodeFileId":16447,"seasonNumber":3,"episodeNumber":1,"title":"Shadowman 9: In the Cradle of Destiny","airDate":"2008-06-01","airDateUtc":"2008-06-01T16:00:00Z","overview":"The truths and half-truths about Dr. Venture's past arch nemesis, Dr. Girlfriend and The Monarch, are revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":20108},{"seriesId":263,"episodeFileId":16448,"seasonNumber":3,"episodeNumber":2,"title":"The Doctor is Sin","airDate":"2008-06-08","airDateUtc":"2008-06-08T16:00:00Z","overview":"Dr. Venture learns that a life without an arch enemy is not fulfilling.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":20109},{"seriesId":263,"episodeFileId":16449,"seasonNumber":3,"episodeNumber":3,"title":"The Invisible Hand of Fate","airDate":"2008-06-15","airDateUtc":"2008-06-15T16:00:00Z","overview":"Billy Quizboy recovers the memories of his former life as a failed TV Quizboy, the loss of his hand and eye in a dogfight, his recruitment into the OSI, and his first mission as a spy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":20110},{"seriesId":263,"episodeFileId":16450,"seasonNumber":3,"episodeNumber":4,"title":"Home is Where the Hate Is","airDate":"2008-06-22","airDateUtc":"2008-06-22T16:00:00Z","overview":"With the Monarch busy settling into his new home with his wife, a new villain arises to arch Dr. Venture.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":20111},{"seriesId":263,"episodeFileId":16451,"seasonNumber":3,"episodeNumber":5,"title":"The Buddy System","airDate":"2008-06-29","airDateUtc":"2008-06-29T16:00:00Z","overview":"Dr. Venture decides to raise money by running a Day Camp for Boy Adventurers. Things don't go quite as planned when a giant ape gets loose, Action Johnny loses it, Sgt. Hatred arrives for an unscheduled bush burning, Hank gets a new friend who pushes Brock's buttons, and the Monarch sends the Moppets in to spy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":20112},{"seriesId":263,"episodeFileId":16452,"seasonNumber":3,"episodeNumber":6,"title":"Dr. Quymn, Medicine Woman","airDate":"2008-07-06","airDateUtc":"2008-07-06T16:00:00Z","overview":"Team Venture meets Team Quymn, led by Dr. Tara Quymn, Dr. Venture's childhood sweetheart. Her two twin daughters and manly bodyguard seem oddly familiar, but the two teams must join forces to battle a dreaded were-o-dile: half man, half crocodile.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":20113},{"seriesId":263,"episodeFileId":16453,"seasonNumber":3,"episodeNumber":7,"title":"What Goes Down, Must Come Up","airDate":"2008-07-13","airDateUtc":"2008-07-13T16:00:00Z","overview":"Brock and Dr. Venture stumble into a hidden state-of-the-art fallout shelter beneath the Venture compound, while Hank and Dean call in Dr. Orpheus to summon the Order of the Triad and help them out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":20114},{"seriesId":263,"episodeFileId":16454,"seasonNumber":3,"episodeNumber":8,"title":"Tears of a Sea Cow","airDate":"2008-07-20","airDateUtc":"2008-07-20T16:00:00Z","overview":"The Monarch gets word that Dr. Venture and Brock are at a science conference, and decides to launch an attack on the Venture compound.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":20115},{"seriesId":263,"episodeFileId":16455,"seasonNumber":3,"episodeNumber":9,"title":"Now Museum, Now You Don't","airDate":"2008-07-27","airDateUtc":"2008-07-27T16:00:00Z","overview":"Dr. Jonas Venture Jr. builds a museum in honor of his \"father,\" and invites all of Jonas Sr.'s old friends and enemies to the grand opening.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":20116},{"seriesId":263,"episodeFileId":16456,"seasonNumber":3,"episodeNumber":10,"title":"The Lepidopterists","airDate":"2008-08-03","airDateUtc":"2008-08-03T16:00:00Z","overview":"The Monarch leads an attack on his new arch-nemesis, Dr. Jonas Venture Jr., at his base on Spider Skull Island.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":20117},{"seriesId":263,"episodeFileId":16457,"seasonNumber":3,"episodeNumber":11,"title":"ORB","airDate":"2008-08-10","airDateUtc":"2008-08-10T16:00:00Z","overview":"Billy Quizboy has spent thirty years trying to decipher a series of cryptic clues hidden in Rusty Venture Cartoon Show episodes. Finally the solution to the mystery is at hand, but the answer forces Brock to discover what his true orders are.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":20118},{"seriesId":263,"episodeFileId":16458,"seasonNumber":3,"episodeNumber":12,"title":"The Family That Slays Together, Stays Together (1)","airDate":"2008-08-17","airDateUtc":"2008-08-17T16:00:00Z","overview":"The OSI has put a termination contract on Brock's head, and three top assassins plan to collect. Meanwhile, the Monarch and Sgt. Hatred battle to see who will be Dr. Venture's arch.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":20119},{"seriesId":263,"episodeFileId":16459,"seasonNumber":3,"episodeNumber":13,"title":"The Family That Slays Together, Stays Together (2)","airDate":"2008-08-24","airDateUtc":"2008-08-24T16:00:00Z","overview":"Continuing after the prior episode, General Traceter (alluded to in Season 1 during Brock's License exam in Mid-Life Chrysalis) heads a OSI assault team to go after Samson and the Venture Family after the original three assassins fail to do their job. Using ingenuity to save the Venture Family once more, Brock Samson hatched a plan to force OSI and Monarch's Henchmen to fight each other instead of pursuing the family. In the aftermath of the fight, OSI gains victory after one of Monarch's Flight Suits malfunctions and ends up shooting his own minions in friendly fire. After revealing himself being on neither side of the fight, Brock makes a shocking announcement to Thaddeus and General Traceter that would affect the rest of their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":20120},{"seriesId":263,"episodeFileId":16429,"seasonNumber":4,"episodeNumber":1,"title":"Blood of the Father, Heart of Steel","airDate":"2009-10-18","airDateUtc":"2009-10-18T16:00:00Z","overview":"Henchman 21 copes with life without 24. Brock and the Venture family are forced to part ways. Discover the final fate of H.E.L.P.eR. And Dean must kill Hitler.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":20121},{"seriesId":263,"episodeFileId":16430,"seasonNumber":4,"episodeNumber":2,"title":"Handsome Ransom","airDate":"2009-10-25","airDateUtc":"2009-10-25T16:00:00Z","overview":"The Monarch decides to settle for cash as the best revenge on Dr. Venture and takes Hank and Dean hostage. However, Hank is rescued by Captain Sunshine, who wants a new boy sidekick to replace his fallen comrade Wonder Boy.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":20122},{"seriesId":263,"episodeFileId":16431,"seasonNumber":4,"episodeNumber":3,"title":"Perchance to Dean","airDate":"2009-11-01","airDateUtc":"2009-11-01T17:00:00Z","overview":"Rusty begins to indoctrinate Dean into his career as a super scientist, not knowing that a deformed and believed aborted Dean clone stalks the compound. The deformed clone's attempt to kill Dean leads to a mix up with Hank thinking that he's killed his brother, while local police prepare to raid the Compound after a UPS delivery man suspects illegal activities going on.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":20123},{"seriesId":263,"episodeFileId":16432,"seasonNumber":4,"episodeNumber":4,"title":"Return to Malice","airDate":"2009-11-08","airDateUtc":"2009-11-08T17:00:00Z","overview":"Henchman 21 kidnaps the Venture brothers without The Monarch's knowledge or consent, resulting in Sgt. Hatred having to storm his former hometown of Malice to rescue his charges. We also learn of the recent activities of 21 since the death of 24.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":20124},{"seriesId":263,"episodeFileId":16433,"seasonNumber":4,"episodeNumber":5,"title":"The Revenge Society","airDate":"2009-11-15","airDateUtc":"2009-11-15T17:00:00Z","overview":"The Guild of Calamitous Intent comes under attack by an insane Phantom Limb, who now goes by the name \"Revenge\". Meanwhile, Hank and Sergeant Hatred must protect the compound from the Guild's agents. We also learn something very interesting about Dean's birthright.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":20125},{"seriesId":263,"episodeFileId":16434,"seasonNumber":4,"episodeNumber":6,"title":"Self-Medication","airDate":"2009-11-22","airDateUtc":"2009-11-22T17:00:00Z","overview":"While Dr. Venture goes into therapy with other boy adventurers, Sgt. Hatred takes Dean and Hank to the movies, only to have a relapse.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":20126},{"seriesId":263,"episodeFileId":16435,"seasonNumber":4,"episodeNumber":7,"title":"The Better Man","airDate":"2009-12-06","airDateUtc":"2009-12-06T17:00:00Z","overview":"After seeing the OutRider, the man who stole his wife, pass through the Second World, Dr. Orpheus is determined to do the same. Meanwhile, Hank takes Dean to the mall to teach him how to talk to girls, and Triana has a life-altering discussion with The Master.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":20127},{"seriesId":263,"episodeFileId":16436,"seasonNumber":4,"episodeNumber":8,"title":"Pinstripes & Poltergeists","airDate":"2009-12-13","airDateUtc":"2009-12-13T17:00:00Z","overview":"While the Monarch schemes to dispose of Dr. Venture once and for all, Henchman 21 seeks revenge on Brock for the death of 24.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":20128},{"seriesId":263,"episodeFileId":16437,"seasonNumber":4,"episodeNumber":9,"title":"The Diving Bell vs. The Butterglider","airDate":"2010-09-12","airDateUtc":"2010-09-12T16:00:00Z","overview":"Brock, Hank, and Dean must go on a fantastic voyage into Rusty's brain to find out why he's in a coma. Meanwhile, Henchman 21 demands new henchsuits, but the Monarch is too busy obsessing with his latest purchase, a butter-glider.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":20129},{"seriesId":263,"episodeFileId":16438,"seasonNumber":4,"episodeNumber":10,"title":"Pomp & Circuitry","airDate":"2010-09-19","airDateUtc":"2010-09-19T16:00:00Z","overview":"Hank and Dean graduate from their education beds, and look into college. Hank rebels and tries to join Sphinx. Meanwhile, Phantom Limb breaks out of the Guild's dungeons and seeks revenge once more.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":20130},{"seriesId":263,"episodeFileId":16439,"seasonNumber":4,"episodeNumber":11,"title":"Any Which Way But Zeus","airDate":"2010-09-26","airDateUtc":"2010-09-26T16:00:00Z","overview":"Someone is capturing heroes and villains and taking them to a super death camp. The forces of good and evil must join forces to stop their mysterious captor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":20131},{"seriesId":263,"episodeFileId":16440,"seasonNumber":4,"episodeNumber":12,"title":"Everybody Comes to Hank's","airDate":"2010-10-03","airDateUtc":"2010-10-03T16:00:00Z","overview":"Hank opens a detective agency and enters a dark world of sinister crime and shady women.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":20132},{"seriesId":263,"episodeFileId":16441,"seasonNumber":4,"episodeNumber":13,"title":"Bright Lights, Dean City","airDate":"2010-10-10","airDateUtc":"2010-10-10T16:00:00Z","overview":"Dean ends up interning with Professor Impossible, and discovers that his new employer is a member of the Revenge Society.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":20133},{"seriesId":263,"episodeFileId":16442,"seasonNumber":4,"episodeNumber":14,"title":"Assisted Suicide","airDate":"2010-10-17","airDateUtc":"2010-10-17T16:00:00Z","overview":"Dr. Venture is possessed by an entity that attempts to make him commit suicide, and Dr. Orpheus tries to save him.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":20134},{"seriesId":263,"episodeFileId":16443,"seasonNumber":4,"episodeNumber":15,"title":"The Silent Partners","airDate":"2010-10-24","airDateUtc":"2010-10-24T16:00:00Z","overview":"Conjectural Technologies' newfound success hits a snag when Billy is kidnapped by the same mysterious benefactors who invested in their company, and SPHINX launches an investigation aimed at determining who is behind these dubious financiers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":20135},{"seriesId":263,"episodeFileId":16444,"seasonNumber":4,"episodeNumber":16,"title":"Operation P.R.O.M.","airDate":"2010-11-21","airDateUtc":"2010-11-21T17:00:00Z","overview":"Team Venture, Conjectural Technologies and the Order of the Triad come together as Dean and Hank prepare to face an obstacle that is more intimidating then anything they have confronted before: a prom to celebrate their \"graduating\" high school, while Dr. Venture throws out all the stops to bring the twins the best dance $500 can buy. But when things go awry, the greatest battle in Venture history looms as two old enemies - the OSI and SPHINX - clash once again.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":20136},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"From the Ladle to the Grave: The Shallow Gravy Story","airDate":"2011-08-28","airDateUtc":"2011-08-28T16:00:00Z","overview":"See the Venture Family as you\u2019ve never seen them before: in a 15-minute documentary-style animated special. Follow the meteoric rise, the equally meteoric fall, and the decidedly un-meteor-like second coming of the most important band Hank Venture, Dermott Fitctel and H.E.L.P.eR. robot have ever been in: Shallow Gravy. If you\u2019re hungry for rock, then open wide, because here comes a ladle of heavy metal fire and metaphoric meat drippings.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20075},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"A Very Venture Halloween","airDate":"2012-10-28","airDateUtc":"2012-10-28T16:00:00Z","overview":"Only Team Venture knows how to put the very real, life-threatening element of danger back into Halloween.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20076},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Series Recap","airDate":"2013-05-08","airDateUtc":"2013-05-08T16:00:00Z","overview":"Gary recaps Seasons one to four in eight minutes","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20080},{"seriesId":263,"episodeFileId":16409,"seasonNumber":5,"episodeNumber":1,"title":"What Color is Your Cleansuit?","airDate":"2013-06-02","airDateUtc":"2013-06-02T16:00:00Z","overview":"A three-month period in the lives of our heroes and villains is chronicled. Dr. Venture recruits college interns to help him complete a project for J.J. in time, but things go awry. Dean makes a life-changing decision after Triana rejects him, and Billy Quizboy acquires a new archenemy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20137},{"seriesId":263,"episodeFileId":16410,"seasonNumber":5,"episodeNumber":2,"title":"Venture Libre","airDate":"2013-06-09","airDateUtc":"2013-06-09T16:00:00Z","overview":"The Ventures travel into the jungles of Central America to find an invention that has developed a mind of its own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20138},{"seriesId":263,"episodeFileId":16412,"seasonNumber":5,"episodeNumber":3,"title":"SPHINX Rising","airDate":"2013-06-16","airDateUtc":"2013-06-16T16:00:00Z","overview":"While the Monarch and his wife attempt to destroy the Venture compound once and for all, the Monarch learns a startling secret about his past. Meanwhile, Twenty-One tries to create a new SPHINX... and inadvertently recruits the members of the old SPHINX.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20139},{"seriesId":263,"episodeFileId":16413,"seasonNumber":5,"episodeNumber":4,"title":"Spanakopita","airDate":"2013-06-23","airDateUtc":"2013-06-23T16:00:00Z","overview":"A figure from Dr. Venture's past haunts him during his annual vacation to Spanikos.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20140},{"seriesId":263,"episodeFileId":16414,"seasonNumber":5,"episodeNumber":5,"title":"O.S.I. Love You","airDate":"2013-06-30","airDateUtc":"2013-06-30T16:00:00Z","overview":"The OSI manage to capture Monstroso and Molotov. But things go horribly wrong and afterward Internal Affairs tries to work out what really happened.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20141},{"seriesId":263,"episodeFileId":16415,"seasonNumber":5,"episodeNumber":6,"title":"Momma's Boys","airDate":"2013-07-07","airDateUtc":"2013-07-07T16:00:00Z","overview":"Dean pays a visit to the mystery woman in his life, while Hank and Dermott play a prank on Dr. Venture which leads him on a quest to find his mystery friend and rescue him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20142},{"seriesId":263,"episodeFileId":16416,"seasonNumber":5,"episodeNumber":7,"title":"Bot Seeks Bot","airDate":"2013-07-14","airDateUtc":"2013-07-14T16:00:00Z","overview":"Brock goes undercover to rescue a volunteer undercover operative helping the OSI track down the Council of 13, and ends up in a night club... of doom!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20143},{"seriesId":263,"episodeFileId":16417,"seasonNumber":5,"episodeNumber":8,"title":"The Devil's Grip","airDate":"2013-07-21","airDateUtc":"2013-07-21T16:00:00Z","overview":"When Rusty is apparently killed by the Monarch, Hatred sends the boys off to live with their godparents, and then turns to Twenty-One for help to infiltrate the Flying Cocoon and recover Rusty's body.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20144},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"All This and Gargantua-2","airDate":"2015-01-19","airDateUtc":"2015-01-19T17:00:00Z","overview":"Join the Ventures--and pretty much everyone they've ever crossed paths with--as they rocket to the Gargantua-2 space station for an epic, hour-long adventure that will change the Ventureverse as we know it forever.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20077},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"All This and Gargantua-2 Special Epilogue","airDate":"2015-01-19","airDateUtc":"2015-01-19T17:30:00Z","overview":"The Venture family and friends gather for Jonas, Jr.'s memorial service. A surprise is in store for Rusty during a reading of Jonas' will.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20078},{"seriesId":263,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Hostile Makeover Epilogue","airDate":"2016-02-01","airDateUtc":"2016-02-01T17:00:00Z","overview":"The Venture family settles down for breakfast in their new home in Manhattan. Hank shows off his newest purchase.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20079},{"seriesId":263,"episodeFileId":16401,"seasonNumber":6,"episodeNumber":1,"title":"Hostile Makeover","airDate":"2016-02-01","airDateUtc":"2016-02-01T17:00:00Z","overview":"The Ventures are back! And they\u2019re movin\u2019 on up to a deluxe apartment in the sky. But will mo\u2019 money bring mo\u2019 problems? And can The Monarch handle the commute?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20145},{"seriesId":263,"episodeFileId":16402,"seasonNumber":6,"episodeNumber":2,"title":"Maybe No Go","airDate":"2016-02-08","airDateUtc":"2016-02-08T17:00:00Z","overview":"White and Billy grapple with their archenemy in their old neighborhood; Doc realizes he cannot face his responsibilities alone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20146},{"seriesId":263,"episodeFileId":16403,"seasonNumber":6,"episodeNumber":3,"title":"Faking Miracles","airDate":"2016-02-15","airDateUtc":"2016-02-15T17:00:00Z","overview":"Doc uncovers a mysterious invention that could make or break Dean's college aspirations and The Monarch makes a bad first impression on Dr. Mrs. The Monarch's co-workers.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20147},{"seriesId":263,"episodeFileId":16404,"seasonNumber":6,"episodeNumber":4,"title":"Rapacity In Blue","airDate":"2016-02-22","airDateUtc":"2016-02-22T17:00:00Z","overview":"A supervillain attacks the Ventures.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20148},{"seriesId":263,"episodeFileId":16405,"seasonNumber":6,"episodeNumber":5,"title":"Tanks for Nuthin'","airDate":"2016-02-29","airDateUtc":"2016-02-29T17:00:00Z","overview":"A super-widow surfaces and makes Dr. Mrs. The Monarch's job difficult while a criminal genius tries to arch Dr. Venture.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20149},{"seriesId":263,"episodeFileId":16406,"seasonNumber":6,"episodeNumber":6,"title":"It Happening One Night","airDate":"2016-03-07","airDateUtc":"2016-03-07T17:00:00Z","overview":"Avant-garde supervillains try to arch Dr. Venture while Hank searches for love in a den of ninjas.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20150},{"seriesId":263,"episodeFileId":16407,"seasonNumber":6,"episodeNumber":7,"title":"A Party for Tarzan","airDate":"2016-03-14","airDateUtc":"2016-03-14T16:00:00Z","overview":"The Guild targets Dr. Venture, but do they have the right man?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20151},{"seriesId":263,"episodeFileId":16408,"seasonNumber":6,"episodeNumber":8,"title":"Red Means Stop","airDate":"2016-03-21","airDateUtc":"2016-03-21T16:00:00Z","overview":"The Guild decide to team up with O.S.I. and eliminate a common threat using Dr. Venture as bait.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20152},{"seriesId":263,"episodeFileId":16418,"seasonNumber":7,"episodeNumber":1,"title":"The Venture Bros. and the Curse of the Haunted Problem","airDate":"2018-08-06","airDateUtc":"2018-08-06T16:00:00Z","overview":"The Venture headquarters is either possessed, just regular haunted, or suffering from a computer glitch; Dr. Orpheus and the Order of the Triad are called upon to unlock the mystery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":20153},{"seriesId":263,"episodeFileId":16419,"seasonNumber":7,"episodeNumber":2,"title":"The Rorqual Affair","airDate":"2018-08-13","airDateUtc":"2018-08-13T16:00:00Z","overview":"Deadly waters surround the Monarch when he becomes Wide Wale's prisoner.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":20154},{"seriesId":263,"episodeFileId":16420,"seasonNumber":7,"episodeNumber":3,"title":"Arrears in Science","airDate":"2018-08-20","airDateUtc":"2018-08-20T16:00:00Z","overview":"The Morphic Trilogy reaches its conclusion in a decades-spanning tale of friendship, betrayal and mass murder that overwrites Venture history.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":20155},{"seriesId":263,"episodeFileId":16421,"seasonNumber":7,"episodeNumber":4,"title":"The High Cost of Loathing","airDate":"2018-08-27","airDateUtc":"2018-08-27T16:00:00Z","overview":"The Monarch faces financial challenges as he attempts to rebuild his fiendish organization; Dean tries to establish a normal life outside of his father's shadow at sleep-away college.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":20156},{"seriesId":263,"episodeFileId":16422,"seasonNumber":7,"episodeNumber":5,"title":"The Inamorata Consequence","airDate":"2018-09-03","airDateUtc":"2018-09-03T16:00:00Z","overview":"The Venture family returns to their old compound where intrigue, danger, jackets, and diplomacy await.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":20157},{"seriesId":263,"episodeFileId":16423,"seasonNumber":7,"episodeNumber":6,"title":"The Bellicose Proxy","airDate":"2018-09-10","airDateUtc":"2018-09-10T16:00:00Z","overview":"The Monarch and 21 play a deadly game of tutoring an inexperienced villain; a hot plate of danger is served up with a side of hilarity.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":20158},{"seriesId":263,"episodeFileId":16424,"seasonNumber":7,"episodeNumber":7,"title":"The Unicorn in Captivity","airDate":"2018-09-17","airDateUtc":"2018-09-17T16:00:00Z","overview":"Dr. Venture's latest invention is a real game-changer. And the new game is deadly!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":20159},{"seriesId":263,"episodeFileId":16425,"seasonNumber":7,"episodeNumber":8,"title":"The Terminus Mandate","airDate":"2018-09-24","airDateUtc":"2018-09-24T16:00:00Z","overview":"The members of Guild Council must face their archrivals for one last time, while Doc happily falls into a black widow's deadly web.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":20160},{"seriesId":263,"episodeFileId":16426,"seasonNumber":7,"episodeNumber":9,"title":"The Forecast Manufacturer","airDate":"2018-10-01","airDateUtc":"2018-10-01T16:00:00Z","overview":"The city is hit with a mysterious blizzard that launches Team Venture into action. The Monarch and 21 are sent on a deadly mission to a secret island fortress.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":20161},{"seriesId":263,"episodeFileId":16427,"seasonNumber":7,"episodeNumber":10,"title":"The Saphrax Protocol","airDate":"2018-10-08","airDateUtc":"2018-10-08T16:00:00Z","overview":"Deep inside Guild Headquarters, the Monarch and 21 face their ultimate ordeal; the Venture brothers confront one of their own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20162}],"episodeFile":[{"seriesId":263,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Mid-Life Chrysalis-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 01\/S01E08.Mid-Life Chrysalis-WEBDL-1080p.mkv","size":724151491,"dateAdded":"2020-11-26T16:05:32.738225Z","sceneName":"The Venture Bros S01E08 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":4159536,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:49","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16400},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E01.Hostile Makeover-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E01.Hostile Makeover-Bluray-1080p.mkv","size":1165004525,"dateAdded":"2020-11-26T16:49:03.979236Z","sceneName":"The.Venture.Bros.S06E01.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5943000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16401},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E02.Maybe No Go-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E02.Maybe No Go-Bluray-1080p.mkv","size":1164218044,"dateAdded":"2020-11-26T16:50:50.005161Z","sceneName":"The.Venture.Bros.S06E02.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6224000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16402},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E03.Faking Miracles-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E03.Faking Miracles-Bluray-1080p.mkv","size":1164655010,"dateAdded":"2020-11-26T16:52:35.266742Z","sceneName":"The.Venture.Bros.S06E03.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16403},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E04.Rapacity In Blue-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E04.Rapacity In Blue-Bluray-1080p.mkv","size":1163932747,"dateAdded":"2020-11-26T16:54:21.395486Z","sceneName":"The.Venture.Bros.S06E04.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6238000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16404},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E05.Tanks for Nuthin'-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E05.Tanks for Nuthin'-Bluray-1080p.mkv","size":1164926387,"dateAdded":"2020-11-26T16:56:08.307103Z","sceneName":"The.Venture.Bros.S06E05.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16405},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E06.It Happening One Night-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E06.It Happening One Night-Bluray-1080p.mkv","size":1164507373,"dateAdded":"2020-11-26T16:57:54.842201Z","sceneName":"The.Venture.Bros.S06E06.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6239000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16406},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E07.A Party for Tarzan-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E07.A Party for Tarzan-Bluray-1080p.mkv","size":1164606948,"dateAdded":"2020-11-26T16:59:39.684782Z","sceneName":"The.Venture.Bros.S06E07.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16407},{"seriesId":263,"seasonNumber":6,"relativePath":"Season 06\/S06E08.Red Means Stop-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 06\/S06E08.Red Means Stop-Bluray-1080p.mkv","size":1164180326,"dateAdded":"2020-11-26T17:01:26.790859Z","sceneName":"The.Venture.Bros.S06E08.1080p.BluRay.x264-YELLOWBiRD","releaseGroup":"YELLOWBiRD","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6255000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16408},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E01.What Color is Your Cleansuit-WEBDL-1080p Proper.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E01.What Color is Your Cleansuit-WEBDL-1080p Proper.mkv","size":1815548611,"dateAdded":"2020-11-26T17:07:34.400428Z","sceneName":"The.Venture.Bros.S05E01.What.Color.Is.Your.Cleansuit.PROPER.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4874518,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"45:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16409},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Venture Libre-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E02.Venture Libre-WEBDL-1080p.mkv","size":904781113,"dateAdded":"2020-11-26T17:09:29.54688Z","sceneName":"The.Venture.Bros.S05E02.Venture.Libre.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4854639,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16410},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E03.SPHINX Rising-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E03.SPHINX Rising-WEBDL-1080p.mkv","size":897101561,"dateAdded":"2020-11-26T17:11:18.677644Z","sceneName":"The.Venture.Bros.S05E03.Sphinx.Rising.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4796587,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16412},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E04.Spanakopita-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E04.Spanakopita-WEBDL-1080p.mkv","size":867770246,"dateAdded":"2020-11-26T17:13:05.380476Z","sceneName":"The.Venture.Bros.S05E04.Spanakopita!.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4643318,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16413},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E05.O.S.I. Love You-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E05.O.S.I. Love You-WEBDL-1080p.mkv","size":877851957,"dateAdded":"2020-11-26T17:14:50.914605Z","sceneName":"The.Venture.Bros.S05E05.O.S.I.Love.You.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4713054,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16414},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Momma's Boys-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E06.Momma's Boys-WEBDL-1080p.mkv","size":907444940,"dateAdded":"2020-11-26T17:16:34.812023Z","sceneName":"The.Venture.Bros.S05E06.Mommas.Boys.1080p.WEB-DL.DD5.1.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16415},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Bot Seeks Bot-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E07.Bot Seeks Bot-WEBDL-1080p.mkv","size":879052748,"dateAdded":"2020-11-26T17:18:20.685057Z","sceneName":"The.Venture.Bros.S05E07.Bot.Seeks.Bot.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4692838,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16416},{"seriesId":263,"seasonNumber":5,"relativePath":"Season 05\/S05E08.The Devil's Grip-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 05\/S05E08.The Devil's Grip-WEBDL-1080p.mkv","size":810913289,"dateAdded":"2020-11-26T17:20:05.234556Z","sceneName":"The.Venture.Bros.S05E08.The.Devils.Grip.1080p.WEB-DL.DD5.1.H264-iT00NZ","releaseGroup":"iT00NZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4300081,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16417},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E01.The Venture Bros. and the Curse of the Haunted Problem-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E01.The Venture Bros. and the Curse of the Haunted Problem-Bluray-1080p.mkv","size":2348256695,"dateAdded":"2020-11-26T17:30:34.737388Z","sceneName":"the.venture.bros.s07e01.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3288860,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10560000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16418},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E02.The Rorqual Affair-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E02.The Rorqual Affair-Bluray-1080p.mkv","size":2348275899,"dateAdded":"2020-11-26T17:32:26.306946Z","sceneName":"the.venture.bros.s07e02.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3285489,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10570000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16419},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E03.Arrears in Science-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E03.Arrears in Science-Bluray-1080p.mkv","size":2346352334,"dateAdded":"2020-11-26T17:34:17.99597Z","sceneName":"the.venture.bros.s07e03.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3347457,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9920000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16420},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E04.The High Cost of Loathing-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E04.The High Cost of Loathing-Bluray-1080p.mkv","size":2347034598,"dateAdded":"2020-11-26T17:36:09.77737Z","sceneName":"the.venture.bros.s07e04.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3183850,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10672000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16421},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E05.The Inamorata Consequence-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E05.The Inamorata Consequence-Bluray-1080p.mkv","size":2348009278,"dateAdded":"2020-11-26T17:38:01.352188Z","sceneName":"the.venture.bros.s07e05.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3318020,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10541000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16422},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E06.The Bellicose Proxy-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E06.The Bellicose Proxy-Bluray-1080p.mkv","size":2342222233,"dateAdded":"2020-11-26T17:39:52.087394Z","sceneName":"the.venture.bros.s07e06.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3225982,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11365000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16423},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E07.The Unicorn in Captivity-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E07.The Unicorn in Captivity-Bluray-1080p.mkv","size":2347543290,"dateAdded":"2020-11-26T17:41:43.150748Z","sceneName":"the.venture.bros.s07e07.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3311991,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10547000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16424},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E08.The Terminus Mandate-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E08.The Terminus Mandate-Bluray-1080p.mkv","size":2340862074,"dateAdded":"2020-11-26T17:43:39.278647Z","sceneName":"the.venture.bros.s07e08.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3252778,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10605000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16425},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E09.The Forecast Manufacturer-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E09.The Forecast Manufacturer-Bluray-1080p.mkv","size":2346394413,"dateAdded":"2020-11-26T17:45:31.014032Z","sceneName":"the.venture.bros.s07e09.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3312216,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10553000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16426},{"seriesId":263,"seasonNumber":7,"relativePath":"Season 07\/S07E10.The Saphrax Protocol-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 07\/S07E10.The Saphrax Protocol-Bluray-1080p.mkv","size":2346456826,"dateAdded":"2020-11-26T17:47:22.15182Z","sceneName":"the.venture.bros.s07e10.1080p.bluray.x264-brmp","releaseGroup":"brmp","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":3200980,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10658000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16427},{"seriesId":263,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Victor. Echo. November-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 02\/S02E06.Victor. Echo. November-WEBDL-1080p.mkv","size":582540144,"dateAdded":"2020-11-26T17:49:18.465108Z","sceneName":"The Venture Bros S02E06 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3136132,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16428},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Blood of the Father, Heart of Steel-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E01.Blood of the Father, Heart of Steel-Bluray-1080p.mkv","size":190613598,"dateAdded":"2020-11-26T17:51:03.200157Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163824,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900531,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16429},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E02.Handsome Ransom-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E02.Handsome Ransom-Bluray-1080p.mkv","size":184282584,"dateAdded":"2020-11-26T17:52:44.665239Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162177,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901026,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16430},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Perchance to Dean-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E03.Perchance to Dean-Bluray-1080p.mkv","size":183549344,"dateAdded":"2020-11-26T17:54:31.195202Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165602,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901075,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16431},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Return to Malice-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E04.Return to Malice-Bluray-1080p.mkv","size":184641013,"dateAdded":"2020-11-26T17:56:12.723469Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163247,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901459,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:51","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16432},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E05.The Revenge Society-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E05.The Revenge Society-Bluray-1080p.mkv","size":184920981,"dateAdded":"2020-11-26T17:57:54.277306Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166080,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900063,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16433},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Self-Medication-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E06.Self-Medication-Bluray-1080p.mkv","size":184165041,"dateAdded":"2020-11-26T17:59:35.897785Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163334,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900946,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16434},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E07.The Better Man-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E07.The Better Man-Bluray-1080p.mkv","size":186146229,"dateAdded":"2020-11-26T18:01:17.487986Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165865,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901222,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16435},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Pinstripes & Poltergeists-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E08.Pinstripes & Poltergeists-Bluray-1080p.mkv","size":181131060,"dateAdded":"2020-11-26T18:02:59.065999Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":164700,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901385,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:24","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16436},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E09.The Diving Bell vs. The Butterglider-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E09.The Diving Bell vs. The Butterglider-Bluray-1080p.mkv","size":184660118,"dateAdded":"2020-11-26T18:04:40.412533Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165892,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901354,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16437},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Pomp & Circuitry-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E10.Pomp & Circuitry-Bluray-1080p.mkv","size":184374135,"dateAdded":"2020-11-26T18:06:22.037576Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161675,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900798,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16438},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E11.Any Which Way But Zeus-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E11.Any Which Way But Zeus-Bluray-1080p.mkv","size":184721040,"dateAdded":"2020-11-26T18:08:03.472027Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165593,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901586,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16439},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E12.Everybody Comes to Hank's-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E12.Everybody Comes to Hank's-Bluray-1080p.mkv","size":171549203,"dateAdded":"2020-11-26T18:09:44.89643Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163039,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900483,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16440},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E13.Bright Lights, Dean City-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E13.Bright Lights, Dean City-Bluray-1080p.mkv","size":183995172,"dateAdded":"2020-11-26T18:11:26.207511Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161188,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901063,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16441},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E14.Assisted Suicide-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E14.Assisted Suicide-Bluray-1080p.mkv","size":183969735,"dateAdded":"2020-11-26T18:13:07.566807Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165466,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900648,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16442},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E15.The Silent Partners-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E15.The Silent Partners-Bluray-1080p.mkv","size":184077511,"dateAdded":"2020-11-26T18:14:48.832116Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":165063,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":901380,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16443},{"seriesId":263,"seasonNumber":4,"relativePath":"Season 04\/S04E16.Operation P.R.O.M-Bluray-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 04\/S04E16.Operation P.R.O.M-Bluray-1080p.mkv","size":367915514,"dateAdded":"2020-11-26T18:16:30.234273Z","releaseGroup":"UTR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166803,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":900568,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":16444},{"seriesId":263,"seasonNumber":2,"relativePath":"Season 02\/S02E10.I Know Why the Caged Bird Kills-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 02\/S02E10.I Know Why the Caged Bird Kills-WEBDL-1080p.mkv","size":605258750,"dateAdded":"2020-11-26T18:18:18.112992Z","sceneName":"The Venture Bros S02E10 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3284627,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:43","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16445},{"seriesId":263,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Showdown at Cremation Creek (2)-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 02\/S02E13.Showdown at Cremation Creek (2)-WEBDL-1080p.mkv","size":630808500,"dateAdded":"2020-11-26T18:20:01.381038Z","sceneName":"The Venture Bros S02E13 FiNAL MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3417986,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:50","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16446},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Shadowman 9 - In the Cradle of Destiny-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E01.Shadowman 9 - In the Cradle of Destiny-Bluray-720p.mkv","size":737463144,"dateAdded":"2020-11-26T18:21:46.834246Z","sceneName":"The.Venture.Bros.S03E01.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3391000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16447},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E02.The Doctor is Sin-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E02.The Doctor is Sin-Bluray-720p.mkv","size":737511845,"dateAdded":"2020-11-26T18:23:29.703621Z","sceneName":"The.Venture.Bros.S03E02.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3564000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16448},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E03.The Invisible Hand of Fate-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E03.The Invisible Hand of Fate-Bluray-720p.mkv","size":737488022,"dateAdded":"2020-11-26T18:25:13.139135Z","sceneName":"The.Venture.Bros.S03E03.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3539000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16449},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Home is Where the Hate Is-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E04.Home is Where the Hate Is-Bluray-720p.mkv","size":737517159,"dateAdded":"2020-11-26T18:26:55.718671Z","sceneName":"The.Venture.Bros.S03E04.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3546000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16450},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Buddy System-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E05.The Buddy System-Bluray-720p.mkv","size":737525884,"dateAdded":"2020-11-26T18:28:39.538631Z","sceneName":"The.Venture.Bros.S03E05.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3540000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16451},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Dr. Quymn, Medicine Woman-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E06.Dr. Quymn, Medicine Woman-Bluray-720p.mkv","size":737423541,"dateAdded":"2020-11-26T18:30:22.551939Z","sceneName":"The.Venture.Bros.S03E06.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3547000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16452},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E07.What Goes Down, Must Come Up-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E07.What Goes Down, Must Come Up-Bluray-720p.mkv","size":737468962,"dateAdded":"2020-11-26T18:32:05.129838Z","sceneName":"The.Venture.Bros.S03E07.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3541000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16453},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Tears of a Sea Cow-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E08.Tears of a Sea Cow-Bluray-720p.mkv","size":737574648,"dateAdded":"2020-11-26T18:33:47.692415Z","sceneName":"The.Venture.Bros.S03E08.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3564000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16454},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Now Museum, Now You Don't-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E09.Now Museum, Now You Don't-Bluray-720p.mkv","size":737360876,"dateAdded":"2020-11-26T18:35:30.190782Z","sceneName":"The.Venture.Bros.S03E09.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3558000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:44","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16455},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E10.The Lepidopterists-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E10.The Lepidopterists-Bluray-720p.mkv","size":737424501,"dateAdded":"2020-11-26T18:37:12.928117Z","sceneName":"The.Venture.Bros.S03E10.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3745000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"21:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16456},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E11.ORB-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E11.ORB-Bluray-720p.mkv","size":737342764,"dateAdded":"2020-11-26T18:38:55.323308Z","sceneName":"The.Venture.Bros.S03E11.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3528000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"22:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16457},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Family That Slays Together, Stays Together (1)-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E12.The Family That Slays Together, Stays Together (1)-Bluray-720p.mkv","size":737483922,"dateAdded":"2020-11-26T18:40:37.759225Z","sceneName":"The.Venture.Bros.S03E12.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3499000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16458},{"seriesId":263,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Family That Slays Together, Stays Together (2)-Bluray-720p.mkv","path":"\/tv\/The Venture Bros\/Season 03\/S03E13.The Family That Slays Together, Stays Together (2)-Bluray-720p.mkv","size":737436003,"dateAdded":"2020-11-26T18:42:20.216094Z","sceneName":"The.Venture.Bros.S03E13.720p.BluRay.x264-DONGS","releaseGroup":"DONGS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3483000,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16459},{"seriesId":263,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Ghosts of the Sargasso-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 01\/S01E06.Ghosts of the Sargasso-WEBDL-1080p.mkv","size":687638432,"dateAdded":"2020-11-26T18:45:35.262169Z","sceneName":"The Venture Bros S01E06 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3966601,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"21:40","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16460},{"seriesId":263,"seasonNumber":2,"relativePath":"Season 02\/S02E11.\u00a1Viva los Muertos!-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 02\/S02E11.\u00a1Viva los Muertos!-WEBDL-1080p.mkv","size":657354836,"dateAdded":"2020-11-27T01:23:11.418013Z","sceneName":"The Venture Bros S02E11 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3580571,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:47","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16461},{"seriesId":263,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Fallen Arches-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 02\/S02E08.Fallen Arches-WEBDL-1080p.mkv","size":545252789,"dateAdded":"2020-11-27T01:30:41.600929Z","sceneName":"The Venture Bros S02E08 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2911589,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16462},{"seriesId":263,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Showdown at Cremation Creek (1)-WEBDL-1080p.mkv","path":"\/tv\/The Venture Bros\/Season 02\/S02E12.Showdown at Cremation Creek (1)-WEBDL-1080p.mkv","size":561057719,"dateAdded":"2020-11-27T04:21:43.861505Z","sceneName":"The Venture Bros S02E12 MULTi 1080p WEB H264-CiELOS [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":132300,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"French \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3018754,"videoCodec":"h264","videoFps":25.0,"resolution":"1920x1080","runTime":"22:46","scanType":"Progressive","subtitles":"French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":16463}],"queue":[]},"264":{"series":{"title":"Onyx Equinox","alternateTitles":[],"sortTitle":"onyx equinox","status":"ended","ended":true,"overview":"The gods are at war for the future of humanity, and an Aztec boy named Izel finds himself caught in the middle of their dangerous game. In order to save humankind, he must complete an impossible task \u2014 closing the five gates to the underworld. Izel reluctantly agrees, but only after learning his quest will also correct a terrible tragedy. His journey to become humanity\u2019s champion will be one of hope and despair, of trust and betrayal, where Izel must confront his own darkness and decide if the human race \u2014 with all its flaws and contradictions \u2014 is worth saving.","previousAiring":"2020-12-26T21:00:00Z","network":"Crunchyroll","airTime":"16:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/282\/banner.jpg?lastWrite=637527576325610670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/377625\/banners\/5fba9c2f861c1.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/282\/poster.jpg?lastWrite=637527576326850650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/377625\/posters\/5fb9d0cd96211.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/282\/fanart.jpg?lastWrite=637527576328130630","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/377625\/backgrounds\/5fb7d2d6560bf.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-12-26T21:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18084109127,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Onyx Equinox","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":377625,"tvRageId":0,"tvMazeId":48922,"firstAired":"2020-11-21T00:00:00Z","seriesType":"standard","cleanTitle":"onyxequinox","imdbId":"tt12605636","titleSlug":"onyx-equinox","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Fantasy"],"tags":[],"added":"2021-03-31T03:20:31.712861Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18084109127,"percentOfEpisodes":100.0},"id":282},"episodes":[{"seriesId":282,"episodeFileId":17930,"seasonNumber":1,"episodeNumber":1,"title":"The Last Day","airDate":"2020-11-21","airDateUtc":"2020-11-21T21:00:00Z","overview":"As Mictlantecuhtli initiates a blood war, the other Gods consider destroying humanity altogether. Quetzalcoatl and Tezcatlipoca make a side bet to see if the \u201clowest-of-the-low\u201d can serve as humanity\u2019s champion to save the human race. In Uxmal, a tragic decision sets Izel\u2019s destiny in motion.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21299},{"seriesId":282,"episodeFileId":17931,"seasonNumber":1,"episodeNumber":2,"title":"Jaws of the Jaguar","airDate":"2020-11-28","airDateUtc":"2020-11-28T21:00:00Z","overview":"Jaguar emissary Yaotl informs Izel of his task to close the five gates to the Underworld. An unexpected foe forces Izel to confront his destiny.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21300},{"seriesId":282,"episodeFileId":17932,"seasonNumber":1,"episodeNumber":3,"title":"Thicker Than Water","airDate":"2020-12-05","airDateUtc":"2020-12-05T21:00:00Z","overview":"Izel heads to Ox Te\u2019Tuun to retrieve an artifact containing the map to the gates. There, he meets twin Ulama ballplayers, as well as mysterious figure from his past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21301},{"seriesId":282,"episodeFileId":17933,"seasonNumber":1,"episodeNumber":4,"title":"The Stranger","airDate":"2020-12-12","airDateUtc":"2020-12-12T21:00:00Z","overview":"Izel, K\u2019in and Yun head towards the second gate at Lakamha, where they encounter a warrior looking to bargain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21302},{"seriesId":282,"episodeFileId":17934,"seasonNumber":1,"episodeNumber":5,"title":"Predation","airDate":"2020-12-19","airDateUtc":"2020-12-19T21:00:00Z","overview":"As the group heads for Danibaan, one of them suffers a horrifying injury. With nowhere left to turn, they seek help from a mysterious healer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21303},{"seriesId":282,"episodeFileId":17935,"seasonNumber":1,"episodeNumber":6,"title":"What She Carries","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"After an unexpected shift in plans, the group find themselves in the remote city of Tajin, where they are immediately arrested for a crime they didn\u2019t commit.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21304},{"seriesId":282,"episodeFileId":17936,"seasonNumber":1,"episodeNumber":7,"title":"The Underworld","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"The group becomes trapped in the Underworld. Zyanya struggles to hide her secret.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21305},{"seriesId":282,"episodeFileId":17937,"seasonNumber":1,"episodeNumber":8,"title":"Run","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"Mictecacihuatl sends the group to Danibaan. Zyanya\u2019s secret is revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21306},{"seriesId":282,"episodeFileId":17938,"seasonNumber":1,"episodeNumber":9,"title":"Death From Above","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"On the run from Mictecacihuatl, the group seeks refuge in a remote village.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21307},{"seriesId":282,"episodeFileId":17939,"seasonNumber":1,"episodeNumber":10,"title":"Death From Below","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"Reeling from Mictecacihuatl\u2019s attacks, the group reconvenes at the final gate. Tensions run high as Yaotl\u2019s motives are scrutinized.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21308},{"seriesId":282,"episodeFileId":17940,"seasonNumber":1,"episodeNumber":11,"title":"The Last Year","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"A glimpse into the past reveals the true machinations of the Gods.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":21309},{"seriesId":282,"episodeFileId":17941,"seasonNumber":1,"episodeNumber":12,"title":"The Bet","airDate":"2020-12-26","airDateUtc":"2020-12-26T21:00:00Z","overview":"As the final gate looms and the Gods close in, Izel faces an impossible choice.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":21310}],"episodeFile":[{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Last Day-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E01.The Last Day-WEBDL-1080p.mkv","size":1483285763,"dateAdded":"2021-03-31T05:43:17.543902Z","sceneName":"Onyx.Equinox.S01E01.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:21","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17930},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Jaws of the Jaguar-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E02.Jaws of the Jaguar-WEBDL-1080p.mkv","size":1454228569,"dateAdded":"2021-03-31T05:45:05.034887Z","sceneName":"Onyx.Equinox.S01E02.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:53","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17931},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Thicker Than Water-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E03.Thicker Than Water-WEBDL-1080p.mkv","size":1475838139,"dateAdded":"2021-03-31T05:46:51.372394Z","sceneName":"Onyx.Equinox.S01E03.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:15","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17932},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Stranger-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E04.The Stranger-WEBDL-1080p.mkv","size":1560228486,"dateAdded":"2021-03-31T05:48:39.750075Z","sceneName":"Onyx.Equinox.S01E04.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:41","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17933},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Predation-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E05.Predation-WEBDL-1080p.mkv","size":1501679963,"dateAdded":"2021-03-31T05:50:32.631838Z","sceneName":"Onyx.Equinox.S01E05.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:57","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17934},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E06.What She Carries-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E06.What She Carries-WEBDL-1080p.mkv","size":1523539239,"dateAdded":"2021-03-31T05:52:23.426125Z","sceneName":"Onyx.Equinox.S01E06.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:20","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17935},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Underworld-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E07.The Underworld-WEBDL-1080p.mkv","size":1526293676,"dateAdded":"2021-03-31T05:54:22.555505Z","sceneName":"Onyx.Equinox.S01E07.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:08","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17936},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Run-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E08.Run-WEBDL-1080p.mkv","size":1526308073,"dateAdded":"2021-03-31T05:56:16.654642Z","sceneName":"Onyx.Equinox.S01E08.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128001,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:04","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17937},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Death From Above-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E09.Death From Above-WEBDL-1080p.mkv","size":1494244137,"dateAdded":"2021-03-31T05:58:07.320817Z","sceneName":"Onyx.Equinox.S01E09.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:32","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17938},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Death From Below-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E10.Death From Below-WEBDL-1080p.mkv","size":1450642579,"dateAdded":"2021-03-31T05:59:56.894035Z","sceneName":"Onyx.Equinox.S01E10.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:54","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17939},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Last Year-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E11.The Last Year-WEBDL-1080p.mkv","size":1554762742,"dateAdded":"2021-03-31T06:01:43.923167Z","sceneName":"Onyx.Equinox.S01E11.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:35","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17940},{"seriesId":282,"seasonNumber":1,"relativePath":"Season 01\/S01E12.The Bet-WEBDL-1080p.mkv","path":"\/tv\/Onyx Equinox\/Season 01\/S01E12.The Bet-WEBDL-1080p.mkv","size":1533057761,"dateAdded":"2021-03-31T06:03:35.185423Z","sceneName":"Onyx.Equinox.S01E12.1080p.CR.WEB-DL.AAC2.0.x264-WELP","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:10","scanType":"Progressive","subtitles":"Arabic \/ German \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17941}],"queue":[]},"265":{"series":{"title":"Tuca & Bertie","alternateTitles":[],"sortTitle":"tuca bertie","status":"continuing","ended":false,"overview":"Two bird women -- a carefree toucan and an anxious songbird -- live in the same apartment building and share their lives in this animated comedy.","previousAiring":"2021-08-16T03:30:00Z","network":"Adult Swim","airTime":"23:30","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/258\/banner.jpg?lastWrite=637610277577974670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361005\/banners\/60e1d357e6bc7.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/258\/poster.jpg?lastWrite=637367304744175530","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/5cb964fc39f17.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/258\/fanart.jpg?lastWrite=637590341472157760","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/361005\/backgrounds\/60c250a7c99e6.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2019-05-04T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":4089177108,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-08-16T03:30:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":7187094164,"percentOfEpisodes":100.0}}],"year":2019,"path":"\/tv\/Tuca & Bertie","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":361005,"tvRageId":0,"tvMazeId":35086,"firstAired":"2019-05-03T00:00:00Z","seriesType":"standard","cleanTitle":"tucabertie","imdbId":"tt8036272","titleSlug":"tuca-and-bertie","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Comedy"],"tags":[],"added":"2020-09-26T15:21:13.345386Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":11276271272,"percentOfEpisodes":100.0},"id":258},"episodes":[{"seriesId":258,"episodeFileId":15615,"seasonNumber":1,"episodeNumber":1,"title":"The Sugar Bowl","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"It's the end of an era as Bertie's boyfriend moves in and her best friend Tuca moves out ... into the apartment right above her.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19762},{"seriesId":258,"episodeFileId":15616,"seasonNumber":1,"episodeNumber":2,"title":"The Promotion","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"Bertie wants to climb the ladder at Conde Nest but encounters sexual harassment. Enter Tuca with a plan to help her BFF get what she wants.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19763},{"seriesId":258,"episodeFileId":15617,"seasonNumber":1,"episodeNumber":3,"title":"The Deli Guy","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"While Tuca\u2019s out on a hot date with her crush, Bertie tries to spice things up at home -- with a little bird porn.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19764},{"seriesId":258,"episodeFileId":15618,"seasonNumber":1,"episodeNumber":4,"title":"The Sex Bugs","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"An anxious Bertie skips work to avoid a presentation, then accompanies Tuca on a mission to buy over-the-counter creams.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19765},{"seriesId":258,"episodeFileId":15619,"seasonNumber":1,"episodeNumber":5,"title":"Plumage","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"Bertie's starting her apprenticeship at the bakery, but first -- it's Self-Care Saturday! Tuca and Speckle visit Tuca's aunt in the Beakshires.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19766},{"seriesId":258,"episodeFileId":15620,"seasonNumber":1,"episodeNumber":6,"title":"The Open House","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"Bertie and Speckle consider buying a house, a big commitment that throws Bertie into a tailspin. Tuca brings home a forever friend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19767},{"seriesId":258,"episodeFileId":15621,"seasonNumber":1,"episodeNumber":7,"title":"Yeast Week","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"Tuca needs medical attention, stat -- but she's terrified to see a doctor. An elite baking expo gives Bertie the chance to bring \"cr\u00fcnts\" to the world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19768},{"seriesId":258,"episodeFileId":15622,"seasonNumber":1,"episodeNumber":8,"title":"The New Bird","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"Bertie branches out and bonds with an eager young apprentice at Pastry Pete's. Elsewhere, without her bestie, Tuca feels a little bit lost.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19769},{"seriesId":258,"episodeFileId":15623,"seasonNumber":1,"episodeNumber":9,"title":"The Jelly Lakes","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"An impromptu road trip takes Tuca and Bertie to Bertie\u2019s old summer camp -- a faraway place that dredges up painful memories.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19770},{"seriesId":258,"episodeFileId":15624,"seasonNumber":1,"episodeNumber":10,"title":"SweetBeak","airDate":"2019-05-03","airDateUtc":"2019-05-04T03:30:00Z","overview":"\u2019Tis the season for fighting the pastry-archy when Tuca urges Bertie to open her own bakery. But can they deliver the goods in time for Molting Day?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19771},{"seriesId":258,"episodeFileId":18425,"seasonNumber":2,"episodeNumber":1,"title":"Bird Mechanics","airDate":"2021-06-13","airDateUtc":"2021-06-14T03:30:00Z","overview":"Tuca and Bertie are both looking for their perfect match; Bertie needs to see the best therapist as quickly as possible, and Tuca finds a clever way to jump-start her dating life.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21448},{"seriesId":258,"episodeFileId":18452,"seasonNumber":2,"episodeNumber":2,"title":"Planteau","airDate":"2021-06-20","airDateUtc":"2021-06-21T03:30:00Z","overview":"Everybody's going to Planteau for some bachelor\/bachelorette weekend fun! Hopefully Tuca's sobriety and Bertie's social anxiety won't get in the way of a good time.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21588},{"seriesId":258,"episodeFileId":18568,"seasonNumber":2,"episodeNumber":3,"title":"Kyle","airDate":"2021-06-27","airDateUtc":"2021-06-28T03:30:00Z","overview":"Bertie hits a wall at work and decides to channel her inner bird\/bro, while Tuca's passions steer her into a high-octane new job. Will our gals wield their new powers responsibly? No.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21589},{"seriesId":258,"episodeFileId":18609,"seasonNumber":2,"episodeNumber":4,"title":"Nighttime Friend","airDate":"2021-07-04","airDateUtc":"2021-07-05T03:30:00Z","overview":"Tuca deals with her nightly insomnia and loneliness by exploring Bird Town after hours. Bertie handles an IBS attack and Speckle has a new pedometer watch!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21606},{"seriesId":258,"episodeFileId":18639,"seasonNumber":2,"episodeNumber":5,"title":"Vibe Check","airDate":"2021-07-11","airDateUtc":"2021-07-12T03:30:00Z","overview":"Bertie's vibrator is giving her intrusive-yet-titillating thoughts, it must be broken... or maybe it's her bed... or her brain? Tuca wonders if her new friendship could be something more. Speckle's reeeally into his new video game.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21609},{"seriesId":258,"episodeFileId":18679,"seasonNumber":2,"episodeNumber":6,"title":"The Moss","airDate":"2021-07-18","airDateUtc":"2021-07-19T03:30:00Z","overview":"A new landlord? A rent increase? Not today, Gentrifier. Tuca & Bertie battle a mysterious new apartment manager while Speckle races to finish building his dream house.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21639},{"seriesId":258,"episodeFileId":18701,"seasonNumber":2,"episodeNumber":7,"title":"Sleepovers","airDate":"2021-07-25","airDateUtc":"2021-07-26T03:30:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21640},{"seriesId":258,"episodeFileId":18732,"seasonNumber":2,"episodeNumber":8,"title":"Corpse Week","airDate":"2021-08-01","airDateUtc":"2021-08-02T03:30:00Z","overview":"Happy Cadaveri! It's Corpse Week and the gang are visiting Tuca and Bertie's families for the holidays. What's spookier, all the morbid imagery or the complicated family dynamics?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21650},{"seriesId":258,"episodeFileId":18812,"seasonNumber":2,"episodeNumber":9,"title":"The Dance","airDate":"2021-08-08","airDateUtc":"2021-08-09T03:30:00Z","overview":"Drama goes down at the Bird Town Carnival, and Bertie isn't sure what to do when she hasn't seen Tuca in weeks.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21661},{"seriesId":258,"episodeFileId":18837,"seasonNumber":2,"episodeNumber":10,"title":"The Flood","airDate":"2021-08-15","airDateUtc":"2021-08-16T03:30:00Z","overview":"Bertie helps Tuca with some personal ghosts when the city is under siege.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21662}],"episodeFile":[{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Sugar Bowl-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E01.The Sugar Bowl-WEBDL-1080p.mkv","size":403879214,"dateAdded":"2020-09-26T19:53:26.814262Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1449897,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:40","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15615},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E02.The Promotion-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E02.The Promotion-WEBDL-1080p.mkv","size":409382285,"dateAdded":"2020-09-26T19:55:10.25984Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1451281,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:00","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15616},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Deli Guy-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E03.The Deli Guy-WEBDL-1080p.mkv","size":408187586,"dateAdded":"2020-09-26T19:56:52.591683Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1450782,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:56","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai \/ Korean"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15617},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E04.The Sex Bugs-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E04.The Sex Bugs-WEBDL-1080p.mkv","size":408230774,"dateAdded":"2020-09-26T19:58:34.930113Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1450086,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:56","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15618},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Plumage-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E05.Plumage-WEBDL-1080p.mkv","size":404227192,"dateAdded":"2020-09-26T20:00:17.245323Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1449495,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:42","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15619},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Open House-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E06.The Open House-WEBDL-1080p.mkv","size":406747867,"dateAdded":"2020-09-26T20:01:59.552528Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1451159,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:50","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15620},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Yeast Week-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E07.Yeast Week-WEBDL-1080p.mkv","size":409004080,"dateAdded":"2020-09-26T20:03:41.79436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1449489,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:00","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15621},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The New Bird-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E08.The New Bird-WEBDL-1080p.mkv","size":419512556,"dateAdded":"2020-09-26T20:05:24.155387Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1450182,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:40","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15622},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E09.The Jelly Lakes-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E09.The Jelly Lakes-WEBDL-1080p.mkv","size":404951542,"dateAdded":"2020-09-26T20:07:06.494398Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1450963,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"25:44","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15623},{"seriesId":258,"seasonNumber":1,"relativePath":"Season 01\/S01E10.SweetBeak-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 01\/S01E10.SweetBeak-WEBDL-1080p.mkv","size":415054012,"dateAdded":"2020-09-26T20:08:48.833616Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1450811,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"26:22","scanType":"","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian Bokmal \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15624},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Bird Mechanics-WEBDL-1080p.mp4","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E01.Bird Mechanics-WEBDL-1080p.mp4","size":839814680,"dateAdded":"2021-06-16T19:12:28.741545Z","sceneName":"Tuca.and.Bertie.S02E01.1080p.WEB-DL.AAC2.0.H264-BTN[rartv]","releaseGroup":"BTN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":225237,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8684365,"videoCodec":"x264","videoFps":53.747,"resolution":"1920x1080","runTime":"12:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18425},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Planteau-WEBRip-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E02.Planteau-WEBRip-1080p.mkv","size":854797238,"dateAdded":"2021-06-21T04:44:39.804773Z","sceneName":"Tuca.and.Bertie.S02E02.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125590,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4937869,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18452},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Kyle-WEBRip-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E03.Kyle-WEBRip-1080p.mkv","size":766292944,"dateAdded":"2021-06-28T04:41:32.489784Z","sceneName":"Tuca.and.Bertie.S02E03.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125590,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4416040,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18568},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Nighttime Friend-WEBRip-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E04.Nighttime Friend-WEBRip-1080p.mkv","size":608902023,"dateAdded":"2021-07-05T04:38:37.080192Z","sceneName":"Tuca.and.Bertie.S02E04.1080p.WEBRip.x264-BAE[ettv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3475959,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18609},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Vibe Check-WEBDL-720p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E05.Vibe Check-WEBDL-720p.mkv","size":261946093,"dateAdded":"2021-07-12T17:15:33.399816Z","sceneName":"Tuca.and.Bertie.S02E05.Vibe.Check.720p.HULU.WEBRip.AAC2.0.H264-WELP[TGx]","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1500907,"videoCodec":"h264","videoFps":29.97,"resolution":"1280x720","runTime":"22:17","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18639},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E06.The Moss-WEBRip-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E06.The Moss-WEBRip-1080p.mkv","size":817114503,"dateAdded":"2021-07-19T04:46:07.286223Z","sceneName":"Tuca.and.Bertie.S02E06.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4706631,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18679},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Sleepovers-WEBRip-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E07.Sleepovers-WEBRip-1080p.mkv","size":652295590,"dateAdded":"2021-07-26T05:04:22.441894Z","sceneName":"Tuca.and.Bertie.S02E07.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3738715,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18701},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Corpse Week-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E08.Corpse Week-WEBDL-1080p.mkv","size":751429416,"dateAdded":"2021-08-02T10:14:17.898309Z","sceneName":"Tuca.and.Bertie.S02E08.Corpse.Week.1080p.HULU.WEBRip.AAC2.0.H264-WELP[rartv]","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4307979,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18732},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E09.The Dance-WEBRip-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E09.The Dance-WEBRip-1080p.mkv","size":813137170,"dateAdded":"2021-08-09T05:11:05.837975Z","sceneName":"Tuca.and.Bertie.S02E09.1080p.WEBRip.x264-BAE[rartv]","releaseGroup":"BAE","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125588,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4763853,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18812},{"seriesId":258,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Flood-WEBDL-1080p.mkv","path":"\/tv\/Tuca & Bertie\/Season 02\/S02E10.The Flood-WEBDL-1080p.mkv","size":821364507,"dateAdded":"2021-08-16T22:11:11.63419Z","sceneName":"Tuca.and.Bertie.S02E10.The.Flood.1080p.HULU.WEBRip.AAC2.0.H264-WELP[rartv]","releaseGroup":"WELP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":63999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4522365,"videoCodec":"h264","videoFps":29.97,"resolution":"1920x1080","runTime":"23:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18837}],"queue":[]},"266":{"series":{"title":"Galaxy Angel","alternateTitles":[],"sortTitle":"galaxy angel","status":"ended","ended":true,"overview":"The astronomical adventures of the Angel Brigade, a squad of females dispatched to retrieve powerful objects scattered around the Milky Way.","previousAiring":"2004-09-29T04:15:00Z","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/277\/banner.jpg?lastWrite=637516693515830280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/79289-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/277\/poster.jpg?lastWrite=637516693516870260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/79289-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/277\/fanart.jpg?lastWrite=637516693531190050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/79289-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":49,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2002-01-25T05:15:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":3247807697,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2002-03-31T05:15:00Z","episodeFileCount":0,"episodeCount":18,"totalEpisodeCount":18,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2003-03-30T05:15:00Z","episodeFileCount":0,"episodeCount":52,"totalEpisodeCount":52,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2004-09-29T04:15:00Z","episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2001,"path":"\/tv\/Galaxy Angel","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":15,"tvdbId":79289,"tvRageId":3638,"tvMazeId":18747,"firstAired":"2001-04-07T00:00:00Z","seriesType":"standard","cleanTitle":"galaxyangel","imdbId":"tt0833572","titleSlug":"galaxy-angel","rootFolderPath":"\/tv\/","certification":"TV-PG","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2021-03-18T13:02:30.024857Z","ratings":{"votes":55,"value":8.0},"statistics":{"seasonCount":4,"episodeFileCount":26,"episodeCount":122,"totalEpisodeCount":171,"sizeOnDisk":3247807697,"percentOfEpisodes":21.311475409836067},"id":277},"episodes":[{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Now I get it! GA lecture 1","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21035},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Now I get it! GA lecture 2","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21036},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Now I get it! GA lecture 3","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21037},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Now I get it! GA lecture 4","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21038},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Now I get it! GA lecture 5","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21039},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Now I get it! GA lecture 6","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21040},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Now I get it! GA lecture 7","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21041},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Now I get it! GA lecture 8","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21042},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Now I get it! GA lecture 9","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21043},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Now I get it! GA lecture 10","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21044},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Now I get it! GA lecture 11","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21045},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Now I get it! GA lecture 12","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21046},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Now I get it! GA lecture 13","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21047},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Now I get it! GA lecture 14","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21048},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Now I get it! GA lecture 15","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21049},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Now I get it! GA lecture 16","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21050},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Now I get it! GA lecture 17","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21051},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Now I get it! GA lecture 18","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21052},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Now I get it! GA lecture 19","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21053},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Now I get it! GA lecture 20","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21054},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":26,"title":"Now I get it! GA lecture 21","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21055},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":27,"title":"Now I get it! GA lecture 22","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21056},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":28,"title":"Now I get it! GA lecture 23","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21057},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":29,"title":"Now I get it! GA lecture 24","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21058},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":30,"title":"Now I get it! GA lecture 25","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21059},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":31,"title":"Now I get it! GA lecture 26","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21060},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":32,"title":"Now I get it! GA lecture 27","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21061},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":33,"title":"Now I get it! GA lecture 28","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21062},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":34,"title":"Now I get it! GA lecture 29","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21063},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":35,"title":"Now I get it! GA lecture 30","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21064},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":36,"title":"Now I get it! GA lecture 31","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21065},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":37,"title":"Now I get it! GA lecture 32","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21066},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":38,"title":"Now I get it! GA lecture 33","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21067},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":39,"title":"Now I get it! GA lecture 34","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21068},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":40,"title":"Now I get it! GA lecture 35","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21069},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":41,"title":"Now I get it! GA lecture 36","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21070},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":42,"title":"Now I get it! GA lecture 37","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21071},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":43,"title":"Now I get it! GA lecture 38","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21072},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":44,"title":"Now I get it! GA lecture 39","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21073},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":45,"title":"Now I get it! GA lecture 40","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21074},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":46,"title":"Now I get it! GA lecture 41","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21075},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":47,"title":"Now I get it! GA lecture 42","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21076},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":48,"title":"Now I get it! GA lecture 43","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21077},{"seriesId":277,"episodeFileId":17819,"seasonNumber":1,"episodeNumber":1,"title":"Resort Flavored, Good Luck Package","airDate":"2001-04-07","airDateUtc":"2001-04-07T04:00:00Z","overview":"The Angel Brigade's original purpose was to discover lost technology, but they end up doing household duties. Forte Stollen and Ranpha Franboise, part of the Angel Unit, has been sent to a beach resort to find Baron Fitzgerald III (a cat that was heir to a large family fortune). They find many cats that look like Baron III and capture them. However, the real Baron was with Milfeulle Sakuraba, a beach-side cafe waitress, who called it Goro (Rollie in the English version). As Milfeulle meets up with the other two angels, the assassins hired by a jealous relative come to take Baron away. Milfeulle tells them not to worry as luck is always on her side. Her luck puts the three angels in many close calls before defeating the assassins. Baron dies at the end with offspring that become new heirs to the family fortune.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21079},{"seriesId":277,"episodeFileId":17820,"seasonNumber":1,"episodeNumber":2,"title":"Pan-fried Gambling with Milfeulle Sauce","airDate":"2001-04-14","airDateUtc":"2001-04-14T04:00:00Z","overview":"On this day, the Angel Brigade is supposed to welcome their newest member, but Forte and Ranpha have gone on a vacation to a casino. After many winnings and victories, the casino owner challenges Forte and Ranpha to a special roulette game of all in bet. The casino owner rigs the roulette game to make him win. Forte and Ranpha try to ask Mint for financial support, but Mint declines, resulting in Forte and Ranpha having to become wrestlers to pay off their debt. Milfeulle spots Forte and Ranpha in the ring and congratulates them. Forte recalls Milfeulle's luck and tries to get her to pay back the debt. The casino owner spots their winnings and challenges all three of them to another special roulette game. The casino owner again rigs the roulette game, but Milfeulle's luck causes an asteroid to destroy the casino.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21080},{"seriesId":277,"episodeFileId":17821,"seasonNumber":1,"episodeNumber":3,"title":"Bargain Asteroid and Stir-fry Vanilla","airDate":"2001-04-21","airDateUtc":"2001-04-21T04:00:00Z","overview":"The Angel Brigade has been assigned to sort trash. They have been told that there is a Lost Technology buried in the trash. While sorting the trash, Vanilla found something strange, a missile. When they take the missile into their headquarters for investigation, the missile identifies to them as Normad. He starts talking to them about how he does not enjoy the life of being a missile and should enjoy a sense of freedom. As he is about to detonate, Vanilla stops the explosion and frees Normad, a microprocessor from the missile. The Brigade tries to find a new body for Normad which included a chess player, a dishwasher, and another missile. However, Normad picks Vanilla's stuffed animal and comments about Vanilla being his favorite.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21081},{"seriesId":277,"episodeFileId":17822,"seasonNumber":1,"episodeNumber":4,"title":"3 O'clock delivery, angel combination platter","airDate":"2001-05-12","airDateUtc":"2001-05-12T04:00:00Z","overview":"The Angel Brigade has been sent to protect the president of a company. Ranpha is excited being that the president looks cute, but is astonished when the president actually turns out to be an old man. As the president gives them a tour of the company, many incidents start to happen. Soon, an army of machines try to kill everyone. As the Angels try to stop the army of machines, Milfeulle and Ranpha begin to notice a red spaceship always following them. Forte begins to notice something suspicious and draws her gun towards the president, saying that the whole situation is a trap. The president then reveals the truth. He tried to put them through a test to find a wife suitable for his son, who is pictured Ranpha's photo. Initially interested is him, she turns him down after learning that they were only part of the hundreds of girls that qualified for the next round of elimination. The other Angels leave too.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21082},{"seriesId":277,"episodeFileId":17823,"seasonNumber":1,"episodeNumber":5,"title":"Pirate-Style School Memory Terrine","airDate":"2001-05-19","airDateUtc":"2001-05-19T04:00:00Z","overview":"In request of Duke Crizeman, Milfeulle and Ranpha are sent to return his student ID card to an abandoned school in Area Enigma, a dangerous area which is said to be infested with pirates. They are suddenly attacked by robots while in the school. One of the robots shoots a beam at Milfeulle's heart, seemingly killing her. Is Milfeulle really dead? What will Ranpha do now?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21083},{"seriesId":277,"episodeFileId":17824,"seasonNumber":1,"episodeNumber":6,"title":"Forte's Ruinous Stew and a Dash of trouble","airDate":"2001-05-26","airDateUtc":"2001-05-26T04:00:00Z","overview":"In this episode, Forte, Milfeulle, and Normad are to find lost technology on a planet. Milfeulle finds an egg, and tries to cook it, however, the egg wouldn't crack. The strange egg hatched, and a mouse comes out. Milfeulle and Normad than learn that Forte is afraid of mice. Later in the episode, Forte reveals that she is allergic to mice. The mouse follows Forte into a cave, and blasts a hole into her bazooka. It then escapes when Milfeulle and Normad come, turns giant, and starts attacking everyone. Milfeulle doesn't want the mouse to get hurt, so how will Forte make sure the giant mouse doesn't destroy anything else?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21084},{"seriesId":277,"episodeFileId":17825,"seasonNumber":1,"episodeNumber":7,"title":"Fun Park Specialties with Chicken Mint Compote","airDate":"2001-06-02","airDateUtc":"2001-06-02T04:00:00Z","overview":"Mint, Vanilla, and Milfeulle are sent to Chickendee Planet to find, and catch the kidnappers who have been kidnapping children. Everyone dresses up in costumes, and tries to find who the kidnappers are. Will they succeed? Strangely, a costume has mysteriously disappeared. Where is it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21085},{"seriesId":277,"episodeFileId":17826,"seasonNumber":1,"episodeNumber":8,"title":"Milfeulle's All-Natural Syrupy Inspection","airDate":"2001-06-09","airDateUtc":"2001-06-09T04:00:00Z","overview":"A commander and his helper have come to the Angel Base hoping to find lost technology, thinking that the Angel Brigade found many and hid them secretly in their base. The commander is greeted by Milfeulle and Vanilla. He asks Milfeulle questions to where the lost technology is, but Milfeulle keeps repeating the same answer that she doesn't know what lost technology is. The commander tries to befriend her hoping that she'll tell him where the lost technology is. The commander asks Milfeulle her to show him and his helper everyone's rooms. They finally approach Mint's safe, thinking that the lost technology is inside. When Milfeulle opens up the safe, the commander enters the safe and fires Milfeulle and Vanilla as they have completed their duty. However, they become stuck inside the safe.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21086},{"seriesId":277,"episodeFileId":17827,"seasonNumber":1,"episodeNumber":9,"title":"Roast Beef of Lost Technology","airDate":"2001-06-16","airDateUtc":"2001-06-16T04:00:00Z","overview":"The Angels board a derelict spaceship to look for the lost technology. The spaceship is apparently haunted as ghosts appear from nowhere and chase them around. They suddenly appear in another room where they are served with any desserts they want. Milfeulle, who stayed back at the Angel Base to exercise in the gym, is informed by the Commander that her probation is over and she is finally an official member of the Angel Brigade. Celebrations are cut short when the receive a help call from the other Angels. Milfeulle rushes to the spaceship to save her fellow members from the spaceship and goes inside. As she too is chased by ghosts, they end up in front of a large screen with many numbers. As Mint tries to solve the mystery, Milfeulle blurts out that one row of numbers represent her current and ideal weight. Learning that the spaceship is a fitness machine, they must exercise with the ghosts to be free.\r\nNote: In the English Version, Volcott tells Milfeulle that her probation period is over while he tells her that her Emblem Frame has just arrived at the Angel Base in the Japanese Version","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21087},{"seriesId":277,"episodeFileId":17828,"seasonNumber":1,"episodeNumber":10,"title":"Rouge-Flavored Spring Rolls of Love","airDate":"2001-06-23","airDateUtc":"2001-06-23T04:00:00Z","overview":"A mis-delivered package arrives at the doorstep of a love-crazed Ranpha, who has recently lost her former boyfriend, Melty Way. It turns out to be an android lover from the Full Monty Company. Ranpha decides to return him just when Milfeulle enters her room and mistakes the doll for Ranpha's new boyfriend. Ranpha, initially rejects the android, but later accepts him. As the other Angels get the news of a bomb threat resembling a man, Ranpha and the man, causing him to detonate. It is later revealed that the doll (which was programmed to explode after the first kiss) was mailed by a stalker who targets women because he was once called a \"lousy kisser\". Further news revealed that many other women seeking love online were targeted as well.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21088},{"seriesId":277,"episodeFileId":17829,"seasonNumber":1,"episodeNumber":11,"title":"Gun Shot Bandage Roll Sushi Bowl","airDate":"2001-06-30","airDateUtc":"2001-06-30T04:00:00Z","overview":"In an Old West style town, Forte and Vanilla have been dispatched to search for Lost Technology. Forte and Vanilla both split their own ways with Vanilla working for the doctor of the local clinic. Forte joins three hospital workers across the street, who gets no patients. One of them persuades Forte to run the doctor out of town by showing his gun collection and giving her the revolver as a reward. They hope this trick will help them get patients and earn money. However, the doctor is a kind-hearted man who is more interested in truly saving lives than earning money. When Forte storms into the clinic and attempts to raid, Normad makes Forte realize whose side is actually the corrupt side.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":21089},{"seriesId":277,"episodeFileId":17830,"seasonNumber":1,"episodeNumber":12,"title":"Glazed Baseball and Negligee","airDate":"2001-07-07","airDateUtc":"2001-07-07T04:00:00Z","overview":"The Angels play a baseball game against the men from the Transbaal Navy. Due to Colonel Volcott's drunken stupor and a bet he made with the Admiral, they have to win the game or else they must wear negligees and be conscripted into the Navy if they lose. Initially, the Angels have a long losing streak, but Mint devised a way to give them a chance by bargaining for handicap points in exchange for Forte and Ranpha having to do special service if they lose. She also told made them all wear bikinis, throwing the Navy off guard. The Angels successfully make the first few bats, but the Admiral tries halt their victory when Milfeulle bats a home run ball. As Ranpha and the Admiral argue over cheating, a missile, who is Normad's grandfather, attacks the Admiral and Colonel Volcott while another missile, who was Normad's girlfriend, attacks all the Angels, ending the game in a stalemate.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":21090},{"seriesId":277,"episodeFileId":17831,"seasonNumber":1,"episodeNumber":13,"title":"The Great Kidnapping Scheme","airDate":"2001-07-14","airDateUtc":"2001-07-14T04:00:00Z","overview":"Mint and Ranpha were kidnapped during a mission. The kidnappers demand a large ransom in return. Unable to pay off the ransom, Forte and Milfeulle devise a plan to get the money by faking another kidnapping incident with Colonel Volcott. The military, in return, fakes another kidnapping to collect the money needed for ransom. As the cycle continues, it gets traced back to the original kidnappers. The original kidnappers increase the amount of ransom demanded from Forte and Milfeulle. Forte passes the increased amount of ransom along to the military, resulting in an endless cycle of ransom demands that skyrocket into the night.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":21091},{"seriesId":277,"episodeFileId":17832,"seasonNumber":1,"episodeNumber":14,"title":"Downtown Soulfood Oden","airDate":"2001-07-21","airDateUtc":"2001-07-21T04:00:00Z","overview":"Forte befriends a juvenile delinquent girl named Milly who was the daughter of a crime boss. She tries to cheat out of paying for food before Forte sees her gun and notes something strange about Milly. As Forte witnesses another crime Milly is committing, Forte steals the gun away from Milly and withholds the gun until Milly listens to her. Milly leads Forte to her house and talks to her about her. As Forte hears the story and looks at Milly's gun. she begins to relate Milly's story to similar events that occurred in her childhood. At the end, Forte gives her encouragement to change her lifestyle and returns the gun to her. Milly, now inspired, thanks Forte.\r\n\r\nNote: In this episode, Forte is the sole Angel to appear.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":21092},{"seriesId":277,"episodeFileId":17833,"seasonNumber":1,"episodeNumber":15,"title":"Pot-au-Feu of Lost Things","airDate":"2001-07-28","airDateUtc":"2001-07-28T04:00:00Z","overview":"Vanilla allegedly loses a valuable item that she was carrying with her at all times. As a result, she has fasted for two weeks and hasn't eaten a bite since then. Unless the mysterious item can be found, Vanilla won't break her fast and will die of starvation. Ranpha uses her fortune-telling skills to uncover this mysterious item, while Milfeulle attempts to find it. Milfeulle brings back rare and valuable treasures, but Vanilla discards them. Suddenly, she picks up something from the trash scooped up by the janitor.\r\n\r\nNote: This episode features a parody of the German film Run\u2005Lola\u2005Run when Milfeulle runs down the hallway avoiding dogs and bullies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":21093},{"seriesId":277,"episodeFileId":17834,"seasonNumber":1,"episodeNumber":16,"title":"Grilled Cased Girl","airDate":"2001-08-04","airDateUtc":"2001-08-04T04:00:00Z","overview":"Forte comes back after a long mission, only to find that everyone believes she is dead! Apparently, Ranpha used Forte's \"death\" as an excuse for missing her date with a guy she likes, letting situation go out of hand. Ranpha bribes Forte with an antique gun to go through a fake funeral. When the funeral proceeds, Forte begins to feel better and realize that being dead is not too bad. However, Forte's funeral ends abruptly in a cheap graveyard as she only has few benefits after she dies. A higher-ranked official also died recently, making everyone turn their attention towards him. As Normad tries to explain all of her faults, which led to her few benefits, she tries to draw the gun at Normad, only to realize that they were actually toys.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":21094},{"seriesId":277,"episodeFileId":17835,"seasonNumber":1,"episodeNumber":17,"title":"Canned Angel with Noodles","airDate":"2001-08-11","airDateUtc":"2001-08-11T04:00:00Z","overview":"The Angels' new mission is capturing a runaway sentient tank. Milfeulle and Mint get on the tank as it rampages in the city. Has the sentient tank developed feelings of friendship for the two girls? Can the Angels successfully stop it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":21095},{"seriesId":277,"episodeFileId":17836,"seasonNumber":1,"episodeNumber":18,"title":"Monkey Salvage Combo","airDate":"2001-08-18","airDateUtc":"2001-08-18T04:00:00Z","overview":"Forte destroys her engine after pushing it too hard without breaking it in. Forte, Mint, and Vanilla find the nearest space station in an attempt to try to get Forte'e engine repaired. However, the space station appears to be abandoned with trash everywhere. As they continue to look for help, they find that the space station is occupied by monkeys. As Forte tries to contact the Angel Base about the station, Ranpha explains to them that the place was a laboratory where a viral outbreak devolved the occupants into monkeys. Forte, Mint and Vanilla try to get the monkeys back to Angel Base to find a cure for the monkeys. However, a surprise happens.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":21096},{"seriesId":277,"episodeFileId":17837,"seasonNumber":1,"episodeNumber":19,"title":"Angel Kiss Gateau de Milfeulle","airDate":"2001-08-25","airDateUtc":"2001-08-25T04:00:00Z","overview":"Lucky Milfeulle wins a free dinner at a fancy restaurant and brings Normad along as a date to teach her table manners. On the way there, they chance upon a pastry stall and Milfeulle is impressed with the delicious pastries. She finds the legendary Le Grande Asede, a rare pastry and sees a pastry robot behind the stall. She begs the pastry robot to teach her how to bake the cake, but robot's life is being threatened by assassins because the robot discovered the owner's secret. She tries to rescue the robot despite the robot telling her to let go. They find a place to condone baking lessons, but the assassins find the robot and kill it. However, the memory is intact and the owner's secret is leaked. A replacement robot is also built.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":21097},{"seriesId":277,"episodeFileId":17838,"seasonNumber":1,"episodeNumber":20,"title":"Special Survival Combo","airDate":"2001-09-01","airDateUtc":"2001-09-01T04:00:00Z","overview":"The military plane that Mint and Forte were travelling in crashes, stranding them in a deserted island. Mint and Forte team up with the island's sole resident Max to find ways to call for help. Max tries to use his radar antenna, but it emits a strong magnetic wave, causing more planes to crash, angering Forte as he is responsible for all the crashes. Forte and Mint try to rewire the radar antenna, but the antenna still does not function correctly. As Forte finds many weapons in Max's house, Mint restores the radar antenna and crashes more planes, hoping to catch attention. She also crashes the Angel Base as well. In the end, Max was startling Forte, hoping to get a beating from her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":21098},{"seriesId":277,"episodeFileId":17839,"seasonNumber":1,"episodeNumber":21,"title":"Deco Pizza","airDate":"2001-09-08","airDateUtc":"2001-09-08T04:00:00Z","overview":"Ranpha, Mint, and Vanilla go to a pizzeria which is open in late-night hours. However, the pizzeria is unexpectedly closed. Ranpha does not believe in it and sneaks in. There, Ranpha falls in love with a cute boy, the owner of the pizzeria, who is drowning in debt. The Angels agree to help him; Ranpha makes the pizzas, Mint takes the orders, and Vanilla the deliveries. They also receive external assistance such as truck drivers. After the pizzeria is saved, the owner lets Ranpha make her own pizza. Ranpha fills up her pizza with many spices, burning everyone's mouths. As Ranpha tries to get a glass of water, she accidentally opens a gas valve, exploding the pizzeria and putting the owner out of business for good.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":21099},{"seriesId":277,"episodeFileId":17840,"seasonNumber":1,"episodeNumber":22,"title":"Mascot Girl Special Secret Baked Wrap","airDate":"2001-09-15","airDateUtc":"2001-09-15T04:00:00Z","overview":"During the search for the lost technology, Mint gets stuck in a cutboard figure on top of the mountain viewing area. Meanwhile the mountain is sinking into the sea. As the other Angels try to make their way up the mountain, Mint is embarrassed to be seen inside a cutboard figure and tries to misguide them in an attempt to prevent them from reaching the top. Meanwhile, Mint realizes that the scene is odd as the birds are not flying away. She asks a passer by questions, but he turns away. Mint finally lands on the passer by, freeing herself from cutboard figure. She spots a remote control and uses it to raise the mountain out of the sea and reveal an illegal and secret factory underneath the mountain.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":21100},{"seriesId":277,"episodeFileId":17841,"seasonNumber":1,"episodeNumber":23,"title":"Pitch Black Laughing Pepper","airDate":"2001-09-22","airDateUtc":"2001-09-22T04:00:00Z","overview":"The Angels are approached by Mr. God, a retired comedian who tries to make Vanilla laugh. He failed to do so in his last show, resulting in an accident. Resolving to retire, he has hired many comedians who are renowned for the amounts of laughter they can draw up. None of them are able to get Vanilla to do as much as a giggle. Can he get Vanilla to smile? How will his failure to make her laugh affect his health?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":21101},{"seriesId":277,"episodeFileId":17842,"seasonNumber":1,"episodeNumber":24,"title":"Tear Flavored Missile Rice Bowl","airDate":"2001-09-29","airDateUtc":"2001-09-29T04:00:00Z","overview":"The human race is being attacked by its mysterious arch-enemy, a giant dice named Kyutaro. As the Angels try to attack Kyutaro, the dice is invulnerable to any human attack and easily defeats the Angels. Normad explains to them the details of Kyutaro and how the missile he was originally from was their weakness. The Angels reluctantly agree to return Normad and express their grievances as the missile destroys Kyutaro. However, Normad surprises them by speaking out afterwards, explaining that the Commander made a copy of a program, allowing Normad to navigate the missile from a distance. Forte is displeased and shoots at Normad. Later, more Kyutaros arrive, requiring additional missiles and copies of Normad's program.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":21102},{"seriesId":277,"episodeFileId":17843,"seasonNumber":1,"episodeNumber":25,"title":"Fallen Angel's Dark Universe Tea Rice","airDate":"2002-01-25","airDateUtc":"2002-01-25T05:00:00Z","overview":"The Angels are filing their expense reports when the Commander informs them that the Milfeulle who has been with them all this time is a fake. The Commander has her arrested and shows the official profile of Milfeulle with an old and wrinkled face. The other Angels believe this was a mistake and try to free the imprisoned Milfeulle. As they successfully get Milfeulle free, another Milfeulle shows up. Vanilla does a DNA analysis and finds out she is the real Milfeulle. Milfeulle also explains that she had measles on the day of photo, resulting in such photo. The other angels realized they let the fake Milfeulle escape. The fake Milfeulle thanks them for freeing her and informs that there are other Angel imposters around.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":21103},{"seriesId":277,"episodeFileId":17844,"seasonNumber":1,"episodeNumber":26,"title":"I'd like 5 Sukiake Lunches","airDate":"2002-01-25","airDateUtc":"2002-01-25T05:15:00Z","overview":"The Angel's (last) mission is escorting the mysterious client Johnny in a truck through a desert wilderness. As each Angel takes turn to drive, Ranpha becomes jealous as she loses to other Angels in deciding who goes next. As the other Angels drive with Johnny sitting in the front, Johnny recites words that always relates to their interests (such as costumes for Mint). Ranpha becomes more jealous, hoping to meet up with Johnny in personal. When it's finally Ranpha's turn, she focuses so much on Johnny that she accidentally causes the truck to crash. Johnny then wakes up, revealing that he was unconscious about his speech the whole time. The Angels finish off the escort mission by foot","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":21104},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Galaxy Angel Z: Angel Challenge Jelly Trial","airDate":"2002-02-03","airDateUtc":"2002-02-03T05:00:00Z","overview":"While chowing down at a ramen stand, Milfeulle (who is carrying Lost Technology that resembles pepper in a shaker) accidentally turns her fellow Angels invisible with it. Even worse, the Angels now have a new mission--to locate money stolen by crooks hiding out at a supposedly haunted house. Can they stop the crooks? Will the Angels become visible again?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":21105},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Galaxy Angel Z: Muscle Bound Broad Noodles","airDate":"2002-02-03","airDateUtc":"2002-02-03T05:15:00Z","overview":"At a pro wrestling arena, Ranpha meets a handsome muscular wrestler who claims he knew her when they were children. She immediately falls in love with him and is unable to concentrate on the match. Who is this man? Can Ranpha recover her memories of him?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":21106},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Galaxy Angel Z: Quick Note; Ballottine of Sigh","airDate":"2002-02-10","airDateUtc":"2002-02-10T05:00:00Z","overview":"During a mission, Milfeulle takes a detour to help an old man deliver a tsuchinoko kigurumi for a festival. Mint, displaced from her seat by the traveler, finds the box in the cargo bay containing the costume and helps herself. When she finds she can't get it off and is left alone on the destination planet by Milfeulle, she is mistaken for a real life tsuchinoko by the locals.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":21107},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":4,"title":"Galaxy Angel Z: Surprise Dim Sum","airDate":"2002-02-10","airDateUtc":"2002-02-10T05:15:00Z","overview":"While baking, Milfeulle finds some sweet chestnuts and decides to include them in her cake. The rest of the Angels return after learning that the chestnuts they just brought back from a mission are a lost technology. Milfuelle is discovered to have eaten them already and grown to sizable proportions. The troupe tries desperately to shrink her back to a manageable size before Commander Volcott finds out. As they try many methods to help out Milfeulle, Milfeulle declines and causes earthquakes. The Angels are then treated to the chestnut cake, growing them to sizable proportions as well. Volcott finds out, but Mint found a solution in which to simply enlarge the base and everyone else.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":21108},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":5,"title":"Galaxy Angel Z: Memory Rally Chop Suey","airDate":"2002-02-17","airDateUtc":"2002-02-17T05:00:00Z","overview":"Ranpha and Milfeulle travel to a planet to investigate a lost technology, but decide to take part in a Takeshi's\u2005Castle type show instead. Ranpha does well, yet her successes are dogged by a long lost robot acquaintance.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":21109},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":6,"title":"Galaxy Angel Z: Deep Fog Sorbet","airDate":"2002-02-17","airDateUtc":"2002-02-17T05:15:00Z","overview":"Mint and Vanilla carry out a very important mission in which they must protect a bag in their possession. They arrive on a planet draped in mysterious fog. The planet's inhabitants take a suspicious interest in their luggage. As Mint tries to keep the bag away and run, she find inhabitants and the police everywhere, trying to take the bag. Mint and Vanilla finally gets quartered at the junkyard with TV screens pointing at their bag. Vanilla takes the bag and opens it, revealing a flash that goes back to the time when Mint and Vanilla were still traveling in their Emblem Frames. Mint thought it was a dream until she and Vanilla began to enter deep fog and land on the same planet seen earlier.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":21110},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":7,"title":"Galaxy Angel Z: Deep Fried Egg Rolls of Love","airDate":"2002-02-24","airDateUtc":"2002-02-24T05:00:00Z","overview":"Commander Huey, no relation to Commander Volcott, has a reunion with his old command: the Fairy Unit. As the now elderly women bicker and fuss, Huey reminisces about a dangerous mission they had once embarked on and how much he misses the now absent Spiphy. As the elderly women become too tired, Spiphy arrives, apologizing for being late to the party. Commander Huey chooses to leave the other elderly women behind and go out with Spiphy.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":21111},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":8,"title":"Galaxy Angel Z: Wedding Cake Combiner Special","airDate":"2002-02-24","airDateUtc":"2002-02-24T05:15:00Z","overview":"The Angels have been chosen to pilot a new weapons platform resembling a voltron which requires all five pilots to be fully trusting of one another. Ranpha, however, has accepted the proposal from the man of her dreams and has quit the Angels. When a dangerous enemy approaches, the troupe must find a replacement for Ranpha or convince her to give up happiness for the sake of saving the world. The Angels try Volcott and Normad to represent Ranpha, but the transformation of the voltron fails. Meanwhile, Ranpha began to miss the Angels and cancels the wedding to go back to the Angels. With all Angels reunited, the transformation still failed, making Volcott reveal a backup that made the transformation unnecessary.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":21112},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":9,"title":"Galaxy Angel Z: GA Analytic Tea-Ceremony","airDate":"2002-03-03","airDateUtc":"2002-03-03T05:00:00Z","overview":"A gang of bandits resembling the Angels are robbing the corrupt Dream Foundation's vaults of cash. Two of the military's top brass come to investigate. They are soon transfixed by Commander Huey's brilliant maneuvering in bringing the culprits to justice.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":21113},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":10,"title":"Galaxy Angel Z: Served to Taste Revenge Lunch","airDate":"2002-03-03","airDateUtc":"2002-03-03T05:15:00Z","overview":"Their soap opera's reception broken, the Angels send Vanilla out into space to repair the antenna. During the excursion, she is struck by lightning and killed. Normad, enraged, seeks revenge for his lost love on the remaining Angels at all costs. He transforms into a huge monster and strangles all of the other Angels forcing them to beg for mercy. As the Angels get tortured, they began to start speaking good words at him. Normad stops when Milfeulle points out Vanilla still moving. She appear to be dead because the space suit she was wearing became unresponsive after the lightning. Normad frees the other Angels and ridcules them for their personality with respect to Vanilla, causing the Angels to attack him.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":21114},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":11,"title":"Galaxy Angel Z: Revolving Sushi to the Hereafter","airDate":"2002-03-10","airDateUtc":"2002-03-10T05:00:00Z","overview":"One morning, the members of the Angel Brigade began switching bodies with each other (and Col. Volcott). Mint theorizes that it has something to do with the Lost Technology they were able to obtain from a previous mission. Now, they have another mission to do--stop a biker gang from causing trouble in a downtown area. The mission is a success thanks to Forte (in Milfeulle's body), but the next morning, one of the gang members break out of prison searching for Milfeulle. As the lost technology keeps switching the bodies around, the gang members becomes involved as well. Later, a team destroys the lost technology when studies showed that the device was meant to send souls to heaven. Everyone finds halos above their head.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":21115},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":12,"title":"Galaxy Angel Z: Steel Jambalaya","airDate":"2002-03-10","airDateUtc":"2002-03-10T05:15:00Z","overview":"Forte is haunted by memories of a lost technology battle droid that she and Commander Volcott encountered long ago on a mission that killed most of their team and nearly killed her as well. When another droid is discovered, she and Volcott are sent to face it and their past.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":21116},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":13,"title":"Galaxy Angel Z: In-Flight Meal (Excuses Curry Loaded with Ingredients)","airDate":"2002-03-17","airDateUtc":"2002-03-17T05:00:00Z","overview":"The Angel Brigade is returning home from a successful mission where they were able to stop the activation of the \"Ultimate Planet-Destroying Bio-Weapon.\" Still, none of them can understand how they managed to stop it. Who in the Angel Brigade gave the fatal blow? What will be the consequences for their actions?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":21117},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":14,"title":"Galaxy Angel Z: Love and Doubt Fried Cabbage Cake","airDate":"2002-03-17","airDateUtc":"2002-03-17T05:15:00Z","overview":"Normad is kidnapped by a stranger who finds him cute and valuable. Vanilla demands him back, but the stranger refuses. As Vanilla relentlessly chases the kidnapper, Normad believes that the stoic, green-haired Angel actually cares for him. Can Vanilla rescue Normad? How deep are her feelings for him, actually?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":21118},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":15,"title":"Galaxy Angel Z: Fresh Catch; Miraculous Boat-Wrap Sushi","airDate":"2002-03-24","airDateUtc":"2002-03-24T05:00:00Z","overview":"The Angels go to a resort planet for vacation, and it seems they can get a prize of one million GCs for catching a monstrous fish. Forte wants the prize money, while Milfeulle plans to cook the fish for a meuniere dinner. However, Mint does not believe it is possible to catch the fish and wants Forte to call it off, but Forte refuses. Things go awry when the giant fish knocks over their rented boat, damaging the radio (so now they can't call for help) and the fishing mechanism, trapping Forte in it. The other Angels decide to inflate a raft and abandon her on the boat just when the fish is returning for another attack. Forte stops the fish, but the fish drags the boat and Forte and damages another rented boat.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":21119},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":16,"title":"Galaxy Angel Z: Forbidden Meuniere; Alluring Grated Yam Topping","airDate":"2002-03-24","airDateUtc":"2002-03-24T05:15:00Z","overview":"The Angel Brigade's mission this time is to protect the \"Mock Sunfish\", an endangered\u2005species. This animal turns out to be the main ingredient used to make a beauty product guaranteed to keep one's skin looking eternally youthful. Realizing this, Forte, Ranpha, and Mint decide to capture one. Milfuelle, however, disagrees, saying the mock sunfish should be protected. On the planet's surface, Milfeulle happens upon a mock sunfish, which the other Angels try to hunt. She runs into many traps and gets sunburned. The other Angels kill the sunfish and start their feast. Milfeulle apologizes to the sunfish about failing to protect him, causing the dead sunfish to disappear and give Milfeulle beauty skin.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":21120},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":49,"title":"Now I get it! GA lecture 44","airDate":"2002-03-31","airDateUtc":"2002-03-31T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21078},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":17,"title":"Galaxy Angel Z: Moon-View Soba sans Moon","airDate":"2002-03-31","airDateUtc":"2002-03-31T05:00:00Z","overview":"It's Milfeulle's day off, and she plans to go hiking in the Transbaal area so she can see the flowering fields of the summit meadow. This also happens to be the one day when her misfortune takes over from her usual good luck. The more Milfeulle is plagued by misfortune, the more a galactic cataclysm is bound to happen. To prevent such occurrences, the Angel Brigade must prevent any stressful influences until Milfeulle goes to sleep again. As Milfeulle began her day off, she encounters many problems such as a ripped dress, a late bus, and an urbanized summit meadow. Forte and the others quickly fix up all the problems. In the end, Milfeulle goes to sleep happy about her day off.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":21121},{"seriesId":277,"episodeFileId":0,"seasonNumber":2,"episodeNumber":18,"title":"Galaxy Angel Z: A Never Before Seen Mystery Carpaccino","airDate":"2002-03-31","airDateUtc":"2002-03-31T05:15:00Z","overview":"The Angels are provided with new uniforms from HQ which seem to give them new superhuman powers. Soon though, their new abilities begin to take a toll on their friendship.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":21122},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Galaxy Angel Z: [Special Ep 19] Gun smoke & Tobacco Cassoulet","airDate":"2002-04-25","airDateUtc":"2002-04-25T04:00:00Z","overview":"Forte suddenly asks for leave for the day, leaving the Angels, Ranpha in particular, thinking she's off for a date. Meanwhile, Forte meets up with an old acquaintance who wants to ask her opinion on a rather pressing matter of life and death.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":21030},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"Galaxy Angel A: Old Man Detective Novel Rice Porridge","airDate":"2002-10-06","airDateUtc":"2002-10-06T04:00:00Z","overview":"The Angel Brigade has disbanded due to mistrust and hostility arising after someone made off with their steamed bun snacks. A new unit, the Twin Stars, consisting of brothers Kokomo and Maribu, have taken their place and have performed many achievements unseen by the Angel Brigade. When their Commander Mary informs Volcott that he is to be forcibly retired as he is no longer useful, he tries to reunite the Angels. As he reunites the Angels, he reveals to each Angel that he was responsible for the steamed bun snacks incident causing the Angels to torture him first.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":21123},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":2,"title":"Galaxy Angel A: Original Angel Parfait with the Works","airDate":"2002-10-06","airDateUtc":"2002-10-06T04:15:00Z","overview":"After Volcott convinced the Angels to reunite, Milfeulle wins the lottery and splits the winnings. However, the Twin Stars vacuum their money all up when capturing a lost technology that broke loose. The Angels break the vacuum to take back the money, freeing the lost technology as well. After an argument with the Twin Stars, the Angels disband again. As Volcott is forced to retire once more, the lost technology destroys the ceremony and the city. The Angels reunite again with heavy incentives and try to work with the Twin Stars to capture the lost technology. However, Kokomo and Malibu taunt Forte and Ranpha, resulting in them attacking the Twin Stars instead and placing the Angel Brigade on the wanted list.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":21124},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":3,"title":"Galaxy Angel A: Shuffle French without Dessert","airDate":"2002-10-13","airDateUtc":"2002-10-13T04:00:00Z","overview":"The military is not convinced that they should pay for both the Angel Brigade and the Twin Stars and convene a meeting to decide the matter. Milfeulle, late for the conference suddenly trips, making everyone worried. As the presiding officer becomes impatient, Volcott decides to cover for her. Matters become complicated when the officer calls Volcott for testimony. Another Angel tries to cover for Volcott and the cycle repeats until everyone is dressed as someone else. In the end, Kokomo and Malibu becomes dressed as members of the Angel Brigade. With all the Angel Brigade members in place, the officer finally agrees to start the meeting. Later, it is shown that after Milfeulle tripped, she fell asleep.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":21125},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":4,"title":"Galaxy Angel A: Special Appetizer without Main Dish","airDate":"2002-10-13","airDateUtc":"2002-10-13T04:15:00Z","overview":"Kokomo does not like being treated as a child despite being one. Using the fact that they work and train hard compared to Angel Brigade, Kokomo feels that they deserve more respect. Kokomo finally has it when he is forced to eat a nutrious lunch and storms out the door. Maribu tries to help clam him down after an altercation with Commander Mary, but is interrupted by an attack from a lost technology that divides to fill up space. The Twin Stars try to contain the chaos under control to gain the respect of their commander, but fails after the Angel Brigade shows up and teleports everything including Malibu and Kokomo to the neighboring planet and receives praise for saving the day.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":21126},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":5,"title":"Galaxy Angel A: Deluxe Milfeulle Surprise Sandwich","airDate":"2002-10-20","airDateUtc":"2002-10-20T04:00:00Z","overview":"The Angels are dispatched to a dying planet to retrieve a book of wisdom before it is destroyed. However, only Milfeulle's Emblem Frame is operational and all the Angels have to travel in her Frame. After almost crash landing, Milfeulle is left to stand guard and charged with not getting into trouble. Being Milfeulle though, she gets her head stuck in a wall while chasing a squirrel. As the other Angels are ready to leave, they find Milfeulle stuck and desperately try to save her before the planet explodes, knowing that only she can pilot her Frame. As they try many methods to break Milfeulle free, Milfeulle's luck causes a headstone to destroy the wall and free her. On the way home, Milfeulle gets her Frame stuck.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":21127},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":6,"title":"Galaxy Angel A: Hug Hug Fish Pot","airDate":"2002-10-20","airDateUtc":"2002-10-20T04:15:00Z","overview":"The Angels are dispatched to a planet where all the inhabitants, both flora and fauna, repay kindness with hugs. As Forte and Milfeulle both experience such hugs, Forte becomes freightened by it and tries to get Milfeulle to leave with her. However, Milfeulle sees more trouble and wants to help. Forte devises a clever plan to help out where they can while not getting hugged by wearing masks and disguising as other members on the Angel Base. Eventually, everyone including the Twin Stars and the commanders, gets hugged. With all of the troubles fixed, Forte and Milfeulle pull out something looking like a lost technology and leaves. Upon their departure, the entire planet hugs Forte and Milfeulle for pulling the thorn out.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":21128},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":15,"title":"Galaxy Angel A: Good-bye to our Steaming Teapot","airDate":"2002-10-24","airDateUtc":"2002-10-24T04:00:00Z","overview":"In a re-imagining of \"The Emperor's New Clothes\", Milfeulle and Vanilla are sent to a planet where the prince has a funny face. Unable to help herself, Milfeulle laughs at him at first sight and is jailed. Vanilla must try every trick in the book to help save her friend before she is executed.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":21137},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":7,"title":"Galaxy Angel A: Chilled Mackerel with a Prize","airDate":"2002-10-27","airDateUtc":"2002-10-27T04:00:00Z","overview":"On a war torn planet, the Angels, sans Milfeulle, become trapped in a cave with no provisions. While waiting for their compatriot to rescue them, they learn via radio that they have won the lottery. The four Angels and Normad must fight for survival and sanity as hopes of rescue fade fast. As starvation becomes too severe, Vanilla began to eat the fibers from Normad. The other Angels share the fibers as well. The eating continues until the CPU of Normad gets exposed. Later, Milfeulle frees them. The other Angels plan to take a vacation and celebrate their lottery winnings, but Volcott informs that the economy has plummeted due to failure of the mission, making their winnings worthless.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":21129},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":8,"title":"Galaxy Angel A: Slippery Pasta","airDate":"2002-10-27","airDateUtc":"2002-10-27T04:15:00Z","overview":"Mint is assigned to find the papers in the storage locker. While rummaging inside, Mint discovers an adorable duck mask. However, the mask is a lost technology and dissolves all her hair when she activates it. While looking up the information, Normad finds out, prompting Mint to go along with Normad. As the other Angels try to question about her coverup mask (a paper bag), she digresses and wards their off. Mint and Normad locate all the masks in the storage locker, hoping to find out that restores her hair. As she tests out each mask, the other Angels become impatient and demand explanations for Mint's delay. As they approach the storage locker, they find that Mint's face has nothing on.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":21130},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":9,"title":"Galaxy Angel A: Overpriced Salad Bar","airDate":"2002-11-03","airDateUtc":"2002-11-03T05:00:00Z","overview":"Out of snacks and water en route back from a mission, Ranpha stops at a planet for drinks. She encounters a malfunctioning, but well-meaning robot shop keeper and manages to get what she came for. However, when trying to pay with a currency the robot doesn't know, it lashes out at Ranpha, suspecting her to be a thief. Ranpha tries to escape in her Angel Frame, but the robot destroy it, making it inoperable. After a long grueling fight, the robot runs out of power and recharges. After the recharge, the robot resets. Ranpha tries to call for help, but destroys the telephone when Kokomo answers it. As Ranpha waits for help to arrive, she accidentally drinks bottled water, incurring another charge.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":21131},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":10,"title":"Galaxy Angel A: Angel Banana Discount","airDate":"2002-11-03","airDateUtc":"2002-11-03T05:15:00Z","overview":"The Angel Brigade decides to take on a private contractor for an employer for five times their military pay. They eagerly accept the seemingly menial tasks they are assigned, but are shocked to discover that with five times the pay comes at least five times the work. As the work becomes too grueling, Forte quits her task. In the end, the manager evaluates their overall result and finds that each Angel has caused additional damage with Milfeulle using her money to buy counterfeits, Vanilla luring a snow eel home, Mint dumping trash in her backyard, and Forte bring a plant to life. Ranpha appears to have done her task successfully until the pirate fleet shows up and attacks the manager. The Angel Bridge quickly leaves.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":21132},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":11,"title":"Galaxy Angel A: Painful Walnut Pie","airDate":"2002-11-10","airDateUtc":"2002-11-10T05:00:00Z","overview":"Mint is told by her physician that she has a possibly terminal illness: the kigurumi disease. If she does not want to die, she must never wear one ever again. Her comrades, hearing she is in the hospital, bring Mint gifts that they are sure will cheer her up. When the visits fail to raise Mint's sprits, she goes with them on a mission to a planet. To her dismay, the day of their arrival coincides with the centennial kigurumi festival. As the other Angels convince Mint to put on a kigurumi, Mint runs and eventually collapses. She wakes up to find that the Angels have put a kigurumi on. Mint ignores the physician's advice. Afterwards, the same physician tells Forte she has the weapons disease.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":21133},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":12,"title":"Galaxy Angel A: Angel Hotchpotch Taste Test","airDate":"2002-11-10","airDateUtc":"2002-11-10T05:15:00Z","overview":"The military is holding a Miss Female Soldier competition and all the Angels participate. As the judges are first convinced by Milfeulle's cooking, the other Angels all try to woo the judges with their expertise, each in turn undermining the others and resulting a deduction for Milfeulle. The judges finally take the Angels outside to complete their assessment. Each Angel continues to compete with each other until a new mission is called. They decide to take the judges with them on a mission to show them the true face of the Angel Brigade. During the mission, the Angels end up finding a female soldier capable of doing all of their expertise and hobby perfectly. She has rifles, pastry, and even an attractive body.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":21134},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":13,"title":"Galaxy Angel A: Ultra Rare Fortune Cookie","airDate":"2002-11-17","airDateUtc":"2002-11-17T05:00:00Z","overview":"After an easy mission the Angels look forward to relaxing. However, Ranpha taunts Milfeulle about her unfinished duties, causing a wormhole to swallow them up and deposit them on an uninhabited planet in an unknown region of space. The five must work together to survive even though discord erupts frequently when they attempt to use Milfeulle's luck to get them home. Milfeulle slowly becomes accustomed to the new life, but Ranpha, still unhappy about the new life, continues to push Milfeulle. Forte joins Ranpha and devises a plan to get Milfeulle to change her perception about the place by becoming criminals. As they try to rob Milfeulle and the other Angels, the other Angels block and scare them away.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":21135},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":14,"title":"Galaxy Angel A: Ultra Hot Kid's Meal","airDate":"2002-11-17","airDateUtc":"2002-11-17T05:15:00Z","overview":"The Twin Star team leaves a lost technology at the closed reception desk in a hurry to get ice cream. Passing by, Ranpha finds it and, mistaking it for a box of uirou, brings it to a meeting. When the Angels are all turned into children, Kokomo and Maribu must try to fix the situation before either of the two commanders discovers their blunder. As Kokomo and Maribu try to round up all the children and find a fix on their own, the children, especially Forte, play pranks on them and hide from being caught. The children are very clever, easily defeating Kokomo and Maribu. When they enter the conference room, the find out that the two commanders have turned into children as well. The two commanders both engage in play fights.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":21136},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":16,"title":"Galaxy Angel A: Mustached Beef Rib Rice Bowl with Rich Sauce","airDate":"2002-11-24","airDateUtc":"2002-11-24T05:00:00Z","overview":"While carrying a box of lost technology, Commander Volcott and Forte stumble causing it to release its contents. The next morning they discover that they have changed genders. Forte is initially unhappy with the gender change and gets criticize for the respect of women, but gets used to it. While they are more than comfortable with their new identities, Ranpha develops new and confusing feelings for her teammate. As Ranpha's desire for love explodes, Ranpha falls in love with Forte. Forte tries to escape only to find Ranpha lurking everywhere. When Ranpha marries Forte, Forte crashes the wedding by using the box and changing everyone's gender, including Ranpha.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":21138},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":17,"title":"Galaxy Angel A: Pour, Ambitious, Chilled Seasame Chicken","airDate":"2002-12-01","airDateUtc":"2002-12-01T05:00:00Z","overview":"Vanilla and Normad are left penniless on the side of the road selling trinkets to survive. Before long, a scientist offers to take her home if she will but help him save the world from his evil brother's monster robot. When the brother shows up, he has with him the remainder of the Angel Brigade who have teamed up with him to take over the world. Vanilla must choose between her friends and her duty.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":21139},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":18,"title":"Galaxy Angel A: A String of Handmade Noodles with No Connection","airDate":"2002-12-01","airDateUtc":"2002-12-01T05:15:00Z","overview":"The Angels are found to be dangling from the edge of a cliff, a single breath away from plummeting to their deaths. In typical Angel fashion, they soon turn to blaming each other for getting them into this predicament by recounting the events from earlier in the day. Earlier in the day, the Angel Brigade were at a picnic enjoy a new food from Milfeulle. However, due to their clumsiness, the food bounced off the edge of the cliff. Each Angel tries to catch it, making them fall over and leading to the current situation. The blame game becomes worse, eventually leading to a fight between the Angels. Milfeulle finally stops the fight, but gets too excited over the song the Angels were singing, reverting to them dangling.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":21140},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":19,"title":"Galaxy Angel A: Bamboo-Cutter Platter","airDate":"2002-12-08","airDateUtc":"2002-12-08T05:00:00Z","overview":"The Angels are sent to a war zone to help the outgunned soldiers. However, Ranpha can't be bothered once she discovers a baby in a bamboo grove. After hearing her tale, the rest of the Angels acquire their own babies and turn the base into a nursery. Forte initially does not accept, but gives in after Vanilla gives Forte a baby. As the Angels nurture the babies, Volcott accidentally spoils the fact that these bamboo babies are short-lived. When the bamboo babies have appeared to die, the Angels feel sad until they saw that the bamboo babies have grown up with new babies in hand. The Angels take care of the new babies and the cycle repeats, causing the soldiers to lose their patience and retaliate.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":21141},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":20,"title":"Galaxy Angel A: Wandering Cat Food","airDate":"2002-12-08","airDateUtc":"2002-12-08T05:15:00Z","overview":"Mint has lost her cat and Milfeulle has lost her wallet. Ranpha, using her new book on hypnosis, tries to help Milfeulle remember where she last had her billfold. Mint quickly realizes that the book was not on hypnosis but on summoning the dead. Now the spirit of her cat has taken over Milfeulle's body must to the delight of Mint and the fright of everyone else.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":21142},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":21,"title":"Galaxy Angel A: Frequently Ordered Sushi","airDate":"2002-12-15","airDateUtc":"2002-12-15T05:00:00Z","overview":"The Angels, angry by their meager salary packets decide to drown their sorrows by going to a sushi dojo. The curator, an octopus, challenges them to a fight when Forte, Ranpha, and Mint become obstinate. They accept, but he refuses to then share the rules with them.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":21143},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":22,"title":"Galaxy Angel A: Fortuitous Family Set","airDate":"2002-12-15","airDateUtc":"2002-12-15T05:15:00Z","overview":"One of the richest men in the country announces that, due to her helping him in a pinch not knowing he was wealthy, he would like Ranpha to become his adopted daughter. Ranpha quickly takes advantage of the situation, first spending money to upgrade her unit and her Emblem Frame. Then, Ranpha promotes herself to leader and bosses the other Angels around. When a mission is assigned, Ranpha orders the other Angels and Volcott to do the mission for her. Making poor decisions, the Angels get caught and fail the mission. The richest men then announces that they made a mistake in identifying the person, leaving Ranpha alone. However, the tribe that kidnapped the Angels quickly adopts Ranpha, becoming the princess of the tribe.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":67,"unverifiedSceneNumbering":false,"id":21144},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":23,"title":"Galaxy Angel A: All-You-Can-Eat Juicy Yakiniku","airDate":"2002-12-22","airDateUtc":"2002-12-22T05:00:00Z","overview":"Milfeulle awakes to find herself the lowest ranking member of an efficient and well disciplined Angel Brigade, ranking even blow Normad who is now a stuffed rabbit. When none of their usual favorites can incite them to break protocol, Milfeulle realizes that this is not her Angel Brigade and wakes up, discovering it was all a dream. However, each time Milfeulle wakes up, she sees a different Angel Brigade including the idol unit, the basketball team, and the miniature-sized Brigade. Back in the real world, the other Angel Brigade are bombarded by different Milfeulles from different dreams. Ranpha blamed Milfeulle for using a lost technology as her pillow.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":68,"unverifiedSceneNumbering":false,"id":21145},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":24,"title":"Galaxy Angel A: Glitter Clunk Mixed Juice","airDate":"2002-12-22","airDateUtc":"2002-12-22T05:15:00Z","overview":"Ranpha sets up the Angels for a mass date so she can home in on a handsome air force pilot. As the others date their dates, they decide to play the \"King Game\" where one person can order anyone else to do something. Events quickly go awry.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":69,"unverifiedSceneNumbering":false,"id":21146},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":25,"title":"Galaxy Angel A: Junk Ramen, Extra Noodles Available","airDate":"2002-12-29","airDateUtc":"2002-12-29T05:00:00Z","overview":"Milfeulle is trying to make a cake for a cooking competition and the rest of the Angels covertly assist her, hoping for a piece of the billion gala prize. When it is discovered they are four eggs short they send Vanilla out to get some more, but Vanilla doesn't seem her usual self. In fact, she seems more like a robot.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":70,"unverifiedSceneNumbering":false,"id":21147},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":26,"title":"Galaxy Angel A: Continuously Pushed Sweet Red Bean Soup","airDate":"2002-12-29","airDateUtc":"2002-12-29T05:15:00Z","overview":"The Angel Brigade bring back a lost technology that resembles a button. Despite their will power, they end up pushing the unmarked button to see what it does. As Milfeulle is desperate to see what the button does, Forte stops her, saying that it is their duty to protect the lost technology from being activated. Milfeulle presses it and receives a cooking pan. Normad also presses the button and receives a rug for Vanilla. Vanilla receives a prayer from god. Forte, Ranpha and Mint begin to realize the amazement, it seems as if they will receive whatever their greatest desire is. Forte, Ranpha, and Mint become greedy and try to fight for the button to receive their desires. However, there is a price.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":71,"unverifiedSceneNumbering":false,"id":21148},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":27,"title":"Galaxy Angel AA: Pyuru-riku Magical Steak","airDate":"2003-01-05","airDateUtc":"2003-01-05T05:00:00Z","overview":"A piece of lost technology arrives under heavy guard to the Angel Brigade's headquarters, they having been charged with protecting it. The lost technology is revealed to be a magical\u2005girl wand which will allow the user to use real magic so long as they believe with their whole heart that they can actually use magic while reciting the magic spell. The spell proves too embarrassing for any Angel to try to use it. However, curiosity and the quest for magic help them unite and overcome their embarrassment to reveal their true potential. The wand activates and prints a photo of them reciting the spell. The same soldiers come to take the embarrassing photo and the wand away for investigation, resulting in a war waged by the Angels.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":72,"unverifiedSceneNumbering":false,"id":21149},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":28,"title":"Galaxy Angel AA: Baum-kuhen to Worry Over","airDate":"2003-01-05","airDateUtc":"2003-01-05T05:15:00Z","overview":"Mint and Ranpha are stuck for the night on a planet. To pass the time, Mint eats some snacks Ranpha found earlier. In the morning she finds that the nuts she ate have turned her into a tree kami. Even though the locals now worship her as a deity, being a kami has drawbacks. Mint is unable to move, thus being unable to return home. Ranpha leaves Mint behind and returns home alone. As Mint thinks and sleeps, time passes by very quickly, resulting in many years passing by. The other Angels have made many attempts to wake up Mint, but have failed. As time moves on, Mint starts to see the world change through centuries. Finally, the other Angels, now in heaven, free Mint from Earth, turning her back into a seed.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":73,"unverifiedSceneNumbering":false,"id":21150},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":29,"title":"Galaxy Angel AA: Sun-dried Pork Feet","airDate":"2003-01-12","airDateUtc":"2003-01-12T05:00:00Z","overview":"During an evacuation exercise, the Angel Brigade discovers that they are too overweight for the escape pod whose AI mocks them and calls them pigs. Determined, the Angels don heavy pig outfits and trek across the desert to lose weight, to the inspiration of many. The Angels get televised everywhere. As they reach the end of the desert and are greeted by many people, the Angel Brigade chooses to eliminate them all. Now light enough for the escape pod, the escape pod takes off. However, the escape pod activates an emergency nourishment system as part of the exercise in which it force feeds nourishment into each Angel's mouth. The nourishment system overfeeds each Angel, making them excessively obese.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":74,"unverifiedSceneNumbering":false,"id":21151},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":30,"title":"Galaxy Angel AA: Top Imitation Goose","airDate":"2003-01-12","airDateUtc":"2003-01-12T05:15:00Z","overview":"After the results come back from the spaceship license renewal test, it is discovered that Milfeulle has failed her exam. In order to help her pass the retake, Commander Volcott calls in a special coach: Lieutenant \"The Rattlesnake\" Kensit, a hardened soldier and rogue. He and Milfeulle embark on a journey to the depths of society that will reveal the power within. Milfeulle does see any signs of him training her as he simply hacks into the computer to make her a pass. In the end, Milfeulle bakes a cake for him for his Birthday celebration. Meanwhile, Commander Volcott finds out that Milfeulle failed her exam only because her name was missing, making Milfeulle an auto fail.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":75,"unverifiedSceneNumbering":false,"id":21152},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":31,"title":"Galaxy Angel AA: The Sign is Boullion","airDate":"2003-01-19","airDateUtc":"2003-01-19T05:00:00Z","overview":"When Milfeulle is killed by a group of snobbish women, the Angels declare revenge against them. In typical sports anime style, they decide to settle the score by challenging the women to a game of volleyball.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":76,"unverifiedSceneNumbering":false,"id":21153},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":32,"title":"Galaxy Angel AA: Acting Angel Seafood Soup","airDate":"2003-01-19","airDateUtc":"2003-01-19T05:15:00Z","overview":"Ranpha's niece and her friend are visiting the Angel headquarters and Ranpha is nervous. She may have told a white lie about her position in the Brigade. The other Angels decide to play along, but it is soon apparent that being the Commander wasn't the only lie Ranpha told.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":77,"unverifiedSceneNumbering":false,"id":21154},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":33,"title":"Galaxy Angel AA: Specialty Rocky Fish Cake","airDate":"2003-01-26","airDateUtc":"2003-01-26T05:00:00Z","overview":"The enemy has attacked the Transbaal capital in search of \"the stone,\" an artifact which will turn rocks to gold, cure disease, and grant eternal life. The Angels volunteer to take the stone with them to lure the enemy away from the capital, but soon fall prey to their own weaknesses.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":78,"unverifiedSceneNumbering":false,"id":21155},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":34,"title":"Galaxy Angel AA: Broken-up Hot Spring Rice Cracker","airDate":"2003-01-26","airDateUtc":"2003-01-26T05:15:00Z","overview":"On the Angels' day off, Milfeulle wants everyone to spend the day having fun at the onsen. Everyone else, though, has their own idea of fun and they all go their separate ways. Ranpha finds men, Forte finds weapons, Mint finds something worth discovering, and Vanilla rock climbs. Depressed, Milfeulle tries to find ways of amusing herself without her friends, wishing all the while that they would come back. As Milfeulle almost runs out of hope, Vanilla accidentally uncovers a hidden hot springs, spilling water out and washing her and the other Angels back down to Milfeulle. Milfeulle enjoys the rest of the day off while the other Angels have been knocked out by the water.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":79,"unverifiedSceneNumbering":false,"id":21156},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":35,"title":"Galaxy Angel AA: Competitive Sake Full of Predictions","airDate":"2003-02-02","airDateUtc":"2003-02-02T05:00:00Z","overview":"After Ranpha buys a new fortune telling board, she runs into Maribu who is critical of her dismissal of science. To prove his point, he challenges her to a duel in which he puts his future predicting robot in competition with Ranpha's board to see which is more accurate. With the loser providing free meals and deserts for everyone, all involved try to make the predictions come true. However, both devices are correct in every question. The other people figure out that the world changes according to predictions from both devices. When Mint asks a question with only one answer and both devices make different answers, the world wipes out and reverts to when the Galaxy Angel Project was being proposed.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":80,"unverifiedSceneNumbering":false,"id":21157},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":36,"title":"Galaxy Angel AA: Jiggly Pudding","airDate":"2003-02-02","airDateUtc":"2003-02-02T05:15:00Z","overview":"After meeting a strange fortune teller in the city, the Angels are disappearing one by one, just as predicted. Only Mint, as the last one remaining, can help find and bring them back home.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":81,"unverifiedSceneNumbering":false,"id":21158},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":37,"title":"Galaxy Angel AA: Deep Fried Love Letter","airDate":"2003-02-09","airDateUtc":"2003-02-09T05:00:00Z","overview":"Vanilla gets a love letter from a mysterious stranger. When it becomes apparent that she does not know what to do about dates (or knows too much), the Angels band together to help her through the process of love. Ranpha gives her a dating sim to help Vanilla. However, Normad is jealous of Vanilla, feeling that Vanilla has dumped her for this new person. As Vanilla progresses to the point where she gets a night out with the stranger, Normad cannot take it any more and warps back in time to make sure he is Vanilla's love, going far as sending love letters and asking Maribu and Kokomo for assistance. The mysterious stranger may actually be Normad from another time period.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":82,"unverifiedSceneNumbering":false,"id":21159},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":38,"title":"Galaxy Angel AA: Galatic Rose Tea","airDate":"2003-02-09","airDateUtc":"2003-02-09T05:15:00Z","overview":"Ranpha, returning from a mission, encounters a reckless spacecraft which almost crashes into her. She pursues the pilot of the ship to tell her off, but when the other vessel comes under attack by aliens Ranpha decides to aid the obstinate captain. As Ranpha enters the spacecraft to find the captain, she is told many times to leave. She finds the cockpit and realizes that there is nobody on board except a hologram. The captain tells Ranpha that she is already dead and the spacecraft is destined to die. Ranpha accepts the fate and leaves.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":83,"unverifiedSceneNumbering":false,"id":21160},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":39,"title":"Galaxy Angel AA: Premium Tuna that just won\\'t Slip","airDate":"2003-02-16","airDateUtc":"2003-02-16T05:00:00Z","overview":"When Ranpha falls for new man, whom she calls \"perfect,\" the other Angels brush it off as another of her whims. Soon, though, the man of Ranpha's dreams comes to train the Brigade and the Angels decide that not only was Ranpha right, but that maybe he is too perfect. The Angels try to challenge him with their expertise and hobby, only to have the man correct problems and improve it. As the Angels see the man leave the bast, the man appears to show deficiencies, but the deficiencies are fake and misleading and the man leaves perfectly.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":84,"unverifiedSceneNumbering":false,"id":21161},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":40,"title":"Galaxy Angel AA: Assort Rock Candy Delivery","airDate":"2003-02-16","airDateUtc":"2003-02-16T05:15:00Z","overview":"Forte is charged, with Maribu, to transport a terrible prisoner to another facility. The inmate is so dangerous, having destroyed a planet, that he is encased in stone. While driving the truck carrying the boulder, Forte begins to imagine the kind of dashing rogue that would be so dangerous and begins to let her curiosity get the better of her, much to Maribu's distress. Forte's curiosity causes the boulder to break more, leaving nothing but a black ball. She hears warnings and threats from the inmate. In the end, Forte drops the ball and began to torture it, trying to get him to show his power.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":85,"unverifiedSceneNumbering":false,"id":21162},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":41,"title":"Galaxy Angel AA: Magic Pot Roast","airDate":"2003-02-23","airDateUtc":"2003-02-23T05:00:00Z","overview":"Milfeulle has been given a magic pot by a street vendor which grants the owner three wishes. After catching wind of this, Forte, Ranpha, and Mint all try to get Milfeulle to use her wishes on them, which soon strains their friendship.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":86,"unverifiedSceneNumbering":false,"id":21163},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":42,"title":"Galaxy Angel AA: Sub-zero Hot Hot Dog","airDate":"2003-02-23","airDateUtc":"2003-02-23T05:15:00Z","overview":"Milfeulle is charged with bringing a soldier home from duty. He is long over-due back at base and the planet he was deployed to has long been abandoned and is close to exploding. Milfeulle quickly realizes that the soldier is suffering from PTSD which is causing him to refuse to leave with her.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":87,"unverifiedSceneNumbering":false,"id":21164},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":43,"title":"Galaxy Angel AA: Retry Rice","airDate":"2003-03-02","airDateUtc":"2003-03-02T05:00:00Z","overview":"The Angels have a lost technology that, when activated, will destroy the universe. The only way to shut it down is to play seven-person, three-letter shiritori with seven laps. Milfeulle is not very good at this game, but Forte knows a turtle which can turn back time an hour. The Angels and Twin Stars continue to mess up until Maribu tells them to stop after calculating that the odds of winning are 23 trillion to one. Maribu instead brings out a bird, which combined with Forte's turtle, allows them to go back to any time. Everyone warps back in time to stop the inventor from building the lost technology in the future. They succeed, but find out that they cannot warp back to the future.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":88,"unverifiedSceneNumbering":false,"id":21165},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":44,"title":"Galaxy Angel AA: An Offering That you Must Not Eat","airDate":"2003-03-02","airDateUtc":"2003-03-02T05:15:00Z","overview":"Normad beings feeling like he's being taken advantage of. He is offered a chance at a new life with a new body by a mad scientist. Soon he is seeking revenge on the Angel Brigade for their past sins.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":89,"unverifiedSceneNumbering":false,"id":21166},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":45,"title":"Galaxy Angel AA: Sneaky Seaweed Wrap","airDate":"2003-03-09","airDateUtc":"2003-03-09T05:00:00Z","overview":"The Angel Brigade is attacked by a seaweed kami who is angry over the abuses it has taken at the hands of the Angels. In order for the deity to return to the sea, the Angels decide to feign loyalty and offer praise to the seaweed.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":90,"unverifiedSceneNumbering":false,"id":21167},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":46,"title":"Galaxy Angel AA: Fish Jerky Over a Thousand Nights","airDate":"2003-03-09","airDateUtc":"2003-03-09T05:15:00Z","overview":"Vanilla returns from vacation with an uncountable number of boxes containing fish jerky. While everyone else is pleased, Kokomo refuses to eat any. Vanilla is determined that he try some and tracks him to a wild west town to make sure he does. The owner of a restaurant initially tries to shut Vanilla away, but Vanilla floods the entire town with fish jerky, causing mass hysteria throughout the town. The owner changes his stance and forces Kokomo to eat fish jerky, prompting him to escape. The chase lasts for many years until Vanilla gets frozen and everyone becomes old. Everyone else, while old, still enjoys fish jerky, but Kokomo continues to run when he accidentally unfreezes Vanilla.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":91,"unverifiedSceneNumbering":false,"id":21168},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":47,"title":"Galaxy Angel AA: Anyway Angel Morning Set","airDate":"2003-03-16","airDateUtc":"2003-03-16T05:00:00Z","overview":"With everyone busy or gone, Commander Volcott has no one to turn to when enemies attack their base. To fix this problem, the military orders that the Angels hire a new recruit. Only, the Angels are the final decision makers. They first reject all the recruits, but each find their own recruit. No one is in agreement about whom to hire and forms teams against one another. As each Angel abuses their recruit with their hobbies, the recruits are exhausted and propose to form their own Brigade. The original Angels felt betrayed and ran campaigns to find replacements. When another mission is called, a large crowd of new Angels responds, jamming the base up. The original Angels agree they went too far.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":92,"unverifiedSceneNumbering":false,"id":21169},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":48,"title":"Galaxy Angel AA: Starchild Sausage","airDate":"2003-03-16","airDateUtc":"2003-03-16T05:15:00Z","overview":"Kokomo and Maribu miss their mother and seek out Normad who has technology that will let them see on a screen the vague memories they have of her. The only image they get is of a woman with a star shaped birthmark on her neck. When Normad reveals that the image is from the future, that the brothers were sent into the past, and their mother could be among them on base, they go in search of the star. As they check the necks of each Angel, they find the star on Vanilla and begin to treat Vanilla as if it was their mother. As Kokomo and Maribu become too protective are start to fight, Commander Mary and another person with the star tells them to stop. Meanwhile, Vanilla takes the star off, revealing it to be fake.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":93,"unverifiedSceneNumbering":false,"id":21170},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":49,"title":"Galaxy Angel AA: Fresh Packed Fish","airDate":"2003-03-23","airDateUtc":"2003-03-23T05:00:00Z","overview":"After Commander Volcott faints and is taken to hospital, he charges the Angels to be the fighters of justice before passing away. Thereafter, the Angels play out a clich\u00e9 52 episode super\u2005sentai TV program in fifteen minutes.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":94,"unverifiedSceneNumbering":false,"id":21171},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":50,"title":"Galaxy Angel AA: Prohibited String-pulling Fermented Beans","airDate":"2003-03-23","airDateUtc":"2003-03-23T05:15:00Z","overview":"At the request of Mint, Ranpha and Milfeulle are sent to a planet in which customs and protocol are held above all else. The king of the planet has a dangly hair much like a pullstring and Milfeulle can not help but point it out. Despite death glares from the court royals, they are invited to dinner where their will to suppress the urge to pull the king's hair is pushed to its limit. Ranpha and Milfeulle then sneaks into king's bedroom and pull the string, causing the king to act differently and explode. Ranpha and Milfeulle turn into kings and Mint, the former victim, escapes. Kokomo and Maribu arrive next and begin to feel the urge to pull the king's hair as they greet, repeating the cycle.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":95,"unverifiedSceneNumbering":false,"id":21172},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":51,"title":"Galaxy Angel AA: Final Dish REBECCA (Part 1)","airDate":"2003-03-30","airDateUtc":"2003-03-30T05:00:00Z","overview":"Note: Episodes 51 and 52 are a single episode which is played straight.\r\n\r\nThe Angels are sent to find an escaped convict who was sentenced to a 2000 year sentence for murdering 1\/3 the population of planet Transbaal 500 years ago. The convict's name is Rebecca and, despite the crime she was convicted for, there seems to be no picture of her. What little information they can gather about the escape leads Forte, Ranpha and Mint to an abandoned satellite above Transbaal. Arriving, they find a recently used ship, but no life signs. After more investigating, Kokomo and Maribu inform the Angels that Rebecca was documented as being incarcerated in a cell that was already occupied. The occupant then died, but no one had ever been assigned since, leading Mint to the conclusion that Rebecca never existed and that she could have been a cover up for a military accident.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":96,"unverifiedSceneNumbering":false,"id":21173},{"seriesId":277,"episodeFileId":0,"seasonNumber":3,"episodeNumber":52,"title":"Galaxy Angel AA: Final Dish REBECCA (Part 2)","airDate":"2003-03-30","airDateUtc":"2003-03-30T05:15:00Z","overview":"After discovering that Rebecca may not be real, Forte, Ranpha and Mint are ambushed on the satellite. Meanwhile, Milfeulle is attacked by the prison guard who stood watch over Rebecca for years. Once Vanilla disarms him, he confesses that Rebecca is real and that she led a very sad and lonely existence. After fighting for some time, Forte realizes that Rebecca is actually the incarnation of the hatred the people of Transbaal felt after their world had been set aflame. Vanilla and Milfeulle learn that the archetype for Rebecca was a young female soldier who knew the people needed a scapegoat and offered herself to be one. They locate the scapegoat's prison (a grave) and take the casket to the Satellite. The scapegoat is awakened and cries out to Rebecca. Rebecca is shocked to see her true form and even more so when she is embraced by her. Overwhelmed with grief, Rebecca relents and vanishes. The scapegoat is returned to her prison for the remainder of her sentence. As the Angels leave they pray that the world is a better place when the scapegoat's sentence is over and she is free once more.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":97,"unverifiedSceneNumbering":false,"id":21174},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Galaxy Angel AA: [Special Ep 53] Very Fried Chicken","airDate":"2003-08-22","airDateUtc":"2003-08-22T04:00:00Z","overview":"The Angel Brigade and Twin Star team have been entered into a birdman\u2005rally by their commanders to see who will get the most of the budget this year. The twins have a glider, while the Angels have a special craft. Milfeulle and Vanilla have to manually carry it to the rally due to shipping cancellation, leading to Commander Volcott in a chicken suit running the first rounds. The loch\u2005ness\u2005monster shows up and disrupts the competition, but the Twin Star was able to set the lead. As Commander Mary reveals that she caused the cancellation, the other Angels quickly bring the craft to the rally. The craft fails, but Milfeulle helicopters to the monster, making her the winner.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":98,"unverifiedSceneNumbering":false,"id":21031},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Galaxy Angel AA: [Special Ep 54] An Oyster Fried Very Shameful","airDate":"2003-11-28","airDateUtc":"2003-11-28T05:00:00Z","overview":"As punishment for eating Milfeulle's sweet rice buns, Forte has been sent to a holiday planet and must pose, in a frilly dress, for a picture with a man whom she must flirt with. To keep an eye on her, Normad is sent along. Forte and Normad soon forge a temporary alliance and plot to get out of the situation as fast as possible.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":99,"unverifiedSceneNumbering":false,"id":21032},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Galaxy Angel S: [OVA 01] Ghost in the Jam","airDate":"2004-04-23","airDateUtc":"2004-04-23T04:00:00Z","overview":"During an infiltration of the Angels' base, Milfeulle grabs a grenade and runs off with it, sacrificing herself to save her friends. Later on, she wakes up, believing it all to have been a dream. Things seem off when Commander Volcott and the others can not see or hear her. Realizing she is now a ghost, Milfeulle must come to terms with memories of her friends, both good and bad.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":100,"unverifiedSceneNumbering":false,"id":21033},{"seriesId":277,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Galaxy Angel S: [OVA 02] Shuffle Odon","airDate":"2004-04-23","airDateUtc":"2004-04-23T04:15:00Z","overview":"Commanders Mary and Volcott have been ordered to switch commands. Neither is very happy with the situation, but they make do. That is, until the Twin-star boys insult Commander Volcott's mustache. Enraged, he reverts to his old army self, the \"White Supernova Wolf\". The Angels try desperately to control their former leader while Mary sneaks off for some tea.","hasFile":false,"monitored":false,"absoluteEpisodeNumber":101,"unverifiedSceneNumbering":false,"id":21034},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":1,"title":"Galaxy Angel X: Ordinary Extraordinary Chocolates","airDate":"2004-07-07","airDateUtc":"2004-07-07T04:00:00Z","overview":"The Angel Brigade find themselves in a mundane existence, having ordinary lives. Have they found peace or despair?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":102,"unverifiedSceneNumbering":false,"id":21175},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":2,"title":"Galaxy Angel X: Steamed, Thinking of You","airDate":"2004-07-07","airDateUtc":"2004-07-07T04:15:00Z","overview":"A terminally ill girl, Chitose Karasuma, has a dying wish to become one of the Angel Brigade. Her efforts to become friends with each member do not go quite as planned.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":103,"unverifiedSceneNumbering":false,"id":21176},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":3,"title":"Galaxy Angel X: Lucky Monkey Sweating Crying Hole-Punched, Rice Cracker!","airDate":"2004-07-14","airDateUtc":"2004-07-14T04:00:00Z","overview":"The Angel Brigade learns the extraordinary benefits of chikuwa.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":104,"unverifiedSceneNumbering":false,"id":21177},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":4,"title":"Galaxy Angel X: Trial Price for a Slice of Frienship","airDate":"2004-07-14","airDateUtc":"2004-07-14T04:15:00Z","overview":"Chitose wants to become friends with Milfeulle, but she can't help but test their bond at every opportunity.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":105,"unverifiedSceneNumbering":false,"id":21178},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":5,"title":"Galaxy Angel X: Commander Flavoured Invasion Spice","airDate":"2004-07-21","airDateUtc":"2004-07-21T04:00:00Z","overview":"The commander has been taken seriously ill and requires an operation. When the hospital staff turn out to be aliens, can Mint suppress her anxiety during her diet from jelly beans?","hasFile":false,"monitored":true,"absoluteEpisodeNumber":106,"unverifiedSceneNumbering":false,"id":21179},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":6,"title":"Galaxy Angel X: Marriage Meeting Ice-cream","airDate":"2004-07-21","airDateUtc":"2004-07-21T04:15:00Z","overview":"Forte has been invited to meet a potential suitor. She becomes a spider.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":107,"unverifiedSceneNumbering":false,"id":21180},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":7,"title":"Galaxy Angel X: Soup That has Simmered Extra Long","airDate":"2004-07-28","airDateUtc":"2004-07-28T04:00:00Z","overview":"While searching for lost technology, the Angel Brigade finds a small dog which Forte dislikes. She throws a stick at it while quoting a proverb about dogs and sticks. The stick was the lost technology and its power turns proverbs into reality. Now, to return everything to normal, the Angels must outwit wisdom.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":108,"unverifiedSceneNumbering":false,"id":21181},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":8,"title":"Galaxy Angel X: Sadness and Hatred Tofu","airDate":"2004-07-28","airDateUtc":"2004-07-28T04:15:00Z","overview":"Forte has been murdered. The scene, being difficult to reach, casts suspicion on the rest of the Angels. In typical soap\u2005opera style, the investigation takes numerous and unforeseen twists and turns to finally discover who the true culprit is.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":109,"unverifiedSceneNumbering":false,"id":21182},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":9,"title":"Galaxy Angel X: Go Ahead, Rice Cooker","airDate":"2004-08-04","airDateUtc":"2004-08-04T04:00:00Z","overview":"While slacking off in the lost technology storage locker, Chitose discovers a rice cooker which will suck in items (and people) around it, turning them into rice. Upon eating the rice, the user gains the traits of the items consumed. Chitose plots revenge upon the Angels with her new cooker.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":110,"unverifiedSceneNumbering":false,"id":21183},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":10,"title":"Galaxy Angel X: Love Rice","airDate":"2004-08-04","airDateUtc":"2004-08-04T04:15:00Z","overview":"In order to bring an anti-government army leader to justice, the Angels must infiltrate a high school and risk life, limb, and love for their mission.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":111,"unverifiedSceneNumbering":false,"id":21184},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":11,"title":"Galaxy Angel X: Memory-full Sukiyaki","airDate":"2004-08-11","airDateUtc":"2004-08-11T04:00:00Z","overview":"When the Angels' sukiyaki party goes awry due to using cursed ingredients as a means to skimp on money, only Milfeulle seems to be able to save the day.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":112,"unverifiedSceneNumbering":false,"id":21185},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":12,"title":"Galaxy Angel X: History is a Princess Melon","airDate":"2004-08-11","airDateUtc":"2004-08-11T04:15:00Z","overview":"The cast tell a tale of epic proportions in this historical drama narrated by Commander Mary.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":113,"unverifiedSceneNumbering":false,"id":21186},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":13,"title":"Galaxy Angel X: Upstart Agaricus","airDate":"2004-08-18","airDateUtc":"2004-08-18T04:00:00Z","overview":"Ranpha decides that the Angels should start a rock band. However, her idea of rock is somewhat different from the norm. Meanwhile, having been kicked out of the group, Forte goes on a soul finding quest.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":114,"unverifiedSceneNumbering":false,"id":21187},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":14,"title":"Galaxy Angel X: Caring Soba","airDate":"2004-08-18","airDateUtc":"2004-08-18T04:15:00Z","overview":"Commander Volcott has a typical day of waking up the Angels, feeding them, mopping up after them, and falling in love while getting groceries.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":115,"unverifiedSceneNumbering":false,"id":21188},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":15,"title":"Galaxy Angel X: Boiled Tiger Of Trauma","airDate":"2004-08-25","airDateUtc":"2004-08-25T04:00:00Z","overview":"While transporting Commander Volcott to a trial for testimony, the Angels are ambushed. Suddenly, everyone starts having flashbacks of traumatic experiences. The team must overcome their pasts to outwit the guerrilla warriors out for their heads.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":116,"unverifiedSceneNumbering":false,"id":21189},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":16,"title":"Galaxy Angel X: Today's Corporation in Steamed Turnip","airDate":"2004-08-25","airDateUtc":"2004-08-25T04:15:00Z","overview":"After Commander Volcott is suddenly fired, the Angels unwittingly agree to help him start an independent business. Soon, their new candy flute is a huge hit, but they will have to outmaneuver their competitors to stay ahead.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":117,"unverifiedSceneNumbering":false,"id":21190},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":17,"title":"Galaxy Angel X: Hitman's Russian Tea","airDate":"2004-09-01","airDateUtc":"2004-09-01T04:00:00Z","overview":"Milfeulle is targeted by a professional hit-man. However, his skills are put to the test when her legendary luck rears its ugly head.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":118,"unverifiedSceneNumbering":false,"id":21191},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":18,"title":"Galaxy Angel X: Avenger Ale","airDate":"2004-09-01","airDateUtc":"2004-09-01T04:15:00Z","overview":"Normad has had enough of Forte's treatment of him and vows revenge. Chitose, eager to help, uses lost technology to give him arms and legs. These do him little good as he is not strong enough to defeat Forte. Soon, Normad is training hard and with Chitose as his manager, a boxing anime breaks out.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":119,"unverifiedSceneNumbering":false,"id":21192},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":19,"title":"Galaxy Angel X: Combustible Fried Broken Heart","airDate":"2004-09-08","airDateUtc":"2004-09-08T04:00:00Z","overview":"A fire has broken out in the Angel's quarters. To Mint's dismay all of her kigurumi have been destroyed. With their friend close to the edge of despair, the others try their best to cheer her up. However, they find it increasingly difficult to conceal the identity of the culprit who started the blaze.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":120,"unverifiedSceneNumbering":false,"id":21193},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":20,"title":"Galaxy Angel X: Stewed Love of Laughing Rush","airDate":"2004-09-08","airDateUtc":"2004-09-08T04:15:00Z","overview":"While walking at night, Ranpha finds a tatami mat in an alley. It turns out to have the power to fly and protect its master which Ranpha finds useful. But when a rich playboy wants to sweep Ranpha off her feet, tatami-san finds himself in the way.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":121,"unverifiedSceneNumbering":false,"id":21194},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":21,"title":"Galaxy Angel X: Hi! Crepe Jack","airDate":"2004-09-15","airDateUtc":"2004-09-15T04:00:00Z","overview":"On their way to a long awaited vacation, the Angels are alerted to the fact there is a hijacker on board and they must find him before the shuttle lands. Along with Commander Mary, they must use their elite sleuthing skills to apprehend the criminal before it is too late.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":122,"unverifiedSceneNumbering":false,"id":21195},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":22,"title":"Galaxy Angel X: Rainy Blue","airDate":"2004-09-15","airDateUtc":"2004-09-15T04:15:00Z","overview":"The Angel Brigade is summoned to a planet that has had constant rain for years. The inhabitants suspect that a lost technology that has somehow fused itself to a war orphan is to blame. Milfeulle tries to become friends with the little girl in question, unaware of the government's plan to stop the rain.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":123,"unverifiedSceneNumbering":false,"id":21196},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":23,"title":"Galaxy Angel X: Angelic Steamed Fish Paste","airDate":"2004-09-22","airDateUtc":"2004-09-22T04:00:00Z","overview":"Chitose is finally transferred into the Angel Brigade, but quickly realizes that she isn't really needed. After a pep talk from Normad, she decides that she shouldn't expect to be loved for nothing and uses a lost technology to turn herself into a doll in hopes of being useful to the rest of the Angels.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":124,"unverifiedSceneNumbering":false,"id":21197},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":24,"title":"Galaxy Angel X: Boiled Flounder in Curry","airDate":"2004-09-22","airDateUtc":"2004-09-22T04:15:00Z","overview":"Vanilla seems to be infatuated with a man she bumped into a week ago, enough that she is stalking him. Normad is frightened of this new rivalry and becomes terrified when she starts presenting the man with gifts. The rest of the Angels are simply happy that Vanilla has finally found someone to love.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":125,"unverifiedSceneNumbering":false,"id":21198},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":25,"title":"Galaxy Angel X: Wish Bound Together with Eggs","airDate":"2004-09-29","airDateUtc":"2004-09-29T04:00:00Z","overview":"While sorting lost technologies, Chitose finds a book which makes things written in it come true. At last, her dreams of getting revenge on the Angel Brigade might be realized.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":126,"unverifiedSceneNumbering":false,"id":21199},{"seriesId":277,"episodeFileId":0,"seasonNumber":4,"episodeNumber":26,"title":"Galaxy Angel X: All Okay Location Lunchbox","airDate":"2004-09-29","airDateUtc":"2004-09-29T04:15:00Z","overview":"After three years of being on the air, Galaxy Angel is coming to an end and the actors are sad to see it go. Having played the Angels for so long they are still referring to each other by their character names. But before taping finishes, the Transbaal capital is attacked. With the real Galaxy Angels nowhere to be found it is up to this group of actors to save the day.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":127,"unverifiedSceneNumbering":false,"id":21200}],"episodeFile":[{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Resort Flavored, Good Luck Package-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E01.Resort Flavored, Good Luck Package-SDTV.mkv","size":118805225,"dateAdded":"2021-03-18T13:30:55.468002Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":953676,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17819},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Pan-fried Gambling with Milfeulle Sauce-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E02.Pan-fried Gambling with Milfeulle Sauce-SDTV.mkv","size":119021436,"dateAdded":"2021-03-18T13:32:37.323247Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":954349,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17820},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Bargain Asteroid and Stir-fry Vanilla-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E03.Bargain Asteroid and Stir-fry Vanilla-SDTV.mkv","size":119131282,"dateAdded":"2021-03-18T13:34:19.150733Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":956350,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17821},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E04.3 O'clock delivery, angel combination platter-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E04.3 O'clock delivery, angel combination platter-SDTV.mkv","size":120663810,"dateAdded":"2021-03-18T13:36:00.871103Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":971170,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17822},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Pirate-Style School Memory Terrine-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E05.Pirate-Style School Memory Terrine-SDTV.mkv","size":123791479,"dateAdded":"2021-03-18T13:37:42.628335Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1001320,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17823},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Forte's Ruinous Stew and a Dash of trouble-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E06.Forte's Ruinous Stew and a Dash of trouble-SDTV.mkv","size":121877030,"dateAdded":"2021-03-18T13:39:24.508394Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":982865,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17824},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Fun Park Specialties with Chicken Mint Compote-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E07.Fun Park Specialties with Chicken Mint Compote-SDTV.mkv","size":121793685,"dateAdded":"2021-03-18T13:41:06.527665Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":982014,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17825},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Milfeulle's All-Natural Syrupy Inspection-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E08.Milfeulle's All-Natural Syrupy Inspection-SDTV.mkv","size":118961658,"dateAdded":"2021-03-18T13:42:48.651893Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":954432,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17826},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Roast Beef of Lost Technology-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E09.Roast Beef of Lost Technology-SDTV.mkv","size":120273775,"dateAdded":"2021-03-18T13:44:31.232817Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":968504,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17827},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Rouge-Flavored Spring Rolls of Love-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E10.Rouge-Flavored Spring Rolls of Love-SDTV.mkv","size":122811403,"dateAdded":"2021-03-18T13:46:12.999305Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":992990,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17828},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Gun Shot Bandage Roll Sushi Bowl-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E11.Gun Shot Bandage Roll Sushi Bowl-SDTV.mkv","size":119978268,"dateAdded":"2021-03-18T13:47:54.696549Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":964277,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17829},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Glazed Baseball and Negligee-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E12.Glazed Baseball and Negligee-SDTV.mkv","size":122822106,"dateAdded":"2021-03-18T13:49:36.39409Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":993143,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17830},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Great Kidnapping Scheme-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E13.The Great Kidnapping Scheme-SDTV.mkv","size":119760256,"dateAdded":"2021-03-18T13:51:18.231799Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":963550,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17831},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Downtown Soulfood Oden-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E14.Downtown Soulfood Oden-SDTV.mkv","size":139492041,"dateAdded":"2021-03-18T13:53:00.286128Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1155046,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17832},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Pot-au-Feu of Lost Things-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E15.Pot-au-Feu of Lost Things-SDTV.mkv","size":124877862,"dateAdded":"2021-03-18T13:54:41.972786Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1012484,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17833},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Grilled Cased Girl-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E16.Grilled Cased Girl-SDTV.mkv","size":127001937,"dateAdded":"2021-03-18T13:56:23.693274Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1032167,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17834},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Canned Angel with Noodles-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E17.Canned Angel with Noodles-SDTV.mkv","size":127883710,"dateAdded":"2021-03-18T13:58:05.341639Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1041072,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17835},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E18.Monkey Salvage Combo-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E18.Monkey Salvage Combo-SDTV.mkv","size":127048247,"dateAdded":"2021-03-18T13:59:46.866893Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1032664,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17836},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Angel Kiss Gateau de Milfeulle-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E19.Angel Kiss Gateau de Milfeulle-SDTV.mkv","size":129285615,"dateAdded":"2021-03-18T14:01:28.553087Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1054129,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17837},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Special Survival Combo-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E20.Special Survival Combo-SDTV.mkv","size":129626214,"dateAdded":"2021-03-18T14:03:10.338112Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1057412,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17838},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Deco Pizza-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E21.Deco Pizza-SDTV.mkv","size":124343884,"dateAdded":"2021-03-18T14:04:51.965524Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1007728,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17839},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E22.Mascot Girl Special Secret Baked Wrap-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E22.Mascot Girl Special Secret Baked Wrap-SDTV.mkv","size":126945890,"dateAdded":"2021-03-18T14:06:33.670715Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1031979,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17840},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Pitch Black Laughing Pepper-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E23.Pitch Black Laughing Pepper-SDTV.mkv","size":126812207,"dateAdded":"2021-03-18T14:08:15.471358Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1030690,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17841},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Tear Flavored Missile Rice Bowl-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E24.Tear Flavored Missile Rice Bowl-SDTV.mkv","size":129621458,"dateAdded":"2021-03-18T14:09:57.043735Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1057930,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17842},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E25.Fallen Angel's Dark Universe Tea Rice-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E25.Fallen Angel's Dark Universe Tea Rice-SDTV.mkv","size":132255248,"dateAdded":"2021-03-18T14:11:38.571969Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1082752,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17843},{"seriesId":277,"seasonNumber":1,"relativePath":"Season 01\/S01E26.I'd like 5 Sukiake Lunches-SDTV.mkv","path":"\/tv\/Galaxy Angel\/Season 01\/S01E26.I'd like 5 Sukiake Lunches-SDTV.mkv","size":132921971,"dateAdded":"2021-03-18T14:13:20.066646Z","releaseGroup":"LIME","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96001,"audioChannels":2.0,"audioCodec":"Vorbis","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1089178,"videoCodec":"XviD","videoFps":29.97,"resolution":"640x480","runTime":"13:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17844}],"queue":[]},"268":{"series":{"title":"Real Drive","alternateTitles":[],"sortTitle":"real drive","status":"ended","ended":true,"overview":"The story takes place in 2061, 50 years after humanity developed the \"Net society\" that depended on information networks despite their security issues. To improve security, a new network called Meta Real Network \u2014 or \"Metal\" for short \u2014 was developed. People's personal memories are reduced to information and placed within \"protected virtual stand-alone organic cyber enclaves\" called bubble shells online. The result was a virtual \"explosion\" of creative freedom as people felt safe enough to explore instincts and desires on Metal that they would not otherwise explore in real life. This \"friction\" between the Metal's alluring lack of restrictions and rules-bound reality led to trouble and incidents that investigators known as \"cyber divers\" must handle. Masamichi Haru is one such cyber diver.","previousAiring":"2008-09-30T16:00:00Z","network":"Nippon TV","airTime":"01:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/284\/banner.jpg?lastWrite=637557764469407700","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/81907-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/284\/poster.jpg?lastWrite=637557764470247690","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/81907-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/284\/fanart.jpg?lastWrite=637557764471327670","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/81907-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2008-09-30T16:00:00Z","episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2008,"path":"\/tv\/Real Drive","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":23,"tvdbId":81907,"tvRageId":20690,"tvMazeId":19093,"firstAired":"2008-04-09T00:00:00Z","seriesType":"standard","cleanTitle":"realdrive","imdbId":"tt1213889","titleSlug":"real-drive","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Animation","Anime","Science Fiction"],"tags":[],"added":"2021-05-05T01:54:06.162628Z","ratings":{"votes":106,"value":8.2},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":284},"episodes":[{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"Underwater Island Drive","airDate":"2008-04-09","airDateUtc":"2008-04-08T16:00:00Z","overview":"Construction of an artificial island is disrupted by an unexplained phenomenon known as \"burning sea\". Masamichi Haru is injured by burning sea during a test of early Meta-Real technology, leaving him comatose for fifty years. Now elderly and wheelchair-bound, he still hopes to solve the mystery of burning sea. His friend Eichiro Kushima now hopes to use the Meta-Real, also known as the Metal, to research the burning sea phenomenon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21449},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"Girl","airDate":"2008-04-16","airDateUtc":"2008-04-15T16:00:00Z","overview":"Aoi Minamo is hired to be Haru's assistant. When burning sea causes a power outage that threatens life support systems on the artificial island, Minamo rushes to the electrical substation, while Haru uses his cyberbrain to dive into the Metal Network.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21450},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"Re-dive","airDate":"2008-04-23","airDateUtc":"2008-04-22T16:00:00Z","overview":"Haru struggles to become proficient enough at Metal diving to help Kushima's research. During his final test, he experiences braindown.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21451},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"Atoll of Desire","airDate":"2008-04-30","airDateUtc":"2008-04-29T16:00:00Z","overview":"Haru has become an official investigator and is asked to dive into the Metal to rescue the consciousness of an Artificial Island shareholder who has experienced braindown.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21452},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"Sous Marin","airDate":"2008-05-07","airDateUtc":"2008-05-06T16:00:00Z","overview":"Minamo searches for a pair of antique Sous-Marin sunglasses as a gift to congratulate Haru on becoming an official investigator. During the search, Minamo and Sota have a run-in with champion fighter Iron Schwartz.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21453},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"Love Letter","airDate":"2008-05-14","airDateUtc":"2008-05-13T16:00:00Z","overview":"Because of her lack of a cyberbrain to read online texts, Minamo must find a physical book for a book report. Her discovery reveals the true story of a lost love.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21454},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"Hand in Hand","airDate":"2008-05-21","airDateUtc":"2008-05-20T16:00:00Z","overview":"Minamo and Haru discover a dog whose consciousness was swapped with that of his owner. They hurry to find the owner's body before it becomes too late for them to switch them back.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21455},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":8,"title":"No Friend","airDate":"2008-05-28","airDateUtc":"2008-05-27T16:00:00Z","overview":"Minamo and Sota investigate reports of ghost sightings at Minamo's school.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21456},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":9,"title":"Employment","airDate":"2008-06-04","airDateUtc":"2008-06-03T16:00:00Z","overview":"Minamo and Sota's father shuts down the core server to minimize damage from a virus intrusion, putting his job on the line.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21457},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":10,"title":"Supremacy Negotiations","airDate":"2008-06-11","airDateUtc":"2008-06-10T16:00:00Z","overview":"Those who contact a mysterious oracle in the Metal named Eliza end up with lost memories. During the investigation, Minamo realizes that Haru has been talking to none other than Eliza.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21458},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":11,"title":"Just Intonation","airDate":"2008-06-18","airDateUtc":"2008-06-17T16:00:00Z","overview":"Minamo tries to help violinist Ichinose, who has been discouraged ever since Kushima suddenly quit playing violin long ago.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":21459},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":12,"title":"Morning Without Light","airDate":"2008-06-25","airDateUtc":"2008-06-24T16:00:00Z","overview":"Minamo meets Amy, a girl who has just received cybernetic eyes to cure her blindness, but learns that Amy is struggling to adjust to being able to see. Meanwhile, Haru is asked to investigate the disappearance of a highly sought-after artist in the Metal.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":21460},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":13,"title":"Another Sea","airDate":"2008-07-02","airDateUtc":"2008-07-01T16:00:00Z","overview":"Haru reminisces about his youth, from his parents' struggles with poverty that led to trouble with the yakuza, to his meeting a dolphin that inspired his fascination with the sea, and finally to his exploration of the ruins of his city, now underwater because of climate change, which led him to become a test diver for early Meta-Real experiments.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":21461},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":14,"title":"Wave and Wind","airDate":"2008-07-09","airDateUtc":"2008-07-08T16:00:00Z","overview":"Minamo goes for a dive in the sea. This episode is a recap of the series so far.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":21462},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":15,"title":"Last Dinner","airDate":"2008-07-16","airDateUtc":"2008-07-15T16:00:00Z","overview":"Haru investigates cyberbrain deterioration in a group of food connoisseurs.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":21463},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":16,"title":"Clear Power","airDate":"2008-07-23","airDateUtc":"2008-07-22T16:00:00Z","overview":"Sota tries to train enough to defeat Holon in battle. Meanwhile, Haru investigates a case of a female android being illegally used for prostitution.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":21464},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":17,"title":"Home Sweet Home","airDate":"2008-07-30","airDateUtc":"2008-07-29T16:00:00Z","overview":"Minamo's family comes to visit.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":21465},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":18,"title":"Green Rebellion","airDate":"2008-08-06","airDateUtc":"2008-08-05T16:00:00Z","overview":"Haru, Minamo, Sota, and Holon go to a distant jungle island to investigate a mysterious background noise in the Metal. All seems well until ionization in the rainforest disrupts Holon's cyberbrain.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":21466},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":19,"title":"Returning Water Drops","airDate":"2008-08-13","airDateUtc":"2008-08-12T16:00:00Z","overview":"Holon collapses, and the others attempt to complete their investigation without her help.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":21467},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":20,"title":"With These Feet","airDate":"2008-08-20","airDateUtc":"2008-08-19T16:00:00Z","overview":"At the jungle island, Haru realized that he can learn to walk again, and he begins to practice in secret to avoid jeopardizing his job as a Metal diver. Meanwhile, Minamo gets tested for suitability to receive a cyberbrain.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":21468},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":21,"title":"Eternity","airDate":"2008-08-27","airDateUtc":"2008-08-26T16:00:00Z","overview":"Following the success of weather particle experimentation, the Secretary-General and Jeni En want to install weather particle plants as soon as possible. Kushima is opposed to the plan, suspecting that the weather particles will cause complications that threaten the Artificial Island. Meanwhile, Sota goes on a date with Holon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":21469},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":22,"title":"Peaceful Death","airDate":"2008-09-03","airDateUtc":"2008-09-02T16:00:00Z","overview":"Kushima goes missing, and is later found without his cyberbrain. Brain death will occur within twelve hours, so Sota and Holon search for his cyberbrain while Haru searches the Metal for his consciousness. Meanwhile, with Kushima missing from the Trustee meeting, the Secretary-General has no choice but to approve Jeni En's motion to begin bringing the weather particle plants online.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":21470},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":23,"title":"Human Commandments","airDate":"2008-09-10","airDateUtc":"2008-09-09T16:00:00Z","overview":"With help from the Secretary-General, Sota deciphers the clues to bringing Kushima's cyberbrain back online, but instead of Kushima, an emergency AI awakens. The AI explains Kushima's suspicion that the weather particles cause the burning sea phenomenon, convincing the Secretary-General to halt weather particle production until Kushima can prove his theory. However, Jeni En temporarily revokes the Secretary-General's authority with a vote of no confidence.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":21471},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":24,"title":"Earth Commandments","airDate":"2008-09-17","airDateUtc":"2008-09-16T16:00:00Z","overview":"Sota breaks into the weather particle facility with help from Haru in the Metal, but before he can reach the control room where the weather particle launch can be halted, Sota must fight Jeni En.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":21472},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":25,"title":"Last Dive","airDate":"2008-09-24","airDateUtc":"2008-09-23T16:00:00Z","overview":"After the spread of weather particles, drastic weather changes occur across the planet, and the burning sea phenomenon returns. Haru decides to use the experimental deep dive suit in an attempt to make contact with Kushima.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":21473},{"seriesId":284,"episodeFileId":0,"seasonNumber":1,"episodeNumber":26,"title":"Real Drive","airDate":"2008-10-01","airDateUtc":"2008-09-30T16:00:00Z","overview":"Haru makes contact with Eliza and receives Kushima's proof that the weather particles will cause worldwide disaster. Haru broadcasts the proof on the Metal, and the world's leaders quickly agree to shut down the Metal to kill the weather particle nanomachines. Kushima's consciousness then contacts Haru and explains that the ocean itself will replace the functionality of Metal via the salt water in the human body. Haru, restored to his younger self, is safely returned to the surface, where he reunites with Minamo.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":21474}],"episodeFile":[],"queue":[]},"271":{"series":{"title":"Connections","alternateTitles":[],"sortTitle":"connections","status":"ended","ended":true,"overview":"The original ten volume series was made in 1978. The popular success of the series led to two sequels, Connections 2 (sometimes written Connections2) in 1994, and Connections 3 (or Connections3) in 1997, both produced for TLC. By turning science into a detective story James Burke creates a series that will fascinate students and adults alike. This interdisciplinary approach has never before been applied to history or science and it succeeds tremendously. Winner of the Red Ribbon in the American Film Festival, the scope of the series covers 19 countries and 150 locations, requiring over 14 months of filming. As the Sherlock Holmes of science, Burke tracks through 12,000 years of history for the clues that lead us to eight great life changing inventions-the atom bomb, telecommunications, the computer, the production line, jet aircraft, plastics, rocketry and television. Burke postulates that such changes occur in response to factors he calls \"triggers,\" some of them seemingly unrelated. These have their own triggering effects, causing change in totally unrelated fields as well. And so the connections begin...","previousAiring":"1997-12-31T00:00:00Z","network":"BBC One","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/251\/banner.jpg?lastWrite=637319987996748070","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/78875-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/251\/poster.jpg?lastWrite=637319987997908050","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/78875-3.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/251\/fanart.jpg?lastWrite=637319988002787970","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/78875-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":false,"statistics":{"previousAiring":"1978-12-19T00:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":3089837537,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":false,"statistics":{"previousAiring":"1994-12-31T00:00:00Z","episodeFileCount":20,"episodeCount":20,"totalEpisodeCount":20,"sizeOnDisk":1607735848,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":false,"statistics":{"previousAiring":"1997-12-31T00:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":1720547770,"percentOfEpisodes":100.0}}],"year":1978,"path":"\/tv\/Connections","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":50,"tvdbId":78875,"tvRageId":9591,"tvMazeId":6103,"firstAired":"1978-10-17T00:00:00Z","seriesType":"standard","cleanTitle":"connections","imdbId":"tt0078588","titleSlug":"connections","rootFolderPath":"\/tv\/","genres":["Documentary"],"tags":[],"added":"2020-08-02T20:59:58.761961Z","ratings":{"votes":289,"value":8.8},"statistics":{"seasonCount":3,"episodeFileCount":40,"episodeCount":40,"totalEpisodeCount":41,"sizeOnDisk":6418121155,"percentOfEpisodes":100.0},"id":251},"episodes":[{"seriesId":251,"episodeFileId":15178,"seasonNumber":1,"episodeNumber":1,"title":"The Trigger Effect","airDate":"1978-10-17","airDateUtc":"1978-10-16T23:00:00Z","overview":"Both the beginning and the end of the story are here. The end is our present dependence on complex technological networks illustrated by the NYC power blackouts. Life came almost to a standstill: support systems are taken for granted failed. How did we become so helpless? The technology originated with the plow and agriculture. Each invention demands its own follow-up: once started, it is hard to stop. This segment ends in Kuwait, where society has leaped from ancient Egypt to the technology of today in 30 years.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19358},{"seriesId":251,"episodeFileId":15181,"seasonNumber":1,"episodeNumber":2,"title":"Death in the Morning","airDate":"1978-10-24","airDateUtc":"1978-10-23T23:00:00Z","overview":"How did a test of gold's purity revolutionize the world 2500 years ago and lead to the atomic bomb? Standardizing precious metal in coins stimulated trade from Greece to Persia, causing the construction of a huge commercial center and library at Alexandria. This wealth of nautical knowledge aided navigators 14 centuries later. Mariners discovered that the compass's magnetized needle did not point directly north. Investigations into the nature of magnetism led to the discovery of electricity, radar and to the atomic bomb.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19359},{"seriesId":251,"episodeFileId":15184,"seasonNumber":1,"episodeNumber":3,"title":"Distant Voices","airDate":"1978-10-31","airDateUtc":"1978-10-31T00:00:00Z","overview":"Telecommunications exist because the Normans wore stirrups at the Battle of Hastings- a simple advance that caused a revolution in the increasingly expensive science of warfare. Europe turned its attention to making money to wage wars. As mine shafts were dug deeper, they became flooded, stimulating scientists like Galileo to investigate vacuums, air pressure and other natural laws to mine deeper silver. This led to the discovery of electricity and magnetism's relationship and to the development of radio, and deep space telecommunications that may enable contact with galactic civilizations.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19360},{"seriesId":251,"episodeFileId":15187,"seasonNumber":1,"episodeNumber":4,"title":"Faith in Numbers","airDate":"1978-11-07","airDateUtc":"1978-11-07T00:00:00Z","overview":"Each development in the organization of systems (political, economic, mechanical, electronic) influences the next, by logic, by genius, by chance, or by utterly unforeseen events. The transition from the Middle ages to the Renaissance was influenced by the rise of commercialism, a sudden change in climate, famine and the Black Death, which set the stage for the invention of the printing press.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19361},{"seriesId":251,"episodeFileId":15190,"seasonNumber":1,"episodeNumber":5,"title":"The Wheel of Fortune","airDate":"1978-11-14","airDateUtc":"1978-11-14T00:00:00Z","overview":"The power to see into the future with computers originally rested with priest-astronomers who knew the proper times to plant and harvest. The constellations influenced life spectacularly, particularly when the ailing Caliph of Baghdad was cured by an astrologer using Greek lore. His ancient medical secrets were translated and spread throughout Europe, ushering in an era of scientific inquiry. The need for more precise measuring devices in navigation gave rise to the pendulum clock, the telescope, forged steel and interchangeable machine parts-the basis of modern industrial system.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19362},{"seriesId":251,"episodeFileId":15193,"seasonNumber":1,"episodeNumber":6,"title":"Thunder in the Skies","airDate":"1978-11-21","airDateUtc":"1978-11-21T00:00:00Z","overview":"A dramatically colder climate gripped Europe during the 13th century profoundly affecting the course of history for the next seven centuries. The changes in energy usage transformed architecture and forced the creation of new power sources. The coming of the Industrial Revolution, spurred on by advances in the steam engine, scarred England indelibly: but a moment in history later, gasoline-powered engines opened the way to the heavens.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19363},{"seriesId":251,"episodeFileId":15196,"seasonNumber":1,"episodeNumber":7,"title":"The Long Chain","airDate":"1978-11-28","airDateUtc":"1978-11-28T00:00:00Z","overview":"Often, materials discovered by accident alter the course of the world. In the 1600s Dutch commercial freighters controlled Atlantic trade routes. Competing British lines induced America to produce pitch to protect hulls of their royal vessels. This arrangement lasted until 1776, after which a Scottish inventor tried to produce pitch from coal tar. By the time he succeeded the navy was using copper instead. Subsequent experiments with coal tar yielded gaslight lamps, waterproofed garments, a brilliant mauve dye that established the German chemical industry and nylon, the first of the miracle plastics.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19364},{"seriesId":251,"episodeFileId":15199,"seasonNumber":1,"episodeNumber":8,"title":"Eat, Drink and Be Merry","airDate":"1978-12-05","airDateUtc":"1978-12-05T00:00:00Z","overview":"When Napoleon marched huge forces across Europe, he needed an efficient way to store provisions. A Frenchman preserved sterilized food in empty champagne bottles, an idea modified by the British, who tried tin cans. Still, canned foods sometimes spoiled, which led to experiments with refrigeration. Later, it was discovered that gases may be stored at very low temperatures in a thermos flask, a device handy for picnics, for polar explorers, and for storing large quantities of liquid oxygen and hydrogen. When lit by a spark these gases can send rockets into space.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19365},{"seriesId":251,"episodeFileId":15202,"seasonNumber":1,"episodeNumber":9,"title":"Countdown","airDate":"1978-12-12","airDateUtc":"1978-12-12T00:00:00Z","overview":"What happens when you combine a carbon arc light, a billiard ball coating, a spoked wheel and consecutive images? Motion pictures! Complex and sometimes incredible events led to Thomas Edison's remarkable invention; the beginnings of limelight on a Irish mountain; George Eastman's production of celluloid from the slightly explosive gun cotton; the \"\"magic lantern\"\" of an Austrian ballistics teacher. Then Eadweard Muybridge settled a bet in 1872 by photographs; does a horse raise all four feet when galloping? (Yes.) Today moving pictures, together with television, are enormously powerful mass media. Have we become trapped by our own technology?","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19366},{"seriesId":251,"episodeFileId":15205,"seasonNumber":1,"episodeNumber":10,"title":"Yesterday, Tomorrow and You","airDate":"1978-12-19","airDateUtc":"1978-12-19T00:00:00Z","overview":"\"Why did we do it this way?\" Essential moments from the previous programs are reviewed to illustrate the common factors that make for change. Will they go on operating to affect our futures? And if so, can we recognize them? The second half looks at the extent to which we have become increasingly incapable of understanding how change occurs in our complex world and at why we are in such a predicament. Finally, there is a look ahead to the need for radical change in the availability and use of information in the future, if we are to remain in control of our destinies.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19367},{"seriesId":251,"episodeFileId":15180,"seasonNumber":2,"episodeNumber":1,"title":"Revolutions","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Discover how the steam engine led to safety matches, imitation diamonds and the moon in a wild ride.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19368},{"seriesId":251,"episodeFileId":15183,"seasonNumber":2,"episodeNumber":2,"title":"Sentimental Journeys","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"What has Freud got to do with maps? Or prison reform with blue dye? Or the inside of a star with the Himalayas? India reveals the answers.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19369},{"seriesId":251,"episodeFileId":15186,"seasonNumber":2,"episodeNumber":3,"title":"Getting It Together","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Start by examining a SWAT team, which leads to hot air ballooning, the root of many inventions.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19370},{"seriesId":251,"episodeFileId":15189,"seasonNumber":2,"episodeNumber":4,"title":"Whodunit?","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Who stole a set of billiard balls in 1902 and why was he the most famous crook in history? The clues: maps from 1775, Charles Darwin's cousin and the FBI.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19371},{"seriesId":251,"episodeFileId":15192,"seasonNumber":2,"episodeNumber":5,"title":"Something for Nothing","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Something impossible happened 400 years ago. And we wound up in outer space, thanks (en route) to pigeon lovers, the Pope, and electric Italian frogs.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19372},{"seriesId":251,"episodeFileId":15195,"seasonNumber":2,"episodeNumber":6,"title":"Echoes of the Past","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"On his way to finding the secret of the universe, Burke takes us to the Buddhist tea ceremony, ties it to international spies and Lincoln's assassination.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19373},{"seriesId":251,"episodeFileId":15198,"seasonNumber":2,"episodeNumber":7,"title":"Photo Finish","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"The Le Mans 24-hour race is the backdrop for linking photography and bullets, relativity and blimps.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19374},{"seriesId":251,"episodeFileId":15201,"seasonNumber":2,"episodeNumber":8,"title":"Separate Ways","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Two trails split over slavery in the 18th Century. One route leads to the Wild West and Brooklyn Bridge, the other coining money and TV. Both end with a threat to peace.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19375},{"seriesId":251,"episodeFileId":15204,"seasonNumber":2,"episodeNumber":9,"title":"High Time","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Unwrap a sandwich and you're on a path to World War II radar and Neo-Impressionist painters.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19376},{"seriesId":251,"episodeFileId":15207,"seasonNumber":2,"episodeNumber":10,"title":"D\u00e9j\u00e0 Vu","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"History repeats itself, when you know how to look. Pizzaro beats the Incas, the first stock market opens. The Queen of England salutes a Mexican beetle and Hitler's plans misfire.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19377},{"seriesId":251,"episodeFileId":15208,"seasonNumber":2,"episodeNumber":11,"title":"New Harmony","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Microscopic bugs inspired the novel \"Frankenstein\" which aided the birth of Socialism.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19378},{"seriesId":251,"episodeFileId":15209,"seasonNumber":2,"episodeNumber":12,"title":"Hot Pickle","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"The connections between a cup of tea, opium dens, the London Zoo and a switch that releases bombs.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19379},{"seriesId":251,"episodeFileId":15210,"seasonNumber":2,"episodeNumber":13,"title":"The Big Spin","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"The greatest medical accident in history starts a trail that leads to Helen of Troy, 17th Century flower-power, the invention of soda pop and earthquake detection.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19380},{"seriesId":251,"episodeFileId":15211,"seasonNumber":2,"episodeNumber":14,"title":"Bright Ideas","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"A Baltimore man invented the bottle, which led to razors and clock springs, and the Hubble telescope.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19381},{"seriesId":251,"episodeFileId":15212,"seasonNumber":2,"episodeNumber":15,"title":"Making Waves","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Hairdressers, Gold Rush miners, Irish potato farmers and English parliamentarians are really tied together.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19382},{"seriesId":251,"episodeFileId":15213,"seasonNumber":2,"episodeNumber":16,"title":"Routes","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"A sick lawyer in 18th Century France changes farming and triggers the French Revolution and new medical research.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19383},{"seriesId":251,"episodeFileId":15214,"seasonNumber":2,"episodeNumber":17,"title":"One Word","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"One medieval word kicks off the investigation into different cultures with the same stories that ends in cultural anthropology.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19384},{"seriesId":251,"episodeFileId":15215,"seasonNumber":2,"episodeNumber":18,"title":"Sign Here","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Dutch piracy starts international law and French probability math, phonetics and Victorian s\u00e9ances.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19385},{"seriesId":251,"episodeFileId":15216,"seasonNumber":2,"episodeNumber":19,"title":"Better Than the Real Thing","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"How the zipper started with technology Jefferson picked up in Paris during a row about Creation.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19386},{"seriesId":251,"episodeFileId":15217,"seasonNumber":2,"episodeNumber":20,"title":"Flexible Response","airDate":"1994-12-31","airDateUtc":"1994-12-31T00:00:00Z","overview":"Robin Hood starts us on a trail from medieval showbiz to land drainage, to the invention of decimals that end up in U.S. currency, thanks to the guy who started the Erie Canal.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19387},{"seriesId":251,"episodeFileId":15179,"seasonNumber":3,"episodeNumber":1,"title":"Feedback","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"In the twenty-first century, electronic agents will be our servants on the great web of knowledge. They will use the kind of feedback that won World War II. Feedback mathematics is invented to help guns hit their targets. The concept of feedback originated in the vineyards of France by a winemaker and physiologist named Claude Bernard. His ex-wife began the Humane Society, created to save people from drowning. Drownings increased due to an increase in shipping. All of this eventually leads to the hiring of a doctor at a sanitarium in Michigan. The doctor tries out new diets on the patients. The most successful product is named after him -- Kellogg's cornflakes.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19388},{"seriesId":251,"episodeFileId":15182,"seasonNumber":3,"episodeNumber":2,"title":"What's in a Name?","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"A good breakfast leads to corn cob garbage by the ton. This is used for \"furfan,\" and a whole new discipline no one's heard about, called furfan chemistry. Furfan can do amazing things, like creating resin for bonding. This leads to the creation of the tractor and, then the creation of the diesel engine. Believe it or not, James Burke shows how this all leads to the creation of the Smithsonian Institution in Washington, DC.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19389},{"seriesId":251,"episodeFileId":15185,"seasonNumber":3,"episodeNumber":3,"title":"Drop the Apple","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"Smithson, the benefactor of the Smithsonian Institution, discovered the mineral calamine. This mineral is one of the most useful and unusual because it gives off electricity. The secret is in the shape. This was discovered by J. Currie of the famous pair. The first consumer use of this electricity was 33 rpm records. This eventually leads to Albert Einstein's Theory of Relativity, which leads to the creation of the atomic bomb.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19390},{"seriesId":251,"episodeFileId":15188,"seasonNumber":3,"episodeNumber":4,"title":"An Invisible Object","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"This program travels five hundred years into the past and back, to connect mysterious black holes in space with modern fast food, via thrills and spills on the Pony Express, Italian anatomy theaters and stolen corpses, the Sultan of Turkey's disastrous finances, Renaissance German jewelry, the invention of the screw, slide rules and American tobacco plantations, boiled potatoes, Spanish Inquisition thumbscrews, and why beer is served chilled. The show also includes a French Queen's dinner party, Buffalo Bill's Wild West Show, the greatest disaster in history (for wine-drinkers), squeaky-clean Swiss airplanes, and a fifteenth century French barber-shop quartet.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19391},{"seriesId":251,"episodeFileId":15191,"seasonNumber":3,"episodeNumber":5,"title":"Life is No Picnic","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"The advent of modern coffee-vending machines spurs the creation of freeze dried coffee. This begins a revolutionary effort by the U.S. Army in World War II to lighten the soldiers' rations packs. The Star Spangled Banner lyrics are adapted from an ancient Greek poem. Mme de Stael of Switzerland drives the Romantic Movement forward in Europe. The Romantic Movement affects all thinkers which leads to future studies of animal development. Based on this research, Darwin proposes his Theory of Evolution.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19392},{"seriesId":251,"episodeFileId":15194,"seasonNumber":3,"episodeNumber":6,"title":"Elementary Stuff","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"Darwin's Theory of Evolution is shared by Alfred Russel Wallace who has a strong belief in miracles and spiritualism. British interest in spiritualism is shared by physicist Oliver Lodge who develops the coherer, the device that makes radio reception possible. With the Swiss creation of postage stamp, Switzerland becomes the world postal center. Highlanders fearing oppression from Scottish rulers flee to North Carolina where turpentine is developed. The creation of the vacuum pump is instrumental in the discovery of both Boyle's Law and Pierre Perrault's hydrography. Quarrels about whether or not present language\/literature is as good as that of the past leads to the fictional character Sherlock Holmes.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19393},{"seriesId":251,"episodeFileId":15197,"seasonNumber":3,"episodeNumber":7,"title":"A Special Place","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"Meet a real live man who changed history with a totally new way of identifying you. Plus a four hundred-year trip through 20 locations. Swedish electricity and Dutch wind tunnels use a new type of photography. Aristocratic World War I fighter aces and their crazy mountain-climbing uncles. Touchy-feely times in Romantic Germany. The mysteries of ancient cities uncovered. Female painters in eighteenth-century London theaters lit by amazing new kinds of lights. Saving sailors from shipwreck and helping Caribbean smugglers. Astronomers, poets, fishermen, mathematicians and skeptics, bird-painters and Russian skullduggery lead the program to a final beauty-spot, where hundreds of Americans get drenched every day.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19394},{"seriesId":251,"episodeFileId":15200,"seasonNumber":3,"episodeNumber":8,"title":"Fire from the Sky","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"How do you go from the majestic beauty of Iceland's geysers to the destruction of the Allied Firebombing of Hamburg in World War II? You stop by Stonehenge, chat with the mystical Caballists, talk to Martin Luther, Ozeander, Tycho Brahe and Mary Queen of Scots, before heading to the magnetic North Pole. The invention of gin and tonic will set you back on course to the discovery that mixing rubber with gasoline makes it burn slower, an integral component of any firebombing. It's all a matter of connections.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19395},{"seriesId":251,"episodeFileId":15203,"seasonNumber":3,"episodeNumber":9,"title":"Hit the Water","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"If you launch your story in the cockpit of a Tornado Fighter Bomber-- the height of \"smart bombs\" operated by smart pilots -- dip into the history of margarine and plankton, travel to 18th Century Turkey to investigate small pox inoculations, dance at the ballet Copelia, then blow up a dam in Norway with a British commando team, how do you prevent Hitler from building and exploding atomic bombs? Through the infinite world of unexpected connections - an ingenious look at why and how Hitler never harnessed heavy water and the A-Bomb.","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19396},{"seriesId":251,"episodeFileId":15206,"seasonNumber":3,"episodeNumber":10,"title":"In Touch","airDate":"1997-12-31","airDateUtc":"1997-12-31T00:00:00Z","overview":"An American scientist ponders the problem of nuclear fusion in 1951. This unleashes a series of connections that encompass superconductors, the Eiffel Tower, the Statue of Liberty, King George III, modern oceanography, the Versailles Gardens, Pagoda Mania, and handwriting analysis to arrive at the Global Net. Through this chain of unexpected connections, you, too, can \"stay in touch.\"","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19397},{"seriesId":251,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"ReConnections","airDate":"2004-06-06","airDateUtc":"2004-06-05T23:00:00Z","overview":"James Burke is Back! The legendary science writer and host of the landmark PBS series \"Connections\" and \"The Day the Universe Changed\" has returned for a one-hour special - \"Re-Connections\" - which is celebrating the twenty-fifth anniversary of his first appearance on American public television. The show, a local production of KCSM, will be shown throughout the PBS network in June.For \"Re-Connection\", Burke sat down with host Michael Malone, a fellow technology writer, for a lively tour through Burke's career, memorable anecdotes from the series, and Burke's current work creating a new Internet-based teaching tool, the \"Knowledge Web.\"","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19357}],"episodeFile":[{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Trigger Effect-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E01.The Trigger Effect-SDTV.mp4","size":308461810,"dateAdded":"2020-08-08T14:35:39.963291Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127792,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15178},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Feedback-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E01.Feedback-SDTV.mp4","size":159599763,"dateAdded":"2020-08-08T14:35:40.029902Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":308789,"videoCodec":"h264","videoFps":30.0,"resolution":"570x360","runTime":"52:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15179},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Revolutions-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E01.Revolutions-SDTV.mp4","size":113377761,"dateAdded":"2020-08-08T14:35:40.088427Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":550509,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15180},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Death in the Morning-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E02.Death in the Morning-SDTV.mp4","size":307306198,"dateAdded":"2020-08-08T14:35:40.143933Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127766,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15181},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E02.What's in a Name-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E02.What's in a Name-SDTV.mp4","size":148885760,"dateAdded":"2020-08-08T14:35:40.200582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":283337,"videoCodec":"h264","videoFps":29.97,"resolution":"480x360","runTime":"51:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15182},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Sentimental Journeys-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E02.Sentimental Journeys-SDTV.mp4","size":114930987,"dateAdded":"2020-08-08T14:35:40.257788Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":564967,"videoCodec":"h264","videoFps":29.97,"resolution":"640x480","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15183},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Distant Voices-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E03.Distant Voices-SDTV.mp4","size":313204419,"dateAdded":"2020-08-08T14:35:40.315157Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127734,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"50:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15184},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Drop the Apple-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E03.Drop the Apple-SDTV.mp4","size":162656045,"dateAdded":"2020-08-08T14:35:40.371902Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":318362,"videoCodec":"h264","videoFps":30.0,"resolution":"570x360","runTime":"52:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15185},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Getting It Together-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E03.Getting It Together-SDTV.mp4","size":70583333,"dateAdded":"2020-08-08T14:35:40.429405Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":327948,"videoCodec":"h264","videoFps":30.0,"resolution":"480x360","runTime":"22:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15186},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Faith in Numbers-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E04.Faith in Numbers-SDTV.mp4","size":308211642,"dateAdded":"2020-08-08T14:35:40.486953Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127651,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15187},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E04.An Invisible Object-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E04.An Invisible Object-SDTV.mp4","size":178068765,"dateAdded":"2020-08-08T14:35:40.542139Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":357104,"videoCodec":"h264","videoFps":30.0,"resolution":"564x360","runTime":"52:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15188},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Whodunit-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E04.Whodunit-SDTV.mp4","size":69355197,"dateAdded":"2020-08-08T14:35:40.600117Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":320920,"videoCodec":"h264","videoFps":30.0,"resolution":"480x360","runTime":"22:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15189},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Wheel of Fortune-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E05.The Wheel of Fortune-SDTV.mp4","size":308314991,"dateAdded":"2020-08-08T14:35:40.657762Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127710,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15190},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Life is No Picnic-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E05.Life is No Picnic-SDTV.mp4","size":163541109,"dateAdded":"2020-08-08T14:35:40.717202Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":319968,"videoCodec":"h264","videoFps":30.0,"resolution":"570x360","runTime":"52:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15191},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Something for Nothing-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E05.Something for Nothing-SDTV.mp4","size":70121105,"dateAdded":"2020-08-08T14:35:40.773689Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":325061,"videoCodec":"h264","videoFps":30.0,"resolution":"480x360","runTime":"22:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15192},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Thunder in the Skies-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E06.Thunder in the Skies-SDTV.mp4","size":308121943,"dateAdded":"2020-08-08T14:35:40.831655Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127832,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:33","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15193},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Elementary Stuff-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E06.Elementary Stuff-SDTV.mp4","size":181190093,"dateAdded":"2020-08-08T14:35:40.889371Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":365095,"videoCodec":"h264","videoFps":29.97,"resolution":"580x360","runTime":"52:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15194},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Echoes of the Past-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E06.Echoes of the Past-SDTV.mp4","size":66091967,"dateAdded":"2020-08-08T14:35:40.946766Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":301764,"videoCodec":"h264","videoFps":30.0,"resolution":"480x360","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15195},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Long Chain-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E07.The Long Chain-SDTV.mp4","size":308675908,"dateAdded":"2020-08-08T14:35:41.002351Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127759,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15196},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E07.A Special Place-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E07.A Special Place-SDTV.mp4","size":162095745,"dateAdded":"2020-08-08T14:35:41.05938Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":316212,"videoCodec":"h264","videoFps":29.97,"resolution":"570x360","runTime":"52:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15197},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Photo Finish-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E07.Photo Finish-SDTV.mp4","size":68426148,"dateAdded":"2020-08-08T14:35:41.116081Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":314788,"videoCodec":"h264","videoFps":29.97,"resolution":"472x360","runTime":"22:04","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15198},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Eat, Drink and Be Merry-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E08.Eat, Drink and Be Merry-SDTV.mp4","size":311615938,"dateAdded":"2020-08-08T14:35:41.173378Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127638,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"50:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15199},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Fire from the Sky-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E08.Fire from the Sky-SDTV.mp4","size":171615227,"dateAdded":"2020-08-08T14:35:41.229734Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":340570,"videoCodec":"h264","videoFps":29.97,"resolution":"570x360","runTime":"52:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15200},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Separate Ways-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E08.Separate Ways-SDTV.mp4","size":72274715,"dateAdded":"2020-08-08T14:35:41.286826Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":339078,"videoCodec":"h264","videoFps":30.0,"resolution":"484x360","runTime":"22:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15201},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Countdown-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E09.Countdown-SDTV.mp4","size":308038051,"dateAdded":"2020-08-08T14:35:41.34377Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127660,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15202},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E09.Hit the Water-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E09.Hit the Water-SDTV.mp4","size":211127175,"dateAdded":"2020-08-08T14:35:41.398844Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":442035,"videoCodec":"h264","videoFps":23.976,"resolution":"586x360","runTime":"52:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15203},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E09.High Time-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E09.High Time-SDTV.mp4","size":66984725,"dateAdded":"2020-08-08T14:35:41.456034Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":306374,"videoCodec":"h264","videoFps":30.0,"resolution":"484x360","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15204},{"seriesId":251,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Yesterday, Tomorrow and You-SDTV.mp4","path":"\/tv\/Connections\/Season 01\/S01E10.Yesterday, Tomorrow and You-SDTV.mp4","size":307886637,"dateAdded":"2020-08-08T14:35:41.513538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127672,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":700000,"videoCodec":"x264","videoFps":25.0,"resolution":"640x480","runTime":"49:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15205},{"seriesId":251,"seasonNumber":3,"relativePath":"Season 03\/S03E10.In Touch-SDTV.mp4","path":"\/tv\/Connections\/Season 03\/S03E10.In Touch-SDTV.mp4","size":181768088,"dateAdded":"2020-08-08T14:35:41.571046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":366427,"videoCodec":"h264","videoFps":30.0,"resolution":"574x360","runTime":"52:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15206},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E10.D\u00e9j\u00e0 Vu-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E10.D\u00e9j\u00e0 Vu-SDTV.mp4","size":68032083,"dateAdded":"2020-08-08T14:35:41.626563Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":312572,"videoCodec":"h264","videoFps":29.97,"resolution":"480x360","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15207},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E11.New Harmony-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E11.New Harmony-SDTV.mp4","size":66477100,"dateAdded":"2020-08-08T14:35:41.684415Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":301600,"videoCodec":"h264","videoFps":30.0,"resolution":"476x360","runTime":"22:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15208},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Hot Pickle-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E12.Hot Pickle-SDTV.mp4","size":75646766,"dateAdded":"2020-08-08T14:35:41.742046Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":364309,"videoCodec":"h264","videoFps":29.97,"resolution":"480x360","runTime":"21:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15209},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E13.The Big Spin-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E13.The Big Spin-SDTV.mp4","size":67608074,"dateAdded":"2020-08-08T14:35:41.79905Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":310010,"videoCodec":"h264","videoFps":30.0,"resolution":"476x360","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15210},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E14.Bright Ideas-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E14.Bright Ideas-SDTV.mp4","size":63933301,"dateAdded":"2020-08-08T14:35:41.854383Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":289324,"videoCodec":"h264","videoFps":30.0,"resolution":"480x360","runTime":"21:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15211},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Making Waves-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E15.Making Waves-SDTV.mp4","size":116093709,"dateAdded":"2020-08-08T14:35:41.911555Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":566641,"videoCodec":"h264","videoFps":23.976,"resolution":"640x480","runTime":"22:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15212},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E16.Routes-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E16.Routes-SDTV.mp4","size":114625655,"dateAdded":"2020-08-08T14:35:41.968772Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":557325,"videoCodec":"h264","videoFps":23.976,"resolution":"640x480","runTime":"22:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15213},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E17.One Word-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E17.One Word-SDTV.mp4","size":68655146,"dateAdded":"2020-08-08T14:35:42.023926Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":316340,"videoCodec":"h264","videoFps":30.0,"resolution":"480x360","runTime":"22:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15214},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E18.Sign Here-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E18.Sign Here-SDTV.mp4","size":119472184,"dateAdded":"2020-08-08T14:35:42.080739Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":587796,"videoCodec":"h264","videoFps":23.976,"resolution":"640x480","runTime":"22:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15215},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E19.Better Than the Real Thing-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E19.Better Than the Real Thing-SDTV.mp4","size":67699414,"dateAdded":"2020-08-08T14:35:42.138434Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":311123,"videoCodec":"h264","videoFps":29.97,"resolution":"480x360","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15216},{"seriesId":251,"seasonNumber":2,"relativePath":"Season 02\/S02E20.Flexible Response-SDTV.mp4","path":"\/tv\/Connections\/Season 02\/S02E20.Flexible Response-SDTV.mp4","size":67346478,"dateAdded":"2020-08-08T14:35:42.196043Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":1,"name":"SDTV","source":"television","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":96000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":307859,"videoCodec":"h264","videoFps":29.97,"resolution":"480x360","runTime":"22:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15217}],"queue":[]},"272":{"series":{"title":"Money Heist","alternateTitles":[{"title":"Haus des Geldes","seasonNumber":-1},{"title":"La Casa de Papel","seasonNumber":-1},{"title":"La casa di carta","seasonNumber":-1}],"sortTitle":"money heist","status":"continuing","ended":false,"overview":"A master stroke devised and perfected for years, planned for months and executed in a few minutes so that the chosen group of thieves who enters the National Mint and Timbre at gunpoint make the police believe that their plan has failed... And that they are besieged inside the building with no other exit than their surrender.","nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/283\/banner.jpg?lastWrite=637538539315945230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/5d3601adceba4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/283\/poster.jpg?lastWrite=637636277007376870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/327417\/posters\/61081245a014c.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/283\/fanart.jpg?lastWrite=637538539318105200","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/327417-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-23T08:00:00Z","episodeFileCount":15,"episodeCount":15,"totalEpisodeCount":15,"sizeOnDisk":20520344152,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2020-04-03T07:00:00Z","episodeFileCount":16,"episodeCount":16,"totalEpisodeCount":16,"sizeOnDisk":17762136698,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"nextAiring":"2021-12-03T08:00:00Z","previousAiring":"2021-09-03T07:00:00Z","episodeFileCount":0,"episodeCount":5,"totalEpisodeCount":10,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2017,"path":"\/tv\/Money Heist","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":65,"tvdbId":327417,"tvRageId":0,"tvMazeId":27436,"firstAired":"2017-05-02T00:00:00Z","seriesType":"standard","cleanTitle":"moneyheist","imdbId":"tt6468322","titleSlug":"money-heist","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Thriller"],"tags":[],"added":"2021-04-12T19:52:10.698923Z","ratings":{"votes":1333,"value":9.2},"statistics":{"seasonCount":3,"episodeFileCount":31,"episodeCount":36,"totalEpisodeCount":41,"sizeOnDisk":38282480850,"percentOfEpisodes":86.11111111111111},"id":283},"episodes":[{"seriesId":283,"episodeFileId":18002,"seasonNumber":1,"episodeNumber":1,"title":"Do as Planned","airDate":"2017-05-02","airDateUtc":"2017-05-02T07:00:00Z","overview":"After a failed heist, Tokyo is recruited by The Professor to join his crew in order to steal millions in Euros from the European Union Mint. On the day of the heist, things don't go as planned.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21323},{"seriesId":283,"episodeFileId":18003,"seasonNumber":1,"episodeNumber":2,"title":"Lethal Negligence","airDate":"2017-05-09","airDateUtc":"2017-05-09T07:00:00Z","overview":"Raquel, the hostage mediator, sets up her first contact with the professor. One of the hostages is crucial to the plans of thieves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21324},{"seriesId":283,"episodeFileId":18004,"seasonNumber":1,"episodeNumber":3,"title":"Misfire","airDate":"2017-05-16","airDateUtc":"2017-05-16T07:00:00Z","overview":"The police catch the image of one of the robbers. Raquel suspects the gentleman she met in the bar.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21325},{"seriesId":283,"episodeFileId":18005,"seasonNumber":1,"episodeNumber":4,"title":"Trojan Horse","airDate":"2017-05-23","airDateUtc":"2017-05-23T07:00:00Z","overview":"Raquel is adversely affected by a personal crisis with her ex-husband. The hostages are afraid of the sound of gunshots they heard. Thieves argue among themselves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21326},{"seriesId":283,"episodeFileId":18006,"seasonNumber":1,"episodeNumber":5,"title":"Groundhog Day","airDate":"2017-05-30","airDateUtc":"2017-05-30T07:00:00Z","overview":"A sudden development in the investigation and a mistake made by one of the thieves confronts the Professor with a serious risk that could lead to his identity being revealed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21327},{"seriesId":283,"episodeFileId":18007,"seasonNumber":1,"episodeNumber":6,"title":"The Hot Cold War","airDate":"2017-06-06","airDateUtc":"2017-06-06T07:00:00Z","overview":"The problems inside and outside the National Currency and Stamp Factory are growing. The biggest robbery in history does not allow any mistakes and each time, the tension and fear is rising. What opportunities are there for everything to go well?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21328},{"seriesId":283,"episodeFileId":18008,"seasonNumber":1,"episodeNumber":7,"title":"Cool Instability","airDate":"2017-06-13","airDateUtc":"2017-06-13T07:00:00Z","overview":"A new police plan will make Raquel enter the National Factory of Currency and Stamp, right at the core of the biggest heist in history. Berlin, will be responsible for being the most extravagant host that the inspector has ever seen. What is their plan?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21329},{"seriesId":283,"episodeFileId":18009,"seasonNumber":1,"episodeNumber":8,"title":"You Asked for It","airDate":"2017-06-20","airDateUtc":"2017-06-20T07:00:00Z","overview":"Arturo continues to make escape plans for a group of hostages. The professor explains who he got the idea of robbery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21330},{"seriesId":283,"episodeFileId":18010,"seasonNumber":1,"episodeNumber":9,"title":"Whoever Keeps Trying It, Gets It","airDate":"2017-06-27","airDateUtc":"2017-06-27T07:00:00Z","overview":"The professor talks with Raquel's mother on stressful conditions. Darphanede wants thieves to choose between money and freedom from the hostages.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21331},{"seriesId":283,"episodeFileId":18011,"seasonNumber":1,"episodeNumber":10,"title":"Masked No Longer","airDate":"2017-10-16","airDateUtc":"2017-10-16T07:00:00Z","overview":"The police finds the house where The Professor has planned everything. Tokyo and Berlin are fighting about how to proceed.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21332},{"seriesId":283,"episodeFileId":18012,"seasonNumber":1,"episodeNumber":11,"title":"The Head of the Plan","airDate":"2017-10-23","airDateUtc":"2017-10-23T07:00:00Z","overview":"Tokyo is questioned by the police. The Professor and Raquel's ex-husband are getting into a fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":21333},{"seriesId":283,"episodeFileId":18013,"seasonNumber":1,"episodeNumber":12,"title":"A Matter of Efficiency","airDate":"2017-11-02","airDateUtc":"2017-11-02T07:00:00Z","overview":"The hostages are trying to execute an outbreak, while things are escalating between the robbers. Will The Professor make his call in time?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":21334},{"seriesId":283,"episodeFileId":18014,"seasonNumber":1,"episodeNumber":13,"title":"What Have We Done?","airDate":"2017-11-09","airDateUtc":"2017-11-09T08:00:00Z","overview":"Raquel is discovering the identity of The Professor. The tension inside the House of national Stamp and Currency is rising.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":21335},{"seriesId":283,"episodeFileId":18015,"seasonNumber":1,"episodeNumber":14,"title":"Against the Clock","airDate":"2017-11-16","airDateUtc":"2017-11-16T08:00:00Z","overview":"The execution of the plan is in its final stages. Inspector Raquel is accused of working together with The Professor.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":21336},{"seriesId":283,"episodeFileId":18016,"seasonNumber":1,"episodeNumber":15,"title":"Bye Beautiful","airDate":"2017-11-23","airDateUtc":"2017-11-23T08:00:00Z","overview":"The police are storming into the National House of Stamp and Currency. Will the hostages be saved and can the robbers escape?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":21337},{"seriesId":283,"episodeFileId":17986,"seasonNumber":2,"episodeNumber":1,"title":"We're Back","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"When R\u00edo is captured, a distraught Tokyo turns to the Professor for help. Armed with a bold new plan, they reunite the team in order to rescue him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21338},{"seriesId":283,"episodeFileId":17987,"seasonNumber":2,"episodeNumber":2,"title":"Aikido","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"The Professor recruits Mart\u00edn to put his brother's plan into action and target the Bank of Spain. First step? Create total chaos.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21339},{"seriesId":283,"episodeFileId":17988,"seasonNumber":2,"episodeNumber":3,"title":"48 Meters Underground","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"Tokyo and Nairobi's efforts go drastically awry. The Professor recalls Berl\u00edn detailing how they'd steal the gold from the water-logged vault.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21340},{"seriesId":283,"episodeFileId":17989,"seasonNumber":2,"episodeNumber":4,"title":"It's Dolphin Time","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"Tamayo's breaches of protocol surprise the Professor. Bogot\u00e1 calms Denver's anxieties. With time running out, Palermo initiates the \"Flipper\" plan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21341},{"seriesId":283,"episodeFileId":17990,"seasonNumber":2,"episodeNumber":5,"title":"Boom, Boom, Ciao","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"The Professor shocks officials with his latest stunt, but in response, a new inspector rattles Raquel. Palermo and Nairobi get into a heated argument.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21342},{"seriesId":283,"episodeFileId":17991,"seasonNumber":2,"episodeNumber":6,"title":"Everything Seemed Insignificant","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"Just as Inspector Sierra orchestrates a plan to sneak a team into the Bank of Spain, the Professor and Raquel lose communication with Palermo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21343},{"seriesId":283,"episodeFileId":17992,"seasonNumber":2,"episodeNumber":7,"title":"A Quick Vacation","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"Tokyo's happiness turns bittersweet. \u00c1ngel closes in on a quarreling Raquel and the Professor. Authorities offer a multimillion-dollar reward for tips.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21344},{"seriesId":283,"episodeFileId":17993,"seasonNumber":2,"episodeNumber":8,"title":"Astray","airDate":"2019-07-19","airDateUtc":"2019-07-19T07:00:00Z","overview":"Tokyo attempts to drown her sorrows. Sierra uses personal tactics to target a vulnerable Nairobi, while Su\u00e1rez continues to hunt down Raquel.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21345},{"seriesId":283,"episodeFileId":17994,"seasonNumber":2,"episodeNumber":9,"title":"Game Over","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"Anger and grief heighten tensions between the group. The Professor, while in mourning, attempts to make a daring and dangerous escape.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21346},{"seriesId":283,"episodeFileId":17995,"seasonNumber":2,"episodeNumber":10,"title":"Berlin's Wedding","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"Palermo shocks the group with his actions. Sierra pressures her subject to take a deal. The Professor remembers his brother's wedding.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21347},{"seriesId":283,"episodeFileId":17996,"seasonNumber":2,"episodeNumber":11,"title":"Anatomy Lesson","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"The Professor's mole attempts to pass along his message to the person inside the tent. Denver's jealousy toward M\u00f3nica and Rio's friendship heightens.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21348},{"seriesId":283,"episodeFileId":17997,"seasonNumber":2,"episodeNumber":12,"title":"Pasodoble","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"In the past, Berlin predicts that Gand\u00eda will cause problems for the operation. Sierra's interrogation of Lisboa leads to a personal revelation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21349},{"seriesId":283,"episodeFileId":17998,"seasonNumber":2,"episodeNumber":13,"title":"5 Minutes Earlier","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"Denver turns to an undercover source for help. Nairobi attempts to motivate her team as the danger around them intensifies.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21350},{"seriesId":283,"episodeFileId":17999,"seasonNumber":2,"episodeNumber":14,"title":"TKO","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"With Nairobi held hostage, Gand\u00eda negotiates with the crew. The Professor desperately seeks a new plan to save his team.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21351},{"seriesId":283,"episodeFileId":18000,"seasonNumber":2,"episodeNumber":15,"title":"Strike the Tent","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"The group reels following the attack on one of their own. The Professor puts his adjusted plan in motion with the help of new recruits and Palermo.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21352},{"seriesId":283,"episodeFileId":18001,"seasonNumber":2,"episodeNumber":16,"title":"The Paris Plan","airDate":"2020-04-03","airDateUtc":"2020-04-03T07:00:00Z","overview":"The Professor, Benjamin and the others attempt to free Lisboa. Tokyo's anger threatens her faith in the plan. Sierra takes matters into her own hands.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21353},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":1,"title":"The End of the Road","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"The Professor faces off with Sierra as Tamayo raises the stakes of the negotiations by calling the army. In the past, Berlin meets with a family member.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21572},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":2,"title":"Do You Believe in Reincarnation?","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"Arturo seizes an opportunity to fight back while escalating a personal vengeance. Lisbon makes a crucial discovery.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21573},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":3,"title":"Welcome to the Spectacle of Life","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"A betrayal and an emergency both catch Sierra by surprise. Palermo rallies the troops as the army closes in on the gang.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21574},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":4,"title":"Your Place in Heaven","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"With Helsinki\u2019s life in danger, the thieves mount a covert counter attack. Years earlier, Berlin and his son conduct their first heist together.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21575},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":5,"title":"Live Many Lives","airDate":"2021-09-03","airDateUtc":"2021-09-03T07:00:00Z","overview":"While surrounded by gunfire and trapped in the kitchen, Tokyo reminisces about her first love and her initial encounter with the Professor.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21576},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":6,"title":"TBA","airDate":"2021-12-03","airDateUtc":"2021-12-03T08:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21577},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":7,"title":"TBA","airDate":"2021-12-03","airDateUtc":"2021-12-03T08:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21578},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":8,"title":"TBA","airDate":"2021-12-03","airDateUtc":"2021-12-03T08:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21579},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":9,"title":"TBA","airDate":"2021-12-03","airDateUtc":"2021-12-03T08:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21580},{"seriesId":283,"episodeFileId":0,"seasonNumber":3,"episodeNumber":10,"title":"TBA","airDate":"2021-12-03","airDateUtc":"2021-12-03T08:00:00Z","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21581}],"episodeFile":[{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E01.We're Back-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E01.We're Back-WEBDL-1080p.mkv","size":1358254414,"dateAdded":"2021-04-13T02:21:31.276828Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2991827,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"49:50","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17986},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Aikido-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E02.Aikido-WEBDL-1080p.mkv","size":911553485,"dateAdded":"2021-04-13T02:21:57.906173Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2312540,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"41:08","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17987},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E03.48 Meters Underground-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E03.48 Meters Underground-WEBDL-1080p.mkv","size":1127121195,"dateAdded":"2021-04-13T02:22:06.104799Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2452106,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"48:34","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17988},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E04.It's Dolphin Time-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E04.It's Dolphin Time-WEBDL-1080p.mkv","size":986237337,"dateAdded":"2021-04-13T02:22:18.073603Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2430041,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"42:48","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17989},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Boom, Boom, Ciao-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E05.Boom, Boom, Ciao-WEBDL-1080p.mkv","size":1150045909,"dateAdded":"2021-04-13T02:22:33.016557Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2480762,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"49:06","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17990},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Everything Seemed Insignificant-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E06.Everything Seemed Insignificant-WEBDL-1080p.mkv","size":1017645516,"dateAdded":"2021-04-13T02:22:46.492715Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2302125,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"46:05","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17991},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E07.A Quick Vacation-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E07.A Quick Vacation-WEBDL-1080p.mkv","size":1111381847,"dateAdded":"2021-04-13T02:22:58.596719Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2702730,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"44:18","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17992},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Astray-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E08.Astray-WEBDL-1080p.mkv","size":1305657469,"dateAdded":"2021-04-13T02:23:13.723664Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2396708,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"57:17","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17993},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Game Over-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E09.Game Over-WEBDL-1080p.mkv","size":1386806519,"dateAdded":"2021-04-13T02:23:29.176418Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2859739,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"52:48","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17994},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Berlin's Wedding-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E10.Berlin's Wedding-WEBDL-1080p.mkv","size":1017508340,"dateAdded":"2021-04-13T02:23:44.920225Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2410959,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"44:26","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17995},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Anatomy Lesson-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E11.Anatomy Lesson-WEBDL-1080p.mkv","size":896214684,"dateAdded":"2021-04-13T02:23:54.90359Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2193782,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"42:08","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17996},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Pasodoble-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E12.Pasodoble-WEBDL-1080p.mkv","size":1034998510,"dateAdded":"2021-04-13T02:24:05.438317Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1951076,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"53:14","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17997},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E13.5 Minutes Earlier-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E13.5 Minutes Earlier-WEBDL-1080p.mkv","size":962792285,"dateAdded":"2021-04-13T02:24:15.867914Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2371034,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"42:36","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17998},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E14.TKO-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E14.TKO-WEBDL-1080p.mkv","size":995241376,"dateAdded":"2021-04-13T02:24:26.651486Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2257178,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"45:46","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17999},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E15.Strike the Tent-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E15.Strike the Tent-WEBDL-1080p.mkv","size":1174515521,"dateAdded":"2021-04-13T02:24:36.942955Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2363520,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"52:06","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18000},{"seriesId":283,"seasonNumber":2,"relativePath":"Season 02\/S02E16.The Paris Plan-WEBDL-1080p.mkv","path":"\/tv\/Money Heist\/Season 02\/S02E16.The Paris Plan-WEBDL-1080p.mkv","size":1326162291,"dateAdded":"2021-04-13T02:24:51.118739Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2303190,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"1:00:02","scanType":"","subtitles":"Spanish \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18001},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Do as Planned-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E01.Do as Planned-Bluray-1080p.mkv","size":1636902850,"dateAdded":"2021-04-13T03:41:32.295852Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":629808,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2037158,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:20:56","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18002},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Lethal Negligence-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E02.Lethal Negligence-Bluray-1080p.mkv","size":1334642823,"dateAdded":"2021-04-13T03:41:43.38729Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":583300,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1930436,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:09:56","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18003},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Misfire-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E03.Misfire-Bluray-1080p.mkv","size":1303893558,"dateAdded":"2021-04-13T03:41:59.641525Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":588289,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1948465,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:07:39","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18004},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Trojan Horse-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E04.Trojan Horse-Bluray-1080p.mkv","size":1456945872,"dateAdded":"2021-04-13T03:42:14.360241Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":593567,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2213527,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:08:28","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18005},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Groundhog Day-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E05.Groundhog Day-Bluray-1080p.mkv","size":1352922561,"dateAdded":"2021-04-13T03:42:28.664655Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":559320,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1936954,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:11:30","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18006},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E06.The Hot Cold War-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E06.The Hot Cold War-Bluray-1080p.mkv","size":1451536034,"dateAdded":"2021-04-13T03:42:44.789677Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":535858,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1937815,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:17:22","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18007},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Cool Instability-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E07.Cool Instability-Bluray-1080p.mkv","size":1229424717,"dateAdded":"2021-04-13T03:42:59.634017Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":565430,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1755694,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:09:42","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18008},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E08.You Asked for It-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E08.You Asked for It-Bluray-1080p.mkv","size":1283833401,"dateAdded":"2021-04-13T03:43:12.221422Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":545726,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1838245,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:10:56","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18009},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Whoever Keeps Trying It, Gets It-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E09.Whoever Keeps Trying It, Gets It-Bluray-1080p.mkv","size":1331388853,"dateAdded":"2021-04-13T03:43:25.26209Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":587368,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1764936,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:14:39","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18010},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Masked No Longer-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E10.Masked No Longer-Bluray-1080p.mkv","size":1365555812,"dateAdded":"2021-04-13T03:43:39.508953Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":566113,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2053531,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:08:49","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18011},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E11.The Head of the Plan-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E11.The Head of the Plan-Bluray-1080p.mkv","size":1174685366,"dateAdded":"2021-04-13T03:43:54.702767Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":565588,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1742883,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:07:00","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18012},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E12.A Matter of Efficiency-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E12.A Matter of Efficiency-Bluray-1080p.mkv","size":1322347912,"dateAdded":"2021-04-13T03:44:10.384657Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":589797,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1933710,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:09:04","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18013},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E13.What Have We Done-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E13.What Have We Done-Bluray-1080p.mkv","size":1424610021,"dateAdded":"2021-04-13T03:44:24.784042Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":577286,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1967389,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:13:56","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18014},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Against the Clock-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E14.Against the Clock-Bluray-1080p.mkv","size":1368940111,"dateAdded":"2021-04-13T03:44:39.181739Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":581014,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2052970,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:08:42","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18015},{"seriesId":283,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Bye Beautiful-Bluray-1080p.mkv","path":"\/tv\/Money Heist\/Season 01\/S01E15.Bye Beautiful-Bluray-1080p.mkv","size":1482714261,"dateAdded":"2021-04-13T03:44:55.216536Z","releaseGroup":"Qman","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":651452,"audioChannels":2.0,"audioCodec":"FLAC","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2037157,"videoCodec":"x265","videoFps":50.0,"resolution":"1920x1080","runTime":"1:12:54","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":18016}],"queue":[]},"273":{"series":{"title":"Teen Titans","alternateTitles":[],"sortTitle":"teen titans","status":"ended","ended":true,"overview":"The Teen Titans are five heroes under one roof. Their names: Robin, Starfire, Raven, Cyborg, and Beast Boy They live in a large tower in the shape of a T that they call Titan Tower. No secret identities. No school. Just superheroes being superheroes. They must go up against their arch nemesis, Slade, and his evil minions. What he really plans to do is unknown but one thing's for sure... he's an evil madman.","previousAiring":"2007-04-11T01:40:00Z","network":"Cartoon Network","airTime":"20:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/260\/banner.jpg?lastWrite=637381361955200210","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/13878-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/260\/poster.jpg?lastWrite=637381361956360190","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/71503-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/260\/fanart.jpg?lastWrite=637381361957800170","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/71503-4.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"previousAiring":"2007-04-11T01:40:00Z","episodeFileCount":5,"episodeCount":5,"totalEpisodeCount":12,"sizeOnDisk":378579592,"percentOfEpisodes":100.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2003-11-12T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":7604889646,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2004-08-22T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":2377947550,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2005-01-23T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11436436948,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2005-07-17T00:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11322863241,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2006-01-17T01:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":11400431740,"percentOfEpisodes":100.0}}],"year":2003,"path":"\/tv\/Teen Titans","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":71503,"tvRageId":5485,"tvMazeId":765,"firstAired":"2003-07-19T00:00:00Z","seriesType":"standard","cleanTitle":"teentitans","imdbId":"tt0343314","titleSlug":"teen-titans","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children"],"tags":[],"added":"2020-10-12T21:49:54.873242Z","ratings":{"votes":635,"value":8.8},"statistics":{"seasonCount":5,"episodeFileCount":70,"episodeCount":70,"totalEpisodeCount":77,"sizeOnDisk":44521148717,"percentOfEpisodes":100.0},"id":260},"episodes":[{"seriesId":260,"episodeFileId":15789,"seasonNumber":1,"episodeNumber":1,"title":"Final Exam","airDate":"2003-07-19","airDateUtc":"2003-07-20T00:00:00Z","overview":"Three H.I.V.E. graduates, Mammoth, Jinx, and Gizmo, are sent by the mysterious Slade to attack the Titans. While presumably well-trained and able to control their powers, the Titans get completely overpowered by the bad guys! Will the Titans be able to defeat these three villains and ruin Slade's plan?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19836},{"seriesId":260,"episodeFileId":15790,"seasonNumber":1,"episodeNumber":2,"title":"Sisters","airDate":"2003-07-26","airDateUtc":"2003-07-27T00:00:00Z","overview":"Starfires better-than-her-at-everything sister, Blackfire, visits Starfire as the latter is suffering a personal crisis; she quickly makes friends with the Titans, and slowly begins to pull them away from Starfire, making her feel like an outcast.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19837},{"seriesId":260,"episodeFileId":15791,"seasonNumber":1,"episodeNumber":3,"title":"Divide and Conquer","airDate":"2003-08-02","airDateUtc":"2003-08-03T00:00:00Z","overview":"The Titans attempt to thwart the villain Cinderblock as he breaks into a prison to free a specific prisoner, but their lack of teamwork lets both get away. Cyborg and Robin start arguing over who is responsible, and Cyborg quits. Cinderblock turns over the prisoner to the mysterious \"\"Slade,\"\" who when awakened, becomes Plasmus. The remaining Titans go after Plasmus, but are overwhelmed until Cyborg shows up and helps them defeat Plasmus after capturing Cinderblock, leaving Robin to wonder who is the mastermind behind the plan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19838},{"seriesId":260,"episodeFileId":15792,"seasonNumber":1,"episodeNumber":4,"title":"Forces of Nature","airDate":"2003-08-16","airDateUtc":"2003-08-17T00:00:00Z","overview":"Dark clouds blow in, bringing Thunder and Lightning, two stormy brothers looking for a good time. Unfortunately, their idea of fun is wrecking everything in sight. Meanwhile, after one of Beast Boy's practical jokes on Starfire misfires, Beast Boy learns his lesson after realizing that, just like the brothers, there are penalties when you don't think of others. He starts to get through to one of the brothers, Thunder, but the mysterious Slade disguised as a Chinese sorcerer shows up and tricks the brothers into unleashing a fire demon. Beast Boy gets through to Thunder, who gets through to his brother - the two team up to summon a thunderstorm and put out the demon while Slade escapes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19839},{"seriesId":260,"episodeFileId":15794,"seasonNumber":1,"episodeNumber":5,"title":"The Sum of His Parts","airDate":"2003-08-23","airDateUtc":"2003-08-24T00:00:00Z","overview":"Cyborg is reminded he's not completely human, when his power cell dies during a wild junkyard battle with the Amazing Mumbo. The Titans fear Mumbo has taken their friend, and search the city for Cyborg. But Fixit, a cybernetic hermit who finds and repairs broken things, finds Cyborg.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19840},{"seriesId":260,"episodeFileId":15796,"seasonNumber":1,"episodeNumber":6,"title":"Nevermore","airDate":"2003-08-30","airDateUtc":"2003-08-31T00:00:00Z","overview":"Raven's creepy tantrum of crackling black energy leaves Dr. Light begging for mercy, and the Titans see a new side of Raven- her temper. But, when Cyborg and Beast Boy find a Mysterious Mirror in Raven's room, they're suddenly transported to a strange nightmare world that's somehow connected to Raven.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19841},{"seriesId":260,"episodeFileId":15797,"seasonNumber":1,"episodeNumber":7,"title":"Switched","airDate":"2003-09-06","airDateUtc":"2003-09-07T00:00:00Z","overview":"Starfire and Raven don't really \"\"get each other.\"\" Star doesn't understand Raven's repression, and Raven can't deal with Starfire's emotional outbursts. But when The Puppet King imprisons Robin, Cyborg, and Beast Boy inside wooden puppets and takes control of the boys' bodies. The girls are going to have to understand each other -- if they want to survive.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19842},{"seriesId":260,"episodeFileId":15799,"seasonNumber":1,"episodeNumber":8,"title":"Deep Six","airDate":"2003-09-13","airDateUtc":"2003-09-14T00:00:00Z","overview":"When a mysterious amphibious villain called Trident makes off with a boatload of dangerous Toxic Waste, the Titans hop into the T-SUB and go on an undersea adventure to put a stop to Trident. This is Beast Boy's big chance to morph into all sorts of undersea animals and show the team what a big hero he really is. But unfortunately another big hero shows up to steal the spotlight: a good-looking water-breathing teenage do-gooder named Aqualad.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19843},{"seriesId":260,"episodeFileId":15801,"seasonNumber":1,"episodeNumber":9,"title":"Masks","airDate":"2003-09-20","airDateUtc":"2003-09-21T00:00:00Z","overview":"Slade sends a team of Robotic Commandos to steal a high-tech chip. Now Robin is more determined than ever to find out who Slade is -- and what he's planning. But while Robin is obsessively researching his arch-nemesis, a mysterious new bad guy called Red X tries to steal the same chip.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19844},{"seriesId":260,"episodeFileId":15803,"seasonNumber":1,"episodeNumber":10,"title":"Mad Mod","airDate":"2003-09-27","airDateUtc":"2003-09-28T00:00:00Z","overview":"The Titans awake to find themselves captured as prisoners of Mad Mod, a madcap bad guy in a psychedelic suit. Mad Mod has decided to teach the teens a lesson, creating a massive mind-bending school full of optical illusions and brain-washing hypno-screens. Will the Titans be \"\"re-educated\"\" and lose their minds in the process?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19845},{"seriesId":260,"episodeFileId":15804,"seasonNumber":1,"episodeNumber":11,"title":"Apprentice (1)","airDate":"2003-10-04","airDateUtc":"2003-10-05T00:00:00Z","overview":"Robin is haunted by dreams of becoming more like the mysterious Slade, while the Titans must track down the mastermind to stop his detonation of a chronoton bomb. Robin catches up to Slade while the others defuse the bomb, but Slade reveals the bomb was a lure - Robin's teammates now have microbombs secretly placed in their bodies, and Slade will detonate the bombs if Robin doesn't switch sides and becomes his assistant. Reluctantly, Robin agrees... (to be continued)","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19846},{"seriesId":260,"episodeFileId":15805,"seasonNumber":1,"episodeNumber":12,"title":"Apprentice (2)","airDate":"2003-10-11","airDateUtc":"2003-10-12T00:00:00Z","overview":"With no signs of Robin since Slade's \"\"Chronoton Detonator\"\" turned out to be a fake, the four remaining Teen Titans search the city for their missing leader. But their search is cut short when the Titan signal alerts them to a new villain in town.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19847},{"seriesId":260,"episodeFileId":15806,"seasonNumber":1,"episodeNumber":13,"title":"Car Trouble","airDate":"2003-11-11","airDateUtc":"2003-11-12T01:00:00Z","overview":"Cyborg has just finished building the vehicle of his dreams: the super-cool , uberfast, ultra-high-tech T-CAR! Cy grins like a proud parent as he shows off his \"\"baby\"\" to the other Titans. But before Cyborg can take his cool car out for a spin, the Titians are called to an Electronics Superstore where an electrical menace called Overload is wrecking havoc. Our heroes race to the scene - and Cyborg leaves behind his beloved car parked out front with its high-tech alarm set. But when they emerge from the store with Overload in custody, Cyborg freaks: the T-Car is gone!! A wild adventure unfolds as the T-Car changes hands from bad guy to worse guy - Cyborg races all over town, trying to catch up. Can Cyborg get his \"\"baby\"\" back - or is the T-Car lost forever?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19848},{"seriesId":260,"episodeFileId":15737,"seasonNumber":2,"episodeNumber":1,"title":"How Long is Forever?","airDate":"2004-01-10","airDateUtc":"2004-01-11T01:00:00Z","overview":"When Starfire accidentaly falls into Warp's time portal, she is hurled twenty years into the future. Once there, she finds that the Titans have split up. She is devestated! Can Starfire save her friends? Or will the Titans end?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19849},{"seriesId":260,"episodeFileId":15738,"seasonNumber":2,"episodeNumber":2,"title":"Every Dog Has His Day","airDate":"2004-01-17","airDateUtc":"2004-01-18T01:00:00Z","overview":"A strange green Alien Dog comes to Earth with a mysterious flying saucer chasing after it. But when the Alien Dog bumps into Green Dog Beast Boy, who's hanging out at the dog park, the flying saucer accidentally abducts the wrong pooch. When the Teen Titans spot the Alien Dog, they mistakenly think it's Beast Boy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19850},{"seriesId":260,"episodeFileId":15739,"seasonNumber":2,"episodeNumber":3,"title":"Terra","airDate":"2004-01-24","airDateUtc":"2004-01-25T01:00:00Z","overview":"The Titans meet a girl named Terra who is a difter. She has the powers to move and control Earth. They allow her to stay at Titans Tower while they wonder if she should become part of them. Beast Boy convices her to stay, and he finds out that she is unable to control her powers. She makes him swear never to tell anyone. She then beats Cyborg in practice. They all go to fight Slade and Terra has a face-to-face talk with him. She is told that he can teach her to control her powers. She soon ultimately loses control of he powers and creates a twister. Beast Boy helps her and she begs for him to never tell. The Titans invite her to be a Titan, but Robin tells her, he knows her secret and she runs away, Slade watching her every move.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19851},{"seriesId":260,"episodeFileId":15740,"seasonNumber":2,"episodeNumber":4,"title":"Only Human","airDate":"2004-01-31","airDateUtc":"2004-02-01T01:00:00Z","overview":"Back when Cyborg was a fully human athlete, he loved trying to do more than he thought he could do. But now that his muscles are mechanical, Cyborg's limitations are built-in. But when the other Teen Titans are captured, Cyborg is forced to fight Atlas, a giant robot.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19852},{"seriesId":260,"episodeFileId":15741,"seasonNumber":2,"episodeNumber":5,"title":"Fear Itself","airDate":"2004-02-07","airDateUtc":"2004-02-08T01:00:00Z","overview":"A ghostly, unknown force starts hunting down the Titans one by one and Titans Tower becomes a Tower of Horrors and even Raven gets rattled. Can she control her fear long enough to find out what's behind all this?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19853},{"seriesId":260,"episodeFileId":15742,"seasonNumber":2,"episodeNumber":6,"title":"Date with Destiny","airDate":"2004-02-14","airDateUtc":"2004-02-15T01:00:00Z","overview":"While chasing a jewl thief known as Fang, the Titans learn of a much bigger threat. Killer Moth is threatening to destroy the city with mutated moths unless Robin takes his spoiled Rotten daughter, Kitten, to her junior prom. But Starfire doesn't agree with this so well...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19854},{"seriesId":260,"episodeFileId":15743,"seasonNumber":2,"episodeNumber":7,"title":"Transformation","airDate":"2004-02-21","airDateUtc":"2004-02-22T01:00:00Z","overview":"The beautiful alien Starfire has never thought much about her looks. But when a strange red bump appears on her forehead, Star becomes concerned. Raven tells her not to worry -- it's probably just a zit. Or is it? As she grows tusks on her neck, scales on her skin, and hideous clawed fingernails, the question becomes unavoidable: Is Starfire turning into some sort of horrible alien monster?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19855},{"seriesId":260,"episodeFileId":15744,"seasonNumber":2,"episodeNumber":8,"title":"Titan Rising","airDate":"2004-02-28","airDateUtc":"2004-02-29T01:00:00Z","overview":"Terra is ready to join the team after getting the chance to practice her powers, However, other members of the team wonder if they have made a huge mistake. Raven doesn't want Terra back. Can Terra prove to the team that she can be trusted with her powers?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19856},{"seriesId":260,"episodeFileId":15745,"seasonNumber":2,"episodeNumber":9,"title":"Winner Take All","airDate":"2004-03-06","airDateUtc":"2004-03-07T01:00:00Z","overview":"This episode shows Robin wanting to be a big shot winner. When he, Cyborg, and Beast Boy are transported to another land, along with Gizmo, Wildebeest, Hot Spot, Aqualad, and Speedy, Robin finally has his chance. As the players battle, The Master of Games takes the losers powers. It will take Robin to figure out Winning isn't everything to save the day","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19857},{"seriesId":260,"episodeFileId":15746,"seasonNumber":2,"episodeNumber":10,"title":"Betrayal","airDate":"2004-07-31","airDateUtc":"2004-08-01T00:00:00Z","overview":"Terra and Beast Boy are finally kicking up a notch when they go out on a date. But while they were out, someone let Slade's army into Titans Tower. But when Beast Boy and Terra just about kiss, Slade ruins the romance. Slade lets out the news that Terra is his apprentice, making for a very unhappy Beast Boy. Finally, he turns his back on Terra, letting her go with Slade.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19858},{"seriesId":260,"episodeFileId":15747,"seasonNumber":2,"episodeNumber":11,"title":"Fractured","airDate":"2004-08-07","airDateUtc":"2004-08-08T00:00:00Z","overview":"When Robin accidentally wrecks his R-Cycle while pursuing a nasty thug named Johnny Rancid, he winds up with his arm in a cast and doubt in himself. The good news is he gets a visit from his number one fan, a short little weirdo name Larry the Titan. The bad news is Larry's reality-bending powers than they can fix. Can Robin get his nerve back and take down Johnny Rancid before Larry's \"\"help\"\" breaks the fabric of time and space and destroy reality as we know it?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19859},{"seriesId":260,"episodeFileId":15748,"seasonNumber":2,"episodeNumber":12,"title":"Aftershock (1)","airDate":"2004-08-14","airDateUtc":"2004-08-15T00:00:00Z","overview":"Terra returns with a vengeance, Meanwhile, Slade gives orders to Cinderblock, Overload, and Plasmus to launch a series of sinister strikes all over the city. Can our heroes stop the three villianous monsters, Slade, and Terra? Or will the Teen Titans be destroyed?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19860},{"seriesId":260,"episodeFileId":15749,"seasonNumber":2,"episodeNumber":13,"title":"Aftershock (2)","airDate":"2004-08-21","airDateUtc":"2004-08-22T00:00:00Z","overview":"Terra finds out that the Titans are not easily destroyed, when they come back and nearly defeat her. Slade sends Ternion (a combination of Overload, Plasmus, and Cinderblock) while he beats Terra up for running away. When the Titans see how sorry Terra is and the torture Slade is doing to her, will they forgive her? Or will they follow out with their plans and destroy her?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19861},{"seriesId":260,"episodeFileId":15809,"seasonNumber":3,"episodeNumber":1,"title":"Deception","airDate":"2004-08-28","airDateUtc":"2004-08-29T00:00:00Z","overview":"When the H.I.V.E. shows up causing havoc, the Titans get straight to the job. Unfortunatley, they escape, but Robin was able to plant a locator device onto Jynx just in time. The Titans send Cyborg - disguised as a strong man known as \"\"Stone\"\" - to infilitrate the H.I.V.E. academy and find out what they're up to.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19862},{"seriesId":260,"episodeFileId":15810,"seasonNumber":3,"episodeNumber":2,"title":"X","airDate":"2004-09-04","airDateUtc":"2004-09-05T00:00:00Z","overview":"There's a new thief in town - Robin's former evil alter ego, Red X. Robin feels that this is all his fault, and must stop X from getting a dangerous powerful chemical known as synovium that will power him up. Robin stops at nothing to catch his former evil alter ego - but it turns out that there may be a even bigger villianious plot in the mists.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19863},{"seriesId":260,"episodeFileId":15811,"seasonNumber":3,"episodeNumber":3,"title":"Betrothed","airDate":"2004-09-11","airDateUtc":"2004-09-12T00:00:00Z","overview":"The Grand Ruler of Tamaran has arranged for Starfire to be married during the Teen Titans' visit to Tamaran. Robin has a hard time believing that Starfire is to marry someone she hasn't met or known.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19864},{"seriesId":260,"episodeFileId":15812,"seasonNumber":3,"episodeNumber":4,"title":"Crash","airDate":"2004-09-18","airDateUtc":"2004-09-19T00:00:00Z","overview":"Beast Boy's attempts at playing his new \"\"advance copy\"\" of Mega Monkeys 4 ends up with Cyborg getting infected with a computer virus. The Titans reluctantly seek the assistance of Gizmo in getting rid of the virus, and a guilty Beast Boy tags along to help. Can Gizmo and Beast Boy save Cyborg before his virus-addled antics trash the city and result in the virus being spread?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19865},{"seriesId":260,"episodeFileId":15813,"seasonNumber":3,"episodeNumber":5,"title":"Haunted","airDate":"2004-10-02","airDateUtc":"2004-10-03T00:00:00Z","overview":"Ever since Slade's last appearance, Robin has been haunted by the question if he survived or not. And when Cinderblock busts out of jail, Robin is hurled into a vast forest where he gets his answer: Slade is standing right in front of him and he is planning to use Seismic Generators to destroy the entire city. Robin tells the Titans to find the generators while he and Starfire go for Slade, but when Starfire can't see Slade and the Titans can't see the generators, Robin is convinced that it's up to him to put a stop to his nemesis once and for all.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19866},{"seriesId":260,"episodeFileId":15814,"seasonNumber":3,"episodeNumber":6,"title":"Spellbound","airDate":"2004-10-09","airDateUtc":"2004-10-10T00:00:00Z","overview":"Raven has always been lonely at the Tower, despite the other Titans. But that all changes when Raven discovers a young magician trapped inside one of her books.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19867},{"seriesId":260,"episodeFileId":15815,"seasonNumber":3,"episodeNumber":7,"title":"Revolution","airDate":"2004-10-16","airDateUtc":"2004-10-17T00:00:00Z","overview":"The Titans hold a 4th of July party. Everything is going well until Mad Mod crashes the party. He claims that the American Revolution was a hoax and claims the city for England. Worse, wanting to get back to his youth, he steals Robin's youth, turning Robin into an old man!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19868},{"seriesId":260,"episodeFileId":15816,"seasonNumber":3,"episodeNumber":8,"title":"Wavelength","airDate":"2004-10-23","airDateUtc":"2004-10-24T00:00:00Z","overview":"After the destruction of the H.I.V.E. academy, Brother Blood and his minions rebuilt a fortress undersea and plans to create a giant cannon using Cyborg's blueprints to shoot the sea and flood the whole city. Aqualad quickly alerts the Titans of Blood's new scheme and the Titans take the T-Sub to stop Blood's newest plot. Unfortunatley, Blood's got some new tricks up his sleeve - and it's gonna be alot tougher for the Titans to stop him then they thought.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19869},{"seriesId":260,"episodeFileId":15817,"seasonNumber":3,"episodeNumber":9,"title":"The Beast Within","airDate":"2004-10-30","airDateUtc":"2004-10-31T00:00:00Z","overview":"During a fight with Adonis, Beast Boy gets covered in toxic waste. The day after the fight, he shows different changes, such as eating meat, pumping iron and acting nasty. He has a fight with Raven and turns into a Man-Beast and runs amock in the sewers. The Titans discover Raven in his mouth and go to the conclusion that he attacked her and threatened to put him in prison, which makes him angry and form into the Man-Beast once more. But When Cyborg and Robin leave to fight him, leaving Starfire to watch over her, Raven wakes up and says that he saved her. When the guys get to Beast Boy, he gets attacked by another Beast. Beast Boy wins and the other Beast turns out to be Adonis.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19870},{"seriesId":260,"episodeFileId":15818,"seasonNumber":3,"episodeNumber":10,"title":"Can I Keep Him?","airDate":"2004-11-06","airDateUtc":"2004-11-07T01:00:00Z","overview":"Beast Boy's pet, Silkie, the silk worm from \"\"Date With Destiny,\"\" has caused some major trouble at the tower eating almost everything in site. In order to save him from being discovered by the others, Beast Boy gives Silkie to Starfire. She falls in love with it and cares for it like her own child. But when she feeds it some Tamaranian food, it grows huge and destructive. What's worse is Silkie's former father, Killer Moth, is back and Johnny Rancid is tearing up town with some new pets of his own.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19871},{"seriesId":260,"episodeFileId":15819,"seasonNumber":3,"episodeNumber":11,"title":"Bunny Raven or How to Make a Titananimal Disappear","airDate":"2005-01-08","airDateUtc":"2005-01-09T01:00:00Z","overview":"The Amazing Mumbo is up to his old tricks. When the Teen Titans try to stop the madcap magician in mid-performance, Mumbo pulls a fast one. With a wave of his wand, he sucks the Titans into his hat where our heroes discover a strange magical world of weirdness.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19872},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"The Lost Episode","airDate":"2005-01-10","airDateUtc":"2005-01-11T01:00:00Z","overview":"The Titans face a villain called Punk Rocket, who wields a mean guitar that emits crushing sonic waves.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19824},{"seriesId":260,"episodeFileId":15820,"seasonNumber":3,"episodeNumber":12,"title":"Titans East (1)","airDate":"2005-01-15","airDateUtc":"2005-01-16T01:00:00Z","overview":"Speedy, Aqualad, Bumblebee, and two high speed Spanish twins, Mas Y Menos, have formed a new team called Titans East in order to find Brother Blood, who has been heading east to Steel City. Cyborg heads to Steel City to help the new team build their new tower and get things started up and then he plans to head home. But, Cyborg is forced to stay and fight in Steel City for a while when Brother Blood attacks the new tower with intent to make it his new school. When the dust has cleared, the Titans East ask Cyborg to stay on as leader and help them learn to fight as a team. Cyborg accepts not knowing that the Titans East have been brainwashed by Brother Blood.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19873},{"seriesId":260,"episodeFileId":15849,"seasonNumber":4,"episodeNumber":1,"title":"Don't Touch That Dial","airDate":"2005-01-17","airDateUtc":"2005-01-18T01:00:00Z","overview":"Control Freak has escaped from prison and brought the Titans into his TV world. The Titans must track him down through the diffrent channels of television while he gets more powerful with all the TV show related powers he gets.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19875},{"seriesId":260,"episodeFileId":15821,"seasonNumber":3,"episodeNumber":13,"title":"Titans East (2)","airDate":"2005-01-22","airDateUtc":"2005-01-23T01:00:00Z","overview":"The Titans East reveal to Cyborg they are under Brother Blood's control and take him captive in the tower. Then Brother Blood reveals a shocking development. He has converted himself into a half-human, half-robot being like Cyborg. He plans to do the same thing to all his students as he did to himself, thus making them unable to escape his mind control, ever. Cyborg must fight and rescue the Titans East and stop Brother Blood and even with the help of Robin and the others, it will be no easy task.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19874},{"seriesId":260,"episodeFileId":15850,"seasonNumber":4,"episodeNumber":2,"title":"The Quest","airDate":"2005-01-29","airDateUtc":"2005-01-30T01:00:00Z","overview":"When Robin is defeated by the malicious martial artist Kitarou, our hero decides that if he wants to be the best -- he needs more training. So he embarks on a difficult quest to seek a mysterious, legendary teacher known only as... The True Master.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19876},{"seriesId":260,"episodeFileId":15851,"seasonNumber":4,"episodeNumber":3,"title":"Birthmark","airDate":"2005-02-05","airDateUtc":"2005-02-06T01:00:00Z","overview":"It's Raven's birthday, but she is far from wanting to celebrate. But before Robin can learn why, the Titans receive a distress call and go to check it out. When they get there, they are greeted by none other than Slade, back from the dead. But Slade seems to have new powers along with a strange red mark on his head and he has a message for Raven that he is going to deliver, no matter what.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19877},{"seriesId":260,"episodeFileId":15852,"seasonNumber":4,"episodeNumber":4,"title":"Cyborg the Barbarian","airDate":"2005-02-12","airDateUtc":"2005-02-13T01:00:00Z","overview":"Cyborg is mysteriously thrown into the distant past and lands in the middle of a barbarian village that needs his help. But with the nearest charging station 5,000 years in the future, Cy has no way to recharge, and his power supply is dwindling.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19878},{"seriesId":260,"episodeFileId":15853,"seasonNumber":4,"episodeNumber":5,"title":"Employee of the Month","airDate":"2005-02-19","airDateUtc":"2005-02-20T01:00:00Z","overview":"Beast Boy has only one real dream in life -- to someday, somehow own a Moped. And when Robin won't buy him one and Cyborg won't build him one, Beast Boy has only one way to make his dream come true he has to get a job. However, when he goes to work at a new restaurant called \"\"Mega Meaty Meat\"\" for a strange man named Bob, he soon realizes all is not what it seems.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19879},{"seriesId":260,"episodeFileId":15854,"seasonNumber":4,"episodeNumber":6,"title":"Troq","airDate":"2005-05-09","airDateUtc":"2005-05-10T00:00:00Z","overview":"A brave hero from outer space called Val-Yor comes to Earth, and asks for the Titans help in defeating an otherworldly menace known as The Locrix. But according to Val-Yor, Starfire may be the real problem...","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19880},{"seriesId":260,"episodeFileId":15855,"seasonNumber":4,"episodeNumber":7,"title":"The Prophecy","airDate":"2005-06-04","airDateUtc":"2005-06-05T00:00:00Z","overview":"Ever since Slade's return, the Titans have been searching high and low for answers, including looking for theories as to the 'S' mark on his forehead. However, Raven knows why he's back, and the Titans are about to discover the truth themselves after Slade launches another attack.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19881},{"seriesId":260,"episodeFileId":15856,"seasonNumber":4,"episodeNumber":8,"title":"Stranded","airDate":"2005-06-11","airDateUtc":"2005-06-12T00:00:00Z","overview":"An exciting battle on a distant space station ends with a tremendous explosion that blows the T-Ship apart -- and sends the Titans flying off in five different directions to crashland on a strange alien world.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19882},{"seriesId":260,"episodeFileId":15857,"seasonNumber":4,"episodeNumber":9,"title":"Overdrive","airDate":"2005-06-18","airDateUtc":"2005-06-19T00:00:00Z","overview":"Wishing to get the most he can out of his time, Cyborg installs a special Max-7 chip into his head which throws him into overdrive, allowing him to do a lot of things, very fast. But when the self-copying Billy Numerous starts stealing everything in town, even the Max-7 may not be enough to stop him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19883},{"seriesId":260,"episodeFileId":15858,"seasonNumber":4,"episodeNumber":10,"title":"Mother Mae-Eye","airDate":"2005-06-25","airDateUtc":"2005-06-26T00:00:00Z","overview":"The strange Mother Mae-Eye has taken the Titans on as her children and turned the tower into a massive gingerbread house. But even below her initial weirdness, she just keeps getting weirder.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19884},{"seriesId":260,"episodeFileId":15859,"seasonNumber":4,"episodeNumber":11,"title":"The End (1)","airDate":"2005-07-02","airDateUtc":"2005-07-03T00:00:00Z","overview":"The day has finally come. Raven is destined to end the world on this day. Trigon will come by sunset. But not if the Titans have anything to say about it. They place Raven in a safe room while they take on an army of flame creatures and Slade who is determind to take Raven to the Trigon. But Raven knows the horrible truth. No matter what the Titans do, there is no escaping her destiny.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19885},{"seriesId":260,"episodeFileId":15860,"seasonNumber":4,"episodeNumber":12,"title":"The End (2)","airDate":"2005-07-09","airDateUtc":"2005-07-10T00:00:00Z","overview":"Robin, Starfire, Cyborg, and Beast Boy awake to a nightmare. Trigon has risen and he has ended the world. Every building is destroyed, and all life has been turned to stone. Due to one last gift of Raven's, the Titans have survived. Now, they must find a way to get Raven back, maybe she knows of a way to stop Trigon. But to do this, the Titans will have to accept help from their old enemy - Slade.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19886},{"seriesId":260,"episodeFileId":15861,"seasonNumber":4,"episodeNumber":13,"title":"The End (3)","airDate":"2005-07-16","airDateUtc":"2005-07-17T00:00:00Z","overview":"The stars are aligned. The sun is in eclipse. All of Slade's labors are about to reach fruition -- and the Titans are about to face their greatest challenge ever. But is there really any hope of preventing the end of the world?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19887},{"seriesId":260,"episodeFileId":15802,"seasonNumber":0,"episodeNumber":9,"title":"Music","airDate":"2005-09-12","airDateUtc":"2005-09-13T00:00:00Z","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19832},{"seriesId":260,"episodeFileId":15825,"seasonNumber":5,"episodeNumber":1,"title":"Homecoming (1)","airDate":"2005-09-24","airDateUtc":"2005-09-25T00:00:00Z","overview":"When Beast Boy's former team, The Doom Patrol, is in trouble, the Titans must embark on a daring mission to save them. Beast Boy explains that this can only mean one thing: the Doom Patrol's greatest foes are back. The Brotherhood of Evil has returned.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19888},{"seriesId":260,"episodeFileId":15826,"seasonNumber":5,"episodeNumber":2,"title":"Homecoming (2)","airDate":"2005-10-01","airDateUtc":"2005-10-02T00:00:00Z","overview":"The Doom Patrol has been saved, but the sinister Brotherhood of Evil is still on the loose. It's just like old times for Beast Boy when he finds himself back on the team for one last mission - to stop the Brotherhood once and for all... no matter what the","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19889},{"seriesId":260,"episodeFileId":15827,"seasonNumber":5,"episodeNumber":3,"title":"Trust","airDate":"2005-10-08","airDateUtc":"2005-10-09T00:00:00Z","overview":"The Brotherhood of Evil has begun its master plan to eliminate all of the young superheroes around the globe, starting with honorary Titans, Wildebeest and Hotspot. This new threat brings Robin to Monaco. But with an unknown enemy, how can anyone know who","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19890},{"seriesId":260,"episodeFileId":15828,"seasonNumber":5,"episodeNumber":4,"title":"For Real","airDate":"2005-10-15","airDateUtc":"2005-10-16T00:00:00Z","overview":"Control Freak returns to Titan Tower with \"\"The Ultimate Titans Challenge,\"\" a series of events designed specifically to challenge the Teen Titans. But what happens to Control Freak's big plan when he finds himself facing not the \"\"real\"\" Titans - but the Tit","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19891},{"seriesId":260,"episodeFileId":15829,"seasonNumber":5,"episodeNumber":5,"title":"Snowblind","airDate":"2005-10-22","airDateUtc":"2005-10-23T00:00:00Z","overview":"While battling a mysterious creature in the wilds of Siberia, Starfire is lost in a blinding snowstorm. A reclusive young soldier named Red Star comes to her aid and the two become fast friends. When Robin and the rest of the Titans arrive, they discover","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19892},{"seriesId":260,"episodeFileId":15830,"seasonNumber":5,"episodeNumber":6,"title":"Kole","airDate":"2005-11-05","airDateUtc":"2005-11-06T01:00:00Z","overview":"While in the Arctic Circle, the Titans once again take on Dr. Light. And when an accident sends the Titans through the ice, they discover a new exotic Underworld - and two new superheroes, Kole and her caveman sidekick, Gnarrk. Unfortunately, Dr. Light has plans for Kole.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19893},{"seriesId":260,"episodeFileId":15831,"seasonNumber":5,"episodeNumber":7,"title":"Hide and Seek","airDate":"2005-11-12","airDateUtc":"2005-11-13T01:00:00Z","overview":"With the other Titans off fighting exciting battles with the Brotherhood of Evil, Raven is left with the worst task of all - transporting three rambunctious future superheroes to safety. But this simple task turns into an adventure in babysitting as Raven and her young charges are chased through the Alps by the Brotherhood of Evil's Msr. Mallah.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19894},{"seriesId":260,"episodeFileId":15832,"seasonNumber":5,"episodeNumber":8,"title":"Lightspeed","airDate":"2005-12-03","airDateUtc":"2005-12-04T01:00:00Z","overview":"With Titans dispatched across the globe, members of the HIVE Five figure they have it made. Unfortunately, their city-wide crime spree is cut short when a new hero in town spoils the fun. Handing him over to the Brotherhood of Evil may score the HIVE Five points, but actually catching this lightning-fast do-gooder is much harder than it seems.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19895},{"seriesId":260,"episodeFileId":15833,"seasonNumber":5,"episodeNumber":9,"title":"Revved Up","airDate":"2005-12-10","airDateUtc":"2005-12-11T01:00:00Z","overview":"Robin's most prized possession is stolen by the hip hot-rodder, Ding Dong Daddy, and to get it back they're going to have to beat him in a cross-country road race. But with Ding Dong Daddy making the rules and a few unexpected rivals joining in the competition, it's anyone's guess who will cross the finish line first.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19896},{"seriesId":260,"episodeFileId":15834,"seasonNumber":5,"episodeNumber":10,"title":"Go!","airDate":"2005-12-17","airDateUtc":"2005-12-18T01:00:00Z","overview":"How did Robin meet Starfire? What was Beast Boy's first joke? Why did Cyborg build his Sonic Cannon? When did Raven first call the Titans her friends? Return to the very beginning and see how it all started - from the word \"\"GO!\"\"","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19897},{"seriesId":260,"episodeFileId":15835,"seasonNumber":5,"episodeNumber":11,"title":"Calling All Titans","airDate":"2006-01-07","airDateUtc":"2006-01-08T01:00:00Z","overview":"The final game has begun. While the Titans are spread out throughout the globe on one last mission, Brotherhood mastermind, the Brain, makes his move. Robin has a strategy of his own, but as all the villains begin taking down all the superheroes all at once, will it be enough to save his friends?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19898},{"seriesId":260,"episodeFileId":15836,"seasonNumber":5,"episodeNumber":12,"title":"Titans Together","airDate":"2006-01-14","airDateUtc":"2006-01-15T01:00:00Z","overview":"All seems lost for young heroes across the globe - they have been spread far and wide, their lines of communication have been severed, and one by one, the Brotherhood of Evil takes them down. But as The Brain claims his victory is assured, one brave hero manages to slip through the Brotherhood of Evil's grasp.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19899},{"seriesId":260,"episodeFileId":15837,"seasonNumber":5,"episodeNumber":13,"title":"Things Change","airDate":"2006-01-16","airDateUtc":"2006-01-17T01:00:00Z","overview":"After months of fighting the Brotherhood of Evil around the globe, the Teen Titans are finally back home. But a walk through the city reveals that things are no longer as they remembered. And while Beast Boy wants everything to be just like it was in the past, he has to face the fact that in life things change.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":19900},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Trouble in Tokyo","airDate":"2006-09-15","airDateUtc":"2006-09-16T00:00:00Z","overview":"When a Japanese villain attacks Titans Tower, Robin, Starfire, Cyborg, Raven, and Beast Boy spring into action. When Robin finds out that Saico-Tek was sent by a mysterious and menacing Japanese criminal known as Brushogun, and the Teen Titans travel to Tokyo to track the villain down.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19825},{"seriesId":260,"episodeFileId":15793,"seasonNumber":0,"episodeNumber":4,"title":"Comic Creations","airDate":"2007-04-10","airDateUtc":"2007-04-11T00:00:00Z","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19827},{"seriesId":260,"episodeFileId":15795,"seasonNumber":0,"episodeNumber":5,"title":"Finding Their Voices","airDate":"2007-04-10","airDateUtc":"2007-04-11T00:25:00Z","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19828},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"Intro Music Video","airDate":"2007-04-10","airDateUtc":"2007-04-11T00:50:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19829},{"seriesId":260,"episodeFileId":15798,"seasonNumber":0,"episodeNumber":7,"title":"Puffy Ami Yumi Interview","airDate":"2007-04-10","airDateUtc":"2007-04-11T01:15:00Z","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19830},{"seriesId":260,"episodeFileId":15800,"seasonNumber":0,"episodeNumber":8,"title":"The Hiros","airDate":"2007-04-10","airDateUtc":"2007-04-11T01:40:00Z","hasFile":true,"monitored":false,"unverifiedSceneNumbering":false,"id":19831},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Foes","airDate":"2007-04-10","airDateUtc":"2007-04-11T02:05:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19833},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Know The Foes","airDate":"2007-10-20","airDateUtc":"2007-10-21T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19834},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Friends and Foes","airDate":"2008-07-08","airDateUtc":"2008-07-09T00:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19835},{"seriesId":260,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Teen Titans Go! vs. Teen Titans","airDate":"2019-07-21","airDateUtc":"2019-07-22T00:00:00Z","overview":"The comedic 2013 quintet takes on their 2003 counterparts when villains from each of their worlds join forces to pit the two Titan teams against each other. They'll need to set aside their differences and work together to combat Trigon, Hexagon, Santa Claus and time itself in order to save the universe.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":19826}],"episodeFile":[{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E01.How Long is Forever-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E01.How Long is Forever-DVD.avi","size":182767616,"dateAdded":"2020-10-12T22:23:47.489156Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":977915,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15737},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Every Dog Has His Day-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E02.Every Dog Has His Day-DVD.avi","size":182784000,"dateAdded":"2020-10-12T22:23:47.577883Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":978126,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15738},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Terra-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E03.Terra-DVD.avi","size":182816768,"dateAdded":"2020-10-12T22:23:47.668016Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":976751,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15739},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Only Human-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E04.Only Human-DVD.avi","size":182784000,"dateAdded":"2020-10-12T22:23:47.755198Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":963010,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15740},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Fear Itself-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E05.Fear Itself-DVD.avi","size":182771712,"dateAdded":"2020-10-12T22:23:47.846016Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":961547,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15741},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Date with Destiny-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E06.Date with Destiny-DVD.avi","size":182779904,"dateAdded":"2020-10-12T22:23:47.935428Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":977096,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:38","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15742},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Transformation-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E07.Transformation-DVD.avi","size":184406430,"dateAdded":"2020-10-12T22:23:48.025741Z","releaseGroup":"DEiMOS","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":123567,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":976793,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"22:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15743},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Titan Rising-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E08.Titan Rising-DVD.avi","size":182775808,"dateAdded":"2020-10-12T22:23:48.117321Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":964304,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15744},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Winner Take All-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E09.Winner Take All-DVD.avi","size":182827008,"dateAdded":"2020-10-12T22:23:48.208152Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":936366,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"22:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15745},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E10.Betrayal-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E10.Betrayal-DVD.avi","size":182753280,"dateAdded":"2020-10-12T22:23:48.298078Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":937780,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"22:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15746},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Fractured-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E11.Fractured-DVD.avi","size":182923264,"dateAdded":"2020-10-12T22:23:48.388089Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":972235,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15747},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Aftershock (1)-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E12.Aftershock (1)-DVD.avi","size":182786048,"dateAdded":"2020-10-12T22:23:48.478143Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":957604,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"22:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15748},{"seriesId":260,"seasonNumber":2,"relativePath":"Season 02\/S02E13.Aftershock (2)-DVD.avi","path":"\/tv\/Teen Titans\/Season 02\/S02E13.Aftershock (2)-DVD.avi","size":182771712,"dateAdded":"2020-10-12T22:23:48.569004Z","releaseGroup":"RUNNER","language":{"id":1,"name":"English"},"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":134000,"audioChannels":2.0,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":960179,"videoCodec":"XviD","videoFps":23.976,"resolution":"512x384","runTime":"21:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15749},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Final Exam-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E01.Final Exam-Bluray-1080p.mkv","size":562206956,"dateAdded":"2020-10-12T22:56:14.020838Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":164769,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3332085,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:23","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15789},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Sisters-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E02.Sisters-Bluray-1080p.mkv","size":545964945,"dateAdded":"2020-10-12T22:57:55.897669Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":163987,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3172809,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15790},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Divide and Conquer-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E03.Divide and Conquer-Bluray-1080p.mkv","size":523537737,"dateAdded":"2020-10-12T22:59:37.740523Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":166233,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3035824,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15791},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Forces of Nature-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E04.Forces of Nature-Bluray-1080p.mkv","size":579920712,"dateAdded":"2020-10-12T23:01:19.524811Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":155180,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3369427,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15792},{"seriesId":260,"seasonNumber":0,"relativePath":"Specials\/S00E04.Comic Creations-Bluray-480p.mkv","path":"\/tv\/Teen Titans\/Specials\/S00E04.Comic Creations-Bluray-480p.mkv","size":152008101,"dateAdded":"2020-10-12T23:03:01.593644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":13,"name":"Bluray-480p","source":"bluray","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":79998,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":841959,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"21:55","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15793},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E05.The Sum of His Parts-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E05.The Sum of His Parts-Bluray-1080p.mkv","size":571811263,"dateAdded":"2020-10-12T23:04:42.332494Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161691,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3343186,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15794},{"seriesId":260,"seasonNumber":0,"relativePath":"Specials\/S00E05.Finding Their Voices-Bluray-480p.mkv","path":"\/tv\/Teen Titans\/Specials\/S00E05.Finding Their Voices-Bluray-480p.mkv","size":55663711,"dateAdded":"2020-10-12T23:06:24.555452Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":13,"name":"Bluray-480p","source":"bluray","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":860062,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"7:52","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15795},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Nevermore-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E06.Nevermore-Bluray-1080p.mkv","size":568477849,"dateAdded":"2020-10-12T23:08:05.203115Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160149,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3327565,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:40","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15796},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Switched-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E07.Switched-Bluray-1080p.mkv","size":588942934,"dateAdded":"2020-10-12T23:09:48.102072Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":161582,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3446786,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15797},{"seriesId":260,"seasonNumber":0,"relativePath":"Specials\/S00E07.Puffy Ami Yumi Interview-Bluray-480p.mkv","path":"\/tv\/Teen Titans\/Specials\/S00E07.Puffy Ami Yumi Interview-Bluray-480p.mkv","size":96170977,"dateAdded":"2020-10-12T23:11:30.442254Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":13,"name":"Bluray-480p","source":"bluray","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":79996,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":885172,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"13:15","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15798},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Deep Six-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E08.Deep Six-Bluray-1080p.mkv","size":718529081,"dateAdded":"2020-10-12T23:13:11.022343Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":152805,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4241071,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15799},{"seriesId":260,"seasonNumber":0,"relativePath":"Specials\/S00E08.The Hiros-Bluray-480p.mkv","path":"\/tv\/Teen Titans\/Specials\/S00E08.The Hiros-Bluray-480p.mkv","size":37238908,"dateAdded":"2020-10-12T23:14:54.0003Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":13,"name":"Bluray-480p","source":"bluray","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":80000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":495575,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"8:35","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15800},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Masks-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E09.Masks-Bluray-1080p.mkv","size":633962996,"dateAdded":"2020-10-12T23:16:34.381147Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":162718,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3717839,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:44","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15801},{"seriesId":260,"seasonNumber":0,"relativePath":"Specials\/S00E09.Music-Bluray-480p.mkv","path":"\/tv\/Teen Titans\/Specials\/S00E09.Music-Bluray-480p.mkv","size":37497895,"dateAdded":"2020-10-12T23:18:16.517314Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":13,"name":"Bluray-480p","source":"bluray","resolution":480},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":79987,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1336455,"videoCodec":"x265","videoFps":29.97,"resolution":"720x480","runTime":"3:31","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15802},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Mad Mod-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E10.Mad Mod-Bluray-1080p.mkv","size":654445761,"dateAdded":"2020-10-12T23:19:56.894795Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":160329,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3842978,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:45","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15803},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Apprentice (1)-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E11.Apprentice (1)-Bluray-1080p.mkv","size":555009994,"dateAdded":"2020-10-12T23:21:39.5344Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":157101,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3285882,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:26","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15804},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Apprentice (2)-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E12.Apprentice (2)-Bluray-1080p.mkv","size":510804020,"dateAdded":"2020-10-12T23:23:21.94334Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":169146,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2961309,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:41","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15805},{"seriesId":260,"seasonNumber":1,"relativePath":"Season 01\/S01E13.Car Trouble-Bluray-1080p.mkv","path":"\/tv\/Teen Titans\/Season 01\/S01E13.Car Trouble-Bluray-1080p.mkv","size":591275398,"dateAdded":"2020-10-12T23:25:04.880802Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":177419,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3445446,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"21:42","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":15806},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E01.Deception-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E01.Deception-WEBDL-1080p.mkv","size":906999663,"dateAdded":"2020-10-13T01:33:16.240559Z","sceneName":"Teen.Titans.S03E01.Deception.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15809},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E02.X-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E02.X-WEBDL-1080p.mkv","size":867763161,"dateAdded":"2020-10-13T01:35:02.443311Z","sceneName":"Teen.Titans.S03E02.X.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15810},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Betrothed-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E03.Betrothed-WEBDL-1080p.mkv","size":886345728,"dateAdded":"2020-10-13T01:36:46.486698Z","sceneName":"Teen.Titans.S03E03.Betrothed.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15811},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E04.Crash-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E04.Crash-WEBDL-1080p.mkv","size":864103609,"dateAdded":"2020-10-13T01:38:30.007783Z","sceneName":"Teen.Titans.S03E04.Crash.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15812},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E05.Haunted-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E05.Haunted-WEBDL-1080p.mkv","size":928546816,"dateAdded":"2020-10-13T01:40:14.069734Z","sceneName":"Teen.Titans.S03E05.Haunted.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15813},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Spellbound-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E06.Spellbound-WEBDL-1080p.mkv","size":806515204,"dateAdded":"2020-10-13T01:41:59.008113Z","sceneName":"Teen.Titans.S03E06.Spellbound.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15814},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E07.Revolution-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E07.Revolution-WEBDL-1080p.mkv","size":868693091,"dateAdded":"2020-10-13T01:43:43.716166Z","sceneName":"Teen.Titans.S03E07.Revolution.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15815},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E08.Wavelength-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E08.Wavelength-WEBDL-1080p.mkv","size":930066432,"dateAdded":"2020-10-13T01:45:28.302652Z","sceneName":"Teen.Titans.S03E08.Wavelength.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15816},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E09.The Beast Within-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E09.The Beast Within-WEBDL-1080p.mkv","size":830033920,"dateAdded":"2020-10-13T01:47:12.912394Z","sceneName":"Teen.Titans.S03E09.The.Beast.Within.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:03","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15817},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E10.Can I Keep Him-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E10.Can I Keep Him-WEBDL-1080p.mkv","size":877201490,"dateAdded":"2020-10-13T01:48:56.718491Z","sceneName":"Teen.Titans.S03E10.Can.I.Keep.Him.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15818},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Bunny Raven or How to Make a Titananimal Disappear-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E11.Bunny Raven or How to Make a Titananimal Disappear-WEBDL-1080p.mkv","size":862512922,"dateAdded":"2020-10-13T01:50:42.53983Z","sceneName":"Teen.Titans.S03E11.Bunny.Raven.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15819},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E12.Titans East (1)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E12.Titans East (1)-WEBDL-1080p.mkv","size":872144896,"dateAdded":"2020-10-13T01:52:26.216402Z","sceneName":"Teen.Titans.S03E12.Titans.East.Pt.1.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15820},{"seriesId":260,"seasonNumber":3,"relativePath":"Season 03\/S03E13.Titans East (2)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 03\/S03E13.Titans East (2)-WEBDL-1080p.mkv","size":935510016,"dateAdded":"2020-10-13T01:54:09.838342Z","sceneName":"Teen.Titans.S03E13.Titans.East.Pt.2.1080p.WEB-DL.AAC2.0.H.264-YFN","releaseGroup":"YFN","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15821},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E01.Homecoming (1)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E01.Homecoming (1)-WEBDL-1080p.mkv","size":907060970,"dateAdded":"2020-10-13T06:41:49.933993Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125332,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5088843,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15825},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E02.Homecoming (2)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E02.Homecoming (2)-WEBDL-1080p.mkv","size":844359181,"dateAdded":"2020-10-13T06:41:57.615082Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125137,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4751184,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15826},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E03.Trust-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E03.Trust-WEBDL-1080p.mkv","size":861978816,"dateAdded":"2020-10-13T06:42:06.799331Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125029,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4878994,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15827},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E04.For Real-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E04.For Real-WEBDL-1080p.mkv","size":892271074,"dateAdded":"2020-10-13T06:42:15.695829Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125066,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5009535,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15828},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E05.Snowblind-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E05.Snowblind-WEBDL-1080p.mkv","size":837168893,"dateAdded":"2020-10-13T06:42:27.502783Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125437,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4705218,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15829},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E06.Kole-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E06.Kole-WEBDL-1080p.mkv","size":878134315,"dateAdded":"2020-10-13T06:42:37.743398Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125529,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4983857,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15830},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E07.Hide and Seek-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E07.Hide and Seek-WEBDL-1080p.mkv","size":889296964,"dateAdded":"2020-10-13T06:42:48.622762Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125488,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4979994,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15831},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E08.Lightspeed-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E08.Lightspeed-WEBDL-1080p.mkv","size":884271949,"dateAdded":"2020-10-13T06:42:59.375455Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125087,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4976967,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15832},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E09.Revved Up-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E09.Revved Up-WEBDL-1080p.mkv","size":899527015,"dateAdded":"2020-10-13T06:43:09.262967Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":124162,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5112770,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15833},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E10.Go!-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E10.Go!-WEBDL-1080p.mkv","size":864441451,"dateAdded":"2020-10-13T06:43:18.350831Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125392,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4897041,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15834},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E11.Calling All Titans-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E11.Calling All Titans-WEBDL-1080p.mkv","size":838223388,"dateAdded":"2020-10-13T06:43:27.406944Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125085,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4734728,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15835},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E12.Titans Together-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E12.Titans Together-WEBDL-1080p.mkv","size":899453346,"dateAdded":"2020-10-13T06:43:36.750466Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126120,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5055107,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15836},{"seriesId":260,"seasonNumber":5,"relativePath":"Season 05\/S05E13.Things Change-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 05\/S05E13.Things Change-WEBDL-1080p.mkv","size":904244378,"dateAdded":"2020-10-13T06:43:46.835015Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":126461,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5084170,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15837},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E01.Don't Touch That Dial-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E01.Don't Touch That Dial-WEBDL-1080p.mkv","size":842353138,"dateAdded":"2020-10-13T16:36:59.540561Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125191,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4724299,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:08","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15849},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E02.The Quest-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E02.The Quest-WEBDL-1080p.mkv","size":886705484,"dateAdded":"2020-10-13T16:38:43.690302Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125425,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4992213,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15850},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E03.Birthmark-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E03.Birthmark-WEBDL-1080p.mkv","size":867732264,"dateAdded":"2020-10-13T16:40:27.393953Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125893,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4940624,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15851},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E04.Cyborg the Barbarian-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E04.Cyborg the Barbarian-WEBDL-1080p.mkv","size":832928297,"dateAdded":"2020-10-13T16:42:11.524847Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125432,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4696629,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15852},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E05.Employee of the Month-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E05.Employee of the Month-WEBDL-1080p.mkv","size":867312001,"dateAdded":"2020-10-13T16:43:55.147609Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125319,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4884974,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15853},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E06.Troq-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E06.Troq-WEBDL-1080p.mkv","size":890331734,"dateAdded":"2020-10-13T16:45:38.546532Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125691,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5017699,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15854},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E07.The Prophecy-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E07.The Prophecy-WEBDL-1080p.mkv","size":875970978,"dateAdded":"2020-10-13T16:47:24.21266Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125764,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4952352,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15855},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E08.Stranded-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E08.Stranded-WEBDL-1080p.mkv","size":888291518,"dateAdded":"2020-10-13T16:49:10.213505Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125037,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5003956,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15856},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E09.Overdrive-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E09.Overdrive-WEBDL-1080p.mkv","size":909019175,"dateAdded":"2020-10-13T16:50:53.516273Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125522,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5114032,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15857},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E10.Mother Mae-Eye-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E10.Mother Mae-Eye-WEBDL-1080p.mkv","size":860186163,"dateAdded":"2020-10-13T16:52:37.556573Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125151,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4910143,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"22:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15858},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E11.The End (1)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E11.The End (1)-WEBDL-1080p.mkv","size":893432221,"dateAdded":"2020-10-13T16:54:23.359748Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125450,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5032594,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15859},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E12.The End (2)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E12.The End (2)-WEBDL-1080p.mkv","size":865548793,"dateAdded":"2020-10-13T16:56:08.192767Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125640,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870186,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15860},{"seriesId":260,"seasonNumber":4,"relativePath":"Season 04\/S04E13.The End (3)-WEBDL-1080p.mkv","path":"\/tv\/Teen Titans\/Season 04\/S04E13.The End (3)-WEBDL-1080p.mkv","size":843051475,"dateAdded":"2020-10-13T16:57:51.795672Z","releaseGroup":"Arian","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":125411,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4735339,"videoCodec":"h264","videoFps":23.976,"resolution":"1916x1076","runTime":"23:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":15861}],"queue":[]},"277":{"series":{"title":"Invincible (2021)","alternateTitles":[{"title":"Invencible","seasonNumber":-1},{"title":"Invincible","seasonNumber":-1},{"title":"Unbesiegbar","seasonNumber":-1}],"sortTitle":"invincible 2021","status":"continuing","ended":false,"overview":"Mark Grayson is a normal teenager, except for the fact that his father is the most powerful superhero on the planet. Shortly after his seventeenth birthday, Mark begins to develop powers of his own and enters into his father\u2019s tutelage.","previousAiring":"2021-04-30T04:00:00Z","network":"Amazon Prime Video","airTime":"00:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/286\/banner.jpg?lastWrite=637562096770414880","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368207\/banners\/6035ee845aadf.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/286\/poster.jpg?lastWrite=637562096771454860","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/368207\/posters\/60675364ec7d4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/286\/fanart.jpg?lastWrite=637613742902870740","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368207\/backgrounds\/602de190e39bd.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2021-04-30T04:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":11460070607,"percentOfEpisodes":100.0}}],"year":2021,"path":"\/tv\/Invincible (2021)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":368207,"tvRageId":0,"tvMazeId":37196,"firstAired":"2021-03-26T00:00:00Z","seriesType":"standard","cleanTitle":"invincible2021","imdbId":"tt6741278","titleSlug":"invincible-2021","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Comedy","Science Fiction"],"tags":[],"added":"2021-05-10T02:14:35.958365Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":11460070607,"percentOfEpisodes":100.0},"id":286},"episodes":[{"seriesId":286,"episodeFileId":18126,"seasonNumber":1,"episodeNumber":1,"title":"IT\u2019S ABOUT TIME","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:00:00Z","overview":"When Mark Grayson finally inherits powers from his superhero father, it\u2019s a dream come true. But there\u2019s more to being a hero than just choosing a name and costume.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21497},{"seriesId":286,"episodeFileId":18133,"seasonNumber":1,"episodeNumber":2,"title":"HERE GOES NOTHING","airDate":"2021-03-26","airDateUtc":"2021-03-26T04:45:00Z","overview":"With his father out of action, Mark struggles to defend the city against an interdimensional invasion, joining forces with a team of teenage superheroes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21498},{"seriesId":286,"episodeFileId":18132,"seasonNumber":1,"episodeNumber":3,"title":"WHO YOU CALLING UGLY?","airDate":"2021-03-26","airDateUtc":"2021-03-26T05:30:00Z","overview":"Mark has to cut a study date short to help save Mount Rushmore from a crazed scientist. Robot deals with Action - Comic as he assembles a new team of world-saving superheroes.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21499},{"seriesId":286,"episodeFileId":18131,"seasonNumber":1,"episodeNumber":4,"title":"NEIL ARMSTRONG, EAT YOUR HEART OUT","airDate":"2021-04-02","airDateUtc":"2021-04-02T04:00:00Z","overview":"It\u2019s two firsts for Mark: a first date and a first trip to another planet. At the same time, Nolan and Debbie revisit their own first vacation together.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21500},{"seriesId":286,"episodeFileId":18128,"seasonNumber":1,"episodeNumber":5,"title":"THAT ACTUALLY HURT","airDate":"2021-04-09","airDateUtc":"2021-04-09T04:00:00Z","overview":"Feeling confident in his new abilities, Mark risks a team-up with a local villain to take down a crime lord, while simultaneously juggling school and a new relationship.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21501},{"seriesId":286,"episodeFileId":18129,"seasonNumber":1,"episodeNumber":6,"title":"YOU LOOK KINDA DEAD","airDate":"2021-04-16","airDateUtc":"2021-04-16T04:00:00Z","overview":"Mark joins William and Amber on a campus visit to Upstate University, hoping to discover a new future for himself. Debbie makes her own disturbing discovery.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21502},{"seriesId":286,"episodeFileId":18130,"seasonNumber":1,"episodeNumber":7,"title":"WE NEED TO TALK","airDate":"2021-04-23","airDateUtc":"2021-04-23T04:00:00Z","overview":"Feeling lost and confused, Mark looks for advice from Eve. At the same time, everyone\u2019s looking for him.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21503},{"seriesId":286,"episodeFileId":18127,"seasonNumber":1,"episodeNumber":8,"title":"WHERE I REALLY COME FROM","airDate":"2021-04-30","airDateUtc":"2021-04-30T04:00:00Z","overview":"Mark must prove he\u2019s become the hero he\u2019s always wanted to be by stopping an unstoppable force.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":21504}],"episodeFile":[{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E01.IT\u2019S ABOUT TIME-WEBDL-1080p Proper.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E01.IT\u2019S ABOUT TIME-WEBDL-1080p Proper.mkv","size":1517290329,"dateAdded":"2021-05-10T02:26:25.552173Z","sceneName":"Invincible.2021.S01E01.REPACK.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3556664,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"47:14","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18126},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E08.WHERE I REALLY COME FROM-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E08.WHERE I REALLY COME FROM-WEBDL-1080p.mkv","size":1513058410,"dateAdded":"2021-05-10T02:27:55.592678Z","sceneName":"Invincible.2021.S01E08.1080p.WEB.H264-GLHF[rartv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3805316,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:28","scanType":"Progressive","subtitles":"English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Sw"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18127},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E05.THAT ACTUALLY HURT-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E05.THAT ACTUALLY HURT-WEBDL-1080p.mkv","size":1462014522,"dateAdded":"2021-05-10T02:28:06.516512Z","sceneName":"Invincible.2021.S01E05.1080p.WEB.H264-GGEZ[rartv]","releaseGroup":"GGEZ","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3512646,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"46:00","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18128},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E06.YOU LOOK KINDA DEAD-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E06.YOU LOOK KINDA DEAD-WEBDL-1080p.mkv","size":1269031201,"dateAdded":"2021-05-10T02:32:55.667538Z","sceneName":"Invincible.2021.S01E06.1080p.WEB.H264-GLHF[TGx] \u2b50","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3056570,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:51","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18129},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E07.WE NEED TO TALK-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E07.WE NEED TO TALK-WEBDL-1080p.mkv","size":1457279473,"dateAdded":"2021-05-10T02:37:25.778805Z","sceneName":"Invincible.2021.S01E07.1080p.WEB.H264-GLHF[TGx] \u2b50","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3305153,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"48:16","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18130},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E04.NEIL ARMSTRONG, EAT YOUR HEART OUT-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E04.NEIL ARMSTRONG, EAT YOUR HEART OUT-WEBDL-1080p.mkv","size":1145662347,"dateAdded":"2021-05-10T02:38:55.76704Z","sceneName":"Invincible.2021.S01E04.1080p.WEB.H264-GGWP[TGx] \u2b50","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2721143,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:32","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18131},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E03.WHO YOU CALLING UGLY-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E03.WHO YOU CALLING UGLY-WEBDL-1080p.mkv","size":1437279200,"dateAdded":"2021-05-10T02:43:25.85267Z","sceneName":"Invincible.2021.S01E03.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3836084,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"41:57","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18132},{"seriesId":286,"seasonNumber":1,"relativePath":"Season 01\/S01E02.HERE GOES NOTHING-WEBDL-1080p.mkv","path":"\/tv\/Invincible (2021)\/Season 01\/S01E02.HERE GOES NOTHING-WEBDL-1080p.mkv","size":1658455125,"dateAdded":"2021-05-10T02:43:39.823697Z","sceneName":"Invincible.2021.S01E02.1080p.WEB.H264-GGWP[rartv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4263797,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x1080","runTime":"44:11","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ fil \/ French \/ Hebrew \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Russian \/ Swedish \/ Tamil \/ Telugu \/ Thai \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18133}],"queue":[]},"278":{"series":{"title":"Digimon Adventure:","alternateTitles":[{"title":"Digimon Adventure (2020)","sceneSeasonNumber":-1},{"title":"Digimon Adventure:","seasonNumber":-1,"sceneSeasonNumber":1}],"sortTitle":"digimon adventure","status":"continuing","ended":false,"overview":"It's the year 2020. The Network has become something humans can no longer do without in their daily lives. But what humans don't know is that on the other side of the Network is the Digital World, a realm of light and darkness. Nor are they aware of the Digimon who live there.\r\n\r\nWidespread Network difficulties arise, centered around the Tokyo area. Traffic signals blink chaotically, public outdoor TVs display garbled text, and so on. The news reports it as a case of cyberterrorism.\r\n\r\nFifth grader Taichi Yagami stayed home by himself to get ready for a weekend summer camp, but his mother and little sister Hikari went to Shibuya, and now they're aboard a runaway train. Taichi hurries to Shibuya to save his mother and sister, but the instant he heads toward the station platform... a strange phenomenon befalls the DigiDestined, and Taichi goes to the Digital World! The DigiDestined meet their partner Digimon, and they're faced with an adventure into the unknown...!","nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","network":"Fuji TV","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/264\/banner.jpg?lastWrite=637429491919397360","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/banners\/62058361.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/264\/poster.jpg?lastWrite=637534834658779180","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/posters\/5e89e835b9958.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/264\/fanart.jpg?lastWrite=637429491921957320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/376003\/backgrounds\/62109827.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"nextAiring":"2021-09-12T00:00:00Z","previousAiring":"2021-09-05T00:00:00Z","episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":66,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625}}],"year":2020,"path":"\/tv\/Digimon Adventure-","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":376003,"tvRageId":0,"tvMazeId":46518,"firstAired":"2020-04-05T00:00:00Z","seriesType":"standard","cleanTitle":"digimonadventure","imdbId":"tt11645760","titleSlug":"digimon-adventure","rootFolderPath":"\/tv\/","certification":"TV-G","genres":["Action","Adventure","Animation","Anime","Children"],"tags":[],"added":"2020-12-07T14:46:31.020298Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":17,"episodeCount":64,"totalEpisodeCount":67,"sizeOnDisk":22341452821,"percentOfEpisodes":26.5625},"id":264},"episodes":[{"seriesId":264,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"TBA","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20179},{"seriesId":264,"episodeFileId":18891,"seasonNumber":1,"episodeNumber":1,"title":"Tokyo Digital Crisis","airDate":"2020-04-05","airDateUtc":"2020-04-05T00:00:00Z","overview":"Taichi Yagami and Koshiro Izumi are two boys preparing for their kids\u2019 club camping trip when Taichi\u2019s mother and sister are caught in a cyberattack occurring in Tokyo. Taichi fights to save his family with a mysterious life form.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":20180},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"War Game","airDate":"2020-04-12","airDateUtc":"2020-04-12T00:00:00Z","overview":"Taichi comes face to face with a mysterious boy riding on the back of a Digimon inside the Network. The missile launch is approaching and Taichi and his friends must stop it at all costs.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":20181},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"And to the Digital World","airDate":"2020-04-19","airDateUtc":"2020-04-19T00:00:00Z","overview":"An enormous, white Digimon fights with Taichi and Yamato to stop the missile just before it hits the metropolis. Shortly after the missile incident and the kids\u2019 club camping trip, a new threat closes in on the city of Tokyo.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":20182},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"Birdramon Soars","airDate":"2020-06-28","airDateUtc":"2020-06-28T00:00:00Z","overview":"As Taichi is pulled back into the world of the Network, he finds himself before an unfamiliar scenery. A dangerous path is set before Taichi and the others to find the answers they seek.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":20183},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"The Holy Digimon","airDate":"2020-07-05","airDateUtc":"2020-07-05T00:00:00Z","overview":"Taichi and the others reach a place that looks like a temple in front of a mountain. They come to face the secret of the Digital World and the reason why they have been summoned there.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":20184},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"The Targeted Kingdom","airDate":"2020-07-12","airDateUtc":"2020-07-12T00:00:00Z","overview":"Taichi\u2019s party comes across an orchard and meets a mysterious girl, Mimi. Taichi and his friends find out that a kingdom is targeted by some ferocious Digimon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":20185},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"That Boy is Joe Kido","airDate":"2020-07-19","airDateUtc":"2020-07-19T00:00:00Z","overview":"The children now know that the Holy Digimon is the key to saving Tokyo from the blackouts. They attempt to cross the sea to get to the continent, but they\u2019re suddenly attacked by a mysterious whirlpool.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":20186},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":8,"title":"The Children's Attack on the Fortress","airDate":"2020-07-26","airDateUtc":"2020-07-26T00:00:00Z","overview":"The children finally succeed in crossing the sea with Ikkakumon\u2019s help. However, what awaits them on the other side is a fortress full of Digimon\u2026","hasFile":false,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":20187},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":9,"title":"The Ultimate Digimon Attacks","airDate":"2020-08-02","airDateUtc":"2020-08-02T00:00:00Z","overview":"The six children and Digimon neutralize the fortress thanks to excellent teamwork. They try to decode the enemy\u2019s communication log and obtain new information about the Holy Digimon. However, it\u2019s not long before new enemies approach the fortress one after another.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":20188},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":10,"title":"The Steel-Solid Super Evolution","airDate":"2020-08-09","airDateUtc":"2020-08-09T00:00:00Z","overview":"The battle between Greymon and Orgemon ended abruptly and now the Chosen Ones discuss their next move. Taichi and Agumon take a chance to defeat the ultimate enemy, so that the others can safely head to their next destination.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":20189},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":11,"title":"The Wolf Standing Atop the Desert","airDate":"2020-08-16","airDateUtc":"2020-08-16T00:00:00Z","overview":"The six Chosen Ones who had finally gathered split up again into two teams in order to find the Holy Digimon. As Yamato\u2019s team attempts to cross the desert, they encounter some dust devils.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":20190},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":12,"title":"Lilimon Blooms","airDate":"2020-08-23","airDateUtc":"2020-08-23T00:00:00Z","overview":"Taichi\u2019s team reaches an ancient ruin. While Koshiro tries to analyze the characters on the walls, Mimi and Palmon accidentally fall underground. When they\u2019re in danger, they encounter a kindhearted Digimon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":20191},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":13,"title":"Garudamon of the Crimson Wings","airDate":"2020-08-30","airDateUtc":"2020-08-30T00:00:00Z","overview":"Yamato\u2019s team flies above an endless jungle on Birdramon until they come across a floating fortress. Sora\u2019s caring heart that wants to save Digimon in trouble brings about a new glow on Piyomon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":20192},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":14,"title":"The Kings of the Insects Clash","airDate":"2020-09-06","airDateUtc":"2020-09-06T00:00:00Z","overview":"Taichi\u2019s team reaches a canyon where they are attacked by a swarm of insect Digimon. In the chaos that ensues, Koshiro and Tentomon stand up to protect their friends.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20193},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":15,"title":"Zudomon's Iron Hammer of Lightning","airDate":"2020-09-13","airDateUtc":"2020-09-13T00:00:00Z","overview":"While Taichi\u2019s team finishes fighting off Oukuwamon and Kuwagamon in the canyon maze, Sora\u2019s team reaches a snowy mountain where they are attacked by a group of Digimon. Joe and Ikkakumon stand up to save Sora from danger.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20194},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":16,"title":"The Jet-Black Shadow Invades Tokyo","airDate":"2020-09-20","airDateUtc":"2020-09-20T00:00:00Z","overview":"Taichi\u2019s team finds a strange cave that leads to Tokyo. Excited to be back, the children attempt to get home through the subway. However, a creepy Digimon prowls the city, and there, the children learn a shocking truth.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20195},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":17,"title":"The Battle in Tokyo Against Orochimon","airDate":"2020-09-27","airDateUtc":"2020-09-27T00:00:00Z","overview":"Just when Taichi and his friends thought they had finally defeated the enemy in the fake Tokyo, a new enemy appeared. The children work together with their Digimon to take down the eight-headed Ultimate Digimon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20196},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":18,"title":"Countdown to Tokyo's Annihilation","airDate":"2020-10-04","airDateUtc":"2020-10-04T00:00:00Z","overview":"The Chosen Ones worked together and succeeded in defeating Ultimate Digimon Orochimon. However, a mysterious countdown begins. To save Tokyo, they must prevent it from reaching zero","hasFile":false,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20197},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":19,"title":"Howl, Jyuoken","airDate":"2020-10-11","airDateUtc":"2020-10-11T00:00:00Z","overview":"Thanks to Omegamon\u2019s reappearance, the Mega Digimon Nidhoggmon, was finally defeated. However, Sora and the others disappeared after being swallowed by a storm. Taichi and Yamato, who are left behind in the Digital World sneak into Valvemon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20198},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":20,"title":"The Seventh One Awakens","airDate":"2020-10-18","airDateUtc":"2020-10-18T00:00:00Z","overview":"Yamato\u2019s younger brother, Takeru, is unexpectedly found in the Digital World, held captive by a powerful Digimon. With the help of Leomon\u2019s army, Taichi and Yamato attempt to save Takeru.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20199},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":21,"title":"The Tide-Turning Update","airDate":"2020-10-25","airDateUtc":"2020-10-25T00:00:00Z","overview":"The Holy Digimon that turned into a Digitama was snatched away, and Taichi and Yamato chase after Skullknightmon. Meanwhile, the rest of the Chosen Ones that are back in Tokyo fight remotely with their partner Digimon in the Digital World.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":20200},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":22,"title":"The Unbeatable Blue Sagittarius","airDate":"2020-11-01","airDateUtc":"2020-11-01T00:00:00Z","overview":"Thanks to Takeru\u2019s bravery, Taichi and the others found the way into the castle where the Digitama is held. As for the Chosen Ones in Tokyo, they were in a remote battle against Calamaramon to stop an uncontrollable tanker from crashing.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":20201},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":23,"title":"The Messenger of Darkness, Devimon","airDate":"2020-11-08","airDateUtc":"2020-11-08T00:00:00Z","overview":"Devimon\u2019s castle collapsed after the fierce battle with Darkknightmon and Taichi\u2019s group comes to face Devimon at last. Meanwhile, the rest of the Chosen Ones and their partner Digimon fight to destroy the obelisk that is transferring energy.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":20202},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":24,"title":"The Final Stage, Donedevimon","airDate":"2020-11-15","airDateUtc":"2020-11-15T00:00:00Z","overview":"Thanks to Koshiro\u2019s group destroying the obelisk which was transferring energy to the Digital World, Taichi and the others defeated Neodevimon at last. However, Taichi struggles against the overwhelming powers of Donedevimon, a Mega Digimon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":20203},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":25,"title":"Dive to the Next Ocean","airDate":"2020-11-22","airDateUtc":"2020-11-22T00:00:00Z","overview":"The battle with Donedevimon is over at last. However, destiny wasted no time in bringing the next adventure to the Chosen Ones. Koshiro\u2019s group is dealing with tanker collisions while Taichi\u2019s group is attacked by a cluster of Mamemon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":20204},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":26,"title":"Break Through the Sea Monster Barricade","airDate":"2020-11-29","airDateUtc":"2020-11-29T00:00:00Z","overview":"Taichi has fallen down to the ocean below Cloud Continent with Leomon and the others. Powerful, new Digimon attack them one after another. Meanwhile, Koshiro\u2019s side tries carry out a counterplan to bring the unresponsive ships under control.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":20205},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":27,"title":"To the New Continent","airDate":"2020-12-06","airDateUtc":"2020-12-06T00:00:00Z","overview":"Hikari suddenly appeared in the digital world. The threat to the real world hasn't disappeared yet.\r\n A new continent where dark clouds can be seen is in front of Taichi and his friends! And there are new enemies to stand up against?!","hasFile":false,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":20206},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":28,"title":"The Children's Fight for Survival","airDate":"2020-12-13","airDateUtc":"2020-12-13T00:00:00Z","overview":"The Chosen Ones come to face their old enemy, Darkknightmon. Patamon evolves into Angemon again to fight off Darkknightmon. However, the children are all separated and sent to different parts of the continent.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":20207},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":29,"title":"Escape the Burning Jungle","airDate":"2020-12-20","airDateUtc":"2020-12-20T00:00:00Z","overview":"Hikari is suddenly taken away by Skullknightmon and Taichi could do nothing but watch. On his mission to save Hikari, he meets many kinds of Digimon in the jungle and fights for them as the jungle burns.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":20221},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":30,"title":"The Mega Digimon, WarGreymon","airDate":"2020-12-27","airDateUtc":"2020-12-27T00:00:00Z","overview":"Taichi and Agumon act as bait so that the jungle\u2019s Digimon can safely escape. However, Metalgreymon\u2019s attacks are useless against the new Mega Digimon that stands in their way.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":20222},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":31,"title":"The New Darkness, Millenniumon","airDate":"2021-01-10","airDateUtc":"2021-01-10T00:00:00Z","overview":"Taichi and Agumon finally surpassed their limit, and Agumon evolves into Wargreymon. This evolution awakens Lopmon\u2019s long-lost memories. And Taichi learns about the new threat, Millenniumon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":20223},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":32,"title":"Soaring Hope","airDate":"2021-01-17","airDateUtc":"2021-01-17T00:00:00Z","overview":"Taichi\u2019s group is continuing their adventure with Komondomon. They reunite with Takeru and Patamon, who are targeted by Fangmon. However, yet another threat is creeping up on them.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":20412},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":33,"title":"The Hikari of Dawn","airDate":"2021-01-24","airDateUtc":"2021-01-24T00:00:00Z","overview":"Taichi\u2019s party finally catches sight of Skullknightmon and Hikari, who was kidnapped. Taichi chases after them, but Hikari is swallowed into the darkness.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":20413},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":34,"title":"Hikari and Tailmon","airDate":"2021-01-31","airDateUtc":"2021-01-31T00:00:00Z","overview":"Hikari and Tailmon are finally saved and they join Taichi\u2019s group. Komondomon dives into a sea current to head toward their next destination. As they make their way underwater, they come across a mysterious city.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":20414},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":35,"title":"The Glowing Angewomon","airDate":"2021-02-07","airDateUtc":"2021-02-07T00:00:00Z","overview":"Taichi\u2019s party leaves behind the beautiful underwater city and continues their journey toward the Eternal Continent\u2019s center, FAGA. The party swims through the sea caves on Komondomon, but Digimon with powerful, dark energy block their way.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":20415},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":36,"title":"Operation Satellite Sniper","airDate":"2021-02-14","airDateUtc":"2021-02-14T00:00:00Z","overview":"Taichi\u2019s group reunites with Koshiro and Tentomon after rising to the surface. Koshiro figures out a plan to stop the International Space Station from crashing into Tokyo. Will the Chosen Ones make it in time?!","hasFile":false,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":20807},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":37,"title":"Mimi-chan Wars","airDate":"2021-02-21","airDateUtc":"2021-02-21T00:00:00Z","overview":"With the ISS no longer being a threat, Taichi and his party continues their adventure. Taichi and Sora, who go out to look for food, happen to reunite with Mimi and Palmon. Then they are suddenly pulled into Mimi\u2019s project.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":20808},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":38,"title":"The Blazing Blue Friendship","airDate":"2021-02-28","airDateUtc":"2021-02-28T00:00:00Z","overview":"Yamato and Gabumon were on their way to rejoin the other Chosen Ones. However, they happened to pass by some mountains where a Digimon with an evil spell is. Now, great danger approaches Gabumon. Can Yamato save Gabumon in time?!","hasFile":false,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":20809},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":39,"title":"Jyagamon, Potato Hell","airDate":"2021-03-07","airDateUtc":"2021-03-07T00:00:00Z","overview":"The eight Chosen Ones finally come together. They make a pit stop at the so-called Digimon\u2019s oasis. There, Joe befriends a potato-loving Digimon, but his new friend\u2019s love and sorrow over fries cause trouble.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":20810},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":40,"title":"Strike! The Killer Shot","airDate":"2021-03-21","airDateUtc":"2021-03-21T00:00:00Z","overview":"The Chosen Ones find some time to practice soccer with each other. But during their game, some fruits fall from the sky. Taichi and Sora go up to get more fruits and there, they encounter evil Digimon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":20811},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":41,"title":"Mon-Mon Park in the Fog","airDate":"2021-03-28","airDateUtc":"2021-03-28T00:00:00Z","overview":"Takeru and Yamato go to search for food. Suddenly, a theme park called Mon-Mon Park appears before them. They are begged by a Digimon to stay and stop by the park. But what awaits them is not a fun, happy place.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":20812},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":42,"title":"The King of Inventors, Gerbemon","airDate":"2021-04-04","airDateUtc":"2021-04-04T00:00:00Z","overview":"Taichi and Koshiro, who are scouting the area, come across a genius inventor, Gerbemon. Koshiro\u2019s eyes sparkle as he sees the number of inventions Gerbemon has created from junk. However, an enemy Digimon suddenly attacks them.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":20813},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":43,"title":"Clash, the King of Digimon","airDate":"2021-04-11","airDateUtc":"2021-04-11T00:00:00Z","overview":"The Chosen Ones come across an unfamiliar forest. There they meet Etemon and Volcamon who are battling over the title for the King of Digimon. Taichi and others are dragged into their fight.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":20814},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":44,"title":"Hikari and the Moving Forest","airDate":"2021-04-18","airDateUtc":"2021-04-18T00:00:00Z","overview":"After travelling through many fields, the Chosen Ones finally come upon a forest. However, they find that the forest itself makes up a Digimon\u2019s body. Hikari and the Chosen Ones help this Digimon fight an old nemesis.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":20815},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":45,"title":"Activate, Metalgarurumon","airDate":"2021-04-25","airDateUtc":"2021-04-25T00:00:00Z","overview":"The Chosen Ones come across what looks like a rundown racing circuit in the Digital World. There, they find a superfast Digimon, Machmon running alone. Gabumon, who loves to run, challenges Machmon to a race.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":20816},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":46,"title":"The Sword of Hope","airDate":"2021-05-02","airDateUtc":"2021-05-02T00:00:00Z","overview":"An eerie sphere, Sephirothmon suddenly appears. Taichi and the others are trapped inside Sephirothmon. There, an archenemy from the past, Devimon, appears before Takeru and Angemon.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":20817},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":47,"title":"The Villains of the Wastelands","airDate":"2021-05-09","airDateUtc":"2021-05-09T00:00:00Z","overview":"Joe and Gomamon are separated and taken away by two groups of villains who are fighting over water. Taichi and Agumon go out to search for the two with the help of Nohemon, the guardian of water.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":20818},{"seriesId":264,"episodeFileId":18882,"seasonNumber":1,"episodeNumber":48,"title":"The Attack of Mugendramon","airDate":"2021-05-16","airDateUtc":"2021-05-16T00:00:00Z","overview":"The Chosen Ones finally arrive at the Sealed Grounds, FAGA. However, the children must face Mugendramon, the Mega Digimon with tremendous power.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":20819},{"seriesId":264,"episodeFileId":18889,"seasonNumber":1,"episodeNumber":49,"title":"The God of Evil Descends, Millenniumon","airDate":"2021-05-23","airDateUtc":"2021-05-23T00:00:00Z","overview":"The children do not hear from Taichi and Agumon, who stayed behind to take on Mugendramon. The children are in deep sorrow. Meanwhile, Millenniumon\u2019s body is gradually being prepared for the resurrection.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":20820},{"seriesId":264,"episodeFileId":18885,"seasonNumber":1,"episodeNumber":50,"title":"The End, The Ultimate Holy Battle","airDate":"2021-05-30","airDateUtc":"2021-05-30T00:00:00Z","overview":"Taichi and Wargreymon are back to take on the revived Millenniumon. The rest of the Chosen Ones are trapped inside a prison chamber of time and space. Taichi and Wargreymon begin the decisive battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":20821},{"seriesId":264,"episodeFileId":18888,"seasonNumber":1,"episodeNumber":51,"title":"The Mystery Hidden Within the Crests","airDate":"2021-06-06","airDateUtc":"2021-06-06T00:00:00Z","overview":"Having survived the battle against Millenniummon, Tai and his friends are contacted by Garbagemon, who says that there is something resembling the Crests displayed on their Digivices at the Great Tree of Information.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":20822},{"seriesId":264,"episodeFileId":18881,"seasonNumber":1,"episodeNumber":52,"title":"Dance of the Heavens, Hououmon","airDate":"2021-06-13","airDateUtc":"2021-06-13T00:00:00Z","overview":"The Chosen Ones start new adventures to prevent the Great Catastrophe. Taichi and Sora reach an island with a volcano. When they help Junkmon build a wall to protect the Digimon living on the island, an eruption occurs.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":20823},{"seriesId":264,"episodeFileId":18886,"seasonNumber":1,"episodeNumber":53,"title":"The Geko Hot Spring's Revolt","airDate":"2021-06-20","airDateUtc":"2021-06-20T00:00:00Z","overview":"To heal Patamon and Tailmon, Joe and Gomamon take them to the hot springs they had been to before. However, the hot springs were all dried up. Soon after, they meet the hot springs' ruler, Tonosamagekomon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":20824},{"seriesId":264,"episodeFileId":18883,"seasonNumber":1,"episodeNumber":54,"title":"The Vagrant War Demon, Rebellimon","airDate":"2021-06-27","airDateUtc":"2021-06-27T00:00:00Z","overview":"After leaving behind Joe\u2019s group, Taichi and Agumon are led by the Digivice to a barren wasteland full of outlaw Digimon. There they find Cutemon, and the lone-wolf Rebellimon who strives to fight.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":20825},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":55,"title":"The Digimon School Under Attack","airDate":"2021-07-04","airDateUtc":"2021-07-04T00:00:00Z","overview":"Mimi and Palmon reach the edge of the Cloud Continent close to the Tanemon's village where Mimi once used to reign. There, they find a Digimon school and meet Babamon, who encourages them to enroll in the trial course.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":20826},{"seriesId":264,"episodeFileId":18890,"seasonNumber":1,"episodeNumber":56,"title":"The Gold Wolf of the Crescent Moon","airDate":"2021-07-11","airDateUtc":"2021-07-11T00:00:00Z","overview":"Yamato and Gabumon encounter Zanbamon who preys on Digimon night after night. However, Gabumon\u2019s attacks have no effect on this mysterious enemy. They later learn the truth behind Zanbamon\u2019s past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":20827},{"seriesId":264,"episodeFileId":18887,"seasonNumber":1,"episodeNumber":57,"title":"Contact From The Catastrophe","airDate":"2021-07-18","airDateUtc":"2021-07-18T00:00:00Z","overview":"Taichi and Agumon are ambushed by an unknown force and sent to another place. There, Agumon is faced with the challenge of finding the real Taichi from dozens of copies that are all crying in pain for help.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":20828},{"seriesId":264,"episodeFileId":18884,"seasonNumber":1,"episodeNumber":58,"title":"Hikari, New Life","airDate":"2021-07-25","airDateUtc":"2021-07-25T00:00:00Z","overview":"Hikari and Tailmon are back at Petaldramon's forest where they find Digitama all over the place. However, evil Digimon who are filled with hatred for new life are also drawn to this forest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":20829},{"seriesId":264,"episodeFileId":18880,"seasonNumber":1,"episodeNumber":59,"title":"Bolt, HerakleKabuterimon","airDate":"2021-08-01","airDateUtc":"2021-08-01T00:00:00Z","overview":"Koshiro and Tentomon find themselves back in the canyon they had once passed through earlier in the Digital World. There, they meet Nanomon, a Digimon who loves knowledge. Nanomon challenges Koshiro to a match in a dungeon full of riddles.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":20830},{"seriesId":264,"episodeFileId":18879,"seasonNumber":1,"episodeNumber":60,"title":"Vikemon Ventures the Glaciers","airDate":"2021-08-08","airDateUtc":"2021-08-08T00:00:00Z","overview":"The hot springs had dried up again for some reason. Joe takes a group of Digimon with him and heads south to a warm place. However, they are attacked by pirates led by Olegmon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":20831},{"seriesId":264,"episodeFileId":18878,"seasonNumber":1,"episodeNumber":61,"title":"A Place to Return To","airDate":"2021-08-15","airDateUtc":"2021-08-15T00:00:00Z","overview":"Takeru and Patamon help Eldoradimon who was struggling to climb up a mountain. The surrounding Digimon are not supportive and only watch hopelessly. However, Takeru won\u2019t give up and attempts to send Eldoradimon home no matter what.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":20832},{"seriesId":264,"episodeFileId":18877,"seasonNumber":1,"episodeNumber":62,"title":"The Tears of Shakkoumon","airDate":"2021-08-22","airDateUtc":"2021-08-22T00:00:00Z","overview":"Sora and Piyomon reunite with Neamon, Junkmon and the other Digimon. Together, they revive the wastelands to create a Digimon town. However, the guardian deity, Shakkoumon awakens from a long slumber and starts attacking them","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":20833},{"seriesId":264,"episodeFileId":18898,"seasonNumber":1,"episodeNumber":63,"title":"The Crest of Courage","airDate":"2021-08-29","airDateUtc":"2021-08-29T00:00:00Z","overview":"After aimlessly following the arrow on the Digivice, Taichi and Agumon reach a castle. There, Taichi is separated from Agumon and is thrown into an unfamiliar world by a mysterious Digimon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":20834},{"seriesId":264,"episodeFileId":18907,"seasonNumber":1,"episodeNumber":64,"title":"The Angels' Determination","airDate":"2021-09-05","airDateUtc":"2021-09-05T00:00:00Z","overview":"The Chosen Ones have each attained their crests and aim to reunite now. However, they receive an emergency call from Wisemon and Gerbemon that the laboratory is under attack. The Chosen Ones fight to protect the lab from a swarm of Digimon.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":20835},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":65,"title":"The Great Catastrophe, Negamon","airDate":"2021-09-12","airDateUtc":"2021-09-12T00:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":20836},{"seriesId":264,"episodeFileId":0,"seasonNumber":1,"episodeNumber":66,"title":"TBA","airDate":"2021-09-19","airDateUtc":"2021-09-19T00:00:00Z","hasFile":false,"monitored":true,"absoluteEpisodeNumber":66,"unverifiedSceneNumbering":false,"id":20837}],"episodeFile":[{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E62.The Tears of Shakkoumon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E62.The Tears of Shakkoumon-HDTV-1080p.mkv","size":1426236546,"dateAdded":"2021-08-29T14:59:40.423141Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 62 [1080p][Multiple Subtitle][858749F6]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Spanish \/ Arabic \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18877},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E61.A Place to Return To-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E61.A Place to Return To-HDTV-1080p.mkv","size":1427477654,"dateAdded":"2021-08-29T15:01:36.904328Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 61 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Spanish \/ Arabic \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18878},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E60.Vikemon Ventures the Glaciers-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E60.Vikemon Ventures the Glaciers-HDTV-1080p.mkv","size":1425184517,"dateAdded":"2021-08-29T15:03:27.305921Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 60 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Spanish \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18879},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E59.Bolt, HerakleKabuterimon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E59.Bolt, HerakleKabuterimon-HDTV-1080p.mkv","size":1427264995,"dateAdded":"2021-08-29T15:05:23.53129Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 59 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Portuguese \/ French"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18880},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E52.Dance of the Heavens, Hououmon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E52.Dance of the Heavens, Hououmon-HDTV-1080p.mkv","size":1422983027,"dateAdded":"2021-08-29T15:07:16.113031Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 52 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18881},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E48.The Attack of Mugendramon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E48.The Attack of Mugendramon-HDTV-1080p.mkv","size":1420507228,"dateAdded":"2021-08-29T15:09:08.688409Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 48 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:17","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18882},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E54.The Vagrant War Demon, Rebellimon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E54.The Vagrant War Demon, Rebellimon-HDTV-1080p.mkv","size":1423081721,"dateAdded":"2021-08-29T15:11:03.977682Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 54 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Arabic \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18883},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E58.Hikari, New Life-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E58.Hikari, New Life-HDTV-1080p.mkv","size":1426358726,"dateAdded":"2021-08-29T15:12:54.953198Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 58 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Spanish \/ Spanish \/ Arabic \/ French \/ German \/ Italian \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18884},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E50.The End, The Ultimate Holy Battle-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E50.The End, The Ultimate Holy Battle-HDTV-1080p.mkv","size":1421536887,"dateAdded":"2021-08-29T15:14:43.893799Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 50 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ French \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18885},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E53.The Geko Hot Spring's Revolt-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E53.The Geko Hot Spring's Revolt-HDTV-1080p.mkv","size":1425025805,"dateAdded":"2021-08-29T15:16:34.264825Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 53 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18886},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E57.Contact From The Catastrophe-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E57.Contact From The Catastrophe-HDTV-1080p.mkv","size":1425890077,"dateAdded":"2021-08-29T15:18:24.328424Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 57 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Arabic \/ French \/ Spanish \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18887},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E51.The Mystery Hidden Within the Crests-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E51.The Mystery Hidden Within the Crests-HDTV-1080p.mkv","size":1418957990,"dateAdded":"2021-08-29T15:20:15.733864Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 51 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18888},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E49.The God of Evil Descends, Millenniumon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E49.The God of Evil Descends, Millenniumon-HDTV-1080p.mkv","size":1421730606,"dateAdded":"2021-08-29T15:22:08.384307Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 49 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":127999,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Arabic \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18889},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E56.The Gold Wolf of the Crescent Moon-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E56.The Gold Wolf of the Crescent Moon-HDTV-1080p.mkv","size":1425929383,"dateAdded":"2021-08-29T15:23:56.068117Z","sceneName":"[Erai-raws] Digimon Adventure (2020) - 56 [1080p][Multiple Subtitle]","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Arabic \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese \/ Russian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18890},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Tokyo Digital Crisis-HDTV-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E01.Tokyo Digital Crisis-HDTV-1080p.mkv","size":1421012655,"dateAdded":"2021-08-29T22:37:33.103664Z","releaseGroup":"Erai-raws","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English \/ Arabic \/ Russian \/ Spanish \/ Spanish \/ Portuguese \/ German \/ French \/ Italian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18891},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E63.The Crest of Courage-HDTV-720p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E63.The Crest of Courage-HDTV-720p.mkv","size":565827320,"dateAdded":"2021-09-02T00:47:47.736929Z","sceneName":"[Anime Land] Digimon Adventure (2020) 63 (THK 720p Hi10P AAC) RAW [0D54A665]","releaseGroup":"Anime Land","language":{"id":1,"name":"English"},"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"television","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":252375,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3014362,"videoCodec":"x264","videoFps":23.976,"resolution":"1280x720","runTime":"23:04","scanType":"Progressive","subtitles":"Japanese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18898},{"seriesId":264,"seasonNumber":1,"relativePath":"Season 01\/S01E64.The Angels' Determination-WEBRip-1080p.mkv","path":"\/tv\/Digimon Adventure-\/Season 01\/S01E64.The Angels' Determination-WEBRip-1080p.mkv","size":416447684,"dateAdded":"2021-09-05T03:14:42.712078Z","sceneName":"Digimon Adventure - S01E64 - The Angels' Determination","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":128000,"audioChannels":2.0,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7989192,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"23:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18907}],"queue":[]},"282":{"series":{"title":"Lifeline (2017)","alternateTitles":[{"title":"Lifeline","seasonNumber":-1}],"sortTitle":"lifeline 2017","status":"ended","ended":true,"overview":"Lifeline, set in the not-too-distant future, is a half hour series about a little known life insurance company that sends its agents forward 33 days in time to prevent the accidental deaths of its clients. The company\u2019s best agent, Conner Hooks (Gilford), has never missed a save \u2013 until he takes on the most personal case of his life. When sixteen-year-old Norah (Park) is orphaned on his watch, Conner pledges to protect her, even if that means putting his career at Lifeline \u2013 or his own life \u2013 in jeopardy.","previousAiring":"2017-11-08T17:00:00Z","network":"YouTube Premium","airTime":"12:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/289\/banner.jpg?lastWrite=637622365506939340","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/336004-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/289\/poster.jpg?lastWrite=637622365508259320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/336004-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/289\/fanart.jpg?lastWrite=637622365509499300","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/336004-2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2017-11-08T17:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":8698584431,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/Lifeline (2017)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":30,"tvdbId":336004,"tvRageId":0,"tvMazeId":22129,"firstAired":"2017-10-11T00:00:00Z","seriesType":"standard","cleanTitle":"lifeline2017","imdbId":"tt7034646","titleSlug":"lifeline-2017","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Crime"],"tags":[],"added":"2021-07-18T20:22:29.846408Z","ratings":{"votes":29,"value":9.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":8698584431,"percentOfEpisodes":100.0},"id":289},"episodes":[{"seriesId":289,"episodeFileId":18670,"seasonNumber":1,"episodeNumber":1,"title":"In 33 Days You\u2019ll Die","airDate":"2017-10-11","airDateUtc":"2017-10-11T16:00:00Z","overview":"Conner Hooks is the top agent at a mysterious company that offers the ultimate in life \"insurance\" -- if a client faces death, an agent jumps forward in time 33 days to save them. But Conner\u2019s world and career are turned upside-down when he receives a mysterious call challenging him save the one life he cares about most\u2026 his wife's.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21653},{"seriesId":289,"episodeFileId":18671,"seasonNumber":1,"episodeNumber":2,"title":"There's a Chip in Her Arm","airDate":"2017-10-11","airDateUtc":"2017-10-11T16:30:00Z","overview":"Conner's future at Lifeline is put in jeopardy when Nathan tells him he can't seek revenge for Haley\u2019s death. And Norah struggles to cope with her new foster home, which isn't what it appears to be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21654},{"seriesId":289,"episodeFileId":18672,"seasonNumber":1,"episodeNumber":3,"title":"Norah is Going to Die","airDate":"2017-10-11","airDateUtc":"2017-10-11T17:00:00Z","overview":"Norah, now a teenager, finds comfort, and potentially love, living with a group of teens in an abandoned warehouse. But when a confrontation with her foster father leads Norah to dangerous behavior, Conner must jump forward in time to save her without Lifeline finding out.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21655},{"seriesId":289,"episodeFileId":18673,"seasonNumber":1,"episodeNumber":4,"title":"He Killed My Wife","airDate":"2017-10-18","airDateUtc":"2017-10-18T16:00:00Z","overview":"Conner\u2019s six-year quest to find the man who killed Haley ends when he comes face-to-face with her killer -- forcing him to choose between living forward or chasing the ghosts of the past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21656},{"seriesId":289,"episodeFileId":18674,"seasonNumber":1,"episodeNumber":5,"title":"Face to Face with Her Killer","airDate":"2017-10-18","airDateUtc":"2017-10-18T16:30:00Z","overview":"Jay defies Nathan and begins building a Jumpbox that he believes will go back in time, which Conner wants to use to save Haley. Jasmine realizes that Conner is never going to completely let go of the past, and pledges her loyalty to Nathan, using Conner for her own advancement.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21657},{"seriesId":289,"episodeFileId":18675,"seasonNumber":1,"episodeNumber":6,"title":"Killing Me, Won\u2019t Stop Me","airDate":"2017-10-25","airDateUtc":"2017-10-25T16:00:00Z","overview":"Norah finally meets the mysterious Jack, who challenges her to let the universe play out as intended. Meanwhile, Nathan takes the hacking of Lifeline\u2019s computer system very personally, making sure the man responsible pays a high price.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21658},{"seriesId":289,"episodeFileId":18676,"seasonNumber":1,"episodeNumber":7,"title":"Playing God","airDate":"2017-11-01","airDateUtc":"2017-11-01T16:00:00Z","overview":"Norah realizes the only way she can ever confront Conner about her father\u2019s death is to die herself, forcing him into a test that could cost one of them their life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21659},{"seriesId":289,"episodeFileId":18677,"seasonNumber":1,"episodeNumber":8,"title":"Conner Goes Red","airDate":"2017-11-08","airDateUtc":"2017-11-08T17:00:00Z","overview":"Conner makes the decision to finally live forward by jumping back to save Norah, even if this destroys any chance of saving Haley. But the jump back to Norah leaves two Conners on the same timeline, with wide-reaching repercussions that will change all their lives.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21660}],"episodeFile":[{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E01.In 33 Days You\u2019ll Die-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E01.In 33 Days You\u2019ll Die-WEBRip-1080p.mkv","size":890764351,"dateAdded":"2021-07-19T03:23:06.143128Z","sceneName":"Lifeline.S01E01.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4229514,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18670},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E02.There's a Chip in Her Arm-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E02.There's a Chip in Her Arm-WEBRip-1080p.mkv","size":1029283495,"dateAdded":"2021-07-19T03:23:31.383347Z","sceneName":"Lifeline.S01E02.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4775837,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"38:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18671},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Norah is Going to Die-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E03.Norah is Going to Die-WEBRip-1080p.mkv","size":1392693523,"dateAdded":"2021-07-19T03:23:42.300788Z","sceneName":"Lifeline.S01E03.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6865933,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"28:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18672},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E04.He Killed My Wife-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E04.He Killed My Wife-WEBRip-1080p.mkv","size":1102968760,"dateAdded":"2021-07-19T03:24:00.423164Z","sceneName":"Lifeline.S01E04.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5251821,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"26:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18673},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Face to Face with Her Killer-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E05.Face to Face with Her Killer-WEBRip-1080p.mkv","size":1011496749,"dateAdded":"2021-07-19T03:24:14.939682Z","sceneName":"Lifeline.S01E05.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4915583,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18674},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Killing Me, Won\u2019t Stop Me-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E06.Killing Me, Won\u2019t Stop Me-WEBRip-1080p.mkv","size":1006672043,"dateAdded":"2021-07-19T03:24:27.931839Z","sceneName":"Lifeline.S01E06.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4874073,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18675},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Playing God-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E07.Playing God-WEBRip-1080p.mkv","size":1213232726,"dateAdded":"2021-07-19T03:24:40.956065Z","sceneName":"Lifeline.S01E07.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6819793,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"25:53","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18676},{"seriesId":289,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Conner Goes Red-WEBRip-1080p.mkv","path":"\/tv\/Lifeline (2017)\/Season 01\/S01E08.Conner Goes Red-WEBRip-1080p.mkv","size":1051472784,"dateAdded":"2021-07-19T03:24:53.788052Z","sceneName":"Lifeline.S01E08.1080p.WEBRip.x264-iNSPiRiT","releaseGroup":"iNSPiRiT","language":{"id":1,"name":"English"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5240414,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18677}],"queue":[]},"283":{"series":{"title":"Terry Pratchett's Going Postal","alternateTitles":[],"sortTitle":"terry pratchetts going postal","status":"ended","ended":true,"overview":"Moist von Lipwig is a con-man with a particular talent-- he is utterly unremarkable. When his execution is stayed in Terry Pratchett's remarkable Discworld, he must work off his debt to society as the land's head Postman. Things are not always as they seem, and soon Lipwig is delivering mail for his very life!","previousAiring":"2010-05-30T23:00:00Z","network":"Sky1","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/290\/banner.jpg?lastWrite=637651694929321490","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/166091-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/290\/poster.jpg?lastWrite=637651694931041450","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/166091-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/290\/fanart.jpg?lastWrite=637651694934241380","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/166091-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":25,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2010-05-30T23:00:00Z","episodeFileCount":0,"episodeCount":2,"totalEpisodeCount":2,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2010,"path":"\/tv\/Terry Pratchett's Going Postal","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":120,"tvdbId":166091,"tvRageId":25711,"tvMazeId":3888,"firstAired":"2010-05-30T00:00:00Z","seriesType":"standard","cleanTitle":"terrypratchettsgoingpostal","imdbId":"tt1219817","titleSlug":"terry-pratchetts-going-postal","rootFolderPath":"\/tv\/","genres":["Fantasy","Mini-Series","Romance","Science Fiction","Suspense"],"tags":[],"added":"2021-08-21T19:04:52.023809Z","ratings":{"votes":386,"value":8.8},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":2,"totalEpisodeCount":27,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":290},"episodes":[{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Terry Pratchett Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21687},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Director and Producer Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21688},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"Costumes","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21689},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"Make-Up","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21690},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"StoryBoards","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21691},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Set Drawings","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21692},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Props","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21693},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"The Fans","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21694},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Steve Pemberton Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21695},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Richard Coyle Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21696},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"David Suchet Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21697},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Clair Foy Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21698},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"Charles Dance Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21699},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Andrew Sachs Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21700},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Ian Bonar Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21701},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Madhav Sharma Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21702},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Timothy West Interview","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21703},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Bloopers","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21704},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":20,"title":"Dave Pins","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21705},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":21,"title":"Gilt and Horsefry, Snake Sheds His Skin","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21706},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":22,"title":"Coach Has Been Attacked","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21707},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":23,"title":"Lipwig Finds Out About Lodgers","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21708},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":24,"title":"Lipwig Bribes Mr Spools","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21709},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":25,"title":"Princess and Rogers Clacks","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21710},{"seriesId":290,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Terry Pratchett Introduction","airDate":"2010-05-30","airDateUtc":"2010-05-29T23:00:00Z","overview":"An introduction to Going Postal by Terry Pratchett","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21686},{"seriesId":290,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"Going Postal (1)","airDate":"2010-05-30","airDateUtc":"2010-05-29T23:00:00Z","overview":"Moist von Lipwig, who after years of undertaking confidence tricks on others finds himself caught by the guards, is sentenced to death under the alias of Arthur Spangler. After a brief spell in prison he is hung by the neck, but not killed. He is brought before Patrician Havelock Vetinari who insists that he either becomes the new Postmaster or be executed.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21711},{"seriesId":290,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"Going Postal (2)","airDate":"2010-05-31","airDateUtc":"2010-05-30T23:00:00Z","overview":"Moist van Lipwig learns that the Post Office has been superseded by telegraph towers known as \"Clacks\" which are run by the unscrupulous Reacher Gilt. In an effort to compete, Moist challenges Gilt to a race.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21712}],"episodeFile":[],"queue":[]},"284":{"series":{"title":"Trollhunters: Tales of Arcadia","alternateTitles":[{"title":"Trolljaeger","seasonNumber":-1},{"title":"Trollhunters","seasonNumber":-1}],"sortTitle":"trollhunters tales arcadia","status":"ended","ended":true,"overview":"Trollhunters is an epic saga from master storyteller Guillermo del Toro featuring a group of friends who discover a fantastical new world wrapped beneath their home town and who will face a battle between good and bad trolls.","previousAiring":"2018-05-25T04:00:00Z","network":"Netflix","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/272\/banner.jpg?lastWrite=637500629095429320","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/318201-g4.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/272\/poster.jpg?lastWrite=637500629097349280","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/318201-2.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/272\/fanart.jpg?lastWrite=637500629099189250","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/318201-3.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":1,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2016-12-23T05:00:00Z","episodeFileCount":26,"episodeCount":26,"totalEpisodeCount":26,"sizeOnDisk":10257849631,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2017-12-15T05:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5787921266,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2018-05-25T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":5808614103,"percentOfEpisodes":100.0}}],"year":2016,"path":"\/tv\/Trollhunters - Tales of Arcadia","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":25,"tvdbId":318201,"tvRageId":0,"tvMazeId":21892,"firstAired":"2016-12-23T00:00:00Z","seriesType":"standard","cleanTitle":"trollhunterstalesarcadia","imdbId":"tt1734135","titleSlug":"trollhunters-tales-of-arcadia","rootFolderPath":"\/tv\/","certification":"TV-Y7","genres":["Action","Adventure","Animation","Children","Fantasy"],"tags":[],"added":"2021-02-27T22:48:28.984752Z","ratings":{"votes":277,"value":8.7},"statistics":{"seasonCount":3,"episodeFileCount":52,"episodeCount":52,"totalEpisodeCount":53,"sizeOnDisk":21854385000,"percentOfEpisodes":100.0},"id":272},"episodes":[{"seriesId":272,"episodeFileId":17649,"seasonNumber":1,"episodeNumber":1,"title":"Becoming (1)","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Two trolls in an epic battle lead to consequences in the human world, especially for one boy.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20870},{"seriesId":272,"episodeFileId":17650,"seasonNumber":1,"episodeNumber":2,"title":"Becoming (2)","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Still reeling from discovering the amulet's power, Jim meets with his new mentors, and learns about the sacred responsibility he has been tasked with.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20871},{"seriesId":272,"episodeFileId":17651,"seasonNumber":1,"episodeNumber":3,"title":"Wherefore Art Thou, Trollhunter?","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Toby and Jim tour Heartstone Trollmarket, where Jim starts his training; the presence of a human Trollhunter creates resentment.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20872},{"seriesId":272,"episodeFileId":17652,"seasonNumber":1,"episodeNumber":4,"title":"Gnome Your Enemy","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Jim gets a crash course in troll history, and is faced with problems, his first mission and a bully.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20873},{"seriesId":272,"episodeFileId":17653,"seasonNumber":1,"episodeNumber":5,"title":"Waka Chaka!","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"During a field trip to a museum, Jim tries to get closer to Claire; Jim discovers that the museum curator has a surprising secret.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20874},{"seriesId":272,"episodeFileId":17654,"seasonNumber":1,"episodeNumber":6,"title":"Win Lose or Draal","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Jim gets ready for a high-stakes rematch against Draal, who seems to be the amulet's rightful heir; a surprising partnership emerges.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20875},{"seriesId":272,"episodeFileId":17655,"seasonNumber":1,"episodeNumber":7,"title":"To Catch a Changeling","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"With the help of an ancient troll-hunting tool, Jim and Toby try to unmask the changelings living among them; Claire presents Jim with a tempting offer.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20876},{"seriesId":272,"episodeFileId":17656,"seasonNumber":1,"episodeNumber":8,"title":"Adventures in Trollsitting","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Draal gets accustomed to his new digs; Jim tries to find out if Claire's little brother is a changeling.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20877},{"seriesId":272,"episodeFileId":17657,"seasonNumber":1,"episodeNumber":9,"title":"Bittersweet Sixteen","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Jim's birthday is full of surprises, including the arrival of a new species of troll that is immune to the effects of sunlight.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20878},{"seriesId":272,"episodeFileId":17658,"seasonNumber":1,"episodeNumber":10,"title":"Young Atlas","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Draal gives Jim a totem to help lessen his anxiety about Claire; Jim's resulting overconfidence leads to a realisation.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20879},{"seriesId":272,"episodeFileId":17659,"seasonNumber":1,"episodeNumber":11,"title":"Recipe for Disaster","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Claire's suspicions grow; Jim's mother invites Strickler over for a tension-filled dinner.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20880},{"seriesId":272,"episodeFileId":17660,"seasonNumber":1,"episodeNumber":12,"title":"Claire and Present Danger","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"The door to the Darklands still won't open, even though the Killahead bridge is complete; when Claire becomes a target, Jim must tell her the truth.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20881},{"seriesId":272,"episodeFileId":17661,"seasonNumber":1,"episodeNumber":13,"title":"The Battle of Two Bridges","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Two battles unfold when Strickler and Bular make Jim unlock the portal and free Gunmar and his army from the Darklands.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20882},{"seriesId":272,"episodeFileId":17662,"seasonNumber":1,"episodeNumber":14,"title":"Return of the Trollhunter","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Claire sees the Heartstone Trollmarket for the first time; Jim receives a summons; Strickler rouses an ancient assassin.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20883},{"seriesId":272,"episodeFileId":17663,"seasonNumber":1,"episodeNumber":15,"title":"Mudslinging","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Jim looks for a way to destroy Gunmar so Claire can bring her brother home; a power-hungry Strickler comes back to Arcadia.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20884},{"seriesId":272,"episodeFileId":17664,"seasonNumber":1,"episodeNumber":16,"title":"Roaming Fees May Apply","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"The heroes go on a dangerous quest in search of the first Triumbric Stone; Angor Rot creates a charm that links Barbara and Strickler's fates.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20885},{"seriesId":272,"episodeFileId":17665,"seasonNumber":1,"episodeNumber":17,"title":"Blinky's Day Out","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"An unrecognizable Blinky experiences the highs and lows of being a human; Angor Rot marks Jim for a fate that is worse than death.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20886},{"seriesId":272,"episodeFileId":17666,"seasonNumber":1,"episodeNumber":18,"title":"The Shattered King","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"As the heroes look for the second Triumbric Stone, they wind up in unfamiliar marshlands. Claire wants Jim to be her dance partner.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20887},{"seriesId":272,"episodeFileId":17667,"seasonNumber":1,"episodeNumber":19,"title":"Airheads","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Toby and Claire are constantly fighting because Claire got the Shadow Staff and Toby feels slighted. Toby and Claire tackle a Trollhunter task so Jim can win a Spring King challenge. In the process, they master new weapons.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20888},{"seriesId":272,"episodeFileId":17668,"seasonNumber":1,"episodeNumber":20,"title":"Where Is My Mind?","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"When a horde of pixies descends on Arcadia Oaks High, the students are sent into a tailspin; Angor Rot has a surprising proposal for Jim.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20889},{"seriesId":272,"episodeFileId":17669,"seasonNumber":1,"episodeNumber":21,"title":"Party Monster","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"The changeling posing as Claire's brother throws a party for the trolls of Arcadia; Jim and Toby want to take Strickler's ring.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20890},{"seriesId":272,"episodeFileId":17670,"seasonNumber":1,"episodeNumber":22,"title":"It's About Time","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Every second counts when Jim uses a time-stopping Kairosect to take Strickler's ring and find the second Triumbric Stone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20891},{"seriesId":272,"episodeFileId":17671,"seasonNumber":1,"episodeNumber":23,"title":"Wingmen","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"A troll queen arrives and a devastating secret is revealed; Strickler asks for Jim's protection.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20892},{"seriesId":272,"episodeFileId":17672,"seasonNumber":1,"episodeNumber":24,"title":"Angor Management","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Jim reluctantly joins forces with Strickler to keep Barbara alive; Gnome Chompksy returns with important news regarding Enrique.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20893},{"seriesId":272,"episodeFileId":17673,"seasonNumber":1,"episodeNumber":25,"title":"A Night to Remember","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"Jim races to break a spell that bonds Barbara and Strickler; Angor Rot attacks Claire and Toby.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20894},{"seriesId":272,"episodeFileId":17674,"seasonNumber":1,"episodeNumber":26,"title":"Something Rotten This Way Comes","airDate":"2016-12-23","airDateUtc":"2016-12-23T05:00:00Z","overview":"The heroes brace for Angor Rot's invasion and get ready for the fight of their lives; Jim finds the last Triumbric Stone.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20895},{"seriesId":272,"episodeFileId":17623,"seasonNumber":2,"episodeNumber":1,"title":"Escape from the Darklands","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"With Jim still trapped in the Darklands searching for Enrique, his friends rally to bring him back. But the Troll Tribunal has other ideas.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20896},{"seriesId":272,"episodeFileId":17624,"seasonNumber":2,"episodeNumber":2,"title":"Skullcrusher","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Claire recruits NotEnrique for a secret mission, while bully Steve stirs up trouble at school. In the Darklands, Jim meets \"The Skullcrusher\".","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20897},{"seriesId":272,"episodeFileId":17625,"seasonNumber":2,"episodeNumber":3,"title":"Grand Theft Otto","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"A familiar foe comes to Jim's aid in the Darklands. Back in Arcadia, Toby's distracting new headgear picks up an important clue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20898},{"seriesId":272,"episodeFileId":17626,"seasonNumber":2,"episodeNumber":4,"title":"KanjigAAARRRGGHH!!!","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"As Gunmar readies to destroy Jim in the Darklands, Blinky and the gang strike a deal with the Janus Order in their quest to revive an old friend.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20899},{"seriesId":272,"episodeFileId":17627,"seasonNumber":2,"episodeNumber":5,"title":"Homecoming","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Hope springs from an unlikely source when Gunmar learns that Jim's friends are in the Darklands on a mission to bring him home.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20900},{"seriesId":272,"episodeFileId":17628,"seasonNumber":2,"episodeNumber":6,"title":"Hiss Hiss, Bang Bang","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Now out of the Darklands and readjusting to life in Arcadia, Jim and the team must face the consequences of their risky actions.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20901},{"seriesId":272,"episodeFileId":17629,"seasonNumber":2,"episodeNumber":7,"title":"Hero with a Thousand Faces","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Multiple problems plague a frazzled Jim when his amulet goes on the fritz and Claire invites him to meet her parents at a family barbecue.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20902},{"seriesId":272,"episodeFileId":17630,"seasonNumber":2,"episodeNumber":8,"title":"Just Add Water","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"When an oozy creature shows up in Arcadia, Jim and the gang set out to find it -- while playing parents to two sacks of flour for a school assignment.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20903},{"seriesId":272,"episodeFileId":17631,"seasonNumber":2,"episodeNumber":9,"title":"Creepslayerz","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"In a revealing flashback episode, Otto and Dictatious vie for Gunmar's ear while an increasingly paranoid Steve finds an unlikely ally.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20904},{"seriesId":272,"episodeFileId":17632,"seasonNumber":2,"episodeNumber":10,"title":"The Reckless Club","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Se\u00f1or Uhl sentences Jim and his friends to detention while Queen Usurna gathers evidence of a conspiracy. Draal comes face to face with Gunmar.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20905},{"seriesId":272,"episodeFileId":17633,"seasonNumber":2,"episodeNumber":11,"title":"Unbecoming","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Facing serious accusations from the Tribunal, Jim gets the chance to see what his life would be like if he'd never found the amulet.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20906},{"seriesId":272,"episodeFileId":17634,"seasonNumber":2,"episodeNumber":12,"title":"Mistrial and Error","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"Jim stands trial for unleashing Gunmar while his friends race to clear his name. If convicted, he'll be sent to \"The Deep\", a dark realm of no return.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20907},{"seriesId":272,"episodeFileId":17635,"seasonNumber":2,"episodeNumber":13,"title":"In the Hall of the Gumm-Gumm King","airDate":"2017-12-15","airDateUtc":"2017-12-15T05:00:00Z","overview":"A monumental loss carries a warning from beyond the grave as Gunmar marches for Heartstone Trollmarket. Can the team pull together to save the day?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20908},{"seriesId":272,"episodeFileId":17636,"seasonNumber":3,"episodeNumber":1,"title":"A Night Patroll","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"With the trolls hiding out in Arcadia, AAARRRGGHH!!! goes undercover to see what Gunmar is up to. A potential rival brings out Jim's jealous side.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20909},{"seriesId":272,"episodeFileId":17637,"seasonNumber":3,"episodeNumber":2,"title":"Arcadia's Most Wanted","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"Toby gets caught in the crosshairs when a troll goes missing and the city cracks down on crime. An ancient voice refuses to be silenced.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20910},{"seriesId":272,"episodeFileId":17638,"seasonNumber":3,"episodeNumber":3,"title":"Bad Coffee","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"Something strange is brewing at school, where the teachers are more agitated than usual. Claire's illness shows disturbing side effects.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20911},{"seriesId":272,"episodeFileId":17639,"seasonNumber":3,"episodeNumber":4,"title":"So I'm Dating a Sorceress","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"Toby and Darci ask Jim and Claire on a double date. Gunmar returns from his travels, now armed with the knowledge to bring forth the Eternal Night.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20912},{"seriesId":272,"episodeFileId":17640,"seasonNumber":3,"episodeNumber":5,"title":"The Exorcism of Claire Nunez","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"While Gunmar searches for the Staff of Avalon, Jim and Toby head into the Shadow Realm to rescue Claire's spirit and return it to her body.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20913},{"seriesId":272,"episodeFileId":17641,"seasonNumber":3,"episodeNumber":6,"title":"Parental Guidance","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"When Barbara's art obsession leads to an \"aha!\" moment, she demands Jim tell her the truth. Dictatious reveals Gunmar's plans to resurrect Angor Rot.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20914},{"seriesId":272,"episodeFileId":17642,"seasonNumber":3,"episodeNumber":7,"title":"The Oath","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"With the future of two worlds at stake, the team races to find Merlin's Tomb -- and the Staff of Avalon -- before Gunmar can get his hands on it.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20915},{"seriesId":272,"episodeFileId":17643,"seasonNumber":3,"episodeNumber":8,"title":"For the Glory of Merlin","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"A long-dormant ally shows Jim and his friends what really happened at the Battle of Killahead. Gunmar awakens Morgana, and Angor Rot plots his revenge.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20916},{"seriesId":272,"episodeFileId":17644,"seasonNumber":3,"episodeNumber":9,"title":"In Good Hands","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"Se\u00f1or Uhl interrupts an important mission with an awkward ultimatum for Jim: help two new students fit in ... or face a repeat of sophomore year.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20917},{"seriesId":272,"episodeFileId":17645,"seasonNumber":3,"episodeNumber":10,"title":"A House Divided","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"Merlin has a plan to go to war, but it's Jim's choice to make. Blinky and AAARRRGGHH!!! search for allies. Gunmar uses Barbara to get what he wants.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20918},{"seriesId":272,"episodeFileId":17646,"seasonNumber":3,"episodeNumber":11,"title":"Jimhunters","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"A greatly changed Jim renews his Trollhunter training but struggles to accept his new reality. Gunmar and Morgana rally the troops for an attack.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20919},{"seriesId":272,"episodeFileId":17647,"seasonNumber":3,"episodeNumber":12,"title":"The Eternal Knight (1)","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"The Eternal Night covers Arcadia in shadow, leading to a long-awaited showdown between Gunmar and the newly transformed Trollhunter.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20920},{"seriesId":272,"episodeFileId":17648,"seasonNumber":3,"episodeNumber":13,"title":"The Eternal Knight (2)","airDate":"2018-05-25","airDateUtc":"2018-05-25T04:00:00Z","overview":"An epic battle comes to a head in the darkness as Jim and his friends push back against Morgana. But without Merlin, how will they stop her?","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":20921},{"seriesId":272,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Trollhunters: Rise of the Titans","airDate":"2021-07-21","airDateUtc":"2021-07-21T04:00:00Z","overview":"Heroes from \u201cTrollhunters,\u201d \u201c3Below\u201d and \u201cWizards\u201d join forces to fight a shadowy enemy threatening to take over their worlds \u2014 and reset Earth itself. The TV Movie to conclude the Tales of Arcadia saga.","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20869}],"episodeFile":[{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E01.Escape from the Darklands-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E01.Escape from the Darklands-WEBDL-1080p.mkv","size":445762580,"dateAdded":"2021-02-28T04:37:41.760177Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875967,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17623},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E02.Skullcrusher-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E02.Skullcrusher-WEBDL-1080p.mkv","size":445219552,"dateAdded":"2021-02-28T04:39:24.971058Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1871803,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17624},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E03.Grand Theft Otto-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E03.Grand Theft Otto-WEBDL-1080p.mkv","size":446102989,"dateAdded":"2021-02-28T04:41:08.763141Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1877148,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17625},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E04.KanjigAAARRRGGHH!!!-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E04.KanjigAAARRRGGHH!!!-WEBDL-1080p.mkv","size":445930295,"dateAdded":"2021-02-28T04:42:52.304175Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875944,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17626},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Homecoming-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E05.Homecoming-WEBDL-1080p.mkv","size":445371133,"dateAdded":"2021-02-28T04:44:35.810792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1873873,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17627},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Hiss Hiss, Bang Bang-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E06.Hiss Hiss, Bang Bang-WEBDL-1080p.mkv","size":445852631,"dateAdded":"2021-02-28T04:46:19.356742Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875869,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17628},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E07.Hero with a Thousand Faces-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E07.Hero with a Thousand Faces-WEBDL-1080p.mkv","size":445451221,"dateAdded":"2021-02-28T04:48:03.459086Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1872766,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17629},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E08.Just Add Water-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E08.Just Add Water-WEBDL-1080p.mkv","size":445920765,"dateAdded":"2021-02-28T04:49:46.905763Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875832,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17630},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E09.Creepslayerz-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E09.Creepslayerz-WEBDL-1080p.mkv","size":446106354,"dateAdded":"2021-02-28T04:51:30.243467Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1876104,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17631},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E10.The Reckless Club-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E10.The Reckless Club-WEBDL-1080p.mkv","size":442176994,"dateAdded":"2021-02-28T04:53:12.974464Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1872737,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:24","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17632},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E11.Unbecoming-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E11.Unbecoming-WEBDL-1080p.mkv","size":445769241,"dateAdded":"2021-02-28T04:54:55.451137Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875317,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17633},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E12.Mistrial and Error-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E12.Mistrial and Error-WEBDL-1080p.mkv","size":442733100,"dateAdded":"2021-02-28T04:56:38.149036Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875496,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:24","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17634},{"seriesId":272,"seasonNumber":2,"relativePath":"Season 02\/S02E13.In the Hall of the Gumm-Gumm King-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 02\/S02E13.In the Hall of the Gumm-Gumm King-WEBDL-1080p.mkv","size":445524411,"dateAdded":"2021-02-28T04:58:22.329565Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1874435,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:34","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17635},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E01.A Night Patroll-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E01.A Night Patroll-WEBDL-1080p.mkv","size":446484787,"dateAdded":"2021-02-28T05:00:12.60385Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875395,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ French \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Spanish \/ Danish \/ Spanish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17636},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E02.Arcadia's Most Wanted-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E02.Arcadia's Most Wanted-WEBDL-1080p.mkv","size":447062332,"dateAdded":"2021-02-28T05:01:55.068438Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1878232,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ French \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Spanish \/ Danish \/ Spanish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17637},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E03.Bad Coffee-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E03.Bad Coffee-WEBDL-1080p.mkv","size":446574323,"dateAdded":"2021-02-28T05:03:38.289444Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875694,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17638},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E04.So I'm Dating a Sorceress-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E04.So I'm Dating a Sorceress-WEBDL-1080p.mkv","size":447990934,"dateAdded":"2021-02-28T05:05:23.750069Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1876875,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:40","scanType":"","subtitles":"English \/ French \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Arabic \/ Spanish \/ Danish \/ Spanish \/ Chinese \/ Dutch \/ Polish \/ Turkish \/ Korean"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17639},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E05.The Exorcism of Claire Nunez-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E05.The Exorcism of Claire Nunez-WEBDL-1080p.mkv","size":447166815,"dateAdded":"2021-02-28T05:07:08.053161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1879395,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17640},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E06.Parental Guidance-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E06.Parental Guidance-WEBDL-1080p.mkv","size":446509150,"dateAdded":"2021-02-28T05:08:50.562609Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1875302,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17641},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E07.The Oath-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E07.The Oath-WEBDL-1080p.mkv","size":443635098,"dateAdded":"2021-02-28T05:10:33.0475Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1877767,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:26","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17642},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E08.For the Glory of Merlin-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E08.For the Glory of Merlin-WEBDL-1080p.mkv","size":443700853,"dateAdded":"2021-02-28T05:12:17.1586Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1877534,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:26","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17643},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E09.In Good Hands-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E09.In Good Hands-WEBDL-1080p.mkv","size":446783955,"dateAdded":"2021-02-28T05:14:00.027873Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1876628,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17644},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E10.A House Divided-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E10.A House Divided-WEBDL-1080p.mkv","size":443932508,"dateAdded":"2021-02-28T05:15:44.325729Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1871681,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:30","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17645},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E11.Jimhunters-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E11.Jimhunters-WEBDL-1080p.mkv","size":446580317,"dateAdded":"2021-02-28T05:17:28.583436Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1876378,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:36","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17646},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E12.The Eternal Knight (1)-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E12.The Eternal Knight (1)-WEBDL-1080p.mkv","size":447169647,"dateAdded":"2021-02-28T05:19:11.023457Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1876433,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:38","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17647},{"seriesId":272,"seasonNumber":3,"relativePath":"Season 03\/S03E13.The Eternal Knight (2)-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 03\/S03E13.The Eternal Knight (2)-WEBDL-1080p.mkv","size":455023384,"dateAdded":"2021-02-28T05:20:53.654582Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1874774,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"24:04","scanType":"","subtitles":"English \/ Bulgarian \/ Norwegian Bokmal \/ Romanian \/ Greek \/ German \/ Thai \/ Japanese \/ Portuguese \/ Italian \/ Portuguese \/ Chinese \/ Vietnamese \/ Swedish \/ Finnish \/ Hebrew \/ Spanish \/ Arabic \/ Spanish \/ Danish \/ Dutch \/ Polish \/ Chinese \/ Korean \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17648},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Becoming (1)-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E01.Becoming (1)-WEBDL-1080p.mkv","size":394622065,"dateAdded":"2021-02-28T05:22:43.364912Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1806730,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17649},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Becoming (2)-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E02.Becoming (2)-WEBDL-1080p.mkv","size":395612654,"dateAdded":"2021-02-28T05:24:25.388812Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1812230,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17650},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Wherefore Art Thou, Trollhunter-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E03.Wherefore Art Thou, Trollhunter-WEBDL-1080p.mkv","size":394395943,"dateAdded":"2021-02-28T05:26:07.261207Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805475,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17651},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Gnome Your Enemy-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E04.Gnome Your Enemy-WEBDL-1080p.mkv","size":394657145,"dateAdded":"2021-02-28T05:27:49.908237Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1806925,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17652},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Waka Chaka!-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E05.Waka Chaka!-WEBDL-1080p.mkv","size":394475504,"dateAdded":"2021-02-28T05:29:32.110274Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805917,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17653},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Win Lose or Draal-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E06.Win Lose or Draal-WEBDL-1080p.mkv","size":394901003,"dateAdded":"2021-02-28T05:31:14.580583Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1808279,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17654},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E07.To Catch a Changeling-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E07.To Catch a Changeling-WEBDL-1080p.mkv","size":394428471,"dateAdded":"2021-02-28T05:32:56.818721Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805656,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17655},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Adventures in Trollsitting-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E08.Adventures in Trollsitting-WEBDL-1080p.mkv","size":394344640,"dateAdded":"2021-02-28T05:34:39.918161Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805191,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17656},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Bittersweet Sixteen-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E09.Bittersweet Sixteen-WEBDL-1080p.mkv","size":394692318,"dateAdded":"2021-02-28T05:36:23.329971Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1807120,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17657},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Young Atlas-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E10.Young Atlas-WEBDL-1080p.mkv","size":394493147,"dateAdded":"2021-02-28T05:38:05.975408Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1806015,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17658},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Recipe for Disaster-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E11.Recipe for Disaster-WEBDL-1080p.mkv","size":394330650,"dateAdded":"2021-02-28T05:39:48.177372Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805113,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17659},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Claire and Present Danger-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E12.Claire and Present Danger-WEBDL-1080p.mkv","size":394297983,"dateAdded":"2021-02-28T05:41:30.561974Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1804932,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17660},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E13.The Battle of Two Bridges-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E13.The Battle of Two Bridges-WEBDL-1080p.mkv","size":394809575,"dateAdded":"2021-02-28T05:43:13.086184Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1807771,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17661},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E14.Return of the Trollhunter-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E14.Return of the Trollhunter-WEBDL-1080p.mkv","size":395151542,"dateAdded":"2021-02-28T05:44:56.422297Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1809670,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17662},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E15.Mudslinging-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E15.Mudslinging-WEBDL-1080p.mkv","size":394296351,"dateAdded":"2021-02-28T05:46:39.314327Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1804922,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17663},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E16.Roaming Fees May Apply-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E16.Roaming Fees May Apply-WEBDL-1080p.mkv","size":395038149,"dateAdded":"2021-02-28T05:48:21.430715Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1809040,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17664},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E17.Blinky's Day Out-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E17.Blinky's Day Out-WEBDL-1080p.mkv","size":395262191,"dateAdded":"2021-02-28T05:50:04.825596Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1810284,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17665},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E18.The Shattered King-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E18.The Shattered King-WEBDL-1080p.mkv","size":395130919,"dateAdded":"2021-02-28T05:51:47.701515Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1809555,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17666},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E19.Airheads-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E19.Airheads-WEBDL-1080p.mkv","size":389392299,"dateAdded":"2021-02-28T05:53:29.961917Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805679,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:14","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17667},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E20.Where Is My Mind-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E20.Where Is My Mind-WEBDL-1080p.mkv","size":394059006,"dateAdded":"2021-02-28T05:55:12.229158Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1803605,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17668},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E21.Party Monster-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E21.Party Monster-WEBDL-1080p.mkv","size":395084167,"dateAdded":"2021-02-28T05:56:55.522048Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1809296,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17669},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E22.It's About Time-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E22.It's About Time-WEBDL-1080p.mkv","size":395025816,"dateAdded":"2021-02-28T05:58:37.824934Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1808972,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17670},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E23.Wingmen-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E23.Wingmen-WEBDL-1080p.mkv","size":394634113,"dateAdded":"2021-02-28T06:00:21.899149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1806797,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17671},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E24.Angor Management-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E24.Angor Management-WEBDL-1080p.mkv","size":395220425,"dateAdded":"2021-02-28T06:02:04.198621Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1810052,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17672},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E25.A Night to Remember-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E25.A Night to Remember-WEBDL-1080p.mkv","size":394368104,"dateAdded":"2021-02-28T06:03:46.983957Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1805321,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17673},{"seriesId":272,"seasonNumber":1,"relativePath":"Season 01\/S01E26.Something Rotten This Way Comes-WEBDL-1080p.mkv","path":"\/tv\/Trollhunters - Tales of Arcadia\/Season 01\/S01E26.Something Rotten This Way Comes-WEBDL-1080p.mkv","size":395125451,"dateAdded":"2021-02-28T06:05:29.770118Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1809525,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"23:32","scanType":"","subtitles":"English \/ Arabic \/ Danish \/ German \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Swedish \/ Thai \/ Turkish \/ Vietnamese \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":17674}],"queue":[]},"285":{"series":{"title":"GO! Cartoons","alternateTitles":[],"sortTitle":"go cartoons","status":"ended","ended":true,"overview":"GO! Cartoons is a series of animated shorts created by Fred Seibert and produced by Frederator Studios and Sony Pictures Animation. \r\n\r\nGO! Cartoons is Frederator Studios' sixth cartoon \"incubator\" series since 1998, featuring unique voices in short animated films, meant to introduce original characters and animation creators.","previousAiring":"2018-04-10T06:00:00Z","network":"VRV","airTime":"02:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/237\/banner.jpg?lastWrite=637251507170967000","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/337964-g.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/237\/poster.jpg?lastWrite=637251507171886980","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/337964-1.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/237\/fanart.jpg?lastWrite=637251507178446870","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/337964-1.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2018-04-10T06:00:00Z","episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":603498218,"percentOfEpisodes":100.0}}],"year":2017,"path":"\/tv\/GO! Cartoons","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":5,"tvdbId":337964,"tvRageId":0,"tvMazeId":54232,"firstAired":"2017-11-07T00:00:00Z","seriesType":"standard","cleanTitle":"gocartoons","imdbId":"tt7603188","titleSlug":"go-cartoons","rootFolderPath":"\/tv\/","genres":["Animation","Comedy"],"tags":[],"added":"2020-05-15T14:45:15.581937Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":12,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":603498218,"percentOfEpisodes":100.0},"id":237},"episodes":[{"seriesId":237,"episodeFileId":13320,"seasonNumber":1,"episodeNumber":1,"title":"The Summoning","airDate":"2017-11-07","airDateUtc":"2017-11-07T07:00:00Z","overview":"Witch Claire needs troll fat to complete a summoning, but it proves a difficult\u2014and occasionally nasty\u2014journey to obtain the final ingredient.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17868},{"seriesId":237,"episodeFileId":13321,"seasonNumber":1,"episodeNumber":2,"title":"Boots","airDate":"2017-11-21","airDateUtc":"2017-11-21T07:00:00Z","overview":"Boots the cat is NOT a hoarder\u2014he\u2019s just certain that his neighbor\u2019s cast-away chair is exactly the New Thing to fill that empty old void in his heart!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17869},{"seriesId":237,"episodeFileId":13322,"seasonNumber":1,"episodeNumber":3,"title":"City Dwellers","airDate":"2017-12-05","airDateUtc":"2017-12-05T07:00:00Z","overview":"A tree and a beaver do odd jobs to make it in the big city, but some\u2014like walking a ninja dog intent on attacking samurai\u2014take \u2018odd\u2019 to another level.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17870},{"seriesId":237,"episodeFileId":13323,"seasonNumber":1,"episodeNumber":4,"title":"Rachel and Her Grandfather Control the Island","airDate":"2017-12-19","airDateUtc":"2017-12-19T07:00:00Z","overview":"Rachel and her grandpa just wanna take control of their island by running surveillance out of trash cans\u2014but they\u2019ve got to get the love-sick President to lift the trash can ban first.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17871},{"seriesId":237,"episodeFileId":13324,"seasonNumber":1,"episodeNumber":5,"title":"Nebulous","airDate":"2018-01-02","airDateUtc":"2018-01-02T07:00:00Z","overview":"Three health-food deliverers in space struggle to fulfill an order without dissolving in the stomach of a fast-food fryin\u2019 giant worm.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17872},{"seriesId":237,"episodeFileId":13325,"seasonNumber":1,"episodeNumber":6,"title":"Welcome to Doozy","airDate":"2018-01-16","airDateUtc":"2018-01-16T07:00:00Z","overview":"Ex prepares an amazing bento box for her work crush, but her friend Lou\u2019s spell to make it amazing-er turns out a curse, as the food becomes alive-er, and a whole lot angrier.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17873},{"seriesId":237,"episodeFileId":13326,"seasonNumber":1,"episodeNumber":7,"title":"Both Brothers","airDate":"2018-01-30","airDateUtc":"2018-01-30T07:00:00Z","overview":"When brothers Tod and Klod convince the sun to stop shining, they have to reverse her decision before being murdered by a very angry (and cold) mob!","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17874},{"seriesId":237,"episodeFileId":13327,"seasonNumber":1,"episodeNumber":8,"title":"The Bagheads: Get Trashed","airDate":"2018-02-13","airDateUtc":"2018-02-13T07:00:00Z","overview":"When a bag-headed brother and sister battle over trash take-out, the piled-up garbage really hits the fan.","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17875},{"seriesId":237,"episodeFileId":13331,"seasonNumber":1,"episodeNumber":9,"title":"Tyler & Co.","airDate":"2018-02-27","airDateUtc":"2018-02-27T07:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17876},{"seriesId":237,"episodeFileId":13328,"seasonNumber":1,"episodeNumber":10,"title":"Kid Arthur","airDate":"2018-03-13","airDateUtc":"2018-03-13T06:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17877},{"seriesId":237,"episodeFileId":13329,"seasonNumber":1,"episodeNumber":11,"title":"Thrashin' USA","airDate":"2018-03-27","airDateUtc":"2018-03-27T06:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17878},{"seriesId":237,"episodeFileId":13330,"seasonNumber":1,"episodeNumber":12,"title":"Pottyhorse","airDate":"2018-04-10","airDateUtc":"2018-04-10T06:00:00Z","hasFile":true,"monitored":true,"unverifiedSceneNumbering":false,"id":17879}],"episodeFile":[{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E01.The Summoning-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E01.The Summoning-HDTV-1080p.mkv","size":48590734,"dateAdded":"2020-05-15T16:57:50.139177Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":"Chinese \/ English \/ French \/ Hebrew \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Spanish \/ Spanish \/ Thai \/ Turkish \/ Vietnamese"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13320},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Boots-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E02.Boots-HDTV-1080p.mkv","size":45260457,"dateAdded":"2020-05-15T16:57:50.199884Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:38","scanType":"","subtitles":"Chinese \/ English \/ Portuguese \/ Russian \/ Spanish \/ Spanish \/ Turkish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13321},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E03.City Dwellers-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E03.City Dwellers-HDTV-1080p.mkv","size":46942171,"dateAdded":"2020-05-15T16:57:50.260098Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:38","scanType":"","subtitles":"English \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13322},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Rachel and Her Grandfather Control the Island-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E04.Rachel and Her Grandfather Control the Island-HDTV-1080p.mkv","size":63761319,"dateAdded":"2020-05-15T16:57:50.317569Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:38","scanType":"","subtitles":"English \/ Russian \/ Ukrainian"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13323},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Nebulous-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E05.Nebulous-HDTV-1080p.mkv","size":44670923,"dateAdded":"2020-05-15T16:57:50.374598Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13324},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Welcome to Doozy-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E06.Welcome to Doozy-HDTV-1080p.mkv","size":48161957,"dateAdded":"2020-05-15T16:57:50.431303Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:38","scanType":"","subtitles":"English \/ French \/ Japanese \/ Korean \/ Portuguese \/ Russian \/ Spanish"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13325},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Both Brothers-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E07.Both Brothers-HDTV-1080p.mkv","size":44315112,"dateAdded":"2020-05-15T16:57:50.499149Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13326},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E08.The Bagheads - Get Trashed-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E08.The Bagheads - Get Trashed-HDTV-1080p.mkv","size":46863455,"dateAdded":"2020-05-15T16:57:50.553253Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13327},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E10.Kid Arthur-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E10.Kid Arthur-HDTV-1080p.mkv","size":56559397,"dateAdded":"2020-05-15T16:57:50.602644Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:38","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13328},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E11.Thrashin' USA-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E11.Thrashin' USA-HDTV-1080p.mkv","size":43497556,"dateAdded":"2020-05-15T16:57:50.651607Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13329},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E12.Pottyhorse-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E12.Pottyhorse-HDTV-1080p.mkv","size":40353655,"dateAdded":"2020-05-15T16:57:50.698812Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13330},{"seriesId":237,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Tyler & Co-HDTV-1080p.mkv","path":"\/tv\/GO! Cartoons\/Season 01\/S01E09.Tyler & Co-HDTV-1080p.mkv","size":74521482,"dateAdded":"2020-05-15T16:59:51.067628Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":0,"audioChannels":2.0,"audioCodec":"Opus","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":0,"videoBitrate":0,"videoCodec":"VP9","videoFps":23.976,"resolution":"1920x1080","runTime":"5:37","scanType":"","subtitles":"Chinese \/ English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":13331}],"queue":[]},"286":{"series":{"title":"Samurai Jack","alternateTitles":[],"sortTitle":"samurai jack","status":"ended","ended":true,"overview":"Made by Genndy Tartakovsky, this cartoon tells the story of a great warrior displaced to the distant future by the evil shape-shifting wizard Aku. The world has become a bleak place under the rule of Aku, segregated into fantastic tribes and ruled by Aku's evil robot warlords. Jack travels this foreign landscape in search of a time portal that can return him to his home time so he can \"undo the future that is Aku!\".","previousAiring":"2017-05-21T03:00:00Z","network":"Adult Swim","airTime":"23:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/273\/banner.jpg?lastWrite=637505944415625620","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/graphical\/75164-g2.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/273\/poster.jpg?lastWrite=637505944416625610","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/posters\/75164-4.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/273\/fanart.jpg?lastWrite=637505944427785430","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/fanart\/original\/75164-1.jpg"}],"seasons":[{"seasonNumber":0,"monitored":false,"statistics":{"episodeFileCount":0,"episodeCount":0,"totalEpisodeCount":19,"sizeOnDisk":0,"percentOfEpisodes":0.0}},{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2001-12-04T04:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":16130208193,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2002-10-12T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":16401731085,"percentOfEpisodes":100.0}},{"seasonNumber":3,"monitored":true,"statistics":{"previousAiring":"2003-08-17T03:20:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15229845640,"percentOfEpisodes":100.0}},{"seasonNumber":4,"monitored":true,"statistics":{"previousAiring":"2004-09-26T03:00:00Z","episodeFileCount":13,"episodeCount":13,"totalEpisodeCount":13,"sizeOnDisk":15378199510,"percentOfEpisodes":100.0}},{"seasonNumber":5,"monitored":true,"statistics":{"previousAiring":"2017-05-21T03:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":9572977795,"percentOfEpisodes":100.0}}],"year":2001,"path":"\/tv\/Samurai Jack","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":20,"tvdbId":75164,"tvRageId":5094,"tvMazeId":1603,"firstAired":"2001-08-10T00:00:00Z","seriesType":"standard","cleanTitle":"samuraijack","imdbId":"tt0278238","titleSlug":"samurai-jack","rootFolderPath":"\/tv\/","certification":"TV-14","genres":["Action","Animation","Anime"],"tags":[],"added":"2021-03-06T02:27:20.658936Z","ratings":{"votes":859,"value":9.1},"statistics":{"seasonCount":5,"episodeFileCount":62,"episodeCount":62,"totalEpisodeCount":81,"sizeOnDisk":72712962223,"percentOfEpisodes":100.0},"id":273},"episodes":[{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":4,"title":"The Making of Samurai Jack","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20926},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":5,"title":"The Pitch","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20927},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":6,"title":"The Martial Arts of Samurai Jack","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20928},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":7,"title":"Lost Artwork","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20929},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":8,"title":"Genndy's Scrapbook","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20930},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":9,"title":"Episode 3 Animatic","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20931},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":10,"title":"Episode 5 Animatic","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20932},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":11,"title":"Episode 7 Animatic","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20933},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":12,"title":"Episode 8 Animatic","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20934},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":13,"title":"Episode 9 Animatic","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":20935},{"seriesId":273,"episodeFileId":17724,"seasonNumber":1,"episodeNumber":1,"title":"I: The Beginning","airDate":"2001-08-10","airDateUtc":"2001-08-11T03:00:00Z","overview":"Aku, the shape-shifting master of evil, devastates a young boy's land, forcing him to travel around the world to train as a samurai. When Samurai Jack returns to free his people, he is instead flung into the far future, where he must quest to undo the future that is Aku.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":20936},{"seriesId":273,"episodeFileId":17725,"seasonNumber":1,"episodeNumber":2,"title":"II: The Samurai Called Jack","airDate":"2001-08-10","airDateUtc":"2001-08-11T03:20:00Z","overview":"Jack befriends some talking archeologist dogs and learns of his location: In the future shaped by years of Aku's evil reign. He vows to help the dogs gain their freedom from a life of enslaved jewel mining.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":20937},{"seriesId":273,"episodeFileId":17726,"seasonNumber":1,"episodeNumber":3,"title":"III: The First Fight","airDate":"2001-08-10","airDateUtc":"2001-08-11T03:40:00Z","overview":"Aku learns of Jack's arrival in the future, and of the help he is giving the dogs. He sends a huge army of insect drones to destroy Jack and the dogs alike. Jack has been busy preparing many traps for them however, and when they arrive the battle begins in earnest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":20938},{"seriesId":273,"episodeFileId":17727,"seasonNumber":1,"episodeNumber":4,"title":"IV: Jack, the Woolies, and the Chritchellites","airDate":"2001-08-13","airDateUtc":"2001-08-14T03:00:00Z","overview":"Jack comes into contact with a tribe of creatures who utilize their technology to subdue a group of supposedly savage beasts called \"Woolies.\" Little does Jack know, there is more to the situation than meets the eye.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":20939},{"seriesId":273,"episodeFileId":17730,"seasonNumber":1,"episodeNumber":7,"title":"VII: Jack and the Three Blind Archers","airDate":"2001-08-20","airDateUtc":"2001-08-21T03:00:00Z","overview":"Samurai Jack hears of a mysterious island which possesses a well that can grant any wish. He arrives at the island and discovers the well is not alone.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":20942},{"seriesId":273,"episodeFileId":17728,"seasonNumber":1,"episodeNumber":5,"title":"V: Jack in Space","airDate":"2001-08-27","airDateUtc":"2001-08-28T03:00:00Z","overview":"Samurai Jack befriends a future community building a spaceship to escape Aku's tyrannic rule. Jack agrees to assist in their escape by fighting off the blockade orbiting the planet in return for a trip through time back home.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":20940},{"seriesId":273,"episodeFileId":17732,"seasonNumber":1,"episodeNumber":9,"title":"IX: Jack Under the Sea","airDate":"2001-09-03","airDateUtc":"2001-09-04T03:00:00Z","overview":"Jack hears tales about a race of amphibians living in an underwater city who have a time machine. He searches them out, and they agree to let him use the machine, but the creatures have not been entirely truthful.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":20944},{"seriesId":273,"episodeFileId":17731,"seasonNumber":1,"episodeNumber":8,"title":"VIII: Jack vs. Mad Jack","airDate":"2001-10-15","airDateUtc":"2001-10-16T03:00:00Z","overview":"Aku places a bounty on Jack's head, but is disappointed by the failure of some inept hunters, so he creates an evil spirit-clone version of Jack to finish our hero off for good.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":20943},{"seriesId":273,"episodeFileId":17734,"seasonNumber":1,"episodeNumber":11,"title":"XI: Jack and the Scotsman","airDate":"2001-10-29","airDateUtc":"2001-10-30T04:00:00Z","overview":"When Jack and a Scotsman meet on a seemingly never-ending bridge, they end up shackled together and on the run from bounty hunters.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":20946},{"seriesId":273,"episodeFileId":17733,"seasonNumber":1,"episodeNumber":10,"title":"X: Jack and the Lava Monster","airDate":"2001-11-05","airDateUtc":"2001-11-06T04:00:00Z","overview":"Called on by a mysterious voice, Jack overcomes many obstacles and booby traps to find who is calling him. Deep in the earth he finds it is a creature made from rock and lava, who immediately challenges Jack to a fight, but why did it call for Jack?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":20945},{"seriesId":273,"episodeFileId":17729,"seasonNumber":1,"episodeNumber":6,"title":"VI: Jack and the Warrior Woman","airDate":"2001-11-19","airDateUtc":"2001-11-20T04:00:00Z","overview":"Jack searches for the the magical jewel the Woolies told him would be able to send him back in time. Locating the last survivor of the race who can reveal its location, Jack learns of how to find the jewel, and meets up with a woman questing for the same jewel. They journey through the desert together, but will they be able to share the jewel if they find it?","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":20941},{"seriesId":273,"episodeFileId":17735,"seasonNumber":1,"episodeNumber":12,"title":"XII: Jack and the Gangsters","airDate":"2001-11-26","airDateUtc":"2001-11-27T04:00:00Z","overview":"Jack joins a group of gangsters who work for Aku. He also agrees to help steal the heavily protected crystal that can give Aku power over the whole planet. Fortunately Jack has not become a traitor, but has his own plans of how to hand over the swag.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":20947},{"seriesId":273,"episodeFileId":17736,"seasonNumber":1,"episodeNumber":13,"title":"XIII: Aku's Fairy Tales","airDate":"2001-12-03","airDateUtc":"2001-12-04T04:00:00Z","overview":"The tales of Jack's adventures have spread far and wide, and children are having fun acting out the stories. Aku, in an attempt to keep the children in line, decides to spread a few stories of his own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":13,"unverifiedSceneNumbering":false,"id":20948},{"seriesId":273,"episodeFileId":17763,"seasonNumber":2,"episodeNumber":1,"title":"XIV: Jack Learns to Jump Good","airDate":"2002-03-01","airDateUtc":"2002-03-02T04:00:00Z","overview":"Jack tries to save a peaceful tribe that move constantly due to an opposing food-stealing tribe of monkey\/lions: Jack meets up with the Monkey Boy who can \"\"jump good\"\" almost to the point of flying. Jack is taken to his village and agrees to teach a group of furry creatures to fend for themselves in return for \"\"jumping good\"\" lessons. Jack teaches the creatures to use bamboo to fight and together they set up an array of traps for the monkey\/lions. In return Jack has an challenging time trying to \"\"jump good\"\", a process involving climbing hills and vines... with boulders attached to his body.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":14,"unverifiedSceneNumbering":false,"id":20949},{"seriesId":273,"episodeFileId":17764,"seasonNumber":2,"episodeNumber":2,"title":"XV: Jack Tales","airDate":"2002-03-08","airDateUtc":"2002-03-09T04:00:00Z","overview":"Three short stories: 1) Jack confronts a two-headed riddling serpent who will grant him his wish if he can answer their questions. 2) Jack confronts a family that feed on metal, only for him and they to find out that they are robots. 3) Jack tries to rescue a wish-granting fairy from a gargoyle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":15,"unverifiedSceneNumbering":false,"id":20950},{"seriesId":273,"episodeFileId":17765,"seasonNumber":2,"episodeNumber":3,"title":"XVI: Jack and the Smackback","airDate":"2002-03-15","airDateUtc":"2002-03-16T04:00:00Z","overview":"Jack is kidnapped and placed in a chain gang of warriors chosen to battle in the Dome of Doom, against the Smackback Ultimate Champions. Even without his sword, Jack defeats Gordo and the Aqualizer, and then must defeat the massive but ticklish Sumoto with the aid of his top knot. In desperation the Ringleader sends his remaining gladiators after Jack, who defeats them handily and forces the Ringleader to release the gladiator-slaves.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":16,"unverifiedSceneNumbering":false,"id":20951},{"seriesId":273,"episodeFileId":17766,"seasonNumber":2,"episodeNumber":4,"title":"XVII: Jack and the Scotsman (II)","airDate":"2002-03-22","airDateUtc":"2002-03-23T04:00:00Z","overview":"The Scotsman needs Jack's help to save his kidnapped wife. But this woman is hardly the distressed damsel the Scotsman makes her out to be.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":17,"unverifiedSceneNumbering":false,"id":20952},{"seriesId":273,"episodeFileId":17767,"seasonNumber":2,"episodeNumber":5,"title":"XVIII: Jack and the Ultra-Robots","airDate":"2002-03-29","airDateUtc":"2002-03-30T04:00:00Z","overview":"Jack goes from destroyed village to destroyed village looking for the ultra-robots responsible for the destruction only to find that they were created by a troll commissioned by Aku.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":18,"unverifiedSceneNumbering":false,"id":20953},{"seriesId":273,"episodeFileId":17768,"seasonNumber":2,"episodeNumber":6,"title":"XIX: Jack Remembers the Past","airDate":"2002-04-05","airDateUtc":"2002-04-06T04:00:00Z","overview":"After defeating a band of robotic cat-demons Jack travels the land and finds himself in the area where he grew up. As he tours the ruins he has flashbacks to a day spent pursuing a locust in the company of a young girl, witnessing a wandering warrior defeat four men on a bridge, having his parents greet him, and tricking three bullies.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":19,"unverifiedSceneNumbering":false,"id":20954},{"seriesId":273,"episodeFileId":17769,"seasonNumber":2,"episodeNumber":7,"title":"XX: Jack and the Monks","airDate":"2002-04-12","airDateUtc":"2002-04-13T03:00:00Z","overview":"After Aku's beetle drones destroy yet another gateway to the past, only moments before he's is able to reach it, Jack is overcome with frustration and is about ready to give up the quest. Then, by chance, he meets three monks about to climb the Mountain of Fatoom. Where, legend has it, truth can be found at the top.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":20,"unverifiedSceneNumbering":false,"id":20955},{"seriesId":273,"episodeFileId":17770,"seasonNumber":2,"episodeNumber":8,"title":"XXI: Jack and the Farting Dragon","airDate":"2002-09-06","airDateUtc":"2002-09-07T03:00:00Z","overview":"Jack discovers a village of panicky medieval serfs, overwhelmed and unable to earn their livelihood because of a horrible stench coming from a nearby mountain. After getting some more information from a demented scissorsmith, Jack heads to \"The Spire\" to deal with the source of this stink: a fire-breathing dragon who needs Jack's help in dealing with some serious indigestion!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":21,"unverifiedSceneNumbering":false,"id":20956},{"seriesId":273,"episodeFileId":17771,"seasonNumber":2,"episodeNumber":9,"title":"XXII: Jack and the Hunters","airDate":"2002-09-13","airDateUtc":"2002-09-14T03:00:00Z","overview":"On an alien planet, Aku contacts four Emikandi hunters and offers them the chance to hunt Jack. They capture Jack with incredible ease but Jack just as easily frees himself after he hears they're working for Aku and the real hunt begins! After an extended chase the two sides battle atop a skyscraper and Jack falls to his death...but the hunters rescue him out of respect for their greatest prey. Then the Emikandi refuse to give him to Aku out of respect for Jack's skill and depart.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":22,"unverifiedSceneNumbering":false,"id":20957},{"seriesId":273,"episodeFileId":17772,"seasonNumber":2,"episodeNumber":10,"title":"XXIII: Jack vs. Demongo, the Soul Collector","airDate":"2002-09-20","airDateUtc":"2002-09-21T03:00:00Z","overview":"Aku has his most powerful minion, Demongo, find jack and capture his essence.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":23,"unverifiedSceneNumbering":false,"id":20958},{"seriesId":273,"episodeFileId":17773,"seasonNumber":2,"episodeNumber":11,"title":"XXIV: Jack Is Naked","airDate":"2002-09-27","airDateUtc":"2002-09-28T03:00:00Z","overview":"Jack's clothes are stolen and he must get them back while being chased by an angry mob who think he's indecent.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":24,"unverifiedSceneNumbering":false,"id":20959},{"seriesId":273,"episodeFileId":17774,"seasonNumber":2,"episodeNumber":12,"title":"XXV: Jack and the Spartans","airDate":"2002-10-04","airDateUtc":"2002-10-05T03:00:00Z","overview":"As jack climbs up to the top of a mountain he meets up with an army of great warriors and gets asked to help them in the last chapter of a 300 year battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":25,"unverifiedSceneNumbering":false,"id":20960},{"seriesId":273,"episodeFileId":17775,"seasonNumber":2,"episodeNumber":13,"title":"XXVI: Jack's Sandals","airDate":"2002-10-11","airDateUtc":"2002-10-12T03:00:00Z","overview":"Jack's enjoying a nice, quiet day by the riverside... until a band of transforming biker-bots nearly runs him down, wrecking his precious sandals in the process!","hasFile":true,"monitored":true,"absoluteEpisodeNumber":26,"unverifiedSceneNumbering":false,"id":20961},{"seriesId":273,"episodeFileId":17750,"seasonNumber":3,"episodeNumber":1,"title":"XXVII: Chicken Jack","airDate":"2002-10-18","airDateUtc":"2002-10-19T03:00:00Z","overview":"Jack bumps into an old wizard who transforms him into a chicken - a rather goofy-looking master of the martial arts that nobody can understand. He gets captured and taken to a animal fight where he must defeat a robot beetle and snake. Jack wins but must then fight a spider-like creature, a giant worm, and the ratlike mechanical \"Finisher\". Jack's series of wins make his new owner a wealthy man but when he goes out to buy some decent clothing he bumps into the same wizard who hits them both with a spell - causing Jack to become human and the owner to become a chicken. Jack departs with a new found appreciation for the virtues of not eating chicken.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":27,"unverifiedSceneNumbering":false,"id":20962},{"seriesId":273,"episodeFileId":17753,"seasonNumber":3,"episodeNumber":4,"title":"XXX: Jack and the Zombies","airDate":"2002-10-25","airDateUtc":"2002-10-26T03:00:00Z","overview":"Aku resolves to do something about The Samurai once and for all and lures him into a cemetery.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":30,"unverifiedSceneNumbering":false,"id":20965},{"seriesId":273,"episodeFileId":17751,"seasonNumber":3,"episodeNumber":2,"title":"XXVIII: Jack and the Rave","airDate":"2002-11-01","airDateUtc":"2002-11-02T04:00:00Z","overview":"In his travels Jack comes to a tavern and a crying tavern owner. Then shadowy figures attack but Jack discovers they are teenagers, the \"Children of Aku\", under a magical musical spell. Knocking one out and following them in disguise, jack finds their rave and a sinister DJ playing the music. The DJ spots Jack and a fight ensues. Jack takes the fight directly to the DJ who is his near-equal. When Jack gets the upper hand the DJ dons a speaker-battlesuit but Jack regains his lost sword at the last minute and triumphs, freeing the children.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":28,"unverifiedSceneNumbering":false,"id":20963},{"seriesId":273,"episodeFileId":17752,"seasonNumber":3,"episodeNumber":3,"title":"XXIX: The Good, the Bad, and the Beautiful","airDate":"2002-11-08","airDateUtc":"2002-11-09T04:00:00Z","overview":"While taking a trip on a Old West-style train, Jack is stalked by a bounty hunter, Ezekial Clench. He manages to defeat him but unwittingly falls prey to Ezekial's ex-wife Josephine.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":29,"unverifiedSceneNumbering":false,"id":20964},{"seriesId":273,"episodeFileId":17754,"seasonNumber":3,"episodeNumber":5,"title":"XXXI: Jack in Egypt","airDate":"2002-11-22","airDateUtc":"2002-11-23T04:00:00Z","overview":"As Jack travels towards Egypt, Aku unearths three ancient Minions and tasks them to kill Jack in return for freeing them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":31,"unverifiedSceneNumbering":false,"id":20966},{"seriesId":273,"episodeFileId":17755,"seasonNumber":3,"episodeNumber":6,"title":"XXXII: Jack and the Travelling Creatures","airDate":"2003-04-26","airDateUtc":"2003-04-27T03:00:00Z","overview":"To get to a time passage, Jack must pass a lake which sucks down any who try to cross it without touching its bottom.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":32,"unverifiedSceneNumbering":false,"id":20967},{"seriesId":273,"episodeFileId":17756,"seasonNumber":3,"episodeNumber":7,"title":"XXXIII: Jack and the Creature","airDate":"2003-05-03","airDateUtc":"2003-05-04T03:00:00Z","overview":"Whilst crossing a desert to seek the Crystal of Cagliostoro, Jack comes across a oasis. He unwittingly disturbs an overly friendly creature, who begins following Jack, messing up Jack's every move along his quest.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":33,"unverifiedSceneNumbering":false,"id":20968},{"seriesId":273,"episodeFileId":17757,"seasonNumber":3,"episodeNumber":8,"title":"XXXIV: Jack and the Swamp Monster","airDate":"2003-05-10","airDateUtc":"2003-05-11T03:00:00Z","overview":"Jack finds a swamp where a foul-tempered hermit answers his call. The wizard tells Jack of the titan Chronos and his powers over space and time, now locked within three pieces of armor set with gems.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":34,"unverifiedSceneNumbering":false,"id":20969},{"seriesId":273,"episodeFileId":17758,"seasonNumber":3,"episodeNumber":9,"title":"XXXV: Jack and the Haunted House","airDate":"2003-05-17","airDateUtc":"2003-05-18T03:00:00Z","overview":"Jack travels through a swampland, when he comes across a small shadow crying in the distance. After approaching the being, it drops a small toy doll and Jack follows it back to a small house in hopes of giving the item back to the creature.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":35,"unverifiedSceneNumbering":false,"id":20970},{"seriesId":273,"episodeFileId":17759,"seasonNumber":3,"episodeNumber":10,"title":"XXXVI: Jack, the Monks, and the Ancient Master's Son","airDate":"2003-05-31","airDateUtc":"2003-06-01T03:00:00Z","overview":"Jack meets two Shaolin monks and after a brief fight he convinces them of his credentials and they take him to see their Grand Master at their hidden temple.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":36,"unverifiedSceneNumbering":false,"id":20971},{"seriesId":273,"episodeFileId":17762,"seasonNumber":3,"episodeNumber":13,"title":"XXXIX: Jack and the Labyrinth","airDate":"2003-06-07","airDateUtc":"2003-06-08T03:00:00Z","overview":"Jack is directed to a deathtrap-filled labyrinth which holds a diamond that can restore him to his time. Unfortunately a master thief also enters the labyrinth going for the item.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":39,"unverifiedSceneNumbering":false,"id":20974},{"seriesId":273,"episodeFileId":17737,"seasonNumber":4,"episodeNumber":1,"title":"XL: Samurai vs. Ninja","airDate":"2003-06-14","airDateUtc":"2003-06-15T03:00:00Z","overview":"Aku sends forth the robotic ninja Shinobi, Warrior of the Dark, to kill the Samurai. Jack responds to the cries of a young boy from a village beset by robot lobsters. Jack defeats them all while Shinobi watches - then the ninja takes the boy to a nearby ruined tower where he strikes from the darkness at Jack as he follows. Jack knows of the ninja's technique and reveals that he is trained to blend with the light just as Shinobi can blend with the dark. The warriors of light and dark fight from shadow to light and back again - with the sun going down, Jack quickly runs out of concealment and in a last desperate measure reflects the waning light onto Shinobi and destroys him with a well-tossed sword.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":40,"unverifiedSceneNumbering":false,"id":20975},{"seriesId":273,"episodeFileId":17738,"seasonNumber":4,"episodeNumber":2,"title":"XLI: Robo-Samurai vs. Mondo Bot","airDate":"2003-06-21","airDateUtc":"2003-06-22T03:00:00Z","overview":"Jack enters the abandoned city of Andromeda and finds himself under attack by a monstrous giant robot, the Mondo-Bot. Jack is initially defeated and rescued by local robots who believe he is the Chosen One. The city is built on a magical city of giants and Jack goes underwater to seek them out and finds a giant samurai robot which pulls Jack into it. Jack's bot is resistant to everything the Mondo-Bot shoots at it so the two engage in an enormous close combat battle and Jack proves triumphant.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":41,"unverifiedSceneNumbering":false,"id":20976},{"seriesId":273,"episodeFileId":17739,"seasonNumber":4,"episodeNumber":3,"title":"XLII: Samurai vs. Samurai","airDate":"2003-06-28","airDateUtc":"2003-06-29T03:00:00Z","overview":"While traveling through the rain, Jack takes refuge in an inn and meets Da Samurai, a hip-hop singer\/fighter. His performance is interrupted by a new version of Aku's bounty hunters. Jack defeats them handily, much to Da Samurai's amazement. Da Samurai challenges him to battle and Jack eventually agrees. Jack requires him to first fight with sticks and Jack is clearly the superior warrior. Their fight is interrupted by the arrival of many more of Aku's hunters. Da Samurai is captured and Jack defeats the 100+ robots...but they assemble into one gigantic multi-headed robot. Da Samurai saves Jack by taking an energy blast, giving Jack time to defeat the robot and acknowledge Da Samurai has taken the first step on the path of a true warrior.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":42,"unverifiedSceneNumbering":false,"id":20977},{"seriesId":273,"episodeFileId":17760,"seasonNumber":3,"episodeNumber":11,"title":"XXXVII: The Birth of Evil (1)","airDate":"2003-08-16","airDateUtc":"2003-08-17T03:00:00Z","overview":"The gods Odin, Ra, and Rama battle a great dark evil. One shard escapes and falls to primitive Earth, creating a vast black forest. Down through the millennia it spreads and kills until the period of feudal Japan.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":37,"unverifiedSceneNumbering":false,"id":20972},{"seriesId":273,"episodeFileId":17761,"seasonNumber":3,"episodeNumber":12,"title":"XXXVIII: The Birth of Evil (2)","airDate":"2003-08-16","airDateUtc":"2003-08-17T03:20:00Z","overview":"The gods send the Emperor a mystical horse to free him and deliver him to a castle in the sky. The three gods give him powers and forge a mystic sword for him to wield before sending him forth to fight Aku.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":38,"unverifiedSceneNumbering":false,"id":20973},{"seriesId":273,"episodeFileId":17742,"seasonNumber":4,"episodeNumber":6,"title":"XLV: The Scotsman Saves Jack (1)","airDate":"2003-08-23","airDateUtc":"2003-08-24T03:00:00Z","overview":"While traveling the Scotsman finds Samurai Jack working as a waiter named Brent Worthington. The Scotsman rescues the amnesiac Jack from bounty hunters and realizes that Jack was injured by the tango beast. He follows the trail from the tango beast to a bar of bounty hunters to a sea captain to a chart that directs them to The Great Unknown. The Scotsman hires a ship to take them there.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":45,"unverifiedSceneNumbering":false,"id":20980},{"seriesId":273,"episodeFileId":17743,"seasonNumber":4,"episodeNumber":7,"title":"XLVI: The Scotsman Saves Jack (2)","airDate":"2003-08-23","airDateUtc":"2003-08-24T03:20:00Z","overview":"The ship sails into the Great Unknown and encounters sirens who hypnotize everyone except the Scotsman who is conveniently immune thanks to his musical taste for Scottish music and his wife's singing. The entranced crew bring the ship to ground and give the sirens all their treasure as the Scotsman confronts the Sirens. They send the crew against him but he uses his bagpipes to snap them out of it. While the Sirens attack the defenseless Scotsman, Jack grabs his sword and kills the beasts. When the other ships leave without them and they have to have a series of contests to determine who will row the boat. Jack wins them all, including an epic thumb-wrestling battle.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":46,"unverifiedSceneNumbering":false,"id":20981},{"seriesId":273,"episodeFileId":17740,"seasonNumber":4,"episodeNumber":4,"title":"XLIII: The Aku Infection","airDate":"2003-11-05","airDateUtc":"2003-11-06T04:00:00Z","overview":"Jack is infected with a bit of Aku and the piece infects him with Aku, trying to take him over and drive him to evil.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":43,"unverifiedSceneNumbering":false,"id":20978},{"seriesId":273,"episodeFileId":17741,"seasonNumber":4,"episodeNumber":5,"title":"XLIV: The Princess and the Bounty Hunters","airDate":"2003-11-12","airDateUtc":"2003-11-13T04:00:00Z","overview":"Bounty hunters come together and vie among themselves to determine who will go first. Each hunter outlines his plan while another, armored hunter points out the flaws in each plan. The armored hunter is a woman, Princess Mira and she proposes they fight together, but she claim the bounty so that Aku will free her people..\r\nThe bounty hunters prepare their trap, digging pits to ambush Jack. But Jack defeats them all in the span of a second and even the princess yields before his superior ability.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":44,"unverifiedSceneNumbering":false,"id":20979},{"seriesId":273,"episodeFileId":17744,"seasonNumber":4,"episodeNumber":8,"title":"XLVII: Jack and the Flying Prince and Princess","airDate":"2003-11-19","airDateUtc":"2003-11-20T04:00:00Z","overview":"A prince and princess flee invaders of their planet and go for help, but ended up stranded on Earth and captured by Aku's forces - only Jack can rescue them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":47,"unverifiedSceneNumbering":false,"id":20982},{"seriesId":273,"episodeFileId":17745,"seasonNumber":4,"episodeNumber":9,"title":"XLVIII: Jack vs. Aku","airDate":"2003-11-24","airDateUtc":"2003-11-25T04:00:00Z","overview":"Tiring of the failure of his minions, Aku decides to engage Jack in one-on-one combat to settle matters between them once and for all.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":48,"unverifiedSceneNumbering":false,"id":20983},{"seriesId":273,"episodeFileId":17746,"seasonNumber":4,"episodeNumber":10,"title":"XLIX: The 4 Seasons of Death","airDate":"2004-09-25","airDateUtc":"2004-09-26T03:00:00Z","overview":"Four separate stories following Jack through the four seasons: Summer, Fall, Winter and Spring.\r\nIn Summer, Jack is traveling through the desert and is set upon by strange creatures formed of sandstorms. In Fall, a creepy little scientist attempts to make a poison to kill Jack. In Winter, a warrior race forge a mighty sword with which to slay Jack. In Spring, Jack finds rest in a mysterious garden paradise.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":49,"unverifiedSceneNumbering":false,"id":20984},{"seriesId":273,"episodeFileId":17747,"seasonNumber":4,"episodeNumber":11,"title":"L: Tale of X9","airDate":"2004-09-25","airDateUtc":"2004-09-26T03:00:00Z","overview":"The first three-fourths of the story is a monologue: a Terminator-like killer robot with human emotions tells us the story of his life. He formerly worked for Aku, but stopped because of his emotions and because he felt in love with a little dog.\r\nBut Aku kidnapped his dog and forces him to fight against Jack if he wants to see it again. He is tracking Jack and he is finally destroyed by the samurai His last words are for his puppy and Jack looks sadly at him. Then there is a close-up of his car and the last image of the episode is a photo of the dog.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":50,"unverifiedSceneNumbering":false,"id":20985},{"seriesId":273,"episodeFileId":17748,"seasonNumber":4,"episodeNumber":12,"title":"LI: Young Jack in Africa","airDate":"2004-09-25","airDateUtc":"2004-09-26T03:00:00Z","overview":"This episode takes place during Jack's childhood. After Aku's first attack, Jack is brought to a tribe in Africa where he is admitted into the adult community after a small ritual and the chief of the village teaches him the art of fighting with a stick.\r\nBut an enemy tribe attacks the village in order to get a reward promised by Aku for Jack's capture and everyone is captured except for Jack. So he follows them, mastering the captors' weapon, using qualities of the animals he has observed to do so. After a difficult series of fights, Jack releases all the prisoners and with their help, the enemy tribe is defeated. At the end, Jack leaves the tribe because he is now considered to have learned all he can from them.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":51,"unverifiedSceneNumbering":false,"id":20986},{"seriesId":273,"episodeFileId":17749,"seasonNumber":4,"episodeNumber":13,"title":"LII: Jack and the Baby","airDate":"2004-09-25","airDateUtc":"2004-09-26T03:00:00Z","overview":"While peacefully enjoying a snack of peaches, Jack hears a baby cry and races to find out what's the matter. He rescues Baby from a crew of hungry (baby-eating) monsters.\r\nThe two then set off to find the baby's mother. Jack makes a great temporary parent, finding food, shelter, dealing with diapers. He tells Baby a bedtime story of Momotaro (Peach-boy, an archetypal Japanese folk-tale). When sick, Baby wants peaches; when they return to the peach orchard, the monsters find them again.\r\nAfter the final defeat of the monsters, Baby's mother is found. When she notices a surprising change in her child, Jack explains the baby has achieved sakai, the spirit of the samurai.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":52,"unverifiedSceneNumbering":false,"id":20987},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":1,"title":"Samurai Jack: Season 5 Behind the Scenes","airDate":"2016-07-01","airDateUtc":"2016-07-02T03:00:00Z","overview":"Behind the scenes of Samurai Jack season 5 production","hasFile":false,"monitored":false,"absoluteEpisodeNumber":63,"unverifiedSceneNumbering":false,"id":20923},{"seriesId":273,"episodeFileId":17714,"seasonNumber":5,"episodeNumber":1,"title":"XCII","airDate":"2017-03-11","airDateUtc":"2017-03-12T04:00:00Z","overview":"It's been 50 years since we last saw Samurai Jack and time has not been kind to him. Aku has destroyed every time portal and Jack has stopped aging, a side effect of time travel. It seems he is cursed to just roam the land for all eternity. His past haunts him as well as a cult of assasins dedicated to killing him for Aku's glory.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":53,"unverifiedSceneNumbering":false,"id":20988},{"seriesId":273,"episodeFileId":17715,"seasonNumber":5,"episodeNumber":2,"title":"XCIII","airDate":"2017-03-18","airDateUtc":"2017-03-19T03:00:00Z","overview":"Jack's will to survive is pushed to its absolute limits after a deadly, unseen foe launches a relentless surprise attack.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":54,"unverifiedSceneNumbering":false,"id":20989},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":2,"title":"Genndy Tartakovsky Samurai Jack Q&A","airDate":"2017-03-24","airDateUtc":"2017-03-25T03:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":64,"unverifiedSceneNumbering":false,"id":20924},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":3,"title":"Samurai Jack: Season 5 Behind the Music","airDate":"2017-03-25","airDateUtc":"2017-03-26T03:00:00Z","hasFile":false,"monitored":false,"absoluteEpisodeNumber":65,"unverifiedSceneNumbering":false,"id":20925},{"seriesId":273,"episodeFileId":17716,"seasonNumber":5,"episodeNumber":3,"title":"XCIV","airDate":"2017-03-25","airDateUtc":"2017-03-26T03:00:00Z","overview":"Samurai Jack is gravely injured, but still decides to face one of the deadliest foes he's ever faced, Assassins from the Cult of Aku.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":55,"unverifiedSceneNumbering":false,"id":20990},{"seriesId":273,"episodeFileId":17717,"seasonNumber":5,"episodeNumber":4,"title":"XCV","airDate":"2017-04-08","airDateUtc":"2017-04-09T03:00:00Z","overview":"Jack partners with a deadly assassin in order to escape a gargantuan creature that has swallowed them whole.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":56,"unverifiedSceneNumbering":false,"id":20991},{"seriesId":273,"episodeFileId":17718,"seasonNumber":5,"episodeNumber":5,"title":"XCVI","airDate":"2017-04-15","airDateUtc":"2017-04-16T03:00:00Z","overview":"Samurai Jack fights to save a group of enslaved people from being harvested as the power source for a monstrous Mega-Robot.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":57,"unverifiedSceneNumbering":false,"id":20992},{"seriesId":273,"episodeFileId":17719,"seasonNumber":5,"episodeNumber":6,"title":"XCVII","airDate":"2017-04-22","airDateUtc":"2017-04-23T03:00:00Z","overview":"Ashi's search for Samurai Jack helps her to see his effect on the world after encountering numerous people and places where he has changed things for the better.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":58,"unverifiedSceneNumbering":false,"id":20993},{"seriesId":273,"episodeFileId":17720,"seasonNumber":5,"episodeNumber":7,"title":"XCVIII","airDate":"2017-04-29","airDateUtc":"2017-04-30T03:00:00Z","overview":"Jack and Ashi overcome a series of dangerous physical and spiritual tests in order to recover Jack's sword.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":59,"unverifiedSceneNumbering":false,"id":20994},{"seriesId":273,"episodeFileId":17721,"seasonNumber":5,"episodeNumber":8,"title":"XCIX","airDate":"2017-05-06","airDateUtc":"2017-05-07T03:00:00Z","overview":"The burgeoning relationship between Jack and Ashi takes a turn after they are hunted by one of the galaxy's deadliest creatures.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":60,"unverifiedSceneNumbering":false,"id":20995},{"seriesId":273,"episodeFileId":17722,"seasonNumber":5,"episodeNumber":9,"title":"C","airDate":"2017-05-13","airDateUtc":"2017-05-14T03:00:00Z","overview":"Samurai Jack's worst fear is realized when he faces off against Aku; the demon makes a shocking discovery about Ashi that puts her in grave danger.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":61,"unverifiedSceneNumbering":false,"id":20996},{"seriesId":273,"episodeFileId":17723,"seasonNumber":5,"episodeNumber":10,"title":"CI","airDate":"2017-05-20","airDateUtc":"2017-05-21T03:00:00Z","overview":"The fate of the entire universe hangs in the balance as Samurai Jack finally faces Aku.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":62,"unverifiedSceneNumbering":false,"id":20997},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":14,"title":"The Evolution of Jack!","airDate":"2017-10-17","airDateUtc":"2017-10-18T03:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21532},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":15,"title":"Pitch Movie XCIV","airDate":"2017-12-17","airDateUtc":"2017-12-18T04:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21533},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":16,"title":"Pitch Movie XCVI","airDate":"2017-12-17","airDateUtc":"2017-12-18T04:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21534},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":17,"title":"Pitch Movie XCVIII","airDate":"2017-12-17","airDateUtc":"2017-12-18T04:40:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21535},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":18,"title":"Pitch Movie XCIX","airDate":"2017-12-17","airDateUtc":"2017-12-18T05:00:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21536},{"seriesId":273,"episodeFileId":0,"seasonNumber":0,"episodeNumber":19,"title":"Pitch Movie C","airDate":"2017-12-17","airDateUtc":"2017-12-18T05:20:00Z","hasFile":false,"monitored":false,"unverifiedSceneNumbering":false,"id":21537}],"episodeFile":[{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E01.XCII-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E01.XCII-Bluray-1080p.mkv","size":933326140,"dateAdded":"2021-03-06T07:36:37.359683Z","sceneName":"samurai.jack.s05e01.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5118000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17714},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E02.XCIII-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E02.XCIII-Bluray-1080p.mkv","size":933894573,"dateAdded":"2021-03-06T07:36:45.654625Z","sceneName":"samurai.jack.s05e02.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17715},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E03.XCIV-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E03.XCIV-Bluray-1080p.mkv","size":934026279,"dateAdded":"2021-03-06T07:36:57.110221Z","sceneName":"samurai.jack.s05e03.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5146000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:30","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17716},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E04.XCV-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E04.XCV-Bluray-1080p.mkv","size":933573045,"dateAdded":"2021-03-06T07:37:05.807077Z","sceneName":"samurai.jack.s05e04.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5192000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:19","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17717},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E05.XCVI-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E05.XCVI-Bluray-1080p.mkv","size":934162663,"dateAdded":"2021-03-06T07:37:14.071756Z","sceneName":"samurai.jack.s05e05.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5130000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17718},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E06.XCVII-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E06.XCVII-Bluray-1080p.mkv","size":933701757,"dateAdded":"2021-03-06T07:37:25.038972Z","sceneName":"samurai.jack.s05e06.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5122000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17719},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E07.XCVIII-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E07.XCVIII-Bluray-1080p.mkv","size":932886972,"dateAdded":"2021-03-06T07:37:34.25507Z","sceneName":"samurai.jack.s05e07.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5122000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17720},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E08.XCIX-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E08.XCIX-Bluray-1080p.mkv","size":934494365,"dateAdded":"2021-03-06T07:37:45.714173Z","sceneName":"samurai.jack.s05e08.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5276000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"21:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17721},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E09.C-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E09.C-Bluray-1080p.mkv","size":1169409454,"dateAdded":"2021-03-06T07:37:54.350528Z","sceneName":"samurai.jack.s05e09.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5856000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"24:59","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17722},{"seriesId":273,"seasonNumber":5,"relativePath":"Season 05\/S05E10.CI-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 05\/S05E10.CI-Bluray-1080p.mkv","size":933502547,"dateAdded":"2021-03-06T07:38:06.703291Z","sceneName":"samurai.jack.s05e10.1080p.bluray.x264-regret","releaseGroup":"regret","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5085000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"22:45","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17723},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E01.I - The Beginning-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E01.I - The Beginning-Bluray-1080p.mkv","size":1486083895,"dateAdded":"2021-03-06T07:59:07.740932Z","sceneName":"Samurai.Jack.S01E01.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8059068,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17724},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E02.II - The Samurai Called Jack-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E02.II - The Samurai Called Jack-Bluray-1080p.mkv","size":1281731162,"dateAdded":"2021-03-06T07:59:20.636665Z","sceneName":"Samurai.Jack.S01E02.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7009018,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17725},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E03.III - The First Fight-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E03.III - The First Fight-Bluray-1080p.mkv","size":1353825150,"dateAdded":"2021-03-06T07:59:33.070893Z","sceneName":"Samurai.Jack.S01E03.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7325654,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"24:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17726},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E04.IV - Jack, the Woolies, and the Chritchellites-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E04.IV - Jack, the Woolies, and the Chritchellites-Bluray-1080p.mkv","size":1215253457,"dateAdded":"2021-03-06T07:59:47.568438Z","sceneName":"Samurai.Jack.S01E04.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6832692,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:03","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17727},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E05.V - Jack in Space-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E05.V - Jack in Space-Bluray-1080p.mkv","size":1190629492,"dateAdded":"2021-03-06T08:00:01.267162Z","sceneName":"Samurai.Jack.S01E05.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6720319,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17728},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E06.VI - Jack and the Warrior Woman-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E06.VI - Jack and the Warrior Woman-Bluray-1080p.mkv","size":1084240139,"dateAdded":"2021-03-06T08:00:13.745036Z","sceneName":"Samurai.Jack.S01E06.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6123900,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17729},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E07.VII - Jack and the Three Blind Archers-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E07.VII - Jack and the Three Blind Archers-Bluray-1080p.mkv","size":1542628616,"dateAdded":"2021-03-06T08:00:25.109437Z","sceneName":"Samurai.Jack.S01E07.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8202953,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"23:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17730},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E08.VIII - Jack vs. Mad Jack-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E08.VIII - Jack vs. Mad Jack-Bluray-1080p.mkv","size":1522908601,"dateAdded":"2021-03-06T08:00:40.112589Z","sceneName":"Samurai.Jack.S01E08.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9026813,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:01","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17731},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E09.IX - Jack Under the Sea-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E09.IX - Jack Under the Sea-Bluray-1080p.mkv","size":1028959029,"dateAdded":"2021-03-06T08:00:53.967248Z","sceneName":"Samurai.Jack.S01E09.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5785644,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17732},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E10.X - Jack and the Lava Monster-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E10.X - Jack and the Lava Monster-Bluray-1080p.mkv","size":972262175,"dateAdded":"2021-03-06T08:01:04.787953Z","sceneName":"Samurai.Jack.S01E10.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5621092,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17733},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E11.XI - Jack and the Scotsman-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E11.XI - Jack and the Scotsman-Bluray-1080p.mkv","size":1201161546,"dateAdded":"2021-03-06T08:01:15.15168Z","sceneName":"Samurai.Jack.S01E11.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6870654,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17734},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E12.XII - Jack and the Gangsters-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E12.XII - Jack and the Gangsters-Bluray-1080p.mkv","size":1142707577,"dateAdded":"2021-03-06T08:01:27.37578Z","sceneName":"Samurai.Jack.S01E12.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6534254,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17735},{"seriesId":273,"seasonNumber":1,"relativePath":"Season 01\/S01E13.XIII - Aku's Fairy Tales-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 01\/S01E13.XIII - Aku's Fairy Tales-Bluray-1080p.mkv","size":1107817354,"dateAdded":"2021-03-06T08:01:39.604192Z","sceneName":"Samurai.Jack.S01E13.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6308488,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17736},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E01.XL - Samurai vs. Ninja-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E01.XL - Samurai vs. Ninja-Bluray-1080p.mkv","size":1072612249,"dateAdded":"2021-03-06T08:22:08.100868Z","sceneName":"Samurai.Jack.S04E01.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6162626,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17737},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E02.XLI - Robo-Samurai vs. Mondo Bot-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E02.XLI - Robo-Samurai vs. Mondo Bot-Bluray-1080p.mkv","size":1259427759,"dateAdded":"2021-03-06T08:22:18.862711Z","sceneName":"Samurai.Jack.S04E02.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7215466,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17738},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E03.XLII - Samurai vs. Samurai-Bluray-1080p Proper.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E03.XLII - Samurai vs. Samurai-Bluray-1080p Proper.mkv","size":1363286871,"dateAdded":"2021-03-06T08:22:30.714237Z","sceneName":"Samurai.Jack.S04E03.REPACK.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":2,"real":0,"isRepack":true}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7996472,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17739},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E04.XLIII - The Aku Infection-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E04.XLIII - The Aku Infection-Bluray-1080p.mkv","size":1181378240,"dateAdded":"2021-03-06T08:22:49.774201Z","sceneName":"Samurai.Jack.S04E04.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6773314,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17740},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E05.XLIV - The Princess and the Bounty Hunters-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E05.XLIV - The Princess and the Bounty Hunters-Bluray-1080p.mkv","size":976334972,"dateAdded":"2021-03-06T08:23:02.560552Z","sceneName":"Samurai.Jack.S04E05.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5605799,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17741},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E06.XLV - The Scotsman Saves Jack (1)-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E06.XLV - The Scotsman Saves Jack (1)-Bluray-1080p.mkv","size":1134205789,"dateAdded":"2021-03-06T08:23:16.143193Z","sceneName":"Samurai.Jack.S04E06.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6507855,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17742},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E07.XLVI - The Scotsman Saves Jack (2)-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E07.XLVI - The Scotsman Saves Jack (2)-Bluray-1080p.mkv","size":1034459361,"dateAdded":"2021-03-06T08:23:32.335093Z","sceneName":"Samurai.Jack.S04E07.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6131324,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17743},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E08.XLVII - Jack and the Flying Prince and Princess-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E08.XLVII - Jack and the Flying Prince and Princess-Bluray-1080p.mkv","size":1185826232,"dateAdded":"2021-03-06T08:23:45.499873Z","sceneName":"Samurai.Jack.S04E08.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6800195,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17744},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E09.XLVIII - Jack vs. Aku-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E09.XLVIII - Jack vs. Aku-Bluray-1080p.mkv","size":1053467805,"dateAdded":"2021-03-06T08:23:59.438783Z","sceneName":"Samurai.Jack.S04E09.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5979115,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17745},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E10.XLIX - The 4 Seasons of Death-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E10.XLIX - The 4 Seasons of Death-Bluray-1080p.mkv","size":1125635536,"dateAdded":"2021-03-06T08:24:13.968952Z","sceneName":"Samurai.Jack.S04E10.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6377551,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17746},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E11.L - Tale of X9-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E11.L - Tale of X9-Bluray-1080p.mkv","size":1570684908,"dateAdded":"2021-03-06T08:24:27.791117Z","sceneName":"Samurai.Jack.S04E11.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9481963,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17747},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E12.LI - Young Jack in Africa-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E12.LI - Young Jack in Africa-Bluray-1080p.mkv","size":1083092329,"dateAdded":"2021-03-06T08:24:47.122857Z","sceneName":"Samurai.Jack.S04E12.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6178069,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:39","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17748},{"seriesId":273,"seasonNumber":4,"relativePath":"Season 04\/S04E13.LII - Jack and the Baby-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 04\/S04E13.LII - Jack and the Baby-Bluray-1080p.mkv","size":1337787459,"dateAdded":"2021-03-06T08:25:01.940822Z","sceneName":"Samurai.Jack.S04E13.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7673012,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17749},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E01.XXVII - Chicken Jack-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E01.XXVII - Chicken Jack-Bluray-1080p.mkv","size":1072762490,"dateAdded":"2021-03-06T09:04:08.572196Z","sceneName":"Samurai.Jack.S03E01.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6152300,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17750},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E02.XXVIII - Jack and the Rave-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E02.XXVIII - Jack and the Rave-Bluray-1080p.mkv","size":969788130,"dateAdded":"2021-03-06T09:04:17.295511Z","sceneName":"Samurai.Jack.S03E02.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5480842,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17751},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E03.XXIX - The Good, the Bad, and the Beautiful-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E03.XXIX - The Good, the Bad, and the Beautiful-Bluray-1080p.mkv","size":1286256978,"dateAdded":"2021-03-06T09:04:29.423523Z","sceneName":"Samurai.Jack.S03E03.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7547496,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17752},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E04.XXX - Jack and the Zombies-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E04.XXX - Jack and the Zombies-Bluray-1080p.mkv","size":1237920687,"dateAdded":"2021-03-06T09:04:44.015223Z","sceneName":"Samurai.Jack.S03E04.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7227086,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17753},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E05.XXXI - Jack in Egypt-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E05.XXXI - Jack in Egypt-Bluray-1080p.mkv","size":1101566493,"dateAdded":"2021-03-06T09:04:59.134737Z","sceneName":"Samurai.Jack.S03E05.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6282769,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17754},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E06.XXXII - Jack and the Travelling Creatures-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E06.XXXII - Jack and the Travelling Creatures-Bluray-1080p.mkv","size":1312151557,"dateAdded":"2021-03-06T09:05:12.661459Z","sceneName":"Samurai.Jack.S03E06.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7468029,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17755},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E07.XXXIII - Jack and the Creature-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E07.XXXIII - Jack and the Creature-Bluray-1080p.mkv","size":1269480607,"dateAdded":"2021-03-06T09:05:29.423836Z","sceneName":"Samurai.Jack.S03E07.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7309308,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17756},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E08.XXXIV - Jack and the Swamp Monster-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E08.XXXIV - Jack and the Swamp Monster-Bluray-1080p.mkv","size":1158409714,"dateAdded":"2021-03-06T09:05:43.769913Z","sceneName":"Samurai.Jack.S03E08.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6681857,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17757},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E09.XXXV - Jack and the Haunted House-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E09.XXXV - Jack and the Haunted House-Bluray-1080p.mkv","size":1262324814,"dateAdded":"2021-03-06T09:05:55.484607Z","sceneName":"Samurai.Jack.S03E09.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7491300,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"21:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17758},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E10.XXXVI - Jack, the Monks, and the Ancient Master's Son-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E10.XXXVI - Jack, the Monks, and the Ancient Master's Son-Bluray-1080p.mkv","size":1172380813,"dateAdded":"2021-03-06T09:06:09.039293Z","sceneName":"Samurai.Jack.S03E10.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6715813,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:37","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17759},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E11.XXXVII - The Birth of Evil (1)-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E11.XXXVII - The Birth of Evil (1)-Bluray-1080p.mkv","size":1053117088,"dateAdded":"2021-03-06T09:06:25.875061Z","sceneName":"Samurai.Jack.S03E11.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5929237,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17760},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E12.XXXVIII - The Birth of Evil (2)-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E12.XXXVIII - The Birth of Evil (2)-Bluray-1080p.mkv","size":1380232877,"dateAdded":"2021-03-06T09:06:38.55504Z","sceneName":"Samurai.Jack.S03E12.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7814884,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17761},{"seriesId":273,"seasonNumber":3,"relativePath":"Season 03\/S03E13.XXXIX - Jack and the Labyrinth-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 03\/S03E13.XXXIX - Jack and the Labyrinth-Bluray-1080p.mkv","size":953453392,"dateAdded":"2021-03-06T09:06:55.023623Z","sceneName":"Samurai.Jack.S03E13.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5562983,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:04","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17762},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E01.XIV - Jack Learns to Jump Good-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E01.XIV - Jack Learns to Jump Good-Bluray-1080p.mkv","size":1316528790,"dateAdded":"2021-03-06T09:34:09.300641Z","sceneName":"Samurai.Jack.S02E01.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7579007,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17763},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E02.XV - Jack Tales-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E02.XV - Jack Tales-Bluray-1080p.mkv","size":1173433903,"dateAdded":"2021-03-06T09:34:18.44842Z","sceneName":"Samurai.Jack.S02E02.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6696796,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17764},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E03.XVI - Jack and the Smackback-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E03.XVI - Jack and the Smackback-Bluray-1080p.mkv","size":1334528378,"dateAdded":"2021-03-06T09:34:28.911517Z","sceneName":"Samurai.Jack.S02E03.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7646399,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17765},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E04.XVII - Jack and the Scotsman (II)-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E04.XVII - Jack and the Scotsman (II)-Bluray-1080p.mkv","size":1300378975,"dateAdded":"2021-03-06T09:34:44.495058Z","sceneName":"Samurai.Jack.S02E04.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7384890,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17766},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E05.XVIII - Jack and the Ultra-Robots-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E05.XVIII - Jack and the Ultra-Robots-Bluray-1080p.mkv","size":1407455820,"dateAdded":"2021-03-06T09:35:06.322246Z","sceneName":"Samurai.Jack.S02E05.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8062716,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17767},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E06.XIX - Jack Remembers the Past-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E06.XIX - Jack Remembers the Past-Bluray-1080p.mkv","size":1208848260,"dateAdded":"2021-03-06T09:35:24.724548Z","sceneName":"Samurai.Jack.S02E06.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7054851,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17768},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E07.XX - Jack and the Monks-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E07.XX - Jack and the Monks-Bluray-1080p.mkv","size":1449417614,"dateAdded":"2021-03-06T09:35:39.504072Z","sceneName":"Samurai.Jack.S02E07.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8413412,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17769},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E08.XXI - Jack and the Farting Dragon-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E08.XXI - Jack and the Farting Dragon-Bluray-1080p.mkv","size":1625944625,"dateAdded":"2021-03-06T09:35:55.919362Z","sceneName":"Samurai.Jack.S02E08.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9379836,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17770},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E09.XXII - Jack and the Hunters-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E09.XXII - Jack and the Hunters-Bluray-1080p.mkv","size":1097448280,"dateAdded":"2021-03-06T09:36:15.694968Z","sceneName":"Samurai.Jack.S02E09.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6237838,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:45","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17771},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E10.XXIII - Jack vs. Demongo, the Soul Collector-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E10.XXIII - Jack vs. Demongo, the Soul Collector-Bluray-1080p.mkv","size":1386065472,"dateAdded":"2021-03-06T09:36:29.577817Z","sceneName":"Samurai.Jack.S02E10.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7991793,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17772},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E11.XXIV - Jack Is Naked-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E11.XXIV - Jack Is Naked-Bluray-1080p.mkv","size":1136292793,"dateAdded":"2021-03-06T09:36:48.816564Z","sceneName":"Samurai.Jack.S02E11.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6563524,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17773},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E12.XXV - Jack and the Spartans-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E12.XXV - Jack and the Spartans-Bluray-1080p.mkv","size":744410105,"dateAdded":"2021-03-06T09:37:01.103175Z","sceneName":"Samurai.Jack.S02E12.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3953899,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17774},{"seriesId":273,"seasonNumber":2,"relativePath":"Season 02\/S02E13.XXVI - Jack's Sandals-Bluray-1080p.mkv","path":"\/tv\/Samurai Jack\/Season 02\/S02E13.XXVI - Jack's Sandals-Bluray-1080p.mkv","size":1220978070,"dateAdded":"2021-03-06T09:37:12.817273Z","sceneName":"Samurai.Jack.S02E13.1080p.BluRay.DD2.0.x264-pcroland","releaseGroup":"pcroland","language":{"id":1,"name":"English"},"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":192000,"audioChannels":2.0,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7064661,"videoCodec":"x264","videoFps":23.976,"resolution":"1440x1080","runTime":"22:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languageCutoffNotMet":false,"id":17775}],"queue":[]},"287":{"series":{"title":"Biohackers","alternateTitles":[],"sortTitle":"biohackers","status":"continuing","ended":false,"overview":"Mia goes to medical school to get close to a professor she suspects had a hand in her past family tragedy and gets tangled in the world of biohacking.","previousAiring":"2021-07-09T13:00:00Z","network":"Netflix","airTime":"09:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/254\/banner.jpg?lastWrite=637336871048760720","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/381016\/banners\/5f3f2cb3cfdc8.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/254\/poster.jpg?lastWrite=637613309257848140","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/381016\/posters\/60b650cf73046.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/254\/fanart.jpg?lastWrite=637336871051680650","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/381016\/backgrounds\/5f3ed6f4781f2.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-08-20T13:00:00Z","episodeFileCount":6,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":17351438129,"percentOfEpisodes":100.0}},{"seasonNumber":2,"monitored":true,"statistics":{"previousAiring":"2021-07-09T13:00:00Z","episodeFileCount":3,"episodeCount":6,"totalEpisodeCount":6,"sizeOnDisk":1606405269,"percentOfEpisodes":50.0}}],"year":2020,"path":"\/tv\/Biohackers","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":45,"tvdbId":381016,"tvRageId":0,"tvMazeId":41027,"firstAired":"2020-08-20T00:00:00Z","seriesType":"standard","cleanTitle":"biohackers","imdbId":"tt9849210","titleSlug":"biohackers","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2020-08-22T09:58:24.286483Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":2,"episodeFileCount":9,"episodeCount":12,"totalEpisodeCount":12,"sizeOnDisk":18957843398,"percentOfEpisodes":75.0},"id":254},"episodes":[{"seriesId":254,"episodeFileId":16038,"seasonNumber":1,"episodeNumber":1,"title":"Arrival","airDate":"2020-08-20","airDateUtc":"2020-08-20T13:00:00Z","overview":"After meeting her unconventional roommates, Mia attends her first class with Dr. Lorenz and cozies up to the professor's research assistant, Jasper.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":19488},{"seriesId":254,"episodeFileId":16039,"seasonNumber":1,"episodeNumber":2,"title":"Secrets","airDate":"2020-08-20","airDateUtc":"2020-08-20T13:00:00Z","overview":"Mia tries to wheedle her way into a job at Dr. Lorenz's biomedical institute but runs into a problem when she's asked to participate in a genetic study.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":19489},{"seriesId":254,"episodeFileId":16040,"seasonNumber":1,"episodeNumber":3,"title":"Suspicion","airDate":"2020-08-20","airDateUtc":"2020-08-20T13:00:00Z","overview":"Mia's night out with Jasper leads to Dr. Lorenz's private residence, where a medical emergency complicates her plans to access the professor's computer.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":19490},{"seriesId":254,"episodeFileId":16041,"seasonNumber":1,"episodeNumber":4,"title":"Certainty","airDate":"2020-08-20","airDateUtc":"2020-08-20T13:00:00Z","overview":"Dr. Lorenz's growing suspicions cause Jasper to question his relationship with Mia, who finds a new confidante in her desperate search for answers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":19491},{"seriesId":254,"episodeFileId":16042,"seasonNumber":1,"episodeNumber":5,"title":"Betrayal","airDate":"2020-08-20","airDateUtc":"2020-08-20T13:00:00Z","overview":"As Mia makes a last-ditch effort to obtain proof about Dr. Lorenz's experiments, Jasper begins to unravel over his feelings of betrayal.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":19492},{"seriesId":254,"episodeFileId":16043,"seasonNumber":1,"episodeNumber":6,"title":"Fate","airDate":"2020-08-20","airDateUtc":"2020-08-20T13:00:00Z","overview":"On the run and with time running out, Mia turns to her friends for help in a life-and-death race to save the train's passengers.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":19493},{"seriesId":254,"episodeFileId":0,"seasonNumber":2,"episodeNumber":1,"title":"Awake","airDate":"2021-07-09","airDateUtc":"2021-07-09T13:00:00Z","overview":"After waking up in class feeling disoriented, Mia grows increasingly distressed when she discovers nothing in her life is how she remembers it.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21582},{"seriesId":254,"episodeFileId":0,"seasonNumber":2,"episodeNumber":2,"title":"Enemies","airDate":"2021-07-09","airDateUtc":"2021-07-09T13:00:00Z","overview":"Struggling with mysterious symptoms, Mia tries to track down Lorenz, certain that she will be able to provide answers about what's happening.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21626},{"seriesId":254,"episodeFileId":0,"seasonNumber":2,"episodeNumber":3,"title":"Partners","airDate":"2021-07-09","airDateUtc":"2021-07-09T13:00:00Z","overview":"Mia strikes an uneasy bargain that could help get to the bottom of her missing memories. But upholding her side of the deal means flirting with danger.","hasFile":false,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21627},{"seriesId":254,"episodeFileId":18624,"seasonNumber":2,"episodeNumber":4,"title":"Forget","airDate":"2021-07-09","airDateUtc":"2021-07-09T13:00:00Z","overview":"As Mia's feelings toward Jasper begin to change, her friends aid her desperate search for information by engaging in some high-tech espionage.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21628},{"seriesId":254,"episodeFileId":18622,"seasonNumber":2,"episodeNumber":5,"title":"Find","airDate":"2021-07-09","airDateUtc":"2021-07-09T13:00:00Z","overview":"With time running out, Mia sets a risky plan in motion to uncover the secret lab and find a solution to her rapidly deteriorating neurological state.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":11,"unverifiedSceneNumbering":false,"id":21629},{"seriesId":254,"episodeFileId":18623,"seasonNumber":2,"episodeNumber":6,"title":"Remember","airDate":"2021-07-09","airDateUtc":"2021-07-09T13:00:00Z","overview":"Loyalties are tested after Mia locates the red notebook, with lines drawn between the friends amid a last-ditch effort to save her life.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":12,"unverifiedSceneNumbering":false,"id":21630}],"episodeFile":[{"seriesId":254,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Arrival-WEBRip-1080p.mkv","path":"\/tv\/Biohackers\/Season 01\/S01E01.Arrival-WEBRip-1080p.mkv","size":3074898544,"dateAdded":"2020-11-03T15:49:11.990014Z","sceneName":"Biohackers.S01E01.1080p.NF.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":4,"name":"German"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8744274,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"43:40","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":16038},{"seriesId":254,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Secrets-WEBRip-1080p.mkv","path":"\/tv\/Biohackers\/Season 01\/S01E02.Secrets-WEBRip-1080p.mkv","size":2349030882,"dateAdded":"2020-11-03T15:52:55.797184Z","sceneName":"Biohackers.S01E02.1080p.NF.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":4,"name":"German"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7139732,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"40:14","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":16039},{"seriesId":254,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Suspicion-WEBRip-1080p.mkv","path":"\/tv\/Biohackers\/Season 01\/S01E03.Suspicion-WEBRip-1080p.mkv","size":3060364346,"dateAdded":"2020-11-03T15:55:06.218934Z","sceneName":"Biohackers.S01E03.1080p.NF.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":4,"name":"German"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8168820,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"46:18","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":16040},{"seriesId":254,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Certainty-WEBRip-1080p.mkv","path":"\/tv\/Biohackers\/Season 01\/S01E04.Certainty-WEBRip-1080p.mkv","size":2937807876,"dateAdded":"2020-11-03T15:57:22.890799Z","sceneName":"Biohackers.S01E04.1080p.NF.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":4,"name":"German"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7889181,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"45:54","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":16041},{"seriesId":254,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Betrayal-WEBRip-1080p.mkv","path":"\/tv\/Biohackers\/Season 01\/S01E05.Betrayal-WEBRip-1080p.mkv","size":2689409115,"dateAdded":"2020-11-03T15:58:14.138406Z","sceneName":"Biohackers.S01E05.1080p.NF.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":4,"name":"German"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8460670,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"40:14","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":16042},{"seriesId":254,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Fate-WEBRip-1080p.mkv","path":"\/tv\/Biohackers\/Season 01\/S01E06.Fate-WEBRip-1080p.mkv","size":3239927366,"dateAdded":"2020-11-03T16:00:32.383637Z","sceneName":"Biohackers.S01E06.1080p.NF.WEBRip.DDP5.1.x264-NTb","releaseGroup":"NTb","language":{"id":4,"name":"German"},"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webRip","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9027361,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x960","runTime":"44:40","scanType":"Progressive","subtitles":"German \/ English \/ English \/ Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian "},"qualityCutoffNotMet":true,"languageCutoffNotMet":true,"id":16043},{"seriesId":254,"seasonNumber":2,"relativePath":"Season 02\/S02E05.Find-HDTV-1080p.mkv","path":"\/tv\/Biohackers\/Season 02\/S02E05.Find-HDTV-1080p.mkv","size":423249881,"dateAdded":"2021-07-09T20:56:43.756007Z","sceneName":"[zooqle.com] Biohackers S02E05 1080p HEVC x265-MeGusta [eztv]","releaseGroup":"eztv","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":589846,"videoCodec":"x265","videoFps":0.0,"resolution":"1920x1080","runTime":"44:58","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18622},{"seriesId":254,"seasonNumber":2,"relativePath":"Season 02\/S02E06.Remember-WEBDL-720p.mkv","path":"\/tv\/Biohackers\/Season 02\/S02E06.Remember-WEBDL-720p.mkv","size":699852319,"dateAdded":"2021-07-09T20:58:25.793246Z","sceneName":"Biohackers.S02E06.720p.WEB.H264-GGWP[ettv]","releaseGroup":"GGWP","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1330000,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"45:56","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18623},{"seriesId":254,"seasonNumber":2,"relativePath":"Season 02\/S02E04.Forget-WEBDL-720p.mkv","path":"\/tv\/Biohackers\/Season 02\/S02E04.Forget-WEBDL-720p.mkv","size":483303069,"dateAdded":"2021-07-09T21:00:10.67816Z","sceneName":"Biohackers.S02E04.720p.WEB.H264-GLHF[ettv]","releaseGroup":"GLHF","language":{"id":1,"name":"English"},"quality":{"quality":{"id":5,"name":"WEBDL-720p","source":"web","resolution":720},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1125348,"videoCodec":"x264","videoFps":24.0,"resolution":"1280x720","runTime":"35:46","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Danish \/ Dutch \/ Spanish \/ Finnish \/ French \/ German \/ German \/ Greek \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ "},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18624}],"queue":[]},"288":{"series":{"title":"Raised by Wolves (2020)","alternateTitles":[{"title":"A farkas gyermekei","seasonNumber":-1}],"sortTitle":"raised by wolves 2020","status":"continuing","ended":false,"overview":"After Earth is torn apart by religious differences and the human race teeters on the edge of extinction, an atheistic android architect sends two of his creations, Mother and Father, to start a peaceful, godless colony on the planet Kepler-22b. They attempt to raise human children in this mysterious virgin land, a treacherous and difficult task that\u2019s jeopardized by the arrival of the Mithraic, a deeply devout religious order of surviving humans.","previousAiring":"2020-10-01T07:00:00Z","network":"HBO Max","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/288\/banner.jpg?lastWrite=637606584419612290","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368643\/banners\/5f52b61a1336c.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/288\/poster.jpg?lastWrite=637606584420972270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368643\/posters\/5f2e8ce18c6bd.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/288\/fanart.jpg?lastWrite=637606584424532230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/368643\/backgrounds\/5f50b9b176953.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-10-01T07:00:00Z","episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":15853885561,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Raised by Wolves (2020)","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":53,"tvdbId":368643,"tvRageId":0,"tvMazeId":39013,"firstAired":"2020-09-03T00:00:00Z","seriesType":"standard","cleanTitle":"raisedbywolves2020","imdbId":"tt9170108","titleSlug":"raised-by-wolves-2020","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Drama","Fantasy","Science Fiction"],"tags":[],"added":"2021-06-30T14:00:41.2001Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":10,"episodeCount":10,"totalEpisodeCount":10,"sizeOnDisk":15853885561,"percentOfEpisodes":100.0},"id":288},"episodes":[{"seriesId":288,"episodeFileId":18583,"seasonNumber":1,"episodeNumber":1,"title":"Raised by Wolves","airDate":"2020-09-03","airDateUtc":"2020-09-03T07:00:00Z","overview":"After Earth is rendered uninhabitable, Androids Mother and Father start a new settlement and family with human embryos on the planet Kepler-22b. Twelve years later, only one child, Campion, remains, and the arrival of an Ark of surviving humans called the Mithraic presents a threat that Mother has no choice but to confront.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21610},{"seriesId":288,"episodeFileId":18584,"seasonNumber":1,"episodeNumber":2,"title":"Pentagram","airDate":"2020-09-03","airDateUtc":"2020-09-03T07:53:00Z","overview":"After a confrontation with Marcus, Mother discovers and takes five Mithraic children back to her settlement. While Mother, Father and Campion, adjust to living with a new group of Earth-born children, Marcus struggles to survive alone on Kepler-22b.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21611},{"seriesId":288,"episodeFileId":18585,"seasonNumber":1,"episodeNumber":3,"title":"Virtual Faith","airDate":"2020-09-03","airDateUtc":"2020-09-03T08:46:00Z","overview":"After the Mithraic kids fall sick, Campion believes Mother is poisoning them and plans an escape. As Mother and Father attempt to prove otherwise, Marcus and Sue work to convince the other surviving Mithraic to mount a rescue of the children, desperate to get their son Paul back.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21612},{"seriesId":288,"episodeFileId":18586,"seasonNumber":1,"episodeNumber":4,"title":"Nature's Course","airDate":"2020-09-10","airDateUtc":"2020-09-10T07:00:00Z","overview":"Determined to prove his utility to their family unit, Father tries to teach the children how to hunt some of Kepler-22b\u2019s mysterious creatures for food. Meanwhile, after the Mithraic make a stunning discovery that potentially fulfills one of their prophecies, a debate about how to proceed ignites a conflict between Marcus and Ambrose, their leader.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21613},{"seriesId":288,"episodeFileId":18587,"seasonNumber":1,"episodeNumber":5,"title":"Infected Memory","airDate":"2020-09-10","airDateUtc":"2020-09-10T07:53:00Z","overview":"Under Marcus\u2019 command, the Mithraic set out on a deceptive path to rescue the children, and along the way, encounter a fellow survivor from the Ark. Back at the settlement, Campion and Paul bond during a hunting expedition with Father, Mother attempts to learn more about her origins, and Tempest\u2019s trauma continues to haunt her.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21614},{"seriesId":288,"episodeFileId":18588,"seasonNumber":1,"episodeNumber":6,"title":"Lost Paradise","airDate":"2020-09-17","airDateUtc":"2020-09-17T07:00:00Z","overview":"After reconnecting with her creator, Mother finds herself distracted by intense feelings she didn\u2019t know she was capable of, leaving the settlement vulnerable to Marcus, Sue, and the Mithraic\u2019s swift approach. As Campion continues to question his family\u2019s principles, the other children\u2019s loyalties are tested.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21615},{"seriesId":288,"episodeFileId":18589,"seasonNumber":1,"episodeNumber":7,"title":"Faces","airDate":"2020-09-17","airDateUtc":"2020-09-17T07:53:00Z","overview":"Struggling to maintain his clout as leader of the Mithraic, Marcus begins to make decisions that disturb his family, while Mother\u2019s ability to see him for who he truly is threatens his power and puts her in a precarious position. With Tempest on his side, a strong-willed Campion finds himself at dangerous odds with the Mithraic.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21616},{"seriesId":288,"episodeFileId":18590,"seasonNumber":1,"episodeNumber":8,"title":"Mass","airDate":"2020-09-24","airDateUtc":"2020-09-24T07:00:00Z","overview":"As Marcus continues to embrace his Mithraic devotion, Sue and Paul\u2019s distrust in him deepens. Meanwhile, Mother attempts to alleviate perceived malfunctions, Hunter works on a secret project with Father, and Campion and Paul devise an underground plan of their own.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21617},{"seriesId":288,"episodeFileId":18591,"seasonNumber":1,"episodeNumber":9,"title":"Umbilical","airDate":"2020-09-24","airDateUtc":"2020-09-24T07:53:00Z","overview":"Determined to keep the children safe, Sue grapples with whether or not she can trust Mother. Meanwhile, Tempest confronts her trauma, Hunter continues his attempts to restore Father, and when a new threat arises, the Mithraic begin to question an increasingly erratic Marcus.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":9,"unverifiedSceneNumbering":false,"id":21618},{"seriesId":288,"episodeFileId":18592,"seasonNumber":1,"episodeNumber":10,"title":"The Beginning","airDate":"2020-10-01","airDateUtc":"2020-10-01T07:00:00Z","overview":"Paul begins displaying troubling behavior not unlike that of Marcus, leading to a shocking discovery. Father struggles with human-like emotions. Mother and Father discover a startling secret about the planet they\u2019re on, just as a new threat arrives on Kepler-22b.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":10,"unverifiedSceneNumbering":false,"id":21619}],"episodeFile":[{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E01.Raised by Wolves-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E01.Raised by Wolves-WEBDL-1080p.mkv","size":2114547573,"dateAdded":"2021-06-30T14:25:08.373115Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4921158,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"53:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18583},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Pentagram-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E02.Pentagram-WEBDL-1080p.mkv","size":1331921117,"dateAdded":"2021-06-30T14:27:09.226081Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3937465,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"41:04","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18584},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E03.Virtual Faith-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E03.Virtual Faith-WEBDL-1080p.mkv","size":1678710915,"dateAdded":"2021-06-30T14:28:57.744038Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4208068,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"48:43","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18585},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E04.Nature's Course-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E04.Nature's Course-WEBDL-1080p.mkv","size":1454795344,"dateAdded":"2021-06-30T14:30:45.961079Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3831447,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"45:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18586},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Infected Memory-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E05.Infected Memory-WEBDL-1080p.mkv","size":1766740013,"dateAdded":"2021-06-30T14:32:37.315294Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3913073,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"54:47","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18587},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Lost Paradise-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E06.Lost Paradise-WEBDL-1080p.mkv","size":1978337355,"dateAdded":"2021-06-30T14:34:27.722364Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4399165,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"55:07","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18588},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E07.Faces-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E07.Faces-WEBDL-1080p.mkv","size":1511795846,"dateAdded":"2021-06-30T14:36:19.278934Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3736214,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"48:54","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18589},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E08.Mass-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E08.Mass-WEBDL-1080p.mkv","size":1262184751,"dateAdded":"2021-06-30T14:38:09.821775Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3030786,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"49:15","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18590},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E09.Umbilical-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E09.Umbilical-WEBDL-1080p.mkv","size":1365482517,"dateAdded":"2021-06-30T14:40:00.111791Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3700645,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"44:33","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18591},{"seriesId":288,"seasonNumber":1,"relativePath":"Season 01\/S01E10.The Beginning-WEBDL-1080p.mkv","path":"\/tv\/Raised by Wolves (2020)\/Season 01\/S01E10.The Beginning-WEBDL-1080p.mkv","size":1389370130,"dateAdded":"2021-06-30T14:41:52.363743Z","releaseGroup":"QxR","language":{"id":1,"name":"English"},"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"web","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":3282194,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"50:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18592}],"queue":[]},"289":{"series":{"title":"Blood of Zeus","alternateTitles":[],"sortTitle":"blood zeus","status":"continuing","ended":false,"overview":"A commoner living in ancient Greece, Heron discovers his true heritage as a son of Zeus, and his purpose: to save the world from a demonic army.","previousAiring":"2020-10-27T07:00:00Z","network":"Netflix","airTime":"03:00","images":[{"coverType":"banner","url":"\/sonarr\/MediaCover\/287\/banner.jpg?lastWrite=637569686092096270","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361140\/banners\/5f9a6d659c2c3.jpg"},{"coverType":"poster","url":"\/sonarr\/MediaCover\/287\/poster.jpg?lastWrite=637569686093296260","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361140\/posters\/5f9b1a73efeed.jpg"},{"coverType":"fanart","url":"\/sonarr\/MediaCover\/287\/fanart.jpg?lastWrite=637569686095056230","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/series\/361140\/backgrounds\/5fcbf7b09c424.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-10-27T07:00:00Z","episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":3283502764,"percentOfEpisodes":100.0}}],"year":2020,"path":"\/tv\/Blood of Zeus","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":32,"tvdbId":361140,"tvRageId":0,"tvMazeId":50777,"firstAired":"2020-10-27T00:00:00Z","seriesType":"standard","cleanTitle":"bloodzeus","imdbId":"tt10009170","titleSlug":"blood-of-zeus","rootFolderPath":"\/tv\/","certification":"TV-MA","genres":["Action","Adventure","Animation","Fantasy"],"tags":[],"added":"2021-05-18T21:03:28.432556Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":8,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":3283502764,"percentOfEpisodes":100.0},"id":287},"episodes":[{"seriesId":287,"episodeFileId":18243,"seasonNumber":1,"episodeNumber":1,"title":"A Call to Arms","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"Demons attack the polis near the home of the outcast Heron, who finds allies in the wise elder Elias and the fierce Amazonian warrior Alexia.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":1,"unverifiedSceneNumbering":false,"id":21539},{"seriesId":287,"episodeFileId":18244,"seasonNumber":1,"episodeNumber":2,"title":"Past is Prologue","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"After he completes a quest for adamantine ore, Heron learns the truth about his birth from his mother Electra, as well as the identity of his father.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":2,"unverifiedSceneNumbering":false,"id":21540},{"seriesId":287,"episodeFileId":18245,"seasonNumber":1,"episodeNumber":3,"title":"The Raid","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"The goddess Hera discovers the existence of Zeus's bastard son Heron and vows revenge. The polis falls to the forces of the malevolent Seraphim.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":3,"unverifiedSceneNumbering":false,"id":21541},{"seriesId":287,"episodeFileId":18246,"seasonNumber":1,"episodeNumber":4,"title":"A Monster is Born","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"Heron is taken captive by the army of Seraphim, who chases Alexia but instead encounters Hera. The goddess informs the demon leader of his true past.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":4,"unverifiedSceneNumbering":false,"id":21542},{"seriesId":287,"episodeFileId":18247,"seasonNumber":1,"episodeNumber":5,"title":"Escape or Die","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"Hera directs Seraphim to the powerful sword Zeus once forged for Heron, who is enslaved aboard a galley. Alexia seeks counsel from her mentor, Chiron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":5,"unverifiedSceneNumbering":false,"id":21543},{"seriesId":287,"episodeFileId":18248,"seasonNumber":1,"episodeNumber":6,"title":"Back to Olympus","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"Zeus brings Heron to Olympus for training, angering the other gods. Alexia embarks on a mission to Melidoni with Heron's companions, Evios and Kofi.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":6,"unverifiedSceneNumbering":false,"id":21544},{"seriesId":287,"episodeFileId":18249,"seasonNumber":1,"episodeNumber":7,"title":"The Fields of the Dead","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"Seraphim's loyalties are tested when Zeus reveals Hera's deceptions. Alexia's company crosses the Fields of the Dead. War breaks out between the gods.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":7,"unverifiedSceneNumbering":false,"id":21545},{"seriesId":287,"episodeFileId":18250,"seasonNumber":1,"episodeNumber":8,"title":"War for Olympus","airDate":"2020-10-27","airDateUtc":"2020-10-27T07:00:00Z","overview":"Hera resurrects the giants of the sea and assails Olympus, leading to an earth-shattering battle for the ages and the rise of a new demigod: Heron.","hasFile":true,"monitored":true,"absoluteEpisodeNumber":8,"unverifiedSceneNumbering":false,"id":21546}],"episodeFile":[{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E01.A Call to Arms-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E01.A Call to Arms-HDTV-1080p.mkv","size":453546889,"dateAdded":"2021-05-24T01:35:21.489245Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1929968,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"27:38","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18243},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E02.Past is Prologue-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E02.Past is Prologue-HDTV-1080p.mkv","size":375210708,"dateAdded":"2021-05-24T01:35:21.550968Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1350413,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"31:06","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18244},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E03.The Raid-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E03.The Raid-HDTV-1080p.mkv","size":356485218,"dateAdded":"2021-05-24T01:35:21.610539Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1499889,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"27:02","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18245},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E04.A Monster is Born-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E04.A Monster is Born-HDTV-1080p.mkv","size":377542096,"dateAdded":"2021-05-24T01:35:21.669495Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1336499,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"31:34","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18246},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E05.Escape or Die-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E05.Escape or Die-HDTV-1080p.mkv","size":312906142,"dateAdded":"2021-05-24T01:35:21.728538Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1354636,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"25:52","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18247},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E06.Back to Olympus-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E06.Back to Olympus-HDTV-1080p.mkv","size":388217361,"dateAdded":"2021-05-24T01:35:21.803327Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1344327,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"32:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18248},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E07.The Fields of the Dead-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E07.The Fields of the Dead-HDTV-1080p.mkv","size":429053209,"dateAdded":"2021-05-24T01:35:21.86033Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1409684,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"34:18","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18249},{"seriesId":287,"seasonNumber":1,"relativePath":"Season 01\/S01E08.War for Olympus-HDTV-1080p.mkv","path":"\/tv\/Blood of Zeus\/Season 01\/S01E08.War for Olympus-HDTV-1080p.mkv","size":590541141,"dateAdded":"2021-05-24T01:35:21.911792Z","language":{"id":1,"name":"English"},"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"television","resolution":1080},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1822987,"videoCodec":"x265","videoFps":24.0,"resolution":"1920x1080","runTime":"37:50","scanType":"","subtitles":"English"},"qualityCutoffNotMet":true,"languageCutoffNotMet":false,"id":18250}],"queue":[]},"290":{"series":{"title":"SpongeBob DocuPants","alternateTitles":[],"sortTitle":"spongebob docupants","status":"continuing","ended":false,"overview":"Imagine classic SpongeBob moments being told through the lens of documentary shows like E! True Hollywood Stories, Dateline, Behind the Music, etc. Each episode takes an overly dramatic look into classic Spongebob storylines.","previousAiring":"2020-05-14T04:00:00Z","airTime":"00:00","images":[{"coverType":"poster","url":"\/sonarr\/MediaCover\/285\/poster.jpg?lastWrite=637558010904476350","remoteUrl":"https:\/\/artworks.thetvdb.com\/banners\/v4\/series\/398293\/posters\/606b4ed997d28.jpg"}],"seasons":[{"seasonNumber":1,"monitored":true,"statistics":{"previousAiring":"2020-05-14T04:00:00Z","episodeFileCount":0,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0}}],"year":2020,"path":"\/tv\/SpongeBob DocuPants","qualityProfileId":1,"languageProfileId":1,"seasonFolder":true,"monitored":true,"useSceneNumbering":false,"runtime":14,"tvdbId":398293,"tvRageId":0,"tvMazeId":55110,"firstAired":"2020-05-14T00:00:00Z","seriesType":"standard","cleanTitle":"spongebobdocupants","titleSlug":"spongebob-docupants","rootFolderPath":"\/tv\/","genres":["Children"],"tags":[],"added":"2021-05-05T08:44:49.710187Z","ratings":{"votes":0,"value":0.0},"statistics":{"seasonCount":1,"episodeFileCount":0,"episodeCount":8,"totalEpisodeCount":8,"sizeOnDisk":0,"percentOfEpisodes":0.0},"id":285},"episodes":[{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":1,"title":"Origins of a Chef","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"How does a bright-eyed sponge get the most coveted fast food job in the town? And what happens when he loses it? Host Kent Shocknek takes us through the rise and apparent fall of one of the greatest patty flippers of our time: SpongeBob SquarePants.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21478},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":2,"title":"The Nasty Patty","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"Is it really murder if it's an accident? What if it was no accident at all? Host Kent Shocknek takes us through the disturbing events that brought one crab and one sponge to their darkest places.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21479},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":3,"title":"The Hash-Slinging Slasher","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"What happens when corporate greed pushes employees into danger? What if that danger is... from beyond our world? Host Kent Shocknek takes and inside look at one of the most disturbing haunts in Bikini Bottom history.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21480},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":4,"title":"The Fry Cook Games","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"There is no event more highly anticipated or prestigious than the Fry Cook Games. Now, host Kent Shocknek takes us through the legendary 21st Annual Fry Cook Games-- one centered around a rivalry that changed the world forever.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21481},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":5,"title":"The Rise of Eugene Krabs","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"In today's world, business tycoons are essentially gods. It is easy to forget that hidden behind the shell of their riches, they are people too. Kent Shocknek takes us behind the curtain of one of the most infamous industry leaders, Eugene Krabs.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21482},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":6,"title":"The Making of Sweet Victory","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"While many know of the performance that shocked the world, few know of how it actually came to be. Host Shocknek takes a deeper look at the making of everyone's favorite song, Sweet Victory.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21483},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":7,"title":"When Sea Creatures Attack","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"There's a host of dangerous sea creatures across the deep blue, but what happens when they're right in your backyard? Host Kent Shocknek gives us a disturbing glimpse of some of the not-so-friendly inhabitants of Bikini Bottom.","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21484},{"seriesId":285,"episodeFileId":0,"seasonNumber":1,"episodeNumber":8,"title":"A Lobster's Journey","airDate":"2020-05-14","airDateUtc":"2020-05-14T04:00:00Z","overview":"Larry the Lobster\u2014one of the most muscular crustaceans in the entire sea. Some say he can take on any challenge with only half of his strength. Host Kent Shocknek takes a look t what happens when muscles aren't enough","hasFile":false,"monitored":true,"unverifiedSceneNumbering":false,"id":21485}],"episodeFile":[],"queue":[]}}},"radarr":{"entries":[{"title":"2001: A Space Odyssey","originalTitle":"2001: A Space Odyssey","alternateTitles":[{"sourceType":"tmdb","movieId":56,"title":"How the Solar System Was Won","sourceId":62,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":80},{"sourceType":"tmdb","movieId":56,"title":"Journey Beyond the Stars","sourceId":62,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":81},{"sourceType":"tmdb","movieId":56,"title":"Two Thousand and One: A Space Odyssey","sourceId":62,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":82},{"sourceType":"tmdb","movieId":56,"title":"2001: \u041a\u043e\u0441\u043c\u0438\u0447\u0435\u0441\u043a\u0430 \u043e\u0434\u0438\u0441\u0435\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3728},{"sourceType":"tmdb","movieId":56,"title":"\u7ec8\u6781\u4e4b\u65c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3730},{"sourceType":"tmdb","movieId":56,"title":"2001: Vesm\u00edrn\u00e1 Odysea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3731},{"sourceType":"tmdb","movieId":56,"title":"2001: Een Zwerftocht in de Ruimte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3735},{"sourceType":"tmdb","movieId":56,"title":"2001: Ruimte Odyssee","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3736},{"sourceType":"tmdb","movieId":56,"title":"2001: Uzay Yolu Maceras\u0131","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3739},{"sourceType":"tmdb","movieId":56,"title":"2001: A Space Odyssey - Extended Edition","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5164},{"sourceType":"tmdb","movieId":56,"title":"2001: Uma Odiss\u00e9ia no Espa\u00e7o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5878}],"secondaryYearSourceId":0,"sortTitle":"2001 space odyssey","sizeOnDisk":11733778790,"status":"released","overview":"Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.","inCinemas":"1968-04-02T00:00:00Z","physicalRelease":"2001-08-23T00:00:00Z","digitalRelease":"2004-01-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/56\/poster.jpg?lastWrite=637605880665814553","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ve72VxNqjGM69Uky4WTo2bK6rfq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/56\/fanart.jpg?lastWrite=637666431700925090","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pIU6CQ9pdvg3n01lVSkKa6476ry.jpg"}],"website":"http:\/\/2001spaceodysseymovie.com","year":1968,"hasFile":true,"youTubeTrailerId":"oOij6UGRB6s","studio":"Stanley Kubrick Productions","path":"\/movies\/2001 - A Space Odyssey (1968)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/2001 - A Space Odyssey (1968)","runtime":149,"cleanTitle":"2001spaceodyssey","imdbId":"tt0062622","tmdbId":62,"titleSlug":"62","certification":"G","genres":["Science Fiction","Mystery","Adventure"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":8671,"value":8.1},"movieFile":{"movieId":56,"relativePath":"2001 A Space Odyssey.1968-Bluray-1080p.mkv","path":"\/movies\/2001 - A Space Odyssey (1968)\/2001 A Space Odyssey.1968-Bluray-1080p.mkv","size":11733778790,"dateAdded":"2018-10-26T22:41:05Z","sceneName":"2001.A.Space.Odyssey.1968.REMASTERED.1080p.BluRay.X264-AMIABLE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9002000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x872","runTime":"2:28:51","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"REMASTERED","id":411},"collection":{"name":"The Space Odyssey Series","tmdbId":4438,"images":[]},"id":56},{"title":"Akira","originalTitle":"\u30a2\u30ad\u30e9","alternateTitles":[{"sourceType":"tmdb","movieId":57,"title":"\u0410\u043a\u0438\u0440\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5962},{"sourceType":"tmdb","movieId":57,"title":"\u0e2d\u0e32\u0e01\u0e35\u0e23\u0e32 \u0e44\u0e21\u0e48\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e04\u0e19","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":6024},{"sourceType":"tmdb","movieId":57,"title":"\u963f\u57fa\u62c9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6265}],"secondaryYearSourceId":0,"sortTitle":"akira","sizeOnDisk":8206593672,"status":"released","overview":"A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath that only two teenagers and a group of psychics can stop.","inCinemas":"1988-07-16T00:00:00Z","physicalRelease":"1996-12-01T00:00:00Z","digitalRelease":"2020-09-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/57\/poster.jpg?lastWrite=637649994545108180","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5KlRFKKSbyCiyYpZSS3A6G5bW0K.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/57\/fanart.jpg?lastWrite=637624046167230407","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cYlqYcJjwRKdvixzSryntq97yuq.jpg"}],"website":"","year":1988,"hasFile":true,"youTubeTrailerId":"nA8KmHC2Z-g","studio":"Akira Committee Company Ltd.","path":"\/movies\/Akira (1988)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Akira (1988)","runtime":124,"cleanTitle":"akira","imdbId":"tt0094625","tmdbId":149,"titleSlug":"149","certification":"R","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":2789,"value":8},"movieFile":{"movieId":57,"relativePath":"Akira.1988-Bluray-1080p.mkv","path":"\/movies\/Akira (1988)\/Akira.1988-Bluray-1080p.mkv","size":8206593672,"dateAdded":"2018-10-12T16:45:08Z","sceneName":"Akira.1988.1080p.BluRay.x264-WaLMaRT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7721962,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:04:26","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"WaLMaRT","edition":"","id":231},"id":57},{"title":"Alice in Wonderland","originalTitle":"Alice in Wonderland","alternateTitles":[{"sourceType":"tmdb","movieId":58,"title":"Tim Burton's Alice in Wonderland","sourceId":12155,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":83},{"sourceType":"tmdb","movieId":58,"title":"Alice au pays des merveilles 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1371}],"secondaryYearSourceId":0,"sortTitle":"alice in wonderland","sizeOnDisk":8531119912,"status":"released","overview":"Alice, now 19 years old, returns to the whimsical world she first entered as a child and embarks on a journey to discover her true destiny.","inCinemas":"2010-03-03T00:00:00Z","physicalRelease":"2010-06-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/58\/poster.jpg?lastWrite=637650859665007274","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/o0kre9wRCZz3jjSjaru7QU0UtFz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/58\/fanart.jpg?lastWrite=637650859666967246","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/20pkC7yJdCV4J1IMKfsCT9QU7zV.jpg"}],"website":"http:\/\/disney.go.com\/wonderland\/","year":2010,"hasFile":true,"youTubeTrailerId":"pMiCJefpn9Q","studio":"Walt Disney Pictures","path":"\/movies\/Alice in Wonderland (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Alice in Wonderland (2010)","runtime":108,"cleanTitle":"aliceinwonderland","imdbId":"tt1014759","tmdbId":12155,"titleSlug":"12155","certification":"PG","genres":["Family","Fantasy","Adventure"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":11483,"value":6.6},"movieFile":{"movieId":58,"relativePath":"Alice in Wonderland.2010-Bluray-1080p.mkv","path":"\/movies\/Alice in Wonderland (2010)\/Alice in Wonderland.2010-Bluray-1080p.mkv","size":8531119912,"dateAdded":"2018-10-15T21:33:18Z","sceneName":"Alice.in.Wonderland.2010.1080p.Bluray.x264-CBGB","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8968000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:48:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CBGB","edition":"","id":361},"collection":{"name":"Alice in Wonderland Collection","tmdbId":261307,"images":[]},"id":58},{"title":"Alice Through the Looking Glass","originalTitle":"Alice Through the Looking Glass","alternateTitles":[{"sourceType":"tmdb","movieId":59,"title":"Alice in Wonderland 2","sourceId":241259,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":84},{"sourceType":"tmdb","movieId":59,"title":"Alice in Wonderland: Through the Looking Glass","sourceId":241259,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":85},{"sourceType":"tmdb","movieId":59,"title":"Through the Looking Glass","sourceId":241259,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":86},{"sourceType":"tmdb","movieId":59,"title":"Into the Looking Glass","sourceId":241259,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":87},{"sourceType":"tmdb","movieId":59,"title":"Alice attraverso lo specchio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2656},{"sourceType":"tmdb","movieId":59,"title":"\uac70\uc6b8 \ub098\ub77c\uc758 \uc568\ub9ac\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2657},{"sourceType":"tmdb","movieId":59,"title":"Alicia a trav\u00e9s del espejo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6039}],"secondaryYearSourceId":0,"sortTitle":"alice through looking glass","sizeOnDisk":36249561125,"status":"released","overview":"Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.","inCinemas":"2016-05-25T00:00:00Z","physicalRelease":"2016-10-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/59\/poster.jpg?lastWrite=637661241766135547","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4g043PWVXkjHkxEEsEfwuAxlM8i.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/59\/fanart.jpg?lastWrite=637412318641743996","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/A6d09KtZKdVGSg0gzsldjDwwvhD.jpg"}],"website":"http:\/\/movies.disney.com\/alice-through-the-looking-glass","year":2016,"hasFile":true,"youTubeTrailerId":"fomWLkyO_SY","studio":"Legend3D","path":"\/movies\/Alice Through the Looking Glass (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Alice Through the Looking Glass (2016)","runtime":113,"cleanTitle":"alicethroughlookingglass","imdbId":"tt2567026","tmdbId":241259,"titleSlug":"241259","certification":"PG","genres":["Adventure","Family","Fantasy"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":5204,"value":6.5},"movieFile":{"movieId":59,"relativePath":"Alice Through the Looking Glass.2016-Remux-1080p.mkv","path":"\/movies\/Alice Through the Looking Glass (2016)\/Alice Through the Looking Glass.2016-Remux-1080p.mkv","size":36249561125,"dateAdded":"2018-10-12T14:01:45Z","sceneName":"Alice.Through.the.Looking.Glass.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English \/ German \/ German \/ Italian \/ Greek","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:52:57","scanType":"Progressive","subtitles":"English \/ German \/ Italian \/ Greek \/ Danish \/ Finnish \/ Norwegian \/ Swedish \/ English \/ German \/ Italian \/ English \/ German \/ Italian \/ Greek"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":218},"collection":{"name":"Alice in Wonderland Collection","tmdbId":261307,"images":[]},"id":59},{"title":"Allegiant","originalTitle":"Allegiant","alternateTitles":[{"sourceType":"tmdb","movieId":60,"title":"Allegiant: Part 1","sourceId":262504,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":88},{"sourceType":"tmdb","movieId":60,"title":"Element","sourceId":262504,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":89},{"sourceType":"tmdb","movieId":60,"title":"The Divergent Series: Allegiant - Part 1","sourceId":262504,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":90},{"sourceType":"tmdb","movieId":60,"title":"The Divergent Series Allegiant","sourceId":262504,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":91},{"sourceType":"tmdb","movieId":60,"title":"A S\u00e9rie Divergente 3 - Convergente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2659},{"sourceType":"tmdb","movieId":60,"title":"Divergent 3 - Allegiant","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2660},{"sourceType":"tmdb","movieId":60,"title":"La S\u00e9rie Divergence - All\u00e9geance","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2661},{"sourceType":"tmdb","movieId":60,"title":"Aliance","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2662},{"sourceType":"tmdb","movieId":60,"title":"Divergence 3: Aliance","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2663},{"sourceType":"tmdb","movieId":60,"title":"La serie Divergente Leal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2664},{"sourceType":"tmdb","movieId":60,"title":"DIVERGENTE 3 - AU-DELA\u0300 DU MUR","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2665},{"sourceType":"tmdb","movieId":60,"title":"3. Allegiant","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2666},{"sourceType":"tmdb","movieId":60,"title":"\u8d64\u8bda\u8005\uff65\u672b\u4e16\u9192\u89c9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2667},{"sourceType":"tmdb","movieId":60,"title":"\u0410\u043b\u043b\u0438\u0433\u0435\u043d\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2669},{"sourceType":"tmdb","movieId":60,"title":"\u0414\u0438\u0432\u0435\u0440\u0433\u0435\u043d\u0442 \u0433\u043b\u0430\u0432\u0430 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2670},{"sourceType":"tmdb","movieId":60,"title":"\u0414\u0438\u0432\u0435\u0440\u0433\u0435\u043d\u0442 3: \u0410\u043b\u043b\u0456\u0433\u0435\u043d\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2671},{"sourceType":"tmdb","movieId":60,"title":"\ub2e4\uc774\ubc84\uc804\ud2b8 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5295},{"sourceType":"tmdb","movieId":60,"title":"Divergente 3 Leal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5472}],"secondaryYearSourceId":0,"sortTitle":"allegiant","sizeOnDisk":40223770390,"status":"released","overview":"Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.","inCinemas":"2016-03-09T00:00:00Z","physicalRelease":"2016-07-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/60\/poster.jpg?lastWrite=637653455384012307","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/etGXQzt6Znfkd5DcqCfGlyWrfxp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/60\/fanart.jpg?lastWrite=637611935846117384","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iUJybxWlnLBhreAaS1tgo3RRjmO.jpg"}],"website":"http:\/\/www.thedivergentseries.movie\/#allegiant","year":2016,"hasFile":true,"youTubeTrailerId":"Gvq6cMtT5nA","studio":"Mandeville Films","path":"\/movies\/Allegiant (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Allegiant (2016)","runtime":120,"cleanTitle":"allegiant","imdbId":"tt3410834","tmdbId":262504,"titleSlug":"262504","certification":"PG-13","genres":["Adventure","Science Fiction","Action"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":5485,"value":6.1},"movieFile":{"movieId":60,"relativePath":"Allegiant.2016-Remux-1080p.mkv","path":"\/movies\/Allegiant (2016)\/Allegiant.2016-Remux-1080p.mkv","size":40223770390,"dateAdded":"2018-10-12T17:14:36Z","sceneName":"Allegiant.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":8,"audioCodec":"DTS","audioLanguages":"English \/ English \/ English \/ Spanish \/ English \/ English \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:00:33","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":237},"collection":{"name":"Divergent Collection","tmdbId":283579,"images":[]},"id":60},{"title":"Angels & Demons","originalTitle":"Angels & Demons","alternateTitles":[{"sourceType":"tmdb","movieId":61,"title":"Anges Et D\u00e9mons","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2284},{"sourceType":"tmdb","movieId":61,"title":"El Codigo Da Vinci 2 Angeles y Demonios","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5494},{"sourceType":"tmdb","movieId":61,"title":"\u0410\u043d\u0433\u0435\u043b\u0438 \u0456 \u0434\u0435\u043c\u043e\u043d\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6171}],"secondaryYearSourceId":0,"sortTitle":"angels demons","sizeOnDisk":11743457505,"status":"released","overview":"Harvard symbologist Robert Langdon is recruited by the Vatican to investigate the apparent return of the Illuminati - a secret, underground organization - after four cardinals are kidnapped on the night of the papal conclave.","inCinemas":"2009-05-13T00:00:00Z","physicalRelease":"2009-09-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/61\/poster.jpg?lastWrite=637649129701456211","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uRBapeuwV8yy4in4BkETHBDmWkH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/61\/fanart.jpg?lastWrite=637637019479145711","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aI0eMhmzuMNJOyZTua1hwchinWt.jpg"}],"website":"http:\/\/www.angelsanddemons.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"zzjv-GUEDfg","studio":"Columbia Pictures","path":"\/movies\/Angels & Demons - Extended Edition (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Angels & Demons - Extended Edition (2009)","runtime":138,"cleanTitle":"angelsdemons","imdbId":"tt0808151","tmdbId":13448,"titleSlug":"13448","certification":"PG-13","genres":["Thriller","Mystery"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":5398,"value":6.7},"movieFile":{"movieId":61,"relativePath":"Angels & Demons.2009-Bluray-1080p.mkv","path":"\/movies\/Angels & Demons - Extended Edition (2009)\/Angels & Demons.2009-Bluray-1080p.mkv","size":11743457505,"dateAdded":"2018-10-12T17:30:04Z","sceneName":"Angels.And.Demons.2009.EXTENDED.1080p.BluRay.x264-METiS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9193000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:26:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"METiS","edition":"EXTENDED","id":238},"collection":{"name":"The Robert Langdon Collection","tmdbId":115776,"images":[]},"id":61},{"title":"Ant-Man","originalTitle":"Ant-Man","alternateTitles":[{"sourceType":"tmdb","movieId":62,"title":"Marvel's Ant Man","sourceId":102899,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":92},{"sourceType":"tmdb","movieId":62,"title":"Ant-Man 3D","sourceId":102899,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":93},{"sourceType":"tmdb","movieId":62,"title":"Homem-Formiga","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3353},{"sourceType":"tmdb","movieId":62,"title":"\u05d0\u05d9\u05e9 \u05d4\u05e0\u05de\u05dc\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3355},{"sourceType":"tmdb","movieId":62,"title":"\ub9c8\ube14 \uc564\ud2b8\ub9e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3356},{"sourceType":"tmdb","movieId":62,"title":"MCU 13: Ant-Man","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3357},{"sourceType":"tmdb","movieId":62,"title":"\u0427\u0435\u043b\u043e\u0432e\u043a-\u041c\u0443\u0440\u0430\u0432e\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5395},{"sourceType":"tmdb","movieId":62,"title":"Marvel Studios' Ant-Man","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5691},{"sourceType":"tmdb","movieId":62,"title":"\u8681\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5887},{"sourceType":"tmdb","movieId":62,"title":"Ant-Man 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6020}],"secondaryYearSourceId":0,"sortTitle":"ant man","sizeOnDisk":33430028379,"status":"released","overview":"Armed with the astonishing ability to shrink in scale but increase in strength, master thief Scott Lang must embrace his inner-hero and help his mentor, Doctor Hank Pym, protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles, Pym and Lang must plan and pull off a heist that will save the world.","inCinemas":"2015-07-14T00:00:00Z","physicalRelease":"2015-11-30T00:00:00Z","digitalRelease":"2015-11-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/62\/poster.jpg?lastWrite=637639614311519791","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rS97hUJ1otKTTripGwQ0ujbuIri.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/62\/fanart.jpg?lastWrite=637639614313239763","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/a7sAqMKv5tkAdMzFfIhPqIBmQ9g.jpg"}],"website":"http:\/\/marvel.com\/movies\/movie\/180\/ant-man","year":2015,"hasFile":true,"youTubeTrailerId":"cx3joJnXydc","studio":"Marvel Studios","path":"\/movies\/Ant-Man (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ant-Man (2015)","runtime":117,"cleanTitle":"antman","imdbId":"tt0478970","tmdbId":102899,"titleSlug":"102899","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":15929,"value":7.1},"movieFile":{"movieId":62,"relativePath":"Ant-Man.2015-Remux-1080p.mkv","path":"\/movies\/Ant-Man (2015)\/Ant-Man.2015-Remux-1080p.mkv","size":33430028379,"dateAdded":"2018-10-12T16:48:40Z","sceneName":"Ant-Man.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Portuguese \/ Chinese \/ Thai \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:57:06","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Chinese \/ Thai \/ Chinese \/ Chinese \/ Korean \/ Indonesian \/ Malay \/ English \/ Portuguese \/ Korean \/ Portuguese \/ Chinese \/ Thai \/ Chinese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":232},"collection":{"name":"Ant-Man Collection","tmdbId":422834,"images":[]},"id":62},{"title":"Appleseed: Ex Machina","originalTitle":"\u30a8\u30af\u30b9\u30de\u30ad\u30ca","alternateTitles":[{"sourceType":"tmdb","movieId":63,"title":"\u042f\u0431\u043b\u043e\u0447\u043d\u043e\u0435 \u0437\u0435\u0440\u043d\u044b\u0448\u043a\u043e 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4490}],"secondaryYearSourceId":0,"sortTitle":"appleseed ex machina","sizeOnDisk":2137631650,"status":"released","overview":"As members of ESWAT, the elite forces serving Olympus, Deunan and Briaereos are deployed anywhere trouble strikes. Olympus finds itself under a stealth attack - cyborg terrorism, deadly nanotech zealots, and rioting citizens are just some of the threats that Deunan must contend with as she fights to save Olympus!","inCinemas":"2007-10-19T00:00:00Z","physicalRelease":"2017-07-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/63\/poster.jpg?lastWrite=637654320965364918","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kresKis4LuYPs1PWbeJ2FYyyXRA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/63\/fanart.jpg?lastWrite=637628370548173728","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sBoTWewVC9F3oqsmX6hCiquNPPT.jpg"}],"website":"http:\/\/www.exmachina.jp\/","year":2007,"hasFile":true,"youTubeTrailerId":"tZkag7M_i5A","studio":"Toei Animation","path":"\/movies\/Appleseed - Ex Machina (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Appleseed - Ex Machina (2007)","runtime":105,"cleanTitle":"appleseedexmachina","imdbId":"tt1043842","tmdbId":13981,"titleSlug":"13981","certification":"PG-13","genres":["Animation","Action","Thriller"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":147,"value":6.4},"movieFile":{"movieId":63,"relativePath":"Appleseed Ex Machina.2007-Bluray-1080p.mp4","path":"\/movies\/Appleseed - Ex Machina (2007)\/Appleseed Ex Machina.2007-Bluray-1080p.mp4","size":2137631650,"dateAdded":"2018-10-12T21:19:19Z","sceneName":"Appleseed.Ex.Machina.2007.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:44:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":259},"collection":{"name":"Appleseed Collection","tmdbId":87800,"images":[]},"id":63},{"title":"Appleseed","originalTitle":"\u30a2\u30c3\u30d7\u30eb\u30b7\u30fc\u30c9","alternateTitles":[{"sourceType":"tmdb","movieId":64,"title":"Appleseed The OVA","sourceId":45295,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1221},{"sourceType":"tmdb","movieId":64,"title":"Appleseed: Kampf um die Freiheit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2963},{"sourceType":"tmdb","movieId":64,"title":"\u30a2\u30c3\u30d7\u30eb\u30fb\u30b7\u30fc\u30c9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2964},{"sourceType":"tmdb","movieId":64,"title":"\uc560\ud50c\uc2dc\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2965},{"sourceType":"tmdb","movieId":64,"title":"\u042f\u0431\u043b\u043e\u0447\u043d\u043e\u0435 \u0437\u0435\u0440\u043d\u044b\u0448\u043a\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2966},{"sourceType":"tmdb","movieId":64,"title":"\u860b\u679c\u6838\u6230","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2967}],"secondaryYearSourceId":0,"sortTitle":"appleseed","sizeOnDisk":817905802,"status":"released","overview":"In the futuristic city of Olympus, built on the ashes of the third world war, a police officer and her cyborg partner fight terrorism.","physicalRelease":"1988-04-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/64\/poster.jpg?lastWrite=637622316525750871","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/psYU0cYB4DaQRGg4v8Dtt7RhXfa.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/64\/fanart.jpg?lastWrite=637622316526950851","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/17ZtpVElc2137br5yylFJ3l4D7B.jpg"}],"website":"","year":1988,"hasFile":true,"youTubeTrailerId":"","studio":"GAINAX","path":"\/movies\/Appleseed (1988)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Appleseed (1988)","runtime":66,"cleanTitle":"appleseed","imdbId":"tt0094668","tmdbId":45295,"titleSlug":"45295","genres":["Crime","Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":42,"value":6.5},"movieFile":{"movieId":64,"relativePath":"Appleseed.1988-DVD.mkv","path":"\/movies\/Appleseed (1988)\/Appleseed.1988-DVD.mkv","size":817905802,"dateAdded":"2020-06-01T08:56:05Z","sceneName":"Appleseed (1988) (DVDRip 720x480p x265 HEVC AC3x2 2.0+5.1(Dual Audio)[sxales]","indexerFlags":1,"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":192000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1052702,"videoCodec":"x265","videoFps":23.976,"resolution":"720x480","runTime":"1:06:51","scanType":"","subtitles":"English"},"originalFilePath":"Appleseed (1988) (DVDRip 720x480p x265 HEVC AC3x2 2.0+5.1(Dual Audio)[sxales]\/Appleseed (1988) (DVDRip 720x480p x265 HEVC AC3x2 2.0+5.1(Dual Audio)[sxales].mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"edition":"","id":678},"collection":{"name":"Appleseed Collection","tmdbId":87800,"images":[]},"id":64},{"title":"Appleseed","originalTitle":"\u30a2\u30c3\u30d7\u30eb\u30b7\u30fc\u30c9","alternateTitles":[{"sourceType":"tmdb","movieId":65,"title":"Appleseed - The Movie","sourceId":11633,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":95},{"sourceType":"tmdb","movieId":65,"title":"Omenansiemen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4505},{"sourceType":"tmdb","movieId":65,"title":"A j\u00f6v\u0151 harcosai","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4506},{"sourceType":"tmdb","movieId":65,"title":"Appurush\u00eedo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4507},{"sourceType":"tmdb","movieId":65,"title":"\u0e41\u0e2d\u0e1b\u0e40\u0e1b\u0e34\u0e49\u0e25\u0e0b\u0e35\u0e14 \u0e40\u0e14\u0e2d\u0e30\u0e21\u0e39\u0e27\u0e35\u0e48 \u0e2a\u0e07\u0e04\u0e23\u0e32\u0e21\u0e25\u0e49\u0e32\u0e07\u0e40\u0e1c\u0e48\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e38\u0e4c\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e08\u0e31\u0e01\u0e23\u0e01\u0e25","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4508}],"secondaryYearSourceId":0,"sortTitle":"appleseed","sizeOnDisk":2156491393,"status":"released","overview":"In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?","inCinemas":"2004-04-17T00:00:00Z","physicalRelease":"2005-11-24T00:00:00Z","digitalRelease":"2008-01-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/65\/poster.jpg?lastWrite=637388111255753191","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mtSmeCDTexb0uWhVedouJ4SeD6c.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/65\/fanart.jpg?lastWrite=637628370533613961","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/z85BQhs5WIQDnRVZC62b6zLsGIZ.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"ps4iKlkc41E","studio":"Toho Co.","path":"\/movies\/Appleseed (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Appleseed (2004)","runtime":101,"cleanTitle":"appleseed","imdbId":"tt0401233","tmdbId":11633,"titleSlug":"11633","certification":"R","genres":["Animation","Action","Science Fiction"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":231,"value":6.7},"movieFile":{"movieId":65,"relativePath":"Appleseed.2004-Bluray-1080p.mp4","path":"\/movies\/Appleseed (2004)\/Appleseed.2004-Bluray-1080p.mp4","size":2156491393,"dateAdded":"2018-10-12T16:39:24Z","sceneName":"Appleseed.2004.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:45:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":228},"collection":{"name":"Appleseed Collection","tmdbId":87800,"images":[]},"id":65},{"title":"Avengers: Infinity War","originalTitle":"Avengers: Infinity War","alternateTitles":[{"sourceType":"tmdb","movieId":66,"title":"Avengers: Infinity War. Part I","sourceId":299536,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":97},{"sourceType":"tmdb","movieId":66,"title":"The Avengers 3: Infinity War","sourceId":299536,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":99},{"sourceType":"tmdb","movieId":66,"title":"Marvel's The Avengers 3: Infinity War","sourceId":299536,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":916},{"sourceType":"tmdb","movieId":66,"title":"Marvel Studios' Avengers: Infinity War","sourceId":299536,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":970},{"sourceType":"tmdb","movieId":66,"title":"Avengers 3 - Infinity War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2692},{"sourceType":"tmdb","movieId":66,"title":"MCU-19 - Avengers 3 - Infinity War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2693},{"sourceType":"tmdb","movieId":66,"title":"Vengadores : Guerra del infinito","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2694},{"sourceType":"tmdb","movieId":66,"title":"Bossz\u00fa\u00e1ll\u00f3k: V\u00e9gtelen h\u00e1bor\u00fa - I. r\u00e9sz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2696},{"sourceType":"tmdb","movieId":66,"title":"\u05d4\u05e0\u05d5\u05e7\u05de\u05d9\u05dd 3: \u05de\u05dc\u05d7\u05de\u05ea \u05d4\u05d0\u05d9\u05e0\u05e1\u05d5\u05e3, \u05d7\u05dc\u05e7 \u05d0'","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2697},{"sourceType":"tmdb","movieId":66,"title":"\u17a2\u17d2\u1793\u1780\u1785\u17c6\u1794\u17b6\u17c6\u1784\u17a2\u17b6\u179c\u17c1\u1793\u1787\u17ba : \u179f\u1784\u17d2\u1782\u17d2\u179a\u17b6\u1798\u1782\u17d2\u1798\u17b6\u1793\u178a\u17c2\u1793\u1794\u1789\u17d2\u1785\u1794\u17cb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2698},{"sourceType":"tmdb","movieId":66,"title":"\ub9c8\ube14 \uc5b4\ubca4\uc838\uc2a4, \uc778\ud53c\ub2c8\ud2f0 \uc6cc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2699},{"sourceType":"tmdb","movieId":66,"title":"\uc778\ud53c\ub2c8\ud2f0 \uc6cc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2701},{"sourceType":"tmdb","movieId":66,"title":"Kersytojai: Begalybes Karas. I dalis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2702},{"sourceType":"tmdb","movieId":66,"title":"Vengadores: La Guerra del Infinito","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2703},{"sourceType":"tmdb","movieId":66,"title":"MCU 21: Avengers: Infinity War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2704},{"sourceType":"tmdb","movieId":66,"title":"\u041c\u0441\u0442\u0438\u0442\u0435\u043b\u0438: \u0412\u043e\u0439\u043d\u0430 \u0431\u0435\u0441\u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0441\u0442\u0438. \u0427\u0430\u0441\u0442\u044c 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2705},{"sourceType":"tmdb","movieId":66,"title":"Yenilmezler: Sonsuzluk Sava\u015f\u0131. B\u00f6l\u00fcm 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2706},{"sourceType":"tmdb","movieId":66,"title":"Avengers: Abadiyat jangi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2707},{"sourceType":"tmdb","movieId":66,"title":"Qasoskorlar 3: Adabiyat jangi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2708},{"sourceType":"tmdb","movieId":66,"title":"Qasoskorlar: Cheksizlik jangi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2709},{"sourceType":"tmdb","movieId":66,"title":"Qasoskorlar: Cheksizlik urushi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2710},{"sourceType":"tmdb","movieId":66,"title":"Avengers: Lufta e pafund\u00ebsis\u00eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4990},{"sourceType":"tmdb","movieId":66,"title":"Vingadores Guerra Infinita","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5368},{"sourceType":"tmdb","movieId":66,"title":"Vengadores 3 Infinity War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5478},{"sourceType":"tmdb","movieId":66,"title":"Os Vingadores 3 - Guerra Infinita","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6022}],"secondaryYearSourceId":0,"sortTitle":"avengers infinity war","sizeOnDisk":37746418139,"status":"released","overview":"As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle, a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy, his goal is to collect all six Infinity Stones, artifacts of unimaginable power, and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.","inCinemas":"2018-04-25T00:00:00Z","physicalRelease":"2018-08-14T00:00:00Z","digitalRelease":"2018-07-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/66\/poster.jpg?lastWrite=637657781289343260","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/66\/fanart.jpg?lastWrite=637644804315402387","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lmZFxXgJE3vgrciwuDib0N8CfQo.jpg"}],"website":"https:\/\/www.marvel.com\/movies\/avengers-infinity-war","year":2018,"hasFile":true,"youTubeTrailerId":"QwievZ1Tx-8","studio":"Marvel Studios","path":"\/movies\/Avengers - Infinity War (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Avengers - Infinity War (2018)","runtime":149,"cleanTitle":"avengersinfinitywar","imdbId":"tt4154756","tmdbId":299536,"titleSlug":"299536","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":22588,"value":8.3},"movieFile":{"movieId":66,"relativePath":"Avengers Infinity War.2018-Remux-1080p.mkv","path":"\/movies\/Avengers - Infinity War (2018)\/Avengers Infinity War.2018-Remux-1080p.mkv","size":37746418139,"dateAdded":"2018-10-12T16:01:34Z","sceneName":"Avengers.Infinity.War.2018.1080p.BluRay.REMUX.AVCDTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4900988,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ Portuguese \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":24724839,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:29:21","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":221},"collection":{"name":"The Avengers Collection","tmdbId":86311,"images":[]},"id":66},{"title":"Back to the Future","originalTitle":"Back to the Future","alternateTitles":[{"sourceType":"tmdb","movieId":67,"title":"Back to the Future I","sourceId":105,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":100},{"sourceType":"tmdb","movieId":67,"title":"Back to the Future 01 Back to the Future","sourceId":105,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":101},{"sourceType":"tmdb","movieId":67,"title":"Volver al futuro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3821},{"sourceType":"tmdb","movieId":67,"title":"De Volta para o Futuro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3822},{"sourceType":"tmdb","movieId":67,"title":"Back to the Future 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3823},{"sourceType":"tmdb","movieId":67,"title":"Zur\u00fcck in die Zukunft I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3824},{"sourceType":"tmdb","movieId":67,"title":"Retour vers le futur 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3826},{"sourceType":"tmdb","movieId":67,"title":"Back to the Future Part I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3827},{"sourceType":"tmdb","movieId":67,"title":"vissza a jovobe 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3828},{"sourceType":"tmdb","movieId":67,"title":"Aftur til framt\u00ed\u00f0ar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3829},{"sourceType":"tmdb","movieId":67,"title":"Ritorno al futuro I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3830},{"sourceType":"tmdb","movieId":67,"title":"Ritorno al futuro parte I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3831},{"sourceType":"tmdb","movieId":67,"title":"\ube7d \ud22c \ub354 \ud4e8\uccd0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3832},{"sourceType":"tmdb","movieId":67,"title":"Terug naar de Toekomst","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3833},{"sourceType":"tmdb","movieId":67,"title":"Regresso ao Futuro 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3834},{"sourceType":"tmdb","movieId":67,"title":"\u041d\u0430\u0437\u0430\u0434 \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u0435 I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3835},{"sourceType":"tmdb","movieId":67,"title":"Vrnitev v prihodnost","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3836},{"sourceType":"tmdb","movieId":67,"title":"\u56de\u5230\u672a\u4f86","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3837},{"sourceType":"tmdb","movieId":67,"title":"Powr\u00f3t do Przysz\u0142o\u015bci","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5012},{"sourceType":"tmdb","movieId":67,"title":"\u041d\u0430\u0437\u0430\u0434 \u0432 \u0431\u0443\u0434\u0443\u0449ee","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5362},{"sourceType":"tmdb","movieId":67,"title":"Tillbaka till framtiden","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6255}],"secondaryYearSourceId":0,"sortTitle":"back to future","sizeOnDisk":27870448705,"status":"released","overview":"Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.","inCinemas":"1985-07-03T00:00:00Z","physicalRelease":"2002-10-09T00:00:00Z","digitalRelease":"2002-10-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/67\/poster.jpg?lastWrite=637617991716061993","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7lyBcpYB0Qt8gYhXYaEZUNlNQAv.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/67\/fanart.jpg?lastWrite=637609339583773992","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3lbTiIN8cVonMUQwaeh5nvn61lr.jpg"}],"website":"http:\/\/www.backtothefuture.com\/movies\/backtothefuture1","year":1985,"hasFile":true,"youTubeTrailerId":"qvsgGtivCgs","studio":"Universal Pictures","path":"\/movies\/Back to the Future (1985)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Back to the Future (1985)","runtime":116,"cleanTitle":"backtofuture","imdbId":"tt0088763","tmdbId":105,"titleSlug":"105","certification":"PG","genres":["Adventure","Comedy","Science Fiction"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":15467,"value":8.3},"movieFile":{"movieId":67,"relativePath":"Back to the Future.1985-Remux-1080p.mkv","path":"\/movies\/Back to the Future (1985)\/Back to the Future.1985-Remux-1080p.mkv","size":27870448705,"dateAdded":"2018-10-12T17:04:17Z","sceneName":"Back.to.the.Future.1985.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Japanese \/ German \/ Turkish \/ English \/ Japanese \/ English","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"VC1","videoFps":23.976,"resolution":"1920x1080","runTime":"1:56:01","scanType":"Progressive","subtitles":"English \/ Japanese \/ German \/ Danish \/ Finnish \/ Icelandic \/ Norwegian \/ Portuguese \/ Swedish \/ Turkish \/ Japanese \/ English \/ German \/ Japanese \/ English \/ German \/ Japanese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":236},"collection":{"name":"Back to the Future Collection","tmdbId":264,"images":[]},"id":67},{"title":"Back to the Future Part II","originalTitle":"Back to the Future Part II","alternateTitles":[{"sourceType":"tmdb","movieId":68,"title":"Volver al Futuro 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4693},{"sourceType":"tmdb","movieId":68,"title":"Back to the Future Part 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4694},{"sourceType":"tmdb","movieId":68,"title":"De Volta para o Futuro 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4695},{"sourceType":"tmdb","movieId":68,"title":"Retour Vers Le Futur Partie II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4698},{"sourceType":"tmdb","movieId":68,"title":"Retour vers le futur 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4699},{"sourceType":"tmdb","movieId":68,"title":"Ritorno al futuro 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4702},{"sourceType":"tmdb","movieId":68,"title":"Ritorno al futuro II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4703},{"sourceType":"tmdb","movieId":68,"title":"\ube7d \ud22c \ub354 \ud4e8\uccd0 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4704},{"sourceType":"tmdb","movieId":68,"title":"Atgal i ateiti II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4705},{"sourceType":"tmdb","movieId":68,"title":"Volver al Futuro II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4706},{"sourceType":"tmdb","movieId":68,"title":"Regresso ao Futuro II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4707},{"sourceType":"tmdb","movieId":68,"title":"\u041d\u0430\u0437\u0430\u0434 \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u0435 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4709},{"sourceType":"tmdb","movieId":68,"title":"Regreso al Futuro II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4711},{"sourceType":"tmdb","movieId":68,"title":"Powr\u00f3t do Przysz\u0142o\u015bci II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5014},{"sourceType":"tmdb","movieId":68,"title":"\u05d1\u05d7\u05d6\u05e8\u05d4 \u05dc\u05e2\u05ea\u05d9\u05d3 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5774},{"sourceType":"tmdb","movieId":68,"title":"\u56de\u5230\u672a\u4f86II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5775},{"sourceType":"tmdb","movieId":68,"title":"Vrnitev v prihodnost II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5776},{"sourceType":"tmdb","movieId":68,"title":"vissza a jovobe II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5778},{"sourceType":"tmdb","movieId":68,"title":"Regreso al Futuro parte II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5779},{"sourceType":"tmdb","movieId":68,"title":"Tilbage til Fremtden del II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5780},{"sourceType":"tmdb","movieId":68,"title":"\u30d0\u30c3\u30af\u30fb\u30c8\u30a5\u30fb\u30b6\u30fb\u30d5\u30e5\u30fc \u30c1\u30e3\u30fc 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5781},{"sourceType":"tmdb","movieId":68,"title":"Back to the Future 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6030},{"sourceType":"tmdb","movieId":68,"title":"Tillbaka till framtiden del II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6256}],"secondaryYearSourceId":0,"sortTitle":"back to future part ii","sizeOnDisk":28714700002,"status":"released","overview":"Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.","inCinemas":"1989-11-22T00:00:00Z","physicalRelease":"1991-10-04T00:00:00Z","digitalRelease":"2002-10-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/68\/poster.jpg?lastWrite=637643074080809811","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hQq8xZe5uLjFzSBt4LanNP7SQjl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/68\/fanart.jpg?lastWrite=637594639725193880","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/a4qvbI9x3nqu3hKQyDRVVBpMklx.jpg"}],"website":"http:\/\/www.backtothefuture.com\/movies\/backtothefuture2","year":1989,"hasFile":true,"youTubeTrailerId":"laRI6lO94_Q","studio":"Universal Pictures","path":"\/movies\/Back to the Future Part II (1989)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Back to the Future Part II (1989)","runtime":108,"cleanTitle":"backtofuturepartii","imdbId":"tt0096874","tmdbId":165,"titleSlug":"165","certification":"PG","genres":["Adventure","Comedy","Family"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":9898,"value":7.7},"movieFile":{"movieId":68,"relativePath":"Back to the Future Part II.1989-Remux-1080p.mkv","path":"\/movies\/Back to the Future Part II (1989)\/Back to the Future Part II.1989-Remux-1080p.mkv","size":28714700002,"dateAdded":"2018-10-12T19:19:13Z","sceneName":"Back.to.the.Future.Part.II.1989.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Japanese \/ Japanese \/ German \/ Turkish \/ English \/ English","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"VC1","videoFps":23.976,"resolution":"1920x1080","runTime":"1:47:59","scanType":"Progressive","subtitles":"English \/ Japanese \/ German \/ Turkish \/ Danish \/ Finnish \/ Icelandic \/ Norwegian \/ Japanese \/ German \/ Turkish \/ English \/ German \/ Japanese \/ English \/ Japanese \/ German"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":256},"collection":{"name":"Back to the Future Collection","tmdbId":264,"images":[]},"id":68},{"title":"Back to the Future Part III","originalTitle":"Back to the Future Part III","alternateTitles":[{"sourceType":"tmdb","movieId":69,"title":"Back to the Future 3","sourceId":196,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":107},{"sourceType":"tmdb","movieId":69,"title":"Back to the Future Part 3","sourceId":196,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":108},{"sourceType":"tmdb","movieId":69,"title":"Back to the Future 03 - Back to the Future Part III","sourceId":196,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":109},{"sourceType":"tmdb","movieId":69,"title":"Volver al futuro III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4284},{"sourceType":"tmdb","movieId":69,"title":"De Volta para o Futuro 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4285},{"sourceType":"tmdb","movieId":69,"title":"Volver al Futuro 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4286},{"sourceType":"tmdb","movieId":69,"title":"Zur\u00fcck in die Zukunft Teil 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4287},{"sourceType":"tmdb","movieId":69,"title":"Zur\u00fcck in die Zukunft Teil III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4288},{"sourceType":"tmdb","movieId":69,"title":"Retour Vers Le Futur Partie III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4289},{"sourceType":"tmdb","movieId":69,"title":"Retour vers le futur 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4290},{"sourceType":"tmdb","movieId":69,"title":"vissza a jovobe 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4291},{"sourceType":"tmdb","movieId":69,"title":"\u05d1\u05d7\u05d6\u05e8\u05d4 \u05dc\u05e2\u05ea\u05d9\u05d3 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4292},{"sourceType":"tmdb","movieId":69,"title":"Ritorno al futuro 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4293},{"sourceType":"tmdb","movieId":69,"title":"Ritorno al futuro III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4294},{"sourceType":"tmdb","movieId":69,"title":"\ube7d \ud22c \ub354 \ud4e8\uccd0 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4295},{"sourceType":"tmdb","movieId":69,"title":"Atgal i ateiti III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4296},{"sourceType":"tmdb","movieId":69,"title":"Regresso ao Futuro III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4297},{"sourceType":"tmdb","movieId":69,"title":"\u041d\u0430\u0437\u0430\u0434 \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u0435 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4298},{"sourceType":"tmdb","movieId":69,"title":"\u041d\u0430\u0437\u0430\u0434 \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u0435 III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4299},{"sourceType":"tmdb","movieId":69,"title":"Vrnitev v prihodnost 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4300},{"sourceType":"tmdb","movieId":69,"title":"Regreso al Futuro III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4301},{"sourceType":"tmdb","movieId":69,"title":"\u56de\u5230\u672a\u4f863","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4302},{"sourceType":"tmdb","movieId":69,"title":"Powr\u00f3t do Przysz\u0142o\u015bci 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5015},{"sourceType":"tmdb","movieId":69,"title":"Powr\u00f3t do Przysz\u0142o\u015bci III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5016},{"sourceType":"tmdb","movieId":69,"title":"Zur\u00fcck in die Zukunft 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5218},{"sourceType":"tmdb","movieId":69,"title":"Tillbaka till framtiden del III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6257}],"secondaryYearSourceId":0,"sortTitle":"back to future part iii","sizeOnDisk":31726951559,"status":"released","overview":"The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking for Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.","inCinemas":"1990-05-25T00:00:00Z","physicalRelease":"2006-01-17T00:00:00Z","digitalRelease":"2003-05-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/69\/poster.jpg?lastWrite=637606745608973714","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/crzoVQnMzIrRfHtQw0tLBirNfVg.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/69\/fanart.jpg?lastWrite=637609339614573510","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/igaRMweCynEGoS6w4Rsim7JPnKu.jpg"}],"website":"http:\/\/www.backtothefuture.com\/movies\/backtothefuture3","year":1990,"hasFile":true,"youTubeTrailerId":"b5_tLazM1_Q","studio":"Universal Pictures","path":"\/movies\/Back to the Future Part III (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Back to the Future Part III (1990)","runtime":119,"cleanTitle":"backtofuturepartiii","imdbId":"tt0099088","tmdbId":196,"titleSlug":"196","certification":"PG","genres":["Adventure","Comedy","Science Fiction"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":8006,"value":7.4},"movieFile":{"movieId":69,"relativePath":"Back to the Future Part III.1990-Remux-1080p.mkv","path":"\/movies\/Back to the Future Part III (1990)\/Back to the Future Part III.1990-Remux-1080p.mkv","size":31726951559,"dateAdded":"2018-10-12T19:01:19Z","sceneName":"Back.to.the.Future.Part.III.1990.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ German \/ Japanese \/ Japanese \/ Turkish \/ English \/ English","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:58:17","scanType":"Progressive","subtitles":"English \/ German \/ Japanese \/ Turkish \/ Danish \/ Finnish \/ Icelandic \/ Norwegian \/ Portuguese \/ Swedish \/ Japanese \/ English \/ German \/ Japanese \/ English \/ German \/ Japanese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":254},"collection":{"name":"Back to the Future Collection","tmdbId":264,"images":[]},"id":69},{"title":"Beyond the Black Rainbow","originalTitle":"Beyond the Black Rainbow","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"beyond black rainbow","sizeOnDisk":8517663674,"status":"released","overview":"Deep within the mysterious Arboria Institute, a disturbed and beautiful girl is held captive by a doctor in search of inner peace. Her mind controlled by a sinister technology. Silently, she waits for her next session with deranged therapist Dr. Barry Nyle. If she hopes to escape, she must journey through the darkest reaches of The Institute, but Nyle won\u02bct easily part with his most gifted and dangerous creation.","inCinemas":"2010-12-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/70\/poster.jpg?lastWrite=637347474452240469","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2kYdBFvzV330q5QKBUAW9Dx58ey.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/70\/fanart.jpg?lastWrite=637617991725661839","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fwdmxO4eWWW6gD0F0hf9m7pVnrb.jpg"}],"website":"","year":2010,"hasFile":true,"youTubeTrailerId":"nWF0bBKhe6o","studio":"Chromewood Productions","path":"\/movies\/Beyond the Black Rainbow (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Beyond the Black Rainbow (2010)","runtime":110,"cleanTitle":"beyondblackrainbow","imdbId":"tt1534085","tmdbId":50037,"titleSlug":"50037","certification":"R","genres":["Fantasy","Science Fiction","Horror"],"tags":[],"added":"2018-10-11T15:00:54Z","ratings":{"votes":227,"value":5.9},"movieFile":{"movieId":70,"relativePath":"Beyond the Black Rainbow.2010-Bluray-1080p.mkv","path":"\/movies\/Beyond the Black Rainbow (2010)\/Beyond the Black Rainbow.2010-Bluray-1080p.mkv","size":8517663674,"dateAdded":"2018-10-12T17:44:32Z","sceneName":"Beyond.The.Black.Rainbow.2010.LIMITED.1080p.BluRay.x264-GECKOS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8855000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:49:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"GECKOS","edition":"","id":241},"id":70},{"title":"Big Hero 6","originalTitle":"Big Hero 6","alternateTitles":[{"sourceType":"tmdb","movieId":71,"title":"Grandes H\u00e9roes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1405},{"sourceType":"tmdb","movieId":71,"title":"\u5927\u82f1\u96c4\u8054\u76df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1406},{"sourceType":"tmdb","movieId":71,"title":"6 kangelast","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1407},{"sourceType":"tmdb","movieId":71,"title":"Les Nouveaux Heros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1408},{"sourceType":"tmdb","movieId":71,"title":"6 Giborim","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1409},{"sourceType":"tmdb","movieId":71,"title":"\u30d9\u30a4\u30de\u30c3\u30af\u30b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1410},{"sourceType":"tmdb","movieId":71,"title":"\ube45 \ud788\uc5b4\ub85c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1411},{"sourceType":"tmdb","movieId":71,"title":"Disney Klassiker 53 - Big Hero 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1412},{"sourceType":"tmdb","movieId":71,"title":"\u0413\u043e\u0440\u043e\u0434 \u0433\u0435\u0440\u043e\u0435\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1413}],"secondaryYearSourceId":0,"sortTitle":"big hero 6","sizeOnDisk":26511091779,"status":"released","overview":"A special bond develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.","inCinemas":"2014-10-24T00:00:00Z","physicalRelease":"2015-02-24T00:00:00Z","digitalRelease":"2015-08-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/71\/poster.jpg?lastWrite=637652590286820821","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2mxS4wUimwlLmI1xp6QW6NSU361.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/71\/fanart.jpg?lastWrite=637502964947625189","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4s2d3xdyqotiVNHTlTlJjrr3q0H.jpg"}],"website":"http:\/\/movies.disney.com\/big-hero-6","year":2014,"hasFile":true,"youTubeTrailerId":"8IdMPpKMdcc","studio":"Walt Disney Pictures","path":"\/movies\/Big Hero 6 (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Big Hero 6 (2014)","runtime":102,"cleanTitle":"bighero6","imdbId":"tt2245084","tmdbId":177572,"titleSlug":"177572","certification":"PG","genres":["Adventure","Family","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":12952,"value":7.8},"movieFile":{"movieId":71,"relativePath":"Big Hero 6.2014-Remux-1080p.mkv","path":"\/movies\/Big Hero 6 (2014)\/Big Hero 6.2014-Remux-1080p.mkv","size":26511091779,"dateAdded":"2018-10-12T18:46:23Z","sceneName":"Big.Hero.6.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:41:52","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":251},"id":71},{"title":"Black\u2605Rock Shooter","originalTitle":"\u30d6\u30e9\u30c3\u30af\u2605\u30ed\u30c3\u30af\u30b7\u30e5\u30fc\u30bf\u30fc","alternateTitles":[{"sourceType":"tmdb","movieId":72,"title":"\u05d1\u05dc\u05d0\u05e7 \u05e8\u05d5\u05e7 \u05e9\u05d5\u05d8\u05e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4491},{"sourceType":"tmdb","movieId":72,"title":"Burakku Rokku Shuta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4492}],"secondaryYearSourceId":0,"sortTitle":"blackrock shooter","sizeOnDisk":3748398902,"status":"released","overview":"The story of two girls bound in friendship, as well as Black Rock Star's struggle unfolding in another world. But when the two worlds come together... what will happen?","inCinemas":"2010-07-07T00:00:00Z","physicalRelease":"2010-07-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/72\/poster.jpg?lastWrite=637427882384184372","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tc2I5OQqDr13WF178I3C0rCX9iu.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/72\/fanart.jpg?lastWrite=637617126875703039","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jSfbqgH6LCITRZzHCyi1UFiizFD.jpg"}],"website":"http:\/\/www.blackrockshooter.jp\/en\/","year":2010,"hasFile":true,"youTubeTrailerId":"","studio":"Ordet","path":"\/movies\/Black\u2605Rock Shooter (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Black\u2605Rock Shooter (2010)","runtime":52,"cleanTitle":"blackrockshooter","imdbId":"tt1827378","tmdbId":58107,"titleSlug":"58107","genres":["Drama","Animation","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":30,"value":6.4},"movieFile":{"movieId":72,"relativePath":"Black\u2605Rock Shooter.2010-HDTV-1080p.mkv","path":"\/movies\/Black\u2605Rock Shooter (2010)\/Black\u2605Rock Shooter.2010-HDTV-1080p.mkv","size":3748398902,"dateAdded":"2018-10-11T15:26:30Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":2,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"52:24","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ German \/ Italian \/ Chinese"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"2ch","edition":"","id":204},"id":72},{"title":"Blackhat","originalTitle":"Blackhat","alternateTitles":[{"sourceType":"tmdb","movieId":73,"title":"Amenaza en la Red","sourceId":201088,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":467},{"sourceType":"tmdb","movieId":73,"title":"Hacker: Amenaza en la Red","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4195},{"sourceType":"tmdb","movieId":73,"title":"Chapeau noir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4196},{"sourceType":"tmdb","movieId":73,"title":"Blackhat - Au\u00dfer Kontrolle","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4197},{"sourceType":"tmdb","movieId":73,"title":"Blackhat - Amenaza en la red","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4198},{"sourceType":"tmdb","movieId":73,"title":"\u9ed1\u5e3d\u4ea4\u92d2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4199},{"sourceType":"tmdb","movieId":73,"title":"\u30d6\u30e9\u30c3\u30af\u30cf\u30c3\u30c8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4200},{"sourceType":"tmdb","movieId":73,"title":"\ube14\ub799\ucf54\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4201},{"sourceType":"tmdb","movieId":73,"title":"Blackhat: Amea\u00e7a na Rede","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4202},{"sourceType":"tmdb","movieId":73,"title":"\u041a\u0438\u0431\u0435\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4203},{"sourceType":"tmdb","movieId":73,"title":"Hacker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":4204},{"sourceType":"tmdb","movieId":73,"title":"\u9ed1\u5e3d\u99ed\u5ba2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4205},{"sourceType":"tmdb","movieId":73,"title":"\u0425\u0430\u043a\u0435\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4206},{"sourceType":"tmdb","movieId":73,"title":"Heker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4221}],"secondaryYearSourceId":0,"sortTitle":"blackhat","sizeOnDisk":2734447642,"status":"released","overview":"A man is released from prison to help American and Chinese authorities pursue a mysterious cyber criminal. The dangerous search leads them from Chicago to Hong Kong.","inCinemas":"2015-01-13T00:00:00Z","physicalRelease":"2015-06-03T00:00:00Z","digitalRelease":"2017-12-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/73\/poster.jpg?lastWrite=637643939259249857","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6KGxFPcGcyYnN4ct96nmYoabLZ6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/73\/fanart.jpg?lastWrite=637611936145832591","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sMEni1oAuBlToW53M3xOjntF1LO.jpg"}],"website":"http:\/\/www.legendary.com\/film\/blackhat\/","year":2015,"hasFile":true,"youTubeTrailerId":"-CA95Bzpy7s","studio":"Universal Pictures","path":"\/movies\/Blackhat (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Blackhat (2015)","runtime":133,"cleanTitle":"blackhat","imdbId":"tt2717822","tmdbId":201088,"titleSlug":"201088","certification":"R","genres":["Crime","Thriller","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1556,"value":5.4},"movieFile":{"movieId":73,"relativePath":"Blackhat.2015-Bluray-1080p.mp4","path":"\/movies\/Blackhat (2015)\/Blackhat.2015-Bluray-1080p.mp4","size":2734447642,"dateAdded":"2018-10-12T18:56:10Z","sceneName":"Blackhat.2015.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:13:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":252},"id":73},{"title":"Brave Story","originalTitle":"\u30d6\u30ec\u30a4\u30d6 \u30b9\u30c8\u30fc\u30ea\u30fc","alternateTitles":[{"sourceType":"tmdb","movieId":75,"title":"Bureibu sut\u014dr\u012b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5276},{"sourceType":"tmdb","movieId":75,"title":"\u30d6\u30ec\u30a4\u30d6\u30fb\u30b9\u30c8\u30fc\u30ea\u30fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5277}],"secondaryYearSourceId":0,"sortTitle":"brave story","sizeOnDisk":6509366434,"status":"released","overview":"Jr. High School Student Wataru and his friends like playing in an abandond building and looking for ghosts. However it seems he is not the only one. Another mysterious student Mitsuru shows Wataru that there is a magical door to another world where one can go and get the Goddess of Fortune to grant one wish! When tragedy strikes Wataru's family he decides to open the door for himself.","inCinemas":"2006-05-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/75\/poster.jpg?lastWrite=637613667424944573","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ncgO9ukLIZwToWJdTcygGRxjmwf.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/75\/fanart.jpg?lastWrite=637613667426504549","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ysGlU8I7wkO7GSYtqVYDDfHGGeZ.jpg"}],"website":"","year":2006,"hasFile":true,"youTubeTrailerId":"","studio":"Fuji Television Network","path":"\/movies\/Brave Story (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Brave Story (2006)","runtime":112,"cleanTitle":"bravestory","imdbId":"tt0778631","tmdbId":17566,"titleSlug":"17566","genres":["Animation","Science Fiction","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":52,"value":6.2},"movieFile":{"movieId":75,"relativePath":"Brave Story.2006-Bluray-1080p.mkv","path":"\/movies\/Brave Story (2006)\/Brave Story.2006-Bluray-1080p.mkv","size":6509366434,"dateAdded":"2019-11-06T23:33:22Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6729084,"videoCodec":"x264","videoFps":23.976,"resolution":"1918x1076","runTime":"1:52:01","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":632},"id":75},{"title":"Captain America: The Winter Soldier","originalTitle":"Captain America: The Winter Soldier","alternateTitles":[{"sourceType":"tmdb","movieId":76,"title":"Captain America 2","sourceId":100402,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":110},{"sourceType":"tmdb","movieId":76,"title":"Captain America 2 - The Winter Solider","sourceId":100402,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":111},{"sourceType":"tmdb","movieId":76,"title":"Marvel's Captain America: The Winter Soldier","sourceId":100402,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":112},{"sourceType":"tmdb","movieId":76,"title":"Captain America 2: The Winter Soldier 3D","sourceId":100402,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":113},{"sourceType":"tmdb","movieId":76,"title":"\u041a\u0430\u043f\u0438\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2062},{"sourceType":"tmdb","movieId":76,"title":"\u041a\u0430\u043f\u0438\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430: \u0417\u0438\u043c\u043d\u0438\u044f\u0442 \u0432\u043e\u0439\u043d\u0438\u043a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2063},{"sourceType":"tmdb","movieId":76,"title":"Capit\u00e3o Am\u00e9rica 2: O Soldado Invernal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2064},{"sourceType":"tmdb","movieId":76,"title":"\u7f8e\u56fd\u961f\u957f2\uff1a\u51ac\u65e5\u6218\u58eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2066},{"sourceType":"tmdb","movieId":76,"title":"Capit\u00e1n Am\u00e9rica: El soldado de invierno","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2067},{"sourceType":"tmdb","movieId":76,"title":"Captain America - Le soldat de l'hiver","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2068},{"sourceType":"tmdb","movieId":76,"title":"\u05e7\u05e4\u05d8\u05df \u05d0\u05de\u05e8\u05d9\u05e7\u05d4 2: \u05d7\u05d9\u05d9\u05dc \u05d4\u05d7\u05d5\u05e8\u05e3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2069},{"sourceType":"tmdb","movieId":76,"title":"\ub9c8\ube14 \ucea1\ud2f4 \uc544\uba54\ub9ac\uce74, \uc708\ud130 \uc194\uc838","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2070},{"sourceType":"tmdb","movieId":76,"title":"\ucea1\ud2f4 \uc544\uba54\ub9ac\uce74: \uc708\ud130 \uc194\uc838","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2071},{"sourceType":"tmdb","movieId":76,"title":"Capit\u00e1n Am\u00e9rica y el Soldado del Invierno","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2072},{"sourceType":"tmdb","movieId":76,"title":"\u041a\u0430\u043f\u0438\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430: \u0417\u0438\u043c\u043d\u0438\u0439 \u0441\u043e\u043b\u0434\u0430\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2074},{"sourceType":"tmdb","movieId":76,"title":"Captain America: The Return of the First Avenger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2075},{"sourceType":"tmdb","movieId":76,"title":"\u7f8e\u570b\u968a\u95772\uff1a\u9177\u5bd2\u6230\u58eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2076},{"sourceType":"tmdb","movieId":76,"title":"\u041a\u0430\u043f\u0456\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2077},{"sourceType":"tmdb","movieId":76,"title":"\u041a\u0430\u043f\u0456\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430: \u0417\u0438\u043c\u043e\u0432\u0438\u0439 \u0441\u043e\u043b\u0434\u0430\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2078},{"sourceType":"tmdb","movieId":76,"title":"Birinchi qasoskor 2: Boshqa urush (jang)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2079},{"sourceType":"tmdb","movieId":76,"title":"Captain America 2 - The Winter Soldier","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5382},{"sourceType":"tmdb","movieId":76,"title":"Marvel Studios' Captain America: The Winter Soldier","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5695},{"sourceType":"tmdb","movieId":76,"title":"\u7f8e\u961f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5796},{"sourceType":"tmdb","movieId":76,"title":"Marvel - Captain America 2 - The return of the first Avenger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6060},{"sourceType":"tmdb","movieId":76,"title":"\u7f8e\u56fd\u961f\u957f2\uff1a\u51ac\u5175","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6170}],"secondaryYearSourceId":0,"sortTitle":"captain america winter soldier","sizeOnDisk":2778481416,"status":"released","overview":"After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy\u2014the Winter Soldier.","inCinemas":"2014-03-20T00:00:00Z","physicalRelease":"2014-08-13T00:00:00Z","digitalRelease":"2016-08-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/76\/poster.jpg?lastWrite=637647399507841027","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tVFRpFw3xTedgPGqxW0AOI8Qhh0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/76\/fanart.jpg?lastWrite=637636154769771379","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xOe8nHr5bpPvq4JbGy4vpttDwg2.jpg"}],"website":"http:\/\/www.captainamericathewintersoldiermovie.com","year":2014,"hasFile":true,"youTubeTrailerId":"7SlILk2WMTI","studio":"Marvel Studios","path":"\/movies\/Captain America - The Winter Soldier (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Captain America - The Winter Soldier (2014)","runtime":136,"cleanTitle":"captainamericawintersoldier","imdbId":"tt1843866","tmdbId":100402,"titleSlug":"100402","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":14896,"value":7.7},"movieFile":{"movieId":76,"relativePath":"Captain America The Winter Soldier.2014-Bluray-1080p.mp4","path":"\/movies\/Captain America - The Winter Soldier (2014)\/Captain America The Winter Soldier.2014-Bluray-1080p.mp4","size":2778481416,"dateAdded":"2018-10-12T19:14:55Z","sceneName":"Captain.America.The.Winter.Soldier.2014.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:15:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":255},"collection":{"name":"Captain America Collection","tmdbId":131295,"images":[]},"id":76},{"title":"Castle in the Sky","originalTitle":"\u5929\u7a7a\u306e\u57ce\u30e9\u30d4\u30e5\u30bf","alternateTitles":[{"sourceType":"tmdb","movieId":77,"title":"Laputa","sourceId":10515,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1321},{"sourceType":"tmdb","movieId":77,"title":"Laputa: Castle in the Sky","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2968},{"sourceType":"tmdb","movieId":77,"title":"Laputa - Castello nel cielo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2969},{"sourceType":"tmdb","movieId":77,"title":"Tenku no shiro Rapyuta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2970},{"sourceType":"tmdb","movieId":77,"title":"Tenkuu no Shiro Laputa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2971},{"sourceType":"tmdb","movieId":77,"title":"\u05d4\u05d8\u05d9\u05e8\u05d4 \u05d4\u05de\u05e8\u05d7\u05e4\u05ea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5183},{"sourceType":"tmdb","movieId":77,"title":"\u05dc\u05e4\u05d5\u05d8\u05d4 \u05d8\u05d9\u05e8\u05ea \u05d4\u05e8\u05e7\u05d9\u05e2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5184}],"secondaryYearSourceId":0,"sortTitle":"castle in sky","sizeOnDisk":11742557537,"status":"released","overview":"A young boy and a girl with a magic crystal must race against pirates and foreign agents in a search for a legendary floating castle.","inCinemas":"1986-08-02T00:00:00Z","physicalRelease":"2008-02-28T00:00:00Z","digitalRelease":"1989-04-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/77\/poster.jpg?lastWrite=637656916306319209","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/npOnzAbLh6VOIu3naU5QaEcTepo.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/77\/fanart.jpg?lastWrite=637655186045599444","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3cyjYtLWCBE1uvWINHFsFnE8LUK.jpg"}],"website":"","year":1986,"hasFile":true,"youTubeTrailerId":"8ykEy-yPBFc","studio":"Studio Ghibli","path":"\/movies\/Castle in the Sky (1986)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Castle in the Sky (1986)","runtime":125,"cleanTitle":"castleinsky","imdbId":"tt0092067","tmdbId":10515,"titleSlug":"10515","certification":"PG","genres":["Adventure","Fantasy","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2903,"value":8},"movieFile":{"movieId":77,"relativePath":"Castle in the Sky.1986-Bluray-1080p.mkv","path":"\/movies\/Castle in the Sky (1986)\/Castle in the Sky.1986-Bluray-1080p.mkv","size":11742557537,"dateAdded":"2018-10-12T18:42:16Z","sceneName":"Castle.In.The.Sky.1986.1080p.BluRay.x264-MELiTE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10418000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:04:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MELiTE","edition":"","id":250},"id":77},{"title":"Cat Soup","originalTitle":"\u306d\u3053\u3062\u308b\u8349","alternateTitles":[{"sourceType":"tmdb","movieId":78,"title":"Nekojiru-S\u014d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5111},{"sourceType":"tmdb","movieId":78,"title":"Nekojiru-sou","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5933}],"secondaryYearSourceId":0,"sortTitle":"cat soup","sizeOnDisk":532975822,"status":"released","overview":"The surreal black comedy follows Nyatta, an anthropomorphic kitten, on his travel to the land of the dead and back in an effort to save his sister's soul.","inCinemas":"2001-02-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/78\/poster.jpg?lastWrite=637534963464807683","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cB3YjrMY5IutYsRGf2NG5mAKBMY.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/78\/fanart.jpg?lastWrite=637483073674323490","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/neNDyh7QrVlOAvGg3IG2Ss81yje.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"wRu-jX4tASQ","studio":"Sony PCL","path":"\/movies\/Cat Soup (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Cat Soup (2001)","runtime":34,"cleanTitle":"catsoup","imdbId":"tt0385586","tmdbId":25078,"titleSlug":"25078","genres":["Fantasy","Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":87,"value":7},"movieFile":{"movieId":78,"relativePath":"Cat Soup.2001-SDTV.mkv","path":"\/movies\/Cat Soup (2001)\/Cat Soup.2001-SDTV.mkv","size":532975822,"dateAdded":"2018-10-11T15:08:33Z","indexerFlags":0,"quality":{"quality":{"id":1,"name":"SDTV","source":"tv","resolution":480,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1757345,"videoCodec":"h264","videoFps":29.97,"resolution":"704x480","runTime":"32:31","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":65},"id":78},{"title":"Cloudy with a Chance of Meatballs","originalTitle":"Cloudy with a Chance of Meatballs","alternateTitles":[{"sourceType":"tmdb","movieId":79,"title":"\u041e\u0431\u043b\u0430\u0447\u043d\u043e, \u0441 \u043a\u044e\u0444\u0442\u0435\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2286},{"sourceType":"tmdb","movieId":79,"title":"Cloudy with a Chance of Meatballs 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2287},{"sourceType":"tmdb","movieId":79,"title":"Lluvia de Hamburguesas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2288},{"sourceType":"tmdb","movieId":79,"title":"\u5929\u964d\u7f8e\u98df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2289},{"sourceType":"tmdb","movieId":79,"title":"\u7f8e\u98df\u98ce\u7403","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2290},{"sourceType":"tmdb","movieId":79,"title":"\u98df\u7834\u5929\u60ca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2291},{"sourceType":"tmdb","movieId":79,"title":"Taevast sajab lihapalle","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2292},{"sourceType":"tmdb","movieId":79,"title":"Lluvia de alb\u00f3ndigas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2293},{"sourceType":"tmdb","movieId":79,"title":"Temp\u00eate de boulettes g\u00e9antes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2294},{"sourceType":"tmdb","movieId":79,"title":"\u0392\u03c1\u03ad\u03c7\u03b5\u03b9 \u039a\u03b5\u03c6\u03c4\u03ad\u03b4\u03b5\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2295},{"sourceType":"tmdb","movieId":79,"title":"Obla\u010dno s \u0107uftama","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2296},{"sourceType":"tmdb","movieId":79,"title":"Der\u00fclt \u00e9gb\u0151l fas\u00edrt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2297},{"sourceType":"tmdb","movieId":79,"title":"\u05d2\u05e9\u05dd \u05e9\u05dc \u05e4\u05dc\u05d0\u05e4\u05dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2298},{"sourceType":"tmdb","movieId":79,"title":"Piovono Polpette 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2299},{"sourceType":"tmdb","movieId":79,"title":"\ud558\ub298\uc5d0\uc11c \uc74c\uc2dd\uc774 \ub0b4\ub9b0\ub2e4\uba74","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2300},{"sourceType":"tmdb","movieId":79,"title":"Het regent gehaktballen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2301},{"sourceType":"tmdb","movieId":79,"title":"Det regner kj\u00f8ttboller","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2302},{"sourceType":"tmdb","movieId":79,"title":"\u041e\u0431\u043b\u0430\u0447\u043d\u043e, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b \u043e\u0441\u0430\u0434\u043a\u0438 \u0432 \u0432\u0438\u0434\u0435 \u0444\u0440\u0438\u043a\u0430\u0434\u0435\u043b\u0435\u043a!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2303},{"sourceType":"tmdb","movieId":79,"title":"Oblacno, sem-tam fasirky","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2304},{"sourceType":"tmdb","movieId":79,"title":"K\u00f6fte Ya\u011fmuru","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2305},{"sourceType":"tmdb","movieId":79,"title":"\u98df\u7834\u5929\u9a5a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2306}],"secondaryYearSourceId":0,"sortTitle":"cloudy with chance meatballs","sizeOnDisk":7044876507,"status":"released","overview":"Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?","inCinemas":"2009-09-17T00:00:00Z","physicalRelease":"2010-05-26T00:00:00Z","digitalRelease":"2012-01-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/79\/poster.jpg?lastWrite=637241983071059585","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qhOhIKf7QEyQ5dMrRUqs5eTX1Oq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/79\/fanart.jpg?lastWrite=637653455548609735","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iIvtWOkRgzprh6PRPEdnEcwGyM0.jpg"}],"website":"http:\/\/www.cloudywithachanceofmeatballs.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"5kQnlBW02tI","studio":"Sony Pictures Animation","path":"\/movies\/Cloudy with a Chance of Meatballs (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Cloudy with a Chance of Meatballs (2009)","runtime":90,"cleanTitle":"cloudywithchancemeatballs","imdbId":"tt0844471","tmdbId":22794,"titleSlug":"22794","certification":"PG","genres":["Animation","Comedy","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4515,"value":6.6},"movieFile":{"movieId":79,"relativePath":"Cloudy with a Chance of Meatballs.2009-Bluray-1080p.mkv","path":"\/movies\/Cloudy with a Chance of Meatballs (2009)\/Cloudy with a Chance of Meatballs.2009-Bluray-1080p.mkv","size":7044876507,"dateAdded":"2018-10-12T16:41:38Z","sceneName":"Cloudy.with.a.Chance.of.Meatballs.2009.1080p.BluRay.x264-METiS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8939000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:29:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"METiS","edition":"","id":230},"collection":{"name":"Cloudy with a Chance of Meatballs Collection","tmdbId":177467,"images":[]},"id":79},{"title":"Coherence","originalTitle":"Coherence","alternateTitles":[{"sourceType":"tmdb","movieId":80,"title":"\u76f8\u5e72\u6027","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3995},{"sourceType":"tmdb","movieId":80,"title":"\u76f8\u5e72\u6548\u5e94","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3996},{"sourceType":"tmdb","movieId":80,"title":"\u0421\u043b\u0430\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3999},{"sourceType":"tmdb","movieId":80,"title":"Coherence \u2013 Nichts ist Zufall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5462}],"secondaryYearSourceId":0,"sortTitle":"coherence","sizeOnDisk":4093671584,"status":"released","overview":"On the night of an astronomical anomaly, eight friends at a dinner party experience a troubling chain of reality bending events.","inCinemas":"2013-09-19T00:00:00Z","physicalRelease":"2013-09-19T00:00:00Z","digitalRelease":"2014-08-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/80\/poster.jpg?lastWrite=637621451564144641","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nhigAje0Bf9YnSwJQ9zwXEAchOe.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/80\/fanart.jpg?lastWrite=637632694465608702","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/utghtkDDOhwEDS7r9hhRhn7Wneg.jpg"}],"website":"https:\/\/www.coherencethemovie.com","year":2013,"hasFile":true,"youTubeTrailerId":"Xmntaa54ezw","studio":"Bellanova Films","path":"\/movies\/Coherence (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Coherence (2013)","runtime":89,"cleanTitle":"coherence","imdbId":"tt2866360","tmdbId":220289,"titleSlug":"220289","certification":"NR","genres":["Thriller","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1946,"value":7.3},"movieFile":{"movieId":80,"relativePath":"Coherence.2013-Bluray-1080p.mkv","path":"\/movies\/Coherence (2013)\/Coherence.2013-Bluray-1080p.mkv","size":4093671584,"dateAdded":"2019-08-20T07:35:17Z","sceneName":"Coherence (2013) (1080p BluRay x265 HEVC 10bit AAC 5.1 MONOLITH)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":334333,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ German","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":5367337,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x816","runTime":"1:27:56","scanType":"","subtitles":"German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":589},"id":80},{"title":"Constantine","originalTitle":"Constantine","alternateTitles":[{"sourceType":"tmdb","movieId":81,"title":"Konstantin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4534},{"sourceType":"tmdb","movieId":81,"title":"Konstant\u00ednos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4535},{"sourceType":"tmdb","movieId":81,"title":"Konstantin: Povelitel' t'my","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4536},{"sourceType":"tmdb","movieId":81,"title":"Konstantyn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4537},{"sourceType":"tmdb","movieId":81,"title":"\u5730\u72f1\u795e\u63a2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6174}],"secondaryYearSourceId":0,"sortTitle":"constantine","sizeOnDisk":2473544713,"status":"released","overview":"John Constantine has literally been to Hell and back. When he teams up with a policewoman to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists beneath the landscape of contemporary Los Angeles.","inCinemas":"2005-02-08T00:00:00Z","physicalRelease":"2005-07-19T00:00:00Z","digitalRelease":"2008-05-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/81\/poster.jpg?lastWrite=637310296546931997","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vPYgvd2MwHlxTamAOjwVQp4qs1W.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/81\/fanart.jpg?lastWrite=637644804387241051","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tIG8FwHRiHLOlWJdizp2oxdkSL2.jpg"}],"website":"http:\/\/constantinemovie.warnerbros.com\/","year":2005,"hasFile":true,"youTubeTrailerId":"inKKja-rbXU","studio":"Village Roadshow Pictures","path":"\/movies\/Constantine (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Constantine (2005)","runtime":121,"cleanTitle":"constantine","imdbId":"tt0360486","tmdbId":561,"titleSlug":"561","certification":"R","genres":["Fantasy","Action","Horror"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5062,"value":7},"movieFile":{"movieId":81,"relativePath":"Constantine.2005-Bluray-1080p.mp4","path":"\/movies\/Constantine (2005)\/Constantine.2005-Bluray-1080p.mp4","size":2473544713,"dateAdded":"2018-10-12T20:18:16Z","sceneName":"Constantine.2005.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224002,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x794","runTime":"2:00:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":258},"id":81},{"title":"Contact","originalTitle":"Contact","alternateTitles":[{"sourceType":"tmdb","movieId":82,"title":"\u63a5\u89e6\u672a\u6765","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4001},{"sourceType":"tmdb","movieId":82,"title":"Contacto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6116}],"secondaryYearSourceId":0,"sortTitle":"contact","sizeOnDisk":11741804611,"status":"released","overview":"Contact is a science fiction film about an encounter with alien intelligence. Based on the novel by Carl Sagan the film starred Jodie Foster as the one chosen scientist who must make some difficult decisions between her beliefs, the truth, and reality.","inCinemas":"1997-07-11T00:00:00Z","physicalRelease":"1998-04-01T00:00:00Z","digitalRelease":"2002-03-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/82\/poster.jpg?lastWrite=637574747328191236","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bCpMIywuNZeWt3i5UMLEIc0VSwM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/82\/fanart.jpg?lastWrite=637629235448268447","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/x5Z2BjuUfEEwYWZccDwbU9KSEqj.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/contact\/","year":1997,"hasFile":true,"youTubeTrailerId":"Q399v-pMG30","studio":"South Side Amusement Company","path":"\/movies\/Contact (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Contact (1997)","runtime":150,"cleanTitle":"contact","imdbId":"tt0118884","tmdbId":686,"titleSlug":"686","certification":"PG","genres":["Drama","Science Fiction","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3233,"value":7.4},"movieFile":{"movieId":82,"relativePath":"Contact.1997-Bluray-1080p.mkv","path":"\/movies\/Contact (1997)\/Contact.1997-Bluray-1080p.mkv","size":11741804611,"dateAdded":"2018-10-12T18:04:12Z","sceneName":"Contact.1997.1080p.Bluray.x264-HDCLASSiCS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9818000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:29:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HDCLASSiCS","edition":"","id":244},"id":82},{"title":"Coraline","originalTitle":"Coraline","alternateTitles":[{"sourceType":"tmdb","movieId":83,"title":"Coraline 3D","sourceId":14836,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":115},{"sourceType":"tmdb","movieId":83,"title":"Coraline y la puerta secreta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3481},{"sourceType":"tmdb","movieId":83,"title":"\u041a\u043e\u0440\u0430\u043b\u0430\u0439\u043d \u0438 \u0442\u0430\u0439\u043d\u0430\u0442\u0430 \u043d\u0430 \u043e\u0433\u043b\u0435\u0434\u0430\u043b\u043e\u0442\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3482},{"sourceType":"tmdb","movieId":83,"title":"Koralina i Tajna Ogledala","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3483},{"sourceType":"tmdb","movieId":83,"title":"\ucf54\ub810\ub77c\uc778: \ube44\ubc00\uc758 \ubb38","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3484},{"sourceType":"tmdb","movieId":83,"title":"Coraline en de Geheime Deur","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3485},{"sourceType":"tmdb","movieId":83,"title":"Coraline e a Porta Secreta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3486},{"sourceType":"tmdb","movieId":83,"title":"\u041a\u043e\u0440\u0430\u043b\u0438\u043d\u0430 \u0432 \u0421\u0442\u0440\u0430\u043d\u0435 \u041a\u043e\u0448\u043c\u0430\u0440\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3487},{"sourceType":"tmdb","movieId":83,"title":"\u7b2c\u5341\u56db\u9053\u9580","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3488}],"secondaryYearSourceId":0,"sortTitle":"coraline","sizeOnDisk":10179779715,"status":"released","overview":"When Coraline moves to an old house, she feels bored and neglected by her parents. She finds a hidden door with a bricked up passage. During the night, she crosses the passage and finds a parallel world where everybody has buttons instead of eyes, with caring parents and all her dreams coming true. When the Other Mother invites Coraline to stay in her world forever, the girl refuses and finds that the alternate reality where she is trapped is only a trick to lure her.","inCinemas":"2009-02-05T00:00:00Z","physicalRelease":"2009-07-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/83\/poster.jpg?lastWrite=637662971280909701","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gPMh5rsVrDDAYMDbTcz6Up1DQ4z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/83\/fanart.jpg?lastWrite=637662971283349660","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rRpAZOPY3XxMJY65AJ396IWyjU4.jpg"}],"website":"http:\/\/coraline.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"Js7wxoqeVK0","studio":"Focus Features","path":"\/movies\/Coraline (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Coraline (2009)","runtime":100,"cleanTitle":"coraline","imdbId":"tt0327597","tmdbId":14836,"titleSlug":"14836","certification":"PG","genres":["Animation","Family","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5196,"value":7.7},"movieFile":{"movieId":83,"relativePath":"Coraline.2009-Bluray-1080p.mkv","path":"\/movies\/Coraline (2009)\/Coraline.2009-Bluray-1080p.mkv","size":10179779715,"dateAdded":"2018-10-12T18:36:25Z","sceneName":"Coraline.2009.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11979000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:40:36","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":248},"id":83},{"title":"Cowboy Bebop: The Movie","originalTitle":"\u30ab\u30a6\u30dc\u30fc\u30a4\u30d3\u30d0\u30c3\u30d7 \u5929\u56fd\u306e\u6249","alternateTitles":[{"sourceType":"tmdb","movieId":84,"title":"Cowboy Bebop: Knockin' on heaven's door","sourceId":11299,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1222},{"sourceType":"tmdb","movieId":84,"title":"\u8d4f\u91d1\u730e\u4eba\uff1a\u5929\u56fd\u4e4b\u6249","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4903},{"sourceType":"tmdb","movieId":84,"title":"Cowboy Bebop - Il Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4905},{"sourceType":"tmdb","movieId":84,"title":"Cowboy Bebop - Tengoku no Tobira","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4906},{"sourceType":"tmdb","movieId":84,"title":"Kaub\u00f4i bibappu: Tengoku no tobira","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4907},{"sourceType":"tmdb","movieId":84,"title":"\uce74\uc6b0\ubcf4\uc774 \ube44\ubc25: \ucc9c\uad6d\uc758 \ubb38","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4908},{"sourceType":"tmdb","movieId":84,"title":"Kowboj Bebop","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4909},{"sourceType":"tmdb","movieId":84,"title":"\u041a\u043e\u0432\u0431\u043e\u0439 \u0411\u0438\u0431\u043e\u043f: \u0414\u043e\u0441\u0442\u0443\u0447\u0430\u0442\u044c\u0441\u044f \u0434\u043e \u043d\u0435\u0431\u0435\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4910},{"sourceType":"tmdb","movieId":84,"title":"Cowboy Bebop","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5471}],"secondaryYearSourceId":0,"sortTitle":"cowboy bebop movie","sizeOnDisk":2359171316,"status":"released","overview":"The year is 2071. Following a terrorist bombing, a deadly virus is released on the populace of Mars and the government has issued the largest bounty in history, for the capture of whoever is behind it. The bounty hunter crew of the spaceship Bebop; Spike, Faye, Jet and Ed, take the case with hopes of cashing in the bounty. However, the mystery surrounding the man responsible, Vincent, goes deeper than they ever imagined, and they aren't the only ones hunting him.","inCinemas":"2001-09-01T00:00:00Z","physicalRelease":"2005-01-06T00:00:00Z","digitalRelease":"2004-04-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/84\/poster.jpg?lastWrite=637621451579904372","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7i9sIU6ASTw2zwvvNuM0FJzmpKs.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/84\/fanart.jpg?lastWrite=637462475821832499","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gu9VOyEmCLQZ0yPweOY0zIOgV3.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"DX9rKumF5Ao","studio":"TriStar Pictures","path":"\/movies\/Cowboy Bebop - The Movie (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Cowboy Bebop - The Movie (2001)","runtime":115,"cleanTitle":"cowboybebopmovie","imdbId":"tt0275277","tmdbId":11299,"titleSlug":"11299","certification":"R","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":512,"value":7.7},"movieFile":{"movieId":84,"relativePath":"Cowboy Bebop The Movie.2001-Bluray-1080p.mp4","path":"\/movies\/Cowboy Bebop - The Movie (2001)\/Cowboy Bebop The Movie.2001-Bluray-1080p.mp4","size":2359171316,"dateAdded":"2019-12-12T06:33:26Z","sceneName":"Cowboy.Bebop.The.Movie.2001.DUBBED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1040","runTime":"1:55:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":640},"id":84},{"title":"Dead Leaves","originalTitle":"\u30c7\u30c3\u30c9\u3000\u30ea\u30fc\u30d6\u30b9","alternateTitles":[{"sourceType":"tmdb","movieId":85,"title":"Deddo Ribusu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5112},{"sourceType":"tmdb","movieId":85,"title":"Negyvi Lapai: Kosminis Kal\u0117jimas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5113},{"sourceType":"tmdb","movieId":85,"title":"\u041c\u0451\u0440\u0442\u0432\u044b\u0435 \u043b\u0438\u0441\u0442\u044c\u044f: \u0437\u0432\u0451\u0437\u0434\u043d\u0430\u044f \u0442\u044e\u0440\u044f\u0433\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5114}],"secondaryYearSourceId":0,"sortTitle":"dead leaves","sizeOnDisk":2390879804,"status":"released","overview":"Pandy and Retro awaken naked on Earth with no recollection of their past. They embark on a crime spree in search of food and clothing, but are captured by authorities and sent to the infamous lunar penitentiary named Dead Leaves.","physicalRelease":"2004-07-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/85\/poster.jpg?lastWrite=637617991792900761","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5irpD2SDdOHThISEPMwnNO1n6LB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/85\/fanart.jpg?lastWrite=637636154839450222","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oucIHGCO4BUhYC1Cj1oUCJQHBZk.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"","studio":"Production I.G","path":"\/movies\/Dead Leaves (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Dead Leaves (2004)","runtime":52,"cleanTitle":"deadleaves","imdbId":"tt0439533","tmdbId":15981,"titleSlug":"15981","genres":["Animation","Comedy","Crime"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":70,"value":7.1},"movieFile":{"movieId":85,"relativePath":"Dead Leaves.2004-WEBDL-1080p.mkv","path":"\/movies\/Dead Leaves (2004)\/Dead Leaves.2004-WEBDL-1080p.mkv","size":2390879804,"dateAdded":"2019-01-07T00:07:10Z","sceneName":"[U3-Web] DEAD LEAVES (2004) [WEB 1920x1080 HEVC E-AC-3]","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":224000,"audioChannels":2,"audioCodec":"EAC3","audioLanguages":"Japanese \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5208684,"videoCodec":"x265","videoFps":29.97,"resolution":"1920x1080","runTime":"52:28","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"U3-Web","edition":"","id":468},"id":85},{"title":"Divergent","originalTitle":"Divergent","alternateTitles":[{"sourceType":"tmdb","movieId":87,"title":"A S\u00e9rie Divergente - Divergente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2751},{"sourceType":"tmdb","movieId":87,"title":"A S\u00e9rie Divergente 1 - Divergente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2752},{"sourceType":"tmdb","movieId":87,"title":"Divergence","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2753},{"sourceType":"tmdb","movieId":87,"title":"Divergent 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2754},{"sourceType":"tmdb","movieId":87,"title":"Divergente 1 Divergente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5481}],"secondaryYearSourceId":0,"sortTitle":"divergent","sizeOnDisk":10559234595,"status":"released","overview":"In a world divided into factions based on personality types, Tris learns that she's been classified as Divergent and won't fit in. When she discovers a plot to destroy Divergents, Tris and the mysterious Four must find out what makes Divergents dangerous before it's too late.","inCinemas":"2014-03-14T00:00:00Z","physicalRelease":"2014-08-08T00:00:00Z","digitalRelease":"2016-08-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/87\/poster.jpg?lastWrite=637550530936523909","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aNh4Q3iuPKDMPi2SL7GgOpiLukX.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/87\/fanart.jpg?lastWrite=637644804424760354","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ipikQozG6cAtLqhaFqRneA0LI4o.jpg"}],"website":"http:\/\/www.thedivergentseries.movie\/#divergent","year":2014,"hasFile":true,"youTubeTrailerId":"336qJITnDi0","studio":"Summit Entertainment","path":"\/movies\/Divergent (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Divergent (2014)","runtime":139,"cleanTitle":"divergent","imdbId":"tt1840309","tmdbId":157350,"titleSlug":"157350","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":10693,"value":6.9},"movieFile":{"movieId":87,"relativePath":"Divergent.2014-Bluray-1080p.mkv","path":"\/movies\/Divergent (2014)\/Divergent.2014-Bluray-1080p.mkv","size":10559234595,"dateAdded":"2018-10-12T15:53:32Z","sceneName":"Divergent.2014.1080p.BluRay.x264-SPARKS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8571000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:19:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":219},"collection":{"name":"Divergent Collection","tmdbId":283579,"images":[]},"id":87},{"title":"Evangelion: 2.0 You Can (Not) Advance","originalTitle":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248\uff1a\u7834","alternateTitles":[{"sourceType":"tmdb","movieId":88,"title":"Evangelion: 2.22 You Can (Not) Advance","sourceId":22843,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":118},{"sourceType":"tmdb","movieId":88,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1a\u7834","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2350},{"sourceType":"tmdb","movieId":88,"title":"Neon Genesis Evangelion 2.02 You Can (not) Advance","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2352},{"sourceType":"tmdb","movieId":88,"title":"Evangelion Shin Gekijouban: Ha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2353},{"sourceType":"tmdb","movieId":88,"title":"Evangelion Shin Gekij\u014dban: Ha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2354},{"sourceType":"tmdb","movieId":88,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628 : \ud30c(\u7834)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2355},{"sourceType":"tmdb","movieId":88,"title":"Evangelion: 2.0 No Puedes Avanzar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2357},{"sourceType":"tmdb","movieId":88,"title":"Evangelion: 2.22 No Puedes Avanzar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2358},{"sourceType":"tmdb","movieId":88,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 2.0 \u0422\u0438 (\u043d\u0435) \u043f\u0440\u043e\u0439\u0434\u0435\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6106}],"secondaryYearSourceId":0,"sortTitle":"evangelion 2 0 you can not advance","sizeOnDisk":2295774942,"status":"released","overview":"Under constant attack by monstrous creatures called Angels that seek to eradicate humankind, U.N. Special Agency NERV introduces two new EVA pilots to help defend the city of Tokyo-3: the mysterious Makinami Mari Illustrous and the intense Asuka Langley Shikinami. Meanwhile, Gendo Ikari and SEELE proceed with a secret project that involves both Rei and Shinji.","inCinemas":"2009-06-26T00:00:00Z","physicalRelease":"2010-11-23T00:00:00Z","digitalRelease":"2021-08-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/88\/poster.jpg?lastWrite=637505559120000748","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7VLYN2CfJpB6PrcuzDKKqdGSUi6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/88\/fanart.jpg?lastWrite=637611070522808742","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/y7L6LQKiZPlPZYSXqFkxqfB1Te0.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/2_0\/index.html","year":2009,"hasFile":true,"youTubeTrailerId":"CUCOMe2qx0k","studio":"khara","path":"\/movies\/Evangelion - 2.0 You Can (Not) Advance (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Evangelion - 2.0 You Can (Not) Advance (2009)","runtime":112,"cleanTitle":"evangelion20youcannotadvance","imdbId":"tt0860906","tmdbId":22843,"titleSlug":"22843","certification":"NR","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":466,"value":7.9},"movieFile":{"movieId":88,"relativePath":"Evangelion 2.0 You Can (Not) Advance.2009-Bluray-1080p.mp4","path":"\/movies\/Evangelion - 2.0 You Can (Not) Advance (2009)\/Evangelion 2.0 You Can (Not) Advance.2009-Bluray-1080p.mp4","size":2295774942,"dateAdded":"2018-10-12T17:02:14Z","sceneName":"Evangelion.2.22.You.Can.Not.Advance.2009.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:52:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":234},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":88},{"title":"Fate\/stay night: Unlimited Blade Works","originalTitle":"Fate\/stay night UNLIMITED BLADE WORKS","alternateTitles":[{"sourceType":"tmdb","movieId":89,"title":"\u547d\u8fd0\u4e4b\u591c \u65e0\u9650\u5251\u5236 \u5267\u573a\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4788},{"sourceType":"tmdb","movieId":89,"title":"\u5287\u5834\u7248 Fate\/stay night: Unlimited Blade Works","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4789}],"secondaryYearSourceId":0,"sortTitle":"fatestay night unlimited blade works","sizeOnDisk":7041094456,"status":"released","overview":"Shirou Emiya finds himself an unwilling participant in a deadly competition where seven Mages summon heroic spirits as servants to duel each other to the death. They compete for the chance to make a wish from the Holy Grail, which has the power to grant any wish. Shirou is unskilled as a mage and knows nothing of the Holy Grail War, but he and his servant, Saber, enter into a temporary partnership with another Mage, Rin Tohsaka. However, problems arise between Shirou and Rin's servant, Archer, who seems to seriously despise him.","inCinemas":"2010-01-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/89\/poster.jpg?lastWrite=637637884683984778","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7KcP8fSEgA6kioxUJXK8vUiGkJP.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/89\/fanart.jpg?lastWrite=637552260571318135","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kIgkHYmsTSkBl3s8W4hQzvCjADx.jpg"}],"website":"http:\/\/www.fatestaynight.jp\/","year":2010,"hasFile":true,"youTubeTrailerId":"CeQxKAslbtM","studio":"Studio Deen","path":"\/movies\/FateStay Night - Unlimited Blade Works (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/FateStay Night - Unlimited Blade Works (2010)","runtime":107,"cleanTitle":"fatestaynightunlimitedbladeworks","imdbId":"tt1587156","tmdbId":46304,"titleSlug":"46304","genres":["Action","Fantasy","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":38,"value":7},"movieFile":{"movieId":89,"relativePath":"Fate+Stay Night Unlimited Blade Works.2010-Bluray-1080p.mkv","path":"\/movies\/FateStay Night - Unlimited Blade Works (2010)\/Fate+Stay Night Unlimited Blade Works.2010-Bluray-1080p.mkv","size":7041094456,"dateAdded":"2019-02-21T14:25:37Z","sceneName":"Fate.Stay.Night.Unlimited.Blade.Works.2010.PROPER.1080p.BluRay.x264-HAiKU[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5780000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:46:43","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"haiku","edition":"","id":507},"id":89},{"title":"Fear and Loathing in Las Vegas","originalTitle":"Fear and Loathing in Las Vegas","alternateTitles":[{"sourceType":"tmdb","movieId":90,"title":"P\u00e1nico y locura en Las Vegas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4624},{"sourceType":"tmdb","movieId":90,"title":"Strakh i omraza v Las Vegas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4625},{"sourceType":"tmdb","movieId":90,"title":"Angst und Schrecken in Las Vegas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4626},{"sourceType":"tmdb","movieId":90,"title":"F\u00f3vos kai par\u00e1noia sto Las V\u00e9nkas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4627},{"sourceType":"tmdb","movieId":90,"title":"Rasu Begasu o yattsukero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4628},{"sourceType":"tmdb","movieId":90,"title":"Paranoja u Las Vegasu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4629},{"sourceType":"tmdb","movieId":90,"title":"Strakh i nenavist' v Las-Vegase","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4630},{"sourceType":"tmdb","movieId":90,"title":"Strakh i ohyda v Las-Vehasi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4631}],"secondaryYearSourceId":0,"sortTitle":"fear loathing in las vegas","sizeOnDisk":8696629226,"status":"released","overview":"Raoul Duke and his attorney Dr. Gonzo drive a red convertible across the Mojave desert to Las Vegas with a suitcase full of drugs to cover a motorcycle race. As their consumption of drugs increases at an alarming rate, the stoned duo trash their hotel room and fear legal repercussions. Duke begins to drive back to L.A., but after an odd run-in with a cop, he returns to Sin City and continues his wild drug binge.","inCinemas":"1998-05-22T00:00:00Z","physicalRelease":"1999-06-01T00:00:00Z","digitalRelease":"2002-08-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/90\/poster.jpg?lastWrite=637529774861366497","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jwUnGcLBzKNEIzgUUVWAUSwuuBt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/90\/fanart.jpg?lastWrite=637656051594695514","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5onx5RLp6bDu0AhbA4nmbwPzbPW.jpg"}],"website":"","year":1998,"hasFile":true,"youTubeTrailerId":"Zm7r491n-8o","studio":"Summit Entertainment","path":"\/movies\/Fear and Loathing in Las Vegas (1998)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Fear and Loathing in Las Vegas (1998)","runtime":118,"cleanTitle":"fearloathinginlasvegas","imdbId":"tt0120669","tmdbId":1878,"titleSlug":"1878","certification":"R","genres":["Adventure","Drama","Comedy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3425,"value":7.2},"movieFile":{"movieId":90,"relativePath":"Fear and Loathing in Las Vegas.1998-Bluray-1080p.mkv","path":"\/movies\/Fear and Loathing in Las Vegas (1998)\/Fear and Loathing in Las Vegas.1998-Bluray-1080p.mkv","size":8696629226,"dateAdded":"2018-10-12T15:58:00Z","sceneName":"Fear.and.Loathing.in.Las.Vegas.1998.iNTERNAL.1080p.BluRay.x264-MARS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8296634,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:58:13","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MARS","edition":"","id":220},"id":90},{"title":"Fight Club","originalTitle":"Fight Club","alternateTitles":[{"sourceType":"tmdb","movieId":91,"title":"Boen klub","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2361},{"sourceType":"tmdb","movieId":91,"title":"Kl\u00e1b m\u00e1chis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2362},{"sourceType":"tmdb","movieId":91,"title":"Mo'adon Krav","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2363},{"sourceType":"tmdb","movieId":91,"title":"Borila\u010dki klub","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2365},{"sourceType":"tmdb","movieId":91,"title":"Boytsovskiy klub","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2366},{"sourceType":"tmdb","movieId":91,"title":"Biytsivs\u02b9kyy klub","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2367}],"secondaryYearSourceId":0,"sortTitle":"fight club","sizeOnDisk":17798709631,"status":"released","overview":"A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.","inCinemas":"1999-10-15T00:00:00Z","physicalRelease":"2002-10-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/91\/poster.jpg?lastWrite=637533234049599249","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/91\/fanart.jpg?lastWrite=637645669316308350","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rr7E0NoGKxvbkb89eR1GwfoYjpA.jpg"}],"website":"http:\/\/www.foxmovies.com\/movies\/fight-club","year":1999,"hasFile":true,"youTubeTrailerId":"BdJKm16Co6M","studio":"Regency Enterprises","path":"\/movies\/Fight Club (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Fight Club (1999)","runtime":139,"cleanTitle":"fightclub","imdbId":"tt0137523","tmdbId":550,"titleSlug":"550","certification":"R","genres":["Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":22015,"value":8.4},"movieFile":{"movieId":91,"relativePath":"Fight Club.1999-Bluray-1080p.mkv","path":"\/movies\/Fight Club (1999)\/Fight Club.1999-Bluray-1080p.mkv","size":17798709631,"dateAdded":"2018-10-12T17:36:44Z","sceneName":"Fight.Club.1999.REMASTERED.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English \/ English \/ English \/ English","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":14648000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:19:08","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"REMASTERED","id":240},"id":91},{"title":"From Up on Poppy Hill","originalTitle":"\u30b3\u30af\u30ea\u30b3\u5742\u304b\u3089","alternateTitles":[{"sourceType":"tmdb","movieId":92,"title":"Desde la colina de las Amapolas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2985},{"sourceType":"tmdb","movieId":92,"title":"Da colina Kokuriko","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2986},{"sourceType":"tmdb","movieId":92,"title":"\u6765\u81ea\u865e\u7f8e\u4eba\u4e4b\u5761","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2987},{"sourceType":"tmdb","movieId":92,"title":"Der Mohnblumenberg","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2988},{"sourceType":"tmdb","movieId":92,"title":"El tur\u00f3 de les roselles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2989},{"sourceType":"tmdb","movieId":92,"title":"La colina de las amapolas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2990},{"sourceType":"tmdb","movieId":92,"title":"Kukkulan tytt\u00f6, sataman poika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2991},{"sourceType":"tmdb","movieId":92,"title":"La colline aux coquelicots","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2992},{"sourceType":"tmdb","movieId":92,"title":"Fent, a Pipacs-dombon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2993},{"sourceType":"tmdb","movieId":92,"title":"La collina dei papaveri","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2994},{"sourceType":"tmdb","movieId":92,"title":"Coquelicot-zaka kara","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2995},{"sourceType":"tmdb","movieId":92,"title":"From Kokuriko Hill","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2996},{"sourceType":"tmdb","movieId":92,"title":"Kokuriko-zaka kara","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2997},{"sourceType":"tmdb","movieId":92,"title":"\ucf54\ucfe0\ub9ac\ucf54 \uc5b8\ub355\uc5d0\uc11c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2998},{"sourceType":"tmdb","movieId":92,"title":"M\u00f8te p\u00e5 Valmue\u00e5sen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2999},{"sourceType":"tmdb","movieId":92,"title":"A colina das papoilas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3000},{"sourceType":"tmdb","movieId":92,"title":"\u0421\u043e \u0441\u043a\u043b\u043e\u043d\u043e\u0432 \u041a\u043e\u043a\u0443\u0440\u0438\u043a\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3001},{"sourceType":"tmdb","movieId":92,"title":"Uppe p\u00e5 vallmokullen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3002},{"sourceType":"tmdb","movieId":92,"title":"\u0417 \u043c\u0430\u043a\u043e\u0432\u0438\u0445 \u0441\u0445\u0438\u043b\u0456\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3003}],"secondaryYearSourceId":0,"sortTitle":"from up on poppy hill","sizeOnDisk":4695014111,"status":"released","overview":"A group of Yokohama students fight to save their school's clubhouse from the wrecking ball during preparations for the 1964 Tokyo Olympic Games. While working there, Umi and Shun gradually become attracted to each other but have to face a sudden trial. Even so, they keep going without fleeing the difficulties of reality.","inCinemas":"2011-07-16T00:00:00Z","physicalRelease":"2013-09-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/92\/poster.jpg?lastWrite=637638749655255233","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rRLYX4RZIyloHSJwvZKAhphAjiB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/92\/fanart.jpg?lastWrite=637617991862659642","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6E7QmlkR5mREhU6x0WiOUF41R6z.jpg"}],"website":"http:\/\/ghibli.jp\/kokurikozaka\/","year":2011,"hasFile":true,"youTubeTrailerId":"k-vfzhfq5JA","studio":"Studio Ghibli","path":"\/movies\/From Up on Poppy Hill (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/From Up on Poppy Hill (2011)","runtime":91,"cleanTitle":"fromuponpoppyhill","imdbId":"tt1798188","tmdbId":83389,"titleSlug":"83389","certification":"PG","genres":["Animation","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1163,"value":7.5},"movieFile":{"movieId":92,"relativePath":"From Up on Poppy Hill.2011-Bluray-1080p.mkv","path":"\/movies\/From Up on Poppy Hill (2011)\/From Up on Poppy Hill.2011-Bluray-1080p.mkv","size":4695014111,"dateAdded":"2018-10-12T16:20:20Z","sceneName":"From.Up.on.Poppy.Hill.2011.1080p.BluRay.x264-NODLABS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.0,"audioCodec":"DTS","audioLanguages":"jap","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5377000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:30:51","scanType":"Progressive","subtitles":"English \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"NODLABS","edition":"","id":224},"id":92},{"title":"Ghost in the Shell: Stand Alone Complex - Solid State Society","originalTitle":"\u653b\u6bbb\u6a5f\u52d5\u968a: Stand Alone Complex - Solid State Society","alternateTitles":[{"sourceType":"tmdb","movieId":94,"title":"Ghost in the Shell S.A.C. Solid State Society","sourceId":18874,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":123},{"sourceType":"tmdb","movieId":94,"title":"\u653b\u58f3\u673a\u52a8\u961f S.A.C. Solid State Society","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3025},{"sourceType":"tmdb","movieId":94,"title":"\u653b\u58f3\u673a\u52a8\u961fSSS","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3026},{"sourceType":"tmdb","movieId":94,"title":"Ghost in the Shell - Solid State Society","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3027},{"sourceType":"tmdb","movieId":94,"title":"\u05d4\u05e8\u05d5\u05d7 \u05e9\u05d1\u05de\u05e2\u05d8\u05e4\u05ea: \u05e1\u05d5\u05dc\u05d9\u05d3 \u05e1\u05d8\u05d9\u05d9\u05d8 \u05e1\u05d5\u05e1\u05d9\u05d9\u05d8\u05d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3028},{"sourceType":"tmdb","movieId":94,"title":"K\u00f4kaku kid\u00f4tai: Stand Alone Complex - Solid State Society","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3029},{"sourceType":"tmdb","movieId":94,"title":"\uacf5\uac01\uae30\ub3d9\ub300 Stand Alone Complex - Solid State Society","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3030},{"sourceType":"tmdb","movieId":94,"title":"\u041f\u0440\u0438\u0437\u0440\u0430\u043a \u0432 \u0434\u043e\u0441\u043f\u0435\u0445\u0430\u0445: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u043e\u0434\u0438\u043d\u043e\u0447\u043a\u0438. \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043a\u0440\u0435\u043f\u043a\u043e\u0433\u043e \u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3031},{"sourceType":"tmdb","movieId":94,"title":"\u653b\u6bbc\u6a5f\u52d5\u968a S.A.C. Solid State Society","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3032},{"sourceType":"tmdb","movieId":94,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043b\u0430\u0434\u0443\u043d\u043a\u0443: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u0441\u0430\u043c\u0456\u0442\u043d\u0438\u043a\u0430 - \u0421\u0443\u0441\u043f\u0456\u043b\u044c\u0441\u0442\u0432\u043e \u0441\u043f\u0430\u044f\u043d\u043e\u0433\u043e \u0441\u0442\u0430\u043d\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3033},{"sourceType":"tmdb","movieId":94,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456: \u0421.\u0421. - \u0421.\u0421.\u0421.","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3034},{"sourceType":"tmdb","movieId":94,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u0441\u0430\u043c\u0456\u0442\u043d\u0438\u043a\u0430 - \u0422\u0432\u0435\u0440\u0434\u043e\u0442\u0456\u043b\u0435 \u0441\u0443\u0441\u043f\u0456\u043b\u044c\u0441\u0442\u0432\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3035},{"sourceType":"tmdb","movieId":94,"title":"\u0414\u0443\u0445 \u0443 \u043b\u0430\u0442\u0430\u0445: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u0441\u0430\u043c\u0456\u0442\u043d\u0438\u043a\u0430 - \u0421\u0443\u0441\u043f\u0456\u043b\u044c\u0441\u0442\u0432\u043e \u0441\u043f\u0430\u044f\u043d\u043e\u0433\u043e \u0441\u0442\u0430\u043d\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3036},{"sourceType":"tmdb","movieId":94,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0432 \u043b\u0430\u0442\u0430\u0445: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u0441\u0430\u043c\u0456\u0442\u043d\u0438\u043a\u0430 - \u0421\u0443\u0441\u043f\u0456\u043b\u044c\u0441\u0442\u0432\u043e \u0441\u043f\u0430\u044f\u043d\u043e\u0433\u043e \u0441\u0442\u0430\u043d\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3037},{"sourceType":"tmdb","movieId":94,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u0431\u0440\u043e\u043d\u0456: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u0441\u0430\u043c\u0456\u0442\u043d\u0438\u043a\u0430 - \u0421\u0443\u0441\u043f\u0456\u043b\u044c\u0441\u0442\u0432\u043e \u0441\u043f\u0430\u044f\u043d\u043e\u0433\u043e \u0441\u0442\u0430\u043d\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3038},{"sourceType":"tmdb","movieId":94,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u043b\u0430\u0442\u0430\u0445: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u0441\u0430\u043c\u0456\u0442\u043d\u0438\u043a\u0430 - \u0421\u0443\u0441\u043f\u0456\u043b\u044c\u0441\u0442\u0432\u043e \u0441\u043f\u0430\u044f\u043d\u043e\u0433\u043e \u0441\u0442\u0430\u043d\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3039}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell stand alone complex solid state society","sizeOnDisk":471893311,"status":"released","overview":"The story takes place in the year 2034, two years after the events in Ghost in the Shell: S.A.C. 2nd GIG. Female cyborg Major Motoko Kusanagi has left Public Security Section 9, an elite counter-terrorist and anti-crime unit specializing in cyber-warfare, which has expanded to a team of 20 field operatives with Togusa acting as the field lead.","inCinemas":"2007-09-01T00:00:00Z","digitalRelease":"2006-09-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/94\/poster.jpg?lastWrite=637557449286405563","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/Ah6chL2eSxhks4AVyyoZebK4LUo.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/94\/fanart.jpg?lastWrite=637622316635109104","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2pm8Er4VtlJvtXNsUVD7Lx7Bg9N.jpg"}],"website":"http:\/\/production-ig.com\/contents\/works_sp\/47_\/s00_\/000481.html","year":2007,"hasFile":true,"youTubeTrailerId":"JFwwv8FvLgU","studio":"Production I.G","path":"\/movies\/Ghost in the Shell - Stand Alone Complex - Solid State Society (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell - Stand Alone Complex - Solid State Society (2007)","runtime":105,"cleanTitle":"ghostinshellstandalonecomplexsolidstatesociety","imdbId":"tt0856797","tmdbId":18874,"titleSlug":"18874","certification":"PG","genres":["Animation","Action","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":165,"value":7.6},"movieFile":{"movieId":94,"relativePath":"Ghost in the Shell Stand Alone Complex - Solid State Society.2006-HDTV-720p.m4v","path":"\/movies\/Ghost in the Shell - Stand Alone Complex - Solid State Society (2007)\/Ghost in the Shell Stand Alone Complex - Solid State Society.2006-HDTV-720p.m4v","size":471893311,"dateAdded":"2018-10-11T15:09:06Z","indexerFlags":0,"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"tv","resolution":720,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":159977,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":415000,"videoCodec":"x264","videoFps":29.97,"resolution":"1280x720","runTime":"1:48:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"2ch","edition":"","id":83},"collection":{"name":"Ghost in the Shell: Stand Alone Complex Collection","tmdbId":443996,"images":[]},"id":94},{"title":"Ghost in the Shell: The New Movie","originalTitle":"\u653b\u6bbb\u6a5f\u52d5\u968a \u65b0\u5287\u5834\u7248","alternateTitles":[{"sourceType":"tmdb","movieId":95,"title":"New Ghost in the Shell","sourceId":334376,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":124},{"sourceType":"tmdb","movieId":95,"title":"Ghost in the Shell: Arise \u2212 The Movie","sourceId":334376,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":125},{"sourceType":"tmdb","movieId":95,"title":"Ghost in the Shell: The Rising","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5029},{"sourceType":"tmdb","movieId":95,"title":"Koukaku Kidoutai Shin Gekijouban","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5030},{"sourceType":"tmdb","movieId":95,"title":"\u653b\u6bbb\u6a5f\u52d5\u968a \u65b0\u5287\u5834\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5031},{"sourceType":"tmdb","movieId":95,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5033},{"sourceType":"tmdb","movieId":95,"title":"\u0414\u0443\u0445 \u0443 \u043b\u0430\u0442\u0430\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5035},{"sourceType":"tmdb","movieId":95,"title":"\u0414\u0443\u0445 \u0443 \u043b\u0430\u0442\u0430\u0445: \u041d\u043e\u0432\u0438\u0439 \u0444\u0456\u043b\u044c\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5036},{"sourceType":"tmdb","movieId":95,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0432 \u043b\u0430\u0442\u0430\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5037},{"sourceType":"tmdb","movieId":95,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0432 \u043b\u0430\u0442\u0430\u0445: \u041d\u043e\u0432\u0438\u0439 \u0444\u0456\u043b\u044c\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5038},{"sourceType":"tmdb","movieId":95,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u0431\u0440\u043e\u043d\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5039},{"sourceType":"tmdb","movieId":95,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u0431\u0440\u043e\u043d\u0456: \u041d\u043e\u0432\u0438\u0439 \u0444\u0456\u043b\u044c\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5040},{"sourceType":"tmdb","movieId":95,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u043b\u0430\u0442\u0430\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5041},{"sourceType":"tmdb","movieId":95,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u043b\u0430\u0442\u0430\u0445: \u041d\u043e\u0432\u0438\u0439 \u0444\u0456\u043b\u044c\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5042},{"sourceType":"tmdb","movieId":95,"title":"GHOST_IN_THE_SHELL\uff1aTHE_MOVIE \u653b\u6bbb\u6a5f\u52d5\u968a \u65b0\u5287\u5834\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5782},{"sourceType":"tmdb","movieId":95,"title":"Ghost in the Shell","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5882}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell new movie","sizeOnDisk":11061613113,"status":"released","overview":"When a ghost-infecting virus known as Fire-Starter begins spreading through the system resulting in the assassination of the Japanese Prime Minister, Major Motoko Kusanagi and her elite team of special operatives are called in to track down its source.","inCinemas":"2015-06-20T00:00:00Z","physicalRelease":"2016-07-12T00:00:00Z","digitalRelease":"2017-09-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/95\/poster.jpg?lastWrite=637615397462478368","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/d6TaDCmvX0D2fdeNIxWAR69bhiH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/95\/fanart.jpg?lastWrite=637440854204961505","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iQrO5OXafWgJOYjdVbS8QVJZqP1.jpg"}],"website":"http:\/\/kokaku-a.jp\/","year":2015,"hasFile":true,"youTubeTrailerId":"BkRGHv_e35Q","studio":"Production I.G","path":"\/movies\/Ghost in the Shell - The New Movie (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell - The New Movie (2015)","runtime":100,"cleanTitle":"ghostinshellnewmovie","imdbId":"tt4337072","tmdbId":334376,"titleSlug":"334376","genres":["Science Fiction","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":122,"value":6.6},"movieFile":{"movieId":95,"relativePath":"Ghost in the Shell The New Movie.2015-Bluray-1080p.mkv","path":"\/movies\/Ghost in the Shell - The New Movie (2015)\/Ghost in the Shell The New Movie.2015-Bluray-1080p.mkv","size":11061613113,"dateAdded":"2018-10-12T18:57:27Z","sceneName":"Ghost.in.the.Shell.The.New.Movie.2015.1080p.BluRay.x264-WiKi","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ Chinese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":13500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:39:50","scanType":"Progressive","subtitles":"Chinese \/ Chinese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"WiKi","edition":"","id":253},"collection":{"name":"Ghost In The Shell: Arise Collection","tmdbId":196753,"images":[]},"id":95},{"title":"Ghost in the Shell","originalTitle":"GHOST IN THE SHELL","alternateTitles":[{"sourceType":"tmdb","movieId":96,"title":"Armored Riot Police","sourceId":9323,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":127},{"sourceType":"tmdb","movieId":96,"title":"Ghost in the Shell Movie","sourceId":9323,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":918},{"sourceType":"tmdb","movieId":96,"title":"Ghost in the Shell 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4632},{"sourceType":"tmdb","movieId":96,"title":"Ghost in the Shell: Espectro Virtual","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4633},{"sourceType":"tmdb","movieId":96,"title":"Ghost in the Shell: P\u00e1nc\u00e9lba z\u00e1rt szellem","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4634},{"sourceType":"tmdb","movieId":96,"title":"Lo Spirito nel Guscio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4635},{"sourceType":"tmdb","movieId":96,"title":"GHOST IN THE SHELL - \u653b\u6bbb\u6a5f\u52d5\u968a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4636},{"sourceType":"tmdb","movieId":96,"title":"Koukaku Kidoutai","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4637},{"sourceType":"tmdb","movieId":96,"title":"K\u014dkaku Kid\u014dtai","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4638},{"sourceType":"tmdb","movieId":96,"title":"\u653b\u6bbb\u6a5f\u52d5\u968a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4639},{"sourceType":"tmdb","movieId":96,"title":"Duh u oklopu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4640},{"sourceType":"tmdb","movieId":96,"title":"\u041f\u0440\u0438\u0437\u0440\u0430\u043a \u0432 \u043e\u0431\u043e\u043b\u043e\u0447\u043a\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4641},{"sourceType":"tmdb","movieId":96,"title":"Ghost in the Shell\/Mobile Armored Riot Police","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5403},{"sourceType":"tmdb","movieId":96,"title":"\u653b\u6bbb\u6a5f\u52d5\u968a GHOST IN THE SHELL","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5404},{"sourceType":"tmdb","movieId":96,"title":"Mobile Armored Riot Police","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5405}],"secondaryYear":1996,"secondaryYearSourceId":0,"sortTitle":"ghost in shell","sizeOnDisk":5864223564,"status":"released","overview":"In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.","inCinemas":"1995-11-18T00:00:00Z","physicalRelease":"1995-09-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/96\/poster.jpg?lastWrite=637241983293095825","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9gC88zYUBARRSThcG93MvW14sqx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/96\/fanart.jpg?lastWrite=637476317762012340","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g0pF9jXhPqm6TN3AAMWn0YeYayi.jpg"}],"website":"","year":1995,"hasFile":true,"youTubeTrailerId":"wNtgA5Xfd2s","studio":"Bandai Visual","path":"\/movies\/Ghost in the Shell (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell (1995)","runtime":83,"cleanTitle":"ghostinshell","imdbId":"tt0113568","tmdbId":9323,"titleSlug":"9323","certification":"NR","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2296,"value":7.9},"movieFile":{"movieId":96,"relativePath":"Ghost in the Shell.1995-Bluray-1080p.mkv","path":"\/movies\/Ghost in the Shell (1995)\/Ghost in the Shell.1995-Bluray-1080p.mkv","size":5864223564,"dateAdded":"2018-10-12T18:01:41Z","sceneName":"Ghost.In.The.Shell.1995.1080p.REAL.RERIP.BluRay.x264-MOOVEE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":1,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8023000,"videoCodec":"x264","videoFps":23.976,"resolution":"1856x1080","runTime":"1:26:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MOOVEE","edition":"","id":243},"collection":{"name":"Ghost in the Shell (Animated) Collection","tmdbId":23026,"images":[]},"id":96},{"title":"Ghost in the Shell","originalTitle":"Ghost in the Shell","alternateTitles":[{"sourceType":"tmdb","movieId":97,"title":"Ghost in the Shell 3D","sourceId":315837,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1288},{"sourceType":"tmdb","movieId":97,"title":"\u653b\u58f3\u673a\u52a8\u961f\u771f\u4eba\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3508},{"sourceType":"tmdb","movieId":97,"title":"Moch\u2019veneba Abjarshi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3509},{"sourceType":"tmdb","movieId":97,"title":"Ghost in the Shell El alma de la maquina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5501}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell","sizeOnDisk":31429498380,"status":"released","overview":"In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.","inCinemas":"2017-03-29T00:00:00Z","physicalRelease":"2017-07-25T00:00:00Z","digitalRelease":"2017-07-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/97\/poster.jpg?lastWrite=637241983301175688","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/myRzRzCxdfUWjkJWgpHHZ1oGkJd.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/97\/fanart.jpg?lastWrite=637633559260529421","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rNwWgOyZApaZy9IUKJ4C3tSu8yD.jpg"}],"website":"http:\/\/www.ghostintheshellmovie.com\/","year":2017,"hasFile":true,"youTubeTrailerId":"5XnptKCeaJE","studio":"Weying Galaxy Entertainment","path":"\/movies\/Ghost in the Shell (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell (2017)","runtime":107,"cleanTitle":"ghostinshell","imdbId":"tt1219827","tmdbId":315837,"titleSlug":"315837","certification":"PG-13","genres":["Science Fiction","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":6627,"value":6},"movieFile":{"movieId":97,"relativePath":"Ghost in the Shell.2017-Remux-1080p.mkv","path":"\/movies\/Ghost in the Shell (2017)\/Ghost in the Shell.2017-Remux-1080p.mkv","size":31429498380,"dateAdded":"2018-10-12T16:24:35Z","sceneName":"Ghost.in.the.Shell.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ Portuguese \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:46:56","scanType":"Progressive","subtitles":"English \/ English \/ French \/ French \/ Spanish \/ Spanish \/ Portuguese \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":226},"id":97},{"title":"Ghost in the Shell 2: Innocence","originalTitle":"\u30a4\u30ce\u30bb\u30f3\u30b9","alternateTitles":[{"sourceType":"tmdb","movieId":98,"title":"Ghost In The Shell 2","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":128},{"sourceType":"tmdb","movieId":98,"title":"Inosensu: K\u00f4kaku kid\u00f4tai","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":129},{"sourceType":"tmdb","movieId":98,"title":"Ghost in the Shell II: Innocence","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":130},{"sourceType":"tmdb","movieId":98,"title":"Innocence","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":131},{"sourceType":"tmdb","movieId":98,"title":"Ghost in the Shell II","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":132},{"sourceType":"tmdb","movieId":98,"title":"Mobile Armored Riot Police: Innocence","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":133},{"sourceType":"tmdb","movieId":98,"title":"Ghost in the Shell Movie 2: Innocence","sourceId":12140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":920},{"sourceType":"tmdb","movieId":98,"title":"O Fantasma do Futuro 2: A Inoc\u00eancia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3004},{"sourceType":"tmdb","movieId":98,"title":"\u653b\u58f3\u673a\u52a8\u961f\u5267\u573a\u72482 \u65e0\u7f6a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3005},{"sourceType":"tmdb","movieId":98,"title":"K\u00f4kaku kid\u00f4tai 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3006},{"sourceType":"tmdb","movieId":98,"title":"K\u00f4kaku Kid\u00f4tai 2: Inosensu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3007},{"sourceType":"tmdb","movieId":98,"title":"\u653b\u6bbb\u6a5f\u52d5\u968a \u30a4\u30ce\u30bb\u30f3\u30b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3008},{"sourceType":"tmdb","movieId":98,"title":"Ghost in The Shell 2: Niewinno\u015b\u0107","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3009},{"sourceType":"tmdb","movieId":98,"title":"Cidade Assombrada 2: A Inoc\u00eancia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3010},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0437\u0440\u0430\u043a \u0432 \u0434\u043e\u0441\u043f\u0435\u0445\u0430\u0445 2: \u041d\u0435\u0432\u0438\u043d\u043d\u043e\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3011},{"sourceType":"tmdb","movieId":98,"title":"\u653b\u6bbc\u6a5f\u52d5\u968a2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3012},{"sourceType":"tmdb","movieId":98,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456 2: \u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3013},{"sourceType":"tmdb","movieId":98,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3014},{"sourceType":"tmdb","movieId":98,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456 II: \u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3015},{"sourceType":"tmdb","movieId":98,"title":"\u0414\u0443\u0445 \u0443 \u043b\u0430\u0442\u0430\u0445 2: \u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3016},{"sourceType":"tmdb","movieId":98,"title":"\u0414\u0443\u0445 \u0443 \u043b\u0430\u0442\u0430\u0445 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3017},{"sourceType":"tmdb","movieId":98,"title":"\u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3018},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0432 \u043b\u0430\u0442\u0430\u0445 2: \u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3019},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0432 \u043b\u0430\u0442\u0430\u0445 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3020},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u0431\u0440\u043e\u043d\u0456 2: \u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3021},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u0431\u0440\u043e\u043d\u0456 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3022},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u043b\u0430\u0442\u0430\u0445 2: \u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3023},{"sourceType":"tmdb","movieId":98,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u043b\u0430\u0442\u0430\u0445 II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3024}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell 2 innocence","sizeOnDisk":8529336770,"status":"released","overview":"Groundbreaking director Mamoru Oshii continues to push the boundaries of art and anime with this universally acclaimed cyber thriller following cyborg detective Batou as he tries to unravel the reasons for a murderous robot revolt in the year 2032. A quest for a killer that becomes a mind bending search for the meaning of life.","inCinemas":"2004-03-06T00:00:00Z","physicalRelease":"2006-04-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/98\/poster.jpg?lastWrite=637392434783069798","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1ZJRbLDVr90KLtKdmTT4WZhT26E.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/98\/fanart.jpg?lastWrite=637650859849404694","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gG3NVaD57CEjWwEMD4r3taG8Fsl.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"E3fiFEAe8AQ","studio":"Bandai Visual","path":"\/movies\/Ghost in the Shell 2 - Innocence (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell 2 - Innocence (2004)","runtime":100,"cleanTitle":"ghostinshell2innocence","imdbId":"tt0347246","tmdbId":12140,"titleSlug":"12140","certification":"PG-13","genres":["Animation","Drama","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":571,"value":7.4},"movieFile":{"movieId":98,"relativePath":"Ghost in the Shell 2 Innocence.2004-Bluray-1080p.mkv","path":"\/movies\/Ghost in the Shell 2 - Innocence (2004)\/Ghost in the Shell 2 Innocence.2004-Bluray-1080p.mkv","size":8529336770,"dateAdded":"2018-10-13T06:07:44Z","sceneName":"Ghost.In.The.Shell.2.Innocence.2004.1080p.BluRay.x264-MOOVEE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":768000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9847000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:39:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MOOVEE","edition":"","id":262},"collection":{"name":"Ghost in the Shell (Animated) Collection","tmdbId":23026,"images":[]},"id":98},{"title":"Ghost in the Shell 2.0","originalTitle":"\u653b\u6bbb\u6a5f\u52d5\u968a 2.0","alternateTitles":[{"sourceType":"tmdb","movieId":99,"title":"Ghost in the Shell Movie 2.0","sourceId":14092,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":919},{"sourceType":"tmdb","movieId":99,"title":"O Fantasma do Futuro 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2368},{"sourceType":"tmdb","movieId":99,"title":"GHOST IN THE SHELL (2008)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2369},{"sourceType":"tmdb","movieId":99,"title":"GHOST IN THE SHELL\uff0f\u653b\u6bbb\u6a5f\u52d5\u968a2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2370},{"sourceType":"tmdb","movieId":99,"title":"Ghost In The Sell 2 0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2371},{"sourceType":"tmdb","movieId":99,"title":"\u041f\u0440\u0438\u0437\u0440\u0430\u043a \u0432 \u0434\u043e\u0441\u043f\u0435\u0445\u0430\u0445 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2372},{"sourceType":"tmdb","movieId":99,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043b\u0430\u0434\u0443\u043d\u043a\u0443 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2373},{"sourceType":"tmdb","movieId":99,"title":"\u0414\u0443\u0445 \u0432 \u043e\u0431\u043e\u043b\u043e\u043d\u0446\u0456 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2374},{"sourceType":"tmdb","movieId":99,"title":"\u0414\u0443\u0445 \u0443 \u043b\u0430\u0442\u0430\u0445 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2375},{"sourceType":"tmdb","movieId":99,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0432 \u043b\u0430\u0442\u0430\u0445 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2376},{"sourceType":"tmdb","movieId":99,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u0431\u0440\u043e\u043d\u0456 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2377},{"sourceType":"tmdb","movieId":99,"title":"\u041f\u0440\u0438\u0432\u0438\u0434 \u0443 \u043b\u0430\u0442\u0430\u0445 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2378}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell 2 0","sizeOnDisk":1702752674,"status":"released","overview":"In the year 2029, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop a highly-wanted hacker known as 'The Puppetmaster'. Ghost in the Shell 2.0 is a reproduced version of its original 1995 counterpart. Among a numerous enhancements, for the film's 2.0 release, were a number of scenes were overhauled with 3D animation, visual improvements, and soundtrack rerecorded in 6.1 surround sound.","inCinemas":"2008-07-12T00:00:00Z","physicalRelease":"2013-06-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/99\/poster.jpg?lastWrite=637627505725551831","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4Vzlmvb9EyTnr5kN8mFVCMs8f3I.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/99\/fanart.jpg?lastWrite=637627505726791810","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/saSvNsjyNkAJtpTJkc9QFt1lsSx.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"ZAK2PVKio0g","studio":"Production I.G","path":"\/movies\/Ghost in the Shell 2.0 (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell 2.0 (2008)","runtime":85,"cleanTitle":"ghostinshell20","imdbId":"tt1260502","tmdbId":14092,"titleSlug":"14092","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":276,"value":7.4},"movieFile":{"movieId":99,"relativePath":"Ghost in the Shell 2.0.2008-Bluray-1080p.mp4","path":"\/movies\/Ghost in the Shell 2.0 (2008)\/Ghost in the Shell 2.0.2008-Bluray-1080p.mp4","size":1702752674,"dateAdded":"2018-10-12T19:49:57Z","sceneName":"Ghost.In.The.Shell.2.0.2008.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":7.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1056","runTime":"1:23:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":257},"collection":{"name":"Ghost in the Shell (Animated) Collection","tmdbId":23026,"images":[]},"id":99},{"title":"Ghostbusters","originalTitle":"Ghostbusters","alternateTitles":[{"sourceType":"tmdb","movieId":100,"title":"Ghostbusters 3","sourceId":43074,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":134},{"sourceType":"tmdb","movieId":100,"title":"Cazafantasmas 2016","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3613},{"sourceType":"tmdb","movieId":100,"title":"SOS Fant\u00f4mes 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3614},{"sourceType":"tmdb","movieId":100,"title":"\u05de\u05db\u05e1\u05d7\u05d9 \u05d4\u05e9\u05d3\u05d9\u05dd 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3615},{"sourceType":"tmdb","movieId":100,"title":"Ca\u00e7a-Fantasmas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4999},{"sourceType":"tmdb","movieId":100,"title":"Ghostbusters: Answer the Call","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5614},{"sourceType":"tmdb","movieId":100,"title":"\u9b54\u9b3c\u524b\u661f\uff1a\u9ebb\u8fa3\u7570\u653b\u968a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6186}],"secondaryYearSourceId":0,"sortTitle":"ghostbusters","sizeOnDisk":2739780850,"status":"released","overview":"Following a ghost invasion of Manhattan, paranormal enthusiasts Erin Gilbert and Abby Yates, nuclear engineer Jillian Holtzmann, and subway worker Patty Tolan band together to stop the otherworldly threat.","inCinemas":"2016-07-14T00:00:00Z","physicalRelease":"2016-11-21T00:00:00Z","digitalRelease":"2017-07-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/100\/poster.jpg?lastWrite=637646534501271889","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wJmWliwXIgZOCCVOcGRBhce7xPS.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/100\/fanart.jpg?lastWrite=637645669346427731","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3RWsSQlqzRjsuqSRmoyggy74UA7.jpg"}],"website":"http:\/\/www.ghostbusters.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"KM1OouzGxPM","studio":"Ghost Corps","path":"\/movies\/Ghostbusters (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghostbusters (2016)","runtime":117,"cleanTitle":"ghostbusters","imdbId":"tt1289401","tmdbId":43074,"titleSlug":"43074","certification":"PG-13","genres":["Action","Fantasy","Comedy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5120,"value":5.4},"movieFile":{"movieId":100,"relativePath":"Ghostbusters.2016-Bluray-1080p.mp4","path":"\/movies\/Ghostbusters (2016)\/Ghostbusters.2016-Bluray-1080p.mp4","size":2739780850,"dateAdded":"2018-10-12T16:40:15Z","sceneName":"Ghostbusters.2016.EXTENDED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:13:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"EXTENDED","id":229},"id":100},{"title":"Grave of the Fireflies","originalTitle":"\u706b\u5782\u308b\u306e\u5893","alternateTitles":[{"sourceType":"tmdb","movieId":101,"title":"Tombstone for Fireflies","sourceId":12477,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":137},{"sourceType":"tmdb","movieId":101,"title":"Hotaru no Haka","sourceId":12477,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1094},{"sourceType":"tmdb","movieId":101,"title":"Cemit\u00e9rio dos Vagalumes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2137},{"sourceType":"tmdb","movieId":101,"title":"T\u00famulo dos Vagalumes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2138},{"sourceType":"tmdb","movieId":101,"title":"\u041c\u043e\u0433\u0438\u043b\u0430 \u0441\u0432\u0435\u0442\u043b\u044f\u0447\u043a\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2139},{"sourceType":"tmdb","movieId":101,"title":"\u518d\u89c1\u8424\u706b\u866b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2140},{"sourceType":"tmdb","movieId":101,"title":"Das Grab der Leuchtk\u00e4fer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2141},{"sourceType":"tmdb","movieId":101,"title":"Die letzten Leuchtk\u00e4fer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2142},{"sourceType":"tmdb","movieId":101,"title":"Jaanimardikate haud","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2143},{"sourceType":"tmdb","movieId":101,"title":"Le Tombeau des Lucioles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2144},{"sourceType":"tmdb","movieId":101,"title":"Zoi Gin Jing Fo Cung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2145},{"sourceType":"tmdb","movieId":101,"title":"\u518d\u898b\u87a2\u706b\u87f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2146},{"sourceType":"tmdb","movieId":101,"title":"\u0917\u094d\u0930\u0947\u0935 \u0911\u092b \u092b\u093f\u0930\u0947\u092b\u093c\u094d\u0932\u093f\u090f\u0938","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2147},{"sourceType":"tmdb","movieId":101,"title":"La tomba delle lucciole","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2148},{"sourceType":"tmdb","movieId":101,"title":"Una tomba per le lucciole","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2149},{"sourceType":"tmdb","movieId":101,"title":"\u706b\u5782\u308b\u306e\u5893","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2150},{"sourceType":"tmdb","movieId":101,"title":"\ubc18\ub527\ubd88\uc774\uc758 \ubb34\ub364","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2151},{"sourceType":"tmdb","movieId":101,"title":"Jonvabali\u0173 kapas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2152},{"sourceType":"tmdb","movieId":101,"title":"Graf van de Vuurvliegjes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2153},{"sourceType":"tmdb","movieId":101,"title":"Morm\u00e2ntul Licuricilor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2154},{"sourceType":"tmdb","movieId":101,"title":"\u0633\u064a\u062a\u0627 \u0627\u0644\u062d\u0646\u0648\u0646","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2155},{"sourceType":"tmdb","movieId":101,"title":"Grave of the Fireflies \u0e2a\u0e38\u0e2a\u0e32\u0e19\u0e2b\u0e34\u0e48\u0e07\u0e2b\u0e49\u0e2d\u0e22","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2156},{"sourceType":"tmdb","movieId":101,"title":"\u0e2a\u0e38\u0e2a\u0e32\u0e19\u0e2b\u0e34\u0e48\u0e07\u0e2b\u0e49\u0e2d\u0e22","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2157},{"sourceType":"tmdb","movieId":101,"title":"\u87a2\u706b\u87f2\u4e4b\u5893","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2158},{"sourceType":"tmdb","movieId":101,"title":"C\u0103n h\u1ea7m \u0111om \u0111\u00f3m","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2159},{"sourceType":"tmdb","movieId":101,"title":"M\u1ed9 \u0111om \u0111\u00f3m","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2160},{"sourceType":"tmdb","movieId":101,"title":"O T\u00famulo dos Pirilampos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5058}],"secondaryYearSourceId":0,"sortTitle":"grave fireflies","sizeOnDisk":5864536457,"status":"released","overview":"In the final months of World War II, 14-year-old Seita and his sister Setsuko are orphaned when their mother is killed during an air raid in Kobe, Japan. After a falling out with their aunt, they move into an abandoned bomb shelter. With no surviving relatives and their emergency rations depleted, Seita and Setsuko struggle to survive.","inCinemas":"1988-04-16T00:00:00Z","physicalRelease":"1991-09-02T00:00:00Z","digitalRelease":"2019-12-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/101\/poster.jpg?lastWrite=637621451726701867","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qG3RYlIVpTYclR9TYIsy8p7m7AT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/101\/fanart.jpg?lastWrite=637621451727861847","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/x5SRTwGtATzvFjRZXJxmitfqH4y.jpg"}],"website":"","year":1988,"hasFile":true,"youTubeTrailerId":"4vPeTSRd580","studio":"Studio Ghibli","path":"\/movies\/Grave of the Fireflies (1988)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Grave of the Fireflies (1988)","runtime":89,"cleanTitle":"gravefireflies","imdbId":"tt0095327","tmdbId":12477,"titleSlug":"12477","genres":["Animation","Drama","War"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3660,"value":8.4},"movieFile":{"movieId":101,"relativePath":"Grave of the Fireflies.1988-Bluray-1080p.mkv","path":"\/movies\/Grave of the Fireflies (1988)\/Grave of the Fireflies.1988-Bluray-1080p.mkv","size":5864536457,"dateAdded":"2018-10-12T12:19:56Z","sceneName":"Grave.of.the.Fireflies.1988.1080p.BluRay.x264-PSYCHD","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"jap","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7324000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:28:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"PSYCHD","edition":"","id":217},"id":101},{"title":"Gravity","originalTitle":"Gravity","alternateTitles":[{"sourceType":"tmdb","movieId":102,"title":"Gravity 3D","sourceId":49047,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":138},{"sourceType":"tmdb","movieId":102,"title":"Gravitatsioon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2162},{"sourceType":"tmdb","movieId":102,"title":"Ko'akh Meshikha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2164},{"sourceType":"tmdb","movieId":102,"title":"\u05d2\u05e8\u05d0\u05d1\u05d9\u05d8\u05d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2165},{"sourceType":"tmdb","movieId":102,"title":"\u05d2\u05e8\u05d1\u05d9\u05d8\u05d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2166},{"sourceType":"tmdb","movieId":102,"title":"\u05db\u05d5\u05d7 \u05de\u05e9\u05d9\u05db\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2167},{"sourceType":"tmdb","movieId":102,"title":"Gravity: Misiune in spatiu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2169},{"sourceType":"tmdb","movieId":102,"title":"\u0413\u0440\u0430\u0432i\u0442\u0430\u0446i\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2171}],"secondaryYearSourceId":0,"sortTitle":"gravity","sizeOnDisk":23875358714,"status":"released","overview":"Dr. Ryan Stone, a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.","inCinemas":"2013-10-03T00:00:00Z","physicalRelease":"2014-01-29T00:00:00Z","digitalRelease":"2018-03-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/102\/poster.jpg?lastWrite=637366496183414995","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wmUeEacsFZzDndaeOtNNmy26rYJ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/102\/fanart.jpg?lastWrite=637641344212276928","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/a2n6bKD7qhCPCAEALgsAhWOAQcc.jpg"}],"website":"http:\/\/gravitymovie.warnerbros.com","year":2013,"hasFile":true,"youTubeTrailerId":"OiTiKOy59o4","studio":"Esperanto Filmoj","path":"\/movies\/Gravity (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Gravity (2013)","runtime":91,"cleanTitle":"gravity","imdbId":"tt1454468","tmdbId":49047,"titleSlug":"49047","certification":"PG-13","genres":["Science Fiction","Thriller","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":12558,"value":7.2},"movieFile":{"movieId":102,"relativePath":"Gravity.2013-Remux-1080p.mkv","path":"\/movies\/Gravity (2013)\/Gravity.2013-Remux-1080p.mkv","size":23875358714,"dateAdded":"2018-10-12T11:40:00Z","sceneName":"Gravity.2013.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":8,"audioCodec":"DTS","audioLanguages":"English \/ English \/ English \/ English \/ French \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese","audioStreamCount":11,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:30:58","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":213},"id":102},{"title":"Guardians of the Galaxy","originalTitle":"Guardians of the Galaxy","alternateTitles":[{"sourceType":"tmdb","movieId":103,"title":"G.O.T.G.","sourceId":118340,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":142},{"sourceType":"tmdb","movieId":103,"title":"Marvel's Guardians of the Galaxy","sourceId":118340,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":143},{"sourceType":"tmdb","movieId":103,"title":"\ub9c8\ube14 \uac00\ub514\uc5b8\uc988 \uc624\ube0c \uac24\ub7ed\uc2dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4239},{"sourceType":"tmdb","movieId":103,"title":"\u0421\u0442\u0440\u0430\u0436\u0438 \u0433\u0430\u043ba\u043a\u0442\u0438\u043a\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5406},{"sourceType":"tmdb","movieId":103,"title":"Marvel Studios' Guardians of the Galaxy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5895}],"secondaryYearSourceId":0,"sortTitle":"guardians galaxy","sizeOnDisk":30186345249,"status":"released","overview":"Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.","inCinemas":"2014-07-30T00:00:00Z","physicalRelease":"2014-12-01T00:00:00Z","digitalRelease":"2015-04-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/103\/poster.jpg?lastWrite=637641344228396630","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/r7vmZjiyZw9rpJMQJdXpjgiCOk9.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/103\/fanart.jpg?lastWrite=637664701966029081","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ko4N6wWp0UYlMmsVyfIfLyRAZtP.jpg"}],"website":"http:\/\/marvel.com\/guardians","year":2014,"hasFile":true,"youTubeTrailerId":"3CqymRQ1uUU","studio":"Marvel Studios","path":"\/movies\/Guardians of the Galaxy (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Guardians of the Galaxy (2014)","runtime":121,"cleanTitle":"guardiansgalaxy","imdbId":"tt2015381","tmdbId":118340,"titleSlug":"118340","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":23029,"value":7.9},"movieFile":{"movieId":103,"relativePath":"Guardians of the Galaxy.2014-Remux-1080p.mkv","path":"\/movies\/Guardians of the Galaxy (2014)\/Guardians of the Galaxy.2014-Remux-1080p.mkv","size":30186345249,"dateAdded":"2018-10-12T17:49:08Z","sceneName":"Guardians.of.the.Galaxy.2014.1080p.IMAX.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ Spanish \/ English","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:00:50","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"IMAX","id":242},"collection":{"name":"Guardians of the Galaxy Collection","tmdbId":284433,"images":[]},"id":103},{"title":"Guardians of the Galaxy Vol. 2","originalTitle":"Guardians of the Galaxy Vol. 2","alternateTitles":[{"sourceType":"tmdb","movieId":104,"title":"Guardians of the Galaxy Volume 2","sourceId":283995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":139},{"sourceType":"tmdb","movieId":104,"title":"Marvel's Guardians of the Galaxy Vol. 2","sourceId":283995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1274},{"sourceType":"tmdb","movieId":104,"title":"Guardianes de la galaxia 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4611},{"sourceType":"tmdb","movieId":104,"title":"Les Gardiens de la Galaxie 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4613},{"sourceType":"tmdb","movieId":104,"title":"\uac00\ub514\uc5b8\uc988 \uc624\ube0c \uac24\ub7ed\uc2dc 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4616},{"sourceType":"tmdb","movieId":104,"title":"\ub9c8\ube14 \uac00\ub514\uc5b8\uc988 \uc624\ube0c \uac24\ub7ed\uc2dc 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4617},{"sourceType":"tmdb","movieId":104,"title":"Galaktikos serg\u0117tojai 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4618},{"sourceType":"tmdb","movieId":104,"title":"\u0421\u0442\u0440\u0430\u0436\u0438 \u0413\u0430\u043b\u0430\u043a\u0442\u0438\u043a\u0438 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4620},{"sourceType":"tmdb","movieId":104,"title":"Galaktika qo'riqchilari 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4622},{"sourceType":"tmdb","movieId":104,"title":"Rojtar\u00ebt e galaktik\u00ebs v\u00ebll. 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4992},{"sourceType":"tmdb","movieId":104,"title":"\u0421\u0442\u0440\u0430\u0436\u0438 \u0413\u0430\u043b\u0430\u043a\u0442\u0438\u043a\u0438 \u0427\u0430\u0441\u0442\u044c 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5239},{"sourceType":"tmdb","movieId":104,"title":"\u0421\u0442\u0440\u0430\u0436\u0438 \u0413\u0430\u043b\u0430\u043a\u0442\u0438\u043a\u0438. \u0427a\u0441\u0442\u044c 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5407},{"sourceType":"tmdb","movieId":104,"title":"Marvel Studios' Guardians of the Galaxy Vol. 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5896},{"sourceType":"tmdb","movieId":104,"title":"\u9280\u6cb3\u5b88\u8b77\u968a2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6239},{"sourceType":"tmdb","movieId":104,"title":"Guardians of the Galaxy 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6244},{"sourceType":"tmdb","movieId":104,"title":"\u661f\u969b\u7570\u653b\u968a2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6245},{"sourceType":"tmdb","movieId":104,"title":"\u94f6\u62a42","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6246}],"secondaryYearSourceId":0,"sortTitle":"guardians galaxy vol 2","sizeOnDisk":36299587835,"status":"released","overview":"The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.","inCinemas":"2017-04-19T00:00:00Z","physicalRelease":"2017-08-22T00:00:00Z","digitalRelease":"2017-08-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/104\/poster.jpg?lastWrite=637664702021868386","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/y4MBh0EjBlMuOzv9axM4qJlmhzz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/104\/fanart.jpg?lastWrite=637641344251116210","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aJn9XeesqsrSLKcHfHP4u5985hn.jpg"}],"website":"http:\/\/marvel.com\/movies\/movie\/221\/guardians_of_the_galaxy_vol_2","year":2017,"hasFile":true,"youTubeTrailerId":"wUn05hdkhjM","studio":"Marvel Studios","path":"\/movies\/Guardians of the Galaxy Vol. 2 (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Guardians of the Galaxy Vol. 2 (2017)","runtime":137,"cleanTitle":"guardiansgalaxyvol2","imdbId":"tt3896198","tmdbId":283995,"titleSlug":"283995","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":17055,"value":7.6},"movieFile":{"movieId":104,"relativePath":"Guardians of the Galaxy Vol. 2.2017-Remux-1080p.mkv","path":"\/movies\/Guardians of the Galaxy Vol. 2 (2017)\/Guardians of the Galaxy Vol. 2.2017-Remux-1080p.mkv","size":36299587835,"dateAdded":"2018-10-12T22:59:54Z","sceneName":"Guardians.of.the.Galaxy.Vol.2.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:15:46","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ English \/ French \/ Spanish \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":261},"collection":{"name":"Guardians of the Galaxy Collection","tmdbId":284433,"images":[]},"id":104},{"title":"Hackers","originalTitle":"Hackers","alternateTitles":[{"sourceType":"tmdb","movieId":105,"title":"Cybernet","sourceId":10428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":144},{"sourceType":"tmdb","movieId":105,"title":"Hackers, piratas informa\u0301ticos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4303},{"sourceType":"tmdb","movieId":105,"title":"Hakerzy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4304},{"sourceType":"tmdb","movieId":105,"title":"\u7db2\u8def\u99ed\u5ba2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4305},{"sourceType":"tmdb","movieId":105,"title":"Hackers les pirates du cyberespace","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5148}],"secondaryYearSourceId":0,"sortTitle":"hackers","sizeOnDisk":32426061365,"status":"released","overview":"Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.","inCinemas":"1995-09-14T00:00:00Z","physicalRelease":"2002-10-02T00:00:00Z","digitalRelease":"2002-01-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/105\/poster.jpg?lastWrite=637614532685739996","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qfx2EENW1sOpKNVKLzr7VOhlxkt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/105\/fanart.jpg?lastWrite=637631829976690114","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5UW7k7V7vP1ytrYNux4oT6L0Jdc.jpg"}],"website":"https:\/\/www.mgm.com\/#\/our-titles\/800\/Hackers","year":1995,"hasFile":true,"youTubeTrailerId":"wwcQ--gTHGk","studio":"Suftley","path":"\/movies\/Hackers (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Hackers (1995)","runtime":107,"cleanTitle":"hackers","imdbId":"tt0113243","tmdbId":10428,"titleSlug":"10428","certification":"PG-13","genres":["Action","Crime","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":880,"value":6.3},"movieFile":{"movieId":105,"relativePath":"Hackers.1995-Remux-1080p.mkv","path":"\/movies\/Hackers (1995)\/Hackers.1995-Remux-1080p.mkv","size":32426061365,"dateAdded":"2018-10-15T17:18:38Z","sceneName":"Hackers.1995.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4417883,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":36635701,"videoCodec":"AVC","videoFps":24.0,"resolution":"1920x1080","runTime":"1:45:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"REMASTERED","id":359},"id":105},{"title":"Harry Potter and the Chamber of Secrets","originalTitle":"Harry Potter and the Chamber of Secrets","alternateTitles":[{"sourceType":"tmdb","movieId":106,"title":"Khari Pot\u016dr i stayata na tai\u0306nite","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4003},{"sourceType":"tmdb","movieId":106,"title":"\u54c8\u5229\u6ce2\u7279\u4e0e\u5bc6\u5ba4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4005},{"sourceType":"tmdb","movieId":106,"title":"O Ch\u00e1ri P\u00f3ter kai i K\u00e1mara me ta Mystik\u00e1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4007},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter dan Kamar Rahasia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4008},{"sourceType":"tmdb","movieId":106,"title":"Harii Pott\u00e2 to himitsu no heya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4009},{"sourceType":"tmdb","movieId":106,"title":"Hari Poter i Dvorana tajni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4011},{"sourceType":"tmdb","movieId":106,"title":"Garri Potter i Tainaya komnata","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4012},{"sourceType":"tmdb","movieId":106,"title":"Harri Potter i tayemna kimnata","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4013},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter 2 - Harry Potter und die Kammer des Schreckens","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4848},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5207},{"sourceType":"tmdb","movieId":106,"title":"\u54c8\u5229\u6ce2\u72792-\u6d88\u5931\u7684\u5bc6\u5ba4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5712},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter och Hemligheternas kammare 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5743},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter ve sirlar odasi 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":5744},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter a taiemna komnata","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5745},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter y la c\u00e1mara secreta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":31,"name":"Arabic"},"id":6166},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter 2 y la c\u00e1mara secreta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6205},{"sourceType":"tmdb","movieId":106,"title":"Harry Potter (2) et la Chambre des secrets","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6224}],"secondaryYearSourceId":0,"sortTitle":"harry potter chamber secrets","sizeOnDisk":3572292977,"status":"released","overview":"Cars fly, trees fight back, and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry, Ron and Hermione\u2019s magical abilities and courage.","inCinemas":"2002-11-13T00:00:00Z","physicalRelease":"2003-04-11T00:00:00Z","digitalRelease":"2005-11-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/106\/poster.jpg?lastWrite=637241983401933983","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/106\/fanart.jpg?lastWrite=637649994884861929","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1stUIsjawROZxjiCMtqqXqgfZWC.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-chamber-secrets\/","year":2002,"hasFile":true,"youTubeTrailerId":"1bq0qff4iF8","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Chamber of Secrets - Extended Edition (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Chamber of Secrets - Extended Edition (2002)","runtime":161,"cleanTitle":"harrypotterchambersecrets","imdbId":"tt0295297","tmdbId":672,"titleSlug":"672","certification":"PG","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":16929,"value":7.7},"movieFile":{"movieId":106,"relativePath":"Harry Potter and the Chamber of Secrets.2002-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Chamber of Secrets - Extended Edition (2002)\/Harry Potter and the Chamber of Secrets.2002-Bluray-1080p.mp4","size":3572292977,"dateAdded":"2018-10-12T18:08:24Z","sceneName":"Harry.Potter.And.The.Chamber.of.Secrets.2002.EXTENDED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:54:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"EXTENDED","id":245},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":106},{"title":"Harry Potter and the Deathly Hallows: Part 1","originalTitle":"Harry Potter and the Deathly Hallows: Part 1","alternateTitles":[{"sourceType":"tmdb","movieId":107,"title":"Harry Potter en de relieken des doods - Deel 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3751},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7 - Harry Potter et les Reliques de la mort (1-2)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3752},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7 - Harry Potter et les reliques de la mort partie 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3753},{"sourceType":"tmdb","movieId":107,"title":"\ud574\ub9ac \ud3ec\ud130\uc640 \uc8fd\uc74c\uc758 \uc131\ubb3c - \ud30c\ud2b81","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3754},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter y las Reliquias de la Muerte: Parte 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3755},{"sourceType":"tmdb","movieId":107,"title":"Garri Potter i Dary smerti Chast 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3756},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter a Dary smrti - 1. \u010das\u0165","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4076},{"sourceType":"tmdb","movieId":107,"title":"\ud574\ub9ac\ud3ec\ud130\uc640 \uc8fd\uc74c\uc758 \uc131\ubb3c 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4803},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7 - Harry Potter und die Heiligt\u00fcmer des Todes - Teil 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4849},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5208},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7 - and the Deathly Hallows Part 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5346},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter och d\u00f6dsrelikerna \u2013 Del 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5455},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7 - Harry Potter and the Deathly Hallows - Part 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5522},{"sourceType":"tmdb","movieId":107,"title":"\u54c8\u5229\u6ce2\u72797-\u6b7b\u4ea1\u5723\u5668(\u4e0a)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5713},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter And The Deathly Hallows Pt I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6066},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter 7 y las reliquias de la muerte - Parte 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6206},{"sourceType":"tmdb","movieId":107,"title":"Harry Potter (7) et les Reliques de la mort (1)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6225}],"secondaryYearSourceId":0,"sortTitle":"harry potter deathly hallows part 1","sizeOnDisk":2992052130,"status":"released","overview":"Harry, Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.","inCinemas":"2010-10-17T00:00:00Z","physicalRelease":"2011-03-08T00:00:00Z","digitalRelease":"2013-08-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/107\/poster.jpg?lastWrite=637653455771726237","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f1geQ0I9UETRF1ed30voZfw8zT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/107\/fanart.jpg?lastWrite=637648264762763009","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AqLcLsGGTzAjm3pCCq0CZCQrp6m.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-deathly-hallows-part-1\/","year":2010,"hasFile":true,"youTubeTrailerId":"Su1LOpjvdZ4","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Deathly Hallows - Part 1 (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Deathly Hallows - Part 1 (2010)","runtime":146,"cleanTitle":"harrypotterdeathlyhallowspart1","imdbId":"tt0926084","tmdbId":12444,"titleSlug":"12444","certification":"PG-13","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":14954,"value":7.8},"movieFile":{"movieId":107,"relativePath":"Harry Potter and the Deathly Hallows Part 1.2010-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Deathly Hallows - Part 1 (2010)\/Harry Potter and the Deathly Hallows Part 1.2010-Bluray-1080p.mp4","size":2992052130,"dateAdded":"2018-10-12T17:00:50Z","sceneName":"Harry.Potter.And.The.Deathly.Hallows.Part.1.2010.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:26:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":233},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":107},{"title":"Harry Potter and the Deathly Hallows: Part 2","originalTitle":"Harry Potter and the Deathly Hallows: Part 2","alternateTitles":[{"sourceType":"tmdb","movieId":108,"title":"Harry Potter en de relieken des doods - Deel 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3846},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter et les reliques de la mort: 2\u00e8me partie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3847},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter 8 - Harry Potter et les Reliques de la mort (2-2)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3848},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter 8 - Harry Potter et les reliques de la mort partie 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3849},{"sourceType":"tmdb","movieId":108,"title":"\ud574\ub9ac \ud3ec\ud130\uc640 \uc8fd\uc74c\uc758 \uc131\ubb3c - \ud30c\ud2b82","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3850},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter a Dary smrti - 2. \u010das\u0165","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4077},{"sourceType":"tmdb","movieId":108,"title":"\ud574\ub9ac\ud3ec\ud130\uc640 \uc8fd\uc74c\uc758 \uc131\ubb3c 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4804},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter 8 - Harry Potter und die Heiligt\u00fcmer des Todes - Teil 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4850},{"sourceType":"tmdb","movieId":108,"title":"\u0413\u0430\u0440\u0440\u0438 \u041f\u043e\u0442\u0442\u0435\u0440 \u0438 \u0414\u0430\u0440\u044b \u0421\u043c\u0435\u0440\u0442\u0438: \u0427\u0430\u0441\u0442\u044c II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4897},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter And The Deathly Hallows Part II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5107},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter 8 - and the Deathly Hallows Part 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5347},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter och d\u00f6dsrelikerna \u2013 Del 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5456},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter 8 - Harry Potter and the Deathly Hallows - Part 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5523},{"sourceType":"tmdb","movieId":108,"title":"\u54c8\u5229\u6ce2\u72797-\u6b7b\u4ea1\u5723\u5668\uff08\u4e0b\uff09","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5714},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter e os Talism\u00e3s da Morte: Parte 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6121},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter 8 y las reliquias de la muerte - Parte 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6207},{"sourceType":"tmdb","movieId":108,"title":"Harry Potter (8) et les Reliques de la mort (2)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6226}],"secondaryYearSourceId":0,"sortTitle":"harry potter deathly hallows part 2","sizeOnDisk":2671602178,"status":"released","overview":"Harry, Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.","inCinemas":"2011-07-07T00:00:00Z","physicalRelease":"2011-11-16T00:00:00Z","digitalRelease":"2013-12-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/108\/poster.jpg?lastWrite=637524585259047565","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/da22ZBmrDOXOCDRvr8Gic8ldhv4.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/108\/fanart.jpg?lastWrite=637637019808060385","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kkUQ8zpBKe0L7ZkgsojWC85pYpi.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-deathly-hallows-part-2\/","year":2011,"hasFile":true,"youTubeTrailerId":"5NYt1qirBWg","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Deathly Hallows - Part 2 (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Deathly Hallows - Part 2 (2011)","runtime":130,"cleanTitle":"harrypotterdeathlyhallowspart2","imdbId":"tt1201607","tmdbId":12445,"titleSlug":"12445","certification":"PG-13","genres":["Fantasy","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":16107,"value":8.1},"movieFile":{"movieId":108,"relativePath":"Harry Potter and the Deathly Hallows Part 2.2011-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Deathly Hallows - Part 2 (2011)\/Harry Potter and the Deathly Hallows Part 2.2011-Bluray-1080p.mp4","size":2671602178,"dateAdded":"2018-10-12T12:03:41Z","sceneName":"Harry.Potter.And.The.Deathly.Hallows.Part.2.2011.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:10:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":214},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":108},{"title":"Harry Potter and the Goblet of Fire","originalTitle":"Harry Potter and the Goblet of Fire","alternateTitles":[{"sourceType":"tmdb","movieId":109,"title":"Harry Potter dhe Kupa e Zjarrit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4014},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter 4 - Harry Potter et la Coupe de feu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4015},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter e o C\u00e1lice de Fogo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4016},{"sourceType":"tmdb","movieId":109,"title":"\ud574\ub9ac\ud3ec\ud130\uc640 \ubd88\uc758 \uc794","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4805},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter 4 - Harry Potter und der Feuerkelch","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4851},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5209},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter 4 - and the Goblet of Fire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5348},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter och Den flammande b\u00e4garen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5457},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter 4 Y el caliz de fuego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5505},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter 4 - Harry Potter and the Goblet of Fire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5524},{"sourceType":"tmdb","movieId":109,"title":"\u54c8\u5229\u6ce2\u72794-\u706b\u7130\u676f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5715},{"sourceType":"tmdb","movieId":109,"title":"Harry Potter (4) et la Coupe de feu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6227}],"secondaryYearSourceId":0,"sortTitle":"harry potter goblet fire","sizeOnDisk":3217029922,"status":"released","overview":"When Harry Potter's name emerges from the Goblet of Fire, he becomes a competitor in a grueling battle for glory among three wizarding schools \u2014 the Triwizard Tournament. But since Harry never submitted his name for the Tournament, who did? Now Harry must confront a deadly dragon, fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named. In this fourth film adaptation of J.K. Rowling's Harry Potter series, everything changes as Harry, Ron and Hermione leave childhood forever and take on challenges greater than anything they could have imagined.","inCinemas":"2005-11-16T00:00:00Z","physicalRelease":"2006-03-29T00:00:00Z","digitalRelease":"2008-12-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/109\/poster.jpg?lastWrite=637641344280675663","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fECBtHlr0RB3foNHDiCBXeg9Bv9.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/109\/fanart.jpg?lastWrite=637646534527071131","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-goblet-fire\/","year":2005,"hasFile":true,"youTubeTrailerId":"xqtU_e4eMAo","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Goblet of Fire (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Goblet of Fire (2005)","runtime":157,"cleanTitle":"harrypottergobletfire","imdbId":"tt0330373","tmdbId":674,"titleSlug":"674","certification":"PG-13","genres":["Adventure","Fantasy","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":15994,"value":7.8},"movieFile":{"movieId":109,"relativePath":"Harry Potter and the Goblet of Fire.2005-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Goblet of Fire (2005)\/Harry Potter and the Goblet of Fire.2005-Bluray-1080p.mp4","size":3217029922,"dateAdded":"2018-10-12T12:06:06Z","sceneName":"Harry.Potter.And.The.Goblet.Of.Fire.2005.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:37:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":216},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":109},{"title":"Harry Potter and the Half-Blood Prince","originalTitle":"Harry Potter and the Half-Blood Prince","alternateTitles":[{"sourceType":"tmdb","movieId":110,"title":"Harry Potter en de Halfbloed Prins","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2773},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter 6 y el Misterio del Principe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2774},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter 6 - Harry Potter et le Prince de sang-m\u00eal\u00e9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2775},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter y el Pr\u00edncipe Mestizo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2776},{"sourceType":"tmdb","movieId":110,"title":"\ud574\ub9ac\ud3ec\ud130\uc640 \ud63c\ud608\uc655\uc790","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4806},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter 6 - Harry Potter und der Halbblutprinz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4852},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5210},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter 6 - and the Half-Blood Prince","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5349},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter och Halvblodsprinsen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5458},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter 6 - Harry Potter and the Half-Blood Prince","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5525},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter e o Enigma do Pr\u00edncipe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5615},{"sourceType":"tmdb","movieId":110,"title":"\u54c8\u5229\u6ce2\u72796-\u6df7\u8840\u738b\u5b50","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5716},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter e o Pr\u00edncipe Misterioso","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6036},{"sourceType":"tmdb","movieId":110,"title":"Harry Potter (6) et le Prince de sang-m\u00eal\u00e9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6228}],"secondaryYearSourceId":0,"sortTitle":"harry potter half blood prince","sizeOnDisk":13222545569,"status":"released","overview":"As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds, Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle, but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end, Dumbledore recruits his old friend and colleague Horace Slughorn, whom he believes holds crucial information. Even as the decisive showdown looms, romance blossoms for Harry, Ron, Hermione and their classmates. Love is in the air, but danger lies ahead and Hogwarts may never be the same again.","inCinemas":"2009-07-07T00:00:00Z","physicalRelease":"2009-11-16T00:00:00Z","digitalRelease":"2012-03-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/110\/poster.jpg?lastWrite=637456421106468076","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/z7uo9zmQdQwU5ZJHFpv2Upl30i1.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/110\/fanart.jpg?lastWrite=637653455818405504","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kT8bDEAgEYBKhRJtqM97qTw6uRW.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-half-blood-prince\/","year":2009,"hasFile":true,"youTubeTrailerId":"DgeDDXcw--I","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Half-Blood Prince (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Half-Blood Prince (2009)","runtime":153,"cleanTitle":"harrypotterhalfbloodprince","imdbId":"tt0417741","tmdbId":767,"titleSlug":"767","certification":"PG","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":14995,"value":7.7},"movieFile":{"movieId":110,"relativePath":"Harry Potter and the Half-Blood Prince.2009-Bluray-1080p.mkv","path":"\/movies\/Harry Potter and the Half-Blood Prince (2009)\/Harry Potter and the Half-Blood Prince.2009-Bluray-1080p.mkv","size":13222545569,"dateAdded":"2018-10-12T22:47:53Z","sceneName":"Harry.Potter.and.the.Half-Blood.Prince.2009.1080p.BluRay.x264.DTS-X.7.1-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL X","audioBitrate":3688781,"audioChannels":7.1,"audioCodec":"DTS-X","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7587722,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:33:30","scanType":"Progressive","subtitles":"English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Spanish \/ Spanish \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":260},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":110},{"title":"Harry Potter and the Order of the Phoenix","originalTitle":"Harry Potter and the Order of the Phoenix","alternateTitles":[{"sourceType":"tmdb","movieId":111,"title":"\ud574\ub9ac\ud3ec\ud130\uc640 \ubd88\uc0ac\uc870 \uae30\uc0ac\ub2e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4807},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter och Fenixorden","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5459},{"sourceType":"tmdb","movieId":111,"title":"\u54c8\u5229\u6ce2\u72795-\u51e4\u51f0\u793e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5717},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter og fonix- ordenen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5748},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter E L'ordine delia fenice","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5750},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter og Foniks-Ordenen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":5751},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter I Zakon Feniksa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5752},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter E a Ordem da F\u00eanix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5753},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter 5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6073},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter 5 y la Orden del F\u00e9nix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6208},{"sourceType":"tmdb","movieId":111,"title":"Harry Potter (5) et l'Ordre du Ph\u00e9nix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6229}],"secondaryYearSourceId":0,"sortTitle":"harry potter order phoenix","sizeOnDisk":2828904414,"status":"released","overview":"The rebellion begins! Lord Voldemort has returned, but the Ministry of Magic is doing everything it can to keep the wizarding world from knowing the truth \u2013 including appointing Ministry official Dolores Umbridge as the new Defence Against the Dark Arts professor at Hogwarts. When Umbridge refuses to teach practical defensive magic, Ron and Hermione convince Harry to secretly train a select group of students for the wizarding war that lies ahead. A terrifying showdown between good and evil awaits in this enthralling film version of the fifth novel in J.K. Rowling\u2019s Harry Potter series. Prepare for battle!","inCinemas":"2007-06-28T00:00:00Z","physicalRelease":"2007-11-14T00:00:00Z","digitalRelease":"2010-04-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/111\/poster.jpg?lastWrite=637522855876307921","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/s836PRwHkLjrOJrfW0eo7B4NJOf.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/111\/fanart.jpg?lastWrite=637630965176113735","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7qKWTyYvkyIrWgkUOHiNxHv3FNK.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-order-phoenix\/","year":2007,"hasFile":true,"youTubeTrailerId":"f4uIVJyXzM4","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Order of the Phoenix (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Order of the Phoenix (2007)","runtime":138,"cleanTitle":"harrypotterorderphoenix","imdbId":"tt0373889","tmdbId":675,"titleSlug":"675","certification":"PG-13","genres":["Adventure","Fantasy","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":15236,"value":7.7},"movieFile":{"movieId":111,"relativePath":"Harry Potter and the Order of the Phoenix.2007-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Order of the Phoenix (2007)\/Harry Potter and the Order of the Phoenix.2007-Bluray-1080p.mp4","size":2828904414,"dateAdded":"2018-10-12T10:59:10Z","sceneName":"Harry.Potter.and.the.Order.of.the.Phoenix.2007.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:18:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":212},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":111},{"title":"Harry Potter and the Prisoner of Azkaban","originalTitle":"Harry Potter and the Prisoner of Azkaban","alternateTitles":[{"sourceType":"tmdb","movieId":112,"title":"Khari Pot\u016dr i zatvornik\u016dt ot Azkaban","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2173},{"sourceType":"tmdb","movieId":112,"title":"O Ch\u00e1ri P\u00f3ter kai o Aichm\u00e1lotos tou Azkamp\u00e1n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2175},{"sourceType":"tmdb","movieId":112,"title":"Hari Poter i Zatvorenikot od Azkaban","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2177},{"sourceType":"tmdb","movieId":112,"title":"Hari Poter i zatvorenik iz Askabana","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2178},{"sourceType":"tmdb","movieId":112,"title":"Garri Potter i uznik Azkabana","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2179},{"sourceType":"tmdb","movieId":112,"title":"Harri Potter i v'yazen\u02b9 Azkabanu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2180},{"sourceType":"tmdb","movieId":112,"title":"\u54c8\u5229\u6ce2\u72793-\u963f\u5179\u5361\u73ed\u7684\u9003\u72af","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5720},{"sourceType":"tmdb","movieId":112,"title":"Harry Potter A Vezen Zazkabanu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5757},{"sourceType":"tmdb","movieId":112,"title":"Harry Potter Eo Prisoneiro de Azkaban","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5758},{"sourceType":"tmdb","movieId":112,"title":"Harry Potter 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6074},{"sourceType":"tmdb","movieId":112,"title":"Harry Potter 3 y el prisionero de Azkaban","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6210},{"sourceType":"tmdb","movieId":112,"title":"Harry Potter (3) et le Prisonnier d'Azkaban","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6231}],"secondaryYearSourceId":0,"sortTitle":"harry potter prisoner azkaban","sizeOnDisk":2902927796,"status":"released","overview":"Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff, transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school, an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls, and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.","inCinemas":"2004-05-31T00:00:00Z","physicalRelease":"2004-11-24T00:00:00Z","digitalRelease":"2007-12-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/112\/poster.jpg?lastWrite=637644804604677013","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aWxwnYoe8p2d2fcxOqtvAtJ72Rw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/112\/fanart.jpg?lastWrite=637661241983852098","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/obKmfNexgL4ZP5cAmzdL4KbHHYX.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-prisoner-azkaban\/","year":2004,"hasFile":true,"youTubeTrailerId":"1y3vfrfmoCw","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Prisoner of Azkaban (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Prisoner of Azkaban (2004)","runtime":141,"cleanTitle":"harrypotterprisonerazkaban","imdbId":"tt0304141","tmdbId":673,"titleSlug":"673","certification":"PG","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":16644,"value":8},"movieFile":{"movieId":112,"relativePath":"Harry Potter and the Prisoner of Azkaban.2004-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Prisoner of Azkaban (2004)\/Harry Potter and the Prisoner of Azkaban.2004-Bluray-1080p.mp4","size":2902927796,"dateAdded":"2018-10-12T12:04:49Z","sceneName":"Harry.Potter.And.The.Prisoner.Of.Azkaban.2004.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:21:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":215},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":112},{"title":"Harry Potter and the Philosopher's Stone","originalTitle":"Harry Potter and the Philosopher's Stone","alternateTitles":[{"sourceType":"tmdb","movieId":113,"title":"Harry Potter and the Sorcerer's Stone","sourceId":671,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":166},{"sourceType":"tmdb","movieId":113,"title":"Khari Pot\u016dr i Filosofskiyat kam\u016dk","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4243},{"sourceType":"tmdb","movieId":113,"title":"\u54c8\u5229\u6ce2\u7279\u4e0e\u9b54\u6cd5\u77f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4244},{"sourceType":"tmdb","movieId":113,"title":"O Ch\u00e1ri P\u00f3ter kai i Filosofik\u00ed L\u00edthos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4246},{"sourceType":"tmdb","movieId":113,"title":"Hari Poter i Kamenot na mudrosta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4247},{"sourceType":"tmdb","movieId":113,"title":"\u06c1\u06cc\u0631\u06cc \u067e\u0648\u0679\u0631 \u0627\u0648\u0631 \u0641\u0644\u0633\u0641\u06cc \u06a9\u0627 \u067e\u062a\u06be\u0631","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4248},{"sourceType":"tmdb","movieId":113,"title":"Hari Poter i Kamen mudrosti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4249},{"sourceType":"tmdb","movieId":113,"title":"Garri Potter i filosofskiy kamen'","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4250},{"sourceType":"tmdb","movieId":113,"title":"Harri Potter i filosofs\u02b9kyy kamin\u02b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4251},{"sourceType":"tmdb","movieId":113,"title":"Harry Potter y la piedra filosofal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":31,"name":"Arabic"},"id":6164},{"sourceType":"tmdb","movieId":113,"title":"Harry Potter 1 y la piedra filosofal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6209},{"sourceType":"tmdb","movieId":113,"title":"Harry Potter (1) \u00e0 l'\u00e9cole des sorciers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6230},{"sourceType":"tmdb","movieId":113,"title":"\u54c8\u5229\u6ce2\u72791-\u9b54\u6cd5\u77f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6235},{"sourceType":"tmdb","movieId":113,"title":"\u54c8\u5229\u6ce2\u72791\u4e0e\u9b54\u6cd5\u77f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6236}],"secondaryYearSourceId":0,"sortTitle":"harry potter philosopher s stone","sizeOnDisk":3253367972,"status":"released","overview":"Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.","inCinemas":"2001-11-16T00:00:00Z","physicalRelease":"2002-04-29T00:00:00Z","digitalRelease":"2004-11-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/113\/poster.jpg?lastWrite=637291274475180367","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/113\/fanart.jpg?lastWrite=637642209036524665","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4GlSMUpzSd3cliYGFJVziSDX53S.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/harry-potter-and-sorcerers-stone\/","year":2001,"hasFile":true,"youTubeTrailerId":"k71hjl3zWsA","studio":"Warner Bros. Pictures","path":"\/movies\/Harry Potter and the Sorcerer's Stone - Extended Edition (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Harry Potter and the Sorcerer's Stone - Extended Edition (2001)","runtime":152,"cleanTitle":"harrypotterphilosophersstone","imdbId":"tt0241527","tmdbId":671,"titleSlug":"671","certification":"PG","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":20931,"value":7.9},"movieFile":{"movieId":113,"relativePath":"Harry Potter and the Philosopher's Stone.2001-Bluray-1080p.mp4","path":"\/movies\/Harry Potter and the Sorcerer's Stone - Extended Edition (2001)\/Harry Potter and the Philosopher's Stone.2001-Bluray-1080p.mp4","size":3253367972,"dateAdded":"2018-10-12T16:17:16Z","sceneName":"Harry.Potter.And.The.Sorcerers.Stone.2001.EXTENDED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:38:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"EXTENDED","id":222},"collection":{"name":"Harry Potter Collection","tmdbId":1241,"images":[]},"id":113},{"title":"Hellboy","originalTitle":"Hellboy","alternateTitles":[{"sourceType":"tmdb","movieId":114,"title":"Khelboi\u0306","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4714},{"sourceType":"tmdb","movieId":114,"title":"Hellboy: O \u00cdroas tis K\u00f3lasis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4715},{"sourceType":"tmdb","movieId":114,"title":"Helboj","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4716},{"sourceType":"tmdb","movieId":114,"title":"Khellboy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4718},{"sourceType":"tmdb","movieId":114,"title":"\u0425\u0435\u043b\u043b\u0431\u043e\u0439: \u0413\u0435\u0440\u043e\u0439 \u0438\u0437 \u043f\u0435\u043a\u043b\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6011}],"secondaryYearSourceId":0,"sortTitle":"hellboy","sizeOnDisk":14876652358,"status":"released","overview":"In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before a demon\u2014Hellboy\u2014has already been conjured. Joining the Allied forces, Hellboy eventually grows to adulthood, serving the cause of good rather than evil.","inCinemas":"2004-04-02T00:00:00Z","physicalRelease":"2004-11-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/114\/poster.jpg?lastWrite=637635289850075332","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kukfPWDRXVe7b4HFYMKnxKvMg18.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/114\/fanart.jpg?lastWrite=637653455878084565","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/v6ejJREqtrKoveHhX7q0mwP9iUd.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"qc4-3QmiFak","studio":"Columbia Pictures","path":"\/movies\/Hellboy (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Hellboy (2004)","runtime":122,"cleanTitle":"hellboy","imdbId":"tt0167190","tmdbId":1487,"titleSlug":"1487","certification":"PG-13","genres":["Fantasy","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5434,"value":6.6},"movieFile":{"movieId":114,"relativePath":"Hellboy.2004-Bluray-1080p.mkv","path":"\/movies\/Hellboy (2004)\/Hellboy.2004-Bluray-1080p.mkv","size":14876652358,"dateAdded":"2018-10-15T09:07:57Z","sceneName":"HellBoy.2004.1080p.iNTERNAL.BluRay.x264-MOOVEE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1578255,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13365584,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:12:28","scanType":"Progressive","subtitles":"English \/ Hindi \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MOOVEE","edition":"","id":351},"collection":{"name":"Hellboy Collection","tmdbId":17235,"images":[]},"id":114},{"title":"Hellboy II: The Golden Army","originalTitle":"Hellboy II: The Golden Army","alternateTitles":[{"sourceType":"tmdb","movieId":115,"title":"Hellboy 2","sourceId":11253,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1229},{"sourceType":"tmdb","movieId":115,"title":"Hellboy 2 - The Golden Army","sourceId":11253,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1230},{"sourceType":"tmdb","movieId":115,"title":"Hellboy II","sourceId":11253,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1231},{"sourceType":"tmdb","movieId":115,"title":"Hellboy - El ej\u00e9rcito dorado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3851},{"sourceType":"tmdb","movieId":115,"title":"Hellboy 2 : L'arm\u00e9e d'or","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3852},{"sourceType":"tmdb","movieId":115,"title":"Hellboy II - L'arm\u00e9e d'or","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3853},{"sourceType":"tmdb","movieId":115,"title":"\u5730\u72f1\u602a\u5ba22\uff1a\u91d1\u7532\u519b\u56e2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3854},{"sourceType":"tmdb","movieId":115,"title":"\u5929\u9b54\u7279\u653b\u4e4b\u9b3c\u9b45\u5175\u56e2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3855},{"sourceType":"tmdb","movieId":115,"title":"Hellboy II - Die Goldene Armee","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3856},{"sourceType":"tmdb","movieId":115,"title":"\ud5ec\ubcf4\uc774 2-\uace8\ub4e0 \uc544\ubbf8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3857},{"sourceType":"tmdb","movieId":115,"title":"hellboj ii: zolota\u00e2 armi\u00e2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3858},{"sourceType":"tmdb","movieId":115,"title":"\u5730\u7344\u602a\u5ba22\uff1a\u91d1\u7532\u8ecd\u5718","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3859},{"sourceType":"tmdb","movieId":115,"title":"\u0425\u0435\u043b\u043b\u0431\u043e\u0439 II: \u0417\u043e\u043b\u043e\u0442\u0430 \u0430\u0440\u043ci\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3860}],"secondaryYearSourceId":0,"sortTitle":"hellboy ii golden army","sizeOnDisk":15353890924,"status":"released","overview":"Hellboy must stop an elven prince from locating an ancient force that can destroy humanity: the all-powerful Golden Army.","inCinemas":"2008-07-11T00:00:00Z","physicalRelease":"2008-11-05T00:00:00Z","digitalRelease":"2012-02-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/115\/poster.jpg?lastWrite=637653455890484370","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fGQAO4RgUzspO7L4u5KXirIn34s.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/115\/fanart.jpg?lastWrite=637653455892324341","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c1PkxFxNdGhesu6hljDiK2zcF6c.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"G_O0xYCy1cg","studio":"Universal Pictures","path":"\/movies\/Hellboy II - The Golden Army (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Hellboy II - The Golden Army (2008)","runtime":120,"cleanTitle":"hellboyiigoldenarmy","imdbId":"tt0411477","tmdbId":11253,"titleSlug":"11253","certification":"PG-13","genres":["Action","Adventure","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3966,"value":6.7},"movieFile":{"movieId":115,"relativePath":"Hellboy II The Golden Army.2008-Bluray-1080p.mkv","path":"\/movies\/Hellboy II - The Golden Army (2008)\/Hellboy II The Golden Army.2008-Bluray-1080p.mkv","size":15353890924,"dateAdded":"2018-10-16T00:32:16Z","sceneName":"Hellboy.II.The.Golden.Army.2008.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15592000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:59:40","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":370},"collection":{"name":"Hellboy Collection","tmdbId":17235,"images":[]},"id":115},{"title":"Howl's Moving Castle","originalTitle":"\u30cf\u30a6\u30eb\u306e\u52d5\u304f\u57ce","alternateTitles":[{"sourceType":"tmdb","movieId":116,"title":"\u041f\u043e\u0434\u0432\u0438\u0436\u043d\u0438\u044f\u0442 \u0437\u0430\u043c\u044a\u043a \u043d\u0430 \u0425\u043e\u043b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3083},{"sourceType":"tmdb","movieId":116,"title":"Hauru no Ugoku Shiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3084},{"sourceType":"tmdb","movieId":116,"title":"Howl no Ugoku Shiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3085},{"sourceType":"tmdb","movieId":116,"title":"Haulov pokretni zamak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3087},{"sourceType":"tmdb","movieId":116,"title":"\u0428\u0430\u0433\u0430\u044e\u0449\u0438\u0439 \u0437\u0430\u043c\u043e\u043a \u0425\u0430\u0443\u043b\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3088},{"sourceType":"tmdb","movieId":116,"title":"\u0417\u0430\u043c\u043e\u043a-\u043c\u0430\u043d\u0434\u0440\u0456\u0432\u043d\u0438\u043a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3089},{"sourceType":"tmdb","movieId":116,"title":"Ghaleh Motahareke Howl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4207},{"sourceType":"tmdb","movieId":116,"title":"Ghaleye Motahareke Howl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4208},{"sourceType":"tmdb","movieId":116,"title":"\u0642\u0644\u0639\u0647\u200c\u06cc \u0645\u062a\u062d\u0631\u06a9 \u0647\u0627\u0648\u0644","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4210},{"sourceType":"tmdb","movieId":116,"title":"\u0642\u0644\u0639\u06c0 \u0645\u062a\u062d\u0631\u06a9 \u0647\u0627\u0648\u0644","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4211},{"sourceType":"tmdb","movieId":116,"title":"Le Chateau Ambulant","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5935},{"sourceType":"tmdb","movieId":116,"title":"\ud558\uc6b8\uc758 \uc6c0\uc9c1\uc774\ub294 \uc131","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6151}],"secondaryYear":2005,"secondaryYearSourceId":0,"sortTitle":"howl s moving castle","sizeOnDisk":9552219311,"status":"released","overview":"When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking castle.","inCinemas":"2004-11-19T00:00:00Z","physicalRelease":"2005-09-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/116\/poster.jpg?lastWrite=637241983493012442","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/TkTPELv4kC3u1lkloush8skOjE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/116\/fanart.jpg?lastWrite=637657781751455296","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vwBa7djy1oxfxUjc7YtVgGNsjrT.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"iwROgK94zcM","studio":"Studio Ghibli","path":"\/movies\/Howl's Moving Castle (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Howl's Moving Castle (2004)","runtime":119,"cleanTitle":"howlsmovingcastle","imdbId":"tt0347149","tmdbId":4935,"titleSlug":"4935","certification":"PG","genres":["Fantasy","Animation","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":6618,"value":8.4},"movieFile":{"movieId":116,"relativePath":"Howl's Moving Castle.2004-Bluray-1080p.mkv","path":"\/movies\/Howl's Moving Castle (2004)\/Howl's Moving Castle.2004-Bluray-1080p.mkv","size":9552219311,"dateAdded":"2018-10-14T03:24:28Z","sceneName":"Howls.Moving.Castle.2004.JAPANESE.AND.ENGLISH.1080p.BluRay.x264.DTS-ES.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES","audioBitrate":768000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8940354,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1038","runTime":"1:59:09","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":292},"id":116},{"title":"Iblard Time","originalTitle":"\u30a4\u30d0\u30e9\u30fc\u30c9\u6642\u9593","alternateTitles":[{"sourceType":"tmdb","movieId":117,"title":"Ibar\u00e2do jikan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5303},{"sourceType":"tmdb","movieId":117,"title":"\uc774\ubc14\ub77c\ub4dc \uc2dc\uac04","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5304},{"sourceType":"tmdb","movieId":117,"title":"\u0412\u0440\u0435\u043c\u044f \u0418\u0431\u043b\u0430\u0440\u0434\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5305},{"sourceType":"tmdb","movieId":117,"title":"Iblard Jikan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5306}],"secondaryYearSourceId":0,"sortTitle":"iblard time","sizeOnDisk":3247514197,"status":"released","overview":"A quiet stroll through the imaginary world of Iblard, originally depicted in the paintings by Naohisa Inoue, influenced by Impressionism and Surrealism.","physicalRelease":"2007-07-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/117\/poster.jpg?lastWrite=637618856869682499","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/za9WHMsAD1NsUrpG275cARVxQxV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/117\/fanart.jpg?lastWrite=637643939423767417","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tDoWxpBOQpoBjqS1SDxIL5zANsq.jpg"}],"website":"http:\/\/wdshe.jp\/ghibli\/special\/iblard\/","year":2007,"hasFile":true,"youTubeTrailerId":"DOwCn8rZz7A","studio":"Studio Ghibli","path":"\/movies\/Iblard Jikan (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Iblard Jikan (2007)","runtime":30,"cleanTitle":"iblardtime","imdbId":"tt1161426","tmdbId":21534,"titleSlug":"21534","genres":["Animation","Fantasy","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":31,"value":6.6},"movieFile":{"movieId":117,"relativePath":"Iblard Jikan.2007-HDTV-1080p.mkv","path":"\/movies\/Iblard Jikan (2007)\/Iblard Jikan.2007-HDTV-1080p.mkv","size":3247514197,"dateAdded":"2018-10-11T15:09:27Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"zxx","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13389446,"videoCodec":"x264","videoFps":29.97,"resolution":"1920x1080","runTime":"30:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"2ch","edition":"","id":104},"id":117},{"title":"iBoy","originalTitle":"iBoy","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"iboy","sizeOnDisk":6083487475,"status":"released","overview":"After an accident, Tom wakes from a coma to discover that fragments of his smart phone have been embedded in his head, and worse, that returning to normal teenage life is impossible because he has developed a strange set of super powers.","inCinemas":"2017-01-27T00:00:00Z","digitalRelease":"2017-01-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/118\/poster.jpg?lastWrite=637648264805482318","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f5dMAWXLjp8duA44Lp40WZFGZB0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/118\/fanart.jpg?lastWrite=637622316692708174","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qIp0Wn4fEeeB2kpxE6WOjgy1VzU.jpg"}],"website":"https:\/\/www.netflix.com\/title\/80099016","year":2017,"hasFile":true,"youTubeTrailerId":"FbEWtpSmJXg","studio":"Pretty Pictures","path":"\/movies\/iBoy (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/iBoy (2017)","runtime":90,"cleanTitle":"iboy","imdbId":"tt3171832","tmdbId":414190,"titleSlug":"414190","genres":["Action","Crime","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":947,"value":6},"movieFile":{"movieId":118,"relativePath":"iBoy.2017-WEBDL-1080p.mkv","path":"\/movies\/iBoy (2017)\/iBoy.2017-WEBDL-1080p.mkv","size":6083487475,"dateAdded":"2018-10-14T02:07:06Z","sceneName":"iBoy.2017.1080p.NF.WEBRip.DD5.1.x264-NTb","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8435688,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x800","runTime":"1:30:08","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Spanish"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"NTb","edition":"","id":289},"id":118},{"title":"Imaginaerum","originalTitle":"Imaginaerum","alternateTitles":[{"sourceType":"tmdb","movieId":119,"title":"Imaginaerum - FR 2012","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5153},{"sourceType":"tmdb","movieId":119,"title":"Imaginaerum by Nightwish","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5154},{"sourceType":"tmdb","movieId":119,"title":"Imaginaerum : l'autre monde","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5155},{"sourceType":"tmdb","movieId":119,"title":"\u0406\u043c\u0430\u0434\u0436\u0438\u043d\u0430\u0440\u0456\u0443\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5156},{"sourceType":"tmdb","movieId":119,"title":"\u0406\u043c\u0430\u0434\u0436\u0438\u043d\u0435\u0440\u0443\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5157},{"sourceType":"tmdb","movieId":119,"title":"\u0423\u044f\u0432\u043e\u0441\u0432\u0456\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5158}],"secondaryYearSourceId":0,"sortTitle":"imaginaerum","sizeOnDisk":1760709458,"status":"released","overview":"Imaginaerum tells the story of an elderly composer, Tom, who suffers from severe dementia. As he has had the disease for years and has regressed into childhood, he remembers practically nothing from his adult life. His music, friends, all his past including the memory of his daughter are a blur in his fragile mind. All he has left is the imagination of a ten year old boy. As he drifts away into coma, it seems impossible to get back what he has lost. Or is it?","inCinemas":"2012-11-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/119\/poster.jpg?lastWrite=637388976240217955","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kQWx3rTawlFtj3an599mqe6VdTz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/119\/fanart.jpg?lastWrite=637625776025044348","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4yor13fR3xzwojRFkh9sc5XJMHb.jpg"}],"website":"http:\/\/www.imaginaerum.com\/","year":2012,"hasFile":true,"youTubeTrailerId":"7Tn_ZgUmUTU","studio":"Capelight Pictures","path":"\/movies\/Imaginaerum (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Imaginaerum (2012)","runtime":80,"cleanTitle":"imaginaerum","imdbId":"tt1959409","tmdbId":75204,"titleSlug":"75204","certification":"NR","genres":["Fantasy","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":111,"value":5.8},"movieFile":{"movieId":119,"relativePath":"Imaginaerum.2012-Bluray-1080p.mp4","path":"\/movies\/Imaginaerum (2012)\/Imaginaerum.2012-Bluray-1080p.mp4","size":1760709458,"dateAdded":"2018-10-14T08:40:32Z","sceneName":"Imaginaerum.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:25:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":309},"id":119},{"title":"Inception","originalTitle":"Inception","alternateTitles":[{"sourceType":"tmdb","movieId":120,"title":"\uc778\uc149\uc158","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5174},{"sourceType":"tmdb","movieId":120,"title":"El origen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5237}],"secondaryYearSourceId":0,"sortTitle":"inception","sizeOnDisk":3033970070,"status":"released","overview":"Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.","inCinemas":"2010-07-15T00:00:00Z","physicalRelease":"2010-12-03T00:00:00Z","digitalRelease":"2013-03-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/120\/poster.jpg?lastWrite=637624046409906422","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9gk7adHYeDvHkCSEqAvQNLV5Uge.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/120\/fanart.jpg?lastWrite=637620586866226537","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ii8QGacT3MXESqBckQlyrATY0lT.jpg"}],"website":"http:\/\/inceptionmovie.warnerbros.com\/","year":2010,"hasFile":true,"youTubeTrailerId":"Jvurpf91omw","studio":"Legendary Pictures","path":"\/movies\/Inception (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Inception (2010)","runtime":148,"cleanTitle":"inception","imdbId":"tt1375666","tmdbId":27205,"titleSlug":"27205","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":29609,"value":8.3},"movieFile":{"movieId":120,"relativePath":"Inception.2010-Bluray-1080p.mp4","path":"\/movies\/Inception (2010)\/Inception.2010-Bluray-1080p.mp4","size":3033970070,"dateAdded":"2018-10-16T00:06:39Z","sceneName":"Inception.2010.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:28:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":364},"id":120},{"title":"Indiana Jones and the Kingdom of the Crystal Skull","originalTitle":"Indiana Jones and the Kingdom of the Crystal Skull","alternateTitles":[{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4","sourceId":217,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":176},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - The Kingdom of the Crystal Skull","sourceId":217,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":177},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 and the Kingdom of the Crystal Skull","sourceId":217,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":178},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - Le Royaume du Cr\u00e2ne de Cristal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2402},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 The Kingdom of the Crystal Skull","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2404},{"sourceType":"tmdb","movieId":121,"title":"\u593a\u5b9d\u5947\u51754","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2405},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones og krystalkraniets kongerige","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2406},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - Et Le Royaume Du Cr\u00e2ne De Cristal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2409},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - E Il Regno Del Teschio Di Cristallo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2413},{"sourceType":"tmdb","movieId":121,"title":"\uc778\ub514\uc544\ub098 \uc874\uc2a4 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2416},{"sourceType":"tmdb","movieId":121,"title":"Indiana D\u017eounsas 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2417},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones og Krystallhodeskallens Rike","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2418},{"sourceType":"tmdb","movieId":121,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2419},{"sourceType":"tmdb","movieId":121,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 \u0438 \u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e x\u0440\u0443\u0441\u0442\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0447\u0435\u0440\u0435\u043f\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2420},{"sourceType":"tmdb","movieId":121,"title":"Kingdom of the Crystal Skull","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4554},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - Das K\u00f6nigreich des Kristallsch\u00e4dels","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4748},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - Indiana Jones and the Kingdom of the Crystal Skull 2008","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5258},{"sourceType":"tmdb","movieId":121,"title":"Indiana Jones 4 - Indiana Jones and the Kingdom of the Crystal Skull","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5529}],"secondaryYearSourceId":0,"sortTitle":"indiana jones kingdom crystal skull","sizeOnDisk":34579266536,"status":"released","overview":"Set during the Cold War, the Soviets\u2014led by sword-wielding Irina Spalko\u2014are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. Indy is coerced to head to Peru at the behest of a young man whose friend\u2014and Indy's colleague\u2014Professor Oxley has been captured for his knowledge of the skull's whereabouts.","inCinemas":"2008-05-21T00:00:00Z","physicalRelease":"2008-11-21T00:00:00Z","digitalRelease":"2010-10-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/121\/poster.jpg?lastWrite=637643939437967206","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/56As6XEM1flWvprX4LgkPl8ii4K.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/121\/fanart.jpg?lastWrite=637631830017049441","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/p96949hcwUG2BwE6MgKmw0uYNCx.jpg"}],"website":"http:\/\/www.indianajones.com\/site\/index.html","year":2008,"hasFile":true,"youTubeTrailerId":"kTJy1rFBtVw","studio":"Paramount","path":"\/movies\/Indiana Jones and the Kingdom of the Crystal Skull (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Indiana Jones and the Kingdom of the Crystal Skull (2008)","runtime":122,"cleanTitle":"indianajoneskingdomcrystalskull","imdbId":"tt0367882","tmdbId":217,"titleSlug":"217","certification":"PG-13","genres":["Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":6262,"value":6},"movieFile":{"movieId":121,"relativePath":"Indiana Jones and the Kingdom of the Crystal Skull.2008-Remux-1080p.mkv","path":"\/movies\/Indiana Jones and the Kingdom of the Crystal Skull (2008)\/Indiana Jones and the Kingdom of the Crystal Skull.2008-Remux-1080p.mkv","size":34579266536,"dateAdded":"2018-10-15T13:19:19Z","sceneName":"Indiana.Jones.and.the.Kingdom.of.the.Crystal.Skull.2008.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4093466,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":33496908,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:02:31","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":355},"collection":{"name":"Indiana Jones Collection","tmdbId":84,"images":[]},"id":121},{"title":"Indiana Jones and the Last Crusade","originalTitle":"Indiana Jones and the Last Crusade","alternateTitles":[{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones 3","sourceId":89,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":180},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones 3 - The Last Crusade","sourceId":89,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":181},{"sourceType":"tmdb","movieId":122,"title":"\u593a\u5b9d\u5947\u51753","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2422},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones og det sidste korstog","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2423},{"sourceType":"tmdb","movieId":122,"title":"La \u00faltima cruzada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2424},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones 3 - Et la derni\u00e8re croisade","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2425},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones 3 - E L'Ultima Crociata","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2426},{"sourceType":"tmdb","movieId":122,"title":"\uc778\ub514\uc544\ub098 \uc874\uc2a4 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2427},{"sourceType":"tmdb","movieId":122,"title":"Indiana D\u017eounsas 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2428},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones 3: La \u00faltima cruzada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2429},{"sourceType":"tmdb","movieId":122,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2430},{"sourceType":"tmdb","movieId":122,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 \u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u043a\u0440\u0435\u0441\u0442\u043e\u0432\u044b\u0439 \u043f\u043e\u0445\u043e\u0434","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2431},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones y La Ultima Cruzada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":2432},{"sourceType":"tmdb","movieId":122,"title":"Indiana Jones 3 - Der letzte Kreuzzug","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4749}],"secondaryYearSourceId":0,"sortTitle":"indiana jones last crusade","sizeOnDisk":39905451274,"status":"released","overview":"When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana must team up with Marcus Brody, Sallah and Elsa Schneider to follow in his father's footsteps and stop the Nazis from recovering the power of eternal life.","inCinemas":"1989-05-24T00:00:00Z","physicalRelease":"2008-05-13T00:00:00Z","digitalRelease":"2002-03-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/122\/poster.jpg?lastWrite=637653456025642241","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sizg1AU8f8JDZX4QIgE4pjUMBvx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/122\/fanart.jpg?lastWrite=637653456027602210","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/267Mdb5i1AXuVN64DhVEOUPmM25.jpg"}],"website":"http:\/\/www.indianajones.com\/crusade","year":1989,"hasFile":true,"youTubeTrailerId":"DKg36LBVgfg","studio":"Paramount","path":"\/movies\/Indiana Jones and the Last Crusade (1989)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Indiana Jones and the Last Crusade (1989)","runtime":127,"cleanTitle":"indianajoneslastcrusade","imdbId":"tt0097576","tmdbId":89,"titleSlug":"89","certification":"PG-13","genres":["Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":7577,"value":7.8},"movieFile":{"movieId":122,"relativePath":"Indiana Jones and the Last Crusade.1989-Remux-1080p.mkv","path":"\/movies\/Indiana Jones and the Last Crusade (1989)\/Indiana Jones and the Last Crusade.1989-Remux-1080p.mkv","size":39905451274,"dateAdded":"2018-10-14T21:03:01Z","sceneName":"Indiana.Jones.And.The.Last.Crusade.1989.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4085109,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Catalan \/ Spanish \/ Italian","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":34805216,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:06:53","scanType":"Progressive","subtitles":"English \/ Catalan \/ Spanish \/ Italian"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":336},"collection":{"name":"Indiana Jones Collection","tmdbId":84,"images":[]},"id":122},{"title":"Indiana Jones and the Temple of Doom","originalTitle":"Indiana Jones and the Temple of Doom","alternateTitles":[{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones 2","sourceId":87,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":182},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones 2 - The Temple of Doom","sourceId":87,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":183},{"sourceType":"tmdb","movieId":123,"title":"\u593a\u5b9d\u5947\u51752","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2434},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones 2 - Tempel des Todes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2435},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones og templets forbandelse","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2436},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones II: El Templo Maldito","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2437},{"sourceType":"tmdb","movieId":123,"title":"Tuomion temppeli","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2438},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones 2 - Et Le temple maudit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2439},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones 2 - E Il Tempio Maledetto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2440},{"sourceType":"tmdb","movieId":123,"title":"\uc778\ub514\uc544\ub098 \uc874\uc2a4 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2441},{"sourceType":"tmdb","movieId":123,"title":"Indiana D\u017eounsas 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2442},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones 2: El templo maldito","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2443},{"sourceType":"tmdb","movieId":123,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2444},{"sourceType":"tmdb","movieId":123,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 \u0438 \u0425\u0440\u0430\u043c \u0421\u0443\u0434\u044c\u0431\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2445},{"sourceType":"tmdb","movieId":123,"title":"Indiana Jones y El Templo de la Perdici\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":2446}],"secondaryYearSourceId":0,"sortTitle":"indiana jones temple doom","sizeOnDisk":37277236551,"status":"released","overview":"After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees \u2013 and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.","inCinemas":"1984-05-23T00:00:00Z","physicalRelease":"2008-05-15T00:00:00Z","digitalRelease":"2002-03-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/123\/poster.jpg?lastWrite=637637019908578756","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5VPmZF77ZjTMqIUQlXZWmdMsGIN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/123\/fanart.jpg?lastWrite=637652590540456013","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2hMt6zKQsvYvH3ZRe8T6RzAD2XB.jpg"}],"website":"http:\/\/www.indianajones.com","year":1984,"hasFile":true,"youTubeTrailerId":"WBdyLyijZhU","studio":"Paramount","path":"\/movies\/Indiana Jones and the Temple of Doom (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Indiana Jones and the Temple of Doom (1984)","runtime":118,"cleanTitle":"indianajonestempledoom","imdbId":"tt0087469","tmdbId":87,"titleSlug":"87","certification":"PG","genres":["Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":6891,"value":7.3},"movieFile":{"movieId":123,"relativePath":"Indiana Jones and the Temple of Doom.1984-Remux-1080p.mkv","path":"\/movies\/Indiana Jones and the Temple of Doom (1984)\/Indiana Jones and the Temple of Doom.1984-Remux-1080p.mkv","size":37277236551,"dateAdded":"2018-10-15T21:42:51Z","sceneName":"Indiana.Jones.And.The.Temple.Of.Doom.1984.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4364520,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Catalan \/ Spanish \/ Italian","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":34553194,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:58:28","scanType":"Progressive","subtitles":"English \/ Catalan \/ Spanish \/ Italian"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":362},"collection":{"name":"Indiana Jones Collection","tmdbId":84,"images":[]},"id":123},{"title":"Insurgent","originalTitle":"Insurgent","alternateTitles":[{"sourceType":"tmdb","movieId":124,"title":"Divergent 2: Insurgent","sourceId":262500,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":187},{"sourceType":"tmdb","movieId":124,"title":"Insurgent 3D","sourceId":262500,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":188},{"sourceType":"tmdb","movieId":124,"title":"A S\u00e9rie Divergente 2 - Insurgente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2455},{"sourceType":"tmdb","movieId":124,"title":"Outolintu: Kapinallinen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2459},{"sourceType":"tmdb","movieId":124,"title":"\u53db\u4e71\u8005\uff1a\u5f3a\u6743\u7ec8\u7ed3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2461},{"sourceType":"tmdb","movieId":124,"title":"Die Bestimmung - Insurgent","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5287},{"sourceType":"tmdb","movieId":124,"title":"\ub2e4\uc774\ubc84\uc804\ud2b8 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5296},{"sourceType":"tmdb","movieId":124,"title":"Divergente 2 Insurgente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5483}],"secondaryYearSourceId":0,"sortTitle":"insurgent","sizeOnDisk":8209182584,"status":"released","overview":"Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.","inCinemas":"2015-03-18T00:00:00Z","physicalRelease":"2015-08-19T00:00:00Z","digitalRelease":"2017-05-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/124\/poster.jpg?lastWrite=637628370728490844","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dP5Fb6YRfzmCQtRbHOr2kO7tJW9.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/124\/fanart.jpg?lastWrite=637643939455966939","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g6E3007axIAMfVvMP5gJhsttZ5X.jpg"}],"website":"http:\/\/www.thedivergentseries.movie\/#insurgent","year":2015,"hasFile":true,"youTubeTrailerId":"jfaqVegF2mo","studio":"Summit Entertainment","path":"\/movies\/Insurgent (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Insurgent (2015)","runtime":119,"cleanTitle":"insurgent","imdbId":"tt2908446","tmdbId":262500,"titleSlug":"262500","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":8516,"value":6.4},"movieFile":{"movieId":124,"relativePath":"Insurgent.2015-Bluray-1080p.mkv","path":"\/movies\/Insurgent (2015)\/Insurgent.2015-Bluray-1080p.mkv","size":8209182584,"dateAdded":"2018-10-13T16:13:03Z","sceneName":"Insurgent.2015.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8560000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:59:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":279},"collection":{"name":"Divergent Collection","tmdbId":283579,"images":[]},"id":124},{"title":"Interstellar","originalTitle":"Interstellar","alternateTitles":[{"sourceType":"tmdb","movieId":125,"title":"\u0987\u09a8\u09cd\u099f\u09be\u09b0\u09b8\u09cd\u099f\u09c7\u09b2\u09be\u09b0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1564},{"sourceType":"tmdb","movieId":125,"title":"Xing Ji Chuan Yue","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1565},{"sourceType":"tmdb","movieId":125,"title":"\u661f\u9645\u542f\u793a\u5f55","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1566},{"sourceType":"tmdb","movieId":125,"title":"Bein kokhavim","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1567}],"secondaryYearSourceId":0,"sortTitle":"interstellar","sizeOnDisk":45860734475,"status":"released","overview":"The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.","inCinemas":"2014-11-05T00:00:00Z","physicalRelease":"2015-02-27T00:00:00Z","digitalRelease":"2015-03-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/125\/poster.jpg?lastWrite=637662106607056187","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/125\/fanart.jpg?lastWrite=637662106608736159","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rAiYTfKGqDCRIIqo664sY9XZIvQ.jpg"}],"website":"http:\/\/www.interstellarmovie.net\/","year":2014,"hasFile":true,"youTubeTrailerId":"0vxOhd4qlnA","studio":"Legendary Pictures","path":"\/movies\/Interstellar (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Interstellar (2014)","runtime":169,"cleanTitle":"interstellar","imdbId":"tt0816692","tmdbId":157336,"titleSlug":"157336","certification":"PG-13","genres":["Adventure","Drama","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":26546,"value":8.3},"movieFile":{"movieId":125,"relativePath":"Interstellar.2014-Remux-1080p.mkv","path":"\/movies\/Interstellar (2014)\/Interstellar.2014-Remux-1080p.mkv","size":45860734475,"dateAdded":"2018-10-14T21:20:03Z","sceneName":"Interstellar.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ German \/ German \/ Spanish","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:49:03","scanType":"Progressive","subtitles":"English \/ German \/ Spanish \/ Danish \/ Finnish \/ Icelandic \/ Norwegian \/ Swedish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":339},"id":125},{"title":"Jin-Roh: The Wolf Brigade","originalTitle":"\u4eba\u72fc JIN-ROH","alternateTitles":[{"sourceType":"tmdb","movieId":126,"title":"Jin-R\u00f4","sourceId":823,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":189},{"sourceType":"tmdb","movieId":126,"title":"Jin Roh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4526},{"sourceType":"tmdb","movieId":126,"title":"Jin-Roh - Die Wolfsbrigade","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4527},{"sourceType":"tmdb","movieId":126,"title":"Jin-Roh, la brigade des loups","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4528},{"sourceType":"tmdb","movieId":126,"title":"Jin-Rou","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4529},{"sourceType":"tmdb","movieId":126,"title":"\uc778\ub791","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4530},{"sourceType":"tmdb","movieId":126,"title":"\uc778\ub791_\uc77c\ubcf8\ud310","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4531},{"sourceType":"tmdb","movieId":126,"title":"\u041e\u0431\u043e\u0440\u043e\u0442\u043d\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4532},{"sourceType":"tmdb","movieId":126,"title":"\u0412\u043e\u043b\u0447\u044c\u044f \u0441\u0442\u0430\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5363}],"secondaryYearSourceId":0,"sortTitle":"jin roh wolf brigade","sizeOnDisk":4828661401,"status":"released","overview":"A member of an elite paramilitary counter-terrorism unit becomes traumatized after witnessing the suicide bombing of a young girl and is forced to undergo retraining. However, unbeknownst to him, he becomes a key player in a dispute between rival police divisions, as he finds himself increasingly involved with the sister of the girl he saw die.","inCinemas":"1999-11-17T00:00:00Z","physicalRelease":"2006-09-28T00:00:00Z","digitalRelease":"2002-12-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/126\/poster.jpg?lastWrite=637557449403883627","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/63EMBxmcafkc4cWuUWQh2Ttd2jh.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/126\/fanart.jpg?lastWrite=637662971389987856","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2WuR3EaBj8X2WR4fvqa449tnNLn.jpg"}],"website":"","year":1999,"hasFile":true,"youTubeTrailerId":"8oui3kAkUqE","studio":"Bandai Visual","path":"\/movies\/Jin-Roh - The Wolf Brigade (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Jin-Roh - The Wolf Brigade (1999)","runtime":102,"cleanTitle":"jinrohwolfbrigade","imdbId":"tt0193253","tmdbId":823,"titleSlug":"823","certification":"R","genres":["Animation","Science Fiction","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":296,"value":7.4},"movieFile":{"movieId":126,"relativePath":"Jin-Roh The Wolf Brigade.1999-HDTV-1080p.mkv","path":"\/movies\/Jin-Roh - The Wolf Brigade (1999)\/Jin-Roh The Wolf Brigade.1999-HDTV-1080p.mkv","size":4828661401,"dateAdded":"2018-10-11T15:09:43Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1828x988","runTime":"1:41:59","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":113},"collection":{"name":"Kerberos Saga Collection","tmdbId":799462,"images":[]},"id":126},{"title":"Jumanji","originalTitle":"Jumanji","alternateTitles":[{"sourceType":"tmdb","movieId":127,"title":"Jumanji 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6026}],"secondaryYearSourceId":0,"sortTitle":"jumanji","sizeOnDisk":10647858614,"status":"released","overview":"When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.","inCinemas":"1995-12-15T00:00:00Z","physicalRelease":"1997-05-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/127\/poster.jpg?lastWrite=637651725180670413","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6aGn2X51bahFoOI8wE1h2VGTgcH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/127\/fanart.jpg?lastWrite=637651725183750364","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6w31RRm2s2CK1r3xDLf12WgIaHa.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/jumanji\/","year":1995,"hasFile":true,"youTubeTrailerId":"eTjDsENDZ6s","studio":"TriStar Pictures","path":"\/movies\/Jumanji (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Jumanji (1995)","runtime":104,"cleanTitle":"jumanji","imdbId":"tt0113497","tmdbId":8844,"titleSlug":"8844","certification":"PG","genres":["Adventure","Fantasy","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":8395,"value":7.2},"movieFile":{"movieId":127,"relativePath":"Jumanji.1995-Bluray-1080p.mkv","path":"\/movies\/Jumanji (1995)\/Jumanji.1995-Bluray-1080p.mkv","size":10647858614,"dateAdded":"2018-10-14T01:00:38Z","sceneName":"Jumanji.1995.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3640227,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9013000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:44:06","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Czech \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Greek \/ Hungarian \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Slovak"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":287},"collection":{"name":"Jumanji Collection","tmdbId":495527,"images":[]},"id":127},{"title":"Kiki's Delivery Service","originalTitle":"\u9b54\u5973\u306e\u5b85\u6025\u4fbf","alternateTitles":[{"sourceType":"tmdb","movieId":128,"title":"Majo no Takkyuubin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1570},{"sourceType":"tmdb","movieId":128,"title":"Majo no takky\u00fbbin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1571},{"sourceType":"tmdb","movieId":128,"title":"\u0412\u0456\u0434\u044c\u043c\u0438\u043d\u0430 \u0435\u043a\u0441\u043f\u0440\u0435\u0441-\u043f\u043e\u0448\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1572},{"sourceType":"tmdb","movieId":128,"title":"\u0421\u043b\u0443\u0436\u0431\u0430 \u0434\u043e\u0441\u0442\u0430\u0432\u043a\u0438 \u041a\u0456\u043a\u0456 \u044e\u043d\u043e\u0457 \u0432\u0456\u0434\u044c\u043c\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1573}],"secondaryYearSourceId":0,"sortTitle":"kiki s delivery service","sizeOnDisk":6828245462,"status":"released","overview":"A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.","inCinemas":"1989-07-29T00:00:00Z","physicalRelease":"1989-07-29T00:00:00Z","digitalRelease":"2011-08-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/128\/poster.jpg?lastWrite=637611070912481627","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7nO5DUMnGUuXrA4r2h6ESOKQRrx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/128\/fanart.jpg?lastWrite=637629235545066934","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/h5pAEVma835u8xoE60kmLVopLct.jpg"}],"website":"","year":1989,"hasFile":true,"youTubeTrailerId":"4bG17OYs-GA","studio":"Studio Ghibli","path":"\/movies\/Kiki's Delivery Service (1989)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Kiki's Delivery Service (1989)","runtime":103,"cleanTitle":"kikisdeliveryservice","imdbId":"tt0097814","tmdbId":16859,"titleSlug":"16859","certification":"G","genres":["Animation","Family","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2734,"value":7.8},"movieFile":{"movieId":128,"relativePath":"Kiki's Delivery Service.1989-Bluray-1080p.mkv","path":"\/movies\/Kiki's Delivery Service (1989)\/Kiki's Delivery Service.1989-Bluray-1080p.mkv","size":6828245462,"dateAdded":"2018-10-14T09:43:52Z","sceneName":"Kikis.Delivery.Service.1989.1080p.BluRay.x264.DD2.0-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":192000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:43:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":312},"id":128},{"title":"Kill Bill: Vol. 2","originalTitle":"Kill Bill: Vol. 2","alternateTitles":[{"sourceType":"tmdb","movieId":129,"title":"Kill Bill Volume2","sourceId":393,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":885},{"sourceType":"tmdb","movieId":129,"title":"Kill Bill, la venganza: Volumen II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3629},{"sourceType":"tmdb","movieId":129,"title":"Ubii\u0306 Bil 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3630},{"sourceType":"tmdb","movieId":129,"title":"Kill Bill 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3631},{"sourceType":"tmdb","movieId":129,"title":"\ud0ac \ube4c 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3632},{"sourceType":"tmdb","movieId":129,"title":"\ud0ac \ube4c 2\ubd80","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3633},{"sourceType":"tmdb","movieId":129,"title":"Ubiti Bila, drugi deo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3634},{"sourceType":"tmdb","movieId":129,"title":"Ubit' Billa 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3635},{"sourceType":"tmdb","movieId":129,"title":"\u0423\u0431\u0438\u0442\u044c \u0411\u0438\u043b\u043b\u0430 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3636},{"sourceType":"tmdb","movieId":129,"title":"Bill'i \u00d6ld\u00fcrmek: B\u00f6l\u00fcm 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3637},{"sourceType":"tmdb","movieId":129,"title":"Vbyty Billa: Fil\u02b9m 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3638}],"secondaryYearSourceId":0,"sortTitle":"kill bill vol 2","sizeOnDisk":11470052400,"status":"released","overview":"The Bride unwaveringly continues on her roaring rampage of revenge against the band of assassins who had tried to kill her and her unborn child. She visits each of her former associates one-by-one, checking off the victims on her Death List Five until there's nothing left to do \u2026 but kill Bill.","inCinemas":"2004-04-16T00:00:00Z","physicalRelease":"2009-08-27T00:00:00Z","digitalRelease":"2006-12-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/129\/poster.jpg?lastWrite=637635290025992557","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2yhg0mZQMhDyvUQ4rG1IZ4oIA8L.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/129\/fanart.jpg?lastWrite=637635290027512533","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/70EtzaGfO2d8X5n8SLI4s61KuJh.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"WTt8cCIvGYI","studio":"Super Cool ManChu","path":"\/movies\/Kill Bill - Vol. 2 (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Kill Bill - Vol. 2 (2004)","runtime":136,"cleanTitle":"killbillvol2","imdbId":"tt0378194","tmdbId":393,"titleSlug":"393","certification":"R","genres":["Action","Crime","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":10899,"value":7.9},"movieFile":{"movieId":129,"relativePath":"Kill Bill Vol. 2.2004-Bluray-1080p.mkv","path":"\/movies\/Kill Bill - Vol. 2 (2004)\/Kill Bill Vol. 2.2004-Bluray-1080p.mkv","size":11470052400,"dateAdded":"2018-10-15T10:32:00Z","sceneName":"Kill.Bill.Volume.2.2004.1080p.BluRay.x264-LiBRARiANS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1213681,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9924909,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:16:57","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ Spanish \/ Japanese \/ Korean \/ Chinese \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"LiBRARiANS","edition":"","id":352},"collection":{"name":"Kill Bill Collection","tmdbId":2883,"images":[]},"id":129},{"title":"Lara Croft: Tomb Raider - The Cradle of Life","originalTitle":"Lara Croft: Tomb Raider - The Cradle of Life","alternateTitles":[{"sourceType":"tmdb","movieId":130,"title":"Tomb Raider 2","sourceId":1996,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":190},{"sourceType":"tmdb","movieId":130,"title":"Lara Croft Tomb Raider 2 - The Cradle of Life","sourceId":1996,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":191},{"sourceType":"tmdb","movieId":130,"title":"Tomb Raider - The Cradle Of Life","sourceId":1996,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":931},{"sourceType":"tmdb","movieId":130,"title":"\u041b\u0430\u0440\u0430 \u041a\u0440\u043e\u0444\u0442 \u0422\u043e\u043c\u0431 \u0420\u0435\u0439\u0434\u044a\u0440: \u041b\u044e\u043b\u043a\u0430\u0442\u0430 \u043d\u0430 \u0436\u0438\u0432\u043e\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3532},{"sourceType":"tmdb","movieId":130,"title":"Tomb Raider 2 - A Origem da Vida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3533},{"sourceType":"tmdb","movieId":130,"title":"Lara Croft Tomb Raider 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3534},{"sourceType":"tmdb","movieId":130,"title":"Lara Croft 2 - Tomb Raider - Die Wiege des Lebens","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3535},{"sourceType":"tmdb","movieId":130,"title":"Tomb Raider: La cuna de la vida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3536},{"sourceType":"tmdb","movieId":130,"title":"Tomb Raider - La culla della vita","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3537},{"sourceType":"tmdb","movieId":130,"title":"\ud23c\ub808\uc774\ub354 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3540},{"sourceType":"tmdb","movieId":130,"title":"Lara Croft: Tomb Raider \u2011 Livets Vugge","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3541},{"sourceType":"tmdb","movieId":130,"title":"Lara Croft: Tomb Raider: o Ber\u00e7o da Vida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3542},{"sourceType":"tmdb","movieId":130,"title":"Lara Croft Tomb Raider: Ya\u015fam\u0131n Kayna\u011f\u0131","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3543}],"secondaryYearSourceId":0,"sortTitle":"lara croft tomb raider cradle life","sizeOnDisk":12001374512,"status":"released","overview":"Lara Croft ventures to an underwater temple in search of the mythological Pandora's Box but, after securing it, it is promptly stolen by the villainous leader of a Chinese crime syndicate. Lara must recover the box before the syndicate's evil mastermind uses it to construct a weapon of catastrophic capabilities.","inCinemas":"2003-07-21T00:00:00Z","physicalRelease":"2003-11-18T00:00:00Z","digitalRelease":"2006-09-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/130\/poster.jpg?lastWrite=637636155022887175","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vzWqkXbqs3EEMi3jgFpiRPgFGlG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/130\/fanart.jpg?lastWrite=637653456129600600","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qFPWfM8VTbwowGE7zWWwnRQsU4P.jpg"}],"website":"","year":2003,"hasFile":true,"youTubeTrailerId":"G4bhBabn-wU","studio":"Paramount","path":"\/movies\/Lara Croft - Tomb Raider \u2013 The Cradle of Life (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Lara Croft - Tomb Raider \u2013 The Cradle of Life (2003)","runtime":117,"cleanTitle":"laracrofttombraidercradlelife","imdbId":"tt0325703","tmdbId":1996,"titleSlug":"1996","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3398,"value":5.7},"movieFile":{"movieId":130,"relativePath":"Lara Croft Tomb Raider \u2013 The Cradle of Life.2003-Bluray-1080p.mkv","path":"\/movies\/Lara Croft - Tomb Raider \u2013 The Cradle of Life (2003)\/Lara Croft Tomb Raider \u2013 The Cradle of Life.2003-Bluray-1080p.mkv","size":12001374512,"dateAdded":"2018-10-14T01:38:48Z","sceneName":"Lara.Croft.Tomb.Raider.The.Cradle.of.Life.2003.1080p.BluRay.x264.DTS-HD.MA.5.1-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2218266,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11389831,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:57:21","scanType":"Progressive","subtitles":"English \/ English \/ English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":288},"collection":{"name":"Tomb Raider Collection","tmdbId":2467,"images":[]},"id":130},{"title":"Lara Croft: Tomb Raider","originalTitle":"Lara Croft: Tomb Raider","alternateTitles":[{"sourceType":"tmdb","movieId":131,"title":"Tomb Raider","sourceId":1995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":192},{"sourceType":"tmdb","movieId":131,"title":"\u041b\u0430\u0440\u0430 \u041a\u0440\u043e\u0444\u0442 \u0422\u043e\u043c\u0431 \u0420\u0435\u0439\u0434\u044a\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3528},{"sourceType":"tmdb","movieId":131,"title":"Tomb Raider 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3529},{"sourceType":"tmdb","movieId":131,"title":"\ud23c \ub808\uc774\ub354","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3531},{"sourceType":"tmdb","movieId":131,"title":"Tomb Raider 1 - Lara Croft - Tomb Raider","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5558}],"secondaryYearSourceId":0,"sortTitle":"lara croft tomb raider","sizeOnDisk":2058188088,"status":"released","overview":"English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.","inCinemas":"2001-06-11T00:00:00Z","physicalRelease":"2001-11-13T00:00:00Z","digitalRelease":"2005-09-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/131\/poster.jpg?lastWrite=637617991974217853","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sJpl1EfHGZhbKtZ3fWTlwrpM1tH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/131\/fanart.jpg?lastWrite=637629235555306774","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6a3tiuwoM0vyytHkQHNmMppijCe.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"iJA8Pg7VJDo","studio":"Paramount","path":"\/movies\/Lara Croft - Tomb Raider (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Lara Croft - Tomb Raider (2001)","runtime":100,"cleanTitle":"laracrofttombraider","imdbId":"tt0146316","tmdbId":1995,"titleSlug":"1995","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4908,"value":5.9},"movieFile":{"movieId":131,"relativePath":"Lara Croft Tomb Raider.2001-Bluray-1080p.mp4","path":"\/movies\/Lara Croft - Tomb Raider (2001)\/Lara Croft Tomb Raider.2001-Bluray-1080p.mp4","size":2058188088,"dateAdded":"2018-10-14T00:37:29Z","sceneName":"Tomb.Raider.2001.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223999,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:40:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":286},"collection":{"name":"Tomb Raider Collection","tmdbId":2467,"images":[]},"id":131},{"title":"Magical Girl Lyrical Nanoha: The Movie 1st","originalTitle":"\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 1st","alternateTitles":[{"sourceType":"tmdb","movieId":132,"title":"\ub9c8\ubc95\uc18c\ub140 \ub9ac\ub9ac\uceec \ub098\ub178\ud558 The MOVIE 1st","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4415},{"sourceType":"tmdb","movieId":132,"title":"\u041b\u0438\u0440\u0438\u0447\u043d\u0430\u044f \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u0438\u0446\u0430 \u041d\u0430\u043d\u043e\u0445\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4416},{"sourceType":"tmdb","movieId":132,"title":"\u041b\u0438\u0440\u0438\u0447\u043d\u0430\u044f \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u0438\u0446\u0430 \u041d\u0430\u043d\u043e\u0445\u0430 (\u0444\u0438\u043b\u044c\u043c \u043f\u0435\u0440\u0432\u044b\u0439)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4417},{"sourceType":"tmdb","movieId":132,"title":"\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 1st","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4454}],"secondaryYearSourceId":0,"sortTitle":"magical girl lyrical nanoha movie 1st","sizeOnDisk":8554078239,"status":"released","overview":"Takamachi Nanoha is a normal third-grader who feels a little useless and out-of-place with no purpose. Then one day, she saves a ferret, who turns out to be a mage from another planet who came to this planet to search for the jewel seeds. Nanoha agrees to help, but this task gets complicated when another girl arrives to steal them.","inCinemas":"2010-01-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/132\/poster.jpg?lastWrite=637647399846555373","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ueSkyihvsnNRRv3SIKmmp69Y9Pl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/132\/fanart.jpg?lastWrite=637398486507563783","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/44Yvr2TrEVPSZVzCpyKA5IlHacH.jpg"}],"website":"http:\/\/nanoha.com\/","year":2010,"hasFile":true,"youTubeTrailerId":"","studio":"Aniplex","path":"\/movies\/Magical Girl Lyrical Nanoha - The Movie 1st (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Magical Girl Lyrical Nanoha - The Movie 1st (2010)","runtime":130,"cleanTitle":"magicalgirllyricalnanohamovie1st","imdbId":"tt1587216","tmdbId":50716,"titleSlug":"50716","genres":["Animation","Drama","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":7,"value":7.4},"movieFile":{"movieId":132,"relativePath":"\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 1st.2010-HDTV-1080p.mkv","path":"\/movies\/Magical Girl Lyrical Nanoha - The Movie 1st (2010)\/\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 1st.2010-HDTV-1080p.mkv","size":8554078239,"dateAdded":"2020-06-19T00:22:14Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8115000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:10:11","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"edition":"","id":682},"collection":{"name":"Magical Girl Lyrical Nanoha Collection","tmdbId":231657,"images":[]},"id":132},{"title":"Magical Girl Lyrical Nanoha: The Movie 2nd A's","originalTitle":"\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 2nd A's","alternateTitles":[{"sourceType":"tmdb","movieId":133,"title":"Mah\u014d Sh\u014djo Lyrical Nanoha: The Movie 2nd A's","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4419}],"secondaryYearSourceId":0,"sortTitle":"magical girl lyrical nanoha movie 2nd s","sizeOnDisk":6624544700,"status":"released","overview":"Six months after the events of Magical Girl Lyrical Nanoha: The Movie 1st, Fate has returned to Uminari City with Lindy as her legal guardian and is living the life of a normal elementary schoolgirl along with Nanoha and her friends. The reunion between the two new-found friends is cut short, however, when they are assaulted by four ancient magic users who identify themselves as the Wolkenritter. As the motives behind the actions of the Wolkenritter become clear, Nanoha and Fate find themselves in a race against time to stop the reactivation of a highly dangerous artifact known as the Book of Darkness.","inCinemas":"2012-07-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/133\/poster.jpg?lastWrite=637647399851115297","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/quAsWHbyfWTo2jCn9yR7Z8TjqfX.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/133\/fanart.jpg?lastWrite=637452096708270422","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/A722VFjdBs8L3Cn980QnyKTRUoh.jpg"}],"website":"http:\/\/www.nanoha.com\/","year":2012,"hasFile":true,"youTubeTrailerId":"","studio":"Aniplex","path":"\/movies\/Magical Girl Lyrical Nanoha - The Movie 2nd A's (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Magical Girl Lyrical Nanoha - The Movie 2nd A's (2012)","runtime":150,"cleanTitle":"magicalgirllyricalnanohamovie2nds","imdbId":"tt3833714","tmdbId":181522,"titleSlug":"181522","genres":["Drama","Animation","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5,"value":5.6},"movieFile":{"movieId":133,"relativePath":"\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 2nd A's.2012-Bluray-1080p.mkv","path":"\/movies\/Magical Girl Lyrical Nanoha - The Movie 2nd A's (2012)\/\u9b54\u6cd5\u5c11\u5973\u30ea\u30ea\u30ab\u30eb\u306a\u306e\u306f The MOVIE 2nd A's.2012-Bluray-1080p.mkv","size":6624544700,"dateAdded":"2020-06-19T00:22:41Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x1076","runTime":"2:30:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"D5AF9542","edition":"","id":683},"collection":{"name":"Magical Girl Lyrical Nanoha Collection","tmdbId":231657,"images":[]},"id":133},{"title":"Mardock Scramble: The First Compression","originalTitle":"\u30de\u30eb\u30c9\u30a5\u30c3\u30af\u30fb\u30b9\u30af\u30e9\u30f3\u30d6\u30eb \u5727\u7e2e","alternateTitles":[{"sourceType":"tmdb","movieId":134,"title":"Mardock Scramble","sourceId":73529,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":193},{"sourceType":"tmdb","movieId":134,"title":"Marudukku sukuranburu: Asshuku","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5194},{"sourceType":"tmdb","movieId":134,"title":"\u041c\u044d\u0440\u0434\u043e\u043a \u0421\u043a\u0440\u044d\u043c\u0431\u043b: \u041f\u0435\u0440\u0432\u043e\u0435 \u0441\u0436\u0430\u0442\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5195},{"sourceType":"tmdb","movieId":134,"title":"Mardock Scramble 1 Compression","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5888}],"secondaryYearSourceId":0,"sortTitle":"mardock scramble first compression","sizeOnDisk":1405403692,"status":"released","overview":"Rune Ballot is a down-and-out teen prostitute in Mardock City. One day, she's picked up by an ambitious casino manager named Shell who gives her everything she could want. Renewed by a false innocence, a false past, and now the false life Shell has given her, Ballot feels grateful. However, she can't help but be curious about why he's done so much for her, so she does some research about his past on a computer. This turns out to be a mistake which will change her life greatly. When Shell finds out what she's done, he attempts to burn her to death by blowing up her car.","inCinemas":"2010-11-06T00:00:00Z","physicalRelease":"2011-12-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/134\/poster.jpg?lastWrite=637633559592404071","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jHXIo2z6nc9uKuIjYYNISM4KBrO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/134\/fanart.jpg?lastWrite=637420965448786478","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bA8TlyGsjtSmgH67I1AYQwMLqkj.jpg"}],"website":"http:\/\/m-scramble.jp\/compression\/","year":2010,"hasFile":true,"youTubeTrailerId":"CVXBZngLd-4","studio":"GoHands","path":"\/movies\/Mardock Scramble - The First Compression (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Mardock Scramble - The First Compression (2010)","runtime":69,"cleanTitle":"mardockscramblefirstcompression","imdbId":"tt1754177","tmdbId":73529,"titleSlug":"73529","genres":["Thriller","Animation","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":75,"value":6.9},"movieFile":{"movieId":134,"relativePath":"Mardock Scramble The First Compression.2010-Bluray-1080p.mkv","path":"\/movies\/Mardock Scramble - The First Compression (2010)\/Mardock Scramble The First Compression.2010-Bluray-1080p.mkv","size":1405403692,"dateAdded":"2018-10-16T14:26:25Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC SBR","audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2316875,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:09:08","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DashWatson","edition":"","id":373},"collection":{"name":"Mardock Scramble Collection","tmdbId":122661,"images":[]},"id":134},{"title":"Mardock Scramble: The Second Combustion","originalTitle":"\u30de\u30eb\u30c9\u30a5\u30c3\u30af\u30fb\u30b9\u30af\u30e9\u30f3\u30d6\u30eb \u71c3\u713c","alternateTitles":[{"sourceType":"tmdb","movieId":135,"title":"Marudukku sukuranburu: Nenshou","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5272},{"sourceType":"tmdb","movieId":135,"title":"Mardock Scramble 2 Combustion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5889}],"secondaryYearSourceId":0,"sortTitle":"mardock scramble second combustion","sizeOnDisk":1665846627,"status":"released","overview":"Second film of the Mardock Scramble series. Balot and a severely injured Oeufcoque seem to be at the mercy of an obsessed Boiled. Dr. Easter comes to the rescue and the group escapes to \"Paradise\" where many secrets of Mardock lie and where Balot will need to come to a decision herself about what she will and can do.","inCinemas":"2011-09-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/135\/poster.jpg?lastWrite=637247174141576841","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5jm9rXeZha86fSBTjG3jcWImjB3.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/135\/fanart.jpg?lastWrite=637607610345810473","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/flmyx0V0CE6bDLQwO3exlxHYBiK.jpg"}],"website":"http:\/\/m-scramble.jp\/combustion\/","year":2011,"hasFile":true,"youTubeTrailerId":"","studio":"GoHands","path":"\/movies\/Mardock Scramble - The Second Combustion (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Mardock Scramble - The Second Combustion (2011)","runtime":64,"cleanTitle":"mardockscramblesecondcombustion","imdbId":"tt2048804","tmdbId":73530,"titleSlug":"73530","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":51,"value":6.6},"movieFile":{"movieId":135,"relativePath":"Mardock Scramble The Second Combustion.2011-Bluray-1080p.mkv","path":"\/movies\/Mardock Scramble - The Second Combustion (2011)\/Mardock Scramble The Second Combustion.2011-Bluray-1080p.mkv","size":1665846627,"dateAdded":"2018-10-16T14:26:36Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC SBR","audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":3073271,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:04:30","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DashWatson","edition":"","id":374},"collection":{"name":"Mardock Scramble Collection","tmdbId":122661,"images":[]},"id":135},{"title":"Mardock Scramble: The Third Exhaust","originalTitle":"\u30de\u30eb\u30c9\u30a5\u30c3\u30af\u30fb\u30b9\u30af\u30e9\u30f3\u30d6\u30eb \u6392\u6c17","alternateTitles":[{"sourceType":"tmdb","movieId":136,"title":"Marudukku sukuranburu: Haiki","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5273},{"sourceType":"tmdb","movieId":136,"title":"\u041c\u044d\u0440\u0434\u043e\u043a \u0421\u043a\u0440\u044d\u043c\u0431\u043b: \u0418\u0441\u0442\u043e\u0449\u0435\u043d\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5274},{"sourceType":"tmdb","movieId":136,"title":"Mardock Scramble 3 Exhaust","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5890}],"secondaryYearSourceId":0,"sortTitle":"mardock scramble third exhaust","sizeOnDisk":1444551000,"status":"released","overview":"Third film of the Mardock Scramble series.\r Rune Balot goes to a casino connected to the October corporation to try to wrap up her case once and for all.","inCinemas":"2012-09-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/136\/poster.jpg?lastWrite=637633559600003949","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/p1Vr3GoArvo7ide9jL2vBEbtRv8.jpg"}],"website":"http:\/\/m-scramble.jp\/exhaust\/","year":2012,"hasFile":true,"youTubeTrailerId":"yz0hlVfDnhk","studio":"Sentai Filmworks","path":"\/movies\/Mardock Scramble - The Third Exhaust (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Mardock Scramble - The Third Exhaust (2012)","runtime":68,"cleanTitle":"mardockscramblethirdexhaust","imdbId":"tt2423504","tmdbId":122662,"titleSlug":"122662","certification":"NC-17","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":39,"value":7.1},"movieFile":{"movieId":136,"relativePath":"Mardock Scramble The Third Exhaust.2012-Bluray-1080p.mkv","path":"\/movies\/Mardock Scramble - The Third Exhaust (2012)\/Mardock Scramble The Third Exhaust.2012-Bluray-1080p.mkv","size":1444551000,"dateAdded":"2018-10-16T14:26:53Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC SBR","audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2408798,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:08:56","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DashWatson","edition":"","id":375},"collection":{"name":"Mardock Scramble Collection","tmdbId":122661,"images":[]},"id":136},{"title":"Megamind","originalTitle":"Megamind","alternateTitles":[{"sourceType":"tmdb","movieId":137,"title":"Megamind 3D","sourceId":38055,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":194},{"sourceType":"tmdb","movieId":137,"title":"Master Mind","sourceId":38055,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":195},{"sourceType":"tmdb","movieId":137,"title":"Oobermind","sourceId":38055,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":196},{"sourceType":"tmdb","movieId":137,"title":"Megamind: Superschurk","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2198},{"sourceType":"tmdb","movieId":137,"title":"\uba54\uac00 \ub9c8\uc778\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5696}],"secondaryYearSourceId":0,"sortTitle":"megamind","sizeOnDisk":4685252040,"status":"released","overview":"Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.","inCinemas":"2010-10-28T00:00:00Z","physicalRelease":"2011-04-04T00:00:00Z","digitalRelease":"2016-01-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/137\/poster.jpg?lastWrite=637625776140321573","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/137\/fanart.jpg?lastWrite=637660377211090977","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/irpJXGiVr539uuspcQcNdkhS2lq.jpg"}],"website":"http:\/\/www.megamind.com","year":2010,"hasFile":true,"youTubeTrailerId":"6CJUQr4Vs40","studio":"DreamWorks Animation","path":"\/movies\/Megamind (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Megamind (2010)","runtime":96,"cleanTitle":"megamind","imdbId":"tt1001526","tmdbId":38055,"titleSlug":"38055","certification":"PG","genres":["Animation","Action","Comedy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5182,"value":6.9},"movieFile":{"movieId":137,"relativePath":"Megamind.2010-Bluray-1080p.mkv","path":"\/movies\/Megamind (2010)\/Megamind.2010-Bluray-1080p.mkv","size":4685252040,"dateAdded":"2018-10-14T04:38:00Z","sceneName":"Megamind.2010.1080p.BluRay.x264-SECTOR7","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5895000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:35:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SECTOR7","edition":"","id":297},"id":137},{"title":"Metropolis","originalTitle":"\u30e1\u30c8\u30ed\u30dd\u30ea\u30b9","alternateTitles":[{"sourceType":"tmdb","movieId":138,"title":"Robotic Angel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4408},{"sourceType":"tmdb","movieId":138,"title":"Metr\u00f3polis de Osamu Tezuka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4409},{"sourceType":"tmdb","movieId":138,"title":"Metropolisz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4410},{"sourceType":"tmdb","movieId":138,"title":"\u30e1\u30c8\u30ed\u30dd\u30ea\u30b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4411},{"sourceType":"tmdb","movieId":138,"title":"\u041c\u0435\u0442\u0440\u043e\u043f\u043e\u043b\u0438\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4412},{"sourceType":"tmdb","movieId":138,"title":"\u5927\u90fd\u6703","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4413},{"sourceType":"tmdb","movieId":138,"title":"\u041c\u0435\u0442\u0440\u043e\u043f\u043e\u043b\u0456\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4414},{"sourceType":"tmdb","movieId":138,"title":"Osamu Tezuka no Metoroporisu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6042}],"secondaryYearSourceId":0,"sortTitle":"metropolis","sizeOnDisk":2201169381,"status":"released","overview":"Kenichi and his detective uncle, Shunsaku Ban, leave Japan to visit Metropolis, in search of the criminal, Dr. Laughton. However, when they finally find Dr. Laughton, Kenichi and Shunsaku find themselves seperated and plunged into the middle of a larger conspiracy. While Shunsaku searches for his nephew and explanations, Kenichi tries to protect Tima (a mysterious young girl), from Duke Red and his adopted son Rock, both of whom have very different reasons for wanting to find her.","inCinemas":"2001-05-26T00:00:00Z","physicalRelease":"2002-02-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/138\/poster.jpg?lastWrite=637577341883911524","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tOehVz3MhBhzvpvizEnsC8Gylo1.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/138\/fanart.jpg?lastWrite=637624911341803248","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fmlTj7qDrNdfpBMcEfEpnzwpMr0.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"2k784lKDOTE","studio":"Bandai Visual","path":"\/movies\/Metropolis (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Metropolis (2001)","runtime":108,"cleanTitle":"metropolis","imdbId":"tt0293416","tmdbId":9606,"titleSlug":"9606","certification":"PG-13","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":294,"value":7},"movieFile":{"movieId":138,"relativePath":"Metropolis.2001-Bluray-1080p.mp4","path":"\/movies\/Metropolis (2001)\/Metropolis.2001-Bluray-1080p.mp4","size":2201169381,"dateAdded":"2018-10-14T10:29:10Z","sceneName":"Metropolis.2001.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223996,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1818x994","runTime":"1:47:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":314},"id":138},{"title":"Murder on the Orient Express","originalTitle":"Murder on the Orient Express","alternateTitles":[{"sourceType":"tmdb","movieId":139,"title":"Assassinato no Expresso Oriente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4683},{"sourceType":"tmdb","movieId":139,"title":"\uc624\ub9ac\uc5d4\ud2b8 \ud2b9\uae09\uc0b4\uc778","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4687},{"sourceType":"tmdb","movieId":139,"title":"\u0423\u0431\u0438\u0439\u0441\u0442\u0432\u043e \u0432 \u0412\u043e\u0441\u0442\u043e\u0447\u043d\u043e\u043c \u044d\u043a\u0441\u043f\u0440\u0435\u0441\u0441\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4688},{"sourceType":"tmdb","movieId":139,"title":"\u0e23\u0e16\u0e14\u0e48\u0e27\u0e19\u0e2a\u0e32\u0e22\u0e21\u0e23\u0e13\u0e30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4689}],"secondaryYearSourceId":0,"sortTitle":"murder on orient express","sizeOnDisk":16800449475,"status":"released","overview":"Genius Belgian detective Hercule Poirot investigates the murder of an American tycoon aboard the Orient Express train.","inCinemas":"2017-11-03T00:00:00Z","physicalRelease":"2018-02-20T00:00:00Z","digitalRelease":"2018-02-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/139\/poster.jpg?lastWrite=637663837069189629","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iBlfxlw8qwtUS0R8YjIU7JtM6LM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/139\/fanart.jpg?lastWrite=637643939655203980","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2J283YNxKhxAqHeVegUJ5mzLfGb.jpg"}],"website":"","year":2017,"hasFile":true,"youTubeTrailerId":"z68frP9Q7XA","studio":"The Mark Gordon Company","path":"\/movies\/Murder on the Orient Express (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Murder on the Orient Express (2017)","runtime":114,"cleanTitle":"murderonorientexpress","imdbId":"tt3402236","tmdbId":392044,"titleSlug":"392044","certification":"PG-13","genres":["Mystery","Crime","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":7712,"value":6.7},"movieFile":{"movieId":139,"relativePath":"Murder on the Orient Express.2017-HDTV-2160p.mkv","path":"\/movies\/Murder on the Orient Express (2017)\/Murder on the Orient Express.2017-HDTV-2160p.mkv","size":16800449475,"dateAdded":"2018-10-11T15:10:04Z","indexerFlags":0,"quality":{"quality":{"id":16,"name":"HDTV-2160p","source":"tv","resolution":2160,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4138945,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":14105367,"videoCodec":"x265","videoFps":23.976,"resolution":"3840x1606","runTime":"1:53:55","scanType":"","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ French \/ French \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ Italian \/ Italian \/ German \/ German \/ Dutch \/ Dutch \/ Swedish \/ Swedish \/ Norwegian \/ Norwegian \/ Danish \/ Danish \/ Finnish \/ Finnish \/ Cz"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"8ch","edition":"","id":126},"collection":{"name":"Hercule Poirot (Kenneth Branagh) Collection","tmdbId":735384,"images":[]},"id":139},{"title":"My Neighbor Totoro","originalTitle":"\u3068\u306a\u308a\u306e\u30c8\u30c8\u30ed","alternateTitles":[{"sourceType":"tmdb","movieId":140,"title":"Totoro auzokidea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2497},{"sourceType":"tmdb","movieId":140,"title":"N\u00e4kym\u00e4t\u00f6n yst\u00e4v\u00e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2498},{"sourceType":"tmdb","movieId":140,"title":"Totoro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2499},{"sourceType":"tmdb","movieId":140,"title":"My Neighbour Totoro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2500},{"sourceType":"tmdb","movieId":140,"title":"Tonari No Totoro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2501},{"sourceType":"tmdb","movieId":140,"title":"Magiska \u00e4ventyr med Totoro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2502},{"sourceType":"tmdb","movieId":140,"title":"Mon Voisin Totoro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6287}],"secondaryYear":1989,"secondaryYearSourceId":0,"sortTitle":"my neighbor totoro","sizeOnDisk":12058749452,"status":"released","overview":"Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.","inCinemas":"1988-04-16T00:00:00Z","physicalRelease":"1990-05-15T00:00:00Z","digitalRelease":"1996-03-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/140\/poster.jpg?lastWrite=637656051790772118","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rtGDOeG9LzoerkDGZF9dnVeLppL.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/140\/fanart.jpg?lastWrite=637656051792612086","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fxYazFVeOCHpHwuqGuiqcCTw162.jpg"}],"website":"https:\/\/movies.disney.com\/my-neighbor-totoro","year":1988,"hasFile":true,"youTubeTrailerId":"pU8BRWhj9_o","studio":"Studio Ghibli","path":"\/movies\/My Neighbor Totoro (1988)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/My Neighbor Totoro (1988)","runtime":86,"cleanTitle":"myneighbortotoro","imdbId":"tt0096283","tmdbId":8392,"titleSlug":"8392","certification":"G","genres":["Fantasy","Animation","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5619,"value":8.1},"movieFile":{"movieId":140,"relativePath":"My Neighbor Totoro.1988-Bluray-1080p.mkv","path":"\/movies\/My Neighbor Totoro (1988)\/My Neighbor Totoro.1988-Bluray-1080p.mkv","size":12058749452,"dateAdded":"2018-10-14T08:14:51Z","sceneName":"My.Neighbor.Totoro.1988.JAPANESE.AND.ENGLISH.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":16900000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:26:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":307},"id":140},{"title":"My Neighbors the Yamadas","originalTitle":"\u30db\u30fc\u30db\u30b1\u30ad\u30e7 \u3068\u306a\u308a\u306e\u5c71\u7530\u304f\u3093","alternateTitles":[{"sourceType":"tmdb","movieId":141,"title":"Meine Nachbarn die Yamadas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3774},{"sourceType":"tmdb","movieId":141,"title":"Mes voisins les Yamada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3775},{"sourceType":"tmdb","movieId":141,"title":"My Neighbours the Yamadas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3776},{"sourceType":"tmdb","movieId":141,"title":"I miei vicini Yamada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3777},{"sourceType":"tmdb","movieId":141,"title":"Hoohokekyo Tonari no Yamada-kun","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3778},{"sourceType":"tmdb","movieId":141,"title":"Houhokekyo tonari no Yamada-kun","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3779},{"sourceType":"tmdb","movieId":141,"title":"H\u00f4hokekyo tonari no Yamada-kun","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3780},{"sourceType":"tmdb","movieId":141,"title":"\u30db\u30fc\u30db\u30b1\u30ad\u30e7 \u3068\u306a\u308a\u306e\u5c71\u7530\u304f\u3093","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3781},{"sourceType":"tmdb","movieId":141,"title":"\uc774\uc6c3\uc758 \uc57c\ub9c8\ub2e4\uad70","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3782},{"sourceType":"tmdb","movieId":141,"title":"\uc774\uc6c3\uc9d1 \uc57c\ub9c8\ub2e4\uad70","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3783},{"sourceType":"tmdb","movieId":141,"title":"Mis Vecinos los Yamada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3784},{"sourceType":"tmdb","movieId":141,"title":"\u6211\u7684\u90bb\u5c45\u5c71\u7530\u541b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5286},{"sourceType":"tmdb","movieId":141,"title":"Rodzinka Yamad\u00f3w","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5857},{"sourceType":"tmdb","movieId":141,"title":"Meus Vizinhos, Os Yamadas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5858},{"sourceType":"tmdb","movieId":141,"title":"A Fam\u00edlia Yamada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5859},{"sourceType":"tmdb","movieId":141,"title":"\u041c\u043e\u0438 \u0441\u043e\u0441\u0435\u0434\u0438 \u042f\u043c\u0430\u0434\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5860},{"sourceType":"tmdb","movieId":141,"title":"A Yamada csal\u00e1d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5861},{"sourceType":"tmdb","movieId":141,"title":"\u041c\u043e\u0438\u0442\u0435 \u0441\u044a\u0441\u0435\u0434\u0438 \u042f\u043c\u0430\u0434\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":29,"name":"Bulgarian"},"id":5862},{"sourceType":"tmdb","movieId":141,"title":"\u0e22\u0e32\u0e21\u0e32\u0e14\u0e30 \u0e04\u0e23\u0e2d\u0e1a\u0e04\u0e23\u0e31\u0e27\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":5863},{"sourceType":"tmdb","movieId":141,"title":"Mina grannar Yamadas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5864}],"secondaryYear":2001,"secondaryYearSourceId":0,"sortTitle":"my neighbors yamadas","sizeOnDisk":8210323422,"status":"released","overview":"The Yamadas are a typical middle class Japanese family in urban Tokyo and this film shows us a variety of episodes of their lives. With tales that range from the humourous to the heartbreaking, we see this family cope with life's little conflicts, problems and joys in their own way.","inCinemas":"1999-07-17T00:00:00Z","physicalRelease":"2000-11-17T00:00:00Z","digitalRelease":"2000-10-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/141\/poster.jpg?lastWrite=637622316789226616","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wTGuHmMIBBgKakY80J1D52VvQKI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/141\/fanart.jpg?lastWrite=637643074365324499","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2hXZNOxytNch4TQwf8FIbRQoK9K.jpg"}],"website":"","year":1999,"hasFile":true,"youTubeTrailerId":"x9itwuJ6iMQ","studio":"Studio Ghibli","path":"\/movies\/My Neighbors the Yamadas (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/My Neighbors the Yamadas (1999)","runtime":104,"cleanTitle":"myneighborsyamadas","imdbId":"tt0206013","tmdbId":16198,"titleSlug":"16198","certification":"PG","genres":["Animation","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":322,"value":6.9},"movieFile":{"movieId":141,"relativePath":"My Neighbors the Yamadas.1999-Bluray-1080p.mkv","path":"\/movies\/My Neighbors the Yamadas (1999)\/My Neighbors the Yamadas.1999-Bluray-1080p.mkv","size":8210323422,"dateAdded":"2019-05-16T11:28:24Z","sceneName":"My.Neighbors.The.Yamadas.1999.1080p.BluRay.x264-PFa","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9056000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:43:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"mnty","edition":"","id":546},"id":141},{"title":"Nausica\u00e4 of the Valley of the Wind","originalTitle":"\u98a8\u306e\u8c37\u306e\u30ca\u30a6\u30b7\u30ab","alternateTitles":[{"sourceType":"tmdb","movieId":142,"title":"Warriors of the Wind","sourceId":81,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":198},{"sourceType":"tmdb","movieId":142,"title":"Nausica\u00e4 - Prinzessin aus dem Tal der Winde","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2503},{"sourceType":"tmdb","movieId":142,"title":"SternenKrieger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2504},{"sourceType":"tmdb","movieId":142,"title":"Sternenkrieger - Warriors of the Wind","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2505},{"sourceType":"tmdb","movieId":142,"title":"Guerreros del viento","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2506},{"sourceType":"tmdb","movieId":142,"title":"La Princesse des Etoiles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2507},{"sourceType":"tmdb","movieId":142,"title":"Le vaisseau fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2508},{"sourceType":"tmdb","movieId":142,"title":"I nafsika tis koiladas ton anemon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2509},{"sourceType":"tmdb","movieId":142,"title":"Baram Gegok ui Nausika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2511},{"sourceType":"tmdb","movieId":142,"title":"Nausikaja iz Doline Vetra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2512},{"sourceType":"tmdb","movieId":142,"title":"\u041d\u0430\u0443\u0441\u0438\u043a\u0430 \u0438\u0437 \u0414\u043e\u043b\u0438\u043d\u044b \u0412\u0435\u0442\u0440\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2513},{"sourceType":"tmdb","movieId":142,"title":"Vindens krigare","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2514},{"sourceType":"tmdb","movieId":142,"title":"R\u00fczgar Sava\u015f\u00e7\u0131lar\u0131","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2515},{"sourceType":"tmdb","movieId":142,"title":"\u041d\u0430\u0432\u0441\u0456\u043a\u0430\u044f \u0437 \u0414\u043e\u043b\u0438\u043d\u0438 \u0412\u0456\u0442\u0440\u0456\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2516},{"sourceType":"tmdb","movieId":142,"title":"Nausica of the Valley of the Winds","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5883},{"sourceType":"tmdb","movieId":142,"title":"Kaze no tani no Nausica\u00e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5945},{"sourceType":"tmdb","movieId":142,"title":"Kaze no tani no Naushika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6217}],"secondaryYear":2004,"secondaryYearSourceId":0,"sortTitle":"nausica\u00e4 valley wind","sizeOnDisk":9482024281,"status":"released","overview":"After a global war, the seaside kingdom known as the Valley of the Wind remains one of the last strongholds on Earth untouched by a poisonous jungle and the powerful insects that guard it. Led by the courageous Princess Nausica\u00e4, the people of the Valley engage in an epic struggle to restore the bond between humanity and Earth.","inCinemas":"1984-03-11T00:00:00Z","physicalRelease":"1986-01-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/142\/poster.jpg?lastWrite=637618856946121170","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sIpcATxMrKHRRUJAGI5UIUT7XMG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/142\/fanart.jpg?lastWrite=637655186561151999","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ulVUa2MvnJAjAeRt7h23FFJVRKH.jpg"}],"website":"https:\/\/movies.disney.com\/nausicaa-of-the-valley-of-the-wind","year":1984,"hasFile":true,"youTubeTrailerId":"6zhLBe319KE","studio":"Topcraft","path":"\/movies\/Nausica\u00e4 of the Valley of the Wind (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Nausica\u00e4 of the Valley of the Wind (1984)","runtime":117,"cleanTitle":"nausicaaevalleywind","imdbId":"tt0087544","tmdbId":81,"titleSlug":"81","certification":"PG","genres":["Adventure","Animation","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2429,"value":7.9},"movieFile":{"movieId":142,"relativePath":"Nausica\u00e4 of the Valley of the Wind.1984-Bluray-1080p.mkv","path":"\/movies\/Nausica\u00e4 of the Valley of the Wind (1984)\/Nausica\u00e4 of the Valley of the Wind.1984-Bluray-1080p.mkv","size":9482024281,"dateAdded":"2019-12-15T07:35:03Z","sceneName":"Nausicaa of the Valley of the Wind (1984) [1080p x265 HEVC 10bit BluRay Dual Audio AAC] [Prof]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":238113,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":10125487,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:58:21","scanType":"","subtitles":"English \/ English \/ French \/ English \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":641},"id":142},{"title":"Neon Genesis Evangelion: The End of Evangelion","originalTitle":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248 Air\uff0f\u307e\u3054\u3053\u308d\u3092\u3001\u541b\u306b","alternateTitles":[{"sourceType":"tmdb","movieId":144,"title":"The End of Evangelion","sourceId":18491,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":203},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248\uff1aAir\/\u771f\u5fc3\u4e3a\u4f60","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4912},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248\uff1aTHE END OF EVANGELION","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4913},{"sourceType":"tmdb","movieId":144,"title":"Neon Genesis Evangelion: Air-Magokoro Wo, Kimi Ni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4914},{"sourceType":"tmdb","movieId":144,"title":"Neon Genesis Evangelion: The End of Evangelion - Air-Magokoro Wo, Kimi Ni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4915},{"sourceType":"tmdb","movieId":144,"title":"Shin Seiki Evangelion Gekijoban The End of Evangelion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4916},{"sourceType":"tmdb","movieId":144,"title":"Shin Seiki Evangelion Gekij\u014dban: The End of Evangelion: Air\/Magokoro o, Kimi ni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4917},{"sourceType":"tmdb","movieId":144,"title":"Shinseiki Evangelion Gekijouban: The End of Evangelion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4918},{"sourceType":"tmdb","movieId":144,"title":"Shinseiki Evangelion Gekijouban: The End of Evangelion: Air\/Magokoro o, Kimi ni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4919},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3 \u5287\u5834\u7248 THE END OF EVANGELION Air\/\u307e\u3054\u3053\u308d\u3092\u3001\u541b\u306b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4920},{"sourceType":"tmdb","movieId":144,"title":"\uc2e0\uc138\uae30 \uc5d0\ubc18\uac8c\ub9ac\uc628 \uc5d4\ub4dc \uc624\ube0c \uc5d0\ubc18\uac8c\ub9ac\uc628","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4921},{"sourceType":"tmdb","movieId":144,"title":"Evangelion 'un Sonu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":4922},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7d00\u798f\u97f3\u6230\u58eb\u5287\u5834\u7248 AIR\/\u5c07\u771f\u5fc3\u737b\u7d66\u4f60","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4923},{"sourceType":"tmdb","movieId":144,"title":"\u041a\u0456\u043d\u0435\u0446\u044c \u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4924},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u4e00 \u7b2c25\u8a71 \u300cAir\u300d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5651},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u4e00 \u7b2c26\u8a71 \u300c\u307e\u3054\u3053\u308d\u3092\u3001\u541b\u306b\u300d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5652},{"sourceType":"tmdb","movieId":144,"title":"Evangelion : The End of Evangelion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5709},{"sourceType":"tmdb","movieId":144,"title":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248 THE END OF EVANGELION","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5908}],"secondaryYearSourceId":0,"sortTitle":"neon genesis evangelion end evangelion","sizeOnDisk":8222306891,"status":"released","overview":"The second of two theatrically released follow-ups to the Neon Genesis Evangelion series. Comprising of two alternate episodes which were first intended to take the place of episodes 25 and 26, this finale answers many of the questions surrounding the series, while also opening up some new possibilities.","inCinemas":"1997-07-19T00:00:00Z","physicalRelease":"1997-07-19T00:00:00Z","digitalRelease":"2004-09-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/144\/poster.jpg?lastWrite=637613667801018765","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/m9PTii0XWCIKZBBrCrOn8RLTK0w.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/144\/fanart.jpg?lastWrite=637613667802538741","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AfyuI3glMCBDFmNPj9PY6DwbgGp.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"XIBRfn2D7ZU","studio":"GAINAX","path":"\/movies\/Neon Genesis Evangelion - The End of Evangelion (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Neon Genesis Evangelion - The End of Evangelion (1997)","runtime":87,"cleanTitle":"neongenesisevangelionendevangelion","imdbId":"tt0169858","tmdbId":18491,"titleSlug":"18491","genres":["Drama","Science Fiction","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":885,"value":8.4},"movieFile":{"movieId":144,"relativePath":"Neon Genesis Evangelion The End of Evangelion.1997-Bluray-1080p.mkv","path":"\/movies\/Neon Genesis Evangelion - The End of Evangelion (1997)\/Neon Genesis Evangelion The End of Evangelion.1997-Bluray-1080p.mkv","size":8222306891,"dateAdded":"2019-11-06T23:28:59Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Japanese","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":7500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:27:05","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ German \/ German \/ Italian \/ Italian \/ Portuguese \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Greek \/ Hebrew \/ Arabic"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":631},"collection":{"name":"Evangelion Collection","tmdbId":96850,"images":[]},"id":144},{"title":"Only Yesterday","originalTitle":"\u304a\u3082\u3072\u3067\u307d\u308d\u307d\u308d","alternateTitles":[{"sourceType":"tmdb","movieId":145,"title":"Memories of Yesterday","sourceId":15080,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":204},{"sourceType":"tmdb","movieId":145,"title":"Minnesdroppar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":3787},{"sourceType":"tmdb","movieId":145,"title":"Memories Of Teardrops","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3788},{"sourceType":"tmdb","movieId":145,"title":"Pioggia di ricordi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4810},{"sourceType":"tmdb","movieId":145,"title":"Omoide Poro Poro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4811}],"secondaryYearSourceId":0,"sortTitle":"only yesterday","sizeOnDisk":8529145533,"status":"released","overview":"It\u2019s 1982, and Taeko is 27 years old, unmarried, and has lived her whole life in Tokyo. She decides to visit her family in the countryside, where she begins to reconnect to forgotten longings. In lyrical switches between the present and the past, Taeko contemplates the arc of her life, and wonders if she has been true to the dreams of her childhood self.","inCinemas":"1991-07-20T00:00:00Z","physicalRelease":"2006-09-01T00:00:00Z","digitalRelease":"2019-08-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/145\/poster.jpg?lastWrite=637655186603311385","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tOSnFE9e82iH3ZAzSTtuOkBsabJ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/145\/fanart.jpg?lastWrite=637615397637675672","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rdv9vlpCB7Q1mGWe1oMYgwbB0zi.jpg"}],"website":"http:\/\/onlyyesterdayfilm.com\/","year":1991,"hasFile":true,"youTubeTrailerId":"OfkQlZArxw0","studio":"Studio Ghibli","path":"\/movies\/Only Yesterday (1991)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Only Yesterday (1991)","runtime":118,"cleanTitle":"onlyyesterday","imdbId":"tt0102587","tmdbId":15080,"titleSlug":"15080","certification":"PG","genres":["Animation","Drama","Romance"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":692,"value":7.3},"movieFile":{"movieId":145,"relativePath":"Only Yesterday.1991-Bluray-1080p.mkv","path":"\/movies\/Only Yesterday (1991)\/Only Yesterday.1991-Bluray-1080p.mkv","size":8529145533,"dateAdded":"2018-10-14T10:33:05Z","sceneName":"Only.Yesterday.1991.1080p.BluRay.x264-MELiTE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8066000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1032","runTime":"1:58:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MELiTE","edition":"","id":315},"id":145},{"title":"Open Windows","originalTitle":"Open Windows","alternateTitles":[{"sourceType":"tmdb","movieId":146,"title":"Meurtre sous surveillance","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3662}],"secondaryYearSourceId":0,"sortTitle":"open windows","sizeOnDisk":9821015747,"status":"released","overview":"Nick is excited to discover that he's won a dinner date with his favorite actress, Jill Goddard. But when Jill refuses to honor the contest, he receives an offer he can't refuse: the ability to view Jill secretly via computer. Nick begins watching the unknowing star on her webcam, not realizing that this decision will put both himself and Jill at risk as they enter a terrifying world of cat-and-mouse where nothing-and no one-are as they seem.","inCinemas":"2014-07-04T00:00:00Z","digitalRelease":"2015-01-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/146\/poster.jpg?lastWrite=637620587091902894","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6BWNf7pztCW8Xax0OS5fc2QG7xw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/146\/fanart.jpg?lastWrite=637465072203181879","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/b9c68StVJ1lryWeoqW5pvajwe2f.jpg"}],"website":"","year":2014,"hasFile":true,"youTubeTrailerId":"_Qz7DDvTA-I","studio":"Wild Bunch","path":"\/movies\/Open Windows (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Open Windows (2014)","runtime":101,"cleanTitle":"openwindows","imdbId":"tt2409818","tmdbId":151368,"titleSlug":"151368","certification":"R","genres":["Thriller","Action","Crime"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":338,"value":5.1},"movieFile":{"movieId":146,"relativePath":"Open Windows.2014-Bluray-1080p.mkv","path":"\/movies\/Open Windows (2014)\/Open Windows.2014-Bluray-1080p.mkv","size":9821015747,"dateAdded":"2018-10-17T08:39:06Z","sceneName":"Open.Windows.2014.1080p.BluRay.x264.DTS-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:40:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":380},"id":146},{"title":"Pan's Labyrinth","originalTitle":"El laberinto del fauno","alternateTitles":[{"sourceType":"tmdb","movieId":147,"title":"Le labyrinthe de Pan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1652},{"sourceType":"tmdb","movieId":147,"title":"Paani lab\u00fcrint","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1653},{"sourceType":"tmdb","movieId":147,"title":"Ha'mavokh shel Pan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1654},{"sourceType":"tmdb","movieId":147,"title":"\ud310\uc758 \ubbf8\ub85c - \uc624\ud544\ub9ac\uc544\uc640 \uc138 \uac1c\uc758 \uc5f4\uc1e0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1655}],"secondaryYearSourceId":0,"sortTitle":"pan s labyrinth","sizeOnDisk":12899055432,"status":"released","overview":"Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.","inCinemas":"2006-08-25T00:00:00Z","physicalRelease":"2007-04-07T00:00:00Z","digitalRelease":"2011-11-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/147\/poster.jpg?lastWrite=637663837180027855","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/v9qYpp7PX6KhpoolZmZcS00zavH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/147\/fanart.jpg?lastWrite=637648265005799077","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/o0IWa75BXyXryNDVqw0xoXZzy1J.jpg"}],"website":"","year":2006,"hasFile":true,"youTubeTrailerId":"jVZRnnVSQ8k","studio":"Estudios Picasso","path":"\/movies\/Pan's Labyrinth (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pan's Labyrinth (2006)","runtime":118,"cleanTitle":"panslabyrinth","imdbId":"tt0457430","tmdbId":1417,"titleSlug":"1417","certification":"R","genres":["Fantasy","Drama","War"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":8381,"value":7.7},"movieFile":{"movieId":147,"relativePath":"Pan's Labyrinth.2006-Bluray-1080p.mkv","path":"\/movies\/Pan's Labyrinth (2006)\/Pan's Labyrinth.2006-Bluray-1080p.mkv","size":12899055432,"dateAdded":"2018-10-14T09:59:17Z","sceneName":"Pans.Labyrinth.2006.REMASTERED.1080p.BluRay.x264-DEPTH","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12903000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:59:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DEPTH","edition":"REMASTERED","id":313},"id":147},{"title":"Paprika","originalTitle":"\u30d1\u30d7\u30ea\u30ab","alternateTitles":[{"sourceType":"tmdb","movieId":148,"title":"Papurika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1661}],"secondaryYearSourceId":0,"sortTitle":"paprika","sizeOnDisk":4378858217,"status":"released","overview":"When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it: Paprika.","inCinemas":"2006-10-01T00:00:00Z","physicalRelease":"2007-08-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/148\/poster.jpg?lastWrite=637630100658897322","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bLUUr474Go1DfeN1HLjE3rnZXBq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/148\/fanart.jpg?lastWrite=637630100660057303","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nyKKKCYM9zSFlUoufrBRZfx0r1t.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/paprika","year":2006,"hasFile":true,"youTubeTrailerId":"jJzEW_eE1G0","studio":"Paprika Film Partners","path":"\/movies\/Paprika (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Paprika (2006)","runtime":90,"cleanTitle":"paprika","imdbId":"tt0851578","tmdbId":4977,"titleSlug":"4977","certification":"R","genres":["Animation","Drama","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1444,"value":7.8},"movieFile":{"movieId":148,"relativePath":"Paprika.2006-Bluray-1080p.mkv","path":"\/movies\/Paprika (2006)\/Paprika.2006-Bluray-1080p.mkv","size":4378858217,"dateAdded":"2018-10-14T08:07:35Z","sceneName":"Paprika.2006.1080p.BluRay.x264-WaLMaRT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6001000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x996","runTime":"1:30:32","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"WaLMaRT","edition":"","id":306},"id":148},{"title":"Perfect Blue","originalTitle":"\u30d1\u30fc\u30d5\u30a7\u30af\u30c8\u30d6\u30eb\u30fc","alternateTitles":[{"sourceType":"tmdb","movieId":149,"title":"Paafekuto buruu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1667},{"sourceType":"tmdb","movieId":149,"title":"Pafekuto buru","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1668},{"sourceType":"tmdb","movieId":149,"title":"\u0418\u0441\u0442\u0438\u043d\u043d\u0430\u044f \u0433\u0440\u0443\u0441\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1669},{"sourceType":"tmdb","movieId":149,"title":"\u85cd\u8272\u6050\u61fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1670},{"sourceType":"tmdb","movieId":149,"title":"\ud37c\ud399\ud2b8 \ube14\ub8e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5027},{"sourceType":"tmdb","movieId":149,"title":"\u84dd\u8272\u6050\u60e7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5271}],"secondaryYearSourceId":0,"sortTitle":"perfect blue","sizeOnDisk":1395305577,"status":"released","overview":"A retired pop singer turned actress' sense of reality is shaken when she is stalked by an obsessed fan and seemingly a ghost of her past.","inCinemas":"1997-07-25T00:00:00Z","physicalRelease":"2003-03-20T00:00:00Z","digitalRelease":"2019-04-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/149\/poster.jpg?lastWrite=637573017993282312","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/79vujbsWEbX4dzffBV541QXN6sf.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/149\/fanart.jpg?lastWrite=637618856981040563","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1YRtgjLb5xxUb2rsNRnr54Oc0B2.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"dpaCRJ_u600","studio":"Rex Entertainment","path":"\/movies\/Perfect Blue (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Perfect Blue (1997)","runtime":81,"cleanTitle":"perfectblue","imdbId":"tt0156887","tmdbId":10494,"titleSlug":"10494","certification":"R","genres":["Animation","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1407,"value":8.3},"movieFile":{"movieId":149,"relativePath":"Perfect Blue.1997-Bluray-1080p.mp4","path":"\/movies\/Perfect Blue (1997)\/Perfect Blue.1997-Bluray-1080p.mp4","size":1395305577,"dateAdded":"2019-02-01T22:42:15Z","sceneName":"Perfect Blue (1997) [BluRay] [1080p] [YTS.AM]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":121864,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:21:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":490},"id":149},{"title":"Pink Floyd: The Wall","originalTitle":"Pink Floyd: The Wall","alternateTitles":[{"sourceType":"tmdb","movieId":150,"title":"The Wall","sourceId":12104,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":206},{"sourceType":"tmdb","movieId":150,"title":"Pink Floyd: El muro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6291}],"secondaryYearSourceId":0,"sortTitle":"pink floyd wall","sizeOnDisk":4409163360,"status":"released","overview":"A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.","inCinemas":"1982-07-14T00:00:00Z","physicalRelease":"1982-10-15T00:00:00Z","digitalRelease":"2003-02-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/150\/poster.jpg?lastWrite=637666432532591215","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3QcwzfyIYI8a94yP26jQ2TWsXGI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/150\/fanart.jpg?lastWrite=637666432537551132","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nrm4FH3Dl9D62B1Lj7dsQgkwXRa.jpg"}],"website":"http:\/\/alanparker.com\/film\/pink-floyd-the-wall\/","year":1982,"hasFile":true,"youTubeTrailerId":"2DjTytB1Smo","studio":"Goldcrest","path":"\/movies\/Pink Floyd - The Wall (1982)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pink Floyd - The Wall (1982)","runtime":95,"cleanTitle":"pinkfloydwall","imdbId":"tt0084503","tmdbId":12104,"titleSlug":"12104","certification":"R","genres":["Music","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1070,"value":8},"movieFile":{"movieId":150,"relativePath":"Pink Floyd The Wall.1982-Bluray-1080p.mkv","path":"\/movies\/Pink Floyd - The Wall (1982)\/Pink Floyd The Wall.1982-Bluray-1080p.mkv","size":4409163360,"dateAdded":"2021-05-05T19:09:50Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":576000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5600047,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x804","runTime":"1:35:08","scanType":"","subtitles":"English"},"originalFilePath":"Pink Floyd - The Wall (1982) (1080p BluRay x265 HEVC 10bit AAC 5.1 Korach)\/Pink Floyd - The Wall (1982) (1080P BluRay X265 Korach).mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":719},"id":150},{"title":"Pirates of the Caribbean: Dead Man's Chest","originalTitle":"Pirates of the Caribbean: Dead Man's Chest","alternateTitles":[{"sourceType":"tmdb","movieId":151,"title":"POTC2 Dead Man's Chest","sourceId":58,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":205},{"sourceType":"tmdb","movieId":151,"title":"Piratas del Caribe 2 El cofre de la muerte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3684},{"sourceType":"tmdb","movieId":151,"title":"Piratas do Caribe 2 - O Ba\u00fa da Morte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3685},{"sourceType":"tmdb","movieId":151,"title":"Le Coffre du mort","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3687},{"sourceType":"tmdb","movieId":151,"title":"Pirates des Cara\u00efbes 2 Le secret du coffre maudit - FR 2006","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3688},{"sourceType":"tmdb","movieId":151,"title":"\u52a0\u52d2\u6bd4\u6d77\u76d72\uff1a\u805a\u9b42\u68fa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3689},{"sourceType":"tmdb","movieId":151,"title":"Piratas del Caribe - El cofre de la muerte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3690},{"sourceType":"tmdb","movieId":151,"title":"Pir\u00e1ti z Karibiku 2 - Truhla mrtv\u00e9ho mu\u017ee","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3691},{"sourceType":"tmdb","movieId":151,"title":"Piratas del Caribe - El cofre del hombre muerto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3694},{"sourceType":"tmdb","movieId":151,"title":"Piratas del Caribe 2. El cofre del hombre muerto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3695},{"sourceType":"tmdb","movieId":151,"title":"Piratas del Caribe II - El cofre del hombre muerto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3696},{"sourceType":"tmdb","movieId":151,"title":"Pirates des Cara\u00efbes 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3697},{"sourceType":"tmdb","movieId":151,"title":"Pirates des Cara\u00efbes 2 - Le Secret du Coffre Maudit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3698},{"sourceType":"tmdb","movieId":151,"title":"Pirates Of The Caribbean 2 - Dead Man's Chest","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3700},{"sourceType":"tmdb","movieId":151,"title":"\uce90\ub9ac\ube44\uc548\uc758 \ud574\uc801-\ub9dd\uc790\uc758 \ud568","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3703},{"sourceType":"tmdb","movieId":151,"title":"Pirates of the Caribbean deel 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3704},{"sourceType":"tmdb","movieId":151,"title":"\u041f\u0438\u0440\u0430\u0442\u044b \u041a\u0430\u0440\u0438\u0431\u0441\u043a\u043e\u0433\u043e \u043c\u043e\u0440\u044f \u0421\u0443\u043d\u0434\u0443\u043a \u043c\u0435\u0440\u0442\u0432\u0435\u0446\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3706},{"sourceType":"tmdb","movieId":151,"title":"Dead Man's Chest","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4721},{"sourceType":"tmdb","movieId":151,"title":"Pirates of the Caribbean 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4722},{"sourceType":"tmdb","movieId":151,"title":"Pirates of the Caribbean II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4723},{"sourceType":"tmdb","movieId":151,"title":"Pirates of the Caribbean II: Dead Man's Chest","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4724},{"sourceType":"tmdb","movieId":151,"title":"Der Fluch der Karibik 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5486},{"sourceType":"tmdb","movieId":151,"title":"Fluch der Karibik 2: Die Truhe des Todes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5534},{"sourceType":"tmdb","movieId":151,"title":"Fluch der Karibik 2 - Des toten Mannes Truhe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6258}],"secondaryYearSourceId":0,"sortTitle":"pirates caribbean dead man s chest","sizeOnDisk":2521606429,"status":"released","overview":"Captain Jack Sparrow works his way out of a blood debt with the ghostly Davy Jones to avoid eternal damnation.","inCinemas":"2006-07-06T00:00:00Z","physicalRelease":"2006-11-21T00:00:00Z","digitalRelease":"2008-10-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/151\/poster.jpg?lastWrite=637653456351917084","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/l3peI54mf6Z9EBSvS3hnRmOBbFT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/151\/fanart.jpg?lastWrite=637653456353797054","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5gPPx16QWx071VAI1M0RAVKJ6tc.jpg"}],"website":"http:\/\/disney.go.com\/disneypictures\/pirates\/","year":2006,"hasFile":true,"youTubeTrailerId":"elqO-GNfStM","studio":"Walt Disney Pictures","path":"\/movies\/Pirates of the Caribbean - Dead Man's Chest (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pirates of the Caribbean - Dead Man's Chest (2006)","runtime":151,"cleanTitle":"piratescaribbeandeadmanschest","imdbId":"tt0383574","tmdbId":58,"titleSlug":"58","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":12517,"value":7.3},"movieFile":{"movieId":151,"relativePath":"Pirates of the Caribbean Dead Man's Chest.2006-Bluray-1080p.mp4","path":"\/movies\/Pirates of the Caribbean - Dead Man's Chest (2006)\/Pirates of the Caribbean Dead Man's Chest.2006-Bluray-1080p.mp4","size":2521606429,"dateAdded":"2020-04-07T03:14:42Z","sceneName":"Pirates.Of.The.Caribbean.Dead.Mans.Chest.2006.1080p.BluRay.x265-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2000814,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x802","runTime":"2:30:39","scanType":"","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":668},"collection":{"name":"Pirates of the Caribbean Collection","tmdbId":295,"images":[]},"id":151},{"title":"Pirates of the Caribbean: Dead Men Tell No Tales","originalTitle":"Pirates of the Caribbean: Dead Men Tell No Tales","alternateTitles":[{"sourceType":"tmdb","movieId":152,"title":"Pirates of the Caribbean 5","sourceId":166426,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":207},{"sourceType":"tmdb","movieId":152,"title":"Pirates of the Caribbean 5 - Dead Men Tell No Tales","sourceId":166426,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":208},{"sourceType":"tmdb","movieId":152,"title":"Pirates of the Caribbean: Dead Men Tell No Tales 3D","sourceId":166426,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1290},{"sourceType":"tmdb","movieId":152,"title":"Pirates des Cara\u00efbes 5 - La Vengeance de Salazar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4037},{"sourceType":"tmdb","movieId":152,"title":"\u041a\u0430\u0440\u0438\u0431\u0441\u043a\u0438 \u043f\u0438\u0440\u0430\u0442\u0438: \u041c\u044a\u0440\u0442\u0432\u0438\u0442\u0435 \u043d\u0435 \u0433\u043e\u0432\u043e\u0440\u044f\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4038},{"sourceType":"tmdb","movieId":152,"title":"Piratas do Caribe 5 - A Vingan\u00e7a de Salazar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4039},{"sourceType":"tmdb","movieId":152,"title":"Pir\u00e1ti z Karibiku 5 - Salazarova pomsta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4040},{"sourceType":"tmdb","movieId":152,"title":"Piratas del Caribe 5. La venganza de Salazar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4043},{"sourceType":"tmdb","movieId":152,"title":"Pirates of the Caribbean: Salazar's Revenge","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4044},{"sourceType":"tmdb","movieId":152,"title":"\u30d1\u30a4\u30ec\u30fc\u30c4\u30fb\u30aa\u30d6\u30fb\u30ab\u30ea\u30d3\u30a2\u30f3\uff0f\u6700\u5f8c\u306e\u6d77\u8cca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4045},{"sourceType":"tmdb","movieId":152,"title":"\uce90\ub9ac\ube44\uc548\uc758 \ud574\uc801-\uc8fd\uc740 \uc790\ub294 \ub9d0\uc774 \uc5c6\ub2e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4046},{"sourceType":"tmdb","movieId":152,"title":"Pirates of the Caribbean deel 5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":4047},{"sourceType":"tmdb","movieId":152,"title":"\u041f\u0456\u0440\u0430\u0442\u0438 \u041a\u0430\u0440\u0438\u0431\u0441\u044c\u043a\u043e\u0433\u043e \u043c\u043e\u0440\u044f 5: \u041c\u0435\u0440\u0446\u0456 \u043d\u0435 \u0440\u043e\u0437\u043f\u043e\u0432\u0456\u0434\u0430\u044e\u0442\u044c \u043a\u0430\u0437\u043a\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4048},{"sourceType":"tmdb","movieId":152,"title":"C\u01b0\u1edbp Bi\u1ec3n V\u00f9ng Carib\u00ea 5: Salazar B\u00e1o Th\u00f9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4049},{"sourceType":"tmdb","movieId":152,"title":"La venganza de Salazar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4692},{"sourceType":"tmdb","movieId":152,"title":"Pirat\u00ebt e Karaibeve: Hakmarrja e Salazarit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4995},{"sourceType":"tmdb","movieId":152,"title":"Fluch der Karibik - Salazars Rache","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5292}],"secondaryYearSourceId":0,"sortTitle":"pirates caribbean dead men tell no tales","sizeOnDisk":35514957765,"status":"released","overview":"Thrust into an all-new adventure, a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis, the evil Capt. Salazar, escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon, but to find it, he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.","inCinemas":"2017-05-23T00:00:00Z","physicalRelease":"2017-10-02T00:00:00Z","digitalRelease":"2017-09-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/152\/poster.jpg?lastWrite=637637884974100049","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qwoGfcg6YUS55nUweKGujHE54Wy.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/152\/fanart.jpg?lastWrite=637659512458155177","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7C921eWK06n12c1miRXnYoEu5Yv.jpg"}],"website":"http:\/\/pirates.disney.com\/pirates-of-the-caribbean-dead-men-tell-no-tales","year":2017,"hasFile":true,"youTubeTrailerId":"Hgeu5rhoxxY","studio":"Walt Disney Pictures","path":"\/movies\/Pirates of the Caribbean - Dead Men Tell No Tales (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pirates of the Caribbean - Dead Men Tell No Tales (2017)","runtime":129,"cleanTitle":"piratescaribbeandeadmentellnotales","imdbId":"tt1790809","tmdbId":166426,"titleSlug":"166426","certification":"PG-13","genres":["Adventure","Action","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":9474,"value":6.6},"movieFile":{"movieId":152,"relativePath":"Pirates of the Caribbean Dead Men Tell No Tales.2017-Remux-1080p.mkv","path":"\/movies\/Pirates of the Caribbean - Dead Men Tell No Tales (2017)\/Pirates of the Caribbean Dead Men Tell No Tales.2017-Remux-1080p.mkv","size":35514957765,"dateAdded":"2018-10-15T12:19:37Z","sceneName":"Pirates.of.the.Caribbean.Dead.Men.Tell.No.Tales.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Russian \/ Chinese","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:09:07","scanType":"Progressive","subtitles":"English \/ Russian \/ Chinese \/ Chinese \/ Chinese \/ Korean \/ Russian \/ Chinese \/ Chinese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":354},"collection":{"name":"Pirates of the Caribbean Collection","tmdbId":295,"images":[]},"id":152},{"title":"Pirates of the Caribbean: On Stranger Tides","originalTitle":"Pirates of the Caribbean: On Stranger Tides","alternateTitles":[{"sourceType":"tmdb","movieId":153,"title":"Pirates of the Caribbean 4","sourceId":1865,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":210},{"sourceType":"tmdb","movieId":153,"title":"Pirates of the Caribbean 4 - On Stranger Tides","sourceId":1865,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":211},{"sourceType":"tmdb","movieId":153,"title":"POTC4 On Stranger Tides","sourceId":1865,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":212},{"sourceType":"tmdb","movieId":153,"title":"Pirates of the Caribbean IV: On Stranger Tides","sourceId":1865,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":213},{"sourceType":"tmdb","movieId":153,"title":"Pirates of the Caribbean: On Stranger Tides 3D","sourceId":1865,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1291},{"sourceType":"tmdb","movieId":153,"title":"Piratas do Caribe 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3895},{"sourceType":"tmdb","movieId":153,"title":"Piratas do Caribe 4: Navegando em \u00c1guas Misteriosas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3896},{"sourceType":"tmdb","movieId":153,"title":"Pirates Des Caraibes 3 La Fontaine De Jouvence - FR 2011","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3897},{"sourceType":"tmdb","movieId":153,"title":"\u52a0\u52d2\u6bd4\u6d77\u76d74\uff1a\u60ca\u6d9b\u602a\u6d6a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3898},{"sourceType":"tmdb","movieId":153,"title":"Pir\u00e1ti z Karibiku 4 - Na vln\u00e1ch podivna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3899},{"sourceType":"tmdb","movieId":153,"title":"Piratas del Caribe 4. En mareas misteriosas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3902},{"sourceType":"tmdb","movieId":153,"title":"Pirates des Cara\u00efbes 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3903},{"sourceType":"tmdb","movieId":153,"title":"Pirates des Cara\u00efbes 4 : La Fontaine de Jouvence","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3905},{"sourceType":"tmdb","movieId":153,"title":"\uce90\ub9ac\ube44\uc548\uc758 \ud574\uc801-\ub0af\uc120 \uc870\ub958","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3906},{"sourceType":"tmdb","movieId":153,"title":"Pirates of the Caribbean deel 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3907},{"sourceType":"tmdb","movieId":153,"title":"Piratas del Caribe 4 - Navegando Aguas Misteriosas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":3908},{"sourceType":"tmdb","movieId":153,"title":"\u795e\u9b3c\u5947\u822a\uff1a\u5e7d\u9748\u6d77","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3909},{"sourceType":"tmdb","movieId":153,"title":"\u041f\u0438\u0440\u0430\u0442\u044b \u041a\u0430\u0440\u0438\u0431\u0441\u043a\u043e\u0433\u043e \u043c\u043e\u0440\u044f: \u041d\u0430 \u0441\u0442\u0440\u0430\u043d\u043d\u044b\u0445 \u0431\u0435\u0440\u0435\u0433\u0430\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5571},{"sourceType":"tmdb","movieId":153,"title":"Fluch der Karibik - Fremde Gezeiten","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5971}],"secondaryYearSourceId":0,"sortTitle":"pirates caribbean on stranger tides","sizeOnDisk":11738848620,"status":"released","overview":"Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.","inCinemas":"2011-05-14T00:00:00Z","physicalRelease":"2011-09-07T00:00:00Z","digitalRelease":"2013-09-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/153\/poster.jpg?lastWrite=637653456400196318","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/keGfSvCmYj7CvdRx36OdVrAEibE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/153\/fanart.jpg?lastWrite=637639614656114020","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uzIGtyS6bbnJzGsPL93WCF1FWm8.jpg"}],"website":"http:\/\/disney.go.com\/pirates\/index-on-stranger-tides.html#\/video\/","year":2011,"hasFile":true,"youTubeTrailerId":"Ax6md6HoZ2o","studio":"Walt Disney Pictures","path":"\/movies\/Pirates of the Caribbean - On Stranger Tides (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pirates of the Caribbean - On Stranger Tides (2011)","runtime":137,"cleanTitle":"piratescaribbeanonstrangertides","imdbId":"tt1298650","tmdbId":1865,"titleSlug":"1865","certification":"PG-13","genres":["Adventure","Action","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":11177,"value":6.5},"movieFile":{"movieId":153,"relativePath":"Pirates of the Caribbean On Stranger Tides.2011-Bluray-1080p.mkv","path":"\/movies\/Pirates of the Caribbean - On Stranger Tides (2011)\/Pirates of the Caribbean On Stranger Tides.2011-Bluray-1080p.mkv","size":11738848620,"dateAdded":"2018-10-16T00:23:11Z","sceneName":"Pirates.Of.The.Caribbean.On.Stranger.Tides.2011.1080p.BluRay.x264-TWiZTED","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9964000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:16:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"pirates4","edition":"","id":366},"collection":{"name":"Pirates of the Caribbean Collection","tmdbId":295,"images":[]},"id":153},{"title":"Pirates of the Caribbean: The Curse of the Black Pearl","originalTitle":"Pirates of the Caribbean: The Curse of the Black Pearl","alternateTitles":[{"sourceType":"tmdb","movieId":154,"title":"Pirates of the Caribbean 1","sourceId":22,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":214},{"sourceType":"tmdb","movieId":154,"title":"POTC The Curse of the Black Pearl","sourceId":22,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1341},{"sourceType":"tmdb","movieId":154,"title":"La maldici\u00f3n del Perla Negra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3663},{"sourceType":"tmdb","movieId":154,"title":"Pirates of the Caribbean 1 - The Curse Of The Black Pearl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3664},{"sourceType":"tmdb","movieId":154,"title":"Karibski pirati: Proklyatieto na Chernata perla","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3665},{"sourceType":"tmdb","movieId":154,"title":"Pirates des Cara\u00efbes : La Mal\u00e9diction de la Perle noire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3666},{"sourceType":"tmdb","movieId":154,"title":"Pirates des cara\u00efbes 1 La mal\u00e9diction du black pearl - FR 2003","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3667},{"sourceType":"tmdb","movieId":154,"title":"\u52a0\u52d2\u6bd4\u6d77\u76d7\uff1a\u9ed1\u73cd\u73e0\u53f7\u7684\u8bc5\u5492","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3668},{"sourceType":"tmdb","movieId":154,"title":"Piratas del Caribe - La maldici\u00f3n del Perla Negra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3669},{"sourceType":"tmdb","movieId":154,"title":"Pirates of the Caribbean - Fluch der Karibik","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3672},{"sourceType":"tmdb","movieId":154,"title":"Piratas del Caribe: La maldici\u00f3n de la Perla Negra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3673},{"sourceType":"tmdb","movieId":154,"title":"Pirates des Cara\u00efbes 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3674},{"sourceType":"tmdb","movieId":154,"title":"Oi Peirat\u00e9s tis Kara\u00efvik\u00eds: I Kat\u00e1ra tou M\u00e1vrou Margaritario\u00fa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3675},{"sourceType":"tmdb","movieId":154,"title":"Shodeday Ha-Caribim: Klalat Ha-Pnina Ha-Sh'hora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3676},{"sourceType":"tmdb","movieId":154,"title":"Sj\u00f3r\u00e6ningjar \u00e1 Kar\u00edbahafi: B\u00f6lvun sv\u00f6rtu perlunnar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3677},{"sourceType":"tmdb","movieId":154,"title":"Pirati dei Caraibi - La maledizione della prima luna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3678},{"sourceType":"tmdb","movieId":154,"title":"\uce90\ub9ac\ube44\uc548\uc758 \ud574\uc801-\ube14\ub799 \ud384\uc758 \uc800\uc8fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3679},{"sourceType":"tmdb","movieId":154,"title":"Pirates of the Caribbean deel 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3680},{"sourceType":"tmdb","movieId":154,"title":"Pirati sa Kariba: prokletstvo Crnog bisera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3681},{"sourceType":"tmdb","movieId":154,"title":"Piraty Karibskogo morya: Proklyatiye Chornoy zhemchuzhiny","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3682},{"sourceType":"tmdb","movieId":154,"title":"Piraty Karybs\u02b9koho morya: Proklyattya Chornoyi perlyny","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3683},{"sourceType":"tmdb","movieId":154,"title":"Fluch der Karibik - The Curse of the Black Pearl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5291},{"sourceType":"tmdb","movieId":154,"title":"Der Fluch der Karibik","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5485},{"sourceType":"tmdb","movieId":154,"title":"Piratas Del Caribe 1 La maldicion de la perla negra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5511},{"sourceType":"tmdb","movieId":154,"title":"Fluch der Karibik: Der Fluch der Black Pearl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5533},{"sourceType":"tmdb","movieId":154,"title":"Pirates des Cara\u00efbes 1 - La Mal\u00e9diction du Black Pearl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6232}],"secondaryYearSourceId":0,"sortTitle":"pirates caribbean curse black pearl","sizeOnDisk":11741132159,"status":"released","overview":"Jack Sparrow, a freewheeling 18th-century pirate, quarrels with a rival pirate bent on pillaging Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her.","inCinemas":"2003-07-09T00:00:00Z","physicalRelease":"2004-01-21T00:00:00Z","digitalRelease":"2006-04-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/154\/poster.jpg?lastWrite=637639614612674747","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/154\/fanart.jpg?lastWrite=637430477206251860","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jOh79POQu4hyVIseUxdQxTW7vOf.jpg"}],"website":"http:\/\/disney.go.com\/disneyvideos\/liveaction\/pirates\/main_site\/main.html","year":2003,"hasFile":true,"youTubeTrailerId":"naQr0uTrH_s","studio":"Walt Disney Pictures","path":"\/movies\/Pirates of the Caribbean - The Curse of the Black Pearl (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pirates of the Caribbean - The Curse of the Black Pearl (2003)","runtime":143,"cleanTitle":"piratescaribbeancurseblackpearl","imdbId":"tt0325980","tmdbId":22,"titleSlug":"22","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":16315,"value":7.7},"movieFile":{"movieId":154,"relativePath":"Pirates of the Caribbean The Curse of the Black Pearl.2003-Bluray-1080p.mkv","path":"\/movies\/Pirates of the Caribbean - The Curse of the Black Pearl (2003)\/Pirates of the Caribbean The Curse of the Black Pearl.2003-Bluray-1080p.mkv","size":11741132159,"dateAdded":"2018-10-16T00:32:22Z","sceneName":"Pirates.Of.The.Caribbean.The.Curse.Of.The.Black.Pearl.2003.1080p.BluRay.x264.PROPER-WLM","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9424000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:23:09","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"WLM","edition":"","id":367},"collection":{"name":"Pirates of the Caribbean Collection","tmdbId":295,"images":[]},"id":154},{"title":"Pom Poko","originalTitle":"\u5e73\u6210\u72f8\u5408\u6226\u307d\u3093\u307d\u3053","alternateTitles":[{"sourceType":"tmdb","movieId":155,"title":"The Raccoon War","sourceId":15283,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":215},{"sourceType":"tmdb","movieId":155,"title":"Heisei-era Raccoon Dog War Ponpoko","sourceId":15283,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":216},{"sourceType":"tmdb","movieId":155,"title":"\u6b61\u559c\u78b0\u78b0\u72f8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3790},{"sourceType":"tmdb","movieId":155,"title":"\u767e\u53d8\u72f8\u732b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3791},{"sourceType":"tmdb","movieId":155,"title":"La Guerra de los Mapaches de Pompoko","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3792},{"sourceType":"tmdb","movieId":155,"title":"I antepithesi ton raccoon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3793},{"sourceType":"tmdb","movieId":155,"title":"Pom Poko - A tanukik birodalma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3794},{"sourceType":"tmdb","movieId":155,"title":"Milhemet Hadvivonim","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3795},{"sourceType":"tmdb","movieId":155,"title":"Heisei Tanuki Gassen Ponpoko","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3796},{"sourceType":"tmdb","movieId":155,"title":"\u767e\u8b8a\u8c8d\u8c93","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3797},{"sourceType":"tmdb","movieId":155,"title":"La Guerra de los Mapaches","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3798},{"sourceType":"tmdb","movieId":155,"title":"Szopy w natarciu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3799},{"sourceType":"tmdb","movieId":155,"title":"B\u043e\u0439\u043d\u0430 \u0442\u0430\u043d\u0443\u043a\u0438 \u0432 \u043f\u0435\u0440\u0438\u043e\u0434\u044b \u0425\u044d\u0439\u0441\u044d\u0439 \u0438 \u041f\u043e\u043c\u043f\u043e\u043a\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3800},{"sourceType":"tmdb","movieId":155,"title":"\u5e73\u6210\u72f8\u5408\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3801},{"sourceType":"tmdb","movieId":155,"title":"\u0412\u0456\u0439\u043d\u0430 \u0442\u0430\u043d\u0443\u043a\u0438 \u0432 \u043f\u0435\u0440\u0456\u043e\u0434\u0438 \u0425\u0435\u0439\u0441\u0435\u0439 \u0456 \u041f\u043e\u043c\u043f\u043e\u043a\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3802},{"sourceType":"tmdb","movieId":155,"title":"\u041f\u043e\u043c \u043f\u043e\u043a\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3803},{"sourceType":"tmdb","movieId":155,"title":"\u041f\u043e\u043c\u043f\u043e\u043a\u043e: \u0412\u0456\u0439\u043d\u0430 \u0442\u0430\u043d\u0443\u043a\u0456 \u0432 \u043f\u0435\u0440\u0456\u043e\u0434 \u0425\u0435\u0439\u0441\u0435\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3804},{"sourceType":"tmdb","movieId":155,"title":"\u041f\u043e\u043d\u043f\u043e\u043a\u043e: \u0412\u0456\u0439\u043d\u0430 \u0442\u0430\u043d\u0443\u043a\u0456 \u0432 \u043f\u0435\u0440\u0456\u043e\u0434 \u0425\u0435\u0439\u0441\u0435\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3805}],"secondaryYear":1995,"secondaryYearSourceId":0,"sortTitle":"pom poko","sizeOnDisk":12714660328,"status":"released","overview":"The Raccoons of the Tama Hills are being forced from their homes by the rapid development of houses and shopping malls. As it becomes harder to find food and shelter, they decide to band together and fight back. The Raccoons practice and perfect the ancient art of transformation until they are even able to appear as humans in hilarious circumstances.","inCinemas":"1994-07-16T00:00:00Z","physicalRelease":"1998-12-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/155\/poster.jpg?lastWrite=637608475042078731","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kowo9E1e1JcWLXj9cCvAOFZcy5n.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/155\/fanart.jpg?lastWrite=637642209424078810","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6AE2Rinvd0OGVyVuMGhoMDV2Kv6.jpg"}],"website":"http:\/\/movies.disney.com\/pom-poko","year":1994,"hasFile":true,"youTubeTrailerId":"rekuTKEg7ZU","studio":"Studio Ghibli","path":"\/movies\/Pom Poko (1994)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Pom Poko (1994)","runtime":119,"cleanTitle":"pompoko","imdbId":"tt0110008","tmdbId":15283,"titleSlug":"15283","certification":"PG","genres":["Adventure","Animation","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":684,"value":7.1},"movieFile":{"movieId":155,"relativePath":"Pom Poko.1994-Bluray-1080p.mkv","path":"\/movies\/Pom Poko (1994)\/Pom Poko.1994-Bluray-1080p.mkv","size":12714660328,"dateAdded":"2018-10-14T03:02:37Z","sceneName":"Pom.Poko.1994.JAPANESE.AND.ENGLISH.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12239403,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:59:11","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":291},"id":155},{"title":"Ponyo","originalTitle":"\u5d16\u306e\u4e0a\u306e\u30dd\u30cb\u30e7","alternateTitles":[{"sourceType":"tmdb","movieId":156,"title":"Ponyo on the Cliff by the Sea","sourceId":12429,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":490},{"sourceType":"tmdb","movieId":156,"title":"\u60ac\u5d16\u4e0a\u7684\u91d1\u9c7c\u516c\u4e3b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2215},{"sourceType":"tmdb","movieId":156,"title":"Gake no ue no Ponyo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2216},{"sourceType":"tmdb","movieId":156,"title":"\ubcbc\ub791 \uc704\uc758 \ud3ec\ub1e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2217},{"sourceType":"tmdb","movieId":156,"title":"Ponyo y el secreto de la sirenita","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2218},{"sourceType":"tmdb","movieId":156,"title":"Ponyo p\u00e5 klippen ved havet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2219},{"sourceType":"tmdb","movieId":156,"title":"\u0420\u044b\u0431\u043a\u0430 \u041f\u043e\u043d\u044c\u043e \u043d\u0430 \u0443\u0442\u0435\u0441\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5561},{"sourceType":"tmdb","movieId":156,"title":"\u041f\u043e\u043d\u044c\u043e \u043d\u0430 \u043a\u0440\u0443\u0447\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5881},{"sourceType":"tmdb","movieId":156,"title":"Ponyo on the Cliff","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5884},{"sourceType":"tmdb","movieId":156,"title":"\u60ac\u5d16\u4e0a\u7684\u91d1\u9c7c\u59ec","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5893}],"secondaryYearSourceId":0,"sortTitle":"ponyo","sizeOnDisk":10547175195,"status":"released","overview":"The son of a sailor, 5-year old Sosuke, lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish.","inCinemas":"2008-07-19T00:00:00Z","physicalRelease":"2009-11-26T00:00:00Z","digitalRelease":"2011-10-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/156\/poster.jpg?lastWrite=637655186630750985","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yp8vEZflGynlEylxEesbYasc06i.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/156\/fanart.jpg?lastWrite=637655186632110965","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/shqLeIkqPAAXM8iT6wVDiXUYz1p.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"CsR3KVgBzSM","studio":"Studio Ghibli","path":"\/movies\/Ponyo (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ponyo (2008)","runtime":100,"cleanTitle":"ponyo","imdbId":"tt0876563","tmdbId":12429,"titleSlug":"12429","certification":"G","genres":["Animation","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2904,"value":7.7},"movieFile":{"movieId":156,"relativePath":"Ponyo.2008-Bluray-1080p.mkv","path":"\/movies\/Ponyo (2008)\/Ponyo.2008-Bluray-1080p.mkv","size":10547175195,"dateAdded":"2019-03-17T16:12:17Z","sceneName":"Ponyo.2008.DUBBED.1080p.BluRay.x264.DTS-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1036","runTime":"1:42:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":528},"id":156},{"title":"Porco Rosso","originalTitle":"\u7d05\u306e\u8c5a","alternateTitles":[{"sourceType":"tmdb","movieId":157,"title":"Crimson Pig","sourceId":11621,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":218},{"sourceType":"tmdb","movieId":157,"title":"Txarri gorrixa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3806},{"sourceType":"tmdb","movieId":157,"title":"Kurenai no buta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3807},{"sourceType":"tmdb","movieId":157,"title":"\u041a\u043d\u0443\u0440 \u0411\u0430\u0433\u0440\u044f\u043d\u0438\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3808},{"sourceType":"tmdb","movieId":157,"title":"P\u00e5 flygande uppdrag","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6176},{"sourceType":"tmdb","movieId":157,"title":"\u98de\u5929\u7ea2\u732a\u4fa0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6219}],"secondaryYearSourceId":0,"sortTitle":"porco rosso","sizeOnDisk":1911758318,"status":"released","overview":"In Italy in the 1930s, sky pirates in biplanes terrorize wealthy cruise ships as they sail the Adriatic Sea. The only pilot brave enough to stop the scourge is the mysterious Porco Rosso, a former World War I flying ace who was somehow turned into a pig during the war. As he prepares to battle the pirate crew's American ace, Porco Rosso enlists the help of spunky girl mechanic Fio Piccolo and his longtime friend Madame Gina.","inCinemas":"1992-07-18T00:00:00Z","physicalRelease":"2006-09-18T00:00:00Z","digitalRelease":"1992-12-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/157\/poster.jpg?lastWrite=637618857010840046","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/byKAndF6KQSDpGxp1mTr23jPbYp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/157\/fanart.jpg?lastWrite=637618857012400018","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pFalq14lacs2oO7Q6YKiNqz5uAC.jpg"}],"website":"","year":1992,"hasFile":true,"youTubeTrailerId":"fmyrWYrvF5s","studio":"Studio Ghibli","path":"\/movies\/Porco Rosso (1992)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Porco Rosso (1992)","runtime":94,"cleanTitle":"porcorosso","imdbId":"tt0104652","tmdbId":11621,"titleSlug":"11621","certification":"PG","genres":["Family","Comedy","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2225,"value":7.8},"movieFile":{"movieId":157,"relativePath":"Porco Rosso.1992-Bluray-1080p.mp4","path":"\/movies\/Porco Rosso (1992)\/Porco Rosso.1992-Bluray-1080p.mp4","size":1911758318,"dateAdded":"2018-10-13T14:01:03Z","sceneName":"Porco.Rosso.1992.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:33:19","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":272},"id":157},{"title":"Predestination","originalTitle":"Predestination","alternateTitles":[{"sourceType":"tmdb","movieId":158,"title":"Predestinaci\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1671},{"sourceType":"tmdb","movieId":158,"title":"Preodredi\u0161te","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1672},{"sourceType":"tmdb","movieId":158,"title":"O Predestinado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1673},{"sourceType":"tmdb","movieId":158,"title":"\u5bbf\u547d\u8bba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1674},{"sourceType":"tmdb","movieId":158,"title":"\u8d85\u65f6\u7a7a\u62e6\u622a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1675},{"sourceType":"tmdb","movieId":158,"title":"Predestination - Entf\u00fchrung in die Zukunft","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1676},{"sourceType":"tmdb","movieId":158,"title":"Id\u0151hurok","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1677},{"sourceType":"tmdb","movieId":158,"title":"\u30d7\u30ea\u30c7\u30b9\u30c6\u30a3\u30cd\u30fc\u30b7\u30e7\u30f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1678},{"sourceType":"tmdb","movieId":158,"title":"El Viajero del Tiempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1679},{"sourceType":"tmdb","movieId":158,"title":"P4trul Vremeni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1680}],"secondaryYearSourceId":0,"sortTitle":"predestination","sizeOnDisk":7037579125,"status":"released","overview":"Predestination chronicles the life of a Temporal Agent sent on an intricate series of time-travel journeys designed to prevent future killers from committing their crimes. Now, on his final assignment, the Agent must stop the one criminal that has eluded him throughout time and prevent a devastating attack in which thousands of lives will be lost.","inCinemas":"2014-08-28T00:00:00Z","physicalRelease":"2014-11-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/158\/poster.jpg?lastWrite=637639614666753842","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sYjpJZEdwELjdHy4OVzazeJVT0z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/158\/fanart.jpg?lastWrite=637639614668393814","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/u5JKxjMuKk0dVXqmS4e4gHo8pfg.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/predestination","year":2014,"hasFile":true,"youTubeTrailerId":"xxG-YfedrfU","studio":"Screen Queensland","path":"\/movies\/Predestination (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Predestination (2014)","runtime":97,"cleanTitle":"predestination","imdbId":"tt2397535","tmdbId":206487,"titleSlug":"206487","certification":"R","genres":["Science Fiction","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4913,"value":7.4},"movieFile":{"movieId":158,"relativePath":"Predestination.2014-Bluray-1080p.mkv","path":"\/movies\/Predestination (2014)\/Predestination.2014-Bluray-1080p.mkv","size":7037579125,"dateAdded":"2018-10-16T00:48:29Z","sceneName":"Predestination.2014.1080p.BluRay.x264-PSYCHD[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8088000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:37:48","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"psychd","edition":"","id":369},"id":158},{"title":"Primer","originalTitle":"Primer","alternateTitles":[{"sourceType":"tmdb","movieId":159,"title":"\u547d\u8fd0\u4e4b\u95e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2868},{"sourceType":"tmdb","movieId":159,"title":"Tal\u00e1lm\u00e1ny","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2869}],"secondaryYearSourceId":0,"sortTitle":"primer","sizeOnDisk":7041865309,"status":"released","overview":"Friends and fledgling entrepreneurs invent a device in their garage which reduces the apparent mass of any object placed inside it, but they discover that it has some highly unexpected capabilities - ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.","inCinemas":"2005-06-02T00:00:00Z","physicalRelease":"2006-02-20T00:00:00Z","digitalRelease":"2004-09-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/159\/poster.jpg?lastWrite=637241984600073749","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xEoq2WmDzpzxhkHEsmOYOg6BPg6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/159\/fanart.jpg?lastWrite=637624046568263822","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yOF42AWuF9Nz8nGLFpdGACSUwao.jpg"}],"website":"http:\/\/www.primermovie.com","year":2004,"hasFile":true,"youTubeTrailerId":"3nj5MMURCm8","studio":"Shane Carruth","path":"\/movies\/Primer (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Primer (2005)","runtime":77,"cleanTitle":"primer","imdbId":"tt0390384","tmdbId":14337,"titleSlug":"14337","certification":"PG-13","genres":["Science Fiction","Drama","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1563,"value":6.9},"movieFile":{"movieId":159,"relativePath":"Primer.2004-Bluray-1080p.mkv","path":"\/movies\/Primer (2005)\/Primer.2004-Bluray-1080p.mkv","size":7041865309,"dateAdded":"2021-02-26T11:39:36Z","sceneName":"Primer.2004.1080p.BluRay.x264.DD5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:17:21","scanType":"Progressive","subtitles":"English"},"originalFilePath":"Primer.2004.1080p.BluRay.x264.DD5.1-FGT\/Primer.2004.1080p.BluRay.x264.DD5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":711},"id":159},{"title":"Princess Mononoke","originalTitle":"\u3082\u306e\u306e\u3051\u59eb","alternateTitles":[{"sourceType":"tmdb","movieId":160,"title":"Mononoke Hime","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2598},{"sourceType":"tmdb","movieId":160,"title":"\uc6d0\ub839\uacf5\uc8fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2599},{"sourceType":"tmdb","movieId":160,"title":"Princeza Mononoke","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2600}],"secondaryYearSourceId":0,"sortTitle":"princess mononoke","sizeOnDisk":6695960669,"status":"released","overview":"Ashitaka, a prince of the disappearing Emishi people, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.","inCinemas":"1997-07-12T00:00:00Z","physicalRelease":"2001-11-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/160\/poster.jpg?lastWrite=637613667870817687","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jHWmNr7m544fJ8eItsfNk8fs2Ed.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/160\/fanart.jpg?lastWrite=637656916742514795","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mpNd0rTVrp6vHJ9Je7wSa3zC8JS.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"4OiMOHRDs14","studio":"Studio Ghibli","path":"\/movies\/Princess Mononoke (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Princess Mononoke (1997)","runtime":134,"cleanTitle":"princessmononoke","imdbId":"tt0119698","tmdbId":128,"titleSlug":"128","certification":"PG-13","genres":["Adventure","Fantasy","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5785,"value":8.4},"movieFile":{"movieId":160,"relativePath":"Princess Mononoke.1997-Bluray-1080p.mkv","path":"\/movies\/Princess Mononoke (1997)\/Princess Mononoke.1997-Bluray-1080p.mkv","size":6695960669,"dateAdded":"2018-10-13T14:33:17Z","sceneName":"Princess.Mononoke.1997.1080p.BluRay.X264-AMIABLE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6245000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:13:22","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":275},"id":160},{"title":"Psycho-Pass: The Movie","originalTitle":"\u5287\u5834\u7248 \u30b5\u30a4\u30b3\u30d1\u30b9","alternateTitles":[{"sourceType":"tmdb","movieId":161,"title":"Psychopath Movie","sourceId":296917,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":219},{"sourceType":"tmdb","movieId":161,"title":"Psycho-Pass: Le Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4791},{"sourceType":"tmdb","movieId":161,"title":"Gekijouban Psycho-Pass","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4792}],"secondaryYear":2016,"secondaryYearSourceId":0,"sortTitle":"psycho pass movie","sizeOnDisk":2319236687,"status":"released","overview":"Year 2116\u2014The Japanese government begins to export the Sibyl System unmanned drone robots to troubled countries, and the system spreads throughout the world. A state in the midst of a civil war, SEAUn (the South East Asia Union), brings in the Sibyl System as an experiment. Under the new system, the coastal town of Shambala Float achieves temporary peace and safety. But then SEAUn sends terrorists to Japan. They slip through the Sibyl System and then attack from within. The shadow of a certain man falls on this incident. In charge of the police, Tsunemori travels to Shambala Float to investigate. The truth of justice on this new ground will become clear.","inCinemas":"2015-01-09T00:00:00Z","physicalRelease":"2016-08-26T00:00:00Z","digitalRelease":"2016-09-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/161\/poster.jpg?lastWrite=637363037770549935","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/v03t9EkHZZOLMaFow4mLYu6b7uS.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/161\/fanart.jpg?lastWrite=637624046573103743","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ZofA7NdunuGOa5ltJh3oQtwu91.jpg"}],"website":"","year":2015,"hasFile":true,"youTubeTrailerId":"5eXRh1bwIr8","studio":"Production I.G","path":"\/movies\/Psycho-Pass - The Movie (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Psycho-Pass - The Movie (2015)","runtime":113,"cleanTitle":"psychopassmovie","imdbId":"tt4219130","tmdbId":296917,"titleSlug":"296917","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":147,"value":7.1},"movieFile":{"movieId":161,"relativePath":"Psycho-Pass The Movie.2015-Bluray-1080p.mp4","path":"\/movies\/Psycho-Pass - The Movie (2015)\/Psycho-Pass The Movie.2015-Bluray-1080p.mp4","size":2319236687,"dateAdded":"2019-10-31T09:36:13Z","sceneName":"Psycho-Pass.The.Movie.2015.DUBBED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:53:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":628},"id":161},{"title":"Puella Magi Madoka Magica the Movie Part I: Beginnings","originalTitle":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab [\u524d\u7de8] \u59cb\u307e\u308a\u306e\u7269\u8a9e","alternateTitles":[{"sourceType":"tmdb","movieId":162,"title":"Puella Magi Madoka\u2605Magica the Movie Part I: The Beginning Story","sourceId":152042,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":220},{"sourceType":"tmdb","movieId":162,"title":"Madoka Magica The Movie","sourceId":152042,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":221},{"sourceType":"tmdb","movieId":162,"title":"Gekijouban Mahou Shoujo Madoka Magica: Hajimari no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4812},{"sourceType":"tmdb","movieId":162,"title":"Gekijouban Meguca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4813},{"sourceType":"tmdb","movieId":162,"title":"Gekij\u014d-ban Mah\u014d Sh\u014djo Madoka Magica Zenpen: Hajimari no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4814},{"sourceType":"tmdb","movieId":162,"title":"Gekij\u014dban Mah\u014d Sh\u014djo Madoka Magika (Zenpen): Hajimari no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4815},{"sourceType":"tmdb","movieId":162,"title":"Mahou Shoujo Madoka\u2605Magica Movie 1: Hajimari no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4816},{"sourceType":"tmdb","movieId":162,"title":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab \u524d\u7de8: \u59cb\u307e\u308a\u306e\u7269\u8a9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4817},{"sourceType":"tmdb","movieId":162,"title":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab \u59cb\u307e\u308a\u306e\u7269\u8a9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4818},{"sourceType":"tmdb","movieId":162,"title":"\ub9c8\ubc95\uc18c\ub140 \ub9c8\ub3c4\uce74\u2606\ub9c8\uae30\uce74 \uc804\ud3b8 \uc2dc\uc791\uc758 \uc774\uc57c\uae30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4819},{"sourceType":"tmdb","movieId":162,"title":"\u5267\u573a\u7248 \u9b54\u6cd5\u5c11\u5973\u5c0f\u5706","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4820},{"sourceType":"tmdb","movieId":162,"title":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u5c0f\u5713 \uff3b\u524d\u7bc7\uff3d\u8d77\u59cb\u7684\u7269\u8a9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4821},{"sourceType":"tmdb","movieId":162,"title":"Puella Magi Madoka Magica: La pel\u00edcula","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5599}],"secondaryYearSourceId":0,"sortTitle":"puella magi madoka magica movie part i beginnings","sizeOnDisk":8092673281,"status":"released","overview":"Madoka Kaname, an ordinary middle-schooler, along with her best friend Sayaka Miki, are offered the chance to have any wish they want granted by the mysterious Kyubey, and become magical girls and fight witches. However, fellow magical girl Homura Akemi seems intent on stopping Madoka from becoming a magical girl at any cost. Puella Magi Madoka Magica the Movie Part I: Beginnings is a retelling of the first half of the TV anime series.","inCinemas":"2012-10-05T00:00:00Z","physicalRelease":"2014-07-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/162\/poster.jpg?lastWrite=637551395871680890","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kJjtXLRR1mV7kEUuSnCKDEmN94G.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/162\/fanart.jpg?lastWrite=637551395874520844","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rSSBwzLVa9Rslwo5B7Svpe7xeEG.jpg"}],"website":"","year":2012,"hasFile":true,"youTubeTrailerId":"ZknpyKkHIvw","studio":"SHAFT","path":"\/movies\/Puella Magi Madoka Magica the Movie Part I - Beginnings (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Puella Magi Madoka Magica the Movie Part I - Beginnings (2012)","runtime":131,"cleanTitle":"puellamagimadokamagicamoviepartibeginnings","imdbId":"tt2205948","tmdbId":152042,"titleSlug":"152042","certification":"PG-13","genres":["Thriller","Animation","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":81,"value":7.5},"movieFile":{"movieId":162,"relativePath":"Puella Magi Madoka Magica the Movie Part I Beginnings.2012-HDTV-1080p.mkv","path":"\/movies\/Puella Magi Madoka Magica the Movie Part I - Beginnings (2012)\/Puella Magi Madoka Magica the Movie Part I Beginnings.2012-HDTV-1080p.mkv","size":8092673281,"dateAdded":"2018-10-11T15:10:44Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:11:09","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":151},"collection":{"name":"Puella Magi Madoka Magica: The Movie","tmdbId":212166,"images":[]},"id":162},{"title":"Puella Magi Madoka Magica the Movie Part II: Eternal","originalTitle":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab[\u5f8c\u7de8] \u6c38\u9060\u306e\u7269\u8a9e","alternateTitles":[{"sourceType":"tmdb","movieId":163,"title":"Puella Magi Madoka Magica Film 2 - Une histoire infinie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4822},{"sourceType":"tmdb","movieId":163,"title":"Gekijouban Mahou Shoujo Madoka Magica: Eien no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4823},{"sourceType":"tmdb","movieId":163,"title":"Gekij\u014d-ban Mah\u014d Sh\u014djo Madoka Magica K\u014dhen: Eien no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4824},{"sourceType":"tmdb","movieId":163,"title":"Gekij\u014d-ban Mah\u014d Sh\u014djo Madoka Magika [K\u014dhen]: Eien no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4825},{"sourceType":"tmdb","movieId":163,"title":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab \u6c38\u9060\u306e\u7269\u8a9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4826},{"sourceType":"tmdb","movieId":163,"title":"\ub9c8\ubc95\uc18c\ub140 \ub9c8\ub3c4\uce74\u2606\ub9c8\uae30\uce74 \ud6c4\ud3b8 \uc601\uc6d0\uc758 \uc774\uc57c\uae30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4827},{"sourceType":"tmdb","movieId":163,"title":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u5c0f\u5713 \uff3b\u5f8c\u7bc7\uff3d\u6c38\u9060\u7684\u7269\u8a9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4828},{"sourceType":"tmdb","movieId":163,"title":"Puella Magi Madoka\u2605Magica the Movie Part II: The Eternal Story","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4829}],"secondaryYearSourceId":0,"sortTitle":"puella magi madoka magica movie part ii eternal","sizeOnDisk":8418304686,"status":"released","overview":"As the young girls have discovered the truth about the cruel fate of a magical girl, one magical girl after another is destroyed. Throughout it all, there is one magical girl who continues to fight alone - Homura Akemi. Puella Magi Madoka Magica the Movie Part II: Eternal is a retelling of the second half of the TV anime series.","inCinemas":"2012-10-13T00:00:00Z","physicalRelease":"2014-07-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/163\/poster.jpg?lastWrite=637611071203236361","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bab5yECvL86FPhPpPSkOlpIvino.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/163\/fanart.jpg?lastWrite=637611071205036328","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ktm0H3WxWGard5vlLwHdRZz4Sqe.jpg"}],"website":"","year":2012,"hasFile":true,"youTubeTrailerId":"ZknpyKkHIvw","studio":"SHAFT","path":"\/movies\/Puella Magi Madoka Magica the Movie Part II - Eternal (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Puella Magi Madoka Magica the Movie Part II - Eternal (2012)","runtime":109,"cleanTitle":"puellamagimadokamagicamoviepartiieternal","imdbId":"tt2194724","tmdbId":152044,"titleSlug":"152044","certification":"PG-13","genres":["Thriller","Animation","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":76,"value":7.6},"movieFile":{"movieId":163,"relativePath":"Puella Magi Madoka Magica the Movie Part II Eternal.2012-HDTV-1080p.mkv","path":"\/movies\/Puella Magi Madoka Magica the Movie Part II - Eternal (2012)\/Puella Magi Madoka Magica the Movie Part II Eternal.2012-HDTV-1080p.mkv","size":8418304686,"dateAdded":"2018-10-11T15:10:44Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"1:51:02","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":152},"collection":{"name":"Puella Magi Madoka Magica: The Movie","tmdbId":212166,"images":[]},"id":163},{"title":"Puella Magi Madoka Magica the Movie Part III: Rebellion","originalTitle":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab[\u65b0\u7de8]\u53db\u9006\u306e\u7269\u8a9e","alternateTitles":[{"sourceType":"tmdb","movieId":164,"title":"Puella Magi Madoka\u2605Magica the Movie Part III: The Rebellion Story","sourceId":212162,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":222},{"sourceType":"tmdb","movieId":164,"title":"Magical Girl Madoka Magica Movie 3","sourceId":212162,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":223},{"sourceType":"tmdb","movieId":164,"title":"Gekijouban Mahou Shoujo Madoka Magica: Hangyaku no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4830},{"sourceType":"tmdb","movieId":164,"title":"Gekij\u014d-ban Mah\u014d Sh\u014djo Madoka Magica Shinpen: Hangyaku no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4831},{"sourceType":"tmdb","movieId":164,"title":"Mahou Shoujo Madoka Magica Movie 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4832},{"sourceType":"tmdb","movieId":164,"title":"\u5287\u5834\u7248 \u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab \u53db\u9006\u306e\u7269\u8a9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4833},{"sourceType":"tmdb","movieId":164,"title":"\ub9c8\ubc95\uc18c\ub140 \ub9c8\ub3c4\uce74 \ub9c8\uae30\uce74: \ubc18\uc5ed\uc758 \uc774\uc57c\uae30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4834},{"sourceType":"tmdb","movieId":164,"title":"Puella Magi Madoka Magica - Der Film 3 - Rebellion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5324}],"secondaryYearSourceId":0,"sortTitle":"puella magi madoka magica movie part iii rebellion","sizeOnDisk":9675511447,"status":"released","overview":"Following Madoka's rewriting of the universe, sacrificing herself and her happy normal days to save all magical girls from the cruel fate that awaited them by wiping witches out of existence, the despair still manifest into creatures known as nightmares. Magical girl Homura Akemi continues to fight alone in the hope that she will be able to see Madoka smile again.","inCinemas":"2013-10-26T00:00:00Z","physicalRelease":"2014-04-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/164\/poster.jpg?lastWrite=637611071214876151","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/68cts97TtCXcAlimoAHrHlQUNfn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/164\/fanart.jpg?lastWrite=637611071216396123","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vYtNeF6ginHdXUn9J0fKcxIkkC1.jpg"}],"website":"https:\/\/www.madoka-magica.com\/","year":2013,"hasFile":true,"youTubeTrailerId":"O36OsLLomqs","studio":"SHAFT","path":"\/movies\/Puella Magi Madoka Magica the Movie Part III - Rebellion (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Puella Magi Madoka Magica the Movie Part III - Rebellion (2013)","runtime":116,"cleanTitle":"puellamagimadokamagicamoviepartiiirebellion","imdbId":"tt2457282","tmdbId":212162,"titleSlug":"212162","genres":["Mystery","Animation","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":121,"value":7.7},"movieFile":{"movieId":164,"relativePath":"Puella Magi Madoka Magica the Movie Part III Rebellion.2013-HDTV-1080p.mkv","path":"\/movies\/Puella Magi Madoka Magica the Movie Part III - Rebellion (2013)\/Puella Magi Madoka Magica the Movie Part III Rebellion.2013-HDTV-1080p.mkv","size":9675511447,"dateAdded":"2018-10-11T15:10:43Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:56:37","scanType":"Progressive","subtitles":"English \/ French \/ Spanish"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":150},"collection":{"name":"Puella Magi Madoka Magica: The Movie","tmdbId":212166,"images":[]},"id":164},{"title":"Raiders of the Lost Ark","originalTitle":"Raiders of the Lost Ark","alternateTitles":[{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones and the Raiders of the Lost Ark","sourceId":85,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":224},{"sourceType":"tmdb","movieId":165,"title":"Los cazadores del arca perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2601},{"sourceType":"tmdb","movieId":165,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u0443\u043d\u0441: \u041f\u043e\u0445\u0438\u0442\u0438\u0442\u0435\u043b\u0438\u0442\u0435 \u043d\u0430 \u0438\u0437\u0447\u0435\u0437\u043d\u0430\u043b\u0438\u044f \u043a\u0438\u0432\u043e\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2602},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones e Os Ca\u00e7adores da Arca Perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2603},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones 1 Aventurier Arche perdue - Raiders Of The Lost Ark - FR 1981","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2604},{"sourceType":"tmdb","movieId":165,"title":"\u593a\u5b9d\u5947\u5175","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2605},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones - J\u00e4ger des verlorenen Schatzes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2606},{"sourceType":"tmdb","movieId":165,"title":"Jagten p\u00e5 den forsvundne skat","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2607},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones 1 Y Los Cazadores del Arca Perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2608},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones ja kadonneen aarteen mets\u00e4st\u00e4j\u00e4t","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2610},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones et les Aventuriers de l'Arche Perdue","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2613},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones e I Predatori Dell'Arca Perduta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2614},{"sourceType":"tmdb","movieId":165,"title":"\ub808\uc774\ub354\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2615},{"sourceType":"tmdb","movieId":165,"title":"\uc778\ub514\uc544\ub098 \uc874\uc2a4 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2616},{"sourceType":"tmdb","movieId":165,"title":"Indiana D\u017eounsas 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2617},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones 1 - En busca del arca perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2618},{"sourceType":"tmdb","movieId":165,"title":"Poszukiwacze zaginionej Arki","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2619},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones e os Salteadores da Arca Perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2620},{"sourceType":"tmdb","movieId":165,"title":"Os Salteadores da Arca Perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2621},{"sourceType":"tmdb","movieId":165,"title":"\u0412 \u043f\u043e\u0438\u0441\u043a\u0430\u0445 \u0443\u0442\u0440\u0430\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u0432\u0447\u0435\u0433\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2622},{"sourceType":"tmdb","movieId":165,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2623},{"sourceType":"tmdb","movieId":165,"title":"\u0418\u043d\u0434\u0438\u0430\u043d\u0430 \u0414\u0436\u043e\u043d\u0441 \u0412 \u043f\u043e\u0438\u0441\u043a\u0430\u0445 \u0443\u0442\u0440\u0430\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u0432\u0447\u0435\u0433\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2624},{"sourceType":"tmdb","movieId":165,"title":"Dobyvatelia stratenej archy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2625},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones i poszukiwacze zaginionej Arki","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4509},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones 1 - Raiders of the Lost Ark 1981","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5263},{"sourceType":"tmdb","movieId":165,"title":"Indiana Jones 1 - Raiders of the Lost Ark","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5537},{"sourceType":"tmdb","movieId":165,"title":"Inidiana Jones and the Raiders of the Lost Ark","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5979},{"sourceType":"tmdb","movieId":165,"title":"En busca del arca perdida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6044}],"secondaryYearSourceId":0,"sortTitle":"raiders lost ark","sizeOnDisk":36001592467,"status":"released","overview":"When Dr. Indiana Jones \u2013 the tweed-suited professor who just happens to be a celebrated archaeologist \u2013 is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.","inCinemas":"1981-06-12T00:00:00Z","physicalRelease":"2003-11-20T00:00:00Z","digitalRelease":"2002-12-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/165\/poster.jpg?lastWrite=637643074454842833","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/awUGN7ZCNq2EUTdpVaHDX23anOZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/165\/fanart.jpg?lastWrite=637588584809728936","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kCiMExsYuNhYluHxPP2OTmWw7hp.jpg"}],"website":"http:\/\/www.indianajones.com","year":1981,"hasFile":true,"youTubeTrailerId":"0xQSIdSRlAk","studio":"Paramount","path":"\/movies\/Raiders of the Lost Ark (1981)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Raiders of the Lost Ark (1981)","runtime":115,"cleanTitle":"raiderslostark","imdbId":"tt0082971","tmdbId":85,"titleSlug":"85","certification":"PG","genres":["Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":9409,"value":7.9},"movieFile":{"movieId":165,"relativePath":"Raiders of the Lost Ark.1981-Remux-1080p.mkv","path":"\/movies\/Raiders of the Lost Ark (1981)\/Raiders of the Lost Ark.1981-Remux-1080p.mkv","size":36001592467,"dateAdded":"2018-10-15T14:45:23Z","sceneName":"Indiana.Jones.And.The.Raiders.Of.The.Lost.Ark.1981.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3816191,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Catalan \/ Spanish \/ Spanish \/ Italian","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":34549203,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:55:18","scanType":"Progressive","subtitles":"English \/ Catalan \/ Spanish \/ Italian"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":358},"collection":{"name":"Indiana Jones Collection","tmdbId":84,"images":[]},"id":165},{"title":"Ratchet & Clank","originalTitle":"Ratchet & Clank","alternateTitles":[{"sourceType":"tmdb","movieId":166,"title":"Her\u00f3is da Gal\u00e1xia Ratchet e Clank","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4272},{"sourceType":"tmdb","movieId":166,"title":"Ratchet und Clank","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4273},{"sourceType":"tmdb","movieId":166,"title":"Ratchet & Clank, la pel\u00edcula","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4274},{"sourceType":"tmdb","movieId":166,"title":"Ratchet i Clank","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4275},{"sourceType":"tmdb","movieId":166,"title":"\uac24\ub7ed\uc2dc \ud788\uc5b4\ub85c\uc988-\ub77c\uccc7 \uc564 \ud074\ub7ad\ud06c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4276},{"sourceType":"tmdb","movieId":166,"title":"Ratched and Clank","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":4277},{"sourceType":"tmdb","movieId":166,"title":"\u30e9\u30c1\u30a7\u30c3\u30c8\uff06\u30af\u30e9\u30f3\u30af\u3000\uff34\uff28\uff25\u3000\uff2d\uff2f\uff36\uff29\uff25","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5682},{"sourceType":"tmdb","movieId":166,"title":"\u03a1\u03ac\u03c4\u03c3\u03b5\u03c4 \u03ba\u03b1\u03b9 \u039a\u03bb\u03b1\u03bd\u03ba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6054}],"secondaryYearSourceId":0,"sortTitle":"ratchet clank","sizeOnDisk":1927146798,"status":"released","overview":"When the galaxy comes under the threat of a nefarious space captain, a mechanic and his newfound robot ally join an elite squad of combatants to save the universe.","inCinemas":"2016-04-13T00:00:00Z","physicalRelease":"2016-08-02T00:00:00Z","digitalRelease":"2017-06-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/166\/poster.jpg?lastWrite=637422694853653010","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/649xP2LST4VIrZ5cLPw7Ys9movF.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/166\/fanart.jpg?lastWrite=637652590802531018","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jXuXRWXxTfLVvZOq8mNAbh7yPLV.jpg"}],"website":"http:\/\/www.ratchetandclankmovie.com","year":2016,"hasFile":true,"youTubeTrailerId":"SNTaFzXlP8E","studio":"Gramercy Pictures","path":"\/movies\/Ratchet & Clank (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ratchet & Clank (2016)","runtime":94,"cleanTitle":"ratchetclank","imdbId":"tt2865120","tmdbId":234004,"titleSlug":"234004","certification":"PG","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":491,"value":5.8},"movieFile":{"movieId":166,"relativePath":"Ratchet & Clank.2016-Bluray-1080p.mp4","path":"\/movies\/Ratchet & Clank (2016)\/Ratchet & Clank.2016-Bluray-1080p.mp4","size":1927146798,"dateAdded":"2018-10-16T16:19:14Z","sceneName":"Ratchet.and.Clank.2016.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:34:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":378},"id":166},{"title":"Ready Player One","originalTitle":"Ready Player One","alternateTitles":[{"sourceType":"tmdb","movieId":167,"title":"Jogador n\u00ba 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3312},{"sourceType":"tmdb","movieId":167,"title":"Igralec \u0161t. 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3313},{"sourceType":"tmdb","movieId":167,"title":"Ba\u015flat","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3314},{"sourceType":"tmdb","movieId":167,"title":"\u73a9\u5bb6\u4e00\u53f7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3544},{"sourceType":"tmdb","movieId":167,"title":"Ready Player One: Comienza el juego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4349}],"secondaryYearSourceId":0,"sortTitle":"ready player one","sizeOnDisk":39971081120,"status":"released","overview":"When the creator of a popular video game system dies, a virtual contest is created to compete for his fortune.","inCinemas":"2018-03-28T00:00:00Z","physicalRelease":"2018-07-18T00:00:00Z","digitalRelease":"2018-07-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/167\/poster.jpg?lastWrite=637644804735554585","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pU1ULUq8D3iRxl1fdX2lZIzdHuI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/167\/fanart.jpg?lastWrite=637643074473122493","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/q7fXcrDPJcf6t3rzutaNwTzuKP1.jpg"}],"website":"http:\/\/readyplayeronemovie.com","year":2018,"hasFile":true,"youTubeTrailerId":"D_eZxSYRhco","studio":"Amblin Entertainment","path":"\/movies\/Ready Player One (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ready Player One (2018)","runtime":140,"cleanTitle":"readyplayerone","imdbId":"tt1677720","tmdbId":333339,"titleSlug":"333339","certification":"PG-13","genres":["Science Fiction","Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":11725,"value":7.6},"movieFile":{"movieId":167,"relativePath":"Ready Player One.2018-Remux-1080p.mkv","path":"\/movies\/Ready Player One (2018)\/Ready Player One.2018-Remux-1080p.mkv","size":39971081120,"dateAdded":"2020-08-18T16:16:47Z","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3218040,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ English \/ English \/ Italian \/ Italian \/ Spanish","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":21653166,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:19:58","scanType":"Progressive","subtitles":"English \/ Italian \/ Spanish \/ Danish \/ Finnish \/ Greek \/ Norwegian \/ Swedish \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":693},"id":167},{"title":"Scott Pilgrim vs. the World","originalTitle":"Scott Pilgrim vs. the World","alternateTitles":[{"sourceType":"tmdb","movieId":168,"title":"Scott Pilgrim's Precious Little Life","sourceId":22538,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":227},{"sourceType":"tmdb","movieId":168,"title":"\u0421\u043a\u043e\u0442 \u041f\u0438\u043b\u0438\u0433\u0440\u0438\u043c \u0441\u0440\u0435\u0449\u0443 \u0441\u0432\u0435\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4130},{"sourceType":"tmdb","movieId":168,"title":"Scott Pilgrim Contra o Mundo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4131},{"sourceType":"tmdb","movieId":168,"title":"\u6b6a\u5c0f\u5b50\u65af\u79d1\u7279","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4132},{"sourceType":"tmdb","movieId":168,"title":"Scott Pilgrim a Vil\u00e1g Ellen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4133},{"sourceType":"tmdb","movieId":168,"title":"\u05e1\u05e7\u05d5\u05d8 \u05e4\u05d9\u05dc\u05d2\u05e8\u05d9\u05dd \u05e0\u05d2\u05d3 \u05d4\u05e2\u05d5\u05dc\u05dd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4134},{"sourceType":"tmdb","movieId":168,"title":"\uc2a4\ucf67 \ud544\uadf8\ub9bc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4135},{"sourceType":"tmdb","movieId":168,"title":"Scott Pilgrim kontra \u015bwiat","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4136},{"sourceType":"tmdb","movieId":168,"title":"\u0421\u043a\u043e\u0442\u0442 \u041f\u0438\u043b\u0438\u0433\u0440\u0438\u043c \u043f\u0440\u043e\u0442\u0438\u0432 \u0432\u0441\u0435\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4137},{"sourceType":"tmdb","movieId":168,"title":"\u0421\u043a\u043e\u0442\u0442 \u041f\u0438\u043b\u0438\u0433\u0440\u0438\u043c \u043f\u0440\u043e\u0442\u0438\u0432 \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4138},{"sourceType":"tmdb","movieId":168,"title":"Scott Pilgrim proti cel\u00e9mu svetu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4139},{"sourceType":"tmdb","movieId":168,"title":"Skotas Pilgrimas prie\u0161 pasaul\u012f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5489}],"secondaryYearSourceId":0,"sortTitle":"scott pilgrim vs world","sizeOnDisk":11673139990,"status":"released","overview":"As bass guitarist for a garage-rock band, Scott Pilgrim has never had trouble getting a girlfriend; usually, the problem is getting rid of them. But when Ramona Flowers skates into his heart, he finds she has the most troublesome baggage of all: an army of ex-boyfriends who will stop at nothing to eliminate him from her list of suitors.","inCinemas":"2010-08-12T00:00:00Z","physicalRelease":"2011-01-25T00:00:00Z","digitalRelease":"2015-04-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/168\/poster.jpg?lastWrite=637662971587824511","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g5IoYeudx9XBEfwNL0fHvSckLBz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/168\/fanart.jpg?lastWrite=637582530441908997","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jRcwPjlD4nXw0mSjtGcnmrxf1xp.jpg"}],"website":"http:\/\/www.scottpilgrimthemovie.com\/","year":2010,"hasFile":true,"youTubeTrailerId":"j66qP9Larlg","studio":"Universal Pictures","path":"\/movies\/Scott Pilgrim vs. the World (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Scott Pilgrim vs. the World (2010)","runtime":112,"cleanTitle":"scottpilgrimvsworld","imdbId":"tt0446029","tmdbId":22538,"titleSlug":"22538","certification":"PG-13","genres":["Comedy","Action","Romance"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5831,"value":7.4},"movieFile":{"movieId":168,"relativePath":"Scott Pilgrim vs. the World.2010-Bluray-1080p.mkv","path":"\/movies\/Scott Pilgrim vs. the World (2010)\/Scott Pilgrim vs. the World.2010-Bluray-1080p.mkv","size":11673139990,"dateAdded":"2018-10-14T14:56:19Z","sceneName":"Scott.Pilgrim.vs.The.World.2010.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12340000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:52:23","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":325},"id":168},{"title":"Serenity","originalTitle":"Serenity","alternateTitles":[{"sourceType":"tmdb","movieId":169,"title":"Firefly - Serenity","sourceId":16320,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":228},{"sourceType":"tmdb","movieId":169,"title":"Firefly: The Movie","sourceId":16320,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":229},{"sourceType":"tmdb","movieId":169,"title":"\u5b81\u9759\u53f7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3127},{"sourceType":"tmdb","movieId":169,"title":"\u0e40\u0e0b\u0e40\u0e23\u0e19\u0e34\u0e15\u0e35\u0e49 \u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e02\u0e2d\u0e1a\u0e08\u0e31\u0e01\u0e23\u0e27\u0e32\u0e25","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3128}],"secondaryYearSourceId":0,"sortTitle":"serenity","sizeOnDisk":14261090841,"status":"released","overview":"When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything \u2013 or anyone \u2013 to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But... the greatest danger of all may be on their ship.","inCinemas":"2005-09-25T00:00:00Z","physicalRelease":"2006-04-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/169\/poster.jpg?lastWrite=637643939733442817","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2ZOm4cedJanmN85ZiWrwZPUNv0d.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/169\/fanart.jpg?lastWrite=637637020129215182","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/csGprKcRxt7SDpsrKiwxpgLdEsx.jpg"}],"website":"","year":2005,"hasFile":true,"youTubeTrailerId":"JY3u7bB7dZk","studio":"Universal Pictures","path":"\/movies\/Serenity (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Serenity (2005)","runtime":119,"cleanTitle":"serenity","imdbId":"tt0379786","tmdbId":16320,"titleSlug":"16320","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2659,"value":7.4},"movieFile":{"movieId":169,"relativePath":"Serenity.2005-Bluray-1080p.mkv","path":"\/movies\/Serenity (2005)\/Serenity.2005-Bluray-1080p.mkv","size":14261090841,"dateAdded":"2018-10-14T09:11:53Z","sceneName":"Serenity.2005.1080p.BluRay.x264.DTS-X.7.1-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL X","audioBitrate":5476356,"audioChannels":7.1,"audioCodec":"DTS-X","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10392150,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x818","runTime":"1:58:55","scanType":"Progressive","subtitles":"English \/ English \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ Greek \/ Japanese \/ Norwegian \/ Spanish \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":311},"id":169},{"title":"Shutter Island","originalTitle":"Shutter Island","alternateTitles":[{"sourceType":"tmdb","movieId":170,"title":"Ashecliffe","sourceId":11324,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":230}],"secondaryYearSourceId":0,"sortTitle":"shutter island","sizeOnDisk":19298765454,"status":"released","overview":"World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by his troubling visions and also by a mysterious doctor.","inCinemas":"2010-02-14T00:00:00Z","physicalRelease":"2010-06-23T00:00:00Z","digitalRelease":"2012-03-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/170\/poster.jpg?lastWrite=637658647612178507","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/56utveUWJwmG12YU7c2zKw6pbRZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/170\/fanart.jpg?lastWrite=637639614776991998","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/U8QRD7jvTXEYsUXq74IFKaSiL5.jpg"}],"website":"http:\/\/www.shutterisland.com\/","year":2010,"hasFile":true,"youTubeTrailerId":"qdPw9x9h5CY","studio":"Phoenix Pictures","path":"\/movies\/Shutter Island (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Shutter Island (2010)","runtime":138,"cleanTitle":"shutterisland","imdbId":"tt1130884","tmdbId":11324,"titleSlug":"11324","certification":"R","genres":["Drama","Thriller","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":18406,"value":8.2},"movieFile":{"movieId":170,"relativePath":"Shutter Island.2010-Bluray-1080p.mkv","path":"\/movies\/Shutter Island (2010)\/Shutter Island.2010-Bluray-1080p.mkv","size":19298765454,"dateAdded":"2018-10-14T19:41:32Z","sceneName":"Shutter.Island.2010.1080p.BluRay.x264.DTS-HD.MA.5.1-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4725417,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13655726,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:18:04","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ Arabic \/ Malay \/ Chinese \/ Czech \/ Danish \/ Greek \/ Spanish \/ French \/ Hindi \/ Icelandic \/ Japanese \/ Korean \/ Hungarian \/ Chinese \/ Dutch \/ Norwegian \/ Polish \/ Portuguese \/ Portuguese \/ rom \/ Slovak \/ Finnish \/ Swe"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":326},"id":170},{"title":"Sin City: A Dame to Kill For","originalTitle":"Sin City: A Dame to Kill For","alternateTitles":[{"sourceType":"tmdb","movieId":171,"title":"Frank Miller's Sin City: A Dame to Kill For","sourceId":189,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":231},{"sourceType":"tmdb","movieId":171,"title":"Sin City 2","sourceId":189,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":232},{"sourceType":"tmdb","movieId":171,"title":"Sin City: a Dame to Kill For 3D","sourceId":189,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1292},{"sourceType":"tmdb","movieId":171,"title":"Sin City 2 - A Dame to Kill For","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3568},{"sourceType":"tmdb","movieId":171,"title":"Sin City 2 - J'ai tu\u00e9 pour elle","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3569},{"sourceType":"tmdb","movieId":171,"title":"Sin City II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3570},{"sourceType":"tmdb","movieId":171,"title":"Sin City II A Dame To Kill For","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3571},{"sourceType":"tmdb","movieId":171,"title":"Sin City 2 - Una donna per cui uccidere","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3573},{"sourceType":"tmdb","movieId":171,"title":"\uc52c \uc2dc\ud2f0 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3574},{"sourceType":"tmdb","movieId":171,"title":"Sin City 2: Una dama por la cual matar\u00eda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3576},{"sourceType":"tmdb","movieId":171,"title":"\u842c\u60e1\u57ce\u5e022\uff1a\u7d05\u984f\u596a\u547d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3578},{"sourceType":"tmdb","movieId":171,"title":"Nuod\u0117mi\u0173 miestas. Dama, d\u0117l kurios verta \u017eudyti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5539},{"sourceType":"tmdb","movieId":171,"title":"\u7f6a\u6076\u4e4b\u57ce2\uff1a\u86c7\u874e\u7f8e\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5563}],"secondaryYearSourceId":0,"sortTitle":"sin city dame to kill for","sizeOnDisk":23454392208,"status":"released","overview":"Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.","inCinemas":"2014-08-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/171\/poster.jpg?lastWrite=637662971638463655","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/50kALxDX4mmzIRljbNbPY0u4cie.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/171\/fanart.jpg?lastWrite=637662971641063611","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rxMnmklIpunsNsRkQ7hw61ZJa84.jpg"}],"website":"http:\/\/sincity-2.com\/","year":2014,"hasFile":true,"youTubeTrailerId":"XVjDcUCui0w","studio":"Residaco","path":"\/movies\/Sin City - A Dame to Kill For (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Sin City - A Dame to Kill For (2014)","runtime":102,"cleanTitle":"sincitydametokillfor","imdbId":"tt0458481","tmdbId":189,"titleSlug":"189","certification":"R","genres":["Crime","Action","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2991,"value":6.4},"movieFile":{"movieId":171,"relativePath":"Sin City A Dame to Kill For.2014-Remux-1080p.mkv","path":"\/movies\/Sin City - A Dame to Kill For (2014)\/Sin City A Dame to Kill For.2014-Remux-1080p.mkv","size":23454392208,"dateAdded":"2018-10-14T12:54:18Z","sceneName":"Sin.City.A.Dame.to.Kill.For.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:42:08","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":322},"collection":{"name":"Sin City Collection","tmdbId":135179,"images":[]},"id":171},{"title":"Spider-Man","originalTitle":"Spider-Man","alternateTitles":[{"sourceType":"tmdb","movieId":172,"title":"Spider-Man: The Motion Picture","sourceId":557,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":234},{"sourceType":"tmdb","movieId":172,"title":"Spai\u0306d\u016dr-men","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3132},{"sourceType":"tmdb","movieId":172,"title":"Spiderman 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3133},{"sourceType":"tmdb","movieId":172,"title":"\u03a3\u03c0\u03ac\u03b9\u03bd\u03c4\u03b5\u03c1\u03bc\u03b1\u03bd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3134},{"sourceType":"tmdb","movieId":172,"title":"El hombre ara\u00f1a 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3137},{"sourceType":"tmdb","movieId":172,"title":"Spajdermen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3138},{"sourceType":"tmdb","movieId":172,"title":"Chelovek-pauk","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3139},{"sourceType":"tmdb","movieId":172,"title":"Spindelmannen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3140},{"sourceType":"tmdb","movieId":172,"title":"Lyudyna-pavuk","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3141},{"sourceType":"tmdb","movieId":172,"title":"\u8718\u86db\u4fa01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5594},{"sourceType":"tmdb","movieId":172,"title":"\u8718\u86db\u4fa0\u521d\u4ee3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5595},{"sourceType":"tmdb","movieId":172,"title":"\uc2a4\ud30c\uc774\ub354 \ub9e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5687},{"sourceType":"tmdb","movieId":172,"title":"\uc2a4\ud30c\uc774\ub354\ub9e8 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5688},{"sourceType":"tmdb","movieId":172,"title":"Homem-Aranha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5972}],"secondaryYearSourceId":0,"sortTitle":"spider man","sizeOnDisk":8211011192,"status":"released","overview":"After being bitten by a genetically altered spider, nerdy high school student Peter Parker is endowed with amazing powers to become the Amazing superhero known as Spider-Man.","inCinemas":"2002-05-01T00:00:00Z","physicalRelease":"2002-11-06T00:00:00Z","digitalRelease":"2016-12-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/172\/poster.jpg?lastWrite=637635290306388131","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fwoETElxZqiF3it8F4HitSliXqp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/172\/fanart.jpg?lastWrite=637658647694497046","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sWvxBXNtCOaGdtpKNLiOqmwb10N.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/spider-man\/","year":2002,"hasFile":true,"youTubeTrailerId":"O7zvehDxttM","studio":"Marvel Enterprises","path":"\/movies\/Spider-Man (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Spider-Man (2002)","runtime":121,"cleanTitle":"spiderman","imdbId":"tt0145487","tmdbId":557,"titleSlug":"557","certification":"PG-13","genres":["Fantasy","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":13870,"value":7.2},"movieFile":{"movieId":172,"relativePath":"Spider-Man.2002-Bluray-1080p.mkv","path":"\/movies\/Spider-Man (2002)\/Spider-Man.2002-Bluray-1080p.mkv","size":8211011192,"dateAdded":"2018-10-14T20:37:27Z","sceneName":"Spiderman.2002.REMASTERED.1080p.BluRay.x264-FilmHD[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8398000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:01:12","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FilmHD","edition":"REMASTERED","id":332},"collection":{"name":"Spider-Man Collection","tmdbId":556,"images":[]},"id":172},{"title":"Spider-Man 2","originalTitle":"Spider-Man 2","alternateTitles":[{"sourceType":"tmdb","movieId":173,"title":"Spider-Man 2.1","sourceId":558,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":236},{"sourceType":"tmdb","movieId":173,"title":"Spider-Man 2 Lives","sourceId":558,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":237},{"sourceType":"tmdb","movieId":173,"title":"Spider-Man 2: The IMAX Experience","sourceId":558,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":238},{"sourceType":"tmdb","movieId":173,"title":"Spider-Man: No More","sourceId":558,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":239},{"sourceType":"tmdb","movieId":173,"title":"Spai\u0306d\u016dr-men 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2253},{"sourceType":"tmdb","movieId":173,"title":"Spider-Man 2 - Spider-Man ist zur\u00fcck","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2254},{"sourceType":"tmdb","movieId":173,"title":"Sp\u00e1interman 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2255},{"sourceType":"tmdb","movieId":173,"title":"Spajdermen 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2256},{"sourceType":"tmdb","movieId":173,"title":"Chelovek-pauk 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2257},{"sourceType":"tmdb","movieId":173,"title":"Lyudyna-pavuk 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2258},{"sourceType":"tmdb","movieId":173,"title":"Homem-Aranha 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5973}],"secondaryYearSourceId":0,"sortTitle":"spider man 2","sizeOnDisk":10484868813,"status":"released","overview":"Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood.","inCinemas":"2004-06-25T00:00:00Z","physicalRelease":"2004-11-17T00:00:00Z","digitalRelease":"2016-12-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/173\/poster.jpg?lastWrite=637241984771550860","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/olxpyq9kJAZ2NU1siLshhhXEPR7.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/173\/fanart.jpg?lastWrite=637638749861011053","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6al048Lat3eLVQOuKtc9h6Tu94d.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/spider-man2\/","year":2004,"hasFile":true,"youTubeTrailerId":"3jBFwltrxJw","studio":"Marvel Enterprises","path":"\/movies\/Spider-Man 2 (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Spider-Man 2 (2004)","runtime":127,"cleanTitle":"spiderman2","imdbId":"tt0316654","tmdbId":558,"titleSlug":"558","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":11192,"value":7.1},"movieFile":{"movieId":173,"relativePath":"Spider-Man 2.2004-Bluray-1080p.mkv","path":"\/movies\/Spider-Man 2 (2004)\/Spider-Man 2.2004-Bluray-1080p.mkv","size":10484868813,"dateAdded":"2018-10-14T08:29:29Z","sceneName":"Spider-Man.2.1.2004.1080p.BluRay.x264-HDEX","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9651000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:15:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"sm2","edition":"","id":308},"collection":{"name":"Spider-Man Collection","tmdbId":556,"images":[]},"id":173},{"title":"Spirited Away","originalTitle":"\u5343\u3068\u5343\u5c0b\u306e\u795e\u96a0\u3057","alternateTitles":[{"sourceType":"tmdb","movieId":174,"title":"El viatge de Chihiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2627},{"sourceType":"tmdb","movieId":174,"title":"Chihiro ilmmiid gaskkas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2628},{"sourceType":"tmdb","movieId":174,"title":"Sen to Chihiro no kamikakushi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2629},{"sourceType":"tmdb","movieId":174,"title":"Sen gwa Chihiro ui Haengbang Bulmyeong","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2630},{"sourceType":"tmdb","movieId":174,"title":"Unesenniye prizrakami","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2631},{"sourceType":"tmdb","movieId":174,"title":"Shahr Ashbah","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4214},{"sourceType":"tmdb","movieId":174,"title":"Shahr-e Ashbah","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4215},{"sourceType":"tmdb","movieId":174,"title":"Sen and Chihiro's Spiriting Away","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4997},{"sourceType":"tmdb","movieId":174,"title":"The Spiriting Away of Sen and Chihiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4998},{"sourceType":"tmdb","movieId":174,"title":"\uc13c\uacfc \uce58\ud788\ub85c\uc758 \ud589\ubc29\ubd88\uba85","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5028},{"sourceType":"tmdb","movieId":174,"title":"Sen to Chihiro no Kamikakuchi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5256},{"sourceType":"tmdb","movieId":174,"title":"Chihiros Reise ins Zauberland","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5294},{"sourceType":"tmdb","movieId":174,"title":"Le Voyage de Chihiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5452}],"secondaryYear":2002,"secondaryYearSourceId":0,"sortTitle":"spirited away","sizeOnDisk":10565465853,"status":"released","overview":"A young girl, Chihiro, becomes trapped in a strange new world of spirits. When her parents undergo a mysterious transformation, she must call upon the courage she never knew she had to free her family.","inCinemas":"2001-07-20T00:00:00Z","physicalRelease":"2002-07-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/174\/poster.jpg?lastWrite=637582530507028093","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/39wmItIWsg5sZMyRUHLkWBcuVCM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/174\/fanart.jpg?lastWrite=637654321575355152","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/Ab8mkHmkYADjU7wQiOkia9BzGvS.jpg"}],"website":"http:\/\/movies.disney.com\/spirited-away","year":2001,"hasFile":true,"youTubeTrailerId":"ByXuk9QqQkk","studio":"Studio Ghibli","path":"\/movies\/Spirited Away (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Spirited Away (2001)","runtime":125,"cleanTitle":"spiritedaway","imdbId":"tt0245429","tmdbId":129,"titleSlug":"129","certification":"PG","genres":["Animation","Family","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":11739,"value":8.5},"movieFile":{"movieId":174,"relativePath":"Spirited Away.2001-Bluray-1080p.mkv","path":"\/movies\/Spirited Away (2001)\/Spirited Away.2001-Bluray-1080p.mkv","size":10565465853,"dateAdded":"2018-10-13T15:20:36Z","sceneName":"Spirited.Away.2001.RERIP.1080p.BluRay.X264-AMIABLE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XXCH","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9351970,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:04:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":277},"id":174},{"title":"Stargate","originalTitle":"Stargate","alternateTitles":[{"sourceType":"tmdb","movieId":175,"title":"Stargate: Extended Edition","sourceId":2164,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":244},{"sourceType":"tmdb","movieId":175,"title":"Stargate: 15th Anniversary Extended Remastered Edition","sourceId":2164,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":245},{"sourceType":"tmdb","movieId":175,"title":"Stargate (Director's Cut)","sourceId":2164,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":246},{"sourceType":"tmdb","movieId":175,"title":"Stargate Ultimate Edition","sourceId":2164,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":247},{"sourceType":"tmdb","movieId":175,"title":"Stargate (Extended Version)","sourceId":2164,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":248},{"sourceType":"tmdb","movieId":175,"title":"Stargate: La puerta del tiempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4057},{"sourceType":"tmdb","movieId":175,"title":"Stargate - A Chave para o Futuro da Humanidade","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4058},{"sourceType":"tmdb","movieId":175,"title":"Stargate, Puerta a las Estrellas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4059},{"sourceType":"tmdb","movieId":175,"title":"T\u00e4htiportti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4060},{"sourceType":"tmdb","movieId":175,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u0440\u0430\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4061},{"sourceType":"tmdb","movieId":175,"title":"Stargate - Das Tor zum Universum","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6063}],"secondaryYearSourceId":0,"sortTitle":"stargate","sizeOnDisk":30093970331,"status":"released","overview":"An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.","inCinemas":"1994-10-27T00:00:00Z","physicalRelease":"1997-06-18T00:00:00Z","digitalRelease":"2008-03-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/175\/poster.jpg?lastWrite=637560044846743113","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fyTqTETiXncfESLyKfkgEs7qg7d.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/175\/fanart.jpg?lastWrite=637626640984733408","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/34wSdldOfJ43JXXraD4GxkdX0j1.jpg"}],"website":"","year":1994,"hasFile":true,"youTubeTrailerId":"GZwcZ8TBlaU","studio":"Carolco Pictures","path":"\/movies\/Stargate - Extended Edition (1994)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Stargate - Extended Edition (1994)","runtime":121,"cleanTitle":"stargate","imdbId":"tt0111282","tmdbId":2164,"titleSlug":"2164","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2446,"value":7},"movieFile":{"movieId":175,"relativePath":"Stargate.1994-Remux-1080p.mkv","path":"\/movies\/Stargate - Extended Edition (1994)\/Stargate.1994-Remux-1080p.mkv","size":30093970331,"dateAdded":"2018-10-14T22:43:07Z","sceneName":"Stargate.1994.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":5165393,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":23969124,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:09:53","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"EXTENDED","id":346},"collection":{"name":"Stargate SG-1 Collection","tmdbId":44215,"images":[]},"id":175},{"title":"Sucker Punch","originalTitle":"Sucker Punch","alternateTitles":[{"sourceType":"tmdb","movieId":176,"title":"Sucker Punch EC","sourceId":23629,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1236},{"sourceType":"tmdb","movieId":176,"title":"Sucker Punch: The IMAX Experience","sourceId":23629,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1237},{"sourceType":"tmdb","movieId":176,"title":"Mundo surreal: Sucker Punch","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1923}],"secondaryYearSourceId":0,"sortTitle":"sucker punch","sizeOnDisk":2610685220,"status":"released","overview":"A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.","inCinemas":"2011-03-24T00:00:00Z","physicalRelease":"2011-08-17T00:00:00Z","digitalRelease":"2013-11-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/176\/poster.jpg?lastWrite=637632694675285444","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8oBc33JEnYm3rqPIwGtQXQbP96j.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/176\/fanart.jpg?lastWrite=637632694676645423","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qSL3dh4QaaZ02dktTmfTDW6caMh.jpg"}],"website":"http:\/\/suckerpunchmovie.warnerbros.com","year":2011,"hasFile":true,"youTubeTrailerId":"6dzikBZTUy8","studio":"Legendary Pictures","path":"\/movies\/Sucker Punch (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Sucker Punch (2011)","runtime":110,"cleanTitle":"suckerpunch","imdbId":"tt0978764","tmdbId":23629,"titleSlug":"23629","certification":"PG-13","genres":["Action","Fantasy","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3699,"value":6.1},"movieFile":{"movieId":176,"relativePath":"Sucker Punch.2011-Bluray-1080p.mp4","path":"\/movies\/Sucker Punch (2011)\/Sucker Punch.2011-Bluray-1080p.mp4","size":2610685220,"dateAdded":"2018-10-13T13:57:53Z","sceneName":"Sucker.Punch.2011.Extended.Cut.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:07:30","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"Extended Cut","id":271},"id":176},{"title":"Suicide Squad","originalTitle":"Suicide Squad","alternateTitles":[{"sourceType":"tmdb","movieId":177,"title":"X\u7279\u9063\u961f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2916},{"sourceType":"tmdb","movieId":177,"title":"Yekhidat ha'mit'abdim","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2917},{"sourceType":"tmdb","movieId":177,"title":"Escuadron suicida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5513},{"sourceType":"tmdb","movieId":177,"title":"Suicide Squad: Extended Cut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":6038}],"secondaryYearSourceId":0,"sortTitle":"suicide squad","sizeOnDisk":34912162197,"status":"released","overview":"From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.","inCinemas":"2016-08-03T00:00:00Z","physicalRelease":"2016-12-03T00:00:00Z","digitalRelease":"2016-11-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/177\/poster.jpg?lastWrite=637657782356804909","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xFw9RXKZDvevAGocgBK0zteto4U.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/177\/fanart.jpg?lastWrite=637646534995777588","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sMRwI5trKI6qhxYcjPgGghmPBef.jpg"}],"website":"http:\/\/www.suicidesquad.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"m0Xb9BhfVjY","studio":"DC Entertainment","path":"\/movies\/Suicide Squad - Extended Edition (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Suicide Squad - Extended Edition (2016)","runtime":123,"cleanTitle":"suicidesquad","imdbId":"tt1386697","tmdbId":297761,"titleSlug":"297761","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":17882,"value":5.9},"movieFile":{"movieId":177,"relativePath":"Suicide Squad.2016-Remux-1080p.mkv","path":"\/movies\/Suicide Squad - Extended Edition (2016)\/Suicide Squad.2016-Remux-1080p.mkv","size":34912162197,"dateAdded":"2018-10-14T22:30:37Z","sceneName":"Suicide.Squad.2016.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ German \/ Italian \/ Spanish","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:14:32","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ French \/ German \/ Italian \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"EXTENDED","id":345},"collection":{"name":"Suicide Squad Collection","tmdbId":531242,"images":[]},"id":177},{"title":"Summer Wars","originalTitle":"\u30b5\u30de\u30fc\u30a6\u30a9\u30fc\u30ba","alternateTitles":[{"sourceType":"tmdb","movieId":178,"title":"Sam\u00e2 u\u00f4zu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4353},{"sourceType":"tmdb","movieId":178,"title":"Guerras de Ver\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5649},{"sourceType":"tmdb","movieId":178,"title":"\uc378\uba38 \uc6cc\uc988","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5690}],"secondaryYearSourceId":0,"sortTitle":"summer wars","sizeOnDisk":9388044392,"status":"released","overview":"Kenji is your typical teenage misfit. He\u2019s good at math, bad with girls, and spends most of his time hanging out in the all-powerful online community known as OZ. His second life is the only life he has \u2014 until the girl of his dreams, Natsuki, hijacks him for a starring role as a fake fianc\u00e9 at her family reunion. Things only get stranger from there. A late-night email containing a cryptic mathematic riddle leads to the unleashing of a rogue AI intent on using the virtual world of OZ to destroy the real world. As Armageddon looms on the horizon, Kenji and his new \u201cfamily\u201d set aside their differences and band together to save the worlds they inhabit in this \u201cnear-perfect blend of social satire and science fiction.\u201d","inCinemas":"2009-08-01T00:00:00Z","physicalRelease":"2010-11-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/178\/poster.jpg?lastWrite=637615397739994098","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yHy8TrRLnuBZ4t2C0l0pSpRXVHO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/178\/fanart.jpg?lastWrite=637644804837312698","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/laWosEOIzqSmMzJrDc9S8NTzRvd.jpg"}],"website":"","year":2009,"hasFile":true,"youTubeTrailerId":"UbmdYasVDDg","studio":"Madhouse","path":"\/movies\/Summer Wars (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Summer Wars (2009)","runtime":114,"cleanTitle":"summerwars","imdbId":"tt1474276","tmdbId":28874,"titleSlug":"28874","certification":"PG","genres":["Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":654,"value":7.5},"movieFile":{"movieId":178,"relativePath":"Summer Wars.2009-Bluray-1080p.mkv","path":"\/movies\/Summer Wars (2009)\/Summer Wars.2009-Bluray-1080p.mkv","size":9388044392,"dateAdded":"2018-10-14T03:53:36Z","sceneName":"Summer.Wars.2009.1080p.BluRay.x264-KaKa","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9449000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:54:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"KaKa","edition":"","id":294},"id":178},{"title":"Tales from Earthsea","originalTitle":"\u30b2\u30c9\u6226\u8a18","alternateTitles":[{"sourceType":"tmdb","movieId":179,"title":"\u5730\u6d77\u4f20\u8bf4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5139}],"secondaryYearSourceId":0,"sortTitle":"tales from earthsea","sizeOnDisk":2366510843,"status":"released","overview":"Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's \"fears\" against the very one who would help him, Ged.","inCinemas":"2006-07-29T00:00:00Z","physicalRelease":"2007-07-04T00:00:00Z","digitalRelease":"2020-02-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/179\/poster.jpg?lastWrite=637643074668518865","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/67yYwCPq7NbxSF6BIIXCMD34sY0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/179\/fanart.jpg?lastWrite=637622316975223616","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zeXaf7KiKjUozckNSD4VwPJLV3S.jpg"}],"website":"https:\/\/movies.disney.com\/tales-from-earthsea","year":2006,"hasFile":true,"youTubeTrailerId":"uvCUEWmlvD0","studio":"Studio Ghibli","path":"\/movies\/Tales from Earthsea (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Tales from Earthsea (2006)","runtime":115,"cleanTitle":"talesfromearthsea","imdbId":"tt0495596","tmdbId":37933,"titleSlug":"37933","certification":"PG-13","genres":["Animation","Fantasy","Adventure"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":954,"value":6.6},"movieFile":{"movieId":179,"relativePath":"Tales from Earthsea.2006-Bluray-1080p.mp4","path":"\/movies\/Tales from Earthsea (2006)\/Tales from Earthsea.2006-Bluray-1080p.mp4","size":2366510843,"dateAdded":"2018-10-13T12:32:59Z","sceneName":"Tales.from.Earthsea.2006.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":7.1,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:55:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":263},"id":179},{"title":"The Amazing Spider-Man 2","originalTitle":"The Amazing Spider-Man 2","alternateTitles":[{"sourceType":"tmdb","movieId":180,"title":"Spiderman 2","sourceId":102382,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":252},{"sourceType":"tmdb","movieId":180,"title":"The Amazing Spider-Man 2 - Le Destin d'un h\u00e9ros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3460},{"sourceType":"tmdb","movieId":180,"title":"El Sorprendente Hombre Ara\u00f1a 2 La Amenaza de Electro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3462},{"sourceType":"tmdb","movieId":180,"title":"The Amazing Spider-Man 2 - Le Destin d'un H\u00e9ro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3463},{"sourceType":"tmdb","movieId":180,"title":"\uc5b4\uba54\uc774\uc9d5 \uc2a4\ud30c\uc774\ub354\ub9e8 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3464},{"sourceType":"tmdb","movieId":180,"title":"\u0416\u0430\u043d\u0430 \u041e\u0440\u043c\u0435\u043a\u0448i-\u0430\u0434\u0430\u043c: \u041a\u0435\u0440\u043d\u0435\u0433\u0435\u043d \u043a\u0443\u0430\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3465},{"sourceType":"tmdb","movieId":180,"title":"Yangi O'rgimchak odam 2: Yuqori kuchlanish","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3466},{"sourceType":"tmdb","movieId":180,"title":"The Amazing Spider-Man: El Poder De Electro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4220},{"sourceType":"tmdb","movieId":180,"title":"Spiderman The amazing Spider-Man 2 El Poder De Electro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5474},{"sourceType":"tmdb","movieId":180,"title":"O Espetacular Homem-Aranha 2: A Amea\u00e7a de Electro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5970},{"sourceType":"tmdb","movieId":180,"title":"Homem-Aranha 5 - O Espetacular Homem-Aranha 2 - A Amea\u00e7a de Electro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6178}],"secondaryYearSourceId":0,"sortTitle":"amazing spider man 2","sizeOnDisk":11735489742,"status":"released","overview":"For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen\u2019s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.","inCinemas":"2014-04-16T00:00:00Z","physicalRelease":"2014-08-20T00:00:00Z","digitalRelease":"2016-11-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/180\/poster.jpg?lastWrite=637643073999091341","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c3e9e18SSlvFd1cQaGmUj5tqL5P.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/180\/fanart.jpg?lastWrite=637586854738628487","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/u7SeO6Y42P7VCTWLhpnL96cyOqd.jpg"}],"website":"http:\/\/www.theamazingspiderman.com","year":2014,"hasFile":true,"youTubeTrailerId":"DlM2CWNTQ84","studio":"Marvel Entertainment","path":"\/movies\/The Amazing Spider-Man 2 (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Amazing Spider-Man 2 (2014)","runtime":142,"cleanTitle":"theamazingspiderman2","imdbId":"tt1872181","tmdbId":102382,"titleSlug":"102382","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":9611,"value":6.4},"movieFile":{"movieId":180,"relativePath":"The Amazing Spider-Man 2.2014-Bluray-1080p.mkv","path":"\/movies\/The Amazing Spider-Man 2 (2014)\/The Amazing Spider-Man 2.2014-Bluray-1080p.mkv","size":11735489742,"dateAdded":"2018-10-14T02:30:38Z","sceneName":"The.Amazing.Spider-Man.2.2014.1080p.BluRay.x264-BLOW","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9546000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:21:34","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"BLOW","edition":"","id":290},"collection":{"name":"The Amazing Spider-Man Collection","tmdbId":125574,"images":[]},"id":180},{"title":"The Animatrix","originalTitle":"The Animatrix","alternateTitles":[{"sourceType":"tmdb","movieId":181,"title":"Animatrix","sourceId":55931,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":253},{"sourceType":"tmdb","movieId":181,"title":"The Matrix: Animatrix","sourceId":55931,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":254},{"sourceType":"tmdb","movieId":181,"title":"\u9ed1\u5ba2\u5e1d\u56fd\u52a8\u753b\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3351},{"sourceType":"tmdb","movieId":181,"title":"\u05de\u05d8\u05e8\u05d9\u05e7\u05e1: \u05d0\u05e0\u05d9\u05de\u05d8\u05e8\u05d9\u05e7\u05e1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3352}],"secondaryYearSourceId":0,"sortTitle":"animatrix","sizeOnDisk":8533093073,"status":"released","overview":"Straight from the creators of the groundbreaking Matrix trilogy, this collection of short animated films from the world's leading anime directors fuses computer graphics and Japanese anime to provide the background of the Matrix universe and the conflict between man and machines. The shorts include Final Flight of the Osiris, The Second Renaissance, Kid's Story, Program, World Record, Beyond, A Detective Story and Matriculated.","inCinemas":"2003-09-19T00:00:00Z","physicalRelease":"2003-04-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/181\/poster.jpg?lastWrite=637429611836890091","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g52SOsTvdjzY8oPIn5znLJMzLHG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/181\/fanart.jpg?lastWrite=637650859674047147","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6EnDIsjiel1qOfsIKQInwl80Zua.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/animatrix\/","year":2003,"hasFile":true,"youTubeTrailerId":"94fPVqJqBGA","studio":"Silver Pictures","path":"\/movies\/The Animatrix (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Animatrix (2003)","runtime":102,"cleanTitle":"theanimatrix","imdbId":"tt0328832","tmdbId":55931,"titleSlug":"55931","certification":"PG-13","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1094,"value":7.2},"movieFile":{"movieId":181,"relativePath":"The Animatrix.2003-Bluray-1080p.mkv","path":"\/movies\/The Animatrix (2003)\/The Animatrix.2003-Bluray-1080p.mkv","size":8533093073,"dateAdded":"2018-10-13T14:05:40Z","sceneName":"The.Animatrix.2003.1080p.BluRay.x264-HANGOVER","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10639000,"videoCodec":"x264","videoFps":23.976,"resolution":"1912x796","runTime":"1:40:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HANGOVER","edition":"","id":273},"id":181},{"title":"The Babadook","originalTitle":"The Babadook","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"babadook","sizeOnDisk":7041168044,"status":"released","overview":"A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.","inCinemas":"2014-05-22T00:00:00Z","physicalRelease":"2015-06-13T00:00:00Z","digitalRelease":"2014-11-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/182\/poster.jpg?lastWrite=637658646722554278","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lszpCmmPCKHvzn2OBx7bAgXlfhC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/182\/fanart.jpg?lastWrite=637613667370425415","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ecT6EbGfJvBYYcz6mCXEDBHHCWv.jpg"}],"website":"http:\/\/thebabadook.com\/","year":2014,"hasFile":true,"youTubeTrailerId":"EVxOrUjX-bc","studio":"Screen Australia","path":"\/movies\/The Babadook (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Babadook (2014)","runtime":94,"cleanTitle":"thebabadook","imdbId":"tt2321549","tmdbId":242224,"titleSlug":"242224","certification":"NR","genres":["Drama","Horror"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4761,"value":6.5},"movieFile":{"movieId":182,"relativePath":"The Babadook.2014-Bluray-1080p.mkv","path":"\/movies\/The Babadook (2014)\/The Babadook.2014-Bluray-1080p.mkv","size":7041168044,"dateAdded":"2018-10-13T13:25:23Z","sceneName":"The.Babadook.2014.LIMITED.1080p.BluRay.X264-AMIABLE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8937000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x800","runTime":"1:29:52","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":267},"id":182},{"title":"The Cat Returns","originalTitle":"\u732b\u306e\u6069\u8fd4\u3057","alternateTitles":[{"sourceType":"tmdb","movieId":183,"title":"O Reino dos Gatos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3475},{"sourceType":"tmdb","movieId":183,"title":"Haru en el Reino de los Gatos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3476},{"sourceType":"tmdb","movieId":183,"title":"Neko no Ongaeshi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3477},{"sourceType":"tmdb","movieId":183,"title":"El Regreso del Gato","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3478},{"sourceType":"tmdb","movieId":183,"title":"\u0412\u0456\u0434\u0434\u044f\u043a\u0430 \u043a\u043e\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3479},{"sourceType":"tmdb","movieId":183,"title":"\u041a\u0438\u0446\u0438\u043d\u0430 \u043f\u043e\u0434\u044f\u043a\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3480},{"sourceType":"tmdb","movieId":183,"title":"Das K\u00f6nigreich der Katzen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5448}],"secondaryYearSourceId":0,"sortTitle":"cat returns","sizeOnDisk":4695162755,"status":"released","overview":"Haru, a schoolgirl bored by her ordinary routine, saves the life of an unusual cat and suddenly her world is transformed beyond anything she ever imagined. The Cat King rewards her good deed with a flurry of presents, including a very shocking proposal of marriage to his son! Haru embarks on an unexpected journey to the Kingdom of Cats where her eyes are opened to a whole other world.","inCinemas":"2002-07-19T00:00:00Z","physicalRelease":"2005-03-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/183\/poster.jpg?lastWrite=637655186057999267","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/avPMO5cnaGHgLaNiAIhy33WoQLm.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/183\/fanart.jpg?lastWrite=637464206404075731","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gUpfW9oT9GQLfy9nXhYNWSs51l5.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"25aQLIj6jPM","studio":"Studio Ghibli","path":"\/movies\/The Cat Returns (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Cat Returns (2002)","runtime":75,"cleanTitle":"thecatreturns","imdbId":"tt0347618","tmdbId":15370,"titleSlug":"15370","certification":"G","genres":["Adventure","Fantasy","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1314,"value":7.2},"movieFile":{"movieId":183,"relativePath":"The Cat Returns.2002-Bluray-1080p.mkv","path":"\/movies\/The Cat Returns (2002)\/The Cat Returns.2002-Bluray-1080p.mkv","size":4695162755,"dateAdded":"2018-10-13T12:52:49Z","sceneName":"The.Cat.Returns.2002.1080p.BluRay.x264-RedBlade","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:15:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RedBlade","edition":"","id":265},"id":183},{"title":"The Da Vinci Code","originalTitle":"The Da Vinci Code","alternateTitles":[{"sourceType":"tmdb","movieId":184,"title":"Da Vinchi Shifresi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2734},{"sourceType":"tmdb","movieId":184,"title":"Da Vincijev kod","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2736},{"sourceType":"tmdb","movieId":184,"title":"Sakrileg","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6034},{"sourceType":"tmdb","movieId":184,"title":"The DaVinci Code - Sakrileg","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6035}],"secondaryYearSourceId":0,"sortTitle":"da vinci code","sizeOnDisk":14088362900,"status":"released","overview":"A murder in Paris\u2019 Louvre Museum and cryptic clues in some of Leonardo da Vinci\u2019s most famous paintings lead to the discovery of a religious mystery. For 2,000 years a secret society closely guards information that \u2014 should it come to light \u2014 could rock the very foundations of Christianity.","inCinemas":"2006-05-17T00:00:00Z","physicalRelease":"2006-05-16T00:00:00Z","digitalRelease":"2008-09-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/184\/poster.jpg?lastWrite=637615397416719072","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6jexEWBXepwB1ZLpCEllI04Agrb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/184\/fanart.jpg?lastWrite=637620586786347827","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rbeXab3IISrxL7jVPjb7jZ4TdeE.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/thedavincicode\/","year":2006,"hasFile":true,"youTubeTrailerId":"PHkW3TOl0-0","studio":"Imagine Entertainment","path":"\/movies\/The Da Vinci Code - Extended Edition (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Da Vinci Code - Extended Edition (2006)","runtime":149,"cleanTitle":"thedavincicode","imdbId":"tt0382625","tmdbId":591,"titleSlug":"591","certification":"PG-13","genres":["Thriller","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":7348,"value":6.7},"movieFile":{"movieId":184,"relativePath":"The Da Vinci Code.2006-Bluray-1080p.mkv","path":"\/movies\/The Da Vinci Code - Extended Edition (2006)\/The Da Vinci Code.2006-Bluray-1080p.mkv","size":14088362900,"dateAdded":"2018-10-14T22:13:34Z","sceneName":"The.Da.Vinci.Code.2006.Extended.Cut.1080p.BluRay.x264-CLASSiC","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10116000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:54:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"cls","edition":"Extended Cut","id":342},"collection":{"name":"The Robert Langdon Collection","tmdbId":115776,"images":[]},"id":184},{"title":"The Disappearance of Haruhi Suzumiya","originalTitle":"\u6dbc\u5bae\u30cf\u30eb\u30d2\u306e\u6d88\u5931","alternateTitles":[{"sourceType":"tmdb","movieId":185,"title":"La scomparsa di Haruhi Suzumiya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4966},{"sourceType":"tmdb","movieId":185,"title":"Suzumiya Haruhi no Shoushitsu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4967},{"sourceType":"tmdb","movieId":185,"title":"Suzumiya Haruhi no sh\u00f4shitsu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4968},{"sourceType":"tmdb","movieId":185,"title":"\uc2a4\uc988\ubbf8\uc57c \ud558\ub8e8\ud788\uc758 \uc18c\uc2e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4969},{"sourceType":"tmdb","movieId":185,"title":"O Desaparecimento de Haruhi Suzumiya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4970},{"sourceType":"tmdb","movieId":185,"title":"\u05d4\u05d4\u05d9\u05e2\u05dc\u05de\u05d5\u05ea \u05e9\u05dc \u05d4\u05d0\u05e8\u05d5\u05d4\u05d9 \u05e1\u05d5\u05d6\u05d5\u05de\u05d9\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6289},{"sourceType":"tmdb","movieId":185,"title":"\u05d4\u05d9\u05e2\u05dc\u05de\u05d5\u05ea\u05d4 \u05e9\u05dc \u05d4\u05d0\u05e8\u05d5\u05d4\u05d9 \u05e1\u05d5\u05d6\u05d5\u05de\u05d9\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6290}],"secondaryYearSourceId":0,"sortTitle":"disappearance haruhi suzumiya","sizeOnDisk":994349467,"status":"released","overview":"It is mid-december, and SOS Brigade chief Haruhi Suzumiya announces that the Brigade is going to hold a Christmas party in their clubroom, with Japanese hotpot for dinner. The brigade members Kyon, Yuki Nagato, Mikuru Asahina and Itsuki Koizumi start preparing everything for the party, such as costumes and decorations. But a couple of days later, Kyon arrives at school only to find that Haruhi is missing. Not only that, but Mikuru claims she has never known Kyon before, Koizumi is also missing, and Yuki has become the sole member of the literature club. The SOS Brigade seems to have never existed, nor has Haruhi Suzumiya. No one in the school has ever heard about her\u2026 except for Kyon.","inCinemas":"2010-02-05T00:00:00Z","digitalRelease":"2011-11-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/185\/poster.jpg?lastWrite=637572153048455667","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iWu5Gq49UTOltiAhP0oJfPnZQuQ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/185\/fanart.jpg?lastWrite=637656051522216770","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AhHQFrbtA6AkWjefpIKMOd7Dzpe.jpg"}],"website":"http:\/\/haruhi.tv\/fanclub\/syoshitsu.html","year":2010,"hasFile":true,"youTubeTrailerId":"rcUiS0dpTkg","studio":"Animation DO","path":"\/movies\/The Disappearance of Haruhi Suzumiya (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Disappearance of Haruhi Suzumiya (2010)","runtime":162,"cleanTitle":"thedisappearanceharuhisuzumiya","imdbId":"tt1572781","tmdbId":36865,"titleSlug":"36865","genres":["Comedy","Science Fiction","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":143,"value":7.8},"movieFile":{"movieId":185,"relativePath":"The Disappearance of Haruhi Suzumiya.2010-HDTV-1080p.mkv","path":"\/movies\/The Disappearance of Haruhi Suzumiya (2010)\/The Disappearance of Haruhi Suzumiya.2010-HDTV-1080p.mkv","size":994349467,"dateAdded":"2018-10-11T15:11:28Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":0,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":0,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x1080","runTime":"2:41:47","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":175},"id":185},{"title":"The Girl Who Leapt Through Time","originalTitle":"\u6642\u3092\u304b\u3051\u308b\u5c11\u5973","alternateTitles":[{"sourceType":"tmdb","movieId":186,"title":"A Garota que Conquistou o Tempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2121},{"sourceType":"tmdb","movieId":186,"title":"\u7a7f\u8d8a\u65f6\u7a7a\u7684\u5c11\u5973","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2122},{"sourceType":"tmdb","movieId":186,"title":"\u8df3\u8dc3\u5427\uff01\u65f6\u7a7a\u5c11\u5973","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2123},{"sourceType":"tmdb","movieId":186,"title":"Das M\u00e4dchen, das durch die Zeit sprang","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2124},{"sourceType":"tmdb","movieId":186,"title":"La chica que saltaba a trav\u00e9s del tiempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2125},{"sourceType":"tmdb","movieId":186,"title":"La Travers\u00e9e du temps","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2126},{"sourceType":"tmdb","movieId":186,"title":"La fille qui multiplie les temps","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2127},{"sourceType":"tmdb","movieId":186,"title":"La fille qui se joue du temps","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2128},{"sourceType":"tmdb","movieId":186,"title":"Toki o Kakeru Shoujo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2129},{"sourceType":"tmdb","movieId":186,"title":"Toki o kakeru sh\u00f4jo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2130},{"sourceType":"tmdb","movieId":186,"title":"Toki wo Kakeru Shoujo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2131},{"sourceType":"tmdb","movieId":186,"title":"\uc2dc\uac04\uc744 \ub2ec\ub9ac\ub294 \uc18c\ub140","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2132},{"sourceType":"tmdb","movieId":186,"title":"La Chica que Salto a Trav\u00e9s del Tiempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2133},{"sourceType":"tmdb","movieId":186,"title":"O dziewczynie skacz\u0105cej przez czas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2134},{"sourceType":"tmdb","movieId":186,"title":"\u0414\u0435\u0432\u043e\u0447\u043a\u0430, \u043f\u043e\u043a\u043e\u0440\u0438\u0432\u0448\u0430\u044f \u0432\u0440\u0435\u043c\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2135},{"sourceType":"tmdb","movieId":186,"title":"\u7a7f\u8d8a\u6642\u7a7a\u7684\u5c11\u5973","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2136}],"secondaryYearSourceId":0,"sortTitle":"girl who leapt through time","sizeOnDisk":3559426775,"status":"released","overview":"When 17-year-old Makoto Konno gains the ability to, quite literally, \"leap\" backwards through time, she immediately sets about improving her grades and preventing personal mishaps. However, she soon realises that changing the past isn't as simple as it seems, and eventually, will have to rely on her new powers to shape the future of herself and her friends.","inCinemas":"2006-07-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/186\/poster.jpg?lastWrite=637414912267778248","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fS41b13LZEtL9VYUlMobXZqvk41.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/186\/fanart.jpg?lastWrite=637624911147646399","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dWo0QUa5tC6GGVNJmdIyLX4xDjQ.jpg"}],"website":"","year":2006,"hasFile":true,"youTubeTrailerId":"0M-aGZF-TGA","studio":"Madhouse","path":"\/movies\/The Girl Who Leapt Through Time (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Girl Who Leapt Through Time (2006)","runtime":98,"cleanTitle":"thegirlwholeaptthroughtime","imdbId":"tt0808506","tmdbId":14069,"titleSlug":"14069","genres":["Fantasy","Animation","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1464,"value":7.8},"movieFile":{"movieId":186,"relativePath":"The Girl Who Leapt Through Time.2006-Bluray-1080p.mkv","path":"\/movies\/The Girl Who Leapt Through Time (2006)\/The Girl Who Leapt Through Time.2006-Bluray-1080p.mkv","size":3559426775,"dateAdded":"2019-12-04T03:43:15Z","sceneName":"The Girl Who Leapt Through Time (2006) [1080p x265 HEVC 10bit BluRay Dual Audio AAC 5.1] [Prof]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":1337421,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2317636,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:39:00","scanType":"","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":638},"id":186},{"title":"The Hitchhiker's Guide to the Galaxy","originalTitle":"The Hitchhiker's Guide to the Galaxy","alternateTitles":[{"sourceType":"tmdb","movieId":187,"title":"Gu\u00eda del viajero intergal\u00e1ctico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2777},{"sourceType":"tmdb","movieId":187,"title":"O Mochileiro das Gal\u00e1xias","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2778},{"sourceType":"tmdb","movieId":187,"title":"P\u00f6idlak\u00fc\u00fcdi reisijuht galaktikas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2779},{"sourceType":"tmdb","movieId":187,"title":"H2G2, le guide du voyageur galactique","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2780},{"sourceType":"tmdb","movieId":187,"title":"Vodi\u010d kroz galaksiju za autostopere","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2781},{"sourceType":"tmdb","movieId":187,"title":"Guida galattica per autostoppisti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2782},{"sourceType":"tmdb","movieId":187,"title":"La Guia del Viajero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2783},{"sourceType":"tmdb","movieId":187,"title":"Haikerens guide til galaksen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2784},{"sourceType":"tmdb","movieId":187,"title":"\u00c0 Boleia Pela Gal\u00e1xia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2785},{"sourceType":"tmdb","movieId":187,"title":"Stoparski vodnik po Galaksiji","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2786}],"secondaryYearSourceId":0,"sortTitle":"hitchhiker s guide to galaxy","sizeOnDisk":16883184502,"status":"released","overview":"Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of \"The Hitchhiker's Guide to the Galaxy.\"","inCinemas":"2005-04-28T00:00:00Z","physicalRelease":"2005-11-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/187\/poster.jpg?lastWrite=637624911173245983","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tcrkbs4ezEklmvt39b01881P6CN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/187\/fanart.jpg?lastWrite=637584259812443617","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6v0eBOFKEo7jIBOIh6cV9yah5D6.jpg"}],"website":"","year":2005,"hasFile":true,"youTubeTrailerId":"MbGNcoB2Y4I","studio":"Spyglass Entertainment","path":"\/movies\/The Hitchhiker's Guide to the Galaxy (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Hitchhiker's Guide to the Galaxy (2005)","runtime":109,"cleanTitle":"thehitchhikersguidetogalaxy","imdbId":"tt0371724","tmdbId":7453,"titleSlug":"7453","certification":"PG","genres":["Adventure","Comedy","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3038,"value":6.7},"movieFile":{"movieId":187,"relativePath":"The Hitchhiker's Guide to the Galaxy.2005-Bluray-1080p.mkv","path":"\/movies\/The Hitchhiker's Guide to the Galaxy (2005)\/The Hitchhiker's Guide to the Galaxy.2005-Bluray-1080p.mkv","size":16883184502,"dateAdded":"2018-10-14T20:41:09Z","sceneName":"The.Hitchhikers.Guide.to.the.Galaxy.2005.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":18800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:48:46","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":333},"id":187},{"title":"The Hunger Games: Catching Fire","originalTitle":"The Hunger Games: Catching Fire","alternateTitles":[{"sourceType":"tmdb","movieId":188,"title":"The Hunger Games 2","sourceId":101299,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":256},{"sourceType":"tmdb","movieId":188,"title":"Catching Fire","sourceId":101299,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":257},{"sourceType":"tmdb","movieId":188,"title":"The Hunger Games II","sourceId":101299,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":258},{"sourceType":"tmdb","movieId":188,"title":"Hry o \u017eivot 2: Vra\u017eedn\u00e1 pomsta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3381},{"sourceType":"tmdb","movieId":188,"title":"N\u00e4lk\u00e4peli 2: Vihan Liekit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":3382},{"sourceType":"tmdb","movieId":188,"title":"\ud5dd\uac70 \uac8c\uc784 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3383},{"sourceType":"tmdb","movieId":188,"title":"\ud5dd\uac70 \uac8c\uc7842-\ucea3\uce6d \ud30c\uc774\uc5b4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3384},{"sourceType":"tmdb","movieId":188,"title":"Golodnie Igry I Vspuhnet Plamya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3385},{"sourceType":"tmdb","movieId":188,"title":"Die Tribute von Panem 2 - Catching Fire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4842},{"sourceType":"tmdb","movieId":188,"title":"The Hunger Games 2 - Catching Fire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5552}],"secondaryYearSourceId":0,"sortTitle":"hunger games catching fire","sizeOnDisk":11527333898,"status":"released","overview":"Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a \"Victor's Tour\" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.","inCinemas":"2013-11-15T00:00:00Z","physicalRelease":"2014-03-12T00:00:00Z","digitalRelease":"2014-03-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/188\/poster.jpg?lastWrite=637653455929643754","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/j1e7dLMLrJ5CxAW588m55WFQ1PK.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/188\/fanart.jpg?lastWrite=637417506369378083","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/omoWcwdARBsGHdMdHUk0AQhS2Lp.jpg"}],"website":"http:\/\/www.thehungergames.movie\/","year":2013,"hasFile":true,"youTubeTrailerId":"zoKj7TdJk98","studio":"Lionsgate","path":"\/movies\/The Hunger Games - Catching Fire - IMAX (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Hunger Games - Catching Fire - IMAX (2013)","runtime":146,"cleanTitle":"thehungergamescatchingfire","imdbId":"tt1951264","tmdbId":101299,"titleSlug":"101299","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":14166,"value":7.4},"movieFile":{"movieId":188,"relativePath":"The Hunger Games Catching Fire.2013-Bluray-1080p.mkv","path":"\/movies\/The Hunger Games - Catching Fire - IMAX (2013)\/The Hunger Games Catching Fire.2013-Bluray-1080p.mkv","size":11527333898,"dateAdded":"2018-10-16T00:32:31Z","sceneName":"The.Hunger.Games.Catching.Fire.2013.IMAX.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8791544,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:26:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"IMAX","id":368},"collection":{"name":"The Hunger Games Collection","tmdbId":131635,"images":[]},"id":188},{"title":"The Hunger Games: Mockingjay - Part 1","originalTitle":"The Hunger Games: Mockingjay - Part 1","alternateTitles":[{"sourceType":"tmdb","movieId":189,"title":"The Hunger Games 3 Mockingjay Part 1","sourceId":131631,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":259},{"sourceType":"tmdb","movieId":189,"title":"The Hunger Games: Mockinjay - Part 1","sourceId":131631,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":260},{"sourceType":"tmdb","movieId":189,"title":"Los Juegos del Hambre 3 - Sinsajo Parte 1","sourceId":131631,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":483},{"sourceType":"tmdb","movieId":189,"title":"Jogos Vorazes 2 - A Esperan\u00e7a - Parte 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1530},{"sourceType":"tmdb","movieId":189,"title":"Hry o \u017eivot: S\u00edla vzdoru - 1. \u010d\u00e1st","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1532},{"sourceType":"tmdb","movieId":189,"title":"Hunger Games 3 Mockingjay 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1533},{"sourceType":"tmdb","movieId":189,"title":"Los Juegos del Hambre: Sinsajo Parte 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1534},{"sourceType":"tmdb","movieId":189,"title":"N\u00e4lk\u00e4peli 3: Matkijan\u00e4rhi - Osa 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1535},{"sourceType":"tmdb","movieId":189,"title":"Hunger Games 3 La r\u00e9volte Partie 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1536},{"sourceType":"tmdb","movieId":189,"title":"\ud5dd\uac70\uac8c\uc7843-\ubaa8\ud0b9\uc81c\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1538},{"sourceType":"tmdb","movieId":189,"title":"\ud5dd\uac70\uac8c\uc784: \ubaa8\ud0b9\uc81c\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1539},{"sourceType":"tmdb","movieId":189,"title":"Bado \u017eaidyn\u0117s Strazdas giesmininkas 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1540},{"sourceType":"tmdb","movieId":189,"title":"\u98e2\u9913\u904a\u6232\uff1a\u81ea\u7531\u5e7b\u5922I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1541},{"sourceType":"tmdb","movieId":189,"title":"A\u00e7l\u0131k Oyunlar\u0131: Alayc\u0131 Ku\u015f - B\u00f6l\u00fcm 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3387},{"sourceType":"tmdb","movieId":189,"title":"Die Tribute von Panem 3 - Mockingjay Teil 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4843},{"sourceType":"tmdb","movieId":189,"title":"Hunger Games 3, The - Mockingjay - Part 1 (2014)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5919}],"secondaryYearSourceId":0,"sortTitle":"hunger games mockingjay part 1","sizeOnDisk":22204309673,"status":"released","overview":"Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.","inCinemas":"2014-11-19T00:00:00Z","physicalRelease":"2015-03-19T00:00:00Z","digitalRelease":"2015-03-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/189\/poster.jpg?lastWrite=637653455953923371","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4FAA18ZIja70d1Tu5hr5cj2q1sB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/189\/fanart.jpg?lastWrite=637656916576916497","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tFlSDoWQsAZ2qjICKzfP5Yw6zM5.jpg"}],"website":"http:\/\/www.thehungergames.movie\/","year":2014,"hasFile":true,"youTubeTrailerId":"IXshQ5mv1K8","studio":"Lionsgate","path":"\/movies\/The Hunger Games - Mockingjay - Part 1 (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Hunger Games - Mockingjay - Part 1 (2014)","runtime":123,"cleanTitle":"thehungergamesmockingjaypart1","imdbId":"tt1951265","tmdbId":131631,"titleSlug":"131631","certification":"PG-13","genres":["Science Fiction","Adventure","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":12846,"value":6.8},"movieFile":{"movieId":189,"relativePath":"The Hunger Games Mockingjay - Part 1.2014-Remux-1080p.mkv","path":"\/movies\/The Hunger Games - Mockingjay - Part 1 (2014)\/The Hunger Games Mockingjay - Part 1.2014-Remux-1080p.mkv","size":22204309673,"dateAdded":"2018-10-14T14:05:02Z","sceneName":"The.Hunger.Games.Mockingjay.Part.1.2014.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":0,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ Spanish","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:02:50","scanType":"Progressive","subtitles":"English \/ English \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":324},"collection":{"name":"The Hunger Games Collection","tmdbId":131635,"images":[]},"id":189},{"title":"The Hunger Games: Mockingjay - Part 2","originalTitle":"The Hunger Games: Mockingjay - Part 2","alternateTitles":[{"sourceType":"tmdb","movieId":190,"title":"The Hunger Games 4 Mockingjay Part 2","sourceId":131634,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":261},{"sourceType":"tmdb","movieId":190,"title":"The Hunger Games Final Part","sourceId":131634,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":263},{"sourceType":"tmdb","movieId":190,"title":"The Hunger Games Mockingjay Pt2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3257},{"sourceType":"tmdb","movieId":190,"title":"Jogos Vorazes 3 - A Esperan\u00e7a - O Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3258},{"sourceType":"tmdb","movieId":190,"title":"Hry o \u017eivot: S\u00edla vzdoru - 2. \u010d\u00e1st","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3261},{"sourceType":"tmdb","movieId":190,"title":"Hunger Games 3 Mockingjay 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3262},{"sourceType":"tmdb","movieId":190,"title":"Los Juegos del Hambre: Sinsajo Parte 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3263},{"sourceType":"tmdb","movieId":190,"title":"N\u00e4lk\u00e4peli 3: Matkijan\u00e4rhi - Osa 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":3264},{"sourceType":"tmdb","movieId":190,"title":"Hunger Games La r\u00e9volte Partie 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3265},{"sourceType":"tmdb","movieId":190,"title":"The Hunger Games: Mockingjay Part ll","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3266},{"sourceType":"tmdb","movieId":190,"title":"\ud5dd\uac70\uac8c\uc784: \ub354 \ud30c\uc774\ub110","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3270},{"sourceType":"tmdb","movieId":190,"title":"Bado \u017eaidyn\u0117s Strazdas giesmininkas 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3271},{"sourceType":"tmdb","movieId":190,"title":"De Hongerspelen: Spotgaai - deel 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3272},{"sourceType":"tmdb","movieId":190,"title":"Os Jogos da Fome: A Revolta - Parte 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3273},{"sourceType":"tmdb","movieId":190,"title":"he Hunger Games: A Revolta - Parte 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3274},{"sourceType":"tmdb","movieId":190,"title":"\u0413\u043e\u043b\u043e\u0434\u043d\u044b\u0435 \u0438\u0433\u0440\u044b \u0421\u043e\u0439\u043a\u0430-\u043f\u0435\u0440\u0435\u0441\u043c\u0435\u0448\u043d\u0438\u0446\u0430 \u0427\u0430\u0441\u0442\u044c 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3275},{"sourceType":"tmdb","movieId":190,"title":"\u98e2\u9913\u904a\u6232\uff1a\u81ea\u7531\u5e7b\u5922\u7d42\u7d50\u6230","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3276},{"sourceType":"tmdb","movieId":190,"title":"A\u00e7l\u0131k Oyunlar\u0131: Alayc\u0131 Ku\u015f - B\u00f6l\u00fcm 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3388},{"sourceType":"tmdb","movieId":190,"title":"Die Tribute von Panem 4 - Mockingjay Teil 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4844}],"secondaryYearSourceId":0,"sortTitle":"hunger games mockingjay part 2","sizeOnDisk":31812174782,"status":"released","overview":"With the nation of Panem in a full scale war, Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends \u2013 including Gale, Finnick, and Peeta \u2013 Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps, enemies, and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.","inCinemas":"2015-11-18T00:00:00Z","physicalRelease":"2016-03-18T00:00:00Z","digitalRelease":"2017-11-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/190\/poster.jpg?lastWrite=637636154958488244","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lImKHDfExAulp16grYm8zD5eONE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/190\/fanart.jpg?lastWrite=637656916594596317","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mwHnJBehQaMnH2XjEeitBfoGB0L.jpg"}],"website":"http:\/\/www.thehungergames.movie\/","year":2015,"hasFile":true,"youTubeTrailerId":"SoKIqLEGhI0","studio":"Lionsgate","path":"\/movies\/The Hunger Games - Mockingjay - Part 2 (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Hunger Games - Mockingjay - Part 2 (2015)","runtime":137,"cleanTitle":"thehungergamesmockingjaypart2","imdbId":"tt1951266","tmdbId":131634,"titleSlug":"131634","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":9950,"value":6.9},"movieFile":{"movieId":190,"relativePath":"The Hunger Games Mockingjay - Part 2.2015-Remux-1080p.mkv","path":"\/movies\/The Hunger Games - Mockingjay - Part 2 (2015)\/The Hunger Games Mockingjay - Part 2.2015-Remux-1080p.mkv","size":31812174782,"dateAdded":"2018-10-14T22:20:05Z","sceneName":"The.Hunger.Games.Mockingjay.Part.2.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English \/ English \/ Spanish \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:16:57","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":344},"collection":{"name":"The Hunger Games Collection","tmdbId":131635,"images":[]},"id":190},{"title":"The Hunger Games","originalTitle":"The Hunger Games","alternateTitles":[{"sourceType":"tmdb","movieId":191,"title":"Jogos Vorazes 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3250},{"sourceType":"tmdb","movieId":191,"title":"Jogos Vorazes 1 - Em Chamas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3251},{"sourceType":"tmdb","movieId":191,"title":"The Hunger Games 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3252},{"sourceType":"tmdb","movieId":191,"title":"Hry o \u017eivot 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3253},{"sourceType":"tmdb","movieId":191,"title":"Hunger Games 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3254},{"sourceType":"tmdb","movieId":191,"title":"\ud5dd\uac70\uac8c\uc7841-\ud310\uc5e0\uc758 \ubd88\uaf43","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3255},{"sourceType":"tmdb","movieId":191,"title":"Hungerspelen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3256},{"sourceType":"tmdb","movieId":191,"title":"Die Tribute von Panem 1 - The Hunger Games","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4841}],"secondaryYearSourceId":0,"sortTitle":"hunger games","sizeOnDisk":12835077548,"status":"released","overview":"Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which \u201cTributes\u201d must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she\u2019s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.","inCinemas":"2012-03-12T00:00:00Z","physicalRelease":"2012-08-18T00:00:00Z","digitalRelease":"2012-08-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/191\/poster.jpg?lastWrite=637653455915363979","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iQK0pkTQC60XR3Zlu2pp8kujoqW.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/191\/fanart.jpg?lastWrite=637656916553676733","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aIH9Cf1p0BCMAH7ijYWLvWCmVEr.jpg"}],"website":"http:\/\/www.thehungergames.movie\/","year":2012,"hasFile":true,"youTubeTrailerId":"cC6rtOXgn8M","studio":"Lionsgate","path":"\/movies\/The Hunger Games (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Hunger Games (2012)","runtime":142,"cleanTitle":"thehungergames","imdbId":"tt1392170","tmdbId":70160,"titleSlug":"70160","certification":"PG-13","genres":["Science Fiction","Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":18206,"value":7.2},"movieFile":{"movieId":191,"relativePath":"The Hunger Games.2012-Bluray-1080p.mkv","path":"\/movies\/The Hunger Games (2012)\/The Hunger Games.2012-Bluray-1080p.mkv","size":12835077548,"dateAdded":"2018-10-16T00:13:41Z","sceneName":"The.Hunger.Games.2012.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10486000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:22:33","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":365},"collection":{"name":"The Hunger Games Collection","tmdbId":131635,"images":[]},"id":191},{"title":"The Imaginarium of Doctor Parnassus","originalTitle":"The Imaginarium of Doctor Parnassus","alternateTitles":[{"sourceType":"tmdb","movieId":192,"title":"Doctor Parnassus","sourceId":8054,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":485},{"sourceType":"tmdb","movieId":192,"title":"O Mundo Imagin\u00e1rio do Doutor Parnassus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3277},{"sourceType":"tmdb","movieId":192,"title":"L'Imaginarium du docteur Parnassus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3278},{"sourceType":"tmdb","movieId":192,"title":"Doctor Parnassus \u00e9s a k\u00e9pzelet birodalma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3279},{"sourceType":"tmdb","movieId":192,"title":"\ud30c\ub974\ub098\uc11c\uc2a4 \ubc15\uc0ac\uc758 \uc0c1\uc0c1\uadf9\uc7a5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3280},{"sourceType":"tmdb","movieId":192,"title":"O Mundo Imagin\u00e1rio do Dr. Parnassus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3281}],"secondaryYearSourceId":0,"sortTitle":"imaginarium doctor parnassus","sizeOnDisk":2509423039,"status":"released","overview":"A traveling theater company gives its audience much more than they were expecting.","inCinemas":"2009-10-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/192\/poster.jpg?lastWrite=637475452797007691","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ffmoKFV1paKDft2fqVANZamnP5j.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/192\/fanart.jpg?lastWrite=637650860002842542","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bGbTIyV3XqzR11S4ocjj1HTrvSP.jpg"}],"website":"http:\/\/doctorparnassus.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"eOL-wZSCn_g","studio":"T\u00e9l\u00e9film Canada","path":"\/movies\/The Imaginarium of Doctor Parnassus (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Imaginarium of Doctor Parnassus (2009)","runtime":123,"cleanTitle":"theimaginariumdoctorparnassus","imdbId":"tt1054606","tmdbId":8054,"titleSlug":"8054","certification":"PG-13","genres":["Adventure","Fantasy","Mystery"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2182,"value":6.4},"movieFile":{"movieId":192,"relativePath":"The Imaginarium of Doctor Parnassus.2009-Bluray-1080p.mp4","path":"\/movies\/The Imaginarium of Doctor Parnassus (2009)\/The Imaginarium of Doctor Parnassus.2009-Bluray-1080p.mp4","size":2509423039,"dateAdded":"2018-10-14T13:57:57Z","sceneName":"The.Imaginarium.Of.Doctor.Parnassus.2009.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:02:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":323},"id":192},{"title":"The Imitation Game","originalTitle":"The Imitation Game","alternateTitles":[{"sourceType":"tmdb","movieId":193,"title":"El c\u00f3digo Enigma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4333},{"sourceType":"tmdb","movieId":193,"title":"\u6a21\u62df\u6e38\u620f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4334},{"sourceType":"tmdb","movieId":193,"title":"C\u00f3digo Enigma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4335},{"sourceType":"tmdb","movieId":193,"title":"Descifrando Enigma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4336},{"sourceType":"tmdb","movieId":193,"title":"\uc774\ubbf8\ud14c\uc774\uc158 \uac8c\uc784","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4337},{"sourceType":"tmdb","movieId":193,"title":"\u0406\u043c\u0456\u0442\u0430\u0446\u0456\u0439\u043d\u0430 \u0433\u0440\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4338}],"secondaryYearSourceId":0,"sortTitle":"imitation game","sizeOnDisk":32621297951,"status":"released","overview":"Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.","inCinemas":"2014-11-14T00:00:00Z","physicalRelease":"2015-05-12T00:00:00Z","digitalRelease":"2017-12-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/193\/poster.jpg?lastWrite=637298191628154999","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zSqJ1qFq8NXFfi7JeIYMlzyR0dx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/193\/fanart.jpg?lastWrite=637647399741477127","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sixfWYfNegaGGHKdXrNNUHaMiAC.jpg"}],"website":"","year":2014,"hasFile":true,"youTubeTrailerId":"j2jRs4EAvWM","studio":"Bristol Automotive","path":"\/movies\/The Imitation Game (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Imitation Game (2014)","runtime":113,"cleanTitle":"theimitationgame","imdbId":"tt2084970","tmdbId":205596,"titleSlug":"205596","certification":"PG-13","genres":["History","Drama","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":13723,"value":8},"movieFile":{"movieId":193,"relativePath":"The Imitation Game.2014-Remux-1080p.mkv","path":"\/movies\/The Imitation Game (2014)\/The Imitation Game.2014-Remux-1080p.mkv","size":32621297951,"dateAdded":"2018-10-15T23:33:13Z","sceneName":"The.Imitation.Game.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English","audioStreamCount":4,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:54:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":363},"id":193},{"title":"The Lego Batman Movie","originalTitle":"The Lego Batman Movie","alternateTitles":[{"sourceType":"tmdb","movieId":194,"title":"Lego Batman - Le Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3389},{"sourceType":"tmdb","movieId":194,"title":"\u0397 \u03a4\u0391\u0399\u039d\u0399\u0391 LEGO BATMAN","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3390},{"sourceType":"tmdb","movieId":194,"title":"\u05dc\u05d2\u05d5 \u05d1\u05d0\u05d8\u05de\u05df: \u05d4\u05e1\u05e8\u05d8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3391},{"sourceType":"tmdb","movieId":194,"title":"Lego Batman: La Pel\u00edcula","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4212},{"sourceType":"tmdb","movieId":194,"title":"La Lego Pelicula Batman","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5509}],"secondaryYearSourceId":0,"sortTitle":"lego batman movie","sizeOnDisk":29483205397,"status":"released","overview":"A cooler-than-ever Bruce Wayne must deal with the usual suspects as they plan to rule Gotham City, while discovering that he has accidentally adopted a teenage orphan who wishes to become his sidekick.","inCinemas":"2017-02-08T00:00:00Z","physicalRelease":"2017-06-13T00:00:00Z","digitalRelease":"2017-05-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/194\/poster.jpg?lastWrite=637241983861166218","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/snGwr2gag4Fcgx2OGmH9otl6ofW.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/194\/fanart.jpg?lastWrite=637662971464506596","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jqnbac3oind5VOcAN0mTXyapOGh.jpg"}],"website":"http:\/\/www.legobatman.com","year":2017,"hasFile":true,"youTubeTrailerId":"rGQUKzSDhrg","studio":"Lin Pictures","path":"\/movies\/The Lego Batman Movie (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Lego Batman Movie (2017)","runtime":104,"cleanTitle":"thelegobatmanmovie","imdbId":"tt4116284","tmdbId":324849,"titleSlug":"324849","certification":"PG","genres":["Family","Action","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":3820,"value":7.2},"movieFile":{"movieId":194,"relativePath":"The Lego Batman Movie.2017-Remux-1080p.mkv","path":"\/movies\/The Lego Batman Movie (2017)\/The Lego Batman Movie.2017-Remux-1080p.mkv","size":29483205397,"dateAdded":"2018-10-14T21:50:09Z","sceneName":"The.LEGO.Batman.Movie.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":8,"audioCodec":"DTS","audioLanguages":"English \/ English \/ English \/ English \/ English \/ English \/ French \/ Italian \/ Spanish \/ Dutch \/ Catalan \/ Spanish \/ Dutch","audioStreamCount":13,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:44:30","scanType":"Progressive","subtitles":"English \/ French \/ Italian \/ Spanish \/ Dutch \/ French \/ Italian \/ Spanish \/ Dutch"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":340},"collection":{"name":"The Lego Batman Movie Collection","tmdbId":696630,"images":[]},"id":194},{"title":"The Martian","originalTitle":"The Martian","alternateTitles":[{"sourceType":"tmdb","movieId":195,"title":"The Martian 3D","sourceId":286217,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":264},{"sourceType":"tmdb","movieId":195,"title":"Misi\u00f3n Rescate","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2812},{"sourceType":"tmdb","movieId":195,"title":"Perdido em Marte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2813},{"sourceType":"tmdb","movieId":195,"title":"\u706b\u661f\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2814},{"sourceType":"tmdb","movieId":195,"title":"Seul sur Mars","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2815},{"sourceType":"tmdb","movieId":195,"title":"A marsi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2816},{"sourceType":"tmdb","movieId":195,"title":"\ub9c8\uc158","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2817},{"sourceType":"tmdb","movieId":195,"title":"Marsovac: Spasila\u010dka misija","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2818},{"sourceType":"tmdb","movieId":195,"title":"\u039f \u0391\u03c1\u03b5\u03b9\u03b1\u03bd\u03cc\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5159},{"sourceType":"tmdb","movieId":195,"title":"Marsjanin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5266},{"sourceType":"tmdb","movieId":195,"title":"\u706b\u661f\u4efb\u52d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5791}],"secondaryYearSourceId":0,"sortTitle":"martian","sizeOnDisk":37351222990,"status":"released","overview":"During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.","inCinemas":"2015-09-30T00:00:00Z","physicalRelease":"2016-01-12T00:00:00Z","digitalRelease":"2015-12-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/195\/poster.jpg?lastWrite=637653456174959884","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5BHuvQ6p9kfc091Z8RiFNhCwL4b.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/195\/fanart.jpg?lastWrite=637653456176999852","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oiaAHnlJjdkO4shP0UGNNTjEaIM.jpg"}],"website":"http:\/\/www.foxmovies.com\/movies\/the-martian","year":2015,"hasFile":true,"youTubeTrailerId":"ej3ioOneTy8","studio":"Scott Free Productions","path":"\/movies\/The Martian (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Martian (2015)","runtime":144,"cleanTitle":"themartian","imdbId":"tt3659388","tmdbId":286217,"titleSlug":"286217","certification":"PG-13","genres":["Drama","Adventure","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":16031,"value":7.7},"movieFile":{"movieId":195,"relativePath":"The Martian.2015-Remux-1080p.mkv","path":"\/movies\/The Martian (2015)\/The Martian.2015-Remux-1080p.mkv","size":37351222990,"dateAdded":"2018-10-15T08:24:26Z","sceneName":"The.Martian.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Spanish \/ French \/ Portuguese","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:21:37","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ French \/ Portuguese \/ Portuguese \/ Chinese \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":350},"id":195},{"title":"The Matrix","originalTitle":"The Matrix","alternateTitles":[{"sourceType":"tmdb","movieId":196,"title":"The Matrix 1","sourceId":603,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":265},{"sourceType":"tmdb","movieId":196,"title":"\u9ed1\u5ba2\u5e1d\u56fd1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2189},{"sourceType":"tmdb","movieId":196,"title":"\u0627\u0644\u0645\u062a\u0645\u0631\u062f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2190},{"sourceType":"tmdb","movieId":196,"title":"MATRIX 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2191},{"sourceType":"tmdb","movieId":196,"title":"\u039c\u03ac\u03c4\u03c1\u03b9\u03be","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2193},{"sourceType":"tmdb","movieId":196,"title":"Matrix I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2194},{"sourceType":"tmdb","movieId":196,"title":"\u0e40\u0e1e\u0e32\u0e30\u0e1e\u0e31\u0e19\u0e18\u0e38\u0e4c\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e42\u0e25\u0e01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2197},{"sourceType":"tmdb","movieId":196,"title":"Matrix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5175},{"sourceType":"tmdb","movieId":196,"title":"The Matrix 1 - Matrix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6092}],"secondaryYearSourceId":0,"sortTitle":"matrix","sizeOnDisk":36692225172,"status":"released","overview":"Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.","inCinemas":"1999-03-30T00:00:00Z","physicalRelease":"1999-09-21T00:00:00Z","digitalRelease":"2002-09-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/196\/poster.jpg?lastWrite=637610205481644754","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f89U3ADr1oiB1s9GkdPOEpXUk5H.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/196\/fanart.jpg?lastWrite=637623181632048855","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fNG7i7RqMErkcqhohV2a6cV1Ehy.jpg"}],"website":"http:\/\/www.warnerbros.com\/matrix","year":1999,"hasFile":true,"youTubeTrailerId":"L0fw0WzFaBM","studio":"Village Roadshow Pictures","path":"\/movies\/The Matrix (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Matrix (1999)","runtime":136,"cleanTitle":"thematrix","imdbId":"tt0133093","tmdbId":603,"titleSlug":"603","certification":"R","genres":["Action","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":19721,"value":8.2},"movieFile":{"movieId":196,"relativePath":"The Matrix.1999-Remux-1080p.mkv","path":"\/movies\/The Matrix (1999)\/The Matrix.1999-Remux-1080p.mkv","size":36692225172,"dateAdded":"2018-10-15T20:39:05Z","sceneName":"The.Matrix.1999.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4418939,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese \/ Japanese \/ Japanese \/ English \/ English \/ English \/ English","audioStreamCount":16,"videoBitDepth":8,"videoBitrate":21869404,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:16:20","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Japanese \/ Japanese \/ Japanese \/ Japanese \/ Japanese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"REMASTERED","id":360},"collection":{"name":"The Matrix Collection","tmdbId":2344,"images":[]},"id":196},{"title":"The Matrix Reloaded","originalTitle":"The Matrix Reloaded","alternateTitles":[{"sourceType":"tmdb","movieId":197,"title":"The Matrix 2","sourceId":604,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":266},{"sourceType":"tmdb","movieId":197,"title":"The Matrix 2: Reloaded","sourceId":604,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":267},{"sourceType":"tmdb","movieId":197,"title":"The Matrix Reloaded: The IMAX Experience","sourceId":604,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":268},{"sourceType":"tmdb","movieId":197,"title":"Matrix 2","sourceId":604,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":487},{"sourceType":"tmdb","movieId":197,"title":"\u9ed1\u5ba2\u5e1d\u56fd2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3639},{"sourceType":"tmdb","movieId":197,"title":"Matrix II Reloaded","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3640},{"sourceType":"tmdb","movieId":197,"title":"Matrix 2 - Reloaded","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3641},{"sourceType":"tmdb","movieId":197,"title":"\u039c\u03ac\u03c4\u03c1\u03b9\u03be 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3642},{"sourceType":"tmdb","movieId":197,"title":"\ub9e4\ud2b8\ub9ad\uc2a4 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3643},{"sourceType":"tmdb","movieId":197,"title":"\ub9e4\ud2b8\ub9ad\uc2a4 \ub9ac\ub85c\ub514\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3644},{"sourceType":"tmdb","movieId":197,"title":"Matrix Recargado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3645},{"sourceType":"tmdb","movieId":197,"title":"\u041c\u0430\u0442\u0440\u0438\u0446\u0430: \u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3646},{"sourceType":"tmdb","movieId":197,"title":"The Matrix 2 - Matrix Reloaded","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5261}],"secondaryYearSourceId":0,"sortTitle":"matrix reloaded","sizeOnDisk":34617767571,"status":"released","overview":"Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.","inCinemas":"2003-05-15T00:00:00Z","physicalRelease":"2003-10-10T00:00:00Z","digitalRelease":"2006-05-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/197\/poster.jpg?lastWrite=637663836976911106","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aA5qHS0FbSXO8PxcxUIHbDrJyuh.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/197\/fanart.jpg?lastWrite=637652590622574445","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sDxCd4nt3eR4qOCW1GoD0RabQtq.jpg"}],"website":"","year":2003,"hasFile":true,"youTubeTrailerId":"zsgrsiZoymA","studio":"Village Roadshow Pictures","path":"\/movies\/The Matrix Reloaded (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Matrix Reloaded (2003)","runtime":138,"cleanTitle":"thematrixreloaded","imdbId":"tt0234215","tmdbId":604,"titleSlug":"604","certification":"R","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":8066,"value":7},"movieFile":{"movieId":197,"relativePath":"The Matrix Reloaded.2003-Remux-1080p.mkv","path":"\/movies\/The Matrix Reloaded (2003)\/The Matrix Reloaded.2003-Remux-1080p.mkv","size":34617767571,"dateAdded":"2019-02-04T06:54:27Z","sceneName":"The.Matrix.Reloaded.2003.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3424796,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ French \/ German \/ Italian \/ Spanish \/ Portuguese \/ Spanish \/ Japanese \/ Japanese \/ English \/ English","audioStreamCount":14,"videoBitDepth":8,"videoBitrate":20702801,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:18:17","scanType":"Progressive","subtitles":"English \/ Japanese \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Japanese \/ Japanese \/ Japanese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"REMASTERED","id":493},"collection":{"name":"The Matrix Collection","tmdbId":2344,"images":[]},"id":197},{"title":"The Matrix Revolutions","originalTitle":"The Matrix Revolutions","alternateTitles":[{"sourceType":"tmdb","movieId":198,"title":"The Matrix 3","sourceId":605,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":269},{"sourceType":"tmdb","movieId":198,"title":"The Matrix 3: Revolutions","sourceId":605,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":270},{"sourceType":"tmdb","movieId":198,"title":"The Matrix Revolutions: The IMAX Experience","sourceId":605,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":271},{"sourceType":"tmdb","movieId":198,"title":"Matrix 3","sourceId":605,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":488},{"sourceType":"tmdb","movieId":198,"title":"\u9ed1\u5ba2\u5e1d\u56fd3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3647},{"sourceType":"tmdb","movieId":198,"title":"Matrix III Revolutions","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3648},{"sourceType":"tmdb","movieId":198,"title":"Matrix 3 - Revolutions","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3649},{"sourceType":"tmdb","movieId":198,"title":"\u039c\u03ac\u03c4\u03c1\u03b9\u03be 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3650},{"sourceType":"tmdb","movieId":198,"title":"\ub9e4\ud2b8\ub9ad\uc2a4 \ub808\ubcfc\ub8e8\uc158","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3652},{"sourceType":"tmdb","movieId":198,"title":"Matrix 3 Revoluciones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3653},{"sourceType":"tmdb","movieId":198,"title":"\u041c\u0430\u0442\u0440\u0438\u0446\u0430: \u0420\u0435\u0432\u043e\u043b\u044e\u0446\u0438\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3654},{"sourceType":"tmdb","movieId":198,"title":"Matrix Revolutions","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5201},{"sourceType":"tmdb","movieId":198,"title":"The Matrix 3 - Matrix Revolutions","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5262}],"secondaryYearSourceId":0,"sortTitle":"matrix revolutions","sizeOnDisk":32872326146,"status":"released","overview":"The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.","inCinemas":"2003-11-05T00:00:00Z","physicalRelease":"2004-04-02T00:00:00Z","digitalRelease":"2007-05-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/198\/poster.jpg?lastWrite=637555719654870443","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fgm8OZ7o4G1G1I9EeGcb85Noe6L.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/198\/fanart.jpg?lastWrite=637663836992150862","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/t9dumNakkt6yL9wreEp35T4Lwny.jpg"}],"website":"","year":2003,"hasFile":true,"youTubeTrailerId":"hMbexEPAOQI","studio":"Village Roadshow Pictures","path":"\/movies\/The Matrix Revolutions (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Matrix Revolutions (2003)","runtime":129,"cleanTitle":"thematrixrevolutions","imdbId":"tt0242653","tmdbId":605,"titleSlug":"605","certification":"R","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":7222,"value":6.7},"movieFile":{"movieId":198,"relativePath":"The Matrix Revolutions.2003-Remux-1080p.mkv","path":"\/movies\/The Matrix Revolutions (2003)\/The Matrix Revolutions.2003-Remux-1080p.mkv","size":32872326146,"dateAdded":"2019-02-02T17:14:38Z","sceneName":"The.Matrix.Revolutions.2003.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3526621,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese \/ Japanese \/ Japanese \/ English \/ English","audioStreamCount":14,"videoBitDepth":8,"videoBitrate":21219463,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:09:17","scanType":"Progressive","subtitles":"English \/ Japanese \/ Japanese \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Spanish \/ Portuguese \/ Japanese \/ Japanese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"REMASTERED","id":492},"collection":{"name":"The Matrix Collection","tmdbId":2344,"images":[]},"id":198},{"title":"The Prestige","originalTitle":"The Prestige","alternateTitles":[{"sourceType":"tmdb","movieId":199,"title":"Prestige, The","sourceId":1124,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":273},{"sourceType":"tmdb","movieId":199,"title":"El gran truco","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4306},{"sourceType":"tmdb","movieId":199,"title":"O Grande Truque","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4307},{"sourceType":"tmdb","movieId":199,"title":"Le prestige","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4308},{"sourceType":"tmdb","movieId":199,"title":"\u9876\u5c16\u5bf9\u51b3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4309},{"sourceType":"tmdb","movieId":199,"title":"El Truco Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4310},{"sourceType":"tmdb","movieId":199,"title":"Prestige - Die Meister der Magie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4311},{"sourceType":"tmdb","movieId":199,"title":"El Truco Final (El Prestigio)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4312},{"sourceType":"tmdb","movieId":199,"title":"\u062d\u06cc\u062b\u06cc\u062a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4313},{"sourceType":"tmdb","movieId":199,"title":"\u30d7\u30ec\u30b9\u30c6\u30fc\u30b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4314},{"sourceType":"tmdb","movieId":199,"title":"\ud504\ub808\uc2a4\ud2f0\uc9c0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4315},{"sourceType":"tmdb","movieId":199,"title":"Presti\u017c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4316},{"sourceType":"tmdb","movieId":199,"title":"O Terceiro Passo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4317},{"sourceType":"tmdb","movieId":199,"title":"\u041f\u0440\u0435\u0441\u0442\u0438\u0436","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4318},{"sourceType":"tmdb","movieId":199,"title":"Prestij","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":4547}],"secondaryYearSourceId":0,"sortTitle":"prestige","sizeOnDisk":10972976613,"status":"released","overview":"A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.","inCinemas":"2006-10-19T00:00:00Z","physicalRelease":"2007-06-27T00:00:00Z","digitalRelease":"2009-09-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/199\/poster.jpg?lastWrite=637662106764253522","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gcphM7ZLxS5HPeCZgjZobfz907x.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/199\/fanart.jpg?lastWrite=637662106765693498","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mfJepkInUbiZ0mFXFhDNz8ko6Zr.jpg"}],"website":"http:\/\/wwws.warnerbros.de\/theprestige\/","year":2006,"hasFile":true,"youTubeTrailerId":"ijXruSzfGEc","studio":"Touchstone Pictures","path":"\/movies\/The Prestige (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Prestige (2006)","runtime":130,"cleanTitle":"theprestige","imdbId":"tt0482571","tmdbId":1124,"titleSlug":"1124","certification":"PG-13","genres":["Drama","Mystery","Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":12067,"value":8.2},"movieFile":{"movieId":199,"relativePath":"The Prestige.2006-Bluray-1080p.mkv","path":"\/movies\/The Prestige (2006)\/The Prestige.2006-Bluray-1080p.mkv","size":10972976613,"dateAdded":"2018-10-14T20:46:50Z","sceneName":"The.Prestige.2006.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9700000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x818","runTime":"2:10:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":334},"id":199},{"title":"The Secret World of Arrietty","originalTitle":"\u501f\u308a\u3050\u3089\u3057\u306e\u30a2\u30ea\u30a8\u30c3\u30c6\u30a3","alternateTitles":[{"sourceType":"tmdb","movieId":200,"title":"Arrietty","sourceId":51739,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1342},{"sourceType":"tmdb","movieId":200,"title":"El mundo secreto de Arrietty","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3122},{"sourceType":"tmdb","movieId":200,"title":"Arrietty - Die wundersame Welt der Borger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3123},{"sourceType":"tmdb","movieId":200,"title":"Arrietty i el m\u00f3n dels remenuts","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3124},{"sourceType":"tmdb","movieId":200,"title":"Kari-gurashi no Arietti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3125},{"sourceType":"tmdb","movieId":200,"title":"The Borrower Arrietty","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3126}],"secondaryYearSourceId":0,"sortTitle":"secret world arrietty","sizeOnDisk":7041806132,"status":"released","overview":"14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items \"borrowed\" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.","inCinemas":"2010-07-16T00:00:00Z","physicalRelease":"2011-11-17T00:00:00Z","digitalRelease":"2015-10-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/200\/poster.jpg?lastWrite=637655186718669701","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oc2OB2KDmSRDMelKEAA1n4YRQL0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/200\/fanart.jpg?lastWrite=637273982696221149","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7Q27v2bavhnBOEp8R5dGYr7p4Yb.jpg"}],"website":"http:\/\/disney.go.com\/official-sites\/arrietty\/index","year":2010,"hasFile":true,"youTubeTrailerId":"VlMe7PavaRQ","studio":"Studio Ghibli","path":"\/movies\/The Secret World of Arrietty (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Secret World of Arrietty (2010)","runtime":94,"cleanTitle":"thesecretworldarrietty","imdbId":"tt1568921","tmdbId":51739,"titleSlug":"51739","certification":"G","genres":["Fantasy","Animation","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1997,"value":7.6},"movieFile":{"movieId":200,"relativePath":"The Secret World of Arrietty.2010-Bluray-1080p.mkv","path":"\/movies\/The Secret World of Arrietty (2010)\/The Secret World of Arrietty.2010-Bluray-1080p.mkv","size":7041806132,"dateAdded":"2018-10-16T03:49:12Z","sceneName":"The.Secret.World.of.Arrietty.2010.1080p.BluRay.x264-iNFAMOUS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8373000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:35:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"iNFAMOUS","edition":"","id":372},"id":200},{"title":"The Sorcerer's Apprentice","originalTitle":"The Sorcerer's Apprentice","alternateTitles":[{"sourceType":"tmdb","movieId":201,"title":"\u0427\u0438\u0440\u0430\u043a\u044a\u0442 \u043d\u0430 \u043c\u0430\u0433\u044c\u043e\u0441\u043d\u0438\u043a\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3714},{"sourceType":"tmdb","movieId":201,"title":"\u9b54\u6cd5\u5e08\u7684\u95e8\u5f92","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3715},{"sourceType":"tmdb","movieId":201,"title":"\u010carod\u011bj\u016fv u\u010de\u0148","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3716},{"sourceType":"tmdb","movieId":201,"title":"El Aprendiz de Brujo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3717},{"sourceType":"tmdb","movieId":201,"title":"Noidan oppipoika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":3718},{"sourceType":"tmdb","movieId":201,"title":"L'Apprenti Sorcier","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3719},{"sourceType":"tmdb","movieId":201,"title":"\u03a5\u03c0\u03bf\u03c8\u03ae\u03c6\u03b9\u03bf\u03c2 \u039c\u03ac\u03b3\u03bf\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3720},{"sourceType":"tmdb","movieId":201,"title":"\u9b54\u6cd5\u4f7f\u3044\u306e\u5f1f\u5b50","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3721},{"sourceType":"tmdb","movieId":201,"title":"\ub9c8\ubc95\uc0ac\uc758 \uc81c\uc790","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3722},{"sourceType":"tmdb","movieId":201,"title":"Aprendiz de Hechicero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3723},{"sourceType":"tmdb","movieId":201,"title":"Trollmannens L\u00e6regutt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3724},{"sourceType":"tmdb","movieId":201,"title":"Ucze\u0144 czarnoksi\u0119\u017cnika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3725},{"sourceType":"tmdb","movieId":201,"title":"\u0423\u0447\u0435\u043d\u0438\u043a \u0447\u0430\u0440\u043e\u0434\u0435\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3726},{"sourceType":"tmdb","movieId":201,"title":"\u9b54\u6cd5\u5e2b\u7684\u5b78\u5f92","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3727}],"secondaryYearSourceId":0,"sortTitle":"sorcerer s apprentice","sizeOnDisk":8525598785,"status":"released","overview":"Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant prot\u00e9g\u00e9. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.","inCinemas":"2010-07-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/201\/poster.jpg?lastWrite=637652590927008654","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kffWPQfYLkjsoYEBlFpzqVoTfCV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/201\/fanart.jpg?lastWrite=637619721934162641","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g8oxz3nHOnPMoIk9ipbPxo6Ri71.jpg"}],"website":"http:\/\/disney.go.com\/disneypictures\/sorcerersapprentice\/","year":2010,"hasFile":true,"youTubeTrailerId":"v2uV0_1C4UM","studio":"Walt Disney Pictures","path":"\/movies\/The Sorcerer's Apprentice (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Sorcerer's Apprentice (2010)","runtime":109,"cleanTitle":"thesorcerersapprentice","imdbId":"tt0963966","tmdbId":27022,"titleSlug":"27022","certification":"PG","genres":["Fantasy","Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4005,"value":6.1},"movieFile":{"movieId":201,"relativePath":"The Sorcerer's Apprentice.2010-Bluray-1080p.mkv","path":"\/movies\/The Sorcerer's Apprentice (2010)\/The Sorcerer's Apprentice.2010-Bluray-1080p.mkv","size":8525598785,"dateAdded":"2018-10-14T12:38:28Z","sceneName":"The.Sorcerers.Apprentice.2010.1080p.Bluray.x264-CBGB","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8915000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:49:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"sorcerersapprentice1080","edition":"","id":321},"id":201},{"title":"The Tale of The Princess Kaguya","originalTitle":"\u304b\u3050\u3084\u59eb\u306e\u7269\u8a9e","alternateTitles":[{"sourceType":"tmdb","movieId":202,"title":"The Tale of the Bamboo Cutter","sourceId":149871,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":274},{"sourceType":"tmdb","movieId":202,"title":"Die Legende von Prinzessin Kaguya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2918},{"sourceType":"tmdb","movieId":202,"title":"Kaguya-hime no Monogatari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2919},{"sourceType":"tmdb","movieId":202,"title":"La Leyenda de la Princesa Kaguya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2920},{"sourceType":"tmdb","movieId":202,"title":"Het Verhaal van Prinses Kaguya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2921},{"sourceType":"tmdb","movieId":202,"title":"Bajka o princezi Kaguji","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2922},{"sourceType":"tmdb","movieId":202,"title":"Sagan om prinsessan Kaguya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2923}],"secondaryYearSourceId":0,"sortTitle":"tale princess kaguya","sizeOnDisk":9382456045,"status":"released","overview":"Found inside a shining stalk of bamboo by an old bamboo cutter and his wife, a tiny girl grows rapidly into an exquisite young lady. The mysterious young princess enthrals all who encounter her. But, ultimately, she must confront her fate, the punishment for her crime.","inCinemas":"2013-11-23T00:00:00Z","physicalRelease":"2015-03-04T00:00:00Z","digitalRelease":"2017-01-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/202\/poster.jpg?lastWrite=637609340196284397","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mWRQNlWXYYfd2z4FRm99MsgHgiA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/202\/fanart.jpg?lastWrite=637627506132024866","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/imUJOrtNf8EWameChpaRLXSaX4w.jpg"}],"website":"https:\/\/gkids.com\/films\/the-tale-of-the-princess-kaguya\/","year":2013,"hasFile":true,"youTubeTrailerId":"ILVGna1QMkc","studio":"Studio Ghibli","path":"\/movies\/The Tale of the Princess Kaguya (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Tale of the Princess Kaguya (2013)","runtime":137,"cleanTitle":"thetaleprincesskaguya","imdbId":"tt2576852","tmdbId":149871,"titleSlug":"149871","certification":"PG","genres":["Animation","Drama","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1201,"value":8.1},"movieFile":{"movieId":202,"relativePath":"The Tale of the Princess Kaguya.2013-Bluray-1080p.mkv","path":"\/movies\/The Tale of the Princess Kaguya (2013)\/The Tale of the Princess Kaguya.2013-Bluray-1080p.mkv","size":9382456045,"dateAdded":"2018-10-13T14:53:36Z","sceneName":"The.Tale.of.the.Princess.Kaguya.2013.1080p.BluRay.x264-PSYCHD[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7158000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:17:13","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"PSYCHD","edition":"","id":276},"id":202},{"title":"The Wind Rises","originalTitle":"\u98a8\u7acb\u3061\u306c","alternateTitles":[{"sourceType":"tmdb","movieId":203,"title":"Haizea Harrotu Da","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3326},{"sourceType":"tmdb","movieId":203,"title":"Kaze Tachinu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3327}],"secondaryYearSourceId":0,"sortTitle":"wind rises","sizeOnDisk":5867394070,"status":"released","overview":"A lifelong love of flight inspires Japanese aviation engineer Jiro Horikoshi, whose storied career includes the creation of the A-6M World War II fighter plane.","inCinemas":"2013-07-20T00:00:00Z","physicalRelease":"2014-11-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/203\/poster.jpg?lastWrite=637617992237573631","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jfwSexzlIzaOgxP9A8bTA6t8YYb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/203\/fanart.jpg?lastWrite=637485668880884439","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xAEg9S4RcLknP5deUwOSpciTUbm.jpg"}],"website":"","year":2013,"hasFile":true,"youTubeTrailerId":"2QFBZgAZx7g","studio":"Studio Ghibli","path":"\/movies\/The Wind Rises (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Wind Rises (2013)","runtime":126,"cleanTitle":"thewindrises","imdbId":"tt2013293","tmdbId":149870,"titleSlug":"149870","certification":"PG-13","genres":["Family","Drama","Animation"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":2033,"value":7.8},"movieFile":{"movieId":203,"relativePath":"The Wind Rises.2013-Bluray-1080p.mkv","path":"\/movies\/The Wind Rises (2013)\/The Wind Rises.2013-Bluray-1080p.mkv","size":5867394070,"dateAdded":"2018-10-13T13:32:55Z","sceneName":"The.Wind.Rises.2013.1080p.BluRay.x264-PSYCHD[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":768000,"audioChannels":1.0,"audioCodec":"DTS","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5220000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:06:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"PSYCHD","edition":"","id":268},"id":203},{"title":"Titan A.E.","originalTitle":"Titan A.E.","alternateTitles":[{"sourceType":"tmdb","movieId":204,"title":"Titan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3145},{"sourceType":"tmdb","movieId":204,"title":"Titan A. E. - Id\u0151sz\u00e1m\u00edt\u00e1sunk ut\u00e1n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3146}],"secondaryYearSourceId":0,"sortTitle":"titan e","sizeOnDisk":1944194458,"status":"released","overview":"A young man finds out that he holds the key to restoring hope and ensuring survival for the human race, while an alien species called the Drej are bent on mankind's destruction.","inCinemas":"2000-06-16T00:00:00Z","physicalRelease":"2002-10-02T00:00:00Z","digitalRelease":"2004-01-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/204\/poster.jpg?lastWrite=637548801651821375","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/el2iHk3LTJWfEnwrvcRkvWY501G.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/204\/fanart.jpg?lastWrite=637626641001813090","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pniACHS8KDVCldB3BlwL78RIZ7V.jpg"}],"website":"","year":2000,"hasFile":true,"youTubeTrailerId":"mK7huyUD3i8","studio":"David Kirschner Productions","path":"\/movies\/Titan A.E. (2000)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Titan A.E. (2000)","runtime":94,"cleanTitle":"titanae","imdbId":"tt0120913","tmdbId":7450,"titleSlug":"7450","certification":"PG","genres":["Animation","Action","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":783,"value":6.6},"movieFile":{"movieId":204,"relativePath":"Titan A.E.2000-WEBDL-1080p.mp4","path":"\/movies\/Titan A.E. (2000)\/Titan A.E.2000-WEBDL-1080p.mp4","size":1944194458,"dateAdded":"2019-09-01T20:47:04Z","sceneName":"Titan.A.E.2000.1080p.WEBRip.x264-RARBG","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1916x816","runTime":"1:34:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":599},"id":204},{"title":"Tomb Raider","originalTitle":"Tomb Raider","alternateTitles":[{"sourceType":"tmdb","movieId":205,"title":"Tomb Raider 2: A Origem","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2942},{"sourceType":"tmdb","movieId":205,"title":"Tomb Rider","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2943},{"sourceType":"tmdb","movieId":205,"title":"\u76dc\u5893\u8005\u7f85\u62c9(2018)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5783},{"sourceType":"tmdb","movieId":205,"title":"Tomb Raider: \u041b\u0430\u0440\u0430 \u041a\u0440\u043e\u0444\u0442 \/\u200b Tomb Raider","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6078}],"secondaryYearSourceId":0,"sortTitle":"tomb raider","sizeOnDisk":30984130823,"status":"released","overview":"Lara Croft, the fiercely independent daughter of a missing adventurer, must push herself beyond her limits when she finds herself on the island where her father disappeared.","inCinemas":"2018-03-05T00:00:00Z","physicalRelease":"2018-06-12T00:00:00Z","digitalRelease":"2018-06-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/205\/poster.jpg?lastWrite=637663837426623909","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ePyN2nX9t8SOl70eRW47Q29zUFO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/205\/fanart.jpg?lastWrite=637651725775900905","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bLJTjfbZ1c5zSNiAvGYs1Uc82ir.jpg"}],"website":"http:\/\/www.tombraidermovie.com\/","year":2018,"hasFile":true,"youTubeTrailerId":"3KkhD0MnaJU","studio":"Square Enix","path":"\/movies\/Tomb Raider (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Tomb Raider (2018)","runtime":118,"cleanTitle":"tombraider","imdbId":"tt1365519","tmdbId":338970,"titleSlug":"338970","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":6247,"value":6.4},"movieFile":{"movieId":205,"relativePath":"Tomb Raider.2018-Remux-1080p.mkv","path":"\/movies\/Tomb Raider (2018)\/Tomb Raider.2018-Remux-1080p.mkv","size":30984130823,"dateAdded":"2018-10-14T20:27:09Z","sceneName":"Tomb.Raider.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3213599,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ English \/ French \/ Spanish \/ Portuguese","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":23860638,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:57:50","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":331},"collection":{"name":"Tomb Raider (Reboot) Collection","tmdbId":621142,"images":[]},"id":205},{"title":"Transcendence","originalTitle":"Transcendence","alternateTitles":[{"sourceType":"tmdb","movieId":206,"title":"Transcendence 3D","sourceId":157353,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1275},{"sourceType":"tmdb","movieId":206,"title":"Transcendence: Identidad virtual","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3437},{"sourceType":"tmdb","movieId":206,"title":"\u5168\u9762\u8fdb\u5316","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3438},{"sourceType":"tmdb","movieId":206,"title":"\u8d85\u8d8a\u6f5c\u80fd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3439},{"sourceType":"tmdb","movieId":206,"title":"Trascender","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3440},{"sourceType":"tmdb","movieId":206,"title":"\u039a\u03c5\u03c1\u03b9\u03b1\u03c1\u03c7\u03af\u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3441},{"sourceType":"tmdb","movieId":206,"title":"\u30c8\u30e9\u30f3\u30bb\u30f3\u30c7\u30f3\u30b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3442},{"sourceType":"tmdb","movieId":206,"title":"\ud2b8\ub79c\uc13c\ub358\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3443},{"sourceType":"tmdb","movieId":206,"title":"\u041f\u0440\u0435\u0432\u043e\u0441\u0445\u043e\u0434\u0441\u0442\u0432\u043e \/ Transcendence","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6079}],"secondaryYearSourceId":0,"sortTitle":"transcendence","sizeOnDisk":9387543954,"status":"released","overview":"Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.","inCinemas":"2014-04-16T00:00:00Z","physicalRelease":"2014-11-05T00:00:00Z","digitalRelease":"2015-02-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/206\/poster.jpg?lastWrite=637643074681998615","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5JwUgEz7KL1gMIeeGJ2vj9lUwUS.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/206\/fanart.jpg?lastWrite=637433071672925504","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ypuD6ZsupyVV1ElNSIPz2BooIlX.jpg"}],"website":"","year":2014,"hasFile":true,"youTubeTrailerId":"QheoYw1BKJ4","studio":"DMG Entertainment","path":"\/movies\/Transcendence (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Transcendence (2014)","runtime":119,"cleanTitle":"transcendence","imdbId":"tt2209764","tmdbId":157353,"titleSlug":"157353","certification":"PG-13","genres":["Thriller","Science Fiction","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4458,"value":6},"movieFile":{"movieId":206,"relativePath":"Transcendence.2014-Bluray-1080p.mkv","path":"\/movies\/Transcendence (2014)\/Transcendence.2014-Bluray-1080p.mkv","size":9387543954,"dateAdded":"2018-10-14T11:35:29Z","sceneName":"Transcendence.2014.1080p.BluRay.x264-SPARKS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8983000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:59:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":318},"id":206},{"title":"V for Vendetta","originalTitle":"V for Vendetta","alternateTitles":[{"sourceType":"tmdb","movieId":207,"title":"Vendetta \u00fc\u00e7\u00fcn V","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3147},{"sourceType":"tmdb","movieId":207,"title":"V kao vendeta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3148},{"sourceType":"tmdb","movieId":207,"title":"V nagu veritasu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3149},{"sourceType":"tmdb","movieId":207,"title":"O za osvetu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3150},{"sourceType":"tmdb","movieId":207,"title":"V ir Vendeta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3153},{"sourceType":"tmdb","movieId":207,"title":"\u0412 \u0437\u043d\u0430\u0447\u0438\u0442 \u0412\u0435\u043d\u0434\u0435\u0442\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3155}],"secondaryYear":2005,"secondaryYearSourceId":0,"sortTitle":"v for vendetta","sizeOnDisk":10858524379,"status":"released","overview":"In a world in which Great Britain has become a fascist state, a masked vigilante known only as \u201cV\u201d conducts guerrilla warfare against the oppressive British government. When V rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.","inCinemas":"2006-03-15T00:00:00Z","physicalRelease":"2006-07-26T00:00:00Z","digitalRelease":"2009-05-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/207\/poster.jpg?lastWrite=637643939881400617","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2ySXWBckQboalTZjhaLWRqc3gCN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/207\/fanart.jpg?lastWrite=637600693051045113","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sFEYsEfzTx7hhjetlNrme8B5OUo.jpg"}],"website":"http:\/\/vforvendetta.warnerbros.com\/","year":2006,"hasFile":true,"youTubeTrailerId":"ZR5xUl2Suew","studio":"Studio Babelsberg","path":"\/movies\/V for Vendetta (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/V for Vendetta (2006)","runtime":132,"cleanTitle":"vforvendetta","imdbId":"tt0434409","tmdbId":752,"titleSlug":"752","certification":"R","genres":["Action","Thriller","Fantasy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":11451,"value":7.9},"movieFile":{"movieId":207,"relativePath":"V for Vendetta.2005-Bluray-1080p.mkv","path":"\/movies\/V for Vendetta (2006)\/V for Vendetta.2005-Bluray-1080p.mkv","size":10858524379,"dateAdded":"2018-10-13T13:40:26Z","sceneName":"V.for.Vendetta.2005.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9216000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:12:32","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Japanese \/ Portuguese \/ Danish \/ Finnish \/ Norwegian \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":269},"id":207},{"title":"Van Helsing","originalTitle":"Van Helsing","alternateTitles":[{"sourceType":"tmdb","movieId":208,"title":"Van Helsing: El cazador de monstruos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1989},{"sourceType":"tmdb","movieId":208,"title":"Van Khelzing","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1990},{"sourceType":"tmdb","movieId":208,"title":"\u602a\u7269\u730e\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1991},{"sourceType":"tmdb","movieId":208,"title":"Van Ch\u00e9lsin'nk","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1992},{"sourceType":"tmdb","movieId":208,"title":"Kallarai Manithan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1993},{"sourceType":"tmdb","movieId":208,"title":"\ubc18 \ud5ec\uc2f1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1994},{"sourceType":"tmdb","movieId":208,"title":"Van Khel'sing","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1995},{"sourceType":"tmdb","movieId":208,"title":"Van Helsing, o Ca\u00e7ador de Monstros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5408},{"sourceType":"tmdb","movieId":208,"title":"\u0412\u0430\u043d \u0425\u0435\u043b\u0441\u0456\u043d\u0433","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5885}],"secondaryYearSourceId":0,"sortTitle":"van helsing","sizeOnDisk":2695568510,"status":"released","overview":"Famed monster slayer Gabriel Van Helsing is dispatched to Transylvania to assist the last of the Valerious bloodline in defeating Count Dracula. Anna Valerious reveals that Dracula has formed an unholy alliance with Dr. Frankenstein's monster and is hell-bent on exacting a centuries-old curse on her family.","inCinemas":"2004-05-05T00:00:00Z","physicalRelease":"2004-10-19T00:00:00Z","digitalRelease":"2013-01-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/208\/poster.jpg?lastWrite=637655187018425301","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gsFun8nATm52aGHeT8ueAel98nE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/208\/fanart.jpg?lastWrite=637655187020345272","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/d72ROyJqXQtw2OupW0l15eicRAF.jpg"}],"website":"https:\/\/www.uphe.com\/movies\/van-helsing","year":2004,"hasFile":true,"youTubeTrailerId":"3fdRKme00uI","studio":"Universal Pictures","path":"\/movies\/Van Helsing (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Van Helsing (2004)","runtime":132,"cleanTitle":"vanhelsing","imdbId":"tt0338526","tmdbId":7131,"titleSlug":"7131","certification":"PG-13","genres":["Horror","Adventure","Action"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":4482,"value":6.3},"movieFile":{"movieId":208,"relativePath":"Van Helsing.2004-Bluray-1080p.mp4","path":"\/movies\/Van Helsing (2004)\/Van Helsing.2004-Bluray-1080p.mp4","size":2695568510,"dateAdded":"2018-10-13T18:34:39Z","sceneName":"Van.Helsing.2004.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:11:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":282},"collection":{"name":"Van Helsing Collection","tmdbId":109608,"images":[]},"id":208},{"title":"WALL\u00b7E","originalTitle":"WALL\u00b7E","alternateTitles":[{"sourceType":"tmdb","movieId":209,"title":"\uc6d4-E","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3449},{"sourceType":"tmdb","movieId":209,"title":"Disney Pixar Klassiker 9: WALL\u00b7E","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3450},{"sourceType":"tmdb","movieId":209,"title":"\u0412\u0410\u041b\u041b-\u0418","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3451},{"sourceType":"tmdb","movieId":209,"title":"VALL-I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3452}],"secondaryYearSourceId":0,"sortTitle":"walle","sizeOnDisk":8533863108,"status":"released","overview":"WALL\u00b7E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, WALL\u00b7E thinks he's finally found a friend and stows away on the ship when it leaves.","inCinemas":"2008-06-22T00:00:00Z","physicalRelease":"2008-11-19T00:00:00Z","digitalRelease":"2010-09-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/209\/poster.jpg?lastWrite=637621452252292919","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/Agc6lw8pb6BIGVeguvdjDT0p9Mb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/209\/fanart.jpg?lastWrite=637621452253972890","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ai2FicMUxLCurVkjtYdSvVDWRmS.jpg"}],"website":"https:\/\/www.pixar.com\/feature-films\/walle\/","year":2008,"hasFile":true,"youTubeTrailerId":"Tbr_L9Gap_M","studio":"Pixar","path":"\/movies\/WALL\u00b7E (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/WALL\u00b7E (2008)","runtime":98,"cleanTitle":"walle","imdbId":"tt0910970","tmdbId":10681,"titleSlug":"10681","certification":"G","genres":["Animation","Family","Science Fiction"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":14662,"value":8},"movieFile":{"movieId":209,"relativePath":"WALL\u00b7E.2008-Bluray-1080p.mkv","path":"\/movies\/WALL\u00b7E (2008)\/WALL\u00b7E.2008-Bluray-1080p.mkv","size":8533863108,"dateAdded":"2018-10-13T17:30:53Z","sceneName":"WALL-E.2008.1080p.BluRay.x264-HD1080","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10165000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:37:25","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HD1080","edition":"","id":280},"id":209},{"title":"Wanted","originalTitle":"Wanted","alternateTitles":[{"sourceType":"tmdb","movieId":210,"title":"\u523a\u5ba2\u8054\u76df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2000},{"sourceType":"tmdb","movieId":210,"title":"\u6740\u795e\u7279\u5de5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2001},{"sourceType":"tmdb","movieId":210,"title":"Wanted - Choisis ton destin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2002},{"sourceType":"tmdb","movieId":210,"title":"Wanted: Scigani","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2003},{"sourceType":"tmdb","movieId":210,"title":"Wanted (2008)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2004}],"secondaryYearSourceId":0,"sortTitle":"wanted","sizeOnDisk":2251441965,"status":"released","overview":"Doormat Wesley Gibson discovers that his recently murdered father - who Wesley never knew - belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.","inCinemas":"2008-06-19T00:00:00Z","physicalRelease":"2008-12-16T00:00:00Z","digitalRelease":"2017-08-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/210\/poster.jpg?lastWrite=637659512775350446","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rTvUr2ESdZ1Ht5zNbgUNmNEHyUT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/210\/fanart.jpg?lastWrite=637609340236523766","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qqhzXiNyCotzJdyEbi41EtzYYYI.jpg"}],"website":"http:\/\/wantedmovie.com","year":2008,"hasFile":true,"youTubeTrailerId":"q9Mr-iYZRZk","studio":"Kickstart","path":"\/movies\/Wanted (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Wanted (2008)","runtime":110,"cleanTitle":"wanted","imdbId":"tt0493464","tmdbId":8909,"titleSlug":"8909","certification":"R","genres":["Action","Thriller","Crime"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":5618,"value":6.5},"movieFile":{"movieId":210,"relativePath":"Wanted.2008-Bluray-1080p.mp4","path":"\/movies\/Wanted (2008)\/Wanted.2008-Bluray-1080p.mp4","size":2251441965,"dateAdded":"2018-10-13T16:02:55Z","sceneName":"Wanted.2008.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:50:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":278},"id":210},{"title":"When Marnie Was There","originalTitle":"\u601d\u3044\u51fa\u306e\u30de\u30fc\u30cb\u30fc","alternateTitles":[{"sourceType":"tmdb","movieId":211,"title":"Omoide no Mani","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3156},{"sourceType":"tmdb","movieId":211,"title":"Marnie \u2013 min hemmelige venninne","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3157},{"sourceType":"tmdb","movieId":211,"title":"Kada je Marni bila tu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3158},{"sourceType":"tmdb","movieId":211,"title":"\u041a\u043e\u043b\u0438 \u041c\u0430\u043d\u0456 \u0431\u0443\u043b\u0430 \u0442\u0443\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3159},{"sourceType":"tmdb","movieId":211,"title":"\u041a\u043e\u043b\u0438 \u041c\u0430\u0440\u043d\u0456 \u0431\u0443\u043b\u0430 \u0442\u0443\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3160},{"sourceType":"tmdb","movieId":211,"title":"\u0421\u043f\u043e\u0433\u0430\u0434\u0438 \u041c\u0430\u043d\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3161}],"secondaryYearSourceId":0,"sortTitle":"when marnie was there","sizeOnDisk":8219620937,"status":"released","overview":"Upon being sent to live with relatives in the countryside due to an illness, an emotionally distant adolescent girl becomes obsessed with an abandoned mansion and infatuated with a girl who lives there - a girl who may or may not be real.","inCinemas":"2014-07-19T00:00:00Z","physicalRelease":"2015-07-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/211\/poster.jpg?lastWrite=637642209721354294","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vug1dvDI1tSa60Z8qjCuUE7ntkO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/211\/fanart.jpg?lastWrite=637642209722794272","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sbtqmaprl6fzhPLaOrFWYJ8ZDli.jpg"}],"website":"https:\/\/www.uphe.com\/movies\/when-marnie-was-there","year":2014,"hasFile":true,"youTubeTrailerId":"ksNEwaQN53g","studio":"Studio Ghibli","path":"\/movies\/When Marnie Was There (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/When Marnie Was There (2014)","runtime":103,"cleanTitle":"whenmarniewasthere","imdbId":"tt3398268","tmdbId":242828,"titleSlug":"242828","certification":"PG","genres":["Animation","Drama"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1248,"value":8},"movieFile":{"movieId":211,"relativePath":"When Marnie Was There.2014-Bluray-1080p.mkv","path":"\/movies\/When Marnie Was There (2014)\/When Marnie Was There.2014-Bluray-1080p.mkv","size":8219620937,"dateAdded":"2018-10-14T20:23:46Z","sceneName":"When.Marnie.Was.There.2014.1080p.BluRay.x264-RedBlade[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.0,"audioCodec":"DTS","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:42:41","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RedBlade","edition":"","id":330},"id":211},{"title":"Whisper of the Heart","originalTitle":"\u8033\u3092\u3059\u307e\u305b\u3070","alternateTitles":[{"sourceType":"tmdb","movieId":212,"title":"\u68a6\u5e7b\u8857\u5c11\u5973","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3162},{"sourceType":"tmdb","movieId":212,"title":"Mimi o Sumaseba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3163},{"sourceType":"tmdb","movieId":212,"title":"Mimi wo Sumaseba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3164},{"sourceType":"tmdb","movieId":212,"title":"\u8033\u3092\u3059\u307e\u305b\u3070","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3165},{"sourceType":"tmdb","movieId":212,"title":"\uadc0\ub97c \uae30\uc6b8\uc774\uba74","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3166},{"sourceType":"tmdb","movieId":212,"title":"Susurros Del Coraz\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3167},{"sourceType":"tmdb","movieId":212,"title":"\u042f\u043a\u0449\u043e \u043f\u0440\u0438\u0441\u043b\u0443\u0445\u0430\u0442\u0438\u0441\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3168}],"secondaryYearSourceId":0,"sortTitle":"whisper heart","sizeOnDisk":2270561339,"status":"released","overview":"Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'.","inCinemas":"1995-07-15T00:00:00Z","physicalRelease":"1995-07-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/212\/poster.jpg?lastWrite=637655187063824631","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7oQgBscjpNLgOCaU1nBVSjWdIrC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/212\/fanart.jpg?lastWrite=637490857426722557","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4VTq6HLm0LtaLaFHBuOfPUwbPFj.jpg"}],"website":"","year":1995,"hasFile":true,"youTubeTrailerId":"0pVkiod6V0U","studio":"Studio Ghibli","path":"\/movies\/Whisper of the Heart (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Whisper of the Heart (1995)","runtime":111,"cleanTitle":"whisperheart","imdbId":"tt0113824","tmdbId":37797,"titleSlug":"37797","certification":"G","genres":["Animation","Drama","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1285,"value":7.9},"movieFile":{"movieId":212,"relativePath":"Whisper of the Heart.1995-Bluray-1080p.mp4","path":"\/movies\/Whisper of the Heart (1995)\/Whisper of the Heart.1995-Bluray-1080p.mp4","size":2270561339,"dateAdded":"2018-10-13T14:28:49Z","sceneName":"Whisper.Of.The.Heart.1995.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1032","runTime":"1:50:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":274},"id":212},{"title":"Who Am I","originalTitle":"Who Am I - Kein System ist sicher","alternateTitles":[{"sourceType":"tmdb","movieId":213,"title":"Quien soy yo","sourceId":284427,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":495},{"sourceType":"tmdb","movieId":213,"title":"Invasores: nenhum sistema est\u00e1 \u00e0 salvo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2648},{"sourceType":"tmdb","movieId":213,"title":"Hackerne: Intet system er sikkert","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2649},{"sourceType":"tmdb","movieId":213,"title":"Hackers: ning\u00fan sistema es seguro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2650},{"sourceType":"tmdb","movieId":213,"title":"Who am I: aucun systeme n'est s\u00fbr","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2651},{"sourceType":"tmdb","movieId":213,"title":"Who Am I: No System is Safe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2652},{"sourceType":"tmdb","movieId":213,"title":"\ud6c4 \uc5e0 \uc544 \uc774- \ub178 \uc2dc\uc2a4\ud15c \uc774\uc988 \uc138\uc774\ud504","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2653}],"secondaryYearSourceId":0,"sortTitle":"who am i","sizeOnDisk":3536496973,"status":"released","overview":"Benjamin, a young German computer whiz, is invited to join a subversive hacker group that wants to be noticed on the world's stage.","inCinemas":"2014-09-25T00:00:00Z","physicalRelease":"2015-08-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/213\/poster.jpg?lastWrite=637635290482905342","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nMHCJiVFjUmQWC116Ze96u5IhfX.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/213\/fanart.jpg?lastWrite=637666432704628350","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iTc8GzE4I4v9NLtEQ7ZaUvIj272.jpg"}],"website":"","year":2014,"hasFile":true,"youTubeTrailerId":"5vnjheCqRIs","studio":"Seven Pictures","path":"\/movies\/Who Am I (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Who Am I (2014)","runtime":105,"cleanTitle":"whoami","imdbId":"tt3042408","tmdbId":284427,"titleSlug":"284427","certification":"NR","genres":["Thriller"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":1092,"value":7.7},"movieFile":{"movieId":213,"relativePath":"Who Am I.2014-HDTV-720p.mkv","path":"\/movies\/Who Am I (2014)\/Who Am I.2014-HDTV-720p.mkv","size":3536496973,"dateAdded":"2018-10-11T15:11:43Z","indexerFlags":0,"quality":{"quality":{"id":4,"name":"HDTV-720p","source":"tv","resolution":720,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4248233,"videoCodec":"h264","videoFps":25.0,"resolution":"960x530","runTime":"1:41:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"6ch","edition":"","id":201},"id":213},{"title":"Wreck-It Ralph","originalTitle":"Wreck-It Ralph","alternateTitles":[{"sourceType":"tmdb","movieId":214,"title":"Wreck-It Ralph 3D","sourceId":82690,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":276},{"sourceType":"tmdb","movieId":214,"title":"Shug\u00e2 Rasshu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4161},{"sourceType":"tmdb","movieId":214,"title":"R\u00f6jar-Ralf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5321},{"sourceType":"tmdb","movieId":214,"title":"Ralph 1 - Les Mondes de Ralph","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6233}],"secondaryYearSourceId":0,"sortTitle":"wreck it ralph","sizeOnDisk":8211561749,"status":"released","overview":"Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.","inCinemas":"2012-01-01T00:00:00Z","physicalRelease":"2013-03-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/214\/poster.jpg?lastWrite=637533234531911860","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zWoIgZ7mgmPkaZjG0102BSKFIqQ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/214\/fanart.jpg?lastWrite=637541882610658244","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ziC23LkMYj8gToQQYQGWSGJCLNF.jpg"}],"website":"http:\/\/disney.go.com\/wreck-it-ralph","year":2012,"hasFile":true,"youTubeTrailerId":"87E6N7ToCxs","studio":"Walt Disney Animation Studios","path":"\/movies\/Wreck-It Ralph (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Wreck-It Ralph (2012)","runtime":101,"cleanTitle":"wreckitralph","imdbId":"tt1772341","tmdbId":82690,"titleSlug":"82690","certification":"PG","genres":["Family","Animation","Comedy"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":10034,"value":7.3},"movieFile":{"movieId":214,"relativePath":"Wreck-It Ralph.2012-Bluray-1080p.mkv","path":"\/movies\/Wreck-It Ralph (2012)\/Wreck-It Ralph.2012-Bluray-1080p.mkv","size":8211561749,"dateAdded":"2018-10-14T11:55:07Z","sceneName":"Wreck-It.Ralph.2012.1080p.BluRay.x264-SPARKS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9304000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:41:13","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":319},"collection":{"name":"Wreck-It Ralph Collection","tmdbId":404825,"images":[]},"id":214},{"title":"Zootopia","originalTitle":"Zootopia","alternateTitles":[{"sourceType":"tmdb","movieId":215,"title":"Zootopia 3D","sourceId":269149,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1323},{"sourceType":"tmdb","movieId":215,"title":"Zoomania - Ganz sch\u00f6n ausgefuchst!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3595},{"sourceType":"tmdb","movieId":215,"title":"Zootropolis - Dyreriket","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3601}],"secondaryYearSourceId":0,"sortTitle":"zootopia","sizeOnDisk":25831809870,"status":"released","overview":"Determined to prove herself, Officer Judy Hopps, the first bunny on Zootopia's police force, jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.","inCinemas":"2016-02-11T00:00:00Z","physicalRelease":"2016-06-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/215\/poster.jpg?lastWrite=637645669938415680","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hlK0e0wAQ3VLuJcsfIYPvb4JVud.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/215\/fanart.jpg?lastWrite=637645669940335642","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9tOkjBEiiGcaClgJFtwocStZvIT.jpg"}],"website":"http:\/\/movies.disney.com\/zootopia","year":2016,"hasFile":true,"youTubeTrailerId":"jWM0ct-OLsM","studio":"Walt Disney Animation Studios","path":"\/movies\/Zootopia (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Zootopia (2016)","runtime":109,"cleanTitle":"zootopia","imdbId":"tt2948356","tmdbId":269149,"titleSlug":"269149","certification":"PG","genres":["Animation","Adventure","Family"],"tags":[],"added":"2018-10-11T15:06:48Z","ratings":{"votes":13217,"value":7.7},"movieFile":{"movieId":215,"relativePath":"Zootopia.2016-Remux-1080p.mkv","path":"\/movies\/Zootopia (2016)\/Zootopia.2016-Remux-1080p.mkv","size":25831809870,"dateAdded":"2018-10-15T11:53:04Z","sceneName":"Zootopia.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:48:32","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":353},"id":215},{"title":"Deadpool 3","originalTitle":"Deadpool 3","alternateTitles":[{"sourceType":"tmdb","movieId":216,"title":"\u0e40\u0e14\u0e14\u0e1e\u0e39\u0e25 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5121},{"sourceType":"tmdb","movieId":216,"title":"\u30c7\u30c3\u30c9\u30d7\u30fc\u30eb3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5638},{"sourceType":"tmdb","movieId":216,"title":"\u0414\u044d\u0434\u043f\u0443\u043b 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5639},{"sourceType":"tmdb","movieId":216,"title":"\u0414\u0435\u0434\u043f\u0443\u043b 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5640}],"secondaryYearSourceId":0,"sortTitle":"deadpool 3","sizeOnDisk":0,"status":"announced","overview":"","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/216\/poster.jpg?lastWrite=637661241857094107","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1SlhjVF0QYYd3c8fJehGDrFfrQI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/216\/fanart.jpg?lastWrite=637635289675718080","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cmjxiHqQL3cwkhb8A1HQBIaLc39.jpg"}],"website":"","year":0,"hasFile":false,"youTubeTrailerId":"","studio":"Marvel Studios","path":"\/movies\/Deadpool 3 (0)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Deadpool 3 (0)","runtime":0,"cleanTitle":"deadpool3","imdbId":"tt6263850","tmdbId":533535,"titleSlug":"533535","genres":["Action","Science Fiction","Comedy"],"tags":[],"added":"2018-10-11T15:28:27Z","ratings":{"votes":0,"value":0},"collection":{"name":"Deadpool Collection","tmdbId":448150,"images":[]},"id":216},{"title":"Deadpool 2","originalTitle":"Deadpool 2","alternateTitles":[{"sourceType":"tmdb","movieId":217,"title":"Deadpool: Number Two","sourceId":383498,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":277},{"sourceType":"tmdb","movieId":217,"title":"Love Machine","sourceId":383498,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":555},{"sourceType":"tmdb","movieId":217,"title":"Daisy","sourceId":383498,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":556},{"sourceType":"tmdb","movieId":217,"title":"\u0e40\u0e14\u0e14\u0e1e\u0e39\u0e25 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5120},{"sourceType":"tmdb","movieId":217,"title":"DP2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5205},{"sourceType":"tmdb","movieId":217,"title":"X-Men 11 - Deadpool 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5515}],"secondaryYearSourceId":0,"sortTitle":"deadpool 2","sizeOnDisk":37354905284,"status":"released","overview":"Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.","inCinemas":"2018-05-15T00:00:00Z","physicalRelease":"2018-08-21T00:00:00Z","digitalRelease":"2018-08-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/217\/poster.jpg?lastWrite=637241983161378055","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/217\/fanart.jpg?lastWrite=637625775905807239","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg"}],"website":"https:\/\/www.foxmovies.com\/movies\/deadpool-2","year":2018,"hasFile":true,"youTubeTrailerId":"20bpjtCbCz0","studio":"Marvel Entertainment","path":"\/movies\/Deadpool 2 (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Deadpool 2 (2018)","runtime":119,"cleanTitle":"deadpool2","imdbId":"tt5463162","tmdbId":383498,"titleSlug":"383498","certification":"R","genres":["Action","Comedy","Adventure"],"tags":[],"added":"2018-10-11T15:28:31Z","ratings":{"votes":13596,"value":7.5},"movieFile":{"movieId":217,"relativePath":"Deadpool 2.2018-Remux-1080p.mkv","path":"\/movies\/Deadpool 2 (2018)\/Deadpool 2.2018-Remux-1080p.mkv","size":37354905284,"dateAdded":"2018-10-11T15:53:05Z","sceneName":"Deadpool.2.2018.Super.Duper.Cut.UNRATED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XLL","audioBitrate":5010338,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Spanish \/ French","audioStreamCount":4,"videoBitDepth":8,"videoBitrate":29711235,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:13:59","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ French \/ Spanish \/ Spanish \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"UNRATED","id":206},"collection":{"name":"Deadpool Collection","tmdbId":448150,"images":[]},"id":217},{"title":"Deadpool","originalTitle":"Deadpool","alternateTitles":[{"sourceType":"tmdb","movieId":218,"title":"X\u6218\u8b66\uff1a\u6b7b\u4f8d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4344},{"sourceType":"tmdb","movieId":218,"title":"Masacre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4346},{"sourceType":"tmdb","movieId":218,"title":"Deadpool 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5479},{"sourceType":"tmdb","movieId":218,"title":"Deadpool 1 Erase una vez Deadpool","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5480},{"sourceType":"tmdb","movieId":218,"title":"X-Men 8 - Deadpool","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5514}],"secondaryYearSourceId":0,"sortTitle":"deadpool","sizeOnDisk":25971740184,"status":"released","overview":"Deadpool tells the origin story of former Special Forces operative turned mercenary Wade Wilson, who after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.","inCinemas":"2016-02-09T00:00:00Z","physicalRelease":"2016-05-10T00:00:00Z","digitalRelease":"2016-04-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/218\/poster.jpg?lastWrite=637609339675772551","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3E53WEZJqP6aM84D8CckXx4pIHw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/218\/fanart.jpg?lastWrite=637621451597664069","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/en971MEXui9diirXlogOrPKmsEn.jpg"}],"website":"http:\/\/www.foxmovies.com\/movies\/deadpool","year":2016,"hasFile":true,"youTubeTrailerId":"9vN6DHB6bJc","studio":"20th Century Fox","path":"\/movies\/Deadpool (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Deadpool (2016)","runtime":108,"cleanTitle":"deadpool","imdbId":"tt1431045","tmdbId":293660,"titleSlug":"293660","certification":"R","genres":["Action","Adventure","Comedy"],"tags":[],"added":"2018-10-11T15:28:33Z","ratings":{"votes":25410,"value":7.6},"movieFile":{"movieId":218,"relativePath":"Deadpool.2016-Remux-1080p.mkv","path":"\/movies\/Deadpool (2016)\/Deadpool.2016-Remux-1080p.mkv","size":25971740184,"dateAdded":"2018-10-11T19:11:05Z","sceneName":"Deadpool.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Spanish \/ French \/ English \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:48:06","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ English \/ Spanish \/ French \/ English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":210},"collection":{"name":"Deadpool Collection","tmdbId":448150,"images":[]},"id":218},{"title":"Blame!","originalTitle":"\u30d6\u30e9\u30e0","alternateTitles":[{"sourceType":"tmdb","movieId":219,"title":"\u7279\u5de5\u6b21\u4e16\u4ee3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2060},{"sourceType":"tmdb","movieId":219,"title":"Buramu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2061},{"sourceType":"tmdb","movieId":219,"title":"BLAME! \u5267\u573a\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4890}],"secondaryYearSourceId":0,"sortTitle":"blame","sizeOnDisk":7472669841,"status":"released","overview":"In the distant technological future, civilization has reached its ultimate Net-based form. An \"infection\" in the past caused the automated systems to spiral out of order, resulting in a multi-leveled city structure that replicates itself infinitely in all directions. Now humanity has lost access to the city's controls, and is hunted down and purged by the defense system known as the Safeguard. In a tiny corner of the city, a little enclave known as the Electro-Fishers is facing eventual extinction, trapped between the threat of the Safeguard and dwindling food supplies. A girl named Zuru goes on a journey to find food for her village, only to inadvertently cause doom when an observation tower senses her and summons a Safeguard pack to eliminate the threat. With her companions dead and all escape routes blocked, the only thing that can save her now is the sudden arrival of Killy the Wanderer, on his quest for the Net Terminal Genes, the key to restoring order to the world.","inCinemas":"2017-05-20T00:00:00Z","physicalRelease":"2018-02-23T00:00:00Z","digitalRelease":"2017-05-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/219\/poster.jpg?lastWrite=637650859741046210","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oSAlpVXRXcj6Fj6c9guA7PzOkTV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/219\/fanart.jpg?lastWrite=637624911067607698","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9orgGrjh0Jivz0zZLn1Ufj4NRZP.jpg"}],"website":"http:\/\/www.blame.jp\/","year":2017,"hasFile":true,"youTubeTrailerId":"tz5siEX72nY","studio":"Polygon Pictures","path":"\/movies\/Blame! (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Blame! (2017)","runtime":106,"cleanTitle":"blame","imdbId":"tt6574146","tmdbId":409421,"titleSlug":"409421","certification":"PG-13","genres":["Action","Drama","Science Fiction"],"tags":[],"added":"2018-10-11T16:21:11Z","ratings":{"votes":202,"value":6.4},"movieFile":{"movieId":219,"relativePath":"Blame!.2017-Bluray-1080p.mkv","path":"\/movies\/Blame! (2017)\/Blame!.2017-Bluray-1080p.mkv","size":7472669841,"dateAdded":"2018-10-12T16:36:12Z","sceneName":"Blame.2017.1080p.BluRay.x264.DD5.1-VHD","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Japanese \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":7971307,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x804","runTime":"1:45:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"VHD","edition":"","id":227},"id":219},{"title":"Evangelion: 3.0 You Can (Not) Redo","originalTitle":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248:Q","alternateTitles":[{"sourceType":"tmdb","movieId":220,"title":"Evangelion: 3.33 You Can (Not) Redo","sourceId":75629,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":281},{"sourceType":"tmdb","movieId":220,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1aQ","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2103},{"sourceType":"tmdb","movieId":220,"title":"\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1aQ","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2104},{"sourceType":"tmdb","movieId":220,"title":"Neon Genesis Evangelion 3.33 - You Can (Not) Redo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2105},{"sourceType":"tmdb","movieId":220,"title":"Evangelion Shin Gekijouban: Q","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2106},{"sourceType":"tmdb","movieId":220,"title":"Evangelion Shin Gekij\u014d-ban Q Quickening","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2107},{"sourceType":"tmdb","movieId":220,"title":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248\uff1aQ","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2108},{"sourceType":"tmdb","movieId":220,"title":"Evangelion 3.0 Q","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2109},{"sourceType":"tmdb","movieId":220,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628: Q","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2110},{"sourceType":"tmdb","movieId":220,"title":"Evangelion: 3.0 (No) Lo Puedes Reahacer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2111},{"sourceType":"tmdb","movieId":220,"title":"Evangelion: 3.33 (No) Lo Puedes Reahacer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2112},{"sourceType":"tmdb","movieId":220,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d 3.33: \u0422\u044b (\u043d\u0435) \u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0448\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2113},{"sourceType":"tmdb","movieId":220,"title":"Evangelion:3.333 You Can (Not) Redo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5577},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.33 \u0422\u0438 (\u043d\u0435) \u0432\u0438\u043f\u0440\u0430\u0432\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6107},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.0 \u0422\u0438 (\u043d\u0435) \u0432\u0438\u043f\u0440\u0430\u0432\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6108},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.33 \u0422\u0438 (\u043d\u0435) \u0437\u043c\u0456\u043d\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6109},{"sourceType":"tmdb","movieId":220,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 3.0 \u0422\u0438 (\u043d\u0435) \u0437\u043c\u0456\u043d\u0438\u0448","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6110}],"secondaryYear":2013,"secondaryYearSourceId":0,"sortTitle":"evangelion 3 0 you can not redo","sizeOnDisk":1985329942,"status":"released","overview":"Fourteen years after Third Impact, Shinji Ikari awakens to a world he does not remember. He hasn't aged. Much of Earth is laid in ruins, NERV has been dismantled, and people who he once protected have turned against him. Befriending the enigmatic Kaworu Nagisa, Shinji continues the fight against the angels and realizes the fighting is far from over, even when it could be against his former allies. The characters' struggles continue amidst the battles against the angels and each other, spiraling down to what could inevitably be the end of the world.","inCinemas":"2012-11-17T00:00:00Z","physicalRelease":"2013-08-01T00:00:00Z","digitalRelease":"2021-08-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/220\/poster.jpg?lastWrite=637666431964800683","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7yvJ5hP9eHpdiGH0FuxmT7gkBCG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/220\/fanart.jpg?lastWrite=637611070531408584","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c5WUWudgykIpxb3TchaRnAcsu5y.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/3_0\/index.html","year":2012,"hasFile":true,"youTubeTrailerId":"pwLw2hNNz2M","studio":"khara","path":"\/movies\/Evangelion - 3.0 You Can (Not) Redo (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Evangelion - 3.0 You Can (Not) Redo (2012)","runtime":96,"cleanTitle":"evangelion30youcannotredo","imdbId":"tt0860907","tmdbId":75629,"titleSlug":"75629","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T16:22:13Z","ratings":{"votes":389,"value":7.6},"movieFile":{"movieId":220,"relativePath":"Evangelion 3.0 You Can (Not) Redo.2012-Bluray-1080p.mp4","path":"\/movies\/Evangelion - 3.0 You Can (Not) Redo (2012)\/Evangelion 3.0 You Can (Not) Redo.2012-Bluray-1080p.mp4","size":1985329942,"dateAdded":"2018-10-12T17:36:02Z","sceneName":"Evangelion.3.33.You.Can.Not.Redo.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:36:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":239},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":220},{"title":"Evangelion: 1.0 You Are (Not) Alone","originalTitle":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248\uff1a\u5e8f","alternateTitles":[{"sourceType":"tmdb","movieId":221,"title":"Evangelion: 1.11 You Are (Not) Alone","sourceId":15137,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":282},{"sourceType":"tmdb","movieId":221,"title":"Rebuild of Evangelion 1_11","sourceId":15137,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":470},{"sourceType":"tmdb","movieId":221,"title":"Evangelion: 1.11 - Voc\u00ea (N\u00e3o) Est\u00e1 S\u00f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2336},{"sourceType":"tmdb","movieId":221,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1a\u5e8f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2337},{"sourceType":"tmdb","movieId":221,"title":"\u798f\u97f3\u6218\u58eb\u65b0\u5267\u573a\u7248\uff1a\u5e8f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2338},{"sourceType":"tmdb","movieId":221,"title":"Evangelion: 1.01 - You Are (Not) Alone","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2339},{"sourceType":"tmdb","movieId":221,"title":"Neon Genesis Evangelion 1.01 You Are (not) Alone","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2340},{"sourceType":"tmdb","movieId":221,"title":"Evangelion 1.0: T\u00fa (No) est\u00e1s Solo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2341},{"sourceType":"tmdb","movieId":221,"title":"Evangelion Shin Gekijouban: Jo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2342},{"sourceType":"tmdb","movieId":221,"title":"Evangelion Shin Gekij\u014dban: Jo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2343},{"sourceType":"tmdb","movieId":221,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628: \uc11c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2344},{"sourceType":"tmdb","movieId":221,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628: \uc11c(\u5e8f)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2345},{"sourceType":"tmdb","movieId":221,"title":"Evangelion: 1.11 No Est\u00e1s Solo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2346},{"sourceType":"tmdb","movieId":221,"title":"\u30f1\u30f4\u30a1\u30f3\u30b2\u30ea\u30f2\u30f3\u65b0\u5287\u5834\u7248: \u5e8f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2347},{"sourceType":"tmdb","movieId":221,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d 1.11: \u0422\u044b (\u043d\u0435) \u043e\u0434\u0438\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2348},{"sourceType":"tmdb","movieId":221,"title":"\u798f\u97f3\u6230\u58eb\u65b0\u5287\u5834\u7248\uff1a\u5e8f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2349},{"sourceType":"tmdb","movieId":221,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 1.11 \u0422\u0438 (\u043d\u0435) \u0441\u0430\u043c\u043e\u0442\u043d\u0456\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6102},{"sourceType":"tmdb","movieId":221,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 1.0 \u0422\u0438 (\u043d\u0435) \u043e\u0434\u0438\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6103},{"sourceType":"tmdb","movieId":221,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 1.11 \u0422\u0438 (\u043d\u0435) \u043e\u0434\u0438\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6104},{"sourceType":"tmdb","movieId":221,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d: 1.0 \u0422\u0438 (\u043d\u0435) \u0441\u0430\u043c\u043e\u0442\u043d\u0456\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6105}],"secondaryYearSourceId":0,"sortTitle":"evangelion 1 0 you are not alone","sizeOnDisk":2066412132,"status":"released","overview":"After the Second Impact, Tokyo-3 is being attacked by giant monsters called Angels that seek to eradicate humankind. The child Shinji's objective is to fight the Angels by piloting one of the mysterious Evangelion mecha units. A remake of the first six episodes of GAINAX's famous 1996 anime series. The film was retitled \"Evangelion: 1.01\" for its DVD release and \"Evangelion: 1.11\" for a release with additional scenes.","inCinemas":"2007-09-01T00:00:00Z","physicalRelease":"2008-04-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/221\/poster.jpg?lastWrite=637611070515608874","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pETU4GurpeEjBOM8oytMH0yNBHx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/221\/fanart.jpg?lastWrite=637638749616296028","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c4L5nFbs72Cfe4Q4hF0T99USa1I.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/1_0\/index.html","year":2007,"hasFile":true,"youTubeTrailerId":"rof6qBz84vE","studio":"khara","path":"\/movies\/Evangelion - 1.0 - You Are (Not) Alone (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Evangelion - 1.0 - You Are (Not) Alone (2007)","runtime":101,"cleanTitle":"evangelion10youarenotalone","imdbId":"tt0923811","tmdbId":15137,"titleSlug":"15137","certification":"PG-13","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-11T16:22:16Z","ratings":{"votes":504,"value":7.7},"movieFile":{"movieId":221,"relativePath":"Evangelion 1.0 You Are (Not) Alone.2007-Bluray-1080p.mp4","path":"\/movies\/Evangelion - 1.0 - You Are (Not) Alone (2007)\/Evangelion 1.0 You Are (Not) Alone.2007-Bluray-1080p.mp4","size":2066412132,"dateAdded":"2018-10-12T18:40:59Z","sceneName":"Evangelion.1.11.You.Are.Not.Alone.2007.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:40:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":249},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":221},{"title":"Waterworld","originalTitle":"Waterworld","alternateTitles":[{"sourceType":"tmdb","movieId":224,"title":"Mundo acuatico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2005},{"sourceType":"tmdb","movieId":224,"title":"O'lum Ha-Mayim","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2006},{"sourceType":"tmdb","movieId":224,"title":"Wodny \u015awiat","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6161}],"secondaryYearSourceId":0,"sortTitle":"waterworld","sizeOnDisk":2766833108,"status":"released","overview":"In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship.","inCinemas":"1995-07-28T00:00:00Z","physicalRelease":"1996-03-01T00:00:00Z","digitalRelease":"2002-08-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/224\/poster.jpg?lastWrite=637573018222878780","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f4Q6BKm1lv9u5xoffbIIwrOYf6z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/224\/fanart.jpg?lastWrite=637663837444503623","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hJleEkILmKzJsvzrU8o5d66jbPa.jpg"}],"website":"","year":1995,"hasFile":true,"youTubeTrailerId":"vwASAMAfmAg","studio":"Gordon Company","path":"\/movies\/Waterworld (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Waterworld (1995)","runtime":135,"cleanTitle":"waterworld","imdbId":"tt0114898","tmdbId":9804,"titleSlug":"9804","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-12T12:13:14Z","ratings":{"votes":2716,"value":6.1},"movieFile":{"movieId":224,"relativePath":"Waterworld.1995-Bluray-1080p.mp4","path":"\/movies\/Waterworld (1995)\/Waterworld.1995-Bluray-1080p.mp4","size":2766833108,"dateAdded":"2018-10-12T16:18:59Z","sceneName":"Waterworld.1995.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:15:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":223},"id":224},{"title":"Avatar","originalTitle":"Avatar","alternateTitles":[{"sourceType":"tmdb","movieId":226,"title":"Project 880","sourceId":19995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":288},{"sourceType":"tmdb","movieId":226,"title":"Avatar: Extended Version","sourceId":19995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":289},{"sourceType":"tmdb","movieId":226,"title":"Avatar: An IMAX 3D Experience","sourceId":19995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":290},{"sourceType":"tmdb","movieId":226,"title":"Avatar 3D","sourceId":19995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":291},{"sourceType":"tmdb","movieId":226,"title":"James Cameron's Avatar","sourceId":19995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":292},{"sourceType":"tmdb","movieId":226,"title":"Avatar: Special Edition","sourceId":19995,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":293},{"sourceType":"tmdb","movieId":226,"title":"Avatar - EC","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3366},{"sourceType":"tmdb","movieId":226,"title":"Avatar - Edi\u00e7\u00e3o Estendida de Colecionador","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3367},{"sourceType":"tmdb","movieId":226,"title":"Avatar Edicion Coleccionista","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3368},{"sourceType":"tmdb","movieId":226,"title":"Avatar - Collector's Extended Edition","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3369},{"sourceType":"tmdb","movieId":226,"title":"\uc544\ubc14\ud0c0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3370},{"sourceType":"tmdb","movieId":226,"title":"\u0410\u0432\u0430\u0442\u0430\u0440 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3371},{"sourceType":"tmdb","movieId":226,"title":"Avatar - Wersja Specjalna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5264},{"sourceType":"tmdb","movieId":226,"title":"Avatar - Wersja Rozszerzona","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5265}],"secondaryYearSourceId":0,"sortTitle":"avatar","sizeOnDisk":37187053222,"status":"released","overview":"In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.","inCinemas":"2009-12-10T00:00:00Z","physicalRelease":"2010-04-22T00:00:00Z","digitalRelease":"2012-01-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/226\/poster.jpg?lastWrite=637647399386403055","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jRXYjXNq0Cs2TcJjLkki24MLp7u.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/226\/fanart.jpg?lastWrite=637667296904475917","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AmHOQ7rpHwiaUMRjKXztnauSJb7.jpg"}],"website":"http:\/\/www.avatarmovie.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"5PSNL1qE6VY","studio":"Dune Entertainment","path":"\/movies\/Avatar (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Avatar (2009)","runtime":162,"cleanTitle":"avatar","imdbId":"tt0499549","tmdbId":19995,"titleSlug":"19995","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-12T14:23:43Z","ratings":{"votes":23941,"value":7.5},"movieFile":{"movieId":226,"relativePath":"Avatar.2009-Remux-1080p.mkv","path":"\/movies\/Avatar (2009)\/Avatar.2009-Remux-1080p.mkv","size":37187053222,"dateAdded":"2018-10-12T18:21:29Z","sceneName":"Avatar.2009.Extended.Collector's.Edition.Blu-ray.Remux.1080p.AVC.DTS-HD.MA.5.1-HDRemuX","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:58:09","scanType":"Progressive","subtitles":"English \/ Hungarian \/ Italian \/ Icelandic \/ Polish \/ Czech \/ Arabic"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HDRemuX","edition":"Extended Collector's Edition","id":247},"collection":{"name":"Avatar Collection","tmdbId":87096,"images":[]},"id":226},{"title":"Evangelion: 3.0+1.0 Thrice Upon a Time","originalTitle":"\u30b7\u30f3\u30fb\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248:||","alternateTitles":[{"sourceType":"tmdb","movieId":234,"title":"Rebuild of Evangelion: Final","sourceId":283566,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":302},{"sourceType":"tmdb","movieId":234,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628 \uadf9\uc7a5\ud310:\u2225","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1354},{"sourceType":"tmdb","movieId":234,"title":"Evangelion: 3.0+1.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1355},{"sourceType":"tmdb","movieId":234,"title":"\u30b7\u30f3\u30fb\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248\ud834\udd07","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5323},{"sourceType":"tmdb","movieId":234,"title":"Shin Evangelion Gekijou-ban: II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5965},{"sourceType":"tmdb","movieId":234,"title":"Evangelion 3.0+1.01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6064},{"sourceType":"tmdb","movieId":234,"title":"Evangelion: 3.0+1.01 Thrice Upon a Time","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6091},{"sourceType":"tmdb","movieId":234,"title":"\uc5d0\ubc18\uac8c\ub9ac\uc628 3.0+1.01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6182},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u00b7\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248\uff1a\u7ec8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6184},{"sourceType":"tmdb","movieId":234,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d 3.0+1.01: \u041a\u0430\u043a-\u0442\u043e \u0440\u0430\u0437","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6185},{"sourceType":"tmdb","movieId":234,"title":"Evangelion : Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6189},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u00b7\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248:\u2502\u258c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6190},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u00b7\u798f\u97f3\u6230\u58eb\u5287\u5834\u7248\uff1a\u7d42","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6191},{"sourceType":"tmdb","movieId":234,"title":"\u65b0\u30fb\u798f\u97f3\u6230\u58eb\u5287\u5834\u7248:||","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6192},{"sourceType":"tmdb","movieId":234,"title":"Shin Evangelion Gekij\u014d-ban: ||","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6196},{"sourceType":"tmdb","movieId":234,"title":"Rebuild of Evangelion 3.0+1.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6221},{"sourceType":"tmdb","movieId":234,"title":"Rebuild of Evangelion 3.0+1.0: Thrice Upon a Time","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6222}],"secondaryYearSourceId":0,"sortTitle":"evangelion 3 01 0 thrice upon time","sizeOnDisk":13679182731,"status":"released","overview":"In the aftermath of the Fourth Impact, stranded without their Evangelions, Shinji, Asuka, and Rei find refuge in one of the rare pockets of humanity that still exist on the ruined planet Earth. There, each of them live a life far different from their days as an Evangelion pilot. However, the danger to the world is far from over. A new impact is looming on the horizon\u2014one that will prove to be the true end of Evangelion.","inCinemas":"2021-03-08T00:00:00Z","digitalRelease":"2021-08-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/234\/poster.jpg?lastWrite=637648264693044136","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jDwZavHo99JtGsCyRzp4epeeBHx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/234\/fanart.jpg?lastWrite=637655186159197814","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1EAxNqdkVnp48a7NUuNBHGflowM.jpg"}],"website":"https:\/\/www.evangelion.co.jp\/final.html","year":2021,"hasFile":true,"youTubeTrailerId":"GZfuWMDEJpw","studio":"khara","path":"\/movies\/Evangelion 3.0+1.0 (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Evangelion 3.0+1.0 (2020)","runtime":155,"cleanTitle":"evangelion3010thriceupontime","imdbId":"tt2458948","tmdbId":283566,"titleSlug":"283566","genres":["Animation","Action","Drama"],"tags":[],"added":"2018-10-12T21:25:22Z","ratings":{"votes":276,"value":8.7},"movieFile":{"movieId":234,"relativePath":"Evangelion 3.0+1.0 Thrice Upon a Time.2021-WEBDL-1080p.mkv","path":"\/movies\/Evangelion 3.0+1.0 (2020)\/Evangelion 3.0+1.0 Thrice Upon a Time.2021-WEBDL-1080p.mkv","size":13679182731,"dateAdded":"2021-08-12T18:38:55Z","sceneName":"Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Japanese \/ German \/ English \/ Spanish \/ Spanish \/ French \/ Italian \/ Portuguese \/ Hindi \/ \/ Korean","audioStreamCount":11,"videoBitDepth":8,"videoBitrate":4660006,"videoCodec":"h264","videoFps":24.0,"resolution":"1920x816","runTime":"2:35:46","scanType":"Progressive","subtitles":"English \/ Malay \/ Danish \/ German \/ Spanish \/ Spanish \/ fil \/ French \/ Indonesian \/ Italian \/ Dutch \/ Norwegian Bokmal \/ Polish \/ Portuguese \/ Portuguese \/ Finnish \/ Swedish \/ Turkish \/ Russian \/ Hebrew \/ Arabic \/ Hindi \/ Tamil \/ Telugu \/ Thai \/ Chinese \/ "},"originalFilePath":"Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP.mkv","qualityCutoffNotMet":true,"languages":[{"id":8,"name":"Japanese"},{"id":4,"name":"German"},{"id":1,"name":"English"},{"id":3,"name":"Spanish"},{"id":2,"name":"French"},{"id":5,"name":"Italian"},{"id":18,"name":"Portuguese"},{"id":26,"name":"Hindi"},{"id":21,"name":"Korean"}],"releaseGroup":"KRP","edition":"","id":732},"collection":{"name":"Rebuild of Evangelion Collection","tmdbId":210303,"images":[]},"id":234},{"title":"Ralph Breaks the Internet","originalTitle":"Ralph Breaks the Internet","alternateTitles":[{"sourceType":"tmdb","movieId":235,"title":"Wreck-It Ralph 2","sourceId":404368,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":303},{"sourceType":"tmdb","movieId":235,"title":"Wreck-It Ralph 2: Ralph Breaks the Internet","sourceId":404368,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":689},{"sourceType":"tmdb","movieId":235,"title":"\u65e0\u654c\u7834\u574f\u738b2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2232},{"sourceType":"tmdb","movieId":235,"title":"Ralf l\u00f5hub interneti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2235},{"sourceType":"tmdb","movieId":235,"title":"\u00a1Rompe Ralph! 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2236},{"sourceType":"tmdb","movieId":235,"title":"Les Mondes De Ralph 2 - Ralph 2.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2237},{"sourceType":"tmdb","movieId":235,"title":"\uc8fc\uba39\uc655 \ub784\ud504 2-\uc778\ud130\ub137 \uc18d\uc73c\ub85c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2238},{"sourceType":"tmdb","movieId":235,"title":"Disney Klassiker 56 - Rive-Rolf krasjer internett","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2239},{"sourceType":"tmdb","movieId":235,"title":"Ralph Spaccatutto 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4778},{"sourceType":"tmdb","movieId":235,"title":"Ralph reichts 2 - Chaos im Netz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5925}],"secondaryYearSourceId":0,"sortTitle":"ralph breaks internet","sizeOnDisk":1931437429,"status":"released","overview":"Video game bad guy Ralph and fellow misfit Vanellope von Schweetz must risk it all by traveling to the World Wide Web in search of a replacement part to save Vanellope's video game, Sugar Rush. In way over their heads, Ralph and Vanellope rely on the citizens of the internet \u2014 the netizens \u2014 to help navigate their way, including an entrepreneur named Yesss, who is the head algorithm and the heart and soul of trend-making site BuzzzTube.","inCinemas":"2018-11-20T00:00:00Z","physicalRelease":"2019-02-13T00:00:00Z","digitalRelease":"2019-02-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/235\/poster.jpg?lastWrite=637519396486887246","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qEnH5meR381iMpmCumAIMswcQw2.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/235\/fanart.jpg?lastWrite=637657782007690894","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qDQEQbgP3v7B9IYLAUcYexNrVYP.jpg"}],"website":"https:\/\/movies.disney.com\/ralph-breaks-the-internet-wreck-it-ralph-2","year":2018,"hasFile":true,"youTubeTrailerId":"T73h5bmD8Dc","studio":"Walt Disney Pictures","path":"\/movies\/Ralph Breaks the Internet (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ralph Breaks the Internet (2018)","runtime":112,"cleanTitle":"ralphbreaksinternet","imdbId":"tt5848272","tmdbId":404368,"titleSlug":"404368","certification":"PG","genres":["Family","Animation","Comedy"],"tags":[],"added":"2018-10-13T02:20:55Z","ratings":{"votes":5764,"value":7.2},"movieFile":{"movieId":235,"relativePath":"Ralph Breaks the Internet.2018-Bluray-1080p.mp4","path":"\/movies\/Ralph Breaks the Internet (2018)\/Ralph Breaks the Internet.2018-Bluray-1080p.mp4","size":1931437429,"dateAdded":"2019-02-18T10:39:37Z","sceneName":"Ralph Breaks The Internet (2018) [BluRay] [1080p] [YTS.AM]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":132300,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:52:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":505},"collection":{"name":"Wreck-It Ralph Collection","tmdbId":404825,"images":[]},"id":235},{"title":"The Lego Movie 2: The Second Part","originalTitle":"The Lego Movie 2: The Second Part","alternateTitles":[{"sourceType":"tmdb","movieId":236,"title":"The Lego Movie 2 The Second Part","sourceId":280217,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":836},{"sourceType":"tmdb","movieId":236,"title":"The LEGO Movie The Second Part Singalong Spectacular","sourceId":280217,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1297},{"sourceType":"tmdb","movieId":236,"title":"Le film LEGO 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3408},{"sourceType":"tmdb","movieId":236,"title":"The LEGO Movie 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3409},{"sourceType":"tmdb","movieId":236,"title":"LEGO Filmen 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3410},{"sourceType":"tmdb","movieId":236,"title":"La Grande Aventure Lego 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3411},{"sourceType":"tmdb","movieId":236,"title":"La Gran Aventura Lego 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3412}],"secondaryYearSourceId":0,"sortTitle":"lego movie 2 second part","sizeOnDisk":13864847416,"status":"released","overview":"It's been five years since everything was awesome and the citizens are facing a huge new threat: LEGO DUPLO\u00ae invaders from outer space, wrecking everything faster than they can rebuild.","inCinemas":"2019-02-06T00:00:00Z","physicalRelease":"2019-05-07T00:00:00Z","digitalRelease":"2019-04-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/236\/poster.jpg?lastWrite=637643074282006052","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/QTESAsBVZwjtGJNDP7utiGV37z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/236\/fanart.jpg?lastWrite=637643074283646022","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8kPozGb4BDrcWBSsGPrkULG2tP9.jpg"}],"website":"http:\/\/www.thelegomovie.com","year":2019,"hasFile":true,"youTubeTrailerId":"cksYkEzUa7k","studio":"Vertigo Entertainment","path":"\/movies\/The Lego Movie 2 The Second Part (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Lego Movie 2 The Second Part (2019)","runtime":106,"cleanTitle":"thelegomovie2secondpart","imdbId":"tt3513498","tmdbId":280217,"titleSlug":"280217","certification":"PG","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-10-13T02:21:18Z","ratings":{"votes":1507,"value":6.7},"movieFile":{"movieId":236,"relativePath":"The Lego Movie 2 The Second Part.2019-Bluray-1080p.mkv","path":"\/movies\/The Lego Movie 2 The Second Part (2019)\/The Lego Movie 2 The Second Part.2019-Bluray-1080p.mkv","size":13864847416,"dateAdded":"2019-04-21T12:42:00Z","sceneName":"The.Lego.Movie.2.The.Second.Part.2019.1080p.BluRay.x264.TrueHD.7.1.Atmos-HDC","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3525858,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":13000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x804","runTime":"1:47:09","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HDC","edition":"","id":541},"collection":{"name":"The Lego Movie Collection","tmdbId":325470,"images":[]},"id":236},{"title":"The Lego Movie","originalTitle":"The Lego Movie","alternateTitles":[{"sourceType":"tmdb","movieId":237,"title":"Lego: The Piece of Resistance","sourceId":137106,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":306},{"sourceType":"tmdb","movieId":237,"title":"Uma Aventura LEGO","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3392},{"sourceType":"tmdb","movieId":237,"title":"LEGO Movie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3393},{"sourceType":"tmdb","movieId":237,"title":"Le film LEGO","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3394},{"sourceType":"tmdb","movieId":237,"title":"The LEGO Movie 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3395},{"sourceType":"tmdb","movieId":237,"title":"Lego pr\u00edbeh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3396},{"sourceType":"tmdb","movieId":237,"title":"LEGO film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3397},{"sourceType":"tmdb","movieId":237,"title":"La Grande Aventure Lego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3398},{"sourceType":"tmdb","movieId":237,"title":"Lego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3399},{"sourceType":"tmdb","movieId":237,"title":"Seret Lego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3400},{"sourceType":"tmdb","movieId":237,"title":"\u05dc\u05d2\u05d5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3401},{"sourceType":"tmdb","movieId":237,"title":"Lego - Il film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3402},{"sourceType":"tmdb","movieId":237,"title":"Lego filmas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3403},{"sourceType":"tmdb","movieId":237,"title":"La Gran Aventura Lego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3404},{"sourceType":"tmdb","movieId":237,"title":"Lego La gran aventura","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3405},{"sourceType":"tmdb","movieId":237,"title":"De Lego Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3406},{"sourceType":"tmdb","movieId":237,"title":"Marea aventura Lego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3407},{"sourceType":"tmdb","movieId":237,"title":"Lego - La grande aventure","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5446},{"sourceType":"tmdb","movieId":237,"title":"Lego - La grande aventure LEGO","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5636}],"secondaryYearSourceId":0,"sortTitle":"lego movie","sizeOnDisk":5865405209,"status":"released","overview":"An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.","inCinemas":"2014-02-06T00:00:00Z","physicalRelease":"2014-06-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/237\/poster.jpg?lastWrite=637645669503384515","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lbctonEnewCYZ4FYoTZhs8cidAl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/237\/fanart.jpg?lastWrite=637645669507184437","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lWp5ZmmkUf99kzTj4XJ02TWpxvM.jpg"}],"website":"http:\/\/www.thelegomovie.com","year":2014,"hasFile":true,"youTubeTrailerId":"fZ_JOBCLF-I","studio":"Warner Bros. Pictures","path":"\/movies\/The Lego Movie (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Lego Movie (2014)","runtime":100,"cleanTitle":"thelegomovie","imdbId":"tt1490017","tmdbId":137106,"titleSlug":"137106","certification":"PG","genres":["Adventure","Animation","Comedy"],"tags":[],"added":"2018-10-13T02:21:21Z","ratings":{"votes":6211,"value":7.4},"movieFile":{"movieId":237,"relativePath":"The Lego Movie.2014-Bluray-1080p.mkv","path":"\/movies\/The Lego Movie (2014)\/The Lego Movie.2014-Bluray-1080p.mkv","size":5865405209,"dateAdded":"2018-10-14T06:02:34Z","sceneName":"The.Lego.Movie.2014.1080p.BluRay.x264-BLOW","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6268000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:40:35","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"BLOW","edition":"","id":299},"collection":{"name":"The Lego Movie Collection","tmdbId":325470,"images":[]},"id":237},{"title":"Stargate: Continuum","originalTitle":"Stargate: Continuum","alternateTitles":[{"sourceType":"tmdb","movieId":238,"title":"Continuum","sourceId":12914,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":307},{"sourceType":"tmdb","movieId":238,"title":"Stargate Continuum: The Movie","sourceId":12914,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":308},{"sourceType":"tmdb","movieId":238,"title":"Csillagkapu: Folytonoss\u00e1g","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4351},{"sourceType":"tmdb","movieId":238,"title":"\u30b9\u30bf\u30fc\u30b2\u30a4\u30c8 \u30b3\u30f3\u30c6\u30a3\u30cb\u30e5\u30a2\u30e0 \u30b6\u30fb\u30e0\u30fc\u30d3\u30fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5598},{"sourceType":"tmdb","movieId":238,"title":"Stargate: \u03a4\u03bf \u03a4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a7\u03c1\u03cc\u03bd\u03bf\u03c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6183}],"secondaryYearSourceId":0,"sortTitle":"stargate continuum","sizeOnDisk":2018911363,"status":"released","overview":"Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.","inCinemas":"2008-07-29T00:00:00Z","physicalRelease":"2008-07-29T00:00:00Z","digitalRelease":"2010-02-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/238\/poster.jpg?lastWrite=637603287031380796","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aP22JTw7or68WwqwFu1Bwrg66Ev.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/238\/fanart.jpg?lastWrite=637626640991893275","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jT7tdu9ksHkdS4R13ieXNs5efYW.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"C4gNXCnHFsg","studio":"Acme Shark","path":"\/movies\/Stargate Continuum (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Stargate Continuum (2008)","runtime":98,"cleanTitle":"stargatecontinuum","imdbId":"tt0929629","tmdbId":12914,"titleSlug":"12914","certification":"PG","genres":["Adventure","Science Fiction","TV Movie"],"tags":[],"added":"2018-10-13T02:21:32Z","ratings":{"votes":333,"value":7},"movieFile":{"movieId":238,"relativePath":"Stargate Continuum.2008-Bluray-1080p.mp4","path":"\/movies\/Stargate Continuum (2008)\/Stargate Continuum.2008-Bluray-1080p.mp4","size":2018911363,"dateAdded":"2018-10-14T04:32:02Z","sceneName":"Stargate.Continuum.2008.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:38:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":296},"collection":{"name":"Stargate SG-1 Collection","tmdbId":44215,"images":[]},"id":238},{"title":"Stargate: The Ark of Truth","originalTitle":"Stargate: The Ark of Truth","alternateTitles":[{"sourceType":"tmdb","movieId":239,"title":"Stargate SG1: The Ark of Truth","sourceId":13001,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":309},{"sourceType":"tmdb","movieId":239,"title":"The Ark of Truth","sourceId":13001,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":837},{"sourceType":"tmdb","movieId":239,"title":"Stargate: Quelle der Wahrheit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5557},{"sourceType":"tmdb","movieId":239,"title":"Csillagkapu - Az igazs\u00e1g l\u00e1d\u00e1ja","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":6274}],"secondaryYearSourceId":0,"sortTitle":"stargate ark truth","sizeOnDisk":2086202353,"status":"released","overview":"SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.","inCinemas":"2008-03-11T00:00:00Z","physicalRelease":"2008-03-11T00:00:00Z","digitalRelease":"2010-02-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/239\/poster.jpg?lastWrite=637624911545161861","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wsKsWoRxhCuw2dczg1rx9fUAhIp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/239\/fanart.jpg?lastWrite=637244580103516833","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c7zQHgs0AAuKRN3yqghIkLN8QiU.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"A1n6nq9vtuU","studio":"Kawoosh! Productions DTV I","path":"\/movies\/Stargate The Ark of Truth (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Stargate The Ark of Truth (2008)","runtime":101,"cleanTitle":"stargatearktruth","imdbId":"tt0942903","tmdbId":13001,"titleSlug":"13001","certification":"PG","genres":["Adventure","Science Fiction","TV Movie"],"tags":[],"added":"2018-10-13T02:21:40Z","ratings":{"votes":325,"value":7.1},"movieFile":{"movieId":239,"relativePath":"Stargate The Ark of Truth.2008-Bluray-1080p.mp4","path":"\/movies\/Stargate The Ark of Truth (2008)\/Stargate The Ark of Truth.2008-Bluray-1080p.mp4","size":2086202353,"dateAdded":"2018-10-13T12:43:08Z","sceneName":"Stargate.The.Ark.Of.Truth.2008.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:41:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":264},"collection":{"name":"Stargate SG-1 Collection","tmdbId":44215,"images":[]},"id":239},{"title":"The Amazing Spider-Man","originalTitle":"The Amazing Spider-Man","alternateTitles":[{"sourceType":"tmdb","movieId":242,"title":"El sorprendente hombre ara\u00f1a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3205},{"sourceType":"tmdb","movieId":242,"title":"L'extraordinaire Spiderman","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3207},{"sourceType":"tmdb","movieId":242,"title":"\uc5b4\uba54\uc774\uc9d5 \uc2a4\ud30c\uc774\ub354\ub9e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3208},{"sourceType":"tmdb","movieId":242,"title":"\u0416\u0430\u043d\u0430 \u041e\u0440\u043c\u0435\u043a\u0448i-\u0430\u0434\u0430\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3209},{"sourceType":"tmdb","movieId":242,"title":"Yangi O'rgimchak odam","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3211},{"sourceType":"tmdb","movieId":242,"title":"O Espetacular Homem-Aranha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5969},{"sourceType":"tmdb","movieId":242,"title":"Amazing Spider-Man 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6029},{"sourceType":"tmdb","movieId":242,"title":"Homem-Aranha 4 - O Espetacular Homem-Aranha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6177}],"secondaryYearSourceId":0,"sortTitle":"amazing spider man","sizeOnDisk":38553040662,"status":"released","overview":"Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance \u2013 leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.","inCinemas":"2012-06-27T00:00:00Z","physicalRelease":"2012-10-31T00:00:00Z","digitalRelease":"2014-10-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/242\/poster.jpg?lastWrite=637382923074648221","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dQ8TOCYgP9pzQvSb1cmaalYqdb5.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/242\/fanart.jpg?lastWrite=637643073983531633","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xYz4u1jWCKyXGzddMJeOL845DTr.jpg"}],"website":"http:\/\/www.theamazingspiderman.com","year":2012,"hasFile":true,"youTubeTrailerId":"WLxul0Vzuhk","studio":"Marvel Entertainment","path":"\/movies\/The Amazing Spider-Man (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Amazing Spider-Man (2012)","runtime":136,"cleanTitle":"theamazingspiderman","imdbId":"tt0948470","tmdbId":1930,"titleSlug":"1930","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-13T02:23:03Z","ratings":{"votes":13221,"value":6.6},"movieFile":{"movieId":242,"relativePath":"The Amazing Spider-Man.2012-Remux-1080p.mkv","path":"\/movies\/The Amazing Spider-Man (2012)\/The Amazing Spider-Man.2012-Remux-1080p.mkv","size":38553040662,"dateAdded":"2018-10-14T22:53:26Z","sceneName":"The Amazing Spider-Man 2012 1080p 4K Master Blu-ray Remux AVC DTS-HD MA 5.1 - KRaLiMaRKo","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:16:17","scanType":"Progressive","subtitles":"English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Chinese \/ Croatian \/ Czech \/ Bulgarian \/ Danish \/ Dutch \/ Estonian \/ Finnish \/ French \/ German \/ Greek \/ Hebrew \/ Hindi \/ Hungarian \/ Icelandic \/ Indonesian \/ Italian \/ Korean \/ Latvian \/ Lithuanian \/ Norweg"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HD","edition":"","id":347},"collection":{"name":"The Amazing Spider-Man Collection","tmdbId":125574,"images":[]},"id":242},{"title":"Spider-Man 3","originalTitle":"Spider-Man 3","alternateTitles":[{"sourceType":"tmdb","movieId":243,"title":"Spider-Man 3: The IMAX Experience","sourceId":559,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":315},{"sourceType":"tmdb","movieId":243,"title":"\u03a3\u03c0\u03ac\u03b9\u03bd\u03c4\u03b5\u03c1\u03bc\u03b1\u03bd 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3142},{"sourceType":"tmdb","movieId":243,"title":"\u041b\u044e\u0434\u0438\u043d\u0430-\u043f\u0430\u0432\u0443\u043a 3. \u0412\u043e\u0440\u043e\u0433 \u0443 \u0432\u0456\u0434\u0431\u0438\u0442\u0442\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3144},{"sourceType":"tmdb","movieId":243,"title":"\uc2a4\ud30c\uc774\ub354\ub9e83","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5689},{"sourceType":"tmdb","movieId":243,"title":"P\u00f3kember 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5768},{"sourceType":"tmdb","movieId":243,"title":"\u30b9\u30d1\u30a4\u30c0\u30fc\u30de\u30f33","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5769},{"sourceType":"tmdb","movieId":243,"title":"Homem-Aranha 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5770}],"secondaryYearSourceId":0,"sortTitle":"spider man 3","sizeOnDisk":2849408533,"status":"released","overview":"The seemingly invincible Spider-Man goes up against an all-new crop of villains\u2014including the shape-shifting Sandman. While Spider-Man\u2019s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.","inCinemas":"2007-05-01T00:00:00Z","physicalRelease":"2007-10-27T00:00:00Z","digitalRelease":"2009-10-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/243\/poster.jpg?lastWrite=637616262429305408","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2jLxKF73SAPkyhIWrnv67IH7kJ1.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/243\/fanart.jpg?lastWrite=637638749869890873","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6MQmtWk4cFwSDyNvIgoJRBIHUT3.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/spiderman3","year":2007,"hasFile":true,"youTubeTrailerId":"wPosLpgMtTY","studio":"Columbia Pictures","path":"\/movies\/Spider-Man 3 (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Spider-Man 3 (2007)","runtime":139,"cleanTitle":"spiderman3","imdbId":"tt0413300","tmdbId":559,"titleSlug":"559","certification":"PG-13","genres":["Fantasy","Action","Adventure"],"tags":[],"added":"2018-10-13T02:23:13Z","ratings":{"votes":10181,"value":6.3},"movieFile":{"movieId":243,"relativePath":"Spider-Man 3.2007-Bluray-1080p.mp4","path":"\/movies\/Spider-Man 3 (2007)\/Spider-Man 3.2007-Bluray-1080p.mp4","size":2849408533,"dateAdded":"2018-10-15T08:10:37Z","sceneName":"Spiderman.3.2007.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:19:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":349},"collection":{"name":"Spider-Man Collection","tmdbId":556,"images":[]},"id":243},{"title":"Pirates of the Caribbean: At World's End","originalTitle":"Pirates of the Caribbean: At World's End","alternateTitles":[{"sourceType":"tmdb","movieId":244,"title":"Pirates of the Caribbean 3 - At World's End","sourceId":285,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":316},{"sourceType":"tmdb","movieId":244,"title":"Pirates of the Caribbean III: At World's End","sourceId":285,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":317},{"sourceType":"tmdb","movieId":244,"title":"Pirates of the Caribbean 3","sourceId":285,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":318},{"sourceType":"tmdb","movieId":244,"title":"At World's End","sourceId":285,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":319},{"sourceType":"tmdb","movieId":244,"title":"POTC3 At World's End","sourceId":285,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":320},{"sourceType":"tmdb","movieId":244,"title":"Piratas do Caribe 3 - No Fim do Mundo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4017},{"sourceType":"tmdb","movieId":244,"title":"Piratas do Car\u00edbe 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4018},{"sourceType":"tmdb","movieId":244,"title":"Pirates des CaraIbes 3 Jusqu au bout du monde - FR 2007","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4019},{"sourceType":"tmdb","movieId":244,"title":"Fluch der Karibik - Am Ende der Welt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4020},{"sourceType":"tmdb","movieId":244,"title":"Pir\u00e1ti z Karibiku 3 - Na konci sv\u011bta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4021},{"sourceType":"tmdb","movieId":244,"title":"Piratas del Caribe 3. En el fin del mundo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4024},{"sourceType":"tmdb","movieId":244,"title":"Pirates des Cara\u00efbes 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4025},{"sourceType":"tmdb","movieId":244,"title":"Pirates des Cara\u00efbes 3 - Jusqu'au Bout du Monde","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4026},{"sourceType":"tmdb","movieId":244,"title":"Pirates des Cara\u00efbes : Jusqu'au Bout du Monde","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4027},{"sourceType":"tmdb","movieId":244,"title":"\u039f\u03b9 \u03a0\u03b5\u03b9\u03c1\u03b1\u03c4\u03ad\u03c2 \u03a4\u03b7\u03c2 \u039a\u03b1\u03c1\u03b1\u03ca\u03b2\u03b9\u03ba\u03ae\u03c2: \u03a3\u03c4\u03bf \u03a4\u03ad\u03bb\u03bf\u03c2 \u03a4\u03bf\u03c5 \u039a\u03cc\u03c3\u03bc\u03bf\u03c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4028},{"sourceType":"tmdb","movieId":244,"title":"\uce90\ub9ac\ube44\uc548\uc758 \ud574\uc801-\uc138\uc0c1\uc758 \ub05d\uc5d0\uc11c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4029},{"sourceType":"tmdb","movieId":244,"title":"Piratas del Caribe: En el fin del mundo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4030},{"sourceType":"tmdb","movieId":244,"title":"Pirates of the Caribbean deel 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":4031},{"sourceType":"tmdb","movieId":244,"title":"Piratas das Cara\u00edbas: Nos Confins do Mundo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4032},{"sourceType":"tmdb","movieId":244,"title":"Pirati dei Caraibi - Ai confini del mondo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5185}],"secondaryYearSourceId":0,"sortTitle":"pirates caribbean at world s end","sizeOnDisk":14089852576,"status":"released","overview":"Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.","inCinemas":"2007-05-19T00:00:00Z","physicalRelease":"2007-11-23T00:00:00Z","digitalRelease":"2009-09-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/244\/poster.jpg?lastWrite=637563504331424831","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8ORuWcrYPgjwUDyCzr7qsOlCdwn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/244\/fanart.jpg?lastWrite=637575612542083633","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5D849yJ7isoK17flsH99yJUAMPI.jpg"}],"website":"http:\/\/disney.go.com\/disneypictures\/pirates","year":2007,"hasFile":true,"youTubeTrailerId":"HKSZtp_OGHY","studio":"Jerry Bruckheimer Films","path":"\/movies\/Pirates of the Caribbean At World's End (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Pirates of the Caribbean At World's End (2007)","runtime":169,"cleanTitle":"piratescaribbeanatworldsend","imdbId":"tt0449088","tmdbId":285,"titleSlug":"285","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2018-10-13T02:23:21Z","ratings":{"votes":11196,"value":7.2},"movieFile":{"movieId":244,"relativePath":"Pirates of the Caribbean At World's End.2007-Bluray-1080p.mkv","path":"\/movies\/Pirates of the Caribbean At World's End (2007)\/Pirates of the Caribbean At World's End.2007-Bluray-1080p.mkv","size":14089852576,"dateAdded":"2018-10-14T06:10:18Z","sceneName":"Pirates.Of.The.Caribbean.At.Worlds.End.2007.1080p.BluRay.DTS.x264-hV","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9635000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:48:30","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"hV","edition":"","id":300},"collection":{"name":"Pirates of the Caribbean Collection","tmdbId":295,"images":[]},"id":244},{"title":"Kill Bill: Vol. 1","originalTitle":"Kill Bill: Vol. 1","alternateTitles":[{"sourceType":"tmdb","movieId":245,"title":"Kill Bill: Volume 1","sourceId":24,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":321},{"sourceType":"tmdb","movieId":245,"title":"Kill Bill","sourceId":24,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":322},{"sourceType":"tmdb","movieId":245,"title":"Kill Bill, la venganza: Volumen I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3616},{"sourceType":"tmdb","movieId":245,"title":"Ubii\u0306 Bil","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3617},{"sourceType":"tmdb","movieId":245,"title":"\u6740\u6b7b\u6bd4\u5c14\uff1a\u7b2c\u4e00\u5377","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3618},{"sourceType":"tmdb","movieId":245,"title":"Kill Bill 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3619},{"sourceType":"tmdb","movieId":245,"title":"Kiru Biru","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3620},{"sourceType":"tmdb","movieId":245,"title":"Nuzudyti Bila 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3621},{"sourceType":"tmdb","movieId":245,"title":"Nogalinat Bilu: 1.dala","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3622},{"sourceType":"tmdb","movieId":245,"title":"Kill Bill: Volumul 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3623},{"sourceType":"tmdb","movieId":245,"title":"Ubiti Bila, prvi deo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3624},{"sourceType":"tmdb","movieId":245,"title":"Ubit' Billa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3625},{"sourceType":"tmdb","movieId":245,"title":"\u0423\u0431\u0438\u0442\u044c \u0411\u0438\u043b\u043b\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3626},{"sourceType":"tmdb","movieId":245,"title":"Bill'i \u00d6ld\u00fcrmek: B\u00f6l\u00fcm 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3627},{"sourceType":"tmdb","movieId":245,"title":"Vbyty Billa: Fil\u02b9m 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3628}],"secondaryYearSourceId":0,"sortTitle":"kill bill vol 1","sizeOnDisk":9630115400,"status":"released","overview":"An assassin is shot by her ruthless employer, Bill, and other members of their assassination circle \u2013 but she lives to plot her vengeance.","inCinemas":"2003-10-10T00:00:00Z","physicalRelease":"2004-04-23T00:00:00Z","digitalRelease":"2005-03-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/245\/poster.jpg?lastWrite=637635290002272931","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/v7TaX8kXMXs5yFFGR41guUDNcnB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/245\/fanart.jpg?lastWrite=637661242034331298","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4nV8HonU5h8NyvF6sJX4q1PYtt9.jpg"}],"website":"http:\/\/www.miramax.com\/movie\/kill-bill-volume-1","year":2003,"hasFile":true,"youTubeTrailerId":"c_dNIXwrbzY","studio":"Miramax","path":"\/movies\/Kill Bill Vol. 1 (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Kill Bill Vol. 1 (2003)","runtime":111,"cleanTitle":"killbillvol1","imdbId":"tt0266697","tmdbId":24,"titleSlug":"24","certification":"R","genres":["Action","Crime"],"tags":[],"added":"2018-10-13T02:23:30Z","ratings":{"votes":13614,"value":8},"movieFile":{"movieId":245,"relativePath":"Kill Bill Vol. 1.2003-Bluray-1080p.mkv","path":"\/movies\/Kill Bill Vol. 1 (2003)\/Kill Bill Vol. 1.2003-Bluray-1080p.mkv","size":9630115400,"dateAdded":"2018-10-14T21:20:09Z","sceneName":"Kill.Bill.Volume.1.2003.1080p.BluRay.x264-LiBRARiANS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1330614,"audioChannels":5.1,"audioCodec":"FLAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10246263,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:50:43","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ Spanish \/ Japanese \/ Korean \/ Chinese \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"LiBRARiANS","edition":"","id":337},"collection":{"name":"Kill Bill Collection","tmdbId":2883,"images":[]},"id":245},{"title":"Ghostbusters","originalTitle":"Ghostbusters","alternateTitles":[{"sourceType":"tmdb","movieId":246,"title":"Ghostbusters - Haamujengi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2381},{"sourceType":"tmdb","movieId":246,"title":"SOS Fant\u00f4mes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2382},{"sourceType":"tmdb","movieId":246,"title":"gosutobasutazu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2385},{"sourceType":"tmdb","movieId":246,"title":"\uace0\uc2a4\ud2b8 \ubc84\uc2a4\ud130\uc988","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2386},{"sourceType":"tmdb","movieId":246,"title":"Ghostbusters - Sp\u00f6kligan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2387},{"sourceType":"tmdb","movieId":246,"title":"\u9b54\u9b3c\u5c05\u661f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4652},{"sourceType":"tmdb","movieId":246,"title":"Ghostbusters - Acchiappafantasmi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5877},{"sourceType":"tmdb","movieId":246,"title":"Os Ca\u00e7a-Fantasmas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5944},{"sourceType":"tmdb","movieId":246,"title":"Ghostbusters 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6031}],"secondaryYearSourceId":0,"sortTitle":"ghostbusters","sizeOnDisk":20392590143,"status":"released","overview":"After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting \"ghostbusters\" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.","inCinemas":"1984-06-08T00:00:00Z","physicalRelease":"1999-09-30T00:00:00Z","digitalRelease":"2002-06-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/246\/poster.jpg?lastWrite=637612802446747048","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5YhJoPzYL9n0ilqDuVO2v89BuYY.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/246\/fanart.jpg?lastWrite=637612802448347023","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c6yfABGVKuB5cjoOwdX4AJMlzUz.jpg"}],"website":"http:\/\/www.ghostbusters.com\/","year":1984,"hasFile":true,"youTubeTrailerId":"9TlA6qTpn-A","studio":"Columbia Pictures","path":"\/movies\/Ghostbusters (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ghostbusters (1984)","runtime":107,"cleanTitle":"ghostbusters","imdbId":"tt0087332","tmdbId":620,"titleSlug":"620","certification":"PG","genres":["Comedy","Fantasy"],"tags":[],"added":"2018-10-13T02:23:44Z","ratings":{"votes":6674,"value":7.4},"movieFile":{"movieId":246,"relativePath":"Ghostbusters.1984-Bluray-1080p.mkv","path":"\/movies\/Ghostbusters (1984)\/Ghostbusters.1984-Bluray-1080p.mkv","size":20392590143,"dateAdded":"2018-10-14T07:13:19Z","sceneName":"Ghostbusters.1984.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":0,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":20422000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x804","runTime":"1:45:08","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Hindi \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Portuguese \/ Portuguese \/ Spanish \/ Spanish \/ Swedish \/ Thai"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":303},"collection":{"name":"Ghostbusters Collection","tmdbId":2980,"images":[]},"id":246},{"title":"Ghostbusters II","originalTitle":"Ghostbusters II","alternateTitles":[{"sourceType":"tmdb","movieId":247,"title":"Ghostbusters 2","sourceId":2978,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":324},{"sourceType":"tmdb","movieId":247,"title":"Ghostbusters II: River of Slime","sourceId":2978,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":325},{"sourceType":"tmdb","movieId":247,"title":"The Last of the Ghostbusters","sourceId":2978,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":326},{"sourceType":"tmdb","movieId":247,"title":"\u9b54\u9b3c\u514b\u661f 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3375},{"sourceType":"tmdb","movieId":247,"title":"cazafantasmas II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3376},{"sourceType":"tmdb","movieId":247,"title":"SOS Fant\u00f4mes 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3377},{"sourceType":"tmdb","movieId":247,"title":"\uace0\uc2a4\ud2b8 \ubc84\uc2a4\ud130\uc988 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3378}],"secondaryYearSourceId":0,"sortTitle":"ghostbusters ii","sizeOnDisk":12001066887,"status":"released","overview":"Five years after they defeated Gozer, the Ghostbusters are out of business. When Dana begins to have ghost problems again, the boys come out of retirement to aid her and hopefully save New York City from a new paranormal threat.","inCinemas":"1989-06-16T00:00:00Z","physicalRelease":"1999-10-27T00:00:00Z","digitalRelease":"2003-04-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/247\/poster.jpg?lastWrite=637611070606327211","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yObYPMA58DnTMvJooFW7GG6jWAt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/247\/fanart.jpg?lastWrite=637536693478575531","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/i3tDyZhh1IxzxJyvmIZKJXIvfRI.jpg"}],"website":"http:\/\/www.ghostbusters.com","year":1989,"hasFile":true,"youTubeTrailerId":"-_GPiwqmUiA","studio":"Columbia Pictures","path":"\/movies\/Ghostbusters II (1989)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ghostbusters II (1989)","runtime":108,"cleanTitle":"ghostbustersii","imdbId":"tt0097428","tmdbId":2978,"titleSlug":"2978","certification":"PG","genres":["Comedy","Fantasy"],"tags":[],"added":"2018-10-13T02:23:46Z","ratings":{"votes":3087,"value":6.5},"movieFile":{"movieId":247,"relativePath":"Ghostbusters II.1989-Bluray-1080p.mkv","path":"\/movies\/Ghostbusters II (1989)\/Ghostbusters II.1989-Bluray-1080p.mkv","size":12001066887,"dateAdded":"2018-10-13T19:36:24Z","sceneName":"Ghostbusters.II.1989.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":0,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8990000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:48:19","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ English \/ Arabic \/ Danish \/ Dutch \/ French \/ Spanish \/ German \/ Italian \/ Japanese \/ Korean \/ Norwegian \/ Portuguese \/ Spanish \/ Swedish \/ Turkish \/ Finnish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":284},"collection":{"name":"Ghostbusters Collection","tmdbId":2980,"images":[]},"id":247},{"title":"Ant-Man and the Wasp","originalTitle":"Ant-Man and the Wasp","alternateTitles":[{"sourceType":"tmdb","movieId":248,"title":"Ant-Man 2","sourceId":363088,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":328},{"sourceType":"tmdb","movieId":248,"title":"Ant-Man 2 - Ant-Man and the Wasp","sourceId":363088,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":456},{"sourceType":"tmdb","movieId":248,"title":"Marvel's Ant-Man and the Wasp","sourceId":363088,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1286},{"sourceType":"tmdb","movieId":248,"title":"Ant-Man et la Gu\u00eape","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3467},{"sourceType":"tmdb","movieId":248,"title":"MCU-20 - Ant-Man 2 - Ant-Man and the Wasp","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3468},{"sourceType":"tmdb","movieId":248,"title":"Hombre Hormiga y Avispa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3469},{"sourceType":"tmdb","movieId":248,"title":"Ant-Man 2 - Ant-Man et la Gu\u00eape","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3470},{"sourceType":"tmdb","movieId":248,"title":"\ub9c8\ube14 \uc564\ud2b8\ub9e8\uacfc \uc640\uc2a4\ud504","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3471},{"sourceType":"tmdb","movieId":248,"title":"El hombre hormiga y la avispa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3472},{"sourceType":"tmdb","movieId":248,"title":"MCU 18: Ant-Man And The Wasp","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3473},{"sourceType":"tmdb","movieId":248,"title":"Omul Furnica si Viespea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3474},{"sourceType":"tmdb","movieId":248,"title":"Ant-Mani dhe Grethi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4987},{"sourceType":"tmdb","movieId":248,"title":"Homem-Formiga e a Vespa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5365},{"sourceType":"tmdb","movieId":248,"title":"\u0427\u0435\u043b\u043e\u0432\u0435\u043a-\u041c\u0443\u0440\u0430\u0432\u0435\u0439 \u0438 \u041e\u0441a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5396},{"sourceType":"tmdb","movieId":248,"title":"Marvel Studios' Ant-Man and the Wasp","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5692},{"sourceType":"tmdb","movieId":248,"title":"Ant-Man y La Avispa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6198},{"sourceType":"tmdb","movieId":248,"title":"Ant-Man & La Gu\u00eape","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6271}],"secondaryYearSourceId":0,"sortTitle":"ant man wasp","sizeOnDisk":35981153398,"status":"released","overview":"Just when his time under house arrest is about to end, Scott Lang once again puts his freedom at risk to help Hope van Dyne and Dr. Hank Pym dive into the quantum realm and try to accomplish, against time and any chance of success, a very dangerous rescue mission.","inCinemas":"2018-07-04T00:00:00Z","physicalRelease":"2018-07-17T00:00:00Z","digitalRelease":"2018-10-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/248\/poster.jpg?lastWrite=637666431805603341","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eivQmS3wqzqnQWILHLc4FsEfcXP.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/248\/fanart.jpg?lastWrite=637619721354011002","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6P3c80EOm7BodndGBUAJHHsHKrp.jpg"}],"website":"https:\/\/www.marvel.com\/movies\/ant-man-and-the-wasp","year":2018,"hasFile":true,"youTubeTrailerId":"UUkn-enk2RU","studio":"Marvel Studios","path":"\/movies\/Ant-Man and the Wasp (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ant-Man and the Wasp (2018)","runtime":119,"cleanTitle":"antmanwasp","imdbId":"tt5095030","tmdbId":363088,"titleSlug":"363088","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-13T02:24:17Z","ratings":{"votes":10168,"value":7},"movieFile":{"movieId":248,"relativePath":"Ant-Man and the Wasp.2018-Remux-1080p.mkv","path":"\/movies\/Ant-Man and the Wasp (2018)\/Ant-Man and the Wasp.2018-Remux-1080p.mkv","size":35981153398,"dateAdded":"2018-10-14T04:50:23Z","sceneName":"Ant.Man.and.the.Wasp.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4787821,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ Portuguese \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":31735741,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:58:06","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":298},"collection":{"name":"Ant-Man Collection","tmdbId":422834,"images":[]},"id":248},{"title":"Appleseed Alpha","originalTitle":"Appleseed Alpha","alternateTitles":[{"sourceType":"tmdb","movieId":249,"title":"Appleseed \u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4549},{"sourceType":"tmdb","movieId":249,"title":"\u041f\u0440\u043e\u0435\u043a\u0442 \u0410\u043b\u044c\u0444\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4551},{"sourceType":"tmdb","movieId":249,"title":"\u042f\u0431\u043b\u043e\u0447\u043d\u043e\u0435 \u0437\u0435\u0440\u043d\u044b\u0448\u043a\u043e \u0410\u043b\u044c\u0444\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4552},{"sourceType":"tmdb","movieId":249,"title":"\u042f\u0431\u043b\u0443\u0447\u043d\u0435 \u0437\u0435\u0440\u043d\u044f: \u043f\u0440\u043e\u0435\u043a\u0442 \u0410\u043b\u044c\u0444\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4553}],"secondaryYearSourceId":0,"sortTitle":"appleseed alpha","sizeOnDisk":22197904398,"status":"released","overview":"Based on the comic book by the creator of Ghost in the Shell, a young female soldier Deunan and her cyborg partner Briareos survive through the post World War 3 apocalyptic New York in search of human's future hope, the legendary city of Olympus.","inCinemas":"2014-05-28T00:00:00Z","physicalRelease":"2014-07-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/249\/poster.jpg?lastWrite=637501235338566996","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yISvzOlV0x1D667oRcUBxxDR0LZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/249\/fanart.jpg?lastWrite=637651724527600800","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/j8Vrn2FizAXLFSHaKNWQaYcNgHL.jpg"}],"website":"","year":2014,"hasFile":true,"youTubeTrailerId":"4DtWCjogd1M","studio":"Stage 6 Films","path":"\/movies\/Appleseed Alpha (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Appleseed Alpha (2014)","runtime":90,"cleanTitle":"appleseedalpha","imdbId":"tt3638012","tmdbId":269650,"titleSlug":"269650","certification":"R","genres":["Animation","Science Fiction","Action"],"tags":[],"added":"2018-10-13T02:24:26Z","ratings":{"votes":271,"value":6.7},"movieFile":{"movieId":249,"relativePath":"Appleseed Alpha.2014-Remux-1080p.mkv","path":"\/movies\/Appleseed Alpha (2014)\/Appleseed Alpha.2014-Remux-1080p.mkv","size":22197904398,"dateAdded":"2018-10-14T20:07:44Z","sceneName":"Appleseed.Alpha.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA 5.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:33:15","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ Arabic \/ Dutch \/ French \/ French \/ German \/ Korean \/ Spanish \/ Turkish \/ English \/ Dutch \/ French \/ German \/ Korean \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":327},"collection":{"name":"Appleseed Collection","tmdbId":87800,"images":[]},"id":249},{"title":"Avengers: Age of Ultron","originalTitle":"Avengers: Age of Ultron","alternateTitles":[{"sourceType":"tmdb","movieId":250,"title":"Marvel Avengers: Age of Ultron","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":332},{"sourceType":"tmdb","movieId":250,"title":"The Avengers 2","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":333},{"sourceType":"tmdb","movieId":250,"title":"Marvel's Avengers: Age of Ultron","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":334},{"sourceType":"tmdb","movieId":250,"title":"The Avengers Age of Ultron","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":335},{"sourceType":"tmdb","movieId":250,"title":"The Avengers 2 - Age of Ultron","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":336},{"sourceType":"tmdb","movieId":250,"title":"Marvel's The Avengers 2: Age of Ultron","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":935},{"sourceType":"tmdb","movieId":250,"title":"Marvel Studios' Avengers: Age of Ultron","sourceId":99861,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":983},{"sourceType":"tmdb","movieId":250,"title":"Os Vingadores 2 - Era de Ultron","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3212},{"sourceType":"tmdb","movieId":250,"title":"Vingadores 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3213},{"sourceType":"tmdb","movieId":250,"title":"Avengers 2 - Age of Ultron","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3214},{"sourceType":"tmdb","movieId":250,"title":"\u590d\u4ec7\u8005\u8054\u76df2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3215},{"sourceType":"tmdb","movieId":250,"title":"Vengadores: la era de Ultr\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3218},{"sourceType":"tmdb","movieId":250,"title":"Avengers - L'\u00c8re d'Ultron","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3219},{"sourceType":"tmdb","movieId":250,"title":"Bossz\u00fa\u00e1ll\u00f3k: Ultron kora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3220},{"sourceType":"tmdb","movieId":250,"title":"\ub9c8\ube14 \uc5b4\ubca4\uc838\uc2a4, \uc5d0\uc774\uc9c0 \uc624\ube0c \uc6b8\ud2b8\ub860","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3221},{"sourceType":"tmdb","movieId":250,"title":"\uc5b4\ubca4\uc838\uc2a4 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3222},{"sourceType":"tmdb","movieId":250,"title":"\uc5b4\ubca4\uc838\uc2a4-\uc5d0\uc774\uc9c0 \uc624\ube0c \uc6b8\ud2b8\ub860","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3223},{"sourceType":"tmdb","movieId":250,"title":"Avengers: Era de Ultr\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3224},{"sourceType":"tmdb","movieId":250,"title":"Os Vingadores - A Era de Ultron","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3226},{"sourceType":"tmdb","movieId":250,"title":"Avengers 2: Vek Ultrona","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3227},{"sourceType":"tmdb","movieId":250,"title":"Vengadores 2 La era de Ultron","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5476}],"secondaryYearSourceId":0,"sortTitle":"avengers age ultron","sizeOnDisk":33935837062,"status":"released","overview":"When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth\u2019s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.","inCinemas":"2015-04-22T00:00:00Z","physicalRelease":"2015-09-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/250\/poster.jpg?lastWrite=637641344029680312","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4ssDuvEDkSArWEdyBl2X5EHvYKU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/250\/fanart.jpg?lastWrite=637625775861208325","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xnqust9Li4oxfhXD5kcPi3UC8i4.jpg"}],"website":"http:\/\/marvel.com\/movies\/movie\/193\/avengers_age_of_ultron","year":2015,"hasFile":true,"youTubeTrailerId":"JAUoeqvedMo","studio":"Marvel Studios","path":"\/movies\/Avengers Age of Ultron (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Avengers Age of Ultron (2015)","runtime":141,"cleanTitle":"avengersageultron","imdbId":"tt2395427","tmdbId":99861,"titleSlug":"99861","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-13T02:24:33Z","ratings":{"votes":18397,"value":7.3},"movieFile":{"movieId":250,"relativePath":"Avengers Age of Ultron.2015-Remux-1080p.mkv","path":"\/movies\/Avengers Age of Ultron (2015)\/Avengers Age of Ultron.2015-Remux-1080p.mkv","size":33935837062,"dateAdded":"2018-10-14T20:51:19Z","sceneName":"Avengers.Age.of.Ultron.2015.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Spanish \/ Hindi \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:21:18","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Spanish \/ Danish \/ Finnish \/ Norwegian \/ Swedish \/ English \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":335},"collection":{"name":"The Avengers Collection","tmdbId":86311,"images":[]},"id":250},{"title":"The Avengers","originalTitle":"The Avengers","alternateTitles":[{"sourceType":"tmdb","movieId":251,"title":"The Avengers 3D","sourceId":24428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":338},{"sourceType":"tmdb","movieId":251,"title":"The Avengers 1","sourceId":24428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":339},{"sourceType":"tmdb","movieId":251,"title":"The Avengers: An IMAX 3D Experience","sourceId":24428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":341},{"sourceType":"tmdb","movieId":251,"title":"Marvel Avengers Assemble","sourceId":24428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":342},{"sourceType":"tmdb","movieId":251,"title":"Marvel's The Avengers","sourceId":24428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":934},{"sourceType":"tmdb","movieId":251,"title":"Marvel Studios' The Avengers","sourceId":24428,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":982},{"sourceType":"tmdb","movieId":251,"title":"Marvel's The Avengers: Os Vingadores","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2672},{"sourceType":"tmdb","movieId":251,"title":"Os Vingadores","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2673},{"sourceType":"tmdb","movieId":251,"title":"Avengers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2674},{"sourceType":"tmdb","movieId":251,"title":"Les Avengers: le film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2675},{"sourceType":"tmdb","movieId":251,"title":"Tasujad","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2677},{"sourceType":"tmdb","movieId":251,"title":"Les Avengers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2679},{"sourceType":"tmdb","movieId":251,"title":"Avengers Assemble","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2680},{"sourceType":"tmdb","movieId":251,"title":"\ub9c8\ube14 \uc5b4\ubca4\uc838\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2682},{"sourceType":"tmdb","movieId":251,"title":"\uc5b4\ubca4\uc838\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2683},{"sourceType":"tmdb","movieId":251,"title":"Vengadores","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2684},{"sourceType":"tmdb","movieId":251,"title":"De Wrekers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2685},{"sourceType":"tmdb","movieId":251,"title":"Avengers 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2687},{"sourceType":"tmdb","movieId":251,"title":"\u0e14\u0e34 \u0e2d\u0e40\u0e27\u0e19\u0e40\u0e08\u0e2d\u0e23\u0e4c\u0e2a 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2688},{"sourceType":"tmdb","movieId":251,"title":"The Avengers (2012)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4596},{"sourceType":"tmdb","movieId":251,"title":"\u041c\u0441\u0442\u0438\u0442e\u043b\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5397},{"sourceType":"tmdb","movieId":251,"title":"Vengadores 1 The Avengers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5475},{"sourceType":"tmdb","movieId":251,"title":"\u590d\u4ec7\u8005\u8054\u76df1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5732},{"sourceType":"tmdb","movieId":251,"title":"Marvel: Los Vengadores","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6167}],"secondaryYearSourceId":0,"sortTitle":"avengers","sizeOnDisk":22854878557,"status":"released","overview":"When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!","inCinemas":"2012-04-25T00:00:00Z","physicalRelease":"2012-07-18T00:00:00Z","digitalRelease":"2014-09-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/251\/poster.jpg?lastWrite=637655185988480262","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/RYMX2wcKCBAr24UyPD7xwmjaTn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/251\/fanart.jpg?lastWrite=637655185989880242","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nNmJRkg8wWnRmzQDe2FwKbPIsJV.jpg"}],"website":"http:\/\/marvel.com\/avengers_movie\/","year":2012,"hasFile":true,"youTubeTrailerId":"hIR8Ar-Z4hw","studio":"Marvel Studios","path":"\/movies\/The Avengers (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Avengers (2012)","runtime":143,"cleanTitle":"theavengers","imdbId":"tt0848228","tmdbId":24428,"titleSlug":"24428","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-10-13T02:24:42Z","ratings":{"votes":25239,"value":7.7},"movieFile":{"movieId":251,"relativePath":"The Avengers.2012-Bluray-1080p.mkv","path":"\/movies\/The Avengers (2012)\/The Avengers.2012-Bluray-1080p.mkv","size":22854878557,"dateAdded":"2018-10-14T10:51:40Z","sceneName":"The.Avengers.2012.PROPER.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4970628,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":15568634,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1038","runTime":"2:22:55","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Spanish \/ Japanese \/ Chinese \/ Korean \/ Chinese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":316},"collection":{"name":"The Avengers Collection","tmdbId":86311,"images":[]},"id":251},{"title":"Captain America: Civil War","originalTitle":"Captain America: Civil War","alternateTitles":[{"sourceType":"tmdb","movieId":252,"title":"Captain America 3","sourceId":271110,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":343},{"sourceType":"tmdb","movieId":252,"title":"Marvel's Captain America: Civil War","sourceId":271110,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":344},{"sourceType":"tmdb","movieId":252,"title":"Captain America 3 - Civil War","sourceId":271110,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":345},{"sourceType":"tmdb","movieId":252,"title":"Capit\u00e3o Am\u00e9rica: Guerra Civil","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1422},{"sourceType":"tmdb","movieId":252,"title":"\u7f8e\u56fd\u961f\u957f3\uff1a\u5185\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1424},{"sourceType":"tmdb","movieId":252,"title":"Capitaine America: La Guerre Civile","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1425},{"sourceType":"tmdb","movieId":252,"title":"\u05e7\u05e4\u05d8\u05df \u05d0\u05de\u05e8\u05d9\u05e7\u05d4 3: \u05de\u05dc\u05d7\u05de\u05ea \u05d4\u05d0\u05d6\u05e8\u05d7\u05d9\u05dd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1426},{"sourceType":"tmdb","movieId":252,"title":"\ub9c8\ube14 \ucea1\ud2f4 \uc544\uba54\ub9ac\uce74 \uc2dc\ube4c \uc6cc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1427},{"sourceType":"tmdb","movieId":252,"title":"\ucea1\ud2f4 \uc544\uba54\ub9ac\uce74 \uc2dc\ube4c \uc6cc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1428},{"sourceType":"tmdb","movieId":252,"title":"Capit\u00e1n Am\u00e9rica 3 Guerra Civil","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1429},{"sourceType":"tmdb","movieId":252,"title":"Capit\u00e1n Am\u00e9rica: Civil War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1430},{"sourceType":"tmdb","movieId":252,"title":"MCU 14: Captain America: Civil War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1431},{"sourceType":"tmdb","movieId":252,"title":"\u041a\u0430\u043f\u0438\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430: \u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0441\u043a\u0430\u044f \u0432\u043e\u0439\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1432},{"sourceType":"tmdb","movieId":252,"title":"Kaptan Amerika: Kahramanlar\u0131n Sava\u015f\u0131","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1433},{"sourceType":"tmdb","movieId":252,"title":"Birinchi qasoskor 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1434},{"sourceType":"tmdb","movieId":252,"title":"Captain America 3: N\u1ed9i Chi\u1ebfn Si\u00eau Anh H\u00f9ng","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1435},{"sourceType":"tmdb","movieId":252,"title":"Capit\u00e3o Am\u00e9rica 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5025},{"sourceType":"tmdb","movieId":252,"title":"Marvel Studios' Captain America: Civil War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5693},{"sourceType":"tmdb","movieId":252,"title":"\u7f8e\u961f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5793},{"sourceType":"tmdb","movieId":252,"title":"Marvel - The First Avenger Civil War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6059}],"secondaryYearSourceId":0,"sortTitle":"captain america civil war","sizeOnDisk":11738883541,"status":"released","overview":"Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.","inCinemas":"2016-04-27T00:00:00Z","physicalRelease":"2016-08-02T00:00:00Z","digitalRelease":"2016-09-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/252\/poster.jpg?lastWrite=637661241827374577","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rAGiXaUfPzY7CDEyNKUofk3Kw2e.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/252\/fanart.jpg?lastWrite=637529774766048110","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kvRT3GwcnqGHzPjXIVrVPhUix7Z.jpg"}],"website":"http:\/\/marvel.com\/captainamericapremiere","year":2016,"hasFile":true,"youTubeTrailerId":"dKrVegVI0Us","studio":"Marvel Studios","path":"\/movies\/Captain America Civil War (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Captain America Civil War (2016)","runtime":147,"cleanTitle":"captainamericacivilwar","imdbId":"tt3498820","tmdbId":271110,"titleSlug":"271110","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-13T02:24:54Z","ratings":{"votes":18507,"value":7.4},"movieFile":{"movieId":252,"relativePath":"Captain America Civil War.2016-Bluray-1080p.mkv","path":"\/movies\/Captain America Civil War (2016)\/Captain America Civil War.2016-Bluray-1080p.mkv","size":11738883541,"dateAdded":"2018-10-13T13:06:04Z","sceneName":"Captain.America.Civil.War.2016.1080p.BluRay.X264-AMIABLE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9086000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:27:41","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":266},"collection":{"name":"Captain America Collection","tmdbId":131295,"images":[]},"id":252},{"title":"Captain America: The First Avenger","originalTitle":"Captain America: The First Avenger","alternateTitles":[{"sourceType":"tmdb","movieId":253,"title":"Captain America 1: The First Avenger","sourceId":1771,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":346},{"sourceType":"tmdb","movieId":253,"title":"Marvel's Captain America - The First Avenger","sourceId":1771,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":347},{"sourceType":"tmdb","movieId":253,"title":"Captain America 1","sourceId":1771,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":348},{"sourceType":"tmdb","movieId":253,"title":"Capit\u00e3o Am\u00e9rica: O Primeiro Vingador","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3838},{"sourceType":"tmdb","movieId":253,"title":"Capitaine America - Le premier vengeur","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3839},{"sourceType":"tmdb","movieId":253,"title":"Capit\u00e1n Am\u00e9rica: El primer vengador","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3841},{"sourceType":"tmdb","movieId":253,"title":"\ub9c8\ube14 \ucea1\ud2f4 \uc544\uba54\ub9ac\uce74, \ud37c\uc2a4\ud2b8 \uc5b4\ubca4\uc838","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3843},{"sourceType":"tmdb","movieId":253,"title":"\ucea1\ud2f4 \uc544\uba54\ub9ac\uce74: \ud37c\uc2a4\ud2b8 \uc5b4\ubca4\uc838","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3844},{"sourceType":"tmdb","movieId":253,"title":"MCU 1: Captain America: The First Avenger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3845},{"sourceType":"tmdb","movieId":253,"title":"\u041f\u0435\u0440\u0432\u044b\u0439 \u043c\u0441\u0442\u0438\u0442e\u043b\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5399},{"sourceType":"tmdb","movieId":253,"title":"\u041a\u0430\u043f\u0438\u0442\u0430\u043d \u0410\u043c\u0435\u0440\u0438\u043a\u0430 \u041f\u0435\u0440\u0432\u044b\u0439 \u043c\u0441\u0442\u0438\u0442e\u043b\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5400},{"sourceType":"tmdb","movieId":253,"title":"Marvel Studios' Captain America: The First Avenger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5694},{"sourceType":"tmdb","movieId":253,"title":"\u7f8e\u56fd\u961f\u957f1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5708},{"sourceType":"tmdb","movieId":253,"title":"\u7f8e\u961f1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5794},{"sourceType":"tmdb","movieId":253,"title":"\u7f8e\u56fd\u961f\u957f\uff1a\u590d\u4ec7\u8005\u5148\u950b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5795}],"secondaryYearSourceId":0,"sortTitle":"captain america first avenger","sizeOnDisk":12108085976,"status":"released","overview":"During World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull \u2013 Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.","inCinemas":"2011-07-22T00:00:00Z","physicalRelease":"2011-11-23T00:00:00Z","digitalRelease":"2012-07-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/253\/poster.jpg?lastWrite=637655186031879641","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vSNxAJTlD0r02V9sPYpOjqDZXUK.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/253\/fanart.jpg?lastWrite=637655186033319620","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yFuKvT4Vm3sKHdFY4eG6I4ldAnn.jpg"}],"website":"http:\/\/captainamerica.marvel.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"W4DlMggBPvc","studio":"Marvel Studios","path":"\/movies\/Captain America The First Avenger (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Captain America The First Avenger (2011)","runtime":124,"cleanTitle":"captainamericafirstavenger","imdbId":"tt0458339","tmdbId":1771,"titleSlug":"1771","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-13T02:25:04Z","ratings":{"votes":17258,"value":7},"movieFile":{"movieId":253,"relativePath":"Captain America The First Avenger.2011-Bluray-1080p.mkv","path":"\/movies\/Captain America The First Avenger (2011)\/Captain America The First Avenger.2011-Bluray-1080p.mkv","size":12108085976,"dateAdded":"2018-10-14T08:45:19Z","sceneName":"Captain.America.The.First.Avenger.2011.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":11266000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:04:11","scanType":"Progressive","subtitles":"English \/ Chinese \/ Czech \/ Spanish \/ Finnish \/ French \/ Greek \/ Chinese \/ Italian \/ Polish \/ rom \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":310},"collection":{"name":"Captain America Collection","tmdbId":131295,"images":[]},"id":253},{"title":"Sin City","originalTitle":"Sin City","alternateTitles":[{"sourceType":"tmdb","movieId":254,"title":"Frank Miller's Sin City","sourceId":187,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":349},{"sourceType":"tmdb","movieId":254,"title":"La ciudad del pecado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3553},{"sourceType":"tmdb","movieId":254,"title":"G\u00fcnah Sheheri","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3554},{"sourceType":"tmdb","movieId":254,"title":"Sin City: \u0413\u0440\u0430\u0434 \u043d\u0430 \u0433\u0440\u0435\u0445\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3555},{"sourceType":"tmdb","movieId":254,"title":"Sin City 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3556},{"sourceType":"tmdb","movieId":254,"title":"Sin City 1 (Extended)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3557},{"sourceType":"tmdb","movieId":254,"title":"Patu linn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3558},{"sourceType":"tmdb","movieId":254,"title":"Sin City (Ciudad del pecado)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3559},{"sourceType":"tmdb","movieId":254,"title":"Sin City - La ville du vice et du p\u00e9ch\u00e9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3560},{"sourceType":"tmdb","movieId":254,"title":"Sin City - Recut, Unrated, Extended","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3561},{"sourceType":"tmdb","movieId":254,"title":"\uc52c \uc2dc\ud2f0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3562},{"sourceType":"tmdb","movieId":254,"title":"Nuodemiu miestas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3563},{"sourceType":"tmdb","movieId":254,"title":"Grad greha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3564},{"sourceType":"tmdb","movieId":254,"title":"Mesto greha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3565},{"sourceType":"tmdb","movieId":254,"title":"Thanh Pho Toi Ac","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3567},{"sourceType":"tmdb","movieId":254,"title":"Sin City - Recut, Extended","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5167},{"sourceType":"tmdb","movieId":254,"title":"Sin City - A b\u0171n v\u00e1rosa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":6238}],"secondaryYearSourceId":0,"sortTitle":"sin city","sizeOnDisk":11714351832,"status":"released","overview":"Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it dark\u2026 Hard-boiled. Then there are those who call it home \u2014 Crooked cops, sexy dames, desperate vigilantes. Some are seeking revenge, others lust after redemption, and then there are those hoping for a little of both. A universe of unlikely and reluctant heroes still trying to do the right thing in a city that refuses to care.","inCinemas":"2005-04-01T00:00:00Z","physicalRelease":"2009-03-25T00:00:00Z","digitalRelease":"2007-12-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/254\/poster.jpg?lastWrite=637650860269438792","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1Br0CXgpDIgF0ue7HVhO08bn7kn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/254\/fanart.jpg?lastWrite=637654321433357125","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/t9kQnqiaxQ8TLB25rTzDKLd0fdM.jpg"}],"website":"http:\/\/www.miramax.com\/movie\/sin-city\/","year":2005,"hasFile":true,"youTubeTrailerId":"PRtz8JQw01A","studio":"Dimension Films","path":"\/movies\/Sin City (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Sin City (2005)","runtime":124,"cleanTitle":"sincity","imdbId":"tt0401792","tmdbId":187,"titleSlug":"187","certification":"R","genres":["Thriller","Action","Crime"],"tags":[],"added":"2018-10-13T02:25:24Z","ratings":{"votes":6326,"value":7.4},"movieFile":{"movieId":254,"relativePath":"Sin City.2005-Bluray-1080p.mkv","path":"\/movies\/Sin City (2005)\/Sin City.2005-Bluray-1080p.mkv","size":11714351832,"dateAdded":"2018-10-14T07:40:35Z","sceneName":"Sin.City.2005.Unrated.Recut.Extended.1080p.BluRay.x264-Japhson","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9506000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:21:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"Japhson","edition":"Unrated","id":304},"collection":{"name":"Sin City Collection","tmdbId":135179,"images":[]},"id":254},{"title":"Cloudy with a Chance of Meatballs 2","originalTitle":"Cloudy with a Chance of Meatballs 2","alternateTitles":[{"sourceType":"tmdb","movieId":256,"title":"Cloudy with a Chance of Meatballs 2 - 3D","sourceId":109451,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":351},{"sourceType":"tmdb","movieId":256,"title":"Lluvia de Hamburguesas 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2307},{"sourceType":"tmdb","movieId":256,"title":"T\u00e1 Chovendo Hamb\u00farguer 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2308},{"sourceType":"tmdb","movieId":256,"title":"\u5929\u964d\u7f8e\u98df2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2309},{"sourceType":"tmdb","movieId":256,"title":"Taevast Sajab Lihapalle 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2310},{"sourceType":"tmdb","movieId":256,"title":"L'\u00eele des Miam-nimaux : Temp\u00eate de boulettes g\u00e9antes 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2311},{"sourceType":"tmdb","movieId":256,"title":"Temp\u00eate de boulettes g\u00e9antes 2 - L'\u00cele des Miam-nimaux","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2312},{"sourceType":"tmdb","movieId":256,"title":"\u0392\u03c1\u03ad\u03c7\u03b5\u03b9 \u039a\u03b5\u03c6\u03c4\u03ad\u03b4\u03b5\u03c2 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2313},{"sourceType":"tmdb","movieId":256,"title":"Obla\u010dno s \u0107uftama 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2314},{"sourceType":"tmdb","movieId":256,"title":"Piovono polpette 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2315},{"sourceType":"tmdb","movieId":256,"title":"\ud558\ub298\uc5d0\uc11c \uc74c\uc2dd\uc774 \ub0b4\ub9b0\ub2e4\uba74 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2316},{"sourceType":"tmdb","movieId":256,"title":"Lluvia De Hamburguesas 2: La Venganza De Las Sobras","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2317},{"sourceType":"tmdb","movieId":256,"title":"Lluvia de hamburguesas 2: La venganza de las sobras es una pel\u00edcula animada dirigida por Cody Cameron y Kris Pearn. Es la secuela de Lluvia de hamburguesas, basado en un popular libro hom\u00f3nimo norteamericano llamado La Lluvia de las alb\u00f3ndigas.","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2318},{"sourceType":"tmdb","movieId":256,"title":"Het Regent Gehaktballen 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2319},{"sourceType":"tmdb","movieId":256,"title":"Hjelp Det regner Kj\u00f8ttboller 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2320},{"sourceType":"tmdb","movieId":256,"title":"\u304f\u3082\u308a\u3068\u304d\u3069\u304d\u30df\u30fc\u30c8\u30dc\u30fc\u30eb\uff12\u3000\u30d5\u30fc\u30c9\u30fb\u30a2\u30cb\u30de\u30eb\u8a95\u751f\u306e\u79d8\u5bc6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5680},{"sourceType":"tmdb","movieId":256,"title":"\u041e\u0431\u043b\u0430\u0447\u043d\u043e... 2: \u041c\u0435\u0441\u0442\u044c \u0413\u041c\u041e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5702}],"secondaryYearSourceId":0,"sortTitle":"cloudy with chance meatballs 2","sizeOnDisk":7038391740,"status":"released","overview":"After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.","inCinemas":"2013-09-26T00:00:00Z","physicalRelease":"2014-04-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/256\/poster.jpg?lastWrite=637662971255310134","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tT2DN1tWk1zpCxqvaaNY8yP8Awn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/256\/fanart.jpg?lastWrite=637662971257550096","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/i9LjD038ZRnEkWFSFidhNKyARIN.jpg"}],"website":"","year":2013,"hasFile":true,"youTubeTrailerId":"3QCJTbHU60U","studio":"Sony Pictures","path":"\/movies\/Cloudy with a Chance of Meatballs 2 (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Cloudy with a Chance of Meatballs 2 (2013)","runtime":95,"cleanTitle":"cloudywithchancemeatballs2","imdbId":"tt1985966","tmdbId":109451,"titleSlug":"109451","certification":"PG","genres":["Animation","Family","Comedy"],"tags":[],"added":"2018-10-13T02:26:01Z","ratings":{"votes":2367,"value":6.4},"movieFile":{"movieId":256,"relativePath":"Cloudy with a Chance of Meatballs 2.2013-Bluray-1080p.mkv","path":"\/movies\/Cloudy with a Chance of Meatballs 2 (2013)\/Cloudy with a Chance of Meatballs 2.2013-Bluray-1080p.mkv","size":7038391740,"dateAdded":"2018-10-13T23:12:57Z","sceneName":"Cloudy.with.a.Chance.of.Meatballs.2.2013.1080p.BluRay.x264-SPARKS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8387000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:34:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":285},"collection":{"name":"Cloudy with a Chance of Meatballs Collection","tmdbId":177467,"images":[]},"id":256},{"title":"Inferno","originalTitle":"Inferno","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"inferno","sizeOnDisk":9385318583,"status":"released","overview":"After waking up in a hospital with amnesia, professor Robert Langdon and a doctor must race against time to foil a deadly global plot.","inCinemas":"2016-10-13T00:00:00Z","physicalRelease":"2017-01-24T00:00:00Z","digitalRelease":"2017-03-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/257\/poster.jpg?lastWrite=637640479453632956","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dtMJQzCxw2AY6tfcxhzlFpiD3BM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/257\/fanart.jpg?lastWrite=637640479455632922","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/irmIOi0wTnNtzG2uNCGIjjpjaMJ.jpg"}],"website":"http:\/\/www.infernothemovie.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"RH2BD49sEZI","studio":"Columbia Pictures","path":"\/movies\/Inferno (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Inferno (2016)","runtime":121,"cleanTitle":"inferno","imdbId":"tt3062096","tmdbId":207932,"titleSlug":"207932","certification":"PG-13","genres":["Mystery","Thriller","Drama"],"tags":[],"added":"2018-10-13T02:26:27Z","ratings":{"votes":5198,"value":6},"movieFile":{"movieId":257,"relativePath":"Inferno.2016-Bluray-1080p.mkv","path":"\/movies\/Inferno (2016)\/Inferno.2016-Bluray-1080p.mkv","size":9385318583,"dateAdded":"2018-10-18T22:05:58Z","sceneName":"Inferno.2016.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8788000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:01:35","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":389},"collection":{"name":"The Robert Langdon Collection","tmdbId":115776,"images":[]},"id":257},{"title":"2010","originalTitle":"2010","alternateTitles":[{"sourceType":"tmdb","movieId":258,"title":"2010: Odyssey Two","sourceId":4437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":355},{"sourceType":"tmdb","movieId":258,"title":"2010\u5a01\u9707\u592a\u9633\u795e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1360},{"sourceType":"tmdb","movieId":258,"title":"\u5a01\u9707\u592a\u9633\u795e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1361},{"sourceType":"tmdb","movieId":258,"title":"2010: Druh\u00e1 vesm\u00edrn\u00e1 odysea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1362},{"sourceType":"tmdb","movieId":258,"title":"2010 - Odisea dos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1363},{"sourceType":"tmdb","movieId":258,"title":"2010 Odisea 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1364},{"sourceType":"tmdb","movieId":258,"title":"2010: El A\u00f1o Que Hicimos Contacto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1365},{"sourceType":"tmdb","movieId":258,"title":"2010 - O Ano do Contacto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":1366},{"sourceType":"tmdb","movieId":258,"title":"2010\u5e74","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4548},{"sourceType":"tmdb","movieId":258,"title":"2010 - O Ano em que Faremos Contato","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5200},{"sourceType":"tmdb","movieId":258,"title":"2010 The Year We Make Contact","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5824}],"secondaryYearSourceId":0,"sortTitle":"2010","sizeOnDisk":9353015708,"status":"released","overview":"While planet Earth poises on the brink of nuclear self-destruction, a team of Russian and American scientists aboard the Leonov hurtles to a rendezvous with the still-orbiting Discovery spacecraft and its sole known survivor, the homicidal computer HAL.","inCinemas":"1984-12-06T00:00:00Z","physicalRelease":"2001-02-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/258\/poster.jpg?lastWrite=637562639073438714","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mEWKXuCMv7mFMxXVSTI3v8UOQuq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/258\/fanart.jpg?lastWrite=637645669078513258","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8zvo2J1rKbzcfxaX9lHRgHgOEf0.jpg"}],"website":"","year":1984,"hasFile":true,"youTubeTrailerId":"Gyf8QWoL7T0","studio":"Metro-Goldwyn-Mayer","path":"\/movies\/2010 (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/2010 (1984)","runtime":116,"cleanTitle":"2010","imdbId":"tt0086837","tmdbId":4437,"titleSlug":"4437","certification":"PG","genres":["Thriller","Science Fiction"],"tags":[],"added":"2018-10-13T02:26:37Z","ratings":{"votes":666,"value":6.7},"movieFile":{"movieId":258,"relativePath":"2010.1984-Bluray-1080p.mkv","path":"\/movies\/2010 (1984)\/2010.1984-Bluray-1080p.mkv","size":9353015708,"dateAdded":"2018-10-14T04:13:43Z","sceneName":"2010.The.Year.We.Make.Contact.1984.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9246000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:55:55","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":295},"collection":{"name":"The Space Odyssey Series","tmdbId":4438,"images":[]},"id":258},{"title":"Ghost in the Shell: Stand Alone Complex - The Laughing Man","originalTitle":"\u653b\u6bbb\u6a5f\u52d5\u968a Stand Alone Complex The Laughing Man","alternateTitles":[{"sourceType":"tmdb","movieId":259,"title":"Ghost in the Shell: SAC - The Laughing Man","sourceId":18839,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":358},{"sourceType":"tmdb","movieId":259,"title":"Ghost in the Shell - The Laughing Man","sourceId":18839,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":359},{"sourceType":"tmdb","movieId":259,"title":"O Fantasma do Futuro - O Homem Sorridente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4608},{"sourceType":"tmdb","movieId":259,"title":"Ghost in the Shell - le rieur","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4609},{"sourceType":"tmdb","movieId":259,"title":"Cidade Assombrada - Complexo da Solid\u00e3o - O Homem Sorridente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4610}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell stand alone complex laughing man","sizeOnDisk":11729036855,"status":"released","overview":"The year is 2030 and six years have passed since a criminal known only as \"The Laughing Man\" swept through top medical nanotechnology firms committing acts of cyber-terrorism, kidnapping, and espionage leaving no known suspects. New information is revealed, as Section 9 enters the hunt for a suspect capable of unfathomable actions in this compilation of Stand Alone Complex content.","inCinemas":"2005-01-01T00:00:00Z","physicalRelease":"2018-12-06T00:00:00Z","digitalRelease":"2008-02-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/259\/poster.jpg?lastWrite=637651724787476673","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kv5tAbEkc6TrBaRkCmRqTJpTYyU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/259\/fanart.jpg?lastWrite=637625775996405041","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zEHueUy6sWc09AXaDfcqT4Op81x.jpg"}],"website":"http:\/\/www.productionig.com\/contents\/works_sp\/03_\/index.html","year":2005,"hasFile":true,"youTubeTrailerId":"","studio":"K\u00f4kaku Kid\u00f4tai Seisaku Iinkai","path":"\/movies\/Ghost in the Shell Stand Alone Complex - The Laughing Man (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell Stand Alone Complex - The Laughing Man (2005)","runtime":160,"cleanTitle":"ghostinshellstandalonecomplexlaughingman","imdbId":"tt1024215","tmdbId":18839,"titleSlug":"18839","certification":"PG","genres":["Science Fiction","Animation","Action"],"tags":[],"added":"2018-10-13T02:27:58Z","ratings":{"votes":75,"value":7.7},"movieFile":{"movieId":259,"relativePath":"Ghost in the Shell Stand Alone Complex - The Laughing Man.2005-Bluray-1080p.mkv","path":"\/movies\/Ghost in the Shell Stand Alone Complex - The Laughing Man (2005)\/Ghost in the Shell Stand Alone Complex - The Laughing Man.2005-Bluray-1080p.mkv","size":11729036855,"dateAdded":"2018-10-14T20:16:09Z","sceneName":"Ghost.In.The.Shell.Stand.Alone.Complex.The.Laughing.Man.2005.1080p.BluRay.x264-MOOVEE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":768000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ Japanese","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8240000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:40:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MOOVEE","edition":"","id":328},"collection":{"name":"Ghost in the Shell: Stand Alone Complex Collection","tmdbId":443996,"images":[]},"id":259},{"title":"X-Men: Apocalypse","originalTitle":"X-Men: Apocalypse","alternateTitles":[{"sourceType":"tmdb","movieId":261,"title":"X-Men 9 - Apocalypse","sourceId":246655,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":569},{"sourceType":"tmdb","movieId":261,"title":"X-Men 8 - Apocalypse","sourceId":246655,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":889},{"sourceType":"tmdb","movieId":261,"title":"X-Men 6 - Apocalipse","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4278},{"sourceType":"tmdb","movieId":261,"title":"X\u6218\u8b66\uff1a\u5929\u542f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4279},{"sourceType":"tmdb","movieId":261,"title":"X-Men: Apokalipszis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4280},{"sourceType":"tmdb","movieId":261,"title":"X-\u05de\u05df: \u05d0\u05e4\u05d5\u05e7\u05dc\u05d9\u05e4\u05e1\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4281},{"sourceType":"tmdb","movieId":261,"title":"G'aroyib odamlar: Apokalipsis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4282}],"secondaryYearSourceId":0,"sortTitle":"x men apocalypse","sizeOnDisk":35410873623,"status":"released","overview":"After the re-emergence of the world's first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.","inCinemas":"2016-05-18T00:00:00Z","physicalRelease":"2016-09-19T00:00:00Z","digitalRelease":"2016-07-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/261\/poster.jpg?lastWrite=637277441493534297","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2mtQwJKVKQrZgTz49Dizb25eOQQ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/261\/fanart.jpg?lastWrite=637651725948618140","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2ex2beZ4ssMeOduLD0ILzXKCiep.jpg"}],"website":"http:\/\/www.foxmovies.com\/movies\/x-men-apocalypse","year":2016,"hasFile":true,"youTubeTrailerId":"Jer8XjMrUB4","studio":"The Donners' Company","path":"\/movies\/X-Men Apocalypse (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X-Men Apocalypse (2016)","runtime":144,"cleanTitle":"xmenapocalypse","imdbId":"tt3385516","tmdbId":246655,"titleSlug":"246655","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-13T16:08:05Z","ratings":{"votes":10663,"value":6.5},"movieFile":{"movieId":261,"relativePath":"X-Men Apocalypse.2016-Remux-1080p.mkv","path":"\/movies\/X-Men Apocalypse (2016)\/X-Men Apocalypse.2016-Remux-1080p.mkv","size":35410873623,"dateAdded":"2018-10-18T22:21:53Z","sceneName":"X-Men.Apocalypse.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ German \/ Italian \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:23:59","scanType":"Progressive","subtitles":"English \/ English \/ French \/ French \/ Dutch \/ German \/ German \/ Italian \/ Italian \/ Turkish \/ Turkish \/ French \/ Dutch \/ German \/ Italian"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":390},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":261},{"title":"X-Men: Days of Future Past","originalTitle":"X-Men: Days of Future Past","alternateTitles":[{"sourceType":"tmdb","movieId":262,"title":"X-Men 7 - Days of Future Past","sourceId":127585,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":363},{"sourceType":"tmdb","movieId":262,"title":"X-Men: Days of Future Past 3D","sourceId":127585,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":365},{"sourceType":"tmdb","movieId":262,"title":"X-Men D\u00edas del futuro pasado Rogue Cut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4168},{"sourceType":"tmdb","movieId":262,"title":"X-\u05de\u05df: \u05d4\u05e2\u05ea\u05d9\u05d3 \u05e9\u05d4\u05d9\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4169},{"sourceType":"tmdb","movieId":262,"title":"\uc5d1\uc2a4\ub9e8: \ub370\uc774\uc988 \uc624\ube0c \ud4e8\ucc98 \ud328\uc2a4\ud2b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4170},{"sourceType":"tmdb","movieId":262,"title":"X-Men: Days of Future Past - The Rogue Cut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4171},{"sourceType":"tmdb","movieId":262,"title":"X-Men: D\u00edas Del Futuro Pasado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4283},{"sourceType":"tmdb","movieId":262,"title":"Iksmenai: Pra\u0117jusios ateities dienos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5492},{"sourceType":"tmdb","movieId":262,"title":"X-Men: First Class 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6254}],"secondaryYearSourceId":0,"sortTitle":"x men days future past","sizeOnDisk":35992448240,"status":"released","overview":"The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past \u2013 to save our future.","inCinemas":"2014-05-15T00:00:00Z","physicalRelease":"2014-10-15T00:00:00Z","digitalRelease":"2016-05-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/262\/poster.jpg?lastWrite=637616262648661738","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bvN8iUpHyBIvniUk4e52SUZMA7Z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/262\/fanart.jpg?lastWrite=637657782472642927","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hUPgIibqZlwbhs4N08cPzzc4f5K.jpg"}],"website":"http:\/\/www.x-menmovies.com\/","year":2014,"hasFile":true,"youTubeTrailerId":"gsjtg7m1MMM","studio":"Marvel Entertainment","path":"\/movies\/X-Men Days of Future Past (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X-Men Days of Future Past (2014)","runtime":132,"cleanTitle":"xmendaysfuturepast","imdbId":"tt1877832","tmdbId":127585,"titleSlug":"127585","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-13T16:08:05Z","ratings":{"votes":12707,"value":7.5},"movieFile":{"movieId":262,"relativePath":"X-Men Days of Future Past.2014-Remux-1080p.mkv","path":"\/movies\/X-Men Days of Future Past (2014)\/X-Men Days of Future Past.2014-Remux-1080p.mkv","size":35992448240,"dateAdded":"2018-10-16T02:59:51Z","sceneName":"X-Men.Days.of.Future.Past.2014.THE.ROGUE.CUT.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ Spanish \/ French \/ English","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:28:45","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ French \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"ROGUE CUT","id":371},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":262},{"title":"Dark Phoenix","originalTitle":"Dark Phoenix","alternateTitles":[{"sourceType":"tmdb","movieId":263,"title":"X-Men: Dark Phoenix","sourceId":320288,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":804},{"sourceType":"tmdb","movieId":263,"title":"X\u6218\u8b66\u524d\u4f204","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2094},{"sourceType":"tmdb","movieId":263,"title":"X\u6218\u8b66\uff1a\u8d85\u65b0\u661f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2095},{"sourceType":"tmdb","movieId":263,"title":"X\u6218\u8b66\uff1a\u9ed1\u51e4\u51f0\u4f20\u5947","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2096},{"sourceType":"tmdb","movieId":263,"title":"X-Men: \u010cern\u00fd F\u00e9nix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2097},{"sourceType":"tmdb","movieId":263,"title":"Fenix Oscura","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2098},{"sourceType":"tmdb","movieId":263,"title":"X-Men 10 - Dark Phoenix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2099},{"sourceType":"tmdb","movieId":263,"title":"X-\u05de\u05df: \u05d4\u05e4\u05e0\u05d9\u05e7\u05e1 \u05d4\u05d0\u05e4\u05dc\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2100},{"sourceType":"tmdb","movieId":263,"title":"X-Men: \u010cierny F\u00e9nix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2101},{"sourceType":"tmdb","movieId":263,"title":"G\u02bbaroyib odamlar: Qora Feniks","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2102},{"sourceType":"tmdb","movieId":263,"title":"\uc5d1\uc2a4\ub9e8: \ub2e4\ud06c \ud53c\ub2c9\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5280},{"sourceType":"tmdb","movieId":263,"title":"X-Men F\u00eanix Negra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5383},{"sourceType":"tmdb","movieId":263,"title":"X-Men 12 - Dark Phoenix","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5465}],"secondaryYearSourceId":0,"sortTitle":"dark phoenix","sizeOnDisk":9385974896,"status":"released","overview":"The X-Men face their most formidable and powerful foe when one of their own, Jean Grey, starts to spiral out of control. During a rescue mission in outer space, Jean is nearly killed when she's hit by a mysterious cosmic force. Once she returns home, this force not only makes her infinitely more powerful, but far more unstable. The X-Men must now band together to save her soul and battle aliens that want to use Grey's new abilities to rule the galaxy.","inCinemas":"2019-06-05T00:00:00Z","physicalRelease":"2019-09-17T00:00:00Z","digitalRelease":"2019-09-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/263\/poster.jpg?lastWrite=637616262043911868","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kZv92eTc0Gg3mKxqjjDAM73z9cy.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/263\/fanart.jpg?lastWrite=637547936257460933","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cjRUhKyt2Jo3V1KNzc5tpPNfccG.jpg"}],"website":"http:\/\/darkphoenix.com","year":2019,"hasFile":true,"youTubeTrailerId":"azvR__GRQic","studio":"The Donners' Company","path":"\/movies\/Dark Phoenix (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Dark Phoenix (2019)","runtime":114,"cleanTitle":"darkphoenix","imdbId":"tt6565702","tmdbId":320288,"titleSlug":"320288","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-10-13T16:08:07Z","ratings":{"votes":4728,"value":6},"movieFile":{"movieId":263,"relativePath":"Dark Phoenix.2019-Bluray-1080p.mkv","path":"\/movies\/Dark Phoenix (2019)\/Dark Phoenix.2019-Bluray-1080p.mkv","size":9385974896,"dateAdded":"2019-08-29T16:55:50Z","sceneName":"Dark.Phoenix.2019.1080p.BluRay.x264-GECKOS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9479000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:53:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"geckos","edition":"","id":596},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":263},{"title":"X-Men","originalTitle":"X-Men","alternateTitles":[{"sourceType":"tmdb","movieId":266,"title":"X-Men: The Movie","sourceId":36657,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":368},{"sourceType":"tmdb","movieId":266,"title":"X-Men 1","sourceId":36657,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":369},{"sourceType":"tmdb","movieId":266,"title":"X-Men I","sourceId":36657,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":888},{"sourceType":"tmdb","movieId":266,"title":"x man","sourceId":36657,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1276},{"sourceType":"tmdb","movieId":266,"title":"X-Men 1 - O Filme","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2007},{"sourceType":"tmdb","movieId":266,"title":"X-mehed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2008},{"sourceType":"tmdb","movieId":266,"title":"X-\u05de\u05df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2009},{"sourceType":"tmdb","movieId":266,"title":"\uc5d1\uc2a4\ub9e8 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2010},{"sourceType":"tmdb","movieId":266,"title":"Mozje X","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2011},{"sourceType":"tmdb","movieId":266,"title":"X-\u0e40\u0e21\u0e47\u0e19 \u0e28\u0e36\u0e01\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e1e\u0e25\u0e31\u0e07\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e42\u0e25\u0e01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2012},{"sourceType":"tmdb","movieId":266,"title":"G'aroyib odamlar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2013},{"sourceType":"tmdb","movieId":266,"title":"Iks-odamlar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2014},{"sourceType":"tmdb","movieId":266,"title":"X-odamlar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2015},{"sourceType":"tmdb","movieId":266,"title":"X-Men (2000)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4217},{"sourceType":"tmdb","movieId":266,"title":"X-Men 1 The Movie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6017}],"secondaryYearSourceId":0,"sortTitle":"x men","sizeOnDisk":13311975620,"status":"released","overview":"Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.","inCinemas":"2000-07-13T00:00:00Z","physicalRelease":"2000-08-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/266\/poster.jpg?lastWrite=637629235814502724","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bRDAc4GogyS9ci3ow7UnInOcriN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/266\/fanart.jpg?lastWrite=637644804903991463","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/a6MwSrIKmMjs5b8os7eEgQk05yx.jpg"}],"website":"","year":2000,"hasFile":true,"youTubeTrailerId":"VNxwlx6etXI","studio":"Marvel Enterprises","path":"\/movies\/X-Men (2000)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X-Men (2000)","runtime":104,"cleanTitle":"xmen","imdbId":"tt0120903","tmdbId":36657,"titleSlug":"36657","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-13T16:08:10Z","ratings":{"votes":8962,"value":7},"movieFile":{"movieId":266,"relativePath":"X-Men.2000-Bluray-1080p.mkv","path":"\/movies\/X-Men (2000)\/X-Men.2000-Bluray-1080p.mkv","size":13311975620,"dateAdded":"2018-10-14T12:10:45Z","sceneName":"X-Men.2000.REMASTERED.1080p.BluRay.x264.DTS-HD.MA.5.1-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3812407,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13035582,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:44:25","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Spanish \/ French \/ Spanish \/ Danish \/ Dutch \/ Finnish \/ German \/ Italian \/ Japanese \/ Japanese \/ Japanese \/ Norwegian \/ Swedish \/ Chinese \/ Czech \/ Chinese \/ Polish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"REMASTERED","id":320},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":266},{"title":"X-Men Origins: Wolverine","originalTitle":"X-Men Origins: Wolverine","alternateTitles":[{"sourceType":"tmdb","movieId":268,"title":"X-Men 4 - Wolverine","sourceId":2080,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":371},{"sourceType":"tmdb","movieId":268,"title":"X-Men IV - Wolverine","sourceId":2080,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":372},{"sourceType":"tmdb","movieId":268,"title":"X-Men 4: Origins - Wolverine","sourceId":2080,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":373},{"sourceType":"tmdb","movieId":268,"title":"X\u6218\u8b66\u524d\u4f20\uff1a\u91d1\u521a\u72fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2957},{"sourceType":"tmdb","movieId":268,"title":"\uc5d1\uc2a4\ub9e8 \ud0c4\uc0dd: \uc6b8\ubc84\ub9b0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2958},{"sourceType":"tmdb","movieId":268,"title":"X-Men or\u00edgenes: Wolverine","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2959},{"sourceType":"tmdb","movieId":268,"title":"\u041b\u044e\u0434\u0438 \u0438\u043a\u0441 \u041d\u0430\u0447\u0430\u043b\u043e \u0420\u043e\u0441\u043e\u043c\u0430\u0445\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2960},{"sourceType":"tmdb","movieId":268,"title":"\u041b\u044e\u0434\u0438 \u0406\u043a\u0441. \u041f\u043e\u0447\u0430\u0442\u043e\u043a: \u0420\u043e\u0441\u043e\u043c\u0430\u0445\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2961},{"sourceType":"tmdb","movieId":268,"title":"\u041b\u044e\u0434\u0438-\u0425: \u0420\u043e\u0441\u043e\u043c\u0430\u0445\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2962}],"secondaryYearSourceId":0,"sortTitle":"x men origins wolverine","sizeOnDisk":8533241568,"status":"released","overview":"After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.","inCinemas":"2009-04-28T00:00:00Z","physicalRelease":"2009-04-29T00:00:00Z","digitalRelease":"2010-07-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/268\/poster.jpg?lastWrite=637649995475131187","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mQglrQzgZT0Oj9cQYPsLI8dsEqB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/268\/fanart.jpg?lastWrite=637631830321004373","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wvqdJLVh0mSblly7UnYFPEk04Wd.jpg"}],"website":"http:\/\/www.x-menorigins.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"8TQ-gD4UCmI","studio":"Marvel Entertainment","path":"\/movies\/X-Men Origins Wolverine (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X-Men Origins Wolverine (2009)","runtime":107,"cleanTitle":"xmenoriginswolverine","imdbId":"tt0458525","tmdbId":2080,"titleSlug":"2080","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2018-10-13T16:08:28Z","ratings":{"votes":8448,"value":6.3},"movieFile":{"movieId":268,"relativePath":"X-Men Origins Wolverine.2009-Bluray-1080p.mkv","path":"\/movies\/X-Men Origins Wolverine (2009)\/X-Men Origins Wolverine.2009-Bluray-1080p.mkv","size":8533241568,"dateAdded":"2018-10-14T07:55:06Z","sceneName":"X-Men.Origins.Wolverine.2009.1080p.BluRay.x264-METiS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":768000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9821000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:47:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"METiS","edition":"","id":305},"collection":{"name":"The Wolverine Collection","tmdbId":453993,"images":[]},"id":268},{"title":"The Chronicles of Narnia: The Voyage of the Dawn Treader","originalTitle":"The Chronicles of Narnia: The Voyage of the Dawn Treader","alternateTitles":[{"sourceType":"tmdb","movieId":270,"title":"The Chronicles of Narnia - The Voyage of the Dawn Treader - 3D","sourceId":10140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":376},{"sourceType":"tmdb","movieId":270,"title":"The Voyage of the Dawn Treader","sourceId":10140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":936},{"sourceType":"tmdb","movieId":270,"title":"The Chronicles of Narnia 3","sourceId":10140,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":937},{"sourceType":"tmdb","movieId":270,"title":"Die Chroniken von Narnia - Die Reise auf der Morgenr\u00f6te","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2728},{"sourceType":"tmdb","movieId":270,"title":"De kronieken van Narnia : De reis van het drakenschip","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2729},{"sourceType":"tmdb","movieId":270,"title":"As Cr\u00f4nicas de N\u00e1rnia: A Viagem do Peregrino da Alvorada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2730},{"sourceType":"tmdb","movieId":270,"title":"Las Cr\u00f3nicas de Narnia: La Travesia del Viajero del Alba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2731},{"sourceType":"tmdb","movieId":270,"title":"\u041f\u043e\u043a\u043e\u0440\u0438\u0442\u0435\u043b\u044c \u0417\u0430\u0440\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2732},{"sourceType":"tmdb","movieId":270,"title":"Ber\u00e4ttelsen om Narnia: Kung Caspian och skeppet Gryningen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2733},{"sourceType":"tmdb","movieId":270,"title":"Opowie\u015bci z Narnii: Podr\u00f3\u017c W\u0119drowca do \u015awitu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5019},{"sourceType":"tmdb","movieId":270,"title":"Le Monde de Narnia, chapitre 3 : L'Odyss\u00e9e du Passeur d'Aurore","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5318},{"sourceType":"tmdb","movieId":270,"title":"The Chronicles of Narnia 3 - The Voyage of the Dawn Treader","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5551}],"secondaryYearSourceId":0,"sortTitle":"chronicles narnia voyage dawn treader","sizeOnDisk":9384749333,"status":"released","overview":"This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.","inCinemas":"2010-12-02T00:00:00Z","physicalRelease":"2011-05-25T00:00:00Z","digitalRelease":"2014-02-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/270\/poster.jpg?lastWrite=637667296968274870","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pP27zlm9yeKrCeDZLFLP2HKELot.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/270\/fanart.jpg?lastWrite=637658646887991349","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sScP5gPU8NqJXko7eMRKhBbbnwl.jpg"}],"website":"","year":2010,"hasFile":true,"youTubeTrailerId":"hrJQDPpIK6I","studio":"Fox 2000 Pictures","path":"\/movies\/The Chronicles of Narnia The Voyage of the Dawn Treader (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Chronicles of Narnia The Voyage of the Dawn Treader (2010)","runtime":113,"cleanTitle":"thechroniclesnarniavoyagedawntreader","imdbId":"tt0980970","tmdbId":10140,"titleSlug":"10140","certification":"PG","genres":["Adventure","Family","Fantasy"],"tags":[],"added":"2018-10-13T16:08:52Z","ratings":{"votes":4454,"value":6.4},"movieFile":{"movieId":270,"relativePath":"The Chronicles of Narnia The Voyage of the Dawn Treader.2010-Bluray-1080p.mkv","path":"\/movies\/The Chronicles of Narnia The Voyage of the Dawn Treader (2010)\/The Chronicles of Narnia The Voyage of the Dawn Treader.2010-Bluray-1080p.mkv","size":9384749333,"dateAdded":"2018-10-14T06:31:48Z","sceneName":"The.Chronicles.Of.Narnia.The.Voyage.Of.The.Dawn.Treader.2010.1080p.BluRay.x264-TWiZTED","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9595000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:52:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"proper","edition":"","id":301},"collection":{"name":"The Chronicles of Narnia Collection","tmdbId":420,"images":[]},"id":270},{"title":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","originalTitle":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","alternateTitles":[{"sourceType":"tmdb","movieId":271,"title":"Narnia","sourceId":411,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":377},{"sourceType":"tmdb","movieId":271,"title":"The Chronicles of Narnia","sourceId":411,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":379},{"sourceType":"tmdb","movieId":271,"title":"Die Chroniken von Narnia - Der K\u00f6nig von Narnia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2722},{"sourceType":"tmdb","movieId":271,"title":"De kronieken van Narnia : De leeuw, de heks en de kleerkast","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2723},{"sourceType":"tmdb","movieId":271,"title":"Las Cr\u00f3nicas de Narnia: El Le\u00f3n, la Bruja y el Ropero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2724},{"sourceType":"tmdb","movieId":271,"title":"The Lion, the Witch and the Wardrobe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2725},{"sourceType":"tmdb","movieId":271,"title":"\u041b\u0435\u0432, \u043a\u043e\u043b\u0434\u0443\u043d\u044c\u044f \u0438 \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u044b\u0439 \u0448\u043a\u0430\u0444","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2726},{"sourceType":"tmdb","movieId":271,"title":"Narnia - H\u00e4xan och lejonet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2727},{"sourceType":"tmdb","movieId":271,"title":"Opowie\u015bci z Narnii: Lew, Czarownica i Stara Szafa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5017},{"sourceType":"tmdb","movieId":271,"title":"Le Monde de Narnia : Le Lion, la Sorci\u00e8re blanche et l'Armoire magique","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5312},{"sourceType":"tmdb","movieId":271,"title":"Le Monde de Narnia, chapitre 1 : Le Lion, la Sorci\u00e8re blanche et l'Armoire magique","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5316},{"sourceType":"tmdb","movieId":271,"title":"Le Monde De Narnia 1 Le Lion La Sorci\u00e8re Blanche Et l'Armoire Magique","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5542},{"sourceType":"tmdb","movieId":271,"title":"The Chronicles of Narnia 1 - The Lion, the Witch and the Wardrobe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5549}],"secondaryYearSourceId":0,"sortTitle":"chronicles narnia lion witch wardrobe","sizeOnDisk":11322751272,"status":"released","overview":"Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.","inCinemas":"2005-12-07T00:00:00Z","physicalRelease":"2006-04-19T00:00:00Z","digitalRelease":"2008-12-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/271\/poster.jpg?lastWrite=637648264562086254","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kzJip9vndXYSKQHCgekrgqbnUrA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/271\/fanart.jpg?lastWrite=637658646857951881","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tuDhEdza074bA497bO9WFEPs6O6.jpg"}],"website":"","year":2005,"hasFile":true,"youTubeTrailerId":"3mKPrxjwF7A","studio":"Walt Disney Pictures","path":"\/movies\/The Chronicles of Narnia The Lion, the Witch and the Wardrobe (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Chronicles of Narnia The Lion, the Witch and the Wardrobe (2005)","runtime":143,"cleanTitle":"thechroniclesnarnialionwitchwardrobe","imdbId":"tt0363771","tmdbId":411,"titleSlug":"411","certification":"PG","genres":["Adventure","Family","Fantasy"],"tags":[],"added":"2018-10-13T16:08:53Z","ratings":{"votes":8074,"value":7.1},"movieFile":{"movieId":271,"relativePath":"The Chronicles of Narnia The Lion, the Witch and the Wardrobe.2005-Bluray-1080p.mkv","path":"\/movies\/The Chronicles of Narnia The Lion, the Witch and the Wardrobe (2005)\/The Chronicles of Narnia The Lion, the Witch and the Wardrobe.2005-Bluray-1080p.mkv","size":11322751272,"dateAdded":"2018-10-14T06:49:14Z","sceneName":"The.Chronicles.Of.Narnia.The.Lion.The.Witch.And.The.Wardrobe.2005.1080p.Bluray.x264-1920","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9925000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:22:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":302},"collection":{"name":"The Chronicles of Narnia Collection","tmdbId":420,"images":[]},"id":271},{"title":"The Chronicles of Narnia: The Silver Chair","alternateTitles":[{"sourceType":"tmdb","movieId":272,"title":"The Silver Chair","sourceId":145225,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":380}],"secondaryYearSourceId":0,"sortTitle":"chronicles narnia silver chair","sizeOnDisk":0,"status":"deleted","overview":"Eustace Scrubb, Jill Pole, and Puddleglum set off on a journey to the land north of Narnia in order to rescue King Caspian's stolen son, Rilian.","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/272\/poster.jpg?lastWrite=637262743993376735","remoteUrl":"http:\/\/image.tmdb.org\/t\/p\/original\/jeWLSJelf4xbDwjef7092zovXf6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/272\/fanart.jpg","remoteUrl":"http:\/\/image.tmdb.org\/t\/p\/original"}],"year":0,"hasFile":false,"studio":"TriStar Pictures","path":"\/movies\/The Chronicles of Narnia The Silver Chair (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Chronicles of Narnia The Silver Chair (2019)","runtime":0,"cleanTitle":"thechroniclesnarniasilverchair","imdbId":"tt1223947","tmdbId":145225,"titleSlug":"the-chronicles-of-narnia-the-silver-chair-145225","genres":[],"tags":[],"added":"2018-10-13T16:08:53Z","ratings":{"votes":0,"value":0.0},"id":272},{"title":"The Chronicles of Narnia: Prince Caspian","originalTitle":"The Chronicles of Narnia: Prince Caspian","alternateTitles":[{"sourceType":"tmdb","movieId":273,"title":"Die Chroniken von Narnia - Prinz Kaspian von Narnia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1442},{"sourceType":"tmdb","movieId":273,"title":"De kronieken van Narnia : Prins Caspian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1443},{"sourceType":"tmdb","movieId":273,"title":"Prince Caspian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1444},{"sourceType":"tmdb","movieId":273,"title":"\u041f\u0440\u0438\u043d\u0446 \u041a\u0430\u0441\u043f\u0438\u0430\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1445},{"sourceType":"tmdb","movieId":273,"title":"Opowie\u015bci z Narnii: Ksi\u0105\u017c\u0119 Kaspian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5018},{"sourceType":"tmdb","movieId":273,"title":"Le Monde de Narnia, chapitre 2 : Le Prince Caspian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5317},{"sourceType":"tmdb","movieId":273,"title":"The Chronicles of Narnia 2 - Prince Caspian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5550}],"secondaryYearSourceId":0,"sortTitle":"chronicles narnia prince caspian","sizeOnDisk":11742152148,"status":"released","overview":"One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.","inCinemas":"2008-05-15T00:00:00Z","physicalRelease":"2008-07-12T00:00:00Z","digitalRelease":"2010-11-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/273\/poster.jpg?lastWrite=637651724633559118","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qxz3WIyjZiSKUhaTIEJ3c1GcC9z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/273\/fanart.jpg?lastWrite=637243714530818424","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ust0K60AYegrKkE34ONo66r7Hfx.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"HMfC-vDB10c","studio":"Walt Disney Pictures","path":"\/movies\/The Chronicles of Narnia Prince Caspian (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Chronicles of Narnia Prince Caspian (2008)","runtime":150,"cleanTitle":"thechroniclesnarniaprincecaspian","imdbId":"tt0499448","tmdbId":2454,"titleSlug":"2454","certification":"PG","genres":["Adventure","Family","Fantasy"],"tags":[],"added":"2018-10-13T16:08:53Z","ratings":{"votes":4995,"value":6.6},"movieFile":{"movieId":273,"relativePath":"The Chronicles of Narnia Prince Caspian.2008-Bluray-1080p.mkv","path":"\/movies\/The Chronicles of Narnia Prince Caspian (2008)\/The Chronicles of Narnia Prince Caspian.2008-Bluray-1080p.mkv","size":11742152148,"dateAdded":"2018-10-14T11:18:45Z","sceneName":"The.Chronicles.of.Narnia.Prince.Caspian.2008.1080p.BluRay.x264-CULTHD","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8926000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:29:58","scanType":"Progressive","subtitles":"Swedish \/ English \/ Norwegian \/ Danish \/ Finnish \/ Icelandic"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CULTHD","edition":"","id":317},"collection":{"name":"The Chronicles of Narnia Collection","tmdbId":420,"images":[]},"id":273},{"title":"The Simpsons Movie","originalTitle":"The Simpsons Movie","alternateTitles":[{"sourceType":"tmdb","movieId":274,"title":"Der Simpsons - Der Film,","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5760},{"sourceType":"tmdb","movieId":274,"title":"Los Simpson La Pelicula","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5761},{"sourceType":"tmdb","movieId":274,"title":"Os Simpsons O Filme","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5762},{"sourceType":"tmdb","movieId":274,"title":"Les Simpson Le Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5763},{"sourceType":"tmdb","movieId":274,"title":"\u30b6\u30fb\u30b7\u30f3\u30d7\u30bd\u30f3\u30ba MOVIE","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5764},{"sourceType":"tmdb","movieId":274,"title":"Simpsonovi ve filmu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5765},{"sourceType":"tmdb","movieId":274,"title":"Simpsonowie - Wersja kinowa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5766},{"sourceType":"tmdb","movieId":274,"title":"I Simpson - IL FILM","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5767}],"secondaryYearSourceId":0,"sortTitle":"simpsons movie","sizeOnDisk":9130425321,"status":"released","overview":"After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.","inCinemas":"2007-07-25T00:00:00Z","physicalRelease":"2007-12-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/274\/poster.jpg?lastWrite=637656051967009070","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/s3b8TZWwmkYc2KoJ5zk77qB6PzY.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/274\/fanart.jpg?lastWrite=637656051968409046","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/o7XHctO2t4fIdzch8v8ApNaJMcX.jpg"}],"website":"http:\/\/www.simpsonsmovie.com\/","year":2007,"hasFile":true,"youTubeTrailerId":"XPG0MqIcby8","studio":"AKOM Production Company","path":"\/movies\/The Simpsons Movie (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Simpsons Movie (2007)","runtime":87,"cleanTitle":"thesimpsonsmovie","imdbId":"tt0462538","tmdbId":35,"titleSlug":"35","certification":"PG-13","genres":["Animation","Comedy","Family"],"tags":[],"added":"2018-10-13T18:29:11Z","ratings":{"votes":6320,"value":7},"movieFile":{"movieId":274,"relativePath":"The Simpsons Movie.2007-Bluray-1080p.mkv","path":"\/movies\/The Simpsons Movie (2007)\/The Simpsons Movie.2007-Bluray-1080p.mkv","size":9130425321,"dateAdded":"2018-10-14T20:20:17Z","sceneName":"The.Simpsons.Movie.2007.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12119000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x798","runTime":"1:26:44","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Dutch \/ Finnish \/ Swedish \/ English \/ French \/ German \/ Dutch \/ Finnish \/ Swedish \/ English \/ French \/ German \/ Dutch \/ Finnish \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":329},"id":274},{"title":"Sherlock Holmes","originalTitle":"Sherlock Holmes","alternateTitles":[{"sourceType":"tmdb","movieId":275,"title":"Sh\u00e2rokku H\u00f4muzu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3129},{"sourceType":"tmdb","movieId":275,"title":"Serlok Holms","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3130},{"sourceType":"tmdb","movieId":275,"title":"Sherlock Holmes 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5103}],"secondaryYearSourceId":0,"sortTitle":"sherlock holmes","sizeOnDisk":9387043969,"status":"released","overview":"Eccentric consulting detective, Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.","inCinemas":"2009-01-01T00:00:00Z","physicalRelease":"2010-05-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/275\/poster.jpg?lastWrite=637651725463425901","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/momkKuWburNTqKBF6ez7rvhYVhE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/275\/fanart.jpg?lastWrite=637652590868489765","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oLmifRdaETboot2PXxpZN8NqHhK.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/sherlock-holmes\/","year":2009,"hasFile":true,"youTubeTrailerId":"LiBzbNk0lZ0","studio":"Warner Bros. Pictures","path":"\/movies\/Sherlock Holmes (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Sherlock Holmes (2009)","runtime":129,"cleanTitle":"sherlockholmes","imdbId":"tt0988045","tmdbId":10528,"titleSlug":"10528","certification":"PG-13","genres":["Action","Adventure","Crime"],"tags":[],"added":"2018-10-14T16:05:28Z","ratings":{"votes":11562,"value":7.2},"movieFile":{"movieId":275,"relativePath":"Sherlock Holmes.2009-Bluray-1080p.mkv","path":"\/movies\/Sherlock Holmes (2009)\/Sherlock Holmes.2009-Bluray-1080p.mkv","size":9387043969,"dateAdded":"2018-10-14T22:09:28Z","sceneName":"Sherlock.Holmes.2009.1080p.BluRay.x264-SECTOR7","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8238000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:08:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SECTOR7","edition":"","id":341},"collection":{"name":"Sherlock Holmes Collection","tmdbId":102322,"images":[]},"id":275},{"title":"Sherlock: The Abominable Bride","originalTitle":"Sherlock: The Abominable Bride","alternateTitles":[{"sourceType":"tmdb","movieId":276,"title":"\u0428\u0435\u0440\u043b\u043e\u043a: \u0423\u0436\u0430\u0441\u044f\u0432\u0430\u0449\u0430\u0442\u0430 \u0431\u0443\u043b\u043a\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3545},{"sourceType":"tmdb","movieId":276,"title":"\u795e\u63a2\u590f\u6d1b\u514b\uff1a\u5730\u72f1\u65b0\u5a18","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3546},{"sourceType":"tmdb","movieId":276,"title":"P\u0159\u00edzra\u010dn\u00e1 nev\u011bsta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3547},{"sourceType":"tmdb","movieId":276,"title":"The Abominable Bride","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3548},{"sourceType":"tmdb","movieId":276,"title":"Upiorna panna m\u0142oda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3550},{"sourceType":"tmdb","movieId":276,"title":"A Noiva Abomin\u00e1vel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3551},{"sourceType":"tmdb","movieId":276,"title":"\u0428\u0435\u0440\u043b\u043e\u043a: \u041e\u0433\u0438\u0434\u043d\u0430 \u043d\u0430\u0440\u0435\u0447\u0435\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3552}],"secondaryYearSourceId":0,"sortTitle":"sherlock abominable bride","sizeOnDisk":7041781707,"status":"released","overview":"Sherlock Holmes and Dr. Watson find themselves in 1890s London in this holiday special.","inCinemas":"2016-01-01T00:00:00Z","digitalRelease":"2016-01-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/276\/poster.jpg?lastWrite=637658647593538838","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hibE8cyZs2Bm0o4WaWd1pppvjO2.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/276\/fanart.jpg?lastWrite=637657782033410452","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jiQRyCFXAgLBjnbYQxz04dxGWvR.jpg"}],"website":"http:\/\/www.bbc.co.uk\/programmes\/b00t4pgh","year":2016,"hasFile":true,"youTubeTrailerId":"V8LWfc29J_E","studio":"BBC","path":"\/movies\/Sherlock The Abominable Bride (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Sherlock The Abominable Bride (2016)","runtime":90,"cleanTitle":"sherlockabominablebride","imdbId":"tt3845232","tmdbId":379170,"titleSlug":"379170","certification":"PG-13","genres":["Crime","Drama","Mystery"],"tags":[],"added":"2018-10-14T16:05:53Z","ratings":{"votes":1892,"value":7.9},"movieFile":{"movieId":276,"relativePath":"Sherlock The Abominable Bride.2016-Bluray-1080p.mkv","path":"\/movies\/Sherlock The Abominable Bride (2016)\/Sherlock The Abominable Bride.2016-Bluray-1080p.mkv","size":7041781707,"dateAdded":"2018-10-16T19:35:55Z","sceneName":"Sherlock.The.Abominable.Bride.2016.1080p.BluRay.x264.DD5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9446000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1040","runTime":"1:33:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":379},"id":276},{"title":"Sherlock Holmes: A Game of Shadows","originalTitle":"Sherlock Holmes: A Game of Shadows","alternateTitles":[{"sourceType":"tmdb","movieId":278,"title":"Sherlock Holmes 2","sourceId":58574,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":384},{"sourceType":"tmdb","movieId":278,"title":"Sherlock Holmes : Le Jeu des ombres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3131},{"sourceType":"tmdb","movieId":278,"title":"Sherlock Holmes 2: O Jogo de Sombras","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5104},{"sourceType":"tmdb","movieId":278,"title":"Sherlock Holmes 2: A Game of Shadows","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6122}],"secondaryYearSourceId":0,"sortTitle":"sherlock holmes game shadows","sizeOnDisk":9392202516,"status":"released","overview":"There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes\u2019 intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.","inCinemas":"2011-11-22T00:00:00Z","physicalRelease":"2012-05-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/278\/poster.jpg?lastWrite=637645669751819456","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/y1MYZkwhZK6L0Jy4YMuPktzDOfn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/278\/fanart.jpg?lastWrite=637645669755099389","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lWNASscWXn32Asr9vkB1wq6cKvD.jpg"}],"website":"http:\/\/sherlockholmes2.warnerbros.com\/index.html","year":2011,"hasFile":true,"youTubeTrailerId":"9FozQnaEZl8","studio":"Warner Bros. Pictures","path":"\/movies\/Sherlock Holmes A Game of Shadows (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Sherlock Holmes A Game of Shadows (2011)","runtime":129,"cleanTitle":"sherlockholmesgameshadows","imdbId":"tt1515091","tmdbId":58574,"titleSlug":"58574","certification":"PG-13","genres":["Adventure","Action","Crime"],"tags":[],"added":"2018-10-14T16:06:14Z","ratings":{"votes":8418,"value":7.1},"movieFile":{"movieId":278,"relativePath":"Sherlock Holmes A Game of Shadows.2011-Bluray-1080p.mkv","path":"\/movies\/Sherlock Holmes A Game of Shadows (2011)\/Sherlock Holmes A Game of Shadows.2011-Bluray-1080p.mkv","size":9392202516,"dateAdded":"2018-10-15T14:02:05Z","sceneName":"Sherlock.Holmes.A.Game.of.Shadows.2011.1080p.BluRay.x264-UNVEiL","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8217000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:08:44","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"UNVEiL","edition":"","id":356},"collection":{"name":"Sherlock Holmes Collection","tmdbId":102322,"images":[]},"id":278},{"title":"The Maze Runner","originalTitle":"The Maze Runner","alternateTitles":[{"sourceType":"tmdb","movieId":279,"title":"Maze Runner: Correr o morir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3655},{"sourceType":"tmdb","movieId":279,"title":"Labirent: \u00d6l\u00fcmc\u00fcl Ka\u00e7\u0131\u015f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":6075}],"secondaryYearSourceId":0,"sortTitle":"maze runner","sizeOnDisk":25292391641,"status":"released","overview":"Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow \u201crunners\u201d for a shot at escape.","inCinemas":"2014-09-10T00:00:00Z","physicalRelease":"2015-01-19T00:00:00Z","digitalRelease":"2017-10-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/279\/poster.jpg?lastWrite=637644804656636048","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ode14q7WtDugFDp78fo9lCsmay9.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/279\/fanart.jpg?lastWrite=637643074296445783","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/udkrGMA9hsEGkQpmZ31rGpQQKp8.jpg"}],"website":"http:\/\/themazerunnermovie.com","year":2014,"hasFile":true,"youTubeTrailerId":"3b946aGm0zs","studio":"Ingenious Media","path":"\/movies\/The Maze Runner (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Maze Runner (2014)","runtime":113,"cleanTitle":"themazerunner","imdbId":"tt1790864","tmdbId":198663,"titleSlug":"198663","certification":"PG-13","genres":["Action","Mystery","Science Fiction"],"tags":[],"added":"2018-10-14T16:07:51Z","ratings":{"votes":13776,"value":7.2},"movieFile":{"movieId":279,"relativePath":"The Maze Runner.2014-Remux-1080p.mkv","path":"\/movies\/The Maze Runner (2014)\/The Maze Runner.2014-Remux-1080p.mkv","size":25292391641,"dateAdded":"2018-10-16T15:14:20Z","sceneName":"The.Maze.Runner.2014.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-RARBG","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:53:26","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":376},"collection":{"name":"The Maze Runner Collection","tmdbId":295130,"images":[]},"id":279},{"title":"Thor","originalTitle":"Thor","alternateTitles":[{"sourceType":"tmdb","movieId":280,"title":"Thor, God of Thunder","sourceId":10195,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":389},{"sourceType":"tmdb","movieId":280,"title":"Thor 3D","sourceId":10195,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":390},{"sourceType":"tmdb","movieId":280,"title":"Thor 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2639},{"sourceType":"tmdb","movieId":280,"title":"\u96f7\u795e\u5947\u4fe0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2641},{"sourceType":"tmdb","movieId":280,"title":"Mighty Thor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2642},{"sourceType":"tmdb","movieId":280,"title":"\ub9c8\ube14 \ud1a0\ub974, \ucc9c\ub465\uc758 \uc2e0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2643},{"sourceType":"tmdb","movieId":280,"title":"Tor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2645},{"sourceType":"tmdb","movieId":280,"title":"\u0422\u043e\u0440 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2646},{"sourceType":"tmdb","movieId":280,"title":"\ud1a0\ub974","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5190},{"sourceType":"tmdb","movieId":280,"title":"\ud1a0\ub974 \ucc9c\ub465\uc758 \uc2e0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5191},{"sourceType":"tmdb","movieId":280,"title":"\u96f7\u795e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5394},{"sourceType":"tmdb","movieId":280,"title":"\u96f7\u795e1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5771},{"sourceType":"tmdb","movieId":280,"title":"Marvel Studios' Thor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5899}],"secondaryYearSourceId":0,"sortTitle":"thor","sizeOnDisk":2352029316,"status":"released","overview":"Against his father Odin's will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.","inCinemas":"2011-04-21T00:00:00Z","physicalRelease":"2011-09-09T00:00:00Z","digitalRelease":"2012-05-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/280\/poster.jpg?lastWrite=637659512717471309","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/prSfAi1xGrhLQNxVSUFh61xQ4Qy.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/280\/fanart.jpg?lastWrite=637659512718991286","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/239KWoUxiKT0bR3UsmsoX7GsDf9.jpg"}],"website":"http:\/\/thor.marvel.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"uHBnrJowBZE","studio":"Marvel Studios","path":"\/movies\/Thor (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Thor (2011)","runtime":115,"cleanTitle":"thor","imdbId":"tt0800369","tmdbId":10195,"titleSlug":"10195","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2018-10-14T16:08:09Z","ratings":{"votes":16978,"value":6.8},"movieFile":{"movieId":280,"relativePath":"Thor.2011-Bluray-1080p.mp4","path":"\/movies\/Thor (2011)\/Thor.2011-Bluray-1080p.mp4","size":2352029316,"dateAdded":"2018-10-14T22:18:32Z","sceneName":"Thor.2011.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:54:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":343},"collection":{"name":"Thor Collection","tmdbId":131296,"images":[]},"id":280},{"title":"Thor: Ragnarok","originalTitle":"Thor: Ragnarok","alternateTitles":[{"sourceType":"tmdb","movieId":281,"title":"Thor 3","sourceId":284053,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":393},{"sourceType":"tmdb","movieId":281,"title":"Thor 3: Ragnarok","sourceId":284053,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":394},{"sourceType":"tmdb","movieId":281,"title":"Thor - Tag der Entscheidung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4559},{"sourceType":"tmdb","movieId":281,"title":"\ub9c8\ube14 \ud1a0\ub974, \ub77c\uadf8\ub098\ub85c\ud06c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4560},{"sourceType":"tmdb","movieId":281,"title":"\u0422\u043e\u0440 3: \u0420\u0430\u0433\u043d\u0430\u0440\u0451\u043a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4562},{"sourceType":"tmdb","movieId":281,"title":"\u0e18\u0e2d\u0e23\u0e4c: \u0e41\u0e23\u0e47\u0e01\u0e19\u0e32\u0e23\u0e47\u0e2d\u0e04","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4563},{"sourceType":"tmdb","movieId":281,"title":"Thor 3: Tag der Entscheidung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5567},{"sourceType":"tmdb","movieId":281,"title":"Marvel Studios' Thor: Ragnarok","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5901}],"secondaryYearSourceId":0,"sortTitle":"thor ragnarok","sizeOnDisk":32086688483,"status":"released","overview":"Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok, the destruction of his home-world and the end of Asgardian civilization, at the hands of a powerful new threat, the ruthless Hela.","inCinemas":"2017-10-25T00:00:00Z","physicalRelease":"2018-02-26T00:00:00Z","digitalRelease":"2018-02-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/281\/poster.jpg?lastWrite=637645669880816844","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rzRwTcFvttcN1ZpX2xv4j3tSdJu.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/281\/fanart.jpg?lastWrite=637526316073439636","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kaIfm5ryEOwYg8mLbq8HkPuM1Fo.jpg"}],"website":"https:\/\/marvel.com\/movies\/movie\/222\/thor_ragnarok","year":2017,"hasFile":true,"youTubeTrailerId":"ue80QwXMRHg","studio":"Marvel Studios","path":"\/movies\/Thor Ragnarok (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Thor Ragnarok (2017)","runtime":131,"cleanTitle":"thorragnarok","imdbId":"tt3501632","tmdbId":284053,"titleSlug":"284053","certification":"PG-13","genres":["Action","Adventure","Comedy"],"tags":[],"added":"2018-10-14T16:08:09Z","ratings":{"votes":16405,"value":7.6},"movieFile":{"movieId":281,"relativePath":"Thor Ragnarok.2017-Remux-1080p.mkv","path":"\/movies\/Thor Ragnarok (2017)\/Thor Ragnarok.2017-Remux-1080p.mkv","size":32086688483,"dateAdded":"2018-10-15T14:12:05Z","sceneName":"Thor.Ragnarok.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4891040,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ Portuguese \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":23831254,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:10:30","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":357},"collection":{"name":"Thor Collection","tmdbId":131296,"images":[]},"id":281},{"title":"Thor: The Dark World","originalTitle":"Thor: The Dark World","alternateTitles":[{"sourceType":"tmdb","movieId":282,"title":"Thor 2","sourceId":76338,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":395},{"sourceType":"tmdb","movieId":282,"title":"Marvel's Thor: The Dark World","sourceId":76338,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":396},{"sourceType":"tmdb","movieId":282,"title":"Thursday Mourning","sourceId":76338,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1326},{"sourceType":"tmdb","movieId":282,"title":"Thor 2 - The Dark World","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2933},{"sourceType":"tmdb","movieId":282,"title":"MCU-08 - Thor 2 - The Dark Kingdom","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2934},{"sourceType":"tmdb","movieId":282,"title":"Thor 2: \u03a3\u03ba\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc\u03c2 \u039a\u03cc\u03c3\u03bc\u03bf\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2936},{"sourceType":"tmdb","movieId":282,"title":"\u96f7\u795e\u5947\u4fe02\uff1a\u9ed1\u6697\u4e16\u754c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2937},{"sourceType":"tmdb","movieId":282,"title":"\ub9c8\ube14 \ud1a0\ub974, \ub2e4\ud06c \uc6d4\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2938},{"sourceType":"tmdb","movieId":282,"title":"Thor: Un mundo oscuro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2939},{"sourceType":"tmdb","movieId":282,"title":"MCU 8: Thor: The Dark World","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2940},{"sourceType":"tmdb","movieId":282,"title":"\u96f7\u795e\u7d22\u723e2\uff1a\u9ed1\u6697\u4e16\u754c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2941},{"sourceType":"tmdb","movieId":282,"title":"Thor: Mroczny \u015bwiat","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5267},{"sourceType":"tmdb","movieId":282,"title":"Thor Mroczny \u015awiat - Thor The Dark World","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5268},{"sourceType":"tmdb","movieId":282,"title":"Thor 2: The Dark Kingdom","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5566},{"sourceType":"tmdb","movieId":282,"title":"Marvel Studios' Thor: The Dark World","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5900}],"secondaryYearSourceId":0,"sortTitle":"thor dark world","sizeOnDisk":25175630059,"status":"released","overview":"Thor fights to restore order across the cosmos\u2026 but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.","inCinemas":"2013-10-30T00:00:00Z","physicalRelease":"2014-03-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/282\/poster.jpg?lastWrite=637282629418722171","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wp6OxE4poJ4G7c0U2ZIXasTSMR7.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/282\/fanart.jpg?lastWrite=637667297481066450","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wbEbHIv0w5a6vQ0hRrz41hGKY9J.jpg"}],"website":"https:\/\/www.marvel.com\/movies\/thor-the-dark-world","year":2013,"hasFile":true,"youTubeTrailerId":"npvJ9FTgZbM","studio":"Marvel Studios","path":"\/movies\/Thor The Dark World (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Thor The Dark World (2013)","runtime":112,"cleanTitle":"thordarkworld","imdbId":"tt1981115","tmdbId":76338,"titleSlug":"76338","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-10-14T16:08:14Z","ratings":{"votes":13814,"value":6.6},"movieFile":{"movieId":282,"relativePath":"Thor The Dark World.2013-Remux-1080p.mkv","path":"\/movies\/Thor The Dark World (2013)\/Thor The Dark World.2013-Remux-1080p.mkv","size":25175630059,"dateAdded":"2018-10-15T06:22:53Z","sceneName":"Thor - The Dark World 2013 1080p Blu-ray Remux AVC DTS-HD MA 7.1 - KRaLiMaRKo","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:52:03","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Portuguese \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HD","edition":"","id":348},"collection":{"name":"Thor Collection","tmdbId":131296,"images":[]},"id":282},{"title":"Fantastic Beasts: The Crimes of Grindelwald","originalTitle":"Fantastic Beasts: The Crimes of Grindelwald","alternateTitles":[{"sourceType":"tmdb","movieId":283,"title":"Fantastic Beasts and Where to Find Them 2","sourceId":338952,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":398},{"sourceType":"tmdb","movieId":283,"title":"Fantastic Beasts 2","sourceId":338952,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":546},{"sourceType":"tmdb","movieId":283,"title":"Fantastic Beasts 2 - The Crimes of Grindelwald","sourceId":338952,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":892},{"sourceType":"tmdb","movieId":283,"title":"Fantastic Beasts: The Crimes of Grindelwald 3D","sourceId":338952,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1295},{"sourceType":"tmdb","movieId":283,"title":"Animais Fant\u00e1sticos 2 - Os Crimes de Grindelwald","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2756},{"sourceType":"tmdb","movieId":283,"title":"Les Animaux Fantastiques 2 - Les crimes de Grindelwald","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2757},{"sourceType":"tmdb","movieId":283,"title":"Les Animaux fantastiques - Les Crimes de Grindelwald","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2758},{"sourceType":"tmdb","movieId":283,"title":"Fantastic Beasts: The Crimes og Grindelwald","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2759},{"sourceType":"tmdb","movieId":283,"title":"\uc2e0\ube44\ud55c \ub3d9\ubb3c\uc0ac\uc804 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2760},{"sourceType":"tmdb","movieId":283,"title":"Sinh V\u1eadt Huy\u1ec1n B\u00ed 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2761},{"sourceType":"tmdb","movieId":283,"title":"Animais Fant\u00e1sticos Os Crimes de Grindelwald","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5402},{"sourceType":"tmdb","movieId":283,"title":"Phantastische Tierwesen 2 - Grindelwalds Verbrechen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5798}],"secondaryYearSourceId":0,"sortTitle":"fantastic beasts crimes grindelwald","sizeOnDisk":2717618706,"status":"released","overview":"Gellert Grindelwald has escaped imprisonment and has begun gathering followers to his cause\u2014elevating wizards above all non-magical beings. The only one capable of putting a stop to him is the wizard he once called his closest friend, Albus Dumbledore. However, Dumbledore will need to seek help from the wizard who had thwarted Grindelwald once before, his former student Newt Scamander, who agrees to help, unaware of the dangers that lie ahead. Lines are drawn as love and loyalty are tested, even among the truest friends and family, in an increasingly divided wizarding world.","inCinemas":"2018-11-14T00:00:00Z","physicalRelease":"2019-03-12T00:00:00Z","digitalRelease":"2019-02-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/283\/poster.jpg?lastWrite=637653455659168003","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fMMrl8fD9gRCFJvsx0SuFwkEOop.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/283\/fanart.jpg?lastWrite=637643939348728530","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg"}],"website":"http:\/\/www.fantasticbeasts.com","year":2018,"hasFile":true,"youTubeTrailerId":"8bYBOVWLNIs","studio":"Warner Bros. Pictures","path":"\/movies\/Fantastic Beasts The Crimes of Grindelwald (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Fantastic Beasts The Crimes of Grindelwald (2018)","runtime":134,"cleanTitle":"fantasticbeastscrimesgrindelwald","imdbId":"tt4123430","tmdbId":338952,"titleSlug":"338952","certification":"PG-13","genres":["Adventure","Fantasy","Drama"],"tags":[],"added":"2018-10-16T20:02:16Z","ratings":{"votes":8320,"value":6.9},"movieFile":{"movieId":283,"relativePath":"Fantastic Beasts The Crimes of Grindelwald.2018-Bluray-1080p.mkv","path":"\/movies\/Fantastic Beasts The Crimes of Grindelwald (2018)\/Fantastic Beasts The Crimes of Grindelwald.2018-Bluray-1080p.mkv","size":2717618706,"dateAdded":"2019-02-26T19:00:26Z","sceneName":"Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.1080p.BRRip.x264.MkvCage.ws","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC SBR","audioBitrate":192000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:13:50","scanType":"Progressive","subtitles":"English \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":509},"collection":{"name":"Fantastic Beasts Collection","tmdbId":435259,"images":[]},"id":283},{"title":"Fantastic Beasts and Where to Find Them","originalTitle":"Fantastic Beasts and Where to Find Them","alternateTitles":[{"sourceType":"tmdb","movieId":284,"title":"Fantastic Beasts and Where to Find Them 1","sourceId":259316,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":399},{"sourceType":"tmdb","movieId":284,"title":"Fantastic Beasts and Where to Find Them 3D","sourceId":259316,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1296},{"sourceType":"tmdb","movieId":284,"title":"Animales Fant\u00e1sticos y d\u00f3nde encontrarlos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3493},{"sourceType":"tmdb","movieId":284,"title":"Animais Fant\u00e1sticos - E Onde Habitam","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3494},{"sourceType":"tmdb","movieId":284,"title":"Fantastic Beasts 1 - Where to Find Them","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3495},{"sourceType":"tmdb","movieId":284,"title":"Les Animaux fantastiques - Fantastic Beasts and Where to Find Them - FR 2016","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3496},{"sourceType":"tmdb","movieId":284,"title":"\u795e\u5947\u52a8\u7269\u5728\u54ea\u91cc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3497},{"sourceType":"tmdb","movieId":284,"title":"\u03a6\u03b1\u03bd\u03c4\u03b1\u03c3\u03c4\u03b9\u03ba\u03ac \u0396\u03ce\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03bf\u03c5 \u0392\u03c1\u03af\u03c3\u03ba\u03bf\u03bd\u03c4\u03b1\u03b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3499},{"sourceType":"tmdb","movieId":284,"title":"Hewan-Hewan Fantastis dan Dimana Mereka Bisa Ditemukan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3500},{"sourceType":"tmdb","movieId":284,"title":"Ka'yot ha'pele ve'hey'khan limtzo otan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3501},{"sourceType":"tmdb","movieId":284,"title":"\u5e7b\u306e\u52d5\u7269\u3068\u305d\u306e\u751f\u606f\u5730","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3502},{"sourceType":"tmdb","movieId":284,"title":"\uc2e0\ube44\ud55c \ub3d9\ubb3c \uc0ac\uc804","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3503},{"sourceType":"tmdb","movieId":284,"title":"Monstros Fant\u00e1sticos e Onde Encontr\u00e1-los","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3504},{"sourceType":"tmdb","movieId":284,"title":"Fantasti\u010dne zveri i gde ih na\u0107i","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3505},{"sourceType":"tmdb","movieId":284,"title":"\u0424\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0437\u0432\u0435\u0440\u0438 \u0438 \u043c\u0435\u0441\u0442\u0430 \u0438\u0445 \u043e\u0431\u0438\u0442\u0430\u043d\u0438\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3506},{"sourceType":"tmdb","movieId":284,"title":"Sinh V\u1eadt Huy\u1ec1n B\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3507},{"sourceType":"tmdb","movieId":284,"title":"Fantastic Beasts 1 - Fantastic Beasts and Where to Find Them","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5516},{"sourceType":"tmdb","movieId":284,"title":"Les Animaux fantastiques 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6223}],"secondaryYearSourceId":0,"sortTitle":"fantastic beasts where to find them","sizeOnDisk":36899530633,"status":"released","overview":"In 1926, Newt Scamander arrives at the Magical Congress of the United States of America with a magically expanded briefcase, which houses a number of dangerous creatures and their habitats. When the creatures escape from the briefcase, it sends the American wizarding authorities after Newt, and threatens to strain even further the state of magical and non-magical relations.","inCinemas":"2016-11-16T00:00:00Z","physicalRelease":"2017-03-27T00:00:00Z","digitalRelease":"2017-03-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/284\/poster.jpg?lastWrite=637662971343708639","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/h6NYfVUyM6CDURtZSnBpz647Ldd.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/284\/fanart.jpg?lastWrite=637645669299228701","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8Qsr8pvDL3s1jNZQ4HK1d1Xlvnh.jpg"}],"website":"http:\/\/www.fantasticbeasts.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"LvStonDeNOI","studio":"Heyday Films","path":"\/movies\/Fantastic Beasts and Where to Find Them (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Fantastic Beasts and Where to Find Them (2016)","runtime":132,"cleanTitle":"fantasticbeastswheretofindthem","imdbId":"tt3183660","tmdbId":259316,"titleSlug":"259316","certification":"PG-13","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-16T20:03:33Z","ratings":{"votes":15610,"value":7.4},"movieFile":{"movieId":284,"relativePath":"Fantastic Beasts and Where to Find Them.2016-Remux-1080p.mkv","path":"\/movies\/Fantastic Beasts and Where to Find Them (2016)\/Fantastic Beasts and Where to Find Them.2016-Remux-1080p.mkv","size":36899530633,"dateAdded":"2018-10-19T02:34:26Z","sceneName":"Fantastic.Beasts.and.Where.to.Find.Them.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English \/ English \/ English \/ French \/ Spanish \/ Catalan \/ Czech \/ Russian \/ Slovak","audioStreamCount":12,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:12:52","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Dutch \/ Czech \/ Danish \/ Estonian \/ Finnish \/ Greek \/ Icelandic \/ Latvian \/ Lithuanian \/ Norwegian \/ Russian \/ Slovak \/ Swedish \/ French \/ Spanish \/ Czech \/ Russian \/ Slovak"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":391},"collection":{"name":"Fantastic Beasts Collection","tmdbId":435259,"images":[]},"id":284},{"title":"Jumanji: Welcome to the Jungle","originalTitle":"Jumanji: Welcome to the Jungle","alternateTitles":[{"sourceType":"tmdb","movieId":286,"title":"Jumanji 2","sourceId":353486,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":401},{"sourceType":"tmdb","movieId":286,"title":"Jumanji 2: Welcome to the Jungle","sourceId":353486,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":893},{"sourceType":"tmdb","movieId":286,"title":"Jumanji: Welcome to the Jungle 3D","sourceId":353486,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1343},{"sourceType":"tmdb","movieId":286,"title":"Jumanji: En la selva","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2473},{"sourceType":"tmdb","movieId":286,"title":"Jumanji 2 - Bem-Vindo \u00e0 Selva","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2474},{"sourceType":"tmdb","movieId":286,"title":"Jumanji 2 - Willkommen im Dschungel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2477},{"sourceType":"tmdb","movieId":286,"title":"\uc96c\ub9cc\uc9c0 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2481}],"secondaryYearSourceId":0,"sortTitle":"jumanji welcome to jungle","sizeOnDisk":31457806028,"status":"released","overview":"The tables are turned as four teenagers are sucked into Jumanji's world - pitted against rhinos, black mambas and an endless variety of jungle traps and puzzles. To survive, they'll play as characters from the game.","inCinemas":"2017-12-20T00:00:00Z","physicalRelease":"2018-03-20T00:00:00Z","digitalRelease":"2018-03-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/286\/poster.jpg?lastWrite=637471127881435012","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pSgXKPU5h6U89ipF7HBYajvYt7j.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/286\/fanart.jpg?lastWrite=637648264847761634","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zJDMuXQDraHjtF53wikmyBQIcYe.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/jumanjiwelcometothejungle","year":2017,"hasFile":true,"youTubeTrailerId":"v_TJKwJwN0E","studio":"Radar Pictures","path":"\/movies\/Jumanji Welcome to the Jungle (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Jumanji Welcome to the Jungle (2017)","runtime":119,"cleanTitle":"jumanjiwelcometojungle","imdbId":"tt2283362","tmdbId":353486,"titleSlug":"353486","certification":"PG-13","genres":["Adventure","Action","Comedy"],"tags":[],"added":"2018-10-17T23:14:56Z","ratings":{"votes":10914,"value":6.8},"movieFile":{"movieId":286,"relativePath":"Jumanji Welcome to the Jungle.2017-Remux-1080p.mkv","path":"\/movies\/Jumanji Welcome to the Jungle (2017)\/Jumanji Welcome to the Jungle.2017-Remux-1080p.mkv","size":31457806028,"dateAdded":"2018-10-18T05:25:14Z","sceneName":"Jumanji.Welcome.to.the.Jungle.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2249131,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Portuguese \/ Portuguese \/ Spanish \/ Thai","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":24881841,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:59:03","scanType":"Progressive","subtitles":"English \/ English \/ Chinese \/ Chinese \/ Chinese \/ French \/ Indonesian \/ Korean \/ Malay \/ Portuguese \/ Portuguese \/ Spanish \/ Spanish \/ Thai \/ Vietnamese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":386},"collection":{"name":"Jumanji Collection","tmdbId":495527,"images":[]},"id":286},{"title":"X2","originalTitle":"X2","alternateTitles":[{"sourceType":"tmdb","movieId":288,"title":"X Men 2","sourceId":36658,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1242},{"sourceType":"tmdb","movieId":288,"title":"X-Men 2: X-Men United","sourceId":36658,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1243},{"sourceType":"tmdb","movieId":288,"title":"X-Men II","sourceId":36658,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1244},{"sourceType":"tmdb","movieId":288,"title":"X-Men X2 United","sourceId":36658,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1245},{"sourceType":"tmdb","movieId":288,"title":"X2: X-Men United","sourceId":36658,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1246},{"sourceType":"tmdb","movieId":288,"title":"X-Men 2 United","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3186},{"sourceType":"tmdb","movieId":288,"title":"X2: X-men unis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3187},{"sourceType":"tmdb","movieId":288,"title":"X-\u05de\u05df 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3188},{"sourceType":"tmdb","movieId":288,"title":"\uc5d1\uc2a4\ub9e82","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3189},{"sourceType":"tmdb","movieId":288,"title":"\uc5d1\uc2a4\ub9e8X2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3190},{"sourceType":"tmdb","movieId":288,"title":"Iks-odamlar 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3191},{"sourceType":"tmdb","movieId":288,"title":"X-Men 2 - X2 X-Men United","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5589}],"secondaryYearSourceId":0,"sortTitle":"x2","sizeOnDisk":16341607667,"status":"released","overview":"Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses\u2014Magneto and Mystique\u2014to unhinge Stryker's scheme to exterminate all mutants.","inCinemas":"2003-04-24T00:00:00Z","physicalRelease":"2003-09-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/288\/poster.jpg?lastWrite=637650860393637041","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mnDo22GA2WUvyWY9PyhZqxdaejC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/288\/fanart.jpg?lastWrite=637651726077296078","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/loixNIKBURXfPcND4noz7E8FqCS.jpg"}],"website":"","year":2003,"hasFile":true,"youTubeTrailerId":"KjzPi5hfv9c","studio":"Marvel Enterprises","path":"\/movies\/X2 (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X2 (2003)","runtime":133,"cleanTitle":"x2","imdbId":"tt0290334","tmdbId":36658,"titleSlug":"36658","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-17T23:15:09Z","ratings":{"votes":8043,"value":7},"movieFile":{"movieId":288,"relativePath":"X2.2003-Bluray-1080p.mkv","path":"\/movies\/X2 (2003)\/X2.2003-Bluray-1080p.mkv","size":16341607667,"dateAdded":"2018-10-18T05:12:35Z","sceneName":"X2.2003.REMASTERED.1080p.BluRay.x264.DTS-HD.MA.5.1-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4074956,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12052794,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:13:47","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Japanese \/ Japanese \/ Japanese \/ Spanish \/ French \/ Spanish \/ Danish \/ Dutch \/ Finnish \/ German \/ Italian \/ Norwegian \/ Swedish \/ Chinese \/ Czech \/ Chinese \/ Polish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"REMASTERED","id":385},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":288},{"title":"X-Men: The Last Stand","originalTitle":"X-Men: The Last Stand","alternateTitles":[{"sourceType":"tmdb","movieId":289,"title":"Xmen 3","sourceId":36668,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":406},{"sourceType":"tmdb","movieId":289,"title":"X-Men III - The Last Stand","sourceId":36668,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":407},{"sourceType":"tmdb","movieId":289,"title":"X-Men 3: The Last Stand","sourceId":36668,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":408},{"sourceType":"tmdb","movieId":289,"title":"X-Men 3 - O Confronto Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3174},{"sourceType":"tmdb","movieId":289,"title":"X\u6218\u8b663","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3175},{"sourceType":"tmdb","movieId":289,"title":"X-Men 3: Der letzte Widerstand","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3176},{"sourceType":"tmdb","movieId":289,"title":"X-Men 3: La decisi\u00f3n final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3177},{"sourceType":"tmdb","movieId":289,"title":"X-men 3 - L'Affrontement Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3178},{"sourceType":"tmdb","movieId":289,"title":"X-\u05de\u05df 3: \u05d4\u05de\u05e4\u05dc\u05d8 \u05d4\u05d0\u05d7\u05e8\u05d5\u05df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3179},{"sourceType":"tmdb","movieId":289,"title":"X-Men 3 - Conflitto finale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3180},{"sourceType":"tmdb","movieId":289,"title":"X-Men: La Batalla Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3181},{"sourceType":"tmdb","movieId":289,"title":"\u041b\u044e\u0434\u0438 \u0418\u043a\u0441 \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0431\u0438\u0442\u0432\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3182},{"sourceType":"tmdb","movieId":289,"title":"X\u6230\u8b663\uff1a\u6700\u5f8c\u6230\u5f79","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3183},{"sourceType":"tmdb","movieId":289,"title":"G\u2018aroyib odamlar 3: So\u2018ngi intiqom","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3184},{"sourceType":"tmdb","movieId":289,"title":"Iks-odamlar 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3185},{"sourceType":"tmdb","movieId":289,"title":"X-Men III: La Batalla Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4892}],"secondaryYearSourceId":0,"sortTitle":"x men last stand","sizeOnDisk":15835093259,"status":"released","overview":"When a cure is found to treat mutations, lines are drawn amongst the X-Men\u2014led by Professor Charles Xavier\u2014and the Brotherhood, a band of powerful mutants organised under Xavier's former ally, Magneto.","inCinemas":"2006-05-24T00:00:00Z","physicalRelease":"2006-10-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/289\/poster.jpg?lastWrite=637653456634472598","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f6Mc9si1uwrxVfEpsZeU7d1HpVb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/289\/fanart.jpg?lastWrite=637627506218863377","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5ho0a0fcJRUOhdg9h98NvsNRvzu.jpg"}],"website":"","year":2006,"hasFile":true,"youTubeTrailerId":"yaqeXXuoD7I","studio":"The Donners' Company","path":"\/movies\/X-Men The Last Stand (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X-Men The Last Stand (2006)","runtime":104,"cleanTitle":"xmenlaststand","imdbId":"tt0376994","tmdbId":36668,"titleSlug":"36668","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-10-17T23:15:27Z","ratings":{"votes":7691,"value":6.4},"movieFile":{"movieId":289,"relativePath":"X-Men The Last Stand.2006-Bluray-1080p.mkv","path":"\/movies\/X-Men The Last Stand (2006)\/X-Men The Last Stand.2006-Bluray-1080p.mkv","size":15835093259,"dateAdded":"2018-10-18T10:20:19Z","sceneName":"X-Men.The.Last.Stand.2006.1080p.BluRay.DTS-ES.x264-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XXCH","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":18371684,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:44:05","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":388},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":289},{"title":"X-Men: First Class","originalTitle":"X-Men: First Class","alternateTitles":[{"sourceType":"tmdb","movieId":290,"title":"X-Men V - First Class","sourceId":49538,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":409},{"sourceType":"tmdb","movieId":290,"title":"X-Men 5","sourceId":49538,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":410},{"sourceType":"tmdb","movieId":290,"title":"X-Men 5 - First Class","sourceId":49538,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":411},{"sourceType":"tmdb","movieId":290,"title":"X-Men 4 - First Class","sourceId":49538,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":852},{"sourceType":"tmdb","movieId":290,"title":"X Men 5 Primeira Classe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3169},{"sourceType":"tmdb","movieId":290,"title":"X-Men 5 - Le Commencement","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3170},{"sourceType":"tmdb","movieId":290,"title":"X-\u05de\u05df: \u05d4\u05d4\u05ea\u05d7\u05dc\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3171},{"sourceType":"tmdb","movieId":290,"title":"\uc5d1\uc2a4\ub9e8 \ud37c\uc2a4\ud2b8\ud074\ub798\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3172},{"sourceType":"tmdb","movieId":290,"title":"Iks-odamlar 4: Birinchi sinf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3173},{"sourceType":"tmdb","movieId":290,"title":"X: First Class","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4725},{"sourceType":"tmdb","movieId":290,"title":"X-Men: Erste Entscheidung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5344},{"sourceType":"tmdb","movieId":290,"title":"X-Men 5 Erste Entscheidung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5797}],"secondaryYearSourceId":0,"sortTitle":"x men first class","sizeOnDisk":17776441437,"status":"released","overview":"Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.","inCinemas":"2011-06-01T00:00:00Z","physicalRelease":"2011-10-05T00:00:00Z","digitalRelease":"2013-08-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/290\/poster.jpg?lastWrite=637655187094584177","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6fUZkO41K9KrlZByePqzKdJQd45.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/290\/fanart.jpg?lastWrite=637655187096224153","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4Ky8OcB0F7x3PRZQIiFFZyf3eIX.jpg"}],"website":"http:\/\/www.x-menfirstclassmovie.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"kyQKi5-k0UU","studio":"Marvel Entertainment","path":"\/movies\/X-Men First Class (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/X-Men First Class (2011)","runtime":132,"cleanTitle":"xmenfirstclass","imdbId":"tt1270798","tmdbId":49538,"titleSlug":"49538","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2018-10-17T23:15:38Z","ratings":{"votes":10431,"value":7.3},"movieFile":{"movieId":290,"relativePath":"X-Men First Class.2011-Bluray-1080p.mkv","path":"\/movies\/X-Men First Class (2011)\/X-Men First Class.2011-Bluray-1080p.mkv","size":17776441437,"dateAdded":"2018-10-18T01:26:33Z","sceneName":"X-Men.First.Class.2011.1080p.BluRay.DTS.x264-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":16500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:11:42","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":382},"collection":{"name":"X-Men Collection","tmdbId":748,"images":[]},"id":290},{"title":"The Wolverine","originalTitle":"The Wolverine","alternateTitles":[{"sourceType":"tmdb","movieId":291,"title":"Wolverine 2","sourceId":76170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":413},{"sourceType":"tmdb","movieId":291,"title":"The Wolverine 3D","sourceId":76170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":414},{"sourceType":"tmdb","movieId":291,"title":"X-Men 6: The Wolverine","sourceId":76170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":416},{"sourceType":"tmdb","movieId":291,"title":"X-Men 6: The Wolverine 3D","sourceId":76170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":417},{"sourceType":"tmdb","movieId":291,"title":"XMen 6: The Wolverine - EC","sourceId":76170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":851},{"sourceType":"tmdb","movieId":291,"title":"\u0425-\u043c\u0435\u043d \u041d\u0430\u0447\u0430\u043b\u043e\u0442\u043e: \u0412\u044a\u0440\u043a\u043e\u043b\u0430\u043a 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3971},{"sourceType":"tmdb","movieId":291,"title":"Wolverine - Imortal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3972},{"sourceType":"tmdb","movieId":291,"title":"X\u6218\u8b66\u524d\u4f20\uff1a\u91d1\u521a\u72fc2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3973},{"sourceType":"tmdb","movieId":291,"title":"X\u6218\u8b66\uff1a\u91d1\u94a2\u72fc2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3974},{"sourceType":"tmdb","movieId":291,"title":"\u72fc\u4eba\uff1a\u6b66\u58eb\u6fc0\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3975},{"sourceType":"tmdb","movieId":291,"title":"\u91d1\u521a\u72fc\uff1a\u6b66\u58eb\u4e4b\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3976},{"sourceType":"tmdb","movieId":291,"title":"\u91d1\u94a2\u72fc2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3977},{"sourceType":"tmdb","movieId":291,"title":"\u017dderavac","sourceId":0,"votes":0,"voteCount":0,"language":{"id":25,"name":"Czech"},"id":3978},{"sourceType":"tmdb","movieId":291,"title":"X-Men IV - Origins Wolverine","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3979},{"sourceType":"tmdb","movieId":291,"title":"X-Men 6 - Wolverine - Le Combat de l'Immortel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3980},{"sourceType":"tmdb","movieId":291,"title":"Wolverine: Samurai","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3981},{"sourceType":"tmdb","movieId":291,"title":"\uc5d1\uc2a4\ub9e8, \ub354 \uc6b8\ubc84\ub9b0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3982},{"sourceType":"tmdb","movieId":291,"title":"Wolverine: inmortal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3983},{"sourceType":"tmdb","movieId":291,"title":"Wolverine","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3984},{"sourceType":"tmdb","movieId":291,"title":"Rosomaha bessmertnij","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3985},{"sourceType":"tmdb","movieId":291,"title":"X-Men 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5215},{"sourceType":"tmdb","movieId":291,"title":"X-Men The wolverine Lobezno Inmortal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5491},{"sourceType":"tmdb","movieId":291,"title":"X-Men 6: Wolverine - Weg des Kriegers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5568},{"sourceType":"tmdb","movieId":291,"title":"X-Men 6\uff1aThe Wolverine","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5976}],"secondaryYearSourceId":0,"sortTitle":"wolverine","sizeOnDisk":10557399942,"status":"released","overview":"Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.","inCinemas":"2013-07-23T00:00:00Z","digitalRelease":"2017-03-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/291\/poster.jpg?lastWrite=637649995438051858","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8lzmovtARDXnE7kTDOum02i6fXv.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/291\/fanart.jpg?lastWrite=637649995439531831","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AqIes6H9NlRoo0YjlO7exLCu72v.jpg"}],"website":"http:\/\/www.thewolverinemovie.com","year":2013,"hasFile":true,"youTubeTrailerId":"DwG56k6VGOE","studio":"Marvel Entertainment","path":"\/movies\/The Wolverine (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Wolverine (2013)","runtime":126,"cleanTitle":"thewolverine","imdbId":"tt1430132","tmdbId":76170,"titleSlug":"76170","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2018-10-17T23:15:48Z","ratings":{"votes":7756,"value":6.4},"movieFile":{"movieId":291,"relativePath":"The Wolverine.2013-Bluray-1080p.mkv","path":"\/movies\/The Wolverine (2013)\/The Wolverine.2013-Bluray-1080p.mkv","size":10557399942,"dateAdded":"2018-10-18T02:22:07Z","sceneName":"The.Wolverine.2013.EXTENDED.1080p.BluRay.x264-SPARKS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8676000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:18:14","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"EXTENDED","id":383},"collection":{"name":"The Wolverine Collection","tmdbId":453993,"images":[]},"id":291},{"title":"Logan","originalTitle":"Logan","alternateTitles":[{"sourceType":"tmdb","movieId":292,"title":"Wolverine 3","sourceId":263115,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":419},{"sourceType":"tmdb","movieId":292,"title":"Logan Noir","sourceId":263115,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":423},{"sourceType":"tmdb","movieId":292,"title":"\u7f57\u6839","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2186},{"sourceType":"tmdb","movieId":292,"title":"\uc5d1\uc2a4\ub9e8, \ub85c\uac74","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2188},{"sourceType":"tmdb","movieId":292,"title":"Logan Noir Edition","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6169}],"secondaryYearSourceId":0,"sortTitle":"logan","sizeOnDisk":32928347112,"status":"released","overview":"In the near future, a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives, pursued by dark forces.","inCinemas":"2017-02-28T00:00:00Z","physicalRelease":"2017-05-23T00:00:00Z","digitalRelease":"2017-05-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/292\/poster.jpg?lastWrite=637667297138992067","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fnbjcRDYn6YviCcePDnGdyAkYsB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/292\/fanart.jpg?lastWrite=637649995019659463","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dfBiALov0mYoqKCHaOHka2x0U26.jpg"}],"website":"http:\/\/www.foxmovies.com\/movies\/logan","year":2017,"hasFile":true,"youTubeTrailerId":"XaE_9pfybL4","studio":"20th Century Fox","path":"\/movies\/Logan (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Logan (2017)","runtime":137,"cleanTitle":"logan","imdbId":"tt3315342","tmdbId":263115,"titleSlug":"263115","certification":"R","genres":["Action","Drama","Science Fiction"],"tags":[],"added":"2018-10-17T23:15:57Z","ratings":{"votes":15997,"value":7.8},"movieFile":{"movieId":292,"relativePath":"Logan.2017-Remux-1080p.mkv","path":"\/movies\/Logan (2017)\/Logan.2017-Remux-1080p.mkv","size":32928347112,"dateAdded":"2018-10-18T02:43:28Z","sceneName":"Logan.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English \/ Spanish \/ French \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:17:23","scanType":"Progressive","subtitles":"English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":384},"collection":{"name":"The Wolverine Collection","tmdbId":453993,"images":[]},"id":292},{"title":"Maze Runner: The Scorch Trials","originalTitle":"Maze Runner: The Scorch Trials","alternateTitles":[{"sourceType":"tmdb","movieId":293,"title":"Maze Runner 2: The Scorch Trials","sourceId":294254,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":425},{"sourceType":"tmdb","movieId":293,"title":"Correr o Morir 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2819},{"sourceType":"tmdb","movieId":293,"title":"Maze Runner 2 - Prova de Fogo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2820},{"sourceType":"tmdb","movieId":293,"title":"\u79fb\u52a8\u8ff7\u5bab2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2822},{"sourceType":"tmdb","movieId":293,"title":"El Corredor del Laberinto 2 - Las Pruebas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2823},{"sourceType":"tmdb","movieId":293,"title":"Le Labyrinthe 2 - La Terre br\u00fbl\u00e9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2824},{"sourceType":"tmdb","movieId":293,"title":"\u30e1\u30a4\u30ba\u30fb\u30e9\u30f3\u30ca\u30fc2 \u7802\u6f20\u306e\u8ff7\u5bae","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2825},{"sourceType":"tmdb","movieId":293,"title":"B\u0117gantis labirintu I\u0161bandymai ugnimi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2827},{"sourceType":"tmdb","movieId":293,"title":"\u0422\u043e\u0439, \u0449\u043e \u0431\u0456\u0436\u0438\u0442\u044c \u043b\u0430\u0431\u0456\u0440\u0438\u043d\u0442\u043e\u043c 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2829},{"sourceType":"tmdb","movieId":293,"title":"Maze Runner: Prueba de fuego","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3661},{"sourceType":"tmdb","movieId":293,"title":"The Maze Runner 2 - Die Auserw\u00e4hlten in der Brandw\u00fcste","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5560},{"sourceType":"tmdb","movieId":293,"title":"Labirent: Alev Deneyleri","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":6077}],"secondaryYearSourceId":0,"sortTitle":"maze runner scorch trials","sizeOnDisk":10563606550,"status":"released","overview":"Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD\u2019s vastly superior forces and uncover its shocking plans for them all.","inCinemas":"2015-09-09T00:00:00Z","physicalRelease":"2016-01-20T00:00:00Z","digitalRelease":"2017-10-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/293\/poster.jpg?lastWrite=637651725220549777","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mYw7ZyejqSCPFlrT2jHZOESZDU3.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/293\/fanart.jpg?lastWrite=637655186423553997","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4mcOCiR06dqQ5eoEJcG3zvonjOa.jpg"}],"website":"http:\/\/mazerunnermovies.com","year":2015,"hasFile":true,"youTubeTrailerId":"SDofO3P2HpE","studio":"Temple Hill Entertainment","path":"\/movies\/Maze Runner The Scorch Trials (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Maze Runner The Scorch Trials (2015)","runtime":131,"cleanTitle":"mazerunnerscorchtrials","imdbId":"tt4046784","tmdbId":294254,"titleSlug":"294254","certification":"PG-13","genres":["Science Fiction","Action","Thriller"],"tags":[],"added":"2018-10-17T23:16:05Z","ratings":{"votes":8365,"value":6.7},"movieFile":{"movieId":293,"relativePath":"Maze Runner The Scorch Trials.2015-Bluray-1080p.mkv","path":"\/movies\/Maze Runner The Scorch Trials (2015)\/Maze Runner The Scorch Trials.2015-Bluray-1080p.mkv","size":10563606550,"dateAdded":"2018-10-17T23:56:24Z","sceneName":"Maze.Runner.The.Scorch.Trials.2015.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9185000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:11:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":381},"collection":{"name":"The Maze Runner Collection","tmdbId":295130,"images":[]},"id":293},{"title":"Maze Runner: The Death Cure","originalTitle":"Maze Runner: The Death Cure","alternateTitles":[{"sourceType":"tmdb","movieId":294,"title":"Maze Runner 3","sourceId":336843,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":428},{"sourceType":"tmdb","movieId":294,"title":"Maze Runner 3: The Death Cure","sourceId":336843,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":430},{"sourceType":"tmdb","movieId":294,"title":"Maze Runner 3 - A Cura Mortal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3656},{"sourceType":"tmdb","movieId":294,"title":"Maze Runner: La cura mortal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3657},{"sourceType":"tmdb","movieId":294,"title":"Correr o Morir 3 - La cura mortal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3658},{"sourceType":"tmdb","movieId":294,"title":"\u039f \u03bb\u03b1\u03b2\u03cd\u03c1\u03b9\u03bd\u03b8\u03bf\u03c2: \u0398\u03b5\u03c1\u03b1\u03c0\u03b5\u03af\u03b1 \u03b8\u03b1\u03bd\u03ac\u03c4\u03bf\u03c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3659},{"sourceType":"tmdb","movieId":294,"title":"Maze Runner: D\u00f8dskuren","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3660},{"sourceType":"tmdb","movieId":294,"title":"Labirent: Son \u0130syan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":6076}],"secondaryYearSourceId":0,"sortTitle":"maze runner death cure","sizeOnDisk":34165131948,"status":"released","overview":"Thomas leads his group of escaped Gladers on their final and most dangerous mission yet. To save their friends, they must break into the legendary Last City, a WCKD-controlled labyrinth that may turn out to be the deadliest maze of all. Anyone who makes it out alive will get answers to the questions the Gladers have been asking since they first arrived in the maze.","inCinemas":"2018-01-10T00:00:00Z","physicalRelease":"2018-04-24T00:00:00Z","digitalRelease":"2018-04-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/294\/poster.jpg?lastWrite=637658647378182661","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2zYfzA3TBwrMC8tfFbpiTLODde0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/294\/fanart.jpg?lastWrite=637661242099650262","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zgcL0xaHxXVvrV1Fu1ZSKoTk0MH.jpg"}],"website":"http:\/\/mazerunnermovies.com","year":2018,"hasFile":true,"youTubeTrailerId":"Ww1GiTIJF_Y","studio":"Gotham Group","path":"\/movies\/Maze Runner The Death Cure (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Maze Runner The Death Cure (2018)","runtime":143,"cleanTitle":"mazerunnerdeathcure","imdbId":"tt4500922","tmdbId":336843,"titleSlug":"336843","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-10-17T23:16:12Z","ratings":{"votes":5952,"value":7.1},"movieFile":{"movieId":294,"relativePath":"Maze Runner The Death Cure.2018-Remux-1080p.mkv","path":"\/movies\/Maze Runner The Death Cure (2018)\/Maze Runner The Death Cure.2018-Remux-1080p.mkv","size":34165131948,"dateAdded":"2018-10-18T06:55:40Z","sceneName":"Maze.Runner.The.Death.Cure.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":5120268,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Spanish \/ French \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":23355288,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:23:52","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ French \/ English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":387},"collection":{"name":"The Maze Runner Collection","tmdbId":295130,"images":[]},"id":294},{"title":"The Fearless Vampire Killers","originalTitle":"The Fearless Vampire Killers","alternateTitles":[{"sourceType":"tmdb","movieId":295,"title":"Dance of the Vampires","sourceId":3053,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":433},{"sourceType":"tmdb","movieId":295,"title":"The Fearless Vampire Killers or: Pardon Me, But Your Teeth Are in My Neck","sourceId":3053,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":434},{"sourceType":"tmdb","movieId":295,"title":"\u0411\u0435\u0437\u0441\u0442\u0440\u0430\u0448\u043d\u0438\u0442\u0435 \u0443\u0431\u0438\u0439\u0446\u0438 \u043d\u0430 \u0432\u0430\u043c\u043f\u0438\u0440\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4758},{"sourceType":"tmdb","movieId":295,"title":"La Danza de los Vampiros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4759},{"sourceType":"tmdb","movieId":295,"title":"Le bal des vampires","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4760},{"sourceType":"tmdb","movieId":295,"title":"Por Favor N\u00e3o Me Morda o Pesco\u00e7o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4761},{"sourceType":"tmdb","movieId":295,"title":"\u0411\u0435\u0441\u0441\u0442\u0440\u0430\u0448\u043d\u044b\u0435 \u0443\u0431\u0438\u0439\u0446\u044b \u0432\u0430\u043c\u043f\u0438\u0440\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4763},{"sourceType":"tmdb","movieId":295,"title":"\u0411\u0435\u0437\u0441\u0442\u0440\u0430\u0448\u043d\u0456 \u0432\u0431\u0438\u0432\u0446\u0456 \u0432\u0430\u043c\u043f\u0456\u0440\u0456\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5544}],"secondaryYearSourceId":0,"sortTitle":"fearless vampire killers","sizeOnDisk":2111088316,"status":"released","overview":"A noted professor and his dim-witted apprentice fall prey to their inquiring vampires, while on the trail of the ominous damsel in distress.","inCinemas":"1967-02-01T00:00:00Z","physicalRelease":"2008-01-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/295\/poster.jpg?lastWrite=637630100098546713","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iH8Ohx97F2eIagrJGzCEraO93MN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/295\/fanart.jpg?lastWrite=637630100099866691","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/d93N5qXpFrrWlNxbDOoXd3OTEfr.jpg"}],"website":"","year":1967,"hasFile":true,"youTubeTrailerId":"LK46jK_6YsI","studio":"Filmways Pictures","path":"\/movies\/The Fearless Vampire Killers (1967)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Fearless Vampire Killers (1967)","runtime":108,"cleanTitle":"thefearlessvampirekillers","imdbId":"tt0061655","tmdbId":3053,"titleSlug":"3053","certification":"NR","genres":["Comedy","Horror"],"tags":[],"added":"2018-10-20T10:06:50Z","ratings":{"votes":476,"value":7.1},"movieFile":{"movieId":295,"relativePath":"The Fearless Vampire Killers.1967-Bluray-1080p.mp4","path":"\/movies\/The Fearless Vampire Killers (1967)\/The Fearless Vampire Killers.1967-Bluray-1080p.mp4","size":2111088316,"dateAdded":"2018-10-20T10:22:04Z","sceneName":"The.Fearless.Vampire.Killers.1967.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x792","runTime":"1:43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":392},"id":295},{"title":"Jumper","originalTitle":"Jumper","alternateTitles":[{"sourceType":"tmdb","movieId":296,"title":"Jumper 3D","sourceId":8247,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1279},{"sourceType":"tmdb","movieId":296,"title":"Jumper (Doug Liman)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1569}],"secondaryYearSourceId":0,"sortTitle":"jumper","sizeOnDisk":8532615817,"status":"released","overview":"David Rice is a man who knows no boundaries, a Jumper, born with the uncanny ability to teleport instantly to anywhere on Earth. When he discovers others like himself, David is thrust into a dangerous and bloodthirsty war while being hunted by a sinister and determined group of zealots who have sworn to destroy all Jumpers. Now, David\u2019s extraordinary gift may be his only hope for survival!","inCinemas":"2008-02-13T00:00:00Z","physicalRelease":"2008-07-16T00:00:00Z","digitalRelease":"2010-10-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/296\/poster.jpg?lastWrite=637637884798502911","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3pPZ9JhNz3VMmASVir5SMHvTDUU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/296\/fanart.jpg?lastWrite=637637884800062886","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kGlNcCms3C8Ud7WCGGSOJhPsS70.jpg"}],"website":"http:\/\/www.fox.co.uk\/jumper","year":2008,"hasFile":true,"youTubeTrailerId":"eLqE8rqNPbk","studio":"Dune Entertainment","path":"\/movies\/Jumper (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Jumper (2008)","runtime":88,"cleanTitle":"jumper","imdbId":"tt0489099","tmdbId":8247,"titleSlug":"8247","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-20T15:54:41Z","ratings":{"votes":4435,"value":6.1},"movieFile":{"movieId":296,"relativePath":"Jumper.2008-Bluray-1080p.mkv","path":"\/movies\/Jumper (2008)\/Jumper.2008-Bluray-1080p.mkv","size":8532615817,"dateAdded":"2018-10-20T16:24:53Z","sceneName":"Jumper.2008.1080p.BluRay.x264-SECTOR7","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11345000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:28:29","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"x264","edition":"","id":393},"id":296},{"title":"The Cabin in the Woods","originalTitle":"The Cabin in the Woods","alternateTitles":[],"secondaryYear":2011,"secondaryYearSourceId":0,"sortTitle":"cabin in woods","sizeOnDisk":10684988462,"status":"released","overview":"Five college friends spend the weekend at a remote cabin in the woods, where they get more than they bargained for. Together, they must discover the truth behind the cabin in the woods.","inCinemas":"2012-04-12T00:00:00Z","physicalRelease":"2012-09-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/297\/poster.jpg?lastWrite=637636154755531616","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zZZe5wn0udlhMtdlDjN4NB72R6e.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/297\/fanart.jpg?lastWrite=637636154757731579","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5iiVfPS6LsAqmVQVOzhyCHhCFgU.jpg"}],"website":"http:\/\/www.discoverthecabininthewoods.com\/","year":2012,"hasFile":true,"youTubeTrailerId":"7NiAWF7VIFY","studio":"Lionsgate","path":"\/movies\/The Cabin in the Woods (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Cabin in the Woods (2012)","runtime":95,"cleanTitle":"thecabininwoods","imdbId":"tt1259521","tmdbId":22970,"titleSlug":"22970","certification":"R","genres":["Horror","Comedy","Fantasy"],"tags":[],"added":"2018-10-22T16:23:57Z","ratings":{"votes":6031,"value":6.6},"movieFile":{"movieId":297,"relativePath":"The Cabin in the Woods.2012-Bluray-1080p.mkv","path":"\/movies\/The Cabin in the Woods (2012)\/The Cabin in the Woods.2012-Bluray-1080p.mkv","size":10684988462,"dateAdded":"2018-10-22T16:53:49Z","sceneName":"The.Cabin.in.the.Woods.2011.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x800","runTime":"1:34:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":394},"id":297},{"title":"The Golden Compass","originalTitle":"The Golden Compass","alternateTitles":[{"sourceType":"tmdb","movieId":299,"title":"\u0417\u043b\u0430\u0442\u043d\u0438\u044f\u0442 \u043a\u043e\u043c\u043f\u0430\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3241},{"sourceType":"tmdb","movieId":299,"title":"A B\u00fassola de Ouro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3242},{"sourceType":"tmdb","movieId":299,"title":"\u00c0 la crois\u00e9e des mondes - La Boussole d'or","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3243},{"sourceType":"tmdb","movieId":299,"title":"\u03a4\u03bf \u0391\u03c3\u03c4\u03ad\u03c1\u03b9 \u03c4\u03bf\u03c5 \u0392\u03bf\u03c1\u03c1\u03ac","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3244},{"sourceType":"tmdb","movieId":299,"title":"\u30e9\u30a4\u30e9\u306e\u5192\u967a \u9ec4\u91d1\u306e\u7f85\u91dd\u76e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3245},{"sourceType":"tmdb","movieId":299,"title":"\ud669\uae08 \ub098\uce68\ubc18","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3246},{"sourceType":"tmdb","movieId":299,"title":"\u0417\u043e\u043b\u043e\u0442\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3247},{"sourceType":"tmdb","movieId":299,"title":"La Brujula Dorada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":3248},{"sourceType":"tmdb","movieId":299,"title":"\u9ec3\u91d1\u7f85\u76e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3249},{"sourceType":"tmdb","movieId":299,"title":"Z\u0142oty Kompas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5022}],"secondaryYearSourceId":0,"sortTitle":"golden compass","sizeOnDisk":9994648945,"status":"released","overview":"After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.","inCinemas":"2007-12-04T00:00:00Z","physicalRelease":"2008-06-16T00:00:00Z","digitalRelease":"2010-12-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/299\/poster.jpg?lastWrite=637637884719464200","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lyaS7S4emzEaYUcSnCvyqfJpOcA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/299\/fanart.jpg?lastWrite=637614532673620172","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/szAuHzSVFzamjCkkulopJZQVNYd.jpg"}],"website":"http:\/\/www.goldencompassmovie.com\/index_german.html","year":2007,"hasFile":true,"youTubeTrailerId":"gNiiJ0JtBOQ","studio":"Depth of Field","path":"\/movies\/The Golden Compass (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Golden Compass (2007)","runtime":113,"cleanTitle":"thegoldencompass","imdbId":"tt0385752","tmdbId":2268,"titleSlug":"2268","certification":"PG-13","genres":["Adventure","Fantasy"],"tags":[],"added":"2018-10-22T17:05:51Z","ratings":{"votes":3651,"value":6},"movieFile":{"movieId":299,"relativePath":"The Golden Compass.2007-Bluray-1080p.mkv","path":"\/movies\/The Golden Compass (2007)\/The Golden Compass.2007-Bluray-1080p.mkv","size":9994648945,"dateAdded":"2018-10-22T17:57:52Z","sceneName":"The.Golden.Compass.2007.1080p.BluRay.x264-hV","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:53:17","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"hV","edition":"","id":396},"id":299},{"title":"The Incredibles","originalTitle":"The Incredibles","alternateTitles":[{"sourceType":"tmdb","movieId":300,"title":"Fenomenalnite","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1547},{"sourceType":"tmdb","movieId":300,"title":"Os Incr\u00edveis Os Super Her\u00f3is","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1548},{"sourceType":"tmdb","movieId":300,"title":"The Incredibles 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1549},{"sourceType":"tmdb","movieId":300,"title":"\u8d85\u4eba\u7279\u653b\u961f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1550},{"sourceType":"tmdb","movieId":300,"title":"Imelised","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1551},{"sourceType":"tmdb","movieId":300,"title":"Les Indestructibles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1552},{"sourceType":"tmdb","movieId":300,"title":"Oi Ap\u00edthanoi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1553},{"sourceType":"tmdb","movieId":300,"title":"Hum Hain Lajawaab","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1554},{"sourceType":"tmdb","movieId":300,"title":"Gli Incredibili - Una \"normale\" famiglia di supereroi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1555},{"sourceType":"tmdb","movieId":300,"title":"\uc778\ud06c\ub808\ub354\ube14","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1556},{"sourceType":"tmdb","movieId":300,"title":"\uc778\ud06c\ub808\ub354\ube14 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1557},{"sourceType":"tmdb","movieId":300,"title":"Los Incre\u00edbles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1558},{"sourceType":"tmdb","movieId":300,"title":"Nevijeni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1559},{"sourceType":"tmdb","movieId":300,"title":"Supersemeyka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1560},{"sourceType":"tmdb","movieId":300,"title":"Neverjetni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1561},{"sourceType":"tmdb","movieId":300,"title":"Supersimeyka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1562},{"sourceType":"tmdb","movieId":300,"title":"Super oila","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1563},{"sourceType":"tmdb","movieId":300,"title":"Die Unglaublichen \u2013 The Incredibles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4597},{"sourceType":"tmdb","movieId":300,"title":"Iniemamocni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5000},{"sourceType":"tmdb","movieId":300,"title":"Les Incroyable","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5359}],"secondaryYearSourceId":0,"sortTitle":"incredibles","sizeOnDisk":12362521434,"status":"released","overview":"Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.","inCinemas":"2004-10-27T00:00:00Z","physicalRelease":"2005-03-14T00:00:00Z","digitalRelease":"2010-01-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/300\/poster.jpg?lastWrite=637640479440873170","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2LqaLgk4Z226KkgPJuiOQ58wvrm.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/300\/fanart.jpg?lastWrite=637611070803963601","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/se5Hxz7PArQZOG3Nx2bpfOhLhtV.jpg"}],"website":"http:\/\/disney.go.com\/disneyvideos\/animatedfilms\/incredibles\/main.html","year":2004,"hasFile":true,"youTubeTrailerId":"sJCjKQQOqT0","studio":"Pixar","path":"\/movies\/The Incredibles (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Incredibles (2004)","runtime":115,"cleanTitle":"theincredibles","imdbId":"tt0317705","tmdbId":9806,"titleSlug":"9806","certification":"PG","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-10-23T16:03:00Z","ratings":{"votes":14216,"value":7.7},"movieFile":{"movieId":300,"relativePath":"The Incredibles.2004-Bluray-1080p.mkv","path":"\/movies\/The Incredibles (2004)\/The Incredibles.2004-Bluray-1080p.mkv","size":12362521434,"dateAdded":"2018-10-23T17:50:38Z","sceneName":"The.Incredibles.2004.RERIP.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":7353903,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":6199840,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x802","runTime":"1:55:18","scanType":"Progressive","subtitles":"English \/ English \/ English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":400},"collection":{"name":"The Incredibles Collection","tmdbId":468222,"images":[]},"id":300},{"title":"Incredibles 2","originalTitle":"Incredibles 2","alternateTitles":[{"sourceType":"tmdb","movieId":301,"title":"The Incredibles 2","sourceId":260513,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":435},{"sourceType":"tmdb","movieId":301,"title":"The Increidibois","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4764},{"sourceType":"tmdb","movieId":301,"title":"Les Incroyables 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4765},{"sourceType":"tmdb","movieId":301,"title":"\uc778\ud06c\ub808\ub354\ube14 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4769},{"sourceType":"tmdb","movieId":301,"title":"\uc778\ud06c\ub808\ub354\ube14\uc2a4 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4770},{"sourceType":"tmdb","movieId":301,"title":"Los Incredibles 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4981},{"sourceType":"tmdb","movieId":301,"title":"Die Unglaublichen 2 - Incredibles 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6012}],"secondaryYearSourceId":0,"sortTitle":"incredibles 2","sizeOnDisk":31098010063,"status":"released","overview":"Elastigirl springs into action to save the day, while Mr. Incredible faces his greatest challenge yet \u2013 taking care of the problems of his three children.","inCinemas":"2018-06-14T00:00:00Z","physicalRelease":"2018-11-06T00:00:00Z","digitalRelease":"2018-10-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/301\/poster.jpg?lastWrite=637655186293555878","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9lFKBtaVIhP7E2Pk0IY1CwTKTMZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/301\/fanart.jpg?lastWrite=637254093617769226","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg"}],"website":"https:\/\/movies.disney.com\/incredibles-2","year":2018,"hasFile":true,"youTubeTrailerId":"i5qOzqD9Rms","studio":"Walt Disney Pictures","path":"\/movies\/Incredibles 2 (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Incredibles 2 (2018)","runtime":118,"cleanTitle":"incredibles2","imdbId":"tt3606756","tmdbId":260513,"titleSlug":"260513","certification":"PG","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-10-23T16:03:01Z","ratings":{"votes":10199,"value":7.5},"movieFile":{"movieId":301,"relativePath":"Incredibles 2.2018-Remux-1080p.mkv","path":"\/movies\/Incredibles 2 (2018)\/Incredibles 2.2018-Remux-1080p.mkv","size":31098010063,"dateAdded":"2019-01-15T04:31:38Z","sceneName":"Incredibles.2.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4490277,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English \/ English \/ Portuguese \/ Chinese \/ Korean \/ Chinese \/ Thai \/ Chinese \/ English","audioStreamCount":12,"videoBitDepth":8,"videoBitrate":20968528,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:57:50","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Chinese \/ Korean \/ Chinese \/ Thai \/ Chinese \/ Chinese \/ English \/ Portuguese \/ Korean \/ Chinese \/ Chinese \/ Korean \/ Chinese \/ Thai \/ Chinese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":476},"collection":{"name":"The Incredibles Collection","tmdbId":468222,"images":[]},"id":301},{"title":"Jurassic World: Fallen Kingdom","originalTitle":"Jurassic World: Fallen Kingdom","alternateTitles":[{"sourceType":"tmdb","movieId":302,"title":"Jurassic Park 5","sourceId":351286,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":436},{"sourceType":"tmdb","movieId":302,"title":"Jurassic World 2","sourceId":351286,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":437},{"sourceType":"tmdb","movieId":302,"title":"Jurassic World 2 - Fallen Kingdom","sourceId":351286,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":438},{"sourceType":"tmdb","movieId":302,"title":"Jurassic World II - Fallen Kingdom","sourceId":351286,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":439},{"sourceType":"tmdb","movieId":302,"title":"Jurassic Park Fallen Kingdom","sourceId":351286,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1172},{"sourceType":"tmdb","movieId":302,"title":"Jurassic Park 5 - Jurassic World 2 - Reino Amea\u00e7ado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3877},{"sourceType":"tmdb","movieId":302,"title":"Jurassic World 2 Das gefallene K\u00f6nigreich","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3878},{"sourceType":"tmdb","movieId":302,"title":"Jurassic World: El reino ca\u00eddo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3879},{"sourceType":"tmdb","movieId":302,"title":"Jurassic Park 5 - Jurassic World Fallen Kingdom","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3880},{"sourceType":"tmdb","movieId":302,"title":"\u05e4\u05d0\u05e8\u05e7 \u05d4\u05d9\u05d5\u05e8\u05d4 5: \u05e0\u05e4\u05d9\u05dc\u05ea \u05d4\u05de\u05de\u05dc\u05db\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3881},{"sourceType":"tmdb","movieId":302,"title":"Jurassic World II - Il Regno Distrutto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3882},{"sourceType":"tmdb","movieId":302,"title":"Jurassic Park 5 - Fallen Kingdom","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5546}],"secondaryYearSourceId":0,"sortTitle":"jurassic world fallen kingdom","sizeOnDisk":35389973650,"status":"released","overview":"Three years after the demise of Jurassic World, a volcanic eruption threatens the remaining dinosaurs on Isla Nublar. So, Claire Dearing recruits Owen Grady to help prevent the extinction of the dinosaurs once again.","inCinemas":"2018-06-06T00:00:00Z","physicalRelease":"2018-09-18T00:00:00Z","digitalRelease":"2018-09-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/302\/poster.jpg?lastWrite=637656916636955883","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c9XxwwhPHdaImA2f1WEfEsbhaFB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/302\/fanart.jpg?lastWrite=637646534586629386","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3s9O5af2xWKWR5JzP2iJZpZeQQg.jpg"}],"website":"http:\/\/www.jurassicworld.com","year":2018,"hasFile":true,"youTubeTrailerId":"1FJD7jZqZEk","studio":"Amblin Entertainment","path":"\/movies\/Jurassic World Fallen Kingdom (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Jurassic World Fallen Kingdom (2018)","runtime":129,"cleanTitle":"jurassicworldfallenkingdom","imdbId":"tt4881806","tmdbId":351286,"titleSlug":"351286","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-23T17:18:02Z","ratings":{"votes":9127,"value":6.6},"movieFile":{"movieId":302,"relativePath":"Jurassic World Fallen Kingdom.2018-Remux-1080p.mkv","path":"\/movies\/Jurassic World Fallen Kingdom (2018)\/Jurassic World Fallen Kingdom.2018-Remux-1080p.mkv","size":35389973650,"dateAdded":"2018-10-23T18:01:37Z","sceneName":"Jurassic.World.Fallen.Kingdom.2018.1080p.BluRay.REMUX.AVC.DTS-X.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL X","audioBitrate":4230912,"audioChannels":7.1,"audioCodec":"DTS-X","audioLanguages":"English \/ English \/ Spanish \/ Spanish \/ French \/ French","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":23894758,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:08:17","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":401},"collection":{"name":"Jurassic Park Collection","tmdbId":328,"images":[]},"id":302},{"title":"Jurassic World","originalTitle":"Jurassic World","alternateTitles":[{"sourceType":"tmdb","movieId":303,"title":"Jurassic Park 4","sourceId":135397,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":440},{"sourceType":"tmdb","movieId":303,"title":"Mundo Jur\u00e1sico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3861},{"sourceType":"tmdb","movieId":303,"title":"Jurassic Park 4 - Jurassic World","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3862},{"sourceType":"tmdb","movieId":303,"title":"Jurassic Park IV Jurassic World","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3863},{"sourceType":"tmdb","movieId":303,"title":"Jurassic Park 4 - Jurassic World - O Mundo dos Dinossauros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3864},{"sourceType":"tmdb","movieId":303,"title":"Jurassic World - O Mundo Dos Dinossauros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3865},{"sourceType":"tmdb","movieId":303,"title":"Jurassic World 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3866},{"sourceType":"tmdb","movieId":303,"title":"\u4f8f\u7f57\u7eaa\u516c\u56ed4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3867},{"sourceType":"tmdb","movieId":303,"title":"Jurassic World 2015","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3868},{"sourceType":"tmdb","movieId":303,"title":"\u05e4\u05d0\u05e8\u05e7 \u05d4\u05d9\u05d5\u05e8\u05d4 4: \u05e2\u05d5\u05dc\u05dd \u05d4\u05d9\u05d5\u05e8\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3869},{"sourceType":"tmdb","movieId":303,"title":"Jurassic World I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3870},{"sourceType":"tmdb","movieId":303,"title":"\uc96c\ub77c\uae30 \uacf5\uc6d0 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3871},{"sourceType":"tmdb","movieId":303,"title":"J\u016bros periodo parkas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3872},{"sourceType":"tmdb","movieId":303,"title":"Mundo Jur\u00e1ssico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3873},{"sourceType":"tmdb","movieId":303,"title":"Park iz doba jure 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3874},{"sourceType":"tmdb","movieId":303,"title":"Svet iz doba jure","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3875},{"sourceType":"tmdb","movieId":303,"title":"\u0e40\u0e1b\u0e34\u0e14\u0e2a\u0e27\u0e19\u0e42\u0e25\u0e01\u0e44\u0e14\u0e42\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3876},{"sourceType":"tmdb","movieId":303,"title":"Jurassic World: Mundo Jur\u00e1sico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4835},{"sourceType":"tmdb","movieId":303,"title":"Jurassic Park IV","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5907}],"secondaryYearSourceId":0,"sortTitle":"jurassic world","sizeOnDisk":2545501740,"status":"released","overview":"Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.","inCinemas":"2015-06-06T00:00:00Z","physicalRelease":"2015-10-07T00:00:00Z","digitalRelease":"2016-06-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/303\/poster.jpg?lastWrite=637666432242516049","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rhr4y79GpxQF9IsfJItRXVaoGs4.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/303\/fanart.jpg?lastWrite=637655186373754719","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yOCRqvrRrxbs5FYq2pX1KtLJwmR.jpg"}],"website":"http:\/\/www.jurassicworld.com\/","year":2015,"hasFile":true,"youTubeTrailerId":"aJJrkyHas78","studio":"Amblin Entertainment","path":"\/movies\/Jurassic World (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Jurassic World (2015)","runtime":124,"cleanTitle":"jurassicworld","imdbId":"tt0369610","tmdbId":135397,"titleSlug":"135397","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-23T17:18:03Z","ratings":{"votes":17164,"value":6.7},"movieFile":{"movieId":303,"relativePath":"Jurassic World.2015-Bluray-1080p.mp4","path":"\/movies\/Jurassic World (2015)\/Jurassic World.2015-Bluray-1080p.mp4","size":2545501740,"dateAdded":"2018-10-23T17:28:07Z","sceneName":"Jurassic.World.2015.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"2:04:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":398},"collection":{"name":"Jurassic Park Collection","tmdbId":328,"images":[]},"id":303},{"title":"Jurassic Park","originalTitle":"Jurassic Park","alternateTitles":[{"sourceType":"tmdb","movieId":304,"title":"\u062d\u062f\u064a\u0642\u0629 \u062c\u0648\u0631\u0627\u0633\u064a\u0629","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2484},{"sourceType":"tmdb","movieId":304,"title":"Dzhurasik park","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2485},{"sourceType":"tmdb","movieId":304,"title":"Jurassic Park (Remastered)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2486},{"sourceType":"tmdb","movieId":304,"title":"Le Parc jurassique","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2487},{"sourceType":"tmdb","movieId":304,"title":"Park Ha-Yura","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2489},{"sourceType":"tmdb","movieId":304,"title":"Jurashikku p\u00e2ku","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2490},{"sourceType":"tmdb","movieId":304,"title":"\uc96c\ub77c\uae30 \uacf5\uc6d0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2491},{"sourceType":"tmdb","movieId":304,"title":"Park iz doba jure","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2492},{"sourceType":"tmdb","movieId":304,"title":"Park Yurskogo perioda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2493},{"sourceType":"tmdb","movieId":304,"title":"\u0e08\u0e39\u0e23\u0e32\u0e2a\u0e2a\u0e34\u0e04 \u0e1b\u0e32\u0e23\u0e4c\u0e04 1 : \u0e01\u0e33\u0e40\u0e19\u0e34\u0e14\u0e43\u0e2b\u0e21\u0e48\u0e44\u0e14\u0e42\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2494},{"sourceType":"tmdb","movieId":304,"title":"Park Yurs\u02b9koho periodu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2495},{"sourceType":"tmdb","movieId":304,"title":"Cong Vien Ky Jura","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2496},{"sourceType":"tmdb","movieId":304,"title":"Jurassic Park (Parque Jur\u00e1sico)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4757},{"sourceType":"tmdb","movieId":304,"title":"Parque Jur\u00e1sico (Jurassic Park)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4786},{"sourceType":"tmdb","movieId":304,"title":"\u4f8f\u7f57\u7eaa\u516c\u56ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5703},{"sourceType":"tmdb","movieId":304,"title":"\u4f8f\u7f85\u7d00\u516c\u5712","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5921},{"sourceType":"tmdb","movieId":304,"title":"Jurassic Park 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6032},{"sourceType":"tmdb","movieId":304,"title":"Parque Jur\u00e1ssico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6065}],"secondaryYearSourceId":0,"sortTitle":"jurassic park","sizeOnDisk":2589105924,"status":"released","overview":"A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.","inCinemas":"1993-06-11T00:00:00Z","physicalRelease":"2000-10-18T00:00:00Z","digitalRelease":"2002-04-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/304\/poster.jpg?lastWrite=637624046471545410","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oU7Oq2kFAAlGqbU4VoAE36g4hoI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/304\/fanart.jpg?lastWrite=637643939491726408","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9kqA5fe1V2yqCBudUMUTmXbyy3Y.jpg"}],"website":"http:\/\/www.jurassicpark.com\/","year":1993,"hasFile":true,"youTubeTrailerId":"hNX7hnG5Djo","studio":"Universal Pictures","path":"\/movies\/Jurassic Park (1993)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Jurassic Park (1993)","runtime":127,"cleanTitle":"jurassicpark","imdbId":"tt0107290","tmdbId":329,"titleSlug":"329","certification":"PG-13","genres":["Adventure","Science Fiction"],"tags":[],"added":"2018-10-23T17:18:06Z","ratings":{"votes":12493,"value":7.9},"movieFile":{"movieId":304,"relativePath":"Jurassic Park.1993-Bluray-1080p.mp4","path":"\/movies\/Jurassic Park (1993)\/Jurassic Park.1993-Bluray-1080p.mp4","size":2589105924,"dateAdded":"2018-10-23T17:36:41Z","sceneName":"Jurassic.Park.1993.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1038","runTime":"2:06:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":399},"collection":{"name":"Jurassic Park Collection","tmdbId":328,"images":[]},"id":304},{"title":"Constantine: City of Demons - The Movie","originalTitle":"Constantine: City of Demons - The Movie","alternateTitles":[{"sourceType":"tmdb","movieId":305,"title":"Constantine: City of Demons","sourceId":539517,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":443},{"sourceType":"tmdb","movieId":305,"title":"Constantine City of Demons - The Movie (2018)","sourceId":539517,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1320},{"sourceType":"tmdb","movieId":305,"title":"Constantine - Cidade dos Demonios","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3606},{"sourceType":"tmdb","movieId":305,"title":"\u5eb7\u65af\u5766\u4e01\uff1a\u6076\u9b54\u4e4b\u57ce","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3607},{"sourceType":"tmdb","movieId":305,"title":"\u5eb7\u65af\u5766\u4e01\uff1a\u6076\u9b54\u4e4b\u57ce\u7535\u5f71\u7248","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3608}],"secondaryYearSourceId":0,"sortTitle":"constantine city demons movie","sizeOnDisk":14377652950,"status":"released","overview":"A decade after a tragic mistake, family man Chas and occult detective John Constantine set out to cure Chas\u2019s daughter Trish from a mysterious supernatural coma. With the help of the mysterious Nightmare Nurse, the influential Queen of Angels, and brutal Aztec God Mictlantecuhtli, the pair just might have a chance at outsmarting the demon Beroul to save Trish\u2019s soul. In a world of shadows and dark magic, not everything is what it seems, and there\u2019s always a price to pay. The path to redemption is never easy, and if Constantine is to succeed, he must navigate through the dark urban underbelly of Los Angeles, outwit the most cunning spawns of hell, and come face to face with arch-nemesis Nergal \u2013 all while battling his own inner demons!","physicalRelease":"2018-10-09T00:00:00Z","digitalRelease":"2018-10-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/305\/poster.jpg?lastWrite=637663836250122735","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tZIMe2pYug1cS9e7AZnd1bTTidM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/305\/fanart.jpg?lastWrite=637611070403570933","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4DDayvXxs7vwjd33fZNyWfTlCDA.jpg"}],"website":"https:\/\/www.dccomics.com\/movies\/constantine-city-of-demons-the-movie","year":2018,"hasFile":true,"youTubeTrailerId":"Tgujmtdj_3c","studio":"Warner Bros. Animation","path":"\/movies\/Constantine City of Demons - The Movie (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Constantine City of Demons - The Movie (2018)","runtime":90,"cleanTitle":"constantinecitydemonsmovie","imdbId":"tt9177882","tmdbId":539517,"titleSlug":"539517","certification":"R","genres":["Fantasy","Animation","Horror"],"tags":[],"added":"2018-10-24T16:12:06Z","ratings":{"votes":370,"value":7.9},"movieFile":{"movieId":305,"relativePath":"Constantine City of Demons - The Movie.2018-Remux-1080p.mkv","path":"\/movies\/Constantine City of Demons - The Movie (2018)\/Constantine City of Demons - The Movie.2018-Remux-1080p.mkv","size":14377652950,"dateAdded":"2018-10-24T16:52:49Z","sceneName":"Constantine.City.of.Demons.The.Movie.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2190153,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ German \/ Spanish \/ Spanish","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":14925000,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:30:09","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Spanish \/ Spanish \/ French \/ German \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":403},"id":305},{"title":"The Day the Earth Stood Still","originalTitle":"The Day the Earth Stood Still","alternateTitles":[{"sourceType":"tmdb","movieId":306,"title":"El dia que la tierra se detuvo","sourceId":10200,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":444},{"sourceType":"tmdb","movieId":306,"title":"\u05d1\u05d9\u05d5\u05dd \u05e9\u05d4\u05e2\u05d5\u05dc\u05dd \u05e2\u05de\u05d3 \u05de\u05dc\u05db\u05ea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1462}],"secondaryYearSourceId":0,"sortTitle":"day earth stood still","sizeOnDisk":2119676782,"status":"released","overview":"A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive.","inCinemas":"2008-12-10T00:00:00Z","physicalRelease":"2009-03-10T00:00:00Z","digitalRelease":"2010-12-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/306\/poster.jpg?lastWrite=637648264594405732","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3744nDNrKIFcgXEDL2WDkqYc7vF.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/306\/fanart.jpg?lastWrite=637430477028974916","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mqCEqV1hJtBIjsT16y8TlFh0azG.jpg"}],"website":"","year":2008,"hasFile":true,"youTubeTrailerId":"w8INBc01Zlo","studio":"Dune Entertainment III","path":"\/movies\/The Day the Earth Stood Still (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Day the Earth Stood Still (2008)","runtime":104,"cleanTitle":"thedayearthstoodstill","imdbId":"tt0970416","tmdbId":10200,"titleSlug":"10200","certification":"PG-13","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2018-10-24T16:15:36Z","ratings":{"votes":2541,"value":5.5},"movieFile":{"movieId":306,"relativePath":"The Day the Earth Stood Still.2008-Bluray-1080p.mp4","path":"\/movies\/The Day the Earth Stood Still (2008)\/The Day the Earth Stood Still.2008-Bluray-1080p.mp4","size":2119676782,"dateAdded":"2018-10-25T06:47:32Z","sceneName":"The.Day.The.Earth.Stood.Still.2008.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:43:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":406},"id":306},{"title":"The Chronicles of Riddick","originalTitle":"The Chronicles of Riddick","alternateTitles":[{"sourceType":"tmdb","movieId":307,"title":"Pitch Black 2","sourceId":2789,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":445},{"sourceType":"tmdb","movieId":307,"title":"The Chronicles of Riddick: The Director's Cut","sourceId":2789,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":446},{"sourceType":"tmdb","movieId":307,"title":"Riddick 2 - Chronicles of Riddick","sourceId":2789,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":858},{"sourceType":"tmdb","movieId":307,"title":"La batalla de Riddick","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3229},{"sourceType":"tmdb","movieId":307,"title":"Khronikite na Ridik","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3230},{"sourceType":"tmdb","movieId":307,"title":"\u5929\u57df\u6218\u58eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3231},{"sourceType":"tmdb","movieId":307,"title":"Riddick 2 - Les Chroniques de Riddick","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3233},{"sourceType":"tmdb","movieId":307,"title":"Ta Chronik\u00e1 tou Sk\u00f3tous","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3234},{"sourceType":"tmdb","movieId":307,"title":"\u5929\u57df\u6230\u58eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3235},{"sourceType":"tmdb","movieId":307,"title":"Ridikove hronike","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3236},{"sourceType":"tmdb","movieId":307,"title":"Khroniki Riddika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3237},{"sourceType":"tmdb","movieId":307,"title":"\u8d85\u4e16\u7d00\u6230\u8b66","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3238},{"sourceType":"tmdb","movieId":307,"title":"Khroniky Riddika","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3239},{"sourceType":"tmdb","movieId":307,"title":"A Batalha de Riddick","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5445}],"secondaryYearSourceId":0,"sortTitle":"chronicles riddick","sizeOnDisk":2746088696,"status":"released","overview":"After years of outrunning ruthless bounty hunters, escaped convict Riddick suddenly finds himself caught between opposing forces in a fight for the future of the human race. Now, waging incredible battles on fantastic and deadly worlds, this lone, reluctant hero will emerge as humanity's champion - and the last hope for a universe on the edge of annihilation.","inCinemas":"2004-06-11T00:00:00Z","physicalRelease":"2004-12-07T00:00:00Z","digitalRelease":"2007-03-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/307\/poster.jpg?lastWrite=637454691055192388","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iSaB7jBgsU6sXqKneZpdeRw5MSV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/307\/fanart.jpg?lastWrite=637649994664065985","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9o0WHLPvHHAznN0H3pBfjjiFioN.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"cSqQxoT3wMQ","studio":"Radar Pictures","path":"\/movies\/The Chronicles of Riddick (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Chronicles of Riddick (2004)","runtime":119,"cleanTitle":"thechroniclesriddick","imdbId":"tt0296572","tmdbId":2789,"titleSlug":"2789","certification":"PG-13","genres":["Action","Science Fiction"],"tags":[],"added":"2018-10-24T16:16:03Z","ratings":{"votes":3090,"value":6.5},"movieFile":{"movieId":307,"relativePath":"The Chronicles of Riddick.2004-Bluray-1080p.mp4","path":"\/movies\/The Chronicles of Riddick (2004)\/The Chronicles of Riddick.2004-Bluray-1080p.mp4","size":2746088696,"dateAdded":"2018-10-24T16:38:18Z","sceneName":"The.Chronicles.of.Riddick.2004.DC.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223999,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:14:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":402},"collection":{"name":"The Chronicles of Riddick Collection","tmdbId":2794,"images":[]},"id":307},{"title":"Pitch Black","originalTitle":"Pitch Black","alternateTitles":[{"sourceType":"tmdb","movieId":308,"title":"The Chronicles of Riddick 1- Pitch Black","sourceId":2787,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":448},{"sourceType":"tmdb","movieId":308,"title":"La batalla de Riddick: Pitch Black","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3300},{"sourceType":"tmdb","movieId":308,"title":"P\u016dlen mrak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3301},{"sourceType":"tmdb","movieId":308,"title":"Alerte Noire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3302},{"sourceType":"tmdb","movieId":308,"title":"Riddick 1 - Pitch Black","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3303},{"sourceType":"tmdb","movieId":308,"title":"Riddick 1 - Pitch Black (Director's Cut)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3304},{"sourceType":"tmdb","movieId":308,"title":"Ap\u00e9ranto Skot\u00e1di","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3305},{"sourceType":"tmdb","movieId":308,"title":"\u05e8\u05d9\u05d3\u05d9\u05e7: \u05e4\u05d9\u05e5' \u05d1\u05dc\u05d0\u05e7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3306},{"sourceType":"tmdb","movieId":308,"title":"Alien 2020","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3307},{"sourceType":"tmdb","movieId":308,"title":"Criaturas de la noche","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3308},{"sourceType":"tmdb","movieId":308,"title":"Planeta tame","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3309},{"sourceType":"tmdb","movieId":308,"title":"Chornaya dyra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3310},{"sourceType":"tmdb","movieId":308,"title":"Chorna dira","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3311},{"sourceType":"tmdb","movieId":308,"title":"\u0427\u0435\u0440\u043d\u0430\u044f \u0434\u044b\u0440\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4713},{"sourceType":"tmdb","movieId":308,"title":"Pitch Black (Director's Cut)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5142},{"sourceType":"tmdb","movieId":308,"title":"\u661f\u969b\u50b3\u5947","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6187}],"secondaryYearSourceId":0,"sortTitle":"pitch black","sizeOnDisk":2291319721,"status":"released","overview":"When their ship crash-lands on a remote planet, the marooned passengers soon learn that escaped convict Riddick isn't the only thing they have to fear. Deadly creatures lurk in the shadows, waiting to attack in the dark, and the planet is rapidly plunging into the utter blackness of a total eclipse. With the body count rising, the doomed survivors are forced to turn to Riddick with his eerie eyes to guide them through the darkness to safety. With time running out, there's only one rule: Stay in the light.","inCinemas":"2000-02-18T00:00:00Z","physicalRelease":"2000-12-06T00:00:00Z","digitalRelease":"2003-10-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/308\/poster.jpg?lastWrite=637431341979863908","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qSv4ZCKmpo3Nqkh7YTvLruE9KcW.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/308\/fanart.jpg?lastWrite=637541017621125745","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/38Y65sf9O4zLq6Ke2KdpANYk0G3.jpg"}],"website":"http:\/\/www.pitchblack.com\/","year":2000,"hasFile":true,"youTubeTrailerId":"XQ8RMEC6S2E","studio":"Interscope Communications","path":"\/movies\/Pitch Black (2000)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Pitch Black (2000)","runtime":108,"cleanTitle":"pitchblack","imdbId":"tt0134847","tmdbId":2787,"titleSlug":"2787","certification":"R","genres":["Thriller","Science Fiction","Action"],"tags":[],"added":"2018-10-24T16:16:31Z","ratings":{"votes":3428,"value":6.8},"movieFile":{"movieId":308,"relativePath":"Pitch Black.2000-Bluray-1080p.mp4","path":"\/movies\/Pitch Black (2000)\/Pitch Black.2000-Bluray-1080p.mp4","size":2291319721,"dateAdded":"2018-10-25T06:18:01Z","sceneName":"Pitch.Black.2000.UNRATED.DC.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:51:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"UNRATED","id":405},"collection":{"name":"The Chronicles of Riddick Collection","tmdbId":2794,"images":[]},"id":308},{"title":"The Core","originalTitle":"The Core","alternateTitles":[{"sourceType":"tmdb","movieId":309,"title":"Yadroto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4174},{"sourceType":"tmdb","movieId":309,"title":"O pyrinas: Apostoli sto kentro tis Gis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4178},{"sourceType":"tmdb","movieId":309,"title":"Jezgro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4179},{"sourceType":"tmdb","movieId":309,"title":"Zemnoe jadro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4180},{"sourceType":"tmdb","movieId":309,"title":"Yadro zemli","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4182},{"sourceType":"tmdb","movieId":309,"title":"Fusion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5554}],"secondaryYearSourceId":0,"sortTitle":"core","sizeOnDisk":10561497980,"status":"released","overview":"Geophysicist Dr. Josh Keyes discovers that an unknown force has caused the earth's inner core to stop rotating. With the planet's magnetic field rapidly deteriorating, our atmosphere literally starts to come apart at the seams with catastrophic consequences. To resolve the crisis, Keyes, along with a team of the world's most gifted scientists, travel into the earth's core. Their mission: detonate a device that will reactivate the core.","inCinemas":"2003-03-28T00:00:00Z","physicalRelease":"2003-10-16T00:00:00Z","digitalRelease":"2006-08-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/309\/poster.jpg?lastWrite=637624046277828591","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yzzjsK0P8RGc3mlgSm6ksezwIu7.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/309\/fanart.jpg?lastWrite=637624046279308566","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/v2YxWPX2yKdo6arIAknJzKLxhZY.jpg"}],"website":"","year":2003,"hasFile":true,"youTubeTrailerId":"foAyvN6mVwQ","studio":"Paramount","path":"\/movies\/The Core (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Core (2003)","runtime":136,"cleanTitle":"thecore","imdbId":"tt0298814","tmdbId":9341,"titleSlug":"9341","certification":"PG-13","genres":["Action","Thriller","Adventure"],"tags":[],"added":"2018-10-24T16:16:43Z","ratings":{"votes":1289,"value":5.7},"movieFile":{"movieId":309,"relativePath":"The Core.2003-Bluray-1080p.mkv","path":"\/movies\/The Core (2003)\/The Core.2003-Bluray-1080p.mkv","size":10561497980,"dateAdded":"2018-10-24T22:24:37Z","sceneName":"The.Core.2003.1080p.BluRay.x264-MOOVEE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8930000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:14:57","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MOOVEE","edition":"","id":404},"id":309},{"title":"Ocean's Eight","originalTitle":"Ocean's Eight","alternateTitles":[{"sourceType":"tmdb","movieId":310,"title":"Ocean's 8","sourceId":402900,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":450},{"sourceType":"tmdb","movieId":310,"title":"Ocean's 8: las estafadoras","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4555},{"sourceType":"tmdb","movieId":310,"title":"\uc624\uc158\uc2a4 \uc5d0\uc774\ud2b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4556},{"sourceType":"tmdb","movieId":310,"title":"\uc624\uc158\uc2a48","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4557},{"sourceType":"tmdb","movieId":310,"title":"8 \u043f\u043e\u0434\u0440\u0443\u0433 \u041e\u0443\u0448\u0435\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5149},{"sourceType":"tmdb","movieId":310,"title":"\u0412\u043e\u0441\u0435\u043c\u044c \u043f\u043e\u0434\u0440\u0443\u0433 \u041e\u0443\u0448\u0435\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5150},{"sourceType":"tmdb","movieId":310,"title":"Oito Mulheres e um Segredo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5447},{"sourceType":"tmdb","movieId":310,"title":"Debbina osmi\u010dka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6090}],"secondaryYearSourceId":0,"sortTitle":"ocean s eight","sizeOnDisk":27443537759,"status":"released","overview":"Debbie Ocean, a criminal mastermind, gathers a crew of female thieves to pull off the heist of the century at New York's annual Met Gala.","inCinemas":"2018-06-07T00:00:00Z","physicalRelease":"2018-09-11T00:00:00Z","digitalRelease":"2018-08-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/310\/poster.jpg?lastWrite=637637884944500532","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/MvYpKlpFukTivnlBhizGbkAe3v.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/310\/fanart.jpg?lastWrite=637637884947300486","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/scQf03Fm3jeyv4FH04qvi4fp4wh.jpg"}],"website":"http:\/\/www.oceans8movie.com","year":2018,"hasFile":true,"youTubeTrailerId":"n5LoVcVsiSQ","studio":"Village Roadshow Pictures","path":"\/movies\/Ocean's Eight (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ocean's Eight (2018)","runtime":111,"cleanTitle":"oceanseight","imdbId":"tt5164214","tmdbId":402900,"titleSlug":"402900","certification":"PG-13","genres":["Crime","Comedy","Action"],"tags":[],"added":"2018-10-25T13:54:36Z","ratings":{"votes":6609,"value":7},"movieFile":{"movieId":310,"relativePath":"Ocean's Eight.2018-Remux-1080p.mkv","path":"\/movies\/Ocean's Eight (2018)\/Ocean's Eight.2018-Remux-1080p.mkv","size":27443537759,"dateAdded":"2018-10-25T16:26:32Z","sceneName":"Oceans.Eight.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":2781823,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ French \/ Spanish \/ Portuguese","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":23082417,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:50:09","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ Portuguese \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":410},"id":310},{"title":"Ocean's Eleven","originalTitle":"Ocean's Eleven","alternateTitles":[{"sourceType":"tmdb","movieId":311,"title":"La gran estafa (Ocean's eleven)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2199},{"sourceType":"tmdb","movieId":311,"title":"Oceans 11","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2200},{"sourceType":"tmdb","movieId":311,"title":"11\u7f57\u6c49 \/ \u7792\u5929\u8fc7\u6d77 \/ \u76d7\u6d77\u8c6a\u60c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2201},{"sourceType":"tmdb","movieId":311,"title":"Ocean's Eleven (Hagan Juego)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2202},{"sourceType":"tmdb","movieId":311,"title":"\uc624\uc158\uc2a4 11","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2205},{"sourceType":"tmdb","movieId":311,"title":"Ocean's Eleven - Fa\u00e7am as Vossas Apostas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2206},{"sourceType":"tmdb","movieId":311,"title":"Igraj svoju igru","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2207},{"sourceType":"tmdb","movieId":311,"title":"Odinnadtsat' druzey Oushena","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2208},{"sourceType":"tmdb","movieId":311,"title":"Storslam i Las Vegas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2209},{"sourceType":"tmdb","movieId":311,"title":"Odynadtsyat\u02b9 druziv Oushena","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2210},{"sourceType":"tmdb","movieId":311,"title":"\u041e\u0443\u0448\u0435\u043d \u0456 \u0434\u0435\u0441\u044f\u0442\u044c \u0439\u043e\u0433\u043e \u0434\u0440\u0443\u0437\u0456\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2211},{"sourceType":"tmdb","movieId":311,"title":"\u0397 \u03a3\u03c5\u03bc\u03bc\u03bf\u03c1\u03af\u03b1 \u03c4\u03c9\u03bd \u0388\u03bd\u03c4\u03b5\u03ba\u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5939}],"secondaryYearSourceId":0,"sortTitle":"ocean s eleven","sizeOnDisk":8532017051,"status":"released","overview":"Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.","inCinemas":"2001-12-07T00:00:00Z","physicalRelease":"2002-07-17T00:00:00Z","digitalRelease":"2005-03-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/311\/poster.jpg?lastWrite=637501235626282282","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hQQCdZrsHtZyR6NbKH2YyCqd2fR.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/311\/fanart.jpg?lastWrite=637658647481340830","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/43BEez1EGdmNpg8rcPUFToujlii.jpg"}],"website":"http:\/\/www.warnerbros.co.uk\/movies\/oceans-eleven","year":2001,"hasFile":true,"youTubeTrailerId":"jDtocnE8uKs","studio":"Village Roadshow Pictures","path":"\/movies\/Ocean's Eleven (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ocean's Eleven (2001)","runtime":116,"cleanTitle":"oceanseleven","imdbId":"tt0240772","tmdbId":161,"titleSlug":"161","certification":"PG-13","genres":["Thriller","Crime"],"tags":[],"added":"2018-10-25T13:54:40Z","ratings":{"votes":9105,"value":7.4},"movieFile":{"movieId":311,"relativePath":"Ocean's Eleven.2001-Bluray-1080p.mkv","path":"\/movies\/Ocean's Eleven (2001)\/Ocean's Eleven.2001-Bluray-1080p.mkv","size":8532017051,"dateAdded":"2018-10-25T14:18:25Z","sceneName":"Oceans.Eleven.2001.1080p.BluRay.x264-HDEX","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9116000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:56:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"oceans11","edition":"","id":409},"collection":{"name":"Ocean's Collection","tmdbId":304,"images":[]},"id":311},{"title":"Ocean's Twelve","originalTitle":"Ocean's Twelve","alternateTitles":[{"sourceType":"tmdb","movieId":312,"title":"Bandata na Oush\u016dn 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3936},{"sourceType":"tmdb","movieId":312,"title":"Ocean\u2019s 12","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3937},{"sourceType":"tmdb","movieId":312,"title":"I symmoria ton dodeka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3938},{"sourceType":"tmdb","movieId":312,"title":"\uc624\uc158\uc2a4 12","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3940},{"sourceType":"tmdb","movieId":312,"title":"Igraj svoju igru 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3941},{"sourceType":"tmdb","movieId":312,"title":"Dvenadtsat' druzey Oushena","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3942},{"sourceType":"tmdb","movieId":312,"title":"Oceanovih 12","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3943},{"sourceType":"tmdb","movieId":312,"title":"Ocean's Twelve: Dannyho dvan\u00e1stka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3944},{"sourceType":"tmdb","movieId":312,"title":"Dvanadtsyat\u02b9 druziv Oushena","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3945},{"sourceType":"tmdb","movieId":312,"title":"\u0397 \u03a3\u03c5\u03bc\u03bc\u03bf\u03c1\u03af\u03b1 \u03c4\u03c9\u03bd \u0394\u03ce\u03b4\u03b5\u03ba\u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5941}],"secondaryYearSourceId":0,"sortTitle":"ocean s twelve","sizeOnDisk":2564164882,"status":"released","overview":"Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome, Paris and Amsterdam \u2013 but a Europol agent is hot on their heels.","inCinemas":"2004-12-09T00:00:00Z","physicalRelease":"2005-04-12T00:00:00Z","digitalRelease":"2008-03-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/312\/poster.jpg?lastWrite=637651725358907569","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pE5anFf7nf6ah7V3VRezQ1KSovi.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/312\/fanart.jpg?lastWrite=637645669672901059","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5b5HrewiViLWEdMR4dmbd7ajQ8Q.jpg"}],"website":"http:\/\/oceans12.warnerbros.com\/","year":2004,"hasFile":true,"youTubeTrailerId":"YqcQv3dt_hY","studio":"Village Roadshow Pictures","path":"\/movies\/Ocean's Twelve (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ocean's Twelve (2004)","runtime":125,"cleanTitle":"oceanstwelve","imdbId":"tt0349903","tmdbId":163,"titleSlug":"163","certification":"PG-13","genres":["Thriller","Crime"],"tags":[],"added":"2018-10-25T13:54:44Z","ratings":{"votes":5658,"value":6.5},"movieFile":{"movieId":312,"relativePath":"Ocean's Twelve.2004-Bluray-1080p.mp4","path":"\/movies\/Ocean's Twelve (2004)\/Ocean's Twelve.2004-Bluray-1080p.mp4","size":2564164882,"dateAdded":"2018-10-25T13:59:54Z","sceneName":"Oceans.Twelve.2004.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:05:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":407},"collection":{"name":"Ocean's Collection","tmdbId":304,"images":[]},"id":312},{"title":"Ocean's Thirteen","originalTitle":"Ocean's Thirteen","alternateTitles":[{"sourceType":"tmdb","movieId":313,"title":"Ocean's 13","sourceId":298,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":989},{"sourceType":"tmdb","movieId":313,"title":"I symmoria ton dekatrion","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3785},{"sourceType":"tmdb","movieId":313,"title":"13 \u0434\u0440\u0443\u0437\u0435\u0439 \u041e\u0443\u0448\u0435\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3786},{"sourceType":"tmdb","movieId":313,"title":"\u0397 \u03a3\u03c5\u03bc\u03bc\u03bf\u03c1\u03af\u03b1 \u03c4\u03c9\u03bd \u0394\u03b5\u03ba\u03b1\u03c4\u03c1\u03b9\u03ce\u03bd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5940}],"secondaryYearSourceId":0,"sortTitle":"ocean s thirteen","sizeOnDisk":8532209829,"status":"released","overview":"Danny Ocean's team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he's got. Even if it means asking for help from an enemy.","inCinemas":"2007-06-06T00:00:00Z","physicalRelease":"2007-10-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/313\/poster.jpg?lastWrite=637651725350027711","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bfh0KadSoBOvdqBLWF93fFzokbg.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/313\/fanart.jpg?lastWrite=637631830108887909","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f4WzxA4jiYaSKO2Zw07JEYmYFVo.jpg"}],"website":"http:\/\/oceans13.warnerbros.com\/","year":2007,"hasFile":true,"youTubeTrailerId":"YsqZosCj-qw","studio":"Village Roadshow Pictures","path":"\/movies\/Ocean's Thirteen (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ocean's Thirteen (2007)","runtime":122,"cleanTitle":"oceansthirteen","imdbId":"tt0496806","tmdbId":298,"titleSlug":"298","certification":"PG-13","genres":["Crime","Thriller"],"tags":[],"added":"2018-10-25T13:54:45Z","ratings":{"votes":4953,"value":6.7},"movieFile":{"movieId":313,"relativePath":"Ocean's Thirteen.2007-Bluray-1080p.mkv","path":"\/movies\/Ocean's Thirteen (2007)\/Ocean's Thirteen.2007-Bluray-1080p.mkv","size":8532209829,"dateAdded":"2018-10-25T14:12:55Z","sceneName":"Oceans.Thirteen.2007.1080p.BluRay.x264-HDEX","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8670000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:02:09","scanType":"Progressive","subtitles":"English \/ Dutch"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"oceans13","edition":"","id":408},"collection":{"name":"Ocean's Collection","tmdbId":304,"images":[]},"id":313},{"title":"Lucy","originalTitle":"Lucy","alternateTitles":[{"sourceType":"tmdb","movieId":314,"title":"\u8d85\u4f53","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3282},{"sourceType":"tmdb","movieId":314,"title":"Lucy 2014 Esp","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3283},{"sourceType":"tmdb","movieId":314,"title":"\ub8e8\uc2dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3284}],"secondaryYearSourceId":0,"sortTitle":"lucy","sizeOnDisk":7034828539,"status":"released","overview":"A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.","inCinemas":"2014-07-25T00:00:00Z","physicalRelease":"2014-12-06T00:00:00Z","digitalRelease":"2016-10-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/314\/poster.jpg?lastWrite=637663836924231948","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kRbpUTRNm6QbLQFPFWUcNC4czEm.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/314\/fanart.jpg?lastWrite=637425288908173699","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1hzH1Wu2xhXBNOWzw3RMwNTJX5q.jpg"}],"website":"http:\/\/lucymovie.com","year":2014,"hasFile":true,"youTubeTrailerId":"l7zAV_MDC68","studio":"EuropaCorp","path":"\/movies\/Lucy (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Lucy (2014)","runtime":89,"cleanTitle":"lucy","imdbId":"tt2872732","tmdbId":240832,"titleSlug":"240832","certification":"R","genres":["Action","Science Fiction"],"tags":[],"added":"2018-10-27T10:55:48Z","ratings":{"votes":13350,"value":6.4},"movieFile":{"movieId":314,"relativePath":"Lucy.2014-Bluray-1080p.mkv","path":"\/movies\/Lucy (2014)\/Lucy.2014-Bluray-1080p.mkv","size":7034828539,"dateAdded":"2018-10-27T11:03:43Z","sceneName":"Lucy.2014.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8995000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:29:20","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":412},"collection":{"name":"Lucy Collection","tmdbId":868884,"images":[]},"id":314},{"title":"Mad Max: Fury Road","originalTitle":"Mad Max: Fury Road","alternateTitles":[{"sourceType":"tmdb","movieId":315,"title":"Mad Max: Fury Road 3D","sourceId":76341,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":451},{"sourceType":"tmdb","movieId":315,"title":"Mad Max: Fury Road - Black & Chrome Edition","sourceId":76341,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":452},{"sourceType":"tmdb","movieId":315,"title":"Mad Max 4 - Fury Road","sourceId":76341,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":544},{"sourceType":"tmdb","movieId":315,"title":"Mad Max 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1615},{"sourceType":"tmdb","movieId":315,"title":"Mad Max IV - Fury Road","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1616},{"sourceType":"tmdb","movieId":315,"title":"\u041b\u0443\u0434\u0438\u044f\u0442 \u041c\u0430\u043a\u0441: \u041f\u044a\u0442 \u043d\u0430 \u044f\u0440\u043e\u0441\u0442\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1617},{"sourceType":"tmdb","movieId":315,"title":"\u51b2\u950b\u98de\u8f66\u961f4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1618},{"sourceType":"tmdb","movieId":315,"title":"\u672b\u65e5\u5148\u950b\uff1a\u6218\u7532\u98de\u8f66","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1619},{"sourceType":"tmdb","movieId":315,"title":"\u75af\u72c2\u9ea6\u65af\uff1a\u6124\u6012\u9053","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1620},{"sourceType":"tmdb","movieId":315,"title":"Max ha'zoem: kvish ha'za'am","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1622},{"sourceType":"tmdb","movieId":315,"title":"Pobesneli Maks: Autoput besa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1624},{"sourceType":"tmdb","movieId":315,"title":"\u0e41\u0e21\u0e14\u0e41\u0e21\u0e47\u0e01\u0e0b\u0e4c 4 : \u0e16\u0e19\u0e19\u0e42\u0e25\u0e01\u0e31\u0e19\u0e15\u0e23\u0e4c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1626},{"sourceType":"tmdb","movieId":315,"title":"\u0421\u043a\u0430\u0436\u0435\u043d\u0438\u0439 \u041c\u0430\u043a\u0441 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1627},{"sourceType":"tmdb","movieId":315,"title":"\u0160ialen\u00fd Max: Zbesil\u00e1 cesta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6013}],"secondaryYearSourceId":0,"sortTitle":"mad max fury road","sizeOnDisk":8201783870,"status":"released","overview":"An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order.","inCinemas":"2015-05-13T00:00:00Z","physicalRelease":"2015-09-17T00:00:00Z","digitalRelease":"2018-05-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/315\/poster.jpg?lastWrite=637667297190151227","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8tZYtuWezp8JbcsvHYO0O46tFbo.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/315\/fanart.jpg?lastWrite=637621451932338362","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nlCHUWjY9XWbuEUQauCBgnY8ymF.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/mad-max-fury-road","year":2015,"hasFile":true,"youTubeTrailerId":"MonFNCgK4WE","studio":"Kennedy Miller Productions","path":"\/movies\/Mad Max Fury Road (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mad Max Fury Road (2015)","runtime":121,"cleanTitle":"madmaxfuryroad","imdbId":"tt1392190","tmdbId":76341,"titleSlug":"76341","certification":"R","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-10-27T13:09:54Z","ratings":{"votes":18365,"value":7.5},"movieFile":{"movieId":315,"relativePath":"Mad Max Fury Road.2015-Bluray-1080p.mkv","path":"\/movies\/Mad Max Fury Road (2015)\/Mad Max Fury Road.2015-Bluray-1080p.mkv","size":8201783870,"dateAdded":"2018-10-27T13:20:50Z","sceneName":"Mad.Max.Fury.Road.2015.1080p.BluRay.x264-Replica[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8456000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:00:23","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"madmaxfuryroad1080","edition":"","id":413},"collection":{"name":"Mad Max Collection","tmdbId":8945,"images":[]},"id":315},{"title":"Cube","originalTitle":"Cube","alternateTitles":[{"sourceType":"tmdb","movieId":316,"title":"Cube 1","sourceId":431,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1216},{"sourceType":"tmdb","movieId":316,"title":"\u5f02\u6b21\u5143\u6740\u9635","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1454},{"sourceType":"tmdb","movieId":316,"title":"The CUBE","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1455},{"sourceType":"tmdb","movieId":316,"title":"El Cubo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":1456},{"sourceType":"tmdb","movieId":316,"title":"Sze\u015bcian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6123}],"secondaryYearSourceId":0,"sortTitle":"cube","sizeOnDisk":1847794310,"status":"released","overview":"A group of strangers find themselves trapped in a maze-like prison. It soon becomes clear that each of them possesses the peculiar skills necessary to escape, if they don't wind up dead first.","inCinemas":"1997-09-09T00:00:00Z","physicalRelease":"2012-10-15T00:00:00Z","digitalRelease":"2004-06-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/316\/poster.jpg?lastWrite=637617126961661670","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1oWjq7E5YbhoOfVPzbDfhQzcxjY.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/316\/fanart.jpg?lastWrite=637617126963101647","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1AZz3SSYB3i9FOfc8r3enewSsRM.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"HYoTGYT0-I4","studio":"Cube Libre","path":"\/movies\/Cube (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Cube (1997)","runtime":90,"cleanTitle":"cube","imdbId":"tt0123755","tmdbId":431,"titleSlug":"431","certification":"R","genres":["Thriller","Science Fiction","Mystery"],"tags":[],"added":"2018-10-27T21:36:49Z","ratings":{"votes":3489,"value":6.8},"movieFile":{"movieId":316,"relativePath":"Cube.1997-Bluray-1080p.mp4","path":"\/movies\/Cube (1997)\/Cube.1997-Bluray-1080p.mp4","size":1847794310,"dateAdded":"2018-10-27T21:56:46Z","sceneName":"Cube.1997.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1056","runTime":"1:30:15","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":415},"collection":{"name":"Cube Collection","tmdbId":432,"images":[]},"id":316},{"title":"Cube 2: Hypercube","originalTitle":"Cube 2: Hypercube","alternateTitles":[{"sourceType":"tmdb","movieId":317,"title":"Cube 2","sourceId":437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":454},{"sourceType":"tmdb","movieId":317,"title":"Cube\u00b2: Hypercube","sourceId":437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1283},{"sourceType":"tmdb","movieId":317,"title":"Hypercube","sourceId":437,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1284},{"sourceType":"tmdb","movieId":317,"title":"El Cubo 2 Hipercub","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":3240},{"sourceType":"tmdb","movieId":317,"title":"Cube 2: Hipersze\u015bcian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6124}],"secondaryYearSourceId":0,"sortTitle":"cube 2 hypercube","sizeOnDisk":1927977506,"status":"released","overview":"The sequel to the low budget first film Cube. This time the prisoners find them selves in a more advanced cube environment that they must escape from before they are killed. A science fiction film where space and time have more than one path.","inCinemas":"2002-04-15T00:00:00Z","physicalRelease":"2013-03-07T00:00:00Z","digitalRelease":"2021-06-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/317\/poster.jpg?lastWrite=637468531895363629","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bEqqwtwUP7lm56VyeVONhv9JtYu.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/317\/fanart.jpg?lastWrite=637644804406080701","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dFH8vmJhOC7i7jzswlM5UFR4zmv.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"2m1aCPB_Ni8","studio":"Lions Gate Films","path":"\/movies\/Cube 2 Hypercube (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Cube 2 Hypercube (2002)","runtime":94,"cleanTitle":"cube2hypercube","imdbId":"tt0285492","tmdbId":437,"titleSlug":"437","certification":"R","genres":["Thriller","Science Fiction","Mystery"],"tags":[],"added":"2018-10-27T21:36:55Z","ratings":{"votes":1028,"value":5.5},"movieFile":{"movieId":317,"relativePath":"Cube 2 Hypercube.2002-Bluray-1080p.mp4","path":"\/movies\/Cube 2 Hypercube (2002)\/Cube 2 Hypercube.2002-Bluray-1080p.mp4","size":1927977506,"dateAdded":"2018-10-27T21:52:16Z","sceneName":"Cube.2.Hypercube.2002.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:34:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":414},"collection":{"name":"Cube Collection","tmdbId":432,"images":[]},"id":317},{"title":"School of Rock","originalTitle":"School of Rock","alternateTitles":[{"sourceType":"tmdb","movieId":318,"title":"The School of Rock","sourceId":1584,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":455},{"sourceType":"tmdb","movieId":318,"title":"\u963fsir\u569f\u81ea\u6a02\u4eba\u8c37","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5707},{"sourceType":"tmdb","movieId":318,"title":"Escola de Rock","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6033}],"secondaryYearSourceId":0,"sortTitle":"school rock","sizeOnDisk":8217956550,"status":"released","overview":"Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fifth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.","inCinemas":"2003-10-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/318\/poster.jpg?lastWrite=637454691543583656","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zXLXaepIBvFVLU25DH3wv4IPSbe.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/318\/fanart.jpg?lastWrite=637608475071318286","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pM1CnP0ZN2VxmrTAbBZOS3PNoNE.jpg"}],"website":"http:\/\/www.schoolofrockmovie.com","year":2003,"hasFile":true,"youTubeTrailerId":"l_ngIv5kFNY","studio":"Paramount","path":"\/movies\/School of Rock (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/School of Rock (2003)","runtime":110,"cleanTitle":"schoolrock","imdbId":"tt0332379","tmdbId":1584,"titleSlug":"1584","certification":"PG-13","genres":["Comedy","Music","Family"],"tags":[],"added":"2018-10-29T00:20:45Z","ratings":{"votes":4316,"value":7.1},"movieFile":{"movieId":318,"relativePath":"School of Rock.2003-Bluray-1080p.mkv","path":"\/movies\/School of Rock (2003)\/School of Rock.2003-Bluray-1080p.mkv","size":8217956550,"dateAdded":"2018-10-29T00:35:15Z","sceneName":"School.of.Rock.2003.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8516000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:49:16","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":416},"id":318},{"title":"Charlie and the Chocolate Factory","originalTitle":"Charlie and the Chocolate Factory","alternateTitles":[{"sourceType":"tmdb","movieId":319,"title":"\u091a\u093e\u0930\u094d\u0932\u0940 \u090f\u0902\u0921 \u0926 \u091a\u0949\u0915\u0932\u0947\u091f \u092b\u0948\u0915\u094d\u091f\u094d\u0930\u0940","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1437},{"sourceType":"tmdb","movieId":319,"title":"Sjakie en de Chocoladefabriek","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":1439},{"sourceType":"tmdb","movieId":319,"title":"\u010carli i fabrika \u010dokolade","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1440},{"sourceType":"tmdb","movieId":319,"title":"\u5de7\u514b\u529b\u5192\u96aa\u5de5\u5ee0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1441},{"sourceType":"tmdb","movieId":319,"title":"A Fant\u00e1stica F\u00e1brica de Chocolate","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5192},{"sourceType":"tmdb","movieId":319,"title":"\u30c1\u30e3\u30fc\u30ea\u30fc\u3068\u30c1\u30e7\u30b3\u30ec\u30fc\u30c8\u5de5\u5834","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5735},{"sourceType":"tmdb","movieId":319,"title":"Charlie' nin cikolata fabrikasi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":5740},{"sourceType":"tmdb","movieId":319,"title":"Halle och choklad fabriken","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5741}],"secondaryYearSourceId":0,"sortTitle":"charlie chocolate factory","sizeOnDisk":10495108889,"status":"released","overview":"A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.","inCinemas":"2005-07-13T00:00:00Z","physicalRelease":"2006-01-25T00:00:00Z","digitalRelease":"2009-01-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/319\/poster.jpg?lastWrite=637646534341116625","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wfGfxtBkhBzQfOZw4S8IQZgrH0a.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/319\/fanart.jpg?lastWrite=637646534343956541","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bSvUW4JQ6g4QiKvwejcfcPRd4Ke.jpg"}],"website":"https:\/\/www.warnerbros.com\/charlie-and-chocolate-factory","year":2005,"hasFile":true,"youTubeTrailerId":"FZkIlAEbHi4","studio":"Village Roadshow Pictures","path":"\/movies\/Charlie and the Chocolate Factory (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Charlie and the Chocolate Factory (2005)","runtime":115,"cleanTitle":"charliechocolatefactory","imdbId":"tt0367594","tmdbId":118,"titleSlug":"118","certification":"PG","genres":["Adventure","Comedy","Family"],"tags":[],"added":"2018-10-29T19:30:39Z","ratings":{"votes":11664,"value":7},"movieFile":{"movieId":319,"relativePath":"Charlie and the Chocolate Factory.2005-Bluray-1080p.mkv","path":"\/movies\/Charlie and the Chocolate Factory (2005)\/Charlie and the Chocolate Factory.2005-Bluray-1080p.mkv","size":10495108889,"dateAdded":"2018-10-29T19:49:43Z","sceneName":"Charlie.and.the.Chocolate.Factory.2005.1080p.BluRay.x264.DD5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11494000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:55:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":417},"id":319},{"title":"Treasure Planet","originalTitle":"Treasure Planet","alternateTitles":[{"sourceType":"tmdb","movieId":320,"title":"\u661f\u7a7a\u593a\u5b9d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1973},{"sourceType":"tmdb","movieId":320,"title":"La Plan\u00e8te au tr\u00e9sor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1975},{"sourceType":"tmdb","movieId":320,"title":"La Plan\u00e8te au tr\u00e9sor : un nouvel univers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1976},{"sourceType":"tmdb","movieId":320,"title":"Piratenplaneet: De Schat van Kapitein Flint","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":1978}],"secondaryYear":2003,"secondaryYearSourceId":0,"sortTitle":"treasure planet","sizeOnDisk":1953744594,"status":"released","overview":"When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!","inCinemas":"2002-11-26T00:00:00Z","physicalRelease":"2003-06-18T00:00:00Z","digitalRelease":"2011-08-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/320\/poster.jpg?lastWrite=637647400104031076","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qKpxGBkksllc2oe6Y0YDKc1A232.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/320\/fanart.jpg?lastWrite=637621452231813267","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mVuH9hNGnxF9bbhlh1Tr9FuG3Uc.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"nYzW3jfoEUw","studio":"Walt Disney Animation Studios","path":"\/movies\/Treasure Planet (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Treasure Planet (2002)","runtime":95,"cleanTitle":"treasureplanet","imdbId":"tt0133240","tmdbId":9016,"titleSlug":"9016","certification":"PG","genres":["Adventure","Animation","Family"],"tags":[],"added":"2018-10-31T18:00:27Z","ratings":{"votes":3052,"value":7.5},"movieFile":{"movieId":320,"relativePath":"Treasure Planet.2002-Bluray-1080p.mp4","path":"\/movies\/Treasure Planet (2002)\/Treasure Planet.2002-Bluray-1080p.mp4","size":1953744594,"dateAdded":"2018-10-31T18:21:38Z","sceneName":"Treasure.Planet.2002.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1824x1080","runTime":"1:35:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":418},"id":320},{"title":"Men in Black 3","originalTitle":"Men in Black 3","alternateTitles":[{"sourceType":"tmdb","movieId":324,"title":"Men in Black 3D","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":547},{"sourceType":"tmdb","movieId":324,"title":"MIB\u00b3","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":548},{"sourceType":"tmdb","movieId":324,"title":"MIB 3","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":549},{"sourceType":"tmdb","movieId":324,"title":"MIB III","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":550},{"sourceType":"tmdb","movieId":324,"title":"Men in Black III","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":551},{"sourceType":"tmdb","movieId":324,"title":"M.I.I.I.B","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":552},{"sourceType":"tmdb","movieId":324,"title":"Men In Black 03 Men In Black 3","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":553},{"sourceType":"tmdb","movieId":324,"title":"Men in Black III 3D","sourceId":41154,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1136},{"sourceType":"tmdb","movieId":324,"title":"Hombres de negro III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4122},{"sourceType":"tmdb","movieId":324,"title":"MIB\u00b3 : Men in Black 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4124},{"sourceType":"tmdb","movieId":324,"title":"\ub9e8 \uc778 \ube14\ub799 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4125},{"sourceType":"tmdb","movieId":324,"title":"Vyrai juodais drabu\u017eiais III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4126},{"sourceType":"tmdb","movieId":324,"title":"\u041b\u044e\u0434\u0438 \u0432 \u0447\u0435\u0440\u043d\u043e\u043c 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4127},{"sourceType":"tmdb","movieId":324,"title":"\u041b\u044e\u0434\u0438 \u0432 \u0447\u0451\u0440\u043d\u043e\u043c 3 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4128},{"sourceType":"tmdb","movieId":324,"title":"Hombres de Negro 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4129}],"secondaryYearSourceId":0,"sortTitle":"men in black 3","sizeOnDisk":2166307466,"status":"released","overview":"Agents J and K are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K to save his partner, the agency, and the future of humankind.","inCinemas":"2012-05-23T00:00:00Z","physicalRelease":"2012-09-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/324\/poster.jpg?lastWrite=637641344455992427","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/90DdoEStzeObs96fsYf4GG544iN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/324\/fanart.jpg?lastWrite=637641344457712395","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/44mAbdjGrJJQ4hzkKx2Z2EsninZ.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/meninblack3\/","year":2012,"hasFile":true,"youTubeTrailerId":"aoyV49FfjOU","studio":"Columbia Pictures","path":"\/movies\/Men in Black 3 (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Men in Black 3 (2012)","runtime":106,"cleanTitle":"meninblack3","imdbId":"tt1409024","tmdbId":41154,"titleSlug":"41154","certification":"PG-13","genres":["Action","Comedy","Science Fiction"],"tags":[],"added":"2018-10-31T18:44:00Z","ratings":{"votes":8353,"value":6.5},"movieFile":{"movieId":324,"relativePath":"Men in Black 3.2012-Bluray-1080p.mp4","path":"\/movies\/Men in Black 3 (2012)\/Men in Black 3.2012-Bluray-1080p.mp4","size":2166307466,"dateAdded":"2018-10-31T19:32:41Z","sceneName":"Men.in.Black.3.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:45:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":419},"collection":{"name":"Men In Black Collection","tmdbId":86055,"images":[]},"id":324},{"title":"Pulp Fiction","originalTitle":"Pulp Fiction","alternateTitles":[{"sourceType":"tmdb","movieId":325,"title":"Pulp Fiction - Chronological Cut","sourceId":680,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":464},{"sourceType":"tmdb","movieId":325,"title":"Kriminal Qirayet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2220},{"sourceType":"tmdb","movieId":325,"title":"Makulatura","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2221},{"sourceType":"tmdb","movieId":325,"title":"\u03bc\u03c5\u03b8\u03bf\u03c0\u03bb\u03b1\u03c3\u03af\u03b1 \u03c0\u03bf\u03bb\u03c4\u03bf\u03cd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2222},{"sourceType":"tmdb","movieId":325,"title":"Pakleni \u0161und","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2223},{"sourceType":"tmdb","movieId":325,"title":"\u092a\u0932\u094d\u092a \u092b\u093f\u0915\u094d\u0936\u0928","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2225},{"sourceType":"tmdb","movieId":325,"title":"parup fikusyon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2226},{"sourceType":"tmdb","movieId":325,"title":"Lubene","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2227},{"sourceType":"tmdb","movieId":325,"title":"\u0415\u0432\u0442\u0438\u043d\u0438 \u043f\u0440\u0438\u043a\u0430\u0437\u043d\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2228},{"sourceType":"tmdb","movieId":325,"title":"Sund","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2229},{"sourceType":"tmdb","movieId":325,"title":"Pulp Fiction: Historky z podsvetia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2230},{"sourceType":"tmdb","movieId":325,"title":"\u041a\u0440\u0438\u043ci\u043d\u0430\u043b\u044c\u043d\u0435 \u0447\u0442\u0438\u0432\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2231},{"sourceType":"tmdb","movieId":325,"title":"\ud384\ud504 \ud53d\uc158","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5214},{"sourceType":"tmdb","movieId":325,"title":"Fiction Pulpeuse","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5562},{"sourceType":"tmdb","movieId":325,"title":"Tiempos violentos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6118},{"sourceType":"tmdb","movieId":325,"title":"Sifrut Zolla","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6237}],"secondaryYearSourceId":0,"sortTitle":"pulp fiction","sizeOnDisk":3162437252,"status":"released","overview":"A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.","inCinemas":"1994-09-10T00:00:00Z","physicalRelease":"1995-06-01T00:00:00Z","digitalRelease":"2002-12-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/325\/poster.jpg?lastWrite=637612802795661573","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/d5iIlFn5s0ImszYzBPb8JPIfbXD.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/325\/fanart.jpg?lastWrite=637642209446798465","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/suaEOtk1N1sgg2MTM7oZd2cfVp3.jpg"}],"website":"https:\/\/www.miramax.com\/movie\/pulp-fiction\/","year":1994,"hasFile":true,"youTubeTrailerId":"tGpTpVyI_OQ","studio":"Miramax","path":"\/movies\/Pulp Fiction (1994)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Pulp Fiction (1994)","runtime":154,"cleanTitle":"pulpfiction","imdbId":"tt0110912","tmdbId":680,"titleSlug":"680","certification":"R","genres":["Thriller","Crime"],"tags":[],"added":"2018-10-31T20:18:48Z","ratings":{"votes":21633,"value":8.5},"movieFile":{"movieId":325,"relativePath":"Pulp Fiction.1994-Bluray-1080p.mp4","path":"\/movies\/Pulp Fiction (1994)\/Pulp Fiction.1994-Bluray-1080p.mp4","size":3162437252,"dateAdded":"2018-10-31T20:24:14Z","sceneName":"Pulp.Fiction.1994.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:34:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":420},"id":325},{"title":"Star Wars: Episode III - Revenge of the Sith","originalTitle":"Star Wars: Episode III - Revenge of the Sith","alternateTitles":[{"sourceType":"tmdb","movieId":337,"title":"Revenge of the Sith","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":522},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Revenge of the Sith","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":523},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Episode III","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":524},{"sourceType":"tmdb","movieId":337,"title":"Star Wars III: Revenge of the Sith","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":525},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Episode 3 - Revenge of the Sith","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":526},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Episode III - Revenge of the Sith 3D","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":527},{"sourceType":"tmdb","movieId":337,"title":"Star Wars 3","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":528},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Episode III - Labyrinth Of Evil","sourceId":1895,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1282},{"sourceType":"tmdb","movieId":337,"title":"A Vingan\u00e7a dos Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1819},{"sourceType":"tmdb","movieId":337,"title":"Guerra nas Estrelas: Epis\u00f3dio III - A Vingan\u00e7a dos Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1820},{"sourceType":"tmdb","movieId":337,"title":"Star Wars 03 - A Vingan\u00e7a dos Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1821},{"sourceType":"tmdb","movieId":337,"title":"Star Wars 3: A Vingan\u00e7a dos Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1822},{"sourceType":"tmdb","movieId":337,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda III - Pomsta Sith\u016f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1823},{"sourceType":"tmdb","movieId":337,"title":"Sith-fyrsternes h\u00e6vn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1824},{"sourceType":"tmdb","movieId":337,"title":"La guerra de las galaxias. Episodio 3, La venganza de los Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1825},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Episodio III - La venganza de los Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1826},{"sourceType":"tmdb","movieId":337,"title":"La revanche des Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1827},{"sourceType":"tmdb","movieId":337,"title":"Star Wars - Episode 3 - La Revanche des Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1828},{"sourceType":"tmdb","movieId":337,"title":"Star Wars - Episode III - La Revanche des Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1829},{"sourceType":"tmdb","movieId":337,"title":"Star Wars : La revanche des Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1830},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03bf 3 - \u0397 \u0395\u03ba\u03b4\u03af\u03ba\u03b7\u03c3\u03b7 \u03a4\u03c9\u03bd \u03a3\u03b9\u03b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1831},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03bf III - \u0397 \u0395\u03ba\u03b4\u03af\u03ba\u03b7\u03c3\u03b7 \u03a4\u03c9\u03bd \u03a3\u03b9\u03b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1832},{"sourceType":"tmdb","movieId":337,"title":"\u0397 \u0395\u03ba\u03b4\u03af\u03ba\u03b7\u03c3\u03b7 \u03a4\u03c9\u03bd \u03a3\u03b9\u03b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1833},{"sourceType":"tmdb","movieId":337,"title":"La vendetta dei Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1834},{"sourceType":"tmdb","movieId":337,"title":"Star Wars - Episodio III - La vendetta dei Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1835},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: La vendetta dei Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1836},{"sourceType":"tmdb","movieId":337,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 3 \uc2dc\uc2a4\uc758 \ubcf5\uc218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1837},{"sourceType":"tmdb","movieId":337,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc: \uc2dc\uc2a4\uc758 \ubcf5\uc218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1838},{"sourceType":"tmdb","movieId":337,"title":"Sithene tar hevn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1839},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Episode III - Sithene Tar Hevn (2005)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1840},{"sourceType":"tmdb","movieId":337,"title":"Zemsta Sith\u00f3w","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":1841},{"sourceType":"tmdb","movieId":337,"title":"\u041c\u0435\u0441\u0442\u044c \u0421\u0438\u0442\u0445\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1842},{"sourceType":"tmdb","movieId":337,"title":"\u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1843},{"sourceType":"tmdb","movieId":337,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1844},{"sourceType":"tmdb","movieId":337,"title":"\u661f\u969b\u5927\u6230\u4e09\u90e8\u66f2\uff1a\u897f\u65af\u5927\u5e1d\u7684\u5fa9\u4ec7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1845},{"sourceType":"tmdb","movieId":337,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 3 \u2013 \u041c\u0435\u0441\u0442\u044c \u0421\u0438\u0442\u0445\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2259},{"sourceType":"tmdb","movieId":337,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 III \u2013 \u041c\u0435\u0441\u0442\u044c \u0421\u0438\u0442\u0445\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2260},{"sourceType":"tmdb","movieId":337,"title":"Star Wars - Episode 3 - Die Rache der Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4839},{"sourceType":"tmdb","movieId":337,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u041c\u0435\u0441\u0442\u044c \u0421\u0438\u0442\u0445\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4940},{"sourceType":"tmdb","movieId":337,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u041f\u043e\u043c\u0441\u0442\u0430 \u0441\u0456\u0442\u0445\u0456\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4941},{"sourceType":"tmdb","movieId":337,"title":"Star Wars A Vinganca dos Sith","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5450},{"sourceType":"tmdb","movieId":337,"title":"Star Wars: Revenge of the Sith (Episode III)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6098},{"sourceType":"tmdb","movieId":337,"title":"Star Wars 3 - La Revanche des Siths","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6250},{"sourceType":"tmdb","movieId":337,"title":"\u661f\u7403\u5927\u6218\u524d\u4f203\uff1a\u897f\u65af\u7684\u590d\u4ec7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6264}],"secondaryYearSourceId":0,"sortTitle":"star wars episode iii revenge sith","sizeOnDisk":2868560090,"status":"released","overview":"The evil Darth Sidious enacts his final plan for unlimited power -- and the heroic Jedi Anakin Skywalker must choose a side.","inCinemas":"2005-05-17T00:00:00Z","physicalRelease":"2005-11-01T00:00:00Z","digitalRelease":"2009-01-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/337\/poster.jpg?lastWrite=637657782217607293","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xfSAoBEm9MNBjmlNcDYLvLSMlnq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/337\/fanart.jpg?lastWrite=637657782219967253","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/A0wfk0gISF7gH78CKCfLlkAf1Vs.jpg"}],"website":"http:\/\/www.starwars.com\/films\/star-wars-episode-iii-revenge-of-the-sith","year":2005,"hasFile":true,"youTubeTrailerId":"5UnjrG_N8hU","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars Episode III - Revenge of the Sith (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Star Wars Episode III - Revenge of the Sith (2005)","runtime":140,"cleanTitle":"starwarsepisodeiiirevengesith","imdbId":"tt0121766","tmdbId":1895,"titleSlug":"1895","certification":"PG-13","genres":["Science Fiction","Adventure","Action"],"tags":[],"added":"2018-11-23T18:18:13Z","ratings":{"votes":10599,"value":7.4},"movieFile":{"movieId":337,"relativePath":"Star Wars Episode III - Revenge of the Sith.2005-Bluray-1080p.mp4","path":"\/movies\/Star Wars Episode III - Revenge of the Sith (2005)\/Star Wars Episode III - Revenge of the Sith.2005-Bluray-1080p.mp4","size":2868560090,"dateAdded":"2018-12-27T19:02:23Z","sceneName":"Star.Wars.Episode.III.Revenge.of.the.Sith.2005.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"2:20:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":421},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":337},{"title":"Star Wars: Episode I - The Phantom Menace","originalTitle":"Star Wars: Episode I - The Phantom Menace","alternateTitles":[{"sourceType":"tmdb","movieId":338,"title":"Star Wars I: The Phantom Menace","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":529},{"sourceType":"tmdb","movieId":338,"title":"The Phantom Menace","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":530},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episode I","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":531},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episode I - The Beginning","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":532},{"sourceType":"tmdb","movieId":338,"title":"Star Wars 1","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":533},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episode 1 - The Phantom Menace","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":534},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: The Phantom Menace","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":535},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episode I - Cloak Of Deception","sourceId":1893,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1280},{"sourceType":"tmdb","movieId":338,"title":"Guerra nas Estrelas: Epis\u00f3dio I - A Amea\u00e7a Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1773},{"sourceType":"tmdb","movieId":338,"title":"Star Wars 01 - A Amea\u00e7a Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1774},{"sourceType":"tmdb","movieId":338,"title":"Star Wars 1: A Amea\u00e7a Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1775},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: A Amea\u00e7a Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1776},{"sourceType":"tmdb","movieId":338,"title":"Star Wars : \u00e9pisode I - La menace fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1777},{"sourceType":"tmdb","movieId":338,"title":"\u661f\u7403\u5927\u62181\uff1a\u9b45\u5f71\u5371\u673a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1778},{"sourceType":"tmdb","movieId":338,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda I - Skryt\u00e1 hrozba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1779},{"sourceType":"tmdb","movieId":338,"title":"Skryt\u00e1 hrozba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1780},{"sourceType":"tmdb","movieId":338,"title":"Den usynlige fjende","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1781},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episodio I - La amenaza fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1783},{"sourceType":"tmdb","movieId":338,"title":"T\u00e4htien sota - episodi I: Pime\u00e4 uhka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1784},{"sourceType":"tmdb","movieId":338,"title":"La menace fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1785},{"sourceType":"tmdb","movieId":338,"title":"Star Wars - Episode 1 - La Menace Fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1786},{"sourceType":"tmdb","movieId":338,"title":"Star Wars : La menace fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1787},{"sourceType":"tmdb","movieId":338,"title":"\u039f \u03a0\u03cc\u03bb\u03b5\u03bc\u03bf\u03c2 \u03a4\u03c9\u03bd \u0386\u03c3\u03c4\u03c1\u03c9\u03bd: \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03bf 1 - \u0397 \u0391\u03cc\u03c1\u03b1\u03c4\u03b7 \u0391\u03c0\u03b5\u03b9\u03bb\u03ae","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1788},{"sourceType":"tmdb","movieId":338,"title":"\u661f\u7403\u5927\u6218\u524d\u4f20I\uff1a\u9b45\u5f71\u5371\u673a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1789},{"sourceType":"tmdb","movieId":338,"title":"Bajl\u00f3s \u00c1rnyak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1790},{"sourceType":"tmdb","movieId":338,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 1, \ubcf4\uc774\uc9c0 \uc54a\ub294 \uc704\ud5d8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1791},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episode I - Den skjulte trussel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1792},{"sourceType":"tmdb","movieId":338,"title":"\u0421\u043a\u0440\u044b\u0442\u0430\u044f \u0443\u0433\u0440\u043e\u0437\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1793},{"sourceType":"tmdb","movieId":338,"title":"\u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1794},{"sourceType":"tmdb","movieId":338,"title":"Hviezdn\u00e9 vojny: Epizoda I - Skryt\u00e1 hrozba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1795},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Skryt\u00e1 hrozba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1796},{"sourceType":"tmdb","movieId":338,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1797},{"sourceType":"tmdb","movieId":338,"title":"\u661f\u969b\u5927\u6230\u9996\u90e8\u66f2\uff1a\u5a01\u8105\u6f5b\u4f0f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1798},{"sourceType":"tmdb","movieId":338,"title":"Star Wars 1 - Die dunke Bedrohung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2633},{"sourceType":"tmdb","movieId":338,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u0421\u043a\u0440\u044b\u0442\u0430\u044f \u0443\u0433\u0440\u043e\u0437\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4934},{"sourceType":"tmdb","movieId":338,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 I - \u0421\u043a\u0440\u044b\u0442\u0430\u044f \u0443\u0433\u0440\u043e\u0437\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4935},{"sourceType":"tmdb","movieId":338,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u041f\u0440\u0438\u0445\u043e\u0432\u0430\u043d\u0430 \u0437\u0430\u0433\u0440\u043e\u0437\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4936},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: Episodio I - La minaccia fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5043},{"sourceType":"tmdb","movieId":338,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 1 - \u0421\u043a\u0440\u044b\u0442\u0430\u044f \u0443\u0433\u0440\u043e\u0437\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5222},{"sourceType":"tmdb","movieId":338,"title":"Star Wars Episode 1 - Die dunkle Bedrohung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5327},{"sourceType":"tmdb","movieId":338,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30ba\uff0f\u30d5\u30a1\u30f3\u30c8\u30e0\u30fb\u30e1\u30ca\u30b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5600},{"sourceType":"tmdb","movieId":338,"title":"Star Wars Episode I-The Phantom Menace","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6067},{"sourceType":"tmdb","movieId":338,"title":"Star Wars: The Phantom Menace (Episode I)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6096},{"sourceType":"tmdb","movieId":338,"title":"Star Wars 1 - La Menace fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6248},{"sourceType":"tmdb","movieId":338,"title":"\u661f\u7403\u5927\u6218\u524d\u4f201\uff1a\u5e7d\u7075\u7684\u5a01\u80c1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6262},{"sourceType":"tmdb","movieId":338,"title":"Gwiezdne Wojny: Cz\u0119\u015b\u0107 I - Mroczne Widmo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6267},{"sourceType":"tmdb","movieId":338,"title":"Gwiezdne wojny Mroczne widmo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6268}],"secondaryYearSourceId":0,"sortTitle":"star wars episode i phantom menace","sizeOnDisk":2788966959,"status":"released","overview":"Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.","inCinemas":"1999-05-19T00:00:00Z","physicalRelease":"2000-04-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/338\/poster.jpg?lastWrite=637609340144165214","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6wkfovpn7Eq8dYNKaG5PY3q2oq6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/338\/fanart.jpg?lastWrite=637660377426648014","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5fu7fzy4NZTsL1Jap00UBIInAuB.jpg"}],"website":"http:\/\/www.starwars.com\/films\/star-wars-episode-i-the-phantom-menace","year":1999,"hasFile":true,"youTubeTrailerId":"bD7bpG-zDJQ","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars Episode I - The Phantom Menace (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Star Wars Episode I - The Phantom Menace (1999)","runtime":136,"cleanTitle":"starwarsepisodeiphantommenace","imdbId":"tt0120915","tmdbId":1893,"titleSlug":"1893","certification":"PG","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-11-23T18:18:14Z","ratings":{"votes":11326,"value":6.5},"movieFile":{"movieId":338,"relativePath":"Star Wars Episode I - The Phantom Menace.1999-Bluray-1080p.mp4","path":"\/movies\/Star Wars Episode I - The Phantom Menace (1999)\/Star Wars Episode I - The Phantom Menace.1999-Bluray-1080p.mp4","size":2788966959,"dateAdded":"2018-12-27T20:19:30Z","sceneName":"Star.Wars.Episode.I.The.Phantom.Menace.1999.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"2:16:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":423},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":338},{"title":"Star Wars: Episode II - Attack of the Clones","originalTitle":"Star Wars: Episode II - Attack of the Clones","alternateTitles":[{"sourceType":"tmdb","movieId":339,"title":"Attack of the Clones","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1208},{"sourceType":"tmdb","movieId":339,"title":"Attack of the Clones: The IMAX Experience","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1209},{"sourceType":"tmdb","movieId":339,"title":"Star Wars 2","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1210},{"sourceType":"tmdb","movieId":339,"title":"Star Wars II","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1211},{"sourceType":"tmdb","movieId":339,"title":"Star Wars II: Attack of the Clones","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1212},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Attack of the Clones","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1213},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Episode 2 - Attack of the Clones","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1214},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Episode II - Attack of the Clones 3D","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1215},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Episode II - The Approaching Storm","sourceId":1894,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1281},{"sourceType":"tmdb","movieId":339,"title":"Ataque dos Clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1799},{"sourceType":"tmdb","movieId":339,"title":"Guerra nas Estrelas: Epis\u00f3dio II - Ataque dos Clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1800},{"sourceType":"tmdb","movieId":339,"title":"Star Wars 02 - Ataque dos Clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1801},{"sourceType":"tmdb","movieId":339,"title":"Star Wars 2: Ataque dos Clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1802},{"sourceType":"tmdb","movieId":339,"title":"Star Wars : \u00c9pisode II - L'attaque des clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1803},{"sourceType":"tmdb","movieId":339,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda II - Klony \u00fato\u010d\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1804},{"sourceType":"tmdb","movieId":339,"title":"La guerra de las galaxias. Episodio 2, El ataque de los clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1805},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Episodio II - El ataque de los clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1806},{"sourceType":"tmdb","movieId":339,"title":"L'attaque des clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1807},{"sourceType":"tmdb","movieId":339,"title":"Star Wars - Episode 2 - L'Attaque des Clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1808},{"sourceType":"tmdb","movieId":339,"title":"Star Wars : L'attaque des cl\u00f4nes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1809},{"sourceType":"tmdb","movieId":339,"title":"\u0397 \u03b5\u03c0\u03af\u03b8\u03b5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03ba\u03bb\u03ce\u03bd\u03c9\u03bd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1810},{"sourceType":"tmdb","movieId":339,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1811},{"sourceType":"tmdb","movieId":339,"title":"\uc2a4\ud0c0\uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 2-\ud074\ub860\uc758 \uc2b5\uaca9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1812},{"sourceType":"tmdb","movieId":339,"title":"Klonene angriper","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1813},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Episode II - Klonene Angriper","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1814},{"sourceType":"tmdb","movieId":339,"title":"\u0410\u0442\u0430\u043a\u0430 \u043a\u043b\u043e\u043d\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1815},{"sourceType":"tmdb","movieId":339,"title":"\u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1816},{"sourceType":"tmdb","movieId":339,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1817},{"sourceType":"tmdb","movieId":339,"title":"\u661f\u969b\u5927\u6230\u4e8c\u90e8\u66f2\uff1a\u8907\u88fd\u4eba\u5168\u9762\u9032\u653b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1818},{"sourceType":"tmdb","movieId":339,"title":"Star Wars 2 - Angriff der Klonkrieger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2634},{"sourceType":"tmdb","movieId":339,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u0410\u0442\u0430\u043a\u0430 \u043a\u043b\u043e\u043d\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4937},{"sourceType":"tmdb","movieId":339,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 II - \u0410\u0442\u0430\u043a\u0430 \u043a\u043b\u043e\u043d\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4938},{"sourceType":"tmdb","movieId":339,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u0410\u0442\u0430\u043a\u0430 \u043a\u043b\u043e\u043d\u0456\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4939},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Episodio II - L'attacco dei cloni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5044},{"sourceType":"tmdb","movieId":339,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 2 - \u0410\u0442\u0430\u043a\u0430 \u043a\u043b\u043e\u043d\u043e\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5223},{"sourceType":"tmdb","movieId":339,"title":"Star Wars Episode 2 - Angriff der Klonkrieger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5328},{"sourceType":"tmdb","movieId":339,"title":"Star Wars Ataque dos Clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5436},{"sourceType":"tmdb","movieId":339,"title":"\u661f\u7403\u5927\u6218\uff1a\u514b\u9686\u4eba\u7684\u8fdb\u653b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6040},{"sourceType":"tmdb","movieId":339,"title":"Star Wars: Attack of the Clones (Episode II)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6097},{"sourceType":"tmdb","movieId":339,"title":"Star Wars 2 - L'Attaque des clones","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6249},{"sourceType":"tmdb","movieId":339,"title":"\u661f\u7403\u5927\u6218\u524d\u4f202\uff1a\u514b\u9686\u4eba\u7684\u8fdb\u653b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6263}],"secondaryYearSourceId":0,"sortTitle":"star wars episode ii attack clones","sizeOnDisk":10562028110,"status":"released","overview":"Following an assassination attempt on Senator Padm\u00e9 Amidala, Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.","inCinemas":"2002-05-15T00:00:00Z","physicalRelease":"2002-09-17T00:00:00Z","digitalRelease":"2005-05-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/339\/poster.jpg?lastWrite=637648265164116516","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oZNPzxqM2s5DyVWab09NTQScDQt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/339\/fanart.jpg?lastWrite=637460746343613302","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dNt5q68BBkddBxlvrHDa1apyBy8.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"gYbW1F_c9eM","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars Episode II - Attack of the Clones (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Star Wars Episode II - Attack of the Clones (2002)","runtime":142,"cleanTitle":"starwarsepisodeiiattackclones","imdbId":"tt0121765","tmdbId":1894,"titleSlug":"1894","certification":"PG","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-11-23T18:18:17Z","ratings":{"votes":10225,"value":6.5},"movieFile":{"movieId":339,"relativePath":"Star Wars Episode II - Attack of the Clones.2002-Bluray-1080p.mkv","path":"\/movies\/Star Wars Episode II - Attack of the Clones (2002)\/Star Wars Episode II - Attack of the Clones.2002-Bluray-1080p.mkv","size":10562028110,"dateAdded":"2018-12-27T21:59:25Z","sceneName":"Star.Wars.Episode.II.Attack.of.the.Clones.2002.INTERNAL.1080p.BluRay.X264-AMIABLE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XXCH","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8375000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"2:22:27","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"amiable","edition":"","id":426},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":339},{"title":"Inkheart","originalTitle":"Inkheart","alternateTitles":[{"sourceType":"tmdb","movieId":340,"title":"Cora\u00e7\u00e3o de Tinta - O Livro M\u00e1gico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2447},{"sourceType":"tmdb","movieId":340,"title":"\u795e\u58a8\u4f20\u5947","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2448},{"sourceType":"tmdb","movieId":340,"title":"\u9b54\u6cd5\u5929\u4e66","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2449},{"sourceType":"tmdb","movieId":340,"title":"Corazon de tinta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2450},{"sourceType":"tmdb","movieId":340,"title":"Mustesyd\u00e4n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2451},{"sourceType":"tmdb","movieId":340,"title":"Coeur d'encre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2452},{"sourceType":"tmdb","movieId":340,"title":"Tintasz\u00edv","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2453},{"sourceType":"tmdb","movieId":340,"title":"\u0427\u0435\u0440\u043d\u0438\u043b\u044c\u043d\u043e\u0435 \u0441\u0435\u0440\u0434\u0446\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2454},{"sourceType":"tmdb","movieId":340,"title":"Tintenherz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5335}],"secondaryYearSourceId":0,"sortTitle":"inkheart","sizeOnDisk":1506444536,"status":"released","overview":"The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.","inCinemas":"2008-12-11T00:00:00Z","physicalRelease":"2009-10-22T00:00:00Z","digitalRelease":"2011-11-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/340\/poster.jpg?lastWrite=637637884748023734","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jqvhxcowBfckO8RWtaMMVc4QFeB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/340\/fanart.jpg?lastWrite=637611936580265652","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aCyd0XgjohTkfzPC1i35tv69Moy.jpg"}],"website":"http:\/\/www.inkheartmovie.com\/","year":2008,"hasFile":true,"youTubeTrailerId":"EsV2Z_il_L4","studio":"New Line Cinema","path":"\/movies\/Inkheart (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Inkheart (2008)","runtime":106,"cleanTitle":"inkheart","imdbId":"tt0494238","tmdbId":2309,"titleSlug":"2309","certification":"PG","genres":["Adventure","Family","Fantasy"],"tags":[],"added":"2018-12-07T17:34:53Z","ratings":{"votes":1681,"value":6.3},"movieFile":{"movieId":340,"relativePath":"Inkheart.2008-Bluray-1080p.mp4","path":"\/movies\/Inkheart (2008)\/Inkheart.2008-Bluray-1080p.mp4","size":1506444536,"dateAdded":"2018-12-31T18:03:28Z","sceneName":"Inkheart (2008) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":96000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1795000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:46:01","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":460},"id":340},{"title":"The Girl with the Dragon Tattoo","originalTitle":"M\u00e4n som hatar kvinnor","alternateTitles":[{"sourceType":"tmdb","movieId":342,"title":"Girl I - With The Dragon Tattoo","sourceId":15472,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":578},{"sourceType":"tmdb","movieId":342,"title":"Os Homens Que N\u00e3o Amavam As Mulheres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3058},{"sourceType":"tmdb","movieId":342,"title":"Mill\u00e9nium, le Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3059},{"sourceType":"tmdb","movieId":342,"title":"Die Millenium Trilogie 1 - Verblendung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3060},{"sourceType":"tmdb","movieId":342,"title":"Stieg Larsson - Verblendung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3061},{"sourceType":"tmdb","movieId":342,"title":"Maend der hader kvinder","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3062},{"sourceType":"tmdb","movieId":342,"title":"M\u00e6nd der hader Kvinder","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3063},{"sourceType":"tmdb","movieId":342,"title":"Millennium","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3064},{"sourceType":"tmdb","movieId":342,"title":"Millennium 1: Los hombres que no amaban a las mujeres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3065},{"sourceType":"tmdb","movieId":342,"title":"Millennium I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3066},{"sourceType":"tmdb","movieId":342,"title":"Miehet jotka vihaavat naisia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":3067},{"sourceType":"tmdb","movieId":342,"title":"Mill\u00e9nium","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3068},{"sourceType":"tmdb","movieId":342,"title":"A tetov\u00e1lt l\u00e1ny","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3069},{"sourceType":"tmdb","movieId":342,"title":"Karlar Sem Hata Konur","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3070},{"sourceType":"tmdb","movieId":342,"title":"\ubc00\ub808\ub2c8\uc5c4: \uc81c1\ubd80 \uc5ec\uc790\ub97c \uc99d\uc624\ud55c \ub0a8\uc790\ub4e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3071},{"sourceType":"tmdb","movieId":342,"title":"Los hombres que no amaban a las mujeres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3072},{"sourceType":"tmdb","movieId":342,"title":"Mannen die vrouwen haten","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3073},{"sourceType":"tmdb","movieId":342,"title":"Millenium 1 - Mannen die vrouwen haten","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3074},{"sourceType":"tmdb","movieId":342,"title":"Menn som hater kvinner","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3075},{"sourceType":"tmdb","movieId":342,"title":"Millennium: M\u0119\u017cczy\u017ani, kt\u00f3rzy nienawidz\u0105 kobiet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3076},{"sourceType":"tmdb","movieId":342,"title":"Millennium 1. Os Homens que Odeiam as Mulheres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3077},{"sourceType":"tmdb","movieId":342,"title":"Millenium - I - The Girl With The Dragon Tattoo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3078},{"sourceType":"tmdb","movieId":342,"title":"Millenium: Part 1 - The Girl With The Dragon Tattoo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3079},{"sourceType":"tmdb","movieId":342,"title":"M\u00e4n som hatar kvinnor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3080},{"sourceType":"tmdb","movieId":342,"title":"\u9f8d\u7d0b\u8eab\u7684\u5973\u5b69","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3081},{"sourceType":"tmdb","movieId":342,"title":"\u0414\u0456\u0432\u0447\u0438\u043d\u0430 \u0437 \u0442\u0430\u0442\u0443 \u0434\u0440\u0430\u043a\u043e\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3082}],"secondaryYearSourceId":0,"sortTitle":"girl with dragon tattoo","sizeOnDisk":2731217355,"status":"released","overview":"Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerstr\u00f6m. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece","inCinemas":"2009-02-27T00:00:00Z","physicalRelease":"2009-11-24T00:00:00Z","digitalRelease":"2011-01-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/342\/poster.jpg?lastWrite=637665567063067184","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/j4Ra0SvYM08winX6fxn6AknlygV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/342\/fanart.jpg?lastWrite=637665567064387158","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dPE25PbaeE6fCR2SQb4H4MeBmml.jpg"}],"website":"http:\/\/dragontattoofilm.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"JlF-hk3IJQE","studio":"Det Danske Filminstitut","path":"\/movies\/The Girl with the Dragon Tattoo (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Girl with the Dragon Tattoo (2009)","runtime":152,"cleanTitle":"thegirlwithdragontattoo","imdbId":"tt1132620","tmdbId":15472,"titleSlug":"15472","certification":"R","genres":["Drama","Thriller","Crime"],"tags":[],"added":"2018-12-26T16:38:13Z","ratings":{"votes":2251,"value":7.6},"movieFile":{"movieId":342,"relativePath":"The Girl with the Dragon Tattoo.2009-Bluray-1080p.mp4","path":"\/movies\/The Girl with the Dragon Tattoo (2009)\/The Girl with the Dragon Tattoo.2009-Bluray-1080p.mp4","size":2731217355,"dateAdded":"2019-04-10T00:17:53Z","sceneName":"The Girl With The Dragon Tattoo (2009) [BluRay] [1080p] [YTS.AM]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":144000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:38:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":537},"collection":{"name":"The Millennium Collection","tmdbId":24761,"images":[]},"id":342},{"title":"The Girl Who Kicked the Hornet's Nest","originalTitle":"Luftslottet som spr\u00e4ngdes","alternateTitles":[{"sourceType":"tmdb","movieId":343,"title":"Millenium Part 3 - The Girl Who Kicked the Hornet's Nest","sourceId":33613,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":579},{"sourceType":"tmdb","movieId":343,"title":"The Girl III - Who Kicked The Hornet's Nest","sourceId":33613,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":580},{"sourceType":"tmdb","movieId":343,"title":"Die Millenium Trilogie 3 - Vergebung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3040},{"sourceType":"tmdb","movieId":343,"title":"Stieg Larsson - Vergebung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3041},{"sourceType":"tmdb","movieId":343,"title":"Millennium 3 La reina en el palacio de las corrientes de aire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3042},{"sourceType":"tmdb","movieId":343,"title":"Mill\u00e9nium 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3044},{"sourceType":"tmdb","movieId":343,"title":"Mill\u00e9nium 3 - La Reine dans le palais des courants d'air","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3045},{"sourceType":"tmdb","movieId":343,"title":"Gerechtigheid","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3050},{"sourceType":"tmdb","movieId":343,"title":"Millenium 3 - Gerechtigheid","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3051},{"sourceType":"tmdb","movieId":343,"title":"Millennium: Zamek z piasku, kt\u00f3ry run\u0105\u0142","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3053},{"sourceType":"tmdb","movieId":343,"title":"Millennium 3 - A Rainha no Pal\u00e1cio das Correntes de Ar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3054},{"sourceType":"tmdb","movieId":343,"title":"Millenium - III - The Girl Who Kicked The Hornet's Nest","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3057},{"sourceType":"tmdb","movieId":343,"title":"Luftslottet som sprangdes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6089}],"secondaryYearSourceId":0,"sortTitle":"girl who kicked hornet s nest","sizeOnDisk":11737088381,"status":"released","overview":"After taking a bullet to the head, Salander is under close supervision in a hospital and is set to face trial for attempted murder on her eventual release. With the help of journalist Mikael Blomkvist and his researchers at Millennium magazine, Salander must prove her innocence. In doing this she plays against powerful enemies and her own past.","inCinemas":"2009-11-27T00:00:00Z","physicalRelease":"2010-08-31T00:00:00Z","digitalRelease":"2011-01-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/343\/poster.jpg?lastWrite=637665567034107758","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7fbnVAqbxBHvssk55Tnwtc0WC5C.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/343\/fanart.jpg?lastWrite=637607610233012435","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qhohCrCs4sv1M4H9NIRlhgl0lcE.jpg"}],"website":"http:\/\/dragontattoofilm.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"vVGbPFdU96A","studio":"Nordisk Film","path":"\/movies\/The Girl Who Kicked the Hornet's Nest (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Girl Who Kicked the Hornet's Nest (2009)","runtime":147,"cleanTitle":"thegirlwhokickedhornetsnest","imdbId":"tt1343097","tmdbId":33613,"titleSlug":"33613","certification":"R","genres":["Action","Thriller","Crime"],"tags":[],"added":"2018-12-26T16:38:15Z","ratings":{"votes":1023,"value":7.1},"movieFile":{"movieId":343,"relativePath":"The Girl Who Kicked the Hornet's Nest.2009-Bluray-1080p.mkv","path":"\/movies\/The Girl Who Kicked the Hornet's Nest (2009)\/The Girl Who Kicked the Hornet's Nest.2009-Bluray-1080p.mkv","size":11737088381,"dateAdded":"2018-12-27T20:53:19Z","sceneName":"The.Girl.Who.Kicked.the.Hornets.Nest.2009.LiMiTED.PROPER.1080p.BluRay.x264-NODLABS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Swedish","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10012000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:26:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"NODLABS","edition":"","id":425},"collection":{"name":"The Millennium Collection","tmdbId":24761,"images":[]},"id":343},{"title":"The Girl Who Played with Fire","originalTitle":"Flickan som lekte med elden","alternateTitles":[{"sourceType":"tmdb","movieId":344,"title":"Millennium 2 - The Girl Who Played with Fire","sourceId":24253,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":581},{"sourceType":"tmdb","movieId":344,"title":"The Girl II - Who Played With Fire","sourceId":24253,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":582},{"sourceType":"tmdb","movieId":344,"title":"Flickan som lekte med elden","sourceId":24253,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":583},{"sourceType":"tmdb","movieId":344,"title":"\u041c\u0438\u043b\u0435\u043d\u0438\u0443\u043c 2: \u041c\u043e\u043c\u0438\u0447\u0435\u0442\u043e, \u043a\u043e\u0435\u0442\u043e \u0441\u0438 \u0438\u0433\u0440\u0430\u0435\u0448\u0435 \u0441 \u043e\u0433\u044a\u043d\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2389},{"sourceType":"tmdb","movieId":344,"title":"Millennium 2: A Menina que Brincava com Fogo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2390},{"sourceType":"tmdb","movieId":344,"title":"Die Millenium Trilogie 2 - Verdammnis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2391},{"sourceType":"tmdb","movieId":344,"title":"Stieg Larsson: Verdammnis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2392},{"sourceType":"tmdb","movieId":344,"title":"Millennium 2: La chica que so\u00f1aba con una cerilla y un bid\u00f3n de gasolina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2393},{"sourceType":"tmdb","movieId":344,"title":"Mill\u00e9nium 2 - La fille qui r\u00eavait d'un bidon d'essence et d'une allumette","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2394},{"sourceType":"tmdb","movieId":344,"title":"St\u00falkan sem l\u00e9k s\u00e9r a\u00f0 eldinum","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2395},{"sourceType":"tmdb","movieId":344,"title":"\ubc00\ub808\ub2c8\uc5c4: \uc81c2\ubd80 \ubd88\uc744 \uac00\uc9c0\uace0 \ub178\ub294 \uc18c\ub140","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2396},{"sourceType":"tmdb","movieId":344,"title":"La chica que so\u00f1aba con un cerillo y un gal\u00f3n de gasolina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2397},{"sourceType":"tmdb","movieId":344,"title":"De Vrouw Die met Vuur Speelde","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2398},{"sourceType":"tmdb","movieId":344,"title":"Millennium 2: A Rapariga que Sonhava com uma Lata de Gasolina e um F\u00f3sforo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2399},{"sourceType":"tmdb","movieId":344,"title":"\u0414\u0435\u0432\u0443\u0448\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0438\u0433\u0440\u0430\u043b\u0430 \u0441 \u043e\u0433\u043d\u0435\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2400},{"sourceType":"tmdb","movieId":344,"title":"Ate\u015fle Oynayan K\u0131z: Millennium \u00dc\u00e7lemesi 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2401}],"secondaryYearSourceId":0,"sortTitle":"girl who played with fire","sizeOnDisk":8525753041,"status":"released","overview":"Mikael Blomkvist, publisher of Millennium magazine, has made his living exposing the crooked and corrupt practices of establishment Swedish figures. So when a young journalist approaches him with a meticulously researched thesis about sex trafficking in Sweden and those in high office who abuse underage girls, Blomkvist immediately throws himself into the investigation.","inCinemas":"2009-09-18T00:00:00Z","physicalRelease":"2010-05-18T00:00:00Z","digitalRelease":"2011-01-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/344\/poster.jpg?lastWrite=637656051653054503","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3v9LgxjEPyJfDDOtkWUJNYnYcfu.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/344\/fanart.jpg?lastWrite=637630100187065226","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rQ5IqaZ1MAJiVnrGttqEoaZTMth.jpg"}],"website":"http:\/\/dragontattoofilm.com\/about-5\/the-girl-who-played-with-fire\/","year":2009,"hasFile":true,"youTubeTrailerId":"oSsodK7KFXQ","studio":"Nordisk Film","path":"\/movies\/The Girl Who Played with Fire (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Girl Who Played with Fire (2009)","runtime":130,"cleanTitle":"thegirlwhoplayedwithfire","imdbId":"tt1216487","tmdbId":24253,"titleSlug":"24253","certification":"R","genres":["Drama","Action","Thriller"],"tags":[],"added":"2018-12-26T16:38:19Z","ratings":{"votes":1261,"value":7},"movieFile":{"movieId":344,"relativePath":"The Girl Who Played with Fire.2009-Bluray-1080p.mkv","path":"\/movies\/The Girl Who Played with Fire (2009)\/The Girl Who Played with Fire.2009-Bluray-1080p.mkv","size":8525753041,"dateAdded":"2018-12-27T20:27:15Z","sceneName":"The.Girl.Who.Played.with.Fire.2009.LiMiTED.PROPER.1080p.BluRay.x264-NODLABS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Swedish","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8143000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:09:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"NODLABS","edition":"","id":424},"collection":{"name":"The Millennium Collection","tmdbId":24761,"images":[]},"id":344},{"title":"Men in Black","originalTitle":"Men in Black","alternateTitles":[{"sourceType":"tmdb","movieId":345,"title":"Men in Black 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4375},{"sourceType":"tmdb","movieId":345,"title":"MIB: Men in Black (Hombres de negro)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4376},{"sourceType":"tmdb","movieId":345,"title":"Men in Black (Hombres de negro)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4377},{"sourceType":"tmdb","movieId":345,"title":"Men in black \u2013 Miehet mustissa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4378},{"sourceType":"tmdb","movieId":345,"title":"Adamianebi shavebshi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4380},{"sourceType":"tmdb","movieId":345,"title":"Gvarim B'Shahor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4381},{"sourceType":"tmdb","movieId":345,"title":"MIB - Men in Black","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4382},{"sourceType":"tmdb","movieId":345,"title":"Men in black I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4383},{"sourceType":"tmdb","movieId":345,"title":"\ub9e8 \uc778 \ube14\ub799","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4384},{"sourceType":"tmdb","movieId":345,"title":"\u041b\u044e\u0434\u0438 \u0432 \u0447\u0435\u0440\u043d\u043e\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4385},{"sourceType":"tmdb","movieId":345,"title":"Men In Black 01 Men In Black","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4386},{"sourceType":"tmdb","movieId":345,"title":"Men in Bl\u0430\u0441k","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5637},{"sourceType":"tmdb","movieId":345,"title":"\ub9e8 \uc778 \ube14\ub799 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5699},{"sourceType":"tmdb","movieId":345,"title":"MIB - Homens de Negro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6119}],"secondaryYearSourceId":0,"sortTitle":"men in black","sizeOnDisk":2003567505,"status":"released","overview":"After a police chase with an otherworldly being, a New York City cop is recruited as an agent in a top-secret organization established to monitor and police alien activity on Earth: the Men in Black. Agent Kay and new recruit Agent Jay find themselves in the middle of a deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies.","inCinemas":"1997-07-02T00:00:00Z","physicalRelease":"2000-09-04T00:00:00Z","digitalRelease":"2017-10-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/345\/poster.jpg?lastWrite=637557449452522826","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/345\/fanart.jpg?lastWrite=637589450843908526","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iEVZScwA2vy8BlVOFBBCfbU6XxB.jpg"}],"website":"http:\/\/www.sonypictures.com\/homevideo\/meninblack","year":1997,"hasFile":true,"youTubeTrailerId":"HYUd7AOw_lk","studio":"Columbia Pictures","path":"\/movies\/Men in Black (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Men in Black (1997)","runtime":98,"cleanTitle":"meninblack","imdbId":"tt0119654","tmdbId":607,"titleSlug":"607","certification":"PG-13","genres":["Action","Adventure","Comedy"],"tags":[],"added":"2018-12-28T00:56:45Z","ratings":{"votes":10919,"value":7.2},"movieFile":{"movieId":345,"relativePath":"Men in Black.1997-Bluray-1080p.mp4","path":"\/movies\/Men in Black (1997)\/Men in Black.1997-Bluray-1080p.mp4","size":2003567505,"dateAdded":"2018-12-28T01:03:08Z","sceneName":"Men.In.Black.1997.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1036","runTime":"1:37:58","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":427},"collection":{"name":"Men In Black Collection","tmdbId":86055,"images":[]},"id":345},{"title":"Men in Black II","originalTitle":"Men in Black II","alternateTitles":[{"sourceType":"tmdb","movieId":346,"title":"M\u016dzhe v cherno 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4387},{"sourceType":"tmdb","movieId":346,"title":"Men in Black 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4389},{"sourceType":"tmdb","movieId":346,"title":"MIIB","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4391},{"sourceType":"tmdb","movieId":346,"title":"Oi \u00e1ndres me ta m\u00e1vra 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4392},{"sourceType":"tmdb","movieId":346,"title":"Ljudi u crnom 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4394},{"sourceType":"tmdb","movieId":346,"title":"Lyudi v chornom 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4395},{"sourceType":"tmdb","movieId":346,"title":"MIIB - Back in Black","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4396},{"sourceType":"tmdb","movieId":346,"title":"Hombres de Negro 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4397},{"sourceType":"tmdb","movieId":346,"title":"Lyudy v chornomu 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4398},{"sourceType":"tmdb","movieId":346,"title":"MIB 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4399},{"sourceType":"tmdb","movieId":346,"title":"MIB II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4400},{"sourceType":"tmdb","movieId":346,"title":"Men In Black 02 Men In Black Ii","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4401},{"sourceType":"tmdb","movieId":346,"title":"MIIB: Hombres de negro II (Men in Black 2)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5616}],"secondaryYearSourceId":0,"sortTitle":"men in black ii","sizeOnDisk":1803880574,"status":"released","overview":"Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement \u2013 protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay \u2013 who not only has absolutely no memory of his time spent with the MIB, but is also the only living person left with the expertise to save the galaxy \u2013 to reunite with the MIB before the earth submits to ultimate destruction.","inCinemas":"2002-07-03T00:00:00Z","physicalRelease":"2002-11-26T00:00:00Z","digitalRelease":"2004-12-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/346\/poster.jpg?lastWrite=637647399906114379","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/enA22EPyzc2WQ1VVyY7zxresQQr.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/346\/fanart.jpg?lastWrite=637647399907394358","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/k22mrpAzZNRR5ktD5Wb7rMlxemS.jpg"}],"website":"http:\/\/www.sonypictures.com\/homevideo\/meninblackii\/","year":2002,"hasFile":true,"youTubeTrailerId":"p4NJHqoojOU","studio":"Columbia Pictures","path":"\/movies\/Men in Black II (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Men in Black II (2002)","runtime":88,"cleanTitle":"meninblackii","imdbId":"tt0120912","tmdbId":608,"titleSlug":"608","certification":"PG-13","genres":["Action","Adventure","Comedy"],"tags":[],"added":"2018-12-28T00:56:51Z","ratings":{"votes":7850,"value":6.3},"movieFile":{"movieId":346,"relativePath":"Men in Black II.2002-Bluray-1080p.mp4","path":"\/movies\/Men in Black II (2002)\/Men in Black II.2002-Bluray-1080p.mp4","size":1803880574,"dateAdded":"2018-12-28T01:33:44Z","sceneName":"Men.in.Black.2.2002.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:28:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":428},"collection":{"name":"Men In Black Collection","tmdbId":86055,"images":[]},"id":346},{"title":"Spider-Man: Into the Spider-Verse","originalTitle":"Spider-Man: Into the Spider-Verse","alternateTitles":[{"sourceType":"tmdb","movieId":347,"title":"Animated Spider-Man","sourceId":324857,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":585},{"sourceType":"tmdb","movieId":347,"title":"\u0633\u0628\u0627\u064a\u062f\u0631 \u0645\u0627\u0646: \u0641\u064a \u0639\u0627\u0644\u0645 \u0627\u0644\u0639\u0646\u0643\u0628\u0648\u062a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4590},{"sourceType":"tmdb","movieId":347,"title":"Spider Man : nouvelle g\u00e9n\u00e9ration","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4591},{"sourceType":"tmdb","movieId":347,"title":"\u05e1\u05e4\u05d9\u05d9\u05d3\u05e8\u05de\u05df: \u05de\u05d9\u05de\u05d3 \u05d4\u05e2\u05db\u05d1\u05d9\u05e9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4592},{"sourceType":"tmdb","movieId":347,"title":"Een Nieuw Universum","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":4594},{"sourceType":"tmdb","movieId":347,"title":"Homem-Aranha no Aranhaverso","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6194}],"secondaryYearSourceId":0,"sortTitle":"spider man into spider verse","sizeOnDisk":5868810727,"status":"released","overview":"Miles Morales is juggling his life between being a high school student and being a spider-man. When Wilson \"Kingpin\" Fisk uses a super collider, others from across the Spider-Verse are transported to this dimension.","inCinemas":"2018-12-06T00:00:00Z","physicalRelease":"2019-03-19T00:00:00Z","digitalRelease":"2019-02-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/347\/poster.jpg?lastWrite=637256689514287525","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iiZZdoQBEYBv6id8su7ImL0oCbD.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/347\/fanart.jpg?lastWrite=637589451368782448","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6qVF0gnLnbKCgcMfCpCB8GH7B5I.jpg"}],"website":"http:\/\/www.intothespiderverse.movie","year":2018,"hasFile":true,"youTubeTrailerId":"tg52up16eq0","studio":"Sony Pictures","path":"\/movies\/Spider-Man Into the Spider-Verse (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Spider-Man Into the Spider-Verse (2018)","runtime":117,"cleanTitle":"spidermanintospiderverse","imdbId":"tt4633694","tmdbId":324857,"titleSlug":"324857","certification":"PG","genres":["Action","Adventure","Animation"],"tags":[],"added":"2018-12-28T00:56:58Z","ratings":{"votes":9792,"value":8.4},"movieFile":{"movieId":347,"relativePath":"Spider-Man Into the Spider-Verse.2018-Bluray-1080p.mkv","path":"\/movies\/Spider-Man Into the Spider-Verse (2018)\/Spider-Man Into the Spider-Verse.2018-Bluray-1080p.mkv","size":5868810727,"dateAdded":"2019-03-09T19:55:22Z","sceneName":"Spider-Man.Into.the.Spider-Verse.2018.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5186000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:56:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":518},"collection":{"name":"Spider-Man: Spider-Verse Collection","tmdbId":573436,"images":[]},"id":347},{"title":"Venom","originalTitle":"Venom","alternateTitles":[{"sourceType":"tmdb","movieId":348,"title":"\ubca0\ub188","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1997},{"sourceType":"tmdb","movieId":348,"title":"\u0412\u0435\u043d\u043e\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1998},{"sourceType":"tmdb","movieId":348,"title":"Venom: Zehirli \u00d6fke","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1999},{"sourceType":"tmdb","movieId":348,"title":"\u6bd2\u6db2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5948}],"secondaryYearSourceId":0,"sortTitle":"venom","sizeOnDisk":37974344167,"status":"released","overview":"Investigative journalist Eddie Brock attempts a comeback following a scandal, but accidentally becomes the host of Venom, a violent, super powerful alien symbiote. Soon, he must rely on his newfound powers to protect the world from a shadowy organization looking for a symbiote of their own.","inCinemas":"2018-09-28T00:00:00Z","physicalRelease":"2018-12-18T00:00:00Z","digitalRelease":"2018-12-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/348\/poster.jpg?lastWrite=637662971694902700","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2uNW4WbgBXL25BAbXGLnLqX71Sw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/348\/fanart.jpg?lastWrite=637665567435339834","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/VuukZLgaCrho2Ar8Scl9HtV3yD.jpg"}],"website":"http:\/\/www.venom.movie\/site\/","year":2018,"hasFile":true,"youTubeTrailerId":"xLCn88bfW1o","studio":"Avi Arad Productions","path":"\/movies\/Venom (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Venom (2018)","runtime":112,"cleanTitle":"venom","imdbId":"tt1270797","tmdbId":335983,"titleSlug":"335983","certification":"PG-13","genres":["Science Fiction","Action"],"tags":[],"added":"2018-12-28T00:57:14Z","ratings":{"votes":11287,"value":6.8},"movieFile":{"movieId":348,"relativePath":"Venom.2018-Remux-1080p.mkv","path":"\/movies\/Venom (2018)\/Venom.2018-Remux-1080p.mkv","size":37974344167,"dateAdded":"2018-12-28T01:43:08Z","sceneName":"Venom.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3212303,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ English \/ French \/ French \/ French \/ Spanish","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":29992416,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:52:08","scanType":"Progressive","subtitles":"English \/ English \/ English \/ French \/ Spanish \/ Spanish \/ French \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":429},"id":348},{"title":"Mortal Engines","originalTitle":"Mortal Engines","alternateTitles":[{"sourceType":"tmdb","movieId":349,"title":"Mortal Engines: Krieg der St\u00e4dte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4751},{"sourceType":"tmdb","movieId":349,"title":"M\u00e1quinas Mortais","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4994},{"sourceType":"tmdb","movieId":349,"title":"M\u00e9canique fatale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6113},{"sourceType":"tmdb","movieId":349,"title":"M\u00e1quinas Mortales","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6292}],"secondaryYearSourceId":0,"sortTitle":"mortal engines","sizeOnDisk":9391480393,"status":"released","overview":"Many thousands of years in the future, Earth\u2019s cities roam the globe on huge wheels, devouring each other in a struggle for ever diminishing resources. On one of these massive traction cities, the old London, Tom Natsworthy has an unexpected encounter with a mysterious young woman from the wastelands who will change the course of his life forever.","inCinemas":"2018-12-05T00:00:00Z","physicalRelease":"2019-03-12T00:00:00Z","digitalRelease":"2019-02-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/349\/poster.jpg?lastWrite=637653456274598308","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gLhYg9NIvIPKVRTtvzCWnp1qJWG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/349\/fanart.jpg?lastWrite=637653456276638276","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rm2oMykm5nX6SzXFr7TGHkO6r8Z.jpg"}],"website":"http:\/\/www.mortalengines.com","year":2018,"hasFile":true,"youTubeTrailerId":"dqYyKztOZOw","studio":"Scholastic Productions","path":"\/movies\/Mortal Engines (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Mortal Engines (2018)","runtime":129,"cleanTitle":"mortalengines","imdbId":"tt1571234","tmdbId":428078,"titleSlug":"428078","certification":"PG-13","genres":["Adventure","Science Fiction"],"tags":[],"added":"2018-12-28T00:57:22Z","ratings":{"votes":3500,"value":6.2},"movieFile":{"movieId":349,"relativePath":"Mortal Engines.2018-Bluray-1080p.mkv","path":"\/movies\/Mortal Engines (2018)\/Mortal Engines.2018-Bluray-1080p.mkv","size":9391480393,"dateAdded":"2019-03-01T04:28:25Z","sceneName":"Mortal.Engines.2018.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9114000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:08:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":514},"id":349},{"title":"Alien","originalTitle":"Alien","alternateTitles":[{"sourceType":"tmdb","movieId":350,"title":"Alien: The Director's Cut","sourceId":348,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":587},{"sourceType":"tmdb","movieId":350,"title":"Alien - O Oitavo Passageiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2032},{"sourceType":"tmdb","movieId":350,"title":"Alien, el 8\u00ba pasajero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2034},{"sourceType":"tmdb","movieId":350,"title":"Alien - den \u00e5ttonde passageraren","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2038},{"sourceType":"tmdb","movieId":350,"title":"Alien, le 8\u00e8me passager","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5310},{"sourceType":"tmdb","movieId":350,"title":"Alien 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5463},{"sourceType":"tmdb","movieId":350,"title":"Alien 1: Das unheimliche Wesen aus einer fremden Welt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5547},{"sourceType":"tmdb","movieId":350,"title":"\u5f02\u5f62","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5700},{"sourceType":"tmdb","movieId":350,"title":"\u7570\u5f62","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5790}],"secondaryYearSourceId":0,"sortTitle":"alien","sizeOnDisk":8527662835,"status":"released","overview":"During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.","inCinemas":"1979-05-28T00:00:00Z","physicalRelease":"2003-12-19T00:00:00Z","digitalRelease":"2004-05-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/350\/poster.jpg?lastWrite=637569558571618306","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vfrQk5IPloGg1v9Rzbh2Eg3VGyM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/350\/fanart.jpg?lastWrite=637657781177025200","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AmR3JG1VQVxU8TfAvljUhfSFUOx.jpg"}],"website":"https:\/\/www.20thcenturystudios.com\/movies\/alien","year":1979,"hasFile":true,"youTubeTrailerId":"sVwH0hIvV5k","studio":"Brandywine Productions","path":"\/movies\/Alien (1979)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Alien (1979)","runtime":117,"cleanTitle":"alien","imdbId":"tt0078748","tmdbId":348,"titleSlug":"348","certification":"R","genres":["Horror","Science Fiction"],"tags":[],"added":"2018-12-28T00:59:23Z","ratings":{"votes":10813,"value":8.1},"movieFile":{"movieId":350,"relativePath":"Alien.1979-Bluray-1080p.mkv","path":"\/movies\/Alien (1979)\/Alien.1979-Bluray-1080p.mkv","size":8527662835,"dateAdded":"2018-12-28T03:05:41Z","sceneName":"Alien.1979.1080p.BluRay.x264-Japhson","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8307000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:55:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"Japhson","edition":"","id":430},"collection":{"name":"Alien Collection","tmdbId":8091,"images":[]},"id":350},{"title":"The Girl with the Dragon Tattoo","originalTitle":"The Girl with the Dragon Tattoo","alternateTitles":[{"sourceType":"tmdb","movieId":351,"title":"La chica del drag\u00f3n tatuado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3510},{"sourceType":"tmdb","movieId":351,"title":"Verblendung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3511},{"sourceType":"tmdb","movieId":351,"title":"Millennium: Los hombres que no amaban a las mujeres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3512},{"sourceType":"tmdb","movieId":351,"title":"Millenium 4 - Les hommes qui n'aimaient pas les femmes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3513},{"sourceType":"tmdb","movieId":351,"title":"\ubc00\ub808\ub2c8\uc5c4: \uc5ec\uc790\ub97c \uc99d\uc624\ud55c \ub0a8\uc790\ub4e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3514},{"sourceType":"tmdb","movieId":351,"title":"Devushka s tatu drakona","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3515},{"sourceType":"tmdb","movieId":351,"title":"\u0414\u0456\u0432\u0447\u0438\u043d\u0430 \u0437 \u0442\u0430\u0442\u0443\u044e\u0432\u0430\u043d\u043d\u044f\u043c \u0434\u0440\u0430\u043a\u043e\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3516},{"sourceType":"tmdb","movieId":351,"title":"Millennium: A Garota Com Tatuagem de Drag\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4790},{"sourceType":"tmdb","movieId":351,"title":"Verblendung - The Girl with the Dragon Tattoo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6010}],"secondaryYearSourceId":0,"sortTitle":"girl with dragon tattoo","sizeOnDisk":11731667404,"status":"released","overview":"This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.","inCinemas":"2011-12-14T00:00:00Z","physicalRelease":"2012-05-15T00:00:00Z","digitalRelease":"2013-11-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/351\/poster.jpg?lastWrite=637656916521677058","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vbLedKc1BUF4FOH1GyHW62FulCc.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/351\/fanart.jpg?lastWrite=637656916523117043","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dNFbrnF0mIBm0rClbfEFWTtsgMP.jpg"}],"website":"http:\/\/dragontattoo.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"DqQe3OrsMKI","studio":"Ground Control","path":"\/movies\/The Girl with the Dragon Tattoo (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Girl with the Dragon Tattoo (2011)","runtime":158,"cleanTitle":"thegirlwithdragontattoo","imdbId":"tt1568346","tmdbId":65754,"titleSlug":"65754","certification":"R","genres":["Thriller","Crime","Mystery"],"tags":[],"added":"2018-12-28T15:23:31Z","ratings":{"votes":5388,"value":7.3},"movieFile":{"movieId":351,"relativePath":"The Girl with the Dragon Tattoo.2011-Bluray-1080p.mkv","path":"\/movies\/The Girl with the Dragon Tattoo (2011)\/The Girl with the Dragon Tattoo.2011-Bluray-1080p.mkv","size":11731667404,"dateAdded":"2018-12-28T19:00:01Z","sceneName":"The.Girl.With.The.Dragon.Tattoo.2011.1080p.BluRay.x264-SPARKS","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8381000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:38:08","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":432},"collection":{"name":"The Girl - Millennium Collection","tmdbId":575987,"images":[]},"id":351},{"title":"Blade Runner","originalTitle":"Blade Runner","alternateTitles":[{"sourceType":"tmdb","movieId":352,"title":"Dangerous Days","sourceId":78,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":588},{"sourceType":"tmdb","movieId":352,"title":"Der Blade Runner","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4071},{"sourceType":"tmdb","movieId":352,"title":"Blade Runner - Metropolis 2020","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4072},{"sourceType":"tmdb","movieId":352,"title":"\u0422\u043e\u0439, \u0445\u0442\u043e \u0431\u0456\u0436\u0438\u0442\u044c \u043f\u043e \u043b\u0435\u0437","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4073},{"sourceType":"tmdb","movieId":352,"title":"Blade Runner (Director's Cut)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4745},{"sourceType":"tmdb","movieId":352,"title":"Blade Runner (International Cut)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4746},{"sourceType":"tmdb","movieId":352,"title":"Blade Runner (Final Cut)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5251},{"sourceType":"tmdb","movieId":352,"title":"Blade Runner, o Ca\u00e7ador de Androides","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5343}],"secondaryYearSourceId":0,"sortTitle":"blade runner","sizeOnDisk":20321842313,"status":"released","overview":"In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.","inCinemas":"1982-06-25T00:00:00Z","physicalRelease":"1992-12-29T00:00:00Z","digitalRelease":"2016-12-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/352\/poster.jpg?lastWrite=637643939269009713","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/63N9uy8nd9j7Eog2axPQ8lbr3Wj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/352\/fanart.jpg?lastWrite=637662971180031407","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eIi3klFf7mp3oL5EEF4mLIDs26r.jpg"}],"website":"http:\/\/www.warnerbros.com\/blade-runner","year":1982,"hasFile":true,"youTubeTrailerId":"W_9rhPDLHWk","studio":"Shaw Brothers","path":"\/movies\/Blade Runner (1982)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Blade Runner (1982)","runtime":117,"cleanTitle":"bladerunner","imdbId":"tt0083658","tmdbId":78,"titleSlug":"78","certification":"R","genres":["Science Fiction","Drama","Thriller"],"tags":[],"added":"2018-12-28T19:26:38Z","ratings":{"votes":10677,"value":7.9},"movieFile":{"movieId":352,"relativePath":"Blade Runner.1982-Bluray-1080p.mkv","path":"\/movies\/Blade Runner (1982)\/Blade Runner.1982-Bluray-1080p.mkv","size":20321842313,"dateAdded":"2018-12-29T03:51:29Z","sceneName":"Blade.Runner.1982.The.Final.Cut.REMASTERED.iNTERNAL.1080p.UHD.BluRay.x264-LiBRARiANS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4336119,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ English","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":17216277,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:57:31","scanType":"Progressive","subtitles":"English \/ English \/ English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Chinese \/ Chinese \/ Chinese \/ Korean \/ Spanish \/ Portuguese \/ Arabic \/ Czech \/ Danish \/ Finnish \/ Hebrew \/ Norwegian \/ Polish \/ Portuguese \/ Russian \/ Swedish \/ Turkish \/ Japanese "},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"LiBRARiANS","edition":"Final Cut REMASTERED","id":433},"collection":{"name":"Blade Runner Collection","tmdbId":422837,"images":[]},"id":352},{"title":"Blade Runner 2049","originalTitle":"Blade Runner 2049","alternateTitles":[{"sourceType":"tmdb","movieId":353,"title":"Blade Runner 2","sourceId":335984,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":591},{"sourceType":"tmdb","movieId":353,"title":"Blade Runner 2 - 2049","sourceId":335984,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":592},{"sourceType":"tmdb","movieId":353,"title":"Blade Runner 2049 3D","sourceId":335984,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1285},{"sourceType":"tmdb","movieId":353,"title":"Blejd Raner 2049","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2711},{"sourceType":"tmdb","movieId":353,"title":"\u0411\u0435\u0433\u0443\u0449\u0438\u0439 \u043f\u043e \u043b\u0435\u0437\u0432\u0438\u044e 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2712}],"secondaryYearSourceId":0,"sortTitle":"blade runner 2049","sizeOnDisk":43960440606,"status":"released","overview":"Thirty years after the events of the first film, a new blade runner, LAPD Officer K, unearths a long-buried secret that has the potential to plunge what's left of society into chaos. K's discovery leads him on a quest to find Rick Deckard, a former LAPD blade runner who has been missing for 30 years.","inCinemas":"2017-10-04T00:00:00Z","physicalRelease":"2018-01-16T00:00:00Z","digitalRelease":"2017-12-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/353\/poster.jpg?lastWrite=637633559055092734","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gajva2L0rPYkEWjzgFlBXCAVBE5.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/353\/fanart.jpg?lastWrite=637633559056732707","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sAtoMqDVhNDQBc3QJL3RF6hlhGq.jpg"}],"website":"http:\/\/bladerunnermovie.com\/","year":2017,"hasFile":true,"youTubeTrailerId":"dZOaI_Fn5o4","studio":"Torridon Films","path":"\/movies\/Blade Runner 2049 (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Blade Runner 2049 (2017)","runtime":164,"cleanTitle":"bladerunner2049","imdbId":"tt1856101","tmdbId":335984,"titleSlug":"335984","certification":"R","genres":["Science Fiction","Drama"],"tags":[],"added":"2018-12-28T19:26:39Z","ratings":{"votes":9801,"value":7.5},"movieFile":{"movieId":353,"relativePath":"Blade Runner 2049.2017-Remux-1080p.mkv","path":"\/movies\/Blade Runner 2049 (2017)\/Blade Runner 2049.2017-Remux-1080p.mkv","size":43960440606,"dateAdded":"2018-12-31T04:43:14Z","sceneName":"Blade.Runner.2049.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":3710312,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ English \/ English \/ French \/ Spanish","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":20337107,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:43:47","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":456},"collection":{"name":"Blade Runner Collection","tmdbId":422837,"images":[]},"id":353},{"title":"Blade Runner: Black Out 2022","originalTitle":"\u30d6\u30ec\u30fc\u30c9\u30e9\u30f3\u30ca\u30fc \u30d6\u30e9\u30c3\u30af\u30a2\u30a6\u30c8 2022","alternateTitles":[{"sourceType":"tmdb","movieId":354,"title":"Blade Runner 2022: Black Out","sourceId":475946,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":593},{"sourceType":"tmdb","movieId":354,"title":"2022: Black out","sourceId":475946,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":594}],"secondaryYearSourceId":0,"sortTitle":"blade runner black out 2022","sizeOnDisk":1172741707,"status":"released","overview":"This animated short revolves around the events causing an electrical systems failure on the west coast of the US. According to Blade Runner 2049\u2019s official timeline, this failure leads to cities shutting down, financial and trade markets being thrown into chaos, and food supplies dwindling. There\u2019s no proof as to what caused the blackouts, but Replicants \u2014 the bio-engineered robots featured in the original Blade Runner, are blamed.","physicalRelease":"2017-11-16T00:00:00Z","digitalRelease":"2017-09-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/354\/poster.jpg?lastWrite=637609339624373356","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zzRjnUOVXyjp2WudgT7KxJLYh9D.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/354\/fanart.jpg?lastWrite=637609339626013330","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3C05fY5KvxfmPLp1exBSX8c0Q0K.jpg"}],"website":"http:\/\/www.bladerunner2049.jp\/","year":2017,"hasFile":true,"youTubeTrailerId":"OD0RCfcaols","studio":"Alcon Entertainment","path":"\/movies\/Black Out 2022 (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Black Out 2022 (2017)","runtime":15,"cleanTitle":"bladerunnerblackout2022","imdbId":"tt7428594","tmdbId":475946,"titleSlug":"475946","certification":"PG-13","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-12-28T19:26:41Z","ratings":{"votes":247,"value":7.3},"movieFile":{"movieId":354,"relativePath":"Blade Runner Black Out 2022.2017-Bluray-1080p.mkv","path":"\/movies\/Black Out 2022 (2017)\/Blade Runner Black Out 2022.2017-Bluray-1080p.mkv","size":1172741707,"dateAdded":"2019-09-28T04:48:22Z","sceneName":"Blade.Runner.Black.Out.2022.2017.1080p.BluRay.x264-FLAME[N1C]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":192000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10160000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"15:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"blade","edition":"","id":615},"id":354},{"title":"A Clockwork Orange","originalTitle":"A Clockwork Orange","alternateTitles":[{"sourceType":"tmdb","movieId":355,"title":"\u05ea\u05e4\u05d5\u05d6 \u05de\u05db\u05e0\u05d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3741}],"secondaryYearSourceId":0,"sortTitle":"clockwork orange","sizeOnDisk":14080210211,"status":"released","overview":"In a near-future Britain, young Alexander DeLarge and his pals get their kicks beating and raping anyone they please. When not destroying the lives of others, Alex swoons to the music of Beethoven. The state, eager to crack down on juvenile crime, gives an incarcerated Alex the option to undergo an invasive procedure that'll rob him of all personal agency. In a time when conscience is a commodity, can Alex change his tune?","inCinemas":"1971-12-19T00:00:00Z","physicalRelease":"2008-01-23T00:00:00Z","digitalRelease":"2002-08-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/355\/poster.jpg?lastWrite=637608474748763195","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4sHeTAp65WrSSuc05nRBKddhBxO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/355\/fanart.jpg?lastWrite=637636154819090560","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/keblhZFIZYiWflmURWNHEuS2jqL.jpg"}],"website":"","year":1971,"hasFile":true,"youTubeTrailerId":"T54uZPI4Z8A","studio":"Warner Bros. Pictures","path":"\/movies\/A Clockwork Orange (1971)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/A Clockwork Orange (1971)","runtime":137,"cleanTitle":"aclockworkorange","imdbId":"tt0066921","tmdbId":185,"titleSlug":"185","certification":"R","genres":["Science Fiction","Drama"],"tags":[],"added":"2018-12-29T16:15:03Z","ratings":{"votes":9859,"value":8.2},"movieFile":{"movieId":355,"relativePath":"A Clockwork Orange.1971-Bluray-1080p.mkv","path":"\/movies\/A Clockwork Orange (1971)\/A Clockwork Orange.1971-Bluray-1080p.mkv","size":14080210211,"dateAdded":"2018-12-30T04:22:33Z","sceneName":"A.Clockwork.Orange.1971.PROPER.1080p.BluRay.x264-SADPANDA[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12231000,"videoCodec":"x264","videoFps":23.976,"resolution":"1792x1080","runTime":"2:16:37","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SADPANDA","edition":"","id":434},"id":355},{"title":"Bird Box","originalTitle":"Bird Box","alternateTitles":[{"sourceType":"tmdb","movieId":356,"title":"V pasti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4331}],"secondaryYearSourceId":0,"sortTitle":"bird box","sizeOnDisk":4855626547,"status":"released","overview":"Five years after an ominous unseen presence drives most of society to suicide, a survivor and her two children make a desperate bid to reach safety.","inCinemas":"2018-12-13T00:00:00Z","digitalRelease":"2018-12-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/356\/poster.jpg?lastWrite=637641344062159709","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rGfGfgL2pEPCfhIvqHXieXFn7gp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/356\/fanart.jpg?lastWrite=637623181445852223","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zzaFYbbn2jRhE1eAoqsS2LWR3EA.jpg"}],"website":"https:\/\/www.netflix.com\/title\/80196789","year":2018,"hasFile":true,"youTubeTrailerId":"INJ2bPFy108","studio":"Bluegrass Films","path":"\/movies\/Bird Box (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Bird Box (2018)","runtime":124,"cleanTitle":"birdbox","imdbId":"tt2737304","tmdbId":405774,"titleSlug":"405774","certification":"R","genres":["Thriller","Drama","Science Fiction"],"tags":[],"added":"2018-12-30T16:06:46Z","ratings":{"votes":7801,"value":6.9},"movieFile":{"movieId":356,"relativePath":"Bird Box.2018-WEBDL-1080p.mkv","path":"\/movies\/Bird Box (2018)\/Bird Box.2018-WEBDL-1080p.mkv","size":4855626547,"dateAdded":"2018-12-30T16:27:09Z","sceneName":"Bird.Box.2018.1080p.NF.WEBRip.DDP5.1.Atmos.x264-SiGLA","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"JOC","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4870000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"2:03:50","scanType":"Progressive","subtitles":"English \/ Portuguese \/ Spanish \/ Swedish \/ French"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SiGLA","edition":"","id":436},"collection":{"name":"Bird Box Collection","tmdbId":731067,"images":[]},"id":356},{"title":"Bumblebee","originalTitle":"Bumblebee","alternateTitles":[{"sourceType":"tmdb","movieId":359,"title":"Transformers 6","sourceId":424783,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":596},{"sourceType":"tmdb","movieId":359,"title":"Brighton Falls","sourceId":424783,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":730},{"sourceType":"tmdb","movieId":359,"title":"Bumblebee 1","sourceId":424783,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1070},{"sourceType":"tmdb","movieId":359,"title":"Transformers 6 - Bumblebee","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5519}],"secondaryYearSourceId":0,"sortTitle":"bumblebee","sizeOnDisk":34863135898,"status":"released","overview":"On the run in the year 1987, Bumblebee finds refuge in a junkyard in a small Californian beach town. Charlie, on the cusp of turning 18 and trying to find her place in the world, discovers Bumblebee, battle-scarred and broken. When Charlie revives him, she quickly learns this is no ordinary yellow VW bug.","inCinemas":"2018-12-19T00:00:00Z","physicalRelease":"2019-04-02T00:00:00Z","digitalRelease":"2019-03-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/359\/poster.jpg?lastWrite=637653455504530425","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fw02ONlDhrYjTSZV8XO6hhU3ds3.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/359\/fanart.jpg?lastWrite=637638749533057729","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hMANgfPHR1tRObNp2oPiOi9mMlz.jpg"}],"website":"http:\/\/bumblebeemovie.com","year":2018,"hasFile":true,"youTubeTrailerId":"lcwmDAYt22k","studio":"Hasbro","path":"\/movies\/Bumblebee (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"released","isAvailable":true,"folderName":"\/movies\/Bumblebee (2018)","runtime":114,"cleanTitle":"bumblebee","imdbId":"tt4701182","tmdbId":424783,"titleSlug":"424783","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T20:34:04Z","ratings":{"votes":4565,"value":6.7},"movieFile":{"movieId":359,"relativePath":"Bumblebee.2018-Remux-1080p.mkv","path":"\/movies\/Bumblebee (2018)\/Bumblebee.2018-Remux-1080p.mkv","size":34863135898,"dateAdded":"2019-03-26T16:35:28Z","sceneName":"Bumblebee.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4736374,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ Italian \/ Portuguese","audioStreamCount":10,"videoBitDepth":8,"videoBitrate":26838489,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:53:53","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Danish \/ Spanish \/ Spanish \/ Spanish \/ Spanish \/ French \/ French \/ French \/ French \/ Italian \/ Italian \/ Dutch \/ Norwegian \/ Portuguese \/ Portuguese \/ Finnish \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":533},"id":359},{"title":"Hellboy","originalTitle":"Hellboy","alternateTitles":[{"sourceType":"tmdb","movieId":360,"title":"Hellboy: Rise of the Blood Queen","sourceId":456740,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":597},{"sourceType":"tmdb","movieId":360,"title":"Untitled Hellboy Reboot","sourceId":456740,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1001},{"sourceType":"tmdb","movieId":360,"title":"\u5730\u72f1\u7537\u7235\uff1a\u8840\u7687\u540e\u5d1b\u8d77","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4543},{"sourceType":"tmdb","movieId":360,"title":"Hellboy: Kr\u00e1lovna krve","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4544},{"sourceType":"tmdb","movieId":360,"title":"Hellboy - Call of Darkness","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4545}],"secondaryYearSourceId":0,"sortTitle":"hellboy","sizeOnDisk":2088443019,"status":"released","overview":"Hellboy comes to England, where he must defeat Nimue, Merlin's consort and the Blood Queen. But their battle will bring about the end of the world, a fate he desperately tries to turn away.","inCinemas":"2019-04-10T00:00:00Z","physicalRelease":"2019-07-23T00:00:00Z","digitalRelease":"2019-07-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/360\/poster.jpg?lastWrite=637241117803311854","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bk8LyaMqUtaQ9hUShuvFznQYQKR.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/360\/fanart.jpg?lastWrite=637657781692376313","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hMbP23EkGk6tjEjRZQXhnVAl5fW.jpg"}],"website":"https:\/\/hellboy.movie","year":2019,"hasFile":true,"youTubeTrailerId":"ZsBO4b3tyZg","studio":"Campbell Grobman Films","path":"\/movies\/Hellboy (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"released","isAvailable":true,"folderName":"\/movies\/Hellboy (2019)","runtime":120,"cleanTitle":"hellboy","imdbId":"tt2274648","tmdbId":456740,"titleSlug":"456740","certification":"R","genres":["Fantasy","Action","Adventure"],"tags":[],"added":"2018-12-30T20:34:04Z","ratings":{"votes":2510,"value":5.5},"movieFile":{"movieId":360,"relativePath":"Hellboy.2019-Bluray-1080p.mp4","path":"\/movies\/Hellboy (2019)\/Hellboy.2019-Bluray-1080p.mp4","size":2088443019,"dateAdded":"2019-07-13T14:37:25Z","sceneName":"Hellboy (2019) [BDRIP][1080P][NAPISY PL]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":147064,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x784","runTime":"2:01:00","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":559},"id":360},{"title":"Men in Black: International","originalTitle":"Men in Black: International","alternateTitles":[{"sourceType":"tmdb","movieId":361,"title":"Men in Black IV","sourceId":479455,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1082},{"sourceType":"tmdb","movieId":361,"title":"Men in Black 4","sourceId":479455,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1083},{"sourceType":"tmdb","movieId":361,"title":"Hombres de negro: MIB Internacional","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4402},{"sourceType":"tmdb","movieId":361,"title":"Homens de Preto 4 - Internacional","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4403},{"sourceType":"tmdb","movieId":361,"title":"Men In Black 4 - International","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4404},{"sourceType":"tmdb","movieId":361,"title":"\u9ed1\u8863\u4eba4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4405},{"sourceType":"tmdb","movieId":361,"title":"\u9ed1\u8863\u4eba\u5916\u4f20","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4406},{"sourceType":"tmdb","movieId":361,"title":"\ub9e8 \uc778 \ube14\ub799 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4407},{"sourceType":"tmdb","movieId":361,"title":"\u9ed1\u8863\u4eba4:\u5168\u7403\u8ffd\u7f09","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4493}],"secondaryYearSourceId":0,"sortTitle":"men in black international","sizeOnDisk":9389026109,"status":"released","overview":"The Men in Black have always protected the Earth from the scum of the universe. In this new adventure, they tackle their biggest, most global threat to date: a mole in the Men in Black organization.","inCinemas":"2019-06-12T00:00:00Z","physicalRelease":"2019-09-03T00:00:00Z","digitalRelease":"2019-08-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/361\/poster.jpg?lastWrite=637646534651907482","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dPrUPFcgLfNbmDL8V69vcrTyEfb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/361\/fanart.jpg?lastWrite=637630100394861741","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2FYzxgLNuNVwncilzUeCGbOQzP7.jpg"}],"website":"https:\/\/www.meninblack.com","year":2019,"hasFile":true,"youTubeTrailerId":"F3lJwV7ZIIk","studio":"Amblin Entertainment","path":"\/movies\/Men in Black International (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"released","isAvailable":true,"folderName":"\/movies\/Men in Black International (2019)","runtime":115,"cleanTitle":"meninblackinternational","imdbId":"tt2283336","tmdbId":479455,"titleSlug":"479455","certification":"PG-13","genres":["Comedy","Science Fiction"],"tags":[],"added":"2018-12-30T20:34:04Z","ratings":{"votes":3544,"value":6},"movieFile":{"movieId":361,"relativePath":"Men in Black International.2019-Bluray-1080p.mkv","path":"\/movies\/Men in Black International (2019)\/Men in Black International.2019-Bluray-1080p.mkv","size":9389026109,"dateAdded":"2019-08-23T04:58:24Z","sceneName":"Men.in.Black.International.2019.1080p.BluRay.x264-GECKOS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9393000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x960","runTime":"1:54:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"GECKOS","edition":"","id":592},"collection":{"name":"Men In Black Collection","tmdbId":86055,"images":[]},"id":361},{"title":"The House with a Clock in Its Walls","originalTitle":"The House with a Clock in Its Walls","alternateTitles":[{"sourceType":"tmdb","movieId":362,"title":"Das Haus der geheimnisvollen Uhren","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4521},{"sourceType":"tmdb","movieId":362,"title":"\u5899\u4e0a\u6709\u4e00\u4e2a\u949f\u7684\u623f\u5b50","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4522},{"sourceType":"tmdb","movieId":362,"title":"\u5899\u91cc\u6709\u949f\u7684\u623f\u5b50","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4523},{"sourceType":"tmdb","movieId":362,"title":"La proph\u00e9tie de l\u2019horloge","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4524},{"sourceType":"tmdb","movieId":362,"title":"Tayna doma s chasami","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4525},{"sourceType":"tmdb","movieId":362,"title":"\ubcbd \uc18d\uc5d0 \uc228\uc740 \ub9c8\ubc95\uc2dc\uacc4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5623}],"secondaryYearSourceId":0,"sortTitle":"house with clock in its walls","sizeOnDisk":32430134785,"status":"released","overview":"When ten-year-old Lewis is suddenly orphaned, he is sent to live with his Uncle Jonathan in a creaky (and creepy) old mansion with a mysterious ticking noise that emanates from the walls. Upon discovering that his uncle is a warlock, Lewis begins learning magic, but when he rebelliously resurrects an evil warlock he must find the secret of the house and save the world from destruction.","inCinemas":"2018-09-20T00:00:00Z","physicalRelease":"2018-12-18T00:00:00Z","digitalRelease":"2018-11-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/362\/poster.jpg?lastWrite=637633559338568163","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qM66Hv4ByAxnilr0jaqCA9uOD4Y.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/362\/fanart.jpg?lastWrite=637653455898844239","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/LC9g7oNJc3jZNXUU8CkwSzVK2w.jpg"}],"website":"http:\/\/housewithaclock.com","year":2018,"hasFile":true,"youTubeTrailerId":"uIlx5-aGq_A","studio":"Amblin Entertainment","path":"\/movies\/The House with a Clock in Its Walls (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"released","isAvailable":true,"folderName":"\/movies\/The House with a Clock in Its Walls (2018)","runtime":105,"cleanTitle":"thehousewithclockinitswalls","imdbId":"tt2119543","tmdbId":463821,"titleSlug":"463821","certification":"PG","genres":["Fantasy","Family","Comedy"],"tags":[],"added":"2018-12-30T20:34:04Z","ratings":{"votes":1648,"value":6.3},"movieFile":{"movieId":362,"relativePath":"The House with a Clock in Its Walls.2018-Remux-1080p.mkv","path":"\/movies\/The House with a Clock in Its Walls (2018)\/The House with a Clock in Its Walls.2018-Remux-1080p.mkv","size":32430134785,"dateAdded":"2019-01-01T00:33:47Z","sceneName":"The.House.with.a.Clock.in.Its.Walls.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4273907,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ Spanish \/ Spanish \/ French \/ French \/ English \/ English","audioStreamCount":9,"videoBitDepth":8,"videoBitrate":24891741,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:45:03","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":462},"id":362},{"title":"Spider-Man: Far From Home","originalTitle":"Spider-Man: Far From Home","alternateTitles":[{"sourceType":"tmdb","movieId":363,"title":"Homem-Aranha 7 - Longe de Casa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2904},{"sourceType":"tmdb","movieId":363,"title":"Spider-Man Homecoming 2 - Far From Home","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2906},{"sourceType":"tmdb","movieId":363,"title":"\ub9c8\ube14 \uc2a4\ud30c\uc774\ub354\ub9e8 \ud30c \ud504\ub86c \ud648","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2909},{"sourceType":"tmdb","movieId":363,"title":"\uc2a4\ud30c\uc774\ub354\ub9e8-\ud30c \ud504\ub86c \ud648","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2910},{"sourceType":"tmdb","movieId":363,"title":"Spider-Man 2: Far from Home","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2913},{"sourceType":"tmdb","movieId":363,"title":"Ng\u01b0\u1eddi Nh\u1ec7n Xa Nh\u00e0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2914}],"secondaryYearSourceId":0,"sortTitle":"spider man far from home","sizeOnDisk":10565653075,"status":"released","overview":"Peter Parker and his friends go on a summer trip to Europe. However, they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.","inCinemas":"2019-06-28T00:00:00Z","physicalRelease":"2019-10-01T00:00:00Z","digitalRelease":"2019-09-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/363\/poster.jpg?lastWrite=637664702456782915","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4q2NNj4S5dG2RLF9CpXsej7yXl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/363\/fanart.jpg?lastWrite=637667297396507838","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/Dk8wzICaD5q7vBp1xeDOWd6e80.jpg"}],"website":"https:\/\/www.marvel.com\/movies\/spider-man-far-from-home","year":2019,"hasFile":true,"youTubeTrailerId":"LFoz8ZJWmPs","studio":"Marvel Studios","path":"\/movies\/Spider-Man Far from Home (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"released","isAvailable":true,"folderName":"\/movies\/Spider-Man Far from Home (2019)","runtime":129,"cleanTitle":"spidermanfarfromhome","imdbId":"tt6320628","tmdbId":429617,"titleSlug":"429617","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T20:34:04Z","ratings":{"votes":10509,"value":7.5},"movieFile":{"movieId":363,"relativePath":"Spider-Man Far from Home.2019-Bluray-1080p.mkv","path":"\/movies\/Spider-Man Far from Home (2019)\/Spider-Man Far from Home.2019-Bluray-1080p.mkv","size":10565653075,"dateAdded":"2019-09-18T13:31:34Z","sceneName":"Spider-Man.Far.from.Home.2019.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9376000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:09:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"sparks","edition":"","id":612},"collection":{"name":"Spider-Man (Avengers) Collection","tmdbId":531241,"images":[]},"id":363},{"title":"Transformers","originalTitle":"Transformers","alternateTitles":[{"sourceType":"tmdb","movieId":364,"title":"Transformers 1","sourceId":1858,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":598},{"sourceType":"tmdb","movieId":364,"title":"\u03a4\u03c1\u03b1\u03bd\u03c3\u03c6\u03cc\u03c1\u03bc\u03b5\u03c1\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1930},{"sourceType":"tmdb","movieId":364,"title":"\u0e17\u0e23\u0e32\u0e19\u0e2a\u0e4c\u0e1f\u0e2d\u0e23\u0e4c\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e2a 1 : \u0e21\u0e2b\u0e32\u0e27\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e08\u0e31\u0e01\u0e23\u0e01\u0e25\u0e2a\u0e31\u0e07\u0e2b\u0e32\u0e23\u0e16\u0e25\u0e48\u0e21\u0e08\u0e31\u0e01\u0e23\u0e27\u0e32\u0e25","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1932},{"sourceType":"tmdb","movieId":364,"title":"\u8b8a\u5f62\u91d1\u525b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5937}],"secondaryYearSourceId":0,"sortTitle":"transformers","sizeOnDisk":2936906072,"status":"released","overview":"Young teenager, Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots \u2013 the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.","inCinemas":"2007-06-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/364\/poster.jpg?lastWrite=637655186914506830","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6eehp9I54syN3x753XMqjKz8M3F.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/364\/fanart.jpg?lastWrite=637655186915986808","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/77P56ZcL8M9Cw7FIptMIGjhNJoj.jpg"}],"website":"http:\/\/www.transformersmovie.com\/","year":2007,"hasFile":true,"youTubeTrailerId":"LdsdcPJ9mcA","studio":"DreamWorks Pictures","path":"\/movies\/Transformers (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Transformers (2007)","runtime":144,"cleanTitle":"transformers","imdbId":"tt0418279","tmdbId":1858,"titleSlug":"1858","certification":"PG-13","genres":["Adventure","Science Fiction","Action"],"tags":[],"added":"2018-12-30T20:34:17Z","ratings":{"votes":8682,"value":6.7},"movieFile":{"movieId":364,"relativePath":"Transformers.2007-Bluray-1080p.mp4","path":"\/movies\/Transformers (2007)\/Transformers.2007-Bluray-1080p.mp4","size":2936906072,"dateAdded":"2018-12-30T22:36:20Z","sceneName":"Transformers.2007.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223999,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:23:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":444},"collection":{"name":"Transformers Collection","tmdbId":8650,"images":[]},"id":364},{"title":"Fantastic Four: Rise of the Silver Surfer","originalTitle":"Fantastic Four: Rise of the Silver Surfer","alternateTitles":[{"sourceType":"tmdb","movieId":365,"title":"Fantastic Four: The Next Chapter","sourceId":1979,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":599},{"sourceType":"tmdb","movieId":365,"title":"Fantastic Four 2","sourceId":1979,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":600},{"sourceType":"tmdb","movieId":365,"title":"Fantastic Four and the Silver Surfer","sourceId":1979,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":601},{"sourceType":"tmdb","movieId":365,"title":"Fantastic 4: Rise of the Silver Surfer","sourceId":1979,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":602},{"sourceType":"tmdb","movieId":365,"title":"Fantastic Four 2: Rise of the Silver Surfer","sourceId":1979,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":603},{"sourceType":"tmdb","movieId":365,"title":"4: Rise of the Silver Surfer","sourceId":1979,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":604},{"sourceType":"tmdb","movieId":365,"title":"Los cuatro fant\u00e1sticos y el deslizador de plata","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2977},{"sourceType":"tmdb","movieId":365,"title":"Los cuatro fant\u00e1sticos y Silver Surfer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2979},{"sourceType":"tmdb","movieId":365,"title":"Les 4 Fantastiques et le Surfeur d'Argent","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2980},{"sourceType":"tmdb","movieId":365,"title":"Los 4 Fant\u00e1sticos 2 y Silver Surfer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2982},{"sourceType":"tmdb","movieId":365,"title":"\u0424\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u0447\u043d\u0430 \u0427\u0435\u0442\u0432\u0456\u0440\u043a\u0430 2: \u0412\u0442\u043e\u0440\u0433\u043d\u0435\u043d\u043d\u044f \u0421\u0440\u0456\u0431\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0444\u0435\u0440\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2984}],"secondaryYearSourceId":0,"sortTitle":"fantastic four rise silver surfer","sizeOnDisk":1880086458,"status":"released","overview":"The Fantastic Four return to the big screen as a new and all powerful enemy threatens the Earth. The seemingly unstoppable 'Silver Surfer', but all is not what it seems and there are old and new enemies that pose a greater threat than the intrepid superheroes realize.","inCinemas":"2007-06-13T00:00:00Z","physicalRelease":"2007-10-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/365\/poster.jpg?lastWrite=637661241940252789","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9wRfzTcMyyzkQxVDqBHv8RwuZOv.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/365\/fanart.jpg?lastWrite=637612802375988158","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4hPJT531skippmci5BfGrJYGfRv.jpg"}],"website":"","year":2007,"hasFile":true,"youTubeTrailerId":"Wiu5eZ_7vSY","studio":"1492 Pictures","path":"\/movies\/Fantastic Four Rise of the Silver Surfer (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Fantastic Four Rise of the Silver Surfer (2007)","runtime":92,"cleanTitle":"fantasticfourrisesilversurfer","imdbId":"tt0486576","tmdbId":1979,"titleSlug":"1979","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2018-12-30T20:34:37Z","ratings":{"votes":6395,"value":5.6},"movieFile":{"movieId":365,"relativePath":"Fantastic Four Rise of the Silver Surfer.2007-Bluray-1080p.mp4","path":"\/movies\/Fantastic Four Rise of the Silver Surfer (2007)\/Fantastic Four Rise of the Silver Surfer.2007-Bluray-1080p.mp4","size":1880086458,"dateAdded":"2018-12-30T20:53:53Z","sceneName":"Fantastic.Four.Rise.of.the.Silver.Surfer.2007.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:31:50","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":438},"collection":{"name":"Fantastic Four Collection","tmdbId":9744,"images":[]},"id":365},{"title":"Aliens","originalTitle":"Aliens","alternateTitles":[{"sourceType":"tmdb","movieId":368,"title":"Alien 2","sourceId":679,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":610},{"sourceType":"tmdb","movieId":368,"title":"Alien 2: Aliens","sourceId":679,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":611},{"sourceType":"tmdb","movieId":368,"title":"Alien II","sourceId":679,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":612},{"sourceType":"tmdb","movieId":368,"title":"Aliens: Director's Cut","sourceId":679,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":613},{"sourceType":"tmdb","movieId":368,"title":"Aliens: Special Edition","sourceId":679,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":614},{"sourceType":"tmdb","movieId":368,"title":"Aliens: El regreso","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3336},{"sourceType":"tmdb","movieId":368,"title":"Alien 2 Aliens le retour","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3342},{"sourceType":"tmdb","movieId":368,"title":"Alien 2 Le retour","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3343},{"sourceType":"tmdb","movieId":368,"title":"Aliens : Le retour","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3344},{"sourceType":"tmdb","movieId":368,"title":"Aliens - Scontro Finale - Edizione Speciale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3345},{"sourceType":"tmdb","movieId":368,"title":"\uc5d0\uc77c\ub9ac\uc5b8 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3346},{"sourceType":"tmdb","movieId":368,"title":"Alien 2 el regreso","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3347},{"sourceType":"tmdb","movieId":368,"title":"Obcy 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3348},{"sourceType":"tmdb","movieId":368,"title":"\u7570\u5f622","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3350},{"sourceType":"tmdb","movieId":368,"title":"Alien 2 - Aliens - O Resgate","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5584},{"sourceType":"tmdb","movieId":368,"title":"Aliens: O Reencontro Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6025},{"sourceType":"tmdb","movieId":368,"title":"\u0427\u0443\u0436\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6288}],"secondaryYearSourceId":0,"sortTitle":"aliens","sizeOnDisk":3162982488,"status":"released","overview":"When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story\u2014all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.","inCinemas":"1986-07-18T00:00:00Z","physicalRelease":"1992-01-01T00:00:00Z","digitalRelease":"2002-04-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/368\/poster.jpg?lastWrite=637575612076970649","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/r1x5JGpyqZU8PYhbs4UcrO1Xb6x.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/368\/fanart.jpg?lastWrite=637665566887070680","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jMBpJFRtrtIXymer93XLavPwI3P.jpg"}],"website":"https:\/\/www.20thcenturystudios.com\/movies\/aliens","year":1986,"hasFile":true,"youTubeTrailerId":"8OxirbuHsBA","studio":"Brandywine Productions","path":"\/movies\/Aliens (1986)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Aliens (1986)","runtime":137,"cleanTitle":"aliens","imdbId":"tt0090605","tmdbId":679,"titleSlug":"679","certification":"R","genres":["Action","Thriller","Science Fiction"],"tags":[],"added":"2018-12-30T21:02:35Z","ratings":{"votes":7144,"value":7.9},"movieFile":{"movieId":368,"relativePath":"Aliens.1986-Bluray-1080p.mp4","path":"\/movies\/Aliens (1986)\/Aliens.1986-Bluray-1080p.mp4","size":3162982488,"dateAdded":"2018-12-30T22:05:27Z","sceneName":"Aliens.1986.SE.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:34:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":441},"collection":{"name":"Alien Collection","tmdbId":8091,"images":[]},"id":368},{"title":"Alien\u00b3","originalTitle":"Alien\u00b3","alternateTitles":[{"sourceType":"tmdb","movieId":369,"title":"Alien\u00b3: Special 'Assembly Cut' Edition","sourceId":8077,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":615},{"sourceType":"tmdb","movieId":369,"title":"Alien 3: Special Edition","sourceId":8077,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":616},{"sourceType":"tmdb","movieId":369,"title":"Alien 3","sourceId":8077,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1069},{"sourceType":"tmdb","movieId":369,"title":"Alien 3 Special Assembly Cut Edition","sourceId":8077,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1248},{"sourceType":"tmdb","movieId":369,"title":"\u090f\u0932\u093f\u092f\u0928 \u0969","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2040},{"sourceType":"tmdb","movieId":369,"title":"\uc5d0\uc77c\ub9ac\uc5b8 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2041},{"sourceType":"tmdb","movieId":369,"title":"\u0427\u0443\u0436\u043e\u0439 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2042},{"sourceType":"tmdb","movieId":369,"title":"\u0427\u0443\u0436\u0438\u0439 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2043},{"sourceType":"tmdb","movieId":369,"title":"Alien 3 - ES ist wieder da","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6028},{"sourceType":"tmdb","movieId":369,"title":"Alien Cubed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6269}],"secondaryYearSourceId":0,"sortTitle":"alien","sizeOnDisk":11735477536,"status":"released","overview":"After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.","inCinemas":"1992-05-22T00:00:00Z","physicalRelease":"2001-11-28T00:00:00Z","digitalRelease":"2005-11-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/369\/poster.jpg?lastWrite=637610204644417456","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hlabk6APJUeihZDaSD9N6iI0f4g.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/369\/fanart.jpg?lastWrite=637648264202332071","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3aIBsxp6ozH3uDwb2IJCJxTS7LF.jpg"}],"website":"https:\/\/www.20thcenturystudios.com\/movies\/alien-3","year":1992,"hasFile":true,"youTubeTrailerId":"e45rAwndek8","studio":"Brandywine Productions","path":"\/movies\/Alien\u00b3 (1992)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Alien\u00b3 (1992)","runtime":114,"cleanTitle":"alien","imdbId":"tt0103644","tmdbId":8077,"titleSlug":"8077","certification":"R","genres":["Science Fiction","Action","Horror"],"tags":[],"added":"2018-12-30T21:06:25Z","ratings":{"votes":4063,"value":6.3},"movieFile":{"movieId":369,"relativePath":"Alien\u00b3.1992-Bluray-1080p.mkv","path":"\/movies\/Alien\u00b3 (1992)\/Alien\u00b3.1992-Bluray-1080p.mkv","size":11735477536,"dateAdded":"2019-01-19T13:37:02Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9291000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:24:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":480},"collection":{"name":"Alien Collection","tmdbId":8091,"images":[]},"id":369},{"title":"Alien Resurrection","originalTitle":"Alien Resurrection","alternateTitles":[{"sourceType":"tmdb","movieId":370,"title":"Alien 4","sourceId":8078,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":617},{"sourceType":"tmdb","movieId":370,"title":"Alien Resurrection: Special Edition","sourceId":8078,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":618},{"sourceType":"tmdb","movieId":370,"title":"Alien 4 - A Ressurrei\u00e7\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4357},{"sourceType":"tmdb","movieId":370,"title":"\u5f02\u5f62\uff1a\u590d\u6d3b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4358},{"sourceType":"tmdb","movieId":370,"title":"Alien 4 Die Wiedergeburt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4359},{"sourceType":"tmdb","movieId":370,"title":"Alien 4: Resurrecci\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4363},{"sourceType":"tmdb","movieId":370,"title":"Alien IV","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4364},{"sourceType":"tmdb","movieId":370,"title":"Alien resurrecci\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4365},{"sourceType":"tmdb","movieId":370,"title":"Alien: La resurrecci\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4366},{"sourceType":"tmdb","movieId":370,"title":"Alien 4 La r\u00e9surrection","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4367},{"sourceType":"tmdb","movieId":370,"title":"Alien 4: Resurrection","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4368},{"sourceType":"tmdb","movieId":370,"title":"\uc5d0\uc77c\ub9ac\uc5b8 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4369},{"sourceType":"tmdb","movieId":370,"title":"Obcy 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4370},{"sourceType":"tmdb","movieId":370,"title":"\u0427\u0443\u0436\u043e\u0439 4: \u0412\u043e\u0441\u043a\u0440\u0435\u0448\u0435\u043d\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4371},{"sourceType":"tmdb","movieId":370,"title":"Votrelec 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4372},{"sourceType":"tmdb","movieId":370,"title":"\u7570\u5f624\uff1a\u6d74\u706b\u91cd\u751f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4373},{"sourceType":"tmdb","movieId":370,"title":"\u0427\u0443\u0436\u0438\u0439 4. \u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0456\u043d\u043d\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4374}],"secondaryYearSourceId":0,"sortTitle":"alien resurrection","sizeOnDisk":8524320541,"status":"released","overview":"Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises \u2026 as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.","inCinemas":"1997-11-12T00:00:00Z","physicalRelease":"1999-06-01T00:00:00Z","digitalRelease":"2003-07-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/370\/poster.jpg?lastWrite=637566963056053466","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kzslFL1n01WI5lEcYzFSUi3Quik.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/370\/fanart.jpg?lastWrite=637657781193824910","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f8XUY6srsxTabJ8h353izrqaKfs.jpg"}],"website":"https:\/\/www.20thcenturystudios.com\/movies\/alien-resurrection","year":1997,"hasFile":true,"youTubeTrailerId":"vu1tVYGsJ1Q","studio":"Brandywine Productions","path":"\/movies\/Alien Resurrection (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Alien Resurrection (1997)","runtime":109,"cleanTitle":"alienresurrection","imdbId":"tt0118583","tmdbId":8078,"titleSlug":"8078","certification":"R","genres":["Science Fiction","Horror","Action"],"tags":[],"added":"2018-12-30T21:29:50Z","ratings":{"votes":3484,"value":6.1},"movieFile":{"movieId":370,"relativePath":"Alien Resurrection.1997-Bluray-1080p.mkv","path":"\/movies\/Alien Resurrection (1997)\/Alien Resurrection.1997-Bluray-1080p.mkv","size":8524320541,"dateAdded":"2018-12-30T22:17:26Z","sceneName":"Alien.Resurrection.1997.SE.1080p.BluRay.x264-Japhson","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8280000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"1:56:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"Japhson","edition":"","id":442},"collection":{"name":"Alien Collection","tmdbId":8091,"images":[]},"id":370},{"title":"Transformers: Revenge of the Fallen","originalTitle":"Transformers: Revenge of the Fallen","alternateTitles":[{"sourceType":"tmdb","movieId":371,"title":"Transformers 2","sourceId":8373,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":619},{"sourceType":"tmdb","movieId":371,"title":"Transformers 2 - Revenge of the Fallen","sourceId":8373,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":620},{"sourceType":"tmdb","movieId":371,"title":"Transformers II: Revenge of the Fallen","sourceId":8373,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":911},{"sourceType":"tmdb","movieId":371,"title":"Transformes 2 - A Vingan\u00e7a dos Derrotados","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1961},{"sourceType":"tmdb","movieId":371,"title":"Transformers 2 - La venganza de los caidos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1966},{"sourceType":"tmdb","movieId":371,"title":"Transformers 2: A bukottak bossz\u00faja","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1967},{"sourceType":"tmdb","movieId":371,"title":"transformery: mest' padshikh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1968},{"sourceType":"tmdb","movieId":371,"title":"Transformerji 2: Mascevanje padlih","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1969},{"sourceType":"tmdb","movieId":371,"title":"\u0422\u0440\u0430\u043d\u0441\u0444\u043e\u0440\u043c\u0435\u0440\u0438: \u041f\u043e\u043c\u0441\u0442\u0430 \u043f\u043e\u043b\u0435\u0433\u043b\u0438\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1971},{"sourceType":"tmdb","movieId":371,"title":"Transformers 2: Yiqilganlar qasosi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1972},{"sourceType":"tmdb","movieId":371,"title":"\u8b8a\u5f62\u91d1\u525b2\uff1a\u72c2\u6d3e\u518d\u8d77","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5938},{"sourceType":"tmdb","movieId":371,"title":"\u53d8\u5f62\u91d1\u521a2\uff1a\u5377\u571f\u91cd\u6765","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6016}],"secondaryYearSourceId":0,"sortTitle":"transformers revenge fallen","sizeOnDisk":3080222582,"status":"released","overview":"Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.","inCinemas":"2009-06-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/371\/poster.jpg?lastWrite=637421830212678679","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pLBb0whOzVDtJvyD4DPeQyQNOqp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/371\/fanart.jpg?lastWrite=637655187000025572","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/z0Q4R2h9Z94PXUpjPXL7HpjvvMF.jpg"}],"website":"","year":2009,"hasFile":true,"youTubeTrailerId":"fnXzKwUgDhg","studio":"DreamWorks Pictures","path":"\/movies\/Transformers Revenge of the Fallen (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Transformers Revenge of the Fallen (2009)","runtime":149,"cleanTitle":"transformersrevengefallen","imdbId":"tt1055369","tmdbId":8373,"titleSlug":"8373","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-12-30T21:37:38Z","ratings":{"votes":6596,"value":6.1},"movieFile":{"movieId":371,"relativePath":"Transformers Revenge of the Fallen.2009-Bluray-1080p.mp4","path":"\/movies\/Transformers Revenge of the Fallen (2009)\/Transformers Revenge of the Fallen.2009-Bluray-1080p.mp4","size":3080222582,"dateAdded":"2018-12-30T23:34:57Z","sceneName":"Transformers.Revenge.Of.The.Fallen.2009.IMAX.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:30:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"IMAX","id":447},"collection":{"name":"Transformers Collection","tmdbId":8650,"images":[]},"id":371},{"title":"Avengers: Endgame","originalTitle":"Avengers: Endgame","alternateTitles":[{"sourceType":"tmdb","movieId":372,"title":"AVENGERS ENDGAME 3D","sourceId":299534,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":871},{"sourceType":"tmdb","movieId":372,"title":"Avengers: Infinity War Part 2","sourceId":299534,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":890},{"sourceType":"tmdb","movieId":372,"title":"Marvel Studios' Avengers: Endgame","sourceId":299534,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":960},{"sourceType":"tmdb","movieId":372,"title":"\ub9c8\ube14 \uc5b4\ubca4\uc838\uc2a4, \uc5d4\ub4dc\uac8c\uc784","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1404},{"sourceType":"tmdb","movieId":372,"title":"Avengers 4 - Endgame","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3228},{"sourceType":"tmdb","movieId":372,"title":"The Avengers 4: Endgame","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3603},{"sourceType":"tmdb","movieId":372,"title":"Vingadores Ultimato","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5367},{"sourceType":"tmdb","movieId":372,"title":"Vengadores 4 EndGame","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5477},{"sourceType":"tmdb","movieId":372,"title":"Marvel\u2019s The Avengers 4 - Endgame","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5548},{"sourceType":"tmdb","movieId":372,"title":"\u590d\u4ec7\u8005\u8054\u76df4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5625},{"sourceType":"tmdb","movieId":372,"title":"\u590d\u80544","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5645},{"sourceType":"tmdb","movieId":372,"title":"The Avengers \uff1aEndgame","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5977},{"sourceType":"tmdb","movieId":372,"title":"Os Vingadores 4 - Ultimato","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6021},{"sourceType":"tmdb","movieId":372,"title":"Avengers 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6041}],"secondaryYearSourceId":0,"sortTitle":"avengers endgame","sizeOnDisk":1135557086,"status":"released","overview":"After the devastating events of Avengers: Infinity War, the universe is in ruins due to the efforts of the Mad Titan, Thanos. With the help of remaining allies, the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all, no matter what consequences may be in store.","inCinemas":"2019-04-24T00:00:00Z","physicalRelease":"2019-08-13T00:00:00Z","digitalRelease":"2019-07-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/372\/poster.jpg?lastWrite=637657781264063696","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/or06FN3Dka5tukK1e9sl16pB3iy.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/372\/fanart.jpg?lastWrite=637650859729566371","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg"}],"website":"https:\/\/www.marvel.com\/movies\/avengers-endgame","year":2019,"hasFile":true,"youTubeTrailerId":"AMSITikqKiM","studio":"Marvel Studios","path":"\/movies\/Avengers Endgame (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Avengers Endgame (2019)","runtime":181,"cleanTitle":"avengersendgame","imdbId":"tt4154796","tmdbId":299534,"titleSlug":"299534","certification":"PG-13","genres":["Adventure","Science Fiction","Action"],"tags":[],"added":"2018-12-30T21:39:03Z","ratings":{"votes":18919,"value":8.3},"movieFile":{"movieId":372,"relativePath":"Avengers Endgame.2019-Bluray-1080p.avi","path":"\/movies\/Avengers Endgame (2019)\/Avengers Endgame.2019-Bluray-1080p.avi","size":1135557086,"dateAdded":"2019-04-29T18:46:27Z","sceneName":"Avengers Endgame (2019) [BluRay] [1080p] English","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":0,"audioCodec":"","audioLanguages":"","audioStreamCount":0,"videoBitDepth":8,"videoBitrate":27698,"videoCodec":"h264","videoFps":30.0,"resolution":"670x340","runTime":"1:41:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":543},"collection":{"name":"The Avengers Collection","tmdbId":86311,"images":[]},"id":372},{"title":"Back in Time","originalTitle":"Back in Time","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"back in time","sizeOnDisk":7034346392,"status":"released","overview":"Cast, crew and fans explore the 'Back to the Future' time-travel trilogy's resonance throughout our culture\u201430 years after Marty McFly went back in time.","inCinemas":"2015-10-20T00:00:00Z","digitalRelease":"2017-07-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/373\/poster.jpg?lastWrite=637532369342674777","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/52k7Jw6WwYr3sqplA2XYIj4CCb3.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/373\/fanart.jpg?lastWrite=637624911041648119","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f1aR8yVL0icyLcMD8FflmI81E4M.jpg"}],"website":"https:\/\/www.backtothefuture.com\/bonus\/back-in-time-2015\/index","year":2015,"hasFile":true,"youTubeTrailerId":"sk4X3NuvvHc","studio":"Malka Media Group","path":"\/movies\/Back in Time (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Back in Time (2015)","runtime":95,"cleanTitle":"backintime","imdbId":"tt3118874","tmdbId":330127,"titleSlug":"330127","certification":"NR","genres":["Documentary"],"tags":[],"added":"2018-12-30T21:39:04Z","ratings":{"votes":242,"value":6.5},"movieFile":{"movieId":373,"relativePath":"Back in Time.2015-Bluray-1080p.mkv","path":"\/movies\/Back in Time (2015)\/Back in Time.2015-Bluray-1080p.mkv","size":7034346392,"dateAdded":"2019-07-27T12:15:09Z","sceneName":"Back.in.Time.2015.1080p.BluRay.x264-SADPANDA[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9491000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:34:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SADPANDA","edition":"","id":561},"id":373},{"title":"Ghost in the Shell: S.A.C. 2nd GIG \u2013 Individual Eleven","originalTitle":"\u653b\u6bbb\u6a5f\u52d5\u968a STAND ALONE COMPLEX Individual Eleven","alternateTitles":[{"sourceType":"tmdb","movieId":374,"title":"Ghost in the Shell: Individual Eleven","sourceId":111224,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":626},{"sourceType":"tmdb","movieId":374,"title":"Ghost in the Shell: Stand Alone Complex 2nd GiG - Individual Eleven","sourceId":111224,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":627},{"sourceType":"tmdb","movieId":374,"title":"Ghost in the Shell - S.A.C. - Les Onze Individuels","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5115},{"sourceType":"tmdb","movieId":374,"title":"Ghost in the Shell - Stand Alone Complex - Les Onze Individuels","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5116},{"sourceType":"tmdb","movieId":374,"title":"Ghost in the Shell Stand Alone Complex 2da GIG","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5117},{"sourceType":"tmdb","movieId":374,"title":"\u041f\u0440\u0438\u0437\u0440\u0430\u043a \u0432 \u0434\u043e\u0441\u043f\u0435\u0445\u0430\u0445: \u0421\u0438\u043d\u0434\u0440\u043e\u043c \u043e\u0434\u0438\u043d\u043e\u0447\u043a\u0438 OVA-2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5118},{"sourceType":"tmdb","movieId":374,"title":"Ghost in the Shell: Stand Alone Complex \u2013 Individual Eleven","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5641}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell s c 2nd gig individual eleven","sizeOnDisk":40060304609,"status":"released","overview":"The year is 2030. Six months passed since the Laughing Man Incident was solved. About 3 million refugees are living in Japan, invited to fill the labor shortage. However, the emergent presence of the invited-refugees intensified their confrontation with the \"Individualists\", who called for national isolation, which then led to the increased incidences of terrorist attacks. Under these circumstances, a terrorist group called the Individual Eleven carries out a suicide attack. But there was a greater scheme behind their action. When Section 9 learns this, they attempt to nail down the mastermind of the incident. Meanwhile, Kuze, a surviving member of the Individual Eleven, becomes a charismatic leader of the invited-refugees and intensifies the confrontation against the government. And Motoko starts feeling a strange sense of fate connecting her with Kuze...","inCinemas":"2006-01-27T00:00:00Z","digitalRelease":"2008-03-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/374\/poster.jpg?lastWrite=637649994827422982","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/r0vvm9t7lGTEerapmIe9GAcCDZc.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/374\/fanart.jpg?lastWrite=637526315357449567","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c1bxxDOLyu3pUk6YP27crog50RW.jpg"}],"website":"","year":2006,"hasFile":true,"youTubeTrailerId":"MSLFkuT4n74","studio":"Production I.G","path":"\/movies\/Ghost in the Shell Stand Alone Complex - Individual Eleven (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Ghost in the Shell Stand Alone Complex - Individual Eleven (2006)","runtime":162,"cleanTitle":"ghostinshellsac2ndgigindividualeleven","imdbId":"tt1024214","tmdbId":111224,"titleSlug":"111224","genres":["Animation","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:05Z","ratings":{"votes":62,"value":7.6},"movieFile":{"movieId":374,"relativePath":"Ghost in the Shell Stand Alone Complex - Individual Eleven.2006-Remux-1080p.mkv","path":"\/movies\/Ghost in the Shell Stand Alone Complex - Individual Eleven (2006)\/Ghost in the Shell Stand Alone Complex - Individual Eleven.2006-Remux-1080p.mkv","size":40060304609,"dateAdded":"2019-01-23T12:55:08Z","sceneName":"Ghost.In.The.Shell.Stand.Alone.Complex.Individual.Eleven.2006.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":0,"audioChannels":2,"audioCodec":"PCM","audioLanguages":"English \/ English \/ English \/ Japanese \/ Japanese","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:41:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":485},"collection":{"name":"Ghost in the Shell: Stand Alone Complex Collection","tmdbId":443996,"images":[]},"id":374},{"title":"Ghost in The Shell: Stand Alone Complex-Solid State Society 3D","alternateTitles":[{"sourceType":"tmdb","movieId":375,"title":"Ghost in the Shell: Stand Alone Complex. Solid State Society 3D","sourceId":446699,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":628}],"secondaryYearSourceId":0,"sortTitle":"ghost in shell stand alone complex solid state society 3d","sizeOnDisk":0,"status":"deleted","overview":"A new 3D version of Ghost in the Shell: Solid State Society","inCinemas":"2011-03-25T23:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/375\/poster.jpg?lastWrite=637262745017359765","remoteUrl":"http:\/\/image.tmdb.org\/t\/p\/original\/nYPWv1sThyM2wlB2phpWdORJbuG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/375\/fanart.jpg?lastWrite=637262745020439713","remoteUrl":"http:\/\/image.tmdb.org\/t\/p\/original\/kBsbx3drXfbzXWfFYYUjXxDSlRj.jpg"}],"year":2011,"hasFile":false,"path":"\/movies\/\u653b\u6bbb\u6a5f\u52d5\u968a Stand Alone Complex - Solid State Society 3D (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/\u653b\u6bbb\u6a5f\u52d5\u968a Stand Alone Complex - Solid State Society 3D (2011)","runtime":108,"cleanTitle":"ghostinshellstandalonecomplexsolidstatesociety3d","imdbId":"tt1856022","tmdbId":446699,"titleSlug":"ghost-in-the-shell-stand-alone-complex-solid-state-society-3d-446699","genres":[],"tags":[],"added":"2018-12-30T21:39:05Z","ratings":{"votes":5,"value":8.6},"id":375},{"title":"Jumanji: The Next Level","originalTitle":"Jumanji: The Next Level","alternateTitles":[{"sourceType":"tmdb","movieId":376,"title":"Jumanji - Pr\u00f3xima Fase","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2468},{"sourceType":"tmdb","movieId":376,"title":"Jumanji 3 - Pr\u00f3xima Fase","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2469},{"sourceType":"tmdb","movieId":376,"title":"Jumanji 4 - The Next Level","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2470},{"sourceType":"tmdb","movieId":376,"title":"Jumanji: Yeni Seviye","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2471},{"sourceType":"tmdb","movieId":376,"title":"Jumanji: Yangi bosqich","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2472},{"sourceType":"tmdb","movieId":376,"title":"Jumanji 3 - The Next Level","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5466},{"sourceType":"tmdb","movieId":376,"title":"Jumanji - A k\u00f6vetkez\u0151 szint","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":6273}],"secondaryYearSourceId":0,"sortTitle":"jumanji next level","sizeOnDisk":4549859795,"status":"released","overview":"As the gang return to Jumanji to rescue one of their own, they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored in order to escape the world\u2019s most dangerous game.","inCinemas":"2019-12-04T00:00:00Z","physicalRelease":"2020-03-17T00:00:00Z","digitalRelease":"2020-03-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/376\/poster.jpg?lastWrite=637265337357405198","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jyw8VKYEiM1UDzPB7NsisUgBeJ8.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/376\/fanart.jpg?lastWrite=637663836877472697","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zTxHf9iIOCqRbxvl8W5QYKrsMLq.jpg"}],"website":"http:\/\/jumanjimovie.com","year":2019,"hasFile":true,"youTubeTrailerId":"F6QaLsw8EWY","studio":"Columbia Pictures","path":"\/movies\/Jumanji 3 (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Jumanji 3 (2019)","runtime":123,"cleanTitle":"jumanjinextlevel","imdbId":"tt7975244","tmdbId":512200,"titleSlug":"512200","certification":"PG-13","genres":["Adventure","Comedy","Fantasy"],"tags":[],"added":"2018-12-30T21:39:06Z","ratings":{"votes":6149,"value":7},"movieFile":{"movieId":376,"relativePath":"Jumanji The Next Level.2019-Bluray-1080p.mkv","path":"\/movies\/Jumanji 3 (2019)\/Jumanji The Next Level.2019-Bluray-1080p.mkv","size":4549859795,"dateAdded":"2020-03-01T03:28:00Z","sceneName":"Jumanji.The.Next.Level.2019.1080p.BDRip.X264.AC3-EVO[TGx]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":4573000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x804","runTime":"2:03:10","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"EVO","edition":"","id":656},"collection":{"name":"Jumanji Collection","tmdbId":495527,"images":[]},"id":376},{"title":"Neon Genesis Evangelion: Death and Rebirth","originalTitle":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3 \u5287\u5834\u7248 DEATH & REBIRTH \u30b7\u30c8\u65b0\u751f","alternateTitles":[{"sourceType":"tmdb","movieId":377,"title":"Evangelion: Death & Rebirth","sourceId":21832,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":629},{"sourceType":"tmdb","movieId":377,"title":"Neon Genesis Evangelion: Death (True)","sourceId":21832,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":630},{"sourceType":"tmdb","movieId":377,"title":"Death(True)^2","sourceId":21832,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":631},{"sourceType":"tmdb","movieId":377,"title":"Revival of Evangelion","sourceId":21832,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":632},{"sourceType":"tmdb","movieId":377,"title":"Neon Genesis Evangelion: Surm ja taass\u00fcnd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3883},{"sourceType":"tmdb","movieId":377,"title":"Evangelion: morte e resurrecci\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3884},{"sourceType":"tmdb","movieId":377,"title":"\u0398\u03ac\u03bd\u03b1\u03c4\u03bf\u03c2 \u03ba\u03b1\u03b9 \u0391\u03bd\u03b1\u03b3\u03ad\u03bd\u03bd\u03b7\u03c3\u03b7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3885},{"sourceType":"tmdb","movieId":377,"title":"Shin Seiki Evangelion Gekij\u014dban: Shi to Shinsei","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3886},{"sourceType":"tmdb","movieId":377,"title":"Shinseiki Evangelion Gekijouban: Shi to Shinsei","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3887},{"sourceType":"tmdb","movieId":377,"title":"\uc2e0\uc138\uae30 \uc5d0\ubc18\uac8c\ub9ac\uc628 \ub370\uc2a4 & \ub9ac\ubc84\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3888},{"sourceType":"tmdb","movieId":377,"title":"\uc2e0\uc138\uae30 \uc5d0\ubc18\uac8c\ub9ac\uc628: \ub370\uc2a4(\ud2b8\ub8e8)\u00b2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3889},{"sourceType":"tmdb","movieId":377,"title":"Ewangelia nowego stworzenia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3890},{"sourceType":"tmdb","movieId":377,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d: \u0421\u043c\u0435\u0440\u0442\u044c \u0438 \u0412\u043e\u0437\u0440\u043e\u0436\u0434\u0435\u043d\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3891},{"sourceType":"tmdb","movieId":377,"title":"\u0415\u0432\u0430\u043d\u0433\u0435\u043b\u0438\u043e\u043d: \u0421\u043c\u0435\u0440\u0442\u044c \u0438 \u043f\u0435\u0440\u0435\u0440\u043e\u0436\u0434\u0435\u043d\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3892},{"sourceType":"tmdb","movieId":377,"title":"\u65b0\u4e16\u7d00\u798f\u97f3\u6230\u58eb\u5287\u5834\u7248\uff1a\u6b7b\u8207\u65b0\u751f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3893},{"sourceType":"tmdb","movieId":377,"title":"\u0404\u0432\u0430\u043d\u0433\u0435\u043b\u0456\u043e\u043d - \u0421\u043c\u0435\u0440\u0442\u044c & \u0412\u0456\u0434\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3894},{"sourceType":"tmdb","movieId":377,"title":"\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u5267\u573a\u7248\uff1a\u6b7b\u4e0e\u65b0\u751f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6062}],"secondaryYearSourceId":0,"sortTitle":"neon genesis evangelion death rebirth","sizeOnDisk":1296269476,"status":"released","overview":"Originally a collection of clips from the Neon Genesis Evangelion TV series, Death was created as a precursor to the re-worked ending of the series. Rebirth was intended as that re-worked ending, but after production overruns Rebirth became only the first half of the first part of The End of Evangelion, with some minor differences.","inCinemas":"1997-03-15T00:00:00Z","physicalRelease":"2002-03-20T00:00:00Z","digitalRelease":"2004-07-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/377\/poster.jpg?lastWrite=637542747261443875","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lXBjqzo6c4NyLuJtqOiH39kswji.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/377\/fanart.jpg?lastWrite=637613667791058919","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/74wyAwiWTGLpJGQIPMKjYjvSyl4.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"7Q5-lhCpDIA","studio":"GAINAX","path":"\/movies\/Neon Genesis Evangelion Death and Rebirth (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Neon Genesis Evangelion Death and Rebirth (1997)","runtime":101,"cleanTitle":"neongenesisevangeliondeathrebirth","imdbId":"tt0169880","tmdbId":21832,"titleSlug":"21832","certification":"NR","genres":["Drama","Science Fiction","Animation"],"tags":[],"added":"2018-12-30T21:39:07Z","ratings":{"votes":239,"value":7.6},"movieFile":{"movieId":377,"relativePath":"Neon Genesis Evangelion Death and Rebirth.1997.mkv","path":"\/movies\/Neon Genesis Evangelion Death and Rebirth (1997)\/Neon Genesis Evangelion Death and Rebirth.1997.mkv","size":1296269476,"dateAdded":"2019-10-27T08:40:45Z","indexerFlags":0,"quality":{"quality":{"id":0,"name":"Unknown","source":"unknown","resolution":0,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":192000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"English \/ English \/ Japanese","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":803673,"videoCodec":"h264","videoFps":29.97,"resolution":"720x480","runTime":"1:47:46","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"edition":"","id":625},"collection":{"name":"Evangelion Collection","tmdbId":96850,"images":[]},"id":377},{"title":"Revival of Evangelion","originalTitle":"\u65b0\u4e16\u7d00\u30a8\u30f4\u30a1\u30f3\u30b2\u30ea\u30aa\u30f3\u5287\u5834\u7248 DEATH (TRUE)\u00b2 \/ Air \/ \u307e\u3054\u3053\u308d\u3092\u3001\u541b\u306b","alternateTitles":[{"sourceType":"tmdb","movieId":378,"title":"\uc2e0\uc138\uae30 \uc5d0\ubc18\uac8c\ub9ac\uc628 \ub9ac\ubc14\uc774\ubc8c \uc624\ube0c \uc5d0\ubc18\uac8c\ub9ac\uc628","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5354},{"sourceType":"tmdb","movieId":378,"title":"REVIVAL OF EVANGELION 0\u300cDEATH (TRUE)\u00b2 \u300d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5355},{"sourceType":"tmdb","movieId":378,"title":"REVIVAL OF EVANGELION 1 \u300cAir\u300d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5356},{"sourceType":"tmdb","movieId":378,"title":"REVIVAL OF EVANGELION 2 \u300c\u307e\u3054\u3053\u308d\u3092\u3001\u541b\u306b\u300d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5357}],"secondaryYearSourceId":0,"sortTitle":"revival evangelion","sizeOnDisk":0,"status":"released","overview":"\"Revival of Evangelion\" was the third \"Neon Genesis Evangelion\" movie to be released in Japan. \"Revival\" is ultimately considered the final form of the \"Evangelion\" movies. It combines the movies, \"Evangelion: Death (True)\u00b2\" and \"The End of Evangelion,\" into one long production. It is a \"complete\" ending.","inCinemas":"1998-03-07T00:00:00Z","physicalRelease":"2009-11-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/378\/poster.jpg?lastWrite=637509883055818039","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/txy0VEW52tb5TJYz6UsZvOWfTXX.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/378\/fanart.jpg?lastWrite=637614532978375722","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rKx7TwyN5kTldYZRdbP7C5UOvsE.jpg"}],"website":"http:\/\/evangelion.jp\/","year":1998,"hasFile":false,"youTubeTrailerId":"","studio":"GAINAX","path":"\/movies\/Revival of Evangelion (1998)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Revival of Evangelion (1998)","runtime":160,"cleanTitle":"revivalevangelion","imdbId":"tt13645944","tmdbId":54270,"titleSlug":"54270","genres":["Action","Animation","Drama"],"tags":[],"added":"2018-12-30T21:39:07Z","ratings":{"votes":22,"value":7.5},"collection":{"name":"Evangelion Collection","tmdbId":96850,"images":[]},"id":378},{"title":"Stargate SG-1: Children of the Gods","originalTitle":"Stargate SG-1: Children of the Gods","alternateTitles":[{"sourceType":"tmdb","movieId":379,"title":"Stargate: Children of the Gods","sourceId":80527,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":633},{"sourceType":"tmdb","movieId":379,"title":"Stargate SG-1: Children of the Gods - Final Cut","sourceId":80527,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":870}],"secondaryYearSourceId":0,"sortTitle":"stargate sg 1 children gods","sizeOnDisk":0,"status":"deleted","overview":"An alien similar to Ra appears out of the Stargate, killing five soldiers and kidnapping another, a year after the original Stargate mission. A new team is assembled, including some old members, and they go in search of the missing soldier in order to find out how Ra could still be alive. Meanwhile, the alien Gou'ald kidnap Sha're and Skaara, implanting them with symbiotes and making them Gou'ald hosts.","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/379\/poster.jpg?lastWrite=637260150063615388","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/KmuVZVqC77Lws3F2U1PwLerlhB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/379\/fanart.jpg?lastWrite=637321536566922298","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bnDNk3IAC0azk1kWlGXsi0dD2zW.jpg"}],"website":"","year":2009,"hasFile":false,"youTubeTrailerId":"","studio":"Gekko Film Corp.","path":"\/movies\/Stargate SG-1 Children of the Gods - Final Cut (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Stargate SG-1 Children of the Gods - Final Cut (2009)","runtime":92,"cleanTitle":"stargatesg1childrengods","imdbId":"tt1483803","tmdbId":80527,"titleSlug":"80527","genres":["Adventure","Thriller","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:08Z","ratings":{"votes":121,"value":7.2},"collection":{"name":"Stargate SG-1 Collection","tmdbId":44215,"images":[]},"id":379},{"title":"Stargate SG-1: True Science","originalTitle":"Stargate SG-1: True Science","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"stargate sg 1 true science","sizeOnDisk":0,"status":"released","overview":"In this documentary, Amanda Tapping, known as Samantha Carter from SG-1, shows the scientific background of the successful science fiction series \"Stargate SG-1\" and lets us take a look behind the scenes.","digitalRelease":"2006-01-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/380\/poster.jpg?lastWrite=637411454501743006","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3e2gPmE5KDPFpWjDkziOyeho5SD.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/380\/fanart.jpg?lastWrite=637260150074655207","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jCcvhae8MmkqYtR1EGtMYFdpQud.jpg"}],"website":"","year":2006,"hasFile":false,"youTubeTrailerId":"","studio":"Oxford Scientific Films","path":"\/movies\/Stargate SG-1 True Science (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Stargate SG-1 True Science (2006)","runtime":45,"cleanTitle":"stargatesg1truescience","imdbId":"tt1080033","tmdbId":376268,"titleSlug":"376268","genres":["Science Fiction","Documentary","TV Movie"],"tags":[],"added":"2018-12-30T21:39:09Z","ratings":{"votes":7,"value":8.1},"id":380},{"title":"The Lego Ninjago Movie","originalTitle":"The Lego Ninjago Movie","alternateTitles":[{"sourceType":"tmdb","movieId":381,"title":"LEGO Ninjago vo filme","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4186},{"sourceType":"tmdb","movieId":381,"title":"Lego Ninjago: La pel\u00edcula","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4213},{"sourceType":"tmdb","movieId":381,"title":"LEGO Ninjago, le film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5300}],"secondaryYearSourceId":0,"sortTitle":"lego ninjago movie","sizeOnDisk":8212042244,"status":"released","overview":"Six young ninjas are tasked with defending their island home of Ninjago. By night, they\u2019re gifted warriors using their skill and awesome fleet of vehicles to fight villains and monsters. By day, they\u2019re ordinary teens struggling against their greatest enemy....high school.","inCinemas":"2017-09-21T00:00:00Z","physicalRelease":"2017-12-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/381\/poster.jpg?lastWrite=637260149792939824","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vUo0pNXGhp2ffTJxiStWt6fHL7F.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/381\/fanart.jpg?lastWrite=637633559531245057","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3DPuzZmkBD9vbMpLvQcrymYoDBk.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/lego-ninjago-movie\/","year":2017,"hasFile":true,"youTubeTrailerId":"N0csmPZzYH0","studio":"Lin Pictures","path":"\/movies\/The LEGO Ninjago Movie (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The LEGO Ninjago Movie (2017)","runtime":101,"cleanTitle":"thelegoninjagomovie","imdbId":"tt3014284","tmdbId":274862,"titleSlug":"274862","certification":"PG","genres":["Family","Animation","Action"],"tags":[],"added":"2018-12-30T21:39:10Z","ratings":{"votes":729,"value":6.5},"movieFile":{"movieId":381,"relativePath":"The LEGO Ninjago Movie.2017-Bluray-1080p.mkv","path":"\/movies\/The LEGO Ninjago Movie (2017)\/The LEGO Ninjago Movie.2017-Bluray-1080p.mkv","size":8212042244,"dateAdded":"2018-12-31T05:59:51Z","sceneName":"The.LEGO.Ninjago.Movie.2017.RERIP.1080p.BluRay.x264-GECKOS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9282000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:41:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"GECKOS","edition":"","id":458},"id":381},{"title":"Van Helsing: The London Assignment","originalTitle":"Van Helsing: The London Assignment","alternateTitles":[{"sourceType":"tmdb","movieId":382,"title":"Van Helsing: Miss\u00e3o Londres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5422},{"sourceType":"tmdb","movieId":382,"title":"\u0412\u0430\u043d \u0425\u0435\u043b\u0441\u0456\u043d\u0433: \u041b\u043e\u043d\u0434\u043e\u043d\u0441\u044c\u043a\u0435 \u043f\u0440\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5886}],"secondaryYearSourceId":0,"sortTitle":"van helsing london assignment","sizeOnDisk":0,"status":"released","overview":"It tells of the events before the film, in which monster hunter Gabriel Van Helsing travels to London to investigate a series of horrific, and decidedly supernatural murders, being committed by the mad scientist Dr. Jekyll, in the form of his evil alter-ego, Mr. Hyde.","inCinemas":"2004-05-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/382\/poster.jpg?lastWrite=637629235792943060","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2MFdzeCL2YTqbbBgiZT8e51MUGO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/382\/fanart.jpg?lastWrite=637156368029984449","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eBED39qGyRGwqB6TVoLJ1qPFDvV.jpg"}],"website":"","year":2004,"hasFile":false,"youTubeTrailerId":"ESZLUTJ2u0k","studio":"Universal Pictures","path":"\/movies\/Van Helsing The London Assignment (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Van Helsing The London Assignment (2004)","runtime":30,"cleanTitle":"vanhelsinglondonassignment","imdbId":"tt0406310","tmdbId":7092,"titleSlug":"7092","certification":"PG-13","genres":["Action","Animation","Fantasy"],"tags":[],"added":"2018-12-30T21:39:10Z","ratings":{"votes":105,"value":6.3},"collection":{"name":"Van Helsing Collection","tmdbId":109608,"images":[]},"id":382},{"title":"Jack-Jack Attack","originalTitle":"Jack-Jack Attack","alternateTitles":[{"sourceType":"tmdb","movieId":383,"title":"Pixar Shorts: Jack-Jack Attack","sourceId":13932,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":634},{"sourceType":"tmdb","movieId":383,"title":"O Ataque do Zez\u00e9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2788},{"sourceType":"tmdb","movieId":383,"title":"Jack-Jack Ataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2789},{"sourceType":"tmdb","movieId":383,"title":"Jaskan isku","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2790},{"sourceType":"tmdb","movieId":383,"title":"I epithesi tou Jack-Jack","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2792},{"sourceType":"tmdb","movieId":383,"title":"Napad Jack-Jacka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2793},{"sourceType":"tmdb","movieId":383,"title":"Furi-t\u00e1mad\u00e1s","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2794},{"sourceType":"tmdb","movieId":383,"title":"\u0414\u0436\u0435\u043a-\u0414\u0436\u0435\u043a \u0430\u0442\u0430\u043a\u0443\u0435\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2795},{"sourceType":"tmdb","movieId":383,"title":"\u5c0f\u5091\u7684\u653b\u64ca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2796}],"secondaryYearSourceId":0,"sortTitle":"jack jack attack","sizeOnDisk":0,"status":"released","overview":"The Parrs' baby Jack-Jack is thought to be normal, not having any super-powers like his parents or siblings. But when an outsider is hired to watch him, Jack-Jack shows his true potential.","inCinemas":"2005-03-15T00:00:00Z","physicalRelease":"2005-03-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/383\/poster.jpg?lastWrite=637640479497712215","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/30J7SeySVn7pm84x3vejZpenH5M.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/383\/fanart.jpg?lastWrite=637614532810818173","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hdssoS48F2dMxOCcr2nVNCr5F7t.jpg"}],"website":"http:\/\/www.pixar.com\/short_films\/Home-Entertainment-Shorts\/Jack-Jack-Attack","year":2005,"hasFile":false,"youTubeTrailerId":"D9JkGNhwxb0","studio":"Pixar","path":"\/movies\/Jack-Jack Attack (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Jack-Jack Attack (2005)","runtime":5,"cleanTitle":"jackjackattack","imdbId":"tt0455565","tmdbId":13932,"titleSlug":"13932","certification":"NR","genres":["Adventure","Animation","Family"],"tags":[],"added":"2018-12-30T21:39:11Z","ratings":{"votes":684,"value":7.3},"id":383},{"title":"The Lost World: Jurassic Park","originalTitle":"The Lost World: Jurassic Park","alternateTitles":[{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2 - The Lost World","sourceId":330,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":635},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park II: The Lost World","sourceId":330,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":636},{"sourceType":"tmdb","movieId":384,"title":"Dzhurasik park: Izgubeniyat svyat","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4087},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2 - O Mundo Perdido","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4088},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2 - El mundo perdido","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4092},{"sourceType":"tmdb","movieId":384,"title":"Parque Jur\u00e1sico II: El mundo perdido","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4093},{"sourceType":"tmdb","movieId":384,"title":"Parque jurasico 2 El mundo perdido","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4094},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2 - Le Monde perdu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4095},{"sourceType":"tmdb","movieId":384,"title":"O Cham\u00e9nos K\u00f3smos: Jurassic Park","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4096},{"sourceType":"tmdb","movieId":384,"title":"Ha-Olum Ha-Avude","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4097},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park - Il Mondo Perduto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4098},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2 - Il Mondo Perduto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4099},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park II - Il Mondo Perduto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4100},{"sourceType":"tmdb","movieId":384,"title":"Park iz doba jure - Izgubljeni svet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4102},{"sourceType":"tmdb","movieId":384,"title":"Park Yurskogo perioda 2: Zateryannyy mir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4103},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4104},{"sourceType":"tmdb","movieId":384,"title":"Park Yurs\u02b9koho periodu 2. Zahublenyy svit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4105},{"sourceType":"tmdb","movieId":384,"title":"Jurassic Park 2 - Vergessene Welt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5731},{"sourceType":"tmdb","movieId":384,"title":"\u4f8f\u7f85\u7d00\u516c\u5712\uff1a\u8ff7\u5931\u4e16\u754c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5923}],"secondaryYearSourceId":0,"sortTitle":"lost world jurassic park","sizeOnDisk":2634149669,"status":"released","overview":"Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that he has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.","inCinemas":"1997-05-23T00:00:00Z","physicalRelease":"2000-10-10T00:00:00Z","digitalRelease":"2001-12-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/384\/poster.jpg?lastWrite=637662971485146247","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jElpCJkSaRPYwIMwZY28gOKV7BK.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/384\/fanart.jpg?lastWrite=637630100330342822","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/Aggp8HKlt9MuA3cagoOk7Gp5yI4.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"vtfwgaHD5_w","studio":"Universal Pictures","path":"\/movies\/The Lost World Jurassic Park (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Lost World Jurassic Park (1997)","runtime":129,"cleanTitle":"thelostworldjurassicpark","imdbId":"tt0119567","tmdbId":330,"titleSlug":"330","certification":"PG-13","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:12Z","ratings":{"votes":6349,"value":6.5},"movieFile":{"movieId":384,"relativePath":"The Lost World Jurassic Park.1997-Bluray-1080p.mp4","path":"\/movies\/The Lost World Jurassic Park (1997)\/The Lost World Jurassic Park.1997-Bluray-1080p.mp4","size":2634149669,"dateAdded":"2018-12-30T21:52:25Z","sceneName":"Jurassic.Park.II.The.Lost.World.1997.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1038","runTime":"2:08:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":440},"collection":{"name":"Jurassic Park Collection","tmdbId":328,"images":[]},"id":384},{"title":"Jurassic Park III","originalTitle":"Jurassic Park III","alternateTitles":[{"sourceType":"tmdb","movieId":385,"title":"Dzhurasik park 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4078},{"sourceType":"tmdb","movieId":385,"title":"\u4f8f\u7f57\u7eaa\u516c\u56ed3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4079},{"sourceType":"tmdb","movieId":385,"title":"Jurassic Park 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4080},{"sourceType":"tmdb","movieId":385,"title":"Tzour\u00e1sik Park 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4081},{"sourceType":"tmdb","movieId":385,"title":"Park iz doba jure 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4082},{"sourceType":"tmdb","movieId":385,"title":"Park Yurskogo perioda 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4083},{"sourceType":"tmdb","movieId":385,"title":"\u4f8f\u5138\u7d00\u516c\u57123","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4084},{"sourceType":"tmdb","movieId":385,"title":"Park Yurs\u02b9koho periodu 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4085},{"sourceType":"tmdb","movieId":385,"title":"\u30b8\u30e5\u30e9\u30b7\u30c3\u30af\u30fb\u30d1\u30fc\u30afIII","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4965},{"sourceType":"tmdb","movieId":385,"title":"\u4f8f\u7f85\u7d00\u516c\u57123","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5922}],"secondaryYearSourceId":0,"sortTitle":"jurassic park iii","sizeOnDisk":1887078015,"status":"released","overview":"In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.","inCinemas":"2001-07-18T00:00:00Z","physicalRelease":"2002-01-30T00:00:00Z","digitalRelease":"2004-03-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/385\/poster.jpg?lastWrite=637653456098721088","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wQj9VSepvXmqha1XNtfdrgvqHdk.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/385\/fanart.jpg?lastWrite=637662971414667439","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sy4Q9ppEQkVezPV5Rq1uQOJzMhU.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"gjIaV6CU0wA","studio":"Universal Pictures","path":"\/movies\/Jurassic Park III (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Jurassic Park III (2001)","runtime":92,"cleanTitle":"jurassicparkiii","imdbId":"tt0163025","tmdbId":331,"titleSlug":"331","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2018-12-30T21:39:12Z","ratings":{"votes":5385,"value":6.1},"movieFile":{"movieId":385,"relativePath":"Jurassic Park III.2001-Bluray-1080p.mp4","path":"\/movies\/Jurassic Park III (2001)\/Jurassic Park III.2001-Bluray-1080p.mp4","size":1887078015,"dateAdded":"2018-12-30T21:49:55Z","sceneName":"Jurassic.Park.III.2001.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1038","runTime":"1:32:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":439},"collection":{"name":"Jurassic Park Collection","tmdbId":328,"images":[]},"id":385},{"title":"Riddick","originalTitle":"Riddick","alternateTitles":[{"sourceType":"tmdb","movieId":386,"title":"The Chronicles of Riddick: Dead Man Stalking","sourceId":87421,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":638},{"sourceType":"tmdb","movieId":386,"title":"Chronicles of Riddick 3 - Riddick","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3316},{"sourceType":"tmdb","movieId":386,"title":"\u661f\u9645\u4f20\u5947 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3317},{"sourceType":"tmdb","movieId":386,"title":"Riddick: Dead Man Stalking","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3319},{"sourceType":"tmdb","movieId":386,"title":"Riddick: Domptez les t\u00e9n\u00e8bres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3320},{"sourceType":"tmdb","movieId":386,"title":"Rydikas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3322}],"secondaryYearSourceId":0,"sortTitle":"riddick","sizeOnDisk":2596062883,"status":"released","overview":"Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.","inCinemas":"2013-09-02T00:00:00Z","physicalRelease":"2013-12-04T00:00:00Z","digitalRelease":"2013-12-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/386\/poster.jpg?lastWrite=637632694610286454","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xhdDd6Gd6EaPBwNdCjNW2HCnIQY.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/386\/fanart.jpg?lastWrite=637454691521744046","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/naGU49u4BXynQ1o5L755pfs8dom.jpg"}],"website":"http:\/\/www.riddick-movie.com","year":2013,"hasFile":true,"youTubeTrailerId":"zH3O-CeZckE","studio":"One Race","path":"\/movies\/Riddick (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Riddick (2013)","runtime":119,"cleanTitle":"riddick","imdbId":"tt1411250","tmdbId":87421,"titleSlug":"87421","certification":"R","genres":["Science Fiction","Action","Thriller"],"tags":[],"added":"2018-12-30T21:39:13Z","ratings":{"votes":3241,"value":6.3},"movieFile":{"movieId":386,"relativePath":"Riddick.2013-Bluray-1080p.mp4","path":"\/movies\/Riddick (2013)\/Riddick.2013-Bluray-1080p.mp4","size":2596062883,"dateAdded":"2018-12-30T22:34:57Z","sceneName":"Riddick.2013.EXTENDED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:06:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"EXTENDED","id":443},"collection":{"name":"The Chronicles of Riddick Collection","tmdbId":2794,"images":[]},"id":386},{"title":"Riddick 4: Furya","originalTitle":"Riddick 4: Furya","alternateTitles":[{"sourceType":"tmdb","movieId":387,"title":"Riddick 4: Furia","sourceId":374771,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":640}],"secondaryYearSourceId":0,"sortTitle":"riddick 4 furya","sizeOnDisk":0,"status":"announced","overview":"When Riddick finally finds his home planet, he has no idea what's in store for him.","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/387\/poster.jpg?lastWrite=637633559714482104","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lV5qk31axl9mo0uq9L4Jkmuzrbq.jpg"}],"website":"","year":0,"hasFile":false,"youTubeTrailerId":"","studio":"Radar Pictures","path":"\/movies\/The Chronicles of Riddick Furia (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Chronicles of Riddick Furia (2019)","runtime":0,"cleanTitle":"riddick4furya","imdbId":"tt5218270","tmdbId":374771,"titleSlug":"374771","genres":["Science Fiction","Action"],"tags":[],"added":"2018-12-30T21:39:14Z","ratings":{"votes":0,"value":0},"collection":{"name":"The Chronicles of Riddick Collection","tmdbId":2794,"images":[]},"id":387},{"title":"Riddick: Blindsided","originalTitle":"Riddick: Blindsided","alternateTitles":[{"sourceType":"tmdb","movieId":388,"title":"The Chronicles of Riddick: Blindsided","sourceId":211449,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":641},{"sourceType":"tmdb","movieId":388,"title":"\u0420\u0438\u0434\u0434\u0438\u043a: \u0423\u0434\u0430\u0440 \u0432 \u0441\u043f\u0438\u043d\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4779}],"secondaryYearSourceId":0,"sortTitle":"riddick blindsided","sizeOnDisk":0,"status":"released","overview":"This motion comic gaps the bridge between 2004's The Chronicles of Riddick, and 2013's Riddick. A new attempt on Lord Marshal Riddick's life is made on the Necromongers' ship. It's time for Riddick to end the years long meandering through space and go back to his roots.","digitalRelease":"2013-07-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/388\/poster.jpg?lastWrite=637620587209141003","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AiWr89Y4g6gkJ3WhVv1TrcSTFMf.jpg"}],"website":"","year":2013,"hasFile":false,"youTubeTrailerId":"I5UhU0d2Emk","studio":"","path":"\/movies\/Riddick Blindsided (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Riddick Blindsided (2013)","runtime":6,"cleanTitle":"riddickblindsided","imdbId":"tt3095416","tmdbId":211449,"titleSlug":"211449","genres":["Action","Animation","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:15Z","ratings":{"votes":62,"value":6.7},"id":388},{"title":"Mad Max 2","originalTitle":"Mad Max 2","alternateTitles":[{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2: The Road Warrior","sourceId":8810,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":643},{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2 - Der Vollstrecker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1582},{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2: Maantees\u00f5dalane","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1583},{"sourceType":"tmdb","movieId":389,"title":"Asfaltkrigaren","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1584},{"sourceType":"tmdb","movieId":389,"title":"Asfalttisoturi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1585},{"sourceType":"tmdb","movieId":389,"title":"Mad Max II - asfalttisoturi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1586},{"sourceType":"tmdb","movieId":389,"title":"Le d\u00e9fi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1587},{"sourceType":"tmdb","movieId":389,"title":"Mad Max: Road Warrior","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1588},{"sourceType":"tmdb","movieId":389,"title":"Mad Max - Il Guerriero Della Strada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1589},{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2 - Il Guerriero Della Strada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1590},{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2, guerrero de la carretera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1591},{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2, el guerrero de la carretera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1592},{"sourceType":"tmdb","movieId":389,"title":"Pobesneli Maks 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1594},{"sourceType":"tmdb","movieId":389,"title":"\u0411\u0435\u0437\u0443\u043c\u043d\u044b\u0439 \u041c\u0430\u043a\u0441 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1595},{"sourceType":"tmdb","movieId":389,"title":"\u0411\u0435\u0437\u0443\u043c\u043d\u044b\u0439 \u041c\u0430\u043a\u0441 II: \u0412\u043e\u0438\u043d \u0443 \u0434\u043e\u0440\u043e\u0433\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1596},{"sourceType":"tmdb","movieId":389,"title":"\u0411\u0435\u0437\u0443\u043c\u043d\u044b\u0439 \u041c\u0430\u043a\u0441: \u0412\u043e\u0438\u043d \u0434\u043e\u0440\u043e\u0433\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1597},{"sourceType":"tmdb","movieId":389,"title":"Savas\u00e7i","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1598},{"sourceType":"tmdb","movieId":389,"title":"\u00c7ilgin Maks 2: Savas\u00e7i","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1599},{"sourceType":"tmdb","movieId":389,"title":"\u0421\u043a\u0430\u0436\u0435\u043d\u0438\u0439 \u041c\u0430\u043a\u0441 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1600},{"sourceType":"tmdb","movieId":389,"title":"Guerrero de la carretera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1601},{"sourceType":"tmdb","movieId":389,"title":"\u0160\u00edlen\u00fd Max 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4836},{"sourceType":"tmdb","movieId":389,"title":"The Road Warrior","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5288},{"sourceType":"tmdb","movieId":389,"title":"Mad Max 2: A Ca\u00e7ada Continua","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5855}],"secondaryYearSourceId":0,"sortTitle":"mad max 2","sizeOnDisk":2080792788,"status":"released","overview":"Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.","inCinemas":"1981-12-24T00:00:00Z","physicalRelease":"1999-05-10T00:00:00Z","digitalRelease":"2003-10-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/389\/poster.jpg?lastWrite=637640479523511781","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ffzRLeZaKP6YCaTVieWeSLccC4y.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/389\/fanart.jpg?lastWrite=637660377197171167","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2rMRP9Dhb5mnA1lNfvwLl1PpYBu.jpg"}],"website":"","year":1981,"hasFile":true,"youTubeTrailerId":"EEjLjUqoU9Y","studio":"Kennedy Miller Productions","path":"\/movies\/Mad Max 2 (1981)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Mad Max 2 (1981)","runtime":96,"cleanTitle":"madmax2","imdbId":"tt0082694","tmdbId":8810,"titleSlug":"8810","certification":"R","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2018-12-30T21:39:15Z","ratings":{"votes":2579,"value":7.4},"movieFile":{"movieId":389,"relativePath":"Mad Max 2.1981-Bluray-1080p.mkv","path":"\/movies\/Mad Max 2 (1981)\/Mad Max 2.1981-Bluray-1080p.mkv","size":2080792788,"dateAdded":"2019-09-28T04:22:51Z","sceneName":"Mad Max 2 - The Road Warrior 1981 (1080p Bluray x265 HEVC 10bit AAC 5.1 Tigole)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":352800,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":2464966,"videoCodec":"x265","videoFps":23.976,"resolution":"1904x792","runTime":"1:35:30","scanType":"","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Dutch \/ Danish \/ Finnish \/ Norwegian Bokmal \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":614},"collection":{"name":"Mad Max Collection","tmdbId":8945,"images":[]},"id":389},{"title":"Mad Max Beyond Thunderdome","originalTitle":"Mad Max Beyond Thunderdome","alternateTitles":[{"sourceType":"tmdb","movieId":390,"title":"Mad Max 3 - Beyond Thunderdome","sourceId":9355,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":644},{"sourceType":"tmdb","movieId":390,"title":"Mad Max 3","sourceId":9355,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":645},{"sourceType":"tmdb","movieId":390,"title":"Mad Max III - Beyond Thunderdome","sourceId":9355,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":646},{"sourceType":"tmdb","movieId":390,"title":"Mad Max 3 - Jenseits der Donnerkuppel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1602},{"sourceType":"tmdb","movieId":390,"title":"Mad Max 3: \u0391\u03c0\u03cc\u03b4\u03c1\u03b1\u03c3\u03b7 \u0391\u03c0\u03cc \u03a4\u03bf \u0392\u03b1\u03c3\u03af\u03bb\u03b5\u03b9\u03bf \u03a4\u03bf\u03c5 \u039a\u03b5\u03c1\u03b1\u03c5\u03bd\u03bf\u03cd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1608},{"sourceType":"tmdb","movieId":390,"title":"Mad Max 3 - Oltre la sfera del tuono","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1610},{"sourceType":"tmdb","movieId":390,"title":"\u0421\u043a\u0430\u0436\u0435\u043d\u0438\u0439 \u041c\u0430\u043a\u0441 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1613},{"sourceType":"tmdb","movieId":390,"title":"\u0160\u00edlen\u00fd Max 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4837},{"sourceType":"tmdb","movieId":390,"title":"\u0160\u00edlen\u00fd Max 3: D\u00f3m hromu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4838},{"sourceType":"tmdb","movieId":390,"title":"\ub9e4\uadf8 \ub9e5\uc2a4 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5799},{"sourceType":"tmdb","movieId":390,"title":"Mad Max 3: Al\u00e9m da C\u00fapula do Trov\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5856}],"secondaryYearSourceId":0,"sortTitle":"mad max beyond thunderdome","sizeOnDisk":8210797057,"status":"released","overview":"Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.","inCinemas":"1985-06-29T00:00:00Z","physicalRelease":"1999-02-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/390\/poster.jpg?lastWrite=637621451921818541","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jJlxcEVVUHnrUeEkQ0077VeHQpb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/390\/fanart.jpg?lastWrite=637621451923658510","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cxLUuuu4eixQCajmLljjv8YlDjD.jpg"}],"website":"","year":1985,"hasFile":true,"youTubeTrailerId":"YOol44WGats","studio":"Kennedy Miller Productions","path":"\/movies\/Mad Max Beyond Thunderdome (1985)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Mad Max Beyond Thunderdome (1985)","runtime":107,"cleanTitle":"madmaxbeyondthunderdome","imdbId":"tt0089530","tmdbId":9355,"titleSlug":"9355","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:16Z","ratings":{"votes":1998,"value":6.2},"movieFile":{"movieId":390,"relativePath":"Mad Max Beyond Thunderdome.1985-Bluray-1080p.mkv","path":"\/movies\/Mad Max Beyond Thunderdome (1985)\/Mad Max Beyond Thunderdome.1985-Bluray-1080p.mkv","size":8210797057,"dateAdded":"2018-12-31T01:23:04Z","sceneName":"Mad.Max.Beyond.Thunderdome.1985.1080p.BluRay.x264-CiNEFiLE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8725000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:46:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CiNEFiLE","edition":"","id":453},"collection":{"name":"Mad Max Collection","tmdbId":8945,"images":[]},"id":390},{"title":"Mad Max","originalTitle":"Mad Max","alternateTitles":[{"sourceType":"tmdb","movieId":391,"title":"\u0411\u0435\u0437\u0443\u043c\u043d\u044b\u0439 \u041c\u0430\u043a\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5610}],"secondaryYearSourceId":0,"sortTitle":"mad max","sizeOnDisk":1907516070,"status":"released","overview":"In a dystopian world, a vengeful Australian policeman named Max sets out to stop a violent motorcycle gang.","inCinemas":"1979-04-12T00:00:00Z","physicalRelease":"2002-05-16T00:00:00Z","digitalRelease":"2002-06-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/391\/poster.jpg?lastWrite=637667297167911592","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5LrI4GiCSrChgkdskVZiwv643Kg.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/391\/fanart.jpg?lastWrite=637646534616828504","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oQIBypbvcAwtTVu26G81Xxhd57x.jpg"}],"website":"","year":1979,"hasFile":true,"youTubeTrailerId":"JMG7j3zReJQ","studio":"Kennedy Miller Productions","path":"\/movies\/Mad Max (1979)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Mad Max (1979)","runtime":91,"cleanTitle":"madmax","imdbId":"tt0079501","tmdbId":9659,"titleSlug":"9659","certification":"R","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2018-12-30T21:39:17Z","ratings":{"votes":3150,"value":6.7},"movieFile":{"movieId":391,"relativePath":"Mad Max.1979-Bluray-1080p.mp4","path":"\/movies\/Mad Max (1979)\/Mad Max.1979-Bluray-1080p.mp4","size":1907516070,"dateAdded":"2018-12-30T23:42:30Z","sceneName":"Mad.Max.1979.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x820","runTime":"1:33:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":449},"collection":{"name":"Mad Max Collection","tmdbId":8945,"images":[]},"id":391},{"title":"Cube Zero","originalTitle":"Cube Zero","alternateTitles":[{"sourceType":"tmdb","movieId":392,"title":"Cube 3 - Cube Zero","sourceId":438,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":648},{"sourceType":"tmdb","movieId":392,"title":"Cube \u00d8","sourceId":438,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":649},{"sourceType":"tmdb","movieId":392,"title":"Cube\u00ba: Cube Zero","sourceId":438,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1287},{"sourceType":"tmdb","movieId":392,"title":"Cube: Cube Zero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3489},{"sourceType":"tmdb","movieId":392,"title":"\u041a\u0443\u0431 3: \u0417\u0435\u0440\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3490},{"sourceType":"tmdb","movieId":392,"title":"\u041a\u0443\u0431 \u041d\u043e\u043b\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3491},{"sourceType":"tmdb","movieId":392,"title":"El Cubo 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":3492}],"secondaryYearSourceId":0,"sortTitle":"cube zero","sizeOnDisk":7239816488,"status":"released","overview":"Cube Zero is the third film in the trilogy yet this time instead of a film about people trapped in a deadly cube trying to get out we see it from the eyes of someone who is controlling the cube and the torture of the victims inside. When the nerd can\u2019t stand to see a woman suffer he himself enters the cube to try and save her.","inCinemas":"2004-10-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/392\/poster.jpg?lastWrite=637634424454656206","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/p3t7ofvNlNhRkbAspiUe4ZdNcGA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/392\/fanart.jpg?lastWrite=637625775891007599","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/erA8i1SvSfq3f6he4cGucsqJR9E.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"tJehn9uSjQ0","studio":"Mr. X","path":"\/movies\/Cube Zero (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Cube Zero (2004)","runtime":97,"cleanTitle":"cubezero","imdbId":"tt0377713","tmdbId":438,"titleSlug":"438","certification":"R","genres":["Mystery","Science Fiction","Thriller"],"tags":[],"added":"2018-12-30T21:39:17Z","ratings":{"votes":731,"value":5.7},"movieFile":{"movieId":392,"relativePath":"Cube Zero.2004-Bluray-1080p.mkv","path":"\/movies\/Cube Zero (2004)\/Cube Zero.2004-Bluray-1080p.mkv","size":7239816488,"dateAdded":"2019-01-01T13:22:07Z","sceneName":"Cube.Zero.2004.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8192644,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:37:31","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":464},"collection":{"name":"Cube Collection","tmdbId":432,"images":[]},"id":392},{"title":"Star Wars","originalTitle":"Star Wars","alternateTitles":[{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episode IV - A New Hope","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":650},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: A New Hope","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":651},{"sourceType":"tmdb","movieId":393,"title":"Star Wars Episode IV : A New Hope - Despecialized Edition","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":652},{"sourceType":"tmdb","movieId":393,"title":"Adventures of the Starkiller: Episode 1 - The Star Wars","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1258},{"sourceType":"tmdb","movieId":393,"title":"Star Wars 4K77","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1259},{"sourceType":"tmdb","movieId":393,"title":"The Adventures of Luke Starkiller as Taken from the 'Journal of the Whills': Saga I - Star Wars","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1260},{"sourceType":"tmdb","movieId":393,"title":"The Star Wars","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1261},{"sourceType":"tmdb","movieId":393,"title":"The Star Wars: From the Adventures of Luke Starkiller","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1262},{"sourceType":"tmdb","movieId":393,"title":"Star Wars IV Despecialized","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1336},{"sourceType":"tmdb","movieId":393,"title":"Star Wars Episode 4","sourceId":11,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1348},{"sourceType":"tmdb","movieId":393,"title":"Star Wars DSE: Episode IV - A New Hope","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1730},{"sourceType":"tmdb","movieId":393,"title":"Star Wars Episode IV A New Hope - DE","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1731},{"sourceType":"tmdb","movieId":393,"title":"Star Wars SSE: Episode IV - A New Hope","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1733},{"sourceType":"tmdb","movieId":393,"title":"Star Wars 04 - Uma Nova Esperan\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1735},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Epis\u00f3dio 4 - Uma Nova Esperan\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1737},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Epis\u00f3dio IV - Uma Nova Esperan\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1738},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Uma Nova Esperan\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1739},{"sourceType":"tmdb","movieId":393,"title":"Star Wars : \u00c9pisode IV - Un nouvel espoir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1740},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episode IV - Eine neue Hoffnung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1741},{"sourceType":"tmdb","movieId":393,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda IV - Nov\u00e1 nad\u011bje","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1742},{"sourceType":"tmdb","movieId":393,"title":"Star Wars - Episode IV - Krieg der Sterne","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1743},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episode IV - Et nyt h\u00e5b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1744},{"sourceType":"tmdb","movieId":393,"title":"Stjernekrigen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1745},{"sourceType":"tmdb","movieId":393,"title":"La guerra de las galaxias. Episodio 4, Una nueva esperanza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1746},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episodio IV - Una nueva esperanza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1747},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Una Nueva Esperanza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1748},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episodi IV - Uusi toivo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1749},{"sourceType":"tmdb","movieId":393,"title":"Star Wars - Episode 4 - Un Nouvel Espoir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1750},{"sourceType":"tmdb","movieId":393,"title":"Star Wars : Un nouvel espoir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1751},{"sourceType":"tmdb","movieId":393,"title":"Un nouvel espoir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1752},{"sourceType":"tmdb","movieId":393,"title":"\u039f \u03a0\u03cc\u03bb\u03b5\u03bc\u03bf\u03c2 \u03a4\u03c9\u03bd \u0386\u03c3\u03c4\u03c1\u03c9\u03bd \u039c\u03b9\u03b1 \u039d\u03ad\u03b1 \u0395\u03bb\u03c0\u03af\u03b4\u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1753},{"sourceType":"tmdb","movieId":393,"title":"\u039f \u03a0\u03cc\u03bb\u03b5\u03bc\u03bf\u03c2 \u03a4\u03c9\u03bd \u0386\u03c3\u03c4\u03c1\u03c9\u03bd: \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03bf 4 - \u039c\u03b9\u03b1 \u039d\u03ad\u03b1 \u0395\u03bb\u03c0\u03af\u03b4\u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1754},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: IV. r\u00e9sz - Egy \u00faj rem\u00e9ny","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1755},{"sourceType":"tmdb","movieId":393,"title":"\u0938\u094d\u091f\u093e\u0930 \u0935\u093e\u0930\u094d\u0938","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1756},{"sourceType":"tmdb","movieId":393,"title":"Guerre stellari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1757},{"sourceType":"tmdb","movieId":393,"title":"Guerre stellari (Episodio IV)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1758},{"sourceType":"tmdb","movieId":393,"title":"Star Wars - Guerre stellari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1759},{"sourceType":"tmdb","movieId":393,"title":"Star Wars - Una Nuova Speranza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1760},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episodio IV - Una nuova speranza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1761},{"sourceType":"tmdb","movieId":393,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30b9\u3099 \u30a8\u30d2\u309a\u30bd\u30fc\u30c8\u3099\uff14\uff0f\u65b0\u305f\u306a\u308b\u5e0c\u671b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1762},{"sourceType":"tmdb","movieId":393,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30ba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1763},{"sourceType":"tmdb","movieId":393,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 4: \uc0c8\ub85c\uc6b4 \ud76c\ub9dd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1764},{"sourceType":"tmdb","movieId":393,"title":"Star Wars Episode IV - A New Hope (1977)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1765},{"sourceType":"tmdb","movieId":393,"title":"A Guerra das Estrelas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":1766},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episod IV \u2013 Nytt hopp","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1767},{"sourceType":"tmdb","movieId":393,"title":"Stj\u00e4rnornas Krig","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1768},{"sourceType":"tmdb","movieId":393,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1769},{"sourceType":"tmdb","movieId":393,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131: B\u00f6l\u00fcm IV - Yeni Bir Umut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1770},{"sourceType":"tmdb","movieId":393,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131: Yeni \u00dcmit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1771},{"sourceType":"tmdb","movieId":393,"title":"\u661f\u969b\u5927\u6230\u56db\u90e8\u66f2\uff1a\u66d9\u5149\u4e4d\u73fe","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1772},{"sourceType":"tmdb","movieId":393,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u041d\u043e\u0432\u0430\u044f \u043d\u0430\u0434\u0435\u0436\u0434\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4931},{"sourceType":"tmdb","movieId":393,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 IV - \u041d\u043e\u0432\u0430\u044f \u043d\u0430\u0434\u0435\u0436\u0434\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4932},{"sourceType":"tmdb","movieId":393,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u041d\u043e\u0432\u0430 \u043d\u0430\u0434\u0456\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4933},{"sourceType":"tmdb","movieId":393,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 4 - \u041d\u043e\u0432\u0430\u044f \u043d\u0430\u0434\u0435\u0436\u0434\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5221},{"sourceType":"tmdb","movieId":393,"title":"Star Wars Episode 4 - Krieg der Sterne","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5326},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Eine neue Hoffnung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5337},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episode 4 - A New Hope","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5438},{"sourceType":"tmdb","movieId":393,"title":"Hviezdne vojny IV - Nov\u00e1 n\u00e1dej","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5442},{"sourceType":"tmdb","movieId":393,"title":"Hviezdne vojny: Epiz\u00f3da IV - Nov\u00e1 n\u00e1dej","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5443},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Nov\u00e1 n\u00e1dej","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5444},{"sourceType":"tmdb","movieId":393,"title":"Star Wars IV - Un Nouvel Espoir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5647},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: Episodio IV DSE - Una nuova speranza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5684},{"sourceType":"tmdb","movieId":393,"title":"Star Wars: A New Hope (Episode IV)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6095},{"sourceType":"tmdb","movieId":393,"title":"Star Wars - Episode IV - La Guerre des \u00e9toiles","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6175},{"sourceType":"tmdb","movieId":393,"title":"La guerra de las galaxias","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6195},{"sourceType":"tmdb","movieId":393,"title":"Star Wars 4 - Un nouvel espoir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6247}],"secondaryYearSourceId":0,"sortTitle":"star wars","sizeOnDisk":9392142859,"status":"released","overview":"Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.","inCinemas":"1977-05-25T00:00:00Z","physicalRelease":"1982-09-08T00:00:00Z","digitalRelease":"1987-01-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/393\/poster.jpg?lastWrite=637611071447031972","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/393\/fanart.jpg?lastWrite=637655186851467756","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zqkmTXzjkAgXmEWLRsY4UpTWCeo.jpg"}],"website":"http:\/\/www.starwars.com\/films\/star-wars-episode-iv-a-new-hope","year":1977,"hasFile":true,"youTubeTrailerId":"XHk5kCIiGoM","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars (1977)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Star Wars (1977)","runtime":121,"cleanTitle":"starwars","imdbId":"tt0076759","tmdbId":11,"titleSlug":"11","certification":"PG","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:18Z","ratings":{"votes":15930,"value":8.2},"movieFile":{"movieId":393,"relativePath":"Star Wars.1977-Bluray-1080p.mkv","path":"\/movies\/Star Wars (1977)\/Star Wars.1977-Bluray-1080p.mkv","size":9392142859,"dateAdded":"2018-12-31T00:44:09Z","sceneName":"Star.Wars.Episode.IV.A.New.Hope.1977.1080p.BluRay.X264-AMIABLE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XXCH","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8528000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"2:04:44","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":450},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":393},{"title":"The Empire Strikes Back","originalTitle":"The Empire Strikes Back","alternateTitles":[{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episode 5 - The Empire Strikes Back","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":653},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: The Empire Strikes Back","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":654},{"sourceType":"tmdb","movieId":394,"title":"The Empire Strikes Back: StarWars II","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":655},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episode V - The Empire Strikes Back","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":656},{"sourceType":"tmdb","movieId":394,"title":"Star Wars 5","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":657},{"sourceType":"tmdb","movieId":394,"title":"Star Wars V: The Empire Strikes Back","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":658},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episode V - The Empire Strikes Back - Despecialized Edition","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":659},{"sourceType":"tmdb","movieId":394,"title":"The Empire Strikes Back (Despecialized Edition)","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":660},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episode V - The Empire Strikes Back Special Edition","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":661},{"sourceType":"tmdb","movieId":394,"title":"Star Wars 4K80","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1253},{"sourceType":"tmdb","movieId":394,"title":"Star Wars V Despecialized","sourceId":1891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1333},{"sourceType":"tmdb","movieId":394,"title":"L'Imperi Contraataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1493},{"sourceType":"tmdb","movieId":394,"title":"Star Wars DSE: Episode V - The Empire Strikes Back","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1494},{"sourceType":"tmdb","movieId":394,"title":"Star Wars Episode V The Empire Strikes Back - DC","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1495},{"sourceType":"tmdb","movieId":394,"title":"Star Wars Episode V The Empire Strikes Back - OP","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1496},{"sourceType":"tmdb","movieId":394,"title":"Star Wars 05 - O Imp\u00e9rio Contra-Ataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1497},{"sourceType":"tmdb","movieId":394,"title":"Star Wars 5 O Imp\u00e9rio Contra-Ataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1498},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Epis\u00f3dio V - O Imp\u00e9rio Contra-Ataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1499},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: O Imp\u00e9rio Contra-Ataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1500},{"sourceType":"tmdb","movieId":394,"title":"Star Wars : \u00c9pisode V - L'Empire contre-attaque","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1501},{"sourceType":"tmdb","movieId":394,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda V \u2013 Imp\u00e9rium vrac\u00ed \u00fader","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1502},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episode V - Das Imperium schl\u00e4gt zur\u00fcck","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1504},{"sourceType":"tmdb","movieId":394,"title":"Imperiet sl\u00e5r igen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1505},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episode V - Imperiet sl\u00e5r igen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1506},{"sourceType":"tmdb","movieId":394,"title":"La guerra de las galaxias. Episodio 5, El imperio contraataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1507},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episodi V - Imperiumin vastaisku","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1509},{"sourceType":"tmdb","movieId":394,"title":"L'empire contre-attaque","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1510},{"sourceType":"tmdb","movieId":394,"title":"Star Wars - Episode 5 - L'Empire Contre-Attaque","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1511},{"sourceType":"tmdb","movieId":394,"title":"Star Wars : L'Empire contre-attaque","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1512},{"sourceType":"tmdb","movieId":394,"title":"Star Wars V. r\u00e9sz - A Birodalom visszav\u00e1g","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1513},{"sourceType":"tmdb","movieId":394,"title":"Guerre stellari - L'Impero colpisce ancora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1514},{"sourceType":"tmdb","movieId":394,"title":"L'Impero colpisce ancora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1515},{"sourceType":"tmdb","movieId":394,"title":"L'Impero colpisce ancora (Episodio V)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1516},{"sourceType":"tmdb","movieId":394,"title":"Star Wars - L'Impero colpisce ancora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1517},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episodio V - L'Impero colpisce ancora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1518},{"sourceType":"tmdb","movieId":394,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30b9\u3099 \u30a8\u30d2\u309a\u30bd\u30fc\u30c8\u3099\uff15\uff0f\u5e1d\u56fd\u306e\u9006\u8972","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1519},{"sourceType":"tmdb","movieId":394,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 5: \uc81c\uad6d\uc758 \uc5ed\uc2b5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1520},{"sourceType":"tmdb","movieId":394,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 5 \u2013 \u0418\u043c\u043f\u0435\u0440\u0438\u044f \u043d\u0430\u043d\u043e\u0441\u0438\u0442 \u043e\u0442\u0432\u0435\u0442\u043d\u044b\u0439 \u0443\u0434\u0430\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1521},{"sourceType":"tmdb","movieId":394,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u0418\u043c\u043f\u0435\u0440\u0438\u044f \u043d\u0430\u043d\u043e\u0441\u0438\u0442 \u043e\u0442\u0432\u0435\u0442\u043d\u044b\u0439 \u0443\u0434\u0430\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1522},{"sourceType":"tmdb","movieId":394,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 5 \u2013 \u0418\u043c\u043f\u0435\u0440\u0438\u044f \u043d\u0430\u043d\u043e\u0441\u0438\u0442 \u043e\u0442\u0432\u0435\u0442\u043d\u044b\u0439 \u0443\u0434\u0430\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1523},{"sourceType":"tmdb","movieId":394,"title":"\u0418\u043c\u043f\u0435\u0440\u0438\u044f \u043d\u0430\u043d\u043e\u0441\u0438\u0442 \u043e\u0442\u0432\u0435\u0442\u043d\u044b\u0439 \u0443\u0434\u0430\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1524},{"sourceType":"tmdb","movieId":394,"title":"\u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1525},{"sourceType":"tmdb","movieId":394,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1526},{"sourceType":"tmdb","movieId":394,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131: B\u00f6l\u00fcm V - \u0130mparator'un D\u00f6n\u00fc\u015f\u00fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1527},{"sourceType":"tmdb","movieId":394,"title":"\u661f\u969b\u5927\u6230\u4e94\u90e8\u66f2\uff1a\u5e1d\u570b\u5927\u53cd\u64ca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1528},{"sourceType":"tmdb","movieId":394,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 V - \u0418\u043c\u043f\u0435\u0440\u0438\u044f \u043d\u0430\u043d\u043e\u0441\u0438\u0442 \u043e\u0442\u0432\u0435\u0442\u043d\u044b\u0439 \u0443\u0434\u0430\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4925},{"sourceType":"tmdb","movieId":394,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u0406\u043c\u043f\u0435\u0440\u0456\u044f \u0437\u0430\u0432\u0434\u0430\u0454 \u0443\u0434\u0430\u0440\u0443 \u0443 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4926},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Episodio V - El Imperio contraataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5173},{"sourceType":"tmdb","movieId":394,"title":"Star Wars Episode 5 - Das Imperium schl\u00e4gt zur\u00fcck","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5322},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: Das Imperium schl\u00e4gt zur\u00fcck","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5333},{"sourceType":"tmdb","movieId":394,"title":"Star Wars: The Empire Strikes Back (Episode V)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6093},{"sourceType":"tmdb","movieId":394,"title":"El imperio contraataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6188}],"secondaryYearSourceId":0,"sortTitle":"empire strikes back","sizeOnDisk":2608517486,"status":"released","overview":"The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.","inCinemas":"1980-05-20T00:00:00Z","physicalRelease":"1995-10-25T00:00:00Z","digitalRelease":"2002-05-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/394\/poster.jpg?lastWrite=637601557470986652","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7BuH8itoSrLExs2YZSsM01Qk2no.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/394\/fanart.jpg?lastWrite=637651724714077839","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dMZxEdrWIzUmUoOz2zvmFuutbj7.jpg"}],"website":"http:\/\/www.starwars.com\/films\/star-wars-episode-v-the-empire-strikes-back","year":1980,"hasFile":true,"youTubeTrailerId":"4_46P3Dzvvw","studio":"Lucasfilm Ltd.","path":"\/movies\/The Empire Strikes Back (1980)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/The Empire Strikes Back (1980)","runtime":124,"cleanTitle":"theempirestrikesback","imdbId":"tt0080684","tmdbId":1891,"titleSlug":"1891","certification":"PG","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:19Z","ratings":{"votes":13287,"value":8.4},"movieFile":{"movieId":394,"relativePath":"The Empire Strikes Back.1980-Bluray-1080p.mp4","path":"\/movies\/The Empire Strikes Back (1980)\/The Empire Strikes Back.1980-Bluray-1080p.mp4","size":2608517486,"dateAdded":"2018-12-30T23:38:01Z","sceneName":"Star.Wars.Episode.V.The.Empire.Strikes.Back.1980.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"2:07:21","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":448},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":394},{"title":"Return of the Jedi","originalTitle":"Return of the Jedi","alternateTitles":[{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Episode VI - Return of the Jedi","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":662},{"sourceType":"tmdb","movieId":395,"title":"Star Wars 6","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":663},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Episode 6 - Return of the Jedi","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":664},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Return of the Jedi","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":665},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Revenge of the Jedi","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":666},{"sourceType":"tmdb","movieId":395,"title":"Blue Harvest","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1254},{"sourceType":"tmdb","movieId":395,"title":"Revenge of the Jedi","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1255},{"sourceType":"tmdb","movieId":395,"title":"Star Wars 4K83","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1256},{"sourceType":"tmdb","movieId":395,"title":"Star Wars DSE: Episode VI - The Return Of The Jedi","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1334},{"sourceType":"tmdb","movieId":395,"title":"Star Wars VI Despecialized","sourceId":1892,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1335},{"sourceType":"tmdb","movieId":395,"title":"El Retorn del Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1686},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Episode VI - Die R\u00fcckkehr der Jedi-Ritter","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1687},{"sourceType":"tmdb","movieId":395,"title":"O Retorno de Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1688},{"sourceType":"tmdb","movieId":395,"title":"Star Wars 06 - O Retorno de Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1689},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Epis\u00f3dio VI - O Retorno de Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1690},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: O Retorno de Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1691},{"sourceType":"tmdb","movieId":395,"title":"Star Wars : \u00c9pisode VI - Le retour du Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1692},{"sourceType":"tmdb","movieId":395,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda VI \u2013 N\u00e1vrat Jediho","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1693},{"sourceType":"tmdb","movieId":395,"title":"Krieg der Sterne: Episode VI - Die R\u00fcckkehr der Jedi-Ritter","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1694},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Episode VI - Jedi-ridderen vender tilbage","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1695},{"sourceType":"tmdb","movieId":395,"title":"La guerra de las galaxias. Episodio 6, El retorno del Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1696},{"sourceType":"tmdb","movieId":395,"title":"Star wars: Episodio VI - El retorno del Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1697},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Episodi VI - Jedin paluu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1698},{"sourceType":"tmdb","movieId":395,"title":"Le retour du Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1699},{"sourceType":"tmdb","movieId":395,"title":"Star Wars - Episode 6 - Le Retour du Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1700},{"sourceType":"tmdb","movieId":395,"title":"Star Wars : Le retour du Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1701},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: VI. r\u00e9sz - A jedi visszat\u00e9r","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1702},{"sourceType":"tmdb","movieId":395,"title":"Star Wars VI - Il ritorno dello Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1703},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Episodio VI - Il ritorno dello Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1704},{"sourceType":"tmdb","movieId":395,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30b9\u3099 \u30a8\u30d2\u309a\u30bd\u30fc\u30c8\u3099\uff16\uff0f\u30b7\u3099\u30a7\u30bf\u3099\u30a4\u306e\u5e30\u9084","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1705},{"sourceType":"tmdb","movieId":395,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30ba\uff0f\u30b8\u30a7\u30c0\u30a4\u306e\u5fa9\u8b90","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1706},{"sourceType":"tmdb","movieId":395,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 6: \uc81c\ub2e4\uc774\uc758 \uadc0\ud658","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1707},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Epis\u00f3dio VI - O Regresso de Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":1708},{"sourceType":"tmdb","movieId":395,"title":"\u041f\u043e\u0432\u0435\u0440\u043d\u0435\u043d\u043d\u044f \u0414\u0436\u0435\u0434\u0430\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1709},{"sourceType":"tmdb","movieId":395,"title":"\u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1710},{"sourceType":"tmdb","movieId":395,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1711},{"sourceType":"tmdb","movieId":395,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131: B\u00f6l\u00fcm VI - Jedi'nin D\u00f6n\u00fc\u015f\u00fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1712},{"sourceType":"tmdb","movieId":395,"title":"\u661f\u969b\u5927\u6230\u516d\u90e8\u66f2\uff1a\u7d55\u5730\u5927\u53cd\u653b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1713},{"sourceType":"tmdb","movieId":395,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0414\u0436\u0435\u0434\u0430\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4928},{"sourceType":"tmdb","movieId":395,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 VI - \u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0414\u0436\u0435\u0434\u0430\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4929},{"sourceType":"tmdb","movieId":395,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u041f\u043e\u0432\u0435\u0440\u043d\u0435\u043d\u043d\u044f \u0414\u0436\u0435\u0434\u0430\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4930},{"sourceType":"tmdb","movieId":395,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 6 - \u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0414\u0436\u0435\u0434\u0430\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5219},{"sourceType":"tmdb","movieId":395,"title":"Star Wars Episode 6 - Die R\u00fcckkehr der Jedi-Ritter","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5325},{"sourceType":"tmdb","movieId":395,"title":"Star Wars : Die R\u00fcckkehr der Jedi-Ritter","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5336},{"sourceType":"tmdb","movieId":395,"title":"Star Wars: Return of the Jedi (Episode VI)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5626},{"sourceType":"tmdb","movieId":395,"title":"El retorno del Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6193}],"secondaryYearSourceId":0,"sortTitle":"return jedi","sizeOnDisk":10565028214,"status":"released","overview":"Luke Skywalker leads a mission to rescue his friend Han Solo from the clutches of Jabba the Hutt, while the Emperor seeks to destroy the Rebellion once and for all with a second dreaded Death Star.","inCinemas":"1983-05-25T00:00:00Z","physicalRelease":"1995-10-25T00:00:00Z","digitalRelease":"2002-05-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/395\/poster.jpg?lastWrite=637611071268115191","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mDCBQNhR6R0PVFucJl0O4Hp5klZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/395\/fanart.jpg?lastWrite=637651725430666424","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iP2tEA2A77qhbhRfcFkiD6WFOqH.jpg"}],"website":"http:\/\/www.starwars.com\/films\/star-wars-episode-vi-return-of-the-jedi","year":1983,"hasFile":true,"youTubeTrailerId":"1x4OmSgR714","studio":"Lucasfilm Ltd.","path":"\/movies\/Return of the Jedi (1983)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Return of the Jedi (1983)","runtime":135,"cleanTitle":"returnjedi","imdbId":"tt0086190","tmdbId":1892,"titleSlug":"1892","certification":"PG","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:20Z","ratings":{"votes":11752,"value":7.9},"movieFile":{"movieId":395,"relativePath":"Return of the Jedi.1983-Bluray-1080p.mkv","path":"\/movies\/Return of the Jedi (1983)\/Return of the Jedi.1983-Bluray-1080p.mkv","size":10565028214,"dateAdded":"2018-12-31T02:31:38Z","sceneName":"Star.Wars.Episode.VI.Return.of.the.Jedi.1983.1080p.BluRay.X264-AMIABLE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XXCH","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8940000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x824","runTime":"2:14:47","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":455},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":395},{"title":"Star Wars: The Force Awakens","originalTitle":"Star Wars: The Force Awakens","alternateTitles":[{"sourceType":"tmdb","movieId":396,"title":"The Force Awakens","sourceId":140607,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":667},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Episode VII","sourceId":140607,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":668},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Episode 7 - The Force Awakens","sourceId":140607,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":669},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Episode VII - The Force Awakens","sourceId":140607,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":670},{"sourceType":"tmdb","movieId":396,"title":"Star Wars 7","sourceId":140607,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":671},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Episode VII - The Force Awakens 3D","sourceId":140607,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":672},{"sourceType":"tmdb","movieId":396,"title":"O Despertar da For\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1847},{"sourceType":"tmdb","movieId":396,"title":"Star Wars 07 - O Despertar da For\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1848},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Epis\u00f3dio VII - O Despertar da For\u00e7a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1850},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: \u00c9pisode VII - Le r\u00e9veil de la force","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1851},{"sourceType":"tmdb","movieId":396,"title":"Star Wars Episode VII Das Erwachen der Macht","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1852},{"sourceType":"tmdb","movieId":396,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Epizoda VII \u2013 S\u00edla se probouz\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1853},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Epizoda VII \u2013 S\u00edla se probouz\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1854},{"sourceType":"tmdb","movieId":396,"title":"Star Wars VII - Das Erwachen der Macht","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1855},{"sourceType":"tmdb","movieId":396,"title":"La guerra de las galaxias. Episodio 7, El despertar de la fuerza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1856},{"sourceType":"tmdb","movieId":396,"title":"La guerra de las galaxias. Episodio VII. El despertar de la fuerza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1857},{"sourceType":"tmdb","movieId":396,"title":"Star Wars. Episodio VII: El despertar de la fuerza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1858},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Episodi VII - Voima her\u00e4\u00e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1859},{"sourceType":"tmdb","movieId":396,"title":"Le r\u00e9veil de la force","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1860},{"sourceType":"tmdb","movieId":396,"title":"Star Wars - Episode 7 - Le R\u00e9veil de la Force","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1861},{"sourceType":"tmdb","movieId":396,"title":"\u05de\u05dc\u05d7\u05de\u05ea \u05d4\u05db\u05d5\u05db\u05d1\u05d9\u05dd: \u05d4\u05db\u05d5\u05d7 \u05de\u05ea\u05e2\u05d5\u05e8\u05e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1862},{"sourceType":"tmdb","movieId":396,"title":"\u062c\u0646\u06af \u0633\u062a\u0627\u0631\u06af\u0627\u0646: \u0646\u06cc\u0631\u0648 \u0628\u0631 \u0645\u06cc \u062e\u06cc\u0632\u062f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1863},{"sourceType":"tmdb","movieId":396,"title":"Star Wars - Episodio VII - Il Risveglio Della Forza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1864},{"sourceType":"tmdb","movieId":396,"title":"\u30b9\u30bf\u30fc\u30fb\u30a6\u30a9\u30fc\u30ba\uff0f\u30d5\u30a9\u30fc\u30b9\u306e\u899a\u9192","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1865},{"sourceType":"tmdb","movieId":396,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 7: \uae68\uc5b4\ub09c \ud3ec\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1866},{"sourceType":"tmdb","movieId":396,"title":"\uc2a4\ud0c0\uc6cc\uc988-\uae68\uc5b4\ub09c \ud3ec\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1867},{"sourceType":"tmdb","movieId":396,"title":"\u017dvaig\u017ed\u017ei\u0173 karai: Epizodas VII \u2013 galia nubunda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1868},{"sourceType":"tmdb","movieId":396,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u041f\u0440\u043e\u0431\u0443\u0436\u0434\u0435\u043d\u0438\u0435 \u0441\u0438\u043b\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1869},{"sourceType":"tmdb","movieId":396,"title":"\u041f\u0440\u043e\u0431\u0443\u0436\u0434\u0435\u043d\u0438\u0435 \u0441\u0438\u043b\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1871},{"sourceType":"tmdb","movieId":396,"title":"\u0437\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b 7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1872},{"sourceType":"tmdb","movieId":396,"title":"Y\u0131ld\u0131z Sava\u015flar\u0131 7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1873},{"sourceType":"tmdb","movieId":396,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u041f\u0440\u043e\u0431\u0443\u0434\u0436\u0435\u043d\u043d\u044f \u0441\u0438\u043b\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1874},{"sourceType":"tmdb","movieId":396,"title":"Star Wars 7 - Das Erwachen der Macht","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2636},{"sourceType":"tmdb","movieId":396,"title":"Star Wars 7 - The Force Awakens","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5202},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Le R\u00e9veil de la Force","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5238},{"sourceType":"tmdb","movieId":396,"title":"Star Wars Episode 7 - Das Erwachen der Macht","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5329},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Episodio 7 - El Despertar de la Fuerza","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5826},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: The Force Awakens (Episode VII)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6099},{"sourceType":"tmdb","movieId":396,"title":"Star Wars 7 - Le R\u00e9veil de la Force","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6251},{"sourceType":"tmdb","movieId":396,"title":"Star Wars: Espisodio VII: El despertar de la fuerza.","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6270}],"secondaryYearSourceId":0,"sortTitle":"star wars force awakens","sizeOnDisk":11738574444,"status":"released","overview":"Thirty years after defeating the Galactic Empire, Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.","inCinemas":"2015-12-15T00:00:00Z","physicalRelease":"2016-03-15T00:00:00Z","digitalRelease":"2016-04-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/396\/poster.jpg?lastWrite=637657782252126702","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wqnLdwVXoBjKibFRR5U3y0aDUhs.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/396\/fanart.jpg?lastWrite=637260150043895712","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/k6EOrckWFuz7I4z4wiRwz8zsj4H.jpg"}],"website":"http:\/\/www.starwars.com\/films\/star-wars-episode-vii","year":2015,"hasFile":true,"youTubeTrailerId":"sGbxmsDFVnE","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars The Force Awakens (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Star Wars The Force Awakens (2015)","runtime":136,"cleanTitle":"starwarsforceawakens","imdbId":"tt2488496","tmdbId":140607,"titleSlug":"140607","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:20Z","ratings":{"votes":16108,"value":7.3},"movieFile":{"movieId":396,"relativePath":"Star Wars The Force Awakens.2015-Bluray-1080p.mkv","path":"\/movies\/Star Wars The Force Awakens (2015)\/Star Wars The Force Awakens.2015-Bluray-1080p.mkv","size":11738574444,"dateAdded":"2018-12-31T01:07:04Z","sceneName":"Star.Wars.Episode.VII.The.Force.Awakens.2015.1080p.BluRay.x264-Replica[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9825000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:18:06","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"Replica","edition":"","id":452},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":396},{"title":"Star Wars: The Rise of Skywalker","originalTitle":"Star Wars: The Rise of Skywalker","alternateTitles":[{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Episode IX","sourceId":181812,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":891},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Episode IX - The Rise of Skywalker","sourceId":181812,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1278},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Episode 9 - The Rise of Skywalker","sourceId":181812,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1313},{"sourceType":"tmdb","movieId":397,"title":"Star Wars 9","sourceId":181812,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1344},{"sourceType":"tmdb","movieId":397,"title":"Star Wars - Episode IX - L'Ascension de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1902},{"sourceType":"tmdb","movieId":397,"title":"Star Wars 09 - A Ascensao Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1903},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Epis\u00f3dio IX - A Ascens\u00e3o Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1904},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: L'ascension de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1905},{"sourceType":"tmdb","movieId":397,"title":"Hv\u011bzdn\u00e9 v\u00e1lky: Vzestup Skylwalkera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1906},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Epizoda IX - Vzestup Skywalkera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1907},{"sourceType":"tmdb","movieId":397,"title":"Star Wars - Der Aufstieg Skywalkers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1908},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Episode IX - Der Aufstieg Skywalkers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1909},{"sourceType":"tmdb","movieId":397,"title":"La Guerra de las Galaxias. Episodio IX. El Ascenso De Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1910},{"sourceType":"tmdb","movieId":397,"title":"La guerra de las galaxias. Episodio 9, El ascenso de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1911},{"sourceType":"tmdb","movieId":397,"title":"L'ascension de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1912},{"sourceType":"tmdb","movieId":397,"title":"Star Wars - Episode 9 - L'Ascension de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1913},{"sourceType":"tmdb","movieId":397,"title":"Star Wars 9 (IX) - The Rise of Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1914},{"sourceType":"tmdb","movieId":397,"title":"\u10d5\u10d0\u10e0\u10e1\u10d9\u10d5\u10da\u10d0\u10d5\u10e3\u10e0\u10d8 \u10dd\u10db\u10d4\u10d1\u10d8: \u10d4\u10de\u10d8\u10d6\u10dd\u10d3\u10d8 IX \u2013 \u10e1\u10e5\u10d0\u10d8\u10e3\u10dd\u10d9\u10d4\u10e0\u10d8\u10e1 \u10d0\u10e6\u10d6\u10d4\u10d5\u10d4\u10d1\u10d0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1915},{"sourceType":"tmdb","movieId":397,"title":"Star Wars - L'ascesa di Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1916},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Episodio IX - L'ascesa di Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1917},{"sourceType":"tmdb","movieId":397,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 9 \ub77c\uc774\uc988 \uc624\ube0c \uc2a4\uce74\uc774\uc6cc\ucee4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1918},{"sourceType":"tmdb","movieId":397,"title":"\uc2a4\ud0c0\uc6cc\uc988-\ub77c\uc774\uc988 \uc624\ube0c \uc2a4\uce74\uc774\uc6cc\ucee4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1919},{"sourceType":"tmdb","movieId":397,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u0421\u043a\u0430\u0439\u0443\u043e\u043a\u0435\u0440. \u0412\u043e\u0441\u0445\u043e\u0434","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1920},{"sourceType":"tmdb","movieId":397,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 9 - \u0421\u043a\u0430\u0439\u0443\u043e\u043a\u0435\u0440. \u0412\u043e\u0441\u0445\u043e\u0434","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1921},{"sourceType":"tmdb","movieId":397,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 IX - \u0421\u043a\u0430\u0439\u0443\u043e\u043a\u0435\u0440. \u0412\u043e\u0441\u0445\u043e\u0434","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1922},{"sourceType":"tmdb","movieId":397,"title":"El ascenso de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2638},{"sourceType":"tmdb","movieId":397,"title":"star wars el ascenso de skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2915},{"sourceType":"tmdb","movieId":397,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0412\u0456\u0439\u043d\u0438: \u0421\u043a\u0430\u0439\u0432\u043e\u043a\u0435\u0440. \u0421\u0445\u043e\u0434\u0436\u0435\u043d\u043d\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4945},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: Episode IX - The Rise of Skywalker 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4946},{"sourceType":"tmdb","movieId":397,"title":"Star Wars IX. r\u00e9sz \u2013 Skywalker kora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5298},{"sourceType":"tmdb","movieId":397,"title":"Star Wars Episode 9 - Der Aufstieg Skywalkers","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5331},{"sourceType":"tmdb","movieId":397,"title":"Star Wars Episodio IX - El ascenso de skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5490},{"sourceType":"tmdb","movieId":397,"title":"Star Wars 9 - The Rise of Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5618},{"sourceType":"tmdb","movieId":397,"title":"\u661f\u969b\u5927\u6230\u4e5d\u90e8\u66f2\uff1a\u5929\u884c\u8005\u7684\u5d1b\u8d77","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5788},{"sourceType":"tmdb","movieId":397,"title":"Star Wars: The Rise of Skywalker (Episode IX)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6101},{"sourceType":"tmdb","movieId":397,"title":"Star Wars 9 - L'Ascension de Skywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6253}],"secondaryYearSourceId":0,"sortTitle":"star wars rise skywalker","sizeOnDisk":2807461388,"status":"released","overview":"The surviving Resistance faces the First Order once again as the journey of Rey, Finn and Poe Dameron continues. With the power and knowledge of generations behind them, the final battle begins.","inCinemas":"2019-12-18T00:00:00Z","physicalRelease":"2020-03-31T00:00:00Z","digitalRelease":"2020-03-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/397\/poster.jpg?lastWrite=637652590991087440","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/db32LaOibwEliAmSL2jjDF6oDdj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/397\/fanart.jpg?lastWrite=637652590993647392","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jn52me8AagfNt7r84SgQbV0R9ZG.jpg"}],"website":"https:\/\/www.starwars.com\/films\/star-wars-episode-ix-the-rise-of-skywalker","year":2019,"hasFile":true,"youTubeTrailerId":"8Qn_spdM5Zg","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars Episode IX (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Star Wars Episode IX (2019)","runtime":142,"cleanTitle":"starwarsriseskywalker","imdbId":"tt2527338","tmdbId":181812,"titleSlug":"181812","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:21Z","ratings":{"votes":7017,"value":6.5},"movieFile":{"movieId":397,"relativePath":"Star Wars The Rise of Skywalker.2019-Bluray-1080p.mp4","path":"\/movies\/Star Wars Episode IX (2019)\/Star Wars The Rise of Skywalker.2019-Bluray-1080p.mp4","size":2807461388,"dateAdded":"2020-03-16T08:49:27Z","sceneName":"Star Wars Episode IX - The Rise Of Skywalker (2019) [1080p] [BluRay] [5.1] [YTS.MX]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:21:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":661},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":397},{"title":"Star Wars: The Last Jedi","originalTitle":"Star Wars: The Last Jedi","alternateTitles":[{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episode VIII","sourceId":181808,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":675},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episode VIII \u2013 The Last Jedi","sourceId":181808,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":676},{"sourceType":"tmdb","movieId":398,"title":"The Last Jedi","sourceId":181808,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":677},{"sourceType":"tmdb","movieId":398,"title":"Star Wars - The Last Jedi - 3D","sourceId":181808,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":959},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episode VIII - The Last Jedi: Legendary","sourceId":181808,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1265},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episode 8 - The Last Jedi","sourceId":181808,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1318},{"sourceType":"tmdb","movieId":398,"title":"Star Wars 08 - Os \u00daltimos Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1875},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Epis\u00f3dio VIII - Os \u00daltimos Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1876},{"sourceType":"tmdb","movieId":398,"title":"Star Wars : \u00c9pisode VIII - Les derniers Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1877},{"sourceType":"tmdb","movieId":398,"title":"Star Wars Episode VIII: Le Dernier Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1878},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episode VIII - Die letzten Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1880},{"sourceType":"tmdb","movieId":398,"title":"La guerra de las galaxias, Episodio 8, Los \u00faltimos Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1881},{"sourceType":"tmdb","movieId":398,"title":"La guerra de las galaxias. Episodio VIII: Los \u00faltimos Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1882},{"sourceType":"tmdb","movieId":398,"title":"Star Wars - Episodio VIII - Los \u00faltimos Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1883},{"sourceType":"tmdb","movieId":398,"title":"T\u00e4htien sota: Episodi VIII","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1884},{"sourceType":"tmdb","movieId":398,"title":"Les derniers Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1885},{"sourceType":"tmdb","movieId":398,"title":"Star Wars - Episode 8 - Les Derniers Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1886},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03bf 8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1887},{"sourceType":"tmdb","movieId":398,"title":"\u039f \u03c0\u03cc\u03bb\u03b5\u03bc\u03bf\u03c2 \u03c4\u03c9\u03bd \u03ac\u03c3\u03c4\u03c1\u03c9\u03bd: \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03bf 8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1888},{"sourceType":"tmdb","movieId":398,"title":"Star Wars - Gli ultimi Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1889},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episodio VIII - Gli ultimi Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1890},{"sourceType":"tmdb","movieId":398,"title":"\uc2a4\ud0c0 \uc6cc\uc988 \uc5d0\ud53c\uc18c\ub4dc 8 \ub77c\uc2a4\ud2b8 \uc81c\ub2e4\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1891},{"sourceType":"tmdb","movieId":398,"title":"\uc2a4\ud0c0 \uc6cc\uc988: \ub77c\uc2a4\ud2b8 \uc81c\ub2e4\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1892},{"sourceType":"tmdb","movieId":398,"title":"\u017dvaig\u017ed\u017ei\u0173 karai: Epizodas VII \u2013 paskutiniai d\u017eedajai","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1893},{"sourceType":"tmdb","movieId":398,"title":"Gwiezdne Wojny: Cz\u0119\u015b\u0107 VIII - Ostatni Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":1894},{"sourceType":"tmdb","movieId":398,"title":"Gwiezdne wojny: Ostatni Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":1895},{"sourceType":"tmdb","movieId":398,"title":"Razboiul Stelelor: Ultimul Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1896},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Ultimii Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1897},{"sourceType":"tmdb","movieId":398,"title":"Ratovi Zvezde: Epizoda 8 - Poslednji D\u017eedaj","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1898},{"sourceType":"tmdb","movieId":398,"title":"\u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1899},{"sourceType":"tmdb","movieId":398,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u042d\u043f\u0438\u0437\u043e\u0434 8 - \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0434\u0436\u0435\u0434\u0430\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1900},{"sourceType":"tmdb","movieId":398,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u0415\u043f\u0456\u0437\u043e\u0434 8 - \u041e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u0434\u0436\u0435\u0434\u0430\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1901},{"sourceType":"tmdb","movieId":398,"title":"\u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b: \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0414\u0436\u0435\u0434\u0430\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4942},{"sourceType":"tmdb","movieId":398,"title":"\u0417\u043e\u0440\u044f\u043d\u0456 \u0432\u0456\u0439\u043d\u0438: \u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0414\u0436\u0435\u0434\u0430\u0457","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4943},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Episode VIII - The Last Jedi 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4944},{"sourceType":"tmdb","movieId":398,"title":"Lufta e yjeve: Xhedai i fundit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5002},{"sourceType":"tmdb","movieId":398,"title":"Star Wars 8 - The Last Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5203},{"sourceType":"tmdb","movieId":398,"title":"Star Wars Episode 8 - Die letzten Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5330},{"sourceType":"tmdb","movieId":398,"title":"Star Wars: Epizoda VIII - Posledn\u00ed z Jedi\u016f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5627},{"sourceType":"tmdb","movieId":398,"title":"Star Wars\u0589 The Last Jedi (Episode VIII)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6100},{"sourceType":"tmdb","movieId":398,"title":"Star Wars 8 - Les Derniers Jedi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6252}],"secondaryYearSourceId":0,"sortTitle":"star wars last jedi","sizeOnDisk":44102974210,"status":"released","overview":"Rey develops her newly discovered abilities with the guidance of Luke Skywalker, who is unsettled by the strength of her powers. Meanwhile, the Resistance prepares to do battle with the First Order.","inCinemas":"2017-12-13T00:00:00Z","physicalRelease":"2018-03-27T00:00:00Z","digitalRelease":"2018-03-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/398\/poster.jpg?lastWrite=637260150051575586","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kOVEVeg59E0wsnXmF9nrh6OmWII.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/398\/fanart.jpg?lastWrite=637260150058855466","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5Iw7zQTHVRBOYpA0V6z0yypOPZh.jpg"}],"website":"https:\/\/www.starwars.com\/films\/star-wars-episode-viii-the-last-jedi","year":2017,"hasFile":true,"youTubeTrailerId":"Q0CbN8sfihY","studio":"Lucasfilm Ltd.","path":"\/movies\/Star Wars The Last Jedi (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Star Wars The Last Jedi (2017)","runtime":152,"cleanTitle":"starwarslastjedi","imdbId":"tt2527336","tmdbId":181808,"titleSlug":"181808","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-12-30T21:39:22Z","ratings":{"votes":12196,"value":6.9},"movieFile":{"movieId":398,"relativePath":"Star Wars The Last Jedi.2017-Remux-1080p.mkv","path":"\/movies\/Star Wars The Last Jedi (2017)\/Star Wars The Last Jedi.2017-Remux-1080p.mkv","size":44102974210,"dateAdded":"2018-12-30T23:05:29Z","sceneName":"Star.Wars.The.Last.Jedi.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4629403,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":30704208,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:31:51","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ English \/ French \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":445},"collection":{"name":"Star Wars Collection","tmdbId":10,"images":[]},"id":398},{"title":"Spider-Man: Homecoming","originalTitle":"Spider-Man: Homecoming","alternateTitles":[{"sourceType":"tmdb","movieId":399,"title":"\ub9c8\ube14 \uc2a4\ud30c\uc774\ub354\ub9e8 \ud648\ucee4\ubc0d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1727},{"sourceType":"tmdb","movieId":399,"title":"hombre ara\u00f1a: Regreso a casa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5140},{"sourceType":"tmdb","movieId":399,"title":"Spider-Man: De regreso a casa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5583},{"sourceType":"tmdb","movieId":399,"title":"Homem-Aranha: De Volta ao Lar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5974}],"secondaryYearSourceId":0,"sortTitle":"spider man homecoming","sizeOnDisk":30822283195,"status":"released","overview":"Following the events of Captain America: Civil War, Peter Parker, with the help of his mentor Tony Stark, tries to balance his life as an ordinary high school student in Queens, New York City, with fighting crime as his superhero alter ego Spider-Man as a new threat, the Vulture, emerges.","inCinemas":"2017-07-05T00:00:00Z","physicalRelease":"2017-10-17T00:00:00Z","digitalRelease":"2017-10-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/399\/poster.jpg?lastWrite=637654321526755828","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c24sv2weTHPsmDa7jEMN0m2P3RT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/399\/fanart.jpg?lastWrite=637654321528435805","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tTlAA0REGPXSZPBfWyTW9ipIv1I.jpg"}],"website":"http:\/\/www.spidermanhomecoming.com","year":2017,"hasFile":true,"youTubeTrailerId":"xEvV3OsE2WM","studio":"Marvel Studios","path":"\/movies\/Spider-Man Homecoming (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Spider-Man Homecoming (2017)","runtime":133,"cleanTitle":"spidermanhomecoming","imdbId":"tt2250912","tmdbId":315635,"titleSlug":"315635","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:23Z","ratings":{"votes":16722,"value":7.4},"movieFile":{"movieId":399,"relativePath":"Spider-Man Homecoming.2017-Remux-1080p.mkv","path":"\/movies\/Spider-Man Homecoming (2017)\/Spider-Man Homecoming.2017-Remux-1080p.mkv","size":30822283195,"dateAdded":"2018-12-31T06:15:52Z","sceneName":"Spider-Man.Homecoming.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:13:28","scanType":"Progressive","subtitles":"English \/ English \/ English \/ French \/ Spanish \/ Spanish \/ French \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":459},"collection":{"name":"Spider-Man (Avengers) Collection","tmdbId":531241,"images":[]},"id":399},{"title":"Transformers: Dark of the Moon","originalTitle":"Transformers: Dark of the Moon","alternateTitles":[{"sourceType":"tmdb","movieId":400,"title":"Transformers 3","sourceId":38356,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":678},{"sourceType":"tmdb","movieId":400,"title":"Transformers III Dark of the Moon","sourceId":38356,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":679},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3 Dark of the Moon","sourceId":38356,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":681},{"sourceType":"tmdb","movieId":400,"title":"Transformers :The Dark Side of the Moon","sourceId":38356,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":682},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3: O Lado Oculto da Lua","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3579},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3: Odvr\u00e1cen\u00e1 strana M\u011bs\u00edce","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3583},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3 \u2013 Die dunkle Seite des Mondes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3585},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3: El lado oscuro de la Luna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3586},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3: A Hold s\u00f6t\u00e9ts\u00e9ge","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3587},{"sourceType":"tmdb","movieId":400,"title":"Transformers 3 - resta solo la terra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3588},{"sourceType":"tmdb","movieId":400,"title":"Transformeriai 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3590},{"sourceType":"tmdb","movieId":400,"title":"\u0422\u0440\u0430\u043d\u0441\u0444\u043e\u0440\u043c\u0435\u0440\u044b 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3591},{"sourceType":"tmdb","movieId":400,"title":"\u8b8a\u5f62\u91d1\u525b3 \u9ed1\u6708\u964d\u81e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3592},{"sourceType":"tmdb","movieId":400,"title":"Transformerlar 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3593},{"sourceType":"tmdb","movieId":400,"title":"Transformerlar 3: Oyning qorong\u02bbi tomoni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3594}],"secondaryYearSourceId":0,"sortTitle":"transformers dark moon","sizeOnDisk":3161172013,"status":"released","overview":"The Autobots continue to work for NEST, now no longer in secret. But after discovering a strange artifact during a mission in Chernobyl, it becomes apparent to Optimus Prime that the United States government has been less than forthright with them.","inCinemas":"2011-06-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/400\/poster.jpg?lastWrite=637398486716320271","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yUqm7eke9oL0ZmKJfgIJLs8WNuJ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/400\/fanart.jpg?lastWrite=637655186955626225","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/af2duhAt9evRkxzkhxjgQ1naOM6.jpg"}],"website":"http:\/\/www.transformersmovie.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"E-Sg_zJrDxc","studio":"Paramount","path":"\/movies\/Transformers Dark of the Moon (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Transformers Dark of the Moon (2011)","runtime":154,"cleanTitle":"transformersdarkmoon","imdbId":"tt1399103","tmdbId":38356,"titleSlug":"38356","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2018-12-30T21:39:23Z","ratings":{"votes":6489,"value":6.1},"movieFile":{"movieId":400,"relativePath":"Transformers Dark of the Moon.2011-Bluray-1080p.mp4","path":"\/movies\/Transformers Dark of the Moon (2011)\/Transformers Dark of the Moon.2011-Bluray-1080p.mp4","size":3161172013,"dateAdded":"2018-12-30T23:32:54Z","sceneName":"Transformers.Dark.Of.The.Moon.2011.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:34:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":446},"collection":{"name":"Transformers Collection","tmdbId":8650,"images":[]},"id":400},{"title":"Transformers: Age of Extinction","originalTitle":"Transformers: Age of Extinction","alternateTitles":[{"sourceType":"tmdb","movieId":401,"title":"Transformers 4 - Age of Extinction","sourceId":91314,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":683},{"sourceType":"tmdb","movieId":401,"title":"Transformers 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1933},{"sourceType":"tmdb","movieId":401,"title":"Transformers IV - Age of Extinction","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1934},{"sourceType":"tmdb","movieId":401,"title":"Transformers - A Era da Extin\u00e7\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1935},{"sourceType":"tmdb","movieId":401,"title":"Transformers 4 - A Era da Extin\u00e7\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1936},{"sourceType":"tmdb","movieId":401,"title":"Transformers 4: La era de la extinci\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1938},{"sourceType":"tmdb","movieId":401,"title":"Transformers - Tuhon aikakausi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":1941},{"sourceType":"tmdb","movieId":401,"title":"Transformers - L'age de l'extinction","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1942},{"sourceType":"tmdb","movieId":401,"title":"Transformers 4 L'age de l'extinction","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1943},{"sourceType":"tmdb","movieId":401,"title":"Transformers 4: \u0395\u03c0\u03bf\u03c7\u03ae \u0391\u03c6\u03b1\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1944},{"sourceType":"tmdb","movieId":401,"title":"Transformers 4: A kihal\u00e1s kora","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1945},{"sourceType":"tmdb","movieId":401,"title":"\u0634\u0648\u0646\u062f\u06af\u0627\u0646: \u0639\u0635\u0631 \u0627\u0646\u0642\u0631\u0627\u0636","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1947},{"sourceType":"tmdb","movieId":401,"title":"\ud2b8\ub79c\uc2a4\ud3ec\uba38 4: \uc0ac\ub77c\uc9c4 \uc2dc\ub300","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1948},{"sourceType":"tmdb","movieId":401,"title":"Transformeriai 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1949},{"sourceType":"tmdb","movieId":401,"title":"Transformers: Wiek zag\u0142ady","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":1950},{"sourceType":"tmdb","movieId":401,"title":"Transformersi - Doba izumiranja","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1951},{"sourceType":"tmdb","movieId":401,"title":"\u0e17\u0e23\u0e32\u0e19\u0e2a\u0e4c\u0e1f\u0e2d\u0e23\u0e4c\u0e40\u0e21\u0e2d\u0e23\u0e4c\u0e2a 4: \u0e21\u0e2b\u0e32\u0e27\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e22\u0e38\u0e04\u0e2a\u0e39\u0e0d\u0e1e\u0e31\u0e19\u0e18\u0e38\u0e4c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1953},{"sourceType":"tmdb","movieId":401,"title":"\u0422\u0440\u0430\u043d\u0441\u0444\u043e\u0440\u043c\u0435\u0440\u0438 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1955},{"sourceType":"tmdb","movieId":401,"title":"Transformers - \u00c4ra des Untergangs","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5233},{"sourceType":"tmdb","movieId":401,"title":"\u8b8a\u5f62\u91d1\u525b4\uff1a\u6bb2\u6ec5\u4e16\u7d00","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6181}],"secondaryYearSourceId":0,"sortTitle":"transformers age extinction","sizeOnDisk":3380788064,"status":"released","overview":"As humanity picks up the pieces, following the conclusion of \"Transformers: Dark of the Moon,\" Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.","inCinemas":"2014-06-25T00:00:00Z","physicalRelease":"2014-11-17T00:00:00Z","digitalRelease":"2016-09-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/401\/poster.jpg?lastWrite=637388976492053720","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jyzrfx2WaeY60kYZpPYepSjGz4S.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/401\/fanart.jpg?lastWrite=637638749906730127","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/alItugxBbjNC10ezLSisplhSKJ.jpg"}],"website":"","year":2014,"hasFile":true,"youTubeTrailerId":"S30VkLn5a2o","studio":"Hasbro Studios","path":"\/movies\/Transformers Age of Extinction (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Transformers Age of Extinction (2014)","runtime":165,"cleanTitle":"transformersageextinction","imdbId":"tt2109248","tmdbId":91314,"titleSlug":"91314","certification":"PG-13","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2018-12-30T21:39:24Z","ratings":{"votes":6266,"value":5.9},"movieFile":{"movieId":401,"relativePath":"Transformers Age of Extinction.2014-Bluray-1080p.mp4","path":"\/movies\/Transformers Age of Extinction (2014)\/Transformers Age of Extinction.2014-Bluray-1080p.mp4","size":3380788064,"dateAdded":"2018-12-31T01:48:40Z","sceneName":"Transformers.Age.of.Extinction.2014.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:45:07","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":454},"collection":{"name":"Transformers Collection","tmdbId":8650,"images":[]},"id":401},{"title":"Transformers: The Last Knight","originalTitle":"Transformers: The Last Knight","alternateTitles":[{"sourceType":"tmdb","movieId":402,"title":"Transformers 5 - The Last Knight","sourceId":335988,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":684},{"sourceType":"tmdb","movieId":402,"title":"Transformers 5","sourceId":335988,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":685},{"sourceType":"tmdb","movieId":402,"title":"Transformers 5 - O \u00daltimo Cavaleiro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1956},{"sourceType":"tmdb","movieId":402,"title":"Transformers 5 The Last Knight - FR 2017","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1957},{"sourceType":"tmdb","movieId":402,"title":"Transformers 5: El Ultimo Caballero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1958},{"sourceType":"tmdb","movieId":402,"title":"Transformers 5 The last knight","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1959},{"sourceType":"tmdb","movieId":402,"title":"Transformers 5: Az utols\u00f3 lovag","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1960}],"secondaryYearSourceId":0,"sortTitle":"transformers last knight","sizeOnDisk":14083590528,"status":"released","overview":"Autobots and Decepticons are at war, with humans on the sidelines. Optimus Prime is gone. The key to saving our future lies buried in the secrets of the past, in the hidden history of Transformers on Earth.","inCinemas":"2017-06-16T00:00:00Z","physicalRelease":"2017-09-26T00:00:00Z","digitalRelease":"2017-09-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/402\/poster.jpg?lastWrite=637260150122254427","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/s5HQf2Gb3lIO2cRcFwNL9sn1o1o.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/402\/fanart.jpg?lastWrite=637260150129574307","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1n00NlOGRFZVs8coBxyZLm5l4EC.jpg"}],"website":"http:\/\/www.transformersmovie.com\/","year":2017,"hasFile":true,"youTubeTrailerId":"e_uBTsgRJlk","studio":"Hasbro Studios","path":"\/movies\/Transformers The Last Knight (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Transformers The Last Knight (2017)","runtime":154,"cleanTitle":"transformerslastknight","imdbId":"tt3371366","tmdbId":335988,"titleSlug":"335988","certification":"PG-13","genres":["Action","Adventure","Science Fiction"],"tags":[],"added":"2018-12-30T21:39:25Z","ratings":{"votes":4598,"value":6.1},"movieFile":{"movieId":402,"relativePath":"Transformers The Last Knight.2017-Bluray-1080p.mkv","path":"\/movies\/Transformers The Last Knight (2017)\/Transformers The Last Knight.2017-Bluray-1080p.mkv","size":14083590528,"dateAdded":"2018-12-31T23:56:45Z","sceneName":"Transformers.The.Last.Knight.2017.REPACK.3D.1080p.BluRay.x264-PSYCHD[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11504000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1008","runTime":"2:34:37","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"PSYCHD","edition":"","id":461},"collection":{"name":"Transformers Collection","tmdbId":8650,"images":[]},"id":402},{"title":"Fantastic Four","originalTitle":"Fantastic Four","alternateTitles":[{"sourceType":"tmdb","movieId":403,"title":"Fantastic Four 1","sourceId":9738,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":686},{"sourceType":"tmdb","movieId":403,"title":"Fantastic 4","sourceId":9738,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":687},{"sourceType":"tmdb","movieId":403,"title":"Die Fantastischen Vier","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2973},{"sourceType":"tmdb","movieId":403,"title":"Fantastic Four 1 - 4mal die Action","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2974},{"sourceType":"tmdb","movieId":403,"title":"Los cuatro fant\u00e1sticos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2975},{"sourceType":"tmdb","movieId":403,"title":"\ud310\ud0c0\uc2a4\ud2f1 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2976},{"sourceType":"tmdb","movieId":403,"title":"Los 4 fant\u00e1sticos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4236}],"secondaryYearSourceId":0,"sortTitle":"fantastic four","sizeOnDisk":8509690925,"status":"released","overview":"During a space voyage, four scientists are altered by cosmic rays: Reed Richards gains the ability to stretch his body; Sue Storm can become invisible; Johnny Storm controls fire; and Ben Grimm is turned into a super-strong \u2026 thing. Together, these \"Fantastic Four\" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.","inCinemas":"2005-06-29T00:00:00Z","physicalRelease":"2005-12-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/403\/poster.jpg?lastWrite=637661241930012952","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8HLQLILZLhDQWO6JDpvY6XJLH75.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/403\/fanart.jpg?lastWrite=637427018022245230","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/isDbx0OEFgYKevzbg7wBJZmQgbM.jpg"}],"website":"","year":2005,"hasFile":true,"youTubeTrailerId":"YP-UetX2qX0","studio":"Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 3 KG","path":"\/movies\/Fantastic Four (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Fantastic Four (2005)","runtime":106,"cleanTitle":"fantasticfour","imdbId":"tt0120667","tmdbId":9738,"titleSlug":"9738","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2018-12-30T21:39:26Z","ratings":{"votes":7585,"value":5.8},"movieFile":{"movieId":403,"relativePath":"Fantastic Four.2005-Bluray-1080p.mkv","path":"\/movies\/Fantastic Four (2005)\/Fantastic Four.2005-Bluray-1080p.mkv","size":8509690925,"dateAdded":"2018-12-31T00:54:33Z","sceneName":"Fantastic.Four.2005.1080p.BluRay.x264-GRiMRPR","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8989700,"videoCodec":"x264","videoFps":0.0,"resolution":"1920x816","runTime":"1:45:55","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"GRiMRPR","edition":"","id":451},"collection":{"name":"Fantastic Four Collection","tmdbId":9744,"images":[]},"id":403},{"title":"Monty Python and the Holy Grail","originalTitle":"Monty Python and the Holy Grail","alternateTitles":[{"sourceType":"tmdb","movieId":404,"title":"Em Busca do C\u00e1lice Sagrado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2857},{"sourceType":"tmdb","movieId":404,"title":"Monty Python - Em Busca do C\u00e1lice Sagrado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2858},{"sourceType":"tmdb","movieId":404,"title":"Die Ritter der Kokosnuss","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2859},{"sourceType":"tmdb","movieId":404,"title":"Monty Python's The Holy Grail","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2860},{"sourceType":"tmdb","movieId":404,"title":"\u03a4\u03bf \u0391\u03b4\u03b5\u03bb\u03c6\u03ac\u03c4\u03bf \u03c4\u03c9\u03bd \u0399\u03c0\u03c0\u03bf\u03c4\u03ce\u03bd \u03c4\u03b7\u03c2 \u0395\u03bb\u03b5\u03b5\u03b9\u03bd\u03ae\u03c2 \u03a4\u03c1\u03b1\u03c0\u03ad\u03b6\u03b7\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2861},{"sourceType":"tmdb","movieId":404,"title":"Monti Paison ando h\u00f4rii gurairu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2864},{"sourceType":"tmdb","movieId":404,"title":"Monty Python ir \u0161ventasis Gralis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2866},{"sourceType":"tmdb","movieId":404,"title":"Monty Pythons - Die Ritter der Kokusnuss","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5411},{"sourceType":"tmdb","movieId":404,"title":"Monty Python - Die Ritter der Kokosnu\u00df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5681},{"sourceType":"tmdb","movieId":404,"title":"Los caballeros de la mesa cuadrada","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6061}],"secondaryYearSourceId":0,"sortTitle":"monty python holy grail","sizeOnDisk":7042657228,"status":"released","overview":"King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \"it is a silly place\".","inCinemas":"1975-05-25T00:00:00Z","physicalRelease":"1982-11-22T00:00:00Z","digitalRelease":"1991-10-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/404\/poster.jpg?lastWrite=637642209359039795","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8AVb7tyxZRsbKJNOTJHQZl7JYWO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/404\/fanart.jpg?lastWrite=637642209360559772","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7qOpWe1Fk58MFEmcsGs2nrbv7Ow.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/montypythonandtheholygrail","year":1975,"hasFile":true,"youTubeTrailerId":"WcsobLUkrQg","studio":"Python (Monty) Pictures Limited","path":"\/movies\/Monty Python and the Holy Grail (1975)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Monty Python and the Holy Grail (1975)","runtime":91,"cleanTitle":"montypythonholygrail","imdbId":"tt0071853","tmdbId":762,"titleSlug":"762","certification":"PG","genres":["Adventure","Comedy","Fantasy"],"tags":[],"added":"2018-12-31T02:52:14Z","ratings":{"votes":4331,"value":7.8},"movieFile":{"movieId":404,"relativePath":"Monty Python and the Holy Grail.1975-Bluray-1080p.mkv","path":"\/movies\/Monty Python and the Holy Grail (1975)\/Monty Python and the Holy Grail.1975-Bluray-1080p.mkv","size":7042657228,"dateAdded":"2018-12-31T05:30:51Z","sceneName":"Monty.Python.and.the.Holy.Grail.1974.1080p.BluRay.X264-AMIABLE","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8682000,"videoCodec":"x264","videoFps":23.976,"resolution":"1808x1080","runTime":"1:32:07","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":457},"id":404},{"title":"The Meaning of Life","originalTitle":"The Meaning of Life","alternateTitles":[{"sourceType":"tmdb","movieId":405,"title":"Monty Python's The Meaning of Life","sourceId":4543,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":958},{"sourceType":"tmdb","movieId":405,"title":"Monty Python e o Sentido da Vida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4679},{"sourceType":"tmdb","movieId":405,"title":"Monty Python: Livets mening","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4680},{"sourceType":"tmdb","movieId":405,"title":"\u4e07\u4e16\u9b54\u661f\uff1a\u751f\u547d\u7684\u610f\u4e49","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4681},{"sourceType":"tmdb","movieId":405,"title":"Monty Python - O Sentido da Vida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4682},{"sourceType":"tmdb","movieId":405,"title":"Monty Python - Il Senso Della Vita","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":6069}],"secondaryYearSourceId":0,"sortTitle":"meaning life","sizeOnDisk":2190618964,"status":"released","overview":"Life's questions are 'answered' in a series of outrageous vignettes, beginning with a staid London insurance company which transforms before our eyes into a pirate ship. Then there's the National Health doctors who try to claim a healthy liver from a still-living donor. The world's most voracious glutton brings the art of vomiting to new heights before his spectacular demise.","inCinemas":"1983-03-31T00:00:00Z","physicalRelease":"1987-03-27T00:00:00Z","digitalRelease":"1991-12-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/405\/poster.jpg?lastWrite=637625776116482146","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nSi1MYrNbhKa5pLyQcopSWDfUap.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/405\/fanart.jpg?lastWrite=637625776117762115","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eIcJq4QDmToJeu4g6fS4iLPKY8n.jpg"}],"website":"","year":1983,"hasFile":true,"youTubeTrailerId":"Qexz_cIXmbw","studio":"Celandine Films","path":"\/movies\/The Meaning of Life (1983)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Meaning of Life (1983)","runtime":107,"cleanTitle":"themeaninglife","imdbId":"tt0085959","tmdbId":4543,"titleSlug":"4543","certification":"R","genres":["Comedy"],"tags":[],"added":"2018-12-31T02:52:17Z","ratings":{"votes":1356,"value":7.3},"movieFile":{"movieId":405,"relativePath":"The Meaning of Life.1983-Bluray-1080p.mp4","path":"\/movies\/The Meaning of Life (1983)\/The Meaning of Life.1983-Bluray-1080p.mp4","size":2190618964,"dateAdded":"2019-08-08T01:17:19Z","sceneName":"Monty.Pythons.The.Meaning.of.Life.1983.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:46:59","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":568},"id":405},{"title":"Next Gen","originalTitle":"Next Gen","alternateTitles":[{"sourceType":"tmdb","movieId":406,"title":"Robot 77z3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4576},{"sourceType":"tmdb","movieId":406,"title":"Robot 7723","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4577},{"sourceType":"tmdb","movieId":406,"title":"Wei lai ji qi cheng","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4578},{"sourceType":"tmdb","movieId":406,"title":"Das M\u00e4dchen und ihr Roboter \u2013 Die n\u00e4chste Generation","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4579},{"sourceType":"tmdb","movieId":406,"title":"Next Gen - Das M\u00e4dchen und ihr Roboter","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4580},{"sourceType":"tmdb","movieId":406,"title":"\u0389\u03c1\u03c9\u03b5\u03c2 \u039d\u03ad\u03b1\u03c2 \u0393\u03b5\u03bd\u03b9\u03ac\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4581}],"secondaryYearSourceId":0,"sortTitle":"next gen","sizeOnDisk":4734626005,"status":"released","overview":"A friendship with a top-secret robot turns a lonely girl's life into a thrilling adventure as they take on bullies, evil bots and a scheming madman.","digitalRelease":"2018-09-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/406\/poster.jpg?lastWrite=637614532915696640","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hUDDo5MPWM6rc6COQYhaoRNqvhE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/406\/fanart.jpg?lastWrite=637640479586870717","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4tO1A5g5ZOXVB22g2Wovcm39dYU.jpg"}],"website":"https:\/\/www.netflix.com\/title\/80988892","year":2018,"hasFile":true,"youTubeTrailerId":"uf3ALGKgpGU","studio":"Baozou Manhua","path":"\/movies\/Next Gen (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Next Gen (2018)","runtime":105,"cleanTitle":"nextgen","imdbId":"tt7133686","tmdbId":523777,"titleSlug":"523777","certification":"PG","genres":["Action","Adventure","Animation"],"tags":[],"added":"2019-01-01T04:28:00Z","ratings":{"votes":550,"value":7},"movieFile":{"movieId":406,"relativePath":"Next Gen.2018-WEBDL-1080p.mkv","path":"\/movies\/Next Gen (2018)\/Next Gen.2018-WEBDL-1080p.mkv","size":4734626005,"dateAdded":"2019-01-01T05:12:42Z","sceneName":"Next.Gen.2018.1080p.NF.WEBRip.DDP5.1.x264-NTG","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5360000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:45:55","scanType":"Progressive","subtitles":"English \/ Arabic \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ Chinese \/ "},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"NTG","edition":"","id":463},"id":406},{"title":"The Devil's Backbone","originalTitle":"El espinazo del diablo","alternateTitles":[{"sourceType":"tmdb","movieId":407,"title":"Das R\u00fcckgrat des Teufels","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4665}],"secondaryYearSourceId":0,"sortTitle":"devil s backbone","sizeOnDisk":8204838705,"status":"released","overview":"Spain, 1939. In the last days of the Spanish Civil War, the young Carlos arrives at the Santa Luc\u00eda orphanage, where he will make friends and enemies as he follows the quiet footsteps of a mysterious presence eager for revenge.","inCinemas":"2001-04-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/407\/poster.jpg?lastWrite=637657781528659132","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/es3NIsfzm3rlyjzqDV2fCoJRwTX.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/407\/fanart.jpg?lastWrite=637657781529939110","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9qJm5XhdgFWkHZIAwm7TurLxQIy.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"RZi4geYuSNE","studio":"Producciones Anhelo","path":"\/movies\/The Devil's Backbone (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Devil's Backbone (2001)","runtime":108,"cleanTitle":"thedevilsbackbone","imdbId":"tt0256009","tmdbId":1433,"titleSlug":"1433","genres":["Fantasy","Drama","Horror"],"tags":[],"added":"2019-01-04T15:09:42Z","ratings":{"votes":812,"value":7.3},"movieFile":{"movieId":407,"relativePath":"The Devil's Backbone.2001-Bluray-1080p.mkv","path":"\/movies\/The Devil's Backbone (2001)\/The Devil's Backbone.2001-Bluray-1080p.mkv","size":8204838705,"dateAdded":"2019-01-07T01:05:11Z","sceneName":"The.Devils.Backbone.2001.REMASTERED.1080p.BluRay.x264-SADPANDA[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Spanish","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8634000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:47:50","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SADPANDA","edition":"REMASTERED","id":470},"id":407},{"title":"Pacific Rim","originalTitle":"Pacific Rim","alternateTitles":[{"sourceType":"tmdb","movieId":408,"title":"Pacific Rim 1","sourceId":68726,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":690},{"sourceType":"tmdb","movieId":408,"title":"Titanes del pacifico","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4187},{"sourceType":"tmdb","movieId":408,"title":"\ud37c\uc2dc\ud53d\ub9bc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4188},{"sourceType":"tmdb","movieId":408,"title":"C\u00edrculo de Fogo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5432}],"secondaryYearSourceId":0,"sortTitle":"pacific rim","sizeOnDisk":2687464103,"status":"released","overview":"A ragtag band of humans band together in the year 2025 to fight legions of monstrous creatures rising from the sea. Using massive piloted robots to combat the alien threat, earth's survivors take the fight to the invading alien force lurking in the depths of the Pacific Ocean. Nearly defenseless in the face of the relentless enemy, the forces of mankind have no choice but to turn to two unlikely heroes -- a washed up former pilot and an untested trainee -- who now stand as earth's final hope against the mounting apocalypse.","inCinemas":"2013-07-11T00:00:00Z","physicalRelease":"2013-11-20T00:00:00Z","digitalRelease":"2016-02-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/408\/poster.jpg?lastWrite=637659512405115968","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lC4ULSf5J4X9jnBOKcY3pwbAwmT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/408\/fanart.jpg?lastWrite=637662106714094372","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ig7qUy7drkEFZNCK7gi0hMn1WMN.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/pacific-rim","year":2013,"hasFile":true,"youTubeTrailerId":"5guMumPFBag","studio":"Double Dare You Productions","path":"\/movies\/Pacific Rim (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Pacific Rim (2013)","runtime":131,"cleanTitle":"pacificrim","imdbId":"tt1663662","tmdbId":68726,"titleSlug":"68726","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2019-01-04T15:10:21Z","ratings":{"votes":9938,"value":6.8},"movieFile":{"movieId":408,"relativePath":"Pacific Rim.2013-Bluray-1080p.mp4","path":"\/movies\/Pacific Rim (2013)\/Pacific Rim.2013-Bluray-1080p.mp4","size":2687464103,"dateAdded":"2019-01-07T00:33:10Z","sceneName":"Pacific.Rim.2013.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:11:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":469},"collection":{"name":"Pacific Rim Collection","tmdbId":363369,"images":[]},"id":408},{"title":"Crimson Peak","originalTitle":"Crimson Peak","alternateTitles":[{"sourceType":"tmdb","movieId":409,"title":"\u041f\u0443\u0440\u043f\u0443\u0440\u043d\u0438\u044f\u0442 \u0432\u0440\u044a\u0445","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3923},{"sourceType":"tmdb","movieId":409,"title":"A Colina Escarlate","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3924},{"sourceType":"tmdb","movieId":409,"title":"\u8165\u7ea2\u5c71\u5e84","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3925},{"sourceType":"tmdb","movieId":409,"title":"\u8840\u8272\u5e84\u56ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3926},{"sourceType":"tmdb","movieId":409,"title":"La cumbre escarlata","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3927},{"sourceType":"tmdb","movieId":409,"title":"\ud06c\ub9bc\uc2a8 \ud53c\ud06c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3928},{"sourceType":"tmdb","movieId":409,"title":"Crimson Peak: A Colina Vermelha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3929},{"sourceType":"tmdb","movieId":409,"title":"\u0411\u0430\u0433\u0440\u043e\u0432\u044b\u0439 \u043f\u0438\u043a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3930}],"secondaryYearSourceId":0,"sortTitle":"crimson peak","sizeOnDisk":9385716427,"status":"released","overview":"In the aftermath of a family tragedy, an aspiring author is torn between love for her childhood friend and the temptation of a mysterious outsider. Trying to escape the ghosts of her past, she is swept away to a house that breathes, bleeds\u2026 and remembers.","inCinemas":"2015-10-13T00:00:00Z","physicalRelease":"2016-02-09T00:00:00Z","digitalRelease":"2018-03-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/409\/poster.jpg?lastWrite=637545341830430381","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g6lDR5EQuOwNwl9Ni5ROEVNXYbw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/409\/fanart.jpg?lastWrite=637638749587096624","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rsaeEl8e06xgmo5FofBmpIb6LnI.jpg"}],"website":"http:\/\/www.crimsonpeakmovie.com\/","year":2015,"hasFile":true,"youTubeTrailerId":"oquZifON8Eg","studio":"Double Dare You Productions","path":"\/movies\/Crimson Peak (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Crimson Peak (2015)","runtime":119,"cleanTitle":"crimsonpeak","imdbId":"tt2554274","tmdbId":201085,"titleSlug":"201085","certification":"R","genres":["Horror","Thriller","Romance"],"tags":[],"added":"2019-01-04T15:10:37Z","ratings":{"votes":3990,"value":6.6},"movieFile":{"movieId":409,"relativePath":"Crimson Peak.2015-Bluray-1080p.mkv","path":"\/movies\/Crimson Peak (2015)\/Crimson Peak.2015-Bluray-1080p.mkv","size":9385716427,"dateAdded":"2019-01-07T03:54:15Z","sceneName":"Crimson.Peak.2015.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9036000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:58:43","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":471},"id":409},{"title":"The Shape of Water","originalTitle":"The Shape of Water","alternateTitles":[{"sourceType":"tmdb","movieId":410,"title":"\ubb3c\uc758 \ud615\ud0dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3708},{"sourceType":"tmdb","movieId":410,"title":"\uc170\uc774\ud504 \uc624\ube0c \uc6cc\ud130: \uc0ac\ub791\uc758 \ubaa8\uc591","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3709}],"secondaryYearSourceId":0,"sortTitle":"shape water","sizeOnDisk":31551914649,"status":"released","overview":"An other-worldly story, set against the backdrop of Cold War era America circa 1962, where a mute janitor working at a lab falls in love with an amphibious man being held captive there and devises a plan to help him escape.","inCinemas":"2017-12-08T00:00:00Z","physicalRelease":"2018-03-13T00:00:00Z","digitalRelease":"2018-02-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/410\/poster.jpg?lastWrite=637665567282382847","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9zfwPffUXpBrEP26yp0q1ckXDcj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/410\/fanart.jpg?lastWrite=637665567283662821","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hVYhrKuQNFro6jXHZMn60uYjrIP.jpg"}],"website":"http:\/\/www.foxsearchlight.com\/theshapeofwater\/","year":2017,"hasFile":true,"youTubeTrailerId":"uiA4B5Y63IQ","studio":"Double Dare You Productions","path":"\/movies\/The Shape of Water (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Shape of Water (2017)","runtime":123,"cleanTitle":"theshapewater","imdbId":"tt5580390","tmdbId":399055,"titleSlug":"399055","certification":"R","genres":["Drama","Fantasy","Romance"],"tags":[],"added":"2019-01-04T15:11:21Z","ratings":{"votes":10011,"value":7.3},"movieFile":{"movieId":410,"relativePath":"The Shape of Water.2017-Remux-1080p.mkv","path":"\/movies\/The Shape of Water (2017)\/The Shape of Water.2017-Remux-1080p.mkv","size":31551914649,"dateAdded":"2019-01-06T23:19:41Z","sceneName":"The.Shape.of.Water.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3831045,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Spanish \/ French","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":27403142,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:03:19","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Spanish \/ French \/ French \/ French \/ Spanish \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":466},"id":410},{"title":"Watchmen","originalTitle":"Watchmen","alternateTitles":[{"sourceType":"tmdb","movieId":411,"title":"Watchmen: The IMAX Experience","sourceId":13183,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":692},{"sourceType":"tmdb","movieId":411,"title":"Watchmen The Ultimate Cut","sourceId":13183,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":693},{"sourceType":"tmdb","movieId":411,"title":"Watchmen Director's Cut","sourceId":13183,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":694}],"secondaryYearSourceId":0,"sortTitle":"watchmen","sizeOnDisk":4413807738,"status":"released","overview":"In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered, an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.","inCinemas":"2009-03-05T00:00:00Z","physicalRelease":"2009-08-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/411\/poster.jpg?lastWrite=637658647934692778","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aZvOkdo203bm1kpcY0A0Tn074ER.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/411\/fanart.jpg?lastWrite=637611071602469186","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uOvNJMVy3VzEfS75hXroITSsdWY.jpg"}],"website":"https:\/\/www.warnerbros.com\/movies\/watchmen\/","year":2009,"hasFile":true,"youTubeTrailerId":"PVgUZ2NSzBo","studio":"DC Comics","path":"\/movies\/Watchmen (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Watchmen (2009)","runtime":163,"cleanTitle":"watchmen","imdbId":"tt0409459","tmdbId":13183,"titleSlug":"13183","certification":"R","genres":["Action","Mystery","Science Fiction"],"tags":[],"added":"2019-01-05T21:20:03Z","ratings":{"votes":7056,"value":7.3},"movieFile":{"movieId":411,"relativePath":"Watchmen.2009-Bluray-1080p.mp4","path":"\/movies\/Watchmen (2009)\/Watchmen.2009-Bluray-1080p.mp4","size":4413807738,"dateAdded":"2019-01-06T22:23:12Z","sceneName":"Watchmen.2009.Ultimate.Cut.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"3:35:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"Ultimate Cut","id":465},"id":411},{"title":"The Cloverfield Paradox","originalTitle":"The Cloverfield Paradox","alternateTitles":[{"sourceType":"tmdb","movieId":413,"title":"Clean Pass","sourceId":384521,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":695},{"sourceType":"tmdb","movieId":413,"title":"God Particle","sourceId":384521,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":696},{"sourceType":"tmdb","movieId":413,"title":"Cloverfield Station","sourceId":384521,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":697},{"sourceType":"tmdb","movieId":413,"title":"Cloverfield Movie","sourceId":384521,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":698},{"sourceType":"tmdb","movieId":413,"title":"Cloverfield: A Part\u00edcula de Deus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4774},{"sourceType":"tmdb","movieId":413,"title":"\u0427\u0443\u0434\u043e\u0432\u0438\u0449\u043d\u0438\u044f\u0442 \u043f\u0430\u0440\u0430\u0434\u043e\u043a\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4775}],"secondaryYearSourceId":0,"sortTitle":"cloverfield paradox","sizeOnDisk":7036769387,"status":"released","overview":"Orbiting above a planet on the brink of war, scientists test a device to solve an energy crisis and end up face-to-face with a dark alternate reality.","physicalRelease":"2019-01-11T00:00:00Z","digitalRelease":"2018-02-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/413\/poster.jpg?lastWrite=637643939287249442","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vJi2ExTcWdJR3150VPKqqtdGxsT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/413\/fanart.jpg?lastWrite=637643939288969417","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lWrmOhS5WH1650mHJhwcm91jQZR.jpg"}],"website":"https:\/\/www.netflix.com\/title\/80134431","year":2018,"hasFile":true,"youTubeTrailerId":"8brYvhEg5Aw","studio":"Paramount","path":"\/movies\/The Cloverfield Paradox (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Cloverfield Paradox (2018)","runtime":102,"cleanTitle":"thecloverfieldparadox","imdbId":"tt2548396","tmdbId":384521,"titleSlug":"384521","certification":"PG-13","genres":["Horror","Science Fiction","Action"],"tags":[],"added":"2019-01-06T20:23:28Z","ratings":{"votes":2477,"value":5.6},"movieFile":{"movieId":413,"relativePath":"The Cloverfield Paradox.2018-Bluray-1080p.mkv","path":"\/movies\/The Cloverfield Paradox (2018)\/The Cloverfield Paradox.2018-Bluray-1080p.mkv","size":7036769387,"dateAdded":"2019-02-04T18:39:12Z","sceneName":"The.Cloverfield.Paradox.2018.REPACK.1080p.BluRay.x264-VETO[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8577000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:41:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"veto","edition":"","id":494},"id":413},{"title":"Perfume: The Story of a Murderer","originalTitle":"Perfume: The Story of a Murderer","alternateTitles":[{"sourceType":"tmdb","movieId":414,"title":"Perfume","sourceId":1427,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":701},{"sourceType":"tmdb","movieId":414,"title":"Das Parfum","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2586},{"sourceType":"tmdb","movieId":414,"title":"\u041f\u0430\u0440\u0444\u044e\u043c\u044a\u0442: \u0418\u0441\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u043d\u0430 \u0435\u0434\u0438\u043d \u0443\u0431\u0438\u0435\u0446","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2587},{"sourceType":"tmdb","movieId":414,"title":"\u6740\u624b\u6545\u4e8b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2588},{"sourceType":"tmdb","movieId":414,"title":"\u9999\u6c34","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2589},{"sourceType":"tmdb","movieId":414,"title":"\u9999\u6c34\u8c0b\u6740\u6848","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2590},{"sourceType":"tmdb","movieId":414,"title":"\u9999\u6c34\uff1a\u4e00\u4e2a\u6740\u4eba\u8005\u7684\u6545\u4e8b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2591},{"sourceType":"tmdb","movieId":414,"title":"Le Parfum : Histoire d'un meurtrier","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2592},{"sourceType":"tmdb","movieId":414,"title":"\u03a4\u03bf \u0386\u03c1\u03c9\u03bc\u03b1: \u0397 \u0399\u03c3\u03c4\u03bf\u03c1\u03af\u03b1 \u0395\u03bd\u03cc\u03c2 \u0394\u03bf\u03bb\u03bf\u03c6\u03cc\u03bd\u03bf\u03c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2593},{"sourceType":"tmdb","movieId":414,"title":"\ud5a5\uc218: \uc5b4\ub290 \uc0b4\uc778\uc790\uc758 \uc774\uc57c\uae30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2594},{"sourceType":"tmdb","movieId":414,"title":"El Perfume: Historia de un asesino","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2595},{"sourceType":"tmdb","movieId":414,"title":"Koku,bir katilin hikayesi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2596},{"sourceType":"tmdb","movieId":414,"title":"Parfymen: Ber\u00e4ttelsen om en m\u00f6rdare","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5179}],"secondaryYearSourceId":0,"sortTitle":"perfume story murderer","sizeOnDisk":3022149965,"status":"released","overview":"Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.","inCinemas":"2006-09-13T00:00:00Z","physicalRelease":"2007-06-13T00:00:00Z","digitalRelease":"2009-05-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/414\/poster.jpg?lastWrite=637621451995977278","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2wrFrUej8ri5EpjgIkjKTAnr686.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/414\/fanart.jpg?lastWrite=637621451997617251","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oYRutdt0D2EdXdDWr6ZSvJv56CA.jpg"}],"website":"http:\/\/www.parfum.film.de\/","year":2006,"hasFile":true,"youTubeTrailerId":"zutiIw_2e2g","studio":"Rising Star","path":"\/movies\/Perfume The Story of a Murderer (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Perfume The Story of a Murderer (2006)","runtime":147,"cleanTitle":"perfumestorymurderer","imdbId":"tt0396171","tmdbId":1427,"titleSlug":"1427","certification":"R","genres":["Crime","Fantasy","Drama"],"tags":[],"added":"2019-01-08T15:29:38Z","ratings":{"votes":3336,"value":7.3},"movieFile":{"movieId":414,"relativePath":"Perfume The Story of a Murderer.2006-Bluray-1080p.mp4","path":"\/movies\/Perfume The Story of a Murderer (2006)\/Perfume The Story of a Murderer.2006-Bluray-1080p.mp4","size":3022149965,"dateAdded":"2019-01-08T16:12:08Z","sceneName":"Perfume.The.Story.of.a.Murderer.2006.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223999,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:27:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":473},"id":414},{"title":"Spaceballs","originalTitle":"Spaceballs","alternateTitles":[{"sourceType":"tmdb","movieId":415,"title":"Balle Spaziali","sourceId":957,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":713},{"sourceType":"tmdb","movieId":415,"title":"Mel Brooks Spaceballs","sourceId":957,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":714},{"sourceType":"tmdb","movieId":415,"title":"S.O.S. - Tem um Louco Solto no Espa\u00e7o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2894},{"sourceType":"tmdb","movieId":415,"title":"V\u00e1lky hv\u011bzd naruby","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2895},{"sourceType":"tmdb","movieId":415,"title":"Space Balls. La Loca Historia De Las Galaxias","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2897},{"sourceType":"tmdb","movieId":415,"title":"Avaruusboltsit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2898},{"sourceType":"tmdb","movieId":415,"title":"La folle histoire de l'espace","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2899},{"sourceType":"tmdb","movieId":415,"title":"Balle spaziali (1987)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2900},{"sourceType":"tmdb","movieId":415,"title":"Kosmiczne jaja","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2901},{"sourceType":"tmdb","movieId":415,"title":"\u041a\u043e\u0441\u043c\u043e\u0431\u043e\u043b\u044c\u0446\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2902},{"sourceType":"tmdb","movieId":415,"title":"S.O.S Hay un Loco Suelto en el Espacio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":2903},{"sourceType":"tmdb","movieId":415,"title":"La guerra de los Esf\u00e9ricos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5108},{"sourceType":"tmdb","movieId":415,"title":"\uc2a4\ud398\uc774\uc2a4 \ubcfc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5825}],"secondaryYearSourceId":0,"sortTitle":"spaceballs","sizeOnDisk":1970333792,"status":"released","overview":"When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of \"The Schwartz.\" Can he master it in time to save the day?","inCinemas":"1987-06-24T00:00:00Z","physicalRelease":"1988-02-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/415\/poster.jpg?lastWrite=637573018096080729","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/o624HTt93iIJIc1Sg5hNkDTnk5l.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/415\/fanart.jpg?lastWrite=637627506068625952","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6nrSsD6sbxj27gfzTmuL74y7HRq.jpg"}],"website":"http:\/\/www.mgm.com\/view\/movie\/1873\/Spaceballs\/","year":1987,"hasFile":true,"youTubeTrailerId":"uWVSVgU-I0s","studio":"Brooksfilms Ltd.","path":"\/movies\/Spaceballs (1987)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Spaceballs (1987)","runtime":96,"cleanTitle":"spaceballs","imdbId":"tt0094012","tmdbId":957,"titleSlug":"957","certification":"PG","genres":["Comedy","Science Fiction"],"tags":[],"added":"2019-01-14T18:41:18Z","ratings":{"votes":2172,"value":6.8},"movieFile":{"movieId":415,"relativePath":"Spaceballs.1987-Bluray-1080p.mp4","path":"\/movies\/Spaceballs (1987)\/Spaceballs.1987-Bluray-1080p.mp4","size":1970333792,"dateAdded":"2019-01-14T19:39:56Z","sceneName":"Spaceballs.1987.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:36:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":474},"id":415},{"title":"The Girl in the Spider's Web","originalTitle":"The Girl in the Spider's Web","alternateTitles":[{"sourceType":"tmdb","movieId":416,"title":"The Girl in the Spider's Web: A Dragon Tattoo Story","sourceId":446807,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":715},{"sourceType":"tmdb","movieId":416,"title":"\u8718\u86db\u7f51\u91cc\u7684\u5973\u5b69","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3931},{"sourceType":"tmdb","movieId":416,"title":"\u9f99\u7eb9\u8eab\u7684\u5973\u5b69\u7eed\u96c6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3932},{"sourceType":"tmdb","movieId":416,"title":"Verschw\u00f6rung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3933},{"sourceType":"tmdb","movieId":416,"title":"\ubc00\ub808\ub2c8\uc5c4: \uac70\ubbf8\uc904\uc5d0 \uac78\ub9b0 \uc18c\ub140","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3934},{"sourceType":"tmdb","movieId":416,"title":"Millennium Quello che non uccide","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5643},{"sourceType":"tmdb","movieId":416,"title":"Verschw\u00f6rung - Millenum IV","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5845}],"secondaryYearSourceId":0,"sortTitle":"girl in spider s web","sizeOnDisk":9390661240,"status":"released","overview":"In Stockholm, Sweden, hacker Lisbeth Salander is hired by Frans Balder, a computer engineer, to retrieve a program that he believes it is too dangerous to exist.","inCinemas":"2018-10-25T00:00:00Z","physicalRelease":"2019-03-21T00:00:00Z","digitalRelease":"2019-01-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/416\/poster.jpg?lastWrite=637630100157505723","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/w4ibr8R702DCjwYniry1D1XwQXj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/416\/fanart.jpg?lastWrite=637653455718047080","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cCyaG86vAhQQgtAJLBkio16HNvz.jpg"}],"website":"http:\/\/www.girlinthespidersweb.movie\/site\/","year":2018,"hasFile":true,"youTubeTrailerId":"XKMSP9OKspQ","studio":"The Cantillon Company","path":"\/movies\/The Girl in the Spider's Web (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/The Girl in the Spider's Web (2018)","runtime":115,"cleanTitle":"thegirlinspidersweb","imdbId":"tt5177088","tmdbId":446807,"titleSlug":"446807","certification":"R","genres":["Crime","Thriller","Action"],"tags":[],"added":"2019-01-15T00:56:58Z","ratings":{"votes":994,"value":6.1},"movieFile":{"movieId":416,"relativePath":"The Girl in the Spider's Web.2018-Bluray-1080p.mkv","path":"\/movies\/The Girl in the Spider's Web (2018)\/The Girl in the Spider's Web.2018-Bluray-1080p.mkv","size":9390661240,"dateAdded":"2019-04-15T00:32:38Z","sceneName":"The.Girl.in.the.Spiders.Web.2018.1080p.BluRay.x264-DRONES[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9337000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:55:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DRONES","edition":"","id":538},"collection":{"name":"The Girl - Millennium Collection","tmdbId":575987,"images":[]},"id":416},{"title":"Doctor Strange","originalTitle":"Doctor Strange","alternateTitles":[{"sourceType":"tmdb","movieId":417,"title":"Dr. Strange","sourceId":284052,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":716},{"sourceType":"tmdb","movieId":417,"title":"Marvel's Doctor Strange","sourceId":284052,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1277},{"sourceType":"tmdb","movieId":417,"title":"\ub9c8\ube14 \ub2e5\ud130 \uc2a4\ud2b8\ub808\uc778\uc9c0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1491},{"sourceType":"tmdb","movieId":417,"title":"Doctor Extra\u00f1o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4971},{"sourceType":"tmdb","movieId":417,"title":"Dr. Strange (Doctor Extra\u00f1o)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4972},{"sourceType":"tmdb","movieId":417,"title":"Doctor Strange: Hechicero Supremo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4973},{"sourceType":"tmdb","movieId":417,"title":"Doktor Strejnxh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4991},{"sourceType":"tmdb","movieId":417,"title":"\u0414o\u043a\u0442\u043e\u0440 \u0421\u0442\u0440\u044d\u043d\u0434\u0436","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5401},{"sourceType":"tmdb","movieId":417,"title":"Doktor Strange","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5441},{"sourceType":"tmdb","movieId":417,"title":"Doctor Strange 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5632},{"sourceType":"tmdb","movieId":417,"title":"Marvel Studios' Doctor Strange","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5894}],"secondaryYearSourceId":0,"sortTitle":"doctor strange","sizeOnDisk":31036904135,"status":"released","overview":"After his career is destroyed, a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.","inCinemas":"2016-10-25T00:00:00Z","physicalRelease":"2017-02-28T00:00:00Z","digitalRelease":"2017-02-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/417\/poster.jpg?lastWrite=637664701933949480","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xf8PbyQcR5ucXErmZNzdKR0s8ya.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/417\/fanart.jpg?lastWrite=637619721414370134","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aL53oMdZKZRJRH8txH07DLuleF9.jpg"}],"website":"http:\/\/marvel.com\/doctorstrange","year":2016,"hasFile":true,"youTubeTrailerId":"HSzx-zryEgM","studio":"Marvel Studios","path":"\/movies\/Doctor Strange (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Doctor Strange (2016)","runtime":115,"cleanTitle":"doctorstrange","imdbId":"tt1211837","tmdbId":284052,"titleSlug":"284052","certification":"PG-13","genres":["Action","Adventure","Fantasy"],"tags":[],"added":"2019-01-15T00:57:19Z","ratings":{"votes":17411,"value":7.4},"movieFile":{"movieId":417,"relativePath":"Doctor Strange.2016-Remux-1080p.mkv","path":"\/movies\/Doctor Strange (2016)\/Doctor Strange.2016-Remux-1080p.mkv","size":31036904135,"dateAdded":"2019-01-15T01:37:35Z","sceneName":"Doctor.Strange.2016.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ English","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:54:58","scanType":"Progressive","subtitles":"English \/ French \/ Spanish \/ English \/ French \/ Spanish \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":475},"collection":{"name":"Doctor Strange Collection","tmdbId":618529,"images":[]},"id":417},{"title":"John Wick","originalTitle":"John Wick","alternateTitles":[{"sourceType":"tmdb","movieId":418,"title":"John Wick 1","sourceId":245891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":717},{"sourceType":"tmdb","movieId":418,"title":"John Wick: Chapter 1","sourceId":245891,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1118},{"sourceType":"tmdb","movieId":418,"title":"John Wick: Otro dia para matar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3108},{"sourceType":"tmdb","movieId":418,"title":"De Volta ao Jogo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3109},{"sourceType":"tmdb","movieId":418,"title":"John Wick 1 - De Volta Ao Jogo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3110},{"sourceType":"tmdb","movieId":418,"title":"John Wick Chapitre 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3111},{"sourceType":"tmdb","movieId":418,"title":"\u0414\u0436\u043e\u043d \u0412\u0456\u043a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3113},{"sourceType":"tmdb","movieId":418,"title":"M\u1ea1ng \u0110\u1ed5i M\u1ea1ng","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3114}],"secondaryYearSourceId":0,"sortTitle":"john wick","sizeOnDisk":7034343021,"status":"released","overview":"Ex-hitman John Wick comes out of retirement to track down the gangsters that took everything from him.","inCinemas":"2014-10-22T00:00:00Z","physicalRelease":"2015-02-25T00:00:00Z","digitalRelease":"2015-06-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/418\/poster.jpg?lastWrite=637416641574486431","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fZPSd91yGE9fCcCe6OoQr6E3Bev.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/418\/fanart.jpg?lastWrite=637655186319995496","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7dzngS8pLkGJpyeskCFcjPO9qLF.jpg"}],"website":"http:\/\/www.johnwickthemovie.com\/","year":2014,"hasFile":true,"youTubeTrailerId":"G1ahaiEni3E","studio":"Summit Entertainment","path":"\/movies\/John Wick (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/John Wick (2014)","runtime":101,"cleanTitle":"johnwick","imdbId":"tt2911666","tmdbId":245891,"titleSlug":"245891","certification":"R","genres":["Action","Thriller"],"tags":[],"added":"2019-01-17T22:08:58Z","ratings":{"votes":14677,"value":7.3},"movieFile":{"movieId":418,"relativePath":"John Wick.2014-Bluray-1080p.mkv","path":"\/movies\/John Wick (2014)\/John Wick.2014-Bluray-1080p.mkv","size":7034343021,"dateAdded":"2019-01-17T22:38:08Z","sceneName":"John.Wick.2014.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8631000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:41:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":478},"collection":{"name":"John Wick Collection","tmdbId":404609,"images":[]},"id":418},{"title":"John Wick: Chapter 2","originalTitle":"John Wick: Chapter 2","alternateTitles":[{"sourceType":"tmdb","movieId":419,"title":"John Wick 2","sourceId":324552,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":718},{"sourceType":"tmdb","movieId":419,"title":"John Wick: Chapter Two","sourceId":324552,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":719},{"sourceType":"tmdb","movieId":419,"title":"John Wick Chapitre 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3517},{"sourceType":"tmdb","movieId":419,"title":"John Wick Kapitel 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3518},{"sourceType":"tmdb","movieId":419,"title":"John Wick 2: Un nuevo d\u00eda para matar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3519},{"sourceType":"tmdb","movieId":419,"title":"\u75be\u901f\u8ffd\u67402","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3520},{"sourceType":"tmdb","movieId":419,"title":"John Wick Pacto de sangre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3521},{"sourceType":"tmdb","movieId":419,"title":"D\u017eonas Vikas. Antra dalis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3523},{"sourceType":"tmdb","movieId":419,"title":"John Wick : B\u00f6l\u00fcm 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3524},{"sourceType":"tmdb","movieId":419,"title":"John Wick: M\u1ea1ng \u0110\u1ed5i M\u1ea1ng 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3526},{"sourceType":"tmdb","movieId":419,"title":"John Wick Um Novo Dia Para Matar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5370},{"sourceType":"tmdb","movieId":419,"title":"\u75be\u901f\u8ffd\u67402\uff1a\u75be\u901f\u7279\u653b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5952},{"sourceType":"tmdb","movieId":419,"title":"John Wick - Kapitel 2 (2017)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6163},{"sourceType":"tmdb","movieId":419,"title":"\u75be\u901f\u7279\u653b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6272}],"secondaryYearSourceId":0,"sortTitle":"john wick chapter 2","sizeOnDisk":8528181069,"status":"released","overview":"John Wick is forced out of retirement by a former associate looking to seize control of a shadowy international assassins\u2019 guild. Bound by a blood oath to aid him, Wick travels to Rome and does battle against some of the world\u2019s most dangerous killers.","inCinemas":"2017-02-08T00:00:00Z","physicalRelease":"2017-06-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/419\/poster.jpg?lastWrite=637655186336315260","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hXWBc0ioZP3cN4zCu6SN3YHXZVO.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/419\/fanart.jpg?lastWrite=637627505818630237","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/r17jFHAemzcWPPtoO0UxjIX0xas.jpg"}],"website":"http:\/\/www.johnwick.movie\/","year":2017,"hasFile":true,"youTubeTrailerId":"LZrX9mffH8Y","studio":"Thunder Road","path":"\/movies\/John Wick Chapter 2 (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/John Wick Chapter 2 (2017)","runtime":122,"cleanTitle":"johnwickchapter2","imdbId":"tt4425200","tmdbId":324552,"titleSlug":"324552","certification":"R","genres":["Thriller","Action","Crime"],"tags":[],"added":"2019-01-17T22:09:00Z","ratings":{"votes":9416,"value":7.2},"movieFile":{"movieId":419,"relativePath":"John Wick Chapter 2.2017-Bluray-1080p.mkv","path":"\/movies\/John Wick Chapter 2 (2017)\/John Wick Chapter 2.2017-Bluray-1080p.mkv","size":8528181069,"dateAdded":"2019-01-17T22:28:37Z","sceneName":"John.Wick.Chapter.2.2017.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8654000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:02:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":477},"collection":{"name":"John Wick Collection","tmdbId":404609,"images":[]},"id":419},{"title":"John Wick: Chapter 3 - Parabellum","originalTitle":"John Wick: Chapter 3 - Parabellum","alternateTitles":[{"sourceType":"tmdb","movieId":420,"title":"John Wick 3: Parabellum","sourceId":458156,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":721},{"sourceType":"tmdb","movieId":420,"title":"Xhon Uik: Kapitulli 3 - P\u00ebrgatitje p\u00ebr luft\u00eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3115},{"sourceType":"tmdb","movieId":420,"title":"\u6025\u901f\u7279\u5de53","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3116},{"sourceType":"tmdb","movieId":420,"title":"\uc874 \uc705: \ucc55\ud130 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3118},{"sourceType":"tmdb","movieId":420,"title":"D\u017eonas Vikas. Tre\u010dia dalis","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3119},{"sourceType":"tmdb","movieId":420,"title":"\u0414\u0436\u043e\u043d \u0423\u0456\u043a: \u0427\u0430\u0441\u0442\u0438\u043d\u0430 3 \u2013 \u041f\u0430\u0440\u0430\u0431\u0435\u043b\u0443\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3121},{"sourceType":"tmdb","movieId":420,"title":"John Wick - Kapitel 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5284},{"sourceType":"tmdb","movieId":420,"title":"Alpha Cop","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5308},{"sourceType":"tmdb","movieId":420,"title":"John Wick 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5409},{"sourceType":"tmdb","movieId":420,"title":"\u75be\u901f\u8ffd\u67403","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5580},{"sourceType":"tmdb","movieId":420,"title":"\u75be\u901f\u5907\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5785},{"sourceType":"tmdb","movieId":420,"title":"\u75be\u901f\u8ffd\u67403\uff1a\u75be\u901f\u5907\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5953},{"sourceType":"tmdb","movieId":420,"title":"John Wick - Kapitel 3 (2019)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6160}],"secondaryYearSourceId":0,"sortTitle":"john wick chapter 3 parabellum","sizeOnDisk":14176800057,"status":"released","overview":"Super-assassin John Wick returns with a $14 million price tag on his head and an army of bounty-hunting killers on his trail. After killing a member of the shadowy international assassin\u2019s guild, the High Table, John Wick is excommunicado, but the world\u2019s most ruthless hit men and women await his every turn.","inCinemas":"2019-05-15T00:00:00Z","physicalRelease":"2019-09-10T00:00:00Z","digitalRelease":"2019-08-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/420\/poster.jpg?lastWrite=637664702108587303","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/420\/fanart.jpg?lastWrite=637267066351237254","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg"}],"website":"https:\/\/www.johnwick.movie","year":2019,"hasFile":true,"youTubeTrailerId":"pU8-7BX9uxs","studio":"Summit Entertainment","path":"\/movies\/John Wick Chapter 3 \u2013 Parabellum (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/John Wick Chapter 3 \u2013 Parabellum (2019)","runtime":130,"cleanTitle":"johnwickchapter3parabellum","imdbId":"tt6146586","tmdbId":458156,"titleSlug":"458156","certification":"R","genres":["Action","Thriller","Crime"],"tags":[],"added":"2019-01-17T22:09:01Z","ratings":{"votes":7168,"value":7.4},"movieFile":{"movieId":420,"relativePath":"John Wick Chapter 3 \u2013 Parabellum.2019-Bluray-1080p.mkv","path":"\/movies\/John Wick Chapter 3 \u2013 Parabellum (2019)\/John Wick Chapter 3 \u2013 Parabellum.2019-Bluray-1080p.mkv","size":14176800057,"dateAdded":"2019-08-25T03:32:48Z","sceneName":"John.Wick.3.2019.1080p.Bluray.X264-EVO","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":9040000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:11:04","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"EVO","edition":"","id":594},"collection":{"name":"John Wick Collection","tmdbId":404609,"images":[]},"id":420},{"title":"Minority Report","originalTitle":"Minority Report","alternateTitles":[{"sourceType":"tmdb","movieId":421,"title":"Second Sight","sourceId":180,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":723},{"sourceType":"tmdb","movieId":421,"title":"Total Recall 2","sourceId":180,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":724},{"sourceType":"tmdb","movieId":421,"title":"Spetsialen doklad","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2831},{"sourceType":"tmdb","movieId":421,"title":"Suvi\u0161ni izve\u0161taj","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2834},{"sourceType":"tmdb","movieId":421,"title":"Osoboye mneniye","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2835},{"sourceType":"tmdb","movieId":421,"title":"Osoblyva dumka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2836},{"sourceType":"tmdb","movieId":421,"title":"Raport Mniejszo\u015bci","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6117}],"secondaryYearSourceId":0,"sortTitle":"minority report","sizeOnDisk":2972223722,"status":"released","overview":"John Anderton is a top 'Precrime' cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.","inCinemas":"2002-06-20T00:00:00Z","physicalRelease":"2002-11-27T00:00:00Z","digitalRelease":"2005-09-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/421\/poster.jpg?lastWrite=637643939604044740","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ccqpHq5tk5W4ymbSbuoy4uYOxFI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/421\/fanart.jpg?lastWrite=637643939605404720","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/LFC6sQlVqHRI9DlJDgV4MFmCni.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"lG7DGMgfOb8","studio":"Digital Image Associates","path":"\/movies\/Minority Report (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Minority Report (2002)","runtime":145,"cleanTitle":"minorityreport","imdbId":"tt0181689","tmdbId":180,"titleSlug":"180","certification":"PG-13","genres":["Action","Thriller","Science Fiction"],"tags":[],"added":"2019-01-18T12:31:14Z","ratings":{"votes":6534,"value":7.3},"movieFile":{"movieId":421,"relativePath":"Minority Report.2002-Bluray-1080p.mp4","path":"\/movies\/Minority Report (2002)\/Minority Report.2002-Bluray-1080p.mp4","size":2972223722,"dateAdded":"2019-01-18T12:51:57Z","sceneName":"Minority.Report.2002.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:25:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":479},"id":421},{"title":"300","originalTitle":"300","alternateTitles":[{"sourceType":"tmdb","movieId":422,"title":"300: The IMAX Experience","sourceId":1271,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":725},{"sourceType":"tmdb","movieId":422,"title":"Three Hundred","sourceId":1271,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":726},{"sourceType":"tmdb","movieId":422,"title":"Tres-cents","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3914},{"sourceType":"tmdb","movieId":422,"title":"\u65af\u5df4\u9054\u4e09\u767e\u52c7\u58eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3915},{"sourceType":"tmdb","movieId":422,"title":"300: Bitva u Thermopyl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3916},{"sourceType":"tmdb","movieId":422,"title":"Trois Cent","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3917},{"sourceType":"tmdb","movieId":422,"title":"300 \u0421\u043f\u0430\u0440\u0442\u0430\u043d\u0446\u0435\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3919},{"sourceType":"tmdb","movieId":422,"title":"300 \u0e02\u0e38\u0e19\u0e28\u0e36\u0e01\u0e1e\u0e31\u0e19\u0e18\u0e38\u0e4c\u0e2a\u0e30\u0e17\u0e49\u0e32\u0e19\u0e42\u0e25\u0e01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3920},{"sourceType":"tmdb","movieId":422,"title":"300\u58ef\u58eb\uff1a\u65af\u5df4\u9054\u7684\u9006\u8972","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3921}],"secondaryYear":2006,"secondaryYearSourceId":0,"sortTitle":"300","sizeOnDisk":2386426376,"status":"released","overview":"Based on Frank Miller's graphic novel, \"300\" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.","inCinemas":"2007-03-07T00:00:00Z","physicalRelease":"2007-06-14T00:00:00Z","digitalRelease":"2010-05-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/422\/poster.jpg?lastWrite=637657781146185733","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9W49fy5G7v9Ed3CXtvMi41YqZtt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/422\/fanart.jpg?lastWrite=637519395906857988","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eGhjeUbzttA3E4flxdAm8gHz4h4.jpg"}],"website":"http:\/\/300themovie.warnerbros.com","year":2007,"hasFile":true,"youTubeTrailerId":"UrIbxk7idYA","studio":"Virtual Studios","path":"\/movies\/300 (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/300 (2007)","runtime":117,"cleanTitle":"300","imdbId":"tt0416449","tmdbId":1271,"titleSlug":"1271","certification":"R","genres":["Action","Adventure","War"],"tags":[],"added":"2019-01-19T20:34:32Z","ratings":{"votes":10970,"value":7.2},"movieFile":{"movieId":422,"relativePath":"300.2006-Bluray-1080p.mp4","path":"\/movies\/300 (2007)\/300.2006-Bluray-1080p.mp4","size":2386426376,"dateAdded":"2019-01-19T21:23:41Z","sceneName":"300.2006.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:56:32","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":481},"collection":{"name":"300 Collection","tmdbId":125570,"images":[]},"id":422},{"title":"Arrival","originalTitle":"Arrival","alternateTitles":[{"sourceType":"tmdb","movieId":423,"title":"Story of Your Life","sourceId":329865,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":731},{"sourceType":"tmdb","movieId":423,"title":"I Afixi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2044},{"sourceType":"tmdb","movieId":423,"title":"Ha'mifgash","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2045},{"sourceType":"tmdb","movieId":423,"title":"Contact","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2046},{"sourceType":"tmdb","movieId":423,"title":"\uc5b4\ub77c\uc774\ubc8c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5109},{"sourceType":"tmdb","movieId":423,"title":"Premier Contact","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5963},{"sourceType":"tmdb","movieId":423,"title":"O Primeiro Encontro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6068}],"secondaryYearSourceId":0,"sortTitle":"arrival","sizeOnDisk":9391631490,"status":"released","overview":"Taking place after alien crafts land around the world, an expert linguist is recruited by the military to determine whether they come in peace or are a threat.","inCinemas":"2016-11-10T00:00:00Z","physicalRelease":"2017-02-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/423\/poster.jpg?lastWrite=637650859705766704","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/x2FJsf1ElAgr63Y3PNPtJrcmpoe.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/423\/fanart.jpg?lastWrite=637651724544840527","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hNCqkXbWd40eftqSdjq8TmV7Mqr.jpg"}],"website":"http:\/\/www.arrivalmovie.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"7W1m5ER3I1Y","studio":"FilmNation Entertainment","path":"\/movies\/Arrival (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Arrival (2016)","runtime":116,"cleanTitle":"arrival","imdbId":"tt2543164","tmdbId":329865,"titleSlug":"329865","certification":"PG-13","genres":["Drama","Science Fiction","Mystery"],"tags":[],"added":"2019-01-19T22:29:33Z","ratings":{"votes":14052,"value":7.5},"movieFile":{"movieId":423,"relativePath":"Arrival.2016-Bluray-1080p.mkv","path":"\/movies\/Arrival (2016)\/Arrival.2016-Bluray-1080p.mkv","size":9391631490,"dateAdded":"2019-01-19T22:59:44Z","sceneName":"Arrival.2016.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9248000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:56:22","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":483},"id":423},{"title":"Tron","originalTitle":"Tron","alternateTitles":[{"sourceType":"tmdb","movieId":425,"title":"TRON 01 TRON","sourceId":97,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":732},{"sourceType":"tmdb","movieId":425,"title":"Tron 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2265},{"sourceType":"tmdb","movieId":425,"title":"\u30c8\u30ed\u30f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2266}],"secondaryYearSourceId":0,"sortTitle":"tron","sizeOnDisk":12694309801,"status":"released","overview":"As Kevin Flynn searches for proof that he invented a hit video game, he is 'digitized' by a laser and finds himself inside 'The Grid', where programs suffer under the tyrannical rule of the Master Control Program (MCP). With the help of a security program called 'TRON', Flynn seeks to free The Grid from the MCP.","inCinemas":"1982-07-09T00:00:00Z","physicalRelease":"1983-10-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/425\/poster.jpg?lastWrite=637567829397101527","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zwSFEczP7AzqugAHHIX3zHniT0t.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/425\/fanart.jpg?lastWrite=637631830251005540","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/f4ZlBeiiBaQPNZrHnhXywwXASFS.jpg"}],"website":"","year":1982,"hasFile":true,"youTubeTrailerId":"XbfXKk29tWk","studio":"Lisberger\/Kushner","path":"\/movies\/Tron (1982)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Tron (1982)","runtime":96,"cleanTitle":"tron","imdbId":"tt0084827","tmdbId":97,"titleSlug":"97","certification":"PG","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2019-01-19T22:35:35Z","ratings":{"votes":1602,"value":6.7},"movieFile":{"movieId":425,"relativePath":"Tron.1982-Bluray-1080p.mkv","path":"\/movies\/Tron (1982)\/Tron.1982-Bluray-1080p.mkv","size":12694309801,"dateAdded":"2019-01-20T00:17:45Z","sceneName":"Tron.1982.iNTERNAL.1080p.BluRay.x264-MOOVEE","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3701868,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13886066,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x870","runTime":"1:35:47","scanType":"Progressive","subtitles":"Danish \/ Dutch \/ English \/ Finnish \/ French \/ German \/ Icelandic \/ Italian \/ Norwegian \/ Portuguese \/ Spanish \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MOOVEE","edition":"","id":484},"collection":{"name":"TRON Collection","tmdbId":63043,"images":[]},"id":425},{"title":"TRON: Legacy","originalTitle":"TRON: Legacy","alternateTitles":[{"sourceType":"tmdb","movieId":426,"title":"Tron 2.0","sourceId":20526,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":733},{"sourceType":"tmdb","movieId":426,"title":"Tron 2","sourceId":20526,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":734},{"sourceType":"tmdb","movieId":426,"title":"Tron Legacy 3D","sourceId":20526,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":735},{"sourceType":"tmdb","movieId":426,"title":"TRON \u2013 O Legado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1980},{"sourceType":"tmdb","movieId":426,"title":"Tron 2 - Legacy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1981},{"sourceType":"tmdb","movieId":426,"title":"\u521b\uff1a\u5149\u901f\u6218\u8bb0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1982},{"sourceType":"tmdb","movieId":426,"title":"\u7535\u5b50\u4e16\u754c\u4e89\u9738\u62182","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1983},{"sourceType":"tmdb","movieId":426,"title":"Tron","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1984},{"sourceType":"tmdb","movieId":426,"title":"Tron : l'h\u00e9ritage","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1985},{"sourceType":"tmdb","movieId":426,"title":"Tron El Legado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1986},{"sourceType":"tmdb","movieId":426,"title":"\u0422\u0440\u043e\u043d: \u041d\u0430\u0441\u043b\u0435\u0434\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1987},{"sourceType":"tmdb","movieId":426,"title":"Tron: Zapu\u0161\u010dina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1988}],"secondaryYearSourceId":0,"sortTitle":"tron legacy","sizeOnDisk":2562969118,"status":"released","overview":"Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.","inCinemas":"2010-12-14T00:00:00Z","physicalRelease":"2011-04-05T00:00:00Z","digitalRelease":"2013-11-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/426\/poster.jpg?lastWrite=637395892801984987","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vuifSABRpSnxCAOxEnWpNbZSXpp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/426\/fanart.jpg?lastWrite=637424424460956053","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fzL28DKiE1ZBEZbzfb3Wohmo9Bl.jpg"}],"website":"http:\/\/disney.go.com\/tron\/","year":2010,"hasFile":true,"youTubeTrailerId":"d4RiUy23e9s","studio":"Revolution Sun Studios","path":"\/movies\/TRON Legacy (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/TRON Legacy (2010)","runtime":125,"cleanTitle":"tronlegacy","imdbId":"tt1104001","tmdbId":20526,"titleSlug":"20526","certification":"PG","genres":["Adventure","Action","Science Fiction"],"tags":[],"added":"2019-01-19T22:35:37Z","ratings":{"votes":5663,"value":6.4},"movieFile":{"movieId":426,"relativePath":"TRON Legacy.2010-Bluray-1080p.mp4","path":"\/movies\/TRON Legacy (2010)\/TRON Legacy.2010-Bluray-1080p.mp4","size":2562969118,"dateAdded":"2019-01-19T22:54:43Z","sceneName":"Tron.Legacy.2010.PROPER.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:05:08","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":482},"collection":{"name":"TRON Collection","tmdbId":63043,"images":[]},"id":426},{"title":"Passagier 23","originalTitle":"Passagier 23","alternateTitles":[{"sourceType":"tmdb","movieId":427,"title":"Passagier 23 - Verschwunden auf hoher See","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5045}],"secondaryYearSourceId":0,"sortTitle":"passagier 23","sizeOnDisk":0,"status":"released","overview":"","digitalRelease":"2018-12-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/427\/poster.jpg?lastWrite=637243714939731903","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3HOzjKO3GrtO29LSWWRi5nJrLJw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/427\/fanart.jpg?lastWrite=637608475028918931","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lFQRuxXfxJsWq7rJStdekBPSp7U.jpg"}],"website":"","year":2018,"hasFile":false,"youTubeTrailerId":"","studio":"Zieglerfilm K\u00f6ln","path":"\/movies\/Passagier 23 (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Passagier 23 (2018)","runtime":0,"cleanTitle":"passagier23","imdbId":"tt8002304","tmdbId":567623,"titleSlug":"567623","genres":["Thriller"],"tags":[],"added":"2019-01-26T21:14:42Z","ratings":{"votes":11,"value":6},"id":427},{"title":"The Shining","originalTitle":"The Shining","alternateTitles":[{"sourceType":"tmdb","movieId":428,"title":"Stanley Kubrick's The Shining","sourceId":694,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":955},{"sourceType":"tmdb","movieId":428,"title":"The Shining 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4051},{"sourceType":"tmdb","movieId":428,"title":"Z\u00e1ren\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4052},{"sourceType":"tmdb","movieId":428,"title":"Hiilgus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4053},{"sourceType":"tmdb","movieId":428,"title":"Hohto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4054},{"sourceType":"tmdb","movieId":428,"title":"I lampsi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4055},{"sourceType":"tmdb","movieId":428,"title":"Derakhshesh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4056},{"sourceType":"tmdb","movieId":428,"title":"O Iluminado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4350},{"sourceType":"tmdb","movieId":428,"title":"El Resplandor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5512},{"sourceType":"tmdb","movieId":428,"title":"Porlash","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5621},{"sourceType":"tmdb","movieId":428,"title":"Rongraem Phi Narok","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5622}],"secondaryYearSourceId":0,"sortTitle":"shining","sizeOnDisk":2941900843,"status":"released","overview":"Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.","inCinemas":"1980-06-13T00:00:00Z","physicalRelease":"1999-06-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/428\/poster.jpg?lastWrite=637646534849981755","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/b6ko0IKC8MdYBBPkkA1aBPLe2yz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/428\/fanart.jpg?lastWrite=637313755140539817","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AdKA2F1SzYPhSZdEbjH1Zh75UVQ.jpg"}],"website":"","year":1980,"hasFile":true,"youTubeTrailerId":"ANKdpe4J2h0","studio":"Hawk Films","path":"\/movies\/The Shining (1980)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Shining (1980)","runtime":144,"cleanTitle":"theshining","imdbId":"tt0081505","tmdbId":694,"titleSlug":"694","certification":"R","genres":["Horror","Thriller"],"tags":[],"added":"2019-01-27T12:24:22Z","ratings":{"votes":13327,"value":8.2},"movieFile":{"movieId":428,"relativePath":"The Shining.1980-Bluray-1080p.mp4","path":"\/movies\/The Shining (1980)\/The Shining.1980-Bluray-1080p.mp4","size":2941900843,"dateAdded":"2019-01-27T12:43:48Z","sceneName":"The.Shining.1980.US.DC.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:23:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":486},"collection":{"name":"The Shining Collection","tmdbId":530064,"images":[]},"id":428},{"title":"Room 237","originalTitle":"Room 237","alternateTitles":[{"sourceType":"tmdb","movieId":429,"title":"Huone 237","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2870},{"sourceType":"tmdb","movieId":429,"title":"Room 237: Being An Inquiry Into The Shining In 9 Parts","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2871},{"sourceType":"tmdb","movieId":429,"title":"\u9b3c\u5e97\u4e4b237\u865f\u623f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2872}],"secondaryYearSourceId":0,"sortTitle":"room 237","sizeOnDisk":2111001485,"status":"released","overview":"A subjective documentary that explores various theories about hidden meanings in Stanley Kubrick's classic film The Shining. Five very different points of view are illuminated through voice over, film clips, animation and dramatic reenactments.","inCinemas":"2012-10-26T00:00:00Z","digitalRelease":"2015-04-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/429\/poster.jpg?lastWrite=637613667969416164","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pUGmXi0ShitYdLbtphLfThEoQhN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/429\/fanart.jpg?lastWrite=637286087254663613","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/maUKtfaisyzQMWhjRHXu0jnKLa7.jpg"}],"website":"http:\/\/room237movie.com\/","year":2012,"hasFile":true,"youTubeTrailerId":"hXgVb1E_zxQ","studio":"IFC Midnight","path":"\/movies\/Room 237 (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Room 237 (2012)","runtime":102,"cleanTitle":"room237","imdbId":"tt2085910","tmdbId":84330,"titleSlug":"84330","certification":"NR","genres":["Documentary"],"tags":[],"added":"2019-01-27T12:24:53Z","ratings":{"votes":391,"value":6.2},"movieFile":{"movieId":429,"relativePath":"Room 237.2012-Bluray-1080p.mp4","path":"\/movies\/Room 237 (2012)\/Room 237.2012-Bluray-1080p.mp4","size":2111001485,"dateAdded":"2019-04-15T04:28:43Z","sceneName":"Room.237.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:43:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":540},"id":429},{"title":"The NeverEnding Story II: The Next Chapter","originalTitle":"The NeverEnding Story II: The Next Chapter","alternateTitles":[{"sourceType":"tmdb","movieId":430,"title":"The NeverEnding Story 2: The Next Chapter","sourceId":34636,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":747},{"sourceType":"tmdb","movieId":430,"title":"La historia sin fin II: Salven a Fantas\u00eda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3423},{"sourceType":"tmdb","movieId":430,"title":"Histoire sans fin II,L': Un nouveau chap\u00eetre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3424},{"sourceType":"tmdb","movieId":430,"title":"Die unendliche Geschichte 2: Auf der Suche nach Phant\u00e1sien","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3425},{"sourceType":"tmdb","movieId":430,"title":"Die unendliche Geschichte II - Auf der Suche nach Fantasien","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3426},{"sourceType":"tmdb","movieId":430,"title":"La Historia Interminable 2: El Siguiente Capi\u0301tulo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3427},{"sourceType":"tmdb","movieId":430,"title":"La historia sin fin 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3428},{"sourceType":"tmdb","movieId":430,"title":"Nieko\u0144cz\u0105ca si\u0119 opowie\u015b\u0107 2: Nast\u0119pny rozdzia\u0142","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3429},{"sourceType":"tmdb","movieId":430,"title":"Hist\u00f3ria Intermin\u00e1vel 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3430},{"sourceType":"tmdb","movieId":430,"title":"Den o\u00e4ndliga historien 2 - N\u00e4sta kapitel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3431}],"secondaryYearSourceId":0,"sortTitle":"neverending story ii next chapter","sizeOnDisk":1838640840,"status":"released","overview":"Once again, Bastian is transported to the world of Fantasia which he recently managed to save from destruction. However, the land is now being destroyed by an evil sorceress, Xayide, so he must join up with Atreyu and face the Emptiness once more.","inCinemas":"1990-10-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/430\/poster.jpg?lastWrite=637621451968377748","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5QfUCbgKzWzjHO5X4ANsDmuTxNQ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/430\/fanart.jpg?lastWrite=637395028368570309","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7LqetIgyGtpgG1cQoMRxj9Y8hn0.jpg"}],"website":"","year":1990,"hasFile":true,"youTubeTrailerId":"hoTYeJdcSKE","studio":"Dieter Geissler Filmproduktion","path":"\/movies\/The NeverEnding Story II The Next Chapter (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The NeverEnding Story II The Next Chapter (1990)","runtime":89,"cleanTitle":"theneverendingstoryiinextchapter","imdbId":"tt0100240","tmdbId":34636,"titleSlug":"34636","certification":"PG","genres":["Drama","Family","Fantasy"],"tags":[],"added":"2019-01-28T20:51:45Z","ratings":{"votes":597,"value":5.7},"movieFile":{"movieId":430,"relativePath":"The NeverEnding Story II The Next Chapter.1990-Bluray-1080p.mp4","path":"\/movies\/The NeverEnding Story II The Next Chapter (1990)\/The NeverEnding Story II The Next Chapter.1990-Bluray-1080p.mp4","size":1838640840,"dateAdded":"2019-08-04T20:31:58Z","sceneName":"The.Neverending.Story.II.The.Next.Chapter.1990.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:29:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":562},"collection":{"name":"The Neverending Story Collection","tmdbId":91430,"images":[]},"id":430},{"title":"The NeverEnding Story III","originalTitle":"The NeverEnding Story III","alternateTitles":[{"sourceType":"tmdb","movieId":431,"title":"The Neverending Story 3: Escape from Fantasia","sourceId":27793,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":748},{"sourceType":"tmdb","movieId":431,"title":"The Neverending Story III: Escape from Fantasia","sourceId":27793,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":749},{"sourceType":"tmdb","movieId":431,"title":"Die unendliche Geschichte 3: Rettung aus Phantasien","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4571},{"sourceType":"tmdb","movieId":431,"title":"La historia interminable 3: Las aventuras de Bastian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4572},{"sourceType":"tmdb","movieId":431,"title":"L'Histoire sans fin 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4573},{"sourceType":"tmdb","movieId":431,"title":"The Neverending Story III: Return to Fantasia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4574},{"sourceType":"tmdb","movieId":431,"title":"Nieko\u0144cz\u0105ca si\u0119 opowie\u015b\u0107 3: Ucieczka z krainy Fantazji","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4575}],"secondaryYearSourceId":0,"sortTitle":"neverending story iii","sizeOnDisk":7043818577,"status":"released","overview":"A young boy must restore order when a group of bullies steal the magical book that acts as a portal between Earth and the imaginary world of Fantasia.","inCinemas":"1994-10-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/431\/poster.jpg?lastWrite=637575612524603897","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/o75HHfr23sgeqIeUPwjKY0V9Ppi.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/431\/fanart.jpg?lastWrite=637652590670293535","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4ODWHlHUeWz94rA0n4bwNOtMVJA.jpg"}],"website":"","year":1994,"hasFile":true,"youTubeTrailerId":"XiiyFFZjq0Y","studio":"Studio Babelsberg","path":"\/movies\/The NeverEnding Story III (1994)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The NeverEnding Story III (1994)","runtime":95,"cleanTitle":"theneverendingstoryiii","imdbId":"tt0110647","tmdbId":27793,"titleSlug":"27793","certification":"G","genres":["Fantasy","Family"],"tags":[],"added":"2019-01-28T20:51:46Z","ratings":{"votes":285,"value":4.4},"movieFile":{"movieId":431,"relativePath":"The NeverEnding Story III.1994-Bluray-1080p.mkv","path":"\/movies\/The NeverEnding Story III (1994)\/The NeverEnding Story III.1994-Bluray-1080p.mkv","size":7043818577,"dateAdded":"2019-08-08T12:46:36Z","sceneName":"The.Neverending.Story.III.1994.1080p.BluRay.x264-iFPD","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":768000,"audioChannels":2.0,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9531000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x1040","runTime":"1:31:11","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"theneverendingstory3","edition":"","id":576},"collection":{"name":"The Neverending Story Collection","tmdbId":91430,"images":[]},"id":431},{"title":"The NeverEnding Story","originalTitle":"Die unendliche Geschichte","alternateTitles":[{"sourceType":"tmdb","movieId":432,"title":"La historia sin fin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2517},{"sourceType":"tmdb","movieId":432,"title":"\u041f\u0440\u0438\u043a\u0430\u0437\u043a\u0430 \u0431\u0435\u0437 \u043a\u0440\u0430\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2518},{"sourceType":"tmdb","movieId":432,"title":"A Hist\u00f3ria sem Fim","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2519},{"sourceType":"tmdb","movieId":432,"title":"Nekone\u010dn\u00fd P\u0159\u00edb\u011bh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2520},{"sourceType":"tmdb","movieId":432,"title":"Die unendliche Geschichte 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2521},{"sourceType":"tmdb","movieId":432,"title":"Die unendliche Geschichte, The NeverEnding Story","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2522},{"sourceType":"tmdb","movieId":432,"title":"Den uendelige historie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2523},{"sourceType":"tmdb","movieId":432,"title":"La historia interminable","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2524},{"sourceType":"tmdb","movieId":432,"title":"P\u00e4\u00e4ttym\u00e4t\u00f6n tarina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2525},{"sourceType":"tmdb","movieId":432,"title":"L'histoire sans fin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2526},{"sourceType":"tmdb","movieId":432,"title":"Istoria dihos telos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2527},{"sourceType":"tmdb","movieId":432,"title":"\u0399\u03c3\u03c4\u03bf\u03c1\u03af\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c4\u03ad\u03bb\u03bf\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2528},{"sourceType":"tmdb","movieId":432,"title":"V\u00e9gtelen t\u00f6rt\u00e9net","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2529},{"sourceType":"tmdb","movieId":432,"title":"Ha-Sippur Sh'Eino Nigmar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2530},{"sourceType":"tmdb","movieId":432,"title":"Dastan-e bipayan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2531},{"sourceType":"tmdb","movieId":432,"title":"Sagan Endalausa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2532},{"sourceType":"tmdb","movieId":432,"title":"La Storia Infinita 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2533},{"sourceType":"tmdb","movieId":432,"title":"La Storia Infinita I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2534},{"sourceType":"tmdb","movieId":432,"title":"\u30cd\u30d0\u30fc\u30a8\u30f3\u30c7\u30a3\u30f3\u30b0\u30fb\u30b9\u30c8\u30fc\u30ea\u30fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2535},{"sourceType":"tmdb","movieId":432,"title":"Begaline istorija","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2536},{"sourceType":"tmdb","movieId":432,"title":"Het Oneindige Verhaal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2537},{"sourceType":"tmdb","movieId":432,"title":"Den uendelige historien","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":2538},{"sourceType":"tmdb","movieId":432,"title":"Nieko\u0144cz\u0105ca si\u0119 opowie\u015b\u0107","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2539},{"sourceType":"tmdb","movieId":432,"title":"Hist\u00f3ria Intermin\u00e1vel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2540},{"sourceType":"tmdb","movieId":432,"title":"Beskrajna pri\u010da","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2541},{"sourceType":"tmdb","movieId":432,"title":"\u0411\u0435\u0441\u043a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2542},{"sourceType":"tmdb","movieId":432,"title":"Den o\u00e4ndliga historien","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2543},{"sourceType":"tmdb","movieId":432,"title":"Hi\u00e7 Bitmeyen \u00d6yk\u00fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2544},{"sourceType":"tmdb","movieId":432,"title":"\u5927\u9b54\u57df","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2545},{"sourceType":"tmdb","movieId":432,"title":"\u041d\u0435\u0441\u043a\u0456\u043d\u0447\u0435\u043d\u043d\u0430 \u0456\u0441\u0442\u043e\u0440\u0456\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2546}],"secondaryYearSourceId":0,"sortTitle":"neverending story","sizeOnDisk":1931192435,"status":"released","overview":"While hiding from bullies in his school's attic, a young boy discovers the extraordinary land of Fantasia, through a magical book called The Neverending Story. The book tells the tale of Atreyu, a young warrior who, with the help of a luck dragon named Falkor, must save Fantasia from the destruction of The Nothing.","inCinemas":"1984-04-05T00:00:00Z","physicalRelease":"2001-12-19T00:00:00Z","digitalRelease":"2006-04-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/432\/poster.jpg?lastWrite=637623181675368073","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ddYCa91iDXfJCxaqSYzwi2fjfnl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/432\/fanart.jpg?lastWrite=637623181676888046","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8VFea9nnOcHEYzBtfTDDKdPe7xj.jpg"}],"website":"","year":1984,"hasFile":true,"youTubeTrailerId":"kMsRpBAEu3g","studio":"Constantin Film","path":"\/movies\/The NeverEnding Story (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The NeverEnding Story (1984)","runtime":102,"cleanTitle":"theneverendingstory","imdbId":"tt0088323","tmdbId":34584,"titleSlug":"34584","certification":"PG","genres":["Drama","Family","Fantasy"],"tags":[],"added":"2019-01-28T20:51:47Z","ratings":{"votes":3030,"value":7.2},"movieFile":{"movieId":432,"relativePath":"The NeverEnding Story.1984-Bluray-1080p.mp4","path":"\/movies\/The NeverEnding Story (1984)\/The NeverEnding Story.1984-Bluray-1080p.mp4","size":1931192435,"dateAdded":"2019-01-28T21:06:30Z","sceneName":"The.NeverEnding.Story.1984.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:34:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":487},"collection":{"name":"The Neverending Story Collection","tmdbId":91430,"images":[]},"id":432},{"title":"One Flew Over the Cuckoo's Nest","originalTitle":"One Flew Over the Cuckoo's Nest","alternateTitles":[{"sourceType":"tmdb","movieId":433,"title":"Cuckoo's Nest","sourceId":510,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":752},{"sourceType":"tmdb","movieId":433,"title":"Vol au-dessus d'un nid de coucou","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1646},{"sourceType":"tmdb","movieId":433,"title":"\u062f\u06cc\u0648\u0627\u0646\u0647 \u0627\u06cc \u0627\u0632 \u0642\u0641\u0633 \u067e\u0631\u06cc\u062f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1647},{"sourceType":"tmdb","movieId":433,"title":"Qualcuno vol\u00f2 sul nido del cuculo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1648},{"sourceType":"tmdb","movieId":433,"title":"\ubed0\uafb8\uae30 \ub465\uc9c0 \uc704\ub85c \ub0a0\uc544\uac04 \uc0c8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1649},{"sourceType":"tmdb","movieId":433,"title":"Vlucht boven een koekoeksnest","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":1650},{"sourceType":"tmdb","movieId":433,"title":"Gj\u00f8keredet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":1651},{"sourceType":"tmdb","movieId":433,"title":"Lot nad kuku\u0142czym gniazdem","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5163},{"sourceType":"tmdb","movieId":433,"title":"G\u00f6kboet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5178}],"secondaryYearSourceId":0,"sortTitle":"one flew over cuckoo s nest","sizeOnDisk":10864177321,"status":"released","overview":"While serving time for insanity at a state mental hospital, implacable rabble-rouser, Randle Patrick McMurphy, inspires his fellow patients to rebel against the authoritarian rule of head nurse, Mildred Ratched.","inCinemas":"1975-11-18T00:00:00Z","physicalRelease":"1984-09-11T00:00:00Z","digitalRelease":"1995-09-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/433\/poster.jpg?lastWrite=637532369593030703","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3jcbDmRFiQ83drXNOvRDeKHxS0C.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/433\/fanart.jpg?lastWrite=637649995178096574","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3KwAmIKMaDcBMonF5wmyNTL0SR6.jpg"}],"website":"","year":1975,"hasFile":true,"youTubeTrailerId":"OXrcDonY-B8","studio":"Fantasy Films","path":"\/movies\/One Flew Over the Cuckoo's Nest (1975)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/One Flew Over the Cuckoo's Nest (1975)","runtime":133,"cleanTitle":"oneflewovercuckoosnest","imdbId":"tt0073486","tmdbId":510,"titleSlug":"510","certification":"R","genres":["Drama"],"tags":[],"added":"2019-01-30T16:45:31Z","ratings":{"votes":7962,"value":8.4},"movieFile":{"movieId":433,"relativePath":"One Flew Over the Cuckoo's Nest.1975-Bluray-1080p.mkv","path":"\/movies\/One Flew Over the Cuckoo's Nest (1975)\/One Flew Over the Cuckoo's Nest.1975-Bluray-1080p.mkv","size":10864177321,"dateAdded":"2019-02-27T23:29:17Z","sceneName":"One.Flew.Over.The.Cuckoos.Nest.1975.1080p.BluRay.x264.DD5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10192000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:13:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":512},"id":433},{"title":"Ultraviolet","originalTitle":"Ultraviolet","alternateTitles":[{"sourceType":"tmdb","movieId":434,"title":"Ultraviolet - UR","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3444},{"sourceType":"tmdb","movieId":434,"title":"Ultraviolette","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3445},{"sourceType":"tmdb","movieId":434,"title":"\u7d2b\u5916\u7ebf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3446},{"sourceType":"tmdb","movieId":434,"title":"\uc6b8\ud2b8\ub77c\ubc14\uc774\uc62c\ub81b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3447},{"sourceType":"tmdb","movieId":434,"title":"\u7d2b\u5149\u4efb\u52d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3448}],"secondaryYearSourceId":0,"sortTitle":"ultraviolet","sizeOnDisk":10218558903,"status":"released","overview":"In the late 21st century, a subculture of humans have emerged who have been modified genetically by a vampire-like disease, giving them enhanced speed, incredible stamina and acute intelligence. As they are set apart from \"normal\" and \"healthy\" humans, the world is pushed to the brink of worldwide civil war aimed at the destruction of the \"diseased\" population. In the middle of this crossed-fire is - an infected woman - Ultraviolet, who finds herself protecting a nine-year-old boy who has been marked for death by the human government as he is believed to be a threat to humans.","inCinemas":"2006-03-03T00:00:00Z","physicalRelease":"2006-08-01T00:00:00Z","digitalRelease":"2009-04-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/434\/poster.jpg?lastWrite=637648265251155107","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/m7zmITxp3Pfa9dMEEs55mIDQdpj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/434\/fanart.jpg?lastWrite=637648265252715082","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oadQq5Qy44zzSqkGshuECjDfZE5.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/ultraviolet\/","year":2006,"hasFile":true,"youTubeTrailerId":"3O79UT32DzY","studio":"Ultravi Productions","path":"\/movies\/Ultraviolet (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Ultraviolet (2006)","runtime":87,"cleanTitle":"ultraviolet","imdbId":"tt0370032","tmdbId":9920,"titleSlug":"9920","certification":"PG-13","genres":["Science Fiction","Action","Thriller"],"tags":[],"added":"2019-02-01T02:35:05Z","ratings":{"votes":1152,"value":5.1},"movieFile":{"movieId":434,"relativePath":"Ultraviolet.2006-Bluray-1080p.mkv","path":"\/movies\/Ultraviolet (2006)\/Ultraviolet.2006-Bluray-1080p.mkv","size":10218558903,"dateAdded":"2019-02-28T20:41:43Z","sceneName":"Ultraviolet.2006.EXTENDED.1080p.BluRay.x264.DTS-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12885000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:34:27","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"EXTENDED CUT","id":513},"id":434},{"title":"\u00c6on Flux","originalTitle":"\u00c6on Flux","alternateTitles":[{"sourceType":"tmdb","movieId":435,"title":"Aeon Flux","sourceId":8202,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":753},{"sourceType":"tmdb","movieId":435,"title":"\u4e07\u53e4\u6d41\u4f20","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1367},{"sourceType":"tmdb","movieId":435,"title":"\u5029\u5f71\u523a\u5ba2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1368},{"sourceType":"tmdb","movieId":435,"title":"\u00c6on Flux - Blicke der Zukunft ins Auge","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1369},{"sourceType":"tmdb","movieId":435,"title":"Eon Fluks","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1370}],"secondaryYearSourceId":0,"sortTitle":"\u00e6on flux","sizeOnDisk":10943437288,"status":"released","overview":"400 years into the future, disease has wiped out the majority of the world's population, except one walled city, Bregna, ruled by a congress of scientists. When \u00c6on Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.","inCinemas":"2005-11-30T00:00:00Z","physicalRelease":"2006-01-01T00:00:00Z","digitalRelease":"2008-09-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/435\/poster.jpg?lastWrite=637627505380917734","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9AeMjcnsKw5zG85RJI5gU2idp3O.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/435\/fanart.jpg?lastWrite=637657781162385453","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/a8A9VecTAzRHdRH5fvwVcg0zGU0.jpg"}],"website":"","year":2005,"hasFile":true,"youTubeTrailerId":"d11loPMnC2w","studio":"Paramount","path":"\/movies\/\u00c6on Flux (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/\u00c6on Flux (2005)","runtime":93,"cleanTitle":"\u00e6onflux","imdbId":"tt0402022","tmdbId":8202,"titleSlug":"8202","certification":"PG-13","genres":["Science Fiction","Action","Thriller"],"tags":[],"added":"2019-02-01T02:36:37Z","ratings":{"votes":1650,"value":5.6},"movieFile":{"movieId":435,"relativePath":"\u00c6on Flux.2005-Bluray-1080p.mkv","path":"\/movies\/\u00c6on Flux (2005)\/\u00c6on Flux.2005-Bluray-1080p.mkv","size":10943437288,"dateAdded":"2019-04-15T04:09:43Z","sceneName":"AEon.Flux.2005.1080p.BluRay.x264.DTS-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":14212000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:32:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":539},"id":435},{"title":"IO","originalTitle":"IO","alternateTitles":[{"sourceType":"tmdb","movieId":436,"title":"IO: Last on Earth","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2181},{"sourceType":"tmdb","movieId":436,"title":"Io - Sola sulla Terra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2182},{"sourceType":"tmdb","movieId":436,"title":"IO \ub77c\uc2a4\ud2b8 \uc628 \uc5b4\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2183},{"sourceType":"tmdb","movieId":436,"title":"IO: Sola en la Tierra","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2184},{"sourceType":"tmdb","movieId":436,"title":"\u5c11\u5973\u6551\u5730\u7403","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2185},{"sourceType":"tmdb","movieId":436,"title":"Destination IO","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6023}],"secondaryYearSourceId":0,"sortTitle":"io","sizeOnDisk":5206178039,"status":"released","overview":"As a young scientist searches for a way to save a dying Earth, she finds a connection with a man who's racing to catch the last shuttle off the planet.","digitalRelease":"2019-01-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/436\/poster.jpg?lastWrite=637630965208553183","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/utH781EwjzzXQC6fZUO3cw8L5Ht.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/436\/fanart.jpg?lastWrite=637663836831713429","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tirhxzSR6g1A9Iayo2lpYW4luUF.jpg"}],"website":"https:\/\/www.netflix.com\/title\/80134721","year":2019,"hasFile":true,"youTubeTrailerId":"y3GLhAumiec","studio":"Mandalay Pictures","path":"\/movies\/IO (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/IO (2019)","runtime":96,"cleanTitle":"io","imdbId":"tt3256226","tmdbId":433249,"titleSlug":"433249","certification":"PG-13","genres":["Science Fiction"],"tags":[],"added":"2019-02-01T17:24:00Z","ratings":{"votes":1075,"value":4.8},"movieFile":{"movieId":436,"relativePath":"IO.2019-WEBDL-1080p.mkv","path":"\/movies\/IO (2019)\/IO.2019-WEBDL-1080p.mkv","size":5206178039,"dateAdded":"2019-02-01T17:30:08Z","sceneName":"IO.2019.1080p.NF.WEBRip.DD5.1.x264-CM","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6840640,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:36:02","scanType":"Progressive","subtitles":"English \/ French \/ Dutch \/ Danish \/ Norwegian \/ Portuguese \/ Portuguese \/ Polish \/ Spanish \/ \/ \/ German \/ Spanish \/ Finnish \/ Italian \/ Swedish \/ \/ Turkish"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CM","edition":"","id":489},"id":436},{"title":"Twelve Monkeys","originalTitle":"Twelve Monkeys","alternateTitles":[{"sourceType":"tmdb","movieId":437,"title":"12 mai\u0306muni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2944},{"sourceType":"tmdb","movieId":437,"title":"Doce monos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2945},{"sourceType":"tmdb","movieId":437,"title":"Oi D\u00f3deka P\u00edthikoi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2946},{"sourceType":"tmdb","movieId":437,"title":"L'esercito delle dodici scimmie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2947},{"sourceType":"tmdb","movieId":437,"title":"Dwana\u015bcie ma\u0142p","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2949},{"sourceType":"tmdb","movieId":437,"title":"12 majmuna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2950},{"sourceType":"tmdb","movieId":437,"title":"12 obez'yan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2951},{"sourceType":"tmdb","movieId":437,"title":"\u0414\u0432\u0435\u043d\u0430\u0434\u0446\u0430\u0442\u044c \u043e\u0431\u0435\u0437\u044c\u044f\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2952},{"sourceType":"tmdb","movieId":437,"title":"12 mavp","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2953},{"sourceType":"tmdb","movieId":437,"title":"\u0414\u0432\u0430\u043d\u0430\u0434\u0446\u044f\u0442\u044c \u043c\u0430\u0432\u043f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2954},{"sourceType":"tmdb","movieId":437,"title":"12 Monkeys","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4978},{"sourceType":"tmdb","movieId":437,"title":"L'arm\u00e9e des douze singes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6043}],"secondaryYearSourceId":0,"sortTitle":"twelve monkeys","sizeOnDisk":2651875427,"status":"released","overview":"In the year 2035, convict James Cole reluctantly volunteers to be sent back in time to discover the origin of a deadly virus that wiped out nearly all of the earth's population and forced the survivors into underground communities. But when Cole is mistakenly sent to 1990 instead of 1996, he's arrested and locked up in a mental hospital. There he meets psychiatrist Dr. Kathryn Railly, and patient Jeffrey Goines, the son of a famous virus expert, who may hold the key to the mysterious rogue group, the Army of the 12 Monkeys, thought to be responsible for unleashing the killer disease.","inCinemas":"1996-01-05T00:00:00Z","physicalRelease":"1996-11-01T00:00:00Z","digitalRelease":"2002-06-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/437\/poster.jpg?lastWrite=637592045750582227","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fCZnJSARoTbLefr9ThwWBSkJ7oR.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/437\/fanart.jpg?lastWrite=637516801783916209","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rPRcZAOMJLcUX98Jqo9iqlKY998.jpg"}],"website":"","year":1995,"hasFile":true,"youTubeTrailerId":"YxLbHHYGzkg","studio":"Universal Pictures","path":"\/movies\/Twelve Monkeys (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Twelve Monkeys (1995)","runtime":129,"cleanTitle":"twelvemonkeys","imdbId":"tt0114746","tmdbId":63,"titleSlug":"63","certification":"R","genres":["Science Fiction","Thriller","Mystery"],"tags":[],"added":"2019-02-05T23:01:10Z","ratings":{"votes":6370,"value":7.6},"movieFile":{"movieId":437,"relativePath":"Twelve Monkeys.1995-Bluray-1080p.mp4","path":"\/movies\/Twelve Monkeys (1995)\/Twelve Monkeys.1995-Bluray-1080p.mp4","size":2651875427,"dateAdded":"2019-02-05T23:23:21Z","sceneName":"Twelve.Monkeys.1995.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:09:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":495},"id":437},{"title":"Mission: Impossible","originalTitle":"Mission: Impossible","alternateTitles":[{"sourceType":"tmdb","movieId":439,"title":"Mission Impossible I","sourceId":954,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":755},{"sourceType":"tmdb","movieId":439,"title":"Mission: Impossible 1","sourceId":954,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":756},{"sourceType":"tmdb","movieId":439,"title":"M:I-1","sourceId":954,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":757},{"sourceType":"tmdb","movieId":439,"title":"Mission Impossible 01 Mission Impossible","sourceId":954,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":758},{"sourceType":"tmdb","movieId":439,"title":"MI-1 - Mission Impossible","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4599},{"sourceType":"tmdb","movieId":439,"title":"Misi\u00f3n Imposible","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4600},{"sourceType":"tmdb","movieId":439,"title":"Mission Impossible - IM1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4601},{"sourceType":"tmdb","movieId":439,"title":"Nemogu\u0107a misija","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4602},{"sourceType":"tmdb","movieId":439,"title":"\ubbf8\uc158 \uc784\ud30c\uc11c\ube14","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4603},{"sourceType":"tmdb","movieId":439,"title":"\u041c\u0438\u0441\u0441\u0438\u044f: \u041d\u0435\u0432\u044b\u043f\u043e\u043b\u043d\u0438\u043c\u0430 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4604},{"sourceType":"tmdb","movieId":439,"title":"Misija - Nemogoce","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4605},{"sourceType":"tmdb","movieId":439,"title":"\u041c\u0456\u0441\u0456\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4606},{"sourceType":"tmdb","movieId":439,"title":"\u4e0d\u53ef\u80fd\u7684\u4efb\u52a1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4845},{"sourceType":"tmdb","movieId":439,"title":"Miss\u00e3o Imposs\u00edvel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6094}],"secondaryYearSourceId":0,"sortTitle":"mission impossible","sizeOnDisk":2256088640,"status":"released","overview":"When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.","inCinemas":"1996-05-22T00:00:00Z","physicalRelease":"2000-07-05T00:00:00Z","digitalRelease":"2002-05-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/439\/poster.jpg?lastWrite=637637884877461624","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lirMXnE7NoVLDr3qeqf48fR1mk4.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/439\/fanart.jpg?lastWrite=637655186463233422","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pbaAkR1FDvgndTVFgGRIzf9o49r.jpg"}],"website":"http:\/\/www.missionimpossible.com\/","year":1996,"hasFile":true,"youTubeTrailerId":"0XAlutSwY0I","studio":"Paramount","path":"\/movies\/Mission Impossible (1996)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mission Impossible (1996)","runtime":110,"cleanTitle":"missionimpossible","imdbId":"tt0117060","tmdbId":954,"titleSlug":"954","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-02-06T11:40:46Z","ratings":{"votes":6527,"value":6.9},"movieFile":{"movieId":439,"relativePath":"Mission Impossible.1996-Bluray-1080p.mp4","path":"\/movies\/Mission Impossible (1996)\/Mission Impossible.1996-Bluray-1080p.mp4","size":2256088640,"dateAdded":"2019-02-06T12:28:38Z","sceneName":"Mission.Impossible.1996.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:50:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":497},"collection":{"name":"Mission: Impossible Collection","tmdbId":87359,"images":[]},"id":439},{"title":"Mission: Impossible - Fallout","originalTitle":"Mission: Impossible - Fallout","alternateTitles":[{"sourceType":"tmdb","movieId":440,"title":"M:I VI - Mission Impossible","sourceId":353081,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":759},{"sourceType":"tmdb","movieId":440,"title":"Mission: Impossible VI","sourceId":353081,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":760},{"sourceType":"tmdb","movieId":440,"title":"M:I 6 - Mission Impossible","sourceId":353081,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":761},{"sourceType":"tmdb","movieId":440,"title":"Mission Impossible 6 Fallout","sourceId":353081,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":762},{"sourceType":"tmdb","movieId":440,"title":"Mission Impossible - IM6 - Fallout","sourceId":353081,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":961},{"sourceType":"tmdb","movieId":440,"title":"Mission Impossible VI - Fallout","sourceId":353081,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":962},{"sourceType":"tmdb","movieId":440,"title":"Misi\u00f3n: Imposible - Repercusi\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3413},{"sourceType":"tmdb","movieId":440,"title":"Misi\u00f3n imposible 6: Fallout","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3415},{"sourceType":"tmdb","movieId":440,"title":"Nemoguca misija 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3416},{"sourceType":"tmdb","movieId":440,"title":"Mission Impossible - Ut\u00f3hat\u00e1s","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3417},{"sourceType":"tmdb","movieId":440,"title":"Ne\u012fmanoma misija 6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3418},{"sourceType":"tmdb","movieId":440,"title":"Misi\u00f3n imposible 6: Repercusi\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3419},{"sourceType":"tmdb","movieId":440,"title":"Mission: Impossible - Yansimalar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":3420},{"sourceType":"tmdb","movieId":440,"title":"\u041c\u0456\u0441\u0456\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0430: \u0424\u043e\u043b\u0430\u0443\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3421},{"sourceType":"tmdb","movieId":440,"title":"Nhi\u1ec7m v\u1ee5 b\u1ea5t kh\u1ea3 thi 6: S\u1ee5p \u0111\u1ed5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3422},{"sourceType":"tmdb","movieId":440,"title":"Missao Impossivel Efeito Fallout","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5420},{"sourceType":"tmdb","movieId":440,"title":"\u8077\u696d\u7279\u5de5\u968a6\uff1a\u53db\u9006\u4e4b\u8b0e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6072}],"secondaryYearSourceId":0,"sortTitle":"mission impossible fallout","sizeOnDisk":44503983167,"status":"released","overview":"When an IMF mission ends badly, the world is faced with dire consequences. As Ethan Hunt takes it upon himself to fulfill his original briefing, the CIA begin to question his loyalty and his motives. The IMF team find themselves in a race against time, hunted by assassins while trying to prevent a global catastrophe.","inCinemas":"2018-07-25T00:00:00Z","physicalRelease":"2018-11-21T00:00:00Z","digitalRelease":"2018-11-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/440\/poster.jpg?lastWrite=637666432397113472","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AkJQpZp9WoNdj7pLYSj1L0RcMMN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/440\/fanart.jpg?lastWrite=637666432399273436","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aw4FOsWr2FY373nKSxbpNi3fz4F.jpg"}],"website":"https:\/\/www.missionimpossible.com\/","year":2018,"hasFile":true,"youTubeTrailerId":"MEOOas3JZt0","studio":"Paramount","path":"\/movies\/Mission Impossible - Fallout (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mission Impossible - Fallout (2018)","runtime":147,"cleanTitle":"missionimpossiblefallout","imdbId":"tt4912910","tmdbId":353081,"titleSlug":"353081","certification":"PG-13","genres":["Action","Adventure"],"tags":[],"added":"2019-02-06T11:40:47Z","ratings":{"votes":6087,"value":7.4},"movieFile":{"movieId":440,"relativePath":"Mission Impossible - Fallout.2018-Remux-1080p.mkv","path":"\/movies\/Mission Impossible - Fallout (2018)\/Mission Impossible - Fallout.2018-Remux-1080p.mkv","size":44503983167,"dateAdded":"2019-02-06T13:03:09Z","sceneName":"Mission.Impossible.Fallout.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":0,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":5025563,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ French \/ Spanish \/ Portuguese \/ English \/ English \/ English \/ English \/ English","audioStreamCount":11,"videoBitDepth":8,"videoBitrate":26197880,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:27:24","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ French \/ French \/ Spanish \/ Spanish \/ Portuguese \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese \/ English \/ French \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":498},"collection":{"name":"Mission: Impossible Collection","tmdbId":87359,"images":[]},"id":440},{"title":"Mission: Impossible III","originalTitle":"Mission: Impossible III","alternateTitles":[{"sourceType":"tmdb","movieId":441,"title":"M:I:III","sourceId":956,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1218},{"sourceType":"tmdb","movieId":441,"title":"Mission Impossible 03 Mission Impossible Iii","sourceId":956,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1219},{"sourceType":"tmdb","movieId":441,"title":"Mission Impossible 3","sourceId":956,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1220},{"sourceType":"tmdb","movieId":441,"title":"MI-3 - Mission Impossible III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2848},{"sourceType":"tmdb","movieId":441,"title":"M.I. 3 - Misi\u00f3n Imposible 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2849},{"sourceType":"tmdb","movieId":441,"title":"Misi\u00f3n imposible III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2850},{"sourceType":"tmdb","movieId":441,"title":"M:I III - vaarallinen teht\u00e4v\u00e4 III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2851},{"sourceType":"tmdb","movieId":441,"title":"Vaarallinen teht\u00e4v\u00e4 III","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2852},{"sourceType":"tmdb","movieId":441,"title":"Mission Impossible - IM3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2853},{"sourceType":"tmdb","movieId":441,"title":"\u30df\u30c3\u30b7\u30e7\u30f3\uff1a\u30a4\u30f3\u30dd\u30c3\u30b7\u30d6\u30eb3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2854},{"sourceType":"tmdb","movieId":441,"title":"\ubbf8\uc158 \uc784\ud30c\uc11c\ube14 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2855},{"sourceType":"tmdb","movieId":441,"title":"\u041c\u0456\u0441\u0456\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0430 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2856},{"sourceType":"tmdb","movieId":441,"title":"\u4e0d\u53ef\u80fd\u7684\u4efb\u52a13","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4847},{"sourceType":"tmdb","movieId":441,"title":"MI III Vaarallinen Teht\u00e4v\u00e4 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4986}],"secondaryYearSourceId":0,"sortTitle":"mission impossible iii","sizeOnDisk":2567447820,"status":"released","overview":"Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer, Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.","inCinemas":"2006-05-03T00:00:00Z","physicalRelease":"2006-10-23T00:00:00Z","digitalRelease":"2008-12-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/441\/poster.jpg?lastWrite=637653456220719160","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5l0hS4A119jCA1A02XsFZHq1uRD.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/441\/fanart.jpg?lastWrite=637664702222705872","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mOyF7rHVLF6uLbyb18FWTmcrjJe.jpg"}],"website":"http:\/\/www.missionimpossible.com\/","year":2006,"hasFile":true,"youTubeTrailerId":"OHjIvPO7hv0","studio":"Paramount","path":"\/movies\/Mission Impossible III (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mission Impossible III (2006)","runtime":126,"cleanTitle":"missionimpossibleiii","imdbId":"tt0317919","tmdbId":956,"titleSlug":"956","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-02-06T11:40:49Z","ratings":{"votes":5005,"value":6.7},"movieFile":{"movieId":441,"relativePath":"Mission Impossible III.2006-Bluray-1080p.mp4","path":"\/movies\/Mission Impossible III (2006)\/Mission Impossible III.2006-Bluray-1080p.mp4","size":2567447820,"dateAdded":"2019-02-06T15:05:12Z","sceneName":"Mission.Impossible.III.2006.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:05:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":500},"collection":{"name":"Mission: Impossible Collection","tmdbId":87359,"images":[]},"id":441},{"title":"Mission: Impossible II","originalTitle":"Mission: Impossible II","alternateTitles":[{"sourceType":"tmdb","movieId":442,"title":"M:I-2","sourceId":955,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":766},{"sourceType":"tmdb","movieId":442,"title":"Mission Impossible 2","sourceId":955,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":767},{"sourceType":"tmdb","movieId":442,"title":"Nev\u016dzmozhna misiya 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2837},{"sourceType":"tmdb","movieId":442,"title":"M.I. 2 - Misi\u00f3n Imposible 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2838},{"sourceType":"tmdb","movieId":442,"title":"Misi\u00f3n:Imposible - 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2839},{"sourceType":"tmdb","movieId":442,"title":"Mi-2 - Mission impossible 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2840},{"sourceType":"tmdb","movieId":442,"title":"Mission Impossible - IM2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2841},{"sourceType":"tmdb","movieId":442,"title":"Epik\u00edndyni Apostol\u00ed 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2842},{"sourceType":"tmdb","movieId":442,"title":"\u30df\u30c3\u30b7\u30e7\u30f3\u30a4\u30f3\u30dd\u30c3\u30b7\u30d6\u30eb2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2843},{"sourceType":"tmdb","movieId":442,"title":"\ubbf8\uc158 \uc784\ud30c\uc11c\ube14 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2844},{"sourceType":"tmdb","movieId":442,"title":"Nemogu\u0107a misija II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2845},{"sourceType":"tmdb","movieId":442,"title":"Missiya nevypolnima 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2846},{"sourceType":"tmdb","movieId":442,"title":"Misiya: Nezdiysnenna 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2847},{"sourceType":"tmdb","movieId":442,"title":"\u4e0d\u53ef\u80fd\u7684\u4efb\u52a12","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4846}],"secondaryYearSourceId":0,"sortTitle":"mission impossible ii","sizeOnDisk":2530318261,"status":"released","overview":"With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.","inCinemas":"2000-05-24T00:00:00Z","physicalRelease":"2006-04-20T00:00:00Z","digitalRelease":"2003-09-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/442\/poster.jpg?lastWrite=637630100604418233","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2njB2A85Ni7bRR7vIOrfv6TBPeC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/442\/fanart.jpg?lastWrite=637544476992210620","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/u819Obji086jtXzPfEDZbG1GEBt.jpg"}],"website":"","year":2000,"hasFile":true,"youTubeTrailerId":"vIpqpRuGrq4","studio":"Paramount","path":"\/movies\/Mission Impossible II (2000)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mission Impossible II (2000)","runtime":123,"cleanTitle":"missionimpossibleii","imdbId":"tt0120755","tmdbId":955,"titleSlug":"955","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-02-06T11:40:51Z","ratings":{"votes":4925,"value":6.1},"movieFile":{"movieId":442,"relativePath":"Mission Impossible II.2000-Bluray-1080p.mp4","path":"\/movies\/Mission Impossible II (2000)\/Mission Impossible II.2000-Bluray-1080p.mp4","size":2530318261,"dateAdded":"2019-02-06T15:20:42Z","sceneName":"Mission.Impossible.II.2000.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:03:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":501},"collection":{"name":"Mission: Impossible Collection","tmdbId":87359,"images":[]},"id":442},{"title":"Mission: Impossible - Rogue Nation","originalTitle":"Mission: Impossible - Rogue Nation","alternateTitles":[{"sourceType":"tmdb","movieId":443,"title":"M:i 5","sourceId":177677,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":769},{"sourceType":"tmdb","movieId":443,"title":"Mission: Impossible 5","sourceId":177677,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":770},{"sourceType":"tmdb","movieId":443,"title":"Mission Impossible 5 \u2013 Rogue Nation","sourceId":177677,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":771},{"sourceType":"tmdb","movieId":443,"title":"Mission: Impossible - La nation Rogue","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4261},{"sourceType":"tmdb","movieId":443,"title":"\u789f\u4e2d\u8c0d5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4262},{"sourceType":"tmdb","movieId":443,"title":"MI-5 - Mission Impossible-Rogue Nation","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4263},{"sourceType":"tmdb","movieId":443,"title":"Misi\u00f3n Imposible 5: Naci\u00f3n Secreta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4264},{"sourceType":"tmdb","movieId":443,"title":"Mission Impossible - IM5 - Rogue Nation","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4265},{"sourceType":"tmdb","movieId":443,"title":"Mission Impossible V - Rogue Nation","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4266},{"sourceType":"tmdb","movieId":443,"title":"\u30df\u30c3\u30b7\u30e7\u30f3\u30a4\u30f3\u30dd\u30c3\u30b7\u30d6\u30eb\uff15 \u30ed\u30fc\u30b0\u30cd\u30a4\u30b7\u30e7\u30f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4267},{"sourceType":"tmdb","movieId":443,"title":"\ub85c\uadf8\ub124\uc774\uc158","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4268},{"sourceType":"tmdb","movieId":443,"title":"\ubbf8\uc158 \uc784\ud30c\uc11c\ube14: \ub85c\uadf8\ub124\uc774\uc158","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4269},{"sourceType":"tmdb","movieId":443,"title":"Ne\u012fmanoma misija 5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4270},{"sourceType":"tmdb","movieId":443,"title":"\u041c\u0456\u0441\u0456\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0430: \u041d\u0430\u0446\u0456\u044f \u0456\u0437\u0433\u043e\u0457\u0432","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4271},{"sourceType":"tmdb","movieId":443,"title":"Mission: Impossible - N\u00e1rod gr\u00e1zlov","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4642}],"secondaryYearSourceId":0,"sortTitle":"mission impossible rogue nation","sizeOnDisk":9387589258,"status":"released","overview":"Ethan and team take on their most impossible mission yet\u2014eradicating 'The Syndicate', an International and highly-skilled rogue organisation committed to destroying the IMF.","inCinemas":"2015-07-23T00:00:00Z","physicalRelease":"2015-11-30T00:00:00Z","digitalRelease":"2018-01-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/443\/poster.jpg?lastWrite=637663837054109870","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oUDKymEL932AeHyl4A4ee8zuBLF.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/443\/fanart.jpg?lastWrite=637643939636244262","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eR20N1flPCQyp9HzpxlTcxgDAO7.jpg"}],"website":"http:\/\/www.missionimpossible.com","year":2015,"hasFile":true,"youTubeTrailerId":"F-qBD17wwrQ","studio":"Paramount","path":"\/movies\/Mission Impossible - Rogue Nation (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mission Impossible - Rogue Nation (2015)","runtime":131,"cleanTitle":"missionimpossibleroguenation","imdbId":"tt2381249","tmdbId":177677,"titleSlug":"177677","certification":"PG-13","genres":["Action","Adventure"],"tags":[],"added":"2019-02-06T11:40:53Z","ratings":{"votes":6866,"value":7.2},"movieFile":{"movieId":443,"relativePath":"Mission Impossible - Rogue Nation.2015-Bluray-1080p.mkv","path":"\/movies\/Mission Impossible - Rogue Nation (2015)\/Mission Impossible - Rogue Nation.2015-Bluray-1080p.mkv","size":9387589258,"dateAdded":"2019-02-06T11:54:08Z","sceneName":"Mission.Impossible.Rogue.Nation.2015.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8918000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:11:33","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"Rogue","id":496},"collection":{"name":"Mission: Impossible Collection","tmdbId":87359,"images":[]},"id":443},{"title":"Mission: Impossible - Ghost Protocol","originalTitle":"Mission: Impossible - Ghost Protocol","alternateTitles":[{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible 4","sourceId":56292,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":772},{"sourceType":"tmdb","movieId":444,"title":"Mi4","sourceId":56292,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":774},{"sourceType":"tmdb","movieId":444,"title":"MiGP","sourceId":56292,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":775},{"sourceType":"tmdb","movieId":444,"title":"Mission: Impossible - Ghost Protocol: The IMAX Experience","sourceId":56292,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":776},{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible IV Ghost Protocol","sourceId":56292,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1302},{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible 4 - Protocole Fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1628},{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible - Phantom Protokoll","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1629},{"sourceType":"tmdb","movieId":444,"title":"M.I. 4 - Protocolo Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1630},{"sourceType":"tmdb","movieId":444,"title":"Mision imposible 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1631},{"sourceType":"tmdb","movieId":444,"title":"Misi\u00f3n imposible 4: Protocolo Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1632},{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible - Protocole fant\u00f4me","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1633},{"sourceType":"tmdb","movieId":444,"title":"M:I-4 Mission Impossible - Protocollo fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1635},{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible 4 - Protocollo fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1636},{"sourceType":"tmdb","movieId":444,"title":"Mission Impossible IV - Protocollo Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1637},{"sourceType":"tmdb","movieId":444,"title":"Mission: Impossible - Protocollo fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1638},{"sourceType":"tmdb","movieId":444,"title":"M:i-4 - Mission: Impossible 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1639},{"sourceType":"tmdb","movieId":444,"title":"\uace0\uc2a4\ud2b8 \ud504\ub85c\ud1a0\ucf5c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1640},{"sourceType":"tmdb","movieId":444,"title":"\ubbf8\uc158 \uc784\ud30c\uc11c\ube14: \uace0\uc2a4\ud2b8 \ud504\ub85c\ud1a0\ucf5c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1641},{"sourceType":"tmdb","movieId":444,"title":"Ne\u012fmanoma misija 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1642},{"sourceType":"tmdb","movieId":444,"title":"Miss\u00e3o Imposs\u00edvel: Opera\u00e7\u00e3o Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":1643},{"sourceType":"tmdb","movieId":444,"title":"\u041c\u0438\u0441\u0441\u0438\u044f: \u041d\u0435\u0432\u044b\u043f\u043e\u043b\u043d\u0438\u043c\u0430 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1644},{"sourceType":"tmdb","movieId":444,"title":"\u041c\u0456\u0441\u0456\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0430: \u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b \u0424\u0430\u043d\u0442\u043e\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1645},{"sourceType":"tmdb","movieId":444,"title":"\u8077\u696d\u7279\u5de5\u968a\uff1a(2011)\u9b3c\u5f71\u7d04\u7ae0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5950}],"secondaryYearSourceId":0,"sortTitle":"mission impossible ghost protocol","sizeOnDisk":2719934619,"status":"released","overview":"Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks, who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.","inCinemas":"2011-12-07T00:00:00Z","physicalRelease":"2012-04-26T00:00:00Z","digitalRelease":"2014-01-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/444\/poster.jpg?lastWrite=637655186485873093","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7GCKNRbzcA4rJXAKoE8KS9IDnZP.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/444\/fanart.jpg?lastWrite=637655186487673067","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hqyjzDRCs1N5gEsh2gklzPdsEFD.jpg"}],"website":"http:\/\/www.missionimpossible.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"7wkih9Yvxq0","studio":"Paramount","path":"\/movies\/Mission Impossible - Ghost Protocol (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mission Impossible - Ghost Protocol (2011)","runtime":133,"cleanTitle":"missionimpossibleghostprotocol","imdbId":"tt1229238","tmdbId":56292,"titleSlug":"56292","certification":"PG-13","genres":["Action","Thriller","Adventure"],"tags":[],"added":"2019-02-06T11:40:55Z","ratings":{"votes":7818,"value":7},"movieFile":{"movieId":444,"relativePath":"Mission Impossible - Ghost Protocol.2011-Bluray-1080p.mp4","path":"\/movies\/Mission Impossible - Ghost Protocol (2011)\/Mission Impossible - Ghost Protocol.2011-Bluray-1080p.mp4","size":2719934619,"dateAdded":"2019-02-06T18:00:15Z","sceneName":"Mission.Impossible.Ghost.Protocol.2011.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:12:56","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":502},"collection":{"name":"Mission: Impossible Collection","tmdbId":87359,"images":[]},"id":444},{"title":"Equilibrium","originalTitle":"Equilibrium","alternateTitles":[{"sourceType":"tmdb","movieId":445,"title":"Equilibrium - Killer of Emotions","sourceId":7299,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":777},{"sourceType":"tmdb","movieId":445,"title":"\u91cd\u88c5\u4efb\u52a1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2332},{"sourceType":"tmdb","movieId":445,"title":"Equilibrio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2333},{"sourceType":"tmdb","movieId":445,"title":"\uc774\ud03c\ub9ac\ube0c\ub9ac\uc5c4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2334},{"sourceType":"tmdb","movieId":445,"title":"Ekvilibriumas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2335}],"secondaryYearSourceId":0,"sortTitle":"equilibrium","sizeOnDisk":13249050977,"status":"released","overview":"In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.","inCinemas":"2002-12-06T00:00:00Z","physicalRelease":"2003-08-20T00:00:00Z","digitalRelease":"2005-11-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/445\/poster.jpg?lastWrite=637474587721859387","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/q6VzUsHs4Z3myBHkrPAA3avfGwn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/445\/fanart.jpg?lastWrite=637429612016167000","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/h5KoG0JAK43cg4jucwfJiEw9e5W.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"gamAzZNDXU4","studio":"Blue Tulip Productions","path":"\/movies\/Equilibrium (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Equilibrium (2002)","runtime":107,"cleanTitle":"equilibrium","imdbId":"tt0238380","tmdbId":7299,"titleSlug":"7299","certification":"R","genres":["Action","Science Fiction","Thriller"],"tags":[],"added":"2019-02-06T12:49:40Z","ratings":{"votes":3406,"value":7},"movieFile":{"movieId":445,"relativePath":"Equilibrium.2002-Bluray-1080p.mkv","path":"\/movies\/Equilibrium (2002)\/Equilibrium.2002-Bluray-1080p.mkv","size":13249050977,"dateAdded":"2019-02-06T14:42:41Z","sceneName":"Equilibrium.2002.1080p.BluRay.x264.DTS-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":15000000,"videoCodec":"x264","videoFps":23.976,"resolution":"1918x820","runTime":"1:47:02","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":499},"id":445},{"title":"A Scanner Darkly","originalTitle":"A Scanner Darkly","alternateTitles":[{"sourceType":"tmdb","movieId":446,"title":"Una mirada a la oscuridad","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4793},{"sourceType":"tmdb","movieId":446,"title":"\u041a\u0430\u043c\u0435\u0440\u0430 \u043f\u043e\u043c\u044a\u0442\u043d\u044f\u043b\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4794},{"sourceType":"tmdb","movieId":446,"title":"O Homem Duplo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4795},{"sourceType":"tmdb","movieId":446,"title":"\u76f2\u533a\u884c\u8005","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4796},{"sourceType":"tmdb","movieId":446,"title":"A Scanner Darkly - Un Oscuro Scrutatore","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4797},{"sourceType":"tmdb","movieId":446,"title":"\uc2a4\uce90\ub108 \ub2e4\ud074\ub9ac","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4798},{"sourceType":"tmdb","movieId":446,"title":"Karanligi taramak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":4799},{"sourceType":"tmdb","movieId":446,"title":"Scanner Darkly, A","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4800}],"secondaryYearSourceId":0,"sortTitle":"scanner darkly","sizeOnDisk":3285667550,"status":"released","overview":"An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.","inCinemas":"2006-05-25T00:00:00Z","physicalRelease":"2006-12-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/446\/poster.jpg?lastWrite=637648265081477853","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/72kQ9tlP0fweBmbTqzkfUCTUUS.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/446\/fanart.jpg?lastWrite=637622316882185117","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hZeyVsBJjvdn6vbN4bSriyU2A6u.jpg"}],"website":"http:\/\/www.warnerbros.com\/movies\/home-entertainment\/scanner-darkly-a\/d7c290af-c285-41c4-a4d6-efb3a86b3893.html","year":2006,"hasFile":true,"youTubeTrailerId":"hkjDUERgCQw","studio":"Warner Independent Pictures (WIP)","path":"\/movies\/A Scanner Darkly (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/A Scanner Darkly (2006)","runtime":100,"cleanTitle":"ascannerdarkly","imdbId":"tt0405296","tmdbId":3509,"titleSlug":"3509","certification":"R","genres":["Animation","Science Fiction","Thriller"],"tags":[],"added":"2019-02-06T12:50:52Z","ratings":{"votes":1279,"value":6.8},"movieFile":{"movieId":446,"relativePath":"A Scanner Darkly.2006-Bluray-1080p.mkv","path":"\/movies\/A Scanner Darkly (2006)\/A Scanner Darkly.2006-Bluray-1080p.mkv","size":3285667550,"dateAdded":"2019-03-11T03:35:40Z","sceneName":"A Scanner Darkly (2006) (1080p BluRay x265 HEVC 10bit AAC 5.1 FreetheFish)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":497324,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":3749503,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:40:25","scanType":"","subtitles":"English \/ English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":526},"id":446},{"title":"Sneakers","originalTitle":"Sneakers","alternateTitles":[{"sourceType":"tmdb","movieId":447,"title":"H\u00e9roes por azar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3809},{"sourceType":"tmdb","movieId":447,"title":"\u041f\u0440\u043e\u043d\u0438\u043a\u0432\u0430\u043d\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3810},{"sourceType":"tmdb","movieId":447,"title":"\u901a\u5929\u795e\u5077","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3811},{"sourceType":"tmdb","movieId":447,"title":"Sneakers (Los Fisgones)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3812},{"sourceType":"tmdb","movieId":447,"title":"I Signori Della Truffa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3813}],"secondaryYearSourceId":0,"sortTitle":"sneakers","sizeOnDisk":2565095952,"status":"released","overview":"When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking 'black box' from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his 'sneakers' must save themselves and the world economy by retrieving the box from their blackmailers.","inCinemas":"1992-09-09T00:00:00Z","physicalRelease":"2010-07-27T00:00:00Z","digitalRelease":"2002-02-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/447\/poster.jpg?lastWrite=637586855133022828","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pY7wNO4J0QMAH9Q4nJL3QLlPVvC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/447\/fanart.jpg?lastWrite=637606745803450560","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6qsCyfCc4HYlDGXfYgsYe0z9tDi.jpg"}],"website":"","year":1992,"hasFile":true,"youTubeTrailerId":"rbJpx_6fYgE","studio":"Universal Pictures","path":"\/movies\/Sneakers (1992)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Sneakers (1992)","runtime":126,"cleanTitle":"sneakers","imdbId":"tt0105435","tmdbId":2322,"titleSlug":"2322","certification":"PG-13","genres":["Comedy","Crime","Drama"],"tags":[],"added":"2019-02-06T12:54:01Z","ratings":{"votes":625,"value":6.9},"movieFile":{"movieId":447,"relativePath":"Sneakers.1992-Bluray-1080p.mp4","path":"\/movies\/Sneakers (1992)\/Sneakers.1992-Bluray-1080p.mp4","size":2565095952,"dateAdded":"2019-08-08T01:06:49Z","sceneName":"Sneakers.1992.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224001,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:05:18","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":566},"id":447},{"title":"Alita: Battle Angel","originalTitle":"Alita: Battle Angel","alternateTitles":[{"sourceType":"tmdb","movieId":448,"title":"Alita \u00e1ngel de Combate","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5047},{"sourceType":"tmdb","movieId":448,"title":"Battle Angel, la ultima guerrera","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5430},{"sourceType":"tmdb","movieId":448,"title":"Alita: Bojov\u00fd and\u011bl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5431}],"secondaryYearSourceId":0,"sortTitle":"alita battle angel","sizeOnDisk":10560764701,"status":"released","overview":"When Alita awakens with no memory of who she is in a future world she does not recognize, she is taken in by Ido, a compassionate doctor who realizes that somewhere in this abandoned cyborg shell is the heart and soul of a young woman with an extraordinary past.","inCinemas":"2019-01-31T00:00:00Z","physicalRelease":"2019-07-22T00:00:00Z","digitalRelease":"2019-07-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/448\/poster.jpg?lastWrite=637633558913855012","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xRWht48C2V8XNfzvPehyClOvDni.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/448\/fanart.jpg?lastWrite=637658646675155116","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg"}],"website":"https:\/\/www.foxmovies.com\/movies\/alita-battle-angel","year":2019,"hasFile":true,"youTubeTrailerId":"puKWa8hrvA8","studio":"Troublemaker Studios","path":"\/movies\/Alita Battle Angel (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"tba","isAvailable":true,"folderName":"\/movies\/Alita Battle Angel (2019)","runtime":122,"cleanTitle":"alitabattleangel","imdbId":"tt0437086","tmdbId":399579,"titleSlug":"399579","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2019-02-10T19:08:41Z","ratings":{"votes":6835,"value":7.2},"movieFile":{"movieId":448,"relativePath":"Alita Battle Angel.2019-Bluray-1080p.mkv","path":"\/movies\/Alita Battle Angel (2019)\/Alita Battle Angel.2019-Bluray-1080p.mkv","size":10560764701,"dateAdded":"2019-07-10T19:46:36Z","sceneName":"Alita.Battle.Angel.2019.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES","audioBitrate":1509000,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10039000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:01:57","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"sparks","edition":"","id":557},"id":448},{"title":"Tintin and the Lake of Sharks","originalTitle":"Tintin et le lac aux requins","alternateTitles":[{"sourceType":"tmdb","movieId":449,"title":"Tim und der Haifischsee","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1927},{"sourceType":"tmdb","movieId":449,"title":"Tinni og H\u00e1karlavatni\u00f0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1928},{"sourceType":"tmdb","movieId":449,"title":"The Mystery at Shark Lake","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4735},{"sourceType":"tmdb","movieId":449,"title":"\u03a4\u03b5\u03bd\u03c4\u03ad\u03bd: \u03a4\u03bf \u03bc\u03c5\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf \u03c4\u03b7\u03c2 \u03bb\u03af\u03bc\u03bd\u03b7\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5943},{"sourceType":"tmdb","movieId":449,"title":"TinTin e o Lago dos Tubar\u00f5es","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6070}],"secondaryYearSourceId":0,"sortTitle":"tintin lake sharks","sizeOnDisk":0,"status":"released","overview":"Tintin is sent to guard Professor Calculus, who has invented a machine that can duplicate anything, and is staying in a village near the border of Syldavia and Bodouria. Rastapopoulous, an infamous and ruthless international criminal, tries to lure Calculus and Tintin away by kidnapping two children, who live nearby, in order to get his clutches on the machine.","inCinemas":"1972-01-01T00:00:00Z","physicalRelease":"2009-11-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/449\/poster.jpg?lastWrite=637612803026097956","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8oV32sipspRjgTvSwfmdn24dNzr.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/449\/fanart.jpg?lastWrite=637656916936912756","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uvsqKRuWyQJ9Act12bJRK4II817.jpg"}],"website":"","year":1972,"hasFile":false,"youTubeTrailerId":"","studio":"Raymond Leblanc","path":"\/movies\/Tintin and the Lake of Sharks (1972)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Tintin and the Lake of Sharks (1972)","runtime":81,"cleanTitle":"tintinlakesharks","imdbId":"tt0069383","tmdbId":241004,"titleSlug":"241004","genres":["Adventure","Mystery","Family"],"tags":[],"added":"2019-02-27T22:08:27Z","ratings":{"votes":79,"value":6.1},"id":449},{"title":"Tintin and the Temple of the Sun","originalTitle":"Le Temple du Soleil","alternateTitles":[{"sourceType":"tmdb","movieId":450,"title":"Seven Crystal Balls and the Prisoners of the Sun","sourceId":241001,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":801},{"sourceType":"tmdb","movieId":450,"title":"The Prisoners of the Sun","sourceId":241001,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":802},{"sourceType":"tmdb","movieId":450,"title":"Tinni Fangarnir \u00ed s\u00f3lhofinu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4144},{"sourceType":"tmdb","movieId":450,"title":"Tintti ja auringon temppeli","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":6111},{"sourceType":"tmdb","movieId":450,"title":"Tintin et le Temple du Soleil","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6112},{"sourceType":"tmdb","movieId":450,"title":"\u039f \u03a4\u03b5\u03bd\u03c4\u03ad\u03bd \u03ba\u03b1\u03b9 \u03bf \u03bd\u03b1\u03cc\u03c2 \u03c4\u03bf\u03c5 \u0389\u03bb\u03b9\u03bf\u03c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6168}],"secondaryYearSourceId":0,"sortTitle":"tintin temple sun","sizeOnDisk":0,"status":"released","overview":"When seven archaeologists find an ancient Inca temple, they become victims of an ancient curse. Back in Europe, one by one they fall into a deep sleep and only once a day, all at the same time, they wake up for a few minutes and experience hallucinations where the sinister living mummy of Rascar Capac appears.","inCinemas":"1969-12-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/450\/poster.jpg?lastWrite=637610205797079962","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oivBnKDnUH3PuxX5jbmwOqEAQ6T.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/450\/fanart.jpg?lastWrite=637612803031777866","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tJyGzgJOSZx7PivGvPMDyU5Xng2.jpg"}],"website":"","year":1969,"hasFile":false,"youTubeTrailerId":"","studio":"Belvision","path":"\/movies\/Tintin and the Temple of the Sun (1969)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Tintin and the Temple of the Sun (1969)","runtime":78,"cleanTitle":"tintintemplesun","imdbId":"tt0065106","tmdbId":241001,"titleSlug":"241001","genres":["Animation","Comedy","Adventure"],"tags":[],"added":"2019-02-27T22:08:28Z","ratings":{"votes":60,"value":6.4},"id":450},{"title":"Bohemian Rhapsody","originalTitle":"Bohemian Rhapsody","alternateTitles":[{"sourceType":"tmdb","movieId":451,"title":"Untitled Freddie Mercury Biopic","sourceId":424694,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":805},{"sourceType":"tmdb","movieId":451,"title":"2018 - Bohemian Rhapsody","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4565},{"sourceType":"tmdb","movieId":451,"title":"2018 - Bohemian Rhapsody [1080p] [Dual Audio] [4,92 Gb]","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4566},{"sourceType":"tmdb","movieId":451,"title":"\u6ce2\u5e0c\u7c73\u4e9e\u72c2\u60f3\u66f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4567},{"sourceType":"tmdb","movieId":451,"title":"Bogema rapsodiyasi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4568},{"sourceType":"tmdb","movieId":451,"title":"Bogemcha rapsodiya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4569},{"sourceType":"tmdb","movieId":451,"title":"Boh\u00e9m rapsz\u00f3dia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5440}],"secondaryYearSourceId":0,"sortTitle":"bohemian rhapsody","sizeOnDisk":36752677533,"status":"released","overview":"Singer Freddie Mercury, guitarist Brian May, drummer Roger Taylor and bass guitarist John Deacon take the music world by storm when they form the rock 'n' roll band Queen in 1970. Hit songs become instant classics. When Mercury's increasingly wild lifestyle starts to spiral out of control, Queen soon faces its greatest challenge yet \u2013 finding a way to keep the band together amid the success and excess.","inCinemas":"2018-10-24T00:00:00Z","physicalRelease":"2019-02-12T00:00:00Z","digitalRelease":"2019-02-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/451\/poster.jpg?lastWrite=637644804334962023","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/451\/fanart.jpg?lastWrite=637621451526625282","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jNUpYq2jRSwQM89vST9yQZelMSu.jpg"}],"website":"http:\/\/bohemianrhapsody.com","year":2018,"hasFile":true,"youTubeTrailerId":"27zlBpzdOZg","studio":"GK Films","path":"\/movies\/Bohemian Rhapsody (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Bohemian Rhapsody (2018)","runtime":135,"cleanTitle":"bohemianrhapsody","imdbId":"tt1727824","tmdbId":424694,"titleSlug":"424694","certification":"PG-13","genres":["Music","Drama","History"],"tags":[],"added":"2019-03-03T22:38:34Z","ratings":{"votes":13524,"value":8},"movieFile":{"movieId":451,"relativePath":"Bohemian Rhapsody.2018-Remux-1080p.mkv","path":"\/movies\/Bohemian Rhapsody (2018)\/Bohemian Rhapsody.2018-Remux-1080p.mkv","size":36752677533,"dateAdded":"2019-03-04T10:22:09Z","sceneName":"Bohemian.Rhapsody.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":4610533,"audioChannels":8,"audioCodec":"TrueHD","audioLanguages":"English \/ English \/ English \/ English \/ English \/ English \/ Spanish \/ French","audioStreamCount":8,"videoBitDepth":8,"videoBitrate":23203378,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:14:37","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ Spanish \/ French \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":515},"id":451},{"title":"Mary and The Witch's Flower","originalTitle":"\u30e1\u30a2\u30ea\u3068\u9b54\u5973\u306e\u82b1","alternateTitles":[{"sourceType":"tmdb","movieId":452,"title":"\u746a\u8389\u8207\u9b54\u5973\u4e4b\u82b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4982},{"sourceType":"tmdb","movieId":452,"title":"Mary to majo no hana","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4983},{"sourceType":"tmdb","movieId":452,"title":"Meari to majo no hana","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4984},{"sourceType":"tmdb","movieId":452,"title":"\u041c\u044d\u0440\u0438 \u0438 \u0432\u0435\u0434\u044c\u043c\u0438\u043d \u0446\u0432\u0435\u0442\u043e\u043a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6261}],"secondaryYearSourceId":0,"sortTitle":"mary witch s flower","sizeOnDisk":887781493,"status":"released","overview":"Mary Smith, a young girl who lives with her great-aunt in the countryside, follows a mysterious cat into the nearby forest where she finds a strange flower and an old broom, none of which is as ordinary as it seems.","inCinemas":"2017-07-08T00:00:00Z","physicalRelease":"2018-05-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/452\/poster.jpg?lastWrite=637609339889929197","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lq3OJQiJ8hlCr23LAdHbeU3eqBF.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/452\/fanart.jpg?lastWrite=637614532838177773","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yPRnoFEhj09i824pqmE2cwfedsN.jpg"}],"website":"https:\/\/gkids.com\/films\/mary-and-the-witchs-flower\/","year":2017,"hasFile":true,"youTubeTrailerId":"u8tsjNYEYKQ","studio":"STUDIO PONOC","path":"\/movies\/Mary and the Witch's Flower (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mary and the Witch's Flower (2017)","runtime":103,"cleanTitle":"marywitchsflower","imdbId":"tt6336356","tmdbId":430447,"titleSlug":"430447","certification":"PG","genres":["Fantasy","Adventure","Animation"],"tags":[],"added":"2019-03-06T18:08:15Z","ratings":{"votes":568,"value":7.1},"movieFile":{"movieId":452,"relativePath":"Mary and the Witch's Flower.2017-Bluray-720p.mp4","path":"\/movies\/Mary and the Witch's Flower (2017)\/Mary and the Witch's Flower.2017-Bluray-720p.mp4","size":887781493,"dateAdded":"2020-07-21T22:36:44Z","indexerFlags":1,"quality":{"quality":{"id":6,"name":"Bluray-720p","source":"bluray","resolution":720,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":128384,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1016487,"videoCodec":"x265","videoFps":23.976,"resolution":"1280x690","runTime":"1:42:49","scanType":"","subtitles":"English"},"originalFilePath":"Mary And The Witchs Flower 2017 720p BluRay HEVC H265 10-BIT BONE.mp4","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"BIT","edition":"","id":687},"id":452},{"title":"Snowden","originalTitle":"Snowden","alternateTitles":[{"sourceType":"tmdb","movieId":453,"title":"\uc2a4\ub178\ub4e0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4194}],"secondaryYearSourceId":0,"sortTitle":"snowden","sizeOnDisk":10560703274,"status":"released","overview":"CIA employee Edward Snowden leaks thousands of classified documents to the press.","inCinemas":"2016-09-15T00:00:00Z","physicalRelease":"2017-01-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/453\/poster.jpg?lastWrite=637657782066409886","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yfK7zxNL63VWfluFuoUaJj5PdNw.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/453\/fanart.jpg?lastWrite=637629235739503896","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mYZYVrQ2ghU3m79q7byeLzNXo1M.jpg"}],"website":"http:\/\/snowdenfilm.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"QlSAiI3xMh4","studio":"KrautPack Entertainment","path":"\/movies\/Snowden (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Snowden (2016)","runtime":134,"cleanTitle":"snowden","imdbId":"tt3774114","tmdbId":302401,"titleSlug":"302401","certification":"R","genres":["Drama","History","Crime"],"tags":[],"added":"2019-03-09T19:19:25Z","ratings":{"votes":3470,"value":7.1},"movieFile":{"movieId":453,"relativePath":"Snowden.2016-Bluray-1080p.mkv","path":"\/movies\/Snowden (2016)\/Snowden.2016-Bluray-1080p.mkv","size":10560703274,"dateAdded":"2019-03-09T22:59:57Z","sceneName":"Snowden.2016.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8939000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:14:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":519},"id":453},{"title":"Ghost Rider","originalTitle":"Ghost Rider","alternateTitles":[{"sourceType":"tmdb","movieId":454,"title":"Ghost Rider (Extended Cut)","sourceId":1250,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":809},{"sourceType":"tmdb","movieId":454,"title":"\u6076\u7075\u6218\u8b66","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2764},{"sourceType":"tmdb","movieId":454,"title":"Ghost Rider 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2767},{"sourceType":"tmdb","movieId":454,"title":"El Vengador Fantasma 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2768},{"sourceType":"tmdb","movieId":454,"title":"Ghost Rider - Aaveajaja","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2769},{"sourceType":"tmdb","movieId":454,"title":"Ghost Rider El Motorista Fantasma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":2772},{"sourceType":"tmdb","movieId":454,"title":"\u7075\u9b42\u6218\u8f66","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5281}],"secondaryYearSourceId":0,"sortTitle":"ghost rider","sizeOnDisk":8533289041,"status":"released","overview":"In order to save his dying father, young stunt cyclist Johnny Blaze sells his soul to Mephistopheles and sadly parts from the pure-hearted Roxanne Simpson, the love of his life. Years later, Johnny's path crosses again with Roxanne, now a go-getting reporter, and also with Mephistopheles, who offers to release Johnny's soul if Johnny becomes the fabled, fiery 'Ghost Rider'.","inCinemas":"2007-01-15T00:00:00Z","physicalRelease":"2007-07-19T00:00:00Z","digitalRelease":"2009-09-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/454\/poster.jpg?lastWrite=637665567015948119","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1pyU94dAY7npDQCKuxCSyX9KthN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/454\/fanart.jpg?lastWrite=637655186185637434","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ohfWCHT65P7b3kQvZnoy2BL95MB.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/ghostrider\/","year":2007,"hasFile":true,"youTubeTrailerId":"QvoofruuWk8","studio":"Crystal Sky Pictures","path":"\/movies\/Ghost Rider (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ghost Rider (2007)","runtime":114,"cleanTitle":"ghostrider","imdbId":"tt0259324","tmdbId":1250,"titleSlug":"1250","certification":"PG-13","genres":["Thriller","Action","Fantasy"],"tags":[],"added":"2019-03-09T20:03:39Z","ratings":{"votes":4519,"value":5.5},"movieFile":{"movieId":454,"relativePath":"Ghost Rider.2007-Bluray-1080p.mkv","path":"\/movies\/Ghost Rider (2007)\/Ghost Rider.2007-Bluray-1080p.mkv","size":8533289041,"dateAdded":"2019-03-10T19:37:58Z","sceneName":"Ghost.Rider.Extended.Version.2007.1080p.BluRay.x264-SECTOR7","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8575000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:03:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SECTOR7","edition":"Extended Version","id":523},"collection":{"name":"Ghost Rider Collection","tmdbId":90306,"images":[]},"id":454},{"title":"Hot Fuzz","originalTitle":"Hot Fuzz","alternateTitles":[{"sourceType":"tmdb","movieId":455,"title":"\u0413\u043e\u0440\u0435\u0449\u0438 \u043f\u0430\u043b\u043a\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4436},{"sourceType":"tmdb","movieId":455,"title":"Chumbo Grosso","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4437},{"sourceType":"tmdb","movieId":455,"title":"Super flic","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4438},{"sourceType":"tmdb","movieId":455,"title":"\u70ed\u8840\u6761\u5b50","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4439},{"sourceType":"tmdb","movieId":455,"title":"\u786c\u6d3e\u6761\u5b50","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4440},{"sourceType":"tmdb","movieId":455,"title":"Jednotka pr\u00edlis rychl\u00e9ho nasazen\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4441},{"sourceType":"tmdb","movieId":455,"title":"Hot Fuzz - Verbrechen verboten","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4442},{"sourceType":"tmdb","movieId":455,"title":"Hot Fuzz - Zwei Bad Boys r\u00e4umen auf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4443},{"sourceType":"tmdb","movieId":455,"title":"Valusad v\u00f5mmid","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4444},{"sourceType":"tmdb","movieId":455,"title":"Arma Fatal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4445},{"sourceType":"tmdb","movieId":455,"title":"\u039a\u03b1\u03c5\u03c4\u03bf\u03af \u03ba\u03b1\u03b9 \u03ac\u03c3\u03c6\u03b1\u03b9\u03c1\u03bf\u03b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4446},{"sourceType":"tmdb","movieId":455,"title":"Eksplozivni murjaci","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4447},{"sourceType":"tmdb","movieId":455,"title":"\ub728\uac70\uc6b4 \ub140\uc11d\ub4e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4448},{"sourceType":"tmdb","movieId":455,"title":"Hot Fuzz - Esquadr\u00e3o de Prov\u00edncia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4449},{"sourceType":"tmdb","movieId":455,"title":"\u0422\u0438\u043f\u0430 \u043a\u0440\u0443\u0442\u044b\u0435 \u043b\u0435\u0433\u0430\u0432\u044b\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4450},{"sourceType":"tmdb","movieId":455,"title":"\u7d42\u68d8\u8b66\u63a2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4451},{"sourceType":"tmdb","movieId":455,"title":"\u041a\u0440\u0443\u0442\u0438\u0439 \u0424\u0430\u0440\u0430\u043e\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4452},{"sourceType":"tmdb","movieId":455,"title":"\u041a\u0440\u0443\u0442\u0456 \u043b\u044f\u0433\u0430\u0432\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4453},{"sourceType":"tmdb","movieId":455,"title":"Hot Fuzz: super polic\u00edas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5620}],"secondaryYearSourceId":0,"sortTitle":"hot fuzz","sizeOnDisk":12869649597,"status":"released","overview":"As a former London constable, Nicholas Angel finds it difficult to adapt to his new assignment in the sleepy British village of Sandford. Not only does he miss the excitement of the big city, but he also has a well-meaning oaf for a partner. However, when a series of grisly accidents rocks Sandford, Angel smells something rotten in the idyllic village.","inCinemas":"2007-02-14T00:00:00Z","physicalRelease":"2007-09-05T00:00:00Z","digitalRelease":"2011-02-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/455\/poster.jpg?lastWrite=637634424757810899","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zPib4ukTSdXvHP9pxGkFCe34f3y.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/455\/fanart.jpg?lastWrite=637628370692131425","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/slRtyXH4g0ofPa2kUV8wqU71Mer.jpg"}],"website":"https:\/\/www.focusfeatures.com\/hot_fuzz","year":2007,"hasFile":true,"youTubeTrailerId":"ayTnvVpj9t4","studio":"Universal Pictures","path":"\/movies\/Hot Fuzz (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Hot Fuzz (2007)","runtime":121,"cleanTitle":"hotfuzz","imdbId":"tt0425112","tmdbId":4638,"titleSlug":"4638","certification":"R","genres":["Crime","Action","Comedy"],"tags":[],"added":"2019-03-10T11:25:56Z","ratings":{"votes":5697,"value":7.5},"movieFile":{"movieId":455,"relativePath":"Hot Fuzz.2007-Bluray-1080p.mkv","path":"\/movies\/Hot Fuzz (2007)\/Hot Fuzz.2007-Bluray-1080p.mkv","size":12869649597,"dateAdded":"2019-03-10T23:10:03Z","sceneName":"Hot.Fuzz.2007.1080p.BluRay.x264.DTS-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":12686000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:00:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":525},"id":455},{"title":"10 Cloverfield Lane","originalTitle":"10 Cloverfield Lane","alternateTitles":[{"sourceType":"tmdb","movieId":456,"title":"The Cellar","sourceId":333371,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":812},{"sourceType":"tmdb","movieId":456,"title":"Ten Cloverfield Lane","sourceId":333371,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":814},{"sourceType":"tmdb","movieId":456,"title":"Valencia","sourceId":333371,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":815},{"sourceType":"tmdb","movieId":456,"title":"\ud074\ub85c\ubc84\ud544\ub4dc 10\ubc88\uc9c0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3456},{"sourceType":"tmdb","movieId":456,"title":"\u0412\u0443\u043b. \u041c\u043e\u043d\u0441\u0442\u0440\u043e, 10","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3457},{"sourceType":"tmdb","movieId":456,"title":"\u0412\u0443\u043b\u0438\u0446\u044f \u041a\u043b\u043e\u0432\u0435\u0440\u0444\u0456\u043b\u0434, 10","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3458},{"sourceType":"tmdb","movieId":456,"title":"\u041c\u043e\u043d\u0441\u0442\u0440\u043e 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3459}],"secondaryYearSourceId":0,"sortTitle":"10 cloverfield lane","sizeOnDisk":8213012031,"status":"released","overview":"After getting in a car accident, a woman is held in a shelter with two men, who claim the outside world is affected by a widespread chemical attack.","inCinemas":"2016-03-10T00:00:00Z","physicalRelease":"2016-05-27T00:00:00Z","digitalRelease":"2017-10-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/456\/poster.jpg?lastWrite=637650859636487672","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/84Dhwz93vCin6T1PX6ctSvWEuNE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/456\/fanart.jpg?lastWrite=637605016058520998","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5uLqjVQlKNR4MbOeuheaRihPxAx.jpg"}],"website":"http:\/\/www.10cloverfieldlane.com\/","year":2016,"hasFile":true,"youTubeTrailerId":"yQy-ANhnUpE","studio":"Bad Robot","path":"\/movies\/10 Cloverfield Lane (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/10 Cloverfield Lane (2016)","runtime":104,"cleanTitle":"10cloverfieldlane","imdbId":"tt1179933","tmdbId":333371,"titleSlug":"333371","certification":"PG-13","genres":["Thriller","Science Fiction","Drama"],"tags":[],"added":"2019-03-10T11:31:38Z","ratings":{"votes":6154,"value":7},"movieFile":{"movieId":456,"relativePath":"10 Cloverfield Lane.2016-Bluray-1080p.mkv","path":"\/movies\/10 Cloverfield Lane (2016)\/10 Cloverfield Lane.2016-Bluray-1080p.mkv","size":8213012031,"dateAdded":"2019-03-10T16:08:53Z","sceneName":"10.Cloverfield.Lane.2016.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9935000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:43:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":521},"id":456},{"title":"Cloverfield","originalTitle":"Cloverfield","alternateTitles":[{"sourceType":"tmdb","movieId":457,"title":"1-18-08","sourceId":7191,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":817},{"sourceType":"tmdb","movieId":457,"title":"Cheese","sourceId":7191,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":818},{"sourceType":"tmdb","movieId":457,"title":"Clover","sourceId":7191,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":819},{"sourceType":"tmdb","movieId":457,"title":"Monstrous","sourceId":7191,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":820},{"sourceType":"tmdb","movieId":457,"title":"Slusho","sourceId":7191,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":821},{"sourceType":"tmdb","movieId":457,"title":"Untitled J.J. Abrams Project","sourceId":7191,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":822},{"sourceType":"tmdb","movieId":457,"title":"06-02-08","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1446},{"sourceType":"tmdb","movieId":457,"title":"04-05","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1447},{"sourceType":"tmdb","movieId":457,"title":"Cloverfield: Hakaisha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1448},{"sourceType":"tmdb","movieId":457,"title":"\u041a\u043b\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u043f\u043e\u043b\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1449},{"sourceType":"tmdb","movieId":457,"title":"\u041a\u043b\u043e\u0432\u0435\u0440\u0444\u0438\u043b\u0434","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1450}],"secondaryYearSourceId":0,"sortTitle":"cloverfield","sizeOnDisk":1731938857,"status":"released","overview":"Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.","inCinemas":"2008-01-15T00:00:00Z","physicalRelease":"2008-06-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/457\/poster.jpg?lastWrite=637635289658318354","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qIegUGJqyMMCRjkKV1s7A9MqdJ8.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/457\/fanart.jpg?lastWrite=637632694457208833","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zuz9kkacCnMsKxIc3SjDwJ1yzba.jpg"}],"website":"http:\/\/www.cloverfieldmovie.com\/","year":2008,"hasFile":true,"youTubeTrailerId":"_afPFLvh2qg","studio":"Paramount","path":"\/movies\/Cloverfield (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Cloverfield (2008)","runtime":85,"cleanTitle":"cloverfield","imdbId":"tt1060277","tmdbId":7191,"titleSlug":"7191","certification":"PG-13","genres":["Action","Thriller","Science Fiction"],"tags":[],"added":"2019-03-10T11:31:39Z","ratings":{"votes":5480,"value":6.6},"movieFile":{"movieId":457,"relativePath":"Cloverfield.2008-Bluray-1080p.mp4","path":"\/movies\/Cloverfield (2008)\/Cloverfield.2008-Bluray-1080p.mp4","size":1731938857,"dateAdded":"2019-03-10T11:34:16Z","sceneName":"Cloverfield.2008.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:24:40","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":520},"id":457},{"title":"District 9","originalTitle":"District 9","alternateTitles":[{"sourceType":"tmdb","movieId":458,"title":"9-cu Rayon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2737},{"sourceType":"tmdb","movieId":458,"title":"\u0421\u0435\u043a\u0442\u043e\u0440 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2738},{"sourceType":"tmdb","movieId":458,"title":"Distrito 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2739},{"sourceType":"tmdb","movieId":458,"title":"D-9\u5f02\u5f62\u7981\u533a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2740},{"sourceType":"tmdb","movieId":458,"title":"\u7b2c\u4e5d\u7981\u533a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2741},{"sourceType":"tmdb","movieId":458,"title":"9. rajoon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2742},{"sourceType":"tmdb","movieId":458,"title":"Dai 9 chiku","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2743},{"sourceType":"tmdb","movieId":458,"title":"\ub514\uc2a4\ud2b8\ub9ad\ud2b8 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2744},{"sourceType":"tmdb","movieId":458,"title":"9-asis rajonas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2745},{"sourceType":"tmdb","movieId":458,"title":"Sector 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2746},{"sourceType":"tmdb","movieId":458,"title":"Dystrykt 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":2747},{"sourceType":"tmdb","movieId":458,"title":"Yasak B\u00f6lge 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2748},{"sourceType":"tmdb","movieId":458,"title":"\u7b2c\u4e5d\u7981\u5340","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2749},{"sourceType":"tmdb","movieId":458,"title":"\u0414\u0435\u0432'\u044f\u0442\u0438\u0439 \u043e\u043a\u0440\u0443\u0433","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2750}],"secondaryYearSourceId":0,"sortTitle":"district 9","sizeOnDisk":9389894463,"status":"released","overview":"Thirty years ago, aliens arrive on Earth. Not to conquer or give aid, but to find refuge from their dying planet. Separated from humans in a South African area called District 9, the aliens are managed by Multi-National United, which is unconcerned with the aliens' welfare but will do anything to master their advanced technology. When a company field agent contracts a mysterious virus that begins to alter his DNA, there is only one place he can hide: District 9.","inCinemas":"2009-08-05T00:00:00Z","physicalRelease":"2010-01-26T00:00:00Z","digitalRelease":"2011-04-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/458\/poster.jpg?lastWrite=637633559182730675","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tuGlQkqLxnodDSk6mp5c2wvxUEd.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/458\/fanart.jpg?lastWrite=637616262058391625","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sRP9iWnygnfvTlXCwsaZLXRzhuh.jpg"}],"website":"http:\/\/www.d-9.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"_BjWEn5yvmw","studio":"TriStar Pictures","path":"\/movies\/District 9 (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/District 9 (2009)","runtime":112,"cleanTitle":"district9","imdbId":"tt1136608","tmdbId":17654,"titleSlug":"17654","certification":"R","genres":["Science Fiction"],"tags":[],"added":"2019-03-10T15:58:42Z","ratings":{"votes":7330,"value":7.4},"movieFile":{"movieId":458,"relativePath":"District 9.2009-Bluray-1080p.mkv","path":"\/movies\/District 9 (2009)\/District 9.2009-Bluray-1080p.mkv","size":9389894463,"dateAdded":"2019-03-10T19:01:27Z","sceneName":"District.9.2009.1080p.BluRay.x264-METiS","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9642000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:52:15","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"dtc9","edition":"","id":522},"id":458},{"title":"Super 8","originalTitle":"Super 8","alternateTitles":[{"sourceType":"tmdb","movieId":459,"title":"1Super8","sourceId":37686,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":823},{"sourceType":"tmdb","movieId":459,"title":"\u0421\u0443\u043f\u0435\u0440 8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1924},{"sourceType":"tmdb","movieId":459,"title":"SUPER8\uff0f\u30b9\u30fc\u30d1\u30fc\u30a8\u30a4\u30c8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1925},{"sourceType":"tmdb","movieId":459,"title":"\uc288\ud37c \uc5d0\uc774\ud2b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1926},{"sourceType":"tmdb","movieId":459,"title":"\u8d85\u7ea7\u516b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4902}],"secondaryYearSourceId":0,"sortTitle":"super 8","sizeOnDisk":2288777108,"status":"released","overview":"In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.","inCinemas":"2011-06-08T00:00:00Z","physicalRelease":"2011-11-30T00:00:00Z","digitalRelease":"2013-07-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/459\/poster.jpg?lastWrite=637365631796960452","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sytFL6ALMAesKZoarlp7bIDKnns.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/459\/fanart.jpg?lastWrite=637633560037637346","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qdoBaE4nFcSOIrS3TPUCJ1t8xOh.jpg"}],"website":"http:\/\/www.super8-movie.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"t-0XuYxh67w","studio":"Bad Robot","path":"\/movies\/Super 8 (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Super 8 (2011)","runtime":112,"cleanTitle":"super8","imdbId":"tt1650062","tmdbId":37686,"titleSlug":"37686","certification":"PG-13","genres":["Thriller","Science Fiction","Mystery"],"tags":[],"added":"2019-03-10T19:21:13Z","ratings":{"votes":5315,"value":6.7},"movieFile":{"movieId":459,"relativePath":"Super 8.2011-Bluray-1080p.mp4","path":"\/movies\/Super 8 (2011)\/Super 8.2011-Bluray-1080p.mp4","size":2288777108,"dateAdded":"2019-03-10T19:42:28Z","sceneName":"Super.8.2011.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:51:48","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":524},"id":459},{"title":"Die Another Day","originalTitle":"Die Another Day","alternateTitles":[{"sourceType":"tmdb","movieId":460,"title":"007: Die Another Day","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":838},{"sourceType":"tmdb","movieId":460,"title":"Beneath the Ice","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":839},{"sourceType":"tmdb","movieId":460,"title":"James Bond - Die Another Day","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":840},{"sourceType":"tmdb","movieId":460,"title":"James Bond 007 - 20 - Die Another Day","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":841},{"sourceType":"tmdb","movieId":460,"title":"James Bond 20 - Die Another Day","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":842},{"sourceType":"tmdb","movieId":460,"title":"Bond 20","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":843},{"sourceType":"tmdb","movieId":460,"title":"James Bond 20","sourceId":36669,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":844},{"sourceType":"tmdb","movieId":460,"title":"007 \u041d\u0435 \u0443\u043c\u0438\u0440\u0430\u0439 \u0434\u043d\u0435\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1467},{"sourceType":"tmdb","movieId":460,"title":"007 - Um Novo Dia para Morrer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1468},{"sourceType":"tmdb","movieId":460,"title":"007 21 - Um Novo Dia Para Morrer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1469},{"sourceType":"tmdb","movieId":460,"title":"007 \u62e9\u65e5\u800c\u4ea1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1470},{"sourceType":"tmdb","movieId":460,"title":"007\u7cfb\u521720\uff1a \u62e9\u65e5\u518d\u6b7b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1471},{"sourceType":"tmdb","movieId":460,"title":"007 - 20 - 007 Muere otro dia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1473},{"sourceType":"tmdb","movieId":460,"title":"Muere otro d\u00eda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1474},{"sourceType":"tmdb","movieId":460,"title":"James Bond 007 Meurs un autre jour","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1475},{"sourceType":"tmdb","movieId":460,"title":"James Bond 20 - Meurs un autre jour","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1476},{"sourceType":"tmdb","movieId":460,"title":"21 Die Another Day","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1477},{"sourceType":"tmdb","movieId":460,"title":"007: Halj meg m\u00e1skor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1478},{"sourceType":"tmdb","movieId":460,"title":"Agente 007 - La Morte pu\u00f2 attendere","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1479},{"sourceType":"tmdb","movieId":460,"title":"007 \u30c0\u30a4\u30fb\u30a2\u30ca\u30b6\u30fc\u30fb\u30c7\u30a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1480},{"sourceType":"tmdb","movieId":460,"title":"007 \uc5b4\ub098\ub354\ub370\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1481},{"sourceType":"tmdb","movieId":460,"title":"20\ud0c4 007 \uc5b4\ub098\ub354\ub370\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1482},{"sourceType":"tmdb","movieId":460,"title":"007: Otro d\u00eda para morir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1483},{"sourceType":"tmdb","movieId":460,"title":"\u0414\u0436\u0435\u0439\u043c\u0441 \u0411\u043e\u043d\u0434 20: \u0423\u043c\u0440\u0438, \u043d\u043e \u043d\u0435 \u0441\u0435\u0439\u0447\u0430\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1484},{"sourceType":"tmdb","movieId":460,"title":"\u0423\u043c\u0440\u0438, \u043d\u043e \u043d\u0435 \u0441\u0435\u0439\u0447\u0430\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1485},{"sourceType":"tmdb","movieId":460,"title":"007 \u0e1e\u0e22\u0e31\u0e04\u0e06\u0e4c\u0e23\u0e49\u0e32\u0e22\u0e17\u0e49\u0e32\u0e21\u0e23\u0e13\u0e30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1486},{"sourceType":"tmdb","movieId":460,"title":"James Bond: Ba\u015fka G\u00fcn \u00d6l","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1487},{"sourceType":"tmdb","movieId":460,"title":"\u8ab0\u8207\u722d\u92d2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1488},{"sourceType":"tmdb","movieId":460,"title":"007 - 21 - Muere otro d\u00eda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4754},{"sourceType":"tmdb","movieId":460,"title":"\u041f\u043e\u043c\u0440\u0438, \u0430\u043b\u0435 \u043d\u0435 \u0437\u0430\u0440\u0430\u0437","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4979},{"sourceType":"tmdb","movieId":460,"title":"James Bond 21 Die Another Day","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5416},{"sourceType":"tmdb","movieId":460,"title":"Otro d\u00eda para morir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5570},{"sourceType":"tmdb","movieId":460,"title":"(2002) Um Novo Dia Para Morrer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5574}],"secondaryYearSourceId":0,"sortTitle":"die another day","sizeOnDisk":2714375470,"status":"released","overview":"James Bond is sent to investigate the connection between a North Korean terrorist and a diamond mogul, who is funding the development of an international space weapon.","inCinemas":"2002-11-17T00:00:00Z","physicalRelease":"2003-01-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/460\/poster.jpg?lastWrite=637625775926326740","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bZmGqOhMhaLn8AoFMvFDct4tbrL.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/460\/fanart.jpg?lastWrite=637621451622623643","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/orI5mvpksYIlhJqzdmeipys6sHQ.jpg"}],"website":"https:\/\/www.mgm.com\/movies\/die-another-day","year":2002,"hasFile":true,"youTubeTrailerId":"GTznf1x4khc","studio":"Eon Productions","path":"\/movies\/Die Another Day (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Die Another Day (2002)","runtime":133,"cleanTitle":"dieanotherday","imdbId":"tt0246460","tmdbId":36669,"titleSlug":"36669","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-03-17T20:52:43Z","ratings":{"votes":2595,"value":6},"movieFile":{"movieId":460,"relativePath":"Die Another Day.2002-Bluray-1080p.mp4","path":"\/movies\/Die Another Day (2002)\/Die Another Day.2002-Bluray-1080p.mp4","size":2714375470,"dateAdded":"2019-08-08T03:45:53Z","sceneName":"Die.Another.Day.2002.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:12:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":571},"collection":{"name":"James Bond Collection","tmdbId":645,"images":[]},"id":460},{"title":"Skyfall","originalTitle":"Skyfall","alternateTitles":[{"sourceType":"tmdb","movieId":461,"title":"James Bond 23 - Skyfall","sourceId":37724,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":846},{"sourceType":"tmdb","movieId":461,"title":"James Bond 23","sourceId":37724,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1162},{"sourceType":"tmdb","movieId":461,"title":"James Bond - Skyfall","sourceId":37724,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1241},{"sourceType":"tmdb","movieId":461,"title":"007 - 23 - Skyfall","sourceId":37724,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1298},{"sourceType":"tmdb","movieId":461,"title":"007 \u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044f: \u0421\u043a\u0430\u0439\u0444\u043e\u043b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2874},{"sourceType":"tmdb","movieId":461,"title":"Agente 007 - Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2877},{"sourceType":"tmdb","movieId":461,"title":"23\ud0c4 007 \uc2a4\uce74\uc774\ud3f4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2878},{"sourceType":"tmdb","movieId":461,"title":"Operacija Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2879},{"sourceType":"tmdb","movieId":461,"title":"007: Operaci\u00f3n Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2880},{"sourceType":"tmdb","movieId":461,"title":"\u0414\u0436\u0435\u0439\u043c\u0441 \u0411\u043e\u043d\u0434 23: \u041a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u044b \u00ab\u0421\u043a\u0430\u0439\u0444\u043e\u043b\u043b\u00bb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2882},{"sourceType":"tmdb","movieId":461,"title":"James Bond: Sa\u011fanak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2883},{"sourceType":"tmdb","movieId":461,"title":"\u041a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u044b \u00ab\u0421\u043a\u0430\u0439\u0444\u043e\u043b\u043b\u00bb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4975},{"sourceType":"tmdb","movieId":461,"title":"007: \u041a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0438 \u00ab\u0421\u043a\u0430\u0439\u0444\u043e\u043b\u043b\u00bb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4976},{"sourceType":"tmdb","movieId":461,"title":"\u041a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u0438 \u0421\u043a\u0430\u0439\u0444\u043e\u043b\u043b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4985},{"sourceType":"tmdb","movieId":461,"title":"007 (2012) Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5235},{"sourceType":"tmdb","movieId":461,"title":"007 - Opera\u00e7\u00e3o Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5360},{"sourceType":"tmdb","movieId":461,"title":"(2012) Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5575},{"sourceType":"tmdb","movieId":461,"title":"007 24 - Opera\u00e7\u00e3o Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5586},{"sourceType":"tmdb","movieId":461,"title":"James Bond 24 Skyfall","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5644},{"sourceType":"tmdb","movieId":461,"title":"007\uff1a (2012)\u667a\u7834\u5929\u51f6\u57ce","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5951},{"sourceType":"tmdb","movieId":461,"title":"007 3\uff1a \u667a\u7834\u5929\u51f6\u57ce","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6266}],"secondaryYearSourceId":0,"sortTitle":"skyfall","sizeOnDisk":2931887790,"status":"released","overview":"When Bond's latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory, the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows - aided only by field agent, Eve - following a trail to the mysterious Silva, whose lethal and hidden motives have yet to reveal themselves.","inCinemas":"2012-10-25T00:00:00Z","physicalRelease":"2013-02-12T00:00:00Z","digitalRelease":"2015-01-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/461\/poster.jpg?lastWrite=637641344519391259","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/izrHg2UzxG3YXTBcKFaUbYp9LWA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/461\/fanart.jpg?lastWrite=637660377359248942","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hoQhlAskVNgLQhArnH7reWP4pUp.jpg"}],"website":"https:\/\/www.mgm.com\/movies\/skyfall","year":2012,"hasFile":true,"youTubeTrailerId":"YvV3g8hLlyU","studio":"Danjaq","path":"\/movies\/Skyfall (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Skyfall (2012)","runtime":143,"cleanTitle":"skyfall","imdbId":"tt1074638","tmdbId":37724,"titleSlug":"37724","certification":"PG-13","genres":["Action","Adventure","Thriller"],"tags":[],"added":"2019-03-17T20:52:47Z","ratings":{"votes":12694,"value":7.2},"movieFile":{"movieId":461,"relativePath":"Skyfall.2012-Bluray-1080p.mp4","path":"\/movies\/Skyfall (2012)\/Skyfall.2012-Bluray-1080p.mp4","size":2931887790,"dateAdded":"2019-03-17T22:11:47Z","sceneName":"Skyfall.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:23:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":530},"collection":{"name":"James Bond Collection","tmdbId":645,"images":[]},"id":461},{"title":"Spectre","originalTitle":"Spectre","alternateTitles":[{"sourceType":"tmdb","movieId":462,"title":"007 - Spectre","sourceId":206647,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":849},{"sourceType":"tmdb","movieId":462,"title":"007 \u0627\u0633\u067e\u06a9\u062a\u0631","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2244},{"sourceType":"tmdb","movieId":462,"title":"Agente 007 - Spectre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2245},{"sourceType":"tmdb","movieId":462,"title":"007 \uc2a4\ud399\ud130","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2246},{"sourceType":"tmdb","movieId":462,"title":"24\ud0c4 007 \uc2a4\ud399\ud130","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2247},{"sourceType":"tmdb","movieId":462,"title":"007 Spektras","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2248},{"sourceType":"tmdb","movieId":462,"title":"Spektras","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2249},{"sourceType":"tmdb","movieId":462,"title":"James Bond: Spectre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2252},{"sourceType":"tmdb","movieId":462,"title":"\u0421\u043f\u0435\u043a\u0442\u0440","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4977},{"sourceType":"tmdb","movieId":462,"title":"007 - Contra Spectre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5361},{"sourceType":"tmdb","movieId":462,"title":"007 25 - Contra Spectre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6179},{"sourceType":"tmdb","movieId":462,"title":"007 - 24 - Spectre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6218},{"sourceType":"tmdb","movieId":462,"title":"007\uff1a2015 \u9b3c\u5f71\u5e1d\u570b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6220}],"secondaryYearSourceId":0,"sortTitle":"spectre","sizeOnDisk":11734294105,"status":"released","overview":"A cryptic message from Bond\u2019s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.","inCinemas":"2015-10-26T00:00:00Z","physicalRelease":"2016-02-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/462\/poster.jpg?lastWrite=637652590943008351","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/672kUEMtTHcaVYSVY4eiHEliHFa.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/462\/fanart.jpg?lastWrite=637533234466752858","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8lBViysvNJBPkl6zG1LVAaW3qhj.jpg"}],"website":"https:\/\/www.mgm.com\/movies\/spectre","year":2015,"hasFile":true,"youTubeTrailerId":"z4UDNzXD3qA","studio":"Danjaq","path":"\/movies\/Spectre (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Spectre (2015)","runtime":148,"cleanTitle":"spectre","imdbId":"tt2379713","tmdbId":206647,"titleSlug":"206647","certification":"PG-13","genres":["Action","Adventure","Thriller"],"tags":[],"added":"2019-03-17T20:52:48Z","ratings":{"votes":8411,"value":6.5},"movieFile":{"movieId":462,"relativePath":"Spectre.2015-Bluray-1080p.mkv","path":"\/movies\/Spectre (2015)\/Spectre.2015-Bluray-1080p.mkv","size":11734294105,"dateAdded":"2019-03-17T21:29:16Z","sceneName":"Spectre.2015.1080p.BluRay.x264-SPARKS[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9058000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:28:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SPARKS","edition":"","id":529},"collection":{"name":"James Bond Collection","tmdbId":645,"images":[]},"id":462},{"title":"Apollo 13","originalTitle":"Apollo 13","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"apollo 13","sizeOnDisk":2862862474,"status":"released","overview":"The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1970, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.","inCinemas":"1995-06-30T00:00:00Z","physicalRelease":"1996-07-01T00:00:00Z","digitalRelease":"2002-07-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/463\/poster.jpg?lastWrite=637643074012491090","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oYUZHYMwNKnE1ef4WE5Hw2a9OAY.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/463\/fanart.jpg?lastWrite=637643074013891064","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AfGp6Ev3BVdEd7L99kGQzOzsqRb.jpg"}],"website":"","year":1995,"hasFile":true,"youTubeTrailerId":"KtEIMC58sZo","studio":"Imagine Entertainment","path":"\/movies\/Apollo 13 (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Apollo 13 (1995)","runtime":140,"cleanTitle":"apollo13","imdbId":"tt0112384","tmdbId":568,"titleSlug":"568","certification":"PG","genres":["Drama","History"],"tags":[],"added":"2019-03-27T16:19:03Z","ratings":{"votes":4136,"value":7.4},"movieFile":{"movieId":463,"relativePath":"Apollo 13.1995-Bluray-1080p.mp4","path":"\/movies\/Apollo 13 (1995)\/Apollo 13.1995-Bluray-1080p.mp4","size":2862862474,"dateAdded":"2019-03-27T16:29:05Z","sceneName":"Apollo.13.1995.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"2:19:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":535},"id":463},{"title":"Fanboys","originalTitle":"Fanboys","alternateTitles":[{"sourceType":"tmdb","movieId":464,"title":"The Fanboys","sourceId":13532,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1217}],"secondaryYearSourceId":0,"sortTitle":"fanboys","sizeOnDisk":7547966880,"status":"released","overview":"In 1999, Star Wars fanatics take a cross-country trip to George Lucas' Skywalker Ranch so their dying friend can see a screening of The Phantom Menace before its release.","inCinemas":"2009-02-06T00:00:00Z","physicalRelease":"2011-08-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/464\/poster.jpg?lastWrite=637623181510811047","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fitksX4J3xfBjT38YgDUXOlBkHk.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/464\/fanart.jpg?lastWrite=637623181512171022","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/q0kP3QlIrdWSM28xLKnoQxHbjyD.jpg"}],"website":"","year":2009,"hasFile":true,"youTubeTrailerId":"","studio":"The Weinstein Company","path":"\/movies\/Fanboys (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Fanboys (2009)","runtime":90,"cleanTitle":"fanboys","imdbId":"tt0489049","tmdbId":13532,"titleSlug":"13532","certification":"PG-13","genres":["Adventure","Comedy"],"tags":[],"added":"2019-03-31T12:56:48Z","ratings":{"votes":622,"value":6.2},"movieFile":{"movieId":464,"relativePath":"Fanboys.2009-Bluray-1080p.mkv","path":"\/movies\/Fanboys (2009)\/Fanboys.2009-Bluray-1080p.mkv","size":7547966880,"dateAdded":"2019-08-22T10:48:17Z","sceneName":"The.Fanboys.2008.1080p.BluRay.x264.DTS-FGT","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9718000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:29:42","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":590},"id":464},{"title":"Seven Dwarfs","originalTitle":"7 Zwerge - M\u00e4nner allein im Wald","alternateTitles":[{"sourceType":"tmdb","movieId":465,"title":"7 Dwarves: Men Alone in the Wood","sourceId":9803,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":869},{"sourceType":"tmdb","movieId":465,"title":"Sieben Zwerge \u2013 M\u00e4nner allein im Wald","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6014}],"secondaryYearSourceId":0,"sortTitle":"seven dwarfs","sizeOnDisk":0,"status":"released","overview":"The Seven Dwarves live deep within a female-free-zone of the Enchanted Forest, but they cannot resist the innocent charms of Snow White when she enters their world. So when the evil queen abducts her, it is up to the dwarves to save her life.","inCinemas":"2004-10-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/465\/poster.jpg?lastWrite=637627506023266730","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/b7cfDQirLJbOryFB0VfpQJHwTIx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/465\/fanart.jpg?lastWrite=637653456442315650","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cHCylUlsksvUwmsCIoxzlFo7RBp.jpg"}],"website":"","year":2004,"hasFile":false,"youTubeTrailerId":"qdonTpx29hI","studio":"","path":"\/movies\/Seven Dwarfs (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Seven Dwarfs (2004)","runtime":95,"cleanTitle":"sevendwarfs","imdbId":"tt0382295","tmdbId":9803,"titleSlug":"9803","genres":["Comedy"],"tags":[],"added":"2019-03-31T20:22:53Z","ratings":{"votes":165,"value":5.5},"collection":{"name":"Seven Dwarfs Collection","tmdbId":215606,"images":[]},"id":465},{"title":"Jerry Cotton","originalTitle":"Jerry Cotton","alternateTitles":[{"sourceType":"tmdb","movieId":466,"title":"\u795e\u63a2\u79d1\u987f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5419}],"secondaryYearSourceId":0,"sortTitle":"jerry cotton","sizeOnDisk":0,"status":"released","overview":"Jerry Cotton is the best agent of the FBI and suspected of murder. So he has to find the real killers from gangster boss Serrano.","inCinemas":"2010-03-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/466\/poster.jpg?lastWrite=637653456080321379","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rYWCVaNPtqiDDp7p18SZqz3vzWS.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/466\/fanart.jpg?lastWrite=637260149768300228","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xWGyqWvbyxwYC1O5xagH52dmP3o.jpg"}],"website":"http:\/\/www.jerrycotton.film.de","year":2010,"hasFile":false,"youTubeTrailerId":"w-eMJu-ZlR8","studio":"B.A. Filmproduktion","path":"\/movies\/Jerry Cotton (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Jerry Cotton (2010)","runtime":90,"cleanTitle":"jerrycotton","imdbId":"tt1080019","tmdbId":46281,"titleSlug":"46281","genres":["Comedy","Crime"],"tags":[],"added":"2019-03-31T20:23:21Z","ratings":{"votes":24,"value":6.1},"id":466},{"title":"Joker","originalTitle":"Joker","alternateTitles":[{"sourceType":"tmdb","movieId":467,"title":"\u03a4\u03b6\u03cc\u03ba\u03b5\u03c1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2799}],"secondaryYearSourceId":0,"sortTitle":"joker","sizeOnDisk":8207710027,"status":"released","overview":"During the 1980s, a failed stand-up comedian is driven insane and turns to a life of crime and chaos in Gotham City while becoming an infamous psychopathic crime figure.","inCinemas":"2019-10-02T00:00:00Z","physicalRelease":"2020-01-07T00:00:00Z","digitalRelease":"2019-12-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/467\/poster.jpg?lastWrite=637664702125347093","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/467\/fanart.jpg?lastWrite=637664702126787075","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/n6bUvigpRFqSwmPp1m2YADdbRBc.jpg"}],"website":"http:\/\/www.jokermovie.net\/","year":2019,"hasFile":true,"youTubeTrailerId":"xRjvmVaFHkk","studio":"Warner Bros. Pictures","path":"\/movies\/Joker (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Joker (2019)","runtime":122,"cleanTitle":"joker","imdbId":"tt7286456","tmdbId":475557,"titleSlug":"475557","certification":"R","genres":["Crime","Thriller","Drama"],"tags":[],"added":"2019-04-04T15:55:20Z","ratings":{"votes":18500,"value":8.2},"movieFile":{"movieId":467,"relativePath":"Joker.2019-Bluray-1080p.mkv","path":"\/movies\/Joker (2019)\/Joker.2019-Bluray-1080p.mkv","size":8207710027,"dateAdded":"2019-12-18T20:36:57Z","sceneName":"Joker.2019.1080p.BluRay.x264-AAA[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8344000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:01:49","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AAA","edition":"","id":642},"id":467},{"title":"Tenacious D in The Pick of Destiny","originalTitle":"Tenacious D in The Pick of Destiny","alternateTitles":[{"sourceType":"tmdb","movieId":468,"title":"The Pick of Destiny","sourceId":2179,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":909},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D - La u\u00f1a del destino","sourceId":2179,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":910},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D \u0432 \u041f\u0435\u0440\u043e\u0442\u043e \u043d\u0430 \u0441\u044a\u0434\u0431\u0430\u0442\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2924},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D, La Pua del Destino","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2925},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D et le M\u00e9diator du Destin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2926},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D et le Plectre de la Destin\u00e9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2927},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D - A v\u00e9gzet penget\u0151je","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2928},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D e il destino del Rock","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2929},{"sourceType":"tmdb","movieId":468,"title":"\u0412\u044b\u0431\u043e\u0440 \u0441\u0443\u0434\u044c\u0431\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2930},{"sourceType":"tmdb","movieId":468,"title":"\u041c\u0435\u0434\u0438\u0430\u0442\u043e\u0440 \u0441\u0443\u0434\u044c\u0431\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2931},{"sourceType":"tmdb","movieId":468,"title":"Reyes del Rock","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":2932},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D: Kostka Przeznaczenia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5023},{"sourceType":"tmdb","movieId":468,"title":"Tenacious D et le Pic du Destin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6211}],"secondaryYearSourceId":0,"sortTitle":"tenacious d in pick destiny","sizeOnDisk":9002664148,"status":"released","overview":"In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.","inCinemas":"2006-11-22T00:00:00Z","physicalRelease":"2007-06-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/468\/poster.jpg?lastWrite=637641344583670076","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8baHzEIfrBvBy5b9XKe87Skl1tf.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/468\/fanart.jpg?lastWrite=637641344585150048","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/frWnQLBGB6ROzdK2aPCCLRnz24J.jpg"}],"website":"http:\/\/www.tenaciousdmovie.com\/","year":2006,"hasFile":true,"youTubeTrailerId":"TXxQFMG86HA","studio":"New Line Cinema","path":"\/movies\/Tenacious D in The Pick of Destiny (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Tenacious D in The Pick of Destiny (2006)","runtime":93,"cleanTitle":"tenaciousdinpickdestiny","imdbId":"tt0365830","tmdbId":2179,"titleSlug":"2179","certification":"R","genres":["Comedy","Music"],"tags":[],"added":"2019-04-30T14:18:58Z","ratings":{"votes":1167,"value":6.7},"movieFile":{"movieId":468,"relativePath":"Tenacious D in The Pick of Destiny.2006-WEBDL-1080p.mkv","path":"\/movies\/Tenacious D in The Pick of Destiny (2006)\/Tenacious D in The Pick of Destiny.2006-WEBDL-1080p.mkv","size":9002664148,"dateAdded":"2019-04-30T15:04:57Z","sceneName":"Tenacious.D.in.The.Pick.of.Destiny.2006.1080p.AMZN.WEBRip.DTS.x264-TenaciousD","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XXCH","audioBitrate":754500,"audioChannels":6.1,"audioCodec":"DTS-ES","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11997548,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:34:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"TenaciousD","edition":"","id":544},"id":468},{"title":"The Wandering Earth","originalTitle":"\u6d41\u6d6a\u5730\u7403","alternateTitles":[{"sourceType":"tmdb","movieId":469,"title":"\u0421\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430\u0449\u0430\u0442\u0430 \u0417\u0435\u043c\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4062},{"sourceType":"tmdb","movieId":469,"title":"Li\u00fa l\u00e0ng d\u00ec qi\u00fa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4063},{"sourceType":"tmdb","movieId":469,"title":"\u6d41\u6d6a\u7684\u5730\u7403","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4064},{"sourceType":"tmdb","movieId":469,"title":"\u0411\u043b\u0443\u043a\u0430\u044e\u0447\u0430 \u0417\u0435\u043c\u043b\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5332}],"secondaryYearSourceId":0,"sortTitle":"wandering earth","sizeOnDisk":11822586403,"status":"released","overview":"When the Sun begins to expand in such a way that it will inevitably engulf and destroy the Earth in a hundred years, united mankind finds a way to avoid extinction by propelling the planet out of the Solar System using gigantic engines, moving it to a new home located four light years away, an epic journey that will last thousands of years.","inCinemas":"2019-02-05T00:00:00Z","digitalRelease":"2019-04-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/469\/poster.jpg?lastWrite=637638749948249288","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/woo56L6LYYoM89DYBCU2C6LO1at.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/469\/fanart.jpg?lastWrite=637617127563452079","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3jKynKnUtRERxBFAcvZ8AvkTo4c.jpg"}],"website":"","year":2019,"hasFile":true,"youTubeTrailerId":"0TDII5IkI3Y","studio":"China Film Group Corporation","path":"\/movies\/The Wandering Earth (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Wandering Earth (2019)","runtime":126,"cleanTitle":"thewanderingearth","imdbId":"tt7605074","tmdbId":535167,"titleSlug":"535167","certification":"PG-13","genres":["Science Fiction","Action","Drama"],"tags":[],"added":"2019-05-09T19:57:27Z","ratings":{"votes":485,"value":6.4},"movieFile":{"movieId":469,"relativePath":"The Wandering Earth.2019-Bluray-1080p.mkv","path":"\/movies\/The Wandering Earth (2019)\/The Wandering Earth.2019-Bluray-1080p.mkv","size":11822586403,"dateAdded":"2019-10-31T03:36:06Z","sceneName":"The.Wandering.Earth 2019.1080p.Blu-ray.Atmos.7.1.HEVC-DDR[EtHD]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4769922,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"Chinese \/ Chinese \/ Chinese","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":6714057,"videoCodec":"HEVC","videoFps":24.0,"resolution":"1920x752","runTime":"2:05:07","scanType":"","subtitles":"Chinese \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DDR","edition":"","id":627},"id":469},{"title":"See You Yesterday","originalTitle":"See You Yesterday","alternateTitles":[{"sourceType":"tmdb","movieId":470,"title":"A Gente Se V\u00ea Ontem","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6015}],"secondaryYearSourceId":0,"sortTitle":"see you yesterday","sizeOnDisk":1499486937,"status":"released","overview":"As two teen prodigies try to master the art of time travel, a tragic police shooting sends them on a series of dangerous trips to the past.","digitalRelease":"2019-05-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/470\/poster.jpg?lastWrite=637247174274934529","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/d5uA1DdiWK5KH5yzyMfh1X3uXie.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/470\/fanart.jpg?lastWrite=637617127319095974","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lK7IphewdNxLYXZB1sDh99lgHoM.jpg"}],"website":"http:\/\/www.netflix.com\/title\/80216758","year":2019,"hasFile":true,"youTubeTrailerId":"8MVRWQ1PnMo","studio":"40 Acres and a Mule Filmworks","path":"\/movies\/See You Yesterday (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/See You Yesterday (2019)","runtime":86,"cleanTitle":"seeyouyesterday","imdbId":"tt8743064","tmdbId":582607,"titleSlug":"582607","genres":["Science Fiction","Drama","Adventure"],"tags":[],"added":"2019-05-19T08:47:25Z","ratings":{"votes":419,"value":5.6},"movieFile":{"movieId":470,"relativePath":"See You Yesterday.2019-WEBDL-1080p.mp4","path":"\/movies\/See You Yesterday (2019)\/See You Yesterday.2019-WEBDL-1080p.mp4","size":1499486937,"dateAdded":"2019-05-26T07:11:20Z","sceneName":"See.you.yesterday.2019.1080p-dual-cast-cinecalidad.to","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":159840,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"Spanish \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2000000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1040","runTime":"1:27:12","scanType":"Progressive","subtitles":"Spanish \/ Spanish"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"cinecalidad","edition":"","id":550},"id":470},{"title":"The Abyss","originalTitle":"The Abyss","alternateTitles":[{"sourceType":"tmdb","movieId":472,"title":"The Abyss (Special Edition)","sourceId":2756,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":943},{"sourceType":"tmdb","movieId":472,"title":"El abismo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2017},{"sourceType":"tmdb","movieId":472,"title":"Propast","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2018},{"sourceType":"tmdb","movieId":472,"title":"\u05d4\u05de\u05e6\u05d5\u05dc\u05d5\u05ea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2019},{"sourceType":"tmdb","movieId":472,"title":"\uc2ec\uc5f0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2020},{"sourceType":"tmdb","movieId":472,"title":"\uc2ec\uc5f0(\uc5b4\ube44\uc2a4)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2021},{"sourceType":"tmdb","movieId":472,"title":"Afgrond","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":2022},{"sourceType":"tmdb","movieId":472,"title":"O Abismo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":2023},{"sourceType":"tmdb","movieId":472,"title":"Otch\u0142a\u0144","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5275},{"sourceType":"tmdb","movieId":472,"title":"G\u0142\u0119bia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6180}],"secondaryYearSourceId":0,"sortTitle":"abyss","sizeOnDisk":10675525906,"status":"released","overview":"A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.","inCinemas":"1989-08-09T00:00:00Z","physicalRelease":"2000-03-21T00:00:00Z","digitalRelease":"2002-01-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/472\/poster.jpg?lastWrite=637250633665711575","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jel2BuDv7Bq4fuv2pUrTfiBm69o.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/472\/fanart.jpg?lastWrite=637624910988648979","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aPB3jFuMSoNFk2uDZ5tX5CIGaSX.jpg"}],"website":"","year":1989,"hasFile":true,"youTubeTrailerId":"WYPcLYPoaxo","studio":"Lightstorm Entertainment","path":"\/movies\/The Abyss (1989)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Abyss (1989)","runtime":139,"cleanTitle":"theabyss","imdbId":"tt0096754","tmdbId":2756,"titleSlug":"2756","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-05-19T20:33:41Z","ratings":{"votes":2026,"value":7.3},"movieFile":{"movieId":472,"relativePath":"The Abyss.1989-WEBDL-1080p.mkv","path":"\/movies\/The Abyss (1989)\/The Abyss.1989-WEBDL-1080p.mkv","size":10675525906,"dateAdded":"2019-08-31T19:48:32Z","sceneName":"The.Abyss.1989.1080p.WEBRip.DD5.1.x264-QOQ","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9499702,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"2:20:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"QOQ","edition":"","id":598},"id":472},{"title":"The Fifth Element","originalTitle":"The Fifth Element","alternateTitles":[{"sourceType":"tmdb","movieId":474,"title":"The Fifth Element: Remastered","sourceId":18,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":956},{"sourceType":"tmdb","movieId":474,"title":"The 5th Element","sourceId":18,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":957},{"sourceType":"tmdb","movieId":474,"title":"El cinqu\u00e8 element","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3744},{"sourceType":"tmdb","movieId":474,"title":"Le 5\u00e8me \u00e9l\u00e9ment","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3746},{"sourceType":"tmdb","movieId":474,"title":"Le Cinqui\u00e8me \u00c9l\u00e9ment","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3747},{"sourceType":"tmdb","movieId":474,"title":"Il Quinto Elemento","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3748},{"sourceType":"tmdb","movieId":474,"title":"\uc81c5\uc6d0\uc18c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3749},{"sourceType":"tmdb","movieId":474,"title":"Peti element","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3750}],"secondaryYearSourceId":0,"sortTitle":"fifth element","sizeOnDisk":2576039706,"status":"released","overview":"In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.","inCinemas":"1997-05-02T00:00:00Z","physicalRelease":"1997-11-25T00:00:00Z","digitalRelease":"1998-10-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/474\/poster.jpg?lastWrite=637566963427649394","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/474\/fanart.jpg?lastWrite=637461611094734671","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wgvc3PmjQGtYYDWaeuV867mnFDs.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"ZH4islqoA8o","studio":"Gaumont","path":"\/movies\/The Fifth Element (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Fifth Element (1997)","runtime":126,"cleanTitle":"thefifthelement","imdbId":"tt0119116","tmdbId":18,"titleSlug":"18","certification":"PG-13","genres":["Adventure","Fantasy","Action"],"tags":[],"added":"2019-05-30T09:44:42Z","ratings":{"votes":8402,"value":7.5},"movieFile":{"movieId":474,"relativePath":"The Fifth Element.1997-Bluray-1080p.mp4","path":"\/movies\/The Fifth Element (1997)\/The Fifth Element.1997-Bluray-1080p.mp4","size":2576039706,"dateAdded":"2019-05-30T10:09:11Z","sceneName":"The.Fifth.Element.1997.REMASTERED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:05:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"REMASTERED","id":551},"id":474},{"title":"The Bad Batch","originalTitle":"The Bad Batch","alternateTitles":[{"sourceType":"tmdb","movieId":475,"title":"Amores Can\u00edbales","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4643},{"sourceType":"tmdb","movieId":475,"title":"Amores Canibais","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4644},{"sourceType":"tmdb","movieId":475,"title":"Amor carnal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4645},{"sourceType":"tmdb","movieId":475,"title":"Amor carnal (The Bad Batch)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4646},{"sourceType":"tmdb","movieId":475,"title":"\ub354 \ubc30\ub4dc \ubc30\uce58","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4647},{"sourceType":"tmdb","movieId":475,"title":"\ubc84\ub824\uc9c4 \uc790\ub4e4\uc758 \ub545","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4648},{"sourceType":"tmdb","movieId":475,"title":"\u751f\u5b58\u8005","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4649}],"secondaryYear":2016,"secondaryYearSourceId":0,"sortTitle":"bad batch","sizeOnDisk":2427343431,"status":"released","overview":"In a desert wasteland in Texas, a muscled cannibal breaks one important rule: don\u2019t play with your food.","inCinemas":"2017-07-13T00:00:00Z","digitalRelease":"2017-06-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/475\/poster.jpg?lastWrite=637637884607386027","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9jb0AsOAS4kNPiEwg5jCxMaP1Rc.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/475\/fanart.jpg?lastWrite=637611936039194296","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aQ06MnEDLh9X3ZOtY21UD2XB197.jpg"}],"website":"","year":2017,"hasFile":true,"youTubeTrailerId":"4aJeVSMaf20","studio":"Neon","path":"\/movies\/The Bad Batch (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/The Bad Batch (2017)","runtime":119,"cleanTitle":"thebadbatch","imdbId":"tt4334266","tmdbId":316154,"titleSlug":"316154","certification":"R","genres":["Drama","Horror","Science Fiction"],"tags":[],"added":"2019-06-08T15:56:04Z","ratings":{"votes":788,"value":5.2},"movieFile":{"movieId":475,"relativePath":"The Bad Batch.2016-Bluray-1080p.mp4","path":"\/movies\/The Bad Batch (2017)\/The Bad Batch.2016-Bluray-1080p.mp4","size":2427343431,"dateAdded":"2019-08-08T05:01:25Z","sceneName":"The.Bad.Batch.2016.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:58:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":572},"id":475},{"title":"Ip Man","originalTitle":"\u8449\u554f","alternateTitles":[{"sourceType":"tmdb","movieId":476,"title":"Ip Man 1","sourceId":14756,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":966},{"sourceType":"tmdb","movieId":476,"title":"Yip Man","sourceId":14756,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":967},{"sourceType":"tmdb","movieId":476,"title":"Yip Man 1","sourceId":14756,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":968},{"sourceType":"tmdb","movieId":476,"title":"Yi dai zong shi Ye Wen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2463},{"sourceType":"tmdb","movieId":476,"title":"Y\u00e8 w\u00e8n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2464},{"sourceType":"tmdb","movieId":476,"title":"Ip Man : La L\u00e9gende du Grand Ma\u00eetre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2465},{"sourceType":"tmdb","movieId":476,"title":"\u0e22\u0e34\u0e1b\u0e21\u0e31\u0e19 1 \u0e08\u0e49\u0e32\u0e27\u0e01\u0e31\u0e07\u0e1f\u0e39 \u0e2a\u0e39\u0e49\u0e22\u0e34\u0e1a\u0e15\u0e32","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2467},{"sourceType":"tmdb","movieId":476,"title":"\u53f6\u95ee1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5578}],"secondaryYear":2009,"secondaryYearSourceId":0,"sortTitle":"ip man","sizeOnDisk":8514052321,"status":"released","overview":"A semi-biographical account of Yip Man, the first martial arts master to teach the Chinese martial art of Wing Chun. The film focuses on events surrounding Ip that took place in the city of Foshan between the 1930s to 1940s during the Second Sino-Japanese War. Directed by Wilson Yip, the film stars Donnie Yen in the lead role, and features fight choreography by Sammo Hung.","inCinemas":"2008-12-12T00:00:00Z","physicalRelease":"2010-01-12T00:00:00Z","digitalRelease":"2011-10-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/476\/poster.jpg?lastWrite=637640479465952748","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ggTTUXZg7trvAhsVj3eyd65bAnh.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/476\/fanart.jpg?lastWrite=637625776036524071","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1MXgIE5wLCUynW6PGmM0rLDJAaP.jpg"}],"website":"http:\/\/www.ipman-movie.com\/","year":2008,"hasFile":true,"youTubeTrailerId":"1AJxXQ7xojE","studio":"Mandarin Films Distribution Co.","path":"\/movies\/Ip Man (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Ip Man (2008)","runtime":106,"cleanTitle":"ipman","imdbId":"tt1220719","tmdbId":14756,"titleSlug":"14756","certification":"R","genres":["Drama","Action","History"],"tags":[],"added":"2019-06-08T15:57:17Z","ratings":{"votes":2786,"value":7.7},"movieFile":{"movieId":476,"relativePath":"Ip Man.2008-Bluray-1080p.mkv","path":"\/movies\/Ip Man (2008)\/Ip Man.2008-Bluray-1080p.mkv","size":8514052321,"dateAdded":"2019-06-08T18:56:31Z","sceneName":"Ip.Man.2008.1080p.BluRay.x264-aBD","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Chinese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9161000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x816","runTime":"1:46:21","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"aBD","edition":"","id":552},"collection":{"name":"Ip Man Collection","tmdbId":70068,"images":[]},"id":476},{"title":"Ip Man 2","originalTitle":"\u8449\u554f2","alternateTitles":[{"sourceType":"tmdb","movieId":477,"title":"Ip Man 2 - La leyenda del gran maestro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3092},{"sourceType":"tmdb","movieId":477,"title":"\u0393\u03b9\u03c0 \u039c\u03b1\u03bd 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3094},{"sourceType":"tmdb","movieId":477,"title":"Yip Man 2: Chung si chuen kei","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3095},{"sourceType":"tmdb","movieId":477,"title":"\u8449\u554f2: \u5b97\u5e2b\u50b3\u5947","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3096},{"sourceType":"tmdb","movieId":477,"title":"ip man jyoshou","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3097}],"secondaryYearSourceId":0,"sortTitle":"ip man 2","sizeOnDisk":8525306126,"status":"released","overview":"Having defeated the best fighters of the Imperial Japanese army in occupied Shanghai, Ip Man and his family settle in post-war Hong Kong. Struggling to make a living, Master Ip opens a kung fu school to bring his celebrated art of Wing Chun to the troubled youth of Hong Kong. His growing reputation soon brings challenges from powerful enemies, including pre-eminent Hung Gar master, Hung Quan.","inCinemas":"2010-04-29T00:00:00Z","physicalRelease":"2010-10-22T00:00:00Z","digitalRelease":"2015-04-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/477\/poster.jpg?lastWrite=637389841007816784","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5FCY2ueDzU6b39byAGb3NRvr0zG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/477\/fanart.jpg?lastWrite=637640479479512521","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6Zo212BjDdDMqRIqcaiWXn10hty.jpg"}],"website":"http:\/\/www.ipman2-movie.com\/","year":2010,"hasFile":true,"youTubeTrailerId":"gaBdgu00otE","studio":"Mandarin Films Distribution Co.","path":"\/movies\/Ip Man 2 (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Ip Man 2 (2010)","runtime":108,"cleanTitle":"ipman2","imdbId":"tt1386932","tmdbId":37472,"titleSlug":"37472","certification":"R","genres":["Action","History","Drama"],"tags":[],"added":"2019-06-08T15:57:20Z","ratings":{"votes":1641,"value":7.4},"movieFile":{"movieId":477,"relativePath":"Ip Man 2.2010-Bluray-1080p.mkv","path":"\/movies\/Ip Man 2 (2010)\/Ip Man 2.2010-Bluray-1080p.mkv","size":8525306126,"dateAdded":"2019-08-08T06:22:27Z","sceneName":"Ip.Man.2.2010.iNTERNAL.1080p.BluRay.x264-Japhson","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Chinese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9009000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x816","runTime":"1:48:06","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"ipman2","edition":"","id":573},"collection":{"name":"Ip Man Collection","tmdbId":70068,"images":[]},"id":477},{"title":"Ip Man: The Final Fight","originalTitle":"\u8449\u554f\uff1a\u7d42\u6975\u4e00\u6230","alternateTitles":[{"sourceType":"tmdb","movieId":478,"title":"Ip Man - A Batalha Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3100},{"sourceType":"tmdb","movieId":478,"title":"\u53f6\u95ee - \u7ec8\u6781\u4e00\u6218","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3101},{"sourceType":"tmdb","movieId":478,"title":"\u53f6\u95ee\u7ec8\u6781\u7bc7\u4e4b\u9999\u6c5f\u5c81\u6708","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3102},{"sourceType":"tmdb","movieId":478,"title":"Ip Man - La pelea final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3103},{"sourceType":"tmdb","movieId":478,"title":"Ip Man : Le combat final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3104},{"sourceType":"tmdb","movieId":478,"title":"Yip Man: Jung gik yat jin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3105},{"sourceType":"tmdb","movieId":478,"title":"Ip Man The Final Fight (2013)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3106},{"sourceType":"tmdb","movieId":478,"title":"\uc5fd\ubb384: \uc885\uadf9\uc77c\uc804","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3107},{"sourceType":"tmdb","movieId":478,"title":"Yip Man: Jung gik yat zin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6057}],"secondaryYearSourceId":0,"sortTitle":"ip man final fight","sizeOnDisk":2055072805,"status":"released","overview":"In postwar Hong Kong, legendary Wing Chun grandmaster Ip Man is reluctantly called into action once more, when what begin as simple challenges from rival kung fu styles soon draw him into the dark and dangerous underworld of the Triads. Now, to defend life and honor, he has no choice but to fight one last time...","inCinemas":"2013-03-22T00:00:00Z","physicalRelease":"2013-09-27T00:00:00Z","digitalRelease":"2017-06-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/478\/poster.jpg?lastWrite=637363902133090929","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8iBLQor9xFiT9d9b4f8v2W3X5jj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/478\/fanart.jpg?lastWrite=637363902134570902","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bH1kVwvYjzk73s3w2MMO7dNOIk6.jpg"}],"website":"","year":2013,"hasFile":true,"youTubeTrailerId":"SKRQpmPpPug","studio":"Emperor Motion Pictures","path":"\/movies\/Ip Man The Final Fight (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Ip Man The Final Fight (2013)","runtime":100,"cleanTitle":"ipmanfinalfight","imdbId":"tt2495118","tmdbId":182127,"titleSlug":"182127","certification":"PG-13","genres":["Action","Drama"],"tags":[],"added":"2019-06-08T15:57:26Z","ratings":{"votes":273,"value":6.1},"movieFile":{"movieId":478,"relativePath":"Ip Man The Final Fight.2013-Bluray-1080p.mp4","path":"\/movies\/Ip Man The Final Fight (2013)\/Ip Man The Final Fight.2013-Bluray-1080p.mp4","size":2055072805,"dateAdded":"2019-08-08T07:00:28Z","sceneName":"Ip.Man.The.Final.Fight.2013.CHINESE.1080p.BluRay.H264.AAC-VXT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x808","runTime":"1:40:27","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"VXT","edition":"","id":574},"id":478},{"title":"Scanners","originalTitle":"Scanners","alternateTitles":[{"sourceType":"tmdb","movieId":479,"title":"\uc2a4\uce90\ub108\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2873}],"secondaryYearSourceId":0,"sortTitle":"scanners","sizeOnDisk":2114438774,"status":"released","overview":"After a man with extraordinary\u2014and frighteningly destructive\u2014telepathic abilities is nabbed by agents from a mysterious rogue corporation, he discovers he is far from the only possessor of such strange powers, and that some of the other \u201cscanners\u201d have their minds set on world domination, while others are trying to stop them.","inCinemas":"1981-01-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/479\/poster.jpg?lastWrite=637461611357250121","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4tgdJp09TObBSKNooYucqibC4WH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/479\/fanart.jpg?lastWrite=637656916783954364","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/weKhPC9dCbKOl633anVJFer44sF.jpg"}],"website":"","year":1981,"hasFile":true,"youTubeTrailerId":"MdAh1qDmJng","studio":"Canadian Film Development Corporation (CFDC)","path":"\/movies\/Scanners (1981)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Scanners (1981)","runtime":103,"cleanTitle":"scanners","imdbId":"tt0081455","tmdbId":9538,"titleSlug":"9538","certification":"R","genres":["Science Fiction","Horror"],"tags":[],"added":"2019-06-10T02:36:29Z","ratings":{"votes":773,"value":6.8},"movieFile":{"movieId":479,"relativePath":"Scanners.1981-Bluray-1080p.mp4","path":"\/movies\/Scanners (1981)\/Scanners.1981-Bluray-1080p.mp4","size":2114438774,"dateAdded":"2019-08-08T01:05:19Z","sceneName":"Scanners.1981.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:43:17","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":565},"collection":{"name":"Scanners Collection","tmdbId":88574,"images":[]},"id":479},{"title":"The Handmaid's Tale","originalTitle":"The Handmaid's Tale","alternateTitles":[{"sourceType":"tmdb","movieId":480,"title":"Din slavinna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4893},{"sourceType":"tmdb","movieId":480,"title":"Orjattaresi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4894},{"sourceType":"tmdb","movieId":480,"title":"\uc2dc\ub140\uc774\uc57c\uae30","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4895},{"sourceType":"tmdb","movieId":480,"title":"\u0420\u043e\u0437\u043f\u043e\u0432\u0456\u0434\u044c \u0441\u043b\u0443\u0436\u043d\u0438\u0446\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4896}],"secondaryYearSourceId":0,"sortTitle":"handmaid s tale","sizeOnDisk":2223911450,"status":"released","overview":"In a dystopicly polluted rightwing religious tyranny, a young woman is put in sexual slavery on account of her now rare fertility.","inCinemas":"1990-02-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/480\/poster.jpg?lastWrite=637611070646726472","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cnkKQyRzoCMZliMaknTOXHqXKaz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/480\/fanart.jpg?lastWrite=637640479395113939","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hGZwS7xOImTVpG3ezHRlMMBioKW.jpg"}],"website":"","year":1990,"hasFile":true,"youTubeTrailerId":"oTnhx_N7nro","studio":"Cinecom Entertainment Group","path":"\/movies\/The Handmaid's Tale (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Handmaid's Tale (1990)","runtime":108,"cleanTitle":"thehandmaidstale","imdbId":"tt0099731","tmdbId":20815,"titleSlug":"20815","certification":"R","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-06-30T22:33:09Z","ratings":{"votes":145,"value":6},"movieFile":{"movieId":480,"relativePath":"The Handmaid's Tale.1990-Bluray-1080p.mp4","path":"\/movies\/The Handmaid's Tale (1990)\/The Handmaid's Tale.1990-Bluray-1080p.mp4","size":2223911450,"dateAdded":"2019-08-08T01:29:19Z","sceneName":"The.Handmaids.Tale.1990.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:48:39","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":569},"id":480},{"title":"Fahrenheit 451","originalTitle":"Fahrenheit 451","alternateTitles":[{"sourceType":"tmdb","movieId":481,"title":"\u534e\u6c0f451","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4584}],"secondaryYearSourceId":0,"sortTitle":"fahrenheit 451","sizeOnDisk":1677733192,"status":"released","overview":"In an oppressive future, a 'fireman' whose duty is to destroy all books begins to question his task.","physicalRelease":"2018-08-30T00:00:00Z","digitalRelease":"2018-05-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/481\/poster.jpg?lastWrite=637611936385668759","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/urH9H50gKbUK8U6qTVd89SLQPjx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/481\/fanart.jpg?lastWrite=637633559234049848","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7oy4miyq4WYYy0xtX6lbNVPrEsr.jpg"}],"website":"https:\/\/www.hbo.com\/movies\/fahrenheit-451","year":2018,"hasFile":true,"youTubeTrailerId":"O3irxFd965s","studio":"HBO Films","path":"\/movies\/Fahrenheit 451 (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Fahrenheit 451 (2018)","runtime":100,"cleanTitle":"fahrenheit451","imdbId":"tt0360556","tmdbId":401905,"titleSlug":"401905","certification":"PG-13","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2019-06-30T22:33:18Z","ratings":{"votes":621,"value":5.4},"movieFile":{"movieId":481,"relativePath":"Fahrenheit 451.2018-Bluray-1080p.mp4","path":"\/movies\/Fahrenheit 451 (2018)\/Fahrenheit 451.2018-Bluray-1080p.mp4","size":1677733192,"dateAdded":"2020-08-12T10:17:18Z","sceneName":"Fahrenheit.451.2018.1080p.BluRay.x265-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1998592,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:40:20","scanType":"","subtitles":""},"originalFilePath":"Fahrenheit.451.2018.1080p.BluRay.x265-RARBG\/Fahrenheit.451.2018.1080p.BluRay.x265-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":690},"id":481},{"title":"Apollo 11","originalTitle":"Apollo 11","alternateTitles":[{"sourceType":"tmdb","movieId":482,"title":"Apollo 11 - FR 2019","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4582},{"sourceType":"tmdb","movieId":482,"title":"Apolo 11","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4583}],"secondaryYearSourceId":0,"sortTitle":"apollo 11","sizeOnDisk":16810159633,"status":"released","overview":"A look at the Apollo 11 mission to land on the moon led by commander Neil Armstrong and pilot Buzz Aldrin.","inCinemas":"2019-03-08T00:00:00Z","physicalRelease":"2019-05-14T00:00:00Z","digitalRelease":"2019-11-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/482\/poster.jpg?lastWrite=637626640561101323","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/woLMRroHyoTGoXyxdEeBJEYBFtu.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/482\/fanart.jpg?lastWrite=637607610090814913","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7KuGLqB3NcK0WPiDsfrUwrOqzDe.jpg"}],"website":"https:\/\/www.apollo11movie.com","year":2019,"hasFile":true,"youTubeTrailerId":"XcIFgM79a0o","studio":"Statement Pictures","path":"\/movies\/Apollo 11 (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Apollo 11 (2019)","runtime":93,"cleanTitle":"apollo11","imdbId":"tt8760684","tmdbId":549559,"titleSlug":"549559","certification":"G","genres":["Documentary","History"],"tags":[],"added":"2019-07-03T09:23:26Z","ratings":{"votes":431,"value":7.9},"movieFile":{"movieId":482,"relativePath":"Apollo 11.2019-Remux-1080p.mkv","path":"\/movies\/Apollo 11 (2019)\/Apollo 11.2019-Remux-1080p.mkv","size":16810159633,"dateAdded":"2019-07-03T09:37:37Z","sceneName":"Apollo.11.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3508990,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":20573754,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:33:00","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":555},"id":482},{"title":"Life of Brian","originalTitle":"Life of Brian","alternateTitles":[{"sourceType":"tmdb","movieId":483,"title":"\u5e03\u83b1\u6069\u7684\u4e00\u751f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2803},{"sourceType":"tmdb","movieId":483,"title":"Monty Python\u016fv \u017divot Briana","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2804},{"sourceType":"tmdb","movieId":483,"title":"Brianin el\u00e4m\u00e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2805},{"sourceType":"tmdb","movieId":483,"title":"Monty Python: Brians liv","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":2806},{"sourceType":"tmdb","movieId":483,"title":"Brian of Nazareth","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2807},{"sourceType":"tmdb","movieId":483,"title":"Jesus Christ: Lust for Glory","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2808},{"sourceType":"tmdb","movieId":483,"title":"Monty Python's Life of Brian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2809},{"sourceType":"tmdb","movieId":483,"title":"The Gospel According to St. Brian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2810},{"sourceType":"tmdb","movieId":483,"title":"\ub77c\uc774\ud504 \uc624\ube0c \ube0c\ub77c\uc774\uc5b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2811},{"sourceType":"tmdb","movieId":483,"title":"\u0416\u0438\u0442\u0438\u0435 \u0411\u0440\u0430\u0439\u0430\u043d\u0430 \u043f\u043e \u041c\u043e\u043d\u0442\u0438 \u041f\u0430\u0439\u0442\u043e\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4900},{"sourceType":"tmdb","movieId":483,"title":"Das Leben des Brian","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5026}],"secondaryYearSourceId":0,"sortTitle":"life brian","sizeOnDisk":8015972099,"status":"released","overview":"Brian Cohen is an average young Jewish man, but through a series of ridiculous events, he gains a reputation as the Messiah. When he's not dodging his followers or being scolded by his shrill mother, the hapless Brian has to contend with the pompous Pontius Pilate and acronym-obsessed members of a separatist movement. Rife with Monty Python's signature absurdity, the tale finds Brian's life paralleling Biblical lore, albeit with many more laughs.","inCinemas":"1979-08-17T00:00:00Z","physicalRelease":"1982-01-01T00:00:00Z","digitalRelease":"2001-12-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/483\/poster.jpg?lastWrite=637555719562151838","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lSSA64WF0M0BXnjwr2quMh6shCl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/483\/fanart.jpg?lastWrite=637647399794636240","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aRvoRaR4l7Bxzjch5ioi5dZzrsX.jpg"}],"website":"","year":1979,"hasFile":true,"youTubeTrailerId":"7FIZGHax55c","studio":"HandMade Films","path":"\/movies\/Life of Brian (1979)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Life of Brian (1979)","runtime":94,"cleanTitle":"lifebrian","imdbId":"tt0079470","tmdbId":583,"titleSlug":"583","certification":"R","genres":["Comedy"],"tags":[],"added":"2019-07-13T20:12:09Z","ratings":{"votes":3197,"value":7.8},"movieFile":{"movieId":483,"relativePath":"Life of Brian.1979-Bluray-1080p.mkv","path":"\/movies\/Life of Brian (1979)\/Life of Brian.1979-Bluray-1080p.mkv","size":8015972099,"dateAdded":"2019-08-08T16:25:42Z","sceneName":"Monty.Pythons.Life.of.Brian.1979.1080p.BluRay.x264-CULTHD","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10950000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:33:43","scanType":"Progressive","subtitles":"English \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"culthd","edition":"","id":578},"id":483},{"title":"Casino Royale","originalTitle":"Casino Royale","alternateTitles":[{"sourceType":"tmdb","movieId":484,"title":"Casino Royale: Uncut Edition","sourceId":36557,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1025},{"sourceType":"tmdb","movieId":484,"title":"James Bond 21: Casino Royale - Uncut Edition","sourceId":36557,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1026},{"sourceType":"tmdb","movieId":484,"title":"James Bond - Casino Royale","sourceId":36557,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1028},{"sourceType":"tmdb","movieId":484,"title":"James Bond 21 - Casino Royale","sourceId":36557,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1029},{"sourceType":"tmdb","movieId":484,"title":"007 \u041a\u0430\u0437\u0438\u043d\u043e \u0420\u043e\u044f\u043b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2080},{"sourceType":"tmdb","movieId":484,"title":"007 22 - Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2081},{"sourceType":"tmdb","movieId":484,"title":"007 - 21 - Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2084},{"sourceType":"tmdb","movieId":484,"title":"007 - Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2085},{"sourceType":"tmdb","movieId":484,"title":"James Bond 007 Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2086},{"sourceType":"tmdb","movieId":484,"title":"22 Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2087},{"sourceType":"tmdb","movieId":484,"title":"Agente 007 - Casin\u00f2 Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":2088},{"sourceType":"tmdb","movieId":484,"title":"007 \uce74\uc9c0\ub178 \ub85c\uc584","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2089},{"sourceType":"tmdb","movieId":484,"title":"21\ud0c4 007 \uce74\uc9c0\ub178 \ub85c\uc584","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2090},{"sourceType":"tmdb","movieId":484,"title":"Kazino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2091},{"sourceType":"tmdb","movieId":484,"title":"\u0414\u0436\u0435\u0439\u043c\u0441 \u0411\u043e\u043d\u0434 21: \u041a\u0430\u0437\u0438\u043d\u043e \u0420\u043e\u044f\u043b\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2092},{"sourceType":"tmdb","movieId":484,"title":"\u041a\u0430\u0437\u0438\u043d\u043e \u0420\u043e\u044f\u043b\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2093},{"sourceType":"tmdb","movieId":484,"title":"Casino Royale 2006","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3604},{"sourceType":"tmdb","movieId":484,"title":"James Bond 007 - Casino Royale 2006","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3605},{"sourceType":"tmdb","movieId":484,"title":"(2006) Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5573},{"sourceType":"tmdb","movieId":484,"title":"James Bond 22 Casino Royale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5642},{"sourceType":"tmdb","movieId":484,"title":"007 1\uff1a\u667a\u7834\u7687\u5bb6\u8ced\u5834","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6243}],"secondaryYearSourceId":0,"sortTitle":"casino royale","sizeOnDisk":2951942378,"status":"released","overview":"Le Chiffre, a banker to the world's terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond\u2014on his maiden mission as a 00 Agent\u2014to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.","inCinemas":"2006-11-14T00:00:00Z","physicalRelease":"2007-03-13T00:00:00Z","digitalRelease":"2009-04-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/484\/poster.jpg?lastWrite=637566098594906283","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8Gv1dylImVuoj3bZtEWoL1TLl2q.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/484\/fanart.jpg?lastWrite=637657781407861214","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kjC48HRQpojr3FHx5pZF7Ro9xFg.jpg"}],"website":"https:\/\/www.mgm.com\/movies\/casino-royale-2006","year":2006,"hasFile":true,"youTubeTrailerId":"U4NT78c-pYs","studio":"Eon Productions","path":"\/movies\/Casino Royale (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Casino Royale (2006)","runtime":144,"cleanTitle":"casinoroyale","imdbId":"tt0381061","tmdbId":36557,"titleSlug":"36557","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-07-16T19:07:52Z","ratings":{"votes":8160,"value":7.5},"movieFile":{"movieId":484,"relativePath":"Casino Royale.2006-Bluray-1080p.mp4","path":"\/movies\/Casino Royale (2006)\/Casino Royale.2006-Bluray-1080p.mp4","size":2951942378,"dateAdded":"2019-07-16T19:34:18Z","sceneName":"Casino.Royale.2006.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:24:12","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":560},"collection":{"name":"James Bond Collection","tmdbId":645,"images":[]},"id":484},{"title":"Werner - Beinhart!","originalTitle":"Werner - Beinhart!","alternateTitles":[{"sourceType":"tmdb","movieId":485,"title":"Werner 1 - Beinhart!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5467}],"secondaryYearSourceId":0,"sortTitle":"werner beinhart","sizeOnDisk":0,"status":"released","overview":"Comic artist Br\u00f6sel trades a magic pen that helps him come up with funny stories for the promise to fulfill one of Rumpelstiltskin's wishes. The resulting animated films show episodes of the life of Werner, a plumber apprentice and motorbike enthusiast and his friends. They are interspersed with the live-action portions.","inCinemas":"1990-11-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/485\/poster.jpg?lastWrite=637624911568361707","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wMJ9B8ZCY7yxOgwbKS6NBr1UW05.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/485\/fanart.jpg?lastWrite=637624911570321693","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6K9uuMC1XgUNdAJbS1ZMRSxj8yy.jpg"}],"website":"","year":1990,"hasFile":false,"youTubeTrailerId":"","studio":"Constantin Film","path":"\/movies\/Werner - Beinhart! (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Werner - Beinhart! (1990)","runtime":93,"cleanTitle":"wernerbeinhart","imdbId":"tt0100912","tmdbId":9742,"titleSlug":"9742","genres":["Animation","Comedy"],"tags":[],"added":"2019-07-23T19:21:47Z","ratings":{"votes":115,"value":6.6},"collection":{"name":"Werner Collection","tmdbId":9500,"images":[]},"id":485},{"title":"Werner - Volles Roo\u00e4\u00e4\u00e4!!!","originalTitle":"Werner - Volles Roo\u00e4\u00e4\u00e4!!!","alternateTitles":[{"sourceType":"tmdb","movieId":486,"title":"Werner 3 - Volles Roo\u00e4\u00e4\u00e4!!!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5470}],"secondaryYearSourceId":0,"sortTitle":"werner volles roo\u00e4\u00e4\u00e4","sizeOnDisk":0,"status":"released","overview":"A wicked investor wants Werner's residential area razed to the ground in order to build a shopping center. However, building tycoon G\u00fcnzelsen has not reckoned with Werner. Together with his master R\u00f6hrich he's planning to blow away the plumbings with a gigantic obstruction...","inCinemas":"1999-09-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/486\/poster.jpg?lastWrite=637665567459019368","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oLTfvxNtvgXBYUPb1detfI1czy7.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/486\/fanart.jpg?lastWrite=637613668093494248","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/y175UUyKcEe1zLE2xC4qkfTDxNV.jpg"}],"website":"","year":1999,"hasFile":false,"youTubeTrailerId":"","studio":"Hahn Film AG","path":"\/movies\/Werner - Volles Roo\u00e4\u00e4\u00e4!!! (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Werner - Volles Roo\u00e4\u00e4\u00e4!!! (1999)","runtime":77,"cleanTitle":"wernervollesrooaeaeae","imdbId":"tt0184005","tmdbId":9496,"titleSlug":"9496","genres":["Animation","Comedy"],"tags":[],"added":"2019-07-23T19:21:48Z","ratings":{"votes":66,"value":5.5},"collection":{"name":"Werner Collection","tmdbId":9500,"images":[]},"id":486},{"title":"Werner - Eiskalt!","originalTitle":"Werner - Eiskalt!","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"werner eiskalt","sizeOnDisk":0,"status":"released","overview":"Werner and Holgi are friends, but also lifelong rivals. Now Werner finally has enough of being the eternal second and is planning his revenge. With his special motorcycle, the 'Red Porsche Killer', he challenges Holgi and his car.","inCinemas":"2011-06-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/487\/poster.jpg?lastWrite=637647400131470618","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qo2TW3Ql3FJ8g8uifjNX6SoijV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/487\/fanart.jpg?lastWrite=637647400133110591","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g2YlGHw3HLQTdSznQBvC7iARkxs.jpg"}],"website":"","year":2011,"hasFile":false,"youTubeTrailerId":"","studio":"Constantin Film","path":"\/movies\/Werner - Eiskalt! (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Werner - Eiskalt! (2011)","runtime":98,"cleanTitle":"wernereiskalt","imdbId":"tt1711533","tmdbId":66896,"titleSlug":"66896","genres":["Comedy","Animation"],"tags":[],"added":"2019-07-23T19:21:51Z","ratings":{"votes":26,"value":5.5},"collection":{"name":"Werner Collection","tmdbId":9500,"images":[]},"id":487},{"title":"Werner - Das muss kesseln!!!","originalTitle":"Werner - Das muss kesseln!!!","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"werner das muss kesseln","sizeOnDisk":0,"status":"released","overview":"Because of a bet, Werner and his friend have to construct the fastest vehicle to win a race, because life depends on it.","inCinemas":"1996-06-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/488\/poster.jpg?lastWrite=637619722157959404","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/keqSkxCAFpOT20BBiADb6gx2REi.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/488\/fanart.jpg?lastWrite=637619722159959375","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5hTrlgPRIYDOFactczf0dCHVnOA.jpg"}],"website":"","year":1996,"hasFile":false,"youTubeTrailerId":"","studio":"Constantin Film","path":"\/movies\/Werner - Das muss kesseln!!! (1996)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Werner - Das muss kesseln!!! (1996)","runtime":85,"cleanTitle":"wernerdasmusskesseln","imdbId":"tt0118138","tmdbId":9514,"titleSlug":"9514","genres":["Animation","Comedy"],"tags":[],"added":"2019-07-23T19:21:55Z","ratings":{"votes":71,"value":6},"collection":{"name":"Werner Collection","tmdbId":9500,"images":[]},"id":488},{"title":"Werner - Gekotzt wird sp\u00e4ter!","originalTitle":"Werner - Gekotzt wird sp\u00e4ter!","alternateTitles":[{"sourceType":"tmdb","movieId":489,"title":"Werner 4 - Gekotzt wird sp\u00e4ter!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5469}],"secondaryYearSourceId":0,"sortTitle":"werner gekotzt wird sp\u00e4ter","sizeOnDisk":0,"status":"released","overview":"Werner, Andi and Eckat play dice to determine the next king of the trio. When Werner is crowned king, he decides for all of them to skip work and start for Korsika.","inCinemas":"2003-07-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/489\/poster.jpg?lastWrite=637521991451751515","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rxB5bUg6XrDFTffj6l8XeFh2i1V.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/489\/fanart.jpg?lastWrite=637650860360717505","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/w1bljLz20AYhLYP0vEqBI5XkyAF.jpg"}],"website":"","year":2003,"hasFile":false,"youTubeTrailerId":"","studio":"Achterbahn AG","path":"\/movies\/Werner - Gekotzt wird sp\u00e4ter! (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Werner - Gekotzt wird sp\u00e4ter! (2003)","runtime":80,"cleanTitle":"wernergekotztwirdspaeter","imdbId":"tt0304931","tmdbId":10470,"titleSlug":"10470","genres":["Animation","Comedy"],"tags":[],"added":"2019-07-23T19:21:59Z","ratings":{"votes":49,"value":6.2},"collection":{"name":"Werner Collection","tmdbId":9500,"images":[]},"id":489},{"title":"Invader ZIM: Enter the Florpus","originalTitle":"Invader ZIM: Enter the Florpus","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"invader zim enter florpus","sizeOnDisk":2372020641,"status":"released","overview":"ZIM discovers his almighty leaders never had any intention of coming to Earth and he loses confidence in himself for the first time in his life, which is the big break his human nemesis, Dib has been waiting for.","inCinemas":"2019-08-16T00:00:00Z","digitalRelease":"2019-08-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/490\/poster.jpg?lastWrite=637624911264484503","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/waaPtmhVFgieG021OwoEPTkbltI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/490\/fanart.jpg?lastWrite=637248038925353325","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/TQsErbTk6GztNl7rGukVaruuHR.jpg"}],"website":"https:\/\/www.netflix.com\/title\/81091957","year":2019,"hasFile":true,"youTubeTrailerId":"TDnKp83IOPA","studio":"Nickelodeon Animation Studio","path":"\/movies\/Invader ZIM Enter the Florpus (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"released","isAvailable":true,"folderName":"\/movies\/Invader ZIM Enter the Florpus (2019)","runtime":71,"cleanTitle":"invaderzimenterflorpus","imdbId":"tt6739094","tmdbId":472983,"titleSlug":"472983","certification":"PG","genres":["Family","Animation","Comedy"],"tags":[],"added":"2019-07-24T15:03:18Z","ratings":{"votes":138,"value":7.5},"movieFile":{"movieId":490,"relativePath":"Invader ZIM Enter the Florpus.2019-WEBDL-1080p.mkv","path":"\/movies\/Invader ZIM Enter the Florpus (2019)\/Invader ZIM Enter the Florpus.2019-WEBDL-1080p.mkv","size":2372020641,"dateAdded":"2019-09-02T21:21:32Z","sceneName":"Invader.Zim.Enter.The.Florpus.2019.1080p.NF.WEBRip.DDP5.1.x264-TOMMY","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3830000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:11:37","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Hungarian \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Norwegian Bokmal \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romanian \/ Russian \/ Swedish \/ Thai \/ Turkish \/ "},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"TOMMY","edition":"","id":600},"id":490},{"title":"Zero Days","originalTitle":"Zero Days","alternateTitles":[{"sourceType":"tmdb","movieId":491,"title":"Zero Days - World War 3.0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":2016}],"secondaryYearSourceId":0,"sortTitle":"zero days","sizeOnDisk":2331947555,"status":"released","overview":"Alex Gibney explores the phenomenon of Stuxnet, a self-replicating computer virus discovered in 2010 by international IT experts. Evidently commissioned by the US and Israeli governments, this malware was designed to specifically sabotage Iran\u2019s nuclear programme. However, the complex computer worm ended up not only infecting its intended target but also spreading uncontrollably.","inCinemas":"2016-09-01T00:00:00Z","physicalRelease":"2017-02-06T00:00:00Z","digitalRelease":"2016-07-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/491\/poster.jpg?lastWrite=637624911621561349","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xwQVkRJGCH59jGNPR78Aw8wzyZg.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/491\/fanart.jpg?lastWrite=637650860401156935","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/voIBVGqxurwJvWxwMsMQeXIdPS1.jpg"}],"website":"","year":2016,"hasFile":true,"youTubeTrailerId":"7VgIayOpjEc","studio":"Participant","path":"\/movies\/Zero Days (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Zero Days (2016)","runtime":116,"cleanTitle":"zerodays","imdbId":"tt5446858","tmdbId":380808,"titleSlug":"380808","certification":"PG-13","genres":["Documentary"],"tags":[],"added":"2019-07-26T19:18:17Z","ratings":{"votes":161,"value":7.3},"movieFile":{"movieId":491,"relativePath":"Zero Days.2016-Bluray-1080p.mp4","path":"\/movies\/Zero Days (2016)\/Zero Days.2016-Bluray-1080p.mp4","size":2331947555,"dateAdded":"2019-08-08T02:40:51Z","sceneName":"Zero.Days.2016.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:53:51","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":570},"id":491},{"title":"Steven Universe: The Movie","originalTitle":"Steven Universe: The Movie","alternateTitles":[{"sourceType":"tmdb","movieId":492,"title":"\u5b87\u5b99\u5c0f\u5b50\u5927\u7535\u5f71","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4533},{"sourceType":"tmdb","movieId":492,"title":"\u795e\u81cd\u5c0f\u6372\u6bdb \u96fb\u5f71\u5927\u5287\u5834","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4664},{"sourceType":"tmdb","movieId":492,"title":"Steven Universe ve filmu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5046},{"sourceType":"tmdb","movieId":492,"title":"Steven Universe: La Pel\u00edcula","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5161}],"secondaryYearSourceId":0,"sortTitle":"steven universe movie","sizeOnDisk":3485363651,"status":"released","overview":"Two years after bringing peace to the galaxy, Steven Universe sees his past come back to haunt him in the form of a deranged Gem who wants to destroy the Earth.","digitalRelease":"2019-09-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/492\/poster.jpg?lastWrite=637654321598434830","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8mRgpubxHqnqvENK4Bei30xMDvy.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/492\/fanart.jpg?lastWrite=637629235781103246","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/re3ZvlKJg04iLpLRf1xTKHS2wLU.jpg"}],"website":"https:\/\/www.stevenuniversethemovie.com\/","year":2019,"hasFile":true,"youTubeTrailerId":"fZsuug-3r_Q","studio":"Cartoon Network Studios","path":"\/movies\/Steven Universe The Movie (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Steven Universe The Movie (2019)","runtime":82,"cleanTitle":"stevenuniversemovie","imdbId":"tt10515852","tmdbId":537061,"titleSlug":"537061","genres":["Animation","Family","Fantasy"],"tags":[],"added":"2019-08-01T10:03:30Z","ratings":{"votes":596,"value":8.4},"movieFile":{"movieId":492,"relativePath":"Steven Universe The Movie.2019-WEBDL-1080p.mkv","path":"\/movies\/Steven Universe The Movie (2019)\/Steven Universe The Movie.2019-WEBDL-1080p.mkv","size":3485363651,"dateAdded":"2019-09-03T16:10:22Z","sceneName":"Steven Universe The Movie 2019 1080p iTunes-Rip","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":125853,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":5102264,"videoCodec":"h264","videoFps":23.976,"resolution":"1912x1072","runTime":"1:22:45","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"Rip","edition":"","id":601},"id":492},{"title":"The Circle","originalTitle":"The Circle","alternateTitles":[{"sourceType":"tmdb","movieId":493,"title":"Melinda's Song","sourceId":339988,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1040},{"sourceType":"tmdb","movieId":493,"title":"Ha'ma'agal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4343},{"sourceType":"tmdb","movieId":493,"title":"Circle: Uzav\u0159en\u00fd kruh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5257}],"secondaryYearSourceId":0,"sortTitle":"circle","sizeOnDisk":2243913714,"status":"released","overview":"A young tech worker takes a job at a powerful Internet corporation, quickly rises up the company's ranks, and soon finds herself in a perilous situation concerning privacy, surveillance and freedom. She comes to learn that her decisions and actions will determine the future of humanity.","inCinemas":"2017-04-27T00:00:00Z","physicalRelease":"2017-08-01T00:00:00Z","digitalRelease":"2017-06-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/493\/poster.jpg?lastWrite=637643074141448677","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bQVqd5rWrx5GbXhJNuvKy4Viz6j.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/493\/fanart.jpg?lastWrite=637643074142888650","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hENBbG0J4zf4fFB3OVAC50poojR.jpg"}],"website":"http:\/\/wearethecircle.com\/","year":2017,"hasFile":true,"youTubeTrailerId":"QUlr8Am4zQ0","studio":"Playtone","path":"\/movies\/The Circle (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Circle (2017)","runtime":110,"cleanTitle":"thecircle","imdbId":"tt4287320","tmdbId":339988,"titleSlug":"339988","certification":"PG-13","genres":["Drama","Thriller","Science Fiction"],"tags":[],"added":"2019-08-04T20:03:52Z","ratings":{"votes":3641,"value":5.5},"movieFile":{"movieId":493,"relativePath":"The Circle.2017-Bluray-1080p.mp4","path":"\/movies\/The Circle (2017)\/The Circle.2017-Bluray-1080p.mp4","size":2243913714,"dateAdded":"2019-08-08T15:30:40Z","sceneName":"The.Circle.2017.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:49:47","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":577},"id":493},{"title":"The Space Between Us","originalTitle":"The Space Between Us","alternateTitles":[{"sourceType":"tmdb","movieId":494,"title":"Out of This World","sourceId":365942,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1041},{"sourceType":"tmdb","movieId":494,"title":"\u6765\u81ea\u706b\u661f\u7684\u7231","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4661},{"sourceType":"tmdb","movieId":494,"title":"\u7231\u4e0a\u706b\u661f\u7537\u5b69","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4663}],"secondaryYearSourceId":0,"sortTitle":"space between us","sizeOnDisk":2018692348,"status":"released","overview":"A young man raised by scientists on Mars returns to Earth to find his father.","inCinemas":"2017-01-26T00:00:00Z","physicalRelease":"2017-05-16T00:00:00Z","digitalRelease":"2017-06-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/494\/poster.jpg?lastWrite=637647400054191908","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7qZzPkOoauJz5ImOvBd4XgnKs1B.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/494\/fanart.jpg?lastWrite=637647400055591885","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bmX9R1kzY0fVjR0ZVQUwzD17xFd.jpg"}],"website":"http:\/\/stxmovies.com\/thespacebetweenus\/","year":2017,"hasFile":true,"youTubeTrailerId":"lA31gclNAa4","studio":"Los Angeles Media Fund","path":"\/movies\/The Space Between Us (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Space Between Us (2017)","runtime":121,"cleanTitle":"thespacebetweenus","imdbId":"tt3922818","tmdbId":365942,"titleSlug":"365942","certification":"PG-13","genres":["Romance","Adventure","Science Fiction"],"tags":[],"added":"2019-08-04T20:04:20Z","ratings":{"votes":2047,"value":7.1},"movieFile":{"movieId":494,"relativePath":"The Space Between Us.2017-Bluray-1080p.mp4","path":"\/movies\/The Space Between Us (2017)\/The Space Between Us.2017-Bluray-1080p.mp4","size":2018692348,"dateAdded":"2020-07-05T15:23:21Z","sceneName":"The.Space.Between.Us.2017.1080p.BluRay.x265-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1998786,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x800","runTime":"2:00:43","scanType":"","subtitles":""},"originalFilePath":"The.Space.Between.Us.2017.1080p.BluRay.x265-RARBG\/The.Space.Between.Us.2017.1080p.BluRay.x265-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":685},"id":494},{"title":"Requiem for a Dream","originalTitle":"Requiem for a Dream","alternateTitles":[{"sourceType":"tmdb","movieId":495,"title":"Requiem for a Dream (Director's Cut)","sourceId":641,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1186},{"sourceType":"tmdb","movieId":495,"title":"R\u00e9quiem para um Sonho","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4494},{"sourceType":"tmdb","movieId":495,"title":"\u68a6\u7684\u633d\u6b4c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4495},{"sourceType":"tmdb","movieId":495,"title":"R\u00e9quiem por un sue\u00f1o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4496},{"sourceType":"tmdb","movieId":495,"title":"\u03a1\u03ad\u03ba\u03b2\u03b9\u03b5\u03bc \u0393\u03b9\u03b1 \u0388\u03bd\u03b1 \u038c\u03bd\u03b5\u03b9\u03c1\u03bf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4497},{"sourceType":"tmdb","movieId":495,"title":"Rekviem egy \u00e1lom\u00e9rt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4498},{"sourceType":"tmdb","movieId":495,"title":"\ub808\ud034\uc5e0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4499},{"sourceType":"tmdb","movieId":495,"title":"\ub808\ud034\uc5e0 \ud3ec \uc5b4 \ub4dc\ub9bc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4500},{"sourceType":"tmdb","movieId":495,"title":"A Vida N\u00e3o \u00e9 um Sonho","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4501},{"sourceType":"tmdb","movieId":495,"title":"\u0420\u0435\u043a\u0432\u0438\u0435\u043c \u043f\u043e \u043c\u0435\u0447\u0442\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4502},{"sourceType":"tmdb","movieId":495,"title":"\u5922\u4e4b\u5b89\u9b42\u66f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4503},{"sourceType":"tmdb","movieId":495,"title":"\u0420\u0435\u043a\u0432\u0456\u0454\u043c \u043f\u043e \u043c\u0440\u0456\u0457","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4504}],"secondaryYearSourceId":0,"sortTitle":"requiem for dream","sizeOnDisk":14011361435,"status":"released","overview":"The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.","inCinemas":"2000-12-15T00:00:00Z","physicalRelease":"2015-10-05T00:00:00Z","digitalRelease":"2005-08-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/495\/poster.jpg?lastWrite=637642209472398077","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/a1BrBoErndBAYEZZEJaotIJ6CE1.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/495\/fanart.jpg?lastWrite=637642209473838055","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c5g1Dn1tF22CS2oOvHDNKr1Ve2U.jpg"}],"website":"http:\/\/www.requiemforadream.com\/","year":2000,"hasFile":true,"youTubeTrailerId":"lgo3Hb5vWLE","studio":"Artisan Entertainment","path":"\/movies\/Requiem for a Dream (2000)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Requiem for a Dream (2000)","runtime":102,"cleanTitle":"requiemfordream","imdbId":"tt0180093","tmdbId":641,"titleSlug":"641","certification":"R","genres":["Crime","Drama","Thriller"],"tags":[],"added":"2019-08-04T20:04:51Z","ratings":{"votes":7464,"value":8},"movieFile":{"movieId":495,"relativePath":"Requiem for a Dream.2000-Bluray-1080p.mkv","path":"\/movies\/Requiem for a Dream (2000)\/Requiem for a Dream.2000-Bluray-1080p.mkv","size":14011361435,"dateAdded":"2019-08-08T01:09:49Z","sceneName":"Requiem.for.a.Dream.2000.iNTERNAL.1080p.BluRay.x264-MARS","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4695710,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":13692222,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:41:25","scanType":"Progressive","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"MARS","edition":"","id":567},"id":495},{"title":"Colonia","originalTitle":"Colonia","alternateTitles":[{"sourceType":"tmdb","movieId":496,"title":"\u6b96\u6c11\u5730","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1451},{"sourceType":"tmdb","movieId":496,"title":"\u041a\u043e\u043b\u043e\u043d\u0456\u044f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1452},{"sourceType":"tmdb","movieId":496,"title":"The Colony","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1453}],"secondaryYearSourceId":0,"sortTitle":"colonia","sizeOnDisk":8524640336,"status":"released","overview":"A young woman's desperate search for her abducted boyfriend draws her into the infamous Colonia Dignidad, a sect nobody ever escaped from.","inCinemas":"2015-06-24T00:00:00Z","physicalRelease":"2016-04-22T00:00:00Z","digitalRelease":"2015-09-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/496\/poster.jpg?lastWrite=637627505552394798","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lFmlp1AKv0avKmvDcvt8V4nMUY6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/496\/fanart.jpg?lastWrite=637647399549280335","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sE9NnpJSnR8JlLlV3LkVVFyAmI1.jpg"}],"website":"http:\/\/screenmediafilms.net\/productions\/details\/1635\/Colonia","year":2015,"hasFile":true,"youTubeTrailerId":"SiVAGDTmlpY","studio":"Majestic Filmproduktion","path":"\/movies\/Colonia (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Colonia (2016)","runtime":106,"cleanTitle":"colonia","imdbId":"tt4005402","tmdbId":318781,"titleSlug":"318781","certification":"R","genres":["Drama","Romance","Thriller"],"tags":[],"added":"2019-08-04T20:05:32Z","ratings":{"votes":1549,"value":7.3},"movieFile":{"movieId":496,"relativePath":"Colonia.2015-Bluray-1080p.mkv","path":"\/movies\/Colonia (2016)\/Colonia.2015-Bluray-1080p.mkv","size":8524640336,"dateAdded":"2019-08-08T22:59:51Z","sceneName":"Colonia.2015.1080p.BluRay.X264-AMIABLE[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8835000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:49:54","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":579},"id":496},{"title":"Ex Machina","originalTitle":"Ex Machina","alternateTitles":[{"sourceType":"tmdb","movieId":497,"title":"\u05d0\u05e7\u05e1 \u05de\u05db\u05d9\u05e0\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2114},{"sourceType":"tmdb","movieId":497,"title":"\u0627\u06a9\u0633\u200c\u0645\u0634\u06cc\u0646\u0627","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2115},{"sourceType":"tmdb","movieId":497,"title":"ekusumakina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2116},{"sourceType":"tmdb","movieId":497,"title":"\u30a8\u30af\u30b9\u30de\u30ad\u30ca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2117},{"sourceType":"tmdb","movieId":497,"title":"\u041c\u0430\u0448\u0438\u043d\u0430\u043d\u044b\u043d \u0438\u0447\u0438\u043d\u0435\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2118},{"sourceType":"tmdb","movieId":497,"title":"\uc5d1\uc2a4 \ub9c8\ud0a4\ub098","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2119},{"sourceType":"tmdb","movieId":497,"title":"\u0418\u0437 \u043c\u0430\u0448\u0438\u043d\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2120},{"sourceType":"tmdb","movieId":497,"title":"Umel\u00e1 inteligencia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4074},{"sourceType":"tmdb","movieId":497,"title":"Ex_Machina: Instinto Artificial","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5021}],"secondaryYear":2014,"secondaryYearSourceId":0,"sortTitle":"ex machina","sizeOnDisk":13466701581,"status":"released","overview":"Caleb, a coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.","inCinemas":"2015-01-16T00:00:00Z","physicalRelease":"2015-07-14T00:00:00Z","digitalRelease":"2017-05-25T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/497\/poster.jpg?lastWrite=637619721446049679","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dmJW8IAKHKxFNiUnoDR7JfsK7Rp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/497\/fanart.jpg?lastWrite=637663836586397354","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uqOuJ50EtTj7kkDIXP8LCg7G45D.jpg"}],"website":"http:\/\/exmachina-movie.com\/","year":2015,"hasFile":true,"youTubeTrailerId":"hEcB7T-C0g8","studio":"DNA Films","path":"\/movies\/Ex Machina (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ex Machina (2015)","runtime":108,"cleanTitle":"exmachina","imdbId":"tt0470752","tmdbId":264660,"titleSlug":"264660","certification":"R","genres":["Drama","Science Fiction"],"tags":[],"added":"2019-08-04T20:07:06Z","ratings":{"votes":10514,"value":7.6},"movieFile":{"movieId":497,"relativePath":"Ex Machina.2014-Bluray-1080p.mkv","path":"\/movies\/Ex Machina (2015)\/Ex Machina.2014-Bluray-1080p.mkv","size":13466701581,"dateAdded":"2019-08-09T14:24:13Z","sceneName":"Ex.Machina.2014.1080p.BluRay.x264.DTS-X.7.1-SWTYBLZ","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL X","audioBitrate":5521699,"audioChannels":7.1,"audioCodec":"DTS-X","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11033256,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x802","runTime":"1:48:16","scanType":"Progressive","subtitles":"English \/ English \/ English \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":581},"id":497},{"title":"The Wave","originalTitle":"Die Welle","alternateTitles":[{"sourceType":"tmdb","movieId":498,"title":"A Onda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4479},{"sourceType":"tmdb","movieId":498,"title":"\u6076\u9b54\u6559\u5ba4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4480},{"sourceType":"tmdb","movieId":498,"title":"Nas vudce","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4481},{"sourceType":"tmdb","movieId":498,"title":"La ola","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4482},{"sourceType":"tmdb","movieId":498,"title":"La Vague","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4483},{"sourceType":"tmdb","movieId":498,"title":"\u03a4\u03bf \u039a\u03cd\u03bc\u03b1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4484},{"sourceType":"tmdb","movieId":498,"title":"The Wave \u30a6\u30a7\u30a4\u30f4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4485},{"sourceType":"tmdb","movieId":498,"title":"\u042d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442 2: \u0412\u043e\u043b\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4486},{"sourceType":"tmdb","movieId":498,"title":"\u60e1\u9b54\u6559\u5ba4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4487}],"secondaryYearSourceId":0,"sortTitle":"wave","sizeOnDisk":15429533444,"status":"released","overview":"A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.","inCinemas":"2008-03-11T00:00:00Z","physicalRelease":"2009-04-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/498\/poster.jpg?lastWrite=637632694756444182","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/i4mCYeVXB8BFt2VYdDHYZN8M18u.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/498\/fanart.jpg?lastWrite=637632694757724162","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/59ZtjU5FfggxT6fgr1rm0a2JVaM.jpg"}],"website":"http:\/\/www.welle.film.de\/","year":2008,"hasFile":true,"youTubeTrailerId":"JbTkdqYivuw","studio":"Constantin Film","path":"\/movies\/The Wave (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Wave (2008)","runtime":107,"cleanTitle":"thewave","imdbId":"tt1063669","tmdbId":7735,"titleSlug":"7735","genres":["Drama","Thriller"],"tags":[],"added":"2019-08-04T20:08:56Z","ratings":{"votes":2532,"value":7.5},"movieFile":{"movieId":498,"relativePath":"The Wave.2008-Bluray-1080p.mkv","path":"\/movies\/The Wave (2008)\/The Wave.2008-Bluray-1080p.mkv","size":15429533444,"dateAdded":"2019-08-09T03:18:57Z","sceneName":"The.Wave.2008.GERMAN.1080p.BluRay.x264.DTS-Narkyy","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":17742161,"videoCodec":"x264","videoFps":24.0,"resolution":"1916x816","runTime":"1:46:51","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"Narkyy","edition":"","id":580},"id":498},{"title":"Metropia","originalTitle":"Metropia","alternateTitles":[{"sourceType":"tmdb","movieId":499,"title":"\u5730\u4e0b\u7406\u60f3\u56fd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5417}],"secondaryYearSourceId":0,"sortTitle":"metropia","sizeOnDisk":1755125510,"status":"released","overview":"In the near future, oil reserves are nearly depleted and Europe is connected by series of underground tunnels. While navigating these tunnels, Roger hears voices, one in particular. Seeking a way to rid himself of the voice only leads Roger deeper into a bizarre conspiracy of control - mind and body.","inCinemas":"2009-10-21T00:00:00Z","physicalRelease":"2012-06-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/499\/poster.jpg?lastWrite=637629235584866312","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oo9IJvDKUrhYS7zDimuoSJUPG79.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/499\/fanart.jpg?lastWrite=637629235586226291","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7hqUfCmuIL9aiY8fF0209xO9LxR.jpg"}],"website":"http:\/\/metropiathemovie.com","year":2009,"hasFile":true,"youTubeTrailerId":"vLPD_9uFmVI","studio":"Atmo Media Network","path":"\/movies\/Metropia (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Metropia (2009)","runtime":86,"cleanTitle":"metropia","imdbId":"tt0985058","tmdbId":36800,"titleSlug":"36800","certification":"NR","genres":["Animation","Drama","Science Fiction"],"tags":[],"added":"2019-08-04T20:10:31Z","ratings":{"votes":118,"value":6.1},"movieFile":{"movieId":499,"relativePath":"Metropia.2009-Bluray-1080p.mp4","path":"\/movies\/Metropia (2009)\/Metropia.2009-Bluray-1080p.mp4","size":1755125510,"dateAdded":"2019-08-08T10:13:03Z","sceneName":"Metropia.2009.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224002,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1040","runTime":"1:25:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":575},"id":499},{"title":"The Book of Eli","originalTitle":"The Book of Eli","alternateTitles":[{"sourceType":"tmdb","movieId":500,"title":"The Book of Eli - Der letzte K\u00e4mpfer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1414},{"sourceType":"tmdb","movieId":500,"title":"The Book of Eli - Die Zukunft der Welt liegt in seinen H\u00e4nden","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1415},{"sourceType":"tmdb","movieId":500,"title":"The Walker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1417},{"sourceType":"tmdb","movieId":500,"title":"El Libro de los Secretos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1420},{"sourceType":"tmdb","movieId":500,"title":"kniga ilaya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1421},{"sourceType":"tmdb","movieId":500,"title":"O Livro de Eli","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6056}],"secondaryYearSourceId":0,"sortTitle":"book eli","sizeOnDisk":11732509852,"status":"released","overview":"A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.","inCinemas":"2010-01-11T00:00:00Z","physicalRelease":"2010-06-15T00:00:00Z","digitalRelease":"2012-01-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/500\/poster.jpg?lastWrite=637657781358022074","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1H1y9ZiqNFaLgQiRDDZLA55PviW.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/500\/fanart.jpg?lastWrite=637626640600540584","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aPrrrGtSjXbw8XnpzsVJgF0ioq3.jpg"}],"website":"","year":2010,"hasFile":true,"youTubeTrailerId":"yAQcwKY0Dik","studio":"Alcon Entertainment","path":"\/movies\/The Book of Eli (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Book of Eli (2010)","runtime":118,"cleanTitle":"thebookeli","imdbId":"tt1037705","tmdbId":20504,"titleSlug":"20504","certification":"R","genres":["Action","Thriller","Science Fiction"],"tags":[],"added":"2019-08-04T20:10:51Z","ratings":{"votes":4739,"value":6.8},"movieFile":{"movieId":500,"relativePath":"The Book of Eli.2010-Bluray-1080p.mkv","path":"\/movies\/The Book of Eli (2010)\/The Book of Eli.2010-Bluray-1080p.mkv","size":11732509852,"dateAdded":"2019-08-09T16:39:17Z","sceneName":"The.Book.of.Eli.2010.1080p.BluRay.x264-METiS","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11780000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:57:36","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"rpk","edition":"","id":582},"id":500},{"title":"The Wolf of Wall Street","originalTitle":"The Wolf of Wall Street","alternateTitles":[{"sourceType":"tmdb","movieId":501,"title":"\u534e\u5c14\u8857\u72fc\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2271},{"sourceType":"tmdb","movieId":501,"title":"Para Avcisi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2280}],"secondaryYearSourceId":0,"sortTitle":"wolf wall street","sizeOnDisk":3684535170,"status":"released","overview":"A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.","inCinemas":"2013-12-25T00:00:00Z","physicalRelease":"2014-04-25T00:00:00Z","digitalRelease":"2017-01-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/501\/poster.jpg?lastWrite=637578206813708070","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pWHf4khOloNVfCxscsXFj3jj6gP.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/501\/fanart.jpg?lastWrite=637665567482538906","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cWUOv3H7YFwvKeaQhoAQTLLpo9Z.jpg"}],"website":"http:\/\/www.thewolfofwallstreet.com\/","year":2013,"hasFile":true,"youTubeTrailerId":"Slj4-Sv-YNA","studio":"EMJAG Productions","path":"\/movies\/The Wolf of Wall Street (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Wolf of Wall Street (2013)","runtime":180,"cleanTitle":"thewolfwallstreet","imdbId":"tt0993846","tmdbId":106646,"titleSlug":"106646","certification":"R","genres":["Crime","Drama","Comedy"],"tags":[],"added":"2019-08-05T19:56:35Z","ratings":{"votes":18207,"value":8},"movieFile":{"movieId":501,"relativePath":"The Wolf of Wall Street.2013-Bluray-1080p.mp4","path":"\/movies\/The Wolf of Wall Street (2013)\/The Wolf of Wall Street.2013-Bluray-1080p.mp4","size":3684535170,"dateAdded":"2019-08-05T20:06:26Z","sceneName":"The.Wolf.of.Wall.Street.2013.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:59:52","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":563},"id":501},{"title":"The Iron Giant","originalTitle":"The Iron Giant","alternateTitles":[{"sourceType":"tmdb","movieId":502,"title":"The Iron Giant: Signature Edition","sourceId":10386,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1046},{"sourceType":"tmdb","movieId":502,"title":"\u0416\u0435\u043b\u0435\u0437\u043d\u0438\u044f\u0442 \u0433\u0438\u0433\u0430\u043d\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4252},{"sourceType":"tmdb","movieId":502,"title":"\u5927\u94c1\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4253},{"sourceType":"tmdb","movieId":502,"title":"\u94c1\u5de8\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4254},{"sourceType":"tmdb","movieId":502,"title":"Raudhiiglane","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4255},{"sourceType":"tmdb","movieId":502,"title":"Le G\u00e9ant Fer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4256},{"sourceType":"tmdb","movieId":502,"title":"\u039f \u03b1\u03c4\u03c3\u03ac\u03bb\u03b9\u03bd\u03bf\u03c2 \u03b3\u03af\u03b3\u03b1\u03bd\u03c4\u03b1\u03c2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4257},{"sourceType":"tmdb","movieId":502,"title":"Anak ha'barzel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4258},{"sourceType":"tmdb","movieId":502,"title":"Gutten og jernkjempen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":4259},{"sourceType":"tmdb","movieId":502,"title":"\u0421\u0442\u0430\u043b\u0435\u0432\u0438\u0439 \u0433\u0456\u0433\u0430\u043d\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4260}],"secondaryYearSourceId":0,"sortTitle":"iron giant","sizeOnDisk":5865718173,"status":"released","overview":"In the small town of Rockwell, Maine in October 1957, a giant metal machine befriends a nine-year-old boy and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.","inCinemas":"1999-08-06T00:00:00Z","physicalRelease":"2000-05-17T00:00:00Z","digitalRelease":"2003-03-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/502\/poster.jpg?lastWrite=637604151688512303","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/bMr9Ir2hCFu2R72pjCA43uRMT4r.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/502\/fanart.jpg?lastWrite=637651725173470527","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wfClZdRb1x4LZ8B73Y9RSn8XAPa.jpg"}],"website":"https:\/\/www.warnerbros.com\/iron-giant","year":1999,"hasFile":true,"youTubeTrailerId":"1mSUMy534Y8","studio":"Warner Bros. Pictures","path":"\/movies\/The Iron Giant (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Iron Giant (1999)","runtime":86,"cleanTitle":"theirongiant","imdbId":"tt0129167","tmdbId":10386,"titleSlug":"10386","certification":"PG","genres":["Family","Animation","Adventure"],"tags":[],"added":"2019-08-06T14:48:46Z","ratings":{"votes":4149,"value":7.9},"movieFile":{"movieId":502,"relativePath":"The Iron Giant.1999-Bluray-1080p.mkv","path":"\/movies\/The Iron Giant (1999)\/The Iron Giant.1999-Bluray-1080p.mkv","size":5865718173,"dateAdded":"2019-08-06T14:56:55Z","sceneName":"The.Iron.Giant.1999.1080p.BluRay.X264-AMIABLE","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":7182000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:29:58","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":564},"id":502},{"title":"Atlantis: Milo's Return","originalTitle":"Atlantis: Milo's Return","alternateTitles":[{"sourceType":"tmdb","movieId":503,"title":"Atlantis 2 - Milo's Return","sourceId":8965,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1061},{"sourceType":"tmdb","movieId":503,"title":"Atlantis - O Retorno de Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4421},{"sourceType":"tmdb","movieId":503,"title":"\u795e\u79d8\u7684\u6c34\u6676","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4422},{"sourceType":"tmdb","movieId":503,"title":"Atlantis: Milo se vrac\u00ed","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4423},{"sourceType":"tmdb","movieId":503,"title":"Atlantis - Milo Vender Tilbage","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4424},{"sourceType":"tmdb","movieId":503,"title":"Atlantis: El regreso de Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4425},{"sourceType":"tmdb","movieId":503,"title":"Atlantide 2 - Les enigmes de l'Atlantide","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4427},{"sourceType":"tmdb","movieId":503,"title":"Atlantide : Le retour de Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4428},{"sourceType":"tmdb","movieId":503,"title":"Atlantis II: Milo's Return","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4430},{"sourceType":"tmdb","movieId":503,"title":"Atlantis 2 - Il ritorno di Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4431},{"sourceType":"tmdb","movieId":503,"title":"\uc544\ud2c0\ub780\ud2f0\uc2a4 2-\ub9c8\uc77c\ub85c\uc758 \uadc0\ud658","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4432},{"sourceType":"tmdb","movieId":503,"title":"Atl\u00e2ntida - O Regresso de Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4434},{"sourceType":"tmdb","movieId":503,"title":"\u0410\u0442\u043b\u0430\u043d\u0442\u0438\u0434\u0430 2:\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u041c\u0430\u0439\u043b\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4435},{"sourceType":"tmdb","movieId":503,"title":"Atlantis (2) : Le Retour de Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5169},{"sourceType":"tmdb","movieId":503,"title":"Atl\u00e2ntida - O Retorno De Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5597},{"sourceType":"tmdb","movieId":503,"title":"\u0397 \u03a7\u03b1\u03bc\u03ad\u03bd\u03b7 \u0391\u03c4\u03bb\u03b1\u03bd\u03c4\u03af\u03b4\u03b1: \u0397 \u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c4\u03bf\u03c5 \u039c\u03ac\u03b9\u03bb\u03bf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5725},{"sourceType":"tmdb","movieId":503,"title":"Atlantis 2: O Retorno de Milo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5772}],"secondaryYearSourceId":0,"sortTitle":"atlantis milo s return","sizeOnDisk":1645621584,"status":"released","overview":"Milo and Kida reunite with their friends to investigate strange occurances around the world that seem to have links to the secrets of Atlantis.","inCinemas":"2003-02-25T00:00:00Z","physicalRelease":"2003-04-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/503\/poster.jpg?lastWrite=637642208853647414","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c9siOypFgzsKL4LQI1d3EkDN6U3.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/503\/fanart.jpg?lastWrite=637245444462810959","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/GDTwA5FBvVUOjCGKoNDMflbs3Z.jpg"}],"website":"http:\/\/disneydvd.disney.go.com\/atlantis-milos-return.html","year":2003,"hasFile":true,"youTubeTrailerId":"IXIQlVsTaYw","studio":"Disney Television Animation","path":"\/movies\/Atlantis Milo's Return (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Atlantis Milo's Return (2003)","runtime":70,"cleanTitle":"atlantismilosreturn","imdbId":"tt0344864","tmdbId":8965,"titleSlug":"8965","certification":"G","genres":["Fantasy","Animation","Science Fiction"],"tags":[],"added":"2019-08-11T21:23:07Z","ratings":{"votes":1684,"value":6.2},"movieFile":{"movieId":503,"relativePath":"Atlantis Milo's Return.2003-Bluray-1080p.mp4","path":"\/movies\/Atlantis Milo's Return (2003)\/Atlantis Milo's Return.2003-Bluray-1080p.mp4","size":1645621584,"dateAdded":"2019-08-11T21:26:01Z","sceneName":"Atlantis.Milos.Return.2003.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1824x1080","runTime":"1:20:24","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":583},"collection":{"name":"Atlantis Collection","tmdbId":100965,"images":[]},"id":503},{"title":"Atlantis: The Lost Empire","originalTitle":"Atlantis: The Lost Empire","alternateTitles":[{"sourceType":"tmdb","movieId":504,"title":"Atlantida: Izgubenata imperiya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3358},{"sourceType":"tmdb","movieId":504,"title":"Atlantis 1 - L' Impero Perduto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3361},{"sourceType":"tmdb","movieId":504,"title":"Disney Klassiker 40 - Atlantis - En forsvunnet verden","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3362},{"sourceType":"tmdb","movieId":504,"title":"Atlantida: Izgubljeno carstvo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3363},{"sourceType":"tmdb","movieId":504,"title":"Atlantida: Zateryannyy mir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3364},{"sourceType":"tmdb","movieId":504,"title":"Atlantyda. Zahublena imperiya","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3365},{"sourceType":"tmdb","movieId":504,"title":"Atl\u00e2ntida - O Reino Perdido","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5596},{"sourceType":"tmdb","movieId":504,"title":"I Hameni Atlantida","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5723}],"secondaryYearSourceId":0,"sortTitle":"atlantis lost empire","sizeOnDisk":4694244408,"status":"released","overview":"The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea. The underwater expedition takes an unexpected turn when the team's mission must switch from exploring Atlantis to protecting it.","inCinemas":"2001-06-02T00:00:00Z","physicalRelease":"2002-03-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/504\/poster.jpg?lastWrite=637647399358083527","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8fUEFPUTF7kBMuKPiSQHxPvd8EZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/504\/fanart.jpg?lastWrite=637647399360323490","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fYr0fqT9NImOuaN1QgnDHgGh4Ci.jpg"}],"website":"http:\/\/www.disney.com\/atlantis","year":2001,"hasFile":true,"youTubeTrailerId":"zjy81Ja6Zes","studio":"Walt Disney Animation Studios","path":"\/movies\/Atlantis The Lost Empire (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Atlantis The Lost Empire (2001)","runtime":95,"cleanTitle":"atlantislostempire","imdbId":"tt0230011","tmdbId":10865,"titleSlug":"10865","certification":"PG","genres":["Animation","Family","Adventure"],"tags":[],"added":"2019-08-11T21:23:08Z","ratings":{"votes":3627,"value":6.9},"movieFile":{"movieId":504,"relativePath":"Atlantis The Lost Empire.2001-Bluray-1080p.mkv","path":"\/movies\/Atlantis The Lost Empire (2001)\/Atlantis The Lost Empire.2001-Bluray-1080p.mkv","size":4694244408,"dateAdded":"2019-08-11T21:29:01Z","sceneName":"Atlantis.The.Lost.Empire.2001.1080p.BluRay.X264-AMIABLE","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":5025000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:35:43","scanType":"Progressive","subtitles":"English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":584},"collection":{"name":"Atlantis Collection","tmdbId":100965,"images":[]},"id":504},{"title":"Spaceballs: The Documentary","originalTitle":"Spaceballs: The Documentary","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"spaceballs documentary","sizeOnDisk":0,"status":"released","overview":"The cast and crew of Spaceballs looks back at the making of the movie in this documentary produced for the special features on Spaceballs: The Special Edition DVD.","inCinemas":"2005-05-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/505\/poster.jpg?lastWrite=637610205734360916","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/pjcNOi9frxmWcnkcVLDJJvVxYn9.jpg"}],"website":"","year":2005,"hasFile":false,"youTubeTrailerId":"","studio":"Wholly Cow Productions","path":"\/movies\/Spaceballs The Documentary (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Spaceballs The Documentary (2005)","runtime":30,"cleanTitle":"spaceballsdocumentary","imdbId":"tt0773771","tmdbId":56297,"titleSlug":"56297","genres":["Documentary"],"tags":[],"added":"2019-08-11T21:41:11Z","ratings":{"votes":4,"value":6},"id":505},{"title":"Captain Phillips","originalTitle":"Captain Phillips","alternateTitles":[{"sourceType":"tmdb","movieId":506,"title":"A Captain's Duty","sourceId":109424,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1062},{"sourceType":"tmdb","movieId":506,"title":"Maersk Alabama","sourceId":109424,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1063},{"sourceType":"tmdb","movieId":506,"title":"\u83f2\u5229\u666e\u65af\u8239\u957f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2718},{"sourceType":"tmdb","movieId":506,"title":"Capit\u00e3o Phillips","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5413}],"secondaryYearSourceId":0,"sortTitle":"captain phillips","sizeOnDisk":10562129389,"status":"released","overview":"The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.","inCinemas":"2013-10-10T00:00:00Z","physicalRelease":"2013-12-16T00:00:00Z","digitalRelease":"2016-03-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/506\/poster.jpg?lastWrite=637640479269636048","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2x8ida0rHokUv80Ah4eBNb2eXas.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/506\/fanart.jpg?lastWrite=637640479270996025","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ihdFypo7MyfJvDSjK7Sbnsjhu8H.jpg"}],"website":"http:\/\/www.captainphillipsmovie.com","year":2013,"hasFile":true,"youTubeTrailerId":"TzU3UJuV80w","studio":"Columbia Pictures","path":"\/movies\/Captain Phillips (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Captain Phillips (2013)","runtime":134,"cleanTitle":"captainphillips","imdbId":"tt1535109","tmdbId":109424,"titleSlug":"109424","certification":"PG-13","genres":["Action","Drama","Thriller"],"tags":[],"added":"2019-08-13T06:28:43Z","ratings":{"votes":5382,"value":7.6},"movieFile":{"movieId":506,"relativePath":"Captain Phillips.2013-Bluray-1080p.mkv","path":"\/movies\/Captain Phillips (2013)\/Captain Phillips.2013-Bluray-1080p.mkv","size":10562129389,"dateAdded":"2019-08-13T06:38:50Z","sceneName":"Captain.Phillips.2013.1080p.BluRay.X264-AMIABLE","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8997000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:14:03","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":585},"id":506},{"title":"The City of Lost Children","originalTitle":"La Cit\u00e9 des Enfants Perdus","alternateTitles":[{"sourceType":"tmdb","movieId":507,"title":"La ciutat dels nens Perduts","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3987},{"sourceType":"tmdb","movieId":507,"title":"Ladr\u00e3o de Sonhos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3988},{"sourceType":"tmdb","movieId":507,"title":"\u60ca\u5f02\u72c2\u60f3\u66f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3989},{"sourceType":"tmdb","movieId":507,"title":"De fortabte b\u00f8rns by","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3990},{"sourceType":"tmdb","movieId":507,"title":"La ciudad de los ni\u00f1os perdidos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":3991},{"sourceType":"tmdb","movieId":507,"title":"La cit\u00e9 des enfants perdus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3992},{"sourceType":"tmdb","movieId":507,"title":"La citt\u00e0 dei bambini perduti","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":3993}],"secondaryYearSourceId":0,"sortTitle":"city lost children","sizeOnDisk":9388196873,"status":"released","overview":"A scientist in a surrealist society kidnaps children to steal their dreams, hoping that they slow his aging process.","inCinemas":"1995-08-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/507\/poster.jpg?lastWrite=637561774104349318","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/whwT3Q9JxbAYzEc3t7uYYcCbTMf.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/507\/fanart.jpg?lastWrite=637624046255788953","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yDjsUoEANHggKFabkAyTu3Y9j4N.jpg"}],"website":"","year":1995,"hasFile":true,"youTubeTrailerId":"F-F3Fz6DadE","studio":"Victoires Productions","path":"\/movies\/The City of Lost Children (1995)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The City of Lost Children (1995)","runtime":108,"cleanTitle":"thecitylostchildren","imdbId":"tt0112682","tmdbId":902,"titleSlug":"902","genres":["Fantasy","Science Fiction","Adventure"],"tags":[],"added":"2019-08-13T16:38:52Z","ratings":{"votes":728,"value":7.4},"movieFile":{"movieId":507,"relativePath":"The City of Lost Children.1995-Bluray-1080p.mkv","path":"\/movies\/The City of Lost Children (1995)\/The City of Lost Children.1995-Bluray-1080p.mkv","size":9388196873,"dateAdded":"2019-08-15T18:20:47Z","sceneName":"The.City.of.Lost.Children.1995.1080p.BluRay.x264-NODLABS","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"French","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9610000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:52:34","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"nodlabs","edition":"","id":586},"id":507},{"title":"Magellan","originalTitle":"Magellan","alternateTitles":[{"sourceType":"tmdb","movieId":508,"title":"Messenger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3773},{"sourceType":"tmdb","movieId":508,"title":"\ub9c8\uc824\ub780","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5721}],"secondaryYearSourceId":0,"sortTitle":"magellan","sizeOnDisk":2072929944,"status":"released","overview":"After NASA picks up a trio of mysterious signals from within our own solar system, astronaut Roger Nelson is dispatched on a multi-year solo mission aboard the Magellan spacecraft to investigate the sources.","physicalRelease":"2017-11-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/508\/poster.jpg?lastWrite=637630965269312148","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dtdhkxH8JVwauuGBxkt4YLA0wJf.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/508\/fanart.jpg?lastWrite=637630965270712124","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mRvyTpWRkaNqC2q5Tkyr9UVlYKE.jpg"}],"website":"","year":2017,"hasFile":true,"youTubeTrailerId":"gLnXdzFx7v8","studio":"Arrowstorm Entertainment","path":"\/movies\/Magellan (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Magellan (2017)","runtime":103,"cleanTitle":"magellan","imdbId":"tt5361488","tmdbId":406240,"titleSlug":"406240","genres":["Thriller","Mystery","Science Fiction"],"tags":[],"added":"2019-08-25T10:19:29Z","ratings":{"votes":29,"value":5},"movieFile":{"movieId":508,"relativePath":"Magellan.2017-Bluray-1080p.mp4","path":"\/movies\/Magellan (2017)\/Magellan.2017-Bluray-1080p.mp4","size":2072929944,"dateAdded":"2019-08-25T10:58:00Z","sceneName":"Magellan.2017.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224001,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:41:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":595},"id":508},{"title":"Geostorm","originalTitle":"Geostorm","alternateTitles":[{"sourceType":"tmdb","movieId":509,"title":"Geo Tormenta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4183},{"sourceType":"tmdb","movieId":509,"title":"Geo-oluja","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4184},{"sourceType":"tmdb","movieId":509,"title":"Geostorm - Glob\u00e1lne nebezpe\u010denstvo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4185}],"secondaryYearSourceId":0,"sortTitle":"geostorm","sizeOnDisk":20309256024,"status":"released","overview":"After an unprecedented series of natural disasters threatened the planet, the world's leaders came together to create an intricate network of satellites to control the global climate and keep everyone safe. But now, something has gone wrong: the system built to protect Earth is attacking it, and it becomes a race against the clock to uncover the real threat before a worldwide geostorm wipes out everything and everyone along with it.","inCinemas":"2017-10-13T00:00:00Z","physicalRelease":"2018-02-14T00:00:00Z","digitalRelease":"2018-01-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/509\/poster.jpg?lastWrite=637653455687567558","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nrsx0jEaBgXq4PWo7SooSnYJTv.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/509\/fanart.jpg?lastWrite=637653455689647526","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/79X8JkGxzc1tJMi0KxUSaPLooVg.jpg"}],"website":"https:\/\/www.warnerbros.com\/geostorm","year":2017,"hasFile":true,"youTubeTrailerId":"EuOlYPSEzSc","studio":"Twisted Media","path":"\/movies\/Geostorm (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Geostorm (2017)","runtime":109,"cleanTitle":"geostorm","imdbId":"tt1981128","tmdbId":274855,"titleSlug":"274855","certification":"PG-13","genres":["Action","Science Fiction","Thriller"],"tags":[],"added":"2019-08-26T15:41:38Z","ratings":{"votes":3662,"value":6.1},"movieFile":{"movieId":509,"relativePath":"Geostorm.2017-Bluray-1080p.mkv","path":"\/movies\/Geostorm (2017)\/Geostorm.2017-Bluray-1080p.mkv","size":20309256024,"dateAdded":"2019-08-30T12:24:21Z","sceneName":"Geostorm.2017.1080p.3D.BluRay.Half-SBS.x264.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3928072,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English \/ French \/ German \/ Italian \/ Spanish \/ Chinese \/ Spanish \/ Portuguese","audioStreamCount":11,"videoBitDepth":8,"videoBitrate":15500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:49:07","scanType":"Progressive","subtitles":"English \/ French \/ German \/ Italian \/ Spanish \/ Chinese \/ Chinese \/ Spanish \/ Portuguese \/ Danish \/ Finnish \/ Greek \/ Icelandic \/ Norwegian \/ Swedish \/ French \/ German \/ Italian \/ Spanish \/ Spanish \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":597},"id":509},{"title":"El Camino: A Breaking Bad Movie","originalTitle":"El Camino: A Breaking Bad Movie","alternateTitles":[{"sourceType":"tmdb","movieId":510,"title":"El Camino","sourceId":559969,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1161},{"sourceType":"tmdb","movieId":510,"title":"\u7edd\u547d\u6bd2\u5e08","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4461},{"sourceType":"tmdb","movieId":510,"title":"El Camino Ein Breaking Bad - Film","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4462},{"sourceType":"tmdb","movieId":510,"title":"El Camino : Un film Breaking Bad","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4463},{"sourceType":"tmdb","movieId":510,"title":"\u041f\u0443\u0442\u044c: \u0412\u043e \u0432\u0441\u0435 \u0442\u044f\u0436\u043a\u0438\u0435. \u0424\u0438\u043b\u044c\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4465},{"sourceType":"tmdb","movieId":510,"title":"\u041f\u0443\u0441\u0442\u0438\u0442\u0438\u0441\u044f \u0431\u0435\u0440\u0435\u0433\u0430: \u0415\u043b\u044c \u041a\u0430\u043c\u0456\u043d\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4466}],"secondaryYearSourceId":0,"sortTitle":"el camino breaking bad movie","sizeOnDisk":26401488065,"status":"released","overview":"In the wake of his dramatic escape from captivity, Jesse Pinkman must come to terms with his past in order to forge some kind of future.","inCinemas":"2019-10-11T00:00:00Z","physicalRelease":"2020-10-13T00:00:00Z","digitalRelease":"2019-10-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/510\/poster.jpg?lastWrite=637623181503771174","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ePXuKdXZuJx8hHMNr2yM4jY2L7Z.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/510\/fanart.jpg?lastWrite=637627505698912288","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9igMXvlUR1zrahnQdiXAg3dtaTb.jpg"}],"website":"https:\/\/www.netflix.com\/title\/81078819","year":2019,"hasFile":true,"youTubeTrailerId":"1JLUn2DFW4w","studio":"Sony Pictures Television Studios","path":"\/movies\/El Camino A Breaking Bad Movie (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/El Camino A Breaking Bad Movie (2019)","runtime":123,"cleanTitle":"elcaminobreakingbadmovie","imdbId":"tt9243946","tmdbId":559969,"titleSlug":"559969","certification":"R","genres":["Crime","Drama","Thriller"],"tags":[],"added":"2019-08-28T10:13:57Z","ratings":{"votes":3388,"value":6.9},"movieFile":{"movieId":510,"relativePath":"El Camino A Breaking Bad Movie.2019-Remux-1080p.mkv","path":"\/movies\/El Camino A Breaking Bad Movie (2019)\/El Camino A Breaking Bad Movie.2019-Remux-1080p.mkv","size":26401488065,"dateAdded":"2020-10-13T18:48:55Z","sceneName":"El.Camino.A.Breaking.Bad.Movie.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2130474,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ English \/ English","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":22872025,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:02:18","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ English \/ Arabic \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ French \/ Korean \/ Norwegian \/ Spanish \/ Swedish \/ Thai \/ English \/ Chinese \/ Dutch \/ French \/ Korean \/ Spanish \/ Thai \/ English \/ Chinese \/ D"},"originalFilePath":"El.Camino.A.Breaking.Bad.Movie.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT\/El.Camino.A.Breaking.Bad.Movie.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":700},"id":510},{"title":"Circle","originalTitle":"Circle","alternateTitles":[{"sourceType":"tmdb","movieId":511,"title":"\u041a\u0440\u0443\u0433","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5414},{"sourceType":"tmdb","movieId":511,"title":"Kring","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":5415}],"secondaryYearSourceId":0,"sortTitle":"circle","sizeOnDisk":1243060393,"status":"released","overview":"In a massive, mysterious chamber, fifty strangers awaken to find themselves trapped with no memory of how they got there. Organized in an inward-facing circle and unable to move, they quickly learn that every two minutes, one of them must die... executed by a strange device in the center of the room.","digitalRelease":"2015-10-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/511\/poster.jpg?lastWrite=637443448537997428","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hbIL53MdZFJXsgxXaSOVuApWTs8.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/511\/fanart.jpg?lastWrite=637643939280249546","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/njEZ071F99BPSotJdWL0SBFmK2b.jpg"}],"website":"http:\/\/www.whatisthecircle.com","year":2015,"hasFile":true,"youTubeTrailerId":"JAlpm2oRzy8","studio":"Votiv Films","path":"\/movies\/Circle (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Circle (2015)","runtime":87,"cleanTitle":"circle","imdbId":"tt3118452","tmdbId":335866,"titleSlug":"335866","genres":["Science Fiction","Mystery","Drama"],"tags":[],"added":"2019-09-03T16:21:36Z","ratings":{"votes":1421,"value":6.1},"movieFile":{"movieId":511,"relativePath":"Circle.2015-WEBDL-1080p.mkv","path":"\/movies\/Circle (2015)\/Circle.2015-WEBDL-1080p.mkv","size":1243060393,"dateAdded":"2019-09-03T19:01:24Z","sceneName":"Circle.2015.1080p.NF.WEBRip.DD5.1.x264-SiGMA","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1540000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:26:28","scanType":"Progressive","subtitles":"English \/ Spanish \/ French \/ Chinese \/ Chinese"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SiGMA","edition":"","id":603},"id":511},{"title":"Master and Commander: The Far Side of the World","originalTitle":"Master and Commander: The Far Side of the World","alternateTitles":[{"sourceType":"tmdb","movieId":512,"title":"Master and Commander","sourceId":8619,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1084},{"sourceType":"tmdb","movieId":512,"title":"Capit\u00e1n de mar y guerra: La costa m\u00e1s lejana del mundo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3285},{"sourceType":"tmdb","movieId":512,"title":"Gospodar i komandir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3286},{"sourceType":"tmdb","movieId":512,"title":"Ma\u00eetre \u00e0 bord : De l'autre c\u00f4t\u00e9 du monde","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3287},{"sourceType":"tmdb","movieId":512,"title":"Master And Commander: Sta P\u00e9rata Tou K\u00f3smou","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3288},{"sourceType":"tmdb","movieId":512,"title":"Master and Commander: La capatul Pamantului","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3289},{"sourceType":"tmdb","movieId":512,"title":"Gospodar i vojskovo\u0111a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3290},{"sourceType":"tmdb","movieId":512,"title":"Khozyain morey: Na krayu Zemli","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3291},{"sourceType":"tmdb","movieId":512,"title":"Master & Commander: Odvr\u00e1ten\u00e1 strana sveta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3292},{"sourceType":"tmdb","movieId":512,"title":"\u6012\u6d77\u722d\u92d2\uff1a\u6975\u5730\u5f81\u4f10","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3293},{"sourceType":"tmdb","movieId":512,"title":"Volodar moriv: Na krayu svitu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3294}],"secondaryYearSourceId":0,"sortTitle":"master commander far side world","sizeOnDisk":1935130973,"status":"released","overview":"After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.","inCinemas":"2003-11-14T00:00:00Z","physicalRelease":"2007-07-30T00:00:00Z","digitalRelease":"2006-12-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/512\/poster.jpg?lastWrite=637643939543485640","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/s1cVTQEZYn4nSjZLnFbzLP0j8y2.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/512\/fanart.jpg?lastWrite=637630100348182523","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/m11Mej9vbQqcXWgYrgPboCJ9NUh.jpg"}],"website":"http:\/\/www.masterandcommanderthefarsideoftheworld.com\/","year":2003,"hasFile":true,"youTubeTrailerId":"JnBiyOKkop4","studio":"Universal Pictures","path":"\/movies\/Master and Commander The Far Side of the World (2003)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Master and Commander The Far Side of the World (2003)","runtime":138,"cleanTitle":"mastercommanderfarsideworld","imdbId":"tt0311113","tmdbId":8619,"titleSlug":"8619","certification":"PG-13","genres":["Adventure","Drama","War"],"tags":[],"added":"2019-09-03T16:23:13Z","ratings":{"votes":2260,"value":7.1},"movieFile":{"movieId":512,"relativePath":"Master and Commander The Far Side of the World.2003-Bluray-1080p.mp4","path":"\/movies\/Master and Commander The Far Side of the World (2003)\/Master and Commander The Far Side of the World.2003-Bluray-1080p.mp4","size":1935130973,"dateAdded":"2019-09-03T16:30:52Z","sceneName":"Master and Commander The Far Side of the World (2003) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":96000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1767000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"2:18:20","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":602},"id":512},{"title":"Airplane!","originalTitle":"Airplane!","alternateTitles":[{"sourceType":"tmdb","movieId":513,"title":"Flying High","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4488},{"sourceType":"tmdb","movieId":513,"title":"Apertem os Cintos, o Piloto Sumiu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4489},{"sourceType":"tmdb","movieId":513,"title":"Titta vi flyger","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5433},{"sourceType":"tmdb","movieId":513,"title":"L'aereo pi\u00f9 pazzo del mondo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":6149}],"secondaryYearSourceId":0,"sortTitle":"airplane","sizeOnDisk":1550497325,"status":"released","overview":"The persons and events in this film are fictitious - fortunately! A masterpiece of off-the-wall comedy, Airplane! features Robert Hays as an ex-fighter pilot forced to take over the controls of an airliner when the flight crew succumbs to food poisoning; Julie Hagerty as his girlfriend\/stewardess\/co-pilot; and a cast of all-stars including Robert Stack, Lloyd Bridges, Peter Graves, Leslie Nielsen, Kareem Abdul-Jabbar... and more. Their hilarious high jinks spoof airplane disaster flicks, religious zealots, television commercials, romantic love... the list whirls by in rapid succession. And the story races from one moment of zany fun to the next.","inCinemas":"1980-07-02T00:00:00Z","physicalRelease":"2001-02-21T00:00:00Z","digitalRelease":"2003-01-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/513\/poster.jpg?lastWrite=637571288113641524","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7Q3efxd3AF1vQjlSxnlerSA7RzN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/513\/fanart.jpg?lastWrite=637640479135958294","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rpp7XSFsFgaslZB5IqDDdZB9CjR.jpg"}],"website":"","year":1980,"hasFile":true,"youTubeTrailerId":"si3E43eaRac","studio":"Paramount","path":"\/movies\/Airplane! (1980)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Airplane! (1980)","runtime":88,"cleanTitle":"airplane","imdbId":"tt0080339","tmdbId":813,"titleSlug":"813","certification":"PG","genres":["Comedy"],"tags":[],"added":"2019-09-04T02:27:28Z","ratings":{"votes":3232,"value":7.3},"movieFile":{"movieId":513,"relativePath":"Airplane!.1980-Bluray-1080p.mp4","path":"\/movies\/Airplane! (1980)\/Airplane!.1980-Bluray-1080p.mp4","size":1550497325,"dateAdded":"2019-09-04T02:30:34Z","sceneName":"Airplane! 1980 1080p BluRay x264 AC3 - Ozlem","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":96000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2259000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:27:42","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":604},"collection":{"name":"Airplane Collection","tmdbId":91663,"images":[]},"id":513},{"title":"Airplane II: The Sequel","originalTitle":"Airplane II: The Sequel","alternateTitles":[{"sourceType":"tmdb","movieId":514,"title":"Airplane 2 - The Sequel","sourceId":2665,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1087},{"sourceType":"tmdb","movieId":514,"title":"Flying High II: The Sequel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4065},{"sourceType":"tmdb","movieId":514,"title":"Apertem os Cintos, o Piloto Sumiu! - 2\u00aa Parte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4066},{"sourceType":"tmdb","movieId":514,"title":"Airplane 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4067},{"sourceType":"tmdb","movieId":514,"title":"P\u0159ipoutejte se, pros\u00edm! 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4068},{"sourceType":"tmdb","movieId":514,"title":"\uc5d0\uc5b4\ud50c\ub808\uc778 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4069},{"sourceType":"tmdb","movieId":514,"title":"Y Donde esta el Piloto 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4070}],"secondaryYearSourceId":0,"sortTitle":"airplane ii sequel","sizeOnDisk":1725263169,"status":"released","overview":"A faulty computer causes a passenger space shuttle to head straight for the sun, and man-with-a-past, Ted Striker must save the day and get the shuttle back on track \u2013 again \u2013 all the while trying to patch up his relationship with Elaine.","inCinemas":"1982-12-10T00:00:00Z","physicalRelease":"2003-12-16T00:00:00Z","digitalRelease":"2004-01-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/514\/poster.jpg?lastWrite=637590315701018259","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5nBnmNmmBCsdkB2uxPMcm1nfrnc.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/514\/fanart.jpg?lastWrite=637643073957892113","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ewgGh87IChocoCf4Auj8AeWKz8y.jpg"}],"website":"","year":1982,"hasFile":true,"youTubeTrailerId":"-O42Vu_GnSc","studio":"Paramount","path":"\/movies\/Airplane II The Sequel (1982)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Airplane II The Sequel (1982)","runtime":85,"cleanTitle":"airplaneiisequel","imdbId":"tt0083530","tmdbId":2665,"titleSlug":"2665","certification":"PG","genres":["Comedy"],"tags":[],"added":"2019-09-04T02:27:30Z","ratings":{"votes":725,"value":6.1},"movieFile":{"movieId":514,"relativePath":"Airplane II The Sequel.1982-Bluray-1080p.mp4","path":"\/movies\/Airplane II The Sequel (1982)\/Airplane II The Sequel.1982-Bluray-1080p.mp4","size":1725263169,"dateAdded":"2019-09-04T02:33:34Z","sceneName":"Airplane.II.The.Sequel.1982.1080p.BluRay.H264.AAC-RARBG","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223998,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:24:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":605},"collection":{"name":"Airplane Collection","tmdbId":91663,"images":[]},"id":514},{"title":"RED","originalTitle":"RED","alternateTitles":[{"sourceType":"tmdb","movieId":515,"title":"RED: Retired, Extremely Dangerous","sourceId":39514,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1107},{"sourceType":"tmdb","movieId":515,"title":"\ub808\ub4dc - \uc544\uc8fc \uc704\ud5d8\ud55c \uc740\ud1f4\uc790\ub4e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4191},{"sourceType":"tmdb","movieId":515,"title":"\ub808\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5187},{"sourceType":"tmdb","movieId":515,"title":"RED 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6027}],"secondaryYearSourceId":0,"sortTitle":"red","sizeOnDisk":1921842002,"status":"released","overview":"When his peaceful life is threatened by a high-tech assassin, former black-ops agent, Frank Moses reassembles his old team in a last ditch effort to survive and uncover his assailants.","inCinemas":"2010-10-13T00:00:00Z","physicalRelease":"2011-01-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/515\/poster.jpg?lastWrite=637654321385597855","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jKntKE55uQTk38NwvkOMbxclBUT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/515\/fanart.jpg?lastWrite=637654321387437824","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/omUvDkT8IYJPYuiENmFvNiGtIXE.jpg"}],"website":"","year":2010,"hasFile":true,"youTubeTrailerId":"-JZ_moituIo","studio":"Summit Entertainment","path":"\/movies\/RED (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/RED (2010)","runtime":111,"cleanTitle":"red","imdbId":"tt1245526","tmdbId":39514,"titleSlug":"39514","certification":"PG-13","genres":["Action","Adventure","Comedy"],"tags":[],"added":"2019-09-07T19:16:16Z","ratings":{"votes":5384,"value":6.7},"movieFile":{"movieId":515,"relativePath":"RED.2010-Bluray-1080p.mkv","path":"\/movies\/RED (2010)\/RED.2010-Bluray-1080p.mkv","size":1921842002,"dateAdded":"2019-10-31T15:22:19Z","sceneName":"RED (2010) 1080p BluRay Dual Audio [Hindi+English]SeedUpMovies","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":128000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"Hindi \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2049235,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x800","runTime":"1:51:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":629},"collection":{"name":"RED Collection","tmdbId":163902,"images":[]},"id":515},{"title":"RED 2","originalTitle":"RED 2","alternateTitles":[{"sourceType":"tmdb","movieId":516,"title":"RED 2: Retired, Extremely Dangerous","sourceId":146216,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1110},{"sourceType":"tmdb","movieId":516,"title":"Red II","sourceId":146216,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1111},{"sourceType":"tmdb","movieId":516,"title":"RED 2 - Noch Aelter Haerter Besser","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3432},{"sourceType":"tmdb","movieId":516,"title":"RED \u30ea\u30bf\u30fc\u30f3\u30ba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3433},{"sourceType":"tmdb","movieId":516,"title":"RED: The Legend","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3434},{"sourceType":"tmdb","movieId":516,"title":"\u8d85\u5371\u96aa\u7279\u5de5 2\uff1a\u72e0\u6230","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3435},{"sourceType":"tmdb","movieId":516,"title":"\ub808\ub4dc: \ub354 \ub808\uc804\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5188}],"secondaryYearSourceId":0,"sortTitle":"red 2","sizeOnDisk":1607672937,"status":"released","overview":"Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.","inCinemas":"2013-07-18T00:00:00Z","physicalRelease":"2013-12-18T00:00:00Z","digitalRelease":"2015-09-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/516\/poster.jpg?lastWrite=637425288968252663","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jW7bHZgkHKUtUJCsThFuqbZGVUL.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/516\/fanart.jpg?lastWrite=637648265044238455","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lUhXMHnHjUmn0xQT6xX57yEjvSk.jpg"}],"website":"http:\/\/red-themovie.com\/","year":2013,"hasFile":true,"youTubeTrailerId":"56vPzBENK9Y","studio":"Di Bonaventura Pictures","path":"\/movies\/RED 2 (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/RED 2 (2013)","runtime":116,"cleanTitle":"red2","imdbId":"tt1821694","tmdbId":146216,"titleSlug":"146216","certification":"PG-13","genres":["Action","Comedy","Crime"],"tags":[],"added":"2019-09-07T19:16:21Z","ratings":{"votes":3202,"value":6.5},"movieFile":{"movieId":516,"relativePath":"RED 2.2013-Bluray-1080p.mkv","path":"\/movies\/RED 2 (2013)\/RED 2.2013-Bluray-1080p.mkv","size":1607672937,"dateAdded":"2019-10-31T02:33:05Z","sceneName":"RED 2 (2013) 1080p BluRay Dual Audio [Hindi+English]SeedUpMovies","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":160772,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"Hindi \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1526375,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x800","runTime":"1:55:49","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":626},"collection":{"name":"RED Collection","tmdbId":163902,"images":[]},"id":516},{"title":"Memento","originalTitle":"Memento","alternateTitles":[{"sourceType":"tmdb","movieId":517,"title":"\u041f\u0430\u043c'\u044f\u0442\u0430\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3299}],"secondaryYearSourceId":0,"sortTitle":"memento","sizeOnDisk":1856174292,"status":"released","overview":"Leonard Shelby is tracking down the man who raped and murdered his wife. The difficulty of locating his wife's killer, however, is compounded by the fact that he suffers from a rare, untreatable form of short-term memory loss. Although he can recall details of life before his accident, Leonard cannot remember what happened fifteen minutes ago, where he's going, or why.","inCinemas":"2000-10-11T00:00:00Z","physicalRelease":"2001-09-04T00:00:00Z","digitalRelease":"2003-11-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/517\/poster.jpg?lastWrite=637624911324683526","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yuNs09hvpHVU1cBTCAk9zxsL2oW.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/517\/fanart.jpg?lastWrite=637639614557515670","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/q2CtXYjp9IlnfBcPktNkBPsuAEO.jpg"}],"website":"http:\/\/www.otnemem.com\/","year":2000,"hasFile":true,"youTubeTrailerId":"Rq9eM4ZXRgs","studio":"Summit Entertainment","path":"\/movies\/Memento (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Memento (2001)","runtime":113,"cleanTitle":"memento","imdbId":"tt0209144","tmdbId":77,"titleSlug":"77","certification":"R","genres":["Mystery","Thriller"],"tags":[],"added":"2019-09-08T21:21:22Z","ratings":{"votes":11369,"value":8.2},"movieFile":{"movieId":517,"relativePath":"Memento.2000-Bluray-1080p.mkv","path":"\/movies\/Memento (2001)\/Memento.2000-Bluray-1080p.mkv","size":1856174292,"dateAdded":"2019-09-09T00:06:45Z","sceneName":"Memento (2000) x264 1080p BluRay {Dual Audio} [Hindi DD 2.0 + English 2.0] Exclusive By DREDD","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":192000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"Hindi \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":1922000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:53:27","scanType":"Progressive","subtitles":"English \/ Hindi"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":607},"id":517},{"title":"Modest Heroes","originalTitle":"\u3061\u3044\u3055\u306a\u82f1\u96c4\uff0d\u30ab\u30cb\u3068\u30bf\u30de\u30b4\u3068\u900f\u660e\u4eba\u9593\uff0d","alternateTitles":[{"sourceType":"tmdb","movieId":518,"title":"Modest Heroes: Ponoc Short Films Theatre, Volume 1","sourceId":514710,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1120},{"sourceType":"tmdb","movieId":518,"title":"Invisible","sourceId":514710,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1122},{"sourceType":"tmdb","movieId":518,"title":"Life Ain't Gonna Lose","sourceId":514710,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1123},{"sourceType":"tmdb","movieId":518,"title":"Kanini & Kanino","sourceId":514710,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1124},{"sourceType":"tmdb","movieId":518,"title":"Ponoc Short Films Theatre, Volume 1","sourceId":514710,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1125},{"sourceType":"tmdb","movieId":518,"title":"Heros modestes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4469},{"sourceType":"tmdb","movieId":518,"title":"Les petits h\u00e9ros : les crabes et les oeufs et l'homme invisible","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4470},{"sourceType":"tmdb","movieId":518,"title":"Modest Heroes: Ponoc Short Films Theatre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4471},{"sourceType":"tmdb","movieId":518,"title":"Eroi modesti: Ponoc Short Films Theatre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4472},{"sourceType":"tmdb","movieId":518,"title":"Chiisana Eiyuu: Kani to Tamago to Toumei Ningen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4473},{"sourceType":"tmdb","movieId":518,"title":"Ponoc Short Films Theatre: Volume 1 - Modest Heroes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4474},{"sourceType":"tmdb","movieId":518,"title":"Ponoc Tanpen Gekij\u014d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4475},{"sourceType":"tmdb","movieId":518,"title":"Ponokku tanpen gekij\u00f4: Chiisana eiy\u00fb - Kani to tamago to t\u00f4mei ningen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4476},{"sourceType":"tmdb","movieId":518,"title":"\u30dd\u30ce\u30c3\u30af\u77ed\u7de8\u5287\u5834\u3000\u3061\u3044\u3055\u306a\u82f1\u96c4 \u2015\u30ab\u30cb\u3068\u30bf\u30de\u30b4\u3068\u900f\u660e\u4eba\u9593\u2015","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4477},{"sourceType":"tmdb","movieId":518,"title":"\uc791\uc740 \uc601\uc6c5 \uac8c\uc640 \ub2ec\uac40\uacfc \ud22c\uba85\uc778\uac04","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4478},{"sourceType":"tmdb","movieId":518,"title":"\u8b19\u865b\u7684\u82f1\u96c4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4653}],"secondaryYearSourceId":0,"sortTitle":"modest heroes","sizeOnDisk":921276509,"status":"released","overview":"Two tiny, aquatic humanoids search for their missing father, a boy battles a lethal allergy to eggs, and an invisible salaryman tries to become a hero.","inCinemas":"2018-08-24T00:00:00Z","physicalRelease":"2019-03-20T00:00:00Z","digitalRelease":"2019-09-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/518\/poster.jpg?lastWrite=637653456252758654","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5jURYLaG6BX0klRHsiHc3pzOlOm.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/518\/fanart.jpg?lastWrite=637625776177120692","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/doZDR89j4qSiVmkOioVvAXvLu91.jpg"}],"website":"https:\/\/gkids.com\/films\/modest-heroes-ponoc-short-films-theatre-vol-1\/","year":2018,"hasFile":true,"youTubeTrailerId":"t8AKha9oajs","studio":"Toho Co.","path":"\/movies\/Modest Heroes (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Modest Heroes (2018)","runtime":54,"cleanTitle":"modestheroes","imdbId":"tt8223844","tmdbId":514710,"titleSlug":"514710","certification":"PG","genres":["Animation","Fantasy","Adventure"],"tags":[],"added":"2019-09-08T21:54:14Z","ratings":{"votes":100,"value":6.8},"movieFile":{"movieId":518,"relativePath":"Modest Heroes.2018-Bluray-1080p.mp4","path":"\/movies\/Modest Heroes (2018)\/Modest Heroes.2018-Bluray-1080p.mp4","size":921276509,"dateAdded":"2019-09-08T22:06:25Z","sceneName":"Modest Heroes (2018) [BluRay] [1080p] [YTS.AM]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":144000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1024","runTime":"53:28","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":606},"id":518},{"title":"9","originalTitle":"9","alternateTitles":[{"sourceType":"tmdb","movieId":519,"title":"Nummer 9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4517},{"sourceType":"tmdb","movieId":519,"title":"9 Number","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4518},{"sourceType":"tmdb","movieId":519,"title":"\u0414\u0435\u0432\u044f\u0442\u044b\u0439","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4519},{"sourceType":"tmdb","movieId":519,"title":"Nine","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4520}],"secondaryYearSourceId":0,"sortTitle":"9","sizeOnDisk":4695744207,"status":"released","overview":"When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.","inCinemas":"2009-08-19T00:00:00Z","physicalRelease":"2010-01-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/519\/poster.jpg?lastWrite=637646534203360742","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/usfcQZRqdXTSSQ55esiPHJZKkIU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/519\/fanart.jpg?lastWrite=637611935800678111","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hjb0PCPKaRQ7fMy9Uf0iyNf7BRE.jpg"}],"website":"","year":2009,"hasFile":true,"youTubeTrailerId":"_qApXdc1WPY","studio":"Tim Burton Productions","path":"\/movies\/9 (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/9 (2009)","runtime":79,"cleanTitle":"9","imdbId":"tt0472033","tmdbId":12244,"titleSlug":"12244","certification":"PG-13","genres":["Action","Adventure","Animation"],"tags":[],"added":"2019-09-14T15:43:43Z","ratings":{"votes":2686,"value":6.8},"movieFile":{"movieId":519,"relativePath":"9.2009-Bluray-1080p.mkv","path":"\/movies\/9 (2009)\/9.2009-Bluray-1080p.mkv","size":4695744207,"dateAdded":"2019-09-14T19:20:05Z","sceneName":"9.2009.1080p.BluRay.x264-METiS","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509750,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6390000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:19:14","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"A","edition":"","id":610},"id":519},{"title":"The Farthest","originalTitle":"The Farthest","alternateTitles":[{"sourceType":"tmdb","movieId":520,"title":"The Farthest - Voyager in Space","sourceId":436305,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1134},{"sourceType":"tmdb","movieId":520,"title":"KP18: Tolyn \u012f kosmos\u0105","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5141},{"sourceType":"tmdb","movieId":520,"title":"The Farthest - Die Reise der Voyager in die Unendlichkeit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5634}],"secondaryYear":2017,"secondaryYearSourceId":0,"sortTitle":"farthest","sizeOnDisk":8209760299,"status":"released","overview":"The captivating tales of the people and events behind one of humanity's greatest achievements in exploration: NASA's Voyager mission.","inCinemas":"2018-03-15T00:00:00Z","physicalRelease":"2017-11-06T00:00:00Z","digitalRelease":"2017-07-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/520\/poster.jpg?lastWrite=637392434763350133","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jHbSJo4FoKvqaGn3b7q49bcSYVZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/520\/fanart.jpg?lastWrite=637613667614701642","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ynF37QsffZ1b3Xm2ktpb79ioP6R.jpg"}],"website":"http:\/\/www.pbs.org\/the-farthest","year":2018,"hasFile":true,"youTubeTrailerId":"znTdk_de_K8","studio":"Crossing the Line","path":"\/movies\/The Farthest (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Farthest (2017)","runtime":121,"cleanTitle":"thefarthest","imdbId":"tt6223974","tmdbId":436305,"titleSlug":"436305","genres":["Documentary"],"tags":[],"added":"2019-09-21T09:35:30Z","ratings":{"votes":32,"value":7.8},"movieFile":{"movieId":520,"relativePath":"The Farthest.2017-Bluray-1080p.mkv","path":"\/movies\/The Farthest (2017)\/The Farthest.2017-Bluray-1080p.mkv","size":8209760299,"dateAdded":"2019-09-23T06:08:49Z","sceneName":"The.Farthest.2017.LIMITED.1080p.BluRay.x264-CADAVER[EtHD]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9002000,"videoCodec":"x264","videoFps":25.0,"resolution":"1920x808","runTime":"1:55:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"cadaver","edition":"","id":613},"id":520},{"title":"The Matrix Recalibrated","originalTitle":"The Matrix Recalibrated","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"matrix recalibrated","sizeOnDisk":0,"status":"released","overview":"The making of Matrix Revolutions, The (2003) is briefly touched on here in this documentary. Interviews with various cast and crew members inform us how they were affected by the deaths of Gloria Foster and Aaliyah, and also delve into the making of the visual effects that takes up a lot of screen time. Written by Rhyl Donnelly","physicalRelease":"2004-04-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/521\/poster.jpg?lastWrite=637628370842689017","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gRni1Q651AZPnLqZczmahiIxG0s.jpg"}],"website":"","year":2004,"hasFile":false,"youTubeTrailerId":"","studio":"Warner Bros. Pictures","path":"\/movies\/The Matrix Recalibrated (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Matrix Recalibrated (2004)","runtime":27,"cleanTitle":"thematrixrecalibrated","imdbId":"tt0410519","tmdbId":221495,"titleSlug":"221495","certification":"NR","genres":["Documentary","Science Fiction"],"tags":[],"added":"2019-09-28T15:41:30Z","ratings":{"votes":32,"value":6.7},"id":521},{"title":"The Matrix Revisited","originalTitle":"The Matrix Revisited","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"matrix revisited","sizeOnDisk":722582928,"status":"released","overview":"The film goes behind the scenes of the 1999 sci-fi movie The Matrix.","inCinemas":"2001-11-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/522\/poster.jpg?lastWrite=637613667764819324","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fNG2JOskhQnttmAaj2knM5h59Io.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/522\/fanart.jpg?lastWrite=637613667766259302","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lBdXACywnLwKUZmZkZ87djDQBeV.jpg"}],"website":"","year":2001,"hasFile":true,"youTubeTrailerId":"52GlGQkt3NM","studio":"","path":"\/movies\/The Matrix Revisited (2001)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Matrix Revisited (2001)","runtime":123,"cleanTitle":"thematrixrevisited","imdbId":"tt0295432","tmdbId":14543,"titleSlug":"14543","genres":["Documentary"],"tags":[],"added":"2019-09-28T15:41:31Z","ratings":{"votes":142,"value":6.9},"movieFile":{"movieId":522,"relativePath":"The Matrix Revisited.2001-DVD.mkv","path":"\/movies\/The Matrix Revisited (2001)\/The Matrix Revisited.2001-DVD.mkv","size":722582928,"dateAdded":"2019-09-28T15:58:06Z","sceneName":"The.Matrix.Revisited.2001.iNTERNAL.DVDRip.x264-WaLMaRT[rarbg]","indexerFlags":0,"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":0,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"640x480","runTime":"2:03:09","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"revisid","edition":"","id":616},"id":522},{"title":"The Matrix Revolutions Revisited","originalTitle":"The Matrix Revolutions Revisited","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"matrix revolutions revisited","sizeOnDisk":0,"status":"released","overview":"The making of The Matrix Revolutions:\r The cataclysmic final confrontation chronicled through six documentary pods revealing 28 featurettes","physicalRelease":"2004-12-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/523\/poster.jpg?lastWrite=637625776101322510","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/61ASnmqvzpuz9VEfFElo3e2nIft.jpg"}],"website":"","year":2004,"hasFile":false,"youTubeTrailerId":"","studio":"","path":"\/movies\/The Matrix Revolutions Revisited (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Matrix Revolutions Revisited (2004)","runtime":0,"cleanTitle":"thematrixrevolutionsrevisited","imdbId":"tt1830851","tmdbId":503880,"titleSlug":"503880","genres":["Documentary"],"tags":[],"added":"2019-09-28T15:41:48Z","ratings":{"votes":10,"value":8},"id":523},{"title":"The Matrix Reloaded Revisited","originalTitle":"The Matrix Reloaded Revisited","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"matrix reloaded revisited","sizeOnDisk":0,"status":"released","overview":"The making of The Matrix Reloaded: Go to the middle movies furthest reaches via five documentary paths revealing 21 featurettes","physicalRelease":"2004-12-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/524\/poster.jpg?lastWrite=637625776098282583","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gb7C4oRzYWXWCuZMR1cwtHa53Pz.jpg"}],"website":"","year":2004,"hasFile":false,"youTubeTrailerId":"","studio":"","path":"\/movies\/The Matrix Reloaded Revisited (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Matrix Reloaded Revisited (2004)","runtime":0,"cleanTitle":"thematrixreloadedrevisited","imdbId":"tt1830850","tmdbId":591955,"titleSlug":"591955","genres":["Documentary"],"tags":[],"added":"2019-09-28T15:41:51Z","ratings":{"votes":12,"value":7.3},"id":524},{"title":"The Matrix Resurrections","originalTitle":"The Matrix Resurrections","alternateTitles":[{"sourceType":"tmdb","movieId":525,"title":"\u9a87\u5ba2\u4efb\u52a14","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4719},{"sourceType":"tmdb","movieId":525,"title":"\u9a87\u5ba2\u5e1d\u56fd4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4720},{"sourceType":"tmdb","movieId":525,"title":"The Matrix 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5685},{"sourceType":"tmdb","movieId":525,"title":"\u041c\u0430\u0442\u0440\u0438\u0446\u044f 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6173},{"sourceType":"tmdb","movieId":525,"title":"\ub9e4\ud2b8\ub9ad\uc2a4 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6240},{"sourceType":"tmdb","movieId":525,"title":"Matrix 4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6241}],"secondaryYearSourceId":0,"sortTitle":"matrix resurrections","sizeOnDisk":0,"status":"announced","overview":"The fourth installment in The Matrix franchise.","inCinemas":"2021-12-15T00:00:00Z","digitalRelease":"2021-12-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/525\/poster.jpg?lastWrite=637666432339074439","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tOqTTslEfjyvoBoBM4B29aeqntt.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/525\/fanart.jpg?lastWrite=637667297207630940","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qo1IMz3ZzWaX2uFyU18U8OeAtUG.jpg"}],"website":"https:\/\/whatisthematrix.com","year":2021,"hasFile":false,"youTubeTrailerId":"9ix7TUGVYIo","studio":"Warner Bros. Pictures","path":"\/movies\/The Matrix 4 (0)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Matrix 4 (0)","runtime":0,"cleanTitle":"thematrixresurrections","imdbId":"tt10838180","tmdbId":624860,"titleSlug":"624860","genres":["Science Fiction","Action","Adventure"],"tags":[],"added":"2019-09-28T15:41:58Z","ratings":{"votes":0,"value":0},"collection":{"name":"The Matrix Collection","tmdbId":2344,"images":[]},"id":525},{"title":"23","originalTitle":"23","alternateTitles":[{"sourceType":"tmdb","movieId":526,"title":"23 - Nothing is as it Seems","sourceId":1557,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1138},{"sourceType":"tmdb","movieId":526,"title":"23 Nada es lo que parece","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4219},{"sourceType":"tmdb","movieId":526,"title":"23 \u2013 Nichts ist so wie es scheint","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5932}],"secondaryYearSourceId":0,"sortTitle":"23","sizeOnDisk":646797312,"status":"released","overview":"The movie's plot is based on the true story of a group of young computer hackers from Hannover, Germany. In the late 1980s the orphaned Karl Koch invests his heritage in a flat and a home computer. At first he dials up to bulletin boards to discuss conspiracy theories inspired by his favorite novel, R.A. Wilson's \"Illuminatus\", but soon he and his friend David start breaking into government and military computers. Pepe, one of Karl's rather criminal acquaintances senses that there is money in computer cracking - he travels to east Berlin and tries to contact the KGB.","inCinemas":"1998-07-02T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/526\/poster.jpg?lastWrite=637624046155870593","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xyJl0JHLRjdU8ljJuqNSMvbWWAq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/526\/fanart.jpg?lastWrite=637624046157470567","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kh8I52YxIpRzO3IShcqpJBKaGou.jpg"}],"website":"","year":1998,"hasFile":true,"youTubeTrailerId":"YsYD_lmK-KE","studio":"Claussen+W\u00f6bke Filmproduktion","path":"\/movies\/23 (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/23 (1999)","runtime":99,"cleanTitle":"23","imdbId":"tt0126765","tmdbId":1557,"titleSlug":"1557","genres":["Drama","Thriller"],"tags":[],"added":"2019-10-02T16:29:06Z","ratings":{"votes":116,"value":7.1},"movieFile":{"movieId":526,"relativePath":"23.1998-DVD.avi","path":"\/movies\/23 (1999)\/23.1998-DVD.avi","size":646797312,"dateAdded":"2019-10-03T16:43:23Z","sceneName":"23.1998.DVDRip.DivX.GERMAN","indexerFlags":1,"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":128000,"audioChannels":2,"audioCodec":"MP3","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":777054,"videoCodec":"DivX","videoFps":25.0,"resolution":"640x352","runTime":"1:34:44","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"edition":"","id":617},"id":526},{"title":"The KGB, the Computer and Me","originalTitle":"The KGB, the Computer and Me","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"kgb computer me","sizeOnDisk":0,"status":"released","overview":"In 1986, astronomer turned computer scientist Clifford Stoll had just started working on a computer system at the Lawrence Berkeley Laboratory when he noticed a 75-cent discrepancy between the charges printed by two accounting programs responsible for charging people for machine use. Intrigued, he deduced that the system was being hacked, and he determined to find the culprit. This is the re-enactment of how he tracked down KGB cracker Markus Hess through the Ethernet to Hannover, Germany.","inCinemas":"1990-10-03T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/527\/poster.jpg?lastWrite=637241983823886848","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/b73QVUsBRfqxpFWRFLd41Ys7zz8.jpg"}],"website":"","year":1990,"hasFile":false,"youTubeTrailerId":"","studio":"","path":"\/movies\/The KGB, the Computer and Me (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The KGB, the Computer and Me (1990)","runtime":56,"cleanTitle":"thekgbcomputerme","imdbId":"tt0308449","tmdbId":49499,"titleSlug":"49499","genres":["Documentary"],"tags":[],"added":"2019-10-06T18:52:39Z","ratings":{"votes":6,"value":7.8},"id":527},{"title":"The Boondock Saints","originalTitle":"The Boondock Saints","alternateTitles":[{"sourceType":"tmdb","movieId":528,"title":"The Boondock Saints | Unrated Edition","sourceId":8374,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1155},{"sourceType":"tmdb","movieId":528,"title":"The Boondock Saints 1","sourceId":8374,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1156},{"sourceType":"tmdb","movieId":528,"title":"The Boondock Saints - UR","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4222},{"sourceType":"tmdb","movieId":528,"title":"The Boondock Saints I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4223},{"sourceType":"tmdb","movieId":528,"title":"Boondock Saints 1 (Director's Cut)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4224},{"sourceType":"tmdb","movieId":528,"title":"El Quinto Infierno","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4225},{"sourceType":"tmdb","movieId":528,"title":"\u53e6\u7c7b\u5723\u5f92","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4226},{"sourceType":"tmdb","movieId":528,"title":"Los Elegidos (The Boondock Saints)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4229},{"sourceType":"tmdb","movieId":528,"title":"The Boondock Saints - Giustizia Finale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4231},{"sourceType":"tmdb","movieId":528,"title":"O Pr\u00f3ximo a Abater","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4233},{"sourceType":"tmdb","movieId":528,"title":"Svyaty'e Iz Bundoka","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4234},{"sourceType":"tmdb","movieId":528,"title":"\u0421\u0432\u044f\u0442\u044b\u0435 \u0438\u0437 \u0442\u0440\u0443\u0449\u043e\u0431","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4235}],"secondaryYearSourceId":0,"sortTitle":"boondock saints","sizeOnDisk":4838865263,"status":"released","overview":"Tired of the crime overrunning the streets of Boston, Irish Catholic twin brothers Conner and Murphy are inspired by their faith to cleanse their hometown of evil with their own brand of zealous vigilante justice. As they hunt down and kill one notorious gangster after another, they become controversial folk heroes in the community. But Paul Smecker, an eccentric FBI agent, is fast closing in on their blood-soaked trail.","inCinemas":"1999-01-22T00:00:00Z","physicalRelease":"2000-06-15T00:00:00Z","digitalRelease":"2004-02-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/528\/poster.jpg?lastWrite=637592910089428884","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xj3jhyq3ZsfdVn79kXC1XKFVQlv.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/528\/fanart.jpg?lastWrite=637618856658086178","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tIJKAbESEi9eywpVflJpTHukPwR.jpg"}],"website":"http:\/\/www.theboondocksaints.com","year":1999,"hasFile":true,"youTubeTrailerId":"5CKb1XHh3jQ","studio":"Franchise Pictures","path":"\/movies\/The Boondock Saints (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Boondock Saints (1999)","runtime":108,"cleanTitle":"theboondocksaints","imdbId":"tt0144117","tmdbId":8374,"titleSlug":"8374","certification":"R","genres":["Action","Thriller","Crime"],"tags":[],"added":"2019-10-09T16:02:20Z","ratings":{"votes":1754,"value":7.3},"movieFile":{"movieId":528,"relativePath":"The Boondock Saints.1999-Bluray-1080p.mkv","path":"\/movies\/The Boondock Saints (1999)\/The Boondock Saints.1999-Bluray-1080p.mkv","size":4838865263,"dateAdded":"2019-10-09T17:49:25Z","sceneName":"The Boondock Saints (1999) Unrated (1080p BluRay x265 HEVC 10bit AAC 5.1 Tigole)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":5000136,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x814","runTime":"1:56:59","scanType":"","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"Unrated","id":618},"collection":{"name":"The Boondock Saints Collection","tmdbId":87186,"images":[]},"id":528},{"title":"The Boondock Saints II: All Saints Day","originalTitle":"The Boondock Saints II: All Saints Day","alternateTitles":[{"sourceType":"tmdb","movieId":529,"title":"The Boondock Saints 2 All Saints Day","sourceId":22821,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1238},{"sourceType":"tmdb","movieId":529,"title":"El Quinto Infierno 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4456},{"sourceType":"tmdb","movieId":529,"title":"Los elegidos: The Boondock Saints II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4457},{"sourceType":"tmdb","movieId":529,"title":"Les Anges de Boston 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4458},{"sourceType":"tmdb","movieId":529,"title":"O Pr\u00f3ximo a Abater II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4459},{"sourceType":"tmdb","movieId":529,"title":"Svyaty'e Iz Bundoka 2 Den' Vseh Svyaty'h","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4460},{"sourceType":"tmdb","movieId":529,"title":"The Boondock Saints II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5398}],"secondaryYearSourceId":0,"sortTitle":"boondock saints ii all saints day","sizeOnDisk":5803492693,"status":"released","overview":"Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.","inCinemas":"2009-11-24T00:00:00Z","physicalRelease":"2010-04-12T00:00:00Z","digitalRelease":"2015-08-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/529\/poster.jpg?lastWrite=637218631313250912","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/evpmr93ChS31RaCS5ZiNr6qUnMG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/529\/fanart.jpg?lastWrite=637611070220814304","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aktAPIvMHapDdAtqGjFTq4zEYlH.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/boondocksaints2\/","year":2009,"hasFile":true,"youTubeTrailerId":"h93ezXUz_iU","studio":"Stage 6 Films","path":"\/movies\/The Boondock Saints II All Saints Day (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Boondock Saints II All Saints Day (2009)","runtime":118,"cleanTitle":"theboondocksaintsiiallsaintsday","imdbId":"tt1300851","tmdbId":22821,"titleSlug":"22821","certification":"R","genres":["Action","Thriller","Crime"],"tags":[],"added":"2019-10-09T16:02:26Z","ratings":{"votes":543,"value":6},"movieFile":{"movieId":529,"relativePath":"The Boondock Saints II All Saints Day.2009-Bluray-1080p.mkv","path":"\/movies\/The Boondock Saints II All Saints Day (2009)\/The Boondock Saints II All Saints Day.2009-Bluray-1080p.mkv","size":5803492693,"dateAdded":"2019-10-09T21:27:59Z","sceneName":"The Boondock Saints II - All Saints Day (2009) DC (1080p BluRay x265 HEVC 10bit AAC 5.1 Tigole)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":10,"videoBitrate":4999703,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x820","runTime":"2:18:01","scanType":"","subtitles":"English \/ English \/ Chinese \/ French \/ German \/ German \/ German \/ German \/ Indonesian \/ Korean \/ Spanish \/ Spanish \/ Spanish \/ Thai \/ Turkish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":619},"collection":{"name":"The Boondock Saints Collection","tmdbId":87186,"images":[]},"id":529},{"title":"Shaun of the Dead","originalTitle":"Shaun of the Dead","alternateTitles":[{"sourceType":"tmdb","movieId":530,"title":"Muertos de risa","sourceId":747,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1159},{"sourceType":"tmdb","movieId":530,"title":"Todo Mundo Quase Morto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4666},{"sourceType":"tmdb","movieId":530,"title":"Ein Zombie kommt selten allein","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4667},{"sourceType":"tmdb","movieId":530,"title":"Zombies Party","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4668},{"sourceType":"tmdb","movieId":530,"title":"Zombies Party (Una noche... de muerte)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4669},{"sourceType":"tmdb","movieId":530,"title":"Shaun, kuolleiden kunkku","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4670},{"sourceType":"tmdb","movieId":530,"title":"\u7b11\u6b7b\u4eba\u51f6\u9593","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4671},{"sourceType":"tmdb","movieId":530,"title":"L'alba dei morti dementi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":4672},{"sourceType":"tmdb","movieId":530,"title":"\uc0c8\ubcbd\uc758 \ud669\ub2f9\ud55c \uc800\uc8fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4673},{"sourceType":"tmdb","movieId":530,"title":"El desesperar de los muertos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4674},{"sourceType":"tmdb","movieId":530,"title":"Zombie Party - Uma Noite... de Morte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4675},{"sourceType":"tmdb","movieId":530,"title":"\u0417\u043e\u043c\u0431\u0438 \u043f\u043e \u0438\u043c\u0435\u043d\u0438 \u0428\u043e\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4676}],"secondaryYearSourceId":0,"sortTitle":"shaun dead","sizeOnDisk":4697210458,"status":"released","overview":"Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.","inCinemas":"2004-04-09T00:00:00Z","physicalRelease":"2004-12-15T00:00:00Z","digitalRelease":"2007-06-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/530\/poster.jpg?lastWrite=637656916801074185","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/13vOO3DtEG0OYEbgcvVS6XimoIP.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/530\/fanart.jpg?lastWrite=637395028430969221","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4lr2VqOcw9YROMnOWoHtUR9xGxA.jpg"}],"website":"https:\/\/www.focusfeatures.com\/shaun_of_the_dead","year":2004,"hasFile":true,"youTubeTrailerId":"4gQ9oJYLG48","studio":"De Wolfe Music","path":"\/movies\/Shaun of the Dead (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Shaun of the Dead (2004)","runtime":99,"cleanTitle":"shaundead","imdbId":"tt0365748","tmdbId":747,"titleSlug":"747","certification":"R","genres":["Horror","Comedy"],"tags":[],"added":"2019-10-12T16:10:12Z","ratings":{"votes":6384,"value":7.5},"movieFile":{"movieId":530,"relativePath":"Shaun of the Dead.2004-Bluray-1080p.mkv","path":"\/movies\/Shaun of the Dead (2004)\/Shaun of the Dead.2004-Bluray-1080p.mkv","size":4697210458,"dateAdded":"2019-10-12T18:14:03Z","sceneName":"Shaun of the Dead (2004) (1080p BluRay x265 HEVC 10bit AAC 5.1 afm72)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":462642,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English \/ English \/ English \/ English","audioStreamCount":5,"videoBitDepth":10,"videoBitrate":5397039,"videoCodec":"x265","videoFps":23.976,"resolution":"1878x824","runTime":"1:39:20","scanType":"","subtitles":"English \/ English \/ English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":621},"id":530},{"title":"Parasite","originalTitle":"\uae30\uc0dd\ucda9","alternateTitles":[{"sourceType":"tmdb","movieId":531,"title":"\u0544\u0561\u056f\u0561\u0562\u0578\u0582\u0575\u056e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2547},{"sourceType":"tmdb","movieId":531,"title":"Parasite: Par\u00e1sitos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2548},{"sourceType":"tmdb","movieId":531,"title":"Parazitl\u0259r","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2549},{"sourceType":"tmdb","movieId":531,"title":"\u09aa\u09cd\u09af\u09be\u09b0\u09be\u09b8\u09be\u0987\u099f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2550},{"sourceType":"tmdb","movieId":531,"title":"\u041f\u0430\u0440\u0430\u0437\u0456\u0442\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2552},{"sourceType":"tmdb","movieId":531,"title":"Par\u00e0sits","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2555},{"sourceType":"tmdb","movieId":531,"title":"\u4e0a\u6d41\u5bc4\u751f\u65cf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2558},{"sourceType":"tmdb","movieId":531,"title":"\u0637\u0641\u06cc\u0644\u06cc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2560},{"sourceType":"tmdb","movieId":531,"title":"\u092a\u0948\u0930\u093e\u0938\u093e\u0907\u091f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2561},{"sourceType":"tmdb","movieId":531,"title":"\u0b92\u0b9f\u0bcd\u0b9f\u0bc1\u0ba3\u0bcd\u0ba3\u0bbf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2562},{"sourceType":"tmdb","movieId":531,"title":"\u0c2a\u0c3e\u0c30\u0c38\u0c48\u0c1f\u0c4d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2563},{"sourceType":"tmdb","movieId":531,"title":"\u0627\u0646\u06af\u0644","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2564},{"sourceType":"tmdb","movieId":531,"title":"Decalcomania","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2567},{"sourceType":"tmdb","movieId":531,"title":"\ub370\uce7c\ucf54\ub9c8\ub2c8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2569},{"sourceType":"tmdb","movieId":531,"title":"\ud328\ub7ec\uc0ac\uc774\ud2b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2570},{"sourceType":"tmdb","movieId":531,"title":"\u0baa\u0bbe\u0bb0\u0b9a\u0bc8\u0b9f\u0bcd\u0b9f\u0bc1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2572},{"sourceType":"tmdb","movieId":531,"title":"Parazitlar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2583},{"sourceType":"tmdb","movieId":531,"title":"Parasiet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2585},{"sourceType":"tmdb","movieId":531,"title":"Parasite: Black-and-White Edition","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4776},{"sourceType":"tmdb","movieId":531,"title":"Parasita","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5320},{"sourceType":"tmdb","movieId":531,"title":"\uae30\uc0dd\ucda9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5710},{"sourceType":"tmdb","movieId":531,"title":"Gisaengchung","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5792},{"sourceType":"tmdb","movieId":531,"title":"\u5bc4\u751f\u866b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5934}],"secondaryYearSourceId":0,"sortTitle":"parasite","sizeOnDisk":10561671974,"status":"released","overview":"All unemployed, Ki-taek's family takes peculiar interest in the wealthy and glamorous Parks for their livelihood until they get entangled in an unexpected incident.","inCinemas":"2019-05-30T00:00:00Z","physicalRelease":"2020-01-28T00:00:00Z","digitalRelease":"2019-08-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/531\/poster.jpg?lastWrite=637659512438995463","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7IiTTgloJzvGI1TAYymCfbfl3vT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/531\/fanart.jpg?lastWrite=637663837194587622","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/TU9NIjwzjoKPwQHoHshkFcQUCG.jpg"}],"website":"https:\/\/www.parasite-movie.com\/","year":2019,"hasFile":true,"youTubeTrailerId":"PhPROyE0OaM","studio":"Barunson E&A","path":"\/movies\/Parasite (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Parasite (2019)","runtime":133,"cleanTitle":"parasite","imdbId":"tt6751668","tmdbId":496243,"titleSlug":"496243","certification":"R","genres":["Comedy","Thriller","Drama"],"tags":[],"added":"2019-10-12T21:05:48Z","ratings":{"votes":12047,"value":8.5},"movieFile":{"movieId":531,"relativePath":"Parasite.2019-Bluray-1080p.mkv","path":"\/movies\/Parasite (2019)\/Parasite.2019-Bluray-1080p.mkv","size":10561671974,"dateAdded":"2019-11-29T15:26:09Z","sceneName":"Parasite.2019.MULTi.1080p.BluRay.x264-LOST[EtHD]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":6,"audioCodec":"DTS","audioLanguages":"French \/ kr ","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8518000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"2:12:00","scanType":"Progressive","subtitles":"French \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"lost","edition":"","id":637},"id":531},{"title":"Alice in Wonderland","originalTitle":"Alice in Wonderland","alternateTitles":[{"sourceType":"tmdb","movieId":532,"title":"Disney's Alice in Wonderland","sourceId":12092,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1168},{"sourceType":"tmdb","movieId":532,"title":"Alicia en el pa\u00eds de las maravillas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2024},{"sourceType":"tmdb","movieId":532,"title":"I Aliki sti hora ton thavmaton","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2027},{"sourceType":"tmdb","movieId":532,"title":"Alisa v strane chudes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2030},{"sourceType":"tmdb","movieId":532,"title":"Alice i underlandet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2031}],"secondaryYearSourceId":0,"sortTitle":"alice in wonderland","sizeOnDisk":1318423361,"status":"released","overview":"On a golden afternoon, young Alice follows a White Rabbit, who disappears down a nearby rabbit hole. Quickly following him, she tumbles into the burrow - and enters the merry, topsy-turvy world of Wonderland! Memorable songs and whimsical escapades highlight Alice's journey, which culminates in a madcap encounter with the Queen of Hearts - and her army of playing cards!","inCinemas":"1951-09-14T00:00:00Z","physicalRelease":"2011-02-09T00:00:00Z","digitalRelease":"2002-12-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/532\/poster.jpg?lastWrite=637630099922429676","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AdwfqyNiH8UqeYKFYoiKhwTtjAb.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/532\/fanart.jpg?lastWrite=637643939112092038","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/b4yiLlIFuiULuuLTxT0Pt1QyT6J.jpg"}],"website":"https:\/\/movies.disney.com\/alice-in-wonderland-1951","year":1951,"hasFile":true,"youTubeTrailerId":"KLIqErnQCuw","studio":"Walt Disney Animation Studios","path":"\/movies\/Alice in Wonderland (1951)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Alice in Wonderland (1951)","runtime":75,"cleanTitle":"aliceinwonderland","imdbId":"tt0043274","tmdbId":12092,"titleSlug":"12092","certification":"G","genres":["Animation","Family","Fantasy"],"tags":[],"added":"2019-10-17T20:36:58Z","ratings":{"votes":4634,"value":7.2},"movieFile":{"movieId":532,"relativePath":"Alice in Wonderland.1951-Bluray-1080p.mp4","path":"\/movies\/Alice in Wonderland (1951)\/Alice in Wonderland.1951-Bluray-1080p.mp4","size":1318423361,"dateAdded":"2019-10-17T20:56:29Z","sceneName":"Alice in Wonderland (1951) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":93952,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2237000,"videoCodec":"x264","videoFps":23.976,"resolution":"1424x1080","runTime":"1:15:16","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":623},"id":532},{"title":"Apocalypse Now","originalTitle":"Apocalypse Now","alternateTitles":[{"sourceType":"tmdb","movieId":533,"title":"Apocalypse Now Redux","sourceId":28,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1169},{"sourceType":"tmdb","movieId":533,"title":"Apocalypse Now: Final Cut","sourceId":28,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1170},{"sourceType":"tmdb","movieId":533,"title":"Apocalypse Now: The Complete Dossier Full Disclosure Edition","sourceId":28,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1171},{"sourceType":"tmdb","movieId":533,"title":"Haminak Akharozzaman","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4326},{"sourceType":"tmdb","movieId":533,"title":"\u0160i\u0173 dien\u0173 Apokalips\u0117. Sugr\u012f\u017eimas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4328},{"sourceType":"tmdb","movieId":533,"title":"Apokalypse N\u00e5!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":4329},{"sourceType":"tmdb","movieId":533,"title":"Kiyamet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":4330},{"sourceType":"tmdb","movieId":533,"title":"\u73b0\u4ee3\u542f\u793a\u5f55","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5701},{"sourceType":"tmdb","movieId":533,"title":"Ilmestyskirja. Nyt.","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":6120}],"secondaryYearSourceId":0,"sortTitle":"apocalypse now","sizeOnDisk":50745184324,"status":"released","overview":"At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.","inCinemas":"1979-08-15T00:00:00Z","physicalRelease":"2000-11-24T00:00:00Z","digitalRelease":"2003-09-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/533\/poster.jpg?lastWrite=637608474661844517","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gQB8Y5RCMkv2zwzFHbUJX3kAhvA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/533\/fanart.jpg?lastWrite=637654320948125208","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9Qs9oyn4iE8QtQjGZ0Hp2WyYNXT.jpg"}],"website":"http:\/\/www.apocalypsenow.com","year":1979,"hasFile":true,"youTubeTrailerId":"9l-ViOOFH-s","studio":"United Artists","path":"\/movies\/Apocalypse Now (1979)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Apocalypse Now (1979)","runtime":147,"cleanTitle":"apocalypsenow","imdbId":"tt0078788","tmdbId":28,"titleSlug":"28","certification":"R","genres":["Drama","War"],"tags":[],"added":"2019-10-18T15:57:03Z","ratings":{"votes":5991,"value":8.3},"movieFile":{"movieId":533,"relativePath":"Apocalypse Now.1979-Remux-1080p.mkv","path":"\/movies\/Apocalypse Now (1979)\/Apocalypse Now.1979-Remux-1080p.mkv","size":50745184324,"dateAdded":"2019-10-19T07:39:11Z","sceneName":"Apocalypse.Now.1979.Final.Cut.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":5882487,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English","audioStreamCount":4,"videoBitDepth":8,"videoBitrate":25968534,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"3:01:58","scanType":"Progressive","subtitles":"English \/ English \/ English \/ English \/ Spanish \/ French"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"Final Cut","id":624},"id":533},{"title":"The Curious Case of Benjamin Button","originalTitle":"The Curious Case of Benjamin Button","alternateTitles":[{"sourceType":"tmdb","movieId":534,"title":"Benjamin Button","sourceId":4922,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1185},{"sourceType":"tmdb","movieId":534,"title":"\u8fd4\u8001\u8fd8\u7ae5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2324},{"sourceType":"tmdb","movieId":534,"title":"l'\u00e9trange histoire de benjamin botom","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2325},{"sourceType":"tmdb","movieId":534,"title":"\ubca4\uc790\ubbfc \ubc84\ud2bc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2326},{"sourceType":"tmdb","movieId":534,"title":"Podivn\u00fd pr\u00edpad Benjamina Buttona","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2328},{"sourceType":"tmdb","movieId":534,"title":"El Curioso Caso de Benjamin Button","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":2329},{"sourceType":"tmdb","movieId":534,"title":"\u0417\u0430\u0433\u0430\u0434\u043a\u043e\u0432\u0430 \u0456\u0441\u0442\u043e\u0440\u0456\u044f \u0411\u0435\u043d\u0434\u0436\u0430\u043c\u0438\u043d\u0430 \u0411\u0430\u0442\u0442\u043e\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2330}],"secondaryYearSourceId":0,"sortTitle":"curious case benjamin button","sizeOnDisk":46718118797,"status":"released","overview":"I was born under unusual circumstances. And so begins. The Curious Case of Benjamin Button, adapted from the 1920s story by F. Scott Fitzgerald about a man who is born in his eighties and ages backwards: a man, like any of us, who is unable to stop time. We follow his story, set in New Orleans, from the end of World War I in 1918 into the 21st century, following his journey that is as unusual as any man's life can be. Directed by David Fincher and starring Brad Pitt and Cate Blanchett with Taraji P. Henson, Tilda Swinton, Jason Flemyng, Elias Koteas and Julia Ormond, Benjamin Button, is a grand tale of a not-so-ordinary man and the people and places he discovers along the way, the loves he finds, the joys of life and the sadness of death, and what lasts beyond time.","inCinemas":"2008-12-25T00:00:00Z","physicalRelease":"2009-06-10T00:00:00Z","digitalRelease":"2011-10-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/534\/poster.jpg?lastWrite=637324130039430049","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/26wEWZYt6yJkwRVkjcbwJEFh9IS.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/534\/fanart.jpg?lastWrite=637634424493295528","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6ZvgyKPAatpcHbVsKknly4K4zC6.jpg"}],"website":"http:\/\/www.benjaminbutton.com\/","year":2008,"hasFile":true,"youTubeTrailerId":"Y_e_XzgStHk","studio":"Paramount","path":"\/movies\/The Curious Case of Benjamin Button (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Curious Case of Benjamin Button (2008)","runtime":166,"cleanTitle":"thecuriouscasebenjaminbutton","imdbId":"tt0421715","tmdbId":4922,"titleSlug":"4922","certification":"PG-13","genres":["Drama","Fantasy","Romance"],"tags":[],"added":"2019-11-02T20:24:29Z","ratings":{"votes":9923,"value":7.6},"movieFile":{"movieId":534,"relativePath":"The Curious Case of Benjamin Button.2008-Remux-1080p.mkv","path":"\/movies\/The Curious Case of Benjamin Button (2008)\/The Curious Case of Benjamin Button.2008-Remux-1080p.mkv","size":46718118797,"dateAdded":"2019-11-06T15:18:41Z","sceneName":"The.Curious.Case.of.Benjamin.Button.2008.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3587932,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ Spanish \/ English","audioStreamCount":5,"videoBitDepth":8,"videoBitrate":30871927,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:46:03","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":630},"id":534},{"title":"Attack the Block","originalTitle":"Attack the Block","alternateTitles":[{"sourceType":"tmdb","movieId":535,"title":"Ataque ao Pr\u00e9dio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1376},{"sourceType":"tmdb","movieId":535,"title":"\u00datok na vez\u00e1k","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1377},{"sourceType":"tmdb","movieId":535,"title":"\u0427\u0443\u0436\u0438\u0435 \u043d\u0430 \u0440\u0430\u0439\u043e\u043d\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1378},{"sourceType":"tmdb","movieId":535,"title":"\u7570\u661f\u5927\u4f5c\u6230","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1379}],"secondaryYearSourceId":0,"sortTitle":"attack block","sizeOnDisk":4943536616,"status":"released","overview":"A teen gang in a South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.","inCinemas":"2011-05-12T00:00:00Z","physicalRelease":"2011-11-30T00:00:00Z","digitalRelease":"2013-07-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/535\/poster.jpg?lastWrite=637621451454866508","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wzCMnA6NDruLzgWeqMcLPDrGAdF.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/535\/fanart.jpg?lastWrite=637603286614384525","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ncYrkutA6Yd1Gmh8fLyGieWlqLv.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/attacktheblock","year":2011,"hasFile":true,"youTubeTrailerId":"m0ntk1o4V3k","studio":"UK Film Council","path":"\/movies\/Attack the Block (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Attack the Block (2011)","runtime":82,"cleanTitle":"attackblock","imdbId":"tt1478964","tmdbId":59678,"titleSlug":"59678","certification":"R","genres":["Action","Comedy","Science Fiction"],"tags":[],"added":"2019-11-07T02:32:41Z","ratings":{"votes":1556,"value":6.4},"movieFile":{"movieId":535,"relativePath":"Attack the Block.2011-Bluray-1080p.mkv","path":"\/movies\/Attack the Block (2011)\/Attack the Block.2011-Bluray-1080p.mkv","size":4943536616,"dateAdded":"2019-11-07T07:05:16Z","sceneName":"Attack.the.Block.2011.BluRay.1080p.mkv.DTS-LTT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6004000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x800","runTime":"1:27:44","scanType":"Progressive","subtitles":"English \/ Portuguese"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"LTT","edition":"","id":633},"collection":{"name":"Attack the Block Collection","tmdbId":831108,"images":[]},"id":535},{"title":"Source Code","originalTitle":"Source Code","alternateTitles":[{"sourceType":"tmdb","movieId":536,"title":"8 minutos antes de morir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2884},{"sourceType":"tmdb","movieId":536,"title":"Contra o Tempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2885},{"sourceType":"tmdb","movieId":536,"title":"\u5371\u673a\u89e3\u5bc6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2886},{"sourceType":"tmdb","movieId":536,"title":"\u542f\u52a8\u539f\u59cb\u7801","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2887},{"sourceType":"tmdb","movieId":536,"title":"C\u00f3digo Fuente","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2888},{"sourceType":"tmdb","movieId":536,"title":"Code source","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":2889},{"sourceType":"tmdb","movieId":536,"title":"\uc18c\uc2a4 \ucf54\ub4dc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2890},{"sourceType":"tmdb","movieId":536,"title":"I\u0161eities kodas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2891},{"sourceType":"tmdb","movieId":536,"title":"Transfer de identitate","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2892}],"secondaryYearSourceId":0,"sortTitle":"source code","sizeOnDisk":4166120003,"status":"released","overview":"Decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, discovering he's involved in a mission to find the bomber of a Chicago commuter train. He learns he's part of a top-secret experimental program that enables him to experience the final 8 minutes of another person's life. Colter re-lives the train incident over and over again, gathering more clues each time.","inCinemas":"2011-03-30T00:00:00Z","physicalRelease":"2011-08-15T00:00:00Z","digitalRelease":"2013-09-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/536\/poster.jpg?lastWrite=637663837281146237","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nTr0lvAzeQmUjgSgDEHTJpnrxTz.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/536\/fanart.jpg?lastWrite=637611071347033769","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/noHDKhzbwP6DfoaO2xRFLVrpX0N.jpg"}],"website":"http:\/\/www.enterthesourcecode.com","year":2011,"hasFile":true,"youTubeTrailerId":"NkTrG-gpIzE","studio":"The Mark Gordon Company","path":"\/movies\/Source Code (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Source Code (2011)","runtime":93,"cleanTitle":"sourcecode","imdbId":"tt0945513","tmdbId":45612,"titleSlug":"45612","certification":"PG-13","genres":["Thriller","Science Fiction","Mystery"],"tags":[],"added":"2019-11-07T17:02:18Z","ratings":{"votes":6397,"value":7.3},"movieFile":{"movieId":536,"relativePath":"Source Code.2011-Bluray-1080p.mkv","path":"\/movies\/Source Code (2011)\/Source Code.2011-Bluray-1080p.mkv","size":4166120003,"dateAdded":"2019-11-07T17:12:29Z","sceneName":"Source Code (2011) (1080p BluRay x265 HEVC 10bit AAC 5.1 Silence) REPACK","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":443557,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":5495692,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:33:12","scanType":"","subtitles":"English \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":634},"id":536},{"title":"No Time to Die","originalTitle":"No Time to Die","alternateTitles":[{"sourceType":"tmdb","movieId":537,"title":"B25","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1314},{"sourceType":"tmdb","movieId":537,"title":"Bond 25","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1315},{"sourceType":"tmdb","movieId":537,"title":"James Bond: No Time to DIe","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1316},{"sourceType":"tmdb","movieId":537,"title":"NTTD","sourceId":370172,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1317},{"sourceType":"tmdb","movieId":537,"title":"Mourir Peut Attendre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1357},{"sourceType":"tmdb","movieId":537,"title":"Nie czas umiera\u0107","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":1358},{"sourceType":"tmdb","movieId":537,"title":"007: \u041d\u0435 \u0447\u0430\u0441 \u043f\u043e\u043c\u0438\u0440\u0430\u0442\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5891},{"sourceType":"tmdb","movieId":537,"title":"007: \u041d\u0435 \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0438\u0440\u0430\u0442\u044c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5892}],"secondaryYearSourceId":0,"sortTitle":"no time to die","sizeOnDisk":0,"status":"announced","overview":"Bond has left active service and is enjoying a tranquil life in Jamaica. His peace is short-lived when his old friend Felix Leiter from the CIA turns up asking for help. The mission to rescue a kidnapped scientist turns out to be far more treacherous than expected, leading Bond onto the trail of a mysterious villain armed with dangerous new technology.","inCinemas":"2021-09-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/537\/poster.jpg?lastWrite=637666432434912842","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mRBHuUJULS9V6KaYIHPeMzD4AEk.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/537\/fanart.jpg?lastWrite=637657781982411328","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kcvKEvTWqIGMjpVJdbDVRHdIt4C.jpg"}],"website":"https:\/\/www.007.com\/no-time-to-die\/","year":2021,"hasFile":false,"youTubeTrailerId":"N_gD9-Oa0fg","studio":"Danjaq","path":"\/movies\/No Time To Die (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/No Time To Die (2020)","runtime":163,"cleanTitle":"notimetodie","imdbId":"tt2382320","tmdbId":370172,"titleSlug":"370172","certification":"PG-13","genres":["Adventure","Action","Thriller"],"tags":[],"added":"2019-12-04T14:58:17Z","ratings":{"votes":0,"value":0},"collection":{"name":"James Bond Collection","tmdbId":645,"images":[]},"id":537},{"title":"Safehouse","originalTitle":"Safehouse","alternateTitles":[{"sourceType":"tmdb","movieId":538,"title":"\u041f\u0430\u0440\u043e\u043b\u044c \u0441\u043c\u0435\u0440\u0442\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5592}],"secondaryYearSourceId":0,"sortTitle":"safehouse","sizeOnDisk":0,"status":"released","overview":"Ex-FBI agent Cooper O'Neil thinks the dangerous times in his life are in the past; that is, until his former partner shows up dead at his marina home. O'Neil's old partner had a coveted thumb drive in his possession when he died, and now the ex-agent is forced back into the life he left behind to keep the thumb drive from the wrong hands.","inCinemas":"2008-01-01T00:00:00Z","images":[],"website":"http:\/\/www.safehousethemovie.us\/","year":2008,"hasFile":false,"youTubeTrailerId":"","studio":"","path":"\/movies\/Safehouse (2008)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Safehouse (2008)","runtime":0,"cleanTitle":"safehouse","imdbId":"tt1087472","tmdbId":22841,"titleSlug":"22841","certification":"R","genres":["Drama","Action","Thriller"],"tags":[],"added":"2019-12-12T23:47:24Z","ratings":{"votes":6,"value":4},"id":538},{"title":"Marathon Man","originalTitle":"Marathon Man","alternateTitles":[{"sourceType":"tmdb","movieId":539,"title":"Marat\u00f3n de la muerte","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4106},{"sourceType":"tmdb","movieId":539,"title":"Le coureur de marathon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4108},{"sourceType":"tmdb","movieId":539,"title":"Marat\u00f3nec","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4109},{"sourceType":"tmdb","movieId":539,"title":"El hombre de marat\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4111},{"sourceType":"tmdb","movieId":539,"title":"Maratoonari","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4113},{"sourceType":"tmdb","movieId":539,"title":"Anthropokynigito","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4114},{"sourceType":"tmdb","movieId":539,"title":"Ish Ha-Maraton","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4116},{"sourceType":"tmdb","movieId":539,"title":"Maratonczyk","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4118},{"sourceType":"tmdb","movieId":539,"title":"O Homem da Maratona","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":4119},{"sourceType":"tmdb","movieId":539,"title":"Maratonac","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4120},{"sourceType":"tmdb","movieId":539,"title":"Vahsi kosu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":4121},{"sourceType":"tmdb","movieId":539,"title":"\ub9c8\ub77c\ud1a4 \ub9e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5270}],"secondaryYearSourceId":0,"sortTitle":"marathon man","sizeOnDisk":2141040600,"status":"released","overview":"A graduate student and obsessive runner in New York is drawn into a mysterious plot involving his brother, a member of the secretive Division.","inCinemas":"1976-10-08T00:00:00Z","physicalRelease":"2002-03-12T00:00:00Z","digitalRelease":"2005-07-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/539\/poster.jpg?lastWrite=637567829097385664","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uPNgubSiri2yvBQRPtP77ViYjN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/539\/fanart.jpg?lastWrite=637630965285231877","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/auXYT9zJZxBZIggBCC2eLIqQDIA.jpg"}],"website":"","year":1976,"hasFile":true,"youTubeTrailerId":"8WmlhEO2cU4","studio":"Paramount","path":"\/movies\/Marathon Man (1976)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Marathon Man (1976)","runtime":125,"cleanTitle":"marathonman","imdbId":"tt0074860","tmdbId":10518,"titleSlug":"10518","certification":"R","genres":["Thriller","Drama"],"tags":[],"added":"2019-12-25T16:05:29Z","ratings":{"votes":687,"value":7.3},"movieFile":{"movieId":539,"relativePath":"Marathon Man.1976-Bluray-1080p.mp4","path":"\/movies\/Marathon Man (1976)\/Marathon Man.1976-Bluray-1080p.mp4","size":2141040600,"dateAdded":"2019-12-25T19:15:38Z","sceneName":"Marathon Man (1976) [BluRay] [1080p] [YTS.AM]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":119345,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1072","runTime":"2:05:23","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":643},"id":539},{"title":"Austin Powers: The Spy Who Shagged Me","originalTitle":"Austin Powers: The Spy Who Shagged Me","alternateTitles":[{"sourceType":"tmdb","movieId":540,"title":"Austin Powers 2- The Spy Who Shagged Me","sourceId":817,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1267},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers: \u0160pion, kter\u00fd m\u011b vojel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1394},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1395},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers 2 La esp\u00eda que me achuch\u00f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1396},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers 2 - L'espion qui m'a tir\u00e9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1397},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers : L'Espion qui m'a tir\u00e9e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1398},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers: \u039f \u039a\u03b1\u03c4\u03ac\u03c3\u03ba\u03bf\u03c0\u03bf\u03c2 \u03a0\u03bf\u03c5 \u039c\u03b5 \u039a\u03bf\u03c5\u03c4\u03bf\u03cd\u03c0\u03c9\u03c3\u03b5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1399},{"sourceType":"tmdb","movieId":540,"title":"KicsiK\u00c9M - Sir Austin Powers 2.","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1400},{"sourceType":"tmdb","movieId":540,"title":"\u05d0\u05d5\u05e1\u05d8\u05d9\u05df \u05e4\u05d0\u05d5\u05d5\u05e8\u05e1: \u05d4\u05de\u05e8\u05d2\u05dc \u05e9\u05ea\u05e7\u05e2 \u05d0\u05d5\u05ea\u05d9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1401},{"sourceType":"tmdb","movieId":540,"title":"Austin Powers - La spia che ci provava","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":1402},{"sourceType":"tmdb","movieId":540,"title":"\uc624\uc2a4\ud2f4 \ud30c\uc6cc 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1403}],"secondaryYearSourceId":0,"sortTitle":"austin powers spy who shagged me","sizeOnDisk":1605316263,"status":"released","overview":"When diabolical genius Dr. Evil travels back in time to steal superspy Austin Powers's \u2018mojo,\u2019 Austin must return to the swingin' '60s himself - with the help of American agent, Felicity Shagwell - to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions to try to save the world in his own unbelievably groovy way.","inCinemas":"1999-06-08T00:00:00Z","physicalRelease":"1999-11-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/540\/poster.jpg?lastWrite=637621451463266364","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wqcE8EAmVl5j3mLuIrHFG7RmQyg.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/540\/fanart.jpg?lastWrite=637611070125536068","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8TnEls6hvTTXZZvc8nx4ShaPGlx.jpg"}],"website":"","year":1999,"hasFile":true,"youTubeTrailerId":"mYVb4OLk4NQ","studio":"New Line Cinema","path":"\/movies\/Austin Powers The Spy Who Shagged Me (1999)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Austin Powers The Spy Who Shagged Me (1999)","runtime":95,"cleanTitle":"austinpowersspywhoshaggedme","imdbId":"tt0145660","tmdbId":817,"titleSlug":"817","certification":"PG-13","genres":["Adventure","Comedy","Crime"],"tags":[],"added":"2019-12-29T20:11:05Z","ratings":{"votes":2476,"value":6.2},"movieFile":{"movieId":540,"relativePath":"Austin Powers The Spy Who Shagged Me.1999-Bluray-1080p.mp4","path":"\/movies\/Austin Powers The Spy Who Shagged Me (1999)\/Austin Powers The Spy Who Shagged Me.1999-Bluray-1080p.mp4","size":1605316263,"dateAdded":"2019-12-29T20:34:06Z","sceneName":"Austin Powers - The Spy Who Shagged Me (1999) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":96000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2154000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:35:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":645},"collection":{"name":"Austin Powers Collection","tmdbId":1006,"images":[]},"id":540},{"title":"Austin Powers: International Man of Mystery","originalTitle":"Austin Powers: International Man of Mystery","alternateTitles":[{"sourceType":"tmdb","movieId":541,"title":"Austin Powers - 000 Um Agente Nada Discreto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4737},{"sourceType":"tmdb","movieId":541,"title":"Austin Powers: O kataskopos pou gyrise apo... trio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4740},{"sourceType":"tmdb","movieId":541,"title":"Austin Powers 1 Misterioso Agente Internacional","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4744},{"sourceType":"tmdb","movieId":541,"title":"Austin Powers: \u0160pion\u00e1tor","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5604}],"secondaryYearSourceId":0,"sortTitle":"austin powers international man mystery","sizeOnDisk":1605431279,"status":"released","overview":"As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.","inCinemas":"1997-05-02T00:00:00Z","physicalRelease":"2011-01-10T00:00:00Z","digitalRelease":"2002-09-07T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/541\/poster.jpg?lastWrite=637649129722615853","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qSvfLwdDBLjZaPwA7qdn0yYePq5.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/541\/fanart.jpg?lastWrite=637649129724615819","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3tSCdgdUpXmkpHtAoQJgTt1LSI0.jpg"}],"website":"","year":1997,"hasFile":true,"youTubeTrailerId":"JCSMpRHcNuM","studio":"New Line Cinema","path":"\/movies\/Austin Powers International Man of Mystery (1997)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Austin Powers International Man of Mystery (1997)","runtime":94,"cleanTitle":"austinpowersinternationalmanmystery","imdbId":"tt0118655","tmdbId":816,"titleSlug":"816","certification":"PG-13","genres":["Science Fiction","Comedy","Crime"],"tags":[],"added":"2019-12-29T20:11:09Z","ratings":{"votes":2465,"value":6.5},"movieFile":{"movieId":541,"relativePath":"Austin Powers International Man of Mystery.1997-Bluray-1080p.mp4","path":"\/movies\/Austin Powers International Man of Mystery (1997)\/Austin Powers International Man of Mystery.1997-Bluray-1080p.mp4","size":1605431279,"dateAdded":"2019-12-29T20:29:36Z","sceneName":"Austin Powers - International Man of Mystery (1997) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":96000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2292000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:29:35","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":644},"collection":{"name":"Austin Powers Collection","tmdbId":1006,"images":[]},"id":541},{"title":"Austin Powers in Goldmember","originalTitle":"Austin Powers in Goldmember","alternateTitles":[{"sourceType":"tmdb","movieId":542,"title":"Austin Powers - Goldmember","sourceId":818,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1269},{"sourceType":"tmdb","movieId":542,"title":"Austin Powers 3 - Goldmember","sourceId":818,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1271},{"sourceType":"tmdb","movieId":542,"title":"Ostin Pau\u016drs v Zlatniya chlen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1381},{"sourceType":"tmdb","movieId":542,"title":"Austin Powers contre l'homme au membre d'or","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1382},{"sourceType":"tmdb","movieId":542,"title":"Austin Powers 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1383},{"sourceType":"tmdb","movieId":542,"title":"Austin Powers 3: Miembro De Oro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1384},{"sourceType":"tmdb","movieId":542,"title":"Austin Powers: To Chrys\u00f3 Ergale\u00edo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1385},{"sourceType":"tmdb","movieId":542,"title":"\uc624\uc2a4\ud2f4 \ud30c\uc6cc 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1386},{"sourceType":"tmdb","movieId":542,"title":"Ostin Pauers 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1388},{"sourceType":"tmdb","movieId":542,"title":"Ostin Pauers: Goldmyembyer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":1389},{"sourceType":"tmdb","movieId":542,"title":"Avanak ajan - Alt\u0131n ku\u015f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":1390},{"sourceType":"tmdb","movieId":542,"title":"Ostin Pavers: Zolotyy orhan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1391},{"sourceType":"tmdb","movieId":542,"title":"Austin Powers: O Homem do Membro de Ouro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5773}],"secondaryYearSourceId":0,"sortTitle":"austin powers in goldmember","sizeOnDisk":1605357745,"status":"released","overview":"The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe\u2014'70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.","inCinemas":"2002-07-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/542\/poster.jpg?lastWrite=637627505425076978","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/c4Sus7BvVQM6i9M3Cr0U8Vw0L9f.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/542\/fanart.jpg?lastWrite=637653455409371912","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/CxkMHYV3pEKAyUJK34gkd9uiM.jpg"}],"website":"http:\/\/www.austinpowers.com\/","year":2002,"hasFile":true,"youTubeTrailerId":"XROEPkzyCRg","studio":"Eric's Boy","path":"\/movies\/Austin Powers in Goldmember (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Austin Powers in Goldmember (2002)","runtime":94,"cleanTitle":"austinpowersingoldmember","imdbId":"tt0295178","tmdbId":818,"titleSlug":"818","certification":"PG-13","genres":["Comedy","Crime","Science Fiction"],"tags":[],"added":"2019-12-29T20:11:13Z","ratings":{"votes":2380,"value":6},"movieFile":{"movieId":542,"relativePath":"Austin Powers in Goldmember.2002-Bluray-1080p.mp4","path":"\/movies\/Austin Powers in Goldmember (2002)\/Austin Powers in Goldmember.2002-Bluray-1080p.mp4","size":1605357745,"dateAdded":"2019-12-29T20:35:36Z","sceneName":"Austin Powers - Goldmember (2002) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":96000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2167000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:34:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":646},"collection":{"name":"Austin Powers Collection","tmdbId":1006,"images":[]},"id":542},{"title":"Doctor Sleep","originalTitle":"Doctor Sleep","alternateTitles":[{"sourceType":"tmdb","movieId":543,"title":"Stephen King's Doctor Sleep","sourceId":501170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1272},{"sourceType":"tmdb","movieId":543,"title":"The Shining 2","sourceId":501170,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1273},{"sourceType":"tmdb","movieId":543,"title":"The Shining 2 - Doctor Sleep (2019)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3609},{"sourceType":"tmdb","movieId":543,"title":"Doktor Sp\u00e1nek","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3610},{"sourceType":"tmdb","movieId":543,"title":"Stephen Kings Doctor Sleeps Erwachen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3611}],"secondaryYearSourceId":0,"sortTitle":"doctor sleep","sizeOnDisk":11720067916,"status":"released","overview":"Still irrevocably scarred by the trauma he endured as a child at the Overlook, Dan Torrance has fought to find some semblance of peace. But that peace is shattered when he encounters Abra, a courageous teenager with her own powerful extrasensory gift, known as the 'shine'. Instinctively recognising that Dan shares her power, Abra has sought him out, desperate for his help against the merciless Rose the Hat and her followers.","inCinemas":"2019-10-30T00:00:00Z","physicalRelease":"2020-02-04T00:00:00Z","digitalRelease":"2020-01-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/543\/poster.jpg?lastWrite=637623181478451633","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/p69QzIBbN06aTYqRRiCOY1emNBh.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/543\/fanart.jpg?lastWrite=637662106459298693","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ap6Zc5NDOfbZaMhkRDyghbGeLf0.jpg"}],"website":"http:\/\/www.doctorsleepmovie.net\/","year":2019,"hasFile":true,"youTubeTrailerId":"CgoYrQLPfBU","studio":"Vertigo Entertainment","path":"\/movies\/Doctor Sleep (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Doctor Sleep (2019)","runtime":152,"cleanTitle":"doctorsleep","imdbId":"tt5606664","tmdbId":501170,"titleSlug":"501170","certification":"R","genres":["Horror","Drama","Fantasy"],"tags":[],"added":"2020-01-03T01:04:22Z","ratings":{"votes":2887,"value":7.2},"movieFile":{"movieId":543,"relativePath":"Doctor Sleep.2019-Bluray-1080p.mkv","path":"\/movies\/Doctor Sleep (2019)\/Doctor Sleep.2019-Bluray-1080p.mkv","size":11720067916,"dateAdded":"2020-01-22T22:08:55Z","sceneName":"Doctor.Sleep.2019.DC.1080p.BluRay.x264-AAA[rarbg]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8030000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"3:00:14","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AAA","edition":"DiRECTORS CUT","id":649},"collection":{"name":"The Shining Collection","tmdbId":530064,"images":[]},"id":543},{"title":"Deathgasm","originalTitle":"Deathgasm","alternateTitles":[{"sourceType":"tmdb","movieId":544,"title":"Heavy Metal Apocalypse","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5269}],"secondaryYearSourceId":0,"sortTitle":"deathgasm","sizeOnDisk":1405861081,"status":"released","overview":"Two teenage boys unwittingly summon an ancient evil entity known as The Blind One by delving into black magic while trying to escape their mundane lives.","inCinemas":"2015-08-28T00:00:00Z","physicalRelease":"2016-01-21T00:00:00Z","digitalRelease":"2016-06-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/544\/poster.jpg?lastWrite=637617991800140645","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/cwy9sGEOAuzpZXzXBVln1PZ4vxn.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/544\/fanart.jpg?lastWrite=637541882299223171","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6K51xq7nKPyiPW4VbU25Xvqsmjo.jpg"}],"website":"http:\/\/deathgasmthemovie.com\/","year":2015,"hasFile":true,"youTubeTrailerId":"qz3kt1gh0OE","studio":"Timpson Films","path":"\/movies\/Deathgasm (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Deathgasm (2015)","runtime":86,"cleanTitle":"deathgasm","imdbId":"tt3705412","tmdbId":323373,"titleSlug":"323373","certification":"NR","genres":["Comedy","Horror","Music"],"tags":[],"added":"2020-01-06T08:13:31Z","ratings":{"votes":436,"value":6.3},"movieFile":{"movieId":544,"relativePath":"Deathgasm.2015-Bluray-1080p.mp4","path":"\/movies\/Deathgasm (2015)\/Deathgasm.2015-Bluray-1080p.mp4","size":1405861081,"dateAdded":"2020-01-27T14:58:59Z","sceneName":"Deathgasm (2015) [1080p] [YTS.AG]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":121962,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2050000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:26:05","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":651},"id":544},{"title":"The VelociPastor","originalTitle":"The VelociPastor","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"velocipastor","sizeOnDisk":5655739795,"status":"released","overview":"After losing his parents, a priest travels to China, where he inherits a mysterious ability that allows him to turn into a dinosaur. At first horrified by this new power, a hooker convinces him to use it to fight crime. And ninjas.","inCinemas":"2018-09-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/545\/poster.jpg?lastWrite=637627506179664049","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/trSmNw63luh84MBy5XLH0UiN1BC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/545\/fanart.jpg?lastWrite=637627506181224022","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uxvmoirhbve2JkYVCa18msE3f8R.jpg"}],"website":"","year":2018,"hasFile":true,"youTubeTrailerId":"JppwKpfOgyo","studio":"WildEye Releasing","path":"\/movies\/The VelociPastor (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/The VelociPastor (2018)","runtime":75,"cleanTitle":"thevelocipastor","imdbId":"tt1843303","tmdbId":457712,"titleSlug":"457712","genres":["Horror","Action","Comedy"],"tags":[],"added":"2020-01-22T13:29:04Z","ratings":{"votes":71,"value":4.8},"movieFile":{"movieId":545,"relativePath":"The VelociPastor.2018-Bluray-1080p.mkv","path":"\/movies\/The VelociPastor (2018)\/The VelociPastor.2018-Bluray-1080p.mkv","size":5655739795,"dateAdded":"2020-01-26T14:36:35Z","sceneName":"The.VelociPastor.2018.1080p.BluRay.x264-HANDJOB","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":320000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":10317920,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:10:52","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HANDJOB","edition":"","id":650},"id":545},{"title":"The Witches","originalTitle":"The Witches","alternateTitles":[{"sourceType":"tmdb","movieId":546,"title":"La maldici\u00f3n de las brujas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4654},{"sourceType":"tmdb","movieId":546,"title":"Roald Dahl's, The Witches","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4655},{"sourceType":"tmdb","movieId":546,"title":"Bosorky","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4656}],"secondaryYearSourceId":0,"sortTitle":"witches","sizeOnDisk":25351344854,"status":"inCinemas","overview":"A young boy named Luke and his grandmother go on vacation only to discover their hotel is hosting an international witch convention, where the Grand High Witch is unveiling her master plan to turn all children into mice. Will Luke fall victim to the witches' plot before he can stop them?","inCinemas":"1990-05-25T00:00:00Z","physicalRelease":"2021-10-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/546\/poster.jpg?lastWrite=637396757360442384","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mPYBjVkeHakkPGY7WaKyyNU4RWm.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/546\/fanart.jpg?lastWrite=637643074741037521","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/u8GO1SyKB1QBK7RON7eFhrdy9uX.jpg"}],"website":"","year":1990,"hasFile":true,"youTubeTrailerId":"d_ZyqaN_XNM","studio":"Lorimar Film Entertainment","path":"\/movies\/The Witches (1990)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Witches (1990)","runtime":91,"cleanTitle":"thewitches","imdbId":"tt0100944","tmdbId":10166,"titleSlug":"10166","certification":"PG","genres":["Adventure","Fantasy","Horror"],"tags":[],"added":"2020-02-04T22:47:02Z","ratings":{"votes":901,"value":6.9},"movieFile":{"movieId":546,"relativePath":"The Witches.1990-Remux-1080p.mkv","path":"\/movies\/The Witches (1990)\/The Witches.1990-Remux-1080p.mkv","size":25351344854,"dateAdded":"2020-02-05T04:00:47Z","sceneName":"The.Witches.1990.1080p.BluRay.REMUX.AVC.DTS-HD.MA.2.0-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2015973,"audioChannels":2,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":34885274,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:31:32","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":652},"id":546},{"title":"Roald Dahl's The Witches","originalTitle":"Roald Dahl's The Witches","alternateTitles":[{"sourceType":"tmdb","movieId":547,"title":"The Witches","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5206},{"sourceType":"tmdb","movieId":547,"title":"\ub354 \uc704\uce58\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5250},{"sourceType":"tmdb","movieId":547,"title":"\u602a\u8bde\u9ed1\u5deb\u540e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5313},{"sourceType":"tmdb","movieId":547,"title":"\u5973\u5deb\u4eec","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5314},{"sourceType":"tmdb","movieId":547,"title":"\u5973\u5deb\u518d\u73b0","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5315},{"sourceType":"tmdb","movieId":547,"title":"Conven\u00e7\u00e3o das Bruxas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5876},{"sourceType":"tmdb","movieId":547,"title":"As Bruxas de Roald Dahl","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6055}],"secondaryYearSourceId":0,"sortTitle":"roald dahl s witches","sizeOnDisk":6732357877,"status":"released","overview":"In late 1967, a young orphaned boy goes to live with his loving grandma in the rural Alabama town of Demopolis. As the boy and his grandmother encounter some deceptively glamorous but thoroughly diabolical witches, she wisely whisks him away to a seaside resort. Regrettably, they arrive at precisely the same time that the world's Grand High Witch has gathered.","inCinemas":"2020-10-25T00:00:00Z","physicalRelease":"2020-12-14T00:00:00Z","digitalRelease":"2020-10-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/547\/poster.jpg?lastWrite=637458150765326001","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/b1C0FuXp4wiPmHLVKq4kwtDMgK6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/547\/fanart.jpg?lastWrite=637637885047498853","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8rIoyM6zYXJNjzGseT3MRusMPWl.jpg"}],"website":"https:\/\/www.thewitchesmovie.net\/","year":2020,"hasFile":true,"youTubeTrailerId":"9nlhmJF5FNI","studio":"ImageMovers","path":"\/movies\/The Witches (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Witches (2020)","runtime":106,"cleanTitle":"roalddahlswitches","imdbId":"tt0805647","tmdbId":531219,"titleSlug":"531219","certification":"PG","genres":["Family","Fantasy","Adventure"],"tags":[],"added":"2020-02-04T22:47:21Z","ratings":{"votes":1818,"value":6.6},"movieFile":{"movieId":547,"relativePath":"The Witches.2020-WEBDL-1080p.mkv","path":"\/movies\/The Witches (2020)\/The Witches.2020-WEBDL-1080p.mkv","size":6732357877,"dateAdded":"2020-10-22T10:03:39Z","sceneName":"The.Witches.2020.1080p.WEB-DL.H264.AC3-EVO[TGx]","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8228536,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x816","runTime":"1:44:12","scanType":"Progressive","subtitles":"English"},"originalFilePath":"The.Witches.2020.1080p.WEB-DL.H264.AC3-EVO[TGx]\/Roald.Dahls.the.Witches.2020.1080p.HMAX.WEB-DL.DD5.1.H.264-EVO.mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"EVO","edition":"","id":701},"id":547},{"title":"The Secret Number","originalTitle":"The Secret Number","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"secret number","sizeOnDisk":0,"status":"released","overview":"A psychiatrist is compelled by his patient, an obsessive mathematician, to consider the existence of a secret integer between three and four.","inCinemas":"2012-06-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/548\/poster.jpg?lastWrite=637534099080192221","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kfDHVldXeQFuNbMkVcja1hPFv6i.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/548\/fanart.jpg?lastWrite=637445178528613905","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fiGqkgwq4wX1kXrD47afvJgyAOR.jpg"}],"website":"http:\/\/secretnumber.colinlevy.com\/","year":2012,"hasFile":false,"youTubeTrailerId":"8bbvBrqrlBA","studio":"Lightning Hill Pictures","path":"\/movies\/The Secret Number (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Secret Number (2012)","runtime":15,"cleanTitle":"thesecretnumber","imdbId":"tt1982170","tmdbId":120777,"titleSlug":"120777","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2020-02-10T22:36:41Z","ratings":{"votes":14,"value":5.9},"id":548},{"title":"Color Out of Space","originalTitle":"Color Out of Space","alternateTitles":[{"sourceType":"tmdb","movieId":549,"title":"Die Farbe aus dem All","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3372},{"sourceType":"tmdb","movieId":549,"title":"\uc6b0\uc8fc\uc5d0\uc11c \uc628 \uc0c9\ucc44","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3373},{"sourceType":"tmdb","movieId":549,"title":"The Paranormal","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3374},{"sourceType":"tmdb","movieId":549,"title":"\u661f\u4e4b\u5f69","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4607},{"sourceType":"tmdb","movieId":549,"title":"\u041a\u043e\u043b\u0456\u0440 \u0437 \u0456\u043d\u0448\u043e\u0433\u043e \u0441\u0432\u0456\u0442\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4753}],"secondaryYear":2019,"secondaryYearSourceId":0,"sortTitle":"color out space","sizeOnDisk":26096702428,"status":"released","overview":"The Gardner family moves to a remote farmstead in rural New England to escape the hustle of the 21st century. They are busy adapting to their new life when a meteorite crashes into their front yard, melts into the earth, and infects both the land and the properties of space-time with a strange, otherworldly colour. To their horror, the family discovers this alien force is gradually mutating every life form that it touches\u2014including them.","inCinemas":"2020-02-05T00:00:00Z","physicalRelease":"2020-02-25T00:00:00Z","digitalRelease":"2020-03-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/549\/poster.jpg?lastWrite=637639614448997487","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vkwgzCBBiY3C1XEy0WakYfMOvnG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/549\/fanart.jpg?lastWrite=637627505565914566","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vj2gCvD5vZDJ865izTU0J0wJBVc.jpg"}],"website":"https:\/\/us.rljentertainment.com\/franchise\/color-out-of-space","year":2020,"hasFile":true,"youTubeTrailerId":"agnpaFLo0to","studio":"SpectreVision","path":"\/movies\/Color Out of Space (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Color Out of Space (2019)","runtime":111,"cleanTitle":"coloroutspace","imdbId":"tt5073642","tmdbId":548473,"titleSlug":"548473","certification":"R","genres":["Horror","Mystery","Science Fiction"],"tags":[],"added":"2020-02-23T14:01:12Z","ratings":{"votes":796,"value":6},"movieFile":{"movieId":549,"relativePath":"Color Out of Space.2019-Remux-1080p.mkv","path":"\/movies\/Color Out of Space (2019)\/Color Out of Space.2019-Remux-1080p.mkv","size":26096702428,"dateAdded":"2020-02-25T01:21:00Z","sceneName":"Color.Out.of.Space.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3849667,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":27763132,"videoCodec":"AVC","videoFps":24.0,"resolution":"1920x1080","runTime":"1:50:00","scanType":"Progressive","subtitles":"English \/ English \/ Spanish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":655},"id":549},{"title":"Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn)","originalTitle":"Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn)","alternateTitles":[{"sourceType":"tmdb","movieId":550,"title":"Arlequina em Aves de Rapina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2048},{"sourceType":"tmdb","movieId":550,"title":"Aves de Presa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2049},{"sourceType":"tmdb","movieId":550,"title":"\u54c8\u8389\u00b7\u594e\u56e0\uff1a\u731b\u79bd\u5c0f\u961f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2050},{"sourceType":"tmdb","movieId":550,"title":"\u731b\u79bd\u5c0f\u961f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2051},{"sourceType":"tmdb","movieId":550,"title":"Aves De Presa Y la fantabulosa empancipaci\u00f3n de Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2052},{"sourceType":"tmdb","movieId":550,"title":"Aves de Presa - Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2053},{"sourceType":"tmdb","movieId":550,"title":"\u05e6\u05d9\u05e4\u05d5\u05e8\u05d9 \u05d8\u05e8\u05e3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2054},{"sourceType":"tmdb","movieId":550,"title":"\ubc84\uc988 \uc624\ube0c \ud504\ub808\uc774","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2055},{"sourceType":"tmdb","movieId":550,"title":"\ud560\ub9ac\ud038\uc758 \ud669\ud640\ud55c \ud574\ubc29","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2056},{"sourceType":"tmdb","movieId":550,"title":"Ptice Grabljivice (i fantasti\u010dna emancipacija Harli Kvin)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2057},{"sourceType":"tmdb","movieId":550,"title":"\u0425\u0438\u0449\u043d\u044b\u0435 \u043f\u0442\u0438\u0446\u044b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":2058},{"sourceType":"tmdb","movieId":550,"title":"Y\u0131rt\u0131c\u0131 Ku\u015flar","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":2059},{"sourceType":"tmdb","movieId":550,"title":"LEGO HARLEY QUINN AND THE BIRDS OF PREY","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4598},{"sourceType":"tmdb","movieId":550,"title":"Harley Quinn: Aves de Presa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4736},{"sourceType":"tmdb","movieId":550,"title":"\ubc84\uc988 \uc624\ube0c \ud504\ub808\uc774(\ud560\ub9ac\ud038\uc758 \ud669\ud640\ud55c \ud574\ubc29)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4801},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5172},{"sourceType":"tmdb","movieId":550,"title":"Aves de Rapina Arlequina e Sua Emancipa\u00e7\u00e3o Fantabulosa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5369},{"sourceType":"tmdb","movieId":550,"title":"Harley Quinn: Birds of Prey","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5464},{"sourceType":"tmdb","movieId":550,"title":"Aves de Rapina","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5867},{"sourceType":"tmdb","movieId":550,"title":"Aves de presa y la fantabulosa emancipaci\u00f3n de una Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5981},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey: The Emancipation of Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5982},{"sourceType":"tmdb","movieId":550,"title":"Ptice Grabljivice: I Fantasi\u010dno Oslobo\u0111enje Jedne Harli Kvin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5983},{"sourceType":"tmdb","movieId":550,"title":"\u0425\u0438\u0449\u043d\u0438 \u043f\u0442\u0438\u0446\u0438 (\u0418 \u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u0447\u043d\u0430\u0442\u0430 \u0435\u043c\u0430\u043d\u0446\u0438\u043f\u0430\u0446\u0438\u044f \u043d\u0430 \u0425\u0430\u0440\u043b\u0438 \u041a\u0443\u0438\u043d)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":29,"name":"Bulgarian"},"id":5984},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey et la fantabuleuse histoire de Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5985},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey i emancipacija famozne Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5986},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey (Podivuhodn\u00e1 prom\u011bna Harley Quinn)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5987},{"sourceType":"tmdb","movieId":550,"title":"Harley Quinn: R\u00f6\u00f6vlinnud","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5988},{"sourceType":"tmdb","movieId":550,"title":"\u0391\u03c1\u03c0\u03b1\u03ba\u03c4\u03b9\u03ba\u03ac \u03a0\u03c4\u03b7\u03bd\u03ac: \u039a\u03b1\u03b9 \u03b7 \u03a6\u03b1\u03bd\u03c4\u03b1\u03c3\u03bc\u03b1\u03b3\u03bf\u03c1\u03b9\u03ba\u03ae \u03a7\u03b5\u03b9\u03c1\u03b1\u03c6\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03a7\u03ac\u03c1\u03bb\u03b5\u03ca \u039a\u03bf\u03c5\u03af\u03bd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5989},{"sourceType":"tmdb","movieId":550,"title":"\u731b\u79bd\u66b4\u968a\uff1a\u89e3\u760b\u5c0f\u4e11\u5973","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5990},{"sourceType":"tmdb","movieId":550,"title":"Ragadoz\u00f3 madarak (\u00e9s egy bizonyos Harley Quinn csodasztikus felszabadul\u00e1sa)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5991},{"sourceType":"tmdb","movieId":550,"title":"Tziporei Ha'Terref","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5992},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey e la fantasmagorica rinascita di Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5993},{"sourceType":"tmdb","movieId":550,"title":"\u30cf\u30fc\u30ec\u30a4\u30fb\u30af\u30a4\u30f3\u306e\u83ef\u9e97\u306a\u308b\u899a\u9192 Birds of Prey","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5994},{"sourceType":"tmdb","movieId":550,"title":"Pl\u0113s\u012bgie putni (un k\u0101das Arles K\u012bnas br\u012bnumpasakain\u0101 emancip\u0101cija)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5995},{"sourceType":"tmdb","movieId":550,"title":"Pl\u0117\u0161riosios pauk\u0161t\u0117s ir fantasti\u0161koji Harl\u0117 Kvin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5996},{"sourceType":"tmdb","movieId":550,"title":"P\u0103s\u0103ri de prad\u0103 \u0219i fantastica Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5997},{"sourceType":"tmdb","movieId":550,"title":"Ptaki nocy (i fantastyczna emancypacja pewnej Harley Quinn)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5998},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey (e a Fantabul\u00e1stica Emancipa\u00e7\u00e3o De Uma Harley Quinn)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5999},{"sourceType":"tmdb","movieId":550,"title":"\u0425\u0438\u0449\u043d\u044b\u0435 \u043f\u0442\u0438\u0446\u044b: \u041f\u043e\u0442\u0440\u044f\u0441\u0430\u044e\u0449\u0430\u044f \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0425\u0430\u0440\u043b\u0438 \u041a\u0432\u0438\u043d\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6000},{"sourceType":"tmdb","movieId":550,"title":"\u041f\u0442\u0438\u0446\u0435 \u0433\u0440\u0430\u0431\u0459\u0438\u0432\u0438\u0446\u0435 \u0438 \u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u0447\u043d\u0430 \u0435\u043c\u0430\u043d\u0446\u0438\u043f\u0430\u0446\u0438\u0458\u0430 \u0425\u0430\u0440\u043b\u0438 \u041a\u0432\u0438\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6001},{"sourceType":"tmdb","movieId":550,"title":"Vt\u00e1ky noci a fantastick\u00fd prerod jednej Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6002},{"sourceType":"tmdb","movieId":550,"title":"Ptice roparice in fantasti\u010dna osamosvojitev Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6003},{"sourceType":"tmdb","movieId":550,"title":"\u731b\u79bd\u5c0f\u968a\uff1a\u5c0f\u4e11\u5973\u5927\u89e3\u653e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6004},{"sourceType":"tmdb","movieId":550,"title":"Thim Nok Phu La Kap Harley Quinn Phu Roet Choet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":6005},{"sourceType":"tmdb","movieId":550,"title":"Y\u0131rt\u0131c\u0131 Ku\u015flar (Ve Muhte\u015fem Harley Quinn)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":6006},{"sourceType":"tmdb","movieId":550,"title":"\u0425\u0438\u0436\u0456 \u043f\u0442\u0430\u0448\u043a\u0438 \u0442\u0430 \u0444\u0430\u043d\u0442\u0430\u0441\u0442\u0438\u0447\u043d\u0430 \u0425\u0430\u0440\u043b\u0456 \u041a\u0432\u0456\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6007},{"sourceType":"tmdb","movieId":550,"title":"Aves de presa (y la fantabulosa emancipaci\u00f3n de Harley Quinn)","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6008},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey: Cu\u1ed9c L\u1ed9t X\u00e1c Huy Ho\u00e0ng C\u1ee7a Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6009},{"sourceType":"tmdb","movieId":550,"title":"Birds of Prey: Harley Quinn","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6114}],"secondaryYearSourceId":0,"sortTitle":"birds prey fantabulous emancipation one harley quinn","sizeOnDisk":12241302272,"status":"released","overview":"Harley Quinn joins forces with a singer, an assassin and a police detective to help a young girl who had a hit placed on her after she stole a rare diamond from a crime lord.","inCinemas":"2020-02-05T00:00:00Z","physicalRelease":"2020-05-12T00:00:00Z","digitalRelease":"2020-03-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/550\/poster.jpg?lastWrite=637257554123552870","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/h4VB6m0RwcicVEZvzftYZyKXs6K.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/550\/fanart.jpg?lastWrite=637652590319220253","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jiqD14fg7UTZOT6qgvzTmfRYpWI.jpg"}],"website":"http:\/\/www.birdsofpreymovie.net","year":2020,"hasFile":true,"youTubeTrailerId":"x3HbbzHK5Mc","studio":"DC Entertainment","path":"\/movies\/Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn) (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn) (2020)","runtime":109,"cleanTitle":"birdspreyfantabulousemancipationoneharleyquinn","imdbId":"tt7713068","tmdbId":495764,"titleSlug":"495764","certification":"R","genres":["Action","Crime"],"tags":[],"added":"2020-02-28T20:36:43Z","ratings":{"votes":7969,"value":7.1},"movieFile":{"movieId":550,"relativePath":"Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn).2020-Bluray-1080p.mkv","path":"\/movies\/Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn) (2020)\/Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn).2020-Bluray-1080p.mkv","size":12241302272,"dateAdded":"2020-05-01T06:09:43Z","sceneName":"Birds.of.Prey.And.the.Fantabulous.Emancipation.of.One.Harley.Quinn.2020.1080p.Bluray.Atmos.TrueHD.7.1.x264-EVO[TGx]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":0,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x804","runTime":"1:48:54","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"EVO","edition":"","id":674},"id":550},{"title":"The Mitchells vs. the Machines","originalTitle":"The Mitchells vs. the Machines","alternateTitles":[{"sourceType":"tmdb","movieId":551,"title":"\u7c73\u6b47\u5c14\u4e00\u5bb6\u5927\u6218\u673a\u5668","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5225},{"sourceType":"tmdb","movieId":551,"title":"\u7c73\u6b47\u5c14\u5927\u6218\u673a\u5668\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5226},{"sourceType":"tmdb","movieId":551,"title":"Connected","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5569},{"sourceType":"tmdb","movieId":551,"title":"Super Conectados","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5722},{"sourceType":"tmdb","movieId":551,"title":"D\u00e9connect\u00e9s","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5734},{"sourceType":"tmdb","movieId":551,"title":"Teljes kikapcsol\u00f3d\u00e1s","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":5784},{"sourceType":"tmdb","movieId":551,"title":"Po\u0142\u0105czeni","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5810},{"sourceType":"tmdb","movieId":551,"title":"\u7121\u7dda\u4e4b\u6230","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5813},{"sourceType":"tmdb","movieId":551,"title":"\u041d\u0430 \u0441\u0432\u044f\u0437\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5816},{"sourceType":"tmdb","movieId":551,"title":"Control. Alt. Escape!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5846},{"sourceType":"tmdb","movieId":551,"title":"Conectados: modo familia","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5898},{"sourceType":"tmdb","movieId":551,"title":"\u041c\u0456\u0442\u0447\u0435\u043b\u0438 \u0441\u0443\u043f\u0440\u043e\u0442\u0438 \u041c\u0430\u0448\u0438\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":29,"name":"Bulgarian"},"id":5903},{"sourceType":"tmdb","movieId":551,"title":"\u4e00\u5bb6\u65b7\u7dda\u6551\u5730\u7403","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5904},{"sourceType":"tmdb","movieId":551,"title":"\u0645\u06cc\u0634\u0644 \u0647\u0627 \u0639\u0644\u06cc\u0647 \u0645\u0627\u0634\u06cc\u0646 \u0647\u0627","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5905},{"sourceType":"tmdb","movieId":551,"title":"Connected - Familie verbindet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5911},{"sourceType":"tmdb","movieId":551,"title":"\u041f\u0456\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5978},{"sourceType":"tmdb","movieId":551,"title":"Connect\u00e9s","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6115},{"sourceType":"tmdb","movieId":551,"title":"\u0e1a\u0e49\u0e32\u0e19\u0e21\u0e34\u0e15\u0e40\u0e0a\u0e25\u0e25\u0e4c\u0e1b\u0e30\u0e17\u0e30\u0e08\u0e31\u0e01\u0e23\u0e01\u0e25","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":6216},{"sourceType":"tmdb","movieId":551,"title":"Uppkopplad","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6242}],"secondaryYearSourceId":0,"sortTitle":"mitchells vs machines","sizeOnDisk":6471349296,"status":"released","overview":"A quirky, dysfunctional family's road trip is upended when they find themselves in the middle of the robot apocalypse and suddenly become humanity's unlikeliest last hope.","inCinemas":"2021-04-30T00:00:00Z","digitalRelease":"2021-04-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/551\/poster.jpg?lastWrite=637561774552064043","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mI2Di7HmskQQ34kz0iau6J1vr70.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/551\/fanart.jpg?lastWrite=637597234014734266","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6ydGnzbo8s4yRNqQWPAvVSiNU8N.jpg"}],"website":"https:\/\/www.netflix.com\/title\/81399614","year":2021,"hasFile":true,"youTubeTrailerId":"_ak5dFt8Ar0","studio":"Lord Miller Productions","path":"\/movies\/Connected (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Connected (2020)","runtime":114,"cleanTitle":"themitchellsvsmachines","imdbId":"tt7979580","tmdbId":501929,"titleSlug":"501929","certification":"PG","genres":["Animation","Adventure","Comedy"],"tags":[],"added":"2020-03-04T00:31:03Z","ratings":{"votes":1298,"value":8.1},"movieFile":{"movieId":551,"relativePath":"The Mitchells vs. The Machines.2021-WEBDL-1080p.mkv","path":"\/movies\/Connected (2020)\/The Mitchells vs. The Machines.2021-WEBDL-1080p.mkv","size":6471349296,"dateAdded":"2021-04-30T08:22:34Z","sceneName":"The.Mitchells.vs.The.Machines.2021.1080p.WEB.h264-RUMOUR","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"JOC","audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6647331,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:54:02","scanType":"Progressive","subtitles":"Arabic \/ Czech \/ Danish \/ German \/ Greek \/ English \/ Spanish \/ Spanish \/ Finnish \/ French \/ Hebrew \/ Croatian \/ Hungarian \/ Indonesian \/ Icelandic \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Dutch \/ Dutch \/ Polish \/ Portuguese \/ Portuguese \/ Romani"},"originalFilePath":"The.Mitchells.vs.The.Machines.2021.1080p.WEB.h264-RUMOUR[rarbg]\/The.Mitchells.vs.The.Machines.2021.1080p.WEB.h264-RUMOUR.mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RUMOUR","edition":"","id":718},"id":551},{"title":"Snowpiercer","originalTitle":"Snowpiercer","alternateTitles":[{"sourceType":"tmdb","movieId":552,"title":"Expresso do Amanh\u00e3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1714},{"sourceType":"tmdb","movieId":552,"title":"Seolgug Yeolcha","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1715},{"sourceType":"tmdb","movieId":552,"title":"Rompenieves","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":1716},{"sourceType":"tmdb","movieId":552,"title":"Le Transperceneige","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1717},{"sourceType":"tmdb","movieId":552,"title":"SNOWPIERCER Le Transpercerceneige","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":1718},{"sourceType":"tmdb","movieId":552,"title":"H\u00f3lyukaszt\u00f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1719},{"sourceType":"tmdb","movieId":552,"title":"Snowpiercer - T\u00fal\u00e9l\u0151k viadala","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":1720},{"sourceType":"tmdb","movieId":552,"title":"\u0642\u0637\u0627\u0631 \u06cc\u062e \u0634\u06a9\u0646","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1721},{"sourceType":"tmdb","movieId":552,"title":"\uc124\uad6d\uc5f4\ucc28","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1722},{"sourceType":"tmdb","movieId":552,"title":"El expreso del miedo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1723},{"sourceType":"tmdb","movieId":552,"title":"\u041a\u0440\u0456\u0437\u044c \u0441\u043d\u0456\u0433","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1724},{"sourceType":"tmdb","movieId":552,"title":"Snowpiercer: Arka Przysz\u0142o\u015bci","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6172}],"secondaryYearSourceId":0,"sortTitle":"snowpiercer","sizeOnDisk":5099072140,"status":"released","overview":"In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.","inCinemas":"2013-08-01T00:00:00Z","physicalRelease":"2014-10-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/552\/poster.jpg?lastWrite=637611071332274035","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/nzccOvhrLGI0nvAknCEAk8bchD9.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/552\/fanart.jpg?lastWrite=637534963946720344","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9DET8yv7MYMwOWe1eR2CigFkev4.jpg"}],"website":"","year":2013,"hasFile":true,"youTubeTrailerId":"nX5PwfEMBM0","studio":"CJ Entertainment","path":"\/movies\/Snowpiercer (2013)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Snowpiercer (2013)","runtime":127,"cleanTitle":"snowpiercer","imdbId":"tt1706620","tmdbId":110415,"titleSlug":"110415","certification":"R","genres":["Action","Science Fiction","Drama"],"tags":[],"added":"2020-03-12T10:20:40Z","ratings":{"votes":7452,"value":6.9},"movieFile":{"movieId":552,"relativePath":"Snowpiercer.2013-Bluray-1080p.mkv","path":"\/movies\/Snowpiercer (2013)\/Snowpiercer.2013-Bluray-1080p.mkv","size":5099072140,"dateAdded":"2020-03-12T10:40:07Z","sceneName":"Snowpiercer (2013) (1080p BluRay x265 HEVC 10bit AAC 7.1 Tigole)","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":639591,"audioChannels":7.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":4751268,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"2:05:54","scanType":"","subtitles":"English \/ Korean"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":657},"id":552},{"title":"The Cloverfield Files","alternateTitles":[{"sourceType":"tmdb","movieId":553,"title":"Miguel e Ana","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3922}],"secondaryYearSourceId":0,"sortTitle":"cloverfield files","sizeOnDisk":0,"status":"deleted","overview":"","inCinemas":"2019-06-13T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/553\/poster.jpg?lastWrite=637250633790069486","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mMiZ05lPlnMyVVH6uQuWsqfpW2E.jpg"}],"website":"","year":2019,"hasFile":false,"youTubeTrailerId":"","studio":"SCREEN Filmes","path":"\/movies\/The Cloverfield Files (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Cloverfield Files (2019)","runtime":0,"cleanTitle":"thecloverfieldfiles","imdbId":"tt10483880","tmdbId":608751,"titleSlug":"608751","genres":["Horror","Science Fiction"],"tags":[],"added":"2020-03-14T17:35:09Z","ratings":{"votes":2,"value":6},"id":553},{"title":"Prometheus","originalTitle":"Prometheus","alternateTitles":[{"sourceType":"tmdb","movieId":554,"title":"Alien 0","sourceId":70981,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1304},{"sourceType":"tmdb","movieId":554,"title":"Alien: Prometheus","sourceId":70981,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1305},{"sourceType":"tmdb","movieId":554,"title":"Prometheus 3D","sourceId":70981,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1306},{"sourceType":"tmdb","movieId":554,"title":"Untitled Alien Prequel","sourceId":70981,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1307},{"sourceType":"tmdb","movieId":554,"title":"Prometeo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1681},{"sourceType":"tmdb","movieId":554,"title":"Prometheus 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1682},{"sourceType":"tmdb","movieId":554,"title":"\u05d4\u05e0\u05d5\u05e1\u05e2 \u05d4\u05e9\u05de\u05d9\u05e0\u05d9: \u05e4\u05e8\u05d5\u05de\u05ea\u05d9\u05d0\u05d5\u05e1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1683},{"sourceType":"tmdb","movieId":554,"title":"\ud504\ub85c\uba54\ud14c\uc6b0\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1684},{"sourceType":"tmdb","movieId":554,"title":"\ud504\ub85c\uba54\ud14c\uc6b0\uc2a4-\ud655\uc7a5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1685},{"sourceType":"tmdb","movieId":554,"title":"Prometeusz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":5143},{"sourceType":"tmdb","movieId":554,"title":"Alien (5) : Prometheus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5180}],"secondaryYearSourceId":0,"sortTitle":"prometheus","sizeOnDisk":2963476552,"status":"released","overview":"A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.","inCinemas":"2012-05-30T00:00:00Z","physicalRelease":"2012-10-03T00:00:00Z","digitalRelease":"2017-06-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/554\/poster.jpg?lastWrite=637649130108049300","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qsYQflQhOuhDpQ0W2aOcwqgDAeI.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/554\/fanart.jpg?lastWrite=637666432565030675","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2JGYpteleFedXVJYKMR6Za7oBU9.jpg"}],"website":"https:\/\/www.20thcenturystudios.com\/movies\/prometheus","year":2012,"hasFile":true,"youTubeTrailerId":"34cEo0VhfGE","studio":"Dune Entertainment","path":"\/movies\/Prometheus (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Prometheus (2012)","runtime":124,"cleanTitle":"prometheus","imdbId":"tt1446714","tmdbId":70981,"titleSlug":"70981","certification":"R","genres":["Science Fiction","Adventure","Mystery"],"tags":[],"added":"2020-03-14T17:35:21Z","ratings":{"votes":9618,"value":6.5},"movieFile":{"movieId":554,"relativePath":"Prometheus.2012-Bluray-1080p.mp4","path":"\/movies\/Prometheus (2012)\/Prometheus.2012-Bluray-1080p.mp4","size":2963476552,"dateAdded":"2020-04-02T05:05:00Z","sceneName":"Prometheus 2012 1080p BluRay QEBSx AAC51 MP4-FASM","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":392336,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2796087,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x800","runTime":"2:03:46","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FASM","edition":"","id":667},"collection":{"name":"Prometheus Collection","tmdbId":135416,"images":[]},"id":554},{"title":"Alien: Covenant","originalTitle":"Alien: Covenant","alternateTitles":[{"sourceType":"tmdb","movieId":555,"title":"Alien: Paradise Lost","sourceId":126889,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1309},{"sourceType":"tmdb","movieId":555,"title":"Prometheus 2","sourceId":126889,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1310},{"sourceType":"tmdb","movieId":555,"title":"Prometheus 2: Alien Covenant","sourceId":126889,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1311},{"sourceType":"tmdb","movieId":555,"title":"\u666e\u7f57\u7c73\u4fee\u65af2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3330},{"sourceType":"tmdb","movieId":555,"title":"\u03a0\u03c1\u03bf\u03bc\u03b7\u03b8\u03ad\u03b1\u03c2 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3331},{"sourceType":"tmdb","movieId":555,"title":"Prometej 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3332},{"sourceType":"tmdb","movieId":555,"title":"\u05e4\u05e8\u05d5\u05de\u05ea\u05d9\u05d0\u05d5\u05e1 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3333},{"sourceType":"tmdb","movieId":555,"title":"\uc5d0\uc77c\ub9ac\uc5b8: \ucee4\ubc84\ub10c\ud2b8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3334},{"sourceType":"tmdb","movieId":555,"title":"\u041f\u0440\u043e\u043c\u0435\u0442\u0435\u0439 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3335},{"sourceType":"tmdb","movieId":555,"title":"Vet\u0159elec: Covenant","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5429}],"secondaryYearSourceId":0,"sortTitle":"alien covenant","sizeOnDisk":31154152327,"status":"released","overview":"Bound for a remote planet on the far side of the galaxy, the crew of the colony ship 'Covenant' discovers what is thought to be an uncharted paradise, but is actually a dark, dangerous world\u2014which has a sole inhabitant: the 'synthetic', David, survivor of the doomed Prometheus expedition.","inCinemas":"2017-05-09T00:00:00Z","physicalRelease":"2017-07-13T00:00:00Z","digitalRelease":"2017-09-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/555\/poster.jpg?lastWrite=637666431789203615","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zecMELPbU5YMQpC81Z8ImaaXuf9.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/555\/fanart.jpg?lastWrite=637666431808963285","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6jajFcaY2YsfGQstJ5HaqZNVseX.jpg"}],"website":"https:\/\/www.20thcenturystudios.com\/movies\/alien-covenant","year":2017,"hasFile":true,"youTubeTrailerId":"svnAD0TApb8","studio":"Scott Free Productions","path":"\/movies\/Alien Covenant (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Alien Covenant (2017)","runtime":122,"cleanTitle":"aliencovenant","imdbId":"tt2316204","tmdbId":126889,"titleSlug":"126889","certification":"R","genres":["Horror","Science Fiction","Mystery"],"tags":[],"added":"2020-03-14T17:35:42Z","ratings":{"votes":6637,"value":6},"movieFile":{"movieId":555,"relativePath":"Alien Covenant.2017-Remux-1080p.mkv","path":"\/movies\/Alien Covenant (2017)\/Alien Covenant.2017-Remux-1080p.mkv","size":31154152327,"dateAdded":"2020-03-15T10:47:02Z","sceneName":"Alien.Covenant.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"ES XLL","audioBitrate":0,"audioChannels":7.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ Spanish \/ French \/ Portuguese \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:02:03","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ French \/ Danish \/ Finnish \/ Norwegian \/ Portuguese \/ Swedish \/ English \/ Spanish \/ French \/ Danish \/ Finnish \/ Norwegian \/ Swedish"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":660},"collection":{"name":"Prometheus Collection","tmdbId":135416,"images":[]},"id":555},{"title":"Alien Outbreak","originalTitle":"Alien Outbreak","alternateTitles":[{"sourceType":"tmdb","movieId":556,"title":"\u0418\u043d\u043e\u043f\u043b\u0430\u043d\u0435\u0442\u043d\u043e\u0435 \u0432\u0442\u043e\u0440\u0436\u0435\u043d\u0438\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5138},{"sourceType":"tmdb","movieId":556,"title":"\u5f02\u5f62\u7a81\u7834","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5650}],"secondaryYearSourceId":0,"sortTitle":"alien outbreak","sizeOnDisk":10426160700,"status":"released","overview":"In a small rural community, local police officers Zoe and Patrick begin their shift as normal but soon, strange events unfold. Residents begin behaving erratically, and suicidal panic spreads amongst the township they are trying to protect. Zoe and Patrick realise alien machines are taking hold, cutting their small group of survivors off from the outside world. Can the determined humans band together to save their community, and all mankind, from extinction?","inCinemas":"2020-02-11T00:00:00Z","physicalRelease":"2020-07-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/556\/poster.jpg?lastWrite=637339693353037539","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5m4Gw9wTRxUdDnx7UNn1bNLN54J.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/556\/fanart.jpg?lastWrite=637651724513681021","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kwkAGwtwS57FckZq6n44oipW1AN.jpg"}],"website":"","year":2020,"hasFile":true,"youTubeTrailerId":"QmQDZ-J5Pk4","studio":"Rendered Pictures","path":"\/movies\/Alien Outbreak (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Alien Outbreak (2020)","runtime":84,"cleanTitle":"alienoutbreak","imdbId":"tt6409856","tmdbId":668343,"titleSlug":"668343","certification":"R","genres":["Science Fiction","Horror"],"tags":[],"added":"2020-03-14T17:35:43Z","ratings":{"votes":18,"value":3.8},"movieFile":{"movieId":556,"relativePath":"Alien Outbreak.2020-Bluray-1080p.mkv","path":"\/movies\/Alien Outbreak (2020)\/Alien Outbreak.2020-Bluray-1080p.mkv","size":10426160700,"dateAdded":"2021-06-19T06:24:23Z","sceneName":"Alien.Outbreak.2020.1080p.Bluray.DTS-HD.MA.5.1.X264-EVO","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":14000000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x800","runTime":"1:24:41","scanType":"Progressive","subtitles":""},"originalFilePath":"Alien.Outbreak.2020.1080p.Bluray.DTS-HD.MA.5.1.X264-EVO[TGx]\/Alien.Outbreak.2020.1080p.Bluray.DTS-HD.MA.5.1.X264-EVO.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"EVO","edition":"","id":723},"id":556},{"title":"Alien Warfare","originalTitle":"Alien Warfare","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"alien warfare","sizeOnDisk":0,"status":"released","overview":"A team of Navy Seals investigates a mysterious science outpost only to have to combat a squad of powerful alien soldiers.","digitalRelease":"2019-04-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/557\/poster.jpg?lastWrite=637638749445299527","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rJOj0T5DyChfECevDg0xpEGznsl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/557\/fanart.jpg?lastWrite=637638749447859475","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sumajFyOoIKubI15POZ0p8Ekpzu.jpg"}],"website":"","year":2019,"hasFile":false,"youTubeTrailerId":"","studio":"Actionhouse Pictures","path":"\/movies\/Alien Warfare (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Alien Warfare (2019)","runtime":88,"cleanTitle":"alienwarfare","imdbId":"tt9562694","tmdbId":593035,"titleSlug":"593035","genres":["Action","Science Fiction","Thriller"],"tags":[],"added":"2020-03-14T17:35:47Z","ratings":{"votes":97,"value":4.2},"id":557},{"title":"Contagion","originalTitle":"Contagion","alternateTitles":[{"sourceType":"tmdb","movieId":558,"title":"Cont\u00e1gio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4538},{"sourceType":"tmdb","movieId":558,"title":"\u4f20\u67d3\u75c5","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4539},{"sourceType":"tmdb","movieId":558,"title":"Tartunta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":4540},{"sourceType":"tmdb","movieId":558,"title":"\ucee8\ud14c\uc774\uc83c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4541},{"sourceType":"tmdb","movieId":558,"title":"\u5168\u5883\u64f4\u6563","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4542},{"sourceType":"tmdb","movieId":558,"title":"Contagion: Pericol nev\u0103zut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":27,"name":"Romanian"},"id":5879},{"sourceType":"tmdb","movieId":558,"title":"Epidemia: Pericol nev\u0103zut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":27,"name":"Romanian"},"id":5880}],"secondaryYearSourceId":0,"sortTitle":"contagion","sizeOnDisk":2029102852,"status":"released","overview":"As an epidemic of a lethal airborne virus - that kills within days - rapidly grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself.","inCinemas":"2011-09-08T00:00:00Z","physicalRelease":"2012-01-25T00:00:00Z","digitalRelease":"2014-09-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/558\/poster.jpg?lastWrite=637630100019268047","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qL0IooP0bjXy0KXl9KEyPo22ll0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/558\/fanart.jpg?lastWrite=637631829910211223","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/2Dma33SmE4qAiEcOyjf5iw9FpFc.jpg"}],"website":"http:\/\/contagionmovie.warnerbros.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"4sYSyuuLk5g","studio":"Participant","path":"\/movies\/Contagion (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Contagion (2011)","runtime":106,"cleanTitle":"contagion","imdbId":"tt1598778","tmdbId":39538,"titleSlug":"39538","certification":"PG-13","genres":["Drama","Thriller","Science Fiction"],"tags":[],"added":"2020-03-22T20:54:23Z","ratings":{"votes":4669,"value":6.6},"movieFile":{"movieId":558,"relativePath":"Contagion.2011-Bluray-1080p.mp4","path":"\/movies\/Contagion (2011)\/Contagion.2011-Bluray-1080p.mp4","size":2029102852,"dateAdded":"2020-03-22T21:09:29Z","sceneName":"Contagion (2011) [1080p] [BluRay] [5.1] [YTS.MX]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":288000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1072","runTime":"1:46:25","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":662},"id":558},{"title":"The Platform","originalTitle":"El hoyo","alternateTitles":[{"sourceType":"tmdb","movieId":559,"title":"La plataforma","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":2213},{"sourceType":"tmdb","movieId":559,"title":"O Po\u00e7o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5624}],"secondaryYearSourceId":0,"sortTitle":"platform","sizeOnDisk":5445466451,"status":"released","overview":"A mysterious place, an indescribable prison, a deep hole. An unknown number of levels. Two inmates living on each level. A descending platform containing food for all of them. An inhuman fight for survival, but also an opportunity for solidarity.","inCinemas":"2019-11-08T00:00:00Z","physicalRelease":"2020-03-20T00:00:00Z","digitalRelease":"2020-03-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/559\/poster.jpg?lastWrite=637636155162004863","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8ZX18L5m6rH5viSYpRnTSbb9eXh.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/559\/fanart.jpg?lastWrite=637636155164044829","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3tkDMNfM2YuIAJlvGO6rfIzAnfG.jpg"}],"website":"http:\/\/www.elhoyolapelicula.com\/index.php\/en","year":2019,"hasFile":true,"youTubeTrailerId":"RlfooqeZcdY","studio":"Basque Films","path":"\/movies\/The Platform (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Platform (2019)","runtime":95,"cleanTitle":"theplatform","imdbId":"tt8228288","tmdbId":619264,"titleSlug":"619264","certification":"NC-17","genres":["Drama","Science Fiction","Thriller"],"tags":[],"added":"2020-03-25T17:46:35Z","ratings":{"votes":4838,"value":7},"movieFile":{"movieId":559,"relativePath":"The Platform.2019-Bluray-1080p.mkv","path":"\/movies\/The Platform (2019)\/The Platform.2019-Bluray-1080p.mkv","size":5445466451,"dateAdded":"2021-08-09T16:14:42Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"Spanish \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6279536,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x804","runTime":"1:38:53","scanType":"","subtitles":"English \/ Japanese"},"originalFilePath":"The Platform (2019) (1080p BluRay x265 Spanish + English Bandi).mkv","qualityCutoffNotMet":false,"languages":[{"id":3,"name":"Spanish"},{"id":1,"name":"English"}],"releaseGroup":"Bandi","edition":"","id":731},"id":559},{"title":"Looper","originalTitle":"Looper","alternateTitles":[{"sourceType":"tmdb","movieId":560,"title":"Looper: Assassinos do Futuro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3758},{"sourceType":"tmdb","movieId":560,"title":"Looper: Les Tueurs Du Temps","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3759},{"sourceType":"tmdb","movieId":560,"title":"\u0423\u0431\u0438\u0446\u0435 \u0438\u0437 \u0431\u0443\u0434\u0443\u045b\u043d\u043e\u0441\u0442\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":25,"name":"Czech"},"id":3760},{"sourceType":"tmdb","movieId":560,"title":"Looper: \u0391\u03bd\u03c4\u03b9\u03bc\u03ad\u03c4\u03c9\u03c0\u03bf\u03b9 \u039c\u03b5 \u03a4\u03bf \u03a7\u03c1\u03cc\u03bd\u03bf","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3761},{"sourceType":"tmdb","movieId":560,"title":"\u65f6\u51f6\u7375\u6bba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3762},{"sourceType":"tmdb","movieId":560,"title":"Looper - A j\u00f6v\u0151 gyilkosa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":3763},{"sourceType":"tmdb","movieId":560,"title":"Looper\uff0f\u30eb\u30fc\u30d1\u30fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3764},{"sourceType":"tmdb","movieId":560,"title":"\ub8e8\ud37c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3765},{"sourceType":"tmdb","movieId":560,"title":"Laiko kilpa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3766},{"sourceType":"tmdb","movieId":560,"title":"Asesino del futuro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3767},{"sourceType":"tmdb","movieId":560,"title":"Looper - P\u0119tla czasu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":3768},{"sourceType":"tmdb","movieId":560,"title":"Looper - Reflexo Assassino","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":3769},{"sourceType":"tmdb","movieId":560,"title":"\u041f\u0435\u0442\u043b\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":3770},{"sourceType":"tmdb","movieId":560,"title":"\u8ff4\u8def\u6bba\u624b","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3771},{"sourceType":"tmdb","movieId":560,"title":"\u0423\u0431\u0438\u0446\u0430 \u0438\u0437 \u0431\u0443\u0434\u0443\u045b\u043d\u043e\u0441\u0442\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3772}],"secondaryYearSourceId":0,"sortTitle":"looper","sizeOnDisk":2434336904,"status":"released","overview":"In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.","inCinemas":"2012-09-26T00:00:00Z","physicalRelease":"2013-01-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/560\/poster.jpg?lastWrite=637649130017490843","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sNjL6SqErDBE8OUZlrDLkexfsCj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/560\/fanart.jpg?lastWrite=637624911301163907","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ibm6NuTMI2linSGaEwOy3sQV8Oa.jpg"}],"website":"http:\/\/loopermovie.com\/","year":2012,"hasFile":true,"youTubeTrailerId":"4Kn-MmuK3BI","studio":"TriStar Pictures","path":"\/movies\/Looper (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Looper (2012)","runtime":118,"cleanTitle":"looper","imdbId":"tt1276104","tmdbId":59967,"titleSlug":"59967","certification":"R","genres":["Action","Thriller","Science Fiction"],"tags":[],"added":"2020-03-29T17:54:18Z","ratings":{"votes":8440,"value":6.9},"movieFile":{"movieId":560,"relativePath":"Looper.2012-Bluray-1080p.mp4","path":"\/movies\/Looper (2012)\/Looper.2012-Bluray-1080p.mp4","size":2434336904,"dateAdded":"2020-03-29T19:01:59Z","sceneName":"Looper.2012.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:58:53","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":666},"id":560},{"title":"What Happened to Monday","originalTitle":"What Happened to Monday","alternateTitles":[{"sourceType":"tmdb","movieId":561,"title":"Seven Sisters","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3961},{"sourceType":"tmdb","movieId":561,"title":"7 Sisters","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3962},{"sourceType":"tmdb","movieId":561,"title":"\u4e03\u5973","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3963},{"sourceType":"tmdb","movieId":561,"title":"\u661f\u671f\u4e00\u53d1\u751f\u4e86\u4ec0\u4e48","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3964},{"sourceType":"tmdb","movieId":561,"title":"\u661f\u671f\u4e00\u600e\u4e48\u4e86","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3965},{"sourceType":"tmdb","movieId":561,"title":"Was geschah am Montag?","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3966},{"sourceType":"tmdb","movieId":561,"title":"Sept soeurs","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3967},{"sourceType":"tmdb","movieId":561,"title":"Sept s\u0153urs","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3968},{"sourceType":"tmdb","movieId":561,"title":"\uc6d4\uc694\uc77c\uc774 \uc0ac\ub77c\uc84c\ub2e4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3969},{"sourceType":"tmdb","movieId":561,"title":"Qu\u00e9 le pas\u00f3 a lunes?","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3970}],"secondaryYearSourceId":0,"sortTitle":"what happened to monday","sizeOnDisk":2134212354,"status":"released","overview":"In a world where families are limited to one child due to overpopulation, a set of identical septuplets must avoid being put to a long sleep by the government and dangerous infighting while investigating the disappearance of one of their own.","inCinemas":"2017-08-18T00:00:00Z","physicalRelease":"2017-11-27T00:00:00Z","digitalRelease":"2017-08-18T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/561\/poster.jpg?lastWrite=637638749958409083","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/o6EsOqITcSzcdwD1zxBM9imdxjr.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/561\/fanart.jpg?lastWrite=637612803066697318","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/j7ij93mtHXAF8D3PjRSEaKPHpIE.jpg"}],"website":"","year":2017,"hasFile":true,"youTubeTrailerId":"idZPTuwcMJA","studio":"Nexus Factory","path":"\/movies\/What Happened to Monday (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/What Happened to Monday (2017)","runtime":123,"cleanTitle":"whathappenedtomonday","imdbId":"tt1536537","tmdbId":406990,"titleSlug":"406990","certification":"R","genres":["Science Fiction","Thriller","Drama"],"tags":[],"added":"2020-04-22T16:10:33Z","ratings":{"votes":4896,"value":7.2},"movieFile":{"movieId":561,"relativePath":"What Happened to Monday.2017-Bluray-1080p.mp4","path":"\/movies\/What Happened to Monday (2017)\/What Happened to Monday.2017-Bluray-1080p.mp4","size":2134212354,"dateAdded":"2020-04-22T16:16:45Z","sceneName":"What Happened To Monday (2017) [BluRay] [1080p] [YTS.AM]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":147843,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2150000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x800","runTime":"2:03:31","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":669},"id":561},{"title":"Atlas Shrugged: Part III","originalTitle":"Atlas Shrugged: Part III","alternateTitles":[{"sourceType":"tmdb","movieId":562,"title":"Atlas Shrugged Part 3","sourceId":199933,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1327},{"sourceType":"tmdb","movieId":562,"title":"Atlas Shrugged Part III: Who Is John Galt?","sourceId":199933,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1328},{"sourceType":"tmdb","movieId":562,"title":"Atlas Shrugged: Who is John Galt?","sourceId":199933,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1329}],"secondaryYearSourceId":0,"sortTitle":"atlas shrugged part iii","sizeOnDisk":1958499963,"status":"released","overview":"Approaching collapse, the nation's economy is quickly eroding. As crime and fear take over the countryside, the government continues to exert its brutal force against the nation's most productive who are mysteriously vanishing - leaving behind a wake of despair. One man has the answer. One woman stands in his way. Some will stop at nothing to control him. Others will stop at nothing to save him. He swore by his life. They swore to find him.","inCinemas":"2014-09-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/562\/poster.jpg?lastWrite=637617126820823913","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wR7NM125F63zxECZKCVMzibkWpZ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/562\/fanart.jpg?lastWrite=637617126822143892","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xGd7vtT9AQAe9uq15GlCaCLKUKo.jpg"}],"website":"http:\/\/www.atlasshruggedmovie.com\/","year":2014,"hasFile":true,"youTubeTrailerId":"EW0Ocr0Ikpw","studio":"Atlas 3 Productions","path":"\/movies\/Atlas Shrugged Part III (2014)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Atlas Shrugged Part III (2014)","runtime":99,"cleanTitle":"atlasshruggedpartiii","imdbId":"tt2800038","tmdbId":199933,"titleSlug":"199933","certification":"PG-13","genres":["Drama","Science Fiction","Mystery"],"tags":[],"added":"2020-04-24T22:15:56Z","ratings":{"votes":48,"value":4.1},"movieFile":{"movieId":562,"relativePath":"Atlas Shrugged Part III.2014-Bluray-1080p.mp4","path":"\/movies\/Atlas Shrugged Part III (2014)\/Atlas Shrugged Part III.2014-Bluray-1080p.mp4","size":1958499963,"dateAdded":"2020-04-24T22:52:27Z","sceneName":"Atlas Shrugged Who Is John Galt (2014) [1080p] [BluRay] [5.1] [YTS.MX]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1072","runTime":"1:39:02","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":671},"collection":{"name":"Atlas Shrugged Collection","tmdbId":166381,"images":[]},"id":562},{"title":"Atlas Shrugged: Part I","originalTitle":"Atlas Shrugged: Part I","alternateTitles":[{"sourceType":"tmdb","movieId":563,"title":"Atlas Shrugged Part 1","sourceId":56780,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1330},{"sourceType":"tmdb","movieId":563,"title":"A Revolta de Atlas Parte 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1373},{"sourceType":"tmdb","movieId":563,"title":"\u963f\u7279\u62c9\u65af\u8038\u8038\u80a9\uff1a\u7b2c\u4e00\u90e8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1374},{"sourceType":"tmdb","movieId":563,"title":"Atlas wirft die Welt ab","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":1375}],"secondaryYearSourceId":0,"sortTitle":"atlas shrugged part i","sizeOnDisk":9391255059,"status":"released","overview":"A powerful railroad executive, Dagny Taggart, struggles to keep her business alive while society is crumbling around her. Based on the 1957 novel by Ayn Rand.","inCinemas":"2011-04-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/563\/poster.jpg?lastWrite=637639614366158876","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tYfZIQb6ZabSUy1s1TRqSrYaAoM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/563\/fanart.jpg?lastWrite=637613667290706646","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9T6BFDrcLFr5R9To0yTToCURthf.jpg"}],"website":"http:\/\/www.atlasshruggedpart1.com\/","year":2011,"hasFile":true,"youTubeTrailerId":"6W07bFa4TzM","studio":"Atlas Productions","path":"\/movies\/Atlas Shrugged Part I (2011)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Atlas Shrugged Part I (2011)","runtime":97,"cleanTitle":"atlasshruggedparti","imdbId":"tt0480239","tmdbId":56780,"titleSlug":"56780","certification":"PG-13","genres":["Drama","Thriller","Science Fiction"],"tags":[],"added":"2020-04-24T22:15:57Z","ratings":{"votes":139,"value":5.3},"movieFile":{"movieId":563,"relativePath":"Atlas Shrugged Part I.2011-Bluray-1080p.mkv","path":"\/movies\/Atlas Shrugged Part I (2011)\/Atlas Shrugged Part I.2011-Bluray-1080p.mkv","size":9391255059,"dateAdded":"2020-05-19T01:32:19Z","sceneName":"Atlas.Shrugged.Part.1.2011.1080p.BluRay.x264.DTS-FGT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":11418000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:36:58","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":677},"collection":{"name":"Atlas Shrugged Collection","tmdbId":166381,"images":[]},"id":563},{"title":"Atlas Shrugged: Part II","originalTitle":"Atlas Shrugged: Part II","alternateTitles":[{"sourceType":"tmdb","movieId":564,"title":"Atlas Shrugged 2","sourceId":134371,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1331},{"sourceType":"tmdb","movieId":564,"title":"Atlas Shrugged Part II: The Strike","sourceId":134371,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1332},{"sourceType":"tmdb","movieId":564,"title":"A Revolta de Atlas Parte II","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3602}],"secondaryYearSourceId":0,"sortTitle":"atlas shrugged part ii","sizeOnDisk":2282314944,"status":"released","overview":"The global economy is on the brink of collapse. Brilliant creators, from artists to industrialists, continue to mysteriously disappear. Unemployment has risen to 24%. Gas is now $42 per gallon. Dagny Taggart, Vice President in Charge of Operations for Taggart Transcontinental, has discovered what may very well be the answer to the mounting energy crisis - found abandoned amongst ruins, a miraculous motor that could seemingly power the World. But, the motor is dead... there is no one left to decipher its secret... and, someone is watching. It\u2019s a race against the clock to find the inventor and stop the destroyer before the motor of the World is stopped for good. A motor that would power the World. A World whose motor would be stopped. Who is John Galt?","inCinemas":"2012-10-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/564\/poster.jpg?lastWrite=637613667305106423","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9iwPz9zy1uCP73QMxhNs6gaTTom.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/564\/fanart.jpg?lastWrite=637613667305946410","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gh7pgS9iskzlRMWfa8UEeGY6RgA.jpg"}],"website":"http:\/\/www.AtlasShruggedMovie.com","year":2012,"hasFile":true,"youTubeTrailerId":"AF9QT43uDQU","studio":"Cinema Vehicle Services","path":"\/movies\/Atlas Shrugged Part II (2012)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Atlas Shrugged Part II (2012)","runtime":112,"cleanTitle":"atlasshruggedpartii","imdbId":"tt1985017","tmdbId":134371,"titleSlug":"134371","certification":"PG-13","genres":["Drama","Science Fiction","Mystery"],"tags":[],"added":"2020-04-24T22:15:59Z","ratings":{"votes":93,"value":5.3},"movieFile":{"movieId":564,"relativePath":"Atlas.Shrugged.Part.2.2012.1080p.BluRay.H264.AAC-RARBG.mp4","path":"\/movies\/Atlas Shrugged Part II (2012)\/Atlas.Shrugged.Part.2.2012.1080p.BluRay.H264.AAC-RARBG.mp4","size":2282314944,"dateAdded":"2020-05-18T17:38:38Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:51:34","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":676},"collection":{"name":"Atlas Shrugged Collection","tmdbId":166381,"images":[]},"id":564},{"title":"Train to Busan","originalTitle":"\ubd80\uc0b0\ud589","alternateTitles":[{"sourceType":"tmdb","movieId":565,"title":"Invasi\u00f3n Zombie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2261},{"sourceType":"tmdb","movieId":565,"title":"Invas\u00e3o Zumbi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2262},{"sourceType":"tmdb","movieId":565,"title":"Busanhaeng","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2263},{"sourceType":"tmdb","movieId":565,"title":"Voz za Pusan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2264},{"sourceType":"tmdb","movieId":565,"title":"\u91dc\u5c71\u884c1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5588},{"sourceType":"tmdb","movieId":565,"title":"Estaci\u00f3n Zombie","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5633},{"sourceType":"tmdb","movieId":565,"title":"Tren a Busan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5947}],"secondaryYearSourceId":0,"sortTitle":"train to busan","sizeOnDisk":9389652649,"status":"released","overview":"Martial law is declared when a mysterious viral outbreak pushes Korea into a state of emergency. Those on an express train to Busan, a city that has successfully fended off the viral outbreak, must fight for their own survival\u2026","inCinemas":"2016-07-20T00:00:00Z","physicalRelease":"2017-02-24T00:00:00Z","digitalRelease":"2018-02-17T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/565\/poster.jpg?lastWrite=637632694705004982","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3H1WFCuxyNRP35oiL2qqwhAXxc0.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/565\/fanart.jpg?lastWrite=637640479804427061","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fVpFOcQyHJM2di9upgSIwWD5wac.jpg"}],"website":"https:\/\/www.wellgousa.com\/films\/train-to-busan","year":2016,"hasFile":true,"youTubeTrailerId":"E2nrE9JnaDg","studio":"Next Entertainment World","path":"\/movies\/Train to Busan (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Train to Busan (2016)","runtime":118,"cleanTitle":"traintobusan","imdbId":"tt5700672","tmdbId":396535,"titleSlug":"396535","certification":"NR","genres":["Action","Horror","Thriller"],"tags":[],"added":"2020-04-28T21:05:40Z","ratings":{"votes":5005,"value":7.8},"movieFile":{"movieId":565,"relativePath":"Train to Busan.2016-Bluray-1080p.mkv","path":"\/movies\/Train to Busan (2016)\/Train to Busan.2016-Bluray-1080p.mkv","size":9389652649,"dateAdded":"2020-04-28T21:44:41Z","sceneName":"Train.to.Busan.2016.1080p.BluRay.X264-PSYCHD[EtHD]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"Korean","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9104000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1040","runTime":"1:57:56","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"PSYCHD","edition":"","id":672},"collection":{"name":"Train to Busan Collection","tmdbId":619537,"images":[]},"id":565},{"title":"Untitled Train to Busan Remake","originalTitle":"Untitled Train to Busan Remake","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"untitled train to busan remake","sizeOnDisk":0,"status":"announced","overview":"English-language remake of the 2016 South Korean film.","images":[],"website":"","year":0,"hasFile":false,"youTubeTrailerId":"","studio":"Atomic Monster","path":"\/movies\/Train To Busan 2 Peninsula (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Train To Busan 2 Peninsula (2020)","runtime":0,"cleanTitle":"untitledtraintobusanremake","imdbId":"tt9256744","tmdbId":550446,"titleSlug":"550446","genres":["Horror","Action"],"tags":[],"added":"2020-04-28T21:05:42Z","ratings":{"votes":0,"value":0},"id":566},{"title":"1408","originalTitle":"1408","alternateTitles":[{"sourceType":"tmdb","movieId":567,"title":"Room 1408","sourceId":3021,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":1337},{"sourceType":"tmdb","movieId":567,"title":"1408 - Stephen King","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4319},{"sourceType":"tmdb","movieId":567,"title":"1408\u5e7b\u5f71\u51f6\u95f4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4320},{"sourceType":"tmdb","movieId":567,"title":"\u5e7b\u5f71\u51f6\u95f4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4321},{"sourceType":"tmdb","movieId":567,"title":"\u7b2c1408\u53f7\u623f\u95f4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4322},{"sourceType":"tmdb","movieId":567,"title":"Zimmer 1408 - Schliesse diese Tuere nicht","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4323},{"sourceType":"tmdb","movieId":567,"title":"Chambre 1408","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":4324},{"sourceType":"tmdb","movieId":567,"title":"La Habitaci\u00f3n 1408","sourceId":0,"votes":0,"voteCount":0,"language":{"id":14,"name":"Swedish"},"id":4325},{"sourceType":"tmdb","movieId":567,"title":"1408 \u0e2b\u0e49\u0e2d\u0e07\u0e2a\u0e38\u0e2a\u0e32\u0e19\u0e41\u0e15\u0e01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5493}],"secondaryYearSourceId":0,"sortTitle":"1408","sizeOnDisk":1766282035,"status":"released","overview":"A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.","inCinemas":"2007-06-22T00:00:00Z","physicalRelease":"2008-01-19T00:00:00Z","digitalRelease":"2009-10-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/567\/poster.jpg?lastWrite=637537558048260799","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yE9MCW7ZNxSw5SC1TMqm51pMBIV.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/567\/fanart.jpg?lastWrite=637637884583466417","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yzltOpo9TzfgB7h7U7seIOYqcf5.jpg"}],"website":"","year":2007,"hasFile":true,"youTubeTrailerId":"WIASqPZqnhs","studio":"Di Bonaventura Pictures","path":"\/movies\/1408 (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/1408 (2007)","runtime":104,"cleanTitle":"1408","imdbId":"tt0450385","tmdbId":3021,"titleSlug":"3021","certification":"PG-13","genres":["Horror"],"tags":[],"added":"2020-04-30T18:28:37Z","ratings":{"votes":3182,"value":6.6},"movieFile":{"movieId":567,"relativePath":"1408.2007-Bluray-1080p.mp4","path":"\/movies\/1408 (2007)\/1408.2007-Bluray-1080p.mp4","size":1766282035,"dateAdded":"2020-04-30T18:38:01Z","sceneName":"1408 (2007) [1080p]","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":93784,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1997000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:52:26","scanType":"Progressive","subtitles":""},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":673},"id":567},{"title":"A Shaun the Sheep Movie: Farmageddon","originalTitle":"A Shaun the Sheep Movie: Farmageddon","alternateTitles":[{"sourceType":"tmdb","movieId":568,"title":"Shaun, el cordero: La pel\u00edcula: Granjaged\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3946},{"sourceType":"tmdb","movieId":568,"title":"Xiao Yang Xiao En 2: Mo Ri Nong Chang","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3947},{"sourceType":"tmdb","movieId":568,"title":"Shaun das Schaf \u2013 UFO-Alarm","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":3948},{"sourceType":"tmdb","movieId":568,"title":"F for f\u00e5r filmen - F\u00e5rmageddon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3949},{"sourceType":"tmdb","movieId":568,"title":"Lammas Shaun.Film.Farmigeddon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3950},{"sourceType":"tmdb","movieId":568,"title":"Shaun le mouton le film 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":3951},{"sourceType":"tmdb","movieId":568,"title":"Shaun the Sheep 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3952},{"sourceType":"tmdb","movieId":568,"title":"Shaun the Sheep Movie 2: Farmageddon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3953},{"sourceType":"tmdb","movieId":568,"title":"\u03a3\u03bf\u03bd \u03c4\u03bf \u03a0\u03c1\u03cc\u03b2\u03b1\u03c4\u03bf: \u0397 \u03a4\u03b1\u03b9\u03bd\u03af\u03b1 - \u03a6\u03b1\u03c1\u03bc\u03b1\u03b3\u03b5\u03b4\u03ce\u03bd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3954},{"sourceType":"tmdb","movieId":568,"title":"\u6620\u753b\u3000\u3072\u3064\u3058\u306e\u30b7\u30e7\u30fc\u30f3 UFO\u30d5\u30a3\u30fc\u30d0\u30fc\uff01","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3955},{"sourceType":"tmdb","movieId":568,"title":"Aviuko Sono filmas. Farmagedoinas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3956},{"sourceType":"tmdb","movieId":568,"title":"Auni\u0146\u0161 \u0160ons filma: Fermagedons","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":3957},{"sourceType":"tmdb","movieId":568,"title":"Shaun het schaap 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3958},{"sourceType":"tmdb","movieId":568,"title":"Shaun het schaap: het ruimte schaap","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":3959},{"sourceType":"tmdb","movieId":568,"title":"Sauen Shaun filmen: Farmageddon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":15,"name":"Norwegian"},"id":3960},{"sourceType":"tmdb","movieId":568,"title":"\ubabb\ub9d0\ub9ac\ub294 \uc5b4\ub9b0\uc591 \uc200","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4193},{"sourceType":"tmdb","movieId":568,"title":"Shaun, o Carneiro: O Filme - A Fazenda Contra-Ataca","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5942}],"secondaryYearSourceId":0,"sortTitle":"shaun sheep movie farmageddon","sizeOnDisk":25365620618,"status":"released","overview":"When an alien with amazing powers crash-lands near Mossy Bottom Farm, Shaun the Sheep goes on a mission to shepherd the intergalactic visitor home before a sinister organization can capture her.","inCinemas":"2019-09-26T00:00:00Z","physicalRelease":"2020-02-10T00:00:00Z","digitalRelease":"2020-04-01T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/568\/poster.jpg?lastWrite=637662106799092932","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/p08FoXVFgcRm5QZBaGj0VKa2W2Y.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/568\/fanart.jpg?lastWrite=637636155194524323","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/AgYlP6g4vrNn1sVsAIvflW3TfJU.jpg"}],"website":"https:\/\/shaunthesheep.com\/movie","year":2019,"hasFile":true,"youTubeTrailerId":"aRVEm-yrm-k","studio":"StudioCanal","path":"\/movies\/A Shaun the Sheep Movie Farmageddon (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/A Shaun the Sheep Movie Farmageddon (2019)","runtime":87,"cleanTitle":"ashaunsheepmoviefarmageddon","imdbId":"tt6193408","tmdbId":422803,"titleSlug":"422803","certification":"G","genres":["Comedy","Animation","Family"],"tags":[],"added":"2020-05-12T20:59:17Z","ratings":{"votes":313,"value":7},"movieFile":{"movieId":568,"relativePath":"A Shaun the Sheep Movie Farmageddon.2019-Remux-1080p.mkv","path":"\/movies\/A Shaun the Sheep Movie Farmageddon (2019)\/A Shaun the Sheep Movie Farmageddon.2019-Remux-1080p.mkv","size":25365620618,"dateAdded":"2020-05-13T03:49:14Z","sceneName":"A.Shaun.the.Sheep.Movie.Farmageddon.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":4127780,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English \/ English \/ English","audioStreamCount":4,"videoBitDepth":8,"videoBitrate":27774269,"videoCodec":"AVC","videoFps":24.0,"resolution":"1920x1080","runTime":"1:26:47","scanType":"Progressive","subtitles":"English \/ English \/ English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":675},"collection":{"name":"Shaun the Sheep Collection","tmdbId":624521,"images":[]},"id":568},{"title":"Top Secret!","originalTitle":"Top Secret!","alternateTitles":[{"sourceType":"tmdb","movieId":569,"title":"Top Secret! Super Confidencial","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":2654},{"sourceType":"tmdb","movieId":569,"title":"Szigor\u00faan titkos","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":2655}],"secondaryYearSourceId":0,"sortTitle":"top secret","sizeOnDisk":20764389280,"status":"released","overview":"Popular and dashing American singer Nick Rivers travels to East Germany to perform in a music festival. When he loses his heart to the gorgeous Hillary Flammond, he finds himself caught up in an underground resistance movement. Rivers joins forces with Agent Cedric and Flammond to attempt the rescue of her father, Dr. Paul, from the Germans, who have captured the scientist in hopes of coercing him into building a new naval mine.","inCinemas":"1984-06-08T00:00:00Z","physicalRelease":"2002-12-03T00:00:00Z","digitalRelease":"2003-06-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/569\/poster.jpg?lastWrite=637370818743223821","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xsuEGorx2RcgtF6JKQjwYYrcr3E.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/569\/fanart.jpg?lastWrite=637266164068606118","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/94RlCD6aFlUNke6YvflCOSQ9Uwe.jpg"}],"website":"","year":1984,"hasFile":true,"youTubeTrailerId":"zoT28BPzVcI","studio":"Paramount","path":"\/movies\/Top Secret! (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Top Secret! (1984)","runtime":90,"cleanTitle":"topsecret","imdbId":"tt0088286","tmdbId":8764,"titleSlug":"8764","certification":"PG","genres":["Comedy"],"tags":[],"added":"2020-06-01T13:53:26Z","ratings":{"votes":753,"value":7.1},"movieFile":{"movieId":569,"relativePath":"Top Secret!.1984-Remux-1080p.mkv","path":"\/movies\/Top Secret! (1984)\/Top Secret!.1984-Remux-1080p.mkv","size":20764389280,"dateAdded":"2020-06-01T14:12:10Z","sceneName":"Top.Secret.1984.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":3801857,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English","audioStreamCount":3,"videoBitDepth":8,"videoBitrate":24914722,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:30:06","scanType":"Progressive","subtitles":"English"},"originalFilePath":"Top.Secret.1984.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT\/Top.Secret.1984.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":679},"id":569},{"title":"Artemis Fowl","originalTitle":"Artemis Fowl","alternateTitles":[{"sourceType":"tmdb","movieId":573,"title":"\u0e2d\u0e32\u0e23\u0e4c\u0e17\u0e34\u0e21\u0e34\u0e2a \u0e1f\u0e32\u0e27\u0e25\u0e4c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4564},{"sourceType":"tmdb","movieId":573,"title":"Artemis Fowl - El Mundo Subterr\u00e1neo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5193}],"secondaryYearSourceId":0,"sortTitle":"artemis fowl","sizeOnDisk":6179317493,"status":"released","overview":"Artemis Fowl is a 12-year-old genius and descendant of a long line of criminal masterminds. He soon finds himself in an epic battle against a race of powerful underground fairies who may be behind his father's disappearance.","inCinemas":"2020-06-12T00:00:00Z","digitalRelease":"2020-06-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/573\/poster.jpg?lastWrite=637545341638753348","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tI8ocADh22GtQFV28vGHaBZVb0U.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/573\/fanart.jpg?lastWrite=637662106367940243","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/uL2s9Snfjb9AvImGGQLDnMpfzge.jpg"}],"website":"https:\/\/www.disneyplus.com\/movies\/artemis-fowl\/7GHUkgt7iSgR","year":2020,"hasFile":true,"youTubeTrailerId":"MQj64sYpoqA","studio":"Tribeca Productions","path":"\/movies\/Artemis Fowl (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Artemis Fowl (2020)","runtime":94,"cleanTitle":"artemisfowl","imdbId":"tt3089630","tmdbId":475430,"titleSlug":"475430","certification":"PG","genres":["Adventure","Fantasy","Science Fiction"],"tags":[],"added":"2020-06-15T19:55:44Z","ratings":{"votes":1228,"value":5.7},"movieFile":{"movieId":573,"relativePath":"Artemis Fowl.2020-WEBDL-1080p.mkv","path":"\/movies\/Artemis Fowl (2020)\/Artemis Fowl.2020-WEBDL-1080p.mkv","size":6179317493,"dateAdded":"2020-06-16T06:52:01Z","sceneName":"Artemis.Fowl.2020.1080p.WEB.H264-SECRECY[rarbg]","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":256000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8473115,"videoCodec":"h264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:34:21","scanType":"Progressive","subtitles":"English \/ Dutch \/ French \/ German \/ Italian \/ Polish \/ Portuguese \/ Portuguese \/ Spanish \/ Spanish"},"originalFilePath":"Artemis.Fowl.2020.1080p.WEB.H264-SECRECY[rarbg]\/Artemis.Fowl.2020.1080p.WEB.H264-SECRECY.mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SECRECY","edition":"","id":680},"id":573},{"title":"The Lighthouse","originalTitle":"The Lighthouse","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"lighthouse","sizeOnDisk":12324257686,"status":"released","overview":"Two lighthouse keepers try to maintain their sanity while living on a remote and mysterious New England island in the 1890s.","inCinemas":"2019-10-18T00:00:00Z","physicalRelease":"2020-01-07T00:00:00Z","digitalRelease":"2019-12-20T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/574\/poster.jpg?lastWrite=637643939530845827","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/3nk9UoepYmv1G9oP18q6JJCeYwN.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/574\/fanart.jpg?lastWrite=637643939532045809","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tNE9HGcFOH8EpCmzO7XCYwqguI0.jpg"}],"website":"https:\/\/a24films.com\/films\/the-lighthouse","year":2019,"hasFile":true,"youTubeTrailerId":"42_UHhpq530","studio":"A24","path":"\/movies\/The Lighthouse (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Lighthouse (2019)","runtime":109,"cleanTitle":"thelighthouse","imdbId":"tt7984734","tmdbId":503919,"titleSlug":"503919","certification":"R","genres":["Drama","Fantasy","Thriller"],"tags":[],"added":"2020-06-17T09:31:56Z","ratings":{"votes":2793,"value":7.5},"movieFile":{"movieId":574,"relativePath":"The Lighthouse.2019-Bluray-1080p.mkv","path":"\/movies\/The Lighthouse (2019)\/The Lighthouse.2019-Bluray-1080p.mkv","size":12324257686,"dateAdded":"2020-06-17T09:51:53Z","sceneName":"The.Lighthouse.2019.1080p.Bluray.DTS-HD.MA.5.1.X264-EVO[TGx]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":10808000,"videoCodec":"x264","videoFps":0,"resolution":"1296x1080","runTime":"1:49:09","scanType":"Progressive","subtitles":""},"originalFilePath":"The.Lighthouse.2019.1080p.Bluray.DTS-HD.MA.5.1.X264-EVO[TGx]\/The.Lighthouse.2019.1080p.Bluray.DTS-HD.MA.5.1.X264-EVO.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"EVO","edition":"","id":681},"id":574},{"title":"WarGames","originalTitle":"WarGames","alternateTitles":[{"sourceType":"tmdb","movieId":575,"title":"Jeux de guerre","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4511},{"sourceType":"tmdb","movieId":575,"title":"\u0412\u043e\u0454\u043d\u043d\u0456 \u0456\u0433\u0440\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4515},{"sourceType":"tmdb","movieId":575,"title":"\u0412\u0456\u0439\u0441\u044c\u043a\u043e\u0432\u0456 \u0456\u0433\u0440\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4516}],"secondaryYearSourceId":0,"sortTitle":"wargames","sizeOnDisk":4658235259,"status":"released","overview":"High School student David Lightman has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department's war computer and initiates a confrontation of global proportions. Together with his girlfriend and a wizardly computer genius, David must race against time to outwit his opponent and prevent a nuclear Armageddon.","inCinemas":"1983-06-03T00:00:00Z","physicalRelease":"2002-04-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/575\/poster.jpg?lastWrite=637640479841426439","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ndORBCvw8TJaQYvBgkYGg0IWrRM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/575\/fanart.jpg?lastWrite=637621452271412594","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/qtamfYGFfDLfGRcucx1zNwohRts.jpg"}],"website":"","year":1983,"hasFile":true,"youTubeTrailerId":"awvbX9xKdBs","studio":"United Artists","path":"\/movies\/WarGames (1983)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/WarGames (1983)","runtime":114,"cleanTitle":"wargames","imdbId":"tt0086567","tmdbId":860,"titleSlug":"860","certification":"PG","genres":["Thriller","Drama","Action"],"tags":[],"added":"2020-06-23T11:28:31Z","ratings":{"votes":1279,"value":7.1},"movieFile":{"movieId":575,"relativePath":"WarGames.1983-Bluray-1080p.mkv","path":"\/movies\/WarGames (1983)\/WarGames.1983-Bluray-1080p.mkv","size":4658235259,"dateAdded":"2020-06-23T11:40:50Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":395750,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":4996289,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"1:52:42","scanType":"","subtitles":"English \/ English \/ Dutch \/ French \/ German \/ Italian \/ Polish \/ Portuguese \/ Spanish"},"originalFilePath":"WarGames (1983) (1080p BluRay x265 HEVC 10bit AAC 5.1 Tigole)\/WarGames (1983) (1080p BluRay x265 10bit Tigole).mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":684},"collection":{"name":"WarGames Collection","tmdbId":151263,"images":[]},"id":575},{"title":"I, Robot","originalTitle":"I, Robot","alternateTitles":[{"sourceType":"tmdb","movieId":576,"title":"Yo, robot","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4726},{"sourceType":"tmdb","movieId":576,"title":"Az, robot\u016dt","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4727},{"sourceType":"tmdb","movieId":576,"title":"\u6211\uff0c\u673a\u5668\u4eba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4728},{"sourceType":"tmdb","movieId":576,"title":"\u667a\u80fd\u53db\u53d8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4729},{"sourceType":"tmdb","movieId":576,"title":"\u673a\u68b0\u516c\u654c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4730},{"sourceType":"tmdb","movieId":576,"title":"Eg\u00f3, to Romp\u00f3t","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4731},{"sourceType":"tmdb","movieId":576,"title":"Ja, robot","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4732},{"sourceType":"tmdb","movieId":576,"title":"YA, robot","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4733},{"sourceType":"tmdb","movieId":576,"title":"I, Robot - 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4734}],"secondaryYearSourceId":0,"sortTitle":"i robot","sizeOnDisk":26612170878,"status":"released","overview":"In 2035, where robots are commonplace and abide by the three laws of robotics, a technophobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.","inCinemas":"2004-07-15T00:00:00Z","physicalRelease":"2005-01-28T00:00:00Z","digitalRelease":"2021-02-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/576\/poster.jpg?lastWrite=637652590519576412","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dlb6JKYv25rJSk2n2hwhOeJ7Dk.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/576\/fanart.jpg?lastWrite=637635289913754327","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/jpFcZH2eyh6gcoxCa637TrGe4bT.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"J1NZJXo-Lso","studio":"Davis Entertainment","path":"\/movies\/I, Robot (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/I, Robot (2004)","runtime":115,"cleanTitle":"irobot","imdbId":"tt0343818","tmdbId":2048,"titleSlug":"2048","certification":"PG-13","genres":["Action","Science Fiction"],"tags":[],"added":"2020-07-12T20:19:08Z","ratings":{"votes":9387,"value":6.9},"movieFile":{"movieId":576,"relativePath":"I, Robot.2004-Remux-1080p.mkv","path":"\/movies\/I, Robot (2004)\/I, Robot.2004-Remux-1080p.mkv","size":26612170878,"dateAdded":"2020-08-30T19:25:52Z","sceneName":"I.Robot.2004.1080p.BluRay.AVC.DTS-HD.MA.5.1.REMUX","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4178193,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":25237173,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:54:44","scanType":"Progressive","subtitles":"English"},"originalFilePath":"I.Robot.2004.1080p.BluRay.AVC.DTS-HD.MA.5.1.REMUX\/I, Robot.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"HD","edition":"","id":697},"id":576},{"title":"The Trixxer","originalTitle":"Der Wixxer","alternateTitles":[{"sourceType":"tmdb","movieId":577,"title":"Der Wixxer 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4752}],"secondaryYearSourceId":0,"sortTitle":"trixxer","sizeOnDisk":1620764742,"status":"released","overview":"A mysterious serial killer is shocking the underworld. Scotland Yard is investigating the case. Clues lead the detectives to Blackwhite Castle.","inCinemas":"2004-05-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/577\/poster.jpg?lastWrite=637640479816066865","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kQv2mDC2tMCrEVKrZkZvKh7wKxh.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/577\/fanart.jpg?lastWrite=637640479817426842","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lisILqhRqF9qlkFbLVTo6S4Rvbf.jpg"}],"website":"","year":2004,"hasFile":true,"youTubeTrailerId":"adO3gXakmUs","studio":"","path":"\/movies\/The Trixxer (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Trixxer (2004)","runtime":85,"cleanTitle":"thetrixxer","imdbId":"tt0313021","tmdbId":7281,"titleSlug":"7281","genres":["Comedy","Crime"],"tags":[],"added":"2020-07-17T19:04:00Z","ratings":{"votes":144,"value":6.5},"movieFile":{"movieId":577,"relativePath":"Der.Wixxer--2004-German-1080p-x265.mkv","path":"\/movies\/The Trixxer (2004)\/Der.Wixxer--2004-German-1080p-x265.mkv","size":1620764742,"dateAdded":"2020-07-18T12:31:57Z","indexerFlags":0,"quality":{"quality":{"id":9,"name":"HDTV-1080p","source":"tv","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"German","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2140461,"videoCodec":"x265","videoFps":24.962,"resolution":"1920x816","runTime":"1:25:30","scanType":"","subtitles":""},"qualityCutoffNotMet":true,"languages":[{"id":4,"name":"German"}],"releaseGroup":"x265","edition":"","id":686},"collection":{"name":"The Wixxer Collection","tmdbId":68589,"images":[]},"id":577},{"title":"The Vexxer","originalTitle":"Neues vom Wixxer","alternateTitles":[{"sourceType":"tmdb","movieId":578,"title":"Der Wixxer 2 - Neues vom Wixxer","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5439}],"secondaryYearSourceId":0,"sortTitle":"vexxer","sizeOnDisk":0,"status":"released","overview":"Scotland Yard investigators have to prevent the murder of Victoria Dickman when her name is found on a death list.","inCinemas":"2007-03-10T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/578\/poster.jpg?lastWrite=637657782412163962","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/miD6UUIcikgDHWHhS9HxySDcS92.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/578\/fanart.jpg?lastWrite=637631830259845392","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/1wZIWqe1hCUd1DWAiTueXTIqKUr.jpg"}],"website":"http:\/\/www.wixxer.film.de\/","year":2007,"hasFile":false,"youTubeTrailerId":"","studio":"GFP Medienfonds","path":"\/movies\/The Vexxer (2007)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Vexxer (2007)","runtime":98,"cleanTitle":"thevexxer","imdbId":"tt0446009","tmdbId":1269,"titleSlug":"1269","genres":["Comedy","Crime"],"tags":[],"added":"2020-07-18T12:34:14Z","ratings":{"votes":87,"value":6.6},"collection":{"name":"The Wixxer Collection","tmdbId":68589,"images":[]},"id":578},{"title":"Monster House","originalTitle":"Monster House","alternateTitles":[{"sourceType":"tmdb","movieId":579,"title":"\u041a\u044a\u0449\u0430-\u0447\u0443\u0434\u043e\u0432\u0438\u0449\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4781},{"sourceType":"tmdb","movieId":579,"title":"A Casa Monstro","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4782},{"sourceType":"tmdb","movieId":579,"title":"Monster House 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4783},{"sourceType":"tmdb","movieId":579,"title":"R\u00e9m rom 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":4784}],"secondaryYearSourceId":0,"sortTitle":"monster house","sizeOnDisk":1333598561,"status":"released","overview":"Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.","inCinemas":"2006-07-20T00:00:00Z","physicalRelease":"2007-02-28T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/579\/poster.jpg?lastWrite=637660377268290192","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zCRPr4bkO3ae0U1134vJ39xZnAG.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/579\/fanart.jpg?lastWrite=637624046506904830","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/aiRESjcG3Vi3W9WAGgMJSjGX1HQ.jpg"}],"website":"http:\/\/www.sonypictures.com\/movies\/monsterhouse","year":2006,"hasFile":true,"youTubeTrailerId":"XEkeZhWbW7U","studio":"ImageMovers","path":"\/movies\/Monster House (2006)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Monster House (2006)","runtime":91,"cleanTitle":"monsterhouse","imdbId":"tt0385880","tmdbId":9297,"titleSlug":"9297","certification":"PG","genres":["Animation","Comedy","Family"],"tags":[],"added":"2020-07-22T22:37:23Z","ratings":{"votes":2935,"value":6.6},"movieFile":{"movieId":579,"relativePath":"Monster House.2006-Bluray-1080p.mp4","path":"\/movies\/Monster House (2006)\/Monster House.2006-Bluray-1080p.mp4","size":1333598561,"dateAdded":"2020-07-22T22:48:05Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":93552,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1864000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:30:38","scanType":"Progressive","subtitles":""},"originalFilePath":"Monster House (2006) [1080p]\/Monster.House.2006.1080p.BluRay.x264.YIFY.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"1080p","edition":"","id":688},"id":579},{"title":"Tesla","originalTitle":"Tesla","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"tesla","sizeOnDisk":8743116072,"status":"released","overview":"The story of the Promethean struggles of Nikola Tesla, as he attempts to transcend entrenched technology\u2014including his own previous work\u2014by pioneering a system of wireless energy that would change the world.","inCinemas":"2020-08-20T00:00:00Z","physicalRelease":"2020-08-21T00:00:00Z","digitalRelease":"2020-09-21T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/580\/poster.jpg?lastWrite=637649130230647208","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/v0guO0krvyz8IfKGxEje04LVM9d.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/580\/fanart.jpg?lastWrite=637655186864307568","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4tphk3VbqoRtCVuOzlEQxUrpR6c.jpg"}],"website":"https:\/\/www.tesla.movie","year":2020,"hasFile":true,"youTubeTrailerId":"OqCD9wRdOUE","studio":"Campbell Grobman Films","path":"\/movies\/Tesla (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Tesla (2020)","runtime":102,"cleanTitle":"tesla","imdbId":"tt5259822","tmdbId":517412,"titleSlug":"517412","certification":"PG-13","genres":["Drama","History"],"tags":[],"added":"2020-07-27T09:36:00Z","ratings":{"votes":157,"value":6.1},"movieFile":{"movieId":580,"relativePath":"Tesla.2020-Bluray-1080p.mkv","path":"\/movies\/Tesla (2020)\/Tesla.2020-Bluray-1080p.mkv","size":8743116072,"dateAdded":"2020-10-10T17:45:27Z","sceneName":"Tesla.2020.1080p.BluRay.DTS-HD.X264-CMRG[TGx]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":1886922,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9505997,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"1:42:17","scanType":"Progressive","subtitles":""},"originalFilePath":"Tesla.2020.1080p.BluRay.DTS-HD.X264-CMRG[TGx]\/Tesla.2020.1080p.BluRay.DTS-HD.X264-CMRG.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CMRG","edition":"","id":699},"id":580},{"title":"The Kangaroo Chronicles","originalTitle":"Die K\u00e4nguru-Chroniken","alternateTitles":[{"sourceType":"tmdb","movieId":581,"title":"\u041e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e, \u041a\u0435\u043d\u0433\u0443\u0440\u0443!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5451}],"secondaryYearSourceId":0,"sortTitle":"kangaroo chronicles","sizeOnDisk":8323944644,"status":"released","overview":"A communist kangaroo moves in with an artist in Berlin.","inCinemas":"2020-03-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/581\/poster.jpg?lastWrite=637318955469906565","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hlCpJa19IweniPMoIkbeXJDsCFp.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/581\/fanart.jpg?lastWrite=637662971425787251","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/n7g8j2HXj8JwRRnEV1qmRO32pXY.jpg"}],"website":"","year":2020,"hasFile":true,"youTubeTrailerId":"","studio":"X Filme Creative Pool","path":"\/movies\/The Kangaroo Chronicles (2020)","qualityProfileId":7,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Kangaroo Chronicles (2020)","runtime":92,"cleanTitle":"thekangaroochronicles","imdbId":"tt7749142","tmdbId":639564,"titleSlug":"639564","genres":["Comedy"],"tags":[],"added":"2020-08-01T16:19:05Z","ratings":{"votes":58,"value":5.9},"movieFile":{"movieId":581,"relativePath":"The Kangaroo Chronicles.2020-Bluray-1080p.mkv","path":"\/movies\/The Kangaroo Chronicles (2020)\/The Kangaroo Chronicles.2020-Bluray-1080p.mkv","size":8323944644,"dateAdded":"2020-09-05T21:21:52Z","sceneName":"The.Kangaroo.Chronicles.2020.1080p.BluRay.x264-UNVEiL[rarbg]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2335159,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9670172,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1040","runTime":"1:32:05","scanType":"Progressive","subtitles":"English \/ English \/ German"},"originalFilePath":"The.Kangaroo.Chronicles.2020.1080p.BluRay.x264-UNVEiL[rarbg]\/The.Kangaroo.Chronicles.2020.1080p.BluRay.x264-UNVEiL.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"UNVEiL","edition":"","id":698},"id":581},{"title":"War of the Worlds","originalTitle":"War of the Worlds","alternateTitles":[{"sourceType":"tmdb","movieId":582,"title":"Samkarota omi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4865},{"sourceType":"tmdb","movieId":582,"title":"Planetary War","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4867},{"sourceType":"tmdb","movieId":582,"title":"Rat svetova","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4873},{"sourceType":"tmdb","movieId":582,"title":"\uc6b0\uc8fc \uc804\uc7c1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5697}],"secondaryYearSourceId":0,"sortTitle":"war worlds","sizeOnDisk":12602860941,"status":"released","overview":"Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop off his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.","inCinemas":"2005-06-28T00:00:00Z","physicalRelease":"2005-11-16T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/582\/poster.jpg?lastWrite=637320114017235409","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6Biy7R9LfumYshur3YKhpj56MpB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/582\/fanart.jpg?lastWrite=637653456588393331","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vwCc9PP6xkSjnYsSl9lzTABhexe.jpg"}],"website":"https:\/\/amblin.com\/movie\/war-of-the-worlds\/","year":2005,"hasFile":true,"youTubeTrailerId":"TLnQXsKn5-E","studio":"Paramount","path":"\/movies\/War of the Worlds (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/War of the Worlds (2005)","runtime":117,"cleanTitle":"warworlds","imdbId":"tt0407304","tmdbId":74,"titleSlug":"74","certification":"PG-13","genres":["Adventure","Thriller","Science Fiction"],"tags":[],"added":"2020-08-03T00:29:57Z","ratings":{"votes":6368,"value":6.5},"movieFile":{"movieId":582,"relativePath":"War of the Worlds.2005-Bluray-1080p.mkv","path":"\/movies\/War of the Worlds (2005)\/War of the Worlds.2005-Bluray-1080p.mkv","size":12602860941,"dateAdded":"2020-08-12T08:15:47Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":448000,"audioChannels":5.1,"audioCodec":"EAC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":13568157,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1040","runTime":"1:56:33","scanType":"","subtitles":"English \/ English \/ Chinese \/ Chinese \/ Danish \/ Dutch \/ Finnish \/ French \/ German \/ Hindi \/ Indonesian \/ Italian \/ Japanese \/ Korean \/ Malay \/ Norwegian \/ Spanish \/ Swedish \/ Thai"},"originalFilePath":"War of the Worlds (2005) (1080p BDRip x265 10bit EAC3 5.1 - WEM)[TAoE].mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":689},"id":582},{"title":"Robots","originalTitle":"Robots","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"robots","sizeOnDisk":1398732469,"status":"released","overview":"Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams \u2013 and those of his friends \u2013 are in danger of becoming obsolete.","inCinemas":"2005-03-10T00:00:00Z","physicalRelease":"2005-09-14T00:00:00Z","digitalRelease":"2008-08-23T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/583\/poster.jpg?lastWrite=637650860229999348","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fnKCh67l2DDG9NxxIlk9IpsXQ99.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/583\/fanart.jpg?lastWrite=637650860231639325","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8p4gCdDT55PMY3UMDvo6ybzMrai.jpg"}],"website":"","year":2005,"hasFile":true,"youTubeTrailerId":"zyLI71Z0RF4","studio":"Blue Sky Studios","path":"\/movies\/Robots (2005)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Robots (2005)","runtime":91,"cleanTitle":"robots","imdbId":"tt0358082","tmdbId":9928,"titleSlug":"9928","certification":"PG","genres":["Animation","Comedy","Family"],"tags":[],"added":"2020-08-03T00:29:57Z","ratings":{"votes":3548,"value":6.4},"movieFile":{"movieId":583,"relativePath":"Robots.2005-Bluray-1080p.mp4","path":"\/movies\/Robots (2005)\/Robots.2005-Bluray-1080p.mp4","size":1398732469,"dateAdded":"2020-08-30T19:10:52Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":96000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1977000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1044","runTime":"1:29:47","scanType":"Progressive","subtitles":""},"originalFilePath":"Robots (2005) [1080p]\/Robots.2005.1080p.BrRip.x264.YIFY.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"1080p","edition":"","id":696},"id":583},{"title":"Monsters vs Aliens","originalTitle":"Monsters vs Aliens","alternateTitles":[{"sourceType":"tmdb","movieId":584,"title":"Monster und Aliens","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4875},{"sourceType":"tmdb","movieId":584,"title":"Koletised tulnukate vastu","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4876},{"sourceType":"tmdb","movieId":584,"title":"Terata kai eksoghinoi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4877},{"sourceType":"tmdb","movieId":584,"title":"Terata kai exogiinoi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4878},{"sourceType":"tmdb","movieId":584,"title":"Terata ki eksoghinoi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4879},{"sourceType":"tmdb","movieId":584,"title":"Terata ki exogiinoi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4880},{"sourceType":"tmdb","movieId":584,"title":"\u03a4\u03ad\u03c1\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b5\u03be\u03c9\u03b3\u03ae\u03b9\u03bd\u03bf\u03b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4881},{"sourceType":"tmdb","movieId":584,"title":"\u03a4\u03b5\u03c1\u03b1\u03c4\u03b1 \u03ba\u03b9 \u03b5\u03be\u03c9\u03b3\u03b7\u03b9\u03bd\u03bf\u03b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4882},{"sourceType":"tmdb","movieId":584,"title":"monstri protiv","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4883},{"sourceType":"tmdb","movieId":584,"title":"Mon\u0161tr\u00e1 vs. Votrelci","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4884},{"sourceType":"tmdb","movieId":584,"title":"Monsters vs. Aliens 3D","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4885}],"secondaryYearSourceId":0,"sortTitle":"monsters vs aliens","sizeOnDisk":1290052270,"status":"released","overview":"When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...","inCinemas":"2009-03-19T00:00:00Z","physicalRelease":"2009-10-07T00:00:00Z","digitalRelease":"2010-11-26T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/584\/poster.jpg?lastWrite=637622316777906799","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hpHarddVj34j53T7NsoUGdKj4mP.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/584\/fanart.jpg?lastWrite=637622316779426774","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/na71ASQOjgIkLc3xkqXghyHc2UK.jpg"}],"website":"http:\/\/www.monstersvsaliens.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"KrGiuIY-gDc","studio":"DreamWorks Animation","path":"\/movies\/Monsters vs Aliens (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Monsters vs Aliens (2009)","runtime":94,"cleanTitle":"monstersvsaliens","imdbId":"tt0892782","tmdbId":15512,"titleSlug":"15512","certification":"PG","genres":["Animation","Family","Adventure"],"tags":[],"added":"2020-08-03T00:29:57Z","ratings":{"votes":3560,"value":6.2},"movieFile":{"movieId":584,"relativePath":"Monsters vs Aliens.2009-Bluray-1080p.mp4","path":"\/movies\/Monsters vs Aliens (2009)\/Monsters vs Aliens.2009-Bluray-1080p.mp4","size":1290052270,"dateAdded":"2020-08-30T19:07:53Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":93992,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1800000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x816","runTime":"1:34:21","scanType":"Progressive","subtitles":""},"originalFilePath":"Monsters vs Aliens (2009) [1080p]\/Monsters.Vs.Aliens.2009.1080p.BrRip.x264.YIFY.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"1080p","edition":"","id":695},"id":584},{"title":"A Wrinkle in Time","originalTitle":"A Wrinkle in Time","alternateTitles":[{"sourceType":"tmdb","movieId":585,"title":"Un Viaje en el Tiempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4886},{"sourceType":"tmdb","movieId":585,"title":"Das Zeitr\u00e4tsel","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4887},{"sourceType":"tmdb","movieId":585,"title":"Un pliegue en el tiempo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":4888},{"sourceType":"tmdb","movieId":585,"title":"\uc2dc\uac04\uc758 \uc8fc\ub984","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4889}],"secondaryYearSourceId":0,"sortTitle":"wrinkle in time","sizeOnDisk":2244981588,"status":"released","overview":"After the disappearance of her scientist father, three peculiar beings send Meg, her brother, and her friend to space in order to find him.","inCinemas":"2018-03-08T00:00:00Z","physicalRelease":"2018-06-05T00:00:00Z","digitalRelease":"2021-03-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/585\/poster.jpg?lastWrite=637631830307324601","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yAcb58vipewa1BfNit2RjE6boXA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/585\/fanart.jpg?lastWrite=637631830308844575","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/852VpfhfHv4kjcq2uBHVUZMKFjT.jpg"}],"website":"http:\/\/movies.disney.com\/a-wrinkle-in-time","year":2018,"hasFile":true,"youTubeTrailerId":"UhZ56rcWwRQ","studio":"Whitaker Entertainment","path":"\/movies\/A Wrinkle in Time (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/A Wrinkle in Time (2018)","runtime":109,"cleanTitle":"awrinkleintime","imdbId":"tt1620680","tmdbId":407451,"titleSlug":"407451","certification":"PG","genres":["Adventure","Science Fiction","Family"],"tags":[],"added":"2020-08-03T00:29:57Z","ratings":{"votes":1502,"value":5.1},"movieFile":{"movieId":585,"relativePath":"A Wrinkle in Time.2018-Bluray-1080p.mp4","path":"\/movies\/A Wrinkle in Time (2018)\/A Wrinkle in Time.2018-Bluray-1080p.mp4","size":2244981588,"dateAdded":"2021-02-02T15:46:47Z","sceneName":"A.Wrinkle.in.Time.2018.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223999,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:49:37","scanType":"Progressive","subtitles":""},"originalFilePath":"A.Wrinkle.in.Time.2018.1080p.BluRay.H264.AAC-RARBG\/A.Wrinkle.in.Time.2018.1080p.BluRay.H264.AAC-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":710},"id":585},{"title":"Dune","originalTitle":"Dune","alternateTitles":[{"sourceType":"tmdb","movieId":586,"title":"Dune \u2013 Part One","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6215}],"secondaryYearSourceId":0,"sortTitle":"dune","sizeOnDisk":0,"status":"announced","overview":"Paul Atreides, a brilliant and gifted young man born into a great destiny beyond his understanding, must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.","inCinemas":"2021-09-15T00:00:00Z","digitalRelease":"2021-10-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/586\/poster.jpg?lastWrite=637664701942949368","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/s1FhMAr91WL8D5DeHOcuBELtiHJ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/586\/fanart.jpg?lastWrite=637664701944989343","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wP0X5iQrlt7ojPmWouYPfy8AQtx.jpg"}],"website":"https:\/\/www.dunemovie.com\/","year":2021,"hasFile":false,"youTubeTrailerId":"8g18jFHCLXk","studio":"Warner Bros. Pictures","path":"\/movies\/Dune (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":false,"folderName":"\/movies\/Dune (2020)","runtime":155,"cleanTitle":"dune","imdbId":"tt1160419","tmdbId":438631,"titleSlug":"438631","certification":"PG-13","genres":["Adventure","Drama","Science Fiction"],"tags":[],"added":"2020-08-12T02:07:14Z","ratings":{"votes":0,"value":0},"collection":{"name":"Dune Collection","tmdbId":726871,"images":[]},"id":586},{"title":"Dune","originalTitle":"Dune","alternateTitles":[{"sourceType":"tmdb","movieId":587,"title":"\u0414\u044e\u043d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4947},{"sourceType":"tmdb","movieId":587,"title":"Duna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4948},{"sourceType":"tmdb","movieId":587,"title":"Dune - Der W\u00fcstenplanet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":4949},{"sourceType":"tmdb","movieId":587,"title":"Dune - \u00f8rkenplaneten","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4950},{"sourceType":"tmdb","movieId":587,"title":"Xolit","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4951},{"sourceType":"tmdb","movieId":587,"title":"\u0921\u094d\u092f\u0941\u0928","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4952},{"sourceType":"tmdb","movieId":587,"title":"\u7802\u306e\u60d1\u661f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4953},{"sourceType":"tmdb","movieId":587,"title":"Kopa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4954},{"sourceType":"tmdb","movieId":587,"title":"Dunas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4955},{"sourceType":"tmdb","movieId":587,"title":"Duin","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":4956},{"sourceType":"tmdb","movieId":587,"title":"Diuna","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":4957},{"sourceType":"tmdb","movieId":587,"title":"\u0414\u0438\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4958},{"sourceType":"tmdb","movieId":587,"title":"\u0414\u044e\u043d\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":4959},{"sourceType":"tmdb","movieId":587,"title":"\u6c99\u4e18\u9b54\u5821","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":4960},{"sourceType":"tmdb","movieId":587,"title":"\ub4c4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5077},{"sourceType":"tmdb","movieId":587,"title":"\u039d\u03c4\u03b9\u03bf\u03cd\u03bd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5581}],"secondaryYearSourceId":0,"sortTitle":"dune","sizeOnDisk":31794452531,"status":"released","overview":"In the year 10,191, the world is at war for control of the desert planet Dune\u2014the only place where the time-travel substance 'Spice' can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.","inCinemas":"1984-12-14T00:00:00Z","physicalRelease":"2010-12-16T00:00:00Z","digitalRelease":"2005-06-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/587\/poster.jpg?lastWrite=637627505668952801","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ngUaHgSZGkKy1Izwjk7qwZLOC5A.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/587\/fanart.jpg?lastWrite=637657781614297657","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5wJ2tckpvwcxGCAgZiccodwEJpf.jpg"}],"website":"","year":1984,"hasFile":true,"youTubeTrailerId":"WHh8dzxTSNw","studio":"Dino De Laurentiis Company","path":"\/movies\/Dune (1984)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Dune (1984)","runtime":137,"cleanTitle":"dune","imdbId":"tt0087182","tmdbId":841,"titleSlug":"841","certification":"PG-13","genres":["Action","Science Fiction","Adventure"],"tags":[],"added":"2020-08-12T02:12:11Z","ratings":{"votes":1780,"value":6.3},"movieFile":{"movieId":587,"relativePath":"Dune.1984-Remux-1080p.mkv","path":"\/movies\/Dune (1984)\/Dune.1984-Remux-1080p.mkv","size":31794452531,"dateAdded":"2020-12-02T07:24:15Z","sceneName":"Dune.1984.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:57:14","scanType":"Progressive","subtitles":""},"originalFilePath":"Dune.1984.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG\/Dune.1984.EXTENDED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-RARBG.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"EXTENDED","id":703},"id":587},{"title":"They Live","originalTitle":"They Live","alternateTitles":[{"sourceType":"tmdb","movieId":589,"title":"Oni \u017eij\u00ed!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5003},{"sourceType":"tmdb","movieId":589,"title":"Sobreviven","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5004},{"sourceType":"tmdb","movieId":589,"title":"John Nada: De Hel Breekt Los","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":5005},{"sourceType":"tmdb","movieId":589,"title":"\u041e\u043d\u0438 \u0436\u0438\u0432\u0443\u0442","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5006},{"sourceType":"tmdb","movieId":589,"title":"\u0427\u0443\u0436\u0438\u0435 \u0441\u0440\u0435\u0434\u0438 \u043d\u0430\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5007},{"sourceType":"tmdb","movieId":589,"title":"\u0412\u043e\u043d\u0438 \u0436\u0438\u0432\u0456","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5008},{"sourceType":"tmdb","movieId":589,"title":"\u0427\u0443\u0436\u0456 \u0441\u0435\u0440\u0435\u0434 \u043d\u0430\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5009},{"sourceType":"tmdb","movieId":589,"title":"John Carpenter's They Live","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5010}],"secondaryYear":2020,"secondaryYearSourceId":0,"sortTitle":"they live","sizeOnDisk":27854664622,"status":"released","overview":"Nada, a wanderer without meaning in his life, discovers a pair of sunglasses capable of showing the world the way it truly is. As he walks the streets of Los Angeles, Nada notices that both the media and the government are comprised of subliminal messages meant to keep the population subdued, and that most of the social elite are skull-faced aliens bent on world domination. With this shocking discovery, Nada fights to free humanity from the mind-controlling aliens.","inCinemas":"1988-11-23T00:00:00Z","physicalRelease":"1989-01-01T00:00:00Z","digitalRelease":"2003-05-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/589\/poster.jpg?lastWrite=637624046711901464","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ngnybFTuopfbfmmEeX9jjBQQmF6.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/589\/fanart.jpg?lastWrite=637624046713301441","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/mq37KmVnHaB6MpAx1uiKBrVDrxG.jpg"}],"website":"http:\/\/www.theofficialjohncarpenter.com\/they-live\/","year":1988,"hasFile":true,"youTubeTrailerId":"iJC4R1uXDaE","studio":"Universal Pictures","path":"\/movies\/They Live (1988)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/They Live (1988)","runtime":94,"cleanTitle":"theylive","imdbId":"tt0096256","tmdbId":8337,"titleSlug":"8337","certification":"R","genres":["Science Fiction","Action"],"tags":[],"added":"2020-08-26T00:28:10Z","ratings":{"votes":1932,"value":7.3},"movieFile":{"movieId":589,"relativePath":"They Live.1988-Remux-1080p.mkv","path":"\/movies\/They Live (1988)\/They Live.1988-Remux-1080p.mkv","size":27854664622,"dateAdded":"2020-08-26T02:31:21Z","sceneName":"They.Live.1988.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4277190,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ French \/ German \/ German \/ English","audioStreamCount":7,"videoBitDepth":8,"videoBitrate":21856899,"videoCodec":"AVC","videoFps":24.0,"resolution":"1920x1080","runTime":"1:34:27","scanType":"Progressive","subtitles":"English \/ French \/ German"},"originalFilePath":"They.Live.1988.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT\/They.Live.1988.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"REMASTERED","id":694},"id":589},{"title":"London Has Fallen","originalTitle":"London Has Fallen","alternateTitles":[{"sourceType":"tmdb","movieId":591,"title":"\u4f26\u6566\u9677\u843d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5227},{"sourceType":"tmdb","movieId":591,"title":"Pad Londona","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5228},{"sourceType":"tmdb","movieId":591,"title":"Assalto \u00e0 Londres","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5230},{"sourceType":"tmdb","movieId":591,"title":"Olympus Has Fallen 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5231},{"sourceType":"tmdb","movieId":591,"title":"Attacco al potere 2 - London Has Fallen","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5646}],"secondaryYearSourceId":0,"sortTitle":"london has fallen","sizeOnDisk":8208142055,"status":"released","overview":"In London for the Prime Minister's funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.","inCinemas":"2016-03-02T00:00:00Z","physicalRelease":"2016-07-18T00:00:00Z","digitalRelease":"2019-09-04T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/591\/poster.jpg?lastWrite=637637884851742044","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wah9TViZDE4zfVsnIgwLB4zSxzH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/591\/fanart.jpg?lastWrite=637637884853702012","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/gYQ30Jer6qMZSKxeDmcibueeq0T.jpg"}],"website":"","year":2016,"hasFile":true,"youTubeTrailerId":"oQhX4JxGHtw","studio":"Millennium Films","path":"\/movies\/London Has Fallen (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/London Has Fallen (2016)","runtime":99,"cleanTitle":"londonhasfallen","imdbId":"tt3300542","tmdbId":267860,"titleSlug":"267860","certification":"R","genres":["Action","Thriller"],"tags":[],"added":"2020-10-30T19:11:59Z","ratings":{"votes":3704,"value":6.1},"movieFile":{"movieId":591,"relativePath":"London Has Fallen.2016-Bluray-1080p.mkv","path":"\/movies\/London Has Fallen (2016)\/London Has Fallen.2016-Bluray-1080p.mkv","size":8208142055,"dateAdded":"2020-10-31T07:48:07Z","sceneName":"London.Has.Fallen.2016.1080p.BluRay.x264-DRONES[rarbg]","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9589000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x808","runTime":"1:38:41","scanType":"Progressive","subtitles":""},"originalFilePath":"London.Has.Fallen.2016.1080p.BluRay.x264-DRONES[rarbg]\/London.Has.Fallen.2016.1080p.BluRay.x264-DRONES.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"DRONES","edition":"","id":702},"collection":{"name":"Has Fallen Collection","tmdbId":386534,"images":[]},"id":591},{"title":"Tenet","originalTitle":"Tenet","alternateTitles":[{"sourceType":"tmdb","movieId":592,"title":"\u0130nan\u00e7","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":5340},{"sourceType":"tmdb","movieId":592,"title":"Verovanje","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5384},{"sourceType":"tmdb","movieId":592,"title":"\u30c6\u30cd\u30c3\u30c8","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5387},{"sourceType":"tmdb","movieId":592,"title":"Merry-Go-Round","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5389},{"sourceType":"tmdb","movieId":592,"title":"TENET\u5929\u80fd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5564},{"sourceType":"tmdb","movieId":592,"title":"Dalil","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5565},{"sourceType":"tmdb","movieId":592,"title":"\u4fe1\u6761","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5789}],"secondaryYearSourceId":0,"sortTitle":"tenet","sizeOnDisk":43739417888,"status":"released","overview":"Armed with only one word - Tenet - and fighting for the survival of the entire world, the Protagonist journeys through a twilight world of international espionage on a mission that will unfold in something beyond real time.","inCinemas":"2020-08-26T00:00:00Z","physicalRelease":"2020-12-14T00:00:00Z","digitalRelease":"2020-12-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/592\/poster.jpg?lastWrite=637649130214847478","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/k68nPLbIST6NP96JmTxmZijEvCA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/592\/fanart.jpg?lastWrite=637640479774507564","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/wzJRB4MKi3yK138bJyuL9nx47y6.jpg"}],"website":"https:\/\/www.tenetfilm.com\/","year":2020,"hasFile":true,"youTubeTrailerId":"AZGcmvrTX9M","studio":"Syncopy","path":"\/movies\/Tenet (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Tenet (2020)","runtime":150,"cleanTitle":"tenet","imdbId":"tt6723592","tmdbId":577922,"titleSlug":"577922","certification":"PG-13","genres":["Action","Thriller","Science Fiction"],"tags":[],"added":"2020-12-07T21:29:28Z","ratings":{"votes":5892,"value":7.3},"movieFile":{"movieId":592,"relativePath":"Tenet.2020-Remux-1080p.mkv","path":"\/movies\/Tenet (2020)\/Tenet.2020-Remux-1080p.mkv","size":43739417888,"dateAdded":"2020-12-08T01:47:52Z","sceneName":"Tenet.2020.IMAX.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":4035848,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ French \/ Italian \/ Hindi \/ Tamil","audioStreamCount":6,"videoBitDepth":8,"videoBitrate":29791495,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"2:30:09","scanType":"Progressive","subtitles":"English \/ English \/ French \/ Italian \/ Dutch \/ Danish \/ Finnish \/ Norwegian \/ Swedish \/ French \/ Italian \/ Hindi \/ Tamil"},"originalFilePath":"Tenet.2020.IMAX.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT\/Tenet.2020.IMAX.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"IMAX","id":704},"id":592},{"title":"SCP: Overlord","originalTitle":"SCP: Overlord","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"scp overlord","sizeOnDisk":0,"status":"released","overview":"A secret NGO investigates the home of an esoteric cult on suspicion that they are more than meets the eye.","digitalRelease":"2020-11-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/593\/poster.jpg?lastWrite=637652590838530334","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fgSWyZ7aM7LW3feEfzJN4ysdjUx.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/593\/fanart.jpg?lastWrite=637652590840770291","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/kGt58qLcIBFulb4DfITziaEKN9L.jpg"}],"website":"","year":2020,"hasFile":false,"youTubeTrailerId":"BrZUj1fNQL8","studio":"Retro Digital Media","path":"\/movies\/SCP Overlord (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/SCP Overlord (2020)","runtime":35,"cleanTitle":"scpoverlord","imdbId":"tt13484102","tmdbId":708994,"titleSlug":"708994","certification":"NR","genres":["Horror"],"tags":[],"added":"2020-12-17T16:34:33Z","ratings":{"votes":4,"value":9.5},"id":593},{"title":"Wolfwalkers","originalTitle":"Wolfwalkers","alternateTitles":[{"sourceType":"tmdb","movieId":594,"title":"Le Peuple loup","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5371},{"sourceType":"tmdb","movieId":594,"title":"\u30a6\u30eb\u30d5\u30a6\u30a9\u30fc\u30ab\u30fc","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5372},{"sourceType":"tmdb","movieId":594,"title":"Wolfwalkers: Esp\u00edritu de lobo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5373}],"secondaryYearSourceId":0,"sortTitle":"wolfwalkers","sizeOnDisk":1714748210,"status":"released","overview":"In a time of superstition and magic, when wolves are seen as demonic and nature an evil to be tamed, a young apprentice hunter comes to Ireland with her father to wipe out the last pack. But when she saves a wild native girl, their friendship leads her to discover the world of the Wolfwalkers and transform her into the very thing her father is tasked to destroy.","inCinemas":"2020-10-26T00:00:00Z","digitalRelease":"2020-12-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/594\/poster.jpg?lastWrite=637648265363993281","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ehAKuE48okTuonq6TpsNQj8vFTC.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/594\/fanart.jpg?lastWrite=637600693107084192","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yHtB4KHNigx3ZoxDvQbW2SOXGfq.jpg"}],"website":"http:\/\/wolfwalkersmovie.com\/","year":2020,"hasFile":true,"youTubeTrailerId":"d_Z_tybgPgg","studio":"Cartoon Saloon","path":"\/movies\/Wolfwalkers (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Wolfwalkers (2020)","runtime":103,"cleanTitle":"wolfwalkers","imdbId":"tt5198068","tmdbId":441130,"titleSlug":"441130","certification":"PG","genres":["Animation","Family","Adventure"],"tags":[],"added":"2020-12-17T20:06:48Z","ratings":{"votes":529,"value":8.5},"movieFile":{"movieId":594,"relativePath":"Wolfwalkers.2020-WEBRip-1080p.mp4","path":"\/movies\/Wolfwalkers (2020)\/Wolfwalkers.2020-WEBRip-1080p.mp4","size":1714748210,"dateAdded":"2020-12-17T20:12:53Z","sceneName":"Wolfwalkers.2020.1080p.WEBRip.x265-RARBG","indexerFlags":1,"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webrip","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2000287,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1038","runTime":"1:42:32","scanType":"","subtitles":""},"originalFilePath":"Wolfwalkers.2020.1080p.WEBRip.x265-RARBG\/Wolfwalkers.2020.1080p.WEBRip.x265-RARBG.mp4","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":705},"id":594},{"title":"The Secret of Kells","originalTitle":"The Secret of Kells","alternateTitles":[{"sourceType":"tmdb","movieId":595,"title":"\u0421\u0435\u043a\u0440\u0435\u0442 \u041a\u0435\u043b\u0441\u0443","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5374},{"sourceType":"tmdb","movieId":595,"title":"\u0422\u0430\u0439\u043d\u0430 \u041a\u0435\u043b\u043b\u0441","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5375},{"sourceType":"tmdb","movieId":595,"title":"O Segredo de Kells","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5376},{"sourceType":"tmdb","movieId":595,"title":"El secreto del libro de Kells","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5377},{"sourceType":"tmdb","movieId":595,"title":"Brendan and the Secret of Kells","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5378},{"sourceType":"tmdb","movieId":595,"title":"Il Segreto di Kells","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5379},{"sourceType":"tmdb","movieId":595,"title":"Das Geheimnis von Kells","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5380},{"sourceType":"tmdb","movieId":595,"title":"Brendan et le secret de Kells","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5381},{"sourceType":"tmdb","movieId":595,"title":"\u30d6\u30ec\u30f3\u30c0\u30f3\u3068\u30b1\u30eb\u30ba\u306e\u79d8\u5bc6","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5683}],"secondaryYearSourceId":0,"sortTitle":"secret kells","sizeOnDisk":4695693013,"status":"released","overview":"Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?","inCinemas":"2009-02-09T00:00:00Z","physicalRelease":"2010-08-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/595\/poster.jpg?lastWrite=637637020117655369","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tmiufIvSssZ2cmYJbro99gZvn2H.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/595\/fanart.jpg?lastWrite=637637020119655337","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zF3ISzTDyBcx3erCzY8MZJVncg9.jpg"}],"website":"http:\/\/www.thesecretofkells.com\/","year":2009,"hasFile":true,"youTubeTrailerId":"tMPhHTtKZ8Q","studio":"Cartoon Saloon","path":"\/movies\/The Secret of Kells (2009)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/The Secret of Kells (2009)","runtime":71,"cleanTitle":"thesecretkells","imdbId":"tt0485601","tmdbId":26963,"titleSlug":"26963","certification":"NR","genres":["Animation","Family","Fantasy"],"tags":[],"added":"2020-12-17T20:16:00Z","ratings":{"votes":439,"value":7.4},"movieFile":{"movieId":595,"relativePath":"The.Secret.of.Kells.2009.1080p.BluRay.X264-AMIABLE.mkv","path":"\/movies\/The Secret of Kells (2009)\/The.Secret.of.Kells.2009.1080p.BluRay.X264-AMIABLE.mkv","size":4695693013,"dateAdded":"2020-12-18T01:38:05Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6442000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:18:43","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"AMIABLE","edition":"","id":706},"id":595},{"title":"Promare","originalTitle":"\u30d7\u30ed\u30e1\u30a2","alternateTitles":[{"sourceType":"tmdb","movieId":596,"title":"Puromea","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5390}],"secondaryYearSourceId":0,"sortTitle":"promare","sizeOnDisk":2275621087,"status":"released","overview":"Galo and the Burning Rescue Fire Department face off against BURNISH, a group of mutants who are able to control and wield flames, and the fire disaster they have unleashed on Earth.","inCinemas":"2019-05-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/596\/poster.jpg?lastWrite=637622316820946104","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4fVcLdImgW2EXQyrflA5oLTvwCD.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/596\/fanart.jpg?lastWrite=637622316822386081","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/eAWuDbZAYQY0PM0hL7zoO3aoF3T.jpg"}],"website":"https:\/\/promare-movie.com\/","year":2019,"hasFile":true,"youTubeTrailerId":"tgNGHjwEKQY","studio":"TRIGGER","path":"\/movies\/Promare (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Promare (2019)","runtime":111,"cleanTitle":"promare","imdbId":"tt9116358","tmdbId":553600,"titleSlug":"553600","certification":"PG-13","genres":["Animation","Action","Science Fiction"],"tags":[],"added":"2020-12-19T22:43:09Z","ratings":{"votes":135,"value":7.3},"movieFile":{"movieId":596,"relativePath":"Promare.2019-Bluray-1080p.mp4","path":"\/movies\/Promare (2019)\/Promare.2019-Bluray-1080p.mp4","size":2275621087,"dateAdded":"2020-12-19T23:00:33Z","sceneName":"Promare.2019.DUBBED.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:51:06","scanType":"Progressive","subtitles":""},"originalFilePath":"Promare.2019.DUBBED.1080p.BluRay.H264.AAC-RARBG\/Promare.2019.DUBBED.1080p.BluRay.H264.AAC-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":707},"id":596},{"title":"Mirage","originalTitle":"Durante la tormenta","alternateTitles":[{"sourceType":"tmdb","movieId":597,"title":"Mientras dure la tormenta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5391},{"sourceType":"tmdb","movieId":597,"title":"Durante a Tormenta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5392},{"sourceType":"tmdb","movieId":597,"title":"Durante la tormenta 2018","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5393}],"secondaryYearSourceId":0,"sortTitle":"mirage","sizeOnDisk":0,"status":"released","overview":"During a mysterious thunderstorm, Vera, a young mother, manages to save a life in danger, but her good deed causes a disturbing chain of unexpected consequences.","inCinemas":"2018-11-30T00:00:00Z","digitalRelease":"2019-03-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/597\/poster.jpg?lastWrite=637440601776313150","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/oLO9y7GoyAVUVoAWD6jCgY7GQfs.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/597\/fanart.jpg?lastWrite=637629235593666175","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vU43BQihl4lcLWHqb3NdpsDL32U.jpg"}],"website":"","year":2018,"hasFile":false,"youTubeTrailerId":"3NCOwTBWYdE","studio":"Atresmedia","path":"\/movies\/Mirage (2018)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Mirage (2018)","runtime":129,"cleanTitle":"mirage","imdbId":"tt6908274","tmdbId":529216,"titleSlug":"529216","genres":["Science Fiction","Thriller","Drama"],"tags":[],"added":"2020-12-20T11:22:56Z","ratings":{"votes":1325,"value":7.5},"id":597},{"title":"Klaus","originalTitle":"Klaus","alternateTitles":[{"sourceType":"tmdb","movieId":598,"title":"La L\u00e9gende de Klaus","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":5423},{"sourceType":"tmdb","movieId":598,"title":"\u30af\u30ed\u30fc\u30b9","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5424},{"sourceType":"tmdb","movieId":598,"title":"Klaus - C\u00e2u Chuy\u1ec7n Gi\u00e1ng Sinh","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5425},{"sourceType":"tmdb","movieId":598,"title":"Klaus: Sihirli Plan","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":5426},{"sourceType":"tmdb","movieId":598,"title":"Klaus: I segreti del Natale","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5427},{"sourceType":"tmdb","movieId":598,"title":"\ud074\ub77c\uc6b0\uc2a4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5428}],"secondaryYearSourceId":0,"sortTitle":"klaus","sizeOnDisk":2858391708,"status":"released","overview":"When Jesper distinguishes himself as the Postal Academy's worst student, he is sent to Smeerensburg, a small village located on an icy island above the Arctic Circle, where grumpy inhabitants barely exchange words, let alone letters. Jesper is about to give up and abandon his duty as a postman when he meets local teacher Alva and Klaus, a mysterious carpenter who lives alone in a cabin full of handmade toys.","inCinemas":"2019-11-15T00:00:00Z","digitalRelease":"2019-11-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/598\/poster.jpg?lastWrite=637616262214629005","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/q125RHUDgR4gjwh1QkfYuJLYkL.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/598\/fanart.jpg?lastWrite=637642209083123963","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xBD64RBepJDWmGhcxZMiJC9JKRZ.jpg"}],"website":"https:\/\/www.netflix.com\/title\/80183187","year":2019,"hasFile":true,"youTubeTrailerId":"taE3PwurhYM","studio":"Atresmedia","path":"\/movies\/Klaus (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Klaus (2019)","runtime":96,"cleanTitle":"klaus","imdbId":"tt4729430","tmdbId":508965,"titleSlug":"508965","certification":"PG","genres":["Animation","Family","Adventure"],"tags":[],"added":"2020-12-26T16:12:11Z","ratings":{"votes":2510,"value":8.3},"movieFile":{"movieId":598,"relativePath":"Klaus.2019-WEBRip-1080p.mkv","path":"\/movies\/Klaus (2019)\/Klaus.2019-WEBRip-1080p.mkv","size":2858391708,"dateAdded":"2021-02-02T15:15:17Z","sceneName":"Klaus.2019.1080p.NF.WEBRip.DD5.1.x264-FGT","indexerFlags":1,"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webrip","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":640000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":3320000,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"1:38:03","scanType":"Progressive","subtitles":"English \/ Spanish \/ Spanish \/ French \/ German \/ Italian \/ Portuguese \/ Portuguese \/ Polish \/ Turkish \/ Swedish \/ Danish \/ Finnish \/ Dutch \/ Norwegian \/ Russian \/ Hungarian \/ Greek \/ Hebrew \/ Arabic \/ Romanian \/ Czech \/ Indonesian \/ Vietnamese \/ Thai \/ Kore"},"originalFilePath":"Klaus.2019.1080p.NF.WEBRip.DD5.1.x264-FGT\/Klaus.2019.1080p.NF.WEBRip.DD5.1.x264-FGT.mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":709},"id":598},{"title":"Miss Peregrine's Home for Peculiar Children","originalTitle":"Miss Peregrine's Home for Peculiar Children","alternateTitles":[{"sourceType":"tmdb","movieId":599,"title":"\u602a\u5947\u5b64\u513f\u9662","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5449}],"secondaryYearSourceId":0,"sortTitle":"miss peregrine s home for peculiar children","sizeOnDisk":2599809699,"status":"released","overview":"A teenager finds himself transported to an island where he must help protect a group of orphans with special powers from creatures intent on destroying them.","inCinemas":"2016-09-27T00:00:00Z","physicalRelease":"2016-11-18T00:00:00Z","digitalRelease":"2018-09-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/599\/poster.jpg?lastWrite=637483939136007834","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6lSkpu2SDj71KTBy2DllM6CaFYA.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/599\/fanart.jpg?lastWrite=637625776157481162","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ld7V9BjMk2xtiBNcR8savyyk5ca.jpg"}],"website":"http:\/\/www.foxmovies.com\/movies\/miss-peregrines-home-for-peculiar-children","year":2016,"hasFile":true,"youTubeTrailerId":"DN1uhnnKscY","studio":"Big Screen Productions","path":"\/movies\/Miss Peregrine's Home for Peculiar Children (2016)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Miss Peregrine's Home for Peculiar Children (2016)","runtime":127,"cleanTitle":"missperegrineshomeforpeculiarchildren","imdbId":"tt1935859","tmdbId":283366,"titleSlug":"283366","certification":"PG-13","genres":["Drama","Fantasy","Adventure"],"tags":[],"added":"2021-01-03T14:45:51Z","ratings":{"votes":8266,"value":6.8},"movieFile":{"movieId":599,"relativePath":"Miss Peregrine's Home for Peculiar Children.2016-Bluray-1080p.mp4","path":"\/movies\/Miss Peregrine's Home for Peculiar Children (2016)\/Miss Peregrine's Home for Peculiar Children.2016-Bluray-1080p.mp4","size":2599809699,"dateAdded":"2021-01-03T15:08:41Z","sceneName":"Miss.Peregrines.Home.for.Peculiar.Children.2016.PROPER.1080p.BluRay.H264.AAC-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":2,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":223999,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1040","runTime":"2:06:55","scanType":"Progressive","subtitles":""},"originalFilePath":"Miss.Peregrines.Home.for.Peculiar.Children.2016.PROPER.1080p.BluRay.H264.AAC-RARBG\/Miss.Peregrines.Home.for.Peculiar.Children.2016.PROPER.1080p.BluRay.H264.AAC-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":708},"id":599},{"title":"Steamboy","originalTitle":"\u30b9\u30c1\u30fc\u30e0\u30dc\u30fc\u30a4","alternateTitles":[{"sourceType":"tmdb","movieId":600,"title":"Such\u00eemub\u00f4i","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5601},{"sourceType":"tmdb","movieId":600,"title":"suchiimubooi","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5602}],"secondaryYearSourceId":0,"sortTitle":"steamboy","sizeOnDisk":2588403213,"status":"released","overview":"After receiving a package from his grandfather, Ray, a young inventor who lives in England during the mid-19th century, finds himself caught in the middle of a deadly conflict related to a revolutionary advance in steam power.","inCinemas":"2004-07-17T00:00:00Z","physicalRelease":"2005-07-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/600\/poster.jpg?lastWrite=637619722092560351","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/he3fyAy1OUruuwhiv2xvup8H3pc.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/600\/fanart.jpg?lastWrite=637619722094440324","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xEXojxR2GX40mSuCtA5IzR4Ev8a.jpg"}],"website":"https:\/\/www.sonypictures.com\/movies\/steamboy","year":2004,"hasFile":true,"youTubeTrailerId":"rQpbBwA0r14","studio":"Bandai Visual","path":"\/movies\/Steamboy (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Steamboy (2004)","runtime":105,"cleanTitle":"steamboy","imdbId":"tt0348121","tmdbId":8953,"titleSlug":"8953","certification":"PG-13","genres":["Animation","Fantasy","Science Fiction"],"tags":[],"added":"2021-02-06T00:06:17Z","ratings":{"votes":256,"value":6.9},"movieFile":{"movieId":600,"relativePath":"Steamboy.2004-Bluray-1080p.mp4","path":"\/movies\/Steamboy (2004)\/Steamboy.2004-Bluray-1080p.mp4","size":2588403213,"dateAdded":"2021-03-14T21:39:15Z","sceneName":"Steamboy.2004.JAPANESE.1080p.BluRay.H264.AAC-VXT","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1038","runTime":"2:06:21","scanType":"Progressive","subtitles":""},"originalFilePath":"Steamboy.2004.JAPANESE.1080p.BluRay.H264.AAC-VXT\/Steamboy.2004.JAPANESE.1080p.BluRay.H264.AAC-VXT.mp4","qualityCutoffNotMet":false,"languages":[{"id":8,"name":"Japanese"}],"releaseGroup":"VXT","edition":"","id":715},"id":600},{"title":"Raya and the Last Dragon","originalTitle":"Raya and the Last Dragon","alternateTitles":[{"sourceType":"tmdb","movieId":601,"title":"Dragon Empire","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5605},{"sourceType":"tmdb","movieId":601,"title":"\u0695\u0627\u06cc\u0627 \u0648 \u06a9\u06c6\u062a\u0627 \u0626\u06d5\u0698\u062f\u06cc\u0647\u0627","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5730},{"sourceType":"tmdb","movieId":601,"title":"Raya en de Laatste Draak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":6049},{"sourceType":"tmdb","movieId":601,"title":"Raya et le dernier dragon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6050},{"sourceType":"tmdb","movieId":601,"title":"Raya und der letzte Drache","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6051},{"sourceType":"tmdb","movieId":601,"title":"Raya e l'ultimo drago","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":6052},{"sourceType":"tmdb","movieId":601,"title":"Raya y el \u00faltimo drag\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6053},{"sourceType":"tmdb","movieId":601,"title":"Si Raya at ang Huling Dragon","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6125},{"sourceType":"tmdb","movieId":601,"title":"\ub77c\uc57c\uc640 \ub9c8\uc9c0\ub9c9 \ub4dc\ub798\uace4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6126}],"secondaryYearSourceId":0,"sortTitle":"raya last dragon","sizeOnDisk":1637052906,"status":"released","overview":"Long ago, in the fantasy world of Kumandra, humans and dragons lived together in harmony. But when an evil force threatened the land, the dragons sacrificed themselves to save humanity. Now, 500 years later, that same evil has returned and it\u2019s up to a lone warrior, Raya, to track down the legendary last dragon to restore the fractured land and its divided people.","inCinemas":"2021-03-03T00:00:00Z","physicalRelease":"2021-05-17T00:00:00Z","digitalRelease":"2021-03-05T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/601\/poster.jpg?lastWrite=637625776232399371","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/lPsD10PP4rgUGiGR4CCXA6iY0QQ.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/601\/fanart.jpg?lastWrite=637614532957816023","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hJuDvwzS0SPlsE6MNFOpznQltDZ.jpg"}],"website":"https:\/\/movies.disney.com\/raya-and-the-last-dragon","year":2021,"hasFile":true,"youTubeTrailerId":"3UFWsEY8Hdc","studio":"Walt Disney Pictures","path":"\/movies\/Raya and the Last Dragon (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Raya and the Last Dragon (2021)","runtime":107,"cleanTitle":"rayalastdragon","imdbId":"tt5109280","tmdbId":527774,"titleSlug":"527774","certification":"PG","genres":["Family","Fantasy","Animation"],"tags":[],"added":"2021-02-11T02:51:50Z","ratings":{"votes":4150,"value":8.1},"movieFile":{"movieId":601,"relativePath":"Raya and the Last Dragon.2021-Bluray-1080p.mkv","path":"\/movies\/Raya and the Last Dragon (2021)\/Raya and the Last Dragon.2021-Bluray-1080p.mkv","size":1637052906,"dateAdded":"2021-05-07T03:23:49Z","sceneName":"Raya.and.the.Last.Dragon.2021.1080p.BluRay.1400MB.DD2.0.x264-GalaxyRG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":160000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":12998686,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x804","runTime":"1:47:29","scanType":"Progressive","subtitles":""},"originalFilePath":"Raya.and.the.Last.Dragon.2021.1080p.BluRay.1400MB.DD2.0.x264-GalaxyRG[TGx]\/Raya.and.the.Last.Dragon.2021.1080p.BluRay.1400MB.DD2.0.x264-GalaxyRG.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"GalaxyRG","edition":"","id":720},"id":601},{"title":"Blade: Trinity","originalTitle":"Blade: Trinity","alternateTitles":[{"sourceType":"tmdb","movieId":602,"title":"Blade III: Trinity","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5655},{"sourceType":"tmdb","movieId":602,"title":"Blade 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5656},{"sourceType":"tmdb","movieId":602,"title":"Blade 3: Trinity","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5657},{"sourceType":"tmdb","movieId":602,"title":"\u5200\u950b\u6218\u58eb\uff1a\u4e09\u4f4d\u4e00\u4f53","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5658},{"sourceType":"tmdb","movieId":602,"title":"Blade Trinity: Persegui\u00e7\u00e3o Final","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":5659},{"sourceType":"tmdb","movieId":602,"title":"\ube14\ub808\uc774\ub4dc 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5660}],"secondaryYearSourceId":0,"sortTitle":"blade trinity","sizeOnDisk":2047746988,"status":"released","overview":"For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed\u2014The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him\u2014the original vampire, Dracula.","inCinemas":"2004-12-08T00:00:00Z","physicalRelease":"2005-07-27T00:00:00Z","digitalRelease":"2007-05-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/602\/poster.jpg?lastWrite=637536693329457955","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/iQ2fyewqYDNmcUN18m8XbRGWgIM.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/602\/fanart.jpg?lastWrite=637638749516178074","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/y4VtmfWXaZBgnsaNcrW5hskPLUl.jpg"}],"website":"http:\/\/www.warnerbros.com\/blade-trinity","year":2004,"hasFile":true,"youTubeTrailerId":"qcHEDGs7eAY","studio":"Marvel Enterprises","path":"\/movies\/Blade Trinity (2004)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Blade Trinity (2004)","runtime":123,"cleanTitle":"bladetrinity","imdbId":"tt0359013","tmdbId":36648,"titleSlug":"36648","certification":"R","genres":["Action","Horror","Fantasy"],"tags":[],"added":"2021-03-10T22:15:20Z","ratings":{"votes":2924,"value":5.9},"movieFile":{"movieId":602,"relativePath":"Blade Trinity.2004-Bluray-1080p.mp4","path":"\/movies\/Blade Trinity (2004)\/Blade Trinity.2004-Bluray-1080p.mp4","size":2047746988,"dateAdded":"2021-03-10T22:28:54Z","sceneName":"Blade.Trinity.2004.1080p.BluRay.x265-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":2000691,"videoCodec":"x265","videoFps":23.976,"resolution":"1916x814","runTime":"2:02:21","scanType":"","subtitles":""},"originalFilePath":"Blade.Trinity.2004.1080p.BluRay.x265-RARBG\/Blade.Trinity.2004.1080p.BluRay.x265-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":714},"collection":{"name":"Blade Collection","tmdbId":735,"images":[]},"id":602},{"title":"Blade II","originalTitle":"Blade II","alternateTitles":[{"sourceType":"tmdb","movieId":603,"title":"Blejd 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5661},{"sourceType":"tmdb","movieId":603,"title":"\u5200\u92d2\u6230\u58eb2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5662},{"sourceType":"tmdb","movieId":603,"title":"Blade 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5663},{"sourceType":"tmdb","movieId":603,"title":"Blade II: Cazador de vampiros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5664},{"sourceType":"tmdb","movieId":603,"title":"Blei\u0306d 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5665},{"sourceType":"tmdb","movieId":603,"title":"\ube14\ub808\uc774\ub4dc 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5666},{"sourceType":"tmdb","movieId":603,"title":"Blade 2 uncut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5667},{"sourceType":"tmdb","movieId":603,"title":"Blade II uncut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5668},{"sourceType":"tmdb","movieId":603,"title":"Skotein\u00ed d\u00fdnami 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5669}],"secondaryYearSourceId":0,"sortTitle":"blade ii","sizeOnDisk":1955012893,"status":"released","overview":"A rare mutation has occurred within the vampire community - The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.","inCinemas":"2002-03-22T00:00:00Z","physicalRelease":"2002-10-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/603\/poster.jpg?lastWrite=637653455480010808","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vulF0iqX5z7AW1pdZ572zwsMRMB.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/603\/fanart.jpg?lastWrite=637653455481970777","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/g8cjJHZFeZQ5GRbFiDp5jXgfOZW.jpg"}],"website":"http:\/\/www.warnerbros.com\/blade-ii","year":2002,"hasFile":true,"youTubeTrailerId":"fcCQ7xk8zzM","studio":"Marvel Enterprises","path":"\/movies\/Blade II (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Blade II (2002)","runtime":117,"cleanTitle":"bladeii","imdbId":"tt0187738","tmdbId":36586,"titleSlug":"36586","certification":"R","genres":["Fantasy","Horror","Action"],"tags":[],"added":"2021-03-10T22:15:23Z","ratings":{"votes":3541,"value":6.5},"movieFile":{"movieId":603,"relativePath":"Blade II.2002-Bluray-1080p.mp4","path":"\/movies\/Blade II (2002)\/Blade II.2002-Bluray-1080p.mp4","size":1955012893,"dateAdded":"2021-03-10T22:21:32Z","sceneName":"Blade.II.2002.1080p.BluRay.x265-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1999565,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:56:52","scanType":"","subtitles":""},"originalFilePath":"Blade.II.2002.1080p.BluRay.x265-RARBG\/Blade.II.2002.1080p.BluRay.x265-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":713},"collection":{"name":"Blade Collection","tmdbId":735,"images":[]},"id":603},{"title":"Blade","originalTitle":"Blade","alternateTitles":[{"sourceType":"tmdb","movieId":604,"title":"\u5200\u92d2\u6230\u58eb","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5670},{"sourceType":"tmdb","movieId":604,"title":"Blade I","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":5671},{"sourceType":"tmdb","movieId":604,"title":"Blade, cazador de vampiros","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5673},{"sourceType":"tmdb","movieId":604,"title":"Blade - the Daywalker","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5674},{"sourceType":"tmdb","movieId":604,"title":"Blejd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5675},{"sourceType":"tmdb","movieId":604,"title":"Blade 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5676},{"sourceType":"tmdb","movieId":604,"title":"Blei\u0306d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5677},{"sourceType":"tmdb","movieId":604,"title":"Skotein\u00ed D\u00fdnami","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5678},{"sourceType":"tmdb","movieId":604,"title":"\u5200\u950b\u6218\u58eb1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5733}],"secondaryYearSourceId":0,"sortTitle":"blade","sizeOnDisk":2011619173,"status":"released","overview":"The Daywalker known as \"Blade\" - a half-vampire, half-mortal man - becomes the protector of humanity against an underground army of vampires.","inCinemas":"1998-08-21T00:00:00Z","physicalRelease":"1999-09-15T00:00:00Z","digitalRelease":"2003-05-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/604\/poster.jpg?lastWrite=637663836054325868","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/e6ErRnIgKmoBtcKpht3amsMfo52.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/604\/fanart.jpg?lastWrite=637510113275166743","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hZnnUq0mrUQ3e54SJVca4mf2oAQ.jpg"}],"website":"http:\/\/www.warnerbros.com\/blade","year":1998,"hasFile":true,"youTubeTrailerId":"kaU2A7KyOu4","studio":"Marvel Enterprises","path":"\/movies\/Blade (1998)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Blade (1998)","runtime":120,"cleanTitle":"blade","imdbId":"tt0120611","tmdbId":36647,"titleSlug":"36647","certification":"R","genres":["Horror","Action"],"tags":[],"added":"2021-03-10T22:15:26Z","ratings":{"votes":4429,"value":6.7},"movieFile":{"movieId":604,"relativePath":"Blade.1998-Bluray-1080p.mp4","path":"\/movies\/Blade (1998)\/Blade.1998-Bluray-1080p.mp4","size":2011619173,"dateAdded":"2021-03-10T22:21:24Z","sceneName":"Blade.1998.1080p.BluRay.x265-RARBG","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":224000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":10,"videoBitrate":1999200,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x800","runTime":"2:00:16","scanType":"","subtitles":""},"originalFilePath":"Blade.1998.1080p.BluRay.x265-RARBG\/Blade.1998.1080p.BluRay.x265-RARBG.mp4","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"RARBG","edition":"","id":712},"collection":{"name":"Blade Collection","tmdbId":735,"images":[]},"id":604},{"title":"Ghostbusters: Afterlife","originalTitle":"Ghostbusters: Afterlife","alternateTitles":[{"sourceType":"tmdb","movieId":605,"title":"Bust City","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5704},{"sourceType":"tmdb","movieId":605,"title":"Rust City","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5705},{"sourceType":"tmdb","movieId":605,"title":"Ghostbusters 2020","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5706},{"sourceType":"tmdb","movieId":605,"title":"\u8d85\u80fd\u6562\u6b7b\u961f 3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6234}],"secondaryYearSourceId":0,"sortTitle":"ghostbusters afterlife","sizeOnDisk":0,"status":"announced","overview":"When a single mom and her two kids arrive in a small town, they begin to discover their connection to the original Ghostbusters and the secret legacy their grandfather left behind.","inCinemas":"2021-11-11T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/605\/poster.jpg?lastWrite=637653455709367216","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/fMyCgXLYehlbiQPlcu7nG98GFZU.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/605\/fanart.jpg?lastWrite=637604151563274131","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/evSN8IybGaPZrrkgNa1ID3gcch8.jpg"}],"website":"https:\/\/ghostbusters.com\/","year":2021,"hasFile":false,"youTubeTrailerId":"HR-WxNVLZhQ","studio":"The Montecito Picture Company","path":"\/movies\/Ghostbusters Afterlife (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Ghostbusters Afterlife (2021)","runtime":0,"cleanTitle":"ghostbustersafterlife","imdbId":"tt4513678","tmdbId":425909,"titleSlug":"425909","certification":"PG-13","genres":["Comedy","Fantasy"],"tags":[],"added":"2021-03-19T19:51:55Z","ratings":{"votes":0,"value":0},"collection":{"name":"Ghostbusters Collection","tmdbId":2980,"images":[]},"id":605},{"title":"Roujin Z","originalTitle":"\u8001\u4ebaZ","alternateTitles":[{"sourceType":"tmdb","movieId":606,"title":"Old Man Z","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5727},{"sourceType":"tmdb","movieId":606,"title":"R\u014djin Z","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5728},{"sourceType":"tmdb","movieId":606,"title":"R\u014djin Zetto","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5729}],"secondaryYearSourceId":0,"sortTitle":"roujin z","sizeOnDisk":0,"status":"released","overview":"Mr. Takazawa, an elderly invalid who is cared for at his home by Haruko, a young nursing student, is chosen by the Japanese Ministry of Public Welfare to test the Z-001, a computerized hospital bed with robotic features that allegedly displays more efficiency and skills than any human nurse, but Haruko mistrusts a machine unable to consider human feelings.","inCinemas":"1991-09-14T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/606\/poster.jpg?lastWrite=637608475061958428","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/reaDUMKXKekKp0e8UKggeQyymEi.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/606\/fanart.jpg?lastWrite=637608475063598403","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/hTo1koHXNR5B8QkJ37UIyfUXm2b.jpg"}],"website":"","year":1991,"hasFile":false,"youTubeTrailerId":"ZH4K3OkRqL8","studio":"Tokyo Theatres Company","path":"\/movies\/Roujin Z (1991)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Roujin Z (1991)","runtime":80,"cleanTitle":"roujinz","imdbId":"tt0102812","tmdbId":35648,"titleSlug":"35648","genres":["Animation","Drama","Science Fiction"],"tags":[],"added":"2021-03-25T20:58:06Z","ratings":{"votes":58,"value":6.5},"id":606},{"title":"Kung Pow: Enter the Fist","originalTitle":"Kung Pow: Enter the Fist","alternateTitles":[{"sourceType":"tmdb","movieId":607,"title":"Kung Pau: Yumruk\u016dt na yarostta","sourceId":0,"votes":0,"voteCount":0,"language":{"id":29,"name":"Bulgarian"},"id":5830},{"sourceType":"tmdb","movieId":607,"title":"Kung Pow: Oi Orgism\u00e9nes Grothi\u00e9s","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5831},{"sourceType":"tmdb","movieId":607,"title":"Kung Pow: El maestro de la kung fusi\u00f3n","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5832},{"sourceType":"tmdb","movieId":607,"title":"Kung Pow: Enter the First","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5833},{"sourceType":"tmdb","movieId":607,"title":"Kung-Po: Narvis' na kulak","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":5834},{"sourceType":"tmdb","movieId":607,"title":"Kung Pow: O Mestre da Kung-Fu-S\u00e3o","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5839},{"sourceType":"tmdb","movieId":607,"title":"\u0643\u0648\u0646\u063a \u0628\u0627\u0648! \u0625\u0646\u062a\u0631 \u0630\u0627 \u0641\u064a\u0633\u062a","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5840},{"sourceType":"tmdb","movieId":607,"title":"Kung Pow: A pu\u00f1etazo limpio","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5841},{"sourceType":"tmdb","movieId":607,"title":"\u06a9\u0648\u0646\u06af \u067e\u0648: \u0645\u0634\u062a \u0648\u0627\u0631\u062f \u0645\u06cc\u200c\u0634\u0648\u062f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5842},{"sourceType":"tmdb","movieId":607,"title":"\ud4e8\uc804 \ucff5\ud478","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5843},{"sourceType":"tmdb","movieId":607,"title":"\u30af\u30f3\u30fb\u30d1\u30aa!\u71c3\u3048\u3088\u9244\u62f3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5844}],"secondaryYearSourceId":0,"sortTitle":"kung pow enter fist","sizeOnDisk":4571830024,"status":"released","overview":"A movie within a movie, created to spoof the martial arts genre. Writer\/director Steve Oedekerk uses contemporary characters and splices them into a 1970s kung-fu film, weaving the new and old together.\r As the main character, The Chosen One, Oedekerk sets off to avenge the deaths of his parents at the hands of kung-fu legend Master Pain. Along the way he encounters some strange characters.","inCinemas":"2002-01-25T00:00:00Z","physicalRelease":"2002-07-23T00:00:00Z","digitalRelease":"2005-03-08T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/607\/poster.jpg?lastWrite=637623181613969182","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8twRIXhh7EoLZWcihWRKJEgdAXq.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/607\/fanart.jpg?lastWrite=637537799274383121","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zvIhFx35lXEIO2OsVnrpReEH747.jpg"}],"website":"","year":2002,"hasFile":true,"youTubeTrailerId":"GXrAYdSeWY8","studio":"O Entertainment","path":"\/movies\/Kung Pow Enter the Fist (2002)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Kung Pow Enter the Fist (2002)","runtime":81,"cleanTitle":"kungpowenterfist","imdbId":"tt0240468","tmdbId":11891,"titleSlug":"11891","certification":"PG-13","genres":["Action","Comedy"],"tags":[],"added":"2021-04-11T23:18:46Z","ratings":{"votes":423,"value":6.3},"movieFile":{"movieId":607,"relativePath":"Kung Pow Enter the Fist.2002-WEBRip-1080p.mkv","path":"\/movies\/Kung Pow Enter the Fist (2002)\/Kung Pow Enter the Fist.2002-WEBRip-1080p.mkv","size":4571830024,"dateAdded":"2021-04-12T00:11:18Z","indexerFlags":1,"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webrip","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":10,"videoBitrate":6885540,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x816","runTime":"1:21:24","scanType":"","subtitles":"English \/ Swedish"},"originalFilePath":"Kung Pow Enter the Fist (2002) + Extras (1080p WEBRip x265M HEVC 10bit AC3 5.1 SAMPA)\/Kung Pow Enter the Fist (2002) (1080p WEBRip x265M SAMPA).mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"QxR","edition":"","id":717},"id":607},{"title":"Silk Road","originalTitle":"Silk Road","alternateTitles":[{"sourceType":"tmdb","movieId":609,"title":"Dead End on Silk Road","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5954},{"sourceType":"tmdb","movieId":609,"title":"Silk Road - Gebieter des Darknets","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":5955}],"secondaryYearSourceId":0,"sortTitle":"silk road","sizeOnDisk":32119249019,"status":"released","overview":"The true story of Ross Ulbricht, the charismatic young tech-mastermind who unleashed the darknet website Silk Road, and the corrupt DEA agent determined to bring down his billion-dollar empire.","inCinemas":"2021-02-19T00:00:00Z","physicalRelease":"2021-02-23T00:00:00Z","digitalRelease":"2021-02-19T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/609\/poster.jpg?lastWrite=637567213866922443","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/6KxiEWyIDpz1ikmD7nv3GTX4Uoj.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/609\/fanart.jpg?lastWrite=637567213867762428","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/sLK03Ed0D8EOoqLFBjrOcYSz8Tm.jpg"}],"website":"https:\/\/www.lionsgate.com\/movies\/silk-road","year":2021,"hasFile":true,"youTubeTrailerId":"LBOBuqBzn7w","studio":"Piccadilly Pictures","path":"\/movies\/Silk Road (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Silk Road (2021)","runtime":116,"cleanTitle":"silkroad","imdbId":"tt7937254","tmdbId":579051,"titleSlug":"579051","certification":"R","genres":["Crime","Thriller","Drama"],"tags":[],"added":"2021-05-16T00:23:06Z","ratings":{"votes":80,"value":6.8},"movieFile":{"movieId":609,"relativePath":"Silk Road.2021-Remux-1080p.mkv","path":"\/movies\/Silk Road (2021)\/Silk Road.2021-Remux-1080p.mkv","size":32119249019,"dateAdded":"2021-05-16T03:35:34Z","sceneName":"Silk.Road.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":2167420,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":34252649,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:56:44","scanType":"Progressive","subtitles":"English \/ English \/ Spanish \/ English"},"originalFilePath":"Silk.Road.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT\/Silk.Road.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":722},"id":609},{"title":"Kick-Ass","originalTitle":"Kick-Ass","alternateTitles":[{"sourceType":"tmdb","movieId":610,"title":"Kick-Ass - Un superh\u00e9roe sin super poderes","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5956},{"sourceType":"tmdb","movieId":610,"title":"Kick-Ass 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5957},{"sourceType":"tmdb","movieId":610,"title":"\u0e40\u0e01\u0e23\u0e35\u0e22\u0e19\u0e42\u0e04\u0e15\u0e23 \u0e21\u0e2b\u0e32\u0e1b\u0e23\u0e30\u0e25\u0e31\u0e22 1","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":5958}],"secondaryYearSourceId":0,"sortTitle":"kick ass","sizeOnDisk":12136602448,"status":"released","overview":"Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.","inCinemas":"2010-03-22T00:00:00Z","physicalRelease":"2010-09-15T00:00:00Z","digitalRelease":"2012-05-12T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/610\/poster.jpg?lastWrite=637667297116592434","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/GPiMXaDC2NdDIldLgtijHFTeKH.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/610\/fanart.jpg?lastWrite=637637884822862514","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dNtVnKSZScSnmFYBco0tgB2k6HC.jpg"}],"website":"","year":2010,"hasFile":true,"youTubeTrailerId":"rFpWpkxsVI8","studio":"Marv Films","path":"\/movies\/Kick-Ass (2010)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Kick-Ass (2010)","runtime":117,"cleanTitle":"kickass","imdbId":"tt1250777","tmdbId":23483,"titleSlug":"23483","certification":"R","genres":["Action","Crime"],"tags":[],"added":"2021-05-16T00:26:19Z","ratings":{"votes":9582,"value":7.1},"movieFile":{"movieId":610,"relativePath":"Kick-Ass.2010-Bluray-1080p.mkv","path":"\/movies\/Kick-Ass (2010)\/Kick-Ass.2010-Bluray-1080p.mkv","size":12136602448,"dateAdded":"2021-05-16T03:20:34Z","sceneName":"Kick-Ass.2010.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"16-ch","audioBitrate":0,"audioChannels":7.1,"audioCodec":"TrueHD Atmos","audioLanguages":"English \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":8147000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x800","runTime":"1:57:47","scanType":"Progressive","subtitles":"English \/ English \/ Spanish"},"originalFilePath":"Kick-Ass.2010.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ\/Kick-Ass.2010.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"SWTYBLZ","edition":"","id":721},"collection":{"name":"Kick-Ass Collection","tmdbId":179892,"images":[]},"id":610},{"title":"Spider-Man: Into the Spider-Verse 2","originalTitle":"Spider-Man: Into the Spider-Verse 2","alternateTitles":[{"sourceType":"tmdb","movieId":611,"title":"Secuela de Spider-man: Un nuevo universo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":5959},{"sourceType":"tmdb","movieId":611,"title":"Spider-Man: Een nieuw universum","sourceId":0,"votes":0,"voteCount":0,"language":{"id":7,"name":"Dutch"},"id":5960},{"sourceType":"tmdb","movieId":611,"title":"\uc2a4\ud30c\uc774\ub354\ub9e8: \ub274 \uc720\ub2c8\ubc84\uc2a4 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5961},{"sourceType":"tmdb","movieId":611,"title":"Homem-Aranha: Longe de Casa","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":5975}],"secondaryYearSourceId":0,"sortTitle":"spider man into spider verse 2","sizeOnDisk":0,"status":"announced","overview":"The continuing story of Miles Morales and the many other Spider-People from different realities.","inCinemas":"2022-10-06T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/611\/poster.jpg?lastWrite=637567218270689659","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8ycplQbTU6DRRwiG95lQEpYkOVg.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/611\/fanart.jpg?lastWrite=637645669792498631","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ppehJ5HlIcqFpH9erwjwFGKdIoe.jpg"}],"website":"","year":2022,"hasFile":false,"youTubeTrailerId":"","studio":"Columbia Pictures","path":"\/movies\/Spider-Man Into the Spider-Verse 2 (2022)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":false,"folderName":"\/movies\/Spider-Man Into the Spider-Verse 2 (2022)","runtime":0,"cleanTitle":"spidermanintospiderverse2","imdbId":"tt9362722","tmdbId":569094,"titleSlug":"569094","genres":["Animation","Action","Science Fiction"],"tags":[],"added":"2021-05-16T00:30:26Z","ratings":{"votes":0,"value":0},"collection":{"name":"Spider-Man: Spider-Verse Collection","tmdbId":573436,"images":[]},"id":611},{"title":"World of Tomorrow","originalTitle":"World of Tomorrow","alternateTitles":[{"sourceType":"tmdb","movieId":612,"title":"\u041c\u0438\u0440 \u0431\u0443\u0434\u0443\u0449\u0435\u0433\u043e","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6080},{"sourceType":"tmdb","movieId":612,"title":"A holnap vil\u00e1ga","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":6081}],"secondaryYearSourceId":0,"sortTitle":"world tomorrow","sizeOnDisk":1014294279,"status":"released","overview":"A little girl is taken on a mind-bending tour of her distant future. 2016 Academy Award nominee for Best Animated Short Film and winner of the Short Film Grand Prize at the 2015 Sundance Film Festival.","digitalRelease":"2015-03-31T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/612\/poster.jpg?lastWrite=637630965561947166","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5s7DSOek7Bk2CvcG1zX01bJzJ0x.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/612\/fanart.jpg?lastWrite=637630965563387141","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7501iH0qYcfaGWfMJph09zaVdtJ.jpg"}],"website":"http:\/\/bitterfilms.com","year":2015,"hasFile":true,"youTubeTrailerId":"XdV1uFwtCpo","studio":"Bitter Films","path":"\/movies\/World of Tomorrow (2015)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/World of Tomorrow (2015)","runtime":17,"cleanTitle":"worldtomorrow","imdbId":"tt4171032","tmdbId":303867,"titleSlug":"303867","genres":["Animation","Comedy","Science Fiction"],"tags":[],"added":"2021-06-28T17:32:19Z","ratings":{"votes":220,"value":7.9},"movieFile":{"movieId":612,"relativePath":"World.of.Tomorrow.2015.BluRay.1080p.x264.DTS.5.1.mkv","path":"\/movies\/World of Tomorrow (2015)\/World.of.Tomorrow.2015.BluRay.1080p.x264.DTS.5.1.mkv","size":1014294279,"dateAdded":"2021-07-03T18:33:45Z","indexerFlags":0,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":1509000,"audioChannels":5.1,"audioCodec":"DTS","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":6528408,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"16:29","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":728},"collection":{"name":"World of Tomorrow Collection","tmdbId":506918,"images":[]},"id":612},{"title":"World of Tomorrow Episode Two: The Burden of Other People's Thoughts","originalTitle":"World of Tomorrow Episode Two: The Burden of Other People's Thoughts","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"world tomorrow episode two burden other people s thoughts","sizeOnDisk":531922536,"status":"released","overview":"Emily Prime is swept into the brain of an incomplete backup clone of her future self.","digitalRelease":"2017-12-29T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/613\/poster.jpg?lastWrite=637608496293352053","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/rwFg0AyOODJJcneb6BdwMzddgvE.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/613\/fanart.jpg?lastWrite=637604983993541967","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/s8IkskWVBKAAY3McvsJ4P2poFYa.jpg"}],"website":"http:\/\/www.bitterfilms.com","year":2017,"hasFile":true,"youTubeTrailerId":"","studio":"Bitter Films","path":"\/movies\/World of Tomorrow Episode Two The Burden of Other People's Thoughts (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/World of Tomorrow Episode Two The Burden of Other People's Thoughts (2017)","runtime":23,"cleanTitle":"worldtomorrowepisodetwoburdenotherpeoplesthoughts","imdbId":"tt7278178","tmdbId":471495,"titleSlug":"471495","genres":["Science Fiction","Animation"],"tags":[],"added":"2021-06-28T17:33:18Z","ratings":{"votes":29,"value":7.8},"movieFile":{"movieId":613,"relativePath":"World.of.Tomorrow.Episode.Two.-.The.Burden.of.Other.Peoples.Thoughts.2017.1080p.WEB-DL.x264.mkv","path":"\/movies\/World of Tomorrow Episode Two The Burden of Other People's Thoughts (2017)\/World.of.Tomorrow.Episode.Two.-.The.Burden.of.Other.Peoples.Thoughts.2017.1080p.WEB-DL.x264.mkv","size":531922536,"dateAdded":"2021-07-02T19:07:09Z","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":256000,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2873582,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"22:38","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"edition":"","id":727},"collection":{"name":"World of Tomorrow Collection","tmdbId":506918,"images":[]},"id":613},{"title":"World of Tomorrow Episode Three: The Absent Destinations of David Prime","originalTitle":"World of Tomorrow Episode Three: The Absent Destinations of David Prime","alternateTitles":[],"secondaryYearSourceId":0,"sortTitle":"world tomorrow episode three absent destinations david prime","sizeOnDisk":813168787,"status":"released","overview":"A hidden memory sends David across the far reaches of time and space to solve a deadly mystery involving his time-traveling future selves.","digitalRelease":"2020-10-09T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/614\/poster.jpg?lastWrite=637653456594273237","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/yQjte7McMZvuoypZqobXWaCE1Ov.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/614\/fanart.jpg?lastWrite=637653456596233206","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/7kONYxfOIuTmR8UCyapW7HVjluc.jpg"}],"website":"http:\/\/www.bitterfilms.com\/","year":2020,"hasFile":true,"youTubeTrailerId":"AjkwiK1OGqs","studio":"Bitter Films","path":"\/movies\/World of Tomorrow Episode Three The Absent Destinations of David Prime (2020)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/World of Tomorrow Episode Three The Absent Destinations of David Prime (2020)","runtime":34,"cleanTitle":"worldtomorrowepisodethreeabsentdestinationsdavidprime","imdbId":"tt12837488","tmdbId":729775,"titleSlug":"729775","genres":["Animation","Science Fiction"],"tags":[],"added":"2021-06-28T17:33:22Z","ratings":{"votes":5,"value":8.4},"movieFile":{"movieId":614,"relativePath":"World.Of.Tomorrow.Episode.Three-.The.Absent.Destinations.Of.David.Prime.2020.1080p.WEB-DL.x264.mkv","path":"\/movies\/World of Tomorrow Episode Three The Absent Destinations of David Prime (2020)\/World.Of.Tomorrow.Episode.Three-.The.Absent.Destinations.Of.David.Prime.2020.1080p.WEB-DL.x264.mkv","size":813168787,"dateAdded":"2021-07-02T19:06:27Z","indexerFlags":0,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":253375,"audioChannels":2,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2904456,"videoCodec":"x264","videoFps":24.0,"resolution":"1920x1080","runTime":"34:18","scanType":"Progressive","subtitles":"English"},"qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"edition":"","id":726},"collection":{"name":"World of Tomorrow Collection","tmdbId":506918,"images":[]},"id":614},{"title":"Get Out","originalTitle":"Get Out","alternateTitles":[{"sourceType":"tmdb","movieId":615,"title":"\u00a1Huye!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":31,"name":"Arabic"},"id":6082},{"sourceType":"tmdb","movieId":615,"title":"D\u00e9jame Salir","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6083},{"sourceType":"tmdb","movieId":615,"title":"Foge","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6084},{"sourceType":"tmdb","movieId":615,"title":"Corra!","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6085},{"sourceType":"tmdb","movieId":615,"title":"\uac9f \uc544\uc6c3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6086},{"sourceType":"tmdb","movieId":615,"title":"Get Out - Rette deine Haut","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6087}],"secondaryYearSourceId":0,"sortTitle":"get out","sizeOnDisk":27257473259,"status":"released","overview":"Chris and his girlfriend Rose go upstate to visit her parents for the weekend. At first, Chris reads the family's overly accommodating behavior as nervous attempts to deal with their daughter's interracial relationship, but as the weekend progresses, a series of increasingly disturbing discoveries lead him to a truth that he never could have imagined.","inCinemas":"2017-02-24T00:00:00Z","physicalRelease":"2017-08-30T00:00:00Z","digitalRelease":"2017-07-24T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/615\/poster.jpg?lastWrite=637612802421787440","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/tFXcEccSQMf3lfhfXKSU9iRBpa3.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/615\/fanart.jpg?lastWrite=637665567007668283","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/vZ7EVk7FaNEWYqlVWbFLHP8Z0LU.jpg"}],"website":"http:\/\/www.getoutfilm.com\/","year":2017,"hasFile":true,"youTubeTrailerId":"sRfnevzM9kQ","studio":"Monkeypaw Productions","path":"\/movies\/Get Out (2017)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Get Out (2017)","runtime":104,"cleanTitle":"getout","imdbId":"tt5052448","tmdbId":419430,"titleSlug":"419430","certification":"R","genres":["Mystery","Thriller","Horror"],"tags":[],"added":"2021-06-29T17:51:49Z","ratings":{"votes":13164,"value":7.6},"movieFile":{"movieId":615,"relativePath":"Get Out.2017-Remux-1080p.mkv","path":"\/movies\/Get Out (2017)\/Get Out.2017-Remux-1080p.mkv","size":27257473259,"dateAdded":"2021-06-30T02:49:23Z","sceneName":"Get.Out.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT","indexerFlags":1,"quality":{"quality":{"id":30,"name":"Remux-1080p","source":"bluray","resolution":1080,"modifier":"remux"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"XLL","audioBitrate":0,"audioChannels":5.1,"audioCodec":"DTS-HD MA","audioLanguages":"English \/ English \/ English \/ English","audioStreamCount":4,"videoBitDepth":8,"videoBitrate":0,"videoCodec":"AVC","videoFps":23.976,"resolution":"1920x1080","runTime":"1:44:05","scanType":"Progressive","subtitles":"English \/ Spanish \/ French"},"originalFilePath":"Get.Out.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT\/Get.Out.2017.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"releaseGroup":"FGT","edition":"","id":725},"id":615},{"title":"Space Jam: A New Legacy","originalTitle":"Space Jam: A New Legacy","alternateTitles":[{"sourceType":"tmdb","movieId":617,"title":"Space Jam 2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6127},{"sourceType":"tmdb","movieId":617,"title":"\u592a\u7a7a\u4e5f\u5165\u6a3d\uff1a\u6539\u671d\u63db\u4ee3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6128},{"sourceType":"tmdb","movieId":617,"title":"Kosmiczny mecz: Nowa era","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6129},{"sourceType":"tmdb","movieId":617,"title":"\u0421\u0432\u0435\u043c\u0438\u0440\u0441\u043a\u0438 \u0431\u0430\u0441\u043a\u0435\u0442: \u041d\u043e\u0432\u043e \u043d\u0430\u0441\u043b\u0435\u0452\u0435","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6130},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Nuevas leyendas","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6131},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Um Novo Legado","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6132},{"sourceType":"tmdb","movieId":617,"title":"Basket spatial : Une nouvelle \u00e8re","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6133},{"sourceType":"tmdb","movieId":617,"title":"Space Jam : Nouvelle \u00e8re","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6134},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: New Legends","sourceId":0,"votes":0,"voteCount":0,"language":{"id":5,"name":"Italian"},"id":6135},{"sourceType":"tmdb","movieId":617,"title":"\u30b9\u30da\u30fc\u30b9\u30fb\u30d7\u30ec\u30a4\u30e4\u30fc\u30ba","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6136},{"sourceType":"tmdb","movieId":617,"title":"\uc2a4\ud398\uc774\uc2a4 \uc7bc: \uc0c8\ub85c\uc6b4 \uc2dc\ub300","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6137},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Una nueva era","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6138},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Uma Nova Era","sourceId":0,"votes":0,"voteCount":0,"language":{"id":18,"name":"Portuguese"},"id":6139},{"sourceType":"tmdb","movieId":617,"title":"\u602a\u7269\u5947\u5175 \u5168\u65b0\u4e16\u4ee3","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6141},{"sourceType":"tmdb","movieId":617,"title":"\u0633\u0628\u064a\u0633 \u062c\u0627\u0645: \u0625\u0631\u062b \u062c\u062f\u064a\u062f","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6142},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Yeni Efsane","sourceId":0,"votes":0,"voteCount":0,"language":{"id":17,"name":"Turkish"},"id":6143},{"sourceType":"tmdb","movieId":617,"title":"\u05e1\u05e4\u05d9\u05d9\u05e1 \u05d2'\u05d0\u05dd: \u05d0\u05d2\u05d3\u05d4 \u05d7\u05d3\u05e9\u05d4","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6144},{"sourceType":"tmdb","movieId":617,"title":"\u0647\u0631\u062c\u200c\u0648\u0645\u0631\u062c \u0641\u0636\u0627\u06cc\u06cc \u06f2","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6145},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: Uusi legenda","sourceId":0,"votes":0,"voteCount":0,"language":{"id":16,"name":"Finnish"},"id":6146},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: O nou\u0103 er\u0103","sourceId":0,"votes":0,"voteCount":0,"language":{"id":27,"name":"Romanian"},"id":6147},{"sourceType":"tmdb","movieId":617,"title":"Space Jam: \u00daj kezdet","sourceId":0,"votes":0,"voteCount":0,"language":{"id":22,"name":"Hungarian"},"id":6148},{"sourceType":"tmdb","movieId":617,"title":"\u7a7a\u4e2d\u5927\u704c\u7bee2\uff1a\u65b0\u4f20\u5947","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6162},{"sourceType":"tmdb","movieId":617,"title":"Space Jam 2: A New Legacy","sourceId":0,"votes":0,"voteCount":0,"language":{"id":4,"name":"German"},"id":6197}],"secondaryYearSourceId":0,"sortTitle":"space jam new legacy","sizeOnDisk":7799415218,"status":"released","overview":"When LeBron and his young son Dom are trapped in a digital space by a rogue A.I., LeBron must get them home safe by leading Bugs, Lola Bunny and the whole gang of notoriously undisciplined Looney Tunes to victory over the A.I.'s digitized champions on the court. It's Tunes versus Goons in the highest-stakes challenge of his life.","inCinemas":"2021-07-15T00:00:00Z","physicalRelease":"2021-11-04T00:00:00Z","digitalRelease":"2021-07-15T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/617\/poster.jpg?lastWrite=637622325753244040","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/5bFK5d3mVTAvBCXi5NPWH0tYjKl.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/617\/fanart.jpg?lastWrite=637622325754284024","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/8s4h9friP6Ci3adRGahHARVd76E.jpg"}],"website":"https:\/\/www.spacejam.com","year":2021,"hasFile":true,"youTubeTrailerId":"RCsEKvz2mxs","studio":"Warner Animation Group","path":"\/movies\/Space Jam A New Legacy (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Space Jam A New Legacy (2021)","runtime":115,"cleanTitle":"spacejamnewlegacy","imdbId":"tt3554046","tmdbId":379686,"titleSlug":"379686","certification":"PG","genres":["Animation","Comedy","Family"],"tags":[],"added":"2021-07-18T19:16:14Z","ratings":{"votes":2048,"value":7.4},"movieFile":{"movieId":617,"relativePath":"Space Jam A New Legacy.2021-WEBDL-1080p.mkv","path":"\/movies\/Space Jam A New Legacy (2021)\/Space Jam A New Legacy.2021-WEBDL-1080p.mkv","size":7799415218,"dateAdded":"2021-07-18T19:35:46Z","sceneName":"Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM","indexerFlags":1,"quality":{"quality":{"id":3,"name":"WEBDL-1080p","source":"webdl","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"JOC","audioBitrate":768000,"audioChannels":5.1,"audioCodec":"EAC3 Atmos","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":8250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1080","runTime":"1:55:28","scanType":"Progressive","subtitles":"English \/ English"},"originalFilePath":"Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM\/Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM.mkv","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"CM","edition":"","id":729},"collection":{"name":"Space Jam Collection","tmdbId":722961,"images":[]},"id":617},{"title":"Space Jam","originalTitle":"Space Jam","alternateTitles":[{"sourceType":"tmdb","movieId":618,"title":"Basket spatial","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6152},{"sourceType":"tmdb","movieId":618,"title":"Svemirski basket","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6153},{"sourceType":"tmdb","movieId":618,"title":"Space Jam - El Juego del Siglo","sourceId":0,"votes":0,"voteCount":0,"language":{"id":31,"name":"Arabic"},"id":6154},{"sourceType":"tmdb","movieId":618,"title":"\u041a\u043e\u0441\u043c\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u0431\u0438\u0432\u043a\u0438","sourceId":0,"votes":0,"voteCount":0,"language":{"id":29,"name":"Bulgarian"},"id":6155},{"sourceType":"tmdb","movieId":618,"title":"Meciul secolului","sourceId":0,"votes":0,"voteCount":0,"language":{"id":27,"name":"Romanian"},"id":6156},{"sourceType":"tmdb","movieId":618,"title":"\u041a\u043e\u0441\u043ci\u0447\u043d\u0438\u0439 \u0414\u0436\u0435\u043c","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6157},{"sourceType":"tmdb","movieId":618,"title":"\u592a\u7a7a\u4e5f\u5165\u6a3d","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6158},{"sourceType":"tmdb","movieId":618,"title":"Kosmiczny Mecz","sourceId":0,"votes":0,"voteCount":0,"language":{"id":12,"name":"Polish"},"id":6159}],"secondaryYearSourceId":0,"sortTitle":"space jam","sizeOnDisk":1820238497,"status":"released","overview":"Jokes fly as the Tune Squad takes on the Nerdlucks in a hardcourt game to decide if the Looney Tunes remain here... or become attractions at a far-off galactic off-ramp called Moron Mountain. The Nerdlucks have a monstrous secret weapon: they've stolen the skills of top NBA stars like Charles Barkley and Patrick Ewing and become Monstars. But that's not all, folks. The Tune Squad\u2019s secret weapon just happens to be the finest player in this or any other universe. He's outta this world. So's the fun.","inCinemas":"1996-11-15T00:00:00Z","physicalRelease":"1998-11-27T00:00:00Z","digitalRelease":"2002-10-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/618\/poster.jpg?lastWrite=637646534893340512","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/4RN5El3Pj2W4gpwgiAGLVfSJv2g.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/618\/fanart.jpg?lastWrite=637624987076022369","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/xIoWDHSA2ymOewcCpoUID4PpDb3.jpg"}],"website":"https:\/\/spacejam.com","year":1996,"hasFile":true,"youTubeTrailerId":"v98aXG562h4","studio":"Warner Bros. Pictures","path":"\/movies\/Space Jam (1996)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Space Jam (1996)","runtime":88,"cleanTitle":"spacejam","imdbId":"tt0117705","tmdbId":2300,"titleSlug":"2300","certification":"PG","genres":["Comedy","Family","Animation"],"tags":[],"added":"2021-07-21T21:11:47Z","ratings":{"votes":4578,"value":6.9},"movieFile":{"movieId":618,"relativePath":"Space Jam.1996-Bluray-1080p.mkv","path":"\/movies\/Space Jam (1996)\/Space Jam.1996-Bluray-1080p.mkv","size":1820238497,"dateAdded":"2021-07-21T21:16:59Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":3766295,"audioChannels":7.1,"audioCodec":"AAC","audioLanguages":"English","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":9238147,"videoCodec":"x265","videoFps":23.976,"resolution":"1920x1080","runTime":"1:27:20","scanType":"","subtitles":"English"},"originalFilePath":"space.jam.1996.1080p.bluray.dd5.1.hevc.x265.mkv","qualityCutoffNotMet":false,"languages":[{"id":1,"name":"English"}],"edition":"","id":730},"collection":{"name":"Space Jam Collection","tmdbId":722961,"images":[]},"id":618},{"title":"Bo Burnham: Inside","originalTitle":"Bo Burnham: Inside","alternateTitles":[{"sourceType":"tmdb","movieId":620,"title":"Inside","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6212},{"sourceType":"tmdb","movieId":620,"title":"\u05d1\u05d5 \u05d1\u05e8\u05e0\u05d4\u05d0\u05dd: \u05d1\u05e4\u05e0\u05d9\u05dd","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6213},{"sourceType":"tmdb","movieId":620,"title":"\u0e42\u0e1a \u0e40\u0e1a\u0e34\u0e23\u0e4c\u0e19\u0e41\u0e2e\u0e21: \u0e2b\u0e31\u0e27\u0e40\u0e23\u0e32\u0e30\u0e02\u0e49\u0e32\u0e07\u0e43\u0e19","sourceId":0,"votes":0,"voteCount":0,"language":{"id":28,"name":"Thai"},"id":6214}],"secondaryYearSourceId":0,"sortTitle":"bo burnham inside","sizeOnDisk":1734422016,"status":"released","overview":"Stuck in COVID-19 lockdown, US comedian and musician Bo Burnham attempts to stay sane and happy by writing, shooting and performing a one-man comedy special.","inCinemas":"2021-07-22T00:00:00Z","digitalRelease":"2021-05-30T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/620\/poster.jpg?lastWrite=637651031314898564","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/ku1UvTWYvhFQbSesOD6zteY7bXT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/620\/fanart.jpg?lastWrite=637651031315578552","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/9sfVyE3sP2dkCwDyV7UlYP5TAAR.jpg"}],"website":"https:\/\/www.netflix.com\/title\/81289483","year":2021,"hasFile":true,"youTubeTrailerId":"","studio":"Attic Bedroom","path":"\/movies\/Bo Burnham Inside (2021)","qualityProfileId":1,"monitored":true,"minimumAvailability":"preDB","isAvailable":true,"folderName":"\/movies\/Bo Burnham Inside (2021)","runtime":87,"cleanTitle":"boburnhaminside","imdbId":"tt14544192","tmdbId":823754,"titleSlug":"823754","certification":"R","genres":["Comedy"],"tags":[],"added":"2021-08-21T00:38:51Z","ratings":{"votes":75,"value":8.4},"movieFile":{"movieId":620,"relativePath":"Bo Burnham Inside.2021-WEBRip-1080p.mp4","path":"\/movies\/Bo Burnham Inside (2021)\/Bo Burnham Inside.2021-WEBRip-1080p.mp4","size":1734422016,"dateAdded":"2021-08-21T00:42:17Z","sceneName":"Bo.Burnham.Inside.2021.1080p.WEBRip.x264.AAC5.1-[YTS.MX]","indexerFlags":1,"quality":{"quality":{"id":15,"name":"WEBRip-1080p","source":"webrip","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"LC","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AAC","audioLanguages":"","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":2250000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x1072","runTime":"1:27:38","scanType":"Progressive","subtitles":""},"originalFilePath":"Bo Burnham Inside (2021) [1080p] [WEBRip] [5.1] [YTS.MX]\/Bo.Burnham.Inside.2021.1080p.WEBRip.x264.AAC5.1-[YTS.MX].mp4","qualityCutoffNotMet":true,"languages":[{"id":1,"name":"English"}],"releaseGroup":"YTS.MX","edition":"","id":733},"id":620},{"title":"Vivarium","originalTitle":"Vivarium","alternateTitles":[{"sourceType":"tmdb","movieId":621,"title":"Vivero","sourceId":0,"votes":0,"voteCount":0,"language":{"id":3,"name":"Spanish"},"id":6259},{"sourceType":"tmdb","movieId":621,"title":"\u8d85\u5b8c\u7f8e\u793e\u5340","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6260}],"secondaryYearSourceId":0,"sortTitle":"vivarium","sizeOnDisk":2601859913,"status":"released","overview":"A young woman and her fianc\u00e9 are in search of the perfect starter home. After following a mysterious real estate agent to a new housing development, the couple finds themselves trapped in a maze of identical houses and forced to raise an otherworldly child.","inCinemas":"2020-03-11T00:00:00Z","physicalRelease":"2020-05-25T00:00:00Z","digitalRelease":"2020-03-27T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/621\/poster.jpg?lastWrite=637659259971258988","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/myf3qzpeN0JbuFRPwSpJcz7rmAT.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/621\/fanart.jpg?lastWrite=637659259972258972","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/zLa8fA7boGtNoNH7n6iYi9UqoaH.jpg"}],"website":"https:\/\/www.vertigoreleasing.com\/portfolio\/vivarium\/","year":2019,"hasFile":true,"youTubeTrailerId":"ywzmicMitN0","studio":"Fantastic Films","path":"\/movies\/Vivarium (2019)","qualityProfileId":1,"monitored":true,"minimumAvailability":"announced","isAvailable":true,"folderName":"\/movies\/Vivarium (2019)","runtime":97,"cleanTitle":"vivarium","imdbId":"tt8368406","tmdbId":458305,"titleSlug":"458305","certification":"R","genres":["Science Fiction","Horror","Mystery"],"tags":[],"added":"2021-08-30T13:13:16Z","ratings":{"votes":1086,"value":6},"movieFile":{"movieId":621,"relativePath":"Vivarium.2019-Bluray-1080p.mkv","path":"\/movies\/Vivarium (2019)\/Vivarium.2019-Bluray-1080p.mkv","size":2601859913,"dateAdded":"2021-08-30T13:19:19Z","indexerFlags":1,"quality":{"quality":{"id":7,"name":"Bluray-1080p","source":"bluray","resolution":1080,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":5.1,"audioCodec":"AC3","audioLanguages":"Italian \/ English","audioStreamCount":2,"videoBitDepth":8,"videoBitrate":2500000,"videoCodec":"x264","videoFps":23.976,"resolution":"1920x802","runTime":"1:38:37","scanType":"Progressive","subtitles":"Italian \/ Italian \/ English"},"originalFilePath":"Vivarium 2019 BluRay 1080p.H264 Ita Eng AC3 5.1 Sub Ita Eng MIRCrew.mkv","qualityCutoffNotMet":false,"languages":[{"id":5,"name":"Italian"},{"id":1,"name":"English"}],"edition":"","id":734},"id":621},{"title":"Angel's Egg","originalTitle":"\u5929\u4f7f\u306e\u305f\u307e\u3054","alternateTitles":[{"sourceType":"tmdb","movieId":623,"title":"Tenshi no Tamago","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6281},{"sourceType":"tmdb","movieId":623,"title":"Egg of God","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6282},{"sourceType":"tmdb","movieId":623,"title":"Mystical Egg of the Angels","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6283},{"sourceType":"tmdb","movieId":623,"title":"\u042f\u0439\u0446\u043e \u0430\u043d\u0433\u0435\u043b\u0430","sourceId":0,"votes":0,"voteCount":0,"language":{"id":11,"name":"Russian"},"id":6284},{"sourceType":"tmdb","movieId":623,"title":"\u5929\u4f7f\u306e\u305f\u307e\u3054","sourceId":0,"votes":0,"voteCount":0,"language":{"id":1,"name":"English"},"id":6285},{"sourceType":"tmdb","movieId":623,"title":"L'\u0153uf de l'ange","sourceId":0,"votes":0,"voteCount":0,"language":{"id":2,"name":"French"},"id":6286}],"secondaryYearSourceId":0,"sortTitle":"angel s egg","sizeOnDisk":1173605648,"status":"released","overview":"A mysterious young girl wanders a desolate, otherworldly landscape, carrying a large egg.","inCinemas":"1985-12-22T00:00:00Z","images":[{"coverType":"poster","url":"\/radarr\/MediaCover\/623\/poster.jpg?lastWrite=637664416407992493","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/dRUB7sDcedqatDfyuRqyQulmW97.jpg"},{"coverType":"fanart","url":"\/radarr\/MediaCover\/623\/fanart.jpg?lastWrite=637664416408792481","remoteUrl":"https:\/\/image.tmdb.org\/t\/p\/original\/HUvuptSzuS4VshzG8w01NiMd1A.jpg"}],"website":"","year":1985,"hasFile":true,"youTubeTrailerId":"r04X-ImELzc","studio":"Tokuma Shoten","path":"\/movies\/Angel's Egg (1985)","qualityProfileId":1,"monitored":false,"minimumAvailability":"inCinemas","isAvailable":true,"folderName":"\/movies\/Angel's Egg (1985)","runtime":71,"cleanTitle":"angelsegg","imdbId":"tt0208502","tmdbId":15916,"titleSlug":"15916","genres":["Animation","Drama","Fantasy"],"tags":[],"added":"2021-09-05T12:27:20Z","ratings":{"votes":238,"value":7.8},"movieFile":{"movieId":623,"relativePath":"Angel's Egg.1985-DVD.mkv","path":"\/movies\/Angel's Egg (1985)\/Angel's Egg.1985-DVD.mkv","size":1173605648,"dateAdded":"2021-09-05T21:01:51Z","sceneName":"angels.egg.1985.dvdrip.x264.ac3.[daifuku]","indexerFlags":0,"quality":{"quality":{"id":2,"name":"DVD","source":"dvd","resolution":480,"modifier":"none"},"revision":{"version":1,"real":0,"isRepack":false}},"mediaInfo":{"audioAdditionalFeatures":"","audioBitrate":384000,"audioChannels":2,"audioCodec":"AC3","audioLanguages":"Japanese","audioStreamCount":1,"videoBitDepth":8,"videoBitrate":1816000,"videoCodec":"x264","videoFps":23.976,"resolution":"712x476","runTime":"1:11:04","scanType":"Progressive","subtitles":"English \/ English"},"originalFilePath":"angels.egg.1985.dvdrip.x264.ac3.[daifuku].mkv","qualityCutoffNotMet":true,"languages":[{"id":8,"name":"Japanese"}],"releaseGroup":"daifuku","edition":"","id":735},"id":623}],"status":{"version":"3.2.2.5080","buildTime":"2021-06-03T11:51:33Z","isDebug":false,"isProduction":true,"isAdmin":false,"isUserInteractive":true,"startupPath":"\/app\/radarr\/bin","appData":"\/config","osName":"ubuntu","osVersion":"20.04","isNetCore":true,"isMono":false,"isLinux":true,"isOsx":false,"isWindows":false,"isDocker":true,"mode":"console","branch":"master","authentication":"none","sqliteVersion":"3.31.1","migrationVersion":195,"urlBase":"\/radarr","runtimeVersion":"5.0.5","runtimeName":"netCore","startTime":"2021-08-06T18:00:59Z","packageVersion":"3.2.2.5080-ls106","packageAuthor":"linuxserver.io","packageUpdateMechanism":"docker"}},"qbt":{"status":{"categories":{"Animu":{"name":"Animu","savePath":""},"Computer Bild Spiele":{"name":"Computer Bild Spiele","savePath":""},"Cyberpunk 2077":{"name":"Cyberpunk 2077","savePath":""},"IA":{"name":"IA","savePath":""},"Laszlo":{"name":"Laszlo","savePath":""},"LibGen":{"name":"LibGen","savePath":""},"MediaDash":{"name":"MediaDash","savePath":""},"Scrapland":{"name":"Scrapland","savePath":""},"bakabt_seeds":{"name":"bakabt_seeds","savePath":""},"lidarr":{"name":"lidarr","savePath":""},"prowlarr":{"name":"prowlarr","savePath":""},"radarr":{"name":"radarr","savePath":""},"radarr_finished":{"name":"radarr_finished","savePath":""},"sonarr":{"name":"sonarr","savePath":""},"sonarr_finished":{"name":"sonarr_finished","savePath":""}},"full_update":true,"rid":1,"server_state":{"alltime_dl":28783725830170,"alltime_ul":11341122517104,"average_time_queue":1957,"connection_status":"connected","dht_nodes":378,"dl_info_data":516489974112,"dl_info_speed":0,"dl_rate_limit":20480000,"free_space_on_disk":6242109583360,"global_ratio":"0.39","queued_io_jobs":0,"queueing":false,"read_cache_hits":"24.99","read_cache_overload":"0","refresh_interval":1500,"total_buffers_size":573112320,"total_peer_connections":62,"total_queued_size":0,"total_wasted_session":1069311364,"up_info_data":398693624144,"up_info_speed":258608,"up_rate_limit":0,"use_alt_speed_limits":true,"write_cache_overload":"0"},"tags":[],"torrents":{"08ed6bbec4a27eb0d2285d3f547cd4d69e7fdc22":{"added_on":1592919455,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":161611984,"completion_on":1592919496,"content_path":"\/downloads\/bakabt_seeds\/Uzumaki","dl_limit":-1,"dlspeed":0,"downloaded":165286802,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630733478,"magnet_uri":"magnet:?xt=urn:btih:08ed6bbec4a27eb0d2285d3f547cd4d69e7fdc22&dn=Uzumaki&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Uzumaki","num_complete":25,"num_incomplete":8,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.16308937358471004,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36875147,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":161611984,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36875200,"total_size":161611984,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":26956521,"uploaded_session":7920,"upspeed":0,"hash":"08ed6bbec4a27eb0d2285d3f547cd4d69e7fdc22","speed":0,"eta_act":0},"0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3":{"added_on":1627272876,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":911904482,"completion_on":1627273491,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E06.REPACK.1080p.WEBRip.x264-BAE[TGx]","dl_limit":-1,"dlspeed":0,"downloaded":917222546,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138023,"magnet_uri":"magnet:?xt=urn:btih:0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3&dn=Rick.and.Morty.S05E06.REPACK.1080p.WEBRip.x264-BAE%5bTGx%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E06.REPACK.1080p.WEBRip.x264-BAE[TGx]","num_complete":751,"num_incomplete":85,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":17.909842159505747,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3862948,"seeding_time_limit":-2,"seen_complete":1631138474,"seq_dl":false,"size":911904482,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3863563,"total_size":911904482,"tracker":"udp:\/\/explodie.org:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":16427311024,"uploaded_session":7407612287,"upspeed":0,"hash":"0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","speed":0,"eta_act":0},"0c8b77d8492fa32278dade4a0e5b2b1637a63ade":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1427264995,"completion_on":1630249361,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 59 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1429113868,"downloaded_session":1429113868,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631114785,"magnet_uri":"magnet:?xt=urn:btih:0c8b77d8492fa32278dade4a0e5b2b1637a63ade&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2059%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 59 [1080p][Multiple Subtitle].mkv","num_complete":15,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.21335423637495624,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":889111,"seeding_time_limit":-2,"seen_complete":1631132528,"seq_dl":false,"size":1427264995,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893620,"total_size":1427264995,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":19,"up_limit":0,"uploaded":304907498,"uploaded_session":304907498,"upspeed":0,"hash":"0c8b77d8492fa32278dade4a0e5b2b1637a63ade","speed":0,"eta_act":0},"0d4700f560fa6a5bb1992a311786dac67eb20336":{"added_on":1628485697,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":813137374,"completion_on":1628485814,"content_path":"\/downloads\/sonarr_finished\/Tuca.and.Bertie.S02E09.1080p.WEBRip.x264-BAE[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":818941556,"downloaded_session":818941556,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631129774,"magnet_uri":"magnet:?xt=urn:btih:0d4700f560fa6a5bb1992a311786dac67eb20336&dn=Tuca.and.Bertie.S02E09.1080p.WEBRip.x264-BAE%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2810&tr=udp%3a%2f%2f9.rarbg.to%3a2830&tr=udp%3a%2f%2ftracker.slowcheetah.org%3a14740&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13710","max_ratio":-1,"max_seeding_time":-1,"name":"Tuca.and.Bertie.S02E09.1080p.WEBRip.x264-BAE[rartv]","num_complete":32,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":6.5849687923273486,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2652682,"seeding_time_limit":-2,"seen_complete":1631135108,"seq_dl":false,"size":813137374,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2652798,"total_size":813137374,"tracker":"udp:\/\/tracker.fatkhoala.org:13710","trackers_count":5,"up_limit":-1,"uploaded":5392704589,"uploaded_session":5392704589,"upspeed":0,"hash":"0d4700f560fa6a5bb1992a311786dac67eb20336","speed":0,"eta_act":0},"0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1426236546,"completion_on":1630249128,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 62 [1080p][Multiple Subtitle][858749F6].mkv","dl_limit":0,"dlspeed":0,"downloaded":1435239073,"downloaded_session":1435239073,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631132726,"magnet_uri":"magnet:?xt=urn:btih:0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2062%20%5b1080p%5d%5bMultiple%20Subtitle%5d%5b858749F6%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 62 [1080p][Multiple Subtitle][858749F6].mkv","num_complete":31,"num_incomplete":1242,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":0.4173133474885546,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":889368,"seeding_time_limit":-2,"seen_complete":1631132726,"seq_dl":false,"size":1426236546,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893646,"total_size":1426236546,"tracker":"http:\/\/anidex.moe:6969\/announce","trackers_count":19,"up_limit":0,"uploaded":598944422,"uploaded_session":598944422,"upspeed":0,"hash":"0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","speed":0,"eta_act":0},"0f9f26e00a44dff645fd9f88f151a44d5d8341b0":{"added_on":1620150214,"amount_left":0,"auto_tmm":true,"availability":0.04399999976158142,"category":"","completed":15417508940,"completion_on":1620160410,"content_path":"\/downloads\/Serial Experiments Lain Collection 20200710 By Icetric","dl_limit":-1,"dlspeed":0,"downloaded":15418019652,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:0f9f26e00a44dff645fd9f88f151a44d5d8341b0&dn=Serial%20Experiments%20Lain%20Collection%2020200710%20By%20Icetric&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2fu.wwwww.wtf%3a1%2fannounce&tr=udp%3a%2f%2ftracker.zemoj.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2fvalakas.rollo.dnsabr.com%3a2710%2fannounce&tr=udp%3a%2f%2fopentor.org%3a2710%2fannounce&tr=udp%3a%2f%2fwassermann.online%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fvibe.community%3a6969%2fannounce&tr=udp%3a%2f%2ftracker0.ufibox.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2fwww.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker2.dler.org%3a80%2fannounce&tr=udp%3a%2f%2ftracker.zerobytes.xyz%3a1337%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=http%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Serial Experiments Lain Collection 20200710 By Icetric","num_complete":0,"num_incomplete":33,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.2236855534525557,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":0,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":15417508940,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1467799,"total_size":368964535372,"tracker":"","trackers_count":22,"up_limit":-1,"uploaded":3448788259,"uploaded_session":0,"upspeed":0,"hash":"0f9f26e00a44dff645fd9f88f151a44d5d8341b0","speed":0,"eta_act":0},"100232ff0ac7fa6a03668fa26f486c58942dbd1b":{"added_on":1630842693,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":1173605648,"completion_on":1630875653,"content_path":"\/downloads\/radarr_finished\/angels.egg.1985.dvdrip.x264.ac3.[daifuku].mkv","dl_limit":0,"dlspeed":0,"downloaded":1175118332,"downloaded_session":1175118332,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631083156,"magnet_uri":"magnet:?xt=urn:btih:100232ff0ac7fa6a03668fa26f486c58942dbd1b&dn=angels.egg.1985.dvdrip.x264.ac3.%5bdaifuku%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2ftracker.minglong.org%3a8080%2fannounce&tr=http%3a%2f%2fopen.nyaatorrents.info%3a6544%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969&tr=udp%3a%2f%2ftracker.publicbt.com%3a80&tr=udp%3a%2f%2ftracker.istole.it%3a80&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80&tr=http%3a%2f%2fwww.h33t.com%3a3310%2fannounce&tr=udp%3a%2f%2f11.rarbg.com%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=http%3a%2f%2fexodus.desync.com%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"angels.egg.1985.dvdrip.x264.ac3.[daifuku].mkv","num_complete":3,"num_incomplete":58,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.011593281824489484,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":262837,"seeding_time_limit":-2,"seen_complete":1631083162,"seq_dl":false,"size":1173605648,"state":"stalledUP","super_seeding":false,"tags":"","time_active":295796,"total_size":1173605648,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":14,"up_limit":0,"uploaded":13623478,"uploaded_session":13623478,"upspeed":0,"hash":"100232ff0ac7fa6a03668fa26f486c58942dbd1b","speed":0,"eta_act":0},"10fe8a525d503c64e293801b03deae7490a3eb66":{"added_on":1626705209,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":803989930,"completion_on":1626705275,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E05.Amortycan.Grickfitti.1080p.AMZN.WEB-DL.DDP5.1.H.264-RICKC137.mkv","dl_limit":-1,"dlspeed":0,"downloaded":806053070,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631130333,"magnet_uri":"magnet:?xt=urn:btih:10fe8a525d503c64e293801b03deae7490a3eb66&dn=Rick.and.Morty.S05E05.Amortycan.Grickfitti.1080p.AMZN.WEB-DL.DDP5.1.H.264-RICKC137.mkv&tr=http%3a%2f%2ftracker.tfile.co%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftorrentclub.tech%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.justseed.it%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2720%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2740%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2fopen.demonii.si%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.port443.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fdenis.stalker.upeer.me%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2770%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2740%2fannounce&tr=udp%3a%2f%2fipv6.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.mg64.net%3a6969%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2730%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2770%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fbt.xxx-tracker.com%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2730%2fannounce&tr=udp%3a%2f%2ftracker.pirateparty.gr%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2790%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2970%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.birkenwald.de%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=http%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E05.Amortycan.Grickfitti.1080p.AMZN.WEB-DL.DDP5.1.H.264-RICKC137.mkv","num_complete":18,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":25.175453271333613,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4428550,"seeding_time_limit":-2,"seen_complete":1631136410,"seq_dl":false,"size":803989930,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4428616,"total_size":803989930,"tracker":"http:\/\/explodie.org:6969\/announce","trackers_count":42,"up_limit":-1,"uploaded":20292751398,"uploaded_session":3428803909,"upspeed":0,"hash":"10fe8a525d503c64e293801b03deae7490a3eb66","speed":0,"eta_act":0},"158804879e68a2acc29aba65abbf80f20ca058c1":{"added_on":1625258315,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"lidarr","completed":9729940,"completion_on":1625279553,"content_path":"\/downloads\/lidarr\/Bring Me the Horizon - Mantra (CDQ).mp3","dl_limit":-1,"dlspeed":0,"downloaded":9729940,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631110714,"magnet_uri":"magnet:?xt=urn:btih:158804879e68a2acc29aba65abbf80f20ca058c1&dn=Bring%20Me%20the%20Horizon%20-%20Mantra%20(CDQ).mp3&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2fopen.demonii.si%3a1337%2fannounce&tr=udp%3a%2f%2finferno.demonoid.pw%3a3418%2fannounce&tr=udp%3a%2f%2finferno.demonoid.pw%3a3391%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2770%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2fcoppersurfer.tk%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Bring Me the Horizon - Mantra (CDQ) [320 Kbps] [2018][pradyutvam]","num_complete":2,"num_incomplete":1704,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":22.75627085059106,"ratio_limit":-2,"save_path":"\/downloads\/lidarr\/","seeding_time":5854247,"seeding_time_limit":-2,"seen_complete":1631110715,"seq_dl":false,"size":9729940,"state":"stalledUP","super_seeding":false,"tags":"","time_active":5875486,"total_size":9729940,"tracker":"udp:\/\/9.rarbg.com:2770\/announce","trackers_count":13,"up_limit":-1,"uploaded":221417150,"uploaded_session":120485237,"upspeed":0,"hash":"158804879e68a2acc29aba65abbf80f20ca058c1","speed":0,"eta_act":0},"19991e2c9aebd64c77b3d750186f0e4a5086ab8f":{"added_on":1630900196,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":640303322,"completion_on":1630900384,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E09.1080p.WEBRip.x264-CAKES[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":644280761,"downloaded_session":644280761,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138001,"magnet_uri":"magnet:?xt=urn:btih:19991e2c9aebd64c77b3d750186f0e4a5086ab8f&dn=Rick.and.Morty.S05E09.1080p.WEBRip.x264-CAKES%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2930&tr=udp%3a%2f%2f9.rarbg.to%3a2820&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13760&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15770","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E09.1080p.WEBRip.x264-CAKES[rartv]","num_complete":5132,"num_incomplete":1764,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.1125548431516799,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":238112,"seeding_time_limit":-2,"seen_complete":1631138402,"seq_dl":false,"size":640303322,"state":"stalledUP","super_seeding":false,"tags":"","time_active":238299,"total_size":640303322,"tracker":"udp:\/\/tracker.tallpenguin.org:15770","trackers_count":5,"up_limit":-1,"uploaded":716797681,"uploaded_session":716797681,"upspeed":0,"hash":"19991e2c9aebd64c77b3d750186f0e4a5086ab8f","speed":0,"eta_act":0},"202187b70e35b9bc491b9b93ad71c84720efe276":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1425184517,"completion_on":1630249219,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 60 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1427078935,"downloaded_session":1427078935,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631130015,"magnet_uri":"magnet:?xt=urn:btih:202187b70e35b9bc491b9b93ad71c84720efe276&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2060%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 60 [1080p][Multiple Subtitle].mkv","num_complete":27,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.1821103133303555,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":889273,"seeding_time_limit":-2,"seen_complete":1631132960,"seq_dl":false,"size":1425184517,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893640,"total_size":1425184517,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":19,"up_limit":0,"uploaded":259885792,"uploaded_session":259885792,"upspeed":0,"hash":"202187b70e35b9bc491b9b93ad71c84720efe276","speed":0,"eta_act":0},"2193e38f2b6075d602093007e5325cd5e8d84a6c":{"added_on":1626635779,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":7799415249,"completion_on":1626636918,"content_path":"\/downloads\/radarr_finished\/Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM","dl_limit":-1,"dlspeed":0,"downloaded":7822428972,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138495,"magnet_uri":"magnet:?xt=urn:btih:2193e38f2b6075d602093007e5325cd5e8d84a6c&dn=Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM&tr=http%3a%2f%2ftracker.tfile.co%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftorrentclub.tech%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.justseed.it%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2720%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2740%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2fopen.demonii.si%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.port443.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fdenis.stalker.upeer.me%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2770%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2740%2fannounce&tr=udp%3a%2f%2fipv6.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.mg64.net%3a6969%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2730%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2770%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fbt.xxx-tracker.com%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2730%2fannounce&tr=udp%3a%2f%2ftracker.pirateparty.gr%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=http%3a%2f%2ftracker.trackerfix.com%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2790%2fannounce&tr=http%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12740%2fannounce&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15720%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2950%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2760%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Space.Jam.a.New.Legacy.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.x264-CM","num_complete":517,"num_incomplete":30,"num_leechs":5,"num_seeds":1,"priority":0,"progress":1,"ratio":13.084835763977583,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":4496906,"seeding_time_limit":-2,"seen_complete":1631138312,"seq_dl":false,"size":7799415249,"state":"uploading","super_seeding":false,"tags":"","time_active":4498045,"total_size":7799415249,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":40,"up_limit":-1,"uploaded":102355198374,"uploaded_session":33231628970,"upspeed":69128,"hash":"2193e38f2b6075d602093007e5325cd5e8d84a6c","speed":69128,"eta_act":0},"26cd5a9ca036366d52178144d7e7a838f0fa5cab":{"added_on":1627180713,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1424548064,"completion_on":1627180909,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 58 (1080p) [A0258F2B].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1430886460,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138281,"magnet_uri":"magnet:?xt=urn:btih:26cd5a9ca036366d52178144d7e7a838f0fa5cab&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2058%20(1080p)%20%5bA0258F2B%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 58 (1080p) [A0258F2B].mkv","num_complete":40,"num_incomplete":1,"num_leechs":1,"num_seeds":1,"priority":0,"progress":1,"ratio":1.8849330861653413,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3955530,"seeding_time_limit":-2,"seen_complete":1631135732,"seq_dl":false,"size":1424548064,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3955725,"total_size":1424548064,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":16,"up_limit":-1,"uploaded":2697125231,"uploaded_session":887421438,"upspeed":0,"hash":"26cd5a9ca036366d52178144d7e7a838f0fa5cab","speed":0,"eta_act":0},"2adcec0f2555b8bfb3f187d410818e2821d5d2e4":{"added_on":1628789579,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":13679182731,"completion_on":1628793517,"content_path":"\/downloads\/radarr_finished\/Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP.mkv","dl_limit":-1,"dlspeed":0,"downloaded":13699689394,"downloaded_session":13699689394,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631133801,"magnet_uri":"magnet:?xt=urn:btih:2adcec0f2555b8bfb3f187d410818e2821d5d2e4&dn=Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Evangelion.3.0.1.01.Thrice.Upon.a.Time.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-KRP.mkv","num_complete":117,"num_incomplete":9,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":5.686805148087578,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":2344979,"seeding_time_limit":-2,"seen_complete":1631138146,"seq_dl":false,"size":13679182731,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2348916,"total_size":13679182731,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":5,"up_limit":-1,"uploaded":77907464173,"uploaded_session":77907464173,"upspeed":0,"hash":"2adcec0f2555b8bfb3f187d410818e2821d5d2e4","speed":0,"eta_act":0},"2b2edf41d909b1cb97a4dcb1b249fd6539a695b2":{"added_on":1593370762,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":106325093,"completion_on":1593372936,"content_path":"\/downloads\/bakabt_seeds\/13 Club","dl_limit":-1,"dlspeed":0,"downloaded":106460286,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1610300340,"magnet_uri":"magnet:?xt=urn:btih:2b2edf41d909b1cb97a4dcb1b249fd6539a695b2&dn=13%20Club&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"13 Club","num_complete":7,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.3574381248609458,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":35500106,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":106325093,"state":"stalledUP","super_seeding":false,"tags":"","time_active":35502296,"total_size":106325093,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":38052965,"uploaded_session":0,"upspeed":0,"hash":"2b2edf41d909b1cb97a4dcb1b249fd6539a695b2","speed":0,"eta_act":0},"2bd1b302fcca75c7b4c72547840c35434057e246":{"added_on":1613931584,"amount_left":29331714048,"auto_tmm":true,"availability":0,"category":"","completed":0,"completion_on":1613963065,"content_path":"\/downloads\/Zentrix - DVDISO","dl_limit":-1,"dlspeed":0,"downloaded":29331714048,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:2bd1b302fcca75c7b4c72547840c35434057e246&dn=Zentrix%20-%20DVDISO&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Lycan] Zentrix - DVDISO EngDUB","num_complete":0,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":2,"progress":0,"ratio":0.0008498526188823154,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":2037986,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":29331714048,"state":"missingFiles","super_seeding":false,"tags":"","time_active":2069468,"total_size":29331714048,"tracker":"","trackers_count":5,"up_limit":-1,"uploaded":24927634,"uploaded_session":0,"upspeed":0,"hash":"2bd1b302fcca75c7b4c72547840c35434057e246","speed":0,"eta_act":0},"2d7ca783a6ab3956460e0457be1d17d0de37bfc2":{"added_on":1595513354,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"bakabt_seeds","completed":1899406011,"completion_on":1595522656,"content_path":"\/downloads\/bakabt_seeds\/Deadman Wonderland [FLAC]","dl_limit":204800,"dlspeed":0,"downloaded":1900442913,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630772443,"magnet_uri":"magnet:?xt=urn:btih:2d7ca783a6ab3956460e0457be1d17d0de37bfc2&dn=Deadman%20Wonderland%20%5bFLAC%5d&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Deadman Wonderland [FLAC]","num_complete":13,"num_incomplete":8,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.03531535914122983,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":34000018,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":1899406011,"state":"stalledUP","super_seeding":false,"tags":"","time_active":34009334,"total_size":1899406011,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":0,"uploaded":67114824,"uploaded_session":4928705,"upspeed":0,"hash":"2d7ca783a6ab3956460e0457be1d17d0de37bfc2","speed":0,"eta_act":0},"308d8c35dc0f6bdf52abe90ead5f5692c670e403":{"added_on":1626902044,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":1820238497,"completion_on":1626902206,"content_path":"\/downloads\/radarr_finished\/space.jam.1996.1080p.bluray.dd5.1.hevc.x265.mkv","dl_limit":-1,"dlspeed":0,"downloaded":1826993605,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631135239,"magnet_uri":"magnet:?xt=urn:btih:308d8c35dc0f6bdf52abe90ead5f5692c670e403&dn=space.jam.1996.1080p.bluray.dd5.1.hevc.x265.mkv&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Space Jam 1996 1080p BluRay AAC 5.1 HEVC x265","num_complete":42,"num_incomplete":3,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":9.939828684293616,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":4231619,"seeding_time_limit":-2,"seen_complete":1631138426,"seq_dl":false,"size":1820238497,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4231781,"total_size":1820238497,"tracker":"udp:\/\/explodie.org:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":18160003441,"uploaded_session":9076649674,"upspeed":0,"hash":"308d8c35dc0f6bdf52abe90ead5f5692c670e403","speed":0,"eta_act":0},"328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2":{"added_on":1625258411,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"lidarr","completed":11073213,"completion_on":1625380698,"content_path":"\/downloads\/lidarr\/01 wonderful life (feat. Dani Filth).mp3","dl_limit":-1,"dlspeed":0,"downloaded":11073213,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631026031,"magnet_uri":"magnet:?xt=urn:btih:328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2&dn=01%20wonderful%20life%20(feat.%20Dani%20Filth).mp3&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2780%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2720%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.sktorrent.net%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2fcoppersurfer.tk%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Bring Me the Horizon - wonderful life (feat. Dani Filth) (Single) [2018] [320 KBPS][Pradyutvam]","num_complete":2,"num_incomplete":2842,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":21.04078662624841,"ratio_limit":-2,"save_path":"\/downloads\/lidarr\/","seeding_time":5753107,"seeding_time_limit":-2,"seen_complete":1629884617,"seq_dl":false,"size":11073213,"state":"stalledUP","super_seeding":false,"tags":"","time_active":5875395,"total_size":11073213,"tracker":"udp:\/\/9.rarbg.to:2720\/announce","trackers_count":12,"up_limit":-1,"uploaded":232989112,"uploaded_session":134465433,"upspeed":0,"hash":"328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","speed":0,"eta_act":0},"35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1425025805,"completion_on":1630249691,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 53 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1427586508,"downloaded_session":1427586508,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137123,"magnet_uri":"magnet:?xt=urn:btih:35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2053%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 53 [1080p][Multiple Subtitle].mkv","num_complete":11,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.14138497167696684,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888805,"seeding_time_limit":-2,"seen_complete":1631128867,"seq_dl":false,"size":1425025805,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893644,"total_size":1425025805,"tracker":"udp:\/\/retracker.lanta-net.ru:2710\/announce","trackers_count":19,"up_limit":0,"uploaded":201839278,"uploaded_session":201839278,"upspeed":0,"hash":"35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","speed":0,"eta_act":0},"3a3257fb923c5217bb251a6891de9822801732e5":{"added_on":1613948535,"amount_left":33819312128,"auto_tmm":true,"availability":0,"category":"IA","completed":0,"completion_on":1614004488,"content_path":"\/downloads\/IA\/ynfga-jan-12-2018","dl_limit":-1,"dlspeed":0,"downloaded":33819462600,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:3a3257fb923c5217bb251a6891de9822801732e5&dn=ynfga-jan-12-2018&tr=http%3a%2f%2fbt1.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fbt2.archive.org%3a6969%2fannounce&ws=http%3a%2f%2fia601501.us.archive.org%2f3%2fitems%2f&ws=http%3a%2f%2fia801501.us.archive.org%2f3%2fitems%2f&ws=https%3a%2f%2farchive.org%2fdownload%2f","max_ratio":-1,"max_seeding_time":-1,"name":"ynfga-jan-12-2018","num_complete":0,"num_incomplete":0,"num_leechs":0,"num_seeds":0,"priority":3,"progress":0,"ratio":0,"ratio_limit":-2,"save_path":"\/downloads\/IA\/","seeding_time":31424,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":33819312128,"state":"missingFiles","super_seeding":false,"tags":"","time_active":87376,"total_size":33831256064,"tracker":"","trackers_count":2,"up_limit":-1,"uploaded":0,"uploaded_session":0,"upspeed":0,"hash":"3a3257fb923c5217bb251a6891de9822801732e5","speed":0,"eta_act":0},"3ace983989e5f6288a9792c8cdda9ba725b6e4c8":{"added_on":1608568384,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":8307656999,"completion_on":1608570106,"content_path":"\/downloads\/Fallout.New.Vegas.Ultimate.Edition.v1.4.0.52.GOG.zip","dl_limit":-1,"dlspeed":0,"downloaded":8377827910,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:3ace983989e5f6288a9792c8cdda9ba725b6e4c8&dn=Fallout.New.Vegas.Ultimate.Edition.v1.4.0.52.GOG.zip&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.ch%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.aletorrenty.pl%3a2710%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.ilibr.org%3a80%2fannounce&tr=udp%3a%2f%2ftracker.ilibr.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2fcoppersurfer.tk%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Fallout: New Vegas Ultimate Edition v1.4.0.52-GOG","num_complete":0,"num_incomplete":100,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.7299282262292257,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":3312314,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":8307656999,"state":"pausedUP","super_seeding":false,"tags":"","time_active":3314036,"total_size":8307656999,"tracker":"","trackers_count":14,"up_limit":-1,"uploaded":31248696796,"uploaded_session":0,"upspeed":0,"hash":"3ace983989e5f6288a9792c8cdda9ba725b6e4c8","speed":0,"eta_act":0},"41d6875e215f0df0523a8f40be3387003972a8fa":{"added_on":1593370762,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":51362466,"completion_on":1593372974,"content_path":"\/downloads\/bakabt_seeds\/From 701 Goushitsu","dl_limit":-1,"dlspeed":0,"downloaded":51524334,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630767500,"magnet_uri":"magnet:?xt=urn:btih:41d6875e215f0df0523a8f40be3387003972a8fa&dn=From%20701%20Goushitsu&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"From 701 Goushitsu","num_complete":6,"num_incomplete":2,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.8323817247205951,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36312443,"seeding_time_limit":-2,"seen_complete":1630767613,"seq_dl":false,"size":51362466,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36314670,"total_size":51362466,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":42887914,"uploaded_session":6846048,"upspeed":0,"hash":"41d6875e215f0df0523a8f40be3387003972a8fa","speed":0,"eta_act":0},"43f850143ad442d25b8d3805820fc439a68f9140":{"added_on":1629004560,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":804658620,"completion_on":1629004633,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E10.Yesterdays.Lie.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","dl_limit":-1,"dlspeed":0,"downloaded":805002418,"downloaded_session":805002418,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138434,"magnet_uri":"magnet:?xt=urn:btih:43f850143ad442d25b8d3805820fc439a68f9140&dn=The.Owl.House.S02E10.Yesterdays.Lie.1080p.HULU.WEBRip.AAC2.0.H264-LAZY%5bTGx%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E10.Yesterdays.Lie.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","num_complete":74,"num_incomplete":24,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":8.142849356012741,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2133863,"seeding_time_limit":-2,"seen_complete":1631137515,"seq_dl":false,"size":804658620,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2133936,"total_size":804658620,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":10,"up_limit":-1,"uploaded":6555013421,"uploaded_session":6555013421,"upspeed":0,"hash":"43f850143ad442d25b8d3805820fc439a68f9140","speed":0,"eta_act":0},"44f0cda312e1e64b53db2574cf87e3d49033f36e":{"added_on":1593370762,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":57915547,"completion_on":1593373292,"content_path":"\/downloads\/bakabt_seeds\/By Your Side (720p)[Zapuni].mp4","dl_limit":-1,"dlspeed":0,"downloaded":58101552,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1626688812,"magnet_uri":"magnet:?xt=urn:btih:44f0cda312e1e64b53db2574cf87e3d49033f36e&dn=By%20Your%20Side%20(720p)%5bZapuni%5d.mp4&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"By Your Side (720p)[Zapuni].mp4","num_complete":8,"num_incomplete":0,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.18232215208295985,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36305139,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":57915547,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36307684,"total_size":57915547,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":10593200,"uploaded_session":0,"upspeed":0,"hash":"44f0cda312e1e64b53db2574cf87e3d49033f36e","speed":0,"eta_act":0},"44febeb858e75e6a61b8b8a602bd9f11bfef8364":{"added_on":1596495748,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"bakabt_seeds","completed":9269578875,"completion_on":1596496267,"content_path":"\/downloads\/bakabt_seeds\/[Exiled-Destiny] When They Cry Higurashi","dl_limit":-1,"dlspeed":0,"downloaded":9279758319,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630499971,"magnet_uri":"magnet:?xt=urn:btih:44febeb858e75e6a61b8b8a602bd9f11bfef8364&dn=%5bExiled-Destiny%5d%20When%20They%20Cry%20Higurashi&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"[Exiled-Destiny] When They Cry Higurashi","num_complete":138,"num_incomplete":5,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.11113822435314653,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":33311768,"seeding_time_limit":-2,"seen_complete":1629587015,"seq_dl":false,"size":9269578875,"state":"stalledUP","super_seeding":false,"tags":"","time_active":33312300,"total_size":9269578875,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":1031335862,"uploaded_session":25183528,"upspeed":0,"hash":"44febeb858e75e6a61b8b8a602bd9f11bfef8364","speed":0,"eta_act":0},"459479508451166b4329072e25a4126c09734e0d":{"added_on":1630809742,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1424349097,"completion_on":1630809892,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 64 (1080p) [B2BDF7A5].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1427319797,"downloaded_session":1427319797,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631135819,"magnet_uri":"magnet:?xt=urn:btih:459479508451166b4329072e25a4126c09734e0d&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2064%20(1080p)%20%5bB2BDF7A5%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 64 (1080p) [B2BDF7A5].mkv","num_complete":147,"num_incomplete":6,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.3887188373384554,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":328604,"seeding_time_limit":-2,"seen_complete":1631135788,"seq_dl":false,"size":1424349097,"state":"stalledUP","super_seeding":false,"tags":"","time_active":328754,"total_size":1424349097,"tracker":"udp:\/\/tracker.internetwarriors.net:1337\/announce","trackers_count":16,"up_limit":-1,"uploaded":1982145889,"uploaded_session":1982145889,"upspeed":0,"hash":"459479508451166b4329072e25a4126c09734e0d","speed":0,"eta_act":0},"45c0b452736204be49660e2ade9bd933fcc1263e":{"added_on":1630204360,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1424172355,"completion_on":1630204448,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 63 [1080p][Multiple Subtitle][9EDF9DFB].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1424687644,"downloaded_session":1424687644,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631133755,"magnet_uri":"magnet:?xt=urn:btih:45c0b452736204be49660e2ade9bd933fcc1263e&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2063%20%5b1080p%5d%5bMultiple%20Subtitle%5d%5b9EDF9DFB%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 63 [1080p][Multiple Subtitle][9EDF9DFB].mkv","num_complete":33,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":2.2343410742741026,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":934048,"seeding_time_limit":-2,"seen_complete":1631134290,"seq_dl":false,"size":1424172355,"state":"stalledUP","super_seeding":false,"tags":"","time_active":934136,"total_size":1424172355,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":19,"up_limit":-1,"uploaded":3183238121,"uploaded_session":3183238121,"upspeed":0,"hash":"45c0b452736204be49660e2ade9bd933fcc1263e","speed":0,"eta_act":0},"474ce01e9691b6843777a5c2b9a573c721054c8c":{"added_on":1619320501,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":1245148199,"completion_on":1619321361,"content_path":"\/downloads\/[Album] NieR Replicant ver.1.22474487139. Original Soundtrack (2021.04.21)[Flac]","dl_limit":-1,"dlspeed":0,"downloaded":1255530982,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:474ce01e9691b6843777a5c2b9a573c721054c8c&dn=%5bAlbum%5d%20NieR%20Replicant%20ver.1.22474487139.%20Original%20Soundtrack%20(2021.04.21)%5bFlac%5d&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Album] NieR Replicant ver.1.22474487139. Original Soundtrack (2021.04.21)[Flac]","num_complete":0,"num_incomplete":100,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.9239096259912127,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":232139,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":1245148199,"state":"pausedUP","super_seeding":false,"tags":"","time_active":232998,"total_size":1245148199,"tracker":"","trackers_count":5,"up_limit":-1,"uploaded":1159997160,"uploaded_session":0,"upspeed":0,"hash":"474ce01e9691b6843777a5c2b9a573c721054c8c","speed":0,"eta_act":0},"4afc22927def677dc12dd727c5bc50dbcf17d45a":{"added_on":1614159936,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"IA","completed":11826429952,"completion_on":1614160033,"content_path":"\/downloads\/IA\/invaderzimvol2","dl_limit":-1,"dlspeed":0,"downloaded":0,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:4afc22927def677dc12dd727c5bc50dbcf17d45a&dn=invaderzimvol2&tr=http%3a%2f%2fbt1.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fbt2.archive.org%3a6969%2fannounce&ws=%2f24%2fitems%2f&ws=http%3a%2f%2fia601503.us.archive.org%2f24%2fitems%2f&ws=https%3a%2f%2farchive.org%2fdownload%2f","max_ratio":-1,"max_seeding_time":-1,"name":"invaderzimvol2","num_complete":0,"num_incomplete":3,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0,"ratio_limit":-2,"save_path":"\/downloads\/IA\/","seeding_time":102,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":11826429952,"state":"pausedUP","super_seeding":false,"tags":"","time_active":51,"total_size":11962155008,"tracker":"","trackers_count":2,"up_limit":-1,"uploaded":0,"uploaded_session":0,"upspeed":0,"hash":"4afc22927def677dc12dd727c5bc50dbcf17d45a","speed":0,"eta_act":0},"4bc6124e67f9094641ea6f9183e35529ef601a40":{"added_on":1614612746,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":20335721814,"completion_on":1614614741,"content_path":"\/downloads\/Adobe Creative Cloud Collection 2021 (64 Bit MultiLang - Preattivato) [Update 20 10 2020]","dl_limit":-1,"dlspeed":0,"downloaded":20405229844,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:4bc6124e67f9094641ea6f9183e35529ef601a40&dn=Adobe%20Creative%20Cloud%20Collection%202021%20(64%20Bit%20MultiLang%20-%20Preattivato)%20%5bUpdate%2020%2010%202020%5d&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=http%3a%2f%2ftracker.tntvillage.scambioetico.org%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2960%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2800%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=http%3a%2f%2ft.nyaatracker.com%2fannounce&tr=http%3a%2f%2fretracker.mgts.by%3a80%2fannounce&tr=http%3a%2f%2ftracker.torrentyorg.pl%3a80%2fannounce&tr=http%3a%2f%2fpt.lax.mx%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Adobe Creative Cloud Collection 2021 (64 Bit MultiLang - Preattivato) [Update 20 10 2020]","num_complete":0,"num_incomplete":100,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.2861479494050829,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":1386310,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":20335721814,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1388308,"total_size":20335721814,"tracker":"","trackers_count":11,"up_limit":-1,"uploaded":5838914677,"uploaded_session":0,"upspeed":0,"hash":"4bc6124e67f9094641ea6f9183e35529ef601a40","speed":0,"eta_act":0},"4d55a35a1f310131045763ce17fafff297b96b3f":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1421730606,"completion_on":1630249634,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 49 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1423027121,"downloaded_session":1423027121,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631113905,"magnet_uri":"magnet:?xt=urn:btih:4d55a35a1f310131045763ce17fafff297b96b3f&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2049%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 49 [1080p][Multiple Subtitle].mkv","num_complete":14,"num_incomplete":347,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.08128095613435607,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888858,"seeding_time_limit":-2,"seen_complete":1631126698,"seq_dl":false,"size":1421730606,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893641,"total_size":1421730606,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":19,"up_limit":0,"uploaded":115665005,"uploaded_session":115665005,"upspeed":0,"hash":"4d55a35a1f310131045763ce17fafff297b96b3f","speed":0,"eta_act":0},"4dc948c01e54a48c13652ccea8d0addeb5d53c77":{"added_on":1627449967,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":2429342038,"completion_on":1627450339,"content_path":"\/downloads\/sonarr_finished\/How.to.Sell.Drugs.Online.Fast.S03E05.MULTi.1080p.WEB.H264-GAME0V3R[eztv.re].mkv","dl_limit":-1,"dlspeed":0,"downloaded":2439560697,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631128177,"magnet_uri":"magnet:?xt=urn:btih:4dc948c01e54a48c13652ccea8d0addeb5d53c77&dn=How.to.Sell.Drugs.Online.Fast.S03E05.MULTi.1080p.WEB.H264-GAME0V3R%5beztv.re%5d.mkv&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=http%3a%2f%2ftracker1.itzmx.com%3a8080%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"How to Sell Drugs Online Fast S03E05 MULTi 1080p WEB H264-GAME0V","num_complete":8,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.375296479044727,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3686100,"seeding_time_limit":-2,"seen_complete":1631138216,"seq_dl":false,"size":2429342038,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3686472,"total_size":2429342038,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":10,"up_limit":-1,"uploaded":3355119237,"uploaded_session":1414379917,"upspeed":0,"hash":"4dc948c01e54a48c13652ccea8d0addeb5d53c77","speed":0,"eta_act":0},"4f3259e947604a89509b55444d37be957fe6b355":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1423081721,"completion_on":1630249696,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 54 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1425618322,"downloaded_session":1425618322,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631130219,"magnet_uri":"magnet:?xt=urn:btih:4f3259e947604a89509b55444d37be957fe6b355&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2054%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 54 [1080p][Multiple Subtitle].mkv","num_complete":12,"num_incomplete":825,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.1066037793248844,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888799,"seeding_time_limit":-2,"seen_complete":1631127838,"seq_dl":false,"size":1423081721,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893643,"total_size":1423081721,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":19,"up_limit":0,"uploaded":151976301,"uploaded_session":151976301,"upspeed":0,"hash":"4f3259e947604a89509b55444d37be957fe6b355","speed":0,"eta_act":0},"4fbbba26cb098bdc90e26f106f4fb143c1cae667":{"added_on":1627449964,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":2357448057,"completion_on":1627450226,"content_path":"\/downloads\/sonarr_finished\/How.to.Sell.Drugs.Online.Fast.S03E03.MULTi.1080p.WEB.H264-GAME0V3R[eztv.re].mkv","dl_limit":-1,"dlspeed":0,"downloaded":2363568321,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138459,"magnet_uri":"magnet:?xt=urn:btih:4fbbba26cb098bdc90e26f106f4fb143c1cae667&dn=How.to.Sell.Drugs.Online.Fast.S03E03.MULTi.1080p.WEB.H264-GAME0V3R%5beztv.re%5d.mkv&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=http%3a%2f%2ftracker1.itzmx.com%3a8080%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"How to Sell Drugs Online Fast S03E03 MULTi 1080p WEB H264-GAME0V","num_complete":7,"num_incomplete":2,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.8428149223785437,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3686213,"seeding_time_limit":-2,"seen_complete":1631062207,"seq_dl":false,"size":2357448057,"state":"uploading","super_seeding":false,"tags":"","time_active":3686475,"total_size":2357448057,"tracker":"udp:\/\/tracker.tiny-vps.com:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":4355618972,"uploaded_session":2472498706,"upspeed":3,"hash":"4fbbba26cb098bdc90e26f106f4fb143c1cae667","speed":3,"eta_act":0},"51b202085476d8f1b4ab3375dffe5ac7fed48f14":{"added_on":1591294065,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":16402383159,"completion_on":1591321607,"content_path":"\/downloads\/bakabt_seeds\/[ANE] Bakemonogatari [BDRip 1080p x264 FLAC]","dl_limit":-1,"dlspeed":0,"downloaded":16471293260,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630943523,"magnet_uri":"magnet:?xt=urn:btih:51b202085476d8f1b4ab3375dffe5ac7fed48f14&dn=%5bANE%5d%20Bakemonogatari%20%5bBDRip%201080p%20x264%20FLAC%5d&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"[ANE] Bakemonogatari [BDRip 1080p x264 FLAC]","num_complete":631,"num_incomplete":18,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":0.27762613012938364,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":38397994,"seeding_time_limit":-2,"seen_complete":1629985612,"seq_dl":false,"size":16402383159,"state":"stalledUP","super_seeding":false,"tags":"","time_active":38399231,"total_size":16402383159,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":4572861406,"uploaded_session":68275537,"upspeed":0,"hash":"51b202085476d8f1b4ab3375dffe5ac7fed48f14","speed":0,"eta_act":0},"51c9980fa377bc9f0773b95813809543c4d36c57":{"added_on":1614514814,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":111759430,"completion_on":1614515158,"content_path":"\/downloads\/LOGO!.rar","dl_limit":-1,"dlspeed":0,"downloaded":111965684,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:51c9980fa377bc9f0773b95813809543c4d36c57&dn=LOGO!.rar&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=http%3a%2f%2ftracker1.itzmx.com%3a8080%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"LOGO!Soft Comfort V6","num_complete":0,"num_incomplete":14,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.2282756563162692,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":1485894,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":111759430,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1486240,"total_size":111759430,"tracker":"","trackers_count":10,"up_limit":-1,"uploaded":25559040,"uploaded_session":0,"upspeed":0,"hash":"51c9980fa377bc9f0773b95813809543c4d36c57","speed":0,"eta_act":0},"56fff9bddcbd8482933200e398a051596d9671dd":{"added_on":1631115860,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":316218670,"completion_on":1631115906,"content_path":"\/downloads\/sonarr_finished\/Amphibia.S02E27.Friend.or.Frobo.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":316261157,"downloaded_session":316261157,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631115906,"magnet_uri":"magnet:?xt=urn:btih:56fff9bddcbd8482933200e398a051596d9671dd&dn=Amphibia.S02E27.Friend.or.Frobo.1080p.AMZN.WEBRip.DDP2.0.x264-NTb%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2910&tr=udp%3a%2f%2f9.rarbg.to%3a2910","max_ratio":-1,"max_seeding_time":-1,"name":"Amphibia.S02E27.Friend.or.Frobo.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","num_complete":23,"num_incomplete":52,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":22590,"seeding_time_limit":-2,"seen_complete":1631133207,"seq_dl":false,"size":316218670,"state":"stalledUP","super_seeding":false,"tags":"","time_active":22636,"total_size":316218670,"tracker":"udp:\/\/9.rarbg.to:2910","trackers_count":3,"up_limit":-1,"uploaded":0,"uploaded_session":0,"upspeed":0,"hash":"56fff9bddcbd8482933200e398a051596d9671dd","speed":0,"eta_act":0},"57daccfbe81af51ac70ac6e84abe1323e31eac6e":{"added_on":1631115858,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":357020912,"completion_on":1631115974,"content_path":"\/downloads\/sonarr_finished\/Amphibia.S02E26.New.Wartwood.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":357184434,"downloaded_session":357184434,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631133500,"magnet_uri":"magnet:?xt=urn:btih:57daccfbe81af51ac70ac6e84abe1323e31eac6e&dn=Amphibia.S02E26.New.Wartwood.1080p.AMZN.WEBRip.DDP2.0.x264-NTb%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2770&tr=udp%3a%2f%2f9.rarbg.to%3a2770","max_ratio":-1,"max_seeding_time":-1,"name":"Amphibia.S02E26.New.Wartwood.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","num_complete":24,"num_incomplete":27,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.005825472226485659,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":22512,"seeding_time_limit":-2,"seen_complete":1631133284,"seq_dl":false,"size":357020912,"state":"stalledUP","super_seeding":false,"tags":"","time_active":22627,"total_size":357020912,"tracker":"udp:\/\/9.rarbg.to:2770","trackers_count":3,"up_limit":-1,"uploaded":2080768,"uploaded_session":2080768,"upspeed":0,"hash":"57daccfbe81af51ac70ac6e84abe1323e31eac6e","speed":0,"eta_act":0},"58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1422983027,"completion_on":1630249460,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 52 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1424562561,"downloaded_session":1424562561,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631132774,"magnet_uri":"magnet:?xt=urn:btih:58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2052%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 52 [1080p][Multiple Subtitle].mkv","num_complete":13,"num_incomplete":1785,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.09498246177761231,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":889036,"seeding_time_limit":-2,"seen_complete":1631129447,"seq_dl":false,"size":1422983027,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893645,"total_size":1422983027,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":19,"up_limit":0,"uploaded":135308459,"uploaded_session":135308459,"upspeed":0,"hash":"58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","speed":0,"eta_act":0},"59861da05825489119c9cb4f787ede8919d1407d":{"added_on":1627794444,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":765324679,"completion_on":1627794546,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","dl_limit":-1,"dlspeed":0,"downloaded":765734279,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138434,"magnet_uri":"magnet:?xt=urn:btih:59861da05825489119c9cb4f787ede8919d1407d&dn=The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.1080p.HULU.WEBRip.AAC2.0.H264-LAZY%5bTGx%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.1080p.HULU.WEBRip.AAC2.0.H264-LAZY...","num_complete":82,"num_incomplete":13,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":10.558803981661633,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3341893,"seeding_time_limit":-2,"seen_complete":1631137735,"seq_dl":false,"size":765324679,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3341995,"total_size":765324679,"tracker":"udp:\/\/explodie.org:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":8085238154,"uploaded_session":4569653312,"upspeed":0,"hash":"59861da05825489119c9cb4f787ede8919d1407d","speed":0,"eta_act":0},"5a928d92783b563532ac33f209f7135153c93c3c":{"added_on":1626576201,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1424129955,"completion_on":1626576454,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 57 (1080p) [C88BEAE4].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1429000324,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137651,"magnet_uri":"magnet:?xt=urn:btih:5a928d92783b563532ac33f209f7135153c93c3c&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2057%20(1080p)%20%5bC88BEAE4%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 57 (1080p) [C88BEAE4].mkv","num_complete":40,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.116157124818119,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4557370,"seeding_time_limit":-2,"seen_complete":1631132344,"seq_dl":false,"size":1424129955,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4557623,"total_size":1424129955,"tracker":"udp:\/\/retracker.lanta-net.ru:2710\/announce","trackers_count":16,"up_limit":-1,"uploaded":4452989541,"uploaded_session":690973361,"upspeed":0,"hash":"5a928d92783b563532ac33f209f7135153c93c3c","speed":0,"eta_act":0},"5c5a20e59dd948d1bc1b92dfd125b8212987bfe8":{"added_on":1627787931,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":332429648,"completion_on":1627788049,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E59 - Bolt, HerakleKabuterimon.mkv","dl_limit":-1,"dlspeed":0,"downloaded":333106379,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631132044,"magnet_uri":"magnet:?xt=urn:btih:5c5a20e59dd948d1bc1b92dfd125b8212987bfe8&dn=Digimon%20Adventure%20-%20S01E59%20-%20Bolt%2c%20HerakleKabuterimon.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E59 - Bolt, HerakleKabuterimon.mkv","num_complete":8,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":4.251760339299897,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3348390,"seeding_time_limit":-2,"seen_complete":1631132044,"seq_dl":false,"size":332429648,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3348508,"total_size":332429648,"tracker":"udp:\/\/tracker.dler.org:6969\/announce","trackers_count":15,"up_limit":-1,"uploaded":1416288491,"uploaded_session":547206831,"upspeed":0,"hash":"5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","speed":0,"eta_act":0},"6193a5ae06c2cbb910e0d66580ca32c940a838e8":{"added_on":1617707383,"amount_left":12849419678,"auto_tmm":true,"availability":0,"category":"","completed":0,"completion_on":1617711792,"content_path":"\/downloads\/Oddworld.Soulstorm-CODEX","dl_limit":-1,"dlspeed":0,"downloaded":12868035840,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:6193a5ae06c2cbb910e0d66580ca32c940a838e8&dn=Oddworld.Soulstorm-CODEX&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2830&tr=udp%3a%2f%2f9.rarbg.to%3a2830","max_ratio":-1,"max_seeding_time":-1,"name":"Oddworld.Soulstorm-CODEX","num_complete":0,"num_incomplete":1000,"num_leechs":0,"num_seeds":0,"priority":1,"progress":0,"ratio":0.3854878079823564,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":10988,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":12849419678,"state":"missingFiles","super_seeding":false,"tags":"","time_active":15397,"total_size":12849419678,"tracker":"","trackers_count":3,"up_limit":-1,"uploaded":4960470929,"uploaded_session":0,"upspeed":0,"hash":"6193a5ae06c2cbb910e0d66580ca32c940a838e8","speed":0,"eta_act":0},"6690b4ce480533d13e9ca27645af1f73d39ea1cd":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1425929383,"completion_on":1630249688,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 56 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1428116810,"downloaded_session":1428116810,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138460,"magnet_uri":"magnet:?xt=urn:btih:6690b4ce480533d13e9ca27645af1f73d39ea1cd&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2056%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 56 [1080p][Multiple Subtitle].mkv","num_complete":13,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":0.24535121605353838,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888808,"seeding_time_limit":-2,"seen_complete":1631135783,"seq_dl":false,"size":1425929383,"state":"uploading","super_seeding":false,"tags":"","time_active":893644,"total_size":1425929383,"tracker":"udp:\/\/tracker.torrent.eu.org:451\/announce","trackers_count":19,"up_limit":0,"uploaded":350390196,"uploaded_session":350390196,"upspeed":46,"hash":"6690b4ce480533d13e9ca27645af1f73d39ea1cd","speed":46,"eta_act":0},"683b459883feb04acbc966389b127963330768a5":{"added_on":1627373503,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1000903879,"completion_on":1627373917,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E06.1080p.WEB.h264-KOGi[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":1002401795,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631132879,"magnet_uri":"magnet:?xt=urn:btih:683b459883feb04acbc966389b127963330768a5&dn=Rick.and.Morty.S05E06.1080p.WEB.h264-KOGi%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850&tr=udp%3a%2f%2f9.rarbg.to%3a2950&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12710&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13710","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E06.1080p.WEB.h264-KOGi[rartv]","num_complete":137,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":14.756418304298826,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3762522,"seeding_time_limit":-2,"seen_complete":1631137397,"seq_dl":false,"size":1000903879,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3762935,"total_size":1000903879,"tracker":"udp:\/\/tracker.thinelephant.org:12710","trackers_count":5,"up_limit":-1,"uploaded":14791860196,"uploaded_session":6465717062,"upspeed":0,"hash":"683b459883feb04acbc966389b127963330768a5","speed":0,"eta_act":0},"68ca58d07826b7730e7099a728a5600c282e2063":{"added_on":1607876902,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"bakabt_seeds","completed":14984778784,"completion_on":1607878149,"content_path":"\/downloads\/bakabt_seeds\/Neon Genesis Evangelion Music (FLAC)","dl_limit":-1,"dlspeed":0,"downloaded":15016104445,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631008167,"magnet_uri":"magnet:?xt=urn:btih:68ca58d07826b7730e7099a728a5600c282e2063&dn=Neon%20Genesis%20Evangelion%20Music%20(FLAC)&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Neon Genesis Evangelion Music (FLAC)","num_complete":96,"num_incomplete":9,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.05320414904719318,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":23185231,"seeding_time_limit":-2,"seen_complete":1630538041,"seq_dl":false,"size":14984778784,"state":"stalledUP","super_seeding":false,"tags":"","time_active":23186497,"total_size":14984778784,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":798919059,"uploaded_session":77173454,"upspeed":0,"hash":"68ca58d07826b7730e7099a728a5600c282e2063","speed":0,"eta_act":0},"6d9331c7b463d967b994176d23e86062caa7b2c3":{"added_on":1592211576,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":1094012500,"completion_on":1592213897,"content_path":"\/downloads\/bakabt_seeds\/God_Bless_Dancougar_[Drax](EBF9AA79).mkv","dl_limit":-1,"dlspeed":0,"downloaded":1094019549,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1609081833,"magnet_uri":"magnet:?xt=urn:btih:6d9331c7b463d967b994176d23e86062caa7b2c3&dn=God_Bless_Dancougar_%5bDrax%5d(EBF9AA79).mkv&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"God_Bless_Dancougar_[Drax](EBF9AA79).mkv","num_complete":3,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.008406304995560917,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":37367177,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":1094012500,"state":"stalledUP","super_seeding":false,"tags":"","time_active":37369512,"total_size":1094012500,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":9196662,"uploaded_session":0,"upspeed":0,"hash":"6d9331c7b463d967b994176d23e86062caa7b2c3","speed":0,"eta_act":0},"6e6c09c864099e7eedfd1d6caa5d143af3bd0767":{"added_on":1629151766,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":821364636,"completion_on":1629151854,"content_path":"\/downloads\/sonarr_finished\/Tuca.and.Bertie.S02E10.The.Flood.1080p.HULU.WEBRip.AAC2.0.H264-WELP[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":826146653,"downloaded_session":826146653,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138391,"magnet_uri":"magnet:?xt=urn:btih:6e6c09c864099e7eedfd1d6caa5d143af3bd0767&dn=Tuca.and.Bertie.S02E10.The.Flood.1080p.HULU.WEBRip.AAC2.0.H264-WELP%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2990&tr=udp%3a%2f%2f9.rarbg.to%3a2930&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12770&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13710","max_ratio":-1,"max_seeding_time":-1,"name":"Tuca.and.Bertie.S02E10.The.Flood.1080p.HULU.WEBRip.AAC2.0.H264-WELP[rartv]","num_complete":75,"num_incomplete":3,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":5.6606172633129335,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":1986618,"seeding_time_limit":-2,"seen_complete":1631138392,"seq_dl":false,"size":821364636,"state":"stalledUP","super_seeding":false,"tags":"","time_active":1986705,"total_size":821364636,"tracker":"udp:\/\/tracker.thinelephant.org:12770","trackers_count":5,"up_limit":-1,"uploaded":4676500006,"uploaded_session":4676500006,"upspeed":0,"hash":"6e6c09c864099e7eedfd1d6caa5d143af3bd0767","speed":0,"eta_act":0},"7101c26a2ba10ab2374dcc171f92a443bdc986c5":{"added_on":1623791497,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":4874553344,"completion_on":1623792188,"content_path":"\/downloads\/21996.1.210529-1541.co_release_CLIENT_CONSUMER_x64FRE_en-us.iso","dl_limit":-1,"dlspeed":0,"downloaded":4883184998,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631136680,"magnet_uri":"magnet:?xt=urn:btih:7101c26a2ba10ab2374dcc171f92a443bdc986c5&dn=21996.1.210529-1541.co_release_CLIENT_CONSUMER_x64FRE_en-us.iso","max_ratio":-1,"max_seeding_time":-1,"name":"21996.1.210529-1541.co_release_CLIENT_CONSUMER_x64FRE_en-us.iso","num_complete":2915,"num_incomplete":85,"num_leechs":4,"num_seeds":0,"priority":0,"progress":1,"ratio":12.098372204247175,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":7337914,"seeding_time_limit":-2,"seen_complete":1631138447,"seq_dl":false,"size":4874553344,"state":"stalledUP","super_seeding":false,"tags":"","time_active":7338608,"total_size":4874553344,"tracker":"","trackers_count":0,"up_limit":-1,"uploaded":59078589648,"uploaded_session":1800018799,"upspeed":0,"hash":"7101c26a2ba10ab2374dcc171f92a443bdc986c5","speed":0,"eta_act":0},"734b7e20496c6d6da380f595bc0fffa5ed9f0bb0":{"added_on":1629506336,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":1737426229,"completion_on":1629506461,"content_path":"\/downloads\/radarr_finished\/Bo Burnham Inside (2021) [1080p] [WEBRip] [5.1] [YTS.MX]","dl_limit":-1,"dlspeed":0,"downloaded":1743989908,"downloaded_session":1743989908,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631135525,"magnet_uri":"magnet:?xt=urn:btih:734b7e20496c6d6da380f595bc0fffa5ed9f0bb0&dn=Bo%20Burnham%20Inside%20(2021)%20%5b1080p%5d%20%5bWEBRip%5d%20%5b5.1%5d%20%5bYTS.MX%5d&tr=http%3a%2f%2ftracker.pomf.se%2fannounce&tr=http%3a%2f%2fsugoi.pomf.se%2fannounce&tr=http%3a%2f%2fbt1.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fbt2.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fopen.acgtracker.com%3a1096%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[zooqle.com] Bo Burnham: Inside (2021) [WEBRip] [1080p] [YTS.MX]","num_complete":11,"num_incomplete":23,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.4135421292816335,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":1632035,"seeding_time_limit":-2,"seen_complete":1631137913,"seq_dl":false,"size":1737426229,"state":"stalledUP","super_seeding":false,"tags":"","time_active":1632160,"total_size":1737426229,"tracker":"http:\/\/sugoi.pomf.se\/announce","trackers_count":5,"up_limit":-1,"uploaded":2465203208,"uploaded_session":2465203208,"upspeed":0,"hash":"734b7e20496c6d6da380f595bc0fffa5ed9f0bb0","speed":0,"eta_act":0},"760767de6db7ed158b6440a3fae1e015ef8639eb":{"added_on":1592919455,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":1048308217,"completion_on":1592919512,"content_path":"\/downloads\/bakabt_seeds\/Jormungand Music Collection [MP3]","dl_limit":-1,"dlspeed":0,"downloaded":1048324520,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630875780,"magnet_uri":"magnet:?xt=urn:btih:760767de6db7ed158b6440a3fae1e015ef8639eb&dn=Jormungand%20Music%20Collection%20%5bMP3%5d&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Jormungand Music Collection [MP3]","num_complete":6,"num_incomplete":3,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.06799530454558098,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36655519,"seeding_time_limit":-2,"seen_complete":1629986450,"seq_dl":false,"size":1048308217,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36655593,"total_size":1048308217,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":71281145,"uploaded_session":31358976,"upspeed":0,"hash":"760767de6db7ed158b6440a3fae1e015ef8639eb","speed":0,"eta_act":0},"7686a987cc18871ae6cb016c15dec37c39a2dda3":{"added_on":1592919455,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":532975822,"completion_on":1592919577,"content_path":"\/downloads\/bakabt_seeds\/cat_soup[h264.ac3][niizk].mkv","dl_limit":-1,"dlspeed":0,"downloaded":534200900,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630632744,"magnet_uri":"magnet:?xt=urn:btih:7686a987cc18871ae6cb016c15dec37c39a2dda3&dn=cat_soup%5bh264.ac3%5d%5bniizk%5d.mkv&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"cat_soup[h264.ac3][niizk].mkv","num_complete":39,"num_incomplete":8,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.08406871646977757,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36846255,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":532975822,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36846393,"total_size":532975822,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":44909584,"uploaded_session":7651328,"upspeed":0,"hash":"7686a987cc18871ae6cb016c15dec37c39a2dda3","speed":0,"eta_act":0},"7a594d7dffc16b3ff029426c0020ded2bac95ae3":{"added_on":1630329205,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":2601859913,"completion_on":1630329512,"content_path":"\/downloads\/radarr_finished\/Vivarium 2019 BluRay 1080p.H264 Ita Eng AC3 5.1 Sub Ita Eng MIRCrew.mkv","dl_limit":-1,"dlspeed":0,"downloaded":2602021216,"downloaded_session":2602021216,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137161,"magnet_uri":"magnet:?xt=urn:btih:7a594d7dffc16b3ff029426c0020ded2bac95ae3&dn=Vivarium%202019%20BluRay%201080p.H264%20Ita%20Eng%20AC3%205.1%20Sub%20Ita%20Eng%20MIRCrew.mkv&tr=http%3a%2f%2ftracker.tfile.co%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftorrentclub.tech%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.justseed.it%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2720%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2740%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2fopen.demonii.si%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.port443.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fdenis.stalker.upeer.me%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2770%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2740%2fannounce&tr=udp%3a%2f%2fipv6.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.mg64.net%3a6969%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2730%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2770%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fbt.xxx-tracker.com%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2730%2fannounce&tr=udp%3a%2f%2ftracker.pirateparty.gr%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2790%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentor.org%3a2710%2fannounce&tr=http%3a%2f%2fexplodie.org%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Vivarium 2019 BluRay 1080p.H264 Ita Eng AC3 5.1 Sub Ita Eng MIRCrew.mkv","num_complete":13,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.14319147657556994,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":808972,"seeding_time_limit":-2,"seen_complete":1631137161,"seq_dl":false,"size":2601859913,"state":"stalledUP","super_seeding":false,"tags":"","time_active":809278,"total_size":2601859913,"tracker":"udp:\/\/tracker.internetwarriors.net:1337\/announce","trackers_count":37,"up_limit":-1,"uploaded":372587260,"uploaded_session":372587260,"upspeed":0,"hash":"7a594d7dffc16b3ff029426c0020ded2bac95ae3","speed":0,"eta_act":0},"7da28d791688919132e54d4156b65d171d67cd84":{"added_on":1628995121,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":723971979,"completion_on":1628995216,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 61 (720p) [FFD3D720].mkv","dl_limit":-1,"dlspeed":0,"downloaded":728305901,"downloaded_session":728305901,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631090010,"magnet_uri":"magnet:?xt=urn:btih:7da28d791688919132e54d4156b65d171d67cd84&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2061%20(720p)%20%5bFFD3D720%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 61 (720p) [FFD3D720].mkv","num_complete":26,"num_incomplete":1966,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.1593599019871186,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2143280,"seeding_time_limit":-2,"seen_complete":1631135140,"seq_dl":false,"size":723971979,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2143375,"total_size":723971979,"tracker":"udp:\/\/tracker.tiny-vps.com:6969\/announce","trackers_count":16,"up_limit":-1,"uploaded":2300980460,"uploaded_session":2300980460,"upspeed":0,"hash":"7da28d791688919132e54d4156b65d171d67cd84","speed":0,"eta_act":0},"8055a25aae2cde28755991a109f23b791616dbd1":{"added_on":1630242836,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":567212480,"completion_on":1630243154,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure (2020) - S01E63 VOSTFR 1080p WEB x264 -NanDesuKa (ADN).mkv","dl_limit":0,"dlspeed":0,"downloaded":567052548,"downloaded_session":561673099,"eta":252.61317097577927,"f_l_piece_prio":false,"force_start":false,"last_activity":1631099015,"magnet_uri":"magnet:?xt=urn:btih:8055a25aae2cde28755991a109f23b791616dbd1&dn=Digimon%20Adventure%20(2020)%20-%20S01E63%20VOSTFR%201080p%20WEB%20x264%20-NanDesuKa%20(ADN).mkv&tr=udp%3a%2f%2ftracker.edkj.club%3a6969%2fannounce&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.zerobytes.xyz%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2fvibe.community%3a6969%2fannounce&tr=udp%3a%2f%2fu.wwwww.wtf%3a1%2fannounce&tr=udp%3a%2f%2ftracker0.ufibox.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2fwww.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fvalakas.rollo.dnsabr.com%3a2710%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.v6speed.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.shkinev.me%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure (2020) - S01E63 VOSTFR 1080p WEB x264 -NanDesuKa (ADN).mkv","num_complete":6,"num_incomplete":1107,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.3413693663536805,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":895323,"seeding_time_limit":-2,"seen_complete":1631131176,"seq_dl":false,"size":567212480,"state":"stalledUP","super_seeding":false,"tags":"","time_active":895613,"total_size":567212480,"tracker":"udp:\/\/tracker.edkj.club:6969\/announce","trackers_count":22,"up_limit":0,"uploaded":193574369,"uploaded_session":193574369,"upspeed":0,"hash":"8055a25aae2cde28755991a109f23b791616dbd1","speed":0,"eta_act":252.59947922145656},"83de27b56d0e7c79c1543e1d48753d4e6e2760a3":{"added_on":1626669799,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":817114707,"completion_on":1626669918,"content_path":"\/downloads\/sonarr_finished\/Tuca.and.Bertie.S02E06.1080p.WEBRip.x264-BAE[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":824538264,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138105,"magnet_uri":"magnet:?xt=urn:btih:83de27b56d0e7c79c1543e1d48753d4e6e2760a3&dn=Tuca.and.Bertie.S02E06.1080p.WEBRip.x264-BAE%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2970&tr=udp%3a%2f%2f9.rarbg.to%3a2810&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12720&tr=udp%3a%2f%2ftracker.slowcheetah.org%3a14780","max_ratio":-1,"max_seeding_time":-1,"name":"Tuca.and.Bertie.S02E06.1080p.WEBRip.x264-BAE[rartv]","num_complete":26,"num_incomplete":5,"num_leechs":0,"num_seeds":1,"priority":0,"progress":1,"ratio":9.355151925368984,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4463906,"seeding_time_limit":-2,"seen_complete":1631138115,"seq_dl":false,"size":817114707,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4464026,"total_size":817114707,"tracker":"udp:\/\/tracker.slowcheetah.org:14780","trackers_count":5,"up_limit":-1,"uploaded":7713680728,"uploaded_session":2637782569,"upspeed":0,"hash":"83de27b56d0e7c79c1543e1d48753d4e6e2760a3","speed":0,"eta_act":0},"84b7d8c721982bf3bc65c1533d963e2210ced73b":{"added_on":1628428731,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":14291551120,"completion_on":1628434776,"content_path":"\/downloads\/sonarr_finished\/Dan.Vs.S01.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel[rartv]","dl_limit":-1,"dlspeed":0,"downloaded":14295441115,"downloaded_session":14295441115,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138366,"magnet_uri":"magnet:?xt=urn:btih:84b7d8c721982bf3bc65c1533d963e2210ced73b&dn=Dan.Vs.S01.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel%5brartv%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Dan.Vs.S01.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel","num_complete":1,"num_incomplete":2,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.5913328206521733,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2703720,"seeding_time_limit":-2,"seen_complete":1631138317,"seq_dl":false,"size":14291551120,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2709764,"total_size":14291551120,"tracker":"udp:\/\/explodie.org:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":22748804632,"uploaded_session":22748804632,"upspeed":0,"hash":"84b7d8c721982bf3bc65c1533d963e2210ced73b","speed":0,"eta_act":0},"867dc47c1a1769258c1602448a4ee938359117ea":{"added_on":1626335641,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":9732433269,"completion_on":1626336355,"content_path":"\/downloads\/sonarr_finished\/Beastars.S02.1080p.NF.WEB-DL.DDP2.0.x264-KRP","dl_limit":-1,"dlspeed":0,"downloaded":9734692551,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137719,"magnet_uri":"magnet:?xt=urn:btih:867dc47c1a1769258c1602448a4ee938359117ea&dn=Beastars.S02.1080p.NF.WEB-DL.DDP2.0.x264-KRP&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Beastars.S02.1080p.NF.WEB-DL.DDP2.0.x264-KRP","num_complete":14,"num_incomplete":2,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.4493204566127442,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4797470,"seeding_time_limit":-2,"seen_complete":1631137794,"seq_dl":false,"size":9732433269,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4798183,"total_size":9732433269,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":5,"up_limit":-1,"uploaded":14108689053,"uploaded_session":1322839291,"upspeed":0,"hash":"867dc47c1a1769258c1602448a4ee938359117ea","speed":0,"eta_act":0},"867f2b761b9edfbfb34b28cff07a4daeb2ad5e7b":{"added_on":1631115853,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":544837905,"completion_on":1631115920,"content_path":"\/downloads\/sonarr_finished\/Amphibia.S02E25.The.First.Temple.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":545030645,"downloaded_session":545030645,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631133847,"magnet_uri":"magnet:?xt=urn:btih:867f2b761b9edfbfb34b28cff07a4daeb2ad5e7b&dn=Amphibia.S02E25.The.First.Temple.1080p.AMZN.WEBRip.DDP2.0.x264-NTb%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2820&tr=udp%3a%2f%2f9.rarbg.to%3a2820","max_ratio":-1,"max_seeding_time":-1,"name":"Amphibia.S02E25.The.First.Temple.1080p.AMZN.WEBRip.DDP2.0.x264-NTb[rartv]","num_complete":26,"num_incomplete":71,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.008507176692789449,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":22569,"seeding_time_limit":-2,"seen_complete":1631119147,"seq_dl":false,"size":544837905,"state":"stalledUP","super_seeding":false,"tags":"","time_active":22635,"total_size":544837905,"tracker":"udp:\/\/9.rarbg.to:2820","trackers_count":3,"up_limit":-1,"uploaded":4636672,"uploaded_session":4636672,"upspeed":0,"hash":"867f2b761b9edfbfb34b28cff07a4daeb2ad5e7b","speed":0,"eta_act":0},"889bdb6d49e6e6ab6d55979e7f32228031926f54":{"added_on":1591293968,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":42707176222,"completion_on":1591323242,"content_path":"\/downloads\/bakabt_seeds\/Inuyasha","dl_limit":-1,"dlspeed":0,"downloaded":42746984173,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630905455,"magnet_uri":"magnet:?xt=urn:btih:889bdb6d49e6e6ab6d55979e7f32228031926f54&dn=Inuyasha&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Inuyasha","num_complete":76,"num_incomplete":4,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.13581182456064161,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":38486316,"seeding_time_limit":-2,"seen_complete":1629166503,"seq_dl":false,"size":42707176222,"state":"stalledUP","super_seeding":false,"tags":"","time_active":38489297,"total_size":42707176222,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":5805545915,"uploaded_session":110405112,"upspeed":0,"hash":"889bdb6d49e6e6ab6d55979e7f32228031926f54","speed":0,"eta_act":0},"88adf40aba960043a2e152ed4f22ccec6c17f945":{"added_on":1628480115,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":704892969,"completion_on":1628480374,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E08.1080p.WEBRip.x264-CAKES[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":708032845,"downloaded_session":708032845,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137387,"magnet_uri":"magnet:?xt=urn:btih:88adf40aba960043a2e152ed4f22ccec6c17f945&dn=Rick.and.Morty.S05E08.1080p.WEBRip.x264-CAKES%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2810&tr=udp%3a%2f%2f9.rarbg.to%3a2890&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12710&tr=udp%3a%2f%2ftracker.slowcheetah.org%3a14770","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E08.1080p.WEBRip.x264-CAKES[rartv]","num_complete":1998,"num_incomplete":426,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":9.089001105591366,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2658122,"seeding_time_limit":-2,"seen_complete":1631138476,"seq_dl":false,"size":704892969,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2658381,"total_size":704892969,"tracker":"udp:\/\/tracker.slowcheetah.org:14770","trackers_count":5,"up_limit":-1,"uploaded":6435311311,"uploaded_session":6435311311,"upspeed":0,"hash":"88adf40aba960043a2e152ed4f22ccec6c17f945","speed":0,"eta_act":0},"89bc129be7741b6240341f655d2def0d9464abb2":{"added_on":1595454452,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"bakabt_seeds","completed":8628947564,"completion_on":1595455079,"content_path":"\/downloads\/bakabt_seeds\/[ron] Mahou Shoujo Lyrical Nanoha Detonation (1080p BD Hi10 AACx5.1+2.0) [48FF6A15].mkv","dl_limit":-1,"dlspeed":0,"downloaded":8632930820,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631093312,"magnet_uri":"magnet:?xt=urn:btih:89bc129be7741b6240341f655d2def0d9464abb2&dn=%5bron%5d%20Mahou%20Shoujo%20Lyrical%20Nanoha%20Detonation%20(1080p%20BD%20Hi10%20AACx5.1%2b2.0)%20%5b48FF6A15%5d.mkv&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"[ron] Mahou Shoujo Lyrical Nanoha Detonation (1080p BD Hi10 AACx5.1+2.0) [48FF6A15].mkv","num_complete":136,"num_incomplete":2713,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.6366007360174817,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":33651170,"seeding_time_limit":-2,"seen_complete":1631128717,"seq_dl":false,"size":8628947564,"state":"stalledUP","super_seeding":false,"tags":"","time_active":33651812,"total_size":8628947564,"tracker":"","trackers_count":1,"up_limit":-1,"uploaded":31394522574,"uploaded_session":1676467840,"upspeed":0,"hash":"89bc129be7741b6240341f655d2def0d9464abb2","speed":0,"eta_act":0},"8a8dd7d3d20699f9ee7fa46fd248227225605ae2":{"added_on":1591293728,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":1308293464,"completion_on":1591293818,"content_path":"\/downloads\/bakabt_seeds\/Made in Abyss Music Collection [FLAC]","dl_limit":-1,"dlspeed":0,"downloaded":1314419263,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631074684,"magnet_uri":"magnet:?xt=urn:btih:8a8dd7d3d20699f9ee7fa46fd248227225605ae2&dn=Made%20in%20Abyss%20Music%20Collection%20%5bFLAC%5d&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Made in Abyss Music Collection [FLAC]","num_complete":46,"num_incomplete":2,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.2351747351103755,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":38375314,"seeding_time_limit":-2,"seen_complete":1631074758,"seq_dl":false,"size":1308293464,"state":"stalledUP","super_seeding":false,"tags":"","time_active":38375422,"total_size":1308293464,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":309118202,"uploaded_session":14905125,"upspeed":0,"hash":"8a8dd7d3d20699f9ee7fa46fd248227225605ae2","speed":0,"eta_act":0},"90736409749215a1ab489e03387daa5ea94dc16a":{"added_on":1615259767,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":145152223,"completion_on":1615260998,"content_path":"\/downloads\/Metal Gear Rising_ Revengeance (Original Game Soundtrack) [Vocal Tracks] - by FrankyDThanatos","dl_limit":-1,"dlspeed":0,"downloaded":145217359,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:90736409749215a1ab489e03387daa5ea94dc16a&dn=Metal%20Gear%20Rising_%20Revengeance%20(Original%20Game%20Soundtrack)%20%5bVocal%20Tracks%5d%20-%20by%20FrankyDThanatos&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Metal Gear Rising_ Revengeance (Original Game Soundtrack) [Vocal Tracks] - by FrankyDThanatos","num_complete":0,"num_incomplete":11,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.34693372987178484,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":729289,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":145152223,"state":"pausedUP","super_seeding":false,"tags":"","time_active":730521,"total_size":145152223,"tracker":"","trackers_count":5,"up_limit":-1,"uploaded":50380800,"uploaded_session":0,"upspeed":0,"hash":"90736409749215a1ab489e03387daa5ea94dc16a","speed":0,"eta_act":0},"90cf684903f03b303887a12d73f0cc4222161cc1":{"added_on":1627786070,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1425578009,"completion_on":1627786197,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 59 (1080p) [0E2772F5].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1430551781,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138492,"magnet_uri":"magnet:?xt=urn:btih:90cf684903f03b303887a12d73f0cc4222161cc1&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2059%20(1080p)%20%5b0E2772F5%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 59 (1080p) [0E2772F5].mkv","num_complete":49,"num_incomplete":2,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.641264484923947,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3350242,"seeding_time_limit":-2,"seen_complete":1631132598,"seq_dl":false,"size":1425578009,"state":"uploading","super_seeding":false,"tags":"","time_active":3350369,"total_size":1425578009,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":16,"up_limit":-1,"uploaded":2347913832,"uploaded_session":950902112,"upspeed":18368,"hash":"90cf684903f03b303887a12d73f0cc4222161cc1","speed":18368,"eta_act":0},"91da259b95f6de28a7d39c3904ddc7bd70a14ede":{"added_on":1592919455,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":11517012248,"completion_on":1592920471,"content_path":"\/downloads\/bakabt_seeds\/Key Crossover Music Collection [FLAC]","dl_limit":-1,"dlspeed":0,"downloaded":11521005870,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1613103457,"magnet_uri":"magnet:?xt=urn:btih:91da259b95f6de28a7d39c3904ddc7bd70a14ede&dn=Key%20Crossover%20Music%20Collection%20%5bFLAC%5d&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Key Crossover Music Collection [FLAC]","num_complete":14,"num_incomplete":4,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.01560313787080815,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36639312,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":11517012248,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36640349,"total_size":11517012248,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":179763843,"uploaded_session":0,"upspeed":0,"hash":"91da259b95f6de28a7d39c3904ddc7bd70a14ede","speed":0,"eta_act":0},"960fb2729c24982794424a5eab3bc804f00e21b9":{"added_on":1616099749,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"Animu","completed":41410054190,"completion_on":1616137609,"content_path":"\/downloads\/Animu\/[\u30a2\u30cb\u30e1 BD] \u30ae\u30e3\u30e9\u30af\u30b7\u30fc\u30a8\u30f3\u30b8\u30a7\u30eb \u7b2c1-4\u671f(\u7121\u5370+A+AA+S+X) \u5168126\u8a71+\u6620\u50cf\u7279\u5178(1080p HEVC 10bit FLAC+FLAC softSub(chi+eng) chap)","dl_limit":-1,"dlspeed":0,"downloaded":41447302295,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:960fb2729c24982794424a5eab3bc804f00e21b9&dn=%5b%e3%82%a2%e3%83%8b%e3%83%a1%20BD%5d%20%e3%82%ae%e3%83%a3%e3%83%a9%e3%82%af%e3%82%b7%e3%83%bc%e3%82%a8%e3%83%b3%e3%82%b8%e3%82%a7%e3%83%ab%20%e7%ac%ac1-4%e6%9c%9f(%e7%84%a1%e5%8d%b0%2bA%2bAA%2bS%2bX)%20%e5%85%a8126%e8%a9%b1%2b%e6%98%a0%e5%83%8f%e7%89%b9%e5%85%b8(1080p%20HEVC%2010bit%20FLAC%2bFLAC%20softSub(chi%2beng)%20chap)&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fopen.nyaatorrents.info%3a6544%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.publicbt.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.ktxp.com%3a6868%2fannounce&tr=udp%3a%2f%2ftracker.ktxp.com%3a7070%2fannounce&tr=http%3a%2f%2ftracker.ktxp.com%3a7070%2fannounce&tr=http%3a%2f%2ftracker.ktxp.com%3a6868%2fannounce&tr=http%3a%2f%2ftracker.openbittorrent.com%2fannounce&tr=http%3a%2f%2ftracker.publicbt.com%2fannounce&tr=http%3a%2f%2ft2.popgo.org%3a7456%2fannonce&tr=udp%3a%2f%2ftracker.prq.to%3a80%2fannounce&tr=udp%3a%2f%2f208.67.16.113%3a8000%2fannonuce&tr=http%3a%2f%2f208.67.16.113%3a8000%2fannonuce&tr=http%3a%2f%2f173.254.204.71%3a1096%2fannounce&tr=http%3a%2f%2f95.68.246.30%3a80%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=http%3a%2f%2fopen.acgtracker.com%3a1096%2fannounce&tr=http%3a%2f%2fretracker.adminko.org%3a80%2fannounce&tr=http%3a%2f%2ftracker.comicat.org%3a2015%2fannounce&tr=http%3a%2f%2ftracker.kisssub.org%3a2015%2fannounce&tr=http%3a%2f%2ftracker1.itzmx.com%3a8080%2fannounce&tr=http%3a%2f%2ftracker2.itzmx.com%3a6961%2fannounce&tr=http%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=http%3a%2f%2ftracker4.itzmx.com%3a2710%2fannounce&tr=http%3a%2f%2ftracker.xelion.fr%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=http%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[\u30a2\u30cb\u30e1 BD] \u30ae\u30e3\u30e9\u30af\u30b7\u30fc\u30a8\u30f3\u30b8\u30a7\u30eb \u7b2c1-4\u671f(\u7121\u5370+A+AA+S+X) \u5168126\u8a71+\u6620\u50cf\u7279\u5178(1080p HEVC 10bit FLAC+FLAC softSub(chi+eng) chap)","num_complete":0,"num_incomplete":27,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.061467660738617924,"ratio_limit":-2,"save_path":"\/downloads\/Animu\/","seeding_time":1070771,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":41410054190,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1108631,"total_size":41410054190,"tracker":"","trackers_count":30,"up_limit":-1,"uploaded":2547668716,"uploaded_session":0,"upspeed":0,"hash":"960fb2729c24982794424a5eab3bc804f00e21b9","speed":0,"eta_act":0},"988b2af32023de900c30d0fdd6ce496f6dc64381":{"added_on":1629602442,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":415298969,"completion_on":1629602520,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E62 - The Tears of Shakkoumon.mkv","dl_limit":-1,"dlspeed":0,"downloaded":419062268,"downloaded_session":419062268,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631130857,"magnet_uri":"magnet:?xt=urn:btih:988b2af32023de900c30d0fdd6ce496f6dc64381&dn=Digimon%20Adventure%20-%20S01E62%20-%20The%20Tears%20of%20Shakkoumon.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E62 - The Tears of Shakkoumon.mkv","num_complete":13,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.497563996861679,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":1535976,"seeding_time_limit":-2,"seen_complete":1631132284,"seq_dl":false,"size":415298969,"state":"stalledUP","super_seeding":false,"tags":"","time_active":1536054,"total_size":415298969,"tracker":"udp:\/\/9.rarbg.to:2920\/announce","trackers_count":15,"up_limit":-1,"uploaded":1465697101,"uploaded_session":1465697101,"upspeed":0,"hash":"988b2af32023de900c30d0fdd6ce496f6dc64381","speed":0,"eta_act":0},"98a9c45b062c9313e59b567547c6a3135e64193f":{"added_on":1628996157,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1425770516,"completion_on":1628996345,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 61 (1080p) [9E580904].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1431354044,"downloaded_session":1431354044,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631136514,"magnet_uri":"magnet:?xt=urn:btih:98a9c45b062c9313e59b567547c6a3135e64193f&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2061%20(1080p)%20%5b9E580904%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 61 (1080p) [9E580904].mkv","num_complete":60,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.4425256418250634,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2142151,"seeding_time_limit":-2,"seen_complete":1631136514,"seq_dl":false,"size":1425770516,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2142339,"total_size":1425770516,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":16,"up_limit":-1,"uploaded":2064764911,"uploaded_session":2064764911,"upspeed":0,"hash":"98a9c45b062c9313e59b567547c6a3135e64193f","speed":0,"eta_act":0},"9a684553a3cf3028d06e3266ebdfa5e3ee4d3144":{"added_on":1629109690,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"Animu","completed":97717270971,"completion_on":1629118066,"content_path":"\/downloads\/Animu\/[aKraa] Neon Genesis Evangelion + Rebuild of Evangelion [1080p] [WEB-DL] [H.264] [DDP 5.1] [Multi-Audio] [Multi-Subs]","dl_limit":-1,"dlspeed":0,"downloaded":97755391490,"downloaded_session":97755391490,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:9a684553a3cf3028d06e3266ebdfa5e3ee4d3144&dn=%5baKraa%5d%20Neon%20Genesis%20Evangelion%20%2b%20Rebuild%20of%20Evangelion%20%5b1080p%5d%20%5bWEB-DL%5d%20%5bH.264%5d%20%5bDDP%205.1%5d%20%5bMulti-Audio%5d%20%5bMulti-Subs%5d&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[aKraa] Neon Genesis Evangelion + Rebuild of Evangelion [1080p] [WEB-DL] [H.264] [DDP 5.1] [Multi-Audio] [Multi-Subs]","num_complete":17,"num_incomplete":45,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.04063764795424482,"ratio_limit":-2,"save_path":"\/downloads\/Animu\/","seeding_time":3381,"seeding_time_limit":-2,"seen_complete":1629121410,"seq_dl":false,"size":97717270971,"state":"pausedUP","super_seeding":false,"tags":"","time_active":11757,"total_size":97717270971,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":5,"up_limit":-1,"uploaded":3972549185,"uploaded_session":3972549185,"upspeed":0,"hash":"9a684553a3cf3028d06e3266ebdfa5e3ee4d3144","speed":0,"eta_act":0},"9b18d3ef61105680d4ab51895fca142f13ca3a1f":{"added_on":1627785140,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":724686575,"completion_on":1627785214,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 59 (720p) [D1BB6C6B].mkv","dl_limit":-1,"dlspeed":0,"downloaded":725617760,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631058507,"magnet_uri":"magnet:?xt=urn:btih:9b18d3ef61105680d4ab51895fca142f13ca3a1f&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2059%20(720p)%20%5bD1BB6C6B%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 59 (720p) [D1BB6C6B].mkv","num_complete":20,"num_incomplete":2468,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.4121936265727566,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3351201,"seeding_time_limit":-2,"seen_complete":1631119532,"seq_dl":false,"size":724686575,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3351275,"total_size":724686575,"tracker":"udp:\/\/tracker.tiny-vps.com:6969\/announce","trackers_count":16,"up_limit":-1,"uploaded":2475948296,"uploaded_session":713929268,"upspeed":0,"hash":"9b18d3ef61105680d4ab51895fca142f13ca3a1f","speed":0,"eta_act":0},"9d1191deb50367c9df3a908f0f5ff5f2894d1bb4":{"added_on":1630811605,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":416447684,"completion_on":1630811666,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E64 - The Angels' Determination.mkv","dl_limit":-1,"dlspeed":0,"downloaded":417772835,"downloaded_session":417772835,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631134731,"magnet_uri":"magnet:?xt=urn:btih:9d1191deb50367c9df3a908f0f5ff5f2894d1bb4&dn=Digimon%20Adventure%20-%20S01E64%20-%20The%20Angels%27%20Determination.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E64 - The Angels' Determination.mkv","num_complete":31,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":2.5807451075654546,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":326830,"seeding_time_limit":-2,"seen_complete":1631134733,"seq_dl":false,"size":416447684,"state":"stalledUP","super_seeding":false,"tags":"","time_active":326890,"total_size":416447684,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":15,"up_limit":-1,"uploaded":1078165200,"uploaded_session":1078165200,"upspeed":0,"hash":"9d1191deb50367c9df3a908f0f5ff5f2894d1bb4","speed":0,"eta_act":0},"9d4c5c71601451f0275692946444824c7a9e6997":{"added_on":1628390869,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1423471424,"completion_on":1628391003,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 60 (1080p) [C70D8523].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1427639892,"downloaded_session":1427639892,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631136082,"magnet_uri":"magnet:?xt=urn:btih:9d4c5c71601451f0275692946444824c7a9e6997&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2060%20(1080p)%20%5bC70D8523%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 60 (1080p) [C70D8523].mkv","num_complete":57,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.9454925458191106,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2747493,"seeding_time_limit":-2,"seen_complete":1631132348,"seq_dl":false,"size":1423471424,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2747626,"total_size":1423471424,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":16,"up_limit":-1,"uploaded":2777462768,"uploaded_session":2777462768,"upspeed":0,"hash":"9d4c5c71601451f0275692946444824c7a9e6997","speed":0,"eta_act":0},"ab27456459a97546996e4be156706037219ca2be":{"added_on":1628480118,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":740459243,"completion_on":1628480525,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E09.Eclipse.Lake.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":748756488,"downloaded_session":748756488,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631131363,"magnet_uri":"magnet:?xt=urn:btih:ab27456459a97546996e4be156706037219ca2be&dn=The.Owl.House.S02E09.Eclipse.Lake.1080p.HULU.WEBRip.AAC2.0.H264-LAZY%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2870&tr=udp%3a%2f%2f9.rarbg.to%3a2750&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15750&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12790","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E09.Eclipse.Lake.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","num_complete":207,"num_incomplete":7,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":5.6525406655307675,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2657971,"seeding_time_limit":-2,"seen_complete":1631134699,"seq_dl":false,"size":740459243,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2658378,"total_size":740459243,"tracker":"udp:\/\/tracker.thinelephant.org:12790","trackers_count":5,"up_limit":-1,"uploaded":4232376497,"uploaded_session":4232376497,"upspeed":0,"hash":"ab27456459a97546996e4be156706037219ca2be","speed":0,"eta_act":0},"adf50fd253fe64599daf8a3d5eb4f75399a38aaf":{"added_on":1629599563,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1424518888,"completion_on":1629599646,"content_path":"\/downloads\/sonarr_finished\/[SubsPlease] Digimon Adventure (2020) - 62 (1080p) [71718CC3].mkv","dl_limit":-1,"dlspeed":0,"downloaded":1426147679,"downloaded_session":1426147679,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631136163,"magnet_uri":"magnet:?xt=urn:btih:adf50fd253fe64599daf8a3d5eb4f75399a38aaf&dn=%5bSubsPlease%5d%20Digimon%20Adventure%20(2020)%20-%2062%20(1080p)%20%5b71718CC3%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[SubsPlease] Digimon Adventure (2020) - 62 (1080p) [71718CC3].mkv","num_complete":74,"num_incomplete":3,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":2.1682173981927435,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":1538850,"seeding_time_limit":-2,"seen_complete":1631136163,"seq_dl":false,"size":1424518888,"state":"stalledUP","super_seeding":false,"tags":"","time_active":1538933,"total_size":1424518888,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":16,"up_limit":-1,"uploaded":3092198210,"uploaded_session":3092198210,"upspeed":0,"hash":"adf50fd253fe64599daf8a3d5eb4f75399a38aaf","speed":0,"eta_act":0},"b06391a00d2e90676b6ee32a10e8fd17ce53bc96":{"added_on":1628428530,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":9892539264,"completion_on":1628434042,"content_path":"\/downloads\/sonarr_finished\/Dan.Vs.S03.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel[rartv]","dl_limit":-1,"dlspeed":0,"downloaded":9896248873,"downloaded_session":9896248873,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138154,"magnet_uri":"magnet:?xt=urn:btih:b06391a00d2e90676b6ee32a10e8fd17ce53bc96&dn=Dan.Vs.S03.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel%5brartv%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Dan.Vs.S03.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel","num_complete":1,"num_incomplete":1,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":1.4022933119499368,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2704454,"seeding_time_limit":-2,"seen_complete":1631135281,"seq_dl":false,"size":9892539264,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2709964,"total_size":9892539264,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":10,"up_limit":-1,"uploaded":13877443608,"uploaded_session":13877443608,"upspeed":0,"hash":"b06391a00d2e90676b6ee32a10e8fd17ce53bc96","speed":0,"eta_act":0},"b2121afe91f2187ee3986a70c05fa317ef8a386e":{"added_on":1627180732,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":848236139,"completion_on":1627181799,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E07.Edas.Requiem.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":850176823,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137150,"magnet_uri":"magnet:?xt=urn:btih:b2121afe91f2187ee3986a70c05fa317ef8a386e&dn=The.Owl.House.S02E07.Edas.Requiem.1080p.HULU.WEBRip.AAC2.0.H264-LAZY%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2940&tr=udp%3a%2f%2f9.rarbg.to%3a2730&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12800&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15800","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E07.Edas.Requiem.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","num_complete":174,"num_incomplete":6,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":8.245961307510262,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3954640,"seeding_time_limit":-2,"seen_complete":1631137766,"seq_dl":false,"size":848236139,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3955706,"total_size":848236139,"tracker":"udp:\/\/9.rarbg.to:2730","trackers_count":5,"up_limit":-1,"uploaded":7010525187,"uploaded_session":2963102684,"upspeed":0,"hash":"b2121afe91f2187ee3986a70c05fa317ef8a386e","speed":0,"eta_act":0},"b25b4cbec458e39d436249ed4113eafc23d592a6":{"added_on":1618183322,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":8430373057,"completion_on":1618188336,"content_path":"\/downloads\/Kung.Pow.Enter.the.Fist.2002.1080i.HDTV.MPEG2.mkv","dl_limit":-1,"dlspeed":0,"downloaded":8431409481,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:b25b4cbec458e39d436249ed4113eafc23d592a6&dn=Kung.Pow.Enter.the.Fist.2002.1080i.HDTV.MPEG2.mkv&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Kung Pow Enter the Fist 2002 1080i HDTV MPEG2 3Audio","num_complete":0,"num_incomplete":48,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.25594528600027794,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":1363890,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":8430373057,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1368904,"total_size":8430373057,"tracker":"","trackers_count":7,"up_limit":-1,"uploaded":2157979511,"uploaded_session":0,"upspeed":0,"hash":"b25b4cbec458e39d436249ed4113eafc23d592a6","speed":0,"eta_act":0},"b3130ce065cb81181791cd3587636fa166a17b42":{"added_on":1626577557,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":488273328,"completion_on":1626577679,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E57 - Contact from the Catastrophe.mkv","dl_limit":-1,"dlspeed":0,"downloaded":491270302,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138402,"magnet_uri":"magnet:?xt=urn:btih:b3130ce065cb81181791cd3587636fa166a17b42&dn=Digimon%20Adventure%20-%20S01E57%20-%20Contact%20from%20the%20Catastrophe.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E57 - Contact from the Catastrophe.mkv","num_complete":9,"num_incomplete":2749,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":4.283124549629299,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4556145,"seeding_time_limit":-2,"seen_complete":1631108470,"seq_dl":false,"size":488273328,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4556268,"total_size":488273328,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":15,"up_limit":-1,"uploaded":2104171891,"uploaded_session":415662185,"upspeed":0,"hash":"b3130ce065cb81181791cd3587636fa166a17b42","speed":0,"eta_act":0},"b3d6432eb5510dcb95d26b5452871640fd81fd73":{"added_on":1627911182,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":829620211,"completion_on":1627911277,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E07.Gotron.Jerrysis.Rickvangelion.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb[eztv.re].mkv","dl_limit":-1,"dlspeed":0,"downloaded":835860177,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631131984,"magnet_uri":"magnet:?xt=urn:btih:b3d6432eb5510dcb95d26b5452871640fd81fd73&dn=Rick.and.Morty.S05E07.Gotron.Jerrysis.Rickvangelion.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb%5beztv.re%5d.mkv&tr=http%3a%2f%2ftracker.pomf.se%2fannounce&tr=http%3a%2f%2fbt1.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fbt2.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fopen.acgtracker.com%3a1096%2fannounce&tr=http%3a%2f%2ftracker.etree.org%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[zooqle.com] Rick and Morty S05E07 Gotron Jerrysis Rickvangelion 1080p AMZN WEB-DL DDP5 1... [eztv]","num_complete":8,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":7.235452631212026,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3225162,"seeding_time_limit":-2,"seen_complete":1631136541,"seq_dl":false,"size":829620211,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3225256,"total_size":829620211,"tracker":"http:\/\/tracker.pomf.se\/announce","trackers_count":5,"up_limit":-1,"uploaded":6047826717,"uploaded_session":2841441482,"upspeed":0,"hash":"b3d6432eb5510dcb95d26b5452871640fd81fd73","speed":0,"eta_act":0},"b4758da027274eebfe009fa8350ab7c0a5e928ba":{"added_on":1628393872,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":365813844,"completion_on":1628393955,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E60 - Vikemon Ventures the Glaciers.mkv","dl_limit":-1,"dlspeed":0,"downloaded":366733226,"downloaded_session":366733226,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631132660,"magnet_uri":"magnet:?xt=urn:btih:b4758da027274eebfe009fa8350ab7c0a5e928ba&dn=Digimon%20Adventure%20-%20S01E60%20-%20Vikemon%20Ventures%20the%20Glaciers.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E60 - Vikemon Ventures the Glaciers.mkv","num_complete":9,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":5.490552734919088,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2744540,"seeding_time_limit":-2,"seen_complete":1631121700,"seq_dl":false,"size":365813844,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2744623,"total_size":365813844,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":15,"up_limit":-1,"uploaded":2013568117,"uploaded_session":2013568117,"upspeed":0,"hash":"b4758da027274eebfe009fa8350ab7c0a5e928ba","speed":0,"eta_act":0},"b5c8fd72defe27eb76f2b8a88a143a78781d82ee":{"added_on":1592919455,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":351692320,"completion_on":1592929167,"content_path":"\/downloads\/bakabt_seeds\/Deadman Wonderland [MP3]","dl_limit":-1,"dlspeed":0,"downloaded":352425680,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1620003028,"magnet_uri":"magnet:?xt=urn:btih:b5c8fd72defe27eb76f2b8a88a143a78781d82ee&dn=Deadman%20Wonderland%20%5bMP3%5d&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Deadman Wonderland [MP3]","num_complete":4,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.08845477718876786,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36642299,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":351692320,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36652027,"total_size":351692320,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":31173735,"uploaded_session":0,"upspeed":0,"hash":"b5c8fd72defe27eb76f2b8a88a143a78781d82ee","speed":0,"eta_act":0},"b9ff4e7ce60da918eb18d06af1fde0050d78e96e":{"added_on":1629630491,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":235697691951,"completion_on":1629642178,"content_path":"\/downloads\/Streamlined Mythbusters Complete","dl_limit":-1,"dlspeed":0,"downloaded":236528309396,"downloaded_session":236528309396,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138312,"magnet_uri":"magnet:?xt=urn:btih:b9ff4e7ce60da918eb18d06af1fde0050d78e96e&dn=Streamlined%20Mythbusters%20Complete&tr=http%3a%2f%2ftracker.opentrackr.org%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2finferno.demonoid.pw%3a3391%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.ch%3a1337%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=udp%3a%2f%2fpublic.popcorn-tracker.org%3a6969%2fannounce&tr=udp%3a%2f%2fshadowshq.yi.org%3a6969%2fannounce&tr=udp%3a%2f%2feddie4.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.pirateparty.gr%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.vanitycore.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.mgtracker.org%3a2710%2fannounce&tr=udp%3a%2f%2fmgtracker.org%3a6969%2fannounce&tr=udp%3a%2f%2fpeerfect.org%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Streamlined Mythbusters Complete","num_complete":26,"num_incomplete":9,"num_leechs":3,"num_seeds":0,"priority":0,"progress":1,"ratio":0.04070760051761834,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":1496318,"seeding_time_limit":-2,"seen_complete":1631136365,"seq_dl":false,"size":235697691951,"state":"stalledUP","super_seeding":false,"tags":"","time_active":1508004,"total_size":235697691951,"tracker":"udp:\/\/p4p.arenabg.com:1337\/announce","trackers_count":22,"up_limit":-1,"uploaded":9628499930,"uploaded_session":9628499930,"upspeed":0,"hash":"b9ff4e7ce60da918eb18d06af1fde0050d78e96e","speed":0,"eta_act":0},"bae897295e09f309fa35ea4fcec7674c05357589":{"added_on":1613265978,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":23429235346,"completion_on":1613267651,"content_path":"\/downloads\/gwent.7z","dl_limit":-1,"dlspeed":0,"downloaded":23462695194,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:bae897295e09f309fa35ea4fcec7674c05357589&dn=gwent.7z","max_ratio":-1,"max_seeding_time":-1,"name":"gwent.7z","num_complete":0,"num_incomplete":100,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.049104465427937144,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":2733400,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":23429235346,"state":"pausedUP","super_seeding":false,"tags":"","time_active":2735074,"total_size":23429235346,"tracker":"","trackers_count":0,"up_limit":-1,"uploaded":1152123105,"uploaded_session":0,"upspeed":0,"hash":"bae897295e09f309fa35ea4fcec7674c05357589","speed":0,"eta_act":0},"bb44bab60a69c79f8a37c45b98eef81a200d3313":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1420507228,"completion_on":1630249362,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 48 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1422385586,"downloaded_session":1422385586,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631113875,"magnet_uri":"magnet:?xt=urn:btih:bb44bab60a69c79f8a37c45b98eef81a200d3313&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2048%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 48 [1080p][Multiple Subtitle].mkv","num_complete":15,"num_incomplete":475,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.10471448984438739,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":889134,"seeding_time_limit":-2,"seen_complete":1631127151,"seq_dl":false,"size":1420507228,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893644,"total_size":1420507228,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":19,"up_limit":0,"uploaded":148944381,"uploaded_session":148944381,"upspeed":0,"hash":"bb44bab60a69c79f8a37c45b98eef81a200d3313","speed":0,"eta_act":0},"bb581d8fc65e7184dbee54860df34a89291b2558":{"added_on":1616072866,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"Animu","completed":100203146530,"completion_on":1616589659,"content_path":"\/downloads\/Animu\/Galaxy Angel BDrip 1-6 season","dl_limit":-1,"dlspeed":0,"downloaded":100206696374,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:bb581d8fc65e7184dbee54860df34a89291b2558&dn=Galaxy%20Angel%20BDrip%201-6%20season&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969&tr=udp%3a%2f%2ftracker.army%3a6969%2fannounce&tr=udp%3a%2f%2fipv6.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2fwww.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker0.ufibox.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.shkinev.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zerobytes.xyz%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.v6speed.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2fretracker.netbynet.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fmgtracker.org%3a6969%2fannounce&tr=udp%3a%2f%2fvibe.community%3a6969%2fannounce&tr=udp%3a%2f%2fzephir.monocul.us%3a6969%2fannounce&tr=udp%3a%2f%2fvalakas.rollo.dnsabr.com%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=udp%3a%2f%2fu.wwwww.wtf%3a1%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=http%3a%2f%2fsukebei.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Galaxy Angel BDrip 1-6 season","num_complete":0,"num_incomplete":6,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.1361775277679009,"ratio_limit":-2,"save_path":"\/downloads\/Animu\/","seeding_time":618721,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":100203146530,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1135515,"total_size":100203146530,"tracker":"","trackers_count":31,"up_limit":-1,"uploaded":13645900178,"uploaded_session":0,"upspeed":0,"hash":"bb581d8fc65e7184dbee54860df34a89291b2558","speed":0,"eta_act":0},"bc6867cd4bc4da96b8b5c647155e4703d4fbe83e":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1426358726,"completion_on":1630249715,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 58 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1427852993,"downloaded_session":1427852993,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631135915,"magnet_uri":"magnet:?xt=urn:btih:bc6867cd4bc4da96b8b5c647155e4703d4fbe83e&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2058%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 58 [1080p][Multiple Subtitle].mkv","num_complete":11,"num_incomplete":312,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.28014433836046876,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888781,"seeding_time_limit":-2,"seen_complete":1631135975,"seq_dl":false,"size":1426358726,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893644,"total_size":1426358726,"tracker":"udp:\/\/retracker.lanta-net.ru:2710\/announce","trackers_count":19,"up_limit":0,"uploaded":400004932,"uploaded_session":400004932,"upspeed":0,"hash":"bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","speed":0,"eta_act":0},"bdaecf1f7c8e41581080d58542b4e1d0ce5f296c":{"added_on":1628477296,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":303630380,"completion_on":1628478300,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E09.Eclipse.Lake.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":305134082,"downloaded_session":305134082,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138487,"magnet_uri":"magnet:?xt=urn:btih:bdaecf1f7c8e41581080d58542b4e1d0ce5f296c&dn=The.Owl.House.S02E09.Eclipse.Lake.720p.HULU.WEBRip.AAC2.0.H264-LAZY%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2910&tr=udp%3a%2f%2f9.rarbg.to%3a2870&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12710&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15730","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E09.Eclipse.Lake.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","num_complete":54,"num_incomplete":5,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":19.577683072453375,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2660196,"seeding_time_limit":-2,"seen_complete":1631136239,"seq_dl":false,"size":303630380,"state":"uploading","super_seeding":false,"tags":"","time_active":2661200,"total_size":303630380,"tracker":"udp:\/\/tracker.tallpenguin.org:15730","trackers_count":5,"up_limit":-1,"uploaded":5973818352,"uploaded_session":5973818352,"upspeed":10640,"hash":"bdaecf1f7c8e41581080d58542b4e1d0ce5f296c","speed":10640,"eta_act":0},"c12a878f16f24019da03158679b5d4728edbd21e":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1418957990,"completion_on":1630249595,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 51 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1420661209,"downloaded_session":1420661209,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631114101,"magnet_uri":"magnet:?xt=urn:btih:c12a878f16f24019da03158679b5d4728edbd21e&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2051%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 51 [1080p][Multiple Subtitle].mkv","num_complete":15,"num_incomplete":389,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.13307536716165802,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888901,"seeding_time_limit":-2,"seen_complete":1631127132,"seq_dl":false,"size":1418957990,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893644,"total_size":1418957990,"tracker":"udp:\/\/tracker.torrent.eu.org:451\/announce","trackers_count":19,"up_limit":0,"uploaded":189055012,"uploaded_session":189055012,"upspeed":0,"hash":"c12a878f16f24019da03158679b5d4728edbd21e","speed":0,"eta_act":0},"c169e83db0a4f9282fd404473a63ee6716f8be1d":{"added_on":1616104235,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"Animu","completed":4225732,"completion_on":1616104259,"content_path":"\/downloads\/Animu\/pats","dl_limit":-1,"dlspeed":0,"downloaded":4225732,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:c169e83db0a4f9282fd404473a63ee6716f8be1d&dn=pats","max_ratio":-1,"max_seeding_time":-1,"name":"pats","num_complete":0,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1,"ratio_limit":-2,"save_path":"\/downloads\/Animu\/","seeding_time":1093319,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":4225732,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1093345,"total_size":4225732,"tracker":"","trackers_count":0,"up_limit":-1,"uploaded":4225732,"uploaded_session":0,"upspeed":0,"hash":"c169e83db0a4f9282fd404473a63ee6716f8be1d","speed":0,"eta_act":0},"c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1421536887,"completion_on":1630249724,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 50 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1424411605,"downloaded_session":1424411605,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631114016,"magnet_uri":"magnet:?xt=urn:btih:c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2050%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 50 [1080p][Multiple Subtitle].mkv","num_complete":16,"num_incomplete":823,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.12981098956997053,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888763,"seeding_time_limit":-2,"seen_complete":1631127200,"seq_dl":false,"size":1421536887,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893635,"total_size":1421536887,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":19,"up_limit":0,"uploaded":184904280,"uploaded_session":184904280,"upspeed":0,"hash":"c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","speed":0,"eta_act":0},"c642dd448d6c3dbeead5be37966b94ab2dddf47a":{"added_on":1630900215,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":840301069,"completion_on":1630900953,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E10.1080p.WEBRip.x264-CAKES[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":845335842,"downloaded_session":845335842,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138491,"magnet_uri":"magnet:?xt=urn:btih:c642dd448d6c3dbeead5be37966b94ab2dddf47a&dn=Rick.and.Morty.S05E10.1080p.WEBRip.x264-CAKES%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2860&tr=udp%3a%2f%2f9.rarbg.to%3a2800&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13790&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15730","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E10.1080p.WEBRip.x264-CAKES[rartv]","num_complete":4986,"num_incomplete":1760,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":1.0020336213308225,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":237543,"seeding_time_limit":-2,"seen_complete":1631138438,"seq_dl":false,"size":840301069,"state":"uploading","super_seeding":false,"tags":"","time_active":238281,"total_size":840301069,"tracker":"udp:\/\/tracker.tallpenguin.org:15730","trackers_count":5,"up_limit":-1,"uploaded":847054935,"uploaded_session":847054935,"upspeed":9018,"hash":"c642dd448d6c3dbeead5be37966b94ab2dddf47a","speed":9018,"eta_act":0},"c8a7135a3b8c2594979bdec31e7c6d04ba40caa2":{"added_on":1628428631,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":11753655321,"completion_on":1628435492,"content_path":"\/downloads\/sonarr_finished\/Dan.Vs.S02.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel[rartv]","dl_limit":-1,"dlspeed":0,"downloaded":11758857814,"downloaded_session":11758857814,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138492,"magnet_uri":"magnet:?xt=urn:btih:c8a7135a3b8c2594979bdec31e7c6d04ba40caa2&dn=Dan.Vs.S02.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel%5brartv%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Dan.Vs.S02.1080p.AMZN.WEBRip.DDP5.1.x264-Cinefeel","num_complete":1,"num_incomplete":2,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":1.794271597865585,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2703004,"seeding_time_limit":-2,"seen_complete":1631136392,"seq_dl":false,"size":11753655321,"state":"uploading","super_seeding":false,"tags":"","time_active":2709864,"total_size":11753655321,"tracker":"udp:\/\/explodie.org:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":21098584599,"uploaded_session":21098584599,"upspeed":368486,"hash":"c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","speed":368486,"eta_act":0},"ca0c8e299a9d3be8108aa1d0358e65bb6ccd30b7":{"added_on":1593370762,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":48817284,"completion_on":1593372953,"content_path":"\/downloads\/bakabt_seeds\/Ashinaga Ojisama","dl_limit":-1,"dlspeed":0,"downloaded":49018420,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1626794241,"magnet_uri":"magnet:?xt=urn:btih:ca0c8e299a9d3be8108aa1d0358e65bb6ccd30b7&dn=Ashinaga%20Ojisama&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"Ashinaga Ojisama","num_complete":7,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.44205823035503794,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36262327,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":48817284,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36264532,"total_size":48817284,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":21668996,"uploaded_session":0,"upspeed":0,"hash":"ca0c8e299a9d3be8108aa1d0358e65bb6ccd30b7","speed":0,"eta_act":0},"cbccac9736578b403da2e08f13e31eb13c5362e7":{"added_on":1627792585,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":295140877,"completion_on":1627792642,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":300896893,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138495,"magnet_uri":"magnet:?xt=urn:btih:cbccac9736578b403da2e08f13e31eb13c5362e7&dn=The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.720p.HULU.WEBRip.AAC2.0.H264-LAZY%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2940&tr=udp%3a%2f%2f9.rarbg.to%3a2900&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13760&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15800","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E08.Knock.Knock.Knockin.on.Hootys.Door.720p.HULU.WEBRip.AAC2.0.H264-LAZY[rartv]","num_complete":49,"num_incomplete":6,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":25.007461732082426,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3343797,"seeding_time_limit":-2,"seen_complete":1631138121,"seq_dl":false,"size":295140877,"state":"uploading","super_seeding":false,"tags":"","time_active":3343854,"total_size":295140877,"tracker":"udp:\/\/9.rarbg.me:2940","trackers_count":5,"up_limit":-1,"uploaded":7524667537,"uploaded_session":5103989222,"upspeed":131238,"hash":"cbccac9736578b403da2e08f13e31eb13c5362e7","speed":131238,"eta_act":0},"cbd153b49ddc905ada18542b890bcbe25d9af074":{"added_on":1627275694,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":652295794,"completion_on":1627275790,"content_path":"\/downloads\/sonarr_finished\/Tuca.and.Bertie.S02E07.1080p.WEBRip.x264-BAE[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":661959065,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138104,"magnet_uri":"magnet:?xt=urn:btih:cbd153b49ddc905ada18542b890bcbe25d9af074&dn=Tuca.and.Bertie.S02E07.1080p.WEBRip.x264-BAE%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2990&tr=udp%3a%2f%2f9.rarbg.to%3a2760&tr=udp%3a%2f%2ftracker.fatkhoala.org%3a13770&tr=udp%3a%2f%2ftracker.tallpenguin.org%3a15800","max_ratio":-1,"max_seeding_time":-1,"name":"Tuca.and.Bertie.S02E07.1080p.WEBRip.x264-BAE[rartv]","num_complete":36,"num_incomplete":4,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":8.318673569339216,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3860649,"seeding_time_limit":-2,"seen_complete":1631138105,"seq_dl":false,"size":652295794,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3860745,"total_size":652295794,"tracker":"udp:\/\/9.rarbg.me:2990","trackers_count":5,"up_limit":-1,"uploaded":5506621378,"uploaded_session":3035627947,"upspeed":0,"hash":"cbd153b49ddc905ada18542b890bcbe25d9af074","speed":0,"eta_act":0},"cf922f000fedea0ad6244c68189b101822192f1b":{"added_on":1595502952,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"bakabt_seeds","completed":4663188993,"completion_on":1595503212,"content_path":"\/downloads\/bakabt_seeds\/[ron] Mahou Shoujo Lyrical Nanoha Reflection (1080p BD Hi10 AACx5.1+2.0) [E5990EDA].mkv","dl_limit":-1,"dlspeed":0,"downloaded":4665350964,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631133104,"magnet_uri":"magnet:?xt=urn:btih:cf922f000fedea0ad6244c68189b101822192f1b&dn=%5bron%5d%20Mahou%20Shoujo%20Lyrical%20Nanoha%20Reflection%20(1080p%20BD%20Hi10%20AACx5.1%2b2.0)%20%5bE5990EDA%5d.mkv&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"[ron] Mahou Shoujo Lyrical Nanoha Reflection (1080p BD Hi10 AACx5.1+2.0) [E5990EDA].mkv","num_complete":91,"num_incomplete":1721,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.9312829235198348,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":33606641,"seeding_time_limit":-2,"seen_complete":1631127664,"seq_dl":false,"size":4663188993,"state":"stalledUP","super_seeding":false,"tags":"","time_active":33606913,"total_size":4663188993,"tracker":"","trackers_count":1,"up_limit":-1,"uploaded":18340814577,"uploaded_session":1023552891,"upspeed":0,"hash":"cf922f000fedea0ad6244c68189b101822192f1b","speed":0,"eta_act":0},"d0b0d84195ab61efcfe2a97992caa6b29564f8ae":{"added_on":1593370762,"amount_left":0,"auto_tmm":false,"availability":-1,"category":"bakabt_seeds","completed":122422591,"completion_on":1593373281,"content_path":"\/downloads\/bakabt_seeds\/D.H.A","dl_limit":-1,"dlspeed":0,"downloaded":122539643,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1610294766,"magnet_uri":"magnet:?xt=urn:btih:d0b0d84195ab61efcfe2a97992caa6b29564f8ae&dn=D.H.A&tr=http%3a%2f%2ftracker.bakabt.me%3a2710%2ffbc53369940cc6c87b7626773450d61c%2fannounce.php","max_ratio":-1,"max_seeding_time":-1,"name":"D.H.A","num_complete":8,"num_incomplete":0,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.7417356030652056,"ratio_limit":-2,"save_path":"\/downloads\/bakabt_seeds\/","seeding_time":36144165,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":122422591,"state":"stalledUP","super_seeding":false,"tags":"","time_active":36146701,"total_size":122422591,"tracker":"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php","trackers_count":1,"up_limit":-1,"uploaded":90892016,"uploaded_session":0,"upspeed":0,"hash":"d0b0d84195ab61efcfe2a97992caa6b29564f8ae","speed":0,"eta_act":0},"d1f3cc8ed470c15a253ce848c3af5e9524248a3f":{"added_on":1628998018,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":339105380,"completion_on":1628998121,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E61 - A Place to Return to.mkv","dl_limit":-1,"dlspeed":0,"downloaded":340313464,"downloaded_session":340313464,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631130692,"magnet_uri":"magnet:?xt=urn:btih:d1f3cc8ed470c15a253ce848c3af5e9524248a3f&dn=Digimon%20Adventure%20-%20S01E61%20-%20A%20Place%20to%20Return%20to.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon.Adventure.2020.S01E61.1080p.WEBRip.x264-Rapta","num_complete":14,"num_incomplete":1,"num_leechs":1,"num_seeds":0,"priority":0,"progress":1,"ratio":2.8597861617370506,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":2140375,"seeding_time_limit":-2,"seen_complete":1631132386,"seq_dl":false,"size":339105380,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2140478,"total_size":339105380,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":5,"up_limit":-1,"uploaded":973223735,"uploaded_session":973223735,"upspeed":0,"hash":"d1f3cc8ed470c15a253ce848c3af5e9524248a3f","speed":0,"eta_act":0},"d34d825d0665eee0b65de69760b44e626a1f1d9f":{"added_on":1627899000,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":751429545,"completion_on":1627899208,"content_path":"\/downloads\/sonarr_finished\/Tuca.and.Bertie.S02E08.Corpse.Week.1080p.HULU.WEBRip.AAC2.0.H264-WELP[rarbg]","dl_limit":-1,"dlspeed":0,"downloaded":753205114,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631125180,"magnet_uri":"magnet:?xt=urn:btih:d34d825d0665eee0b65de69760b44e626a1f1d9f&dn=Tuca.and.Bertie.S02E08.Corpse.Week.1080p.HULU.WEBRip.AAC2.0.H264-WELP%5brarbg%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2910&tr=udp%3a%2f%2f9.rarbg.to%3a2810&tr=udp%3a%2f%2ftracker.thinelephant.org%3a12770&tr=udp%3a%2f%2ftracker.slowcheetah.org%3a14740","max_ratio":-1,"max_seeding_time":-1,"name":"Tuca.and.Bertie.S02E08.Corpse.Week.1080p.HULU.WEBRip.AAC2.0.H264-WELP[rartv]","num_complete":53,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":6.399330449846096,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3237231,"seeding_time_limit":-2,"seen_complete":1631076759,"seq_dl":false,"size":751429545,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3237438,"total_size":751429545,"tracker":"udp:\/\/tracker.thinelephant.org:12770","trackers_count":5,"up_limit":-1,"uploaded":4820008421,"uploaded_session":3110493048,"upspeed":0,"hash":"d34d825d0665eee0b65de69760b44e626a1f1d9f","speed":0,"eta_act":0},"d7485ca7b7efc3638bf7e4ccb3e9343756c09c70":{"added_on":1625571898,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":3990536809,"completion_on":1625572578,"content_path":"\/downloads\/kali-linux-2021-2-virtualbox-amd64-ova","dl_limit":-1,"dlspeed":0,"downloaded":4017758368,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138496,"magnet_uri":"magnet:?xt=urn:btih:d7485ca7b7efc3638bf7e4ccb3e9343756c09c70&dn=kali-linux-2021-2-virtualbox-amd64-ova&tr=http%3a%2f%2ftracker.kali.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.kali.org%3a6969%2fannounce&ws=https%3a%2f%2fimages.kali.org%2fvirtual-images%2fkali-linux-2021.2-virtualbox-amd64.ova%2f","max_ratio":-1,"max_seeding_time":-1,"name":"kali-linux-2021-2-virtualbox-amd64-ova","num_complete":2853,"num_incomplete":147,"num_leechs":5,"num_seeds":0,"priority":0,"progress":1,"ratio":8.200068518406232,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":5561246,"seeding_time_limit":-2,"seen_complete":1631138477,"seq_dl":false,"size":3990536809,"state":"uploading","super_seeding":false,"tags":"","time_active":5561873,"total_size":3990536809,"tracker":"","trackers_count":2,"up_limit":-1,"uploaded":32945893908,"uploaded_session":13211825487,"upspeed":20757,"hash":"d7485ca7b7efc3638bf7e4ccb3e9343756c09c70","speed":20757,"eta_act":0},"d8deac184bdb3d6d4403b12450366fc2c9098b90":{"added_on":1629222232,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":3719685265,"completion_on":1629222530,"content_path":"\/downloads\/Topaz Gigapixel AI v5.5.2 (x64) + Fix {CracksHash}","dl_limit":-1,"dlspeed":0,"downloaded":3724217620,"downloaded_session":3724217620,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631137685,"magnet_uri":"magnet:?xt=urn:btih:d8deac184bdb3d6d4403b12450366fc2c9098b90&dn=Topaz%20Gigapixel%20AI%20v5.5.2%20(x64)%20%2b%20Fix%20%7bCracksHash%7d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Topaz Gigapixel AI v5.5.2 (x64) Fix {CracksHash}","num_complete":25,"num_incomplete":2,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.7385607506470043,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":1915966,"seeding_time_limit":-2,"seen_complete":1631138031,"seq_dl":false,"size":3719685265,"state":"stalledUP","super_seeding":false,"tags":"","time_active":1916264,"total_size":3719685265,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":10,"up_limit":-1,"uploaded":2750560961,"uploaded_session":2750560961,"upspeed":0,"hash":"d8deac184bdb3d6d4403b12450366fc2c9098b90","speed":0,"eta_act":0},"d90b7526ef1402944856791bcc6eed32f48e28d1":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":66804267290,"completion_on":1630276600,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 01 ~ 47 [1080p][Multiple Subtitle]","dl_limit":0,"dlspeed":0,"downloaded":66834829197,"downloaded_session":66834829197,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138279,"magnet_uri":"magnet:?xt=urn:btih:d90b7526ef1402944856791bcc6eed32f48e28d1&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2001%20~%2047%20%5b1080p%5d%5bMultiple%20Subtitle%5d&tr=http%3a%2f%2fh4.trakx.nibba.trade%3a80%2fannounce&tr=https%3a%2f%2ftracker.tamersunion.org%3a443%2fannounce&tr=https%3a%2f%2ftr.torland.ga%3a443%2fannounce&tr=https%3a%2f%2ftrakx.herokuapp.com%3a443%2fannounce&tr=http%3a%2f%2fvps02.net.orel.ru%3a80%2fannounce&tr=https%3a%2f%2ftracker.nitrix.me%3a443%2fannounce&tr=http%3a%2f%2fgooger.cc%3a1337%2fannounce&tr=https%3a%2f%2ftracker.kuroy.me%3a443%2fannounce&tr=http%3a%2f%2ft.overflow.biz%3a6969%2fannounce&tr=http%3a%2f%2ftracker.bt4g.com%3a2095%2fannounce&tr=https%3a%2f%2ftracker.nanoha.org%3a443%2fannounce&tr=http%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=http%3a%2f%2ft.nyaatracker.com%3a80%2fannounce&tr=http%3a%2f%2ft.acg.rip%3a6699%2fannounce&tr=https%3a%2f%2ftracker.iriseden.fr%3a443%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2850%2fannounce&tr=http%3a%2f%2fipv4announce.sktorrent.eu%3a6969%2fannounce&tr=https%3a%2f%2f1337.abcvg.info%3a443%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2810%2fannounce&tr=udp%3a%2f%2ftracker.cortexlabs.ai%3a5008%2fannounce&tr=udp%3a%2f%2ftracker.dler.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker2.dler.com%3a80%2fannounce&tr=https%3a%2f%2ftrackme.theom.nz%3a443%2fannounce&tr=udp%3a%2f%2finferno.demonoid.is%3a3391%2fannounce&tr=http%3a%2f%2frt.optizone.ru%3a80%2fannounce&tr=https%3a%2f%2ftracker.lilithraws.cf%3a443%2fannounce&tr=http%3a%2f%2ftracker.loadbt.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker0.ufibox.com%3a6969%2fannounce&tr=udp%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=udp%3a%2f%2fcode2chicken.nl%3a6969%2fannounce&tr=http%3a%2f%2ftracker.files.fm%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.blacksparrowmedia.net%3a6969%2fannounce&tr=udp%3a%2f%2fengplus.ru%3a6969%2fannounce&tr=udp%3a%2f%2fudp-tracker.shittyurl.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.ololosh.space%3a6969%2fannounce&tr=udp%3a%2f%2fbt1.archive.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fvibe.community%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.haynet.io%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.bitsearch.to%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.jordan.im%3a6969%2fannounce&tr=http%3a%2f%2ftorrenttracker.nwc.acsalaska.net%3a6969%2fannounce&tr=udp%3a%2f%2fmts.tvbit.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.monitorit4.me%3a6969%2fannounce&tr=udp%3a%2f%2fbclearning.top%3a6969%2fannounce&tr=udp%3a%2f%2fbt2.archive.org%3a6969%2fannounce&tr=http%3a%2f%2fbt.okmp3.ru%3a2710%2fannounce&tr=udp%3a%2f%2fopen.publictracker.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fpublic.publictracker.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fwassermann.online%3a6969%2fannounce&tr=udp%3a%2f%2fbms-hosxp.com%3a6969%2fannounce&tr=udp%3a%2f%2f6ahddutb1ucc3cp.ru%3a6969%2fannounce&tr=udp%3a%2f%2fabufinzio.monocul.us%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.army%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.xn--vzyr4p.top%3a80%2fannounce&tr=udp%3a%2f%2ftracker.leech.ie%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.theoks.net%3a6969%2fannounce&tr=udp%3a%2f%2fmovies.zsw.ca%3a6969%2fannounce&tr=http%3a%2f%2ftracker.vraphim.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moxing.party%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zerobytes.xyz%3a1337%2fannounce&tr=udp%3a%2f%2fcutiegirl.ru%3a6969%2fannounce&tr=udp%3a%2f%2fedu.uifr.ru%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.0x.tf%3a6969%2fannounce&tr=udp%3a%2f%2ffe.dealclub.de%3a6969%2fannounce&tr=udp%3a%2f%2fvibe.sleepyinternetfun.xyz%3a1738%2fannounce&tr=udp%3a%2f%2f9.rarbg.com%3a2930%2fannounce&tr=udp%3a%2f%2ftracker1.bt.moack.co.kr%3a80%2fannounce&tr=http%3a%2f%2ftracker.grepler.com%3a6969%2fannounce&tr=udp%3a%2f%2fwww.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2fmail.realliferpg.de%3a6969%2fannounce&tr=http%3a%2f%2ffiletracker.xyz%3a11451%2fannounce&tr=http%3a%2f%2fretracker.sevstar.net%3a2710%2fannounce&tr=udp%3a%2f%2fretracker.netbynet.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.altrosky.nl%3a6969%2fannounce&tr=udp%3a%2f%2fdiscord.heihachi.pw%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.breizh.pm%3a6969%2fannounce&tr=http%3a%2f%2fopenbittorrent.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2fbubu.mapfactor.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.moeking.me%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2fbtt.service.gongt.me%3a43079%2fannounce&tr=udp%3a%2f%2ftracker.nighthawk.pw%3a2052%2fannounce&tr=udp%3a%2f%2fpow7.com%3a80%2fannounce&tr=udp%3a%2f%2fadmin.videoenpoche.info%3a6969%2fannounce&tr=udp%3a%2f%2fopentor.org%3a2710%2fannounce&tr=udp%3a%2f%2fudp.tracker.coalition.space%3a1337%2fannounce&tr=udp%3a%2f%2fopen.tracker.cl%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.birkenwald.de%3a6969%2fannounce&tr=udp%3a%2f%2fipv6.tracker.zerobytes.xyz%3a16661%2fannounce&tr=udp%3a%2f%2ftracker.moeking.eu.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.beeimg.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker6.lelux.fi%3a6969%2fannounce&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fretracker.hotplug.ru%3a2710%2fannounce&tr=http%3a%2f%2ftracker.corpscorp.online%3a80%2fannounce&tr=http%3a%2f%2ftracker6.emce.org%3a12345%2fannounce&tr=https%3a%2f%2fmytracker.fly.dev%3a443%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=http%3a%2f%2ftracker.ipv6tracker.ru%3a80%2fannounce&tr=udp%3a%2f%2ftracker.lelux.fi%3a6969%2fannounce&tr=udp%3a%2f%2ftr.cili001.com%3a8070%2fannounce&tr=http%3a%2f%2ftracker.yowe.net%3a80%2fannounce&tr=https%3a%2f%2fbittorrent.gongt.net%3a443%2fannounce&tr=udp%3a%2f%2ftr2.ysagin.top%3a2710%2fannounce&tr=https%3a%2f%2ftracker.coalition.space%3a443%2fannounce&tr=https%3a%2f%2ftr.ready4.icu%3a443%2fannounce&tr=udp%3a%2f%2fcamera.lei001.com%3a6969%2fannounce&tr=http%3a%2f%2fp4p.arenabg.com%3a1337%2fannounce&tr=http%3a%2f%2fretracker.joxnet.ru%3a80%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 01 ~ 47 [1080p][Multiple Subtitle]","num_complete":14,"num_incomplete":3,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":0.17337048714295378,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":861896,"seeding_time_limit":-2,"seen_complete":1631138253,"seq_dl":false,"size":66804267290,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893644,"total_size":66804267290,"tracker":"http:\/\/openbittorrent.com:80\/announce","trackers_count":131,"up_limit":0,"uploaded":11587186896,"uploaded_session":11587186896,"upspeed":0,"hash":"d90b7526ef1402944856791bcc6eed32f48e28d1","speed":0,"eta_act":0},"db8fa9a79406ec3da486df27aabf442e15c09d3b":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1425890077,"completion_on":1630249674,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 57 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1428717034,"downloaded_session":1428717034,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631135605,"magnet_uri":"magnet:?xt=urn:btih:db8fa9a79406ec3da486df27aabf442e15c09d3b&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2057%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 57 [1080p][Multiple Subtitle].mkv","num_complete":16,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.18972654944911926,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":888798,"seeding_time_limit":-2,"seen_complete":1631135665,"seq_dl":false,"size":1425890077,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893620,"total_size":1425890077,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":19,"up_limit":0,"uploaded":271065553,"uploaded_session":271065553,"upspeed":0,"hash":"db8fa9a79406ec3da486df27aabf442e15c09d3b","speed":0,"eta_act":0},"df7128b6b611d33f3847209ed4d6f3e32fb9db04":{"added_on":1630543559,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":565827320,"completion_on":1630543616,"content_path":"\/downloads\/sonarr_finished\/[Anime Land] Digimon Adventure (2020) 63 (THK 720p Hi10P AAC) RAW [0D54A665].mkv","dl_limit":-1,"dlspeed":0,"downloaded":565852199,"downloaded_session":565852199,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1630976928,"magnet_uri":"magnet:?xt=urn:btih:df7128b6b611d33f3847209ed4d6f3e32fb9db04&dn=%5bAnime%20Land%5d%20Digimon%20Adventure%20(2020)%2063%20(THK%20720p%20Hi10P%20AAC)%20RAW%20%5b0D54A665%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2f208.67.16.113%3a8000%2fannonuce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2fIPv6.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Anime Land] Digimon Adventure (2020) 63 (THK 720p Hi10P AAC) RAW [0D54A665].mkv","num_complete":4,"num_incomplete":197,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.261912119917378,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":594880,"seeding_time_limit":-2,"seen_complete":1631116886,"seq_dl":false,"size":565827320,"state":"stalledUP","super_seeding":false,"tags":"","time_active":594937,"total_size":565827320,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":10,"up_limit":-1,"uploaded":714055748,"uploaded_session":714055748,"upspeed":0,"hash":"df7128b6b611d33f3847209ed4d6f3e32fb9db04","speed":0,"eta_act":0},"e25d3e879202f18596a77b95f27d3f22890f0fcb":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr","completed":1426995632,"completion_on":1630249534,"content_path":"\/downloads\/sonarr\/[Erai-raws] Digimon Adventure (2020) - 55 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1428898586,"downloaded_session":1428898586,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631114448,"magnet_uri":"magnet:?xt=urn:btih:e25d3e879202f18596a77b95f27d3f22890f0fcb&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2055%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 55 [1080p][Multiple Subtitle].mkv","num_complete":17,"num_incomplete":252,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.1271743885678392,"ratio_limit":-2,"save_path":"\/downloads\/sonarr\/","seeding_time":888962,"seeding_time_limit":-2,"seen_complete":1631127430,"seq_dl":false,"size":1426995632,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893644,"total_size":1426995632,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":19,"up_limit":0,"uploaded":181719304,"uploaded_session":181719304,"upspeed":0,"hash":"e25d3e879202f18596a77b95f27d3f22890f0fcb","speed":0,"eta_act":0},"e51858230a58da54023d338502250d3468bca112":{"added_on":1627775025,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":325671642,"completion_on":1627775066,"content_path":"\/downloads\/IDA Pro 7.5","dl_limit":-1,"dlspeed":0,"downloaded":332454229,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631124377,"magnet_uri":"magnet:?xt=urn:btih:e51858230a58da54023d338502250d3468bca112&dn=IDA%20Pro%207.5&tr=http%3a%2f%2fbt2.t-ru.org%2fann%3fmagnet","max_ratio":-1,"max_seeding_time":-1,"name":"IDA Pro 7.5.201028 WIN x64 + Hexrays, Hexarm, Hexppc & Hexmips Decompilers (x64) [2020, ENG]","num_complete":832,"num_incomplete":2017,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.8374772305874323,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":3361373,"seeding_time_limit":-2,"seen_complete":1631137786,"seq_dl":false,"size":325671642,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3361413,"total_size":325671642,"tracker":"http:\/\/bt2.t-ru.org\/ann?magnet","trackers_count":1,"up_limit":-1,"uploaded":610877076,"uploaded_session":494230388,"upspeed":0,"hash":"e51858230a58da54023d338502250d3468bca112","speed":0,"eta_act":0},"e543032982e95e7cf723dac37d58025a823fd20d":{"added_on":1616008003,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":28590358,"completion_on":1616008201,"content_path":"\/downloads\/CHERUB Series 1-2 (Robert Muchamore)","dl_limit":-1,"dlspeed":0,"downloaded":28590358,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:e543032982e95e7cf723dac37d58025a823fd20d&dn=CHERUB%20Series%201-2%20(Robert%20Muchamore)&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"CHERUB Series 1-2 (Robert Muchamore)","num_complete":0,"num_incomplete":4,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":4.353488193467182,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":1200178,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":28590358,"state":"pausedUP","super_seeding":false,"tags":"","time_active":1200377,"total_size":28590358,"tracker":"","trackers_count":7,"up_limit":-1,"uploaded":124467786,"uploaded_session":0,"upspeed":0,"hash":"e543032982e95e7cf723dac37d58025a823fd20d","speed":0,"eta_act":0},"e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb":{"added_on":1626665145,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":716851993,"completion_on":1626665281,"content_path":"\/downloads\/sonarr_finished\/Rick.and.Morty.S05E05.1080p.WEBRip.x264-CAKES[TGx]","dl_limit":-1,"dlspeed":0,"downloaded":718338955,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631136084,"magnet_uri":"magnet:?xt=urn:btih:e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb&dn=Rick.and.Morty.S05E05.1080p.WEBRip.x264-CAKES%5bTGx%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Rick.and.Morty.S05E05.1080p.WEBRip.x264-CAKES[TGx]","num_complete":41,"num_incomplete":2177,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":7.708109914490159,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4468544,"seeding_time_limit":-2,"seen_complete":1631135901,"seq_dl":false,"size":716851993,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4468680,"total_size":716851993,"tracker":"udp:\/\/tracker.tiny-vps.com:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":5537035621,"uploaded_session":1666084750,"upspeed":0,"hash":"e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","speed":0,"eta_act":0},"ea2200c5e019e09f2e776a34a2963512f35348c1":{"added_on":1630244850,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1427477654,"completion_on":1630249231,"content_path":"\/downloads\/sonarr_finished\/[Erai-raws] Digimon Adventure (2020) - 61 [1080p][Multiple Subtitle].mkv","dl_limit":0,"dlspeed":0,"downloaded":1430859587,"downloaded_session":1430859587,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631130781,"magnet_uri":"magnet:?xt=urn:btih:ea2200c5e019e09f2e776a34a2963512f35348c1&dn=%5bErai-raws%5d%20Digimon%20Adventure%20(2020)%20-%2061%20%5b1080p%5d%5bMultiple%20Subtitle%5d.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=http%3a%2f%2fanidex.moe%3a6969%2fannounce&tr=http%3a%2f%2ftracker.anirena.com%3a80%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=wss%3a%2f%2ftracker.openwebtorrent.com&tr=http%3a%2f%2fopen.acgnxtracker.com%3a80%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2820%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker3.itzmx.com%3a6961%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2fretracker.lanta-net.ru%3a2710%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.zer0day.to%3a1337%2fannounce&tr=http%3a%2f%2ftracker.acgnx.se%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"[Erai-raws] Digimon Adventure (2020) - 61 [1080p][Multiple Subtitle].mkv","num_complete":23,"num_incomplete":1067,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.26771483762648196,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":889262,"seeding_time_limit":-2,"seen_complete":1631119746,"seq_dl":false,"size":1427477654,"state":"stalledUP","super_seeding":false,"tags":"","time_active":893642,"total_size":1427477654,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":19,"up_limit":0,"uploaded":383062342,"uploaded_session":383062342,"upspeed":0,"hash":"ea2200c5e019e09f2e776a34a2963512f35348c1","speed":0,"eta_act":0},"eb316d3453301e9028557dd57a0ff7821006e4c5":{"added_on":1628524337,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"radarr_finished","completed":5445466451,"completion_on":1628525593,"content_path":"\/downloads\/radarr_finished\/The Platform (2019) AKA El hoyo (1080p BluRay x265 HEVC 10bit EAC3 5.1 Spanish + English Bandi)\/The Platform (2019) (1080p BluRay x265 Spanish + English Bandi).mkv","dl_limit":-1,"dlspeed":0,"downloaded":5458277504,"downloaded_session":5458277504,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631134532,"magnet_uri":"magnet:?xt=urn:btih:eb316d3453301e9028557dd57a0ff7821006e4c5&dn=The%20Platform%20(2019)%20AKA%20El%20hoyo%20(1080p%20BluRay%20x265%20HEVC%2010bit%20EAC3%205.1%20Spanish%20%2b%20English%20Bandi)&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"The Platform (2019) AKA El hoyo (1080p BluRay x265 HEVC 10bit EAC3 5.1 Spanish English B...","num_complete":22,"num_incomplete":2,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.396421025939835,"ratio_limit":-2,"save_path":"\/downloads\/radarr_finished\/","seeding_time":2612903,"seeding_time_limit":-2,"seen_complete":1631127036,"seq_dl":false,"size":5445466451,"state":"stalledUP","super_seeding":false,"tags":"","time_active":2614159,"total_size":5445466451,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":10,"up_limit":-1,"uploaded":18538608480,"uploaded_session":18538608480,"upspeed":0,"hash":"eb316d3453301e9028557dd57a0ff7821006e4c5","speed":0,"eta_act":0},"ee5f47e32c47f15a8ebfb59c2028c855f1089937":{"added_on":1630210063,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":370056930,"completion_on":1630210144,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E63 - The Crest of Courage.mkv","dl_limit":-1,"dlspeed":0,"downloaded":370225152,"downloaded_session":370225152,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631131084,"magnet_uri":"magnet:?xt=urn:btih:ee5f47e32c47f15a8ebfb59c2028c855f1089937&dn=Digimon%20Adventure%20-%20S01E63%20-%20The%20Crest%20of%20Courage.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E63 - The Crest of Courage.mkv","num_complete":18,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.3229087714710426,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":928339,"seeding_time_limit":-2,"seen_complete":1631131084,"seq_dl":false,"size":370056930,"state":"stalledUP","super_seeding":false,"tags":"","time_active":928419,"total_size":370056930,"tracker":"udp:\/\/open.stealth.si:80\/announce","trackers_count":15,"up_limit":-1,"uploaded":1230224405,"uploaded_session":1230224405,"upspeed":0,"hash":"ee5f47e32c47f15a8ebfb59c2028c855f1089937","speed":0,"eta_act":0},"f0a49342a82c483bbb22a1aa0a1e30a40644ebc0":{"added_on":1627391207,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":1315130872,"completion_on":1627391476,"content_path":"\/downloads\/sonarr_finished\/How.to.Sell.Drugs.Online.Fast.S03.COMPLETE.DUBBED.720p.NF.WEBRip.x264-GalaxyTV[TGx]","dl_limit":-1,"dlspeed":0,"downloaded":1319018028,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631136781,"magnet_uri":"magnet:?xt=urn:btih:f0a49342a82c483bbb22a1aa0a1e30a40644ebc0&dn=How.to.Sell.Drugs.Online.Fast.S03.COMPLETE.DUBBED.720p.NF.WEBRip.x264-GalaxyTV%5bTGx%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"How.to.Sell.Drugs.Online.Fast.S03.COMPLETE.DUBBED.720p.NF.WEBRip.x264-GalaxyTV","num_complete":37,"num_incomplete":23,"num_leechs":2,"num_seeds":0,"priority":0,"progress":1,"ratio":28.072104041780392,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3744963,"seeding_time_limit":-2,"seen_complete":1631138382,"seq_dl":false,"size":1315130872,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3745232,"total_size":1315130872,"tracker":"udp:\/\/tracker.tiny-vps.com:6969\/announce","trackers_count":10,"up_limit":-1,"uploaded":37027611315,"uploaded_session":20070201778,"upspeed":0,"hash":"f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","speed":0,"eta_act":0},"f2b198d4d3bf0cd11324735dcb7d229dd3838cc3":{"added_on":1627183534,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":424031650,"completion_on":1627183598,"content_path":"\/downloads\/sonarr_finished\/Digimon Adventure - S01E58 - Hikari, New Life.mkv","dl_limit":-1,"dlspeed":0,"downloaded":424867609,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138402,"magnet_uri":"magnet:?xt=urn:btih:f2b198d4d3bf0cd11324735dcb7d229dd3838cc3&dn=Digimon%20Adventure%20-%20S01E58%20-%20Hikari%2c%20New%20Life.mkv&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.open-internet.nl%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.internetwarriors.net%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2850%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2920%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Digimon Adventure - S01E58 - Hikari, New Life.mkv","num_complete":6,"num_incomplete":2746,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":3.97741565420206,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":3952834,"seeding_time_limit":-2,"seen_complete":1631120038,"seq_dl":false,"size":424031650,"state":"stalledUP","super_seeding":false,"tags":"","time_active":3952897,"total_size":424031650,"tracker":"http:\/\/nyaa.tracker.wf:7777\/announce","trackers_count":15,"up_limit":-1,"uploaded":1689875079,"uploaded_session":820147006,"upspeed":0,"hash":"f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","speed":0,"eta_act":0},"f5b0d9a7f9ff64e188b1bdd057895a4567e8502e":{"added_on":1623833345,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":24446087392,"completion_on":1623835051,"content_path":"\/downloads\/Ratchet & Clank Future - Crack in Time - BCUS98124","dl_limit":-1,"dlspeed":0,"downloaded":24446175846,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:f5b0d9a7f9ff64e188b1bdd057895a4567e8502e&dn=Ratchet%20%26%20Clank%20Future%20-%20Crack%20in%20Time%20-%20BCUS98124&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.openbittorrent.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2f47.ip-51-68-199.eu%3a6969%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Ratchet & Clank Future - Crack in Time - BCUS98124 [USA][PS3]","num_complete":0,"num_incomplete":8,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.0008578650555453425,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":8078,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":true,"size":24446087392,"state":"pausedUP","super_seeding":false,"tags":"","time_active":9784,"total_size":24446087392,"tracker":"","trackers_count":7,"up_limit":-1,"uploaded":20971520,"uploaded_session":0,"upspeed":0,"hash":"f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","speed":0,"eta_act":0},"f5c107dc608b7cfe9ac4f7a961979a1ed6aec4ba":{"added_on":1626639758,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":8698584462,"completion_on":1626664977,"content_path":"\/downloads\/sonarr_finished\/Lifeline.S01.1080p.WEBRip.x264-iNSPiRiT[rartv]","dl_limit":-1,"dlspeed":0,"downloaded":8699737808,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631086412,"magnet_uri":"magnet:?xt=urn:btih:f5c107dc608b7cfe9ac4f7a961979a1ed6aec4ba&dn=Lifeline.S01.1080p.WEBRip.x264-iNSPiRiT%5brartv%5d&tr=http%3a%2f%2ftracker.trackerfix.com%3a80%2fannounce&tr=udp%3a%2f%2f9.rarbg.me%3a2980&tr=udp%3a%2f%2f9.rarbg.to%3a2980","max_ratio":-1,"max_seeding_time":-1,"name":"Lifeline.S01.1080p.RED.WEBRip.AAC5.1.x264-iNSPiRiT[rartv]","num_complete":2,"num_incomplete":1,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":1.2964369224585717,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4468837,"seeding_time_limit":-2,"seen_complete":1631083926,"seq_dl":false,"size":8698584462,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4494057,"total_size":8698584462,"tracker":"udp:\/\/9.rarbg.me:2980","trackers_count":3,"up_limit":-1,"uploaded":11278661310,"uploaded_session":5973861710,"upspeed":0,"hash":"f5c107dc608b7cfe9ac4f7a961979a1ed6aec4ba","speed":0,"eta_act":0},"fbe357edbf0f1c8f2a0f47577f4f162f752d42c4":{"added_on":1626577553,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"sonarr_finished","completed":831831589,"completion_on":1626577654,"content_path":"\/downloads\/sonarr_finished\/The.Owl.House.S02E06.Hunting.Palismen.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","dl_limit":-1,"dlspeed":0,"downloaded":833471357,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":1631138059,"magnet_uri":"magnet:?xt=urn:btih:fbe357edbf0f1c8f2a0f47577f4f162f752d42c4&dn=The.Owl.House.S02E06.Hunting.Palismen.1080p.HULU.WEBRip.AAC2.0.H264-LAZY%5bTGx%5d&tr=udp%3a%2f%2ftracker.tiny-vps.com%3a6969%2fannounce&tr=udp%3a%2f%2ffasttracker.foreverpirates.co%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexplodie.org%3a6969%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.cyberia.is%3a6969%2fannounce&tr=udp%3a%2f%2fipv4.tracker.harry.lu%3a80%2fannounce&tr=udp%3a%2f%2ftracker.uw0.xyz%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.dler.org%3a6969%2fannounce&tr=udp%3a%2f%2f9.rarbg.to%3a2710%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"The.Owl.House.S02E06.Hunting.Palismen.1080p.HULU.WEBRip.AAC2.0.H264-LAZY[TGx]","num_complete":77,"num_incomplete":12,"num_leechs":3,"num_seeds":0,"priority":0,"progress":1,"ratio":23.722037876821723,"ratio_limit":-2,"save_path":"\/downloads\/sonarr_finished\/","seeding_time":4556171,"seeding_time_limit":-2,"seen_complete":1631137714,"seq_dl":false,"size":831831589,"state":"stalledUP","super_seeding":false,"tags":"","time_active":4556272,"total_size":831831589,"tracker":"udp:\/\/tracker.opentrackr.org:1337\/announce","trackers_count":10,"up_limit":-1,"uploaded":19771639100,"uploaded_session":5189816712,"upspeed":0,"hash":"fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","speed":0,"eta_act":0},"fccc4e70717e58084547c0e2589f73f590f9e5d2":{"added_on":1619022749,"amount_left":0,"auto_tmm":true,"availability":-1,"category":"","completed":879293853,"completion_on":1619025745,"content_path":"\/downloads\/NieR Gestalt & Replicant","dl_limit":-1,"dlspeed":0,"downloaded":884381156,"downloaded_session":0,"eta":0,"f_l_piece_prio":false,"force_start":false,"last_activity":0,"magnet_uri":"magnet:?xt=urn:btih:fccc4e70717e58084547c0e2589f73f590f9e5d2&dn=NieR%20Gestalt%20%26%20Replicant&tr=http%3a%2f%2fnyaa.tracker.wf%3a7777%2fannounce&tr=udp%3a%2f%2fopen.stealth.si%3a80%2fannounce&tr=udp%3a%2f%2ftracker.opentrackr.org%3a1337%2fannounce&tr=udp%3a%2f%2fexodus.desync.com%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.torrent.eu.org%3a451%2fannounce","max_ratio":-1,"max_seeding_time":-1,"name":"Nier Gestalt & Replicant OST (FLAC)","num_complete":0,"num_incomplete":7,"num_leechs":0,"num_seeds":0,"priority":0,"progress":1,"ratio":0.01591822700482777,"ratio_limit":-2,"save_path":"\/downloads\/","seeding_time":5302,"seeding_time_limit":-2,"seen_complete":-3600,"seq_dl":false,"size":879293853,"state":"pausedUP","super_seeding":false,"tags":"","time_active":8298,"total_size":879293853,"tracker":"","trackers_count":5,"up_limit":-1,"uploaded":14077780,"uploaded_session":0,"upspeed":0,"hash":"fccc4e70717e58084547c0e2589f73f590f9e5d2","speed":0,"eta_act":0}},"trackers":{"http:\/\/173.254.204.71:1096\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/208.67.16.113:8000\/annonuce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/95.68.246.30:80\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/anidex.moe:6969\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","c12a878f16f24019da03158679b5d4728edbd21e","bb44bab60a69c79f8a37c45b98eef81a200d3313","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"http:\/\/bt.okmp3.ru:2710\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/bt1.archive.org:6969\/announce":["b3d6432eb5510dcb95d26b5452871640fd81fd73","4afc22927def677dc12dd727c5bc50dbcf17d45a","734b7e20496c6d6da380f595bc0fffa5ed9f0bb0","3a3257fb923c5217bb251a6891de9822801732e5"],"http:\/\/bt2.archive.org:6969\/announce":["b3d6432eb5510dcb95d26b5452871640fd81fd73","4afc22927def677dc12dd727c5bc50dbcf17d45a","734b7e20496c6d6da380f595bc0fffa5ed9f0bb0","3a3257fb923c5217bb251a6891de9822801732e5"],"http:\/\/bt2.t-ru.org\/ann?magnet":["e51858230a58da54023d338502250d3468bca112"],"http:\/\/exodus.desync.com\/announce":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"http:\/\/exodus.desync.com:6969\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/explodie.org:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"http:\/\/filetracker.xyz:11451\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/googer.cc:1337\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/h4.trakx.nibba.trade:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/ipv4announce.sktorrent.eu:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/mgtracker.org:6969\/announce":["bb581d8fc65e7184dbee54860df34a89291b2558"],"http:\/\/nyaa.tracker.wf:7777\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","100232ff0ac7fa6a03668fa26f486c58942dbd1b","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","ee5f47e32c47f15a8ebfb59c2028c855f1089937","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c12a878f16f24019da03158679b5d4728edbd21e","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","960fb2729c24982794424a5eab3bc804f00e21b9","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","9a684553a3cf3028d06e3266ebdfa5e3ee4d3144","4f3259e947604a89509b55444d37be957fe6b355","2adcec0f2555b8bfb3f187d410818e2821d5d2e4","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","474ce01e9691b6843777a5c2b9a573c721054c8c","2bd1b302fcca75c7b4c72547840c35434057e246","9b18d3ef61105680d4ab51895fca142f13ca3a1f","867dc47c1a1769258c1602448a4ee938359117ea","b3130ce065cb81181791cd3587636fa166a17b42","b4758da027274eebfe009fa8350ab7c0a5e928ba","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","90736409749215a1ab489e03387daa5ea94dc16a","d1f3cc8ed470c15a253ce848c3af5e9524248a3f","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","fccc4e70717e58084547c0e2589f73f590f9e5d2","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"http:\/\/open.acgnxtracker.com:80\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","c12a878f16f24019da03158679b5d4728edbd21e","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","90cf684903f03b303887a12d73f0cc4222161cc1","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","9b18d3ef61105680d4ab51895fca142f13ca3a1f","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"http:\/\/open.acgtracker.com:1096\/announce":["b3d6432eb5510dcb95d26b5452871640fd81fd73","960fb2729c24982794424a5eab3bc804f00e21b9","734b7e20496c6d6da380f595bc0fffa5ed9f0bb0"],"http:\/\/open.nyaatorrents.info:6544\/announce":["100232ff0ac7fa6a03668fa26f486c58942dbd1b","960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/openbittorrent.com:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/p4p.arenabg.com:1337\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/pt.lax.mx:80\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"http:\/\/retracker.adminko.org:80\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/retracker.joxnet.ru:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/retracker.mgts.by:80\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"http:\/\/retracker.sevstar.net:2710\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/rt.optizone.ru:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/sugoi.pomf.se\/announce":["734b7e20496c6d6da380f595bc0fffa5ed9f0bb0"],"http:\/\/sukebei.tracker.wf:7777\/announce":["bb581d8fc65e7184dbee54860df34a89291b2558"],"http:\/\/t.acg.rip:6699\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/t.nyaatracker.com\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"http:\/\/t.nyaatracker.com:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/t.overflow.biz:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/t2.popgo.org:7456\/annonce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/torrenttracker.nwc.acsalaska.net:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.acgnx.se\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","e25d3e879202f18596a77b95f27d3f22890f0fcb","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","c12a878f16f24019da03158679b5d4728edbd21e","bb44bab60a69c79f8a37c45b98eef81a200d3313","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"http:\/\/tracker.anirena.com:80\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","c12a878f16f24019da03158679b5d4728edbd21e","bb44bab60a69c79f8a37c45b98eef81a200d3313","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"http:\/\/tracker.bakabt.me:2710\/fbc53369940cc6c87b7626773450d61c\/announce.php":["89bc129be7741b6240341f655d2def0d9464abb2","d0b0d84195ab61efcfe2a97992caa6b29564f8ae","ca0c8e299a9d3be8108aa1d0358e65bb6ccd30b7","889bdb6d49e6e6ab6d55979e7f32228031926f54","44f0cda312e1e64b53db2574cf87e3d49033f36e","b5c8fd72defe27eb76f2b8a88a143a78781d82ee","44febeb858e75e6a61b8b8a602bd9f11bfef8364","2b2edf41d909b1cb97a4dcb1b249fd6539a695b2","51b202085476d8f1b4ab3375dffe5ac7fed48f14","2d7ca783a6ab3956460e0457be1d17d0de37bfc2","6d9331c7b463d967b994176d23e86062caa7b2c3","08ed6bbec4a27eb0d2285d3f547cd4d69e7fdc22","68ca58d07826b7730e7099a728a5600c282e2063","760767de6db7ed158b6440a3fae1e015ef8639eb","cf922f000fedea0ad6244c68189b101822192f1b","8a8dd7d3d20699f9ee7fa46fd248227225605ae2","7686a987cc18871ae6cb016c15dec37c39a2dda3","41d6875e215f0df0523a8f40be3387003972a8fa","91da259b95f6de28a7d39c3904ddc7bd70a14ede"],"http:\/\/tracker.bt4g.com:2095\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.comicat.org:2015\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.corpscorp.online:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.etree.org:6969\/announce":["b3d6432eb5510dcb95d26b5452871640fd81fd73"],"http:\/\/tracker.files.fm:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.grepler.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.ipv6tracker.ru:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.kali.org:6969\/announce":["d7485ca7b7efc3638bf7e4ccb3e9343756c09c70"],"http:\/\/tracker.kisssub.org:2015\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.ktxp.com:6868\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.ktxp.com:7070\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.loadbt.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.minglong.org:8080\/announce":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"http:\/\/tracker.openbittorrent.com\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.openbittorrent.com:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.opentrackr.org\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"http:\/\/tracker.opentrackr.org:1337\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0"],"http:\/\/tracker.pomf.se\/announce":["b3d6432eb5510dcb95d26b5452871640fd81fd73","734b7e20496c6d6da380f595bc0fffa5ed9f0bb0"],"http:\/\/tracker.publicbt.com\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.tfile.co:80\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"http:\/\/tracker.tntvillage.scambioetico.org:2710\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"http:\/\/tracker.torrentyorg.pl:80\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"http:\/\/tracker.trackerfix.com\/announce":["2193e38f2b6075d602093007e5325cd5e8d84a6c"],"http:\/\/tracker.trackerfix.com:80\/announce":["19991e2c9aebd64c77b3d750186f0e4a5086ab8f","56fff9bddcbd8482933200e398a051596d9671dd","867f2b761b9edfbfb34b28cff07a4daeb2ad5e7b","cbd153b49ddc905ada18542b890bcbe25d9af074","683b459883feb04acbc966389b127963330768a5","57daccfbe81af51ac70ac6e84abe1323e31eac6e","cbccac9736578b403da2e08f13e31eb13c5362e7","b2121afe91f2187ee3986a70c05fa317ef8a386e","bdaecf1f7c8e41581080d58542b4e1d0ce5f296c","83de27b56d0e7c79c1543e1d48753d4e6e2760a3","0d4700f560fa6a5bb1992a311786dac67eb20336","ab27456459a97546996e4be156706037219ca2be","6193a5ae06c2cbb910e0d66580ca32c940a838e8","88adf40aba960043a2e152ed4f22ccec6c17f945","6e6c09c864099e7eedfd1d6caa5d143af3bd0767","d34d825d0665eee0b65de69760b44e626a1f1d9f","f5c107dc608b7cfe9ac4f7a961979a1ed6aec4ba","c642dd448d6c3dbeead5be37966b94ab2dddf47a"],"http:\/\/tracker.vraphim.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker.xelion.fr:6969\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker.yowe.net:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/tracker1.itzmx.com:8080\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","51c9980fa377bc9f0773b95813809543c4d36c57","960fb2729c24982794424a5eab3bc804f00e21b9","4dc948c01e54a48c13652ccea8d0addeb5d53c77"],"http:\/\/tracker2.itzmx.com:6961\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker3.itzmx.com:6961\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker4.itzmx.com:2710\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"http:\/\/tracker6.emce.org:12345\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/vps02.net.orel.ru:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"http:\/\/www.h33t.com:3310\/announce":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"https:\/\/1337.abcvg.info:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/bittorrent.gongt.net:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/mytracker.fly.dev:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tr.ready4.icu:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tr.torland.ga:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.coalition.space:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.iriseden.fr:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.kuroy.me:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.lilithraws.cf:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.nanoha.org:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.nitrix.me:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/tracker.tamersunion.org:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/trackme.theom.nz:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"https:\/\/trakx.herokuapp.com:443\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/11.rarbg.com\/announce":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"udp:\/\/208.67.16.113:8000\/annonuce":["df7128b6b611d33f3847209ed4d6f3e32fb9db04","960fb2729c24982794424a5eab3bc804f00e21b9"],"udp:\/\/47.ip-51-68-199.eu:6969\/announce":["ee5f47e32c47f15a8ebfb59c2028c855f1089937","f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","988b2af32023de900c30d0fdd6ce496f6dc64381","e543032982e95e7cf723dac37d58025a823fd20d","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","b25b4cbec458e39d436249ed4113eafc23d592a6","b3130ce065cb81181791cd3587636fa166a17b42","b4758da027274eebfe009fa8350ab7c0a5e928ba","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/6ahddutb1ucc3cp.ru:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/9.rarbg.com:2770\/announce":["158804879e68a2acc29aba65abbf80f20ca058c1"],"udp:\/\/9.rarbg.com:2800\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"udp:\/\/9.rarbg.com:2810\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/9.rarbg.com:2850\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/9.rarbg.com:2930\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/9.rarbg.me:2710\/announce":["26cd5a9ca036366d52178144d7e7a838f0fa5cab","5a928d92783b563532ac33f209f7135153c93c3c","7da28d791688919132e54d4156b65d171d67cd84","459479508451166b4329072e25a4126c09734e0d","9d4c5c71601451f0275692946444824c7a9e6997","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","98a9c45b062c9313e59b567547c6a3135e64193f","90cf684903f03b303887a12d73f0cc4222161cc1","9b18d3ef61105680d4ab51895fca142f13ca3a1f","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","adf50fd253fe64599daf8a3d5eb4f75399a38aaf"],"udp:\/\/9.rarbg.me:2730\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.me:2740\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.me:2760\/announce":["2193e38f2b6075d602093007e5325cd5e8d84a6c"],"udp:\/\/9.rarbg.me:2770":["57daccfbe81af51ac70ac6e84abe1323e31eac6e"],"udp:\/\/9.rarbg.me:2770\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.me:2780\/announce":["328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2"],"udp:\/\/9.rarbg.me:2810":["0d4700f560fa6a5bb1992a311786dac67eb20336","88adf40aba960043a2e152ed4f22ccec6c17f945"],"udp:\/\/9.rarbg.me:2820":["867f2b761b9edfbfb34b28cff07a4daeb2ad5e7b"],"udp:\/\/9.rarbg.me:2830":["6193a5ae06c2cbb910e0d66580ca32c940a838e8"],"udp:\/\/9.rarbg.me:2850":["683b459883feb04acbc966389b127963330768a5"],"udp:\/\/9.rarbg.me:2850\/announce":["ee5f47e32c47f15a8ebfb59c2028c855f1089937","988b2af32023de900c30d0fdd6ce496f6dc64381","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","b3130ce065cb81181791cd3587636fa166a17b42","b4758da027274eebfe009fa8350ab7c0a5e928ba","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/9.rarbg.me:2860":["c642dd448d6c3dbeead5be37966b94ab2dddf47a"],"udp:\/\/9.rarbg.me:2870":["ab27456459a97546996e4be156706037219ca2be"],"udp:\/\/9.rarbg.me:2910":["56fff9bddcbd8482933200e398a051596d9671dd","bdaecf1f7c8e41581080d58542b4e1d0ce5f296c","d34d825d0665eee0b65de69760b44e626a1f1d9f"],"udp:\/\/9.rarbg.me:2930":["19991e2c9aebd64c77b3d750186f0e4a5086ab8f"],"udp:\/\/9.rarbg.me:2940":["cbccac9736578b403da2e08f13e31eb13c5362e7","b2121afe91f2187ee3986a70c05fa317ef8a386e"],"udp:\/\/9.rarbg.me:2970":["83de27b56d0e7c79c1543e1d48753d4e6e2760a3"],"udp:\/\/9.rarbg.me:2970\/announce":["10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.me:2980":["f5c107dc608b7cfe9ac4f7a961979a1ed6aec4ba"],"udp:\/\/9.rarbg.me:2980\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","e25d3e879202f18596a77b95f27d3f22890f0fcb","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","c12a878f16f24019da03158679b5d4728edbd21e","bb44bab60a69c79f8a37c45b98eef81a200d3313","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"udp:\/\/9.rarbg.me:2990":["cbd153b49ddc905ada18542b890bcbe25d9af074","6e6c09c864099e7eedfd1d6caa5d143af3bd0767"],"udp:\/\/9.rarbg.to:2710\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","eb316d3453301e9028557dd57a0ff7821006e4c5","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","51c9980fa377bc9f0773b95813809543c4d36c57","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","26cd5a9ca036366d52178144d7e7a838f0fa5cab","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","7da28d791688919132e54d4156b65d171d67cd84","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","9d4c5c71601451f0275692946444824c7a9e6997","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","98a9c45b062c9313e59b567547c6a3135e64193f","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","90cf684903f03b303887a12d73f0cc4222161cc1","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","d8deac184bdb3d6d4403b12450366fc2c9098b90","9b18d3ef61105680d4ab51895fca142f13ca3a1f","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","43f850143ad442d25b8d3805820fc439a68f9140","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","4dc948c01e54a48c13652ccea8d0addeb5d53c77"],"udp:\/\/9.rarbg.to:2720\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.to:2730":["b2121afe91f2187ee3986a70c05fa317ef8a386e"],"udp:\/\/9.rarbg.to:2730\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.to:2740\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.to:2750":["ab27456459a97546996e4be156706037219ca2be"],"udp:\/\/9.rarbg.to:2760":["cbd153b49ddc905ada18542b890bcbe25d9af074"],"udp:\/\/9.rarbg.to:2770":["57daccfbe81af51ac70ac6e84abe1323e31eac6e"],"udp:\/\/9.rarbg.to:2770\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.to:2790\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/9.rarbg.to:2800":["c642dd448d6c3dbeead5be37966b94ab2dddf47a"],"udp:\/\/9.rarbg.to:2810":["83de27b56d0e7c79c1543e1d48753d4e6e2760a3","d34d825d0665eee0b65de69760b44e626a1f1d9f"],"udp:\/\/9.rarbg.to:2820":["19991e2c9aebd64c77b3d750186f0e4a5086ab8f","867f2b761b9edfbfb34b28cff07a4daeb2ad5e7b"],"udp:\/\/9.rarbg.to:2820\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","e25d3e879202f18596a77b95f27d3f22890f0fcb","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","c12a878f16f24019da03158679b5d4728edbd21e","bb44bab60a69c79f8a37c45b98eef81a200d3313","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"udp:\/\/9.rarbg.to:2830":["0d4700f560fa6a5bb1992a311786dac67eb20336","6193a5ae06c2cbb910e0d66580ca32c940a838e8"],"udp:\/\/9.rarbg.to:2870":["bdaecf1f7c8e41581080d58542b4e1d0ce5f296c"],"udp:\/\/9.rarbg.to:2890":["88adf40aba960043a2e152ed4f22ccec6c17f945"],"udp:\/\/9.rarbg.to:2900":["cbccac9736578b403da2e08f13e31eb13c5362e7"],"udp:\/\/9.rarbg.to:2910":["56fff9bddcbd8482933200e398a051596d9671dd"],"udp:\/\/9.rarbg.to:2920\/announce":["ee5f47e32c47f15a8ebfb59c2028c855f1089937","988b2af32023de900c30d0fdd6ce496f6dc64381","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","b3130ce065cb81181791cd3587636fa166a17b42","b4758da027274eebfe009fa8350ab7c0a5e928ba","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/9.rarbg.to:2930":["6e6c09c864099e7eedfd1d6caa5d143af3bd0767"],"udp:\/\/9.rarbg.to:2950":["683b459883feb04acbc966389b127963330768a5"],"udp:\/\/9.rarbg.to:2950\/announce":["2193e38f2b6075d602093007e5325cd5e8d84a6c"],"udp:\/\/9.rarbg.to:2960\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40"],"udp:\/\/9.rarbg.to:2980":["f5c107dc608b7cfe9ac4f7a961979a1ed6aec4ba"],"udp:\/\/IPv6.leechers-paradise.org:6969\/announce":["df7128b6b611d33f3847209ed4d6f3e32fb9db04"],"udp:\/\/abufinzio.monocul.us:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/admin.videoenpoche.info:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/bclearning.top:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/bms-hosxp.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/bt.xxx-tracker.com:2710\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/bt1.archive.org:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/bt2.archive.org:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/btt.service.gongt.me:43079\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/bubu.mapfactor.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/camera.lei001.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/code2chicken.nl:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/coppersurfer.tk:6969\/announce":["328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","158804879e68a2acc29aba65abbf80f20ca058c1"],"udp:\/\/cutiegirl.ru:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/denis.stalker.upeer.me:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/discord.heihachi.pw:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/eddie4.nl:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","2193e38f2b6075d602093007e5325cd5e8d84a6c","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","158804879e68a2acc29aba65abbf80f20ca058c1"],"udp:\/\/edu.uifr.ru:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/engplus.ru:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/exodus.desync.com:6969":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"udp:\/\/exodus.desync.com:6969\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","6690b4ce480533d13e9ca27645af1f73d39ea1cd","51c9980fa377bc9f0773b95813809543c4d36c57","26cd5a9ca036366d52178144d7e7a838f0fa5cab","100232ff0ac7fa6a03668fa26f486c58942dbd1b","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","960fb2729c24982794424a5eab3bc804f00e21b9","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","9a684553a3cf3028d06e3266ebdfa5e3ee4d3144","4f3259e947604a89509b55444d37be957fe6b355","2adcec0f2555b8bfb3f187d410818e2821d5d2e4","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","474ce01e9691b6843777a5c2b9a573c721054c8c","2bd1b302fcca75c7b4c72547840c35434057e246","9b18d3ef61105680d4ab51895fca142f13ca3a1f","867dc47c1a1769258c1602448a4ee938359117ea","b3130ce065cb81181791cd3587636fa166a17b42","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","90736409749215a1ab489e03387daa5ea94dc16a","158804879e68a2acc29aba65abbf80f20ca058c1","d1f3cc8ed470c15a253ce848c3af5e9524248a3f","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","fccc4e70717e58084547c0e2589f73f590f9e5d2","4dc948c01e54a48c13652ccea8d0addeb5d53c77","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/explodie.org:6969":["bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/explodie.org:6969\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","eb316d3453301e9028557dd57a0ff7821006e4c5","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","51c9980fa377bc9f0773b95813809543c4d36c57","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","7a594d7dffc16b3ff029426c0020ded2bac95ae3","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","d8deac184bdb3d6d4403b12450366fc2c9098b90","10fe8a525d503c64e293801b03deae7490a3eb66","43f850143ad442d25b8d3805820fc439a68f9140","d90b7526ef1402944856791bcc6eed32f48e28d1","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","4dc948c01e54a48c13652ccea8d0addeb5d53c77"],"udp:\/\/fasttracker.foreverpirates.co:6969\/announce":["eb316d3453301e9028557dd57a0ff7821006e4c5","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","d8deac184bdb3d6d4403b12450366fc2c9098b90","10fe8a525d503c64e293801b03deae7490a3eb66","43f850143ad442d25b8d3805820fc439a68f9140","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403"],"udp:\/\/fe.dealclub.de:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/inferno.demonoid.is:3391\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/inferno.demonoid.pw:3391\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e","158804879e68a2acc29aba65abbf80f20ca058c1"],"udp:\/\/inferno.demonoid.pw:3418\/announce":["158804879e68a2acc29aba65abbf80f20ca058c1"],"udp:\/\/ipv4.tracker.harry.lu:80\/announce":["eb316d3453301e9028557dd57a0ff7821006e4c5","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","7a594d7dffc16b3ff029426c0020ded2bac95ae3","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","2193e38f2b6075d602093007e5325cd5e8d84a6c","4bc6124e67f9094641ea6f9183e35529ef601a40","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","d8deac184bdb3d6d4403b12450366fc2c9098b90","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","43f850143ad442d25b8d3805820fc439a68f9140","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403"],"udp:\/\/ipv6.leechers-paradise.org:6969\/announce":["bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/ipv6.tracker.harry.lu:80\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/ipv6.tracker.zerobytes.xyz:16661\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/mail.realliferpg.de:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/mgtracker.org:6969\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/movies.zsw.ca:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/mts.tvbit.co:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/open.demonii.si:1337\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66","158804879e68a2acc29aba65abbf80f20ca058c1"],"udp:\/\/open.publictracker.xyz:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/open.stealth.si:80\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","eb316d3453301e9028557dd57a0ff7821006e4c5","6690b4ce480533d13e9ca27645af1f73d39ea1cd","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","51c9980fa377bc9f0773b95813809543c4d36c57","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","26cd5a9ca036366d52178144d7e7a838f0fa5cab","100232ff0ac7fa6a03668fa26f486c58942dbd1b","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","960fb2729c24982794424a5eab3bc804f00e21b9","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","9a684553a3cf3028d06e3266ebdfa5e3ee4d3144","4f3259e947604a89509b55444d37be957fe6b355","2adcec0f2555b8bfb3f187d410818e2821d5d2e4","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","474ce01e9691b6843777a5c2b9a573c721054c8c","2bd1b302fcca75c7b4c72547840c35434057e246","d8deac184bdb3d6d4403b12450366fc2c9098b90","9b18d3ef61105680d4ab51895fca142f13ca3a1f","867dc47c1a1769258c1602448a4ee938359117ea","b3130ce065cb81181791cd3587636fa166a17b42","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","43f850143ad442d25b8d3805820fc439a68f9140","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","90736409749215a1ab489e03387daa5ea94dc16a","d1f3cc8ed470c15a253ce848c3af5e9524248a3f","4d55a35a1f310131045763ce17fafff297b96b3f","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","fccc4e70717e58084547c0e2589f73f590f9e5d2","4dc948c01e54a48c13652ccea8d0addeb5d53c77","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/open.tracker.cl:1337\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/opentor.org:2710\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/opentracker.i2p.rocks:6969\/announce":["ee5f47e32c47f15a8ebfb59c2028c855f1089937","f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","988b2af32023de900c30d0fdd6ce496f6dc64381","e543032982e95e7cf723dac37d58025a823fd20d","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","b25b4cbec458e39d436249ed4113eafc23d592a6","b3130ce065cb81181791cd3587636fa166a17b42","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/p4p.arenabg.ch:1337\/announce":["3ace983989e5f6288a9792c8cdda9ba725b6e4c8","b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/p4p.arenabg.com:1337\/announce":["4bc6124e67f9094641ea6f9183e35529ef601a40","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/peerfect.org:6969\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/pow7.com:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/public.popcorn-tracker.org:6969\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/public.publictracker.xyz:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/retracker.hotplug.ru:2710\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/retracker.lanta-net.ru:2710\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","90cf684903f03b303887a12d73f0cc4222161cc1","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","9b18d3ef61105680d4ab51895fca142f13ca3a1f","10fe8a525d503c64e293801b03deae7490a3eb66","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"udp:\/\/retracker.netbynet.ru:2710\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/shadowshq.yi.org:6969\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/torrentclub.tech:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/tr.cili001.com:8070\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tr2.ysagin.top:2710\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.0x.tf:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.aletorrenty.pl:2710\/announce":["3ace983989e5f6288a9792c8cdda9ba725b6e4c8"],"udp:\/\/tracker.altrosky.nl:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.army:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.beeimg.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.birkenwald.de:6969\/announce":["10fe8a525d503c64e293801b03deae7490a3eb66","d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.bitsearch.to:1337\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.blacksparrowmedia.net:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.breizh.pm:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.coppersurfer.tk:6969":["bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.coppersurfer.tk:6969\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","6690b4ce480533d13e9ca27645af1f73d39ea1cd","51c9980fa377bc9f0773b95813809543c4d36c57","26cd5a9ca036366d52178144d7e7a838f0fa5cab","100232ff0ac7fa6a03668fa26f486c58942dbd1b","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","4bc6124e67f9094641ea6f9183e35529ef601a40","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","e543032982e95e7cf723dac37d58025a823fd20d","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","b25b4cbec458e39d436249ed4113eafc23d592a6","9a684553a3cf3028d06e3266ebdfa5e3ee4d3144","4f3259e947604a89509b55444d37be957fe6b355","2adcec0f2555b8bfb3f187d410818e2821d5d2e4","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","2bd1b302fcca75c7b4c72547840c35434057e246","9b18d3ef61105680d4ab51895fca142f13ca3a1f","867dc47c1a1769258c1602448a4ee938359117ea","b3130ce065cb81181791cd3587636fa166a17b42","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","158804879e68a2acc29aba65abbf80f20ca058c1","d1f3cc8ed470c15a253ce848c3af5e9524248a3f","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","4dc948c01e54a48c13652ccea8d0addeb5d53c77","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.cortexlabs.ai:5008\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.cyberia.is:6969\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","eb316d3453301e9028557dd57a0ff7821006e4c5","6690b4ce480533d13e9ca27645af1f73d39ea1cd","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","51c9980fa377bc9f0773b95813809543c4d36c57","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","d8deac184bdb3d6d4403b12450366fc2c9098b90","9b18d3ef61105680d4ab51895fca142f13ca3a1f","b3130ce065cb81181791cd3587636fa166a17b42","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","43f850143ad442d25b8d3805820fc439a68f9140","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","4dc948c01e54a48c13652ccea8d0addeb5d53c77","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.dler.com:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.dler.org:6969\/announce":["eb316d3453301e9028557dd57a0ff7821006e4c5","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","ee5f47e32c47f15a8ebfb59c2028c855f1089937","f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","988b2af32023de900c30d0fdd6ce496f6dc64381","e543032982e95e7cf723dac37d58025a823fd20d","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","b25b4cbec458e39d436249ed4113eafc23d592a6","59861da05825489119c9cb4f787ede8919d1407d","d8deac184bdb3d6d4403b12450366fc2c9098b90","b3130ce065cb81181791cd3587636fa166a17b42","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","43f850143ad442d25b8d3805820fc439a68f9140","d90b7526ef1402944856791bcc6eed32f48e28d1","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.edkj.club:6969\/announce":["8055a25aae2cde28755991a109f23b791616dbd1"],"udp:\/\/tracker.fatkhoala.org:13710":["683b459883feb04acbc966389b127963330768a5","0d4700f560fa6a5bb1992a311786dac67eb20336","6e6c09c864099e7eedfd1d6caa5d143af3bd0767"],"udp:\/\/tracker.fatkhoala.org:13760":["19991e2c9aebd64c77b3d750186f0e4a5086ab8f","cbccac9736578b403da2e08f13e31eb13c5362e7"],"udp:\/\/tracker.fatkhoala.org:13770":["cbd153b49ddc905ada18542b890bcbe25d9af074"],"udp:\/\/tracker.fatkhoala.org:13790":["c642dd448d6c3dbeead5be37966b94ab2dddf47a"],"udp:\/\/tracker.haynet.io:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.ilibr.org:6969\/announce":["3ace983989e5f6288a9792c8cdda9ba725b6e4c8"],"udp:\/\/tracker.ilibr.org:80\/announce":["3ace983989e5f6288a9792c8cdda9ba725b6e4c8"],"udp:\/\/tracker.internetwarriors.net:1337\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","51c9980fa377bc9f0773b95813809543c4d36c57","26cd5a9ca036366d52178144d7e7a838f0fa5cab","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","7da28d791688919132e54d4156b65d171d67cd84","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","98a9c45b062c9313e59b567547c6a3135e64193f","8055a25aae2cde28755991a109f23b791616dbd1","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","9b18d3ef61105680d4ab51895fca142f13ca3a1f","b3130ce065cb81181791cd3587636fa166a17b42","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","bb581d8fc65e7184dbee54860df34a89291b2558","4dc948c01e54a48c13652ccea8d0addeb5d53c77","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.istole.it:80":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"udp:\/\/tracker.jordan.im:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.justseed.it:1337\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/tracker.kali.org:6969\/announce":["d7485ca7b7efc3638bf7e4ccb3e9343756c09c70"],"udp:\/\/tracker.ktxp.com:6868\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"udp:\/\/tracker.ktxp.com:7070\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"udp:\/\/tracker.leech.ie:1337\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.leechers-paradise.org:6969":["bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.leechers-paradise.org:6969\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","e543032982e95e7cf723dac37d58025a823fd20d","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","b25b4cbec458e39d436249ed4113eafc23d592a6","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","9b18d3ef61105680d4ab51895fca142f13ca3a1f","b3130ce065cb81181791cd3587636fa166a17b42","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","158804879e68a2acc29aba65abbf80f20ca058c1","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.lelux.fi:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.mg64.net:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/tracker.mgtracker.org:2710\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/tracker.moeking.eu.org:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.moeking.me:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","2193e38f2b6075d602093007e5325cd5e8d84a6c","8055a25aae2cde28755991a109f23b791616dbd1","10fe8a525d503c64e293801b03deae7490a3eb66","d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.monitorit4.me:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.moxing.party:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.nighthawk.pw:2052\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.ololosh.space:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.open-internet.nl:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","2193e38f2b6075d602093007e5325cd5e8d84a6c","988b2af32023de900c30d0fdd6ce496f6dc64381","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","b3130ce065cb81181791cd3587636fa166a17b42","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","158804879e68a2acc29aba65abbf80f20ca058c1","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.openbittorrent.com:6969\/announce":["ee5f47e32c47f15a8ebfb59c2028c855f1089937","f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","988b2af32023de900c30d0fdd6ce496f6dc64381","e543032982e95e7cf723dac37d58025a823fd20d","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","b25b4cbec458e39d436249ed4113eafc23d592a6","b3130ce065cb81181791cd3587636fa166a17b42","b4758da027274eebfe009fa8350ab7c0a5e928ba","d90b7526ef1402944856791bcc6eed32f48e28d1","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.openbittorrent.com:80":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"udp:\/\/tracker.openbittorrent.com:80\/announce":["328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","960fb2729c24982794424a5eab3bc804f00e21b9","d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.opentrackr.org:1337":["f5b0d9a7f9ff64e188b1bdd057895a4567e8502e","e543032982e95e7cf723dac37d58025a823fd20d","b25b4cbec458e39d436249ed4113eafc23d592a6","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.opentrackr.org:1337\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","eb316d3453301e9028557dd57a0ff7821006e4c5","6690b4ce480533d13e9ca27645af1f73d39ea1cd","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","51c9980fa377bc9f0773b95813809543c4d36c57","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","26cd5a9ca036366d52178144d7e7a838f0fa5cab","100232ff0ac7fa6a03668fa26f486c58942dbd1b","df7128b6b611d33f3847209ed4d6f3e32fb9db04","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","ee5f47e32c47f15a8ebfb59c2028c855f1089937","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","4bc6124e67f9094641ea6f9183e35529ef601a40","988b2af32023de900c30d0fdd6ce496f6dc64381","9d4c5c71601451f0275692946444824c7a9e6997","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","f2b198d4d3bf0cd11324735dcb7d229dd3838cc3","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","960fb2729c24982794424a5eab3bc804f00e21b9","5c5a20e59dd948d1bc1b92dfd125b8212987bfe8","90cf684903f03b303887a12d73f0cc4222161cc1","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","9a684553a3cf3028d06e3266ebdfa5e3ee4d3144","4f3259e947604a89509b55444d37be957fe6b355","2adcec0f2555b8bfb3f187d410818e2821d5d2e4","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","474ce01e9691b6843777a5c2b9a573c721054c8c","2bd1b302fcca75c7b4c72547840c35434057e246","d8deac184bdb3d6d4403b12450366fc2c9098b90","9b18d3ef61105680d4ab51895fca142f13ca3a1f","867dc47c1a1769258c1602448a4ee938359117ea","b3130ce065cb81181791cd3587636fa166a17b42","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","b4758da027274eebfe009fa8350ab7c0a5e928ba","43f850143ad442d25b8d3805820fc439a68f9140","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","90736409749215a1ab489e03387daa5ea94dc16a","158804879e68a2acc29aba65abbf80f20ca058c1","d1f3cc8ed470c15a253ce848c3af5e9524248a3f","4d55a35a1f310131045763ce17fafff297b96b3f","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","fccc4e70717e58084547c0e2589f73f590f9e5d2","4dc948c01e54a48c13652ccea8d0addeb5d53c77","9d1191deb50367c9df3a908f0f5ff5f2894d1bb4"],"udp:\/\/tracker.pirateparty.gr:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/tracker.port443.xyz:6969\/announce":["7a594d7dffc16b3ff029426c0020ded2bac95ae3","2193e38f2b6075d602093007e5325cd5e8d84a6c","10fe8a525d503c64e293801b03deae7490a3eb66"],"udp:\/\/tracker.prq.to:80\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"udp:\/\/tracker.publicbt.com:80":["100232ff0ac7fa6a03668fa26f486c58942dbd1b"],"udp:\/\/tracker.publicbt.com:80\/announce":["960fb2729c24982794424a5eab3bc804f00e21b9"],"udp:\/\/tracker.shkinev.me:6969\/announce":["8055a25aae2cde28755991a109f23b791616dbd1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.sktorrent.net:6969\/announce":["328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2"],"udp:\/\/tracker.slowcheetah.org:14740":["0d4700f560fa6a5bb1992a311786dac67eb20336","d34d825d0665eee0b65de69760b44e626a1f1d9f"],"udp:\/\/tracker.slowcheetah.org:14770":["88adf40aba960043a2e152ed4f22ccec6c17f945"],"udp:\/\/tracker.slowcheetah.org:14780":["83de27b56d0e7c79c1543e1d48753d4e6e2760a3"],"udp:\/\/tracker.tallpenguin.org:15720\/announce":["2193e38f2b6075d602093007e5325cd5e8d84a6c"],"udp:\/\/tracker.tallpenguin.org:15730":["bdaecf1f7c8e41581080d58542b4e1d0ce5f296c","c642dd448d6c3dbeead5be37966b94ab2dddf47a"],"udp:\/\/tracker.tallpenguin.org:15750":["ab27456459a97546996e4be156706037219ca2be"],"udp:\/\/tracker.tallpenguin.org:15770":["19991e2c9aebd64c77b3d750186f0e4a5086ab8f"],"udp:\/\/tracker.tallpenguin.org:15800":["cbd153b49ddc905ada18542b890bcbe25d9af074","cbccac9736578b403da2e08f13e31eb13c5362e7","b2121afe91f2187ee3986a70c05fa317ef8a386e"],"udp:\/\/tracker.theoks.net:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.thinelephant.org:12710":["683b459883feb04acbc966389b127963330768a5","bdaecf1f7c8e41581080d58542b4e1d0ce5f296c","88adf40aba960043a2e152ed4f22ccec6c17f945"],"udp:\/\/tracker.thinelephant.org:12720":["83de27b56d0e7c79c1543e1d48753d4e6e2760a3"],"udp:\/\/tracker.thinelephant.org:12740\/announce":["2193e38f2b6075d602093007e5325cd5e8d84a6c"],"udp:\/\/tracker.thinelephant.org:12770":["6e6c09c864099e7eedfd1d6caa5d143af3bd0767","d34d825d0665eee0b65de69760b44e626a1f1d9f"],"udp:\/\/tracker.thinelephant.org:12790":["ab27456459a97546996e4be156706037219ca2be"],"udp:\/\/tracker.thinelephant.org:12800":["b2121afe91f2187ee3986a70c05fa317ef8a386e"],"udp:\/\/tracker.tiny-vps.com:6969\/announce":["4fbbba26cb098bdc90e26f106f4fb143c1cae667","eb316d3453301e9028557dd57a0ff7821006e4c5","6690b4ce480533d13e9ca27645af1f73d39ea1cd","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","51c9980fa377bc9f0773b95813809543c4d36c57","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","90cf684903f03b303887a12d73f0cc4222161cc1","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","d8deac184bdb3d6d4403b12450366fc2c9098b90","9b18d3ef61105680d4ab51895fca142f13ca3a1f","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","43f850143ad442d25b8d3805820fc439a68f9140","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","4dc948c01e54a48c13652ccea8d0addeb5d53c77"],"udp:\/\/tracker.torrent.eu.org:451\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","7a594d7dffc16b3ff029426c0020ded2bac95ae3","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","0f9f26e00a44dff645fd9f88f151a44d5d8341b0","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","8055a25aae2cde28755991a109f23b791616dbd1","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","960fb2729c24982794424a5eab3bc804f00e21b9","90cf684903f03b303887a12d73f0cc4222161cc1","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","474ce01e9691b6843777a5c2b9a573c721054c8c","9b18d3ef61105680d4ab51895fca142f13ca3a1f","10fe8a525d503c64e293801b03deae7490a3eb66","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","90736409749215a1ab489e03387daa5ea94dc16a","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa","fccc4e70717e58084547c0e2589f73f590f9e5d2"],"udp:\/\/tracker.uw0.xyz:6969\/announce":["eb316d3453301e9028557dd57a0ff7821006e4c5","b06391a00d2e90676b6ee32a10e8fd17ce53bc96","f0a49342a82c483bbb22a1aa0a1e30a40644ebc0","c8a7135a3b8c2594979bdec31e7c6d04ba40caa2","8055a25aae2cde28755991a109f23b791616dbd1","fbe357edbf0f1c8f2a0f47577f4f162f752d42c4","0b1ffb0ccd2971afe14c3b8bb98f80c62fb8e9f3","59861da05825489119c9cb4f787ede8919d1407d","d8deac184bdb3d6d4403b12450366fc2c9098b90","10fe8a525d503c64e293801b03deae7490a3eb66","43f850143ad442d25b8d3805820fc439a68f9140","d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558","158804879e68a2acc29aba65abbf80f20ca058c1","84b7d8c721982bf3bc65c1533d963e2210ced73b","e6dd7a114f59ebea9ef899d48f8d24ea0d13fdeb","308d8c35dc0f6bdf52abe90ead5f5692c670e403"],"udp:\/\/tracker.v6speed.org:6969\/announce":["8055a25aae2cde28755991a109f23b791616dbd1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker.vanitycore.co:6969\/announce":["b9ff4e7ce60da918eb18d06af1fde0050d78e96e"],"udp:\/\/tracker.xn--vzyr4p.top:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker.zemoj.com:6969\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0"],"udp:\/\/tracker.zer0day.to:1337\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","e25d3e879202f18596a77b95f27d3f22890f0fcb","7a594d7dffc16b3ff029426c0020ded2bac95ae3","328d1afe5d4daab3e3e42412ffef7a9cf4f4f6b2","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","c12a878f16f24019da03158679b5d4728edbd21e","2193e38f2b6075d602093007e5325cd5e8d84a6c","bb44bab60a69c79f8a37c45b98eef81a200d3313","3ace983989e5f6288a9792c8cdda9ba725b6e4c8","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","b9ff4e7ce60da918eb18d06af1fde0050d78e96e","10fe8a525d503c64e293801b03deae7490a3eb66","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","ea2200c5e019e09f2e776a34a2963512f35348c1","bb581d8fc65e7184dbee54860df34a89291b2558","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","158804879e68a2acc29aba65abbf80f20ca058c1","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"udp:\/\/tracker.zerobytes.xyz:1337\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","8055a25aae2cde28755991a109f23b791616dbd1","d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker0.ufibox.com:6969\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","8055a25aae2cde28755991a109f23b791616dbd1","d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/tracker1.bt.moack.co.kr:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker2.dler.com:80\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/tracker2.dler.org:80\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0"],"udp:\/\/tracker3.itzmx.com:6961\/announce":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","c12a878f16f24019da03158679b5d4728edbd21e","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","90cf684903f03b303887a12d73f0cc4222161cc1","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","9b18d3ef61105680d4ab51895fca142f13ca3a1f","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"],"udp:\/\/tracker6.lelux.fi:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/u.wwwww.wtf:1\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","8055a25aae2cde28755991a109f23b791616dbd1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/udp-tracker.shittyurl.org:6969\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/udp.tracker.coalition.space:1337\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/valakas.rollo.dnsabr.com:2710\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","8055a25aae2cde28755991a109f23b791616dbd1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/vibe.community:6969\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","8055a25aae2cde28755991a109f23b791616dbd1","d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/vibe.sleepyinternetfun.xyz:1738\/announce":["d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/wassermann.online:6969\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","d90b7526ef1402944856791bcc6eed32f48e28d1"],"udp:\/\/www.torrent.eu.org:451\/announce":["0f9f26e00a44dff645fd9f88f151a44d5d8341b0","8055a25aae2cde28755991a109f23b791616dbd1","d90b7526ef1402944856791bcc6eed32f48e28d1","bb581d8fc65e7184dbee54860df34a89291b2558"],"udp:\/\/zephir.monocul.us:6969\/announce":["bb581d8fc65e7184dbee54860df34a89291b2558"],"wss:\/\/tracker.openwebtorrent.com":["6690b4ce480533d13e9ca27645af1f73d39ea1cd","26cd5a9ca036366d52178144d7e7a838f0fa5cab","e25d3e879202f18596a77b95f27d3f22890f0fcb","5a928d92783b563532ac33f209f7135153c93c3c","0c8b77d8492fa32278dade4a0e5b2b1637a63ade","7da28d791688919132e54d4156b65d171d67cd84","c12a878f16f24019da03158679b5d4728edbd21e","459479508451166b4329072e25a4126c09734e0d","bb44bab60a69c79f8a37c45b98eef81a200d3313","9d4c5c71601451f0275692946444824c7a9e6997","98a9c45b062c9313e59b567547c6a3135e64193f","45c0b452736204be49660e2ade9bd933fcc1263e","202187b70e35b9bc491b9b93ad71c84720efe276","db8fa9a79406ec3da486df27aabf442e15c09d3b","bc6867cd4bc4da96b8b5c647155e4703d4fbe83e","90cf684903f03b303887a12d73f0cc4222161cc1","4f3259e947604a89509b55444d37be957fe6b355","c1d3a65fe68bcdf5cf8ac12042fa38d5fedec727","9b18d3ef61105680d4ab51895fca142f13ca3a1f","35e4e2e1cc06f2e3e257a8ddb1eb7500aad93f70","d90b7526ef1402944856791bcc6eed32f48e28d1","adf50fd253fe64599daf8a3d5eb4f75399a38aaf","ea2200c5e019e09f2e776a34a2963512f35348c1","58a47dd2fb5bdf0f4ee5d40cb9d2ea72f6dbebfa","4d55a35a1f310131045763ce17fafff297b96b3f","0ec6ee40a18ffdf23ba3d65959b08a805cd4b2fa"]},"version":"v4.3.5"}}} \ No newline at end of file diff --git a/stats/images.json b/stats/images.json new file mode 100644 index 0000000..d256c3e --- /dev/null +++ b/stats/images.json @@ -0,0 +1 @@ +[["Media","","","","","","","","",""],["Torrents","","","","","","","","",""]] \ No newline at end of file diff --git a/stats/library.json b/stats/library.json new file mode 100644 index 0000000..6fdac50 --- /dev/null +++ b/stats/library.json @@ -0,0 +1 @@ +{"0006b41d02b8668fce5b5f3555fb2210":{"Name":"The Chronicles of Narnia: Prince Caspian","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0006b41d02b8668fce5b5f3555fb2210","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-05-14T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":89986564096,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2454"},"VideoType":"VideoFile","ImageTags":{"Primary":"97aa4f69df48f9e2711d99eec3dc5234","Art":"88153b6058b5a7e16fe56a16b390f6ce","Banner":"eb267234cb93f3a62944d0c73611a8c3","Disc":"1c06a6dd75e6b9b313bb958c59094926","Logo":"58d462f79e23560a18c1d7a40cb76985","Thumb":"bcf4dbb5de856af48a92c5efed1e4d59"},"BackdropImageTags":["e7690d45ea332eeeabe6e0319d00781b"],"ImageBlurHashes":{"Backdrop":{"e7690d45ea332eeeabe6e0319d00781b":"WXHKh0bagM%KxXxt~Vs:%1njR*ofo}soX8RlM|WCt7s.R+S2s,NG"},"Primary":{"97aa4f69df48f9e2711d99eec3dc5234":"dND*|G-T9^xts9$hsmNb0hsm$$Iq?FoyNdoe=GjaNJoe"},"Art":{"88153b6058b5a7e16fe56a16b390f6ce":"NCFOMv4o02%KNt$}=XM}%2slWYxt1JIrcDrrnjxt"},"Banner":{"eb267234cb93f3a62944d0c73611a8c3":"H^NvP6E2R*s.aKt5R-xDt7~ARjR*oca$tQbEV[kA"},"Disc":{"1c06a6dd75e6b9b313bb958c59094926":"eSJaQ9RkyYkC%N-:oyr@n%NH_4s:.8NHMxWBoyRlWBs:%#WVRPofM{"},"Logo":{"58d462f79e23560a18c1d7a40cb76985":"OXI;SBfkNGV?Ion$IUDNf5t7s:xusmx].TayjZofRjo2Rj"},"Thumb":{"bcf4dbb5de856af48a92c5efed1e4d59":"NQHKUqRkTItQs+xa~ojZ-onjRjs:kqsoW;RkIVWC"}},"LocationType":"FileSystem","MediaType":"Video"},"001c5c278acc6f26e282606c44a2a477":{"Name":"Fantastic Beasts and Where to Find Them","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"001c5c278acc6f26e282606c44a2a477","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-11-15T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":79723626496,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"259316"},"VideoType":"VideoFile","ImageTags":{"Primary":"b69c75e17b368bcf88b4ff44064c1af8","Art":"1729b22ca326bb5c657a2bd91c057ee1","Banner":"55a5da7476a45496c4905aec4df5098c","Disc":"3fe8126ec0d81f8bdeffdb0ef8d9997d","Logo":"73f6c4ddcbe2dbc763e7ec370cd54e4a","Thumb":"342445ccc9031f0db73d27e5152807b0"},"BackdropImageTags":["5ba0ad0e34592f233ea86adc9fa571df"],"ImageBlurHashes":{"Backdrop":{"5ba0ad0e34592f233ea86adc9fa571df":"WcGuEnxZ0OkrNG%1~oNKD,%LadxZ%2RnaftPR*V]xER-R,owoeaL"},"Primary":{"b69c75e17b368bcf88b4ff44064c1af8":"deLq5;t7Rj-;~VayWBxu?aWBIoWq_2oyt6WCR-oz-oof"},"Art":{"1729b22ca326bb5c657a2bd91c057ee1":"NODSm}9Y.8I9tlMx~qM|-pIUt7RjtR%MoJkCRjkC"},"Banner":{"55a5da7476a45496c4905aec4df5098c":"HlEyPb~p%LM{D%V@xtxaoe_2?HxtV@RPaeoeoJae"},"Disc":{"3fe8126ec0d81f8bdeffdb0ef8d9997d":"eUL|icn3K8S~-;_MIWIV%0n~%ho#-=oIM{IAt7S1j?s;x^S2V@s:V?"},"Logo":{"73f6c4ddcbe2dbc763e7ec370cd54e4a":"OtL4pR%M~qRj?cWB%MxuoekCj[WBWBay%MofWAWBRjWCay"},"Thumb":{"342445ccc9031f0db73d27e5152807b0":"NVI50n~VE1%Ls.%Lxa%LxtRjV@t6Ri-.xtD*M|WB"}},"LocationType":"FileSystem","MediaType":"Video"},"0066bbc1cc70123f95f727b6239177d2":{"Name":"Mission: Impossible II","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0066bbc1cc70123f95f727b6239177d2","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2000-05-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":74157867008,"ProductionYear":2000,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"955"},"VideoType":"VideoFile","ImageTags":{"Primary":"122ae76860e0419bb0f03c2b37fcacb7"},"BackdropImageTags":["cfbe341b6040befcaf210024185c186e"],"ImageBlurHashes":{"Backdrop":{"cfbe341b6040befcaf210024185c186e":"W$H9~r0$%0xEENxZw^baafbHR+bGjFt6WCWVWWW:smbHo1WVS3j@"},"Primary":{"122ae76860e0419bb0f03c2b37fcacb7":"d,Mi$e_Nx^t7ItaKadM{RiRPR+flxCNHs:ofR:s:s.NG"}},"LocationType":"FileSystem","MediaType":"Video"},"006fa8d3a9037a1712935e305d208b6a":{"Name":"Bohemian Rhapsody","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"006fa8d3a9037a1712935e305d208b6a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-10-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8,"RunTimeTicks":80771203072,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"424694"},"VideoType":"VideoFile","ImageTags":{"Primary":"2a429faec7b9e5f2530408a0f842584a"},"BackdropImageTags":["b9958144e9fe7bd32679f84b61cbca1b"],"ImageBlurHashes":{"Backdrop":{"b9958144e9fe7bd32679f84b61cbca1b":"WA6uPDZeRN%jR2S7%3xaVXoIWBV@Z}xGs9V?p0nNs=xCs;j]ogVq"},"Primary":{"2a429faec7b9e5f2530408a0f842584a":"dmM;]{-EkE-VIORlRkRm0loabXR+?Wogxat6RSRjRjV^"}},"LocationType":"FileSystem","MediaType":"Video"},"00d72d5dc796d96eaeb8d6813d6bf5ec":{"Name":"iBoy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"00d72d5dc796d96eaeb8d6813d6bf5ec","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-01-26T23:00:00.0000000Z","ChannelId":null,"CommunityRating":6,"RunTimeTicks":54082879488,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"414190"},"VideoType":"VideoFile","ImageTags":{"Primary":"625fe90780eb9d9891b516276a1f6d41","Logo":"821545764a4f974d48097b6a8b3cc23d","Thumb":"f179fafaf2b07b68ad1660aa822cc243"},"BackdropImageTags":["7407443794ce8090c66e693911b40da7"],"ImageBlurHashes":{"Backdrop":{"7407443794ce8090c66e693911b40da7":"WRB|HUxuD%ogIUWB%Mj[WAogWBay00Rj%Mj[xuj[IUj[ofRjt7WB"},"Primary":{"625fe90780eb9d9891b516276a1f6d41":"dNEV+@-A5ROFELSzMdRj16R5w[kA}Qx]NIs,NGNdt8s:"},"Logo":{"821545764a4f974d48097b6a8b3cc23d":"OSJb25-;00WB4nt7IUxuD%RjRjRjoft7M{RjWBfQxuRjxu"},"Thumb":{"f179fafaf2b07b68ad1660aa822cc243":"Nf9@uXx{ITnKsiI@%jo%RPaIoFW.IWRlj^bHoat3"}},"LocationType":"FileSystem","MediaType":"Video"},"0182cc0276d2b88939f64e9a6e9089cd":{"Name":"Return of the Jedi","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0182cc0276d2b88939f64e9a6e9089cd","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1983-05-24T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":80873291776,"ProductionYear":1983,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1892"},"VideoType":"VideoFile","ImageTags":{"Primary":"ca262418394885df0c49b75feae28dad"},"BackdropImageTags":["43fb12a60df6040b2bd14ace12cd4a66"],"ImageBlurHashes":{"Backdrop":{"43fb12a60df6040b2bd14ace12cd4a66":"WGEC960l9sR5WW^+56=:IVM_s8n#ItRk%KRit7I]^+EMs:sBI]-p"},"Primary":{"ca262418394885df0c49b75feae28dad":"dSE{FX%10Ka$01R+-;ogELX9n$WA?Fn$a_t7D%n#%2Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"01cc5b278aade0032f4d9b66745d7a29":{"Name":"The Secret World of Arrietty","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"01cc5b278aade0032f4d9b66745d7a29","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-07-15T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":57007898624,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"51739"},"VideoType":"VideoFile","ImageTags":{"Primary":"d6dc0c72e1d9723978882273740ead85","Art":"62312acd7da9f99a572d66912eeda1b8","Banner":"6ece149d17c245f86cd7ff75d0658749","Disc":"aebb5f4ec6c43fd15688d509ce745a37","Logo":"f4fa7422b8968b08078b9421b193f157","Thumb":"bdd241744e31c8761c5c0c5fe374f1e8"},"BackdropImageTags":["3fcc3a984d404f0e175d41ca8c8001e1"],"ImageBlurHashes":{"Backdrop":{"3fcc3a984d404f0e175d41ca8c8001e1":"WIH-r7Q:EI.7^7;2^{}W,uV?bYWs^bwf-AS1EMtP~T,oRitlNZIp"},"Primary":{"d6dc0c72e1d9723978882273740ead85":"dOB:vy%M9GaykDt7xbWX0MRj-:ozemM|IqocafRjRlRk"},"Art":{"62312acd7da9f99a572d66912eeda1b8":"NHCYwG0#OD=xIoNwE0R5i{b^xZRjI;oMxtM|S3t6"},"Banner":{"6ece149d17c245f86cd7ff75d0658749":"HTGbV1Tv9cs=nQRPNstQxY~ox@NKRVV@oct7NGV["},"Disc":{"aebb5f4ec6c43fd15688d509ce745a37":"eRO4kUSs?1VznXM^t5xvM#odwUxvt8MyWmRiafogj@WB#eInbVt8W*"},"Logo":{"f4fa7422b8968b08078b9421b193f157":"OdI=ooRjt6of?Hay%LIURjt7azRjoff6~pRjM{oeofofWC"},"Thumb":{"bdd241744e31c8761c5c0c5fe374f1e8":"NCE3^GHB%M|P7X];*3JyD*aeScIVT8j.j1kDt7og"}},"LocationType":"FileSystem","MediaType":"Video"},"027d8e5faebfc786e3da1a26e6922e4e":{"Name":"Tron","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"027d8e5faebfc786e3da1a26e6922e4e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1982-07-08T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":57473249280,"ProductionYear":1982,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"97"},"VideoType":"VideoFile","ImageTags":{"Primary":"c4eaebb3bc1b83411ad883a2648d411e"},"BackdropImageTags":["01e19811bc51c52050e3ffdc791058df"],"ImageBlurHashes":{"Backdrop":{"01e19811bc51c52050e3ffdc791058df":"WSAT52CARj+YMvNGs+obI.#7RhR$K4s;spNaw|bcOGkE$PJ6ay$Q"},"Primary":{"c4eaebb3bc1b83411ad883a2648d411e":"dWA,tuxu9DRPE2WDxVjXD#WAx]of-=ogM{ayNNWXoHj?"}},"LocationType":"FileSystem","MediaType":"Video"},"029976259ff35b1593e06dc9143585e6":{"Name":"Wolfwalkers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"029976259ff35b1593e06dc9143585e6","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2020-10-25T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.5,"RunTimeTicks":61522030592,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"441130"},"VideoType":"VideoFile","ImageTags":{"Primary":"149dd6f8183c6041c12df6cca8e8935a"},"BackdropImageTags":["2dbf5b75bfae5d5237aed0cfbf8064fc"],"ImageBlurHashes":{"Backdrop":{"2dbf5b75bfae5d5237aed0cfbf8064fc":"W9E{dgu006~BBN^P4%w1~R%fDktj%vb[Vb-B58Ef^$R+NH%KOSSe"},"Primary":{"149dd6f8183c6041c12df6cca8e8935a":"daM?kz-n-:-o-Qe.WXs.~oxaMyf6%ft7xDs:M~bHocWC"}},"LocationType":"FileSystem","MediaType":"Video"},"02f6901fae36812fd981b5430a07c449":{"Name":"Summer Wars","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"02f6901fae36812fd981b5430a07c449","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-07-31T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":68531798016,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"28874"},"VideoType":"VideoFile","ImageTags":{"Primary":"ca2cd004227d961911f81bf681073003","Art":"e8a4104fcd21d5d516c250535ea2f4ab","Banner":"4c6a8cfe8115fd7aa9fa59bae4719516","Disc":"efbfc7bc05a8ad34d301311a3b17134b","Logo":"902613725905f01b2974389104bf1539","Thumb":"e3c2641ec584bba390f03a553d817935"},"BackdropImageTags":["03cdd24a46d38f2ff17d8f3769bec3b4"],"ImageBlurHashes":{"Backdrop":{"03cdd24a46d38f2ff17d8f3769bec3b4":"WuOMsp-o.8%go~tR_NxuRkRQt3t6x^t7RQV@j?S1?ajZoekDWYWB"},"Primary":{"ca2cd004227d961911f81bf681073003":"dqIFh^%ME1kWtpbJs;ogESRkWEa~S%WBRjWVRXoLaeWC"},"Art":{"e8a4104fcd21d5d516c250535ea2f4ab":"NF9%#U0z-As;E2xaMHMwkX%2M{t7El^,D%oKogRj"},"Banner":{"4c6a8cfe8115fd7aa9fa59bae4719516":"H|Oy^kZ~x]?aoyxvfl%Lxu~qV@of%LW;t7oJxat8"},"Disc":{"efbfc7bc05a8ad34d301311a3b17134b":"eNK1]*-:o$IVs?-=ofxZWBInoiRj~qxuM{9rRja}of%3tUjsxVWBM{"},"Logo":{"902613725905f01b2974389104bf1539":"OfRpOUofj?ofj@ofj@xufQfQfQfQfQfQ~Aj[a#j@azj[az"},"Thumb":{"e3c2641ec584bba390f03a553d817935":"NjP?,cIUt7~q-;?a_3xut7WXWBaex[R%V@WBWXoz"}},"LocationType":"FileSystem","MediaType":"Video"},"05af6cacb6bb1b534cc1a65185b9f0c0":{"Name":"Star Wars","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"05af6cacb6bb1b534cc1a65185b9f0c0","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1977-05-24T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":74846863360,"ProductionYear":1977,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11"},"VideoType":"VideoFile","ImageTags":{"Primary":"ef95c913bfd4e55a58737a2c88cc1e1d"},"BackdropImageTags":["bf7ce423ba5de6c45e5139c5de55384f"],"ImageBlurHashes":{"Backdrop":{"bf7ce423ba5de6c45e5139c5de55384f":"WRD+ojS,I^~DM{InI@WA%2f+Inn~W?jEM{ShnhWX%3WCNFxuj[bI"},"Primary":{"ef95c913bfd4e55a58737a2c88cc1e1d":"dQB|1=xu4.so0KNG-;tRxus.V?NGt7ofRjRjD%R*%Mt7"}},"LocationType":"FileSystem","MediaType":"Video"},"05be3be25b59e0778af43303fbcf6fc5":{"Name":"The Animatrix","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"05be3be25b59e0778af43303fbcf6fc5","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-09-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":60506882048,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"55931"},"VideoType":"VideoFile","ImageTags":{"Primary":"2c0f0bafbbd4a309838f8ffde1851e39","Art":"b9b4e56a53d1fad9bf2c72f5cac22f13","Banner":"414a260c2015db3c7f3f248b3b8ee05d","Disc":"87797effd82ce69ded24ca6dc3c3e825","Logo":"2960bd80b6ab8aaec723690f0ce42237","Thumb":"850e437d016dbf39c1871604d16a3410"},"BackdropImageTags":["3d2581f4ebbd1d07f271da9dbdf48f72"],"ImageBlurHashes":{"Backdrop":{"3d2581f4ebbd1d07f271da9dbdf48f72":"WZB:j8xt0LE1?F%L%Lt6M{M|t6xtE2WB%2t6NGR%obWCWEt6j?NG"},"Primary":{"2c0f0bafbbd4a309838f8ffde1851e39":"dMBDyMn,0dn#I;nixZNdI^X8xBw]IqN@nh$*NEoes=Sg"},"Art":{"b9b4e56a53d1fad9bf2c72f5cac22f13":"NG9aB4f60gkC^OoK%1ayNHkB%1ayDQj[flWVyBf6"},"Banner":{"414a260c2015db3c7f3f248b3b8ee05d":"HD7B=U%f8{IUVtIUof%MM{?]xuIBRjV[RQoMxuRj"},"Disc":{"87797effd82ce69ded24ca6dc3c3e825":"eaENFSSc~Xof-;o{bYj@jHf8~XWB?bjIV@n7aMj[kBbF-pi~WBX4In"},"Logo":{"2960bd80b6ab8aaec723690f0ce42237":"OvQJ_pj[t7ofR%ofWVt7j[s:fQWUj[j[~Ej[WBj[ofjuof"},"Thumb":{"850e437d016dbf39c1871604d16a3410":"NYBz8wxt02D*-.%M%2s:M{M|t6xtIpWC%1t6NGRj"}},"LocationType":"FileSystem","MediaType":"Video"},"05c6cc88cd1b339b9c29680c321323f7":{"Name":"The Matrix Revisited","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"05c6cc88cd1b339b9c29680c321323f7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2001-11-18T23:00:00.0000000Z","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":73896837120,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"14543"},"VideoType":"VideoFile","ImageTags":{"Primary":"49077e928b6e90aa0d13c65a86955ba0"},"BackdropImageTags":["2ab1bbff5f921bc241a3b984b1ada2ea"],"ImageBlurHashes":{"Backdrop":{"2ab1bbff5f921bc241a3b984b1ada2ea":"WA9+.Ql48_kUx]pGKoRktln-tkTC-=MfRQkVR7a3o~t8pEWUVukT"},"Primary":{"49077e928b6e90aa0d13c65a86955ba0":"dHBpqoxtT3N#-@xuNZo#0KNFR2$yStIUn4RPiy%4NbIo"}},"LocationType":"FileSystem","MediaType":"Video"},"062bf4e34b8f644ad04df66d774f8762":{"Name":"Stargate: The Ark of Truth","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"062bf4e34b8f644ad04df66d774f8762","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-03-10T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":61116162048,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"13001"},"VideoType":"VideoFile","ImageTags":{"Primary":"3f2c59f17ed549f11f51f07f3ce1fe8b","Banner":"21a27534b65ed35ef13635e567ba1fbd","Disc":"5005f2a13f0345118c36952f8490ee6d","Logo":"9c3e6ed8c69c249da778ea6ac4405ed1","Thumb":"64be33ae1e658bfff78926b7fcfc45df"},"BackdropImageTags":["ab213cb4c097ddf6bf89f3e755d0d2f7"],"ImageBlurHashes":{"Backdrop":{"ab213cb4c097ddf6bf89f3e755d0d2f7":"WPE.a:-:4o9GS6%M~Us:MxV@t8ozxtR+oIxZs:Rj-:s:M{Rjt7t6"},"Primary":{"3f2c59f17ed549f11f51f07f3ce1fe8b":"dME_y-xZ9Zt6^%RkV@%K^dWCNLkC~8xZae%K%LxaM{t6"},"Banner":{"21a27534b65ed35ef13635e567ba1fbd":"HYELsD9b%1--0N^%D+oz-n~9NLxYt5IXxqIroet6"},"Disc":{"5005f2a13f0345118c36952f8490ee6d":"eKH_e-%MABWBE+~UxuE3WUad0eawEMM|V@9ZM{s,Rkog0#M|-n%L-n"},"Logo":{"9c3e6ed8c69c249da778ea6ac4405ed1":"OmKK$mt7~qay~qt7-;xut7ayWAWBWBfQt7fQj[j[WBfkWB"},"Thumb":{"64be33ae1e658bfff78926b7fcfc45df":"NIHK;D-p.T%3lUtm={o0JUoMt7oIs:t6M{RjRPa|"}},"LocationType":"FileSystem","MediaType":"Video"},"0791343ac69f99c7890e6e46a47bbc75":{"Name":"The Witches","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0791343ac69f99c7890e6e46a47bbc75","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1990-05-24T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":54926958592,"ProductionYear":1990,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10166"},"VideoType":"VideoFile","ImageTags":{"Primary":"744c3f1c0aaebedb09a0a836856007c2"},"BackdropImageTags":["8ab8df3982047af5d406c0810b67a2f6"],"ImageBlurHashes":{"Backdrop":{"8ab8df3982047af5d406c0810b67a2f6":"WaG@Y]-qx]T0ozxZ}?NJxtkVSOt6r?RkockBR+s:xZR+Naafafof"},"Primary":{"744c3f1c0aaebedb09a0a836856007c2":"daH-=Rx]~q-qxbWqt7n+?vWoWBxat7ozaeof?bs:V@bZ"}},"LocationType":"FileSystem","MediaType":"Video"},"08131d39a4b11d6a5055692621ab443b":{"Name":"X-Men: Days of Future Past","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"08131d39a4b11d6a5055692621ab443b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-05-14T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":89257598976,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"127585"},"VideoType":"VideoFile","ImageTags":{"Primary":"991da330685b3a957d3bb0198f90ab9a","Art":"0bb5be675b86b9ee87d3f4f64bb5215b","Banner":"4148822416eb312c80e099c34b927239","Disc":"0da687425dbfa10ee875e5349527b59c","Logo":"c7912bac9d92469f6242249c99ba79a8","Thumb":"3bfa6aab3baa8f1d78ac6afbd8876321"},"BackdropImageTags":["54fb733eb13dbc6565602718d355b8cc"],"ImageBlurHashes":{"Backdrop":{"54fb733eb13dbc6565602718d355b8cc":"WI9HCTIqXAtTo#kX.AjJS6tSohbII[ngadkCRjt7RhRNnfRhadoe"},"Primary":{"991da330685b3a957d3bb0198f90ab9a":"daH1#h},^$-m?F-6xYxW9GRkIpNJ$*n$a~X9E4R.jbsn"},"Art":{"0bb5be675b86b9ee87d3f4f64bb5215b":"NeG+RD~V%g%3yEslyDRjbvwcSgnhxYRPR+VsR*WE"},"Banner":{"4148822416eb312c80e099c34b927239":"H$H_D0=]IVnixuR-jFkCjb~U-SRknhogS5n~ofWF"},"Disc":{"0da687425dbfa10ee875e5349527b59c":"eSI}@bWB?cs.%gkXj@oIWBV@x_WB~pWCs+${j]Rnj[kD_3j@M{ofD*"},"Logo":{"c7912bac9d92469f6242249c99ba79a8":"O@P6{noej[ofj[fPoft7jsazj[j[ayj[~qa#ayj[ayj[WB"},"Thumb":{"3bfa6aab3baa8f1d78ac6afbd8876321":"NbFP4-~9xZ%Kw[xC?H$KsotPn$niRjnMnjkDWCM}"}},"LocationType":"FileSystem","MediaType":"Video"},"089052edab353a69c52faf9ade0c5732":{"Name":"Mad Max 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"089052edab353a69c52faf9ade0c5732","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1981-12-23T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":57301741568,"ProductionYear":1981,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8810"},"VideoType":"VideoFile","ImageTags":{"Primary":"c7de64394f7b103136797a1bd84cd7bf"},"BackdropImageTags":["1fa3df608f02fbf319e2e9c4aa8221d6"],"ImageBlurHashes":{"Backdrop":{"1fa3df608f02fbf319e2e9c4aa8221d6":"WuJ8hVfhtRVrNHo~?woekCsSNHtRI]fmoLWUWBogXAt8t7WBRjj]"},"Primary":{"c7de64394f7b103136797a1bd84cd7bf":"d9CFxC~B0J%2}l={%M%24Twc-os8%4$jsjxZNExF^k-V"}},"LocationType":"FileSystem","MediaType":"Video"},"08afc4eec9a50bd0cd40969fd88f2e49":{"Name":"The Boondock Saints II: All Saints Day","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"08afc4eec9a50bd0cd40969fd88f2e49","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-11-23T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6,"RunTimeTicks":82813419520,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"22821"},"VideoType":"VideoFile","ImageTags":{"Primary":"dd62d407db248fd1862cbdb73b8fdf6b"},"BackdropImageTags":["ad0099e21791d29cdc8e07f7b7e7c80e"],"ImageBlurHashes":{"Backdrop":{"ad0099e21791d29cdc8e07f7b7e7c80e":"WD8N5?Rj%1t6xZ%1~AWBxsWBs:%1={jZR*R*kBs:%1s.NGR+WBa#"},"Primary":{"dd62d407db248fd1862cbdb73b8fdf6b":"d79Z_e8}IoIp?F4X%enjb[M|?Y$%E3NH%Lk9tQIqIWI:"}},"LocationType":"FileSystem","MediaType":"Video"},"090c43284bd9e8365fa8921bf0eba234":{"Name":"Mortal Engines","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"090c43284bd9e8365fa8921bf0eba234","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-12-04T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":77011197952,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"428078"},"VideoType":"VideoFile","ImageTags":{"Primary":"f33095cd76cfd587feac801a9f83a14a"},"BackdropImageTags":["421545f6d6105d0e9bb7ceeeb386b8a7"],"ImageBlurHashes":{"Backdrop":{"421545f6d6105d0e9bb7ceeeb386b8a7":"WuFXu0WYjYWVayoL~BS4jZWCjsoe?GR+ayfkoLj[-:ayWVoej[j["},"Primary":{"f33095cd76cfd587feac801a9f83a14a":"d56tm]-o0#9v#msoELIp9ERjRiR*?bt7R:spElR-={%1"}},"LocationType":"FileSystem","MediaType":"Video"},"092ee327c6911c026504f0f4f991088b":{"Name":"When Marnie Was There","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"092ee327c6911c026504f0f4f991088b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-07-18T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8,"RunTimeTicks":61619888128,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"242828"},"VideoType":"VideoFile","ImageTags":{"Primary":"b77f6685a720d9605cb70546bc2ee48f","Art":"b7f62bc2761a75a25c68dd3fb7de984d","Banner":"a259379b3b647849d26c0e4ca1fc9663","Disc":"bd9ee62a811de4ace45783914f5f2041","Logo":"378beda82cd8d0e7317aaeea107e8c52","Thumb":"edacda2cf754c40f21add795f7737f70"},"BackdropImageTags":["597bce8cc64bee88931be86e8ffda430"],"ImageBlurHashes":{"Backdrop":{"597bce8cc64bee88931be86e8ffda430":"WSEgTZ$,EeyBw~%e?d.5V@xu-oxb%ixbxV%MsExu?vxa%IxbM~o4"},"Primary":{"b77f6685a720d9605cb70546bc2ee48f":"djJStfpKOs%#u6S%kCog%1R+r=nhOsWXR*W;M}s:oga~"},"Art":{"b7f62bc2761a75a25c68dd3fb7de984d":"N#JbEdMwRiWCW=WXocoJj[flofof~pD%M|t7t7of"},"Banner":{"a259379b3b647849d26c0e4ca1fc9663":"H~J]44T2ozs,tS%MM{xvt7_NNft6WBkCofM{t7WX"},"Disc":{"bd9ee62a811de4ace45783914f5f2041":"eKM[jNK3^6%f#mX-bHwdozWB~Cv~VYM{WVXSVsnOV@kW[qI:TJsBJR"},"Logo":{"378beda82cd8d0e7317aaeea107e8c52":"O=HM4VkC~pof?bof%Lt7fQfQfQf6fQfQxufPWBfRWBfQay"},"Thumb":{"edacda2cf754c40f21add795f7737f70":"NdGmrqx_PVyEvyn%_MXTtRxaM{t7-mNIs+s,NKkB"}},"LocationType":"FileSystem","MediaType":"Video"},"09cd52f886fcfe63cb8d1b6b554d9474":{"Name":"Silk Road","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"09cd52f886fcfe63cb8d1b6b554d9474","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-02-18T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":70049611776,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"579051"},"VideoType":"VideoFile","ImageTags":{"Primary":"78741f7b6f8c4bd56a11bf71e297e867"},"BackdropImageTags":["100bf4bd9d366e951c8ea07b0682bf7f"],"ImageBlurHashes":{"Backdrop":{"100bf4bd9d366e951c8ea07b0682bf7f":"WA7w+}xu4oNG4oD*%Mt8WCM{M{ae00WB-;af-;%ME2M{s:%2%Lfl"},"Primary":{"78741f7b6f8c4bd56a11bf71e297e867":"dpPPU-yz+vwO%Js,s*bHNIWEV[ovy9jIjZs.n#eWTGa#"}},"LocationType":"FileSystem","MediaType":"Video"},"0a8421fb6af4adfd7376e0a81e627de9":{"Name":"Metropolis","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0a8421fb6af4adfd7376e0a81e627de9","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2001-05-25T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":64519098368,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9606"},"VideoType":"VideoFile","ImageTags":{"Primary":"8f8bcb9cfa736d288317c6a95ad9f4fc","Art":"158504102d3d0a9f68c4f79e8a72f727","Disc":"34ac5c249f7be54200b381c43c0a62b0","Logo":"90a9a2fae1aff6ef86b391df3b2312e0"},"BackdropImageTags":["7d90fc14a4761a4c4ff57647ced81122"],"ImageBlurHashes":{"Backdrop":{"7d90fc14a4761a4c4ff57647ced81122":"WoG~,is:0}RjxZt7xXjuR-jsfiazI;jss:WqjYo0RljZs.bHayjZ"},"Primary":{"8f8bcb9cfa736d288317c6a95ad9f4fc":"deKIbT-B0hV@Q:jF%1xa9wSxxrRk%0RnnTs+NIn+afoM"},"Art":{"158504102d3d0a9f68c4f79e8a72f727":"NTQ]pE-p_3M{xvRj*0kC%1aeRiayZ#RjNGogRks;"},"Disc":{"34ac5c249f7be54200b381c43c0a62b0":"eSH.Zt4.%O~WR+RixuozIUxu-?-:_3E2WBxaRjozs:Rj_3WCMxs-RP"},"Logo":{"90a9a2fae1aff6ef86b391df3b2312e0":"O$R._coeV]ofa}juflt7jtayfQa|fQfQ.Ta}oeayjskCf5"}},"LocationType":"FileSystem","MediaType":"Video"},"0ad52cf307dd06bedd4b0e94670eb737":{"Name":"Pirates of the Caribbean: Dead Man's Chest","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0ad52cf307dd06bedd4b0e94670eb737","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2006-07-05T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":90399588352,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"58"},"VideoType":"VideoFile","ImageTags":{"Primary":"71c312d4d93c4ad2f894aefeb05202f4"},"BackdropImageTags":["1308f6e27be908842982d3f107921f14"],"ImageBlurHashes":{"Backdrop":{"1308f6e27be908842982d3f107921f14":"WI9?m-oK0#bbr@Na={oJIpW=NHRjt7n%slbII;NGxtodRjWEbGW."},"Primary":{"71c312d4d93c4ad2f894aefeb05202f4":"d7AJir9c4;-.-UE3t6%L8z?FXmRjI==_9cE2pGV[RjX8"}},"LocationType":"FileSystem","MediaType":"Video"},"0b0ed674ce21c8cfdde3f25a8a860dbf":{"Name":"Ponyo","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0b0ed674ce21c8cfdde3f25a8a860dbf","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-07-18T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":61752111104,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12429"},"VideoType":"VideoFile","ImageTags":{"Primary":"6779851679a20641e3883b9cf0d0c4c3"},"BackdropImageTags":["031cab39904f7f44deae9824eff35f6a"],"ImageBlurHashes":{"Backdrop":{"031cab39904f7f44deae9824eff35f6a":"WWLMnt}XOAcDOY=_O[RRa%nnS2kWbXNdxWwvn%jFt9xDt5jGr=ni"},"Primary":{"6779851679a20641e3883b9cf0d0c4c3":"d#BF3Vo#M|kXpykDj]X8cEbHt5s:bwbHoej[tPoeWXWV"}},"LocationType":"FileSystem","MediaType":"Video"},"0cc5c362292deb73d982ff1526b1f4d5":{"Name":"Ip Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0cc5c362292deb73d982ff1526b1f4d5","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-12-11T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":63810461696,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"14756"},"VideoType":"VideoFile","ImageTags":{"Primary":"0626a70b0b48f6814a1cf786788323cb"},"BackdropImageTags":["4c207e3d834bcae4f803feb73b85ff90"],"ImageBlurHashes":{"Backdrop":{"4c207e3d834bcae4f803feb73b85ff90":"WDBg9lIqIVn,kVob?ZWYbFRPa#WY01V[bJMxjvozD*RjMz-;a{M{"},"Primary":{"0626a70b0b48f6814a1cf786788323cb":"dCDIwFxt4o-o-AbubbsD01kV%gi_-n%Lbws9t7%Lxtn+"}},"LocationType":"FileSystem","MediaType":"Video"},"0db0d1f546f70341299fa65e10dc1c1d":{"Name":"The Abyss","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0db0d1f546f70341299fa65e10dc1c1d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1989-08-08T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":84210376704,"ProductionYear":1989,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2756"},"VideoType":"VideoFile","ImageTags":{"Primary":"68d54312b37c4d8be79bb627cdf3ac58"},"BackdropImageTags":["850485a3b377753c1df902bd07b6c8c7"],"ImageBlurHashes":{"Backdrop":{"850485a3b377753c1df902bd07b6c8c7":"WYE;BSx14.JCtMo$%Px^RUW=o}X9E1oyt7n$ofRl.AV[S5Rjk9oN"},"Primary":{"68d54312b37c4d8be79bb627cdf3ac58":"dXA2Jko~DNkDMwbIt6V?DOV@x[j=tnkXV?adx]ozRljZ"}},"LocationType":"FileSystem","MediaType":"Video"},"0ff2d6d868713f2fafd22bab5721c0a2":{"Name":"Joker","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0ff2d6d868713f2fafd22bab5721c0a2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-10-01T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":73091203072,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"475557"},"VideoType":"VideoFile","ImageTags":{"Primary":"890d7e3e6c882bd92a962718a6c13889"},"BackdropImageTags":["e18e396d0f5164501cb2b631a3e7a8f8"],"ImageBlurHashes":{"Backdrop":{"e18e396d0f5164501cb2b631a3e7a8f8":"W76+LSyWAJt+xstQ90t7rVMyb^tRHZMyixQnbctR_LtQTetlrqRP"},"Primary":{"890d7e3e6c882bd92a962718a6c13889":"dYFiA1xW01s;_1ocMxt7Sft7niRPbEkBofWBjFV@bbxu"}},"LocationType":"FileSystem","MediaType":"Video"},"c812fa01b33fda946b0a5ee77b2ba771":{"Name":"Umineko: When They Cry","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c812fa01b33fda946b0a5ee77b2ba771","PremiereDate":"2009-07-01T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7.8,"ProductionYear":2009,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"101981"},"AirDays":[],"ImageTags":{"Primary":"6ce2860bee79ad25e3b37d88b291abda","Banner":"93a832bfe984c37c436061c40e54b4a7"},"BackdropImageTags":["59dcdc7d16b506763b8c28ea7069ce58"],"ImageBlurHashes":{"Backdrop":{"59dcdc7d16b506763b8c28ea7069ce58":"WTG8J}rr0LRRx[%0tlocMxXSWDs;Nds,n$Ioxtxut6t7R+IUtRt8"},"Primary":{"6ce2860bee79ad25e3b37d88b291abda":"dPH-=C~p^+^*_MI;-pn%l8W=-VjF?aaeM|t7%2t7xuoz"},"Banner":{"93a832bfe984c37c436061c40e54b4a7":"H~QSP8xtt7Vs%M%MIV-pWq~pt7R+RQWpofV@t7WB"}},"LocationType":"FileSystem"},"10351c03b45ff22cb7c81f986065e5d7":{"Name":"Inkheart","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"10351c03b45ff22cb7c81f986065e5d7","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-12-10T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":63615131648,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2309"},"VideoType":"VideoFile","ImageTags":{"Primary":"ef5f7516c2b6332a6521dc87eddc6e3d"},"BackdropImageTags":["0c991eb1e5a6b59cbc506343adf56956"],"ImageBlurHashes":{"Backdrop":{"0c991eb1e5a6b59cbc506343adf56956":"WUDbZp^iE19ug4oN~A=_k9NHRkV]RPxY?G%1M{M{jXoIxa%1oeNH"},"Primary":{"ef5f7516c2b6332a6521dc87eddc6e3d":"dTG%;^%0NGR*^ONHogt60*NaR-R+S6-lWVNIR+ni%1%1"}},"LocationType":"FileSystem","MediaType":"Video"},"10472ee1209bcd0750d6946e8ead1b53":{"Name":"Back to the Future","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"10472ee1209bcd0750d6946e8ead1b53","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1985-07-02T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":69610242048,"ProductionYear":1985,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"105"},"VideoType":"VideoFile","ImageTags":{"Primary":"96ac777fcf889667f0455bc4fdc589ea","Art":"46ff37081c31f28f14797ad2b681b1a2","Banner":"784bbb084d6f92aca958b453a86f8141","Disc":"0d614c50b17424218234c124f02a8cdf","Logo":"bdfd31b4725d339788fcbcd42fba157b","Thumb":"e9696f4b3cb734a6fa57eb15d9b7244f"},"BackdropImageTags":["691dcf92f2796c472e183d1a2356df5b"],"ImageBlurHashes":{"Backdrop":{"691dcf92f2796c472e183d1a2356df5b":"WWC?Dl%00KE2b_tQw{n$S2X9bGR%9wNK$~$|xYRlOtofi^Rjxaxa"},"Primary":{"96ac777fcf889667f0455bc4fdc589ea":"dcHnj9-o0MNG9~kWxDRQDhs7xut8=qaKR-tQI_S$oIMy"},"Art":{"46ff37081c31f28f14797ad2b681b1a2":"NeKw-2~p?aIoWZM{el4nogM{of%Ns,IAt7WCWBxu"},"Banner":{"784bbb084d6f92aca958b453a86f8141":"HWDcE|R19I%hE3IWxSxvs7-X$_WENMNZNLs*xaaK"},"Disc":{"0d614c50b17424218234c124f02a8cdf":"edIq+Mv~?bOXyDr;WBXAs:jrysOW?Gw^wvWUbbozRkjF%Naer=bHIU"},"Logo":{"bdfd31b4725d339788fcbcd42fba157b":"OaL4mqw@?^XA_2XA^$$dnhW?j?bISibIOcrqx9X9n#bbax"},"Thumb":{"e9696f4b3cb734a6fa57eb15d9b7244f":"NGELpQ4U4=~nM{9dIz=q^MM}N^Rl58^hIurrxpN2"}},"LocationType":"FileSystem","MediaType":"Video"},"a8db7207abf707a1a22af70be5bd0991":{"Name":"Doodlez","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a8db7207abf707a1a22af70be5bd0991","PremiereDate":"2002-09-05T22:00:00.0000000Z","ChannelId":null,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":47,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"108761"},"AirDays":[],"ImageTags":{"Primary":"f7a932183b264c67295ba8de95d6ecdc","Banner":"de593ddcfe10ba57aa124cf5645cba1a"},"BackdropImageTags":["77b6bdb0007e93a3389d6b53451861cc"],"ImageBlurHashes":{"Backdrop":{"77b6bdb0007e93a3389d6b53451861cc":"WWSs50_3%M-;M{_3~qxuWBj[ofofayofRjoft7Rj~qt7fQt7Rjj["},"Primary":{"f7a932183b264c67295ba8de95d6ecdc":"dVR{#?-;t7~q_3ayRjoft7t7t7j[?bxuxuWB%MayM{j["},"Banner":{"de593ddcfe10ba57aa124cf5645cba1a":"H~QmCr%MxuxuIU-;%Mt7of~qt7j[t7Rjxut7ofay"}},"LocationType":"FileSystem"},"10a7005d68d18f3a5151a241932c5b1d":{"Name":"Mad Max Beyond Thunderdome","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"10a7005d68d18f3a5151a241932c5b1d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1985-06-28T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":64184958976,"ProductionYear":1985,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9355"},"VideoType":"VideoFile","ImageTags":{"Primary":"beceff14a7a8c22d72b13180772fe305"},"BackdropImageTags":["2987b7024f97522b22925b978d981266"],"ImageBlurHashes":{"Backdrop":{"2987b7024f97522b22925b978d981266":"WrKv~H^%RkxDVtr@~Tx@oKxsWBV[%LS#R+oyoyR,-.t6RkbHoLoL"},"Primary":{"beceff14a7a8c22d72b13180772fe305":"diNk|W?Et6-n-UxsRln+^#tPjFs.~Tbut6t6RkSgbIR*"}},"LocationType":"FileSystem","MediaType":"Video"},"1205978d5a5c59808d182c06cc75a0fa":{"Name":"The Platform","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1205978d5a5c59808d182c06cc75a0fa","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-11-07T23:00:00.0000000Z","OfficialRating":"NC-17","ChannelId":null,"CommunityRating":7,"RunTimeTicks":59335360512,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"619264"},"VideoType":"VideoFile","ImageTags":{"Primary":"d0b7891c10334f214a23a12d3c722323"},"BackdropImageTags":["531bf7d72beb4ca464124b14e71f7e80"],"ImageBlurHashes":{"Backdrop":{"531bf7d72beb4ca464124b14e71f7e80":"W9ATvEMx4otRnit7*0IA%MozM{t759IUozR+n$jY.8V@D*Rk%1bH"},"Primary":{"d0b7891c10334f214a23a12d3c722323":"dA4pBbX.H?NGTyXTxaozDNnOx^t7q@v}IURPVXa0jFjZ"}},"LocationType":"FileSystem","MediaType":"Video"},"121a9b64157d27311dea0973bcf3ddab":{"Name":"Kiki's Delivery Service","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"121a9b64157d27311dea0973bcf3ddab","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1989-07-28T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":61827198976,"ProductionYear":1989,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"16859"},"VideoType":"VideoFile","ImageTags":{"Primary":"174ae133c691e637beebe84edec6e6fb","Art":"1ff8c899df97090ea12c4713b9cfee12","Banner":"3ee25a652e13431d85812cb2dede9a9b","Disc":"39100841a75c1c6e8ce467e6237ab5e2","Logo":"2b666354c5ffc1f48c752fc28633ed8d","Thumb":"a4aab7bee9452b77e654cdc78076dddd"},"BackdropImageTags":["531a36e452d3825ba30b764d94e096e6"],"ImageBlurHashes":{"Backdrop":{"531a36e452d3825ba30b764d94e096e6":"WyDKWQt6o#XUM|og.TadoztRfkoyo~WCj?t6t6ozp1t8jYaeayWD"},"Primary":{"174ae133c691e637beebe84edec6e6fb":"drDwalW@bcx^%%t7oLbINgt6V@RjjwRlWCfRWAj]f,f6"},"Art":{"1ff8c899df97090ea12c4713b9cfee12":"NVH{4n9Gwg8^tRIU9G-;9Yx]WAjEDOado}kXROt7"},"Banner":{"3ee25a652e13431d85812cb2dede9a9b":"HMAJy_=xV;b_IuN3-6-Ong$;nTR*XnXTafv}$gV@"},"Disc":{"39100841a75c1c6e8ce467e6237ab5e2":"eIIh,E-p_Nbvxax?IUsrt7f5.9Io~VnOM_xn%MogRjWD-:%1jEbvOZ"},"Logo":{"2b666354c5ffc1f48c752fc28633ed8d":"OeKUZkj[~qof~qof?b%MM{Rjt7oft7ay-;M{M{t7ayt7Rj"},"Thumb":{"a4aab7bee9452b77e654cdc78076dddd":"NL9%rX-oIoniwGXV-@W9NuxarqbdRVNIo|s:RQW."}},"LocationType":"FileSystem","MediaType":"Video"},"141d4de03882318ea6782d268c6bf610":{"Name":"Guardians of the Galaxy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"141d4de03882318ea6782d268c6bf610","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-07-29T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":72504098816,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"118340"},"VideoType":"VideoFile","ImageTags":{"Primary":"847f0a127d12fd0ffbe4a8f5d0472abb","Art":"b0f4b277b405bd5ae3fba26ba5a84ff1","Banner":"4665ba9be47a9bc88c7a80daa7d2b787","Disc":"681cf13b5940a37fd852fa138efcd802","Logo":"76b5ebc6368d30ff1f08603642375095","Thumb":"73d467072b0e2a42a2221df7f7ac8ca7"},"BackdropImageTags":["782a0eb8fafa6d33674b4fcb081b6bba"],"ImageBlurHashes":{"Backdrop":{"782a0eb8fafa6d33674b4fcb081b6bba":"W9A,hA^K0fbf+?xv5ZK7Z{jZEkV@9DNGnfV?XARN-q-4?bxuVYIp"},"Primary":{"847f0a127d12fd0ffbe4a8f5d0472abb":"dB9@F,-=kY-:KnXTkBRk4,EN9ZE1R2t7-SxYrpxt=|xa"},"Art":{"b0f4b277b405bd5ae3fba26ba5a84ff1":"NIGR-n8^_3X8%Mxa^gS$bHjERkoexpXAM{xue-t7"},"Banner":{"4665ba9be47a9bc88c7a80daa7d2b787":"HMCPV7~CD%E3S%R*R%xroH~W?HM|E3R.xas+awxU"},"Disc":{"681cf13b5940a37fd852fa138efcd802":"ePIOw*IT?aoy-;-qjFR*RjWA~Wxb_MRkofIAoztQaeR--WWUbYWCIU"},"Logo":{"76b5ebc6368d30ff1f08603642375095":"O~Mt29WBt7WBozayt7oKfkf6off6oLay_Nj[WBoeaxj[WB"},"Thumb":{"73d467072b0e2a42a2221df7f7ac8ca7":"NHBNQOR%4US0s:RjT#RirrtPs,oL9#t6%Lt6E2bb"}},"LocationType":"FileSystem","MediaType":"Video"},"144ca884447d797e462bcf5775d287ec":{"Name":"Psycho-Pass: The Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"144ca884447d797e462bcf5775d287ec","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2015-01-08T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":67957960704,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"296917"},"VideoType":"VideoFile","ImageTags":{"Primary":"6440af197fcadcd551df18a02f5086bf"},"BackdropImageTags":["588426a944b56787d915019dc9247cb7"],"ImageBlurHashes":{"Backdrop":{"588426a944b56787d915019dc9247cb7":"WbCGlp%3IUIot8%M%jWCW,bIs:t6x{kDxsozayoc?dt7W9WBWBfO"},"Primary":{"6440af197fcadcd551df18a02f5086bf":"dTG+UO%L~q_3_3t7t7xuxuxuWBNGRjWCRjRjt7WBWBRj"}},"LocationType":"FileSystem","MediaType":"Video"},"144d99b9bcde68ddf0b563871d4c6cdc":{"Name":"Austin Powers: The Spy Who Shagged Me","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"144d99b9bcde68ddf0b563871d4c6cdc","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1999-06-07T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":57028268032,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"817"},"VideoType":"VideoFile","ImageTags":{"Primary":"1bd6ffa43f2ba58ec375489a7c10926c"},"BackdropImageTags":["f3852170c4caf2b5b716d3b9d80e5c9a"],"ImageBlurHashes":{"Backdrop":{"f3852170c4caf2b5b716d3b9d80e5c9a":"WDGbSE-U?G~WIBw}DP^*%2M{aKw|M_-;f,S4?a%L~Vxu%2xu%Ls:"},"Primary":{"1bd6ffa43f2ba58ec375489a7c10926c":"dWHLoEsr3?%#%3r?NbOSKJogr;k7I]o3n9WCAIRow1ad"}},"LocationType":"FileSystem","MediaType":"Video"},"14a413c86572f014b047fc5cacb137d0":{"Name":"Indiana Jones and the Kingdom of the Crystal Skull","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"14a413c86572f014b047fc5cacb137d0","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-05-20T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":73513918464,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"217"},"VideoType":"VideoFile","ImageTags":{"Primary":"9f3362940b162d615e82e2e58d8e52c0","Art":"1b2295ab13dbb91f2a7d42ffdc423f5d","Banner":"9b15f24376067d4d61cfdd456605337e","Disc":"e1f0ce807b1a300b10426ba57b5743b5","Logo":"14d173746df98fa82683aaf314cb6b5d","Thumb":"8d93aa641845ba5085f191009fb6a2b7"},"BackdropImageTags":["b164da58580dd244386fc36ffbb2d1df"],"ImageBlurHashes":{"Backdrop":{"b164da58580dd244386fc36ffbb2d1df":"N-J%5V%0i_R*aPnj~9s:i_afWEn%tQS4jFsTRlju"},"Primary":{"9f3362940b162d615e82e2e58d8e52c0":"dPHKB-=_0gEM9us,-nt6D*s,oga~tks.RQM|n$RkoexZ"},"Art":{"1b2295ab13dbb91f2a7d42ffdc423f5d":"NLIpnz}7EMo}9bS%V?9vozxtEMSOD+XUsDRQo}ae"},"Banner":{"9b15f24376067d4d61cfdd456605337e":"HVGQXd11^#o|oy-n%1%K9|^4EMxXNGNawcV[oIEM"},"Disc":{"e1f0ce807b1a300b10426ba57b5743b5":"eaJ@B:en?^WEXosmxGa#R+kB.Toe-=WVxCX9Ipofs.WBx^R+V@oeM_"},"Logo":{"14d173746df98fa82683aaf314cb6b5d":"ORMi[kIa%%RicGM_tnDnxCRiM|WTR.X7?K-;R-S6j;xts*"},"Thumb":{"8d93aa641845ba5085f191009fb6a2b7":"NmJ?pJIp0Mf-?ask^OI;WEM}k8tQr?I@S#Rjo0X9"}},"LocationType":"FileSystem","MediaType":"Video"},"fd97d31bda0fbd00b175d2894e5176da":{"Name":"Ugly Americans","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fd97d31bda0fbd00b175d2894e5176da","PremiereDate":"2010-03-16T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2010,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":31,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"150051"},"AirDays":[],"ImageTags":{"Primary":"71d826b5104519ac1eebcdda0803615d","Art":"1f061c75d6ed7bc55bcc2e6deb5dc7aa","Banner":"773a5c0952c682d25d80ba0795cfd70a","Logo":"bff06c9d99eb02f63c218fb284a36fcd","Thumb":"e2fda7f534070f2c9b7fcd25e5a11fcc"},"BackdropImageTags":["6705eb094cd655032b72a28d77b15ac3"],"ImageBlurHashes":{"Backdrop":{"6705eb094cd655032b72a28d77b15ac3":"WZMKnB|wSM]TN]$Pa|=0jtSMjtwx$Ow_o1NvsUw_]Tw_SMNvsUw_"},"Primary":{"71d826b5104519ac1eebcdda0803615d":"dVL:T2={w@?F?Vo|x]s:}9enkWoy}Fn8V_xZ@?bYRjr="},"Art":{"1f061c75d6ed7bc55bcc2e6deb5dc7aa":"NBA]]Os+0KZ$9ZTeqtr?tRt7T0OD4T$+%gt7xYD%"},"Banner":{"773a5c0952c682d25d80ba0795cfd70a":"H-J?HOwtR%s;$*,CwJXSjZ}VxWofn+nP$jsojZn%"},"Logo":{"bff06c9d99eb02f63c218fb284a36fcd":"OWI#x_of00M{M{WBof9FofD%ofayayxuWBay%Mt7WBofWB"},"Thumb":{"e2fda7f534070f2c9b7fcd25e5a11fcc":"NkIqAd%2IUWpNGRj|@n$kCkCbboLzpV@ozjus:t7"}},"LocationType":"FileSystem"},"cb9fef28982a360a35f55ecf98fde5bf":{"Name":"Adventure Time","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cb9fef28982a360a35f55ecf98fde5bf","PremiereDate":"2010-04-04T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.7,"ProductionYear":2010,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":367,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"152831"},"AirDays":[],"ImageTags":{"Primary":"0692dd9086a0122f98415aa3536c18f4","Banner":"38691a5e1f54a4a3fb90636f5b598230"},"BackdropImageTags":["37cf4647bcfa9f8e6e194c3d5fa95677"],"ImageBlurHashes":{"Backdrop":{"37cf4647bcfa9f8e6e194c3d5fa95677":"W;DC?Wj=p0t.kWtPcbbDakfoWoX8otf6aKWBW=bYtSoMj?ozoyk8"},"Primary":{"0692dd9086a0122f98415aa3536c18f4":"dHF~Nk~94TxH5rS$%2baD*I@pJs+VExCxYW=E1Rjo2o#"},"Banner":{"38691a5e1f54a4a3fb90636f5b598230":"H;NKhoROn2w[tm%MV@%gnM_4nNjDjFt6bIR-xZn$"}},"LocationType":"FileSystem"},"a48afa41a9e1e25b495a6c34f42816b3":{"Name":"Black Rock Shooter","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a48afa41a9e1e25b495a6c34f42816b3","PremiereDate":"2012-02-02T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.6,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":9,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"162711"},"AirDays":[],"ImageTags":{"Primary":"4c7a7256b975d112926500f7c034f950","Art":"81756a0cbb02d1ae1d47b72149608ecd","Banner":"2d51acd499af0321c33bef146ce4afa1","Logo":"95cbdee2a924e80faed52ba2e2b303a1"},"BackdropImageTags":["0761d68df557fffd926a46abbd73189b"],"ImageBlurHashes":{"Backdrop":{"0761d68df557fffd926a46abbd73189b":"WH9*+0tRMcxtxuNG.TV@IAjYxtt7WFM{IURinhtR%#ozNFadobIU"},"Primary":{"4c7a7256b975d112926500f7c034f950":"dyKLEsxakWxu.9ofbHt7~qxuWBxuxabHWBWB%Mt7ayj["},"Art":{"81756a0cbb02d1ae1d47b72149608ecd":"N77Kxeot9E^+i]Ip4T9FWUt8SOM{?b-=xbRkV?xt"},"Banner":{"2d51acd499af0321c33bef146ce4afa1":"HE9aBQof00M{WB%MofIUM{~qj]D%Rjayt8oLRjRj"},"Logo":{"95cbdee2a924e80faed52ba2e2b303a1":"OPDvl_%2IAx]IoaKxtE1Rj%2%M%Mn%WB00RjM|IUWAWBbH"}},"LocationType":"FileSystem"},"164fc75a0d859b8916bc9bb57eac96d7":{"Name":"TRON: Legacy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"164fc75a0d859b8916bc9bb57eac96d7","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2010-12-13T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":75087151104,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"20526"},"VideoType":"VideoFile","ImageTags":{"Primary":"e2579eb26558de4223f09616c53c90bc"},"BackdropImageTags":["ead5804f6d9dedca329e48cd103bb62e"],"ImageBlurHashes":{"Backdrop":{"ead5804f6d9dedca329e48cd103bb62e":"WL8ZV_j]9Fl9u%sm.8WEDio}%giwVYV@RPo#x]V@pIj?kWbvRPj["},"Primary":{"e2579eb26558de4223f09616c53c90bc":"dW6vf0ozHqV[xuofM{RiZ#kCb^V?tlfkRPf6kWfkaKay"}},"LocationType":"FileSystem","MediaType":"Video"},"8c9a309f721e6489bbeb1313f646798c":{"Name":"Terry Pratchett's Going Postal","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8c9a309f721e6489bbeb1313f646798c","PremiereDate":"2010-05-29T22:00:00.0000000Z","OfficialRating":"12","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":54000001024,"ProductionYear":2010,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"166091"},"Status":"Ended","AirDays":[],"ImageTags":{"Primary":"47496ae0d30a8625a6607d4944c0c87a","Banner":"25157f8ae10624b8c9afb85aa02c9295"},"BackdropImageTags":["24ec8f3ffa44968c7b881a94e8179033"],"ImageBlurHashes":{"Backdrop":{"24ec8f3ffa44968c7b881a94e8179033":"WjH2K1oJogS4RjtR_NnixuxuofNHyExZt8%Lt6ogx^%2WCRkaeoz"},"Primary":{"47496ae0d30a8625a6607d4944c0c87a":"dXF$O+%3ozoz?woe%L?HcGofxa%2%i-:RjM|NgRj%2bI"},"Banner":{"25157f8ae10624b8c9afb85aa02c9295":"HmHUzsX9%NtRt7t6WAoMRP~qxux]t7R-WBt6j[RP"}},"LocationType":"FileSystem","EndDate":"2010-05-31T00:00:00.0000000Z"},"16812e75fb7ff02f3f7e015b7a5dd62b":{"Name":"Jin-Roh: The Wolf Brigade","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"16812e75fb7ff02f3f7e015b7a5dd62b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1999-11-16T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":61191360512,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"823"},"VideoType":"VideoFile","ImageTags":{"Primary":"18fc02d4785ec05cd9c810f21d03a13f","Art":"10ca6e4d36db0507d27c496ce7feb95e","Banner":"90870dbdb91c27228c3e2a94a9c3383e","Disc":"282fe1db025bfbea5768906f18ce7b15","Logo":"6451041d9f8ce90ce44270f2d555aa15","Thumb":"3b72784075876af751682ff8ad071f4f"},"BackdropImageTags":["35c944180925cb58b4a1d8d27f1a90f3"],"ImageBlurHashes":{"Backdrop":{"35c944180925cb58b4a1d8d27f1a90f3":"WeF~su-:D*?aW902~p%MIpoyW9IVt6t7MyD*oeoe%MxtIoIVoLRP"},"Primary":{"18fc02d4785ec05cd9c810f21d03a13f":"NbGI#}.69a?aW902~p%MM|t7avIot5t7IVD*s.of"},"Art":{"10ca6e4d36db0507d27c496ce7feb95e":"NRFziP5n11=[EixE9y$#xXI?NbNbE$$#snW:j@Nc"},"Banner":{"90870dbdb91c27228c3e2a94a9c3383e":"HQCi]f0J%M-;4.?afhWARQ_1ITt7xtIoxZoya{RP"},"Disc":{"282fe1db025bfbea5768906f18ce7b15":"eMDTCiIUDikB.7pfxt8_NH?GcFogM_xaRk%MM{xZofW?NyoyadM|t7"},"Logo":{"6451041d9f8ce90ce44270f2d555aa15":"OE7A^ZagXPX6snnRowodazfQazazazaz0RkAnRnkS3X6aN"},"Thumb":{"3b72784075876af751682ff8ad071f4f":"NbGI#}.69a?aW902~p%MM|t7avIot5t7IVD*s.of"}},"LocationType":"FileSystem","MediaType":"Video"},"1a11ab6ff2858d09522a2c380f60370f":{"Name":"Sherlock","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1a11ab6ff2858d09522a2c380f60370f","PremiereDate":"2010-07-24T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.2,"ProductionYear":2010,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":18,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"176941"},"AirDays":[],"ImageTags":{"Primary":"3e7a5d75e3b8cb59d8a15303afbf6544","Art":"2e35f8a8af747f7252cc7965d104a408","Banner":"26f7582cfff3611daa4b4f240ce136e1","Logo":"87a125106903571bc65ab561b8fbb5b5","Thumb":"fee07f28bf0c242bb26e4ae75ad7a4af"},"BackdropImageTags":["c78450ee7c9a2b424d3077c7e339050f"],"ImageBlurHashes":{"Backdrop":{"c78450ee7c9a2b424d3077c7e339050f":"W44.l9RkDhS40f%M?cflMxs:IoWCI9Rio#%MxaRPR.M{xao#n*xa"},"Primary":{"3e7a5d75e3b8cb59d8a15303afbf6544":"d25hx+WF00bc?wj[$$s:0KRj?H%L~pE24o%M4.NGS5oz"},"Art":{"2e35f8a8af747f7252cc7965d104a408":"NhHn~a?c~q-;-;oeoM%Mxuxut7WBNGaeRiRjaeWC"},"Banner":{"26f7582cfff3611daa4b4f240ce136e1":"H89HIctR4Txb4oRj.8t7Mx.99ZRO-:W=-;RkIU%1"},"Logo":{"87a125106903571bc65ab561b8fbb5b5":"OSAwCvj[WBayWBj[ayWBfRj[fQayj[j[01WCofj[ofazj["},"Thumb":{"fee07f28bf0c242bb26e4ae75ad7a4af":"N5A^B,x]Io-pM|My~q-;J9W;o#RjE2-;V?IpR*sl"}},"LocationType":"FileSystem"},"178fd0cde92ed53396d3c5915b71d103":{"Name":"Dead Leaves","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"178fd0cde92ed53396d3c5915b71d103","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":31484479488,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15981"},"VideoType":"VideoFile","ImageTags":{"Primary":"734c999cfc9fd150289aa70c2c3f2006"},"BackdropImageTags":["ccfdc7490ed9325ddee83c29897b28a6"],"ImageBlurHashes":{"Backdrop":{"ccfdc7490ed9325ddee83c29897b28a6":"WRIYF0=JRhMw%h~WKkDkI;%0NHM|ETNIx[xaIoRn?G-pxVWZxtt6"},"Primary":{"734c999cfc9fd150289aa70c2c3f2006":"dHF6d@TwEf%NPpNhwioi04VyRibE03%g-:IqyVyD-=-;"}},"LocationType":"FileSystem","MediaType":"Video"},"17f4b8fbd9c383a53441e56148837716":{"Name":"The Matrix Reloaded","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"17f4b8fbd9c383a53441e56148837716","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-05-14T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7,"RunTimeTicks":82977710080,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"604"},"VideoType":"VideoFile","ImageTags":{"Primary":"3842e2d9afaf25f242021ce64c7db714"},"BackdropImageTags":["da2c2855627ae795e1f3ae84de8d52d9"],"ImageBlurHashes":{"Backdrop":{"da2c2855627ae795e1f3ae84de8d52d9":"WZI~PkxZ%M?b4.kC-;xZt7t7D%a}IAe.RjjZM_M{~qogt7%29Zj?"},"Primary":{"3842e2d9afaf25f242021ce64c7db714":"dH9a.^?ts*x@.7tQMyWBMyM|ICM|IBV@t7of8yRQx[of"}},"LocationType":"FileSystem","MediaType":"Video"},"186179363aab5cdae54741d619ad1459":{"Name":"Cube 2: Hypercube","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"186179363aab5cdae54741d619ad1459","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-04-14T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.5,"RunTimeTicks":56538030080,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"437"},"VideoType":"VideoFile","ImageTags":{"Primary":"9929ca4d634189fb8f04ad5df5a4d6fa","Art":"5465444d70115e74fa6aaed146c0b828","Banner":"5a345a06511570fe615c8311ef8be590","Disc":"19a4d433184f532c239e6dd542a6cb4b","Logo":"eb6a3e3e086be4c4e1f43b4ad70bed7d","Thumb":"4e91df32df70d35ea62967f787368a4c"},"BackdropImageTags":["eb6a3e3e086be4c4e1f43b4ad70bed7d"],"ImageBlurHashes":{"Backdrop":{"eb6a3e3e086be4c4e1f43b4ad70bed7d":"Wf8il8yDMHIUMxWCWGV?V@tRtQo$RjRiVrn~x]t8p0jYV?jYkCV?"},"Primary":{"9929ca4d634189fb8f04ad5df5a4d6fa":"dT98=J%gR3RoD*V?s+WXVBMwX9tRbwkWkDkCROj?oLWB"},"Art":{"5465444d70115e74fa6aaed146c0b828":"N#Jlc=~X%3kCM{S1-;s;xuofRjayWBNGRjWBoyof"},"Banner":{"5a345a06511570fe615c8311ef8be590":"HYA1;npf%gngIARkIBI9Mc.9XAt7jYRjj]RjRPRP"},"Disc":{"19a4d433184f532c239e6dd542a6cb4b":"eWG9?go#~pR4%MkskDs7V?WB~BV@={tRbIngV@R-ofo#%#aeozV@IU"},"Logo":{"eb6a3e3e086be4c4e1f43b4ad70bed7d":"OPPZ}k?IM{-qIoxukB~Xxaayj[ayfQoM~XIot7NFxbR%j["},"Thumb":{"4e91df32df70d35ea62967f787368a4c":"N$8$Xxt:tRxZo#o#RnofadRjWCWBV@WCWrayV?aK"}},"LocationType":"FileSystem","MediaType":"Video"},"186542cd6d3e55cac092eb01ba504910":{"Name":"Pulp Fiction","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"186542cd6d3e55cac092eb01ba504910","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1994-09-09T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.5,"RunTimeTicks":92973654016,"ProductionYear":1994,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"680"},"VideoType":"VideoFile","ImageTags":{"Primary":"b73d257570ab6af99b73f63634f0a875","Art":"ca39fd4d4372308c7ed8ac5ccd1e6043","Banner":"e68a5b4a07e03726b0b82f14bdaa6f62","Disc":"fcecac3d3c4bd557aa2be03a7678e400","Logo":"fcecac3d3c4bd557aa2be03a7678e400","Thumb":"7f47030d67ccb12103841e94d2eaa04e"},"BackdropImageTags":["fcecac3d3c4bd557aa2be03a7678e400"],"ImageBlurHashes":{"Backdrop":{"fcecac3d3c4bd557aa2be03a7678e400":"W97-KIo}0K#mS#D%.S-pMxELw{WBxut7WBV@bHa|M{bbxunikCt7"},"Primary":{"b73d257570ab6af99b73f63634f0a875":"dVGZsxwcEfxW$zxaw]n$}rads.-T]~xZS#t6-5slxaW;"},"Art":{"ca39fd4d4372308c7ed8ac5ccd1e6043":"NFC=*K^a9ZN$I^9Z}$~8%M0N9c-:o|xXE2NfR:RP"},"Banner":{"e68a5b4a07e03726b0b82f14bdaa6f62":"H;I:BU}m$$WEIYeYwKxGWn=^$|s.afRnV^njs:W-"},"Disc":{"fcecac3d3c4bd557aa2be03a7678e400":"ebM~UnIqyGs-cFWFWVocf6kB_Nwwk@kBs+-7smR.WWWVK*X4s*RnVY"},"Logo":{"fcecac3d3c4bd557aa2be03a7678e400":"O}P$jdNK.A$~%NkCa}R.R-oLt3s.azWDo#a#adj?jYj@az"},"Thumb":{"7f47030d67ccb12103841e94d2eaa04e":"NDEBA~^Gxo}@E1S${{^P$yWU$+Io+Q9IWDkWjDxZ"}},"LocationType":"FileSystem","MediaType":"Video"},"da97c973d7679a060decf49bdfa64841":{"Name":"Regular Show","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"da97c973d7679a060decf49bdfa64841","PremiereDate":"2010-09-05T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2010,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":240,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"188401"},"AirDays":[],"ImageTags":{"Primary":"d28268bdc437ef838867f39f81222c72","Banner":"6b6a9ffbc7fb79fb7f2281a95adf0627","Art":"0d70e84b8f63d27c0b9dfd5f2c0f3886","Logo":"af885ce9d6054568952e6a395ddd1faa","Thumb":"ee854451e6b3b24bd8312cea945354e3"},"BackdropImageTags":["8793d54672be667a7cbf74ba1367b879"],"ImageBlurHashes":{"Backdrop":{"8793d54672be667a7cbf74ba1367b879":"WnKLpTx[RNxDnmti%jjKMxoIt7V[xvsrM|oextM{x?tRkoaen,bX"},"Primary":{"d28268bdc437ef838867f39f81222c72":"dP9u{rtRHrx],_niSzxtv0j^kVxb.jtRRWohrvs+k=e."},"Banner":{"6b6a9ffbc7fb79fb7f2281a95adf0627":"HqJkfh?Hsl%MIpxsNHS5$%~qxuRikDI:j=NHNGr?"},"Art":{"0d70e84b8f63d27c0b9dfd5f2c0f3886":"NwLz:R00Wox[WBRjIoozWBRjoexa%gIojFxaofRj"},"Logo":{"af885ce9d6054568952e6a395ddd1faa":"OwQ9_@ofofofoft7oft7ayj[j[j[j[fQ~qayWBj[WBWBWB"},"Thumb":{"ee854451e6b3b24bd8312cea945354e3":"NRGvLr%1D5kDQ.Myt.jsk8j@ROs:tQayIVjaxuj]"}},"LocationType":"FileSystem"},"191c377083173ce2ebc0731429eb7de3":{"Name":"Atlas Shrugged: Part II","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"191c377083173ce2ebc0731429eb7de3","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-10-11T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.3,"RunTimeTicks":66942709760,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"134371"},"VideoType":"VideoFile","ImageTags":{"Primary":"f20ea83222614b26cd6f8c505519ca39"},"BackdropImageTags":["3857dbe52953af3c0cb2f5e47a2297f3"],"ImageBlurHashes":{"Backdrop":{"3857dbe52953af3c0cb2f5e47a2297f3":"WpGSGUWExtoyM|xt_NR*R+WCRjj]?vofWEoLn%of?ut6oet6ayof"},"Primary":{"f20ea83222614b26cd6f8c505519ca39":"dVDADZx]4TWBX:bIs8tRD*bI%Mt7x]xuNGIUNykWs:WB"}},"LocationType":"FileSystem","MediaType":"Video"},"e7f0b17ba97bc373c9e5d2368e53ac6e":{"Name":"Bob's Burgers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e7f0b17ba97bc373c9e5d2368e53ac6e","PremiereDate":"2011-01-08T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":214,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"194031"},"AirDays":[],"ImageTags":{"Primary":"a4ed0984cb07eeebba0088336fdd22cb","Art":"ec6b06b5fb858292e913f58cd7dc20ce","Banner":"f5cc47032c6ede1f56c431b5b35c43f1","Logo":"1b0560b5c112a611714444db00b2591d","Thumb":"9f2891f0e696f53b0217227378e619a4"},"BackdropImageTags":["a5c7e4977b634106bd628da6e378457d","563519173fffde286a6c7df8a5bb5a83"],"ImageBlurHashes":{"Backdrop":{"a5c7e4977b634106bd628da6e378457d":"WPL3[I-4x-?vS0%f~pxtx?s*x]xrEmERNM%2M}bJ?Fk8IW$*VrNe","563519173fffde286a6c7df8a5bb5a83":"WWLDc8$dNgXBGI%2*0rWtSWUR.b^yCMwWBxvnOW=~VVrRPo#M~og"},"Primary":{"a4ed0984cb07eeebba0088336fdd22cb":"dZJjxS$%KOx]~Vs8kCtQTHV]xaX4?Hbvbws:%fkDV@jF"},"Art":{"ec6b06b5fb858292e913f58cd7dc20ce":"NdOpGPov%MIUx]sA8^8^x^kDRjfkyDV]NGozn#of"},"Banner":{"f5cc47032c6ede1f56c431b5b35c43f1":"HqLWeNxUo}xarXb_Ne-qkV.Angg5ofnhT1R*xuoz"},"Logo":{"1b0560b5c112a611714444db00b2591d":"O]QICroLoNjuj^kBogsCfjj@fQfQfQj@.Tfkaxj[axf8ae"},"Thumb":{"9f2891f0e696f53b0217227378e619a4":"NOKAyir.T1FzPWv#*JrWt,oHWYS%%gV;xWtliwjc"}},"LocationType":"FileSystem"},"1942b93a707c1179f4b46f86c94d2856":{"Name":"9","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1942b93a707c1179f4b46f86c94d2856","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-08-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":47542460416,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12244"},"VideoType":"VideoFile","ImageTags":{"Primary":"94c6f5c0869f8f2e7565919b2f41f3f0"},"BackdropImageTags":["a2caca633519fd4b02b0e781d9fedd80"],"ImageBlurHashes":{"Backdrop":{"a2caca633519fd4b02b0e781d9fedd80":"WF8}3]R.kYxuWB%M~qWYkYt6ayxvbcadbJj[t6kD9ZskbHWBxaR*"},"Primary":{"94c6f5c0869f8f2e7565919b2f41f3f0":"dLC7Arx@Djn._Lx@IBaQ8~oyj?V]9HRkxuocR~Mzs=t3"}},"LocationType":"FileSystem","MediaType":"Video"},"1a3aa29a26c9d04863b7d48118fa5325":{"Name":"The Lost World: Jurassic Park","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1a3aa29a26c9d04863b7d48118fa5325","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1997-05-22T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":77195411456,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"330"},"VideoType":"VideoFile","ImageTags":{"Primary":"452e242dd408b2954ff3cccac3677079"},"BackdropImageTags":["5e3576a2b76928ac5c8af17c01066672"],"ImageBlurHashes":{"Backdrop":{"5e3576a2b76928ac5c8af17c01066672":"WMDm5F.7~VX8IVxuR5E1MeWCRQaKD*DjWBx[-:butl={tR%LV[NH"},"Primary":{"452e242dd408b2954ff3cccac3677079":"dD8plekCABwJ$7RlNao00zae-BOXFss--ASM$+bbNGs9"}},"LocationType":"FileSystem","MediaType":"Video"},"1aa58866814ecda0fb95f793ed00502e":{"Name":"Guardians of the Galaxy Vol. 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1aa58866814ecda0fb95f793ed00502e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-04-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":81462083584,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"283995"},"VideoType":"VideoFile","ImageTags":{"Primary":"64e72acfb066e7e47f46a5c9ab864cf9","Art":"155865709ce836b05ae738179570f2a1","Banner":"fc29fc9dca07a9f01ca9a2ac7a9f88e2","Disc":"5fbed6a41e18ac4adab1871b6b2363d8","Logo":"8d392b5d7442bbca016260fcbb4749e4","Thumb":"a2c39ee413dfe19a24096f7566d2dbb7"},"BackdropImageTags":["4cb0a6f016657a718573ca2f70d7b17b"],"ImageBlurHashes":{"Backdrop":{"4cb0a6f016657a718573ca2f70d7b17b":"WLIMZv}R:%=L,C^5^lE2IoI=xo-:og$xBVI:$ex]-pxUt8n$RPkC"},"Primary":{"64e72acfb066e7e47f46a5c9ab864cf9":"dPFXMJs=vz+]=yNbM|ni1QEkI;I:E*$%oJoI9u-7xCsn"},"Art":{"155865709ce836b05ae738179570f2a1":"NeMQYORi_NxvofNH9uNGDiIV%2Rj%#IUt7RjWBju"},"Banner":{"fc29fc9dca07a9f01ca9a2ac7a9f88e2":"H?FQ8:tRMyRPMyXnkWRQS#%%xtV?RkR%WFRjnhWW"},"Disc":{"5fbed6a41e18ac4adab1871b6b2363d8":"eULM^.xD%zkD%L*0Rja0ofjD?vRjpIkCM{NFWovzjZXS%MxaWTjFah"},"Logo":{"8d392b5d7442bbca016260fcbb4749e4":"OWI~0=.S-oDjxWS$%M5=8_aJtloJagRi_NxukrRjt7jYt6"},"Thumb":{"a2c39ee413dfe19a24096f7566d2dbb7":"NFDS:t~q_3-;xuxbxu_3WAof%Mt7x]xuM{t6oLt8"}},"LocationType":"FileSystem","MediaType":"Video"},"1ad68303038be2befeb511aa5b0cd184":{"Name":"The VelociPastor","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1ad68303038be2befeb511aa5b0cd184","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-09-27T22:00:00.0000000Z","ChannelId":null,"CommunityRating":4.8,"RunTimeTicks":42522071040,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"457712"},"VideoType":"VideoFile","ImageTags":{"Primary":"8fd2c0dd9287f1a11c58ef3e420e0875"},"BackdropImageTags":["60a7233aad0db81640fc708d9a13f9ed"],"ImageBlurHashes":{"Backdrop":{"60a7233aad0db81640fc708d9a13f9ed":"WHDSXcSe-opI%hxF~qtlxFx]%3t7WEpIxaS~RjbbIC-;%3I;sAj]"},"Primary":{"8fd2c0dd9287f1a11c58ef3e420e0875":"d9CPL,rX=y~Cysx]T1bwP9%M-AIo?vM{E1ja#:R,9Z-p"}},"LocationType":"FileSystem","MediaType":"Video"},"1c100afb41f79b39bf3b0251b3526586":{"Name":"Back in Time","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1c100afb41f79b39bf3b0251b3526586","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-10-19T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":56610721792,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"330127"},"VideoType":"VideoFile","ImageTags":{"Primary":"f12147897a15ea6f4b0a3df1bd3b746b"},"BackdropImageTags":["cd6e0c2d74648385586e1b1b7904e3eb"],"ImageBlurHashes":{"Backdrop":{"cd6e0c2d74648385586e1b1b7904e3eb":"WPB{_;RO4m-?ozD$ITbco#V?jFkWITogbIRixboft8f5aekCbcjb"},"Primary":{"f12147897a15ea6f4b0a3df1bd3b746b":"dkD]b:t6Sit8_4xvV@t7%M-qRPWCxut8WBRispazWqRi"}},"LocationType":"FileSystem","MediaType":"Video"},"1c935097199a222d2b09ed2565584fe7":{"Name":"Cloudy with a Chance of Meatballs 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1c935097199a222d2b09ed2565584fe7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-09-25T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":56896958464,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"109451"},"VideoType":"VideoFile","ImageTags":{"Primary":"fb7eebfba3d046071490afae6718d656","Art":"9911da821e5f2bfa5c98663edae13cb1","Banner":"618145eb76c0f4bf267b16443d693f68","Disc":"6944add46142fc1b9bde606d20c7d8f8","Logo":"61a000d250ce73518d1bc97530628119","Thumb":"78f6f046b5b6ad1bb157616db2bae33f"},"BackdropImageTags":["0662e7d6373a9fdc697a4bed208051ee"],"ImageBlurHashes":{"Backdrop":{"0662e7d6373a9fdc697a4bed208051ee":"WOLy+Ds8Nq~AXK?D}@Rh.3pHS^XnEKoFwhXTSwXm^jNHr=tSIokC"},"Primary":{"fb7eebfba3d046071490afae6718d656":"ddI46Poi9snh~WbdIoadnSofR.WAa6kCofWBOsShsma}"},"Art":{"9911da821e5f2bfa5c98663edae13cb1":"NVIMvO}sx^F|Fy?Gx?SxV[RkJBoy9]kVoeRjxGRl"},"Banner":{"618145eb76c0f4bf267b16443d693f68":"HzMY[[%KE%SdoyX6Ios*IV~Cxbg1X3t7WVRjs*RQ"},"Disc":{"6944add46142fc1b9bde606d20c7d8f8":"eTN+noxb*0Rh?HxbxFjcIpR%%hNGlTjGS0Y2OYn4w[xax]xCs;NdMx"},"Logo":{"61a000d250ce73518d1bc97530628119":"OKO_ECcE%MkqyDxG.S-ptRX8f+nOX8s:_NWVNuaKWqn%Rj"},"Thumb":{"78f6f046b5b6ad1bb157616db2bae33f":"NIF=gj8w0yRUxa.7~DAWD%sDo#xt^*InE2Rnt6%1"}},"LocationType":"FileSystem","MediaType":"Video"},"1c96dc4a71a6720a2d7d63bdb7513438":{"Name":"Spider-Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1c96dc4a71a6720a2d7d63bdb7513438","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2002-04-30T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":72722882560,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"557"},"VideoType":"VideoFile","ImageTags":{"Primary":"920f154bb9979970dcc0bd566f3185c1","Art":"87cda0c92e5614fd8b401b077e123598","Banner":"71fa3e1a697cbd3c6809f1baca83d294","Disc":"7049317dea04994270cc7315c05c1b63","Logo":"b206cee3091330c265c0d3a28f2edbea","Thumb":"c8f66172c7ba8d9d20d4335cbd1d4bff"},"BackdropImageTags":["64a2dfbe4746076d4e49f609f1bc3560"],"ImageBlurHashes":{"Backdrop":{"64a2dfbe4746076d4e49f609f1bc3560":"WmJsj$%3?F~TT0%1n#RPIVaKnhM{IXahR.RSWDofxFt6xtWWNJxt"},"Primary":{"920f154bb9979970dcc0bd566f3185c1":"dZL2t[.7-:~U0hMyV?k8OTtMNHIVDlaLS4M}NHSht7R,"},"Art":{"87cda0c92e5614fd8b401b077e123598":"N,O3h7jX_NogtRkD-oV?bvo#Mya~%MRjM|t7nikC"},"Banner":{"71fa3e1a697cbd3c6809f1baca83d294":"HrG7^=~Utlxu?G^%.6x]bw-m$}adRjs8xWxst6bF"},"Disc":{"7049317dea04994270cc7315c05c1b63":"eSKTPqRQ.SS#?v^OWBR,ofSL.Toc_3n$RQ9ZoyXTRjr=%zR*n%W=IU"},"Logo":{"b206cee3091330c265c0d3a28f2edbea":"OQSPX^t7ofofoft7j[xuj[j[ayj[j[fQ~qWBWBj]WBayay"},"Thumb":{"c8f66172c7ba8d9d20d4335cbd1d4bff":"NjJ6[v%M?G~TXm%1r;M{IVnhi_RPIXWDR.M~e=oy"}},"LocationType":"FileSystem","MediaType":"Video"},"1d2387f82ca10b7ee14bd1dc6dd1a0c1":{"Name":"Space Jam: A New Legacy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1d2387f82ca10b7ee14bd1dc6dd1a0c1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-07-14T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":69287362560,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"379686"},"VideoType":"VideoFile","ImageTags":{"Primary":"a8b88e56694e93cc2ddc052eb2f95b11"},"BackdropImageTags":["7c17ea92791db616c4b5278f70a3d5b6"],"ImageBlurHashes":{"Backdrop":{"7c17ea92791db616c4b5278f70a3d5b6":"WhPfr_$k:Q-BKRw1}ZfkIosmbwWEijR,I;jFbuOF,IoMofWBfkt7"},"Primary":{"a8b88e56694e93cc2ddc052eb2f95b11":"ddI.IO-Q=D-B}RS~xBs+:*WoOFn~,ls+S6WB=yskjXfm"}},"LocationType":"FileSystem","MediaType":"Video"},"1d2917cbd629c205e5f5666c33215eb6":{"Name":"The NeverEnding Story III","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1d2917cbd629c205e5f5666c33215eb6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1994-10-25T23:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":4.4,"RunTimeTicks":54710091776,"ProductionYear":1994,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"27793"},"VideoType":"VideoFile","ImageTags":{"Primary":"faa18a7bfea0aeb6da16d045a7a078cd"},"BackdropImageTags":["fff8cafe449a4003cb092eba2e59b2eb"],"ImageBlurHashes":{"Backdrop":{"fff8cafe449a4003cb092eba2e59b2eb":"W[HLb}ogIUWEjFay.AWEWAofaxjua%Rjogogjuj]WrWBoffRj]j]"},"Primary":{"faa18a7bfea0aeb6da16d045a7a078cd":"dOIqyOn:0.?aCAIvR;tS59NdoGWA-VRPxY%25XIvs;X8"}},"LocationType":"FileSystem","MediaType":"Video"},"1d73752e58aec044db9fa63aae9d4b0d":{"Name":"The Girl with the Dragon Tattoo","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1d73752e58aec044db9fa63aae9d4b0d","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-02-26T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":94885650432,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15472"},"VideoType":"VideoFile","ImageTags":{"Primary":"a9e495752b58f834423f804aec35c4b7"},"BackdropImageTags":["bfa8eae1e2ec8053355d125db6e71d1a"],"ImageBlurHashes":{"Backdrop":{"bfa8eae1e2ec8053355d125db6e71d1a":"WCCFb7=_0#9vM}%1=wWVI;oLo1xZ0hNH=^=_xtM}EgWV=_xF9vIq"},"Primary":{"a9e495752b58f834423f804aec35c4b7":"d56RJi%10fJ7_1t69uNH9HRj$in+0gNH^i-o0zS3^i%1"}},"LocationType":"FileSystem","MediaType":"Video"},"1ef23757d145394e98e955b96cd59203":{"Name":"Ghostbusters","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1ef23757d145394e98e955b96cd59203","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2016-07-13T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.4,"RunTimeTicks":80250241024,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"43074"},"VideoType":"VideoFile","ImageTags":{"Primary":"639b0d6fd64fff197d45981fa76259db","Art":"1f2dd01cff1c06ad4e39e5e68a18493d","Banner":"cd7c4de906cd26a788c42e5e284eab7c","Disc":"8a351cfa1fe4f47c6d0f8fc1c7460ec4","Logo":"f350188a8708c5a6ab952966c344b380","Thumb":"bea1153dac8536128a35477fb4a0a673"},"BackdropImageTags":["a16cf68c4c62381aedf1f70fb14e4504"],"ImageBlurHashes":{"Backdrop":{"a16cf68c4c62381aedf1f70fb14e4504":"WSAvzyt70KM{-ptR%2ofIoRjxatQNGj[xaaeRjozM{ayxuj[Rjju"},"Primary":{"639b0d6fd64fff197d45981fa76259db":"dKC@8Q-XohXm%h$+xbSx4Txtn#RjD+XRt8j0#kM_t7w~"},"Art":{"1f2dd01cff1c06ad4e39e5e68a18493d":"NpM%.pfj_No2-;xunhj[D*WBf+ofIpe.RPbHWBfk"},"Banner":{"cd7c4de906cd26a788c42e5e284eab7c":"HjH2TdNtRP%MOF-UNHt7ae.AX8n3XTS5xZOEnPoy"},"Disc":{"8a351cfa1fe4f47c6d0f8fc1c7460ec4":"eSI#+Jv%~qO9%3X9ogaxR%WB?HSw?anmkW-VRiofsqW.%#jZbIoyMx"},"Logo":{"f350188a8708c5a6ab952966c344b380":"OnQm9kofj[ofofozfQofj[j[ayayayfQ~qbHayjZWBaej["},"Thumb":{"bea1153dac8536128a35477fb4a0a673":"NHH.vmn9p0x^I].9~WrC=|NGsDrslA^kxtOTnNVY"}},"LocationType":"FileSystem","MediaType":"Video"},"1f6ce6f97a0191c43d9c3f508add9d98":{"Name":"Pirates of the Caribbean: On Stranger Tides","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1f6ce6f97a0191c43d9c3f508add9d98","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-05-13T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":81837998080,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1865"},"VideoType":"VideoFile","ImageTags":{"Primary":"04e72e6e8e0c3716685a44c538db0397","Art":"fe813687180aa6716da2993ec14559c1","Banner":"0d8db10ed79a8d6edf2ad4fef3b555b9","Disc":"c9e8d974b6dd205c3f885cddf527242b","Logo":"b0ddf11ddb63af587e7102e0553cb95a","Thumb":"40b8681309a6a41e083ef5321a018f64"},"BackdropImageTags":["f6cd2e9f66f3404487ce5c810ef25063"],"ImageBlurHashes":{"Backdrop":{"f6cd2e9f66f3404487ce5c810ef25063":"WaFi6u?ZIVM|xtxZj[M|oJs:R+V[0ND+oLt6RkjZx]%Laxj?oLj@"},"Primary":{"04e72e6e8e0c3716685a44c538db0397":"dGD0GW%LI?%LJDR,yBxZ56Rjf+t6_MjIE2X70:IpxDIW"},"Art":{"fe813687180aa6716da2993ec14559c1":"NaLgqbRQ%0oLIARP$|RkadkCV@WC?wt7tRa$t5t7"},"Banner":{"0d8db10ed79a8d6edf2ad4fef3b555b9":"HNJQx*D,04W.ou?Y%d-nMz~BxCRkNLNGtQtPs-jZ"},"Disc":{"c9e8d974b6dd205c3f885cddf527242b":"eaIz^zxV.TNI%ga}WCj[j@ja_4NH.8s.jF%0xYe:R+WWyDR+WAj[Mx"},"Logo":{"b0ddf11ddb63af587e7102e0553cb95a":"O?JRXFofofj[j[j[azj[fQa|a|jtjtfQ~qayayj[j[j[j["},"Thumb":{"40b8681309a6a41e083ef5321a018f64":"NOFYA0ofo_t7ac%K~TflgLsoxZX4OXNIIqi{RlS2"}},"LocationType":"FileSystem","MediaType":"Video"},"200bb0871217ab86464546d90b7830c8":{"Name":"Wanted","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"200bb0871217ab86464546d90b7830c8","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-06-18T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":66005020672,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8909"},"VideoType":"VideoFile","ImageTags":{"Primary":"ca40afb8c2419611c741bf7d8dc9435e","Art":"b38255f85d6dd585373cbd29768b944c","Banner":"24b22a6b851f22ec4e257509f04cbed8","Disc":"2051f3e83e9fe2de650345aa0e23760e","Logo":"60611f8fe23304ef7562252a18797747","Thumb":"854175bc5b34c3ecd95a868856dd440d"},"BackdropImageTags":["79d45be670e7ced9895aa21274828f4f"],"ImageBlurHashes":{"Backdrop":{"79d45be670e7ced9895aa21274828f4f":"WuH,ObxY0%M}xYtP,?oeNvR+n%oLIqj?t5S4R+WB-SjtI=WXW;W:"},"Primary":{"ca40afb8c2419611c741bf7d8dc9435e":"dUFhFZt50NIW-pofRPV@9}WrjDxVt8agNGj=W?oJs,NI"},"Art":{"b38255f85d6dd585373cbd29768b944c":"NdMscu_N?vb^kW%M?IM{?bxuaxoINwIARkRixtkC"},"Banner":{"24b22a6b851f22ec4e257509f04cbed8":"H@HKH=xZE3RkR+R+oKW;s:~8t5E4V[S3R+j@bHoe"},"Disc":{"2051f3e83e9fe2de650345aa0e23760e":"eXHU@4E1~qxt%Nt7Rjt7s:Rj_Ns:-=j[jsRjt6RkWBt7%MoKs.R*IU"},"Logo":{"60611f8fe23304ef7562252a18797747":"ObCigPR*D%j]Sis.kCoeayayj[fRayj[0Moe%fjsn#WCay"},"Thumb":{"854175bc5b34c3ecd95a868856dd440d":"NVC=eZt659RkxsW;};WV9wWCxsoe-8bGI?f6s.oe"}},"LocationType":"FileSystem","MediaType":"Video"},"20bc10c3838f1e36cff0a388067fa6f1":{"Name":"Constantine","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"20bc10c3838f1e36cff0a388067fa6f1","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2005-02-07T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7,"RunTimeTicks":72472641536,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"561"},"VideoType":"VideoFile","ImageTags":{"Primary":"81950340ea329f0af0807abd8e6e66e1","Art":"b22892f02e20a3d18b402f4e3a141048","Banner":"d5060e8fd9efd220535c8adf8ad5bc89","Disc":"21227aad7b1d85d95882dedc9d4cc77c","Logo":"8379c984c2b890d3a6245bf822741c2a","Thumb":"ed58dd10904cf15b3301943d57bc3d3d"},"BackdropImageTags":["9d74c49a2147f4dc9e7b0b61ffb95416"],"ImageBlurHashes":{"Backdrop":{"9d74c49a2147f4dc9e7b0b61ffb95416":"WKGiMtE*j]=dE*$%}XOXOE$jNxs:E*E*OXxGxGofE*JBW=$%xYs."},"Primary":{"81950340ea329f0af0807abd8e6e66e1":"dG8qTe%e029Goet6t7Rk4pRk?a%LRRRkWBxsWVRkRkt6"},"Art":{"b22892f02e20a3d18b402f4e3a141048":"NE9?we9[=|IUS~w01d=yEL$*v~S}].OX$*NGJ7rr"},"Banner":{"d5060e8fd9efd220535c8adf8ad5bc89":"HqK]Jx-oH[MyEMsBtQkCVs~Bt7n5V@RQWBg3kDRj"},"Disc":{"21227aad7b1d85d95882dedc9d4cc77c":"ecEWLIWB_3jY-:ogaykCayjs_Naz?GflV[nga}f+j[WD-:axV@ayIo"},"Logo":{"8379c984c2b890d3a6245bf822741c2a":"OeCi~;t7t7j[j[WBWBt7fQfQfQayj[j[00WBWBj[ayofj["},"Thumb":{"ed58dd10904cf15b3301943d57bc3d3d":"NNIp#U^PL$VZRk$M?ubIkVt7D*IU67I=S#kVxDt3"}},"LocationType":"FileSystem","MediaType":"Video"},"211de013a6e5f6adf5acc740b655e393":{"Name":"Jumanji: Welcome to the Jungle","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"211de013a6e5f6adf5acc740b655e393","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-12-19T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":71431684096,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"353486"},"VideoType":"VideoFile","ImageTags":{"Primary":"e147b065c63202d6b856cc9477c5a944","Art":"eb609a05f99dfd861da54c19abd287ff","Banner":"225c6cb8c21f202e6973dc90e7dce363","Disc":"8e74e4c5161daccb137a6dbfafd68928","Logo":"fc789107eb369e5d5967ce134ddb53dd","Thumb":"82a1a5ffd768efce65deea45cea26ff9"},"BackdropImageTags":["92b41f664436973fb734736989a3d1e6"],"ImageBlurHashes":{"Backdrop":{"92b41f664436973fb734736989a3d1e6":"WIB|mOay00bcRPxa.SM{IA%Mt7WCyCRjROxuWBM{_3ofIoWVM_ni"},"Primary":{"e147b065c63202d6b856cc9477c5a944":"dTEB~R-noc%K~A%0xZxZMxs.t6jZM|jZR*WCNeafM}a#"},"Art":{"eb609a05f99dfd861da54c19abd287ff":"NYINc+%Kt6xsxZt5~St6M}odR*ocJRoJRka#RloL"},"Banner":{"225c6cb8c21f202e6973dc90e7dce363":"HGDSj:DO58pIV@wdVsx^9Y~Bs8I@ShaexGogIqX7"},"Disc":{"8e74e4c5161daccb137a6dbfafd68928":"eDF}Q3kBBnax%f^$s.IWR*SfBTa#1{oeivEgNIsTt6Sg.7ocM_R*sD"},"Logo":{"fc789107eb369e5d5967ce134ddb53dd":"OiLfgVM|N0IoW?NGkC_1WCV@RkWVoeR+.mjZWBf6jGoLn$"},"Thumb":{"82a1a5ffd768efce65deea45cea26ff9":"NQEe6@t6M~snI:R*~9t7Irn%oIWBkBs;EOoLayWB"}},"LocationType":"FileSystem","MediaType":"Video"},"214a5ec90b3deedc44aea5cdc588051f":{"Name":"Alien\u00b3","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"214a5ec90b3deedc44aea5cdc588051f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1992-05-21T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":86928113664,"ProductionYear":1992,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8077"},"VideoType":"VideoFile","ImageTags":{"Primary":"19d91bd23b1bfecfd237458a5f9eaa45"},"BackdropImageTags":["de0adef477cac88ba2b4d21c33a7624b"],"ImageBlurHashes":{"Backdrop":{"de0adef477cac88ba2b4d21c33a7624b":"W22$f}xs8$IEahx=x?oKRSRmj[t58~RS%dx?tOM$IERl%c%cRkH_"},"Primary":{"19d91bd23b1bfecfd237458a5f9eaa45":"dNDST?-,9bSj?EoKIqfl0ME4xajDE3NJxZWAo#t3oHoz"}},"LocationType":"FileSystem","MediaType":"Video"},"f1ecc414c4e4ef9c049072898b7edb81":{"Name":"Puella Magi Madoka Magica","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f1ecc414c4e4ef9c049072898b7edb81","PremiereDate":"2011-01-06T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"219181"},"AirDays":[],"ImageTags":{"Primary":"86219b3c7ccdc725d21c908de6f63220","Art":"756823de193ff04dc585bba8a20e57b6","Banner":"fe1301b5d7e9365be5aacfc4264a0501","Logo":"8b8d3728b58153064bac07492c409783"},"BackdropImageTags":["7fa679c0a0532e4081f6f9e30af62a76"],"ImageBlurHashes":{"Backdrop":{"7fa679c0a0532e4081f6f9e30af62a76":"WEBfY44.0e?HD%x]b]t7Myni%NNF8_%Mo}NH-oM{NHRj-pt7D%s;"},"Primary":{"86219b3c7ccdc725d21c908de6f63220":"deOf$4?aFa-;IobZR*xa_3o|xu%2~Ws:t7bv%gaKjES#"},"Art":{"756823de193ff04dc585bba8a20e57b6":"NMC#_LxV0xxuOrM{0}NHwNWEw|WW=Gf+K5s9WTbb"},"Banner":{"fe1301b5d7e9365be5aacfc4264a0501":"H%KAmQ~W~qtSx[xbs,xtX8?I%1-qozoyogs:ogW;"},"Logo":{"8b8d3728b58153064bac07492c409783":"OwGQ63OTSdSdWVsDo2oeoej?jajafQaz0|wgsWn+j[S1bF"}},"LocationType":"FileSystem"},"6a83ee1e80684c40f0a36bb254de7f33":{"Name":"Dan Vs.","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6a83ee1e80684c40f0a36bb254de7f33","PremiereDate":"2010-12-31T23:00:00.0000000Z","ChannelId":null,"CommunityRating":9.7,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":53,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"219851"},"AirDays":[],"ImageTags":{"Primary":"ed04828b48c3d9ff560f04a5363c3deb","Banner":"ce6d61b62fd2fab912998260b7898ad8"},"BackdropImageTags":["cebe0d61b49695de522d2c7eed99b577","46698c1e894a50a937d8ce63f7b11ae0"],"ImageBlurHashes":{"Backdrop":{"cebe0d61b49695de522d2c7eed99b577":"W[Gd+rkWr=tRaKtluPkDjYofj]j]RPV[ogaxoyjExabHaxofe-of","46698c1e894a50a937d8ce63f7b11ae0":"W668p#bS5GIqrT?cT5R2x_tQV?R:9Eo#%LnLNgITsiXpR$xBkXMw"},"Primary":{"ed04828b48c3d9ff560f04a5363c3deb":"dOH-x^-q9]t7I^S5xuxZ14Ip$zoy?coMR4RjkEn%nOj["},"Banner":{"ce6d61b62fd2fab912998260b7898ad8":"HF7K_BV#OvXnM^J5Q*-NZz%OxvNgbwWSNFaIs7xB"}},"LocationType":"FileSystem"},"22db159ede526ce11feaaf350d9b4bf6":{"Name":"Sin City","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"22db159ede526ce11feaaf350d9b4bf6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-03-31T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":85052268544,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"187"},"VideoType":"VideoFile","ImageTags":{"Primary":"c0fb1076dddda07d0fc4183146aa1301","Art":"d6df7b7458bd4da6088440610f3e57f7","Banner":"dc10615d7c1b2e8723d6edca85f7f2ce","Disc":"9ce20ed48a661674e7489a0ff6cc726b","Logo":"6e0b8bafe8c06c7c0f787c8d2fdca3ba","Thumb":"f57c6d3f8d647bc886ec6226cc65cd81"},"BackdropImageTags":["209f75acae4fac214396cf01f2cc2a3f"],"ImageBlurHashes":{"Backdrop":{"209f75acae4fac214396cf01f2cc2a3f":"WIDSOO~XGtF{H=v~yXtR#SVsELS#KiozrXr?XSS#=exa5kJT-Bw{"},"Primary":{"c0fb1076dddda07d0fc4183146aa1301":"dDBygZv~Ioxu}EZ$tS-;vM-pIUE1H?%MR%E1D%NG%Mbc"},"Art":{"d6df7b7458bd4da6088440610f3e57f7":"NsMGYYxG-;xaIUnj~qIUxuR*M{oz%~%gpIj[i_R*"},"Banner":{"dc10615d7c1b2e8723d6edca85f7f2ce":"H98{%m+bCQEfn4o0I:S#Md}[n%KiNGnOs:r?xaVs"},"Disc":{"9ce20ed48a661674e7489a0ff6cc726b":"eXIN?kt7_NM{%2n4R*W;s:a|~qRj%gofW;xuf6jZR*R*%gaebbkWIU"},"Logo":{"6e0b8bafe8c06c7c0f787c8d2fdca3ba":"ORCoe3wxN]a|o1o1N]sUN]fQN]SMsUo12ESMsUSMwxsUo1"},"Thumb":{"f57c6d3f8d647bc886ec6226cc65cd81":"NDBfeI4.9[~WNGR5GF-V#mo}t7SgE1%2V@Sfx]tR"}},"LocationType":"FileSystem","MediaType":"Video"},"23194138173acd9b8b5bd168dfa80284":{"Name":"V for Vendetta","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"23194138173acd9b8b5bd168dfa80284","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-03-14T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":79523946496,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"752"},"VideoType":"VideoFile","ImageTags":{"Primary":"5338c7f88f2e073f50ff8313028cb0db","Art":"11f2bcf14d349051fc7068c827ce3733","Banner":"1d6455e3266a18b895349dda0ff8a5c7","Disc":"52e5d55bd7862f151e43c99ee4195d15","Logo":"d33193a02a6971a6aaee76a3e66012ec","Thumb":"1028a073cfd637f052abf6165f19f02f"},"BackdropImageTags":["6ceecb0c056ff343ef1c90809c1f941b"],"ImageBlurHashes":{"Backdrop":{"6ceecb0c056ff343ef1c90809c1f941b":"WtMK,n$O{~,EkB,s]mN]#nsAK3W;w{sUNuazODSg;$jtoKsUWWa|"},"Primary":{"5338c7f88f2e073f50ff8313028cb0db":"dkE_X7~At6X8}@={oykWwxsAW:kVWBfkf+SMf+t7tQS4"},"Art":{"11f2bcf14d349051fc7068c827ce3733":"NqLDlhrD4TNG_3NG-;D*RPaeozR*tRbHozofV@ay"},"Banner":{"1d6455e3266a18b895349dda0ff8a5c7":"HTC:dw63#TK4kB+wOD$jNb|_JRniOXX7#moKs:R+"},"Disc":{"52e5d55bd7862f151e43c99ee4195d15":"eaIhEZ^P_3ELt,,.wdS6J7Se.TIV-:oyjFM{NutRxai_yDR*nhxZM{"},"Logo":{"d33193a02a6971a6aaee76a3e66012ec":"OjRA]}L~VYv#o}kWTdL#yXt,xGj[V@R*yXpIRjnii_kWay"},"Thumb":{"1028a073cfd637f052abf6165f19f02f":"NIDQQ66zq^ayK$s:}E6Ni_soS~$NNuODw{WBo0s:"}},"LocationType":"FileSystem","MediaType":"Video"},"231d4e2d2076ee26267c3e0bfd98981d":{"Name":"Wreck-It Ralph","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"231d4e2d2076ee26267c3e0bfd98981d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-12-31T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":60734418944,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"82690"},"VideoType":"VideoFile","ImageTags":{"Primary":"dee50a537df9d2b596defe8d73d75585","Art":"929b3a106f63ad7347f74e62b7bfa67b","Banner":"5dfc2d7bf5ae9b6d8f8b4976d991ff30","Disc":"1694eba7a29ef867fd55094fd09155b8","Logo":"5ff0c46fbf3b1b635375902a3f620765","Thumb":"98cf711ec7ef8398e7cbb9b3d4cc08bf"},"BackdropImageTags":["c84bf778a24c081af42d17548aa6fa87"],"ImageBlurHashes":{"Backdrop":{"c84bf778a24c081af42d17548aa6fa87":"WbNJq4t8W+%LW,xCGds:IpX9oeNePUxtIBR*s.oy.mXSRiRjNGoI"},"Primary":{"dee50a537df9d2b596defe8d73d75585":"dQH,6$=fX9={x^$ONGsm0frrZ~IpVZWB$$oMBlJ-X-o}"},"Art":{"929b3a106f63ad7347f74e62b7bfa67b":"NgMi1+#7tlxZbwn~S$X7ofi_jaofuio}nhS4jFW="},"Banner":{"5dfc2d7bf5ae9b6d8f8b4976d991ff30":"HlG@=C$$a1^,Nts9%#NaNG~CaJMx%MIoMxtRIoIU"},"Disc":{"1694eba7a29ef867fd55094fd09155b8":"eUN9^J.S_N9FXS={RkNGs.NbP;IA$$xuw^t,xtRkI:xFo~Rjrrt7bb"},"Logo":{"5ff0c46fbf3b1b635375902a3f620765":"O{Qu{Zj[?^ofRPofMxoffQj[fQayj[j[ozfQV@fkjGaykW"},"Thumb":{"98cf711ec7ef8398e7cbb9b3d4cc08bf":"NZI4Iw?u0K4TEL%g-;xaMyRj%MofOrs:nikW%2RP"}},"LocationType":"FileSystem","MediaType":"Video"},"234284d7e46b9e68a8587efbd214065c":{"Name":"Mary and The Witch's Flower","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"234284d7e46b9e68a8587efbd214065c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2017-07-07T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":61693870080,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"430447"},"VideoType":"VideoFile","ImageTags":{"Primary":"686cc544267e4cd4c289dc3e1e6876a9"},"BackdropImageTags":["7299e5f06f2c06f63bd948e9169f5aac"],"ImageBlurHashes":{"Backdrop":{"7299e5f06f2c06f63bd948e9169f5aac":"WgKd@+XCtSt6Rlxv~VIpbbjYWpt7MwIVNKkCWWf5^*aPW=kDRla#"},"Primary":{"686cc544267e4cd4c289dc3e1e6876a9":"dnHyUjohODtSO_bIV[kCD%aenhaesCWCozj[IuafR-bb"}},"LocationType":"FileSystem","MediaType":"Video"},"16dc1a3eeeba02eebb5c04a6ffad5b5a":{"Name":"[C] The Money of Soul and Possibility Control","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"16dc1a3eeeba02eebb5c04a6ffad5b5a","PremiereDate":"2011-04-14T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":11,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"239951"},"AirDays":[],"ImageTags":{"Primary":"6db256d65850d76a246890b118a4cea2","Art":"07f0085190cfac1a9349f90628fef974","Banner":"25a8ca6d4a90e49bfe2700334bf72180","Logo":"c931b5c1af59ab5aef5db9367c487ac9"},"BackdropImageTags":["f485833028ef67d2bdebfdf0f3179843"],"ImageBlurHashes":{"Backdrop":{"f485833028ef67d2bdebfdf0f3179843":"WWIhsvKl0f~qoJg3ktksxut7tRozNgtmt8t5ogad.8SjWE%MRjWV"},"Primary":{"6db256d65850d76a246890b118a4cea2":"dLJjuH}EiGR:ML?HE3IU+s%dPANaICIBxut5Mw-UxWkC"},"Art":{"07f0085190cfac1a9349f90628fef974":"NUDub-Acrrrp0f$f57$LX8bc-VNwM{V@Wqxut7bH"},"Banner":{"25a8ca6d4a90e49bfe2700334bf72180":"HJE2tt^-~q^,_4?H%N-pIU=~-WM{xbxHa$%2ofof"},"Logo":{"c931b5c1af59ab5aef5db9367c487ac9":"OUAwF=ay00of?bWBM{WBfQoffQj[j[ayM{j[xuWBRjofof"}},"LocationType":"FileSystem"},"23c3655febb23410cdf1f713eb277c38":{"Name":"The Sorcerer's Apprentice","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"23c3655febb23410cdf1f713eb277c38","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-07-12T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":65429528576,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"27022"},"VideoType":"VideoFile","ImageTags":{"Primary":"aa7b5bb2246482757bc4ab7823d08943","Art":"32afd6ce7894ec747134a4e9d6555ff3","Banner":"debe8ee509fd3696eb4de8ef3baea683","Disc":"f362826ce41b8c465fdde212ef994cfe","Logo":"d64e4bd97f1e77925f14b032a155cff4","Thumb":"dcfa043b36922bffa90921e1f24c7104"},"BackdropImageTags":["0e5dd4c2d0bca7cc9c799b534925c540"],"ImageBlurHashes":{"Backdrop":{"0e5dd4c2d0bca7cc9c799b534925c540":"WbI67stn1hKPyYkr?atSJDb_MxMxS#tRIVWGr=Mx%hbHoJRjxZof"},"Primary":{"aa7b5bb2246482757bc4ab7823d08943":"d65Y[,GGHY^zvdD*M}$yH|%L%yD,9G$~t,EmIUv~a1S$"},"Art":{"32afd6ce7894ec747134a4e9d6555ff3":"NsF6^54T-WNuxas:-pIVxuWVoLoLxaR*WBoLRkt7"},"Banner":{"debe8ee509fd3696eb4de8ef3baea683":"H95GIl.Aw~t-YRYkt-%g%hwvayTJR:MyIUIUM|Rj"},"Disc":{"f362826ce41b8c465fdde212ef994cfe":"ehHodlnP-=NH%Nf4WCt7oLWX?wWU?Gs.aexFs.NJRkoJoPbFt2jbM{"},"Logo":{"d64e4bd97f1e77925f14b032a155cff4":"OdG0:]4-WAxts:M{V[?aIoW.t7oeWBWB~B9ZW;xat7RkWV"},"Thumb":{"dcfa043b36922bffa90921e1f24c7104":"N95O$uNsIUj_MysAVss:kCRkazjs4Txbx[RitRWp"}},"LocationType":"FileSystem","MediaType":"Video"},"35539a3c0b82fd5d7ed15fc58a73d8d5":{"Name":"Nichijou: My Ordinary Life","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"35539a3c0b82fd5d7ed15fc58a73d8d5","PremiereDate":"2011-04-02T22:00:00.0000000Z","ChannelId":null,"CommunityRating":8.1,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"240291"},"AirDays":[],"ImageTags":{"Primary":"e6f2a572cf133b6f67481ea858ac75a1","Art":"bef70b019b425069916e508e655d2d05","Banner":"6b86eb2f08c96f6bff8916e616db2d80","Logo":"978498d92b416fabc1e4706c860336f6","Thumb":"9a7cb3248ecd48d6a1dd36bcf4d35cee"},"BackdropImageTags":["d38d2eee95f0a12e1d12e61c534411ee"],"ImageBlurHashes":{"Backdrop":{"d38d2eee95f0a12e1d12e61c534411ee":"WeR.}e^+ob-pxt-p_2ofWBt7ayt7R*j?oLWVofoz~pf5aeaekBt7"},"Primary":{"e6f2a572cf133b6f67481ea858ac75a1":"dqPGHX%gRi-o_4t7R+t8x^adaeofx]M{R*j[s:WBM_Rk"},"Art":{"bef70b019b425069916e508e655d2d05":"NNM7JfI8K9S$XAt70n4n?a%M-SR-S2D*of%LRjM|"},"Banner":{"6b86eb2f08c96f6bff8916e616db2d80":"H~R{fGtlRPr?x]xaof%gV?~qj[RjjYozofjtt7WB"},"Logo":{"978498d92b416fabc1e4706c860336f6":"O:KBRF00-;%LM{t7xuj[WBfQayj[j[j[%MWBj]ofWBofay"},"Thumb":{"9a7cb3248ecd48d6a1dd36bcf4d35cee":"NHK^[}=Fe8IoNXxv~p9ZE0sB-qVuEkXA$ixWx[V["}},"LocationType":"FileSystem"},"24092db5c444bbc4ae653bb426659527":{"Name":"Mission: Impossible III","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"24092db5c444bbc4ae653bb426659527","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2006-05-02T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":75248107520,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"956"},"VideoType":"VideoFile","ImageTags":{"Primary":"fc6561c2924a33c3f842ad3c7cb15ba5"},"BackdropImageTags":["1b7daa216f6bbc9f79b15165a6c585a0"],"ImageBlurHashes":{"Backdrop":{"1b7daa216f6bbc9f79b15165a6c585a0":"WFAKaS?b8_MdHqI9.TI:8_RPVrV@DiRk%2-:%Mi^9EX9-;tRSOMw"},"Primary":{"fc6561c2924a33c3f842ad3c7cb15ba5":"dmJb5H~q-q-qVXIpIqNHIUIUjZa#JAnOxGWVD*xutRM{"}},"LocationType":"FileSystem","MediaType":"Video"},"245b76ad09137d099a1f112063fa181c":{"Name":"Whisper of the Heart","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"245b76ad09137d099a1f112063fa181c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1995-07-14T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":66507411456,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"37797"},"VideoType":"VideoFile","ImageTags":{"Primary":"54334af60dab46fd72d209ea3732332d","Art":"0e57f6f3b3f7f752845c525b2366aada","Banner":"fd121a6b918322c091cf8483f87c278b","Disc":"8d8489c2e6e74bfbe6b36de79ce92bc9","Logo":"76692b682edbae9e1c291029cb8439eb","Thumb":"ae4b14d0633893456a7ac1a8db4529c5"},"BackdropImageTags":["7cd409b3acc7997a6dc56ad875d693d8"],"ImageBlurHashes":{"Backdrop":{"7cd409b3acc7997a6dc56ad875d693d8":"WiIN8JKPt5$KfNxY}@O?WAxCjExYaxIps-kBxZn$V@M|n,tQozaf"},"Primary":{"54334af60dab46fd72d209ea3732332d":"dLEp51%NGHyF;DoLennl7~M}veWA#;s;XSbZm6kWS$nN"},"Art":{"0e57f6f3b3f7f752845c525b2366aada":"NoIhB14U-=I-o#a$-+IVRlbDbGRlELtlWBxas,jb"},"Banner":{"fd121a6b918322c091cf8483f87c278b":"HTHVCc-%D$-sR:xR_JWUnn~nx=ofnVIT-y.4os%D"},"Disc":{"8d8489c2e6e74bfbe6b36de79ce92bc9":"eXQ,1#s#tVj_NPxSayoifPWCp3R=NMadoHoZj[NMa#t2S.W8oFozoF"},"Logo":{"76692b682edbae9e1c291029cb8439eb":"O^RMX|t9%Qofojj.obt8axWBj]j?azayohaxawj]fOa#ay"},"Thumb":{"ae4b14d0633893456a7ac1a8db4529c5":"NRFP4K$|0N?E^xjX$^oLD?M}-iafoys.M#IXoyxs"}},"LocationType":"FileSystem","MediaType":"Video"},"51049462b587c77bb481cc0e6924e086":{"Name":"Deadman Wonderland","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"51049462b587c77bb481cc0e6924e086","PremiereDate":"2011-04-15T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7.4,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"247997"},"AirDays":[],"ImageTags":{"Primary":"60d81a7390eb06586b6f2328781ea854","Art":"7b8d01e73d34281e0ef121b5340a5553","Banner":"069655e527dfdb93e6f44d84f9f4bc0f","Logo":"e6a249e5330590938db279bd83d06ff9","Thumb":"cc3e33a75e7f940d958d4f6dfb25d41d"},"BackdropImageTags":["714885d15d5b94e5a6280e000ac9456d"],"ImageBlurHashes":{"Backdrop":{"714885d15d5b94e5a6280e000ac9456d":"WiFF:J_4?boeRkt7x]f+t7ofofoJR*V@ays:t7fkkDo1oft7ofRk"},"Primary":{"60d81a7390eb06586b6f2328781ea854":"dBHv^*|;J7x[zp^PEM9]9aNe^6$gTL0z-U^5,@E39uxa"},"Art":{"7b8d01e73d34281e0ef121b5340a5553":"NXOW4_H?InO9S}$*4T?vxbR6WBoz%gW;ofoffQjs"},"Banner":{"069655e527dfdb93e6f44d84f9f4bc0f":"HeKS|kz=8y-nE2kCS~kC-:~Bv~n5%1IVR+o|X7xu"},"Logo":{"e6a249e5330590938db279bd83d06ff9":"OCI_QLRP.8RP%#RPyXw{AqbHayj[n%oLUabH#-oLn%fkWV"},"Thumb":{"cc3e33a75e7f940d958d4f6dfb25d41d":"NcRVqd=}V@kB?^kV.8S1tRs:RPs:%#WAj[ofM{of"}},"LocationType":"FileSystem"},"d0d532931007ea269f4d6a32d4dac0c2":{"Name":"Blue Exorcist","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d0d532931007ea269f4d6a32d4dac0c2","PremiereDate":"2011-04-16T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.9,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"248035"},"AirDays":[],"ImageTags":{"Primary":"84752bc186282b2eed71c4bb12e3b34c","Art":"f662e25a959c74a4f15bdb238c95cbfa","Banner":"1e52fd560431c578d480121a645f415b","Logo":"3c04a5162a820e403f42cce596d874f2","Thumb":"7fb5a06bdd315be41d7219ce2588e95d"},"BackdropImageTags":["876b5fa7d54a4bd6409d7a7a91d117df"],"ImageBlurHashes":{"Backdrop":{"876b5fa7d54a4bd6409d7a7a91d117df":"WI5jahThN1%4WYMwtiVpRjtTo#R,O=t2r;RijEnOS8jFs:SPadt2"},"Primary":{"84752bc186282b2eed71c4bb12e3b34c":"dBA-kzNzT{R+xuI9IAWA4m,Ax^IUtTx^%MM{EnE+$%-p"},"Art":{"f662e25a959c74a4f15bdb238c95cbfa":"NSIrjN%h~W~Vx_%g~p$$-;%Mt7j]E,IUM_NKbHR,"},"Banner":{"1e52fd560431c578d480121a645f415b":"HD72aMObMw%LR5WYkrnixs%%tmROV?x[MyX9x]RP"},"Logo":{"3c04a5162a820e403f42cce596d874f2":"OLEq^7s%^*JE~9oJ~BOvs*s*R.oej]j?A3oes*oIt2S6jX"},"Thumb":{"7fb5a06bdd315be41d7219ce2588e95d":"NNBXQEDNNGI@R4%fD+%MV?fSM_jFcFDi-:xZi_Si"}},"LocationType":"FileSystem"},"0b6b94c1ace4b6821be28992b68f1148":{"Name":"The Amazing World of Gumball","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0b6b94c1ace4b6821be28992b68f1148","PremiereDate":"2011-05-02T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":163,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"248482"},"AirDays":[],"ImageTags":{"Primary":"daf0d4029d4769b4c6e4d8f057632279","Art":"a6876457adb1f2ee11e1a93042219adc","Banner":"1abc1379bb9f185a61873a422027587f","Logo":"e48f39b2920e949212e709c55d9b97b2"},"BackdropImageTags":["82339206e2a14d0fa29678c95e206867"],"ImageBlurHashes":{"Backdrop":{"82339206e2a14d0fa29678c95e206867":"WYKmnNR4ofoz4:xG~pV?t7s.Vrn$xZNZogxFROR*^Ps+ofozEMIo"},"Primary":{"daf0d4029d4769b4c6e4d8f057632279":"dNM$@?}@t$?Z]tI_M{ni^Zxl#S-6vZrW-Bet^lkVOtoO"},"Art":{"a6876457adb1f2ee11e1a93042219adc":"NUNv#:8^xGx]FKEe-WsTMxVsX7Nw?^8_IptSt7oM"},"Banner":{"1abc1379bb9f185a61873a422027587f":"HVBCr.t70fM{^jxvI.Vsnm=}ofE1NH-VxaJ6NasD"},"Logo":{"e48f39b2920e949212e709c55d9b97b2":"OxOC{otQ?^s,?bRnwI%3oLNZWXs.oIWYR%ayX8j@w{j]R*"}},"LocationType":"FileSystem"},"c1160c3d45e5baa6c24057b2cc98d94f":{"Name":"Grimm","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c1160c3d45e5baa6c24057b2cc98d94f","PremiereDate":"2011-10-27T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.3,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":122,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"248736"},"AirDays":[],"ImageTags":{"Primary":"c9665c7df7ce3d9e31b6a1e6aeb68549","Banner":"f94e356cb68673e621391c2bff4e272f","Art":"e7931ff6c9624f93006ab088b3252ede","Logo":"179d20135d4c492709beacd8a313594e","Thumb":"d4e6648307f4839b4203d4c9b1512e3d"},"BackdropImageTags":["4de6f0870ca90a07006d86e2899ebe97"],"ImageBlurHashes":{"Backdrop":{"4de6f0870ca90a07006d86e2899ebe97":"W55}mmac9as.%1bc~pn~IpofxEay-ot7MzWCt6jFxCtRM{WCxus:"},"Primary":{"c9665c7df7ce3d9e31b6a1e6aeb68549":"dK9RFH.STK%#.SyDXSo}DiIURPRP4TDiVYR5H@R5r?e."},"Banner":{"f94e356cb68673e621391c2bff4e272f":"H57^f9wH0xyXH?#7%g9]M{-:xtRQR*NGW-%2nONG"},"Art":{"e7931ff6c9624f93006ab088b3252ede":"NEBz|9sA4nIBHrrY_4X88_b]obyCE4t7yCQ.obRQ"},"Logo":{"179d20135d4c492709beacd8a313594e":"OYBNvQt7RiRjWBoLRjtlozofafaeayay8^fkozofj[WBay"},"Thumb":{"d4e6648307f4839b4203d4c9b1512e3d":"NA8g?0IV02%2tRs*%GW?M}embItQMgbcotn#ajV{"}},"LocationType":"FileSystem"},"84d003600372f48f97e5610340ab8011":{"Name":"The Legend of Korra","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"84d003600372f48f97e5610340ab8011","PremiereDate":"2012-04-13T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9.2,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":82,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"251085"},"AirDays":[],"ImageTags":{"Primary":"84b70e97f0f125ecedff9e554cbc58fa","Art":"f953aef6f9b8602896795b9458eb8ce8","Banner":"fd84d13a87cc9f0ad95dfa9cb4c87de5","Logo":"a67d5cd00d84de6dca2d60b2db14937d","Thumb":"6958ec55588cfaa2ba24be2dbbafdafe"},"BackdropImageTags":["8a17db2055724d67bd82f6e547f6667a"],"ImageBlurHashes":{"Backdrop":{"8a17db2055724d67bd82f6e547f6667a":"W#MGnsx]xt-oR+xa~q%MozbIj[ofo~t7oLWXWVof%MWCaxs:aet6"},"Primary":{"84b70e97f0f125ecedff9e554cbc58fa":"dhMQ@oR._2~q-;IoIUt6%MRkNGoeRkoft7WCazRjM{a#"},"Art":{"f953aef6f9b8602896795b9458eb8ce8":"NeNc{9_4xuDj-;NGkrxur;Nys,jE_4-;Nci]t8WC"},"Banner":{"fd84d13a87cc9f0ad95dfa9cb4c87de5":"HwMQY5t6=_R+oz-pt6-oE3~pRjn}WEt8xZaxt7M|"},"Logo":{"a67d5cd00d84de6dca2d60b2db14937d":"OONJ?yMz-=IV%Ms:kC-:M{xtRjt7WEof?woyjrxtRjoeWB"},"Thumb":{"6958ec55588cfaa2ba24be2dbbafdafe":"NFEVsWTem*NGE2xF%hJArVxZE3r=?wOFMwM|E3V["}},"LocationType":"FileSystem"},"0e7e10390d701d8539fa7c2339e68bf1":{"Name":"Guilty Crown","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0e7e10390d701d8539fa7c2339e68bf1","PremiereDate":"2011-10-13T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.7,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":22,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"252471"},"AirDays":[],"ImageTags":{"Primary":"a5e7b9a313834f385533009023cfdad1","Art":"34a2244661bc81a49083b7a2c0208a68","Banner":"3a598c4a1a977f99cb7d134ccb1d0972","Logo":"51e570fe8551d704a43709a24eb5de2b","Thumb":"105637c76442c5be831f8f9c3bfa9333"},"BackdropImageTags":["eaa8c0a970022c2a505a4e0c2860ba3a"],"ImageBlurHashes":{"Backdrop":{"eaa8c0a970022c2a505a4e0c2860ba3a":"WNEM,-IYb{-PkD?v~WN#xv%M%g%LM}R:-;bwxaadD,VYx[S|r;IU"},"Primary":{"a5e7b9a313834f385533009023cfdad1":"dD8#Z.%N4TI:yFbcMwRPIURjxYsm$$nhS$bubwW;V?aK"},"Art":{"34a2244661bc81a49083b7a2c0208a68":"NJAvzp0LI:^PEQtPxuM{xuRkoJWB9a%1xuELxFe?"},"Banner":{"3a598c4a1a977f99cb7d134ccb1d0972":"H86bJow]D$I=8wxv_2-;xa?wxaM{IoMxt7xu%Ms:"},"Logo":{"51e570fe8551d704a43709a24eb5de2b":"OC6*dhofD%Rj%Mt7IUofj[ayayj[j[ay00WB-;t7IURj%M"},"Thumb":{"105637c76442c5be831f8f9c3bfa9333":"N=K-%x00of%MbHM{xaWBoeWBWBj[%MR*WBt7jtj["}},"LocationType":"FileSystem"},"252f9e80e9af0df5092bfefcedf05fa3":{"Name":"Steven Universe: The Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"252f9e80e9af0df5092bfefcedf05fa3","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":49659658240,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"537061"},"VideoType":"VideoFile","ImageTags":{"Primary":"e63661188d05bef86b017eebeead9f45"},"BackdropImageTags":["1ccc9d9a912a684f5d93edb83028c9fd"],"ImageBlurHashes":{"Backdrop":{"1ccc9d9a912a684f5d93edb83028c9fd":"WVINa#}]IURPtR%MPAK1VXxux]xu2vOYw@tkSgRitB$,W-OXT1R5"},"Primary":{"e63661188d05bef86b017eebeead9f45":"daGRoT#RJBt98wT0-BjbRLRjWAnMT{xDNaS#D,flkWXT"}},"LocationType":"FileSystem","MediaType":"Video"},"e8d607a81e4b0f2233415b27360ff0ee":{"Name":"Black Mirror","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e8d607a81e4b0f2233415b27360ff0ee","PremiereDate":"2011-12-03T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":23,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"253463"},"AirDays":[],"ImageTags":{"Primary":"240ad764fd31d176f2db99938d6d22a7","Art":"3949337bd50393a8d1f8864ecc982a42","Banner":"0d80c7af8c2e9f2077c21a2bfdf1a357","Logo":"bed4fe025078c29573b26edc44cc1750","Thumb":"05b811eb1ed54ab91b74d7d7c1dfce4b"},"BackdropImageTags":["8abb3bfc4d50b1e9a93f2c62e853c6d2"],"ImageBlurHashes":{"Backdrop":{"8abb3bfc4d50b1e9a93f2c62e853c6d2":"WE9jitni01M}tk%f%4s=NFRjoMxZ9Fxb%NR%RjNGxBRiXAxaWBIp"},"Primary":{"240ad764fd31d176f2db99938d6d22a7":"d34_tp-;ITM{-=j[Rjaf4mIUoet6M{ayWAWB-;xufkRj"},"Art":{"3949337bd50393a8d1f8864ecc982a42":"NPJkl#00-;D%_3t7IU?bt7%Mt7ofIUxuofxuayof"},"Banner":{"0d80c7af8c2e9f2077c21a2bfdf1a357":"HB7_D]D%M{?vDikCRiM{RP_NM{V@%MMxofWARjV@"},"Logo":{"bed4fe025078c29573b26edc44cc1750":"OQS6Plxuj[ofRjt7WB-;j[ayj[fQayay~qRjayj[ofWBof"},"Thumb":{"05b811eb1ed54ab91b74d7d7c1dfce4b":"NIF=XN6UN1-oI=x^_4yDxvb0t8g4I@%MR+Rkt7t7"}},"LocationType":"FileSystem"},"28fb8ac05042a104d9f5942d54b821d7":{"Name":"Zentrix","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"28fb8ac05042a104d9f5942d54b821d7","PremiereDate":"2002-07-02T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"253583"},"AirDays":[],"ImageTags":{"Primary":"5f3940a3b7648578dcf32da28c724ea4","Banner":"a0d645602a3a5a177ce10c954e7d1633"},"BackdropImageTags":["4f9556ebebf1492496a993df8821f765"],"ImageBlurHashes":{"Backdrop":{"4f9556ebebf1492496a993df8821f765":"W86RP~4mIT?INHoyx^VsNFxuepX8I9tmjEjEX9jbITtSs;M_tQkD"},"Primary":{"5f3940a3b7648578dcf32da28c724ea4":"dU72{+WRITr?T#j;nMV?NzozngRjxbWVR%ofn,V?j=oz"},"Banner":{"a0d645602a3a5a177ce10c954e7d1633":"HD9Gj-ExNEtmaJjIAvv}n3?ws7awX.RPRPNyRPa0"}},"LocationType":"FileSystem"},"ce708d9d01114d2a2fff6ae05f6a2fbd":{"Name":"Danger 5","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ce708d9d01114d2a2fff6ae05f6a2fbd","PremiereDate":"2012-02-26T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"253823"},"AirDays":[],"ImageTags":{"Primary":"7c0d39a4619724af61c1cbde7f38ef7a","Banner":"c0b05d518f7c4db63d550d50f1f57e26"},"BackdropImageTags":["6670d280efd9c647bf124f50f8fe17db"],"ImageBlurHashes":{"Backdrop":{"6670d280efd9c647bf124f50f8fe17db":"WdH^eV-o$$$*$LRj}@%1$%$%RjRQ$gS4Rkn$eoaK,;a#RQaei{ni"},"Primary":{"7c0d39a4619724af61c1cbde7f38ef7a":"dbON2l?H.8_29FaeWVjY%gofIURj_Nt7%2ofx]t7xaog"},"Banner":{"c0b05d518f7c4db63d550d50f1f57e26":"HFB.u:xZ0$EOI:t6bb%1NI~9ofIrNGNas:R+t6bb"}},"LocationType":"FileSystem"},"3ad466a34b90b0b4f7e8bfb25136dbfb":{"Name":"Another","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3ad466a34b90b0b4f7e8bfb25136dbfb","PremiereDate":"2012-01-09T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7.2,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"254349"},"AirDays":[],"ImageTags":{"Primary":"8e7cadd991903e34b67f7139b2034a95","Art":"9431b1ac1a2711f03ae11eda21f1bb17","Banner":"a2f5d36c0f1c81270160f53846ba2491","Logo":"7897ddf6fd76b963d71d8167c351936c","Thumb":"24e2a30a6071f8d073d9de3dce2ebc9a"},"BackdropImageTags":["0a9a99b40ebd4144c5533664952c22b0"],"ImageBlurHashes":{"Backdrop":{"0a9a99b40ebd4144c5533664952c22b0":"WZEVsa00xuoMM{xus+WrRjs.t7WVD%xvoIRjxuM{xvM{t7R+WBf7"},"Primary":{"8e7cadd991903e34b67f7139b2034a95":"d45F2lSd4U%30|R*=}s;=ys;JQR%M~V[j=ozD*s:xaM{"},"Art":{"9431b1ac1a2711f03ae11eda21f1bb17":"NuOMv$~qD%t6%MM{e.WBj[j[ayj[.RxuRPayofWB"},"Banner":{"a2f5d36c0f1c81270160f53846ba2491":"HIHvPI1wrq^5kV=_0#].tQ=KKNrsNcxZwdN^jFWB"},"Logo":{"7897ddf6fd76b963d71d8167c351936c":"ODF:u@oL?vj[.SoL?v$*jtj[a|bHjtj[_NfkWBfkWBj[WB"},"Thumb":{"24e2a30a6071f8d073d9de3dce2ebc9a":"N76RDi=xD*NdX7aKxtaxWYozV@Vt0y9us:%2niRj"}},"LocationType":"FileSystem"},"de3765027faccce518d04a74b5137ca7":{"Name":"Tron: Uprising","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"de3765027faccce518d04a74b5137ca7","PremiereDate":"2012-06-06T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":8.6,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":18,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"258480"},"AirDays":[],"ImageTags":{"Primary":"77af89df10bf43c2ee63177e4db8ba1f","Art":"7b1244b59ad4adf0fab7f32c4323ff13","Banner":"d8e1014e3b0014039470a950923a10f7","Logo":"17691da890e7694368147f7c79f5c05e","Thumb":"c9e98fa7309d20cef2182d29e5acadd6"},"BackdropImageTags":["e4fac750eb389b4d4398bfbe61bade2a"],"ImageBlurHashes":{"Backdrop":{"e4fac750eb389b4d4398bfbe61bade2a":"W83n9kRQRRx@QnRoMgtkn#R.pIjFQokWoyWEbvtQ*IRQS6xsVYSi"},"Primary":{"77af89df10bf43c2ee63177e4db8ba1f":"dB6b_SyD8wIon2ofnmaKI]XSs.nP9HR+.8xukqf+VsaK"},"Art":{"7b1244b59ad4adf0fab7f32c4323ff13":"NJBYT?8w.78_-;InLfg3WCxuI.$*.STJr]XRn$Sz"},"Banner":{"d8e1014e3b0014039470a950923a10f7":"HJA,wgrq^*0eY657X4E1NIyDxu$fs9RkE1D%IpW="},"Logo":{"17691da890e7694368147f7c79f5c05e":"OiI6H1tRtStRo#ozoz0KWAWCWCj]ayWB?GaKjFjFe.jZjF"},"Thumb":{"c9e98fa7309d20cef2182d29e5acadd6":"N87U#ZD$9E.TsoQ,tmQ,RjXnr?m+56wcwcIokrv}"}},"LocationType":"FileSystem"},"89885b7d97ea8e4958fe48ca931be674":{"Name":"Gravity Falls","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"89885b7d97ea8e4958fe48ca931be674","PremiereDate":"2012-06-14T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9.3,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":119,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"259972"},"AirDays":[],"ImageTags":{"Primary":"ed984697aed17007f5f733c6fc1ae4d3","Art":"17f3fcf1694e5079b015ab6bf625c2a8","Banner":"9be11aec6429dade8d6602f01388c8fe","Logo":"90a4e662de5cef3552b3bcf56ea4b380","Thumb":"e8617ad4464e2bd3a2def4b2937e9818"},"BackdropImageTags":["83a2a1d5e0c8bdc8739a1534c51f8da6"],"ImageBlurHashes":{"Backdrop":{"83a2a1d5e0c8bdc8739a1534c51f8da6":"WmKA1W%KxZxZt6-.}@oy%Lxst7xt-TNHozt6kVkV$%f*ozoea#R*"},"Primary":{"ed984697aed17007f5f733c6fc1ae4d3":"dPGag,=_ICbc0iWEt3jtcUJ8EOs:xcoKX4X8ti$%w0s:"},"Art":{"17f3fcf1694e5079b015ab6bf625c2a8":"NeMQO:tl%gxuIUIU.T-:-;odIURjN1xu%LRjj=kD"},"Banner":{"9be11aec6429dade8d6602f01388c8fe":"HcK-5#$f4ob^M{WCD%xaR+~qaxV?t7M{WqIoRjof"},"Logo":{"90a4e662de5cef3552b3bcf56ea4b380":"O?M%+WbG_4of-=ofV@%MayRQj[WVayj[tRayWBj[aeayfk"},"Thumb":{"e8617ad4464e2bd3a2def4b2937e9818":"NGG*4wEf0|5UI:R6Eg_0,@J7M}S4E_O@=_#S%0Nb"}},"LocationType":"FileSystem"},"25f2d232712c9789692445b7b56e9197":{"Name":"Evangelion: 3.0+1.0 Thrice Upon a Time","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"25f2d232712c9789692445b7b56e9197","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-03-07T23:00:00.0000000Z","ChannelId":null,"CommunityRating":8.7,"RunTimeTicks":93461118976,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":8,"IsFavorite":false,"Played":true,"Key":"283566"},"VideoType":"VideoFile","ImageTags":{"Primary":"0b6367177a31650cecf59655e6a75f9d"},"BackdropImageTags":["8a2eaf920be939fc18a8fe9f312f2719"],"ImageBlurHashes":{"Backdrop":{"8a2eaf920be939fc18a8fe9f312f2719":"WfR:E8%Moe-;WC?b~qtQWBoeayj[xut7j?j?aeWA-=Rkoet7azt7"},"Primary":{"0b6367177a31650cecf59655e6a75f9d":"dXSY{p_3of_3~qt7WBoft7j[ofof-;WBayj[t7t6WUj@"}},"LocationType":"FileSystem","MediaType":"Video"},"1e33c6b6a2a1a8b3b759906d676141da":{"Name":"Psycho-Pass","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1e33c6b6a2a1a8b3b759906d676141da","PremiereDate":"2012-10-11T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.5,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":41,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"262090"},"AirDays":[],"ImageTags":{"Primary":"a17aefd167086854ab3b5003013d7287","Art":"9ab568ae5bde3e8350d36ae335d69ab7","Banner":"a9ec65fec759004f68fc17aef9ff5f7e","Logo":"7cf92be692d9e6b0d32c25b4a4ae1521","Thumb":"ea07f39d916ba009c87765b248d25235"},"BackdropImageTags":["de8d39a3303bd871840478c5024f836d"],"ImageBlurHashes":{"Backdrop":{"de8d39a3303bd871840478c5024f836d":"WIAT+dxZ0LJA-Axa9^Vs-otRIVRiE2RjxXs9Sho#-AWVEMoL-oj["},"Primary":{"a17aefd167086854ab3b5003013d7287":"dHAd}%sl5QTJuitRk=NbJ7kqo}bbr?pINGt78wpI$%M{"},"Art":{"9ab568ae5bde3e8350d36ae335d69ab7":"NDAdAnIA00xu-;WVozt7?bRPD%%M%MxuR*t7ofRj"},"Banner":{"a9ec65fec759004f68fc17aef9ff5f7e":"H~Qcn{%MD%xuofof%Mf6%M~qt7RjofWBayfkfPt7"},"Logo":{"7cf92be692d9e6b0d32c25b4a4ae1521":"OF8NqbfQRjWBj[t7ay%Mj[offQayofay00j[ofofayRjj["},"Thumb":{"ea07f39d916ba009c87765b248d25235":"NA5##GkEI7W9NHx]xvWBRioIM|t8ohayofofWBj["}},"LocationType":"FileSystem"},"a7a4eb05cae0d7e0b3b73a9757d0192d":{"Name":"House of Cards (US)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a7a4eb05cae0d7e0b3b73a9757d0192d","PremiereDate":"2013-01-31T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2013,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":73,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"262980"},"AirDays":[],"ImageTags":{"Primary":"3c1549a569f9780c3f99a53306791b25","Banner":"afcaa94569f0bc20768cd3e6373bc878"},"BackdropImageTags":["9212c3c099be4cac8d46796f78480fea"],"ImageBlurHashes":{"Backdrop":{"9212c3c099be4cac8d46796f78480fea":"W46u07xa8^%g004TjGaeRiM{%gx]4nM_WCWW?b-=%hWCM{t7RPRP"},"Primary":{"3c1549a569f9780c3f99a53306791b25":"d68Nqf-;g3-;~Wof9FoKMwWUD%V@-;tS-;xuogt8-;xa"},"Banner":{"afcaa94569f0bc20768cd3e6373bc878":"HA97hcxYITkCE0NHVrs:S6_4M_InxvNGNHnhs:tR"}},"LocationType":"FileSystem"},"91e20dedcf63609a0efc38b77840c6e6":{"Name":"Hellsing Ultimate","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"91e20dedcf63609a0efc38b77840c6e6","PremiereDate":"2006-05-11T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"263688"},"AirDays":[],"ImageTags":{"Primary":"0c0dd985abf23e3578395f52c0c943f0","Banner":"dfc00159e58a8eed6faec6738adefe00"},"BackdropImageTags":["0c5bba3157b3d73c65369042616b810b"],"ImageBlurHashes":{"Backdrop":{"0c5bba3157b3d73c65369042616b810b":"WQJHN_,-xn.7In~p?G?F?at6IUoII..7NGDixaRk-:xuVsRP%Mt6"},"Primary":{"0c0dd985abf23e3578395f52c0c943f0":"dDBVkg^PR5$jO=X5XSbv01RQ%2oL9aS5V@RPbvofR*Rj"},"Banner":{"dfc00159e58a8eed6faec6738adefe00":"H55#69%20M9a-o^*ay4pE2^*t79HD*%2?Gt6D*IV"}},"LocationType":"FileSystem"},"78accd8acbc65ae2bff9adbaf34ee9bf":{"Name":"Bravest Warriors","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"78accd8acbc65ae2bff9adbaf34ee9bf","PremiereDate":"2012-11-07T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.2,"ProductionYear":2012,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":40,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"263975"},"AirDays":[],"ImageTags":{"Primary":"2a51c524e08a92ef276a282c0f4597d4","Art":"e2388562b9fa77c06d63469776129c6a","Banner":"701f6b95c7af427f1552846eb17d868b","Logo":"f3621b720aec4c388f0b00e161546dd5","Thumb":"fccf9f8abd16edc8fee0480272881017"},"BackdropImageTags":["781ce0fe9f1e750930be6f4586d36f95"],"ImageBlurHashes":{"Backdrop":{"781ce0fe9f1e750930be6f4586d36f95":"WTKl{w^P}?={%3^+=uxt9^-ox[wvRjofa$xYWTnh?bt5-TofNGxs"},"Primary":{"2a51c524e08a92ef276a282c0f4597d4":"dNIg_$^j]p~BPHocMzjE2uJ8ItIpnzWB=ySgIUs,X4X9"},"Art":{"e2388562b9fa77c06d63469776129c6a":"NrKBQ^JC-Cxtjdj?~Eodb[xaX5V[.9wbkWkXs:WU"},"Banner":{"701f6b95c7af427f1552846eb17d868b":"HUC*BJ4FRy;A9%%Xx-Kia1%|k.Inslb_b=x.THS4"},"Logo":{"f3621b720aec4c388f0b00e161546dd5":"ORBPEUR7-qaM%3t7w$sER%tjbYbYt7Rj}LR%oybYWUoySJ"},"Thumb":{"fccf9f8abd16edc8fee0480272881017":"NJFG2tAUPWjKIW?F1?S@s.m,WEo|0dr.xGr^o|Nu"}},"LocationType":"FileSystem"},"72c08a9d538b0f3eb83f0014d4dc710c":{"Name":"The Leftovers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"72c08a9d538b0f3eb83f0014d4dc710c","PremiereDate":"2014-06-28T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":28,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"269689"},"AirDays":[],"ImageTags":{"Primary":"9cf96586fa5bd50831fe6ada161ac3fc","Banner":"5fa53cabbab9f6e29edd29625eb9cadb"},"BackdropImageTags":["6146090f1ad55340a687c6a692020464"],"ImageBlurHashes":{"Backdrop":{"6146090f1ad55340a687c6a692020464":"WuKnh{j]ofofj[of~qWBRjWBt7of?bNFM{xuWBj[-;Rjj[t7Rjt7"},"Primary":{"9cf96586fa5bd50831fe6ada161ac3fc":"d;K-qQRjM|og~qRjRjof%MayRjofM{ayofj[t7ofofWB"},"Banner":{"5fa53cabbab9f6e29edd29625eb9cadb":"HkKd}L4.?bIURj?bIU-;Rj~qD%t7t7ayt7M{t7ay"}},"LocationType":"FileSystem"},"27030109d7f8e052227796a27b6c5033":{"Name":"Snowden","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"27030109d7f8e052227796a27b6c5033","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-09-14T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":80890880000,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"302401"},"VideoType":"VideoFile","ImageTags":{"Primary":"08218b40ddee8eaa577cbfc183a2a49e"},"BackdropImageTags":["0cc3aef70de41c801e1d46c6d79a33cd"],"ImageBlurHashes":{"Backdrop":{"0cc3aef70de41c801e1d46c6d79a33cd":"W56u06x]Dkxa%MIW_Nx^IpxaxaR.s:ozWC%MxuR*s;ayWBt7xuWB"},"Primary":{"08218b40ddee8eaa577cbfc183a2a49e":"dMAn1J?vb_o~_N-;kWS5NGxus.M{bcbcjYj[%MWCRjt7"}},"LocationType":"FileSystem","MediaType":"Video"},"24c3e2784d36666381dfcc8d29b2d6ba":{"Name":"Outlander","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"24c3e2784d36666381dfcc8d29b2d6ba","PremiereDate":"2014-08-08T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":67,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"270408"},"AirDays":[],"ImageTags":{"Primary":"b98ca02435b110a5a08b284ff6a59489","Art":"cf83258f47a9a760b1a07ff3e78389ff","Banner":"30ba53681fa4433237ba71b15939c636","Logo":"c66cac673628163a99392950cef2b6e8","Thumb":"e162d0eaf9f48cd4d9c526d8c2ae06de"},"BackdropImageTags":["b723f48bc6e520d6e4fdf6f39502a662"],"ImageBlurHashes":{"Backdrop":{"b723f48bc6e520d6e4fdf6f39502a662":"WxFPvcxtRQtRt7oz_Nt6Rjogofoz%gWBWBWYbIt7x]WCflofj[oz"},"Primary":{"b98ca02435b110a5a08b284ff6a59489":"dlEff.oKt7xu~qofoft7-;ozRjfkxuj[RjWBt8WBayWB"},"Art":{"cf83258f47a9a760b1a07ff3e78389ff":"N-L4mLae~qtR%Mxt-;WBazt7RjofaeWBRjt7ofWB"},"Banner":{"30ba53681fa4433237ba71b15939c636":"HfE{U#?bNGg3s:n$oKozNa~q-;ozxuofRPWBt7oz"},"Logo":{"c66cac673628163a99392950cef2b6e8":"O_QS@,oLj]ofj]ofj[t6j[fkayfQfQfQ_4a}ayazaya|ay"},"Thumb":{"e162d0eaf9f48cd4d9c526d8c2ae06de":"NTCja?_MbbW;WURi?^%gkCbbozofkrXAbckDozt7"}},"LocationType":"FileSystem"},"3d04e2c3d694c802aa2518f8cd09f132":{"Name":"Steven Universe","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3d04e2c3d694c802aa2518f8cd09f132","PremiereDate":"2013-11-03T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.4,"ProductionYear":2013,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":154,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"270701"},"AirDays":[],"ImageTags":{"Primary":"d6ad8617a86b8b45b4fc2e98c265daa4","Banner":"bbba20421f0c3b52a5b1294f37d383a1","Art":"c4ffb90005c2ba11be9276ffadb6a27a","Logo":"30e03a9faa221de8f55ef1607e6c0889","Thumb":"82de0b56a7b87c64169d5003aaf2a32c"},"BackdropImageTags":["2dfa79cb6d0d0857a4f0796e59c21593","aeb9603ed48bba9babd6acb67d007393"],"ImageBlurHashes":{"Backdrop":{"2dfa79cb6d0d0857a4f0796e59c21593":"WvMtjn_3.8jGjF%M_NoMt7s:jFxu-;V@M{bHWUof%MxuWBozoyRj","aeb9603ed48bba9babd6acb67d007393":"WvMtjn_3.8jGjF%M_NoMt7s:jFxu-;V@M{bHWUof%MxuWBozoyRj"},"Primary":{"d6ad8617a86b8b45b4fc2e98c265daa4":"dYMHSs8_T1?a~p-ojct8%M-:X9e?_3xuR.NINexuxuR+"},"Banner":{"bbba20421f0c3b52a5b1294f37d383a1":"HnI4CXwbE4aeM{aft7R.en~BxGIpocRjIpWXR*so"},"Art":{"c4ffb90005c2ba11be9276ffadb6a27a":"NHNT8z4UTKIoRPI9Z{lA8{#jDiIV%ycGv~w@o#Io"},"Logo":{"30e03a9faa221de8f55ef1607e6c0889":"O-LWa{t6N0WUE1WCIptQWFR-ocjYs.WB0Lf8s+WBozayof"},"Thumb":{"82de0b56a7b87c64169d5003aaf2a32c":"NEHULtmTE3]%#BtmEN%FOq5,%2Xn=z$,}T=^Me$h"}},"LocationType":"FileSystem"},"973fed0944a6044c8963f8ba7731bd01":{"Name":"Bee and PuppyCat","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"973fed0944a6044c8963f8ba7731bd01","PremiereDate":"2014-11-05T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.8,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":5,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"272090"},"AirDays":[],"ImageTags":{"Primary":"b99676ac6114d1eaefb35824f41503bb","Banner":"fb881ad69d90142163e9d832179dda81","Logo":"92ac07069aaf25b6b72fe900dd3a0d13"},"BackdropImageTags":["0595543c051e44353f1eb791dbdb968a"],"ImageBlurHashes":{"Backdrop":{"0595543c051e44353f1eb791dbdb968a":"WiMt]:%3GZcF-6%g1URob]W?s,ofDqR.#Rn5R*V[tUjbr]WFW.R-"},"Primary":{"b99676ac6114d1eaefb35824f41503bb":"dYS$Gs_3t+_3-qoLoyof*IkCVskW_MozV[ofR5fkV[V@"},"Banner":{"fb881ad69d90142163e9d832179dda81":"H#JZ_$%3WF-nSdsr%2WYen~DahWFs:R+oMs:bIs."},"Logo":{"92ac07069aaf25b6b72fe900dd3a0d13":"OzR.WBof*IofoJozMds;aykAofa#afj=k9j[jvafadj@kD"}},"LocationType":"FileSystem"},"f5d04fb2b365e6f641fe8c403b6ca481":{"Name":"Beyond the Boundary","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f5d04fb2b365e6f641fe8c403b6ca481","PremiereDate":"2013-10-02T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":14400000000,"ProductionYear":2013,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"272697"},"Status":"Ended","AirDays":[],"ImageTags":{"Primary":"4d6955a8e0dfff9d6ad9f505229a909b","Art":"6840b04e2b21561d392131560a0ffe52","Banner":"fb11e40a67621565bf6a47fdb2039768","Logo":"c1638c8a005ce0c6305a4219163c6990"},"BackdropImageTags":["1a9cc61059e17992d031b95cade9d1d6"],"ImageBlurHashes":{"Backdrop":{"1a9cc61059e17992d031b95cade9d1d6":"WtI|j.ICNHxti{$+0fxtofWBbbRkE2t7s.WBWqR*.7M{RkbIaxof"},"Primary":{"4d6955a8e0dfff9d6ad9f505229a909b":"djJt3U~V-n$~~V%2WAV@t7kCIpMxxttQs:V?WFjvWBRj"},"Art":{"6840b04e2b21561d392131560a0ffe52":"NC9?dy0#Na^P57?Fm,Nbf+wcX9R*57s,wvNHt6NH"},"Banner":{"fb11e40a67621565bf6a47fdb2039768":"HhDlzJnU?d-q-mxvX7%LS1oiW-Waofafflofe=oe"},"Logo":{"c1638c8a005ce0c6305a4219163c6990":"OB7UI{t7M{fQt7xuRj%Mxut7ayWBj[of00t7xuWBWBRjt7"}},"LocationType":"FileSystem","EndDate":"2013-12-17T23:00:00.0000000Z"},"5cd3d5df7206c97eeaf5c17cd3388db0":{"Name":"Better Call Saul","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5cd3d5df7206c97eeaf5c17cd3388db0","PremiereDate":"2015-02-07T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":50,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"273181"},"AirDays":[],"ImageTags":{"Primary":"903a8f20bed2d117296afc43b716fb8d","Art":"f6502959ff20899408bacb5db7b15767","Banner":"9da6c5f55160bff77a309d86b7db649c","Logo":"671396298cf93e3707d71cfc72395857","Thumb":"33e09c28eb4d668f98eb0818b4d781ca"},"BackdropImageTags":["0048104e31a7e49a15e0c46dbf385f83"],"ImageBlurHashes":{"Backdrop":{"0048104e31a7e49a15e0c46dbf385f83":"W24U$$-;E0xbg4In~X%MIoWVj[Ri9Zjw%3NZiws:0KIVx]axi^xu"},"Primary":{"903a8f20bed2d117296afc43b716fb8d":"dC8:@l579Z^j~VE2IU-oS4soniNa57-UxGEM9a%2t7M|"},"Art":{"f6502959ff20899408bacb5db7b15767":"NgM~n5[A$zJWOrxs?:O;f~VuxGt5FDyWj=n-M{WU"},"Banner":{"9da6c5f55160bff77a309d86b7db649c":"HB8|bB=}NMt19a0gELxV$j_0xbWGtLIpIpR%oIw^"},"Logo":{"671396298cf93e3707d71cfc72395857":"O,QInmVy%%tPx{x?tS.4tNRTRmbGV^V^tRj@axkAV[V^j?"},"Thumb":{"33e09c28eb4d668f98eb0818b4d781ca":"NBBMY$R44:x]M}e@yDEMNGt6t5t60NRo-:RjoH-o"}},"LocationType":"FileSystem"},"0815bc7861b6447446cbeb4a3e4c0f62":{"Name":"Constantine","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0815bc7861b6447446cbeb4a3e4c0f62","PremiereDate":"2014-10-23T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"273690"},"AirDays":[],"ImageTags":{"Primary":"73fc733bf95c0eaba1f8235abef27517","Art":"31ae03fe24f7a776ea6ac8822abe1577","Banner":"42f452f7e27599075dfeb61b12d79d54","Logo":"beef7810b8cdfd13ad8066ba5f3c58a1","Thumb":"e4364bc08192b13e26ce316383ee6f17"},"BackdropImageTags":["e683446aaca462f00c9be00d8a2986bc"],"ImageBlurHashes":{"Backdrop":{"e683446aaca462f00c9be00d8a2986bc":"WF9jT4^*4:0MIp%1IoRkj]R*ax%0M{WAxtxuR.E2t7ogR*Ris.xu"},"Primary":{"73fc733bf95c0eaba1f8235abef27517":"dUE25]$%0+Em-=s:ElOG5ZNexvtRS%flbcg4%Ms.V]S6"},"Art":{"31ae03fe24f7a776ea6ac8822abe1577":"N~M;%g}tXSOrWpxuo}tRa}i_jZWVX-b^oLaLaej["},"Banner":{"42f452f7e27599075dfeb61b12d79d54":"HZMEG$=Z$g%0r=$jEQ$fS#}DnkWDf7R+xFNcR,t5"},"Logo":{"beef7810b8cdfd13ad8066ba5f3c58a1":"OURp8-ofWBt7Rjj[Rj%MfQfQj[fQayay~qj[ofayofofof"},"Thumb":{"e4364bc08192b13e26ce316383ee6f17":"NA9%L{9G9t_39F%00KXSs;rWx]Ipi{%2S4IooLs:"}},"LocationType":"FileSystem"},"377d37eade368f4aa675958903680da8":{"Name":"Rick and Morty","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"377d37eade368f4aa675958903680da8","PremiereDate":"2013-12-01T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.3,"ProductionYear":2013,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":51,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"275274"},"AirDays":[],"ImageTags":{"Primary":"1ba1050ac14a42d1cab796e8ff8d80f7","Art":"f6c47c9114142acb743a7a3c0f7b5562","Banner":"734629d370100cdff1a24cbbeb175e95","Logo":"78450a6ae11c1294b3c4359670387ad7","Thumb":"c44492fb943be587313d129d289b950b"},"BackdropImageTags":["7cccc12bf609eff44c2f8da503da99f4"],"ImageBlurHashes":{"Backdrop":{"7cccc12bf609eff44c2f8da503da99f4":"WyOC1NR9WUxrW.%G~NM~RnovX5bqEyR*R.S4bukU-oWXobn+j[t5"},"Primary":{"1ba1050ac14a42d1cab796e8ff8d80f7":"dGA^mp--8$IH*~nlKgOpviahTFSxQ1XkU~j]8~M}x?t6"},"Art":{"f6c47c9114142acb743a7a3c0f7b5562":"NgKUiw4U?vr]%NpJ$,OA-qobxt%MOrV[RPa$NFxt"},"Banner":{"734629d370100cdff1a24cbbeb175e95":"H~LC{|%JX%rtbX${tMxrr^~8t6S{nQWUt2t3tOs."},"Logo":{"78450a6ae11c1294b3c4359670387ad7":"OiJ1TAoN,_Ed$,Sc$mJONFfkjKo3W-ah}]xJn,SJWEj[n,"},"Thumb":{"c44492fb943be587313d129d289b950b":"NPEfG_%K00WY-pxU$df4Wpt7o#RjMxV@xZt6SORo"}},"LocationType":"FileSystem"},"a41ed19dc5d1a32f3abc21292d017a88":{"Name":"Aldnoah.Zero","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a41ed19dc5d1a32f3abc21292d017a88","PremiereDate":"2014-07-05T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.6,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":24,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"279827"},"AirDays":[],"ImageTags":{"Primary":"9ae341ddc6351e5c2c8d808fcd7d11a3","Art":"1b64327c4e37db851582782ebc9c4d0a","Banner":"31f5134152b2bb18125c12bfa90ad1c1","Logo":"484dabba8a3db49997a74467e10696d0"},"BackdropImageTags":["5c652f8334dd92beb9b05b883606f55f"],"ImageBlurHashes":{"Backdrop":{"5c652f8334dd92beb9b05b883606f55f":"WrJRR3-=s7RjIWxu~qxvs.t7R+oJkCfkWFs:RjjYt8jtV@aeRkkB"},"Primary":{"9ae341ddc6351e5c2c8d808fcd7d11a3":"dSIq$9^4QlxD~B$erVaeXU-p%0IUR.IUWBofnhRQM{tR"},"Art":{"1b64327c4e37db851582782ebc9c4d0a":"N]Mt2G_NxtIUbHt7tmxtjFR*bHo0oJM{afoyflae"},"Banner":{"31f5134152b2bb18125c12bfa90ad1c1":"HSAn4pEU$yM_x^IAkWs:kD%%R.s+SNj]aJX9jboK"},"Logo":{"484dabba8a3db49997a74467e10696d0":"OM95i]snj@S3azsnazWWoKfQa|jtjtfQ1eS3azsnj@WWoK"}},"LocationType":"FileSystem"},"a3e2d492398b47c3616c3d310056be91":{"Name":"Akame ga Kill!","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a3e2d492398b47c3616c3d310056be91","PremiereDate":"2014-07-06T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":24,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"280329"},"AirDays":[],"ImageTags":{"Primary":"cdb00937717160dedbfa3d3720e7c5c9","Art":"047d1895ee04d72021952550980c8ea6","Banner":"1e32606693b22cef4d52425570672a9d","Logo":"8cef452c4aafbd533ba157bbd0da7bdb","Thumb":"a0282d16a62b0cb816224027e816e2e5"},"BackdropImageTags":["ab60c636c4f9e5f0c77903ab816f249c"],"ImageBlurHashes":{"Backdrop":{"ab60c636c4f9e5f0c77903ab816f249c":"WE8NkLWB00xu_3M{D%ay-;oLD%WVR*ofs:M{WpxuR*f6s:bHbHjF"},"Primary":{"cdb00937717160dedbfa3d3720e7c5c9":"dLFENC}[RO%L}r$js;%29]JnS#rsTeTJEynOITs,kWso"},"Art":{"047d1895ee04d72021952550980c8ea6":"NWHB-:_NRjbH%Mi_kCn%W;j[aeof?v-;M{Mxt7t7"},"Banner":{"1e32606693b22cef4d52425570672a9d":"HaF|fI^Q-BOBIonin4R5M{}@$+ofOBEMsnV@Vsni"},"Logo":{"8cef452c4aafbd533ba157bbd0da7bdb":"OxL|[iWB_Nxuspt7xus;WBRjWBoLogof-;RjtRfkM_j[M{"},"Thumb":{"a0282d16a62b0cb816224027e816e2e5":"NWEUDl}t$%X5NGNG=KwysBWVRjjFsCNHRkNGNHs:"}},"LocationType":"FileSystem"},"bcd7e8bb4ef4d9f07a19ccc5f43415fb":{"Name":"The Expanse","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bcd7e8bb4ef4d9f07a19ccc5f43415fb","PremiereDate":"2015-12-13T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":55,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"280619"},"AirDays":[],"ImageTags":{"Primary":"f00768691d8fd74f71c870c5bb0342d8","Art":"f64cb62675561a2f7ef304833a7fa8a8","Banner":"3cbbb78722a3d491055e5bf193e844ba","Logo":"a4d268f44f56dd62b2d21a9cfb1f0fa9","Thumb":"2dea9c37790d040e34e9f28c66f0c6a3"},"BackdropImageTags":["61055d57c484b786fdba10ac77bc9bf0"],"ImageBlurHashes":{"Backdrop":{"61055d57c484b786fdba10ac77bc9bf0":"WE997xt,^wtm%Xx]cVx]yWtP%yyX%eo}?^xt%Lx]yYogMvkTIYSP"},"Primary":{"f00768691d8fd74f71c870c5bb0342d8":"dTF$9L8{E1Sh.8IVw^e.0Lxu-pniI:RkX8t7xuM|NGoz"},"Art":{"f64cb62675561a2f7ef304833a7fa8a8":"NlLNc0tk00-;.8ayOYNGITtRxuoLxuxZofofs.R*"},"Banner":{"3cbbb78722a3d491055e5bf193e844ba":"HcGuq101?aELIoxaRP-pD*_2My%2E1kCs:Rj%2M{"},"Logo":{"a4d268f44f56dd62b2d21a9cfb1f0fa9":"O|MH0=NIj[a#bIj]ofxaWCWVayWVa|j[_Ns.ayoLayj?ay"},"Thumb":{"2dea9c37790d040e34e9f28c66f0c6a3":"NW8O;-s;oLjYaeoz*0WBWAaeWBkDpJNFRia|WBWq"}},"LocationType":"FileSystem"},"3aa7c1b968bff49ae3610cf1820afdf0":{"Name":"How to Get Away with Murder","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3aa7c1b968bff49ae3610cf1820afdf0","PremiereDate":"2014-09-24T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":90,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"281620"},"AirDays":[],"ImageTags":{"Primary":"b42f8def21824bc05fe2c44cfef586ed","Banner":"aa1fb0848c7fb2e3f61262eed379cc0c"},"BackdropImageTags":["e7603054da630a5a9462f3c119d73df9"],"ImageBlurHashes":{"Backdrop":{"e7603054da630a5a9462f3c119d73df9":"W884MX_NtR=|t,?H?Htlt7-p.8%29F9ZIAM{V@RP9ZIAIA9ZIAM{"},"Primary":{"b42f8def21824bc05fe2c44cfef586ed":"dDATNBw{Di?bt7I:NGoL00SgNGD%?H%2IAo1%gkC%Mxu"},"Banner":{"aa1fb0848c7fb2e3f61262eed379cc0c":"H~Qch$M_t7?b-;?bt7aeIU~qWAt7xut7x]ofaeRj"}},"LocationType":"FileSystem"},"61ecb9de5ca7ee074e8e7cb935fe6142":{"Name":"Over the Garden Wall","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"61ecb9de5ca7ee074e8e7cb935fe6142","PremiereDate":"2014-11-02T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"281643"},"AirDays":[],"ImageTags":{"Primary":"2cb1991c034bbe5123c30a5bcbc1e915","Banner":"e4a7b96ee6ebe2b8a691d53907063f81","Logo":"44aa37d0a31193581c6fa828bede9535","Thumb":"c0d0939dc447392ba15e0c25c2e4aac0"},"BackdropImageTags":["01e4c6fe8f189c7235b5358d5a037d46"],"ImageBlurHashes":{"Backdrop":{"01e4c6fe8f189c7235b5358d5a037d46":"WbCr}yR*0Nt6?FWC%0R+NIs.odbHIWWC%KoeM|fkofWVa{oLWCay"},"Primary":{"2cb1991c034bbe5123c30a5bcbc1e915":"dVFF1r%10MR*^%oeM|s.9bj@xtR+4;WVt7R+9bRkt6t6"},"Banner":{"e4a7b96ee6ebe2b8a691d53907063f81":"HFC$iX%0RhIU%L-UIpRQIp~Uxst3Ios;%1IpE2Rk"},"Logo":{"44aa37d0a31193581c6fa828bede9535":"OVJtk+t6?wR+?wt6_3-pWWR,WCRkj[j?%NWWWBoeWBayae"},"Thumb":{"c0d0939dc447392ba15e0c25c2e4aac0":"N025ofNb9cs.s.jZR+aybHW;R+snD,n%-ns.NIoL"}},"LocationType":"FileSystem"},"145354420412a36a933cc7553858bc2a":{"Name":"Marvel's Daredevil","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"145354420412a36a933cc7553858bc2a","PremiereDate":"2015-04-09T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":39,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"281662"},"AirDays":[],"ImageTags":{"Primary":"f393dae9e8f32b9e4d5fb9c02a254003","Banner":"1f9244c330b83841f444ce335fa60924","Art":"6a1f0a683261df61d7f800f8278a93ab","Logo":"61ec60834c8d106a0e0902d1b89de7ec","Thumb":"0165f3264adb6735acde2aaa630f7c70"},"BackdropImageTags":["d028151fcdd1071ba150c47fe0c2fa82"],"ImageBlurHashes":{"Backdrop":{"d028151fcdd1071ba150c47fe0c2fa82":"WFB-f7Jn1cbc=d|_R.xGofw{R-ODJRjGNwbHSOF0t7R+S3JTs:j]"},"Primary":{"f393dae9e8f32b9e4d5fb9c02a254003":"d97A9|s:Fxof%1ofWVa#1_bb#mSgJTaesobH:,n%Jkn%"},"Banner":{"1f9244c330b83841f444ce335fa60924":"HL7A[ZrVROXnOaWAi]p0V=-tnMV=T0S%jEnNo$W9"},"Art":{"6a1f0a683261df61d7f800f8278a93ab":"NjLqIc9Z~q?bozjY_3%Mj?-;tRIUyDDioKR*Rjof"},"Logo":{"61ec60834c8d106a0e0902d1b89de7ec":"OpNun.VsyDjt%ge.x]nO.8ozR5V@kCoz?^kCM{ozRjofV@"},"Thumb":{"0165f3264adb6735acde2aaa630f7c70":"N99;yW$j1uNZAqoL$+ofJ6NasAw{F_,@wJEzwdW;"}},"LocationType":"FileSystem"},"8ac650eea4408ed075b978c457af1a61":{"Name":"BoJack Horseman","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8ac650eea4408ed075b978c457af1a61","PremiereDate":"2014-08-21T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2014,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":76,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"282254"},"AirDays":[],"ImageTags":{"Primary":"a3451fad00744bd4fea248f4a29d1f5c","Art":"032cf47ad064765af4c48012000fcb8c","Banner":"fb59966a506eb19a0e9bd855b5346639","Logo":"9c0a7ca77bd0adc758c420d4900b8c55","Thumb":"4229748e44ddaeffcf20b9246e3a2561"},"BackdropImageTags":["79e6af1136e79af83ffc52c301c9ecde"],"ImageBlurHashes":{"Backdrop":{"79e6af1136e79af83ffc52c301c9ecde":"WaI$1hx]K4x[rXsmJ|t7r;NFRjaK2^kXOZNGs8Sh?GofjEs.W.WA"},"Primary":{"a3451fad00744bd4fea248f4a29d1f5c":"d79s@:xu9ZtR-oV[nioe00n%x]WCELtQ%LV[0yf*-9sA"},"Art":{"032cf47ad064765af4c48012000fcb8c":"NdN^PS?vjbR5.8MwR*n$WBofxaM{~q-;M{WBo1og"},"Banner":{"fb59966a506eb19a0e9bd855b5346639":"HI9jv0%M00D%xu%M%MRjRj?bxuD%IUt7xuxuj[M{"},"Logo":{"9c0a7ca77bd0adc758c420d4900b8c55":"OMGlI$xv%gt2-;WZxtadogj^xtWVWEWA~qayj[ofofayRj"},"Thumb":{"4229748e44ddaeffcf20b9246e3a2561":"NmNwTV~q_39Ft7-;?bM{kCWBt7t7?bofofWBM{xu"}},"LocationType":"FileSystem"},"27837c46b786875004c7e70739f25542":{"Name":"Star vs. the Forces of Evil","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"27837c46b786875004c7e70739f25542","PremiereDate":"2015-01-17T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":86,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"282994"},"AirDays":[],"ImageTags":{"Primary":"fa2ed93058340354018910ef00c829a8","Art":"5b4d57ae2b045149f67b013f2c4aca49","Banner":"d8c8354c309fc87e771d8a685ebba4df","Logo":"cdb875ab219e267e48f08b985858ad70","Thumb":"7a3eb2f04827a7f3b76b485d7812dd5a"},"BackdropImageTags":["f0023a5e1e9a8ad6c034be491c66e93e"],"ImageBlurHashes":{"Backdrop":{"f0023a5e1e9a8ad6c034be491c66e93e":"WpNwvM%2Os%g%MtR.8kCkBt7kDkC_NtRR*kCR*oz.7V@W=WVjFoe"},"Primary":{"fa2ed93058340354018910ef00c829a8":"dRFh;pF3F|?GloJ9-BxtV{obS}NIRn${xtt79vxBsSj["},"Art":{"5b4d57ae2b045149f67b013f2c4aca49":"NNFFjQ-$+?bxE49g%Mo|-TR%R-V[8wR7yEnhs*xp"},"Banner":{"d8c8354c309fc87e771d8a685ebba4df":"HjIO6E~9MxM,IBxD$xwaxZ_3%1jYbdIrk9xYjDbI"},"Logo":{"cdb875ab219e267e48f08b985858ad70":"OYIrso0#~W-S?Hxt?bD4$%ozShtRRktR~qIARkx]M{bHWB"},"Thumb":{"7a3eb2f04827a7f3b76b485d7812dd5a":"NDKoWa~W4U~qrA-;S,NGj=M|NKIV9K%1^GjY.ToM"}},"LocationType":"FileSystem"},"8d38ed41c0f2771981bbee8b141c4d09":{"Name":"Assassination Classroom","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8d38ed41c0f2771981bbee8b141c4d09","PremiereDate":"2015-01-09T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":48,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"283947"},"AirDays":[],"ImageTags":{"Primary":"720ea325853a443e7c04906dc90f4e55","Banner":"6e188cd6a8b10576b058bfe869b92627"},"BackdropImageTags":["60371c989d35a021bf1f33480e3164c7","1a5823a5baa5604edef45c00369304f9"],"ImageBlurHashes":{"Backdrop":{"60371c989d35a021bf1f33480e3164c7":"WNEx:{xXE4aeZ~^$~Uj?9cbD-#%L%KayD,M{x=o}--xtNKxUkVNd","1a5823a5baa5604edef45c00369304f9":"WNEx:{xXE4aeZ~^$~Uj?9cbD-#%L%KayD,M{x=o}--xtNKxUkVNd"},"Primary":{"720ea325853a443e7c04906dc90f4e55":"dMH-}bpJSk?ZT1R5NFtQ0PxWI-IVnWT0RlWBtmr@bvoa"},"Banner":{"6e188cd6a8b10576b058bfe869b92627":"HjH1@,D,IW?ZEMIs%dS5RR~URRNI%KIqNItOf+Ro"}},"LocationType":"FileSystem"},"286a50cd372d2a490b4e1997e9dfa9a2":{"Name":"School of Rock","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"286a50cd372d2a490b4e1997e9dfa9a2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-10-02T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":65562349568,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1584"},"VideoType":"VideoFile","ImageTags":{"Primary":"46f0a917f86cbecd5b5cdb233223c6e0","Art":"74a9db761446ed6062670c614357d607","Banner":"74a9db761446ed6062670c614357d607","Disc":"8cadd44d224602f50e2e55097ee61b2a","Logo":"46f0a917f86cbecd5b5cdb233223c6e0","Thumb":"e91a42926f9f650bb99159da773b5e35"},"BackdropImageTags":["8cadd44d224602f50e2e55097ee61b2a"],"ImageBlurHashes":{"Backdrop":{"8cadd44d224602f50e2e55097ee61b2a":"W$Oprj_N_3jFRjt7~pRjRkt7WBtR-;M{WCWBj@t8-;s:ofWBj[of"},"Primary":{"46f0a917f86cbecd5b5cdb233223c6e0":"dmMjgoxtx]xu~Wae%M%2_3%2ITfQVse.xtRjs:t7RjV@"},"Art":{"74a9db761446ed6062670c614357d607":"NDA9sSIVEL?GE1xu0yELxaxGNHsTv~?GNGMy-pIp"},"Banner":{"74a9db761446ed6062670c614357d607":"H:O:CWozR*jEkq$*t7xus:~Cozxus:XSxuV@WBof"},"Disc":{"8cadd44d224602f50e2e55097ee61b2a":"eaJafuRjNHj[M{~qWBIVs;M{IVjZE1WVRjD%ofRjR*t8RkozaxWB%M"},"Logo":{"46f0a917f86cbecd5b5cdb233223c6e0":"O,QSo8ofWVaeozj[ayoLofayayj[bHjt?^jtjZj[aefkay"},"Thumb":{"e91a42926f9f650bb99159da773b5e35":"NnN^9:~q_NaeM{s:~VIANGt7Rjt8xaIARkRje.t7"}},"LocationType":"FileSystem","MediaType":"Video"},"287f86865ee0d283b7029dca123ada85":{"Name":"Bird Box","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"287f86865ee0d283b7029dca123ada85","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-12-12T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":74300481536,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"405774"},"VideoType":"VideoFile","ImageTags":{"Primary":"d786a5af91a8cd933d6c3af6ecaf333e","Logo":"1146f06bd533754f692bdaca8f9cd9d7"},"BackdropImageTags":["1146f06bd533754f692bdaca8f9cd9d7"],"ImageBlurHashes":{"Backdrop":{"1146f06bd533754f692bdaca8f9cd9d7":"W984YyMy9ZNGoe^+tQRjkCkCV@t601%M%Ls:ofD%Rj%LM{RjxuRj"},"Primary":{"d786a5af91a8cd933d6c3af6ecaf333e":"d78Wy{0fE0^+xvS5xCoM0f=|s;E1InaKI=xZ9FofxuRj"},"Logo":{"1146f06bd533754f692bdaca8f9cd9d7":"OFSPX_xuM{%MRjt7M{-;j[ayj[ayj[ay~qayxuWBt7j[xu"}},"LocationType":"FileSystem","MediaType":"Video"},"90494fbc7bcbb5d3db350251d67873e5":{"Name":"Mr. Robot","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"90494fbc7bcbb5d3db350251d67873e5","PremiereDate":"2015-06-23T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":46,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"289590"},"AirDays":[],"ImageTags":{"Primary":"cd272521e69b682f5e926e855c6b0f3c","Art":"996b82eca01436ebf301987a53a8a149","Banner":"3afefe7fea91648cf3a60b49cf7e0292","Logo":"e9f1739dbaf05c4d52444e0dbff2efeb","Thumb":"a571c044ac66bbecaa2a1901367f5035"},"BackdropImageTags":["c12ed1cb8b87b73ba6a110c946806932"],"ImageBlurHashes":{"Backdrop":{"c12ed1cb8b87b73ba6a110c946806932":"WFDK6[jw%~.RDPxt?^ofD*bbMxMxDjayoKV@tRofx]WBxutQRQaz"},"Primary":{"cd272521e69b682f5e926e855c6b0f3c":"dPDJbKj]_M?a%zRjWBtQr?afM{s:%Mofazofpbt7ayS3"},"Art":{"996b82eca01436ebf301987a53a8a149":"NZGuzTbIR.xZs:NHDiazWXM_WBf+_Nxtt6R+WBxa"},"Banner":{"3afefe7fea91648cf3a60b49cf7e0292":"HiFQtByCIo.R%#.8l9TJiw.moyWBtltRtRXRWCnO"},"Logo":{"e9f1739dbaf05c4d52444e0dbff2efeb":"O~Qbqbj[bHj[fkoLj[s:fQfQfQfQfQfQ?^fkjZj[f6bHay"},"Thumb":{"a571c044ac66bbecaa2a1901367f5035":"NA6jXntkNaIV9tM|xZofayR*RkWB0}n5xFtR-Voz"}},"LocationType":"FileSystem"},"7b7e16c073535574e368bdfc7d3a3290":{"Name":"Blood Blockade Battlefront","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7b7e16c073535574e368bdfc7d3a3290","PremiereDate":"2015-04-04T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"289886"},"AirDays":[],"ImageTags":{"Primary":"f4054fe985edaf320dd79ba70d92bc37","Art":"9a09742b247dc7207a10b96b7abbc0da","Banner":"373d7fefcb397273c078be7b438e04ff","Logo":"86c2c8c616742f6731a87180d863469e","Thumb":"7e2e6789d430d31038f43bda07e33ea8"},"BackdropImageTags":["3779e13bf51f5e3515de6f5a8162028b"],"ImageBlurHashes":{"Backdrop":{"3779e13bf51f5e3515de6f5a8162028b":"WPBM[H9FRP%MIUt7~qD%V@x]M{of-;IUayxuRjoLtRM{aet7a|of"},"Primary":{"f4054fe985edaf320dd79ba70d92bc37":"dZHA^ixuw|xa~Cxat7V@xuxGtQM{~CaynjRj-;r?s:ae"},"Art":{"9a09742b247dc7207a10b96b7abbc0da":"NCC$=p9Zxtxu0KtR-p9Zofe.-;xu?GE1-p%MRkRP"},"Banner":{"373d7fefcb397273c078be7b438e04ff":"HuJb2F8^oc?bogVsITxaV@~XE1NGxukCniV@s.oL"},"Logo":{"86c2c8c616742f6731a87180d863469e":"OSPhR$pHs:tlaKkWw0pcv$jFXRaybuay{ii_OqRjo}aebu"},"Thumb":{"7e2e6789d430d31038f43bda07e33ea8":"NMGIM}~qI[JBO[yE9ttS-qMy%3b_9aD*%2%2%2a}"}},"LocationType":"FileSystem"},"28d923680fbaeb317ea44b6a0334f8aa":{"Name":"Nausica\u00e4 of the Valley of the Wind","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"28d923680fbaeb317ea44b6a0334f8aa","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1984-03-10T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":71017897984,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"81"},"VideoType":"VideoFile","ImageTags":{"Primary":"cf842b49bddd8ba774c7a28a570296e5"},"BackdropImageTags":["068560ebaddbd47cc971e64d1fc3156a","89bad87fec1c25e6097ed09c650a7f37"],"ImageBlurHashes":{"Backdrop":{"068560ebaddbd47cc971e64d1fc3156a":"WVHoabS+8_bpICnO_NR.D%V@RPM|j]fBt6oaRjRj~WxvRiWAR.ou","89bad87fec1c25e6097ed09c650a7f37":"WVHoabS+8_bpICnO_NR.D%V@RPM|j]fBt6oaRjRj~WxvRiWAR.ou"},"Primary":{"cf842b49bddd8ba774c7a28a570296e5":"dFBC=gXn5k%35+f,$gg1v_-5$Mn$_4O[E+R+T0$+-AbE"}},"LocationType":"FileSystem","MediaType":"Video"},"28edd11bc77c1bec6e042b74d5708854":{"Name":"Megamind","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"28edd11bc77c1bec6e042b74d5708854","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-10-27T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":57346969600,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"38055"},"VideoType":"VideoFile","ImageTags":{"Primary":"3fb4084db76d09b1b50f704835512486","Art":"26bc7b806e39f8fc054d73495e7893d2","Banner":"d297212f40454e95ea42079df852d433","Disc":"600dc4f64b3e2f7750554757fe222d0a","Logo":"57fed5cd4c6f0c73311dd37edea72f30","Thumb":"3b28b8d7723a60f5ec7c08ff2d6f5c8f"},"BackdropImageTags":["1910d3b310b2c587bd3556250fdde337"],"ImageBlurHashes":{"Backdrop":{"1910d3b310b2c587bd3556250fdde337":"WK8ESmogDgjYyFoz%ij[MvjY%OofbdfkV?ayo#j[o#j[V?aeoza#"},"Primary":{"3fb4084db76d09b1b50f704835512486":"deN]T|-.^G~7-.bIskxY~0nhIbR*^ts+WBWAVvj[WAV["},"Art":{"26bc7b806e39f8fc054d73495e7893d2":"N%O:qk?wxaE1$xozR,M{adozWFjrs%IWWVt6jZWC"},"Banner":{"d297212f40454e95ea42079df852d433":"H:L}dK~VIVo#xtxut7%Lof_4-pWBf+t7s.ozt6s:"},"Disc":{"600dc4f64b3e2f7750554757fe222d0a":"eTK2LuF%_2=TxG~nEAE5$wV@_3r:%4RoofIA-gjYRjxsxbRPj]bdW8"},"Logo":{"57fed5cd4c6f0c73311dd37edea72f30":"OhQvtMR*X9oKofbIkCadWUbIayj[bHj[~pofadj]WCoKax"},"Thumb":{"3b28b8d7723a60f5ec7c08ff2d6f5c8f":"NiN0IUtk]|=_Rjs9~KoeRkIpoNt6RQV@NbIvWYt5"}},"LocationType":"FileSystem","MediaType":"Video"},"052f5b7041e685f7a94541a45ab644d3":{"Name":"One-Punch Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"052f5b7041e685f7a94541a45ab644d3","PremiereDate":"2015-10-03T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"293088"},"AirDays":[],"ImageTags":{"Primary":"9306edc96fc4413d21dd368a8a0bd4f4","Art":"2a16cdc9b795ba7c761e6b2eef71d150","Banner":"852d2496af7e87a7064be8f5f0c41679","Logo":"e2b6bb86c6779e1c60642df23d572bc6","Thumb":"c4aae6fb76e6320f794868ad0ddd00c3"},"BackdropImageTags":["0eeb88c88a13515cd727bfdbed007a28"],"ImageBlurHashes":{"Backdrop":{"0eeb88c88a13515cd727bfdbed007a28":"WLB{y7bv0LaK%Lt7kq%2ocIoNHR*a#%2s:E1NGof?Ht7M{RjbGog"},"Primary":{"9306edc96fc4413d21dd368a8a0bd4f4":"dKI4#2%g0L$+.7a$I=jv-C%2NGIox]-=oHs*IWniRP-p"},"Art":{"2a16cdc9b795ba7c761e6b2eef71d150":"NMMi+yqH9#xt%fTx~qMxRi%ha#i_5RyDWSjbMfn3"},"Banner":{"852d2496af7e87a7064be8f5f0c41679":"HwJa=tNHo0RkRjxZD*%Lx]~qR*s:azRjxtIot7t7"},"Logo":{"e2b6bb86c6779e1c60642df23d572bc6":"OwSF3Bj[ofofe.oLf+iwjtayayf6ayj[*Jj[WBbHf+f+e."},"Thumb":{"c4aae6fb76e6320f794868ad0ddd00c3":"NVMj58v48yenXR%I_Ns.MxwIxZM{J6tkS~S#oxnh"}},"LocationType":"FileSystem"},"34aecc4941fa57b94e83626a11cd246c":{"Name":"Ghost in the Shell: Arise - Alternative Architecture","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"34aecc4941fa57b94e83626a11cd246c","PremiereDate":"2015-04-04T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"293491"},"AirDays":[],"ImageTags":{"Primary":"d01b0b0313a587e1a189900e82942545","Banner":"208815996613dce93918ad21961d2e6d","Art":"bbd03d4b6cf5610d17fb6f1089b63389","Logo":"04dd809f933467b03c641e974984efe1","Thumb":"7e6d6dea49af7f16913ffd5ee73e9e7c"},"BackdropImageTags":["637352b8fdfa8489d1a53e7b9eb0ad8d"],"ImageBlurHashes":{"Backdrop":{"637352b8fdfa8489d1a53e7b9eb0ad8d":"WUEA+SNGE2xtE%nl}rRkIpkVNwsC=YNeI[s+WXr]-6WENeocfkwK"},"Primary":{"d01b0b0313a587e1a189900e82942545":"d9D]h[IT0fs=57D%oNtR0Lxum+R%IVNGxuxu4UIU.8xv"},"Banner":{"208815996613dce93918ad21961d2e6d":"HNCrQQxDkC$kq]#lEMxG,o}[jYoe$*n4r=NGs;wb"},"Art":{"bbd03d4b6cf5610d17fb6f1089b63389":"NaI4^l4T?v9ZR*%M_3D%%MRjWBxuNat7V@W=ofjF"},"Logo":{"04dd809f933467b03c641e974984efe1":"OwKK==IU~qxu%Moft7%MD%WBt7WBxuof-;t7Rjt7j[Rjof"},"Thumb":{"7e6d6dea49af7f16913ffd5ee73e9e7c":"NNEnFqbwEMx[E#oM}TIU9uXQNbsV}USiJBovR+r?"}},"LocationType":"FileSystem"},"401e5f58b9ab49aa502dd18b47667250":{"Name":"Overlord","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"401e5f58b9ab49aa502dd18b47667250","PremiereDate":"2015-07-06T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":39,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"294002"},"AirDays":[],"ImageTags":{"Primary":"ddba519691fc521ed280907069c794b8","Art":"b836189daa1c87b6d10aaa8f8b3d2527","Banner":"adfbac7bceb1311685c65a886d1d36b9","Logo":"74561d9303c573d89c38f00d44cb8495","Thumb":"d45a09688f670fc54689bb36eaaf20de"},"BackdropImageTags":["f7a8685533c817c5d9c309ee87008b0a"],"ImageBlurHashes":{"Backdrop":{"f7a8685533c817c5d9c309ee87008b0a":"WJC%H.?dr?%LD$${_4%OxZt8MyROITM_kCt7V@M}o~otM]R%t9Rp"},"Primary":{"ddba519691fc521ed280907069c794b8":"dD9?gz-UIo%0X8R+S4Nw0#R-xtNws9-A%1oJ-Un+NHWX"},"Art":{"b836189daa1c87b6d10aaa8f8b3d2527":"NLE2@000X9?a00-;8^?aM|M{-;NGD%%1ofV@xtM|"},"Banner":{"adfbac7bceb1311685c65a886d1d36b9":"HPCi]zo#9DMdtR_MWHD$IU^+W=RiVsR*%goNRiM|"},"Logo":{"74561d9303c573d89c38f00d44cb8495":"O,NdK[azWBa#j[t7azxuj[fQj[ayj[ay_4j[oej[fPayj["},"Thumb":{"d45a09688f670fc54689bb36eaaf20de":"NFBM+5r@D#$gICs;%jkCIRR%oOX9IbSgM^R%x^kD"}},"LocationType":"FileSystem"},"c7584569e001e84dbbbe06ad2a497952":{"Name":"The Man in the High Castle","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c7584569e001e84dbbbe06ad2a497952","PremiereDate":"2015-01-14T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.1,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":40,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"295829"},"AirDays":[],"ImageTags":{"Primary":"925b6b87d80d1e55ad962f58dce4a82c","Art":"cb1d207d8de30d842e8c515b3cae9b56","Banner":"f0333e36256ff78d1f70234668bba161","Logo":"2f4358f814b274c321cd9cdbbefa6da0","Thumb":"c17098c76819e9480074c86bac597840"},"BackdropImageTags":["b0b4acd64c87d7662c0db4b9924c32b9"],"ImageBlurHashes":{"Backdrop":{"b0b4acd64c87d7662c0db4b9924c32b9":"WrIE^ft7Rls:%N%M~qt7oft7WCj[%MWUtQt7WBRj%ga{ofkCt7of"},"Primary":{"925b6b87d80d1e55ad962f58dce4a82c":"dOHJXO}srE=e^P$iaes:8{V@TJS2Myofo|oJtktQtQof"},"Art":{"cb1d207d8de30d842e8c515b3cae9b56":"NtLN#;00WB%MWBV@MxRjoffQWBf6x]t7jtWBV@WB"},"Banner":{"f0333e36256ff78d1f70234668bba161":"HIAJ]3ISNGxuD$%O4moNxa?IITa#ofWA%3ITxbRj"},"Logo":{"2f4358f814b274c321cd9cdbbefa6da0":"OUODnJa{ayayt7WBWB-;WBofWBofayof~qRjofWBj[j[of"},"Thumb":{"c17098c76819e9480074c86bac597840":"NTLhMWITRiR-t8x]~qNykWV@jsV[-.R.NHj[oeof"}},"LocationType":"FileSystem"},"a40f04b6b8d44f84329e9380dd2768bb":{"Name":"Westworld","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a40f04b6b8d44f84329e9380dd2768bb","PremiereDate":"2016-10-01T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":28,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"296762"},"AirDays":[],"ImageTags":{"Primary":"aaf7c5bcd087af5841391d3587471dc7","Banner":"f44ea6f97284054338f4a62c36767f1e","Art":"44d1ca19ca87e9b53beb183aa6031a25","Logo":"819b00db3cbfd37c7d9d379ef139f502","Thumb":"e6f0ae8bcdec79df495f4cc1ad118ef8"},"BackdropImageTags":["fd148ca62405060f8ff675162100bcbd"],"ImageBlurHashes":{"Backdrop":{"fd148ca62405060f8ff675162100bcbd":"WNJb8Qo#f+%Mt7-;9GM{t7a#ogWC?vM{V@t7t7of~qaeofofoLt7"},"Primary":{"aaf7c5bcd087af5841391d3587471dc7":"dSIrBJWBD%-q00MxWBRjR+WBWBRj_3ayWBt7MxWBayog"},"Banner":{"f44ea6f97284054338f4a62c36767f1e":"HCFi4D-=GY$+Mc?b-;tlMxDQbw0Knit6D%a}SgRi"},"Art":{"44d1ca19ca87e9b53beb183aa6031a25":"NHH.m8Dj~pDi_3oy_3xuof%gM{n%$ys,tRtRj@bI"},"Logo":{"819b00db3cbfd37c7d9d379ef139f502":"OaCi~[j[00WBt6ay-;%MazM{j[WBayogD%fQ%NfQM{fQWB"},"Thumb":{"e6f0ae8bcdec79df495f4cc1ad118ef8":"NtIOU~t8%2xvIoof.At7kDaeaxbJD*RjRPRkofWV"}},"LocationType":"FileSystem"},"2987060b7507449b553940ae67fdd0ee":{"Name":"Scott Pilgrim vs. the World","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2987060b7507449b553940ae67fdd0ee","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-08-11T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":67437760512,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"22538"},"VideoType":"VideoFile","ImageTags":{"Primary":"592c58c772e5e2bf7dada6f642cc1ad9","Art":"253718e6a5c3a4da9ff2b8a05ca66f45","Banner":"1669ac6ddde4cafbc605f6c7edefea72","Disc":"d920b09a9f82c275fc8caf548f565c91","Logo":"bb55aa406aad39e9cb2843d56ca21073","Thumb":"cdb8158184faa12920d22a759272a560"},"BackdropImageTags":["8350355070c9227106ccdaabcc55f7fc"],"ImageBlurHashes":{"Backdrop":{"8350355070c9227106ccdaabcc55f7fc":"WeODg~%M_M?bD%xu_2ofxuofoLt7D%ays:WBkCt7?boexut7Rjoe"},"Primary":{"592c58c772e5e2bf7dada6f642cc1ad9":"dQICEI-;NH+v}[s:M{ae9]VsNGKNVuWBOUozo3kVf%ni"},"Art":{"253718e6a5c3a4da9ff2b8a05ca66f45":"NFIEeGvL0f0$JW-;tRx]%M$in4NHE3R.xa-ot5NG"},"Banner":{"1669ac6ddde4cafbc605f6c7edefea72":"H*M7Jt?aofoLozt7t7%MRQ~pxGoLbHW;ozt7oLRj"},"Disc":{"d920b09a9f82c275fc8caf548f565c91":"ebK_5*wl~WortPXlnnVZSutQp_M_$%X8R-$fW-kro4M{WFbWr?n-oy"},"Logo":{"bb55aa406aad39e9cb2843d56ca21073":"O%ReBdjZ*JoztloLaenOozkCV@kCj[j[tlaeVskWozfkae"},"Thumb":{"cdb8158184faa12920d22a759272a560":"NQLD_d_3_N-;sm.8_3t7IURj%Mxu%gIUo0t7NGs."}},"LocationType":"FileSystem","MediaType":"Video"},"29cee31ac829184548347ef9f1a8703a":{"Name":"Hellboy II: The Golden Army","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"29cee31ac829184548347ef9f1a8703a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-07-10T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":71808753664,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11253"},"VideoType":"VideoFile","ImageTags":{"Primary":"8bddba00431bd758c7abe41abfd356cd","Art":"9c9ff918cacb208b72d7990b9544617e","Banner":"b6068c752402da2593b5c2fc70935c0a","Disc":"7a4bea5eb759f43aa5a67bc0f7120d57","Logo":"c2f2aa7b2fe71d070cefa7a6fd004a38","Thumb":"82bfbd5135034c1608c4fad5c1b76341"},"BackdropImageTags":["e5f4d35241d38f0df20561b5d7ab26aa"],"ImageBlurHashes":{"Backdrop":{"e5f4d35241d38f0df20561b5d7ab26aa":"WA8DLb$P9uEhNbxZE3j[xtoKR*W;0#SgxZxF$%Ip?FWCM|jHso$%"},"Primary":{"8bddba00431bd758c7abe41abfd356cd":"d88Dwv~AMxNH-pofW=t70h58IpxZSgR%RPRjwa-S-pjH"},"Art":{"9c9ff918cacb208b72d7990b9544617e":"NSHxc{.SDinNJBi^~qxuRPozsoR*~q%MRPtRxaR*"},"Banner":{"b6068c752402da2593b5c2fc70935c0a":"HODIUc~CM{rCv}j=sA=y=|?H%2nheSRPe.s:s:xa"},"Disc":{"7a4bea5eb759f43aa5a67bc0f7120d57":"eUGuak$$?cNH-=niRkozj@WB?wNI?bt6M{xtoJoeWCWD?boeNGa#My"},"Logo":{"c2f2aa7b2fe71d070cefa7a6fd004a38":"OwJas0f6tRoLxufkxut6ayazayfkaya}~qayWBayWBfQWB"},"Thumb":{"82bfbd5135034c1608c4fad5c1b76341":"NCC~L~=Y=q_2-PIB}8X8%LD*t6EOH?NJ-pQ-t7OY"}},"LocationType":"FileSystem","MediaType":"Video"},"2a2f8120e47ec9ca96589f1046bcb6b4":{"Name":"Contagion","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2a2f8120e47ec9ca96589f1046bcb6b4","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-09-07T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":63860699136,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"39538"},"VideoType":"VideoFile","ImageTags":{"Primary":"87bbde4eef1a061a41b461b86c37906e"},"BackdropImageTags":["b219f5179b2439d2fc0470c12e3fcc3d"],"ImageBlurHashes":{"Backdrop":{"b219f5179b2439d2fc0470c12e3fcc3d":"WCDIU4-UXm~Txu?FiwV@NGNGRjWARntPxZxZ-mxZ?ENIxF%0I=s."},"Primary":{"87bbde4eef1a061a41b461b86c37906e":"dhHT}=-SR-t6$|jZWVoJ0kIrodoLE6RljuWExWs,RlWC"}},"LocationType":"FileSystem","MediaType":"Video"},"2a729b707903a459cc5042fb1e16483e":{"Name":"The Cloverfield Paradox","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2a729b707903a459cc5042fb1e16483e","HasSubtitles":true,"Container":"mkv,webm","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.6,"RunTimeTicks":61089599488,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"384521"},"VideoType":"VideoFile","ImageTags":{"Primary":"7dd63de154ddaa20810dcfbca9ed68a3"},"BackdropImageTags":["089e6bc065a9136a476dd6da2416696a"],"ImageBlurHashes":{"Backdrop":{"089e6bc065a9136a476dd6da2416696a":"WH9j$D%M0LE2%0t6kXofj^WCWAbHNKWCs.s.ofkCE2WW%Ms:V@ay"},"Primary":{"7dd63de154ddaa20810dcfbca9ed68a3":"dA6H[p.8NGt8M{WBt7ay4TIAt6V@?btRM{of.8%MofkC"}},"LocationType":"FileSystem","MediaType":"Video"},"2bc851706d88826e1baea121e0a5daad":{"Name":"Blade Runner: Black Out 2022","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2bc851706d88826e1baea121e0a5daad","HasSubtitles":true,"Container":"mkv,webm","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":9069760512,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"475946"},"VideoType":"VideoFile","ImageTags":{"Primary":"a3db8730c102c40f0dbfbbe2d1675331"},"BackdropImageTags":["3cbab204b6d4c3d74664ffd0fb8d321d"],"ImageBlurHashes":{"Backdrop":{"3cbab204b6d4c3d74664ffd0fb8d321d":"WJB42cIn4mt8%NRj_NRjD%og%MaxD$t7j]bFoyogD%tRt7oeRjae"},"Primary":{"a3db8730c102c40f0dbfbbe2d1675331":"dJC~@p-:4;M}_M%MRQM|_1x[WFM|%MtQj@aeX7S3bHof"}},"LocationType":"FileSystem","MediaType":"Video"},"2c2824363dddc56d1273e072886c383f":{"Name":"Ant-Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2c2824363dddc56d1273e072886c383f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-07-13T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":70266560512,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"102899"},"VideoType":"VideoFile","ImageTags":{"Primary":"2c1397f7fb75a4d2567afead9b5a2738","Art":"c7f3d0dd5b9ad4250e5d88b9c0dbaaec","Banner":"619cecb86e480d04d23d06c563609e7b","Disc":"3fe6c3e49d61a24290e07e3c39ec7269","Logo":"99051d62ded710ba59a40aaf716976ad","Thumb":"d8ddfa657100c43955fb8c0e72bfd05c"},"BackdropImageTags":["94d7943845b3945a3df67065f66ad30f"],"ImageBlurHashes":{"Backdrop":{"94d7943845b3945a3df67065f66ad30f":"WxP${|xu_N-;Na%gwJfQtRn%x]tR%MofM{V@ofof_3ofjGozM{WB"},"Primary":{"2c1397f7fb75a4d2567afead9b5a2738":"dYAw*vxvOGS6%%tRaeRkoJt7RiWBksbIaKogb_WVoLoM"},"Art":{"c7f3d0dd5b9ad4250e5d88b9c0dbaaec":"NbJ@C6tR~paxtlenL~WB8_j[OEoz%2R%t8tRozRi"},"Banner":{"619cecb86e480d04d23d06c563609e7b":"HsH9d=k=kX,rxGxbT0xGs9}ZkWW;v~n%xGbvt6oK"},"Disc":{"3fe6c3e49d61a24290e07e3c39ec7269":"eKG+qAt7?]M{?E-;WrRPRQt8~pt6~Bj]I;xGRjbHs:of_MaeRkozIV"},"Logo":{"99051d62ded710ba59a40aaf716976ad":"OiJY|$kCofs:S~X8X8-VfkWVbHj@a|ay.mjtbHW;n%n%n%"},"Thumb":{"d8ddfa657100c43955fb8c0e72bfd05c":"NXE{w]-UH=x^NFM{_4%NVXVsNvNGoftRnNMxR%R%"}},"LocationType":"FileSystem","MediaType":"Video"},"2cc3da926379f16dbb7e99e52eea6b5c":{"Name":"Monsters vs Aliens","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2cc3da926379f16dbb7e99e52eea6b5c","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-03-18T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":56617668608,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15512"},"VideoType":"VideoFile","ImageTags":{"Primary":"970bc191e9b31d007c1f88585a48d566"},"BackdropImageTags":["37b4b79f180ee2aae605e13f68ab3254"],"ImageBlurHashes":{"Backdrop":{"37b4b79f180ee2aae605e13f68ab3254":"WxHLPd}k=rt7IqR.M~RkV@jEofWYD%XTS5V@n$Rkt7kBofkDWBjF"},"Primary":{"970bc191e9b31d007c1f88585a48d566":"daCarmkDEStSb{V@jXoe4TaJxCRQrpobRkRjwHo#Rioa"}},"LocationType":"FileSystem","MediaType":"Video"},"2deca6dc12518437f80d09bf7460b92a":{"Name":"Captain Phillips","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2deca6dc12518437f80d09bf7460b92a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-10-09T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":80439517184,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"109424"},"VideoType":"VideoFile","ImageTags":{"Primary":"95e52ce5ece3173ea7840eaa6dd6d269"},"BackdropImageTags":["587b1aa401ba4d1a3c617679a5d8c108"],"ImageBlurHashes":{"Backdrop":{"587b1aa401ba4d1a3c617679a5d8c108":"WgDvfy~qtRIVjZ-;jZWBM{M{RjWBWBR*RjWBbHoft7ofaeWBfkof"},"Primary":{"95e52ce5ece3173ea7840eaa6dd6d269":"dWB|Ka~qx]a~-;%MayM{D%IUM_RPM{M{WCt7RjWBayWB"}},"LocationType":"FileSystem","MediaType":"Video"},"2e9419f4b32d01cd30542055978e497d":{"Name":"Alien Resurrection","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2e9419f4b32d01cd30542055978e497d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1997-11-11T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":69687042048,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8078"},"VideoType":"VideoFile","ImageTags":{"Primary":"bf644976716150e5c238a71e3fc45ce4"},"BackdropImageTags":["ce2464a4e06318b9a3b8773d6cdb609d"],"ImageBlurHashes":{"Backdrop":{"ce2464a4e06318b9a3b8773d6cdb609d":"WtFP4Bt505M}%KoewcjZX8kBR*WBIrfRxYWVj[oeXRfkaLWCt6of"},"Primary":{"bf644976716150e5c238a71e3fc45ce4":"d21f*JpCHeQuthkmWCVeH_bH%uoJSdbHr]jGx?j?M$WE"}},"LocationType":"FileSystem","MediaType":"Video"},"2fb5504166d8aecdcb0ecb4ac6deb196":{"Name":"2010","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2fb5504166d8aecdcb0ecb4ac6deb196","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1984-12-05T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":69559468032,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"4437"},"VideoType":"VideoFile","ImageTags":{"Primary":"d3a1997a623c6c83c1918c44df224e7b","Art":"f1bb7d6f694055fa0190974c95c3fb04","Banner":"69e31e0f1ace86b7aa3c28aade66c21d","Disc":"185787810751406d77efe3c9205f1f1f","Logo":"d3a1997a623c6c83c1918c44df224e7b","Thumb":"8a972fdf91f67edf213dd8040a912653"},"BackdropImageTags":["185787810751406d77efe3c9205f1f1f"],"ImageBlurHashes":{"Backdrop":{"185787810751406d77efe3c9205f1f1f":"WB9jGrTKEN%19GRQ~Cx^kqaynOIV=xS$kr-ot7V[$jRkOF-:-oWr"},"Primary":{"d3a1997a623c6c83c1918c44df224e7b":"d78NLXtlI;s.?HtQxuR*0LMds:bH9uIAD%V@K5s,rrD%"},"Art":{"f1bb7d6f694055fa0190974c95c3fb04":"NKB|mY-qDgSbV?x]?Y-p%hRqM|Rir:?vtTMdoyR."},"Banner":{"69e31e0f1ace86b7aa3c28aade66c21d":"HSBpX.NGaKbI00s;xuod-;~WIos:xu9Fj]RkRP%f"},"Disc":{"185787810751406d77efe3c9205f1f1f":"edHoI9Sg-;RPx^s,ofR-Rjf6?woJ?HW;sls.R*oLozkCx]Rkaxs:IU"},"Logo":{"d3a1997a623c6c83c1918c44df224e7b":"OIRMb$WB%MofWBa{IU_3WBt7ayj[WBWB~qt7M{j[ofofxu"},"Thumb":{"8a972fdf91f67edf213dd8040a912653":"NDAABoOYE2%2IUWC~Wo}tRogVsNH={R,tl%Mn$oz"}},"LocationType":"FileSystem","MediaType":"Video"},"300d0ae8bd6bb1881eb3f802db13e6ef":{"Name":"Harry Potter and the Order of the Phoenix","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"300d0ae8bd6bb1881eb3f802db13e6ef","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-06-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":82944983040,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"675"},"VideoType":"VideoFile","ImageTags":{"Primary":"0d3666e472e165783b1be2d063323a0f","Art":"ee2643b9347f3110036ffc7cf4045801","Banner":"7131f43ccf1584d737a0bad4dc289081","Disc":"c951bc56c6664dc289d845dc28133f01","Logo":"bb4a5d2426d5dad82e212266f669064c","Thumb":"a645d9fd3a4ebb90d2c507a9c20350b7"},"BackdropImageTags":["c951bc56c6664dc289d845dc28133f01"],"ImageBlurHashes":{"Backdrop":{"c951bc56c6664dc289d845dc28133f01":"WLBWMXxa9FaJR+xt~Vs;RPs9NGxuaJaf%LxaIot7M{RjxuxuWBV@"},"Primary":{"0d3666e472e165783b1be2d063323a0f":"dFA-0G_NIUDin4MxX9x^9ZR*aKbFOYx]t6IADiIBoM%M"},"Art":{"ee2643b9347f3110036ffc7cf4045801":"NwH.Tj00j[%MWBM{~WD%j[xuayRjM{xaayWBazof"},"Banner":{"7131f43ccf1584d737a0bad4dc289081":"HH9tGn^*%gD%IUH?ROMxNG~W?Gt7IVRPVrs9RjR+"},"Disc":{"c951bc56c6664dc289d845dc28133f01":"eZJ@RLM}.Ts-%gS#j@oLRloJ.Ts,?bj[WA$%oJR+bGR+yDR+WAWDRO"},"Logo":{"bb4a5d2426d5dad82e212266f669064c":"ObFr^oof~qof_3t7_3%MWBj[WBj[ayj[-pj[RkfQWBazWB"},"Thumb":{"a645d9fd3a4ebb90d2c507a9c20350b7":"NaCQ[A%gRPNwIUiw?^tRRPW;MxZ~RkR*WCofRjRO"}},"LocationType":"FileSystem","MediaType":"Video"},"e4f35b34149e2b9d6bbe91f00f7cafd5":{"Name":"The Valley","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e4f35b34149e2b9d6bbe91f00f7cafd5","PremiereDate":"2015-10-05T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.5,"ProductionYear":2015,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":6,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"301321"},"AirDays":[],"ImageTags":{"Primary":"ef0eb8a4e37d9edd31931bba40021359","Banner":"fa3c31baaae270511cdf053ace5fd5c3"},"BackdropImageTags":["895823fd9868f9872aeafe32fb937499"],"ImageBlurHashes":{"Backdrop":{"895823fd9868f9872aeafe32fb937499":"WTO3@E-p.8_300xu?bj[xut7WBt7X8of4TM{xuRj~qt7IUjtRjRj"},"Primary":{"ef0eb8a4e37d9edd31931bba40021359":"dNI4^F^%9^%e~UoJxuof.Qt6^*%1%fWA%Mt6?aaeRnWB"},"Banner":{"fa3c31baaae270511cdf053ace5fd5c3":"H?N1JyxaMxtSxu?bX8x]t8~qV@M{t8ozx]oft7of"}},"LocationType":"FileSystem"},"30236cd75f431d6d5a961df7719ea0bf":{"Name":"Blame!","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"30236cd75f431d6d5a961df7719ea0bf","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-05-19T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":63333441536,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"409421"},"VideoType":"VideoFile","ImageTags":{"Primary":"a232d429934492f763ffa3934cc091cf","Logo":"1137a5a1b50dd3d2103b01300b5f4d1e","Thumb":"5b1e53ffbc6cc05f32400c4c5bc7b17c"},"BackdropImageTags":["9d5ea60aadacd43a11e10988b4aed357"],"ImageBlurHashes":{"Backdrop":{"9d5ea60aadacd43a11e10988b4aed357":"WWD]oBkC0KxuWUR*?wayD$j[oJazx^jYM{R*oLogtRjYoeogRkbI"},"Primary":{"a232d429934492f763ffa3934cc091cf":"dZC6}+p0D%S5L4p0nhspT2kYs.aex^kXWBRjIqg3t7nh"},"Logo":{"1137a5a1b50dd3d2103b01300b5f4d1e":"OFQvwRRj9Ft79FRjIU~qRjofj[ayWBay~qt7%MWB%Mt7t7"},"Thumb":{"5b1e53ffbc6cc05f32400c4c5bc7b17c":"NNC$vCxu0KELxuNaW:o0bc%2X8M{sTadR*oztRWB"}},"LocationType":"FileSystem","MediaType":"Video"},"e2c55225ad8c536ebbeea72591a60459":{"Name":"Kabaneri of the Iron Fortress","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e2c55225ad8c536ebbeea72591a60459","PremiereDate":"2016-04-07T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.6,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"305082"},"AirDays":[],"ImageTags":{"Primary":"de7a7d1313a2438182f66143ab0d48b0","Banner":"a5cfaa89fffca220fbebbcd567f91c12","Logo":"303d1ff3ae57d2a6f806b1bbf0a0f78d"},"BackdropImageTags":["92ca1a5771ecc2783259864143a1c31b"],"ImageBlurHashes":{"Backdrop":{"92ca1a5771ecc2783259864143a1c31b":"WQF;s6}?^i^js,-p%K%1XSWBR+RlW,xtS1I:ogNG-SwwV@R*WWWB"},"Primary":{"de7a7d1313a2438182f66143ab0d48b0":"dEE2C4-U$l^P~qt7-pt7ksX5tSNJnnEM-pWEMfR+$*r]"},"Banner":{"a5cfaa89fffca220fbebbcd567f91c12":"HXKlW{#8-CDl%1=dVZ-:I:|yjXXSOmo|xZM|JCIo"},"Logo":{"303d1ff3ae57d2a6f806b1bbf0a0f78d":"O=OpMpaeozj[ozkCoff6aeaej[f6a|fk_NayayofWBj[WB"}},"LocationType":"FileSystem"},"f0e274383402d2734eb47cb8a656d9b9":{"Name":"Stranger Things","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f0e274383402d2734eb47cb8a656d9b9","PremiereDate":"2016-07-14T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.2,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"305288"},"AirDays":[],"ImageTags":{"Primary":"5e5657261b11965c4afc3e7c146c4834","Art":"bfd97cd680a5d744d237ba841618d0e8","Banner":"376c6c0617968ff8e38ab09cffb97bd7","Logo":"238e14d23d2ebd416037faa1e693555d","Thumb":"23aefaea322dd3504add166dcfc71428"},"BackdropImageTags":["bc3dc87baf2df528036db44b0d6b3698"],"ImageBlurHashes":{"Backdrop":{"bc3dc87baf2df528036db44b0d6b3698":"WB6%QwW;1GsC=HS2-CoLEzS4$Mn$NHa}xGbFS2n$EgWW$%j@Ndjt"},"Primary":{"5e5657261b11965c4afc3e7c146c4834":"dhFp:Rxa9]sD}Xs.I;njiun$oeadIpayoyWVJCS4s:bI"},"Art":{"bfd97cd680a5d744d237ba841618d0e8":"NyNtnK.myDayRPVs%2o}f+a|jFn%-;yDo}ayaKae"},"Banner":{"376c6c0617968ff8e38ab09cffb97bd7":"HrHAYM^QD%IpkCaxNIR+bu}@-UM{M|jbaxNaW=oz"},"Logo":{"238e14d23d2ebd416037faa1e693555d":"OGMo~-m,?bZ$.8Vst,ictlIUtlR5tRiw?^VsxuVst7V@g3"},"Thumb":{"23aefaea322dd3504add166dcfc71428":"NQICEB}:2Z$g$%$**}9_AaxGR+Rk5+5qVswdJBJ7"}},"LocationType":"FileSystem"},"305c77e723f4c19729bd1f3a7be7ab3b":{"Name":"Appleseed","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"305c77e723f4c19729bd1f3a7be7ab3b","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":40113831936,"ProductionYear":1988,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"45295"},"VideoType":"VideoFile","ImageTags":{"Primary":"267b85ee6eaae11db1c0e05d987c0afd"},"BackdropImageTags":["00b4d515082908022aa3614eee96fdbe"],"ImageBlurHashes":{"Backdrop":{"00b4d515082908022aa3614eee96fdbe":"WTHxpBxt-._1%2-U~po0W?%fRQoz.7t6Iro}S2NI-poes+s:S5n$"},"Primary":{"267b85ee6eaae11db1c0e05d987c0afd":"dJG@xg]~57s:KES$ohkSASNer@$~~TnhM|aeR#J8OsWU"}},"LocationType":"FileSystem","MediaType":"Video"},"9bba3471009ccbe304bd6ff67f52a72f":{"Name":"A Series of Unfortunate Events","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9bba3471009ccbe304bd6ff67f52a72f","PremiereDate":"2017-01-12T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"306304"},"AirDays":[],"ImageTags":{"Primary":"f11ca178ddd0b4e7e322a119d65efa05","Art":"b08d1f2bf23eadfcc3a09a7923b07032","Banner":"0657184749609adfe1b581ac5411c074","Logo":"3d491c88a2a003c226d16fc188e68b57","Thumb":"9fb5c8bccbf7130e8d93bd0e720c1a19"},"BackdropImageTags":["7fa7050c2c780be5cf5373fd037d8a6f"],"ImageBlurHashes":{"Backdrop":{"7fa7050c2c780be5cf5373fd037d8a6f":"W56HfY574:~BI?D%~VE2D*?HShIUe:WVazs.ofR+Mxf+%MMxRj%M"},"Primary":{"f11ca178ddd0b4e7e322a119d65efa05":"dLD[|C-ot2?F~Uof%1-o%0j?%L%1-noeWVs.NIofxZj["},"Art":{"b08d1f2bf23eadfcc3a09a7923b07032":"NdN1AatR~qj?~qWB%Mj[WBj[ofWB%MkCM{aya#j["},"Banner":{"0657184749609adfe1b581ac5411c074":"H66*gg.7nNIVSOsCE1aKE2~ptknhM|Wrs.Ios9Ip"},"Logo":{"3d491c88a2a003c226d16fc188e68b57":"OE71v9t6M{a#ofWCM{t7j[j[ayayayay01Rkxuj?WBoetQ"},"Thumb":{"9fb5c8bccbf7130e8d93bd0e720c1a19":"N997b5?vIVr=IpRjVs9GM|-pbbV@009GjbxaWBRj"}},"LocationType":"FileSystem"},"3066b38eaed80904740b24100a553dcb":{"Name":"Inception","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3066b38eaed80904740b24100a553dcb","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2010-07-14T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":88879849472,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"27205"},"VideoType":"VideoFile","ImageTags":{"Primary":"340c719eb58411b4fa079bc7562b9d31","Art":"8ba6fb1e9973deb5fbb34c9ac1f3c840","Banner":"291403f6557718400b7e7ead12f7ea13","Disc":"4be3112a38ac585bac7a0b1a6eb98028","Logo":"d764fb7fdf6f2f8f9d45562d1ce5580e","Thumb":"787f7eeb4ce1b35b0db35c2c80e86c28"},"BackdropImageTags":["6cbb534d3bf6a51dc98b5578c227aae6"],"ImageBlurHashes":{"Backdrop":{"6cbb534d3bf6a51dc98b5578c227aae6":"WRK^yRxtIV?Z-.^%~UxuRkWBWCs:IUoeRkM{NGRk-os.j[oeoeof"},"Primary":{"340c719eb58411b4fa079bc7562b9d31":"dJ9t=ZyDD%f,wbozWBjF8wRP%MoLn5V@ozofw[oLS2WB"},"Art":{"8ba6fb1e9973deb5fbb34c9ac1f3c840":"NTHe^7%3IU?bWCj]~V%MD%xtRjWBRnNFjsRka|oe"},"Banner":{"291403f6557718400b7e7ead12f7ea13":"HUC#x*$P0yE~bvxF#RN^Fx-;jsITjFtRX8R*WXjs"},"Disc":{"4be3112a38ac585bac7a0b1a6eb98028":"eSK1I1#T~XxF-po|Rjr?xakC_4J*%~NvSzsojsR+ofj?=|rrV@n%IU"},"Logo":{"d764fb7fdf6f2f8f9d45562d1ce5580e":"OWBA2~jtjtWpa|o1a|o1a|a|jtjta|a|1^a|Wpo1a|Wpo1"},"Thumb":{"787f7eeb4ce1b35b0db35c2c80e86c28":"NNEp7z57-;xvIB?b~B0K%MaeM{xu#oE2t7WBe.oz"}},"LocationType":"FileSystem","MediaType":"Video"},"232dc33a9f254be4bfc4895ca23eff54":{"Name":"Mob Psycho 100","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"232dc33a9f254be4bfc4895ca23eff54","PremiereDate":"2016-07-11T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"307375"},"AirDays":[],"ImageTags":{"Primary":"d255215bb40911996521aefbbae6d423","Art":"5853800d0b59582e48444deb57a06992","Banner":"d96999de36397c203096e0a4b05b0f19","Logo":"d5db31ee51df8422ae39c7458efc0a52"},"BackdropImageTags":["54b83e15ef3f9130f3b43e40f5ad2383"],"ImageBlurHashes":{"Backdrop":{"54b83e15ef3f9130f3b43e40f5ad2383":"WGD]Vk.Q5M?GDineJ4xA={OaEM%0,KVZD%9bM~-;-?NHIToONHV="},"Primary":{"d255215bb40911996521aefbbae6d423":"dKI4hi?bLK~U.Po{WGxB-5tQABR+}?b^X9xtEbEKN1Rj"},"Art":{"5853800d0b59582e48444deb57a06992":"NwJ@%u~WWVIobc%MxaR*a_ofafoK?v.8oeRPnjof"},"Banner":{"d96999de36397c203096e0a4b05b0f19":"HOC;^YTx7e{}I:63=e-otk$*X8SgsAW:j[ofX8so"},"Logo":{"d5db31ee51df8422ae39c7458efc0a52":"O~O2R7ay?^of%hozjZt7fQayfQaya|jtozfQaefQaya|jt"}},"LocationType":"FileSystem"},"c83aab6074f84d3c66234412a4b215ab":{"Name":"Voltron: Legendary Defender","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c83aab6074f84d3c66234412a4b215ab","PremiereDate":"2016-06-09T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":7.7,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":76,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"307899"},"AirDays":[],"ImageTags":{"Primary":"5a78de108228479ea4db707a950dc638","Art":"91874af19d94e796dc25df1714f0d780","Banner":"d69bbcef527dd0a2e79c9be2a9f515ff","Logo":"52aa3b6b45deabbdedc453fd68bd971f","Thumb":"06f728ac12e8c0ec98172f2523333198"},"BackdropImageTags":["faa20a66b3d31c105da7defeb55b036d"],"ImageBlurHashes":{"Backdrop":{"faa20a66b3d31c105da7defeb55b036d":"WJ9a,COsMK#=9aX5pyf~VYnnbWozS*V?RhkXxZofw#n+X3X7WFkD"},"Primary":{"5a78de108228479ea4db707a950dc638":"dAAAq1%i9G%gniV[RPWC$fxtoeRi_N?vtRM_4.H@entQ"},"Art":{"91874af19d94e796dc25df1714f0d780":"NqI}|w0KM{t7%2M_9G%gxaRiWBWBxaRPWBoyX8of"},"Banner":{"d69bbcef527dd0a2e79c9be2a9f515ff":"HTEMK|03--D*xVM|kXxr9G_2E4$|Rok9RQk9s.E1"},"Logo":{"52aa3b6b45deabbdedc453fd68bd971f":"ORKnYv6,=~S#?GNF%24TkrxbWTobRkxu%g$*XSs9xtayof"},"Thumb":{"06f728ac12e8c0ec98172f2523333198":"NE9@#f%jEUoHNGW]EBtn%fk7tQt89bXAxnoYxnou"}},"LocationType":"FileSystem"},"8461bccb17c6509805cd45e5a2a854a6":{"Name":"Saga of Tanya the Evil","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8461bccb17c6509805cd45e5a2a854a6","PremiereDate":"2017-01-05T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"315500"},"AirDays":[],"ImageTags":{"Primary":"6f00998c01c07477d335f0916c09034a","Art":"b5b500a3d69911fe6b23bff789413335","Banner":"98c4b6c0654c703ebc9a7ef45029b7cb","Logo":"ec3ad21b4c2e00e7687183125bd8b219"},"BackdropImageTags":["ac67826d6919d1136f0a358aadc5d28e"],"ImageBlurHashes":{"Backdrop":{"ac67826d6919d1136f0a358aadc5d28e":"WWF}ND~COGFf?b?Gwbn49ZE2R*WAs9RjenWBbaoJ-;tRbdog%2xZ"},"Primary":{"6f00998c01c07477d335f0916c09034a":"dBAdDl_2tQ%fD*WCD%IUIXRkRPRj~q%MM|R+xtoeIURj"},"Art":{"b5b500a3d69911fe6b23bff789413335":"N;L}EGof~qazIVof?bfk%3jtRjj[E1a|RPjZt7ay"},"Banner":{"98c4b6c0654c703ebc9a7ef45029b7cb":"H~QS^{%gjE.8ofxax]oJoz~qt7WBt7ofj[t7ofof"},"Logo":{"ec3ad21b4c2e00e7687183125bd8b219":"O~P6{nj[ofj[ofj[oft6fQfQfQfQfQfQ~qj[WBj[WBj[WB"}},"LocationType":"FileSystem"},"31589e6cf7cb9ed0ea66b4f0ae75ef09":{"Name":"The Secret of Kells","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"31589e6cf7cb9ed0ea66b4f0ae75ef09","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-02-08T23:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":47233429504,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"26963"},"VideoType":"VideoFile","ImageTags":{"Primary":"48839cc1bda490ae1ae2396be5c550dd"},"BackdropImageTags":["2eb30166f0c45a318de2fa53ed2ea758","d83677d26475a4e5c538bf3cc4077163"],"ImageBlurHashes":{"Backdrop":{"2eb30166f0c45a318de2fa53ed2ea758":"W#Ke.enNInx]t6o#yGofn%V@jbogJ8j[jFWBWBayx^adt6ozWBj@","d83677d26475a4e5c538bf3cc4077163":"W#Ke.enNInx]t6o#yGofn%V@jbogJ8j[jFWBWBayx^adt6ozWBj@"},"Primary":{"48839cc1bda490ae1ae2396be5c550dd":"dJE3@P-:4-kl^,t7fit8V|V_xuxu~pxaIUk9Rjk9xbt7"}},"LocationType":"FileSystem","MediaType":"Video"},"2e1b70b6d76df6fa7c3b277c521e13ec":{"Name":"Milo Murphy's Law","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2e1b70b6d76df6fa7c3b277c521e13ec","PremiereDate":"2016-10-02T22:00:00.0000000Z","OfficialRating":"TV-Y","ChannelId":null,"CommunityRating":10,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":22,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"315954"},"AirDays":[],"ImageTags":{"Primary":"bcdc795648a10f2c5f3e3c878f75f595","Banner":"ec450aa872526709809ea16cd05d1451"},"BackdropImageTags":["a3647c199833360a8eebffd62750b879"],"ImageBlurHashes":{"Backdrop":{"a3647c199833360a8eebffd62750b879":"WdIhyq%LM_RPi{r[.mt7M|bIrrM|krR+WWxueTWV%gixkCkXRkoy"},"Primary":{"bcdc795648a10f2c5f3e3c878f75f595":"dnHVYc%2M|XTyZozSOXSEnWXX9o#j2WYbcRke[WYXSR*"},"Banner":{"ec450aa872526709809ea16cd05d1451":"H:IF@;%1R5bwRQs:r?bFSz*0s.jEf,V[kWjrbvR*"}},"LocationType":"FileSystem"},"1d599d164d1952b733e56e90c1e4b885":{"Name":"Trollhunters: Tales of Arcadia","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1d599d164d1952b733e56e90c1e4b885","PremiereDate":"2016-12-22T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":52,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"318201"},"AirDays":[],"ImageTags":{"Primary":"534c8c28710300cb1758723e867e3fd6","Banner":"6be64f556add7b51966b44803aa18b7d"},"BackdropImageTags":["62bc1cdd84ef26a5a2a5eb64803e095f"],"ImageBlurHashes":{"Backdrop":{"62bc1cdd84ef26a5a2a5eb64803e095f":"WQGaLf#Q0g-pE*BWRPtPo~RP$*xa58S%xuo2#+wKahV@nPX8OsNa"},"Primary":{"534c8c28710300cb1758723e867e3fd6":"dPEx|z-=4oIWPBkVr:j;9IRo%3xu$PW.W.s:0$Rj-Vso"},"Banner":{"6be64f556add7b51966b44803aa18b7d":"HE8z1r6bIV$@$nELab+]M^%QOXnPfes?NZr;r;J4"}},"LocationType":"FileSystem"},"09830c947fa3df8457c2d1d5fadf1e4d":{"Name":"Beau S\u00e9jour","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"09830c947fa3df8457c2d1d5fadf1e4d","PremiereDate":"2016-12-30T23:00:00.0000000Z","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2016,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"318352"},"AirDays":[],"ImageTags":{"Primary":"2d93d9c3011c334195bc71a1a335011d"},"BackdropImageTags":["aa2df5bc00aa774d58b3ce04386277fa"],"ImageBlurHashes":{"Backdrop":{"aa2df5bc00aa774d58b3ce04386277fa":"WbDK3@xujst7j[t7_Nofj[ofayofn$WCj[jZf6j[xtj[WVa{a}jt"},"Primary":{"2d93d9c3011c334195bc71a1a335011d":"dPEo*[%Mocxu~p%LWBWUxZj?Rjj?%Loet7xaxtRkofof"}},"LocationType":"FileSystem"},"31974605cf2eebe712496d688e097b39":{"Name":"Tenacious D in The Pick of Destiny","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"31974605cf2eebe712496d688e097b39","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-11-21T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":56466829312,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2179"},"VideoType":"VideoFile","ImageTags":{"Primary":"83fa5d85452635dc69ae0b313a38d998"},"BackdropImageTags":["5496ce78c9d353f8905a565d0d0242f7"],"ImageBlurHashes":{"Backdrop":{"5496ce78c9d353f8905a565d0d0242f7":"WCDk=E~W5U9Gr=={#TNIE2M|E3E4K6x]xu%MtlS~D+E2bdXTo#s;"},"Primary":{"83fa5d85452635dc69ae0b313a38d998":"dTFzyjt60gwKR5sA%1f5i{xFf+R-^PS4E3xDRRn%OTNH"}},"LocationType":"FileSystem","MediaType":"Video"},"31dd79df6281b02cb42ffa0ac6f47ec3":{"Name":"The Hitchhiker's Guide to the Galaxy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"31dd79df6281b02cb42ffa0ac6f47ec3","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-04-27T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":65265291264,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7453"},"VideoType":"VideoFile","ImageTags":{"Primary":"943c2865ef0628c63f080e18622690ff","Art":"73345743868417b47e21319fa6f2a388","Banner":"624588a4c7bcc31c6c872c06f2936bb8","Disc":"9699707a294d9e3c66bcc9ee39278608","Logo":"e59afd922b18e3535f976760b73c5b2c","Thumb":"0d597b0818dd8033468941eefaacbca0"},"BackdropImageTags":["01f6de958e1a8d82f5e29f6f44179f71"],"ImageBlurHashes":{"Backdrop":{"01f6de958e1a8d82f5e29f6f44179f71":"WuEE$2%gIVT1aJR.*0xtV@SPocWXZ~bFVsRjS5jHtmWqNGWBs+s:"},"Primary":{"943c2865ef0628c63f080e18622690ff":"doBr1Kx]M_bwo#n$V?bbDNRPxFjFXSkCtRjYoef%kWoJ"},"Art":{"73345743868417b47e21319fa6f2a388":"NuKe4c_NWAjYWCM{NGD%RjWBfkofW;V@t7RjR*t7"},"Banner":{"624588a4c7bcc31c6c872c06f2936bb8":"H[Gvku%ho#xvRPt7xu%g%M_NbcR+t8M{WVoft7t6"},"Disc":{"9699707a294d9e3c66bcc9ee39278608":"ePGvq]xu^jR*?a%MWDSit7nO~pNG~VnhR,IAWBt6Rjbb-pV[ofoyD*"},"Logo":{"e59afd922b18e3535f976760b73c5b2c":"OTGc[bM{$%kq_3bb~W-:NxR*xafPi^V@EgS$$*aJkCozae"},"Thumb":{"0d597b0818dd8033468941eefaacbca0":"NaCbZk%fE1Xnn2XT*0t2RQSis+kXQmawVsRPS5fm"}},"LocationType":"FileSystem","MediaType":"Video"},"22fdc15dfd48db5b572f09b37ff7ba3b":{"Name":"Big Hero 6 The Series","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"22fdc15dfd48db5b572f09b37ff7ba3b","PremiereDate":"2017-11-19T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":10,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":59,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"322241"},"AirDays":[],"ImageTags":{"Primary":"97305d6dd07c4e588306fd9179aff709","Art":"7e83db49453ed1e05a32ce8db9edf7eb","Banner":"d61f642e2fee055fa83895201105e379","Logo":"e623a311a8d6319c10b19ec78675855a","Thumb":"a0a8bc0e760814da3a163dc42bf52da0"},"BackdropImageTags":["47bdcb08538f28e94dc5ce6335116b45"],"ImageBlurHashes":{"Backdrop":{"47bdcb08538f28e94dc5ce6335116b45":"W;QaUEY+nOx]RP%M$joLWBofaeofQ-ozo}j[Vsfk-Be.f6ozWBjZ"},"Primary":{"97305d6dd07c4e588306fd9179aff709":"dVNjtb+^Qm=x+_xHtRW.ukozu4i{^kS0Rjxbx^i{a0bI"},"Art":{"7e83db49453ed1e05a32ce8db9edf7eb":"NXL.MZ_O+I%g0|P9W:f+s:V[jZof9t%MobRjt8RP"},"Banner":{"d61f642e2fee055fa83895201105e379":"HpLK?X-pZ$niNaH?Md%Lx]}FxGn%j@R*V@jZofoL"},"Logo":{"e623a311a8d6319c10b19ec78675855a":"OYP*ojSfS2sAN]oLSf;%o1a|a|a|a|a|1^n*oLj[jtjZn%"},"Thumb":{"a0a8bc0e760814da3a163dc42bf52da0":"NTEBgC}?^i=x-To|vhrYw0i{jFNHE4NJr@NbayV]"}},"LocationType":"FileSystem"},"df881fd3520b077aa8eb54610e73e47c":{"Name":"Mind Field","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"df881fd3520b077aa8eb54610e73e47c","PremiereDate":"2017-01-17T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.3,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":24,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"322873"},"AirDays":[],"ImageTags":{"Primary":"fc83b906e2897f1f79fb85204e4cf557","Art":"492271e1918caf4cb05c8ecd9831abc1","Banner":"62bbed21eee7043e07cf216b929e77a9","Logo":"20a936227e8dde3fc2273d64c226c628","Thumb":"b4155ff5482b520a5e6c2ff5b065e2e5"},"BackdropImageTags":["f6a0a8256afde8d9a97e3ef7976d232e"],"ImageBlurHashes":{"Backdrop":{"f6a0a8256afde8d9a97e3ef7976d232e":"WKEC2on+0MjF-p?H%MEMS$xtsmt7IVxZ-;kCM_ad%M-oM{Io%1xa"},"Primary":{"fc83b906e2897f1f79fb85204e4cf557":"dHB:1[-pE2Rj0zNHxat6IAjFt5R*-oRjM{s.WFWXkXxb"},"Art":{"492271e1918caf4cb05c8ecd9831abc1":"NtMs+ZWD~pj?t7xuyZj[-=ayaxf+ROt6V@RjRjoK"},"Banner":{"62bbed21eee7043e07cf216b929e77a9":"HE9s@x4T?crWnj%NMc_24o^*IUxvslaLxuVr%LIo"},"Logo":{"20a936227e8dde3fc2273d64c226c628":"O~Q[}Dj[R,j[azj[WDs.fQjtazazj@fQ*0j[odj[fQfkoK"},"Thumb":{"b4155ff5482b520a5e6c2ff5b065e2e5":"NC9Q8HIUM{~BWA${S*E3NGo#IqIrM|xtM|WCxaIp"}},"LocationType":"FileSystem"},"a8ecc30a0fbed47692d7ea6a9da9d6c7":{"Name":"Black Spot","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a8ecc30a0fbed47692d7ea6a9da9d6c7","PremiereDate":"2017-03-08T23:00:00.0000000Z","OfficialRating":"10","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":35999997952,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"325084"},"Status":"Continuing","AirDays":[],"ImageTags":{"Art":"5ce077147079a5f6f647f02114ceee07","Logo":"ad6cdfa6e42f6dd5c465ae5234393a90","Thumb":"19eaa87a269c30fd43b39e46ef2f28f5","Primary":"f87952b18d0c936d86fc6ae7c6d91a4c","Banner":"8deeb87f056d7a5af52495ef5f6ee33a"},"BackdropImageTags":[],"ImageBlurHashes":{"Art":{"5ce077147079a5f6f647f02114ceee07":"NjNKI.~qWBD%~q9Ft7fPofj[ayj[?b%MRjRja{ay"},"Logo":{"ad6cdfa6e42f6dd5c465ae5234393a90":"OOP72,%M~qof_3of?boft7t7WBofRjWBIUoft7ayt7ayay"},"Thumb":{"19eaa87a269c30fd43b39e46ef2f28f5":"NE9asr~qi_V@%M?b?c%MWAaLxux]D%IURPayWBRQ"},"Primary":{"f87952b18d0c936d86fc6ae7c6d91a4c":"d8ABR#obD%.9R:H?Dio#azsCMxWB_Nt6NGMxI9t7RPMx"},"Banner":{"8deeb87f056d7a5af52495ef5f6ee33a":"H66*p^Vs4mtR8_NG?bWBf6_Nt7D%WBM{IU%Mt7oL"}},"LocationType":"FileSystem"},"efb2542c98975ee1ebca55bdbe3027c3":{"Name":"Made in Abyss","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"efb2542c98975ee1ebca55bdbe3027c3","PremiereDate":"2017-07-06T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.6,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":16,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"326109"},"AirDays":[],"ImageTags":{"Primary":"43dc8fa2b602314eee51485d768432f4","Banner":"9c981f54d9c0d5189a034e8878c4cc5b","Logo":"d291b6764ac65bbd586bdf3a7c9db234"},"BackdropImageTags":["1b6e09a478a67ae8f0ac007be000c114"],"ImageBlurHashes":{"Backdrop":{"1b6e09a478a67ae8f0ac007be000c114":"WfF?2|j]bcxukBtR_4ozWrogofof?vt7ofogWBj@.8oefkbIR*bH"},"Primary":{"43dc8fa2b602314eee51485d768432f4":"dXFPTt%gE2a^~Ws=S#oc%Lt7bcWB-pozX9n$%1ozX9n~"},"Banner":{"9c981f54d9c0d5189a034e8878c4cc5b":"H*L|cMI;M|xFOFxZofx[of~VNHNGn*X9ofj@t6a}"},"Logo":{"d291b6764ac65bbd586bdf3a7c9db234":"O;Q]H5oe.Tofs:kBMxj]aeoeogj[WBf6o|ayaKj[axbGkC"}},"LocationType":"FileSystem"},"775ef77c05b36d5ec14bf01229d39ada":{"Name":"Money Heist","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"775ef77c05b36d5ec14bf01229d39ada","PremiereDate":"2017-05-01T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.2,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":31,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"327417"},"AirDays":[],"ImageTags":{"Primary":"4054cc37527c368eaf4829be4dde42f2","Banner":"fc0b6c0db83a56cf1c35c33aa0b597fa"},"BackdropImageTags":["cb058159e939f7dcc4de3519a43a6f88"],"ImageBlurHashes":{"Backdrop":{"cb058159e939f7dcc4de3519a43a6f88":"W78D%]Nb01en%gxu?GNHjss.Nbof0KRj_3%29FWAM{n%NIt6RjWV"},"Primary":{"4054cc37527c368eaf4829be4dde42f2":"dQBWVxt84nIU_Nt7DiIVtSs.RjWBM{V@xuxu9ZIo-;x["},"Banner":{"fc0b6c0db83a56cf1c35c33aa0b597fa":"HRCZIntR4.V@nOo}NaMxMx~Wt7E1V@i_kDWpV@Rj"}},"LocationType":"FileSystem"},"598aea9661d1914622fd6c3ace663487":{"Name":"Castlevania","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"598aea9661d1914622fd6c3ace663487","PremiereDate":"2017-07-06T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":32,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"329065"},"AirDays":[],"ImageTags":{"Primary":"66a46dea9e39ebb00a352b5cafa8cd6e","Banner":"323d5bb93023649357a5b98631bf438f","Art":"fb14b7f483c4b3912a27748441d8fbdb","Logo":"53096f99f596b2e55477cc55a7c1de88","Thumb":"08354111e6c97d6332eb0cc927a26cf0"},"BackdropImageTags":["1fc0291bf5065366cfa7bfbdb3ed957a"],"ImageBlurHashes":{"Backdrop":{"1fc0291bf5065366cfa7bfbdb3ed957a":"WPGsAh+HiybbJ7o}}s9]EgxZNtX8nOS$SewdR+a_VskWW:wJbbwc"},"Primary":{"66a46dea9e39ebb00a352b5cafa8cd6e":"dJByaI-pRj%MD%RjofM{9ZWBjZM{~qxuWV%M9FIot7Rj"},"Banner":{"323d5bb93023649357a5b98631bf438f":"H55:c-]nNwN^641wN]sow{]m$PS3fRJRE}S3WpWp"},"Art":{"fb14b7f483c4b3912a27748441d8fbdb":"NqK^:9~qjsD%%Mt6ofayj[a|fRjs_N?bRjNGt7of"},"Logo":{"53096f99f596b2e55477cc55a7c1de88":"OdQcn{IUWBxut7ofay%Mj[j[j[ayfQay~qayayWBWBWBay"},"Thumb":{"08354111e6c97d6332eb0cc927a26cf0":"NEBJQ_1_FI]SAr]9;~ArWp$OAr$OFIwx$5WpNvsn"}},"LocationType":"FileSystem"},"df7cbe293574429eb7adb6a253b3035d":{"Name":"DuckTales (2017)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"df7cbe293574429eb7adb6a253b3035d","PremiereDate":"2017-08-11T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9.3,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":68,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"330134"},"AirDays":[],"ImageTags":{"Primary":"06d77953401e8453514887a29dfaaaff","Art":"891ad880083ad765eda888536e48e6d2","Banner":"8beaa25983c701ce61d3524d218283a0","Logo":"2aa93b3ff11ec85c8eedb36a8d39cb17","Thumb":"890c8e5e0a254883e97c9628c8936798"},"BackdropImageTags":["1745f7d06da574a5134e1eda736714ea"],"ImageBlurHashes":{"Backdrop":{"1745f7d06da574a5134e1eda736714ea":"WSM=wZ^IxDX9v~%1~STayB$%s-WCy9FxS2-TR-Ri^itQt6oNoM$g"},"Primary":{"06d77953401e8453514887a29dfaaaff":"dhI#}akXKQtl_MkCkXWBgiaeaLNG-;oznhX7ohozxZnh"},"Art":{"891ad880083ad765eda888536e48e6d2":"NRNJtCv}E*k=Ipx]IS0KsGVrj=WG0g%N-=WC$*ad"},"Banner":{"8beaa25983c701ce61d3524d218283a0":"H:N8vd%MemngWC$zsls9xB}?%1n%W:fks,oJaei_"},"Logo":{"2aa93b3ff11ec85c8eedb36a8d39cb17":"OlOpi8jY.9of%hWZ%gn}%ho#ITWBaxt6?wbJV=oIRiazRj"},"Thumb":{"890c8e5e0a254883e97c9628c8936798":"NZOBrg}+xXV{,o={~SO:pG-Tt5kC-#BVkC$fRnn#"}},"LocationType":"FileSystem"},"c4356c4f086e69f50a4a5ed21e0d0913":{"Name":"Altered Carbon","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c4356c4f086e69f50a4a5ed21e0d0913","PremiereDate":"2018-02-01T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.5,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":18,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"332331"},"AirDays":[],"ImageTags":{"Primary":"facbfd067ffa51a07ba313938ae12554","Art":"aa006ff2b094e43780d1d044d5d13558","Banner":"87f809e98c9172f28c8353f04c4bd585","Logo":"1a971d6a3ee64f46c0213fd9bfc229f8","Thumb":"771dcc7af94b852e67e639bb44fb8c8b"},"BackdropImageTags":["f3644263f56337b0b0b3bf1bd8735119"],"ImageBlurHashes":{"Backdrop":{"f3644263f56337b0b0b3bf1bd8735119":"W768]X?bHqS}%z-BL2SOmQv}yYWT57E2ibV@PCOr.At7S_JRInpJ"},"Primary":{"facbfd067ffa51a07ba313938ae12554":"diG+UL-pIpSi_NxuRjof%gofe-s:-;a}WVoJoMofbHbF"},"Art":{"aa006ff2b094e43780d1d044d5d13558":"N^Lqe7~qxuRjt6af?bWBM{Rjt7WBtQWBjZj[ofRj"},"Banner":{"87f809e98c9172f28c8353f04c4bd585":"H65#kZM{0K-o$+9[n4^+Nb-;RPD%%L-;ELIA-pf,"},"Logo":{"1a971d6a3ee64f46c0213fd9bfc229f8":"O~QcC,X8W;s:W;kCfkt7a|fQjtfQfQfQ_No1n%Won%jtf6"},"Thumb":{"771dcc7af94b852e67e639bb44fb8c8b":"NREMB=~pbFS5%h%#?bxus;oMt7tRb_kDjcWDWXof"}},"LocationType":"FileSystem"},"0402d33a2d8f6fa108902177d8f9ba84":{"Name":"Final Space","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0402d33a2d8f6fa108902177d8f9ba84","PremiereDate":"2018-02-25T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.4,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":36,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"332353"},"AirDays":[],"ImageTags":{"Primary":"701a040805f07bc01690dcac86e9001b","Art":"8ae0fe23e9d8fa786351a2642f18d528","Banner":"f061cbdea85920cd4c5d5229c3cd9595","Logo":"7dd8b0de9ddc5cb276a43cf3f8d7af5a","Thumb":"c9e6b7d41dcd8a8171b2cf595d32af08"},"BackdropImageTags":["7d8dd415240c669ee16d9496488502fe"],"ImageBlurHashes":{"Backdrop":{"7d8dd415240c669ee16d9496488502fe":"WNG94}QqE6T]}w^%x+R7NLNr=|%LHuk-xvZmtdRj#uthx]a8teVs"},"Primary":{"701a040805f07bc01690dcac86e9001b":"dWF=z-xYDhxd_CxvE2oe-UWANGoZE2e.jFt89ERktRfm"},"Art":{"8ae0fe23e9d8fa786351a2642f18d528":"NiN0#vwR1AR:IJNY_JjK%FWYVqR$n4St$+ocx:sq"},"Banner":{"f061cbdea85920cd4c5d5229c3cd9595":"HRBD$yWY8^xtE2Ip-oxYo#_4WVIAt6IoNGxts.of"},"Logo":{"7dd8b0de9ddc5cb276a43cf3f8d7af5a":"O~NAYoay~pt7oyWARQR*ofofRjofoMWBWUayazj@ofoMax"},"Thumb":{"c9e6b7d41dcd8a8171b2cf595d32af08":"NfHKIdt8EfIpaJt6~CtRJlNHM{t5-:%2SNaeV@ox"}},"LocationType":"FileSystem"},"33239a5ff5dddd6c1560e4234265f58d":{"Name":"Lara Croft: Tomb Raider","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"33239a5ff5dddd6c1560e4234265f58d","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2001-06-10T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.9,"RunTimeTicks":60320649216,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1995"},"VideoType":"VideoFile","ImageTags":{"Primary":"fd16dfc42bc75d5e2889d0ff96dd13cd","Art":"cd99e04503988f6dce6fbbf5c5c74131","Banner":"83017f44cd5650380c3c6d1889ec7f2d","Disc":"e195a971319b8ca2c02db384c5a45aed","Logo":"ea1cd41c6f4eb0dc9b9b9de395e20df3","Thumb":"67301cea2937411a46e15a1364c17391"},"BackdropImageTags":["eaa6e5c2c44747286d73bae55769921f"],"ImageBlurHashes":{"Backdrop":{"eaa6e5c2c44747286d73bae55769921f":"WkSF-D?bof%3-;xu^+ofofofofofxvogayWUV@j[~qogV@ayRjt6"},"Primary":{"fd16dfc42bc75d5e2889d0ff96dd13cd":"dPAdi[-=T3XU.AtSNMW?IpRnM{WBR.WCa#aeofjYs-j["},"Art":{"cd99e04503988f6dce6fbbf5c5c74131":"NUL:cH$1%%D+?vjDIqITrVaID+Ip%hNGO[n#^%Ir"},"Banner":{"83017f44cd5650380c3c6d1889ec7f2d":"HG8zlb?HRjxFRQ9aWE-oo}~V-pNGsoRj9aM|%1bb"},"Disc":{"e195a971319b8ca2c02db384c5a45aed":"eUH.vjt8_4RPxV%2kDShV@i^?vWB?Fn$%2s+WARjj=t7%MRjxZt7D*"},"Logo":{"ea1cd41c6f4eb0dc9b9b9de395e20df3":"OdJIY8Rlo~NG~UWC?ao#aeWBWBt7aysm%0aya}s:WCa|Rk"},"Thumb":{"67301cea2937411a46e15a1364c17391":"NLB.+a}@E1K5bvt6}s,?EL9[J6S1q]wdo}J7ODWC"}},"LocationType":"FileSystem","MediaType":"Video"},"64140daac26ace72608d027432b68328":{"Name":"Girls' Last Tour","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"64140daac26ace72608d027432b68328","PremiereDate":"2017-10-05T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.8,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"332983"},"AirDays":[],"ImageTags":{"Primary":"ba58a564b300c2b3e8c71de6b2ecb1ee","Banner":"cef6bb0dce3af3bfea8a2249fef2421c","Logo":"d27031eeb595a2a1ab2ee67930a4aef6"},"BackdropImageTags":["3ef97eddba63ee10e1464d521e33a607"],"ImageBlurHashes":{"Backdrop":{"3ef97eddba63ee10e1464d521e33a607":"WYI~GYD%-p%hM|%NPDt8ROS5NINGJYbx%MoekDt8.AE2R,t7V[t8"},"Primary":{"ba58a564b300c2b3e8c71de6b2ecb1ee":"dA8E9;?aM{t7.Ta#NGt7XoIoM|oz~q%2Rjof-;xtoej["},"Banner":{"cef6bb0dce3af3bfea8a2249fef2421c":"HKDvl]0gk8?HbcyDIV~V4:%$x]%1M{t8%MW=f5WA"},"Logo":{"d27031eeb595a2a1ab2ee67930a4aef6":"OlP@9SkCWBofWVofj[t7a|fQj[fQazaz~Tj[oej[j[azay"}},"LocationType":"FileSystem"},"719f23836c75c983dc277f4532f199bd":{"Name":"Hellsing: The Dawn","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"719f23836c75c983dc277f4532f199bd","PremiereDate":"2011-07-26T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7,"ProductionYear":2011,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":3,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"333548"},"AirDays":[],"ImageTags":{"Primary":"ec92faf9d0698e9ef16d7d5e7533b533"},"BackdropImageTags":["bb49b0f54c3bf555143f9649574586c6"],"ImageBlurHashes":{"Backdrop":{"bb49b0f54c3bf555143f9649574586c6":"WWA^n6M{DixvbIa|_NM{IAxuR*j[.8M{M{%MRiay-;M{WCxuM{kC"},"Primary":{"ec92faf9d0698e9ef16d7d5e7533b533":"dYG%;}%1Ip$~}=s-RkxsIpRjfltQNKNdR+ocShR-W.xW"}},"LocationType":"FileSystem"},"e4298fe44076f0ced5dbf4cc54dcc20f":{"Name":"DARK","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e4298fe44076f0ced5dbf4cc54dcc20f","PremiereDate":"2017-11-30T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"334824"},"AirDays":[],"ImageTags":{"Primary":"115f6d00dc7fe7d24d5cc9857d342d00","Art":"8e18ad52c9d6fced908e685ed0d9623f","Banner":"c097690b7c739f3bd4ce2e7e9a362455","Logo":"1eb5f20a0494f9b72ac03273e8fd930f","Thumb":"0f148e97fc34e7ec80630d36a7a554e1"},"BackdropImageTags":["a4a829bb60bf085c43d22b65ec6ac16b"],"ImageBlurHashes":{"Backdrop":{"a4a829bb60bf085c43d22b65ec6ac16b":"WK8X,-ozn$j[-;xu?^oft7fk%gxu%gj[xaj[xut7tRbHxtofaej["},"Primary":{"115f6d00dc7fe7d24d5cc9857d342d00":"dE69IDtRMxWW*0ogRiWBx^kCjXjYyDkCWBfjoyfPWYWX"},"Art":{"8e18ad52c9d6fced908e685ed0d9623f":"N=L|x]oc?wWExvt7p0WW-oj?s:oeRij]M{j?WBWB"},"Banner":{"c097690b7c739f3bd4ce2e7e9a362455":"H44oQOoz9Ff+xuWVo2%MIU?wofIUbHtRbIoLxuM{"},"Logo":{"1eb5f20a0494f9b72ac03273e8fd930f":"OWRpB[ofM{xut7fQIUxufQj[ayayfQfQ~qfQxuRjWBofxu"},"Thumb":{"0f148e97fc34e7ec80630d36a7a554e1":"N96+FZtRDiaxx^x].TkCM{WB.8x].9ofIUWBx]tR"}},"LocationType":"FileSystem"},"4d365f68b9a4702ca8e1d91a786c03c6":{"Name":"Junji Ito Collection","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4d365f68b9a4702ca8e1d91a786c03c6","PremiereDate":"2018-01-04T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"335237"},"AirDays":[],"ImageTags":{"Primary":"70a489750d605c4e529b77ca7f5ea94e","Banner":"4634ea853c8540c3d17b0a807aec4a3c"},"BackdropImageTags":["c1c363f36de024f416ede33076c0d245"],"ImageBlurHashes":{"Backdrop":{"c1c363f36de024f416ede33076c0d245":"WFE{30+uVN^+H;^R?vaPnO-W%1jD$k$+WFt7r?n4%2r@s;s;IAsD"},"Primary":{"70a489750d605c4e529b77ca7f5ea94e":"dOEy72VrMf~W?cV^RP-qw~sonmxa-Wrr$k-WR%t7xaV["},"Banner":{"4634ea853c8540c3d17b0a807aec4a3c":"H98gmbq]az%29^^+RPNw-;~WVZo}t6E1?HniWC%1"}},"LocationType":"FileSystem"},"3c254a188d0a267417b866aa72751379":{"Name":"Infinity Train","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3c254a188d0a267417b866aa72751379","PremiereDate":"2019-08-04T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":42,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"335425"},"AirDays":[],"ImageTags":{"Primary":"d34d41724c6d535bd090daa9c4eb86ee","Banner":"533972bb08acfb5d2dd474ca0a0b5214"},"BackdropImageTags":["01c7c57ec10fe955f6af19d4ccb0767f"],"ImageBlurHashes":{"Backdrop":{"01c7c57ec10fe955f6af19d4ccb0767f":"WQ5?U}ofHbM{yUxux[ofM{Rjt7t7Q;bFt%o3VbWBIUWU%MxINFNF"},"Primary":{"d34d41724c6d535bd090daa9c4eb86ee":"dAAmla?c0GsKtp%N-pV|9ZogooEI?lR#9FoYM]Rz$kwL"},"Banner":{"533972bb08acfb5d2dd474ca0a0b5214":"H30dfwc*V[i~i6dKUiZmk-p=cRbFi~iid^ZTeXkn"}},"LocationType":"FileSystem"},"3358ca3a70424c9c9a8a81e293126f11":{"Name":"They Live","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3358ca3a70424c9c9a8a81e293126f11","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1988-11-22T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":56669999104,"ProductionYear":1988,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8337"},"VideoType":"VideoFile","ImageTags":{"Primary":"977529d1c03fe70a9ea31f8b0df2ccf3"},"BackdropImageTags":["c4cbdaf7432892aebc45d94354184215"],"ImageBlurHashes":{"Backdrop":{"c4cbdaf7432892aebc45d94354184215":"WWFFss-;%M%MWBt7~qt7%M-;RjM{-;j[t7xuM{t7?bt7t7ofWBxu"},"Primary":{"977529d1c03fe70a9ea31f8b0df2ccf3":"dhJP}V^i-V-V~Bxtniw{-Ut7NcM{=_WqWXaexZbbsTxZ"}},"LocationType":"FileSystem","MediaType":"Video"},"6462e5d4bca3ae6241b42e20746ff472":{"Name":"Lifeline (2017)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6462e5d4bca3ae6241b42e20746ff472","PremiereDate":"2017-10-10T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":15000000512,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"336004"},"Status":"Ended","AirDays":[],"ImageTags":{"Primary":"68d23bab4050050213ed49ddcf71f088","Banner":"56dd5ffc03f7f1153d27d4256e433fb9"},"BackdropImageTags":["b61eb92244d2468cb686d22e495d2a60"],"ImageBlurHashes":{"Backdrop":{"b61eb92244d2468cb686d22e495d2a60":"W32PPltmI9McVYogt8kCWAadaefkDNR5x^t-tlaeMwV?tRo~o#f5"},"Primary":{"68d23bab4050050213ed49ddcf71f088":"dXCs%Ux_E2ks?dWGM|o#%Mn~RjaJtRofM{Rix^tRRQR*"},"Banner":{"56dd5ffc03f7f1153d27d4256e433fb9":"HfG9aQDh8^tmM{-=IASiog_4xZD%IVt6%MM|WCt7"}},"LocationType":"FileSystem","EndDate":"2017-11-08T00:00:00.0000000Z"},"a936a521f5df612ce40062a8e0053e20":{"Name":"GO! Cartoons","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a936a521f5df612ce40062a8e0053e20","PremiereDate":"2017-11-06T23:00:00.0000000Z","ChannelId":null,"ProductionYear":2017,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"337964"},"AirDays":[],"ImageTags":{"Primary":"69e7f77a159917894ec4a15e68ec3c1b","Banner":"b51f149b2c66b4cd7c455bf8e7c20f22"},"BackdropImageTags":["407a9982a6de434ffaf1545fe5a9a3fa"],"ImageBlurHashes":{"Backdrop":{"407a9982a6de434ffaf1545fe5a9a3fa":"WQNS~b?aQR$z*z-V?vs*nftm%1t0RjIU}Fx]$*%1^+Rm$jspn6xa"},"Primary":{"69e7f77a159917894ec4a15e68ec3c1b":"dcPhFG-Uq]={xuj[oyog*LxHzqrE+uo2rYr=vhjXKhS1"},"Banner":{"b51f149b2c66b4cd7c455bf8e7c20f22":"H~SMP}yDXSwJen$jkqxubb}[tRf+niaKsUkCt7kC"}},"LocationType":"FileSystem"},"dc548bf21985a56b288637644cb1dd6b":{"Name":"Devilman Crybaby","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dc548bf21985a56b288637644cb1dd6b","PremiereDate":"2018-01-04T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"338192"},"AirDays":[],"ImageTags":{"Primary":"5dc25816eae9f56035adff1cf3a5f8d1","Art":"3a507b9faf9b31c643a46b9f6187dbb8","Banner":"bea6e4c67c3a268c64b4a7707a39cc28","Logo":"0e46a4dca4ce92b4f8629b214d373b53","Thumb":"583e948cab9ed8c91c6dc686a800dcf3"},"BackdropImageTags":["a32745076a1f312bb09303952f5af8c6"],"ImageBlurHashes":{"Backdrop":{"a32745076a1f312bb09303952f5af8c6":"WoFBIGwy;$$5SMsU|wsU;~wxo1wx]Sjt$PsUS2o1=0a|sUo1NuWp"},"Primary":{"5dc25816eae9f56035adff1cf3a5f8d1":"dF5sfVixJ6kDY#n5oLV[Twixn5jZX,afnPo0X5busWe."},"Art":{"3a507b9faf9b31c643a46b9f6187dbb8":"N%LNMpof~qs:yDbH9[ofs.bH$*oLv~aeX8WBbvof"},"Banner":{"bea6e4c67c3a268c64b4a7707a39cc28":"H23bdg-;004n%2?btRVsWB~q%M9F4.bH-;%Mbbay"},"Logo":{"0e46a4dca4ce92b4f8629b214d373b53":"OtRC6|t7pIkCgNjZSg.maeRPf6VsfQaKx]aeaej[jFj[kC"},"Thumb":{"583e948cab9ed8c91c6dc686a800dcf3":"NHEvT%-B|[+^ADxG5SR*JAW=ofR+wce.SzofoMWV"}},"LocationType":"FileSystem"},"33f9611bd8d0afe18c8a4de14d2f3f91":{"Name":"Pop Team Epic","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"33f9611bd8d0afe18c8a4de14d2f3f91","PremiereDate":"2018-01-06T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"339278"},"AirDays":[],"ImageTags":{"Primary":"c89f033e2b9b9f5d3b2a5a20fbbf37b2","Banner":"7f6623de6d518c7b1f068a1393fece48","Logo":"18b3f11e7217e2b53ede33845edd1de8"},"BackdropImageTags":["c70eadafb29f18250a28309e6558b2ea"],"ImageBlurHashes":{"Backdrop":{"c70eadafb29f18250a28309e6558b2ea":"WUO3X,.7xr?bR*%1=yNd$+w|n-r]r=Ops8ROSxkW~CtRspf6kUxu"},"Primary":{"c89f033e2b9b9f5d3b2a5a20fbbf37b2":"dlJ**axuIAxuIUj[M{WB~qofoft7%MWBWVt7%MxuWBay"},"Banner":{"7f6623de6d518c7b1f068a1393fece48":"HzMjBsxaxu=}nPxao#xGj=~CwJr?xZn$jYbIofni"},"Logo":{"18b3f11e7217e2b53ede33845edd1de8":"OD7^PxbIIUae%LbItRn5azxuj[e.a#WB0xjZ%Mj[NGjYWC"}},"LocationType":"FileSystem"},"092a3dea66ef9d3c02c52102587fb845":{"Name":"The Truth About the Harry Quebert Affair","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"092a3dea66ef9d3c02c52102587fb845","PremiereDate":"2018-09-03T22:00:00.0000000Z","ChannelId":null,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"339464"},"AirDays":[],"ImageTags":{"Primary":"9a3a9bfe62ffd05fb9005eaf119067a4","Banner":"00494c2d98748fb018f284fe5f3ac017"},"BackdropImageTags":["c330ffc09238957779dbf99737299789"],"ImageBlurHashes":{"Backdrop":{"c330ffc09238957779dbf99737299789":"WjL|+GDixa~p^+%M~q8_M{xtM{RjIoRjflkCM{M|oJR*ofj[j?WB"},"Primary":{"9a3a9bfe62ffd05fb9005eaf119067a4":"dhM7MxMcw]-V~WMxaJ?b9FIU%1%M%MM{a}Rj%gM{R*oy"},"Banner":{"00494c2d98748fb018f284fe5f3ac017":"H|N^PN-=x]xtMxxu-;WVM{~qj]x[t7Rjt6t7oyWB"}},"LocationType":"FileSystem"},"f4a1d8521b592678adc3981c150b52ee":{"Name":"Stargate Origins","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f4a1d8521b592678adc3981c150b52ee","PremiereDate":"2018-02-13T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":5.8,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"339552"},"AirDays":[],"ImageTags":{"Primary":"4e3ec632502d0676b822280c390f8c03","Art":"e55b625410fcd2c5e3d854b13ec32c6a","Banner":"3321296489c56c65de8cfeaf464b0b78","Logo":"66f991a3b7313f874ef1db1d8c8bd86b","Thumb":"d859f9d36a817d1221423cfba1ea57a2"},"BackdropImageTags":["6ae57abadb12b5eee43f24776ce40799"],"ImageBlurHashes":{"Backdrop":{"6ae57abadb12b5eee43f24776ce40799":"W.QS3G.7t7%Mobt7_Mazayt7RPs:ofRPbFadaKj[-ns.bbads:bI"},"Primary":{"4e3ec632502d0676b822280c390f8c03":"d;O.me%1s;-o_Mt6ogt7o}WBbbR+xDn$W=slt5ofWVWB"},"Art":{"e55b625410fcd2c5e3d854b13ec32c6a":"NLQIVBK%v0XTpdrrNhNyRjt7%LxZq]bwyXs:M{of"},"Banner":{"3321296489c56c65de8cfeaf464b0b78":"H:LgOTozxs-o%2odM|xttR~Vt6t6xtWDRjWBt7t7"},"Logo":{"66f991a3b7313f874ef1db1d8c8bd86b":"OKPPYt%LJZ~nD@xGT3tl9baLt6s-WVV[9jIWkBoextkCax"},"Thumb":{"d859f9d36a817d1221423cfba1ea57a2":"N:QIeh-:t7%Mobt7_Ma}ayt7Ris:ofRPbEadaKoL"}},"LocationType":"FileSystem"},"33ac95def97c47b5326b5e722130e61e":{"Name":"Cloudy with a Chance of Meatballs","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"33ac95def97c47b5326b5e722130e61e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-09-16T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":53933981696,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"22794"},"VideoType":"VideoFile","ImageTags":{"Primary":"04eb6833ce818740aec75303f5de56bc","Art":"981707a7854c6d8ba72e0a90ff8ea68a","Banner":"f8d97a5693e8b273bd6a7aa4b531320d","Disc":"04bd9a4992fd8f46b80dceb6b1cd530c","Logo":"0f930da21cdfa50dc291e94a3007229d","Thumb":"fcdc9a47844acd6a5515052b4f7549ba"},"BackdropImageTags":["edae25af10faa66438a1182150888ff0"],"ImageBlurHashes":{"Backdrop":{"edae25af10faa66438a1182150888ff0":"WOM6h~%~^h-rrB-pT}zn$yTen3iu9badTKxtX.r;%jXTJWxCNwRO"},"Primary":{"04eb6833ce818740aec75303f5de56bc":"dQI5#{%NyE.Apfr?pIT1vKjEo}jX^*t7o~ayv{aJkWXn"},"Art":{"981707a7854c6d8ba72e0a90ff8ea68a":"NWGZy;]QaNAH0}xtxVX5NHNHR.xZ5RkVs:WBxGNI"},"Banner":{"f8d97a5693e8b273bd6a7aa4b531320d":"H.I};#xukDrrlAxGX9tSm+.Aofnhn%XokCbcgOjF"},"Disc":{"04bd9a4992fd8f46b80dceb6b1cd530c":"eNNmpHM|yrNFtmv#nicES#R5_N%1%MozQm%gNakB%1R69tE2nPn+tR"},"Logo":{"0f930da21cdfa50dc291e94a3007229d":"OiO17=V@XmogbIt7S#-pWBbbkCWBt7WBy?SgjFazWVfkn%"},"Thumb":{"fcdc9a47844acd6a5515052b4f7549ba":"NRJP0s};#*-AoMn5^O-TxY%0w]nif$xZoza#Rkax"}},"LocationType":"FileSystem","MediaType":"Video"},"3663c9c346e3081218cbb4a17795b2e2":{"Name":"Disenchantment","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3663c9c346e3081218cbb4a17795b2e2","PremiereDate":"2018-08-16T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":30,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"340234"},"AirDays":[],"ImageTags":{"Primary":"c1a6a9f958ce9c2c0477355db13fa090","Art":"d3092d5799afb835622ee058fb53442b","Banner":"6ec0b78fb4674380e0cf9a8760ec2a64","Logo":"3ea5a70af531c8267d8ef8790a13cfa9","Thumb":"900538a67a2d5a57ea3ca932408fc266"},"BackdropImageTags":["55da3fa92bc29187f05533a64d200284"],"ImageBlurHashes":{"Backdrop":{"55da3fa92bc29187f05533a64d200284":"W8DlvH-;0e-nE9%M.6t7IoRjI]M}9ER%-;%1D+Iq-mW--p$*9HNH"},"Primary":{"c1a6a9f958ce9c2c0477355db13fa090":"dPG9v*SkRp%MGwa1M|R.4UR*M{M{xG$~t6oe9bRi-os:"},"Art":{"d3092d5799afb835622ee058fb53442b":"NiPj7Doz?v?bRkRj~qWBRjITt8jZ9Ft7Rjs:t8t7"},"Banner":{"6ec0b78fb4674380e0cf9a8760ec2a64":"HxH_Vv%Lt8xtbIaxado0a$~V%Lxaxtofj[axogay"},"Logo":{"3ea5a70af531c8267d8ef8790a13cfa9":"OTG8u[Io-oM{xuM{t8_NR.obWYoIbIjZk[a#WWa#oLa#oe"},"Thumb":{"900538a67a2d5a57ea3ca932408fc266":"NKIEX{^|FE^jWb-:?w9v4:$*IsS%0;9%V#ozNsWF"}},"LocationType":"FileSystem"},"3404921320b810a5368768614af6e292":{"Name":"Deadpool","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3404921320b810a5368768614af6e292","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-02-08T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":64862400512,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"293660"},"VideoType":"VideoFile","ImageTags":{"Primary":"1a5218043dd3d8be6ed8545f6afa7217","Art":"1374e3331f1f5c07a9a55453fcbd1f11","Banner":"86384c8b7c3a5282ce10397e8a271a23","Disc":"c43c6e50c4080db5882700033490707c","Logo":"6c29442b3e1113a0a27784cc6087e5f8","Thumb":"a563d575746706b6488373918217cacd"},"BackdropImageTags":["909f4b1384688ae4f7ad6af659d7534f"],"ImageBlurHashes":{"Backdrop":{"909f4b1384688ae4f7ad6af659d7534f":"WiOWd1t7%M%M-;-;~qxuR*t7aej[?bxuxuayD%kCxGRj.8ofRjt7"},"Primary":{"1a5218043dd3d8be6ed8545f6afa7217":"d27cXF}]M_VsO@$+WqEyVYJQT0WAxa$kwdnOJj[=wJOs"},"Art":{"1374e3331f1f5c07a9a55453fcbd1f11":"NYHA;S~q~q.8%gxuq]D%D%M{RPsoD%RjMxWBR*Rj"},"Banner":{"86384c8b7c3a5282ce10397e8a271a23":"H45Ds4wIWUxa9[xG$jNZK3}ZaeayxHEfxGsoNaS#"},"Disc":{"c43c6e50c4080db5882700033490707c":"eTI|qMRiu4xu.8=|RjNFt7oL_NoL.Ss:MxJ6Sh$kniW=%#ozVsaeVs"},"Logo":{"6c29442b3e1113a0a27784cc6087e5f8":"O~N0-uj[bHj[j[j[oft7fQa|ayayj[fQ~qj[f6j[f6j[ay"},"Thumb":{"a563d575746706b6488373918217cacd":"N44U81M{W:%29@-C$kR*a|s:Nasp0|tRn*NG-VI:"}},"LocationType":"FileSystem","MediaType":"Video"},"bb5b559d606d42441ea045b092b997d6":{"Name":"Aggretsuko","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb5b559d606d42441ea045b092b997d6","PremiereDate":"2018-04-19T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":10,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":30,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"346744"},"AirDays":[],"ImageTags":{"Primary":"7ce13372d1ef45ffb901c3c8c458b183","Banner":"ffcd534994a7d8b175a592b37c69125a","Logo":"3bbe5cb9b86adedebc11052a63a07ca8","Thumb":"f9e53f41267a02f5242485b1dcb8a67b"},"BackdropImageTags":["0a8f0d04240fc8cb8e82ad48ef644ef8"],"ImageBlurHashes":{"Backdrop":{"0a8f0d04240fc8cb8e82ad48ef644ef8":"WaH+zes.0#wfF^Sg=dW;RQwKXRs-V]WWt5sma}s,jIj@t3oLRSV["},"Primary":{"7ce13372d1ef45ffb901c3c8c458b183":"dPI{d6={m-,@}rs:w3w_0iV@OmOZ5XXSpFt6KPoz-At2"},"Banner":{"ffcd534994a7d8b175a592b37c69125a":"H@LMbZO@-4xCW.$zjDspNy~BtQ%0xZRjxWs.WCRl"},"Logo":{"3bbe5cb9b86adedebc11052a63a07ca8":"O;JPuYR+WER*M~bFNaxZWVWVayR*WVR*0hoexGoet5jboL"},"Thumb":{"f9e53f41267a02f5242485b1dcb8a67b":"NLHBJ1H@%}0fnh_2$_RPM}M|jbX5InIojwxas+M|"}},"LocationType":"FileSystem"},"ca2d887a76bda88ab06f9af78e43decd":{"Name":"The Owl House","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ca2d887a76bda88ab06f9af78e43decd","PremiereDate":"2020-01-09T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":29,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"349578"},"AirDays":[],"ImageTags":{"Primary":"4ed87a6fd599debba3cb2c7a453bf9ee","Banner":"4aa350d8ec449530f2de9723115109e8"},"BackdropImageTags":["a18c05c70b6345e687cc7d34500ee867"],"ImageBlurHashes":{"Backdrop":{"a18c05c70b6345e687cc7d34500ee867":"WaH1Vux]S~t7IVwb-Vt7a#ofWBjF0zRPnOn%t6NxIVM{WAsTa$WW"},"Primary":{"4ed87a6fd599debba3cb2c7a453bf9ee":"dFIDt4x]My^k*JO@IBtQP9s:4:xa~V$1IBNeAc=tICX7"},"Banner":{"4aa350d8ec449530f2de9723115109e8":"HFFNC_0fni$*Eg$jM{%2NuR5xtNGj[xtNGf6t7bH"}},"LocationType":"FileSystem"},"47f61fff9c294ade6251d9c2ae2020de":{"Name":"Hilda","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"47f61fff9c294ade6251d9c2ae2020de","PremiereDate":"2018-09-20T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"349643"},"AirDays":[],"ImageTags":{"Primary":"b1de79cf04c7c058d380744439ce9714","Banner":"1b09e91b7bf97d9e0f57b52b83480b57","Logo":"43403bf7d72961e922ae7558e8f229c5","Thumb":"d63adab706cb543666e86fbfa31d0ac3"},"BackdropImageTags":["b0b7ec274a49455da6105edfdf04bccb"],"ImageBlurHashes":{"Backdrop":{"b0b7ec274a49455da6105edfdf04bccb":"WuI;nlWA9a%MR-n$~Wn$M{t8axoe%Msme:j]jYoz-:oJRkkCWCof"},"Primary":{"b1de79cf04c7c058d380744439ce9714":"dvPYYO%LtQ={~qofkBt6$~s-R*WV%Lt7a#f6XSWCnjof"},"Banner":{"1b09e91b7bf97d9e0f57b52b83480b57":"HqIE8]RjD%%MS6V?WXfkae~UaeIVt7W?jFaxWVs:"},"Logo":{"43403bf7d72961e922ae7558e8f229c5":"OnH*s]w{azw{WVWVWVWVsooLoLoLjtfQ1bWVWVa|soWVjt"},"Thumb":{"d63adab706cb543666e86fbfa31d0ac3":"NiM6k:4;ENozEMtS~VD+R.oMR*aeVtkXNGV@%Ls9"}},"LocationType":"FileSystem"},"4bf0e76c785f26ce389444c77499e3b1":{"Name":"The Dragon Prince","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4bf0e76c785f26ce389444c77499e3b1","PremiereDate":"2018-09-13T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":27,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"350123"},"AirDays":[],"ImageTags":{"Primary":"02bdba6778872fb135f6436be8a4e7a6","Banner":"155fd0b735a7f8e7c97300417a539f74","Logo":"f178acee285a08a18af0a827ffc0ae22","Art":"b7e37da1fc3d6011b0509f98e5ffa8b4","Thumb":"b3c8dd4cbfbf347335babd01e46874da"},"BackdropImageTags":["345ab658c55e43478bc5d4bfd4041ab8"],"ImageBlurHashes":{"Backdrop":{"345ab658c55e43478bc5d4bfd4041ab8":"WaCt95xvtRxur?kBQ-bFD%VsozWBQ,RiM|V@ofWE.mj]tRo}i_WB"},"Primary":{"02bdba6778872fb135f6436be8a4e7a6":"dJAw#T%1ght--:%LiwWV={kWSis8uPbatltlQ,X8iwxD"},"Banner":{"155fd0b735a7f8e7c97300417a539f74":"HaCi,Vn4u5R-kXx]RjXTRj_NVst-WXoztSRjkXV@"},"Logo":{"f178acee285a08a18af0a827ffc0ae22":"OH7^JKWVR*R+WVfPR*s:a|azfQfQjtaz0#oLs:oeoLfQs."},"Art":{"b7e37da1fc3d6011b0509f98e5ffa8b4":"NTHeI9?c_2-=~qxv?v%3ocWC%MR+s9oyD*M{NGWB"},"Thumb":{"b3c8dd4cbfbf347335babd01e46874da":"N~LM@EtQ$%xZRRsS~St6s9s.Rkn%$_k9V@j?j]j["}},"LocationType":"FileSystem"},"c38c8eb0c038ee4f3f1809adc3b4c9d0":{"Name":"She-Ra and the Princesses of Power","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c38c8eb0c038ee4f3f1809adc3b4c9d0","PremiereDate":"2018-11-12T23:00:00.0000000Z","OfficialRating":"TV-Y","ChannelId":null,"ProductionYear":2018,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":52,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"350399"},"AirDays":[],"ImageTags":{"Primary":"9751eed2ec51813501958f5122449f8f","Banner":"dcaac842553d1b54cab53adcfc134b1a","Logo":"b45b92285c7a9b12a4c835c1b6b8648c"},"BackdropImageTags":["6e5ac80908fa66a8807eb82a8cc59b1c"],"ImageBlurHashes":{"Backdrop":{"6e5ac80908fa66a8807eb82a8cc59b1c":"W.J?zbrMIea%oLkW~XrIN3ofaxkWo}v~aLt4adbbt9w{VuoysAW;"},"Primary":{"9751eed2ec51813501958f5122449f8f":"dUP3@tn9L*^P;ExaOZjJqkxZo~RV~DRjwJt7ETI;xuo|"},"Banner":{"dcaac842553d1b54cab53adcfc134b1a":"H%Mj%CKSAfxbxs%KOZTJI]~WjwI^slkCofR-bwWC"},"Logo":{"b45b92285c7a9b12a4c835c1b6b8648c":"OYO:b8Rj?wa}%hxu%g_4V[IUWVWAjYaw5RRksoayxtoet6"}},"LocationType":"FileSystem"},"82a23a34d50d3c301795494373882976":{"Name":"MythBusters Jr.","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"82a23a34d50d3c301795494373882976","PremiereDate":"2019-01-01T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"350679"},"AirDays":[],"ImageTags":{"Primary":"676258fa838974468d4402366b87d1cd","Banner":"992edb549b5832d2f3b2f999acd3102e","Logo":"ec3b7ded3c6b3fc3e0e262c0328dfa72"},"BackdropImageTags":["6bc0f40ba812a364798a98824fdb4604"],"ImageBlurHashes":{"Backdrop":{"6bc0f40ba812a364798a98824fdb4604":"WdFNYQwd9voeaexZ}qsmENoLkAn%,.WWJBkBbvR*$zbHI=R*t6SN"},"Primary":{"676258fa838974468d4402366b87d1cd":"dIB|pWx[JXs=E5ib$^xtt:nNx^t2%~n3V?ouPCROoz-V"},"Banner":{"992edb549b5832d2f3b2f999acd3102e":"H#I:,#xaR*s:oLNGxbxan*}[sVRjt7oLaeofn%jF"},"Logo":{"ec3b7ded3c6b3fc3e0e262c0328dfa72":"OA5}pwWXjrWCj@j[fRWBj[a|j[fQayfP00j?fSoeazayay"}},"LocationType":"FileSystem"},"aa5a7f7f43c2e9700b1853cbb666ee24":{"Name":"Amphibia","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"aa5a7f7f43c2e9700b1853cbb666ee24","PremiereDate":"2019-06-16T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":74,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"350984"},"AirDays":[],"ImageTags":{"Primary":"15a2e3a684c9cc9c6b124b5490b63e4a","Banner":"2d56829e2ae1f4d95c0af66bccf9d5bb"},"BackdropImageTags":["24faf292d013d778881618c68f055f26"],"ImageBlurHashes":{"Backdrop":{"24faf292d013d778881618c68f055f26":"WTHy$=yCD6tNbw$_?^xungbXs;MxKQRqROVsn6R6?aj_E2WortR6"},"Primary":{"15a2e3a684c9cc9c6b124b5490b63e4a":"dJ8~y1x?I,t+ICXTgOMzD8RiwctRx]oyi_s:SbVtf-Vz"},"Banner":{"2d56829e2ae1f4d95c0af66bccf9d5bb":"HB3mOKXlHamnyBXlWXoybHYOkVmmVZXSo{oyX8ay"}},"LocationType":"FileSystem"},"9bfaa723d08c5adc8617d36c2595b9d9":{"Name":"The Umbrella Academy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9bfaa723d08c5adc8617d36c2595b9d9","PremiereDate":"2019-02-14T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.5,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":20,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"353764"},"AirDays":[],"ImageTags":{"Primary":"b8f048b5eb3fed9a785e1606762a407a","Banner":"c5237e03e6aa36134f6ae9c39a485e0e","Art":"14befafb6a373ce80502324f1e8c2242","Logo":"cb0aa9a551306d5733f80f0d4067c86f","Thumb":"dff28823745abae091b90dc2b5b36f3e"},"BackdropImageTags":["fcef10a4434cff8fe19ee437566ec940"],"ImageBlurHashes":{"Backdrop":{"fcef10a4434cff8fe19ee437566ec940":"W8B:8EX41L^+EKOs_2NHE2j=jG-p9ur?$$EfM|$$NLV@xtbcsksl"},"Primary":{"b8f048b5eb3fed9a785e1606762a407a":"doJ@?_xu-=.8yDV@oes:00j?WBNGnhkCs;ae.8oLt7xu"},"Banner":{"c5237e03e6aa36134f6ae9c39a485e0e":"H~N^San$.8%N-;-;Ri-:tR~qt7t8t7ogofWBt6fP"},"Art":{"14befafb6a373ce80502324f1e8c2242":"NWHnd59^nCSwIWk8_Mi_S0nOM{t7%haxSxRjRPfl"},"Logo":{"cb0aa9a551306d5733f80f0d4067c86f":"OERp8--;~qWB?bxut7~qayIUayt7t7fQRj%Mt7M{WBM{ay"},"Thumb":{"dff28823745abae091b90dc2b5b36f3e":"N7CideW,1g^+56O@?aNHD+fOxb%256i_xEJ7sD$g"}},"LocationType":"FileSystem"},"7b19e0fae5f1f6b4361f8e8e55142208":{"Name":"The Boys","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7b19e0fae5f1f6b4361f8e8e55142208","PremiereDate":"2019-07-25T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":16,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"355567"},"AirDays":[],"ImageTags":{"Primary":"0e28b817d875b90e55fc511eed1760f3","Banner":"875ed31bec7936af128a01c77ff1932b","Art":"ab9aa1547f3fd391ee64b9effd565b52","Logo":"399b15dd8b5683127470a081ed888cd7","Thumb":"60b03ad23a108efc75dc310463af57d4"},"BackdropImageTags":["f95a122bbb81747ba9602605288cc2a2","dccb806e6c0299a6431209b26143c059"],"ImageBlurHashes":{"Backdrop":{"f95a122bbb81747ba9602605288cc2a2":"WCCi%S^J?a.8n2~XMw-=IqE1ofITx_Io4nIARikC?IoIW?R*$$xZ","dccb806e6c0299a6431209b26143c059":"WB9PWkoz0},pRO9[#-bvK4NGsAxa9arr$*Jnbv-VtRi{nOXSS1nh"},"Primary":{"0e28b817d875b90e55fc511eed1760f3":"dDBBk?,t63oztROXJ,R*1HxF;#WBJAjF#St7EfEzJRNG"},"Banner":{"875ed31bec7936af128a01c77ff1932b":"HKC?N0v#8_R+E1pIcFM{xt~XixIAxaX8o|R+NGof"},"Art":{"ab9aa1547f3fd391ee64b9effd565b52":"NLChQe}E#kxuODNZ[W+wnijtS2SgIUafs;jFjGof"},"Logo":{"399b15dd8b5683127470a081ed888cd7":"ONPjGcWB00%M00j[00%MRjRjxuWBofWB4nfQayj[t7oft7"},"Thumb":{"60b03ad23a108efc75dc310463af57d4":"N8A[ch}Z1H,=vgRP6z2sFwv~jaKOIA#8$jA@S~=y"}},"LocationType":"FileSystem"},"8e10eae5406032422ebe31cd5fe64fd5":{"Name":"For All Mankind","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8e10eae5406032422ebe31cd5fe64fd5","PremiereDate":"2019-10-31T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":20,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"356202"},"AirDays":[],"ImageTags":{"Primary":"1ed9dd8dafe8861d737c7b3dc05abe54","Banner":"92749e900ea83690e9ac172b68e0d095","Logo":"a64b23c50326ed436ca96c7996a6cdc9","Thumb":"20438684ab2b07ea836daa3945f29fd0"},"BackdropImageTags":["c16555a5a5e18a21c4188410802b40ce"],"ImageBlurHashes":{"Backdrop":{"c16555a5a5e18a21c4188410802b40ce":"W65q@a0Kxu-:4.?bNGoJR*t7Rjt79F-;oJD%?bD%M_xvM{t6ozIU"},"Primary":{"1ed9dd8dafe8861d737c7b3dc05abe54":"dB9tDdR*01%M?v-;D$Rk%NxuM{M{~WRj9Ft7IVRjWAWB"},"Banner":{"92749e900ea83690e9ac172b68e0d095":"H57nOI%g9FIo-;M{IU%LD%~qtRD%ayxuWBIUxuM{"},"Logo":{"a64b23c50326ed436ca96c7996a6cdc9":"OfB:vzofWBayWBj[ayoffQayfQayfQfQ00WBofj[ofayj["},"Thumb":{"20438684ab2b07ea836daa3945f29fd0":"N76a#LE1t7xa4n-;kCoLWBj[M{of0Kxuj[Io?aIU"}},"LocationType":"FileSystem"},"42ef7ba4f17fd5d957b60ccf1edbc55e":{"Name":"Russian Doll","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"42ef7ba4f17fd5d957b60ccf1edbc55e","PremiereDate":"2019-01-31T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"356640"},"AirDays":[],"ImageTags":{"Primary":"a855983e92130f3f0ff151da8b66817f","Banner":"1a204463d3d0c09f3dd7601576bd91f6","Art":"ff411cb852a2b7dda664249331474dfb","Logo":"cc1eb4cd3f917aa26c4445adbe4a1e2c","Thumb":"f67a9553a540b3593bcde8e8f5605a58"},"BackdropImageTags":["f8947ab8813ac145ea18528755fb1d50"],"ImageBlurHashes":{"Backdrop":{"f8947ab8813ac145ea18528755fb1d50":"WMA,L7xZ0$I?s:%1%0jZNdoyayNHIqf6xZoeWCNHxtj[R*R+ays."},"Primary":{"a855983e92130f3f0ff151da8b66817f":"dMG%JvxaHY+bvMjF=|$*6%S4OBSL%MW;E2R*IAn$-poM"},"Banner":{"1a204463d3d0c09f3dd7601576bd91f6":"HoJ?8M55Nu%gDix]X8nOXS}@IoOCxui_sAS#R*M{"},"Art":{"ff411cb852a2b7dda664249331474dfb":"NtKT#*bb_Nxa~qj]tRbHaef6M{oftRj[RjayRjj["},"Logo":{"cc1eb4cd3f917aa26c4445adbe4a1e2c":"O~PF+dofkCofkCofkCoffQfQfQfQfQfQ_NfQaea|aea|ae"},"Thumb":{"f67a9553a540b3593bcde8e8f5605a58":"NJJ5[l1tIA+#0eVs^QNaRjxGt6V@4nyDxuD%OrWB"}},"LocationType":"FileSystem"},"3deeda1e81eb2379f5434ddf365b3605":{"Name":"Lovecraft Country","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3deeda1e81eb2379f5434ddf365b3605","PremiereDate":"2020-08-15T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"357864"},"AirDays":[],"ImageTags":{"Primary":"b5444e12d1686f9ffcd9170bc17c57fd","Banner":"fa427c0df51cca472ed660c4fc3d6d83"},"BackdropImageTags":["a5c55a741b27c2ee16af0f0187d6a60e"],"ImageBlurHashes":{"Backdrop":{"a5c55a741b27c2ee16af0f0187d6a60e":"WGA]~Vx[0y.8-;E2?IayD*t8t8Iot7M{IAxZ%LNF%MM{IAx[%1IU"},"Primary":{"b5444e12d1686f9ffcd9170bc17c57fd":"dB6abbxaE1IooLayayj@0LNG-p%2WBj[j[ay^*t6IVM|"},"Banner":{"fa427c0df51cca472ed660c4fc3d6d83":"HK9Q2Axa0eIo%2%1s:WBWBazayofoLRjWVt6oKay"}},"LocationType":"FileSystem"},"b5dddbd9e64ff14e0f76de32bd21680a":{"Name":"Love, Death & Robots","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b5dddbd9e64ff14e0f76de32bd21680a","PremiereDate":"2019-03-14T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":10,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":25,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"357888"},"AirDays":[],"ImageTags":{"Primary":"b765ab44e18af8d0e10b6fb250e0c792","Banner":"5fe0216cf27b15ed93f4dbbc1991a8f6","Art":"49c755701934056582649de6f1cdfba9","Logo":"f0b5a20c2bd139d50dd561b537127401","Thumb":"32a3170e96ce87200cf2f001ecb4f8f9"},"BackdropImageTags":["be6b1cdb04f58e94a0be8af05c2b2be6"],"ImageBlurHashes":{"Backdrop":{"be6b1cdb04f58e94a0be8af05c2b2be6":"WT2$xHj_WBa*WBj_WJfSj[j]j[a#V-axofj=j[axt9juWBa#WCj["},"Primary":{"b765ab44e18af8d0e10b6fb250e0c792":"dgI3,qw{2tTdw_j[SgkBXSofaJi_t7j[WVjZS~WVrroK"},"Banner":{"5fe0216cf27b15ed93f4dbbc1991a8f6":"HJAAaaxu9Fay4nD%~q-;WB~qt7D%Rj9FIU?b%Mof"},"Art":{"49c755701934056582649de6f1cdfba9":"NMKw|S-oNdWB%2%M4Ts9IVNGt7WB~WIVi_X9WXjE"},"Logo":{"f0b5a20c2bd139d50dd561b537127401":"OUQlwdUbzpm,xut,pw%MoLWBjtaeWBj[M{ozt7ofj[V@o1"},"Thumb":{"32a3170e96ce87200cf2f001ecb4f8f9":"NBBpe6IA0J9t0Lw|4:?br=H?kDN^sC?bR*9ZD%Vt"}},"LocationType":"FileSystem"},"0ecd6da7e1592164af4bf56637262cbe":{"Name":"Good Omens","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0ecd6da7e1592164af4bf56637262cbe","PremiereDate":"2019-05-29T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":6,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"359569"},"AirDays":[],"ImageTags":{"Primary":"e3e7427592b7012dc2e1df0963bdc0b5","Banner":"b9f5c50ca9c2c996a569fff95318797e","Art":"3aeeabcd60af78fa2a3540ec03b7f109","Logo":"b06469c2aca32929ba0abcbda0d10d74","Thumb":"859204fb4e80d8f91b02d0c4d46170b9"},"BackdropImageTags":["e7f1f2c316a70394f326aa109336cbfb"],"ImageBlurHashes":{"Backdrop":{"e7f1f2c316a70394f326aa109336cbfb":"WJABLdKiHsICIW?F~pKPRPMyNI-n#SS$oeNwbIxFx]W=ixS#kCoJ"},"Primary":{"e3e7427592b7012dc2e1df0963bdc0b5":"dQF#p@p{-Vk8?HtlXAR-9GMxE3r?IVIVnOs956RPt6t7"},"Banner":{"b9f5c50ca9c2c996a569fff95318797e":"HOF#~{CS8xn2IpRP57^QyC?HT0RPnhSgRjR*$*kX"},"Art":{"3aeeabcd60af78fa2a3540ec03b7f109":"NnLNY[?^oNofRPs;%3IoRPxuNIt7_N%gs,WYV@WB"},"Logo":{"b06469c2aca32929ba0abcbda0d10d74":"O$M%=vt7~qa}-;WBWBtRayj[kCWAjZayoeoJj]WXRjWVoe"},"Thumb":{"859204fb4e80d8f91b02d0c4d46170b9":"NfKAi_qFrrSzOZ-U?Gx]I[RPIoi{V@RkNHaJRjjb"}},"LocationType":"FileSystem"},"5b6557adb0747e541b04029c2491ec05":{"Name":"Your Honor (US)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5b6557adb0747e541b04029c2491ec05","PremiereDate":"2020-12-05T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"359579"},"AirDays":[],"ImageTags":{"Primary":"f76c233579a3be8fe92d1e4eb12378a1","Banner":"cf9b5188a623aaee42bd02b4b75c5457"},"BackdropImageTags":["bd82bf74bf1db4ae5bef1ceff6f6b8d2"],"ImageBlurHashes":{"Backdrop":{"bd82bf74bf1db4ae5bef1ceff6f6b8d2":"WXHLl1~qWBIUIUofxuWBoft7ofofIUM{ofxuxuofxuxuj[M{WBj["},"Primary":{"f76c233579a3be8fe92d1e4eb12378a1":"dLFFss~q%MxuRjIUM{ofIURjWBWBt7-;%MWBM{Rjt7xu"},"Banner":{"cf9b5188a623aaee42bd02b4b75c5457":"HvKd}K~qRjRjt7xuj[t7xu~q-;WBRjoft7ayj[t7"}},"LocationType":"FileSystem"},"3855b23e65a156c1fb9efa1ed77dae56":{"Name":"NOS4A2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3855b23e65a156c1fb9efa1ed77dae56","PremiereDate":"2019-06-01T22:00:00.0000000Z","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":20,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"359637"},"AirDays":[],"ImageTags":{"Primary":"75855bec2979b151d0bccf1e3b7b0c82","Banner":"fc91c2a155e65b375d5c8b68aa1a3f10","Art":"1f411ba66156122d1df7ab7698b91829","Logo":"847d2de336063c7685f9e6e3d2f51c8c","Thumb":"4c6bac04dae13e48ff83122eaeeed0da"},"BackdropImageTags":["acb28f62cf9c33bc146c47c8be76ebe3"],"ImageBlurHashes":{"Backdrop":{"acb28f62cf9c33bc146c47c8be76ebe3":"W34x@{Hu4nkX.7xtN4%dICSexte:ITMy?bt79GWW8{RR.7nPM|Rk"},"Primary":{"75855bec2979b151d0bccf1e3b7b0c82":"d77nH~M|0Kxa^+t79te.-AkCSeV@WXWBRkt74.V[-;a|"},"Banner":{"fc91c2a155e65b375d5c8b68aa1a3f10":"HEBMGQ5R01=|o}%2oL9aoL=|t7E1Rj-pofNGoeRj"},"Art":{"1f411ba66156122d1df7ab7698b91829":"NuHL#t~V%hRjs,kC%ixut7WARPWBozkDV@ayofoL"},"Logo":{"847d2de336063c7685f9e6e3d2f51c8c":"OqKUK3Rk_Nxt_3t7-;%LayWCj@WBbHayM{oft7WCj[WBay"},"Thumb":{"4c6bac04dae13e48ff83122eaeeed0da":"NC97U|_3x[R%8^D*~q^+o}RPD%Ion3%2xZIVb_kC"}},"LocationType":"FileSystem"},"35994ca43bd227f18f933e280694150e":{"Name":"Jumper","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"35994ca43bd227f18f933e280694150e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-02-12T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":53093122048,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8247"},"VideoType":"VideoFile","ImageTags":{"Primary":"6efe7ebd07345b2695118cef75fa627c","Art":"9057b1ee325480877929b2b1c75c016c","Banner":"1aadc2ad7d21cd42f5aaa1d9fab32d66","Disc":"3611551e069ea250567d6420b5e0b03d","Logo":"07cc7311fa54c220fc14d72c9cd874bc","Thumb":"1765aca88f3712242794c9dd8fc0132a"},"BackdropImageTags":["3611551e069ea250567d6420b5e0b03d"],"ImageBlurHashes":{"Backdrop":{"3611551e069ea250567d6420b5e0b03d":"WsJ6Q7-TM|M|%0%1~9t6Rke.t6oyxrWVagjbs.k9xCWCkCS5f6n$"},"Primary":{"6efe7ebd07345b2695118cef75fa627c":"dZF?R+?vOu%$2gNK%LT0s:s,NeROp0XokXt79wS$tQX9"},"Art":{"9057b1ee325480877929b2b1c75c016c":"NnM%DaM_?ExZR-t7~8f,ozbaM|oe-:%0IVf6ofRk"},"Banner":{"1aadc2ad7d21cd42f5aaa1d9fab32d66":"H-DLsNicr;x]t7kqoJtmo~ysRks,ogWDR+n#kCf,"},"Disc":{"3611551e069ea250567d6420b5e0b03d":"eSLEyn?b~q4n%M~pRjD%jboy%NIUwH%goJRit8W=WBoMxtRPxaozRk"},"Logo":{"07cc7311fa54c220fc14d72c9cd874bc":"ORFZ7}tltmx]tSt7kCx^IooztRkCt7ax~qM{xuaxV@j[WB"},"Thumb":{"1765aca88f3712242794c9dd8fc0132a":"NpD_Z~_M%~yDxs%2TfawXTozkWWBsms-jEWUjZkC"}},"LocationType":"FileSystem","MediaType":"Video"},"35e7c3dd1a25d0edc0e96d60238cb215":{"Name":"Minority Report","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"35e7c3dd1a25d0edc0e96d60238cb215","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-06-19T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":87097393152,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"180"},"VideoType":"VideoFile","ImageTags":{"Primary":"aa6382091aee103356d5e60d5d8c6d6a"},"BackdropImageTags":["44a1df5cf7872903d22cbae607c69e24"],"ImageBlurHashes":{"Backdrop":{"44a1df5cf7872903d22cbae607c69e24":"W43lR5%h8^8^Rj%h.9x]MwI9ROtSt7ogWWWAWBaza}bIofn~V@WB"},"Primary":{"aa6382091aee103356d5e60d5d8c6d6a":"dVHBoC0#spw]M|VYkCozD%s:j[R+xE%gM{V?IVxuaeWU"}},"LocationType":"FileSystem","MediaType":"Video"},"c6e7bf433638142dfbdc6a0404ab236e":{"Name":"His Dark Materials","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c6e7bf433638142dfbdc6a0404ab236e","PremiereDate":"2019-11-02T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":15,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"360295"},"AirDays":[],"ImageTags":{"Primary":"5843792eac1549171bb813a390c49b8c","Banner":"53fe7d35b94d19a2aa322fd86b8c0e6b"},"BackdropImageTags":["9ad39a3d1906336a57f8f70ae2c13c0d"],"ImageBlurHashes":{"Backdrop":{"9ad39a3d1906336a57f8f70ae2c13c0d":"WIC$cpPB0KE1t6xZM{NutR$%WVWC56ae%LxZWUR+-pozRjNGogof"},"Primary":{"5843792eac1549171bb813a390c49b8c":"d3ATWW~V0KkX?D9Ft-9utm4o4otR9vNIxCozRi^+?G%L"},"Banner":{"53fe7d35b94d19a2aa322fd86b8c0e6b":"HIE2CEFyEgt70KxGW:s;oz~BK5NtSgNG$NoLjFR+"}},"LocationType":"FileSystem"},"f7edac7259e3774c1dc6fe6405f2009b":{"Name":"Chernobyl","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f7edac7259e3774c1dc6fe6405f2009b","PremiereDate":"2019-05-05T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":5,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"360893"},"AirDays":[],"ImageTags":{"Primary":"5cb445b1bc8cc83b8442afffe7271205","Banner":"27991f81759b0a19170ddf50d1810349","Art":"aa4993770f55041f6a4a60eea9fe6b84","Logo":"983371c3fb707c8d75bf630f6535723b","Thumb":"d02d1fdc0f558668b335298eb18c7218"},"BackdropImageTags":["5a46f2aa4ceabc9a7a16908a70bbff65"],"ImageBlurHashes":{"Backdrop":{"5a46f2aa4ceabc9a7a16908a70bbff65":"WSGT7,-;x[%fIUS2_NxuWBkCWpWpxuoLWBWBt6of.7t7bHayaeof"},"Primary":{"5cb445b1bc8cc83b8442afffe7271205":"dUI$H6_3tQ.7~q%MM|oMIVR%WVWBt7WBj[t7a{j[WBWB"},"Banner":{"27991f81759b0a19170ddf50d1810349":"HdHM4Eay%f?uIVM{WBx[of_NRjxt%Mayj[V[bFof"},"Art":{"aa4993770f55041f6a4a60eea9fe6b84":"NK9j.VoL9FozR+RjxuayRPofofWB00WB%MayxukC"},"Logo":{"983371c3fb707c8d75bf630f6535723b":"OeRC_Dt7WUofj[t7ofxuj[ayj[ayj[ay~qWBofayf6ayay"},"Thumb":{"d02d1fdc0f558668b335298eb18c7218":"N13[||4Yy5DikY_2%fMztjR6X8xu8xyViz.RIBMx"}},"LocationType":"FileSystem"},"f3a207d3872c4e9cbeb2115b950d5045":{"Name":"Tuca & Bertie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f3a207d3872c4e9cbeb2115b950d5045","PremiereDate":"2019-05-02T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":20,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"361005"},"AirDays":[],"ImageTags":{"Primary":"416bb1769f4f342bea8aa67e2237a36e","Banner":"2b7b39a6dc093ed3cd4536ed85e59788"},"BackdropImageTags":["1ccafa92b3804158b33b2ef1d139ce92"],"ImageBlurHashes":{"Backdrop":{"1ccafa92b3804158b33b2ef1d139ce92":"WgH-Trp1Ie%PjMVy#xxnShRBjDfhNNaKngawShXUS*jEV?bdtSsq"},"Primary":{"416bb1769f4f342bea8aa67e2237a36e":"dOF$0VPD9itlAOM|whwP59#RrsI:wLs;V[S#Rikqs8wJ"},"Banner":{"2b7b39a6dc093ed3cd4536ed85e59788":"HdA_D6JW#-RqV}wwNgwiR%yGbtognPS6smR-oNnh"}},"LocationType":"FileSystem"},"ba6d45ea1cdcab6e03e1b7990df29827":{"Name":"Beastars","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ba6d45ea1cdcab6e03e1b7990df29827","PremiereDate":"2019-10-09T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":24,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"361013"},"AirDays":[],"ImageTags":{"Primary":"019e59942a914b27a4dd722fe1178e86","Banner":"3f484cb19484835f1551a47ad09cec27"},"BackdropImageTags":["e573dc8e476a3f2ede6874d83711c197"],"ImageBlurHashes":{"Backdrop":{"e573dc8e476a3f2ede6874d83711c197":"W~L#X#ofXAxuM{oz~pfkjYt6oft7aJWBjEaxxts:X9azW?bIWBWC"},"Primary":{"019e59942a914b27a4dd722fe1178e86":"dgNm4v%2$%^k~ARiRijHR4%LW;fS-VtSo#aKsrt8ogaK"},"Banner":{"3f484cb19484835f1551a47ad09cec27":"HnNc{K-B^+^+-;%MyDpITJ~q-;%2V@oMof-;R*Wo"}},"LocationType":"FileSystem"},"b6106ac3b495e6fb91606f7e38008aad":{"Name":"How to Sell Drugs Online (Fast)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b6106ac3b495e6fb91606f7e38008aad","PremiereDate":"2019-05-30T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":18,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"361034"},"AirDays":[],"ImageTags":{"Primary":"25de1f3b59078957c0b8834843781fed","Banner":"1572d06982ee61e44fea4ba836f72080","Logo":"5e5e0e4312e86ea9be8de457d24054b2","Thumb":"e5c6e1d150e4ee4746d6d9756c6b6766"},"BackdropImageTags":["d53cc76acbe8033adecc69f0efb829c3"],"ImageBlurHashes":{"Backdrop":{"d53cc76acbe8033adecc69f0efb829c3":"W-IXc~SiNGxroJxZ~UWERjt6s.t6.6aKRjkCofof%faeR*a$jaf+"},"Primary":{"25de1f3b59078957c0b8834843781fed":"dFBf,~%L0gRnVWjrESR.00M{WCRj.Tof$yoI9~og?E%L"},"Banner":{"1572d06982ee61e44fea4ba836f72080":"H97KuM~qay4n4nIUayRjIU_3?bayD%D%Rjj[WBM{"},"Logo":{"5e5e0e4312e86ea9be8de457d24054b2":"OVO43ixu4nxu00fQ4nj[ofRjayxuayofD%oft7ofWBayj["},"Thumb":{"e5c6e1d150e4ee4746d6d9756c6b6766":"NgE:SI^ZVXWHxu%K~m?9i_WHofxWoYxYWFS7WARj"}},"LocationType":"FileSystem"},"8f7d738f548594d966e49efdb0e8abfc":{"Name":"Blood of Zeus","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8f7d738f548594d966e49efdb0e8abfc","PremiereDate":"2020-10-26T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"361140"},"AirDays":[],"ImageTags":{"Primary":"4d3bd1f510573e9a52ba8554c24c80fa","Banner":"bb588ec81819184db7e2713dc0fab4f4"},"BackdropImageTags":["6721b54ed49d0cef5c50f99c5e65e495"],"ImageBlurHashes":{"Backdrop":{"6721b54ed49d0cef5c50f99c5e65e495":"WNFEulxW9H-ToMfi^txsxbafNboe%Eo]jJRmoyni~SNuE3xDRkW="},"Primary":{"4d3bd1f510573e9a52ba8554c24c80fa":"dG4M#Ljdg2V@yZa%jEaKnjainhV@tma0tlWUpJVspJV@"},"Banner":{"bb588ec81819184db7e2713dc0fab4f4":"HQA]s#E0n2xZOtwcWnjXr=%%M_VXoykYV[oIawWA"}},"LocationType":"FileSystem"},"41b2e79d6534bab9697562d8e0ae217a":{"Name":"The Witcher","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"41b2e79d6534bab9697562d8e0ae217a","PremiereDate":"2019-12-19T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"362696"},"AirDays":[],"ImageTags":{"Primary":"5e16c42a0a70725b20aa1b59f081f2f9","Banner":"481fd7f478ed4cac3f26a7691f0cfdf5"},"BackdropImageTags":["1722579df2432f1ed3d6c15f3948d87e"],"ImageBlurHashes":{"Backdrop":{"1722579df2432f1ed3d6c15f3948d87e":"WFAKN}sl58Ny?G-p_NMcE2M{%1xuIUM_%LV?M{R-EMo~-;t7NIWY"},"Primary":{"5e16c42a0a70725b20aa1b59f081f2f9":"dM8#HIWBWYt7_NWBWXt7.8kCWCoe%NofWAoLbcofV@of"},"Banner":{"481fd7f478ed4cac3f26a7691f0cfdf5":"HeHyL3kXRjRjkDWBofx]My_NM{WAoyRjofj[j[WB"}},"LocationType":"FileSystem"},"ea425c28076a4ded34f1caaa73e54a47":{"Name":"Savage Builds","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ea425c28076a4ded34f1caaa73e54a47","PremiereDate":"2019-06-13T22:00:00.0000000Z","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"363058"},"AirDays":[],"ImageTags":{"Primary":"bd31bc31d6c399ad1812e0e59b6acc33","Banner":"95ff53648fa7ce7e45239e9ea20cbefd"},"BackdropImageTags":["b43683b2ee581955cc2bf1ceda0dc972"],"ImageBlurHashes":{"Backdrop":{"b43683b2ee581955cc2bf1ceda0dc972":"WoL41?-pXVxvVrt7ThbcJEOGxAofEoWDI]NexYoftTadNeR.ofoM"},"Primary":{"bd31bc31d6c399ad1812e0e59b6acc33":"dQKKG~-;.A^*cHe=5GI[N{o3R6oeR#I@#js+9GEQrXnN"},"Banner":{"95ff53648fa7ce7e45239e9ea20cbefd":"HzL3=T%dOtkZi^bxt8$fXS_Nt1JVK7wIXAS6sSW;"}},"LocationType":"FileSystem"},"707521955d72afd72d4bf3715445fcae":{"Name":"Primal","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"707521955d72afd72d4bf3715445fcae","PremiereDate":"2019-10-07T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"364007"},"AirDays":[],"ImageTags":{"Primary":"edfe06adb10dae53a5ffc16034d11d74","Banner":"568129af5c78172adf5c3af5c75cbab8"},"BackdropImageTags":["26edbc66b95469558f99c932ae6bb124"],"ImageBlurHashes":{"Backdrop":{"26edbc66b95469558f99c932ae6bb124":"W#K]4RwNv%S#xZni}?NHIWXSkUWB=wsnMzozSxjZ$%s.iyoKX5f6"},"Primary":{"edfe06adb10dae53a5ffc16034d11d74":"d95}pxt7M{-;xuofayt700RjxuD%IUM{ofM{?bofRjxu"},"Banner":{"568129af5c78172adf5c3af5c75cbab8":"HF7+J3so1vNu=1w{N]S2S2=KoLE|WV$PsoSLWVay"}},"LocationType":"FileSystem"},"ac93625bd34258c1759c819e7a3cbae7":{"Name":"Avenue 5","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ac93625bd34258c1759c819e7a3cbae7","PremiereDate":"2020-01-18T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":9,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"364106"},"AirDays":[],"ImageTags":{"Primary":"87707ae3f15d5e61c95a1d0bc36b54e0","Banner":"0eb5ad75868861889191063e5e52705c"},"BackdropImageTags":["8f437b69dc2c1104a00b90dbc7f1f1e8"],"ImageBlurHashes":{"Backdrop":{"8f437b69dc2c1104a00b90dbc7f1f1e8":"WLDJekMwIU%gRORQ?wRiogRjWBt6%Mt8M{NGkXRiR*t7ofoMe.xu"},"Primary":{"87707ae3f15d5e61c95a1d0bc36b54e0":"d66RAXxuISIo-mayRof64mE1%3%1XBIp-lt6^kxaR+Sh"},"Banner":{"0eb5ad75868861889191063e5e52705c":"H88zcZ%40dW8JUR*-64;58~E-WD%0fxv^iaJIqI:"}},"LocationType":"FileSystem"},"1914936463817e926555a73bf855daf1":{"Name":"Devs","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1914936463817e926555a73bf855daf1","PremiereDate":"2020-03-04T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"364149"},"AirDays":[],"ImageTags":{"Primary":"4518c64d0d6a7af5d95120228371562a","Banner":"85557660eb09b0722e80a61f691ef7eb"},"BackdropImageTags":["255fd367d834e6ba464c99e92274e3bf"],"ImageBlurHashes":{"Backdrop":{"255fd367d834e6ba464c99e92274e3bf":"WG9G]vxZ4:bwngIU^*oe9aoft7M|M|WBjFaexuxt0NR*-oRjt6%L"},"Primary":{"4518c64d0d6a7af5d95120228371562a":"d984DB-.ksxuR;Nex[%1-NxCRjW.0*IpRPNG9vr?M{E2"},"Banner":{"85557660eb09b0722e80a61f691ef7eb":"HmDl+l?aawIpNHt7jbM|M|~p?aWBIVRkt7jbM|Rj"}},"LocationType":"FileSystem"},"0b1ddbcbfab2b9dee36b1920aa9c5a9d":{"Name":"Snowpiercer","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0b1ddbcbfab2b9dee36b1920aa9c5a9d","PremiereDate":"2020-05-16T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":20,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"364928"},"AirDays":[],"ImageTags":{"Primary":"ace04cacf4a02fe4db8bff37319dd817","Banner":"a7cd8f0c16b6b9305ca7dc018a10af2a"},"BackdropImageTags":["f07308e16a75fccf06aac9b46cad8f89"],"ImageBlurHashes":{"Backdrop":{"f07308e16a75fccf06aac9b46cad8f89":"WqK+_MxZIps-4=Rl}-j[Irj[Rlaf#RayNKWCxtod=toJoLWCW=s:"},"Primary":{"ace04cacf4a02fe4db8bff37319dd817":"daI6D|~qtSXU?I%2%goLR+RjV@s:-=xuRjR+NGjsxas:"},"Banner":{"a7cd8f0c16b6b9305ca7dc018a10af2a":"HfECwdM{IUWBRj%MWBxu9F~qM{M{ofWBt7Rjt7IU"}},"LocationType":"FileSystem"},"8d4162df9379139f49a9b0613a770437":{"Name":"Carnival Row","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8d4162df9379139f49a9b0613a770437","PremiereDate":"2019-08-28T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"365026"},"AirDays":[],"ImageTags":{},"BackdropImageTags":[],"ImageBlurHashes":{},"LocationType":"FileSystem"},"9e90bf77e9b56cff5cd7d4c953cf60a0":{"Name":"Kipo and the Age of Wonderbeasts","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9e90bf77e9b56cff5cd7d4c953cf60a0","PremiereDate":"2020-01-13T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":30,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"365463"},"AirDays":[],"ImageTags":{"Primary":"91e0b0b08c0e5a383399cc78e88fd823","Banner":"d814f38bf5fb9842617ee517c1a16f58"},"BackdropImageTags":["968530b8301e0c2478d10625c332cc5b"],"ImageBlurHashes":{"Backdrop":{"968530b8301e0c2478d10625c332cc5b":"WhFN_1EME2%1R+WE~CR*Ips:R+s:x[xFaeNbWVxZx[n$V@WooJkB"},"Primary":{"91e0b0b08c0e5a383399cc78e88fd823":"dyG8ET-pW=og?1o3WCoMD;E2R%oMIrNGfzofo#t6oaju"},"Banner":{"d814f38bf5fb9842617ee517c1a16f58":"HiGkX-^jRixu-p?H$+t8xt~D-os+oft7%2$+ozj="}},"LocationType":"FileSystem"},"624886239c4bac92770e30af054bdebf":{"Name":"Bee and PuppyCat: Lazy in Space","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"624886239c4bac92770e30af054bdebf","PremiereDate":"0001-01-01T00:00:00.0000000Z","ChannelId":null,"RunTimeTicks":6000000000,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"367111"},"Status":"Continuing","AirDays":[],"ImageTags":{"Primary":"77396086f40fafea0e9ea2ad4c891964"},"BackdropImageTags":["44d9c63efc6fc9ae870a7044af2f9ee3"],"ImageBlurHashes":{"Backdrop":{"44d9c63efc6fc9ae870a7044af2f9ee3":"WhFcC:yD7|%f,pGtY5pIpIV[aKbbBAS#wJShRkw{y?kCRPofs:X8"},"Primary":{"77396086f40fafea0e9ea2ad4c891964":"dVSFqx~W%g_N?boMRkkW?ubYRQof_2kUxtsDbcogi^aK"}},"LocationType":"FileSystem"},"789fcdbed8715c89ed05056736e2b08f":{"Name":"Invincible (2021)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"789fcdbed8715c89ed05056736e2b08f","PremiereDate":"2021-03-25T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2021,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"368207"},"AirDays":[],"ImageTags":{"Primary":"908d8422df7947708eba33e6d3e1af38","Banner":"65db9ba46592cbc99d3b0384fbfe49d7"},"BackdropImageTags":["4b24a3657c2e207608ea8491bf90f6f7"],"ImageBlurHashes":{"Backdrop":{"4b24a3657c2e207608ea8491bf90f6f7":"WCB:EO=z5P$[=rAe},-QJ--:%2Nf5AKQt8$K,--l6+IX+vwbJ.Si"},"Primary":{"908d8422df7947708eba33e6d3e1af38":"dbFOu#]ND+s=~B,nWCs:v}s:t6xWxDbIRPt8$%flM{bb"},"Banner":{"65db9ba46592cbc99d3b0384fbfe49d7":"HhHyRB_2TNks%L?Z$yJDJV_Mx[XVt5skt8ocX9a#"}},"LocationType":"FileSystem"},"5f1c1810180ec6d5a4acd81ff712e079":{"Name":"Tales from the Loop","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5f1c1810180ec6d5a4acd81ff712e079","PremiereDate":"2020-04-02T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"368210"},"AirDays":[],"ImageTags":{"Primary":"8008e9387fbc2a7111d8509140f03f00","Banner":"0f411498c6ace3215b90af1a4f261dc7"},"BackdropImageTags":["1476ff1c95537883d1b07bb56f1b4a95"],"ImageBlurHashes":{"Backdrop":{"1476ff1c95537883d1b07bb56f1b4a95":"WzKBH,a$S6ozV@xag+s:ozkDadWYyEt6oyj]afkB?Ha$R+WCoeof"},"Primary":{"8008e9387fbc2a7111d8509140f03f00":"dsM7.Qx]j[%MF5bIj?bI.Tt7oeofnMayWBaxM|WBj[ay"},"Banner":{"0f411498c6ace3215b90af1a4f261dc7":"H~JIhYt6t8tRRPt7oztRV@~qt7ozozRjofofozWB"}},"LocationType":"FileSystem"},"21a468dc7f1e807b07678a25d4c13ba2":{"Name":"Upload","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"21a468dc7f1e807b07678a25d4c13ba2","PremiereDate":"2020-04-30T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"368211"},"AirDays":[],"ImageTags":{"Primary":"c6467ffec960c5116814c7b821403701","Banner":"67c88c676bdb30f2e25eb1053a5593ac"},"BackdropImageTags":["12b4ebbd06f62ad0bbccc0fd49ee09b1"],"ImageBlurHashes":{"Backdrop":{"12b4ebbd06f62ad0bbccc0fd49ee09b1":"W66@p4$$In-o?Ht6~UadNG%0%Lt6-nsmx[s+xD%2xBs.-:s.sl%2"},"Primary":{"c6467ffec960c5116814c7b821403701":"dRI;nyjb~V?Gx[xa-os.AabvWBRk-oRk.7xuxsen%MtR"},"Banner":{"67c88c676bdb30f2e25eb1053a5593ac":"H#M*1%?ut7R6?aozWB-oof_MxuoeV[xuj[aet7s:"}},"LocationType":"FileSystem"},"e93ba6d47bea2f4e3dbcfdfa78ccccfa":{"Name":"We Are the Wave","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e93ba6d47bea2f4e3dbcfdfa78ccccfa","PremiereDate":"2019-10-31T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":6,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"368386"},"AirDays":[],"ImageTags":{"Primary":"5ab270a521d980f80f89c2ed023b22bf","Banner":"1a116c4e4f0d285d05aa3f4b72272144"},"BackdropImageTags":["a30bad030b9e419cd950d42f59351fbb"],"ImageBlurHashes":{"Backdrop":{"a30bad030b9e419cd950d42f59351fbb":"WMB;X.9YRiaKWAx^?wM^V@Dixtx^Q+Z~M|X9s+bJx]Rjbw%gNGkC"},"Primary":{"5ab270a521d980f80f89c2ed023b22bf":"dxIzxN?Gxa$*~VtQX7t6.7S#NakC-:oMjGj]ozkBjFbb"},"Banner":{"1a116c4e4f0d285d05aa3f4b72272144":"HVBf%^D%IB%2XlM|smX8ba~WD*RQ%1SeRkt6R+kB"}},"LocationType":"FileSystem"},"cf5c598ca64010eb8f42af10713a53bd":{"Name":"Raised by Wolves (2020)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cf5c598ca64010eb8f42af10713a53bd","PremiereDate":"2020-09-02T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":35999997952,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":10,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"368643"},"Status":"Continuing","AirDays":[],"ImageTags":{"Primary":"0db0f7959d98f7323cfc8ef526b5cc03","Banner":"26e185237394b25aa780ba6d6cf3bf76"},"BackdropImageTags":["9aa9f3c4043290bf3314b2ad285fa563"],"ImageBlurHashes":{"Backdrop":{"9aa9f3c4043290bf3314b2ad285fa563":"WD9HLT%f-of5NH%1~ox]xuxtWWxtWAtRkCxubIt6t6tRkBayRkay"},"Primary":{"0db0f7959d98f7323cfc8ef526b5cc03":"dIBDvH~ot6xt-:%LxZs.DPRPV@V@xZRPMyRjxuRjM{V["},"Banner":{"26e185237394b25aa780ba6d6cf3bf76":"HG9*3?.6xt-pIVxuWBIVkC~o%fxa%LbHoft7M|WD"}},"LocationType":"FileSystem"},"d8028cd8be45774d4e151570164c8f80":{"Name":"Uzumaki: Spiral into Horror","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d8028cd8be45774d4e151570164c8f80","PremiereDate":"2020-11-30T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"RunTimeTicks":17999998976,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"369026"},"Status":"Continuing","AirDays":[],"ImageTags":{"Primary":"99af07762565b3992fae3ea103e8be5b","Banner":"891c54381f2bee4294eaaa7af0d9794e"},"BackdropImageTags":["336a82ca1fec989bec214c944ad8b3c0"],"ImageBlurHashes":{"Backdrop":{"336a82ca1fec989bec214c944ad8b3c0":"WDJRdV%MD%j]M{_3-;IUD%IUofxu00D%ofWBt7j[-;WBWBM{ofxu"},"Primary":{"99af07762565b3992fae3ea103e8be5b":"d47KYpniF_%#$*t7S#R*9tNG$jMx0KM{wxMx?bjZxuxu"},"Banner":{"891c54381f2bee4294eaaa7af0d9794e":"H33[xTt700M{xuM{xu-;t7?bofD%Rjt7Rjt7xuof"}},"LocationType":"FileSystem"},"d94f102a652e9751e01afe1475857677":{"Name":"War of the Worlds (2019)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d94f102a652e9751e01afe1475857677","PremiereDate":"2019-10-27T23:00:00.0000000Z","ChannelId":null,"CommunityRating":8,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":16,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"370139"},"AirDays":[],"ImageTags":{"Primary":"4f2edd31570be7b3fcdee1fd71a020a2","Banner":"42dc793c86f3178dd1f934de8da15c97"},"BackdropImageTags":["4ef3fd750bfa291baa6c1acc39274fb6"],"ImageBlurHashes":{"Backdrop":{"4ef3fd750bfa291baa6c1acc39274fb6":"WXBqL_-:IVNGxat7_M-:M{Rjt7of?u%fRPWBxuoM?u%MaxoftQj]"},"Primary":{"4f2edd31570be7b3fcdee1fd71a020a2":"dtE|9kx[NGt6_MtQR%tQ?uoeM{oy%fWBV@oft7aeaeof"},"Banner":{"42dc793c86f3178dd1f934de8da15c97":"HN9*lOxuD%NGaKxut7bHof_NxuDjIUt7x[ofWCof"}},"LocationType":"FileSystem"},"2e2a7c0450fc2feec17e19ef243cdc73":{"Name":"Steven Universe Future","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2e2a7c0450fc2feec17e19ef243cdc73","PremiereDate":"2019-12-06T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":20,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"370471"},"AirDays":[],"ImageTags":{"Primary":"e7d4b85926c61683f9d84a170cb9e684","Banner":"97659afc4e94ecd1176c4dd5a75e79f4"},"BackdropImageTags":["a1c343b89177a13f7f7196a4090f8575"],"ImageBlurHashes":{"Backdrop":{"a1c343b89177a13f7f7196a4090f8575":"W,JJ3m%1pIo~tStm?1s:V]ohoJo4oNSOrWn}w_aLxvbvkVaeoyjY"},"Primary":{"e7d4b85926c61683f9d84a170cb9e684":"daGKqRx^G^ys.7oySjbct,g3Vsix%2j]OYnhTKbInikU"},"Banner":{"97659afc4e94ecd1176c4dd5a75e79f4":"HoLMVX~TK%r?IpXAkBtSr=^+%Foza#n,ofX5xuoI"}},"LocationType":"FileSystem"},"dcd45df180c58f99e93530b7782455ab":{"Name":"Epithet Erased","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dcd45df180c58f99e93530b7782455ab","PremiereDate":"2019-11-07T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"ProductionYear":2019,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":7,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"371712"},"AirDays":[],"ImageTags":{"Primary":"867c5637d0d548036790df8dfd2f1db3"},"BackdropImageTags":["ad4a9d42a0be52baa9a1670570f89f15","72b0fb921e255e701d00f088b127f654"],"ImageBlurHashes":{"Backdrop":{"ad4a9d42a0be52baa9a1670570f89f15":"WPMjH^yZQnwRMcWY_3GGM}Rp-;.8J-OnOtXVIpo#MenNo#D+J6Ip","72b0fb921e255e701d00f088b127f654":"WPMjH^yZQnwRMcWY_3GGM}Rp-;.8J-OnOtXVIpo#MenNo#D+J6Ip"},"Primary":{"867c5637d0d548036790df8dfd2f1db3":"dRH-lj%M%3?bI7rrrpw[2cR~9uI;RYNgN1N1RNRjRPRP"}},"LocationType":"FileSystem"},"64dc744ee9c06d7b62dceec78f45db78":{"Name":"Solar Opposites","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"64dc744ee9c06d7b62dceec78f45db78","PremiereDate":"2020-05-07T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":16,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"375892"},"AirDays":[],"ImageTags":{"Primary":"3f214a13c4e239e9646f41fa513ce57c","Banner":"b0ee33e37199bf26d783aa7367822eff"},"BackdropImageTags":["59db1552c70b878ecec862e58e2126e8"],"ImageBlurHashes":{"Backdrop":{"59db1552c70b878ecec862e58e2126e8":"W$JlB2X7Rjt7Rkxt?dxvt8WAo0og?ukCxuV[kBoy.8kVf+e=f$tR"},"Primary":{"3f214a13c4e239e9646f41fa513ce57c":"dxKC5|o}s:%K*0xuo#W=yDaykCkDx]WBfhozE1WCRjWU"},"Banner":{"b0ee33e37199bf26d783aa7367822eff":"HyJSXy.TIr%Lt7x]tmohxV?]tlRooyxZbckWn+j?"}},"LocationType":"FileSystem"},"6038b7ca241b44522a62d47556673260":{"Name":"Digimon Adventure:","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6038b7ca241b44522a62d47556673260","PremiereDate":"2020-04-04T22:00:00.0000000Z","OfficialRating":"TV-G","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":17,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"376003"},"AirDays":[],"ImageTags":{"Primary":"8f83682e3ecb04472be223913c2e7456","Banner":"d5cededee221a942652db8512faef7f0"},"BackdropImageTags":["8324af82537992fb595cd9f727c2f39c"],"ImageBlurHashes":{"Backdrop":{"8324af82537992fb595cd9f727c2f39c":"WeGv^Dx^8YTqkPO+-@j0J?WHxZs;xyt3OaoNayt8-@sES}WYO9s9"},"Primary":{"8f83682e3ecb04472be223913c2e7456":"dWE:hwxdB9Ne.jV]KPSQw}SJNMa%xekTW@S$tosqt7S$"},"Banner":{"d5cededee221a942652db8512faef7f0":"HnDnH%wPW@TcOsY4Syo[Ri.frYn5S0SxXkWUkBV["}},"LocationType":"FileSystem"},"19a881e5ae4da054313cda3e0f8189a2":{"Name":"Onyx Equinox","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"19a881e5ae4da054313cda3e0f8189a2","PremiereDate":"2020-11-20T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":12,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"377625"},"AirDays":[],"ImageTags":{"Primary":"a0ea87bfb9380e2b568614120b9fddc3","Banner":"2fe45eac82b93899ff9c19bf95541b85"},"BackdropImageTags":["fbc5df52d97d3714682ce4187d8731b2"],"ImageBlurHashes":{"Backdrop":{"fbc5df52d97d3714682ce4187d8731b2":"WJ4OAhf+S~n4WBXmqFkqV@VYg3l9lTbva0a0fkkqpwb^a0eTjYkC"},"Primary":{"a0ea87bfb9380e2b568614120b9fddc3":"dA9b2fs:D5yD.4oeOtt+c?VanlY4%_rrrxXkp]m-#=l8"},"Banner":{"2fe45eac82b93899ff9c19bf95541b85":"HT5tjOozY,kql8kCo}bHeTt,jFZ%kWbvixjZf+ad"}},"LocationType":"FileSystem"},"2a8e7471aebf0c5b9d58196541dca1d1":{"Name":"The Midnight Gospel","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2a8e7471aebf0c5b9d58196541dca1d1","PremiereDate":"2020-04-19T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"378553"},"AirDays":[],"ImageTags":{"Primary":"e5134586f37a7ae3b00ed056672baf7a","Banner":"2131f235820ae01c9ec9e447f8333cc1"},"BackdropImageTags":["41d1ac83ad7ebc055bda20cb443e6dc5"],"ImageBlurHashes":{"Backdrop":{"41d1ac83ad7ebc055bda20cb443e6dc5":"WHH,=B]Z0cL1PBS$5EOsNXI-viR4xYngXf-WWVa{^-$lI9Oltlj1"},"Primary":{"e5134586f37a7ae3b00ed056672baf7a":"dQFrky~AE1tl^k?C$+xc6[ou?0-XySW@aktPz@WANFr="},"Banner":{"2131f235820ae01c9ec9e447f8333cc1":"HSAB|et7n-xuDiR+M{X8IU*Jt7oNkCRjWBRjR*RP"}},"LocationType":"FileSystem"},"37a623bb9b78a6a898a1d557ce4c0b37":{"Name":"Magellan","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"37a623bb9b78a6a898a1d557ce4c0b37","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","ChannelId":null,"CommunityRating":5,"RunTimeTicks":60748591104,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"406240"},"VideoType":"VideoFile","ImageTags":{"Primary":"8d0aa783ec0f11ef4a7bb79032f45f94"},"BackdropImageTags":["a397ff7aee5838b65a7d6c749599ab1b"],"ImageBlurHashes":{"Backdrop":{"a397ff7aee5838b65a7d6c749599ab1b":"NMF5sls.Rj%1WCxa~Vj?WBt6ayoe~Uoeofj[fQof"},"Primary":{"8d0aa783ec0f11ef4a7bb79032f45f94":"dSHJ{o-TE2soENa}NHNI0fR+kXS5$fn%xFodtSj[r=oJ"}},"LocationType":"FileSystem","MediaType":"Video"},"02afdde1270424f2bab3f4d1c7b1c78c":{"Name":"Biohackers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"02afdde1270424f2bab3f4d1c7b1c78c","PremiereDate":"2020-08-19T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":9,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"381016"},"AirDays":[],"ImageTags":{"Primary":"39bcf09725a9ae39ed99c6f888dbd354","Banner":"e7467ecc4175121b4c0ad6c715ef9c87"},"BackdropImageTags":["3df6c26cb8d8fb77c5e5f95a70226776"],"ImageBlurHashes":{"Backdrop":{"3df6c26cb8d8fb77c5e5f95a70226776":"WcB.p|t89pNFs-R.xLs:S1NwWToOS1bHoLohf6a~ohW9W9s=s;WU"},"Primary":{"39bcf09725a9ae39ed99c6f888dbd354":"dVD[P#NF9;-Y-HxwNER%Ecs;s;R#xvI,R%xbNEkDsrWA"},"Banner":{"e7467ecc4175121b4c0ad6c715ef9c87":"HlCYP8I%Ec-YWCR$srNEoN-ZRzR$xJWUj=jcR$s="}},"LocationType":"FileSystem"},"38fc881a668468c6b748a3a22ed0a481":{"Name":"The Lego Ninjago Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"38fc881a668468c6b748a3a22ed0a481","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-09-20T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":60866228224,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"274862"},"VideoType":"VideoFile","ImageTags":{"Primary":"a9ae06a5c5e0e99d1d1f5908effe45cd"},"BackdropImageTags":["09f24939b462017035f66c93acff0961"],"ImageBlurHashes":{"Backdrop":{"09f24939b462017035f66c93acff0961":"WaHVg_.50MNGoyoe%1t3M|M~ahs.9aR*%2tPR%n+oytQogRQk7of"},"Primary":{"a9ae06a5c5e0e99d1d1f5908effe45cd":"dXHVOct20Mx[%dRlR+WB57kW%2M{Sdxtt4j?Mgt6oxWE"}},"LocationType":"FileSystem","MediaType":"Video"},"393920b5b609c1c8e347bcbaf3b63815":{"Name":"Alita: Battle Angel","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"393920b5b609c1c8e347bcbaf3b63815","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-01-30T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":73173336064,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"399579"},"VideoType":"VideoFile","ImageTags":{"Primary":"1e1de54fbf8dbe9d157d550af11224f3"},"BackdropImageTags":["4dee8184e46b37dcdb1641ed3652f3a4"],"ImageBlurHashes":{"Backdrop":{"4dee8184e46b37dcdb1641ed3652f3a4":"WTGc1FIATz^kRjp0?woIOa%0IAS5NMx[i_bwM{n~p0R+xbNGkDxu"},"Primary":{"1e1de54fbf8dbe9d157d550af11224f3":"ddFPKe?Fp0XU~Wx^oybbtQNKR+j@b_E2NHt7oLI;M{n$"}},"LocationType":"FileSystem","MediaType":"Video"},"70c1ce2c2e7fa34a25fbec27b7e12576":{"Name":"SpongeBob DocuPants","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"70c1ce2c2e7fa34a25fbec27b7e12576","PremiereDate":"2020-05-13T22:00:00.0000000Z","ChannelId":null,"ProductionYear":2020,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"398293"},"AirDays":[],"ImageTags":{"Primary":"79c013d80bde1f9c0e90414013e71d63"},"BackdropImageTags":[],"ImageBlurHashes":{"Primary":{"79c013d80bde1f9c0e90414013e71d63":"dTM?McjJZu-r18N_NMRqM.bvD$NLrjsqROM|9cRpt6sn"}},"LocationType":"FileSystem"},"39e10c129538eb03f5cfccc93a300400":{"Name":"Paprika","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"39e10c129538eb03f5cfccc93a300400","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-09-30T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":54324477952,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"4977"},"VideoType":"VideoFile","ImageTags":{"Primary":"d9e076b5ccb020ac0a0dcf4f93ae14c2","Art":"40909d07afc48c41ff3ac3b6db44f5a9","Banner":"1a7f812faae636ab14075f2a068c050c","Disc":"4b80667c88d76d343f079d4b50a0cd95","Logo":"c87ccb6099e0a1e394cd4261adc3aac7","Thumb":"e7a8694fc77df970fcc4bc6da7668586"},"BackdropImageTags":["6b962f9fc789c1469e6af15868ed9c30"],"ImageBlurHashes":{"Backdrop":{"6b962f9fc789c1469e6af15868ed9c30":"WKHJaO]zkY-6$%r_|}]gESiwWUEj[^${NN-6EMbu;P$fOqbXNaNb"},"Primary":{"d9e076b5ccb020ac0a0dcf4f93ae14c2":"dNNR=C?F9t^j0Wozs-a2D+ak-VNsi2w]J8kW9|WCVZVu"},"Art":{"40909d07afc48c41ff3ac3b6db44f5a9":"NhOM:C_Nj=Di?vIAjaWBofj[j[of?u?HM{NG%2Rk"},"Banner":{"1a7f812faae636ab14075f2a068c050c":"HvNI$+%gxtwdWV%0WUIoxD~Bo#kDslRlRlRkNGoI"},"Disc":{"4b80667c88d76d343f079d4b50a0cd95":"eUO2dG=_4VrWNKR7R%yDX7a_Y5v~RRkAn#bptQNeniRRQ.aen%WBo}"},"Logo":{"c87ccb6099e0a1e394cd4261adc3aac7":"OuFYT9ofofofWBt7ofofofoft7j[WBju0Jf7ayoLofWBaz"},"Thumb":{"e7a8694fc77df970fcc4bc6da7668586":"NLNS4t^O-*=x~m?Y+stj%NWUx]t8E2r@-ntQRkM}"}},"LocationType":"FileSystem","MediaType":"Video"},"3b542ef0d33a1ae5f5b6eb3e88a5f7fe":{"Name":"Cat Soup","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3b542ef0d33a1ae5f5b6eb3e88a5f7fe","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2001-02-20T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7,"RunTimeTicks":19515570176,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"25078"},"VideoType":"VideoFile","ImageTags":{"Primary":"eacaf03c9ecc780d4f0b84a3294a42be","Banner":"05e8c41e7044b69183ef3c6cd46ddd48"},"BackdropImageTags":["3f0a414db1d9398896d83a9e308a12e5"],"ImageBlurHashes":{"Backdrop":{"3f0a414db1d9398896d83a9e308a12e5":"WCEo*;%3g6xs}[yCMJWBm-i_-UH@VF#k-OjD$dr;_Mt7ogXntSXn"},"Primary":{"eacaf03c9ecc780d4f0b84a3294a42be":"dOEere-lEK={XVv#v}OGIurqxBbc~BxXNGsDt,rrn4T0"},"Banner":{"05e8c41e7044b69183ef3c6cd46ddd48":"HwGboC=|#6,.n3xvs;Rjo#~X-7vy$eVrtRt8WBt7"}},"LocationType":"FileSystem","MediaType":"Video"},"3b939d63e00715e250afe1d89f51a619":{"Name":"Pan's Labyrinth","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3b939d63e00715e250afe1d89f51a619","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-08-24T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":71621976064,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1417"},"VideoType":"VideoFile","ImageTags":{"Primary":"1c56cc72b5cb21f311e1aab9a62ff864","Art":"727a9f194d3b0ad859c905a0a123c775","Banner":"d7bc6c78e44da772983b160720146fa4","Disc":"d76a702cd164532677aa536768afdd76","Logo":"aab373139b994562b01ad596e6fb28f9","Thumb":"1cc0c93b1acc647f3f4122f379ca4ecb"},"BackdropImageTags":["3fa6fbb5f095dc233116968f8e8879ee"],"ImageBlurHashes":{"Backdrop":{"3fa6fbb5f095dc233116968f8e8879ee":"WVA^,tt84TRjr;V??wozD%WAaJaJ-;ofIUR%t7s:%LjsM{WBtRt7"},"Primary":{"1c56cc72b5cb21f311e1aab9a62ff864":"dO9*rxt84TX9yEj[RObH8_V@-on$E3V@%1t7o~j?oJog"},"Art":{"727a9f194d3b0ad859c905a0a123c775":"N67L18qu%fx[IBNG8w%f-ps:NGR+Q.x]MxRP%MRj"},"Banner":{"d7bc6c78e44da772983b160720146fa4":"HB7w~0TLNe$v03R5aJV[?E?atSW=jEIVM{nOaKRk"},"Disc":{"d76a702cd164532677aa536768afdd76":"eTGcAQNH~qnh-ptQayj[afjZ~WjF?bozW;RPjZj]ofWA-qWBWWWBIo"},"Logo":{"aab373139b994562b01ad596e6fb28f9":"OVNA*cxa~qay^*kC?aM}IUtR%MadaxoJ?bt7RiRjRjofRj"},"Thumb":{"1cc0c93b1acc647f3f4122f379ca4ecb":"NHAKp:x^01NHMHVsY6kXtSozH=Mx.8ozR-ofI9Mx"}},"LocationType":"FileSystem","MediaType":"Video"},"3bac40dc035a39ae9b7f0a0c676189d6":{"Name":"Dark Phoenix","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3bac40dc035a39ae9b7f0a0c676189d6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-06-04T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":68364161024,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"320288"},"VideoType":"VideoFile","ImageTags":{"Primary":"fff6222cd6836047a2e6f95f07dcf015"},"BackdropImageTags":["bdb4d40428d2cf17a70a8df645f8dd94"],"ImageBlurHashes":{"Backdrop":{"bdb4d40428d2cf17a70a8df645f8dd94":"WgDG_noL1JS2-9j@WCf7odj@WXazR+bGoLazsUsns.j@S3WWsmoK"},"Primary":{"fff6222cd6836047a2e6f95f07dcf015":"dKD[9d{uRP%4}qt5JCr=I,OsNds+$k-CnhW.aJxaS1Nd"}},"LocationType":"FileSystem","MediaType":"Video"},"3c2ce504eebc0c50ba4f9aeb3a55a4f9":{"Name":"Prometheus","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3c2ce504eebc0c50ba4f9aeb3a55a4f9","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-05-29T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":74264731648,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"70981"},"VideoType":"VideoFile","ImageTags":{"Primary":"ca5c0df7c5eb7584503802caf74b45b8"},"BackdropImageTags":["5364284b4947af28b9284a4b4ed8cfaa"],"ImageBlurHashes":{"Backdrop":{"5364284b4947af28b9284a4b4ed8cfaa":"WLA,,ro#V@j[%LM|IpRkt7RkRkoJ02smofofM|oJ?axtIVxtt7M|"},"Primary":{"ca5c0df7c5eb7584503802caf74b45b8":"diF%xpt-D*-;.SM{M{t74TMxniV?kCx]V@ofxtxtNHWB"}},"LocationType":"FileSystem","MediaType":"Video"},"3c2dd4d5093d3006faca7848b9f36535":{"Name":"The Incredibles","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3c2dd4d5093d3006faca7848b9f36535","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-10-26T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":69187198976,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9806"},"VideoType":"VideoFile","ImageTags":{"Primary":"37a736f32404a91737e30cb2c3bfe6bc","Art":"cd63d8937c97dd1df1e118ca7062d33f","Banner":"0c5a6900d0e68de6439a3b4f5918ee61","Disc":"3bdcb80b65f30e7b6073c4eb689d01ab","Logo":"66d2da9cc921e9e570586cf87eff16b9","Thumb":"2f071735a8477e49cd0785615c0a62fa"},"BackdropImageTags":["569c2e213ade34d24c4c16d852b7188c"],"ImageBlurHashes":{"Backdrop":{"569c2e213ade34d24c4c16d852b7188c":"WcQS*n_N_NxGWB%g_3oz%Ms:aeoz?vMxMxtRay%2_NjZRPkCWVt7"},"Primary":{"37a736f32404a91737e30cb2c3bfe6bc":"daHl^;%1EfxF}Wn~JAofNKaeIpR+v$sooMn%$Ms.xZae"},"Art":{"cd63d8937c97dd1df1e118ca7062d33f":"NVL|AWKP?^r^yDx]$j4-9FIAIoXTI;DikWxajIkq"},"Banner":{"0c5a6900d0e68de6439a3b4f5918ee61":"HcHSmB%MR+$jbIwJNG#-tR}tt7NuxGbHWVniaft7"},"Disc":{"3bdcb80b65f30e7b6073c4eb689d01ab":"eGIVxwwJ2-K4K$-pJ8V?soNG3UbbBPwwiwEL-AS~R*xaGDS4r?WBwg"},"Logo":{"66d2da9cc921e9e570586cf87eff16b9":"OUDlcuoL0fj]r:WBIW8_jto~R*%Ms:jItlf6i^W;R-smk9"},"Thumb":{"2f071735a8477e49cd0785615c0a62fa":"NUM5vynl-h},r{-UIVxE?Fbbs9i{5rxsM|IrX8oM"}},"LocationType":"FileSystem","MediaType":"Video"},"3c7afc2e9dfd89489e43da80f279d2a2":{"Name":"\u00c6on Flux","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3c7afc2e9dfd89489e43da80f279d2a2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-11-29T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.6,"RunTimeTicks":55715950592,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8202"},"VideoType":"VideoFile","ImageTags":{"Primary":"11bad4ea2bf2b7ecfcb2567c1281c92f"},"BackdropImageTags":["4a4daebec9681beaa1cb7df7b5e57e50"],"ImageBlurHashes":{"Backdrop":{"4a4daebec9681beaa1cb7df7b5e57e50":"WMA.16yE5HMzqstRnUi^M{NyyD%18^WC-mtlTKRPS~krt7Z~WYXT"},"Primary":{"11bad4ea2bf2b7ecfcb2567c1281c92f":"dG8r5*cGCAb{yEofWHNHQlibQ+V@Mds8t6XTELbvxas."}},"LocationType":"FileSystem","MediaType":"Video"},"3cd7fd5271fa2c1a5b7da4936ebd0b51":{"Name":"Pirates of the Caribbean: The Curse of the Black Pearl","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3cd7fd5271fa2c1a5b7da4936ebd0b51","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-07-08T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":85895462912,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"22"},"VideoType":"VideoFile","ImageTags":{"Primary":"bb5941a5fab0040c4c5464a17ff9b485","Art":"8128dc9b637c9e4476d695c98a9b5f29","Banner":"410b78b68d8b9f16d63b0730aafc2263","Disc":"9b79307b4a6010478b073d5234cc761a","Logo":"09ff53d39750925f76e1744e411ed0f8","Thumb":"8ceca747c881777b211ffd016f77c24e"},"BackdropImageTags":["8cb503d28b1f919296d46323bf4bb4af"],"ImageBlurHashes":{"Backdrop":{"8cb503d28b1f919296d46323bf4bb4af":"W26s]A=x4:#S?a}?=yxFV@SyXSnjR7e.^O-BENM{^jxZMywJ%Lbv"},"Primary":{"bb5941a5fab0040c4c5464a17ff9b485":"d9A9A:-UOB=x-8sTxF$%58I:NuWXxuOEEhNb1JWXahI;"},"Art":{"8128dc9b637c9e4476d695c98a9b5f29":"NQFr6E?H9tIV0fD*0LM{xaxaozxuS#Sht6sTn$xa"},"Banner":{"410b78b68d8b9f16d63b0730aafc2263":"HRG%i559S1-UENW;rrxaxr~AIpn%xsNHt5IpxZX7"},"Disc":{"9b79307b4a6010478b073d5234cc761a":"ebIgv3Rj?wWV%gxZayjtWVWX_NoJ%goLaeSgafoLoKayyDaee-WqM_"},"Logo":{"09ff53d39750925f76e1744e411ed0f8":"O[LNPlV@t7ofozayflWXayofWBofayoe?wRjWBkCjsa|js"},"Thumb":{"8ceca747c881777b211ffd016f77c24e":"NFEA$3oMNG$}I[}rs:w_9^J*X7s.5SsmS#E%ocIq"}},"LocationType":"FileSystem","MediaType":"Video"},"3d5d4c208f72a168661605e5c2757e5a":{"Name":"Evangelion: 2.0 You Can (Not) Advance","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3d5d4c208f72a168661605e5c2757e5a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-06-25T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":67278299136,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"22843"},"VideoType":"VideoFile","ImageTags":{"Primary":"e3c23f6042c97fd586a24d660a5e352f","Art":"61cefaf622b1dd62034c4f5bd182ffd8","Banner":"eca21916c9abdabbbd0197e16bc098ea","Disc":"cd2f2b6becff059a731f42ddcb432faf","Logo":"2bbdb67326908645b2ae5267e9f9906d","Thumb":"7f4d57c6d2c00e6e2f0c9d610ed48e7d"},"BackdropImageTags":["0b7845d7887eea67d6677ef7c2690394"],"ImageBlurHashes":{"Backdrop":{"0b7845d7887eea67d6677ef7c2690394":"WsG*:OyEt:$fs;W?tTkDWaj]kDR-NgM|WER*adRk-qozkrsms.f,"},"Primary":{"e3c23f6042c97fd586a24d660a5e352f":"daFNx4^i-n%1}=-n%Kxs-ntQoyoy^O%0OXSh$$xZNdWC"},"Art":{"61cefaf622b1dd62034c4f5bd182ffd8":"N;K1%b~qofIUbaxb-;%MkCRjWCofV[R%ayofayay"},"Banner":{"eca21916c9abdabbbd0197e16bc098ea":"H;I_.3oe-T$$WW-Ao1s.s.}qoe$%s.NvxZf7j[oK"},"Disc":{"cd2f2b6becff059a731f42ddcb432faf":"ePN7=*|{$,7cC6]or=K$R.xHHCKOB.=eM{$7OrofrrX7KjtQM{oz+b"},"Logo":{"2bbdb67326908645b2ae5267e9f9906d":"ONAJ~AWBRjWBRjWBRjofWBofayayayay00WBt7oft7ofof"},"Thumb":{"7f4d57c6d2c00e6e2f0c9d610ed48e7d":"NiI2]0-nxY%1KOoL}XtQ%1xZJUof$%oyt7s:S4xG"}},"LocationType":"FileSystem","MediaType":"Video"},"3e230c90cadf5e32324a95910eed79b5":{"Name":"The Bad Batch","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3e230c90cadf5e32324a95910eed79b5","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2017-07-12T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.2,"RunTimeTicks":71190609920,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"316154"},"VideoType":"VideoFile","ImageTags":{"Primary":"b96a16febd26cb7c7aa73bc184569e08"},"BackdropImageTags":["0f6a808bd4df72e8dc32469787914a28"],"ImageBlurHashes":{"Backdrop":{"0f6a808bd4df72e8dc32469787914a28":"WHHx4-_MNZrC9Z-;O]D*D%D%xBx^F3IoacV?ROX9~q^+E1xYRONx"},"Primary":{"b96a16febd26cb7c7aa73bc184569e08":"dTMrMZGaC7tm*dFeJBSP_2of%1NH$$ni9uNIVEoxS$ni"}},"LocationType":"FileSystem","MediaType":"Video"},"3e9a2f4bee1355f0840d76780b3a0b5e":{"Name":"Dune","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3e9a2f4bee1355f0840d76780b3a0b5e","Container":"mkv,webm","PremiereDate":"1984-12-13T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":106346659840,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"841"},"VideoType":"VideoFile","ImageTags":{"Primary":"76964f3da2ad7f2f83d4fb85d5dee35c"},"BackdropImageTags":["442faa3951daae0bb914c3ee00974993"],"ImageBlurHashes":{"Backdrop":{"442faa3951daae0bb914c3ee00974993":"WPG7D3}[I[9tELk71it8I]NIaxNtsAS4-U-V%2xZI=Nds;%2xasC"},"Primary":{"76964f3da2ad7f2f83d4fb85d5dee35c":"dcHAkN-VIq%215IqR+bcR%RixV%1xZRjV@oeW?oeRjNH"}},"LocationType":"FileSystem","MediaType":"Video"},"3efec646fa56dce612ff66368b79065e":{"Name":"Apollo 13","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3efec646fa56dce612ff66368b79065e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1995-06-29T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":83910926336,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"568"},"VideoType":"VideoFile","ImageTags":{"Primary":"5f6abb6ff612d34380e1284687180d49"},"BackdropImageTags":["7a6686e08709a57ca434e2491341e31e"],"ImageBlurHashes":{"Backdrop":{"7a6686e08709a57ca434e2491341e31e":"WsKKpB%3t8%La}s:00V@ofaeWBRjE1oeV@WCR*R+.8t7t7bIofbI"},"Primary":{"5f6abb6ff612d34380e1284687180d49":"d55=LfD%4U%fV?IBx]-;8{t7?aIVMx.7WB4nbbjFIVt7"}},"LocationType":"FileSystem","MediaType":"Video"},"3f9f008430edd9c1dddb59cd39fa9522":{"Name":"Bo Burnham: Inside","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3f9f008430edd9c1dddb59cd39fa9522","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2021-07-21T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":52585279488,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"823754"},"VideoType":"VideoFile","ImageTags":{"Primary":"17f74e49075773328fd4180dafc5df7c"},"BackdropImageTags":["5dc67dc45498624e81de969014f3b55b"],"ImageBlurHashes":{"Backdrop":{"5dc67dc45498624e81de969014f3b55b":"WK6l4qxaMIIUKzoIyGoyR5RPj?t8tSkYRNRhoLtQ%it9R4M^Xmoz"},"Primary":{"17f74e49075773328fd4180dafc5df7c":"dLF=aF~VxtxY-nM{WBof4:M{oeaz-:%Mt7WBM{Rjazof"}},"LocationType":"FileSystem","MediaType":"Video"},"401a88aab9569f5fe486aac85cbee58d":{"Name":"The Lego Movie 2: The Second Part","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"401a88aab9569f5fe486aac85cbee58d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-02-05T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":64294719488,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"280217"},"VideoType":"VideoFile","ImageTags":{"Primary":"9f6b9c26eda38453beb679d5444a92fa"},"BackdropImageTags":["ea82cda4be6491189ac30716955fc834"],"ImageBlurHashes":{"Backdrop":{"ea82cda4be6491189ac30716955fc834":"WcD+Mrxa0fNGsioLN4R.aws,xWWoRRWBt2s.WZNKR;kBxUaeNLkD"},"Primary":{"9f6b9c26eda38453beb679d5444a92fa":"dXF52hTL0fRXEIwHR#W89xNt-oogovsEbJodV?X3oIs8"}},"LocationType":"FileSystem","MediaType":"Video"},"406dfde4b727d1712d8aced78a9832e7":{"Name":"A Wrinkle in Time","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"406dfde4b727d1712d8aced78a9832e7","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2018-03-07T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":5.1,"RunTimeTicks":65774940160,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"407451"},"VideoType":"VideoFile","ImageTags":{"Primary":"23cfe22a765e948bb0168a2ee4b13ab6"},"BackdropImageTags":["329089d0c7cfbf52ce3de470a010cb6a"],"ImageBlurHashes":{"Backdrop":{"329089d0c7cfbf52ce3de470a010cb6a":"WqJ[Lq#%x]NyoI%M~oxZoKoza#ocXAWCs.tQM|RPtSjYR+bboJjZ"},"Primary":{"23cfe22a765e948bb0168a2ee4b13ab6":"dpD-Qja}9btR*IbcRkozFyozxtX7K6a|x[WqX,fPt7W="}},"LocationType":"FileSystem","MediaType":"Video"},"408934c76ce1e7d4fc38da2be48a50ae":{"Name":"A Shaun the Sheep Movie: Farmageddon","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"408934c76ce1e7d4fc38da2be48a50ae","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-09-25T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7,"RunTimeTicks":52073598976,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"422803"},"VideoType":"VideoFile","ImageTags":{"Primary":"162dedc167294ff534f41133eaf70d2e"},"BackdropImageTags":["44f06a5e001cafe4803c40c9df6a58bb"],"ImageBlurHashes":{"Backdrop":{"44f06a5e001cafe4803c40c9df6a58bb":"WY9@^zIAIB.8M{RQyZRPRP%MRkNGXoaeaeofofW=o~e-WAkCa~of"},"Primary":{"162dedc167294ff534f41133eaf70d2e":"dfC7sWxuDiR*u6ofMxR+T1RkkDoztSofo#kCRoofoyWB"}},"LocationType":"FileSystem","MediaType":"Video"},"416273262aedc288e954fcdba94d5d4d":{"Name":"Thor: The Dark World","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"416273262aedc288e954fcdba94d5d4d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-10-29T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":67233071104,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"76338"},"VideoType":"VideoFile","ImageTags":{"Primary":"9bb6e4e63b3f80eff769b221ff14301b","Art":"86c29d1970c493a94b8851adaca3aafa","Banner":"cf6d8cf9b9cfd1d7cf7a985d596e30a8","Disc":"bf4412ca6972ad895930416974d08ab5","Logo":"27355b9d6dd8cc2d8d7130aa236a603c","Thumb":"fc968424a328880666c8652f6bacbf0f"},"BackdropImageTags":["f686ef76c2501c1931dbd6761f6b422e"],"ImageBlurHashes":{"Backdrop":{"f686ef76c2501c1931dbd6761f6b422e":"WPF={.DNShIoD%%#^QR5g3x]IUWBR6i_M{%MV@Rk?H$$M|NeWBWB"},"Primary":{"9bb6e4e63b3f80eff769b221ff14301b":"dMDwBSIo?b%NX:adRjWC02xC4oNGx]V@xZxuMwof%1jY"},"Art":{"86c29d1970c493a94b8851adaca3aafa":"NWL#5]?v?bD%_3aeRi00-;oLIooz$%D%D*ogM{%M"},"Banner":{"cf6d8cf9b9cfd1d7cf7a985d596e30a8":"HjGR#hMI-prrR5-;Mx-ps;~CVExuxasTt7aKxasA"},"Disc":{"bf4412ca6972ad895930416974d08ab5":"eWMGbf%L~qM{Os^*NaI:xFjFk@IUtl%2%1IBs:WER*t6tmt7skM{RP"},"Logo":{"27355b9d6dd8cc2d8d7130aa236a603c":"O~K_5uaykCf6ofa|ofj[j[ayfQfkfQfQ~qj[ayj[WBj[ay"},"Thumb":{"fc968424a328880666c8652f6bacbf0f":"NSE:9}8wX9NGIU%h^QR5SgtRIoWBv~wcIotSRjWB"}},"LocationType":"FileSystem","MediaType":"Video"},"41e37822278d3d97e2ab17888f6095df":{"Name":"Avengers: Age of Ultron","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"41e37822278d3d97e2ab17888f6095df","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-04-21T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":84787838976,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"99861"},"VideoType":"VideoFile","ImageTags":{"Primary":"9e79c6693b6b633adf340d9f7d0a1dd5","Art":"428f84b239ac9c9132820ba2965f9622","Banner":"356f7bd8ec774fb4f73c7652d928c73a","Disc":"d1ace3c580bc30671d28a96ae95c33ea","Logo":"85ced4883dcde27eea474a7ca6dfe6c2","Thumb":"9816907d386e31f3613f383f743ee188"},"BackdropImageTags":["cc0c6fc60b77bcb589a351c5d2fff95f"],"ImageBlurHashes":{"Backdrop":{"cc0c6fc60b77bcb589a351c5d2fff95f":"WRCip,M|IUt7kDoz~pM{M_xuozoy^+RPM{xubHWU-;RjM{tRR*ae"},"Primary":{"9e79c6693b6b633adf340d9f7d0a1dd5":"dcDJL~%3E2WY_NxuIUR*-;t6M{WAtSofafafbcogoeay"},"Art":{"428f84b239ac9c9132820ba2965f9622":"NYIO9DW;Rkxat7oy,.DiV@RjWVWX_NIUaeozbbbH"},"Banner":{"356f7bd8ec774fb4f73c7652d928c73a":"HTC~e;vgM{%#E1V@xZbwWr~DR5NG.8NHo2xuX9Rj"},"Disc":{"d1ace3c580bc30671d28a96ae95c33ea":"eLLyTexZqFoe-;kqV@s.kWn%.mWA.mkCIUxaRkWBNaj[%~kCM{ofiv"},"Logo":{"85ced4883dcde27eea474a7ca6dfe6c2":"OeJaK4s:bbt7kWozkW?bafayWVWUbHbH?^jFenj[jZWVae"},"Thumb":{"9816907d386e31f3613f383f743ee188":"NHFr-OE2~qIqM|xb_3adxZ4oM{ofROR*9FWUIURj"}},"LocationType":"FileSystem","MediaType":"Video"},"4223138fb6fe3c5115b0e4c6c23d4ec3":{"Name":"Ghost Rider","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4223138fb6fe3c5115b0e4c6c23d4ec3","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2007-01-14T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.5,"RunTimeTicks":74054082560,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1250"},"VideoType":"VideoFile","ImageTags":{"Primary":"ed770f2d82232d371fe6ded01cf1222c"},"BackdropImageTags":["cbf946c9dacfff2e312ce061be912ffa"],"ImageBlurHashes":{"Backdrop":{"cbf946c9dacfff2e312ce061be912ffa":"WkNRMP~9VtrYRkr@x@?ExsV[i{oJE2s,tjo|t5WB$$jFxXkpS#jG"},"Primary":{"ed770f2d82232d371fe6ded01cf1222c":"dhHv#8=_xF$gIpn~$$s.0$IqbbX8-9RlIqRkS}t6jZRk"}},"LocationType":"FileSystem","MediaType":"Video"},"4256b75ef2044459a79a9dadfa7d3e1c":{"Name":"The Girl Who Played with Fire","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4256b75ef2044459a79a9dadfa7d3e1c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-09-17T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7,"RunTimeTicks":77725147136,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"24253"},"VideoType":"VideoFile","ImageTags":{"Primary":"56d0d41a929d323bd2e9b7878c4904b0","Art":"abc9b1b8903fe9a2947dc79e9568013a","Banner":"668bf0dd3f092e4d26bb93b45bff30ae","Disc":"2b20b5d8e0671fc84b062512a4501684","Logo":"b6d9269322866260ed10a9b39a3e6e4b","Thumb":"0236b8f2f9ae0eac61596ecaea5ec43f"},"BackdropImageTags":["b3b1f3f99925a6259b89a4852c5f5d69"],"ImageBlurHashes":{"Backdrop":{"b3b1f3f99925a6259b89a4852c5f5d69":"WP9Y-jso10Nb^N$%$ijaJ8bFw{a#IrayxroLM~WCSej@n+a#W.oc"},"Primary":{"56d0d41a929d323bd2e9b7878c4904b0":"dF8|Ix%2I;-B}[t7Na-B$*bbWV$*I;NHoJj@5RIpxaNH"},"Art":{"abc9b1b8903fe9a2947dc79e9568013a":"NYKSFjEMxv9vx]WU?aVsOrM|j[ad2ZVskXNGxGxF"},"Banner":{"668bf0dd3f092e4d26bb93b45bff30ae":"H97n2fX:={4o4nI957~BK7~VT1-UE1D%ROEM={JV"},"Disc":{"2b20b5d8e0671fc84b062512a4501684":"eNCOwFJV10]$of$zWoI=n%s.EMslobNenhShbIs:s,NHOYn%r=Sgof"},"Logo":{"b6d9269322866260ed10a9b39a3e6e4b":"OLAK5Saz00oft6Rjflogs:WVNGf5s:WBIUj[fQWB%2ofay"},"Thumb":{"0236b8f2f9ae0eac61596ecaea5ec43f":"NF8pfQAINH=s0#$~wbI:bG$*NwoKD+xVj[NI%KRn"}},"LocationType":"FileSystem","MediaType":"Video"},"432bf95eff1fc5fb6342d927fd640d2c":{"Name":"Appleseed","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"432bf95eff1fc5fb6342d927fd640d2c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-04-16T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":63180898304,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11633"},"VideoType":"VideoFile","ImageTags":{"Primary":"3a59697e26edd4a17974e21fbc6f485b","Art":"cbab12360b29aed18af822231c12e8e1","Banner":"cbab12360b29aed18af822231c12e8e1","Disc":"97b6257df6f01fc622fdde196f4372e3","Logo":"b24be207ae09b882df7090cd040d407d","Thumb":"fae37c207e7a556039728b9a2f449cad"},"BackdropImageTags":["97b6257df6f01fc622fdde196f4372e3"],"ImageBlurHashes":{"Backdrop":{"97b6257df6f01fc622fdde196f4372e3":"W66@pDaw0z$*v$Eh,.R%9]sm$*NHRkxaslI:ozw^E*so$%OFS$xE"},"Primary":{"3a59697e26edd4a17974e21fbc6f485b":"dEBL^kt6#7=w^jEgNHt79uNaJUX9Io^4xDrr0zxZkDE2"},"Art":{"cbab12360b29aed18af822231c12e8e1":"N54_kJX9RiofNHxY~Wx]M{jZW=nh?bxuM{oebIWA"},"Banner":{"cbab12360b29aed18af822231c12e8e1":"HD9G?j^*?HRPIAf8Rk-;bv~W-p-pniRioKWBxuWq"},"Disc":{"97b6257df6f01fc622fdde196f4372e3":"eKE2^HWB?cs:?bslIUozV@R*_Nj@.8bHaeNbM{t6NGoK-;s:V@R*NF"},"Logo":{"b24be207ae09b882df7090cd040d407d":"ORR:HGtRWBt7ayt7aet7WBWBj[ayj[fQ~qRjofj[j[WBj["},"Thumb":{"fae37c207e7a556039728b9a2f449cad":"NB8gsj9G01~p-o0L?GIVE1-:oLD*D%tR%MMyNG%M"}},"LocationType":"FileSystem","MediaType":"Video"},"43a859aec36c0481db9c21c18a510170":{"Name":"Ghost in the Shell","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"43a859aec36c0481db9c21c18a510170","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1995-11-17T23:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":51834241024,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9323"},"VideoType":"VideoFile","ImageTags":{"Primary":"abc2e9eea743253a4b799585d5edd938","Art":"4728a0b089824330173660776fefbc9f","Banner":"4a2f5aa7961fa4667478ca5f650e832e","Disc":"6b7fa189aae5959191df3550ee8ac6ed","Logo":"9b2e2e9ab3dd105b9bd95da6298ccaf2","Thumb":"a48a8aeadbb288d91cecf10d68f8c8fd"},"BackdropImageTags":["575773e42980c0ee7661dfcc8c603174"],"ImageBlurHashes":{"Backdrop":{"575773e42980c0ee7661dfcc8c603174":"W3566LPSAVz=HtQ5**DkD6,.s+ICwcSKpbyWl8bEI:mm%yOYRRrX"},"Primary":{"abc2e9eea743253a4b799585d5edd938":"daO|Rw?H_3~q?vofV@j[%gx]M{MxITaeWBRkE1Rjt7WB"},"Art":{"4728a0b089824330173660776fefbc9f":"N-MaO+t7~qWBIUof-;j[%MWBRjazIUayRjoffkWC"},"Banner":{"4a2f5aa7961fa4667478ca5f650e832e":"H_PGjX-;j[WBxut7ofxuWB~qofayofj[ofofofRj"},"Disc":{"6b7fa189aae5959191df3550ee8ac6ed":"eTBzOvodE1RPWAofayWXfiae9DWCt5t7aeWCj[ocofWCxsofRkWAbc"},"Logo":{"9b2e2e9ab3dd105b9bd95da6298ccaf2":"OVA,zkt7s;ofM{ofj[ofayfQj[WBj[j[00WBWBWBxuayay"},"Thumb":{"a48a8aeadbb288d91cecf10d68f8c8fd":"NKDcRP%N0gx]e?R*RoWCS5R*oLay0LkD-oR*bDRP"}},"LocationType":"FileSystem","MediaType":"Video"},"43da7c835e535f13cb16852d2c75041e":{"Name":"The Handmaid's Tale","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"43da7c835e535f13cb16852d2c75041e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1990-02-14T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6,"RunTimeTicks":65200640000,"ProductionYear":1990,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"20815"},"VideoType":"VideoFile","ImageTags":{"Primary":"ca1738bcc6a65680c0cc0bcd5885fb91"},"BackdropImageTags":["66c964ea0717f7174d2202879589eeac"],"ImageBlurHashes":{"Backdrop":{"66c964ea0717f7174d2202879589eeac":"WTH]2+~C%g%g%g?H?Hx]%Mx]tl%MXSbuozt7kVt7$%oLf*oLWVkC"},"Primary":{"ca1738bcc6a65680c0cc0bcd5885fb91":"dbD+b%.7tRs.0KIANGSg%3o}ogWBt3V?V@oeR*xuxaoL"}},"LocationType":"FileSystem","MediaType":"Video"},"444c1b60911c069115a9e0d40993cf8b":{"Name":"The Meaning of Life","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"444c1b60911c069115a9e0d40993cf8b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1983-03-30T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":64200101888,"ProductionYear":1983,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"4543"},"VideoType":"VideoFile","ImageTags":{"Primary":"707f1bfa058640f8d6c1087dbcbb566a"},"BackdropImageTags":["29d446f2e21b60d4f81c80325927770d"],"ImageBlurHashes":{"Backdrop":{"29d446f2e21b60d4f81c80325927770d":"WSI4no~WEj?a=_xG%2a$M|jFi^WA9ZRkoJNGozofxtjZnit7bcah"},"Primary":{"707f1bfa058640f8d6c1087dbcbb566a":"dWI|:kn$E6sVX.n$xHWY0gV@x[ayV@e.tRs.b^RjxtNG"}},"LocationType":"FileSystem","MediaType":"Video"},"44b332e5fb53f6e7504a4523d1097469":{"Name":"Princess Mononoke","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"44b332e5fb53f6e7504a4523d1097469","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1997-07-11T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":80029442048,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"128"},"VideoType":"VideoFile","ImageTags":{"Primary":"5bd209869236ab50c63b5a8f1d06d882","Art":"d3748e53d22e2d8e140713709c7d9edd","Banner":"fac908b6e2b42f17863db4c0e8620575","Disc":"bda5d8b19a81f66420ba25412f43dfc1","Logo":"9d03c66a937fb79cab4846bf590d9e98","Thumb":"bddeea1017365633acd84347c0e5e55c"},"BackdropImageTags":["7342aa654a7d7455ce135dda471a1c91"],"ImageBlurHashes":{"Backdrop":{"7342aa654a7d7455ce135dda471a1c91":"WHCQrW?c8{t,xunMXKtQWGkDoyjY4TIox[MxRjtSM}RkxZM_RPt8"},"Primary":{"5bd209869236ab50c63b5a8f1d06d882":"dRF$ePsRRi-=IpR*IBNG00V@oIRi?aflxuxtoIWBIoNH"},"Art":{"d3748e53d22e2d8e140713709c7d9edd":"NJLXGND%?^4-#*?bs$M{tSIUV?RPE1.7IA?bo#Rj"},"Banner":{"fac908b6e2b42f17863db4c0e8620575":"HbDcgO.5b;b;%K%Lx[xsx?_Kx@tjtQofs.t6oytQ"},"Disc":{"bda5d8b19a81f66420ba25412f43dfc1":"eXKMH=Im^Txb-ENXWBxbkBbF^T$,sENFX4Svj[sqafWU}xI-Nrs;In"},"Logo":{"9d03c66a937fb79cab4846bf590d9e98":"OZQcn{xuxuofM{ayRjxuayt7ayWBayWB~qWBWBayt7oft7"},"Thumb":{"bddeea1017365633acd84347c0e5e55c":"NLG*f|$c029usk^+~XIT%2kW9Foh.9E0xat6ROt8"}},"LocationType":"FileSystem","MediaType":"Video"},"44b4ed8be66fbb2802b81e41180fdbac":{"Name":"Maze Runner: The Death Cure","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"44b4ed8be66fbb2802b81e41180fdbac","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-01-09T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":86326722560,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"336843"},"VideoType":"VideoFile","ImageTags":{"Primary":"901f274732519b7f99d6e2f13f46ce95","Art":"120880560a0f692e19b9655603d3010d","Banner":"44aca623a5875855500435da8249d0c4","Disc":"abf60699a69d46c7a89979b49b115315","Logo":"ea59412f25e240b283ecab888bf36e08","Thumb":"9a8c5bc09057562227287b5f22b8d2a5"},"BackdropImageTags":["50d106ffcade3f8be417f7f29d70a5df"],"ImageBlurHashes":{"Backdrop":{"50d106ffcade3f8be417f7f29d70a5df":"WZD+xeD%E2-pRifkf,s-s:W=WBoe0K%M%1M{kDoen$ShNGjEt7Rk"},"Primary":{"901f274732519b7f99d6e2f13f46ce95":"dUDvQA^*s-%MNcIpR+of02D*M|M{-o-o%2oftkxtt7kW"},"Art":{"120880560a0f692e19b9655603d3010d":"NnL4H6~9-pbcWYay_2t6t8X9WEa#N#IuahoJaxfl"},"Banner":{"44aca623a5875855500435da8249d0c4":"HdF=p+IU0f%MnNxat7WBoz?bM{RjxuIot7xFoJoz"},"Disc":{"abf60699a69d46c7a89979b49b115315":"eaH.o;9GD*%MIq%zRjM{t6jZ0f%LjYV@xZMxs:ofoLWVWAafs:WqkC"},"Logo":{"ea59412f25e240b283ecab888bf36e08":"OERMb$-;_3WB?b%Mxu~qofWBRjRjofM{IUayt7oft7RjWB"},"Thumb":{"9a8c5bc09057562227287b5f22b8d2a5":"NG8OSavyjEpdDhtR%hoLaebbRjjF4TIpWAjttRRi"}},"LocationType":"FileSystem","MediaType":"Video"},"44e32e359e71067dd54024e2fa6f637d":{"Name":"Transformers: Age of Extinction","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"44e32e359e71067dd54024e2fa6f637d","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2014-06-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.9,"RunTimeTicks":99074031616,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"91314"},"VideoType":"VideoFile","ImageTags":{"Primary":"3480255a0b7abbcec1b9c8a022090c1f"},"BackdropImageTags":["244a355ae8927b86ba5c3baaa8860aa2"],"ImageBlurHashes":{"Backdrop":{"244a355ae8927b86ba5c3baaa8860aa2":"WZIE@Jr;_N%gM{-;_Nxt%Mx]a}xuD+tRjZ%L%MWBo#WBt7%2xubH"},"Primary":{"3480255a0b7abbcec1b9c8a022090c1f":"dQEM8txWW:oL_NRPRkR+JCIpRQof-pt8M{xY-:%LWBRj"}},"LocationType":"FileSystem","MediaType":"Video"},"44fd9579632881dbbf9610b6ddef9fb3":{"Name":"Indiana Jones and the Last Crusade","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"44fd9579632881dbbf9610b6ddef9fb3","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1989-05-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":76133761024,"ProductionYear":1989,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"89"},"VideoType":"VideoFile","ImageTags":{"Primary":"3b5a9537ded6481a65da59d17a8e4a63","Art":"418764de271a836d521b8447dedab5e7","Banner":"9eb7bb6da6250a0d8fceaf26c5bdf2f5","Disc":"528fbef63c63f5039b782e2e9ea2b462","Logo":"eea7110243276a0433b97b5e8434b943","Thumb":"d95ff02fdf564207d09187622986cfc8"},"BackdropImageTags":["aa451fe8ea83b3e0bf4ae0617eac4a78"],"ImageBlurHashes":{"Backdrop":{"aa451fe8ea83b3e0bf4ae0617eac4a78":"NcMi4X~U%f$N-:-:^4E2xrnixZxZI:R+-Ts:adnO"},"Primary":{"3b5a9537ded6481a65da59d17a8e4a63":"dJMFX3~Axq]h=^WB-mae0#MzS%K6=^xWxGj]_1%KxWV@"},"Art":{"418764de271a836d521b8447dedab5e7":"NIIDQ^M{={J60$%2Dh%19]-UR-Iqo$RkM|jZt7Iq"},"Banner":{"9eb7bb6da6250a0d8fceaf26c5bdf2f5":"H,N*W:RlIq%KpGwKOD%0xZ}qRkayR*bYRkR+smWC"},"Disc":{"528fbef63c63f5039b782e2e9ea2b462":"eYJ@B-NG.TNKtmxFs-j[R+WW.TxY?bjZs+ofRka}ofjF%hNHjEoyIU"},"Logo":{"eea7110243276a0433b97b5e8434b943":"OWP?HxRO%hWTtmtRg4HXxbkCxvo}t8tR%O%hRiofWAROf5"},"Thumb":{"d95ff02fdf564207d09187622986cfc8":"NYNRoO$K4V?GX8+]^*-SicM~xanir?%1S3IVxZNe"}},"LocationType":"FileSystem","MediaType":"Video"},"453244ecc7427027c247310eccc53ea4":{"Name":"The Cabin in the Woods","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"453244ecc7427027c247310eccc53ea4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-04-11T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":56981250048,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"22970"},"VideoType":"VideoFile","ImageTags":{"Primary":"66c01b12c48d46d6d8b959ea578602f1","Art":"aebaa46501bd96f8d11f8d749d5233d0","Banner":"7ff4a65e94c4115ddf065bd50f15f679","Disc":"7b3f21e0b045ed66f3eb3419b8a63284","Logo":"ee4cf8d3a48805d89c64c899dfd23a75","Thumb":"599ca87936dde48bdfe6f7b83d35ea6c"},"BackdropImageTags":["db15daee40324e9df42eee116301958f"],"ImageBlurHashes":{"Backdrop":{"db15daee40324e9df42eee116301958f":"WNH_=C-;~q?b00%MxuM{Rjt7WBofWBRjD$WAofRj?bt7t7t7M{Rj"},"Primary":{"66c01b12c48d46d6d8b959ea578602f1":"dQI=GZ?b~q?b9FRjMxRj~qayD%js9FWAxuWBM{WUM{Rj"},"Art":{"aebaa46501bd96f8d11f8d749d5233d0":"NSEVpS~q.8WBWBWB4n9FIot7xut7_3?bxuM{M{ae"},"Banner":{"7ff4a65e94c4115ddf065bd50f15f679":"HdKnk|ofof-;-;_3xuxuRk~qxtt7ayWBt7WBayWB"},"Disc":{"7b3f21e0b045ed66f3eb3419b8a63284":"eTKwnSWV?^ay?b~Wa}IojZM|?^WAkWn%xF9FRjt7oLs:%gWBxaWVM{"},"Logo":{"ee4cf8d3a48805d89c64c899dfd23a75":"OpHBVvs:_NkC_3kC.8j[WVWBjZjZfkkCx]ayWBayWBj[WB"},"Thumb":{"599ca87936dde48bdfe6f7b83d35ea6c":"NvFrw~xuWVofM{Rj~qofoft7M{Rj-;WBs:t7WBof"}},"LocationType":"FileSystem","MediaType":"Video"},"46181243f6b492846ca8ed91edb49fb6":{"Name":"Ready Player One","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"46181243f6b492846ca8ed91edb49fb6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-03-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":83982942208,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"333339"},"VideoType":"VideoFile","ImageTags":{"Primary":"54394e88a246a63147542c2f249c622e","Art":"e91cf6c88dab0a929b38a012c6dcf496","Banner":"ddbcc5267496a62b30ee135a337ca789","Disc":"99ec311353b8aef62aa2bf6ece91e8c8","Logo":"1ef2c3bbfba039322c687bf3c72b6f8b","Thumb":"3ceaf9df192be99119c31a55927e2a61"},"BackdropImageTags":["af2c330652d025802cf33534641ebb4a"],"ImageBlurHashes":{"Backdrop":{"af2c330652d025802cf33534641ebb4a":"WaAA|F#itLtTMxNF.AwGxvo#ROR-S|njt8ocaeWZX4nmozkCada_"},"Primary":{"54394e88a246a63147542c2f249c622e":"deG[T.xb0LoO%LWAM_t3E2M{xqxt-=f9V_xaNEWBn$f5"},"Art":{"e91cf6c88dab0a929b38a012c6dcf496":"N+K1Xw=|-QWEIV%1?wo}xsRlNKoyxvaxt6V@kCay"},"Banner":{"ddbcc5267496a62b30ee135a337ca789":"HM9Q~-T1Mxa0t7tlRjivM_?wS%M|i_n#bbkCnhRi"},"Disc":{"99ec311353b8aef62aa2bf6ece91e8c8":"eUJtudRkb@s._1t1WBWUogoO~qRj?uxtR.%NWCRkoeR$x?a#xbafD*"},"Logo":{"1ef2c3bbfba039322c687bf3c72b6f8b":"O#I5Pta#~qkB_3og-:t7fQj[ayayj[fRWBjta}azoefQj@"},"Thumb":{"3ceaf9df192be99119c31a55927e2a61":"NSFh9s~Axt^*?Gxs^lxbWXxut6f5IUE3D*M{M{M{"}},"LocationType":"FileSystem","MediaType":"Video"},"46a8099591ed8e2855e57abcfb02d810":{"Name":"The Da Vinci Code","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"46a8099591ed8e2855e57abcfb02d810","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-05-16T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":104775041024,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"591"},"VideoType":"VideoFile","ImageTags":{"Primary":"84d35c19a0dbcaf8a8a5d01bab645359","Art":"4bb3fb2143a2a37fc5ed3897938e8d7f","Banner":"542eaa16b482544df92f2c8862da3efb","Disc":"c3d2613771f8fd289ce6e9107058c768","Logo":"3c6a947fe12868f6bb97fb9d87e80081","Thumb":"a9835adffdfccb448df045e2ef7273ae"},"BackdropImageTags":["fbcb85ca5a3caa2670d29e1753e62c87"],"ImageBlurHashes":{"Backdrop":{"fbcb85ca5a3caa2670d29e1753e62c87":"WA9sk.%2D*xZR*R5^ORjM{xZo#xa0fWDxuWBNHNd58ozxuIoRjNd"},"Primary":{"84d35c19a0dbcaf8a8a5d01bab645359":"dICO~=xZE2s.=st6NHf6IVoJxtNH9wRkxZW=0hR+fkkC"},"Art":{"4bb3fb2143a2a37fc5ed3897938e8d7f":"NlKB2U4mxt-;%MM{4m-;t7IoWBj]ayRjRja#azay"},"Banner":{"542eaa16b482544df92f2c8862da3efb":"HAAS;{F2ENozof^jI:w]57~AI;E2j[WC-oXSM|Rj"},"Disc":{"c3d2613771f8fd289ce6e9107058c768":"eSHLSV=_.8E2-=$woIkXR+WA.AIp^+%1RjIpNIxuoING?wj]ROjrM{"},"Logo":{"3c6a947fe12868f6bb97fb9d87e80081":"OpQ,E-j[ofofoft7fQt7fQj[f6fQj[ay~qj[WBj[WBWBfQ"},"Thumb":{"a9835adffdfccb448df045e2ef7273ae":"N58|O.^jMxIBE1xb]~$$%2afRnRj0fNHR*xakDNG"}},"LocationType":"FileSystem","MediaType":"Video"},"477152e13fedadd8da5004df688b061d":{"Name":"Ocean's Thirteen","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"477152e13fedadd8da5004df688b061d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2007-06-05T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":73292480512,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"298"},"VideoType":"VideoFile","ImageTags":{"Primary":"2e77f0b7a4318900d028eb2f5d0a30a6","Art":"5fdbf4018e1d43703734b6ff62ff1685","Banner":"f8c5a587114d735fc5a82f6491dd5ee0","Disc":"e3c1285f926128e834f2c229e75ad948","Logo":"85de1dd8687fa906d80e06a752900688","Thumb":"6c747a6a77fc792bfe063849db28b2fe"},"BackdropImageTags":["e3c1285f926128e834f2c229e75ad948"],"ImageBlurHashes":{"Backdrop":{"e3c1285f926128e834f2c229e75ad948":"WxI#iY%LbIt7Rjxu~qxuoexuWBtRxuoLRjxuoft7t7RjRjR*WBt6"},"Primary":{"2e77f0b7a4318900d028eb2f5d0a30a6":"d#OzJTxu~q_3xuWBfkf6-;ozIURjxtWVbHoLxuofM{Rj"},"Art":{"5fdbf4018e1d43703734b6ff62ff1685":"NUHBD8$i-pNH%gX8M|X9M{ofM_oJ~Wt7x]V@aeso"},"Banner":{"f8c5a587114d735fc5a82f6491dd5ee0":"HtJsX@xtD%w|I:R6%2%2$%}tS#RjnjNaRPofxuj["},"Disc":{"e3c1285f926128e834f2c229e75ad948":"ePKm*0xZ~qW;_NEeWBxaf6WBt,Io_NniIU^*W;RjxuNa?bofV@tRMx"},"Logo":{"85de1dd8687fa906d80e06a752900688":"O-PiF;of%#s:yDfkx].mj[RPj[RPayaKayj[ayfQj[ayfk"},"Thumb":{"6c747a6a77fc792bfe063849db28b2fe":"NtJP[I%NjFxaxGaK~C%2Rjs:R+adt8xZNGf+S4ax"}},"LocationType":"FileSystem","MediaType":"Video"},"47e9c8c5aae1bc8976b95d5b44807d77":{"Name":"Who Am I","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"47e9c8c5aae1bc8976b95d5b44807d77","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-09-24T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":61051838464,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"284427"},"VideoType":"VideoFile","ImageTags":{"Primary":"a1ae5c6d357a440ceff3daca0bb18ee0","Art":"84436e620a1ba8160b14a7de3eab3d23","Banner":"079e67e3d6abfbd44d9c6f3da07e4b17","Disc":"793e66eb661c43a3f126da80a6c3c400","Logo":"f889db819b6e486a82ee5c68413a67e2","Thumb":"c6007ac7eca6138669a3355678994ead"},"BackdropImageTags":["5fbc97d0d41e82d99a505f9f31498759"],"ImageBlurHashes":{"Backdrop":{"5fbc97d0d41e82d99a505f9f31498759":"W86twLxaH=NG?aof}sxZxsS3rXoL}?s,nhS5-os:-Us:$yWU-Ts:"},"Primary":{"a1ae5c6d357a440ceff3daca0bb18ee0":"dA8gma%MD%Mx4nRjaebb4.Rj%Mxu~WtRtRni00RPRjX8"},"Art":{"84436e620a1ba8160b14a7de3eab3d23":"NuNmyc01D%oz%gxZ?cMxW=xut7o#Rixuxtt7t7of"},"Banner":{"079e67e3d6abfbd44d9c6f3da07e4b17":"HVF~Hjtm4;H=IUpJxBt6SP~WtSD*MwNHxv%LRkS6"},"Disc":{"793e66eb661c43a3f126da80a6c3c400":"eLG[.*Rj_3V?-;%2RjWBWBs+_Nxa~qoeMxogs:oekCR-?bRjjEW=IU"},"Logo":{"f889db819b6e486a82ee5c68413a67e2":"OpQvBvpyofn2b_t7WY%2bIjsf6azf6WCt-i]j[kXjEWCjZ"},"Thumb":{"c6007ac7eca6138669a3355678994ead":"NCBDKEtS0LwaD$x_^jo#ItxW%1S600IU-;?b%LV@"}},"LocationType":"FileSystem","MediaType":"Video"},"4882d5ed2d75f42b113ffd04a71653e8":{"Name":"Looper","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4882d5ed2d75f42b113ffd04a71653e8","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-09-25T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":71331414016,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"59967"},"VideoType":"VideoFile","ImageTags":{"Primary":"379b9d79f9923bb0533250f3ccbf6fba"},"BackdropImageTags":["92bf4f3ad382275fb769dcee68b35ea2"],"ImageBlurHashes":{"Backdrop":{"92bf4f3ad382275fb769dcee68b35ea2":"WA4{*wx^MHMxIURQR6V@j;tQtmozMHV@o}ozt8f+u5oza0RPV[f9"},"Primary":{"379b9d79f9923bb0533250f3ccbf6fba":"dXODUk?bxt-:-;IAV@t79FIUoLt7jsxuM{M{~qaeaeRk"}},"LocationType":"FileSystem","MediaType":"Video"},"4a0d52c000d2562e6991048c19ded626":{"Name":"Doctor Sleep","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4a0d52c000d2562e6991048c19ded626","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-10-29T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":108143681536,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"501170"},"VideoType":"VideoFile","ImageTags":{"Primary":"7ed84198dec40307febdbe9d73cc76d6"},"BackdropImageTags":["a91ee462b99c21718ce3baaa42c4c8c6"],"ImageBlurHashes":{"Backdrop":{"a91ee462b99c21718ce3baaa42c4c8c6":"W7B1e+3UaLE29uwK$*XRNaV[Naay0}rrX7xt%1j[rYI;$jo|=xoe"},"Primary":{"7ed84198dec40307febdbe9d73cc76d6":"dOIU-c;#57$*b^sAI;of0ej[-pr?zpof%2wJ-poLIobH"}},"LocationType":"FileSystem","MediaType":"Video"},"4a2174b147663e0d8a1fefd226f75d15":{"Name":"Suicide Squad","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4a2174b147663e0d8a1fefd226f75d15","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-08-02T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.9,"RunTimeTicks":80729276416,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"297761"},"VideoType":"VideoFile","ImageTags":{"Primary":"1d59eb4d618f918e85855971fa731d99","Art":"02ee53ebbcb1b8c3fa8dd869aec32440","Banner":"8c8f52b243fdfc1588c6d2ca74ede54b","Disc":"27089824c4d659344ea074ce8c66cbde","Logo":"75e85cf9c422a7dd96aa76983daa9f83","Thumb":"cfb20aa1635e22df4091cc3a34047313"},"BackdropImageTags":["1244c41e8250f8c0c8942b6c17dcd9ee"],"ImageBlurHashes":{"Backdrop":{"1244c41e8250f8c0c8942b6c17dcd9ee":"WWG26ZyWREXoIfXUX:t2axo|jFnSt*o@Vto~VuVb*FpFjbSOW?Ro"},"Primary":{"1d59eb4d618f918e85855971fa731d99":"dQDwQqGG+6pb?@b]vjX4MgofbXVt$wWBSgn+wNk8rrn$"},"Art":{"02ee53ebbcb1b8c3fa8dd869aec32440":"NADcH[wFkqW;$ntK_NIUt6tQwhX4t8%MsDXPt7i~"},"Banner":{"8c8f52b243fdfc1588c6d2ca74ede54b":"H,Bt4wo|n7kXQcVgo|tQkpugbujGoga2jJjHofba"},"Disc":{"27089824c4d659344ea074ce8c66cbde":"eIKLjGsD=*Q[w8,vRRWFkSkl?dte?JpCInyNocbtV]Ve?cZ:ICj0X2"},"Logo":{"75e85cf9c422a7dd96aa76983daa9f83":"O~Mj,iof~qbHofofIBs;a{fjj[fQayazt6fRWBfifQazj["},"Thumb":{"cfb20aa1635e22df4091cc3a34047313":"NLGBaw*HHepKKATfXqx.eUaLpEV|ovovn6kWRUVc"}},"LocationType":"FileSystem","MediaType":"Video"},"4a42d00f90122e5687024e1598a30a2b":{"Name":"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4a42d00f90122e5687024e1598a30a2b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-12-06T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":85717123072,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"411"},"VideoType":"VideoFile","ImageTags":{"Primary":"6e008585caad17c52be807f0d8fc7102","Art":"d304648bedcff733ce0fa6d50e6ae639","Banner":"a4c9f61650f379c3a4bf08a151a78eb2","Disc":"e038eeb9a83ef164e995d4e44484c444","Logo":"0f021201b9d7a81cb50512ddb1d50fda","Thumb":"deaf2d13b6dddff11e86ce80b86e5a4f"},"BackdropImageTags":["5f6047b0798e16f71a290a388844bcef"],"ImageBlurHashes":{"Backdrop":{"5f6047b0798e16f71a290a388844bcef":"WZEn^N}=V@X5%LxtRkRlS$S4V[aeIqNHbbWCR*f5%LxZn$oJt7of"},"Primary":{"6e008585caad17c52be807f0d8fc7102":"dSD]q{=vo}bv8wWCI:V[GIE%s;s:ROsoi_jFw]sVofkC"},"Art":{"d304648bedcff733ce0fa6d50e6ae639":"NZJ7H[?vx^MwWBnOQmD*Ioxtbbso~q.8tSVsj?R*"},"Banner":{"a4c9f61650f379c3a4bf08a151a78eb2":"HKDu-:=V~o^h%zt+$z?aS},:tQS~r?NwSzxZslW;"},"Disc":{"e038eeb9a83ef164e995d4e44484c444":"ecLV]-s,.mbHt,WCWBkBayjt*0R*yDoLnO%1ofWXoLjsTeRkwIoLRP"},"Logo":{"0f021201b9d7a81cb50512ddb1d50fda":"OzLD4AaybbjFW;soS2VYjZayofa|n%bH.mj[o1j[fQfRoL"},"Thumb":{"deaf2d13b6dddff11e86ce80b86e5a4f":"NEDl[-}O~U?GyV?aUux[yDn4O?VsR;5SIpRjS#t7"}},"LocationType":"FileSystem","MediaType":"Video"},"4a94207d0302b79d1a52e52f4e946f1b":{"Name":"Kung Pow: Enter the Fist","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4a94207d0302b79d1a52e52f4e946f1b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2002-01-24T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":48848478208,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11891"},"VideoType":"VideoFile","ImageTags":{"Primary":"c4276beeab0df280231edad2e7dd4f37"},"BackdropImageTags":["1935dfc05d532a90e48c7d630364c108"],"ImageBlurHashes":{"Backdrop":{"1935dfc05d532a90e48c7d630364c108":"W|O:Lk?vxutQjvxu~qXnWCV@f+ogNzVsnhWVt6ae%Ms+kCbvoLf6"},"Primary":{"c4276beeab0df280231edad2e7dd4f37":"dKI35J=x0gV@$LSxtQ$%9[xWxZxZ?E-99vV[=sR+xGrs"}},"LocationType":"FileSystem","MediaType":"Video"},"4b1d14a1b6165c67432afd6f7ad086fc":{"Name":"The Lego Batman Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4b1d14a1b6165c67432afd6f7ad086fc","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-02-07T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":62701228032,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"324849"},"VideoType":"VideoFile","ImageTags":{"Primary":"1661224be4690d0c76c1e298ddf6f672","Art":"36a9a2c372aa5d37db3a0437dfd5c516","Banner":"b3df74753744e7a8f271c1f7895517c6","Disc":"efd2ea67e6dea5980d0110c46c02176c","Logo":"60cee621a2a889a3034d121bc80c2887","Thumb":"cd1a7caecbc010d4c3092f9cd5faadeb"},"BackdropImageTags":["405d7c71153fc7c54ebd483e43f4e6bd"],"ImageBlurHashes":{"Backdrop":{"405d7c71153fc7c54ebd483e43f4e6bd":"WcM6%T-m-P$~NJt5^$t6s+s:WEof?8oxV[WXWFai~Mt3RSWBt6W;"},"Primary":{"1661224be4690d0c76c1e298ddf6f672":"dOMP$i=_+@?D~SxtM|s,,+tLS$R*MgxV%HV[R8IYNKs,"},"Art":{"36a9a2c372aa5d37db3a0437dfd5c516":"N+J8kb~q%MM{M{xaofofbHe;aybG-;%MofRjR*kB"},"Banner":{"b3df74753744e7a8f271c1f7895517c6":"HnLf=s~6N0WD^wxYs,%0$y$yxZWEj[xWxZR-WB%0"},"Disc":{"efd2ea67e6dea5980d0110c46c02176c":"eRM7DAR-_2xFO[?ZV[M|bYaf%%s+T3R.M{%JWBR.oMoeyEocRjkCw["},"Logo":{"60cee621a2a889a3034d121bc80c2887":"OhGlI#j[xtax%Mj[xuxuj[RjWVayj[j@~qj[a#j[WBj[WB"},"Thumb":{"cd1a7caecbc010d4c3092f9cd5faadeb":"NTM6zG?W=?-mNKxX~Ts:nis:V{oL^]bZRkbHWFai"}},"LocationType":"FileSystem","MediaType":"Video"},"4c3705c94fba089b4dd72ab5a596a727":{"Name":"Apocalypse Now","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4c3705c94fba089b4dd72ab5a596a727","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1979-08-14T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":109189439488,"ProductionYear":1979,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"28"},"VideoType":"VideoFile","ImageTags":{"Primary":"fd9db1efd772be58cd9fcd1d887986c6"},"BackdropImageTags":["9cef43dfb1304c257328ab0e599186ea"],"ImageBlurHashes":{"Backdrop":{"9cef43dfb1304c257328ab0e599186ea":"WH82wMo11cSg]-sAwdj@ODaysAoLbHS2WVw{soNbWWWpoKsnazS3"},"Primary":{"fd9db1efd772be58cd9fcd1d887986c6":"daGsDskXEh$$}tt7WCsTAFsm$fNGE2V@obRjRORjR+oL"}},"LocationType":"FileSystem","MediaType":"Video"},"4e2062300bbb4a9dca16dd08b91ff6b0":{"Name":"Spectre","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4e2062300bbb4a9dca16dd08b91ff6b0","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-10-25T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":88868798464,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"206647"},"VideoType":"VideoFile","ImageTags":{"Primary":"8b98dee3186442d4beb3c22ab3fa0eeb"},"BackdropImageTags":["0c51cca2d50360935046501f42d179fd"],"ImageBlurHashes":{"Backdrop":{"0c51cca2d50360935046501f42d179fd":"WHC$=u8_9u%L0Lt-#R^*D*E2bwE1R4-pn$S4NaNG%gI9?HbFIoo}"},"Primary":{"8b98dee3186442d4beb3c22ab3fa0eeb":"dHBf;J#QVr_N=|RjEMInQ,-VV@9Gen?H$*g4IBoJt6Sh"}},"LocationType":"FileSystem","MediaType":"Video"},"4efd897551c3eaf84b63d52275851255":{"Name":"The Boondock Saints","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"4efd897551c3eaf84b63d52275851255","Container":"mpeg","PremiereDate":"1999-01-21T23:00:00.0000000Z","CriticRating":22,"OfficialRating":"FSK-18","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":61264199680,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8374"},"VideoType":"VideoFile","ImageTags":{"Primary":"c8e6b5f33f99af80fed73e295be323da"},"BackdropImageTags":["c8e6b5f33f99af80fed73e295be323da"],"ImageBlurHashes":{"Backdrop":{"c8e6b5f33f99af80fed73e295be323da":"WaGI4M%g~q-;-=%g^*e.t7WVE2RktRs.X9oJR-RjX8WWt7a|ozs."},"Primary":{"c8e6b5f33f99af80fed73e295be323da":"dIGIca%2t7%Ls:o0ogxv00fk9GIUenIUt7V@IUt7t7-;"}},"LocationType":"FileSystem","MediaType":"Video"},"501cad1b26db6c059fed751bae3a433c":{"Name":"Maze Runner: The Scorch Trials","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"501cad1b26db6c059fed751bae3a433c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-09-08T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":79029018624,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"294254"},"VideoType":"VideoFile","ImageTags":{"Primary":"fe77139e1d20fb35722503bf0bb012ef","Art":"2172eed17e00ba069053ee9c420cf3d2","Banner":"0284bc5073fa55183ea7eac2bae582ae","Disc":"2e3180722d7d517cb7f8b3e488f67d4c","Logo":"3d3b150303793777f016582247f4397a","Thumb":"013a453ddf6dc26671b9552dc938f820"},"BackdropImageTags":["9a9d807148778472e374b43bf9df3df7"],"ImageBlurHashes":{"Backdrop":{"9a9d807148778472e374b43bf9df3df7":"WjIELmt80Ls9NGkC^+ogNHt6NGWB_2s;IVoeazWB-;RkRkxuRjoL"},"Primary":{"fe77139e1d20fb35722503bf0bb012ef":"dLLNC|?EwG=^Rmt8-;NGI8xt-:oy~pbFt2ob?uxtROoI"},"Art":{"2172eed17e00ba069053ee9c420cf3d2":"NnI}9U9F-:juD*xu~WROxuRjM{WVo}nhkCWBM|NH"},"Banner":{"0284bc5073fa55183ea7eac2bae582ae":"HIEoiA_ND*DiD*xu%LIUsk?FV@M{NGRmafV@Iot7"},"Disc":{"2e3180722d7d517cb7f8b3e488f67d4c":"eXNc.ufiObxaIt~TjFNLR,RjE3aK.9bHxZDkW=RkjFt6?vofRPkCMx"},"Logo":{"3d3b150303793777f016582247f4397a":"OTLE7qbbj]jYo$t6%M%0t7ofa}Rkf5ae?woej@floeWBWB"},"Thumb":{"013a453ddf6dc26671b9552dc938f820":"NNGIDbtS9ZIVM{IV_N-pIoM{WAIV%MbIRjaet7Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"5065366cb3c76cfea676d4f66b20d7a8":{"Name":"Twelve Monkeys","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5065366cb3c76cfea676d4f66b20d7a8","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1996-01-04T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":77716889600,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"63"},"VideoType":"VideoFile","ImageTags":{"Primary":"600826d076950e00f37173c0d4f3e7ed"},"BackdropImageTags":["49d01e1ef43353ab0fd8030188d173e5"],"ImageBlurHashes":{"Backdrop":{"49d01e1ef43353ab0fd8030188d173e5":"WkIN1@~T%0oIJ8oy^ixtR+R+Nws:R*R*Rkjcofs:$$oJf6ofkCoy"},"Primary":{"600826d076950e00f37173c0d4f3e7ed":"d896{^~qK4RP%~%2Mc4.wINa0e9Ex]-;jFoLI:M{Vst7"}},"LocationType":"FileSystem","MediaType":"Video"},"515c46a7eec347bdf48ac580e92b8415":{"Name":"The Amazing Spider-Man 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"515c46a7eec347bdf48ac580e92b8415","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-04-15T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":84947517440,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"102382"},"VideoType":"VideoFile","ImageTags":{"Primary":"c82b9b1d9f5dd276b2bf88446b7f0e68","Art":"73a592a12e62031bb31b28fd2256200e","Banner":"fc001a25980ccb23115d3b625ace80d6","Disc":"b680e76424865fcc290552d3d1169a7e","Logo":"a4eb3cba3991599c5ffd625719d71949","Thumb":"2b6640945426189f4206a41e5d5d6e5e"},"BackdropImageTags":["4ad1952607138d03a4a146d6d3f7f672"],"ImageBlurHashes":{"Backdrop":{"4ad1952607138d03a4a146d6d3f7f672":"WUD+=7s8IAxbIno}_4i_R4j]jFW.ENaKwIWBxZWAIXs:%0r=t7R*"},"Primary":{"c82b9b1d9f5dd276b2bf88446b7f0e68":"dIF?FgyYY6%LyZMex^%L4:Z#RQsmMzx@NGe9Hq%LM{My"},"Art":{"73a592a12e62031bb31b28fd2256200e":"N~LEE6~qt7IUWBxut7t7j[WBWBofWBWBayoffkay"},"Banner":{"fc001a25980ccb23115d3b625ace80d6":"H~N1M}_3%1jFtRoLoz%Moe~qxuWAo0tRf6WCt8n$"},"Disc":{"b680e76424865fcc290552d3d1169a7e":"eWI=7anP_Ngh-:%1s,WAR*X9?HSL%eZ~wbI@NHozxHa0?ZkBXRt7My"},"Logo":{"a4eb3cba3991599c5ffd625719d71949":"OqQ]$ot7ofj[j[ofoft7Rjayofj[ayay~qWBWBkCayayWB"},"Thumb":{"2b6640945426189f4206a41e5d5d6e5e":"NbH_u,%0VsxbM{xv?wniR5Rki_kCS$RPn4WBxDjE"}},"LocationType":"FileSystem","MediaType":"Video"},"51b620b5703a5eccf83030571b587fdd":{"Name":"Mardock Scramble: The First Compression","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"51b620b5703a5eccf83030571b587fdd","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-11-05T23:00:00.0000000Z","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":41481441280,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"73529"},"VideoType":"VideoFile","ImageTags":{"Primary":"566da67f024d3fff4cef20f4ce2e9f72","Art":"6a32064354391ab3b35ec19abd1eea56","Banner":"4c00622ecff5b589d44fb0b7a51e17e7","Disc":"d8a8f6d2df369af4c1c8cdd6eba3b577","Logo":"c26089e7c8d4e7a7fcb2fe77ed8e142c","Thumb":"75274d5ba3caa089e7e80671cf60b69f"},"BackdropImageTags":["4530ce4956d8598149ad1f41e00fcb40"],"ImageBlurHashes":{"Backdrop":{"4530ce4956d8598149ad1f41e00fcb40":"W:Irg1RkRkWBRkx[_NWCayj?R*of%Nt7aga}WXWB%MogRkWDa$of"},"Primary":{"566da67f024d3fff4cef20f4ce2e9f72":"dK7D2y*IePVsUxn7tkoxHqQ.jJohcZbqV=kXjfkQb]Ri"},"Art":{"6a32064354391ab3b35ec19abd1eea56":"N97BAoiIO@NFfjxv%LX9eTt7WAog0KNa$%w|bIV?"},"Banner":{"4c00622ecff5b589d44fb0b7a51e17e7":"HvIOnKDit7WCIp-pi^-:D%~qMxWCfikCofsms;IU"},"Disc":{"d8a8f6d2df369af4c1c8cdd6eba3b577":"eNFsGYx[_2R5-;i^WCt7WBV@^*V@_NtRRjxuR%ogoLof~qoIM|ofIT"},"Logo":{"c26089e7c8d4e7a7fcb2fe77ed8e142c":"O{MaFiofbbofofofoft7j[o1fQayj[ay~qayaefQayfQWV"},"Thumb":{"75274d5ba3caa089e7e80671cf60b69f":"N+Ih]M-:WU%Mt7WX_Nxtayt7j]bIx^WBWCoejua#"}},"LocationType":"FileSystem","MediaType":"Video"},"51c6a3f324f316eb110d538f52883662":{"Name":"Snowpiercer","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"51c6a3f324f316eb110d538f52883662","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-07-31T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":75542552576,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"110415"},"VideoType":"VideoFile","ImageTags":{"Primary":"7d91292272f37e483e3aea1c081e55ac"},"BackdropImageTags":["28cd645a4a3cc28b8f5000709ed6e389"],"ImageBlurHashes":{"Backdrop":{"28cd645a4a3cc28b8f5000709ed6e389":"WoH2WcW=%g%MR-%M~qNFkCoeRjs:x^M{WBM|V@ofx^kCt7WXjZt7"},"Primary":{"7d91292272f37e483e3aea1c081e55ac":"dRLhSm?vNG.8%Mt6~qWXD%RjRktR_NxuM{t8%MRiITRj"}},"LocationType":"FileSystem","MediaType":"Video"},"526df3d140233617ebf746b5217dc579":{"Name":"Mardock Scramble: The Second Combustion","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"526df3d140233617ebf746b5217dc579","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-09-02T22:00:00.0000000Z","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":38700359680,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"73530"},"VideoType":"VideoFile","ImageTags":{"Primary":"8342df9a6454da809c0947bc254f1cbc","Art":"15c73470591dc85bddfe3e0f758abf98","Banner":"83896ee323a3ad0b6dbd394b4e21dc43","Disc":"393b406b7153135d1ea4ced797dfb5d2","Logo":"2b1ac3ea40068ebbb4ec8032f05264de","Thumb":"b3c7fa5a84ec494bdc1a61d4d48d52ec"},"BackdropImageTags":["772b586bd5bad8881a8734e240b0598d"],"ImageBlurHashes":{"Backdrop":{"772b586bd5bad8881a8734e240b0598d":"WRB5-JyE8{kW+@nN?+sQS~xsWFNdc6skxuowNLWCX.oytRWAogoI"},"Primary":{"8342df9a6454da809c0947bc254f1cbc":"dNCuuI*09Gt-^XwtpIxtQnRk#SwIryXSRkSivzoJNvRj"},"Art":{"15c73470591dc85bddfe3e0f758abf98":"NLBMufM~RjkDM{%2xJozj=fjayt60dn%n,njt6M|"},"Banner":{"83896ee323a3ad0b6dbd394b4e21dc43":"HmG1YK?bOEKikq%fwc%2r@.lt4oztQt7xusoofV]"},"Disc":{"393b406b7153135d1ea4ced797dfb5d2":"eNHD1|?G=|9wt9ynRPixX7of-qM{~V%1k9Q]SzxYrtWr^lbcNZnmIU"},"Logo":{"2b1ac3ea40068ebbb4ec8032f05264de":"O=NTzYofayoffQofofWBj[offQj[j[fQ~qayayfQayayay"},"Thumb":{"b3c7fa5a84ec494bdc1a61d4d48d52ec":"NbDerF%#E+X.-T-o?@wbbYxZrrfjbpobt7s.RQRj"}},"LocationType":"FileSystem","MediaType":"Video"},"527310f84ffb8f4ea3706100610f6363":{"Name":"Blade Runner 2049","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"527310f84ffb8f4ea3706100610f6363","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-10-03T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":98278400000,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"335984"},"VideoType":"VideoFile","ImageTags":{"Primary":"f7c4a2bdb0e58b2c9c5e804deea35b8d"},"BackdropImageTags":["685a180247810ab2529f1540faae3c17"],"ImageBlurHashes":{"Backdrop":{"685a180247810ab2529f1540faae3c17":"WN8}AP%$.9%Nxvxv.At-x_o}S$bIyEyE%gT0S#X8%O%NxvWBn%V["},"Primary":{"f7c4a2bdb0e58b2c9c5e804deea35b8d":"dVE_H#{0wM-U%h+a#mofnibbNHI;#mofS2RjEksm$NWB"}},"LocationType":"FileSystem","MediaType":"Video"},"528ce2791fbdd4a208f6e08425aa015c":{"Name":"Alice in Wonderland","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"528ce2791fbdd4a208f6e08425aa015c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1951-09-13T23:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":45162450944,"ProductionYear":1951,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12092"},"VideoType":"VideoFile","ImageTags":{"Primary":"dd243ec53bd53c064e6c7804d00f9436"},"BackdropImageTags":["e596ecb964eb4af9a1c082da6de3a464"],"ImageBlurHashes":{"Backdrop":{"e596ecb964eb4af9a1c082da6de3a464":"W46k9k+JDzl70hEd5r$zvzFf-qr=E25PJ}-EsC%LXRwf%LbXRRNa"},"Primary":{"dd243ec53bd53c064e6c7804d00f9436":"dTN+,~?GE*?G00WUMxn$I:g2s+sB-ptRl8V[9_j]EgJU"}},"LocationType":"FileSystem","MediaType":"Video"},"52f7c05b04a5d9042593e9296e08d1e4":{"Name":"A Clockwork Orange","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"52f7c05b04a5d9042593e9296e08d1e4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1971-12-18T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":81971953664,"ProductionYear":1971,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"185"},"VideoType":"VideoFile","ImageTags":{"Primary":"fe80024fcb51c956417edd9e31d9a543","Art":"1c7271b72936b77c27538a5ac31572aa","Banner":"eebc53a51d40837c38eb2ba3fbf22404","Disc":"89d6813e3b9603eb5ca7c36e60b940b1","Logo":"fe80024fcb51c956417edd9e31d9a543","Thumb":"38809a82f584baa904e81e438b46af11"},"BackdropImageTags":["a03f14910c5255b90da30ed0f3cd26df"],"ImageBlurHashes":{"Backdrop":{"a03f14910c5255b90da30ed0f3cd26df":"WJCi]x%M_4-=%g?vIURjNFRiRjM{0KRjIAM{RPMxxas.V@M{ofWV"},"Primary":{"fe80024fcb51c956417edd9e31d9a543":"dhQJQ5-;_N_N.8ozt7s:^,ofIUkC-=kCM{WBS2bbaeV@"},"Art":{"1c7271b72936b77c27538a5ac31572aa":"NXE_U1;eWBWBs,i^RPi_xuaya|t71NAHRjoJR+S4"},"Banner":{"eebc53a51d40837c38eb2ba3fbf22404":"H~P~1j-US~xubaRjt7jFRj~qofjEbHaeRPsoaeV@"},"Disc":{"89d6813e3b9603eb5ca7c36e60b940b1":"ebNbGZniysWo%gxZWCWXfPaz~qWUPVsoR*s.ayjboKjsPBWVr=a#iv"},"Logo":{"fe80024fcb51c956417edd9e31d9a543":"OmPEMDw].ToJu5JApd=wR+NdoKWqoKWqFya}sSoLs9a|n$"},"Thumb":{"38809a82f584baa904e81e438b46af11":"NLD]0m^Q~X-;%N_3#7+urrWAWBV?DNv~MwM{V@R5"}},"LocationType":"FileSystem","MediaType":"Video"},"535e53ea51540e196c41133a3ccfa313":{"Name":"Artemis Fowl","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"535e53ea51540e196c41133a3ccfa313","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2020-06-11T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":5.7,"RunTimeTicks":56610299904,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"475430"},"VideoType":"VideoFile","ImageTags":{"Primary":"621d284384d3857ddbe00540f56a1aa8"},"BackdropImageTags":["bf25d66a4a167290f40673e042768a34","98666b3731a32b43ad6ab3dad642322f"],"ImageBlurHashes":{"Backdrop":{"bf25d66a4a167290f40673e042768a34":"W88;DF0gnP+[EN--}l9wRO?G9u={=_E2-;xWNIa0WSkCnPs:ofoz","98666b3731a32b43ad6ab3dad642322f":"WL8FcqIdH[#OaJtm?]MzIVxoe-oyx^VXRjtQo#bcS7oMadbYt7W="},"Primary":{"621d284384d3857ddbe00540f56a1aa8":"dS9Sh-c[TzpIqtm+QmVsZ#n$adV@t+S~Xntka2n5nPVt"}},"LocationType":"FileSystem","MediaType":"Video"},"53d9f3785b69b6075e5da26a0b7d0be2":{"Name":"Next Gen","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"53d9f3785b69b6075e5da26a0b7d0be2","HasSubtitles":true,"Container":"mkv,webm","OfficialRating":"PG","ChannelId":null,"CommunityRating":7,"RunTimeTicks":63552319488,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"523777"},"VideoType":"VideoFile","ImageTags":{"Primary":"b48ce24a5b9856f4f98d9ea5c9403096"},"BackdropImageTags":["0c8a50eadc02575cfffdcbd9361000aa"],"ImageBlurHashes":{"Backdrop":{"0c8a50eadc02575cfffdcbd9361000aa":"NIEe[B9ZM_%KE2-mRja$%0WAa$%K0L-ot5RkxuD*"},"Primary":{"b48ce24a5b9856f4f98d9ea5c9403096":"dJFG6C?vIx%OC9j].SkX0vIU9YIo,2x[r=s;Q,Vt$~-;"}},"LocationType":"FileSystem","MediaType":"Video"},"53f1cb3b0893b8fb84104d3ce0deeeaf":{"Name":"Thor: Ragnarok","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"53f1cb3b0893b8fb84104d3ce0deeeaf","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-10-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":78307196928,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"284053"},"VideoType":"VideoFile","ImageTags":{"Primary":"95039940caffa5c87207945e041bdba7","Art":"9f5152c2c5a36ad2b40eec5bfd001c37","Banner":"606e9557f097a9b59cfd959ad05d84bc","Disc":"50faaeb05815bd582367b599d2fec061","Logo":"7c114b6b84bfe6bdccabb66850fdf853","Thumb":"03c8263e9c35e17a06ac506a3ba50055"},"BackdropImageTags":["a709b605efe8b49b03ee60fe1ad36b7d"],"ImageBlurHashes":{"Backdrop":{"a709b605efe8b49b03ee60fe1ad36b7d":"W54U~Jod4pXTxUZ#%LoKIpWFt3sl4UWW.7emW?tm4pWD?GskI[S%"},"Primary":{"95039940caffa5c87207945e041bdba7":"daHK?*$*xnxt|rr?nie.MeniN0Rkx[sDX5f*rtsmozof"},"Art":{"9f5152c2c5a36ad2b40eec5bfd001c37":"NZNmM.oy_KjF-qoJ?8NHS%of-;t6M_RmRojbags,"},"Banner":{"606e9557f097a9b59cfd959ad05d84bc":"H%J%Nq0nNwS5$}$~9g%JS4~RIHNdoLt4t5M*t5f%"},"Disc":{"50faaeb05815bd582367b599d2fec061":"eTJ@pjxD9]WBEQ.ioMIVbEa210t7D-NGxBQ;X8nmRjoxNxM|s.s.xr"},"Logo":{"7c114b6b84bfe6bdccabb66850fdf853":"OvPZouR.x^xZt2xas-%LWBogoeoJoff5~qocRPWDR-WBWC"},"Thumb":{"03c8263e9c35e17a06ac506a3ba50055":"NvI|28$iodxDoIa#}Ts+xFsAs:sm-7j?ocn$kBs,"}},"LocationType":"FileSystem","MediaType":"Video"},"54270e8c38a2569f23cda02c2498fd6a":{"Name":"Blackhat","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"54270e8c38a2569f23cda02c2498fd6a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2015-01-12T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.4,"RunTimeTicks":80140902400,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"201088"},"VideoType":"VideoFile","ImageTags":{"Primary":"df84c201ae99bb7b8d38165e2be90248","Art":"ff61c892f0941070a68e20afaa27aa89","Banner":"7c0af2fc6d69064cc32218a6f3635c76","Disc":"6ba7aca87297fddd3eeac65c46f1468c","Logo":"b3cf4b44ff11a18255737aa014f92ee4","Thumb":"e207002b85a47b4969725c6ec93089ef"},"BackdropImageTags":["30b2f53c73734c8e5be195305ec68837"],"ImageBlurHashes":{"Backdrop":{"30b2f53c73734c8e5be195305ec68837":"WBCsz84T?vF~vy-=IpMwWBpJITIp0Lx[Di%M4.xu_2Rkoz-;n$-:"},"Primary":{"df84c201ae99bb7b8d38165e2be90248":"dKA]KI$fS1oy=F$$tQIp}?s9SgS4-7e.bbRkbIRkW;NI"},"Art":{"ff61c892f0941070a68e20afaa27aa89":"N*OWytoL~qbaM{V@-:jZa#ozV@aexaoMWVayaxju"},"Banner":{"7c0af2fc6d69064cc32218a6f3635c76":"HeFE.IMewI-obYENNw?F0M=_nOs.xZW;IpNwxuIV"},"Disc":{"6ba7aca87297fddd3eeac65c46f1468c":"eVEC|DjZ_3kB-;tRWCoJWCay_Nj[?bj[IUoeaeoLj@az?bj@M{j]Rj"},"Logo":{"b3cf4b44ff11a18255737aa014f92ee4":"O~Ogc@ofjsofj[ofoLt7fkf6j[fQf6j[~paya}f6ayayay"},"Thumb":{"e207002b85a47b4969725c6ec93089ef":"NbFp{3=FOqIqnjxG}renS$IqWCoeSiIpoMNHS4kB"}},"LocationType":"FileSystem","MediaType":"Video"},"54d938ee8465fc7a101cbb8620c0d998":{"Name":"Ocean's Eleven","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"54d938ee8465fc7a101cbb8620c0d998","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2001-12-06T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":69942083584,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"161"},"VideoType":"VideoFile","ImageTags":{"Primary":"16834947992dab86c78a72a57618e9c1","Art":"6d4e330477b65ad1805f3ff0bb2ee3e1","Banner":"bf92af4ebcf3289852a77932ad5b044a","Disc":"3465270ec1f83b3760b2dd87f5fef9ce","Logo":"79ddf00bc0aef28ae08ee6c5de130650","Thumb":"6d074117e35e2d3288ef77cbc6ef3c66"},"BackdropImageTags":["79ddf00bc0aef28ae08ee6c5de130650"],"ImageBlurHashes":{"Backdrop":{"79ddf00bc0aef28ae08ee6c5de130650":"WGHvn+rs9wN_xu=_|[Egrr%0EM9v0M9^XSn#R*I;$*S$tRs.f,?F"},"Primary":{"16834947992dab86c78a72a57618e9c1":"dIFNr6tR9aw{B=R+wHNwGaNHE2xZ~V-URjNd-;xGM{WB"},"Art":{"6d4e330477b65ad1805f3ff0bb2ee3e1":"NcNTj@%L~qE1%gxt_3j]ozV@M{bH?bM{R*%MMxxu"},"Banner":{"bf92af4ebcf3289852a77932ad5b044a":"H~P5=,vgn5tQ%gyDRj-;oL~qR5V@ofozxuj?t7WB"},"Disc":{"3465270ec1f83b3760b2dd87f5fef9ce":"epLp,Vxu_NR*RjNGjFniozozS#R*tRaKt7%MW;o}aKRP%MRPj[tRRj"},"Logo":{"79ddf00bc0aef28ae08ee6c5de130650":"OQR{#?ofWBt7ayt7j[%MfQfQfQayayfQ~qofofayj[ayay"},"Thumb":{"6d074117e35e2d3288ef77cbc6ef3c66":"NaJP-@-;I=XSxt%0~Wx^smtQNxM|t-pIs:ofofRj"}},"LocationType":"FileSystem","MediaType":"Video"},"5681078e2ff72a854f988d105f909c88":{"Name":"Room 237","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5681078e2ff72a854f988d105f909c88","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-10-25T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":61827842048,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"84330"},"VideoType":"VideoFile","ImageTags":{"Primary":"7638612642cc7ad80ca1c4930ce2878b"},"BackdropImageTags":["67a3e2db6209866f33082b5b90633f04"],"ImageBlurHashes":{"Backdrop":{"67a3e2db6209866f33082b5b90633f04":"WJCZIo_NyC%go}%M^,t7InWUj]t8xvayR%oyoLoft7WUxtxuRjWB"},"Primary":{"7638612642cc7ad80ca1c4930ce2878b":"dCK7tV|^RP}T[C$%xXr=J8jFWYS6^1aeS$S$DkbbxaNH"}},"LocationType":"FileSystem","MediaType":"Video"},"5694c027ea982487e8e96b59ff0e691e":{"Name":"Mission: Impossible - Ghost Protocol","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5694c027ea982487e8e96b59ff0e691e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-12-06T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":79763628032,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"56292"},"VideoType":"VideoFile","ImageTags":{"Primary":"f3751008a4b87273bf21840dc8825d24"},"BackdropImageTags":["5c4cc3a2322de680cadc933012aa67c6"],"ImageBlurHashes":{"Backdrop":{"5c4cc3a2322de680cadc933012aa67c6":"W[J7v}xu%1%Kn$oI~Vogj@t6RjWB-:WBR*bGRQaextaejroeV@s:"},"Primary":{"f3751008a4b87273bf21840dc8825d24":"duIz@axZw]%L~Sn~sms.~Us.NGt7?Gn$RjW=t6RjafR+"}},"LocationType":"FileSystem","MediaType":"Video"},"578219f3d5ca50c845eb671fc82c57ba":{"Name":"The Core","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"578219f3d5ca50c845eb671fc82c57ba","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-03-27T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.7,"RunTimeTicks":80977600512,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9341"},"VideoType":"VideoFile","ImageTags":{"Primary":"49c6a6c6a0cb262c685ce80e5759d222","Art":"4f4cede021dec7d8f0f104d4442424ea","Banner":"c9da6676dea89bb7c25c4b525b13392a","Disc":"974af24723306ce42af04536428c3b13","Logo":"23bbfe78e0018c2c4437fbfc06a1de5d","Thumb":"cdf578927a835c505a17382050d93abd"},"BackdropImageTags":["e26037173cd34f837dd0bf79f113ce45"],"ImageBlurHashes":{"Backdrop":{"e26037173cd34f837dd0bf79f113ce45":"WZDj-q;KElJCeSTK,@s9N_S2jFkC1IEk$zt6W=wIE%NaxFs:WUoL"},"Primary":{"49c6a6c6a0cb262c685ce80e5759d222":"dmIpPL%10hM}ksofNeR-o#flt7s:w4f7kCj[9_R+oaW."},"Art":{"4f4cede021dec7d8f0f104d4442424ea":"N~MQ*Lax~qoz%2t7o#j[adWVofj@o#fPe-fkWEj?"},"Banner":{"c9da6676dea89bb7c25c4b525b13392a":"H.J5.4}SxFNfIV#=sAR*kC-VwIj[X9NGX9j?WBbu"},"Disc":{"974af24723306ce42af04536428c3b13":"ebI576#P_NS$%fwHr?tRSLNH.SJC%LoJsmJ6N_nls:jY?boyngsTIV"},"Logo":{"23bbfe78e0018c2c4437fbfc06a1de5d":"OQPXm-VW8=DP%hMK%z-}jDRrR6o}MztQvqofkjoMX4X9Vu"},"Thumb":{"cdf578927a835c505a17382050d93abd":"NuG%x[:%JXV?t7Net5jGW=Wnbbax0#JCxoX8Rkt6"}},"LocationType":"FileSystem","MediaType":"Video"},"578c64ac6445d2721c10bc743a52edfc":{"Name":"Spider-Man 3","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"578c64ac6445d2721c10bc743a52edfc","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-04-30T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":83513393152,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"559"},"VideoType":"VideoFile","ImageTags":{"Primary":"7d07cd4faf65e2d892e62d4af734d31f","Art":"8277b3522c4034eccc52d16b505f34e2","Banner":"b7ac1b26056776f3ec19cbcde03a5b2e","Disc":"9d772921996eb844403efe67f13ed275","Logo":"da787d08cdf603f2da06e3377963b95b","Thumb":"fccb763753742d90f23ce0ec9526515b"},"BackdropImageTags":["8c0a454f2245a4d3981bfd485b762150"],"ImageBlurHashes":{"Backdrop":{"8c0a454f2245a4d3981bfd485b762150":"WNDSROtR-:}@R+?GI]I=E2S5oza$NH%2M{NaxuM|-pNbslxFS~t5"},"Primary":{"7d07cd4faf65e2d892e62d4af734d31f":"dHD,4h9ZyD^+_Nt7xuxv9txtMdkWIpV?IUbH9Faet7M{"},"Art":{"8277b3522c4034eccc52d16b505f34e2":"NdQvtJ00WC_3_3-;-;xuj]NGM{M{%Mxut7offRWB"},"Banner":{"b7ac1b26056776f3ec19cbcde03a5b2e":"HHAdN7~Xxa?Gs-Dis:xuIU_4-pxa-oxtRPt6xuRi"},"Disc":{"9d772921996eb844403efe67f13ed275":"eZJ%kL$|?]axyE%0jsWYWCWV.9Iq%ha}nPi^WES$oen$.7xDsTX7M_"},"Logo":{"da787d08cdf603f2da06e3377963b95b":"OSSF;Lt7j[ofj[t7of%MfQfQj[fQfQf6~qayayj[ayfQWB"},"Thumb":{"fccb763753742d90f23ce0ec9526515b":"NPEolR9F~Vxabbx[?bVr%2xtofxuJC={ofV?%1j["}},"LocationType":"FileSystem","MediaType":"Video"},"5794d6ccba630463d48f4bedd85e9652":{"Name":"Treasure Planet","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5794d6ccba630463d48f4bedd85e9652","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-11-25T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":57238818816,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9016"},"VideoType":"VideoFile","ImageTags":{"Primary":"14e4d2c47756d1c5bcdea10c056caefb","Art":"40d802e6ea43e54876d435fb0bf6c7a5","Banner":"61647572a7a791c3501feb44b7b3b154","Disc":"f59c007419d336f1eff61f5fa2c738e9","Logo":"57813187c7677e4099f6edbd24cb512d","Thumb":"3012294ff587d3e9d62f6f97eaedb3b5"},"BackdropImageTags":["27f6ccfb61a3497fb0dcc9faa66ec339"],"ImageBlurHashes":{"Backdrop":{"27f6ccfb61a3497fb0dcc9faa66ec339":"WkKwCPNG57t9RQxa~qa0M{WTof%2?aRiV@afWFt7-;RPn$t8azba"},"Primary":{"14e4d2c47756d1c5bcdea10c056caefb":"dEEL:H:}9a%N^-rWx]wH75-5}?XSI8x]tSvg-PRiERt9"},"Art":{"40d802e6ea43e54876d435fb0bf6c7a5":"NFDIqMgf_4%M?v-oTK-US%t6$yo#T0%MxtXU%1WU"},"Banner":{"61647572a7a791c3501feb44b7b3b154":"HVF#F1Orn3MxjWxvJow@M~~DOYn#$Ls*NeI;S0of"},"Disc":{"f59c007419d336f1eff61f5fa2c738e9":"edKBH|Rixvg4tl-pV@NabcjY.Tr=-nS4smW9ozjZRjkCogX9ofafNG"},"Logo":{"57813187c7677e4099f6edbd24cb512d":"ORHxc?xt_3WC?wX9_4-:oeocj?WCj@WCx[xaxbWBobayWB"},"Thumb":{"3012294ff587d3e9d62f6f97eaedb3b5":"NIBMMu-PD*EMa{bb?drpM_WVSgSPO^xUskxCS0NI"}},"LocationType":"FileSystem","MediaType":"Video"},"57aa9c59e54647b4208138cc1bee719f":{"Name":"Iblard Time","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"57aa9c59e54647b4208138cc1bee719f","Container":"mkv,webm","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":18149761024,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"21534"},"VideoType":"VideoFile","ImageTags":{"Primary":"707ec69f87522c02e411117b312fa4f0"},"BackdropImageTags":["c118c591602bd50f35bbb2eba5d87468"],"ImageBlurHashes":{"Backdrop":{"c118c591602bd50f35bbb2eba5d87468":"WlFGLjxvkWS6Rkx]%%ofa#t8aejYRoWBWAogaxWBtSj[a}j]f6og"},"Primary":{"707ec69f87522c02e411117b312fa4f0":"dYE.-M?wtmxv?IxuoLn$o#ofV@obS$S5jaoLbwW.WBoL"}},"LocationType":"FileSystem","MediaType":"Video"},"5864e3075c9fbe18266973a5e063d761":{"Name":"Equilibrium","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5864e3075c9fbe18266973a5e063d761","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2002-12-05T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7,"RunTimeTicks":64224161792,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7299"},"VideoType":"VideoFile","ImageTags":{"Primary":"48149a4059adcccd1ea401db3f7e0f44"},"BackdropImageTags":["506e6f39abf218a7883f1afd97a6d334"],"ImageBlurHashes":{"Backdrop":{"506e6f39abf218a7883f1afd97a6d334":"WMBWfJ-=H;R4NI?H=@xZXASiae$*NGNGogt6V@Rko#M{M_adNGj["},"Primary":{"48149a4059adcccd1ea401db3f7e0f44":"dH68z7o#I8axr;ofS5V@H;V?tSW=OtWBsoo~R,X9s:n#"}},"LocationType":"FileSystem","MediaType":"Video"},"59bd4c399c53f3ba407656d0598dec21":{"Name":"Ghost in the Shell","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"59bd4c399c53f3ba407656d0598dec21","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-03-28T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":64167260160,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"315837"},"VideoType":"VideoFile","ImageTags":{"Primary":"5463dfebf72997d57fad4eadf709d9c0","Art":"66e5e558c41c637b6a8152ad232962ad","Banner":"926d5ec869a076c11a02706e5f3b29a8","Disc":"f6e90ef029d12b3a7d2fd159f90d13ef","Logo":"35022e68d0b7d505b43ec6d908343a3c","Thumb":"1f2aba7d77163e1e768279ca327d3b13"},"BackdropImageTags":["12d9169ef773b206503f91687d88023c"],"ImageBlurHashes":{"Backdrop":{"12d9169ef773b206503f91687d88023c":"WnNA;y?H_N%fDi-=_3WBtRj]NFjFkBM|R-ogM{Rj%gWVbItRs:WB"},"Primary":{"5463dfebf72997d57fad4eadf709d9c0":"dDF}a5F9vA%3yrqy4-Tf9K56^l.AU#o[?I=h4.-qM^N4"},"Art":{"66e5e558c41c637b6a8152ad232962ad":"NdKLwDMd~V%#-4s+-=Rk?bt7xtWBMxoeIUR+Rkof"},"Banner":{"926d5ec869a076c11a02706e5f3b29a8":"H~N^rORPt8?b%M%gNFtRs:~qRQRjt7tRxuozkBax"},"Disc":{"f6e90ef029d12b3a7d2fd159f90d13ef":"eZH3E$.A?ZMvxVs:aeoeWBV@%JMw-:o#WWjXW=o#aead?GadM{o#R*"},"Logo":{"35022e68d0b7d505b43ec6d908343a3c":"OBS$ovxuM{t7D%xuRj?bfQayj[ayj[ay~qj[t7of%Mayof"},"Thumb":{"1f2aba7d77163e1e768279ca327d3b13":"NoMkIp=}_M%eDj-=_2a#tRbIM{jYkVNGR.t8IoRi"}},"LocationType":"FileSystem","MediaType":"Video"},"59dcbc573f13882997e3863c7bf1325b":{"Name":"Brave Story","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"59dcbc573f13882997e3863c7bf1325b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-05-21T22:00:00.0000000Z","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":67217281024,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"17566"},"VideoType":"VideoFile","ImageTags":{"Primary":"b371f67ed46e0c5f053b203c14c0bd6e"},"BackdropImageTags":["adfe0739fef6dcf5e858800878870278"],"ImageBlurHashes":{"Backdrop":{"adfe0739fef6dcf5e858800878870278":"WfI~3aSnpHyUS%-S~nIwozxpt2xWs%W,t6xV-ORPxqxtt7xsxpWA"},"Primary":{"b371f67ed46e0c5f053b203c14c0bd6e":"dLF~R8.AK*~9?JWsOU%L4-id-MIU$dr?oFE0-%xtWlxt"}},"LocationType":"FileSystem","MediaType":"Video"},"59fa5a5eaedda9a5dec635497834b00f":{"Name":"The Circle","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"59fa5a5eaedda9a5dec635497834b00f","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2017-04-26T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.5,"RunTimeTicks":65871781888,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"339988"},"VideoType":"VideoFile","ImageTags":{"Primary":"e826abef95450fa2ba37b8edbdfa11dd"},"BackdropImageTags":["ac4f6cf82a6a3d8c09f9878f684ed72c"],"ImageBlurHashes":{"Backdrop":{"ac4f6cf82a6a3d8c09f9878f684ed72c":"WWLMksDg.mVt%f?a~q8_WVxtMwx[%gRPWB%gVstQ^*RjNatRt6xY"},"Primary":{"e826abef95450fa2ba37b8edbdfa11dd":"dfLpgjITyXw|?GxZofj[D%9FW:jYr=RPflWB_NoMae%g"}},"LocationType":"FileSystem","MediaType":"Video"},"5b664658e07de23520814af3e9e5c148":{"Name":"Interstellar","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5b664658e07de23520814af3e9e5c148","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-11-04T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":101439356928,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"157336"},"VideoType":"VideoFile","ImageTags":{"Primary":"6c8fd7b5f23882e91a8e7234babd09fb","Art":"6f8ffa4b809699ebb1ad3a69f237a5e7","Banner":"5d4793a7d5b13777e3e0c6e04e810cd3","Disc":"904b3cd0ad8c9d1e3482e730c7f678cc","Logo":"a92d747800af55e3664fdcc048250c03","Thumb":"62a332a32c629036bd7d3c5b5e85d7c6"},"BackdropImageTags":["b4b575f584e99b40957de0c1d4b70918"],"ImageBlurHashes":{"Backdrop":{"b4b575f584e99b40957de0c1d4b70918":"WtIER*^kxD%2%2%MWBt7t6WBWVWB0KIVn%RjRQRPxuRkRjs:ofof"},"Primary":{"6c8fd7b5f23882e91a8e7234babd09fb":"d#I=#{%Mofx]_Nt7ofozM_aeayayR*ofWCWBW=ofWBRj"},"Art":{"6f8ffa4b809699ebb1ad3a69f237a5e7":"NSHB}Tab?doK-;t9ivkX-pa$Rjaf?F%NIAoet8oJ"},"Banner":{"5d4793a7d5b13777e3e0c6e04e810cd3":"H%EfsT%MjFWCNGt8kCjZM{_N%foLRkR%ozkCaxRj"},"Disc":{"904b3cd0ad8c9d1e3482e730c7f678cc":"eNI#u+s+%hofx^~9ofD*RkW=~WWB%NWBR*X9M{IUa}xtkXt7IoRjs."},"Logo":{"a92d747800af55e3664fdcc048250c03":"O$LqkTRjt7ogt7j]j[t7t7ofWBfPj[j@~qt7RjofV@j[ay"},"Thumb":{"62a332a32c629036bd7d3c5b5e85d7c6":"NaMkY0.8.8%gD%%M_NWBoga}RjWBxtt7Rjofofj?"}},"LocationType":"FileSystem","MediaType":"Video"},"5bcd8ad2e9dec7c08b249cd640b7a78b":{"Name":"Hellboy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5bcd8ad2e9dec7c08b249cd640b7a78b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2019-04-09T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.5,"RunTimeTicks":72603951104,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"456740"},"VideoType":"VideoFile","ImageTags":{"Primary":"a6739e80ec081a088466f20b7faab015"},"BackdropImageTags":["7d7a0171c2cf82bf2984d227a8a31d16"],"ImageBlurHashes":{"Backdrop":{"7d7a0171c2cf82bf2984d227a8a31d16":"W896p~Ef1|-CF1%f?IjEOEWrOEtRAErqweNuaKX9,;NGNu$jVsof"},"Primary":{"a6739e80ec081a088466f20b7faab015":"dqJ}na}pk9-7#paOI?RmJ9S3kAOVR+sBs-X7R+n*n*f8"}},"LocationType":"FileSystem","MediaType":"Video"},"5d16cf9d8652877c5676418a8dd694c1":{"Name":"The Iron Giant","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5d16cf9d8652877c5676418a8dd694c1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1999-08-05T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":53985599488,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10386"},"VideoType":"VideoFile","ImageTags":{"Primary":"d424666c1b7c97c43a94244990b9bf0b"},"BackdropImageTags":["d9e7c0e15934dca428e3e731fd5686f9"],"ImageBlurHashes":{"Backdrop":{"d9e7c0e15934dca428e3e731fd5686f9":"W65Y7_E2IU^*E2X9%%j]jZkCj]oz9a%M%29t%2s.aJbHbIofaeax"},"Primary":{"d424666c1b7c97c43a94244990b9bf0b":"dPEVpOR.t8jE_N?HofIUSj-:RkRko#WEoJozM|t6oeWC"}},"LocationType":"FileSystem","MediaType":"Video"},"5d2a2ff3f82c5d7ccfa7c39444ce3487":{"Name":"Riddick","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5d2a2ff3f82c5d7ccfa7c39444ce3487","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2013-09-01T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":76075941888,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"87421"},"VideoType":"VideoFile","ImageTags":{"Primary":"c42f0d8d23a64efa41cbf666d4346d52"},"BackdropImageTags":["bc41335536d499fc9297e61d650e94b9"],"ImageBlurHashes":{"Backdrop":{"bc41335536d499fc9297e61d650e94b9":"WiJGcVt7-7sSM|sV}=n$VtsSNJjaM}xaIqRkbbflIpWCNHR+t6of"},"Primary":{"c42f0d8d23a64efa41cbf666d4346d52":"dkG*4k^j-U$%~A%LxZs,%0s.WBWB={%0M|V@xtt6R*jF"}},"LocationType":"FileSystem","MediaType":"Video"},"5d2f6ff00e8e2798c7826518c1c914a7":{"Name":"Constantine: City of Demons - The Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5d2f6ff00e8e2798c7826518c1c914a7","HasSubtitles":true,"Container":"mkv,webm","OfficialRating":"R","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":54093758464,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"539517"},"VideoType":"VideoFile","ImageTags":{"Primary":"2065171497dded6cb088dc14306b5dad","Banner":"dfc1d79594e5aabedd936c359e150031","Disc":"db719e3684d531e1fdda1235276ed160","Logo":"2a5064ac9c72295e85665e1183aeeb18","Thumb":"63e49926082d6a0e9e4bfcf4d2d91e1a"},"BackdropImageTags":["db719e3684d531e1fdda1235276ed160"],"ImageBlurHashes":{"Backdrop":{"db719e3684d531e1fdda1235276ed160":"WD6[aTjF8^tS%hM{RPj]t7RiNGtRITWV%NjFR5t8x]WBM{t7s.WB"},"Primary":{"2065171497dded6cb088dc14306b5dad":"dQGaFF5TwL-T,BE1ShtR0zxsI:IoIp%M$*aLITahxZt7"},"Banner":{"dfc1d79594e5aabedd936c359e150031":"HfJG+%VD0fT1D%?HX8Dixt}@xGE1Ndoet7X8ROxu"},"Disc":{"db719e3684d531e1fdda1235276ed160":"eOIpr9ES5k}?9u-PE1NH%fX8FdxpBO9u#kIq%1xaRmt7ovjHRjoyxb"},"Logo":{"2a5064ac9c72295e85665e1183aeeb18":"O:Iq.TjZkCoLbbkCoLWAj[f6j[j[ayj[_NkCjFa|jZf6ay"},"Thumb":{"63e49926082d6a0e9e4bfcf4d2d91e1a":"NqJZPZ0ft7xuIB%Mw|NZI;bas.oLr?aybbt6o2R*"}},"LocationType":"FileSystem","MediaType":"Video"},"5fbcb4ac9003f19a28de5ff17e4c9ee4":{"Name":"Ip Man: The Final Fight","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5fbcb4ac9003f19a28de5ff17e4c9ee4","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2013-03-21T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":60272209920,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"182127"},"VideoType":"VideoFile","ImageTags":{"Primary":"e242a99416a733fd48b5eae27826e6b7"},"BackdropImageTags":["0973ef7b44757d7286496b248a8ba037"],"ImageBlurHashes":{"Backdrop":{"0973ef7b44757d7286496b248a8ba037":"WGF#UI0fV@v~56Rk}@?a9GV@jFsmE2j[aKbH%L-UoLM{%1-okWE2"},"Primary":{"e242a99416a733fd48b5eae27826e6b7":"dgE|C-My4ot7_NaeIUWBIUtQt7RjD%t7t7bGR*ofoLWA"}},"LocationType":"FileSystem","MediaType":"Video"},"604350f2de6dfea9167036237edc3cbb":{"Name":"The Lego Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"604350f2de6dfea9167036237edc3cbb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-02-05T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":60353282048,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"137106"},"VideoType":"VideoFile","ImageTags":{"Primary":"440e688711dbc2f88174602b2a80ad90","Art":"34cd3fbe5233186e902e2188903776fd","Banner":"d993f28ba69d8b64c0a6844b974994e0","Disc":"48a4909a9ec73d943797a3e9c0cecc79","Logo":"870526b5f595ca6464179c5a5afbb5be","Thumb":"7a4f9640ebae38b87ddfe2c343ad6e34"},"BackdropImageTags":["64cbde6fce2f7b51930e6df8ec529760"],"ImageBlurHashes":{"Backdrop":{"64cbde6fce2f7b51930e6df8ec529760":"WjHKIR%19uS5oJwJ~BxZIVWCSzWBXOn%M|e:ShNa%1aeR+kCWXR*"},"Primary":{"440e688711dbc2f88174602b2a80ad90":"d@HB_ctRI[o#pfW?X9kDE7R+xtayrro0s.afWZjaV@WV"},"Art":{"34cd3fbe5233186e902e2188903776fd":"NGDb=]~W0f0K4.S~_2Na9Za0xZtl9ZM|M{oe-p$*"},"Banner":{"d993f28ba69d8b64c0a6844b974994e0":"H~P?m-RjRj%gtRn%t7%2kW~qj?WBofozjZflt7kC"},"Disc":{"48a4909a9ec73d943797a3e9c0cecc79":"eQMjRSkC.mni#P_0nhWCS5Me?ZRP%foxWEZnkCJ:V[s7W;oM%LX9M|"},"Logo":{"870526b5f595ca6464179c5a5afbb5be":"O-O|CLkW_NnixaofMxjFWBkVt7oLWBWBx]n%RPX8WBe:of"},"Thumb":{"7a4f9640ebae38b87ddfe2c343ad6e34":"NXQS;$xayD?b?b_N?Hx]x^nismoz_3tRWEn%RPs:"}},"LocationType":"FileSystem","MediaType":"Video"},"605d9c863a9d549f1aa41f503b5705ee":{"Name":"Kick-Ass","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"605d9c863a9d549f1aa41f503b5705ee","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-03-21T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":70675202048,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"23483"},"VideoType":"VideoFile","ImageTags":{"Primary":"c5ea7fdb856668b953e7f4622f9fc0ad"},"BackdropImageTags":["a8f287cff0c0d3ea25f027cf00c94e05"],"ImageBlurHashes":{"Backdrop":{"a8f287cff0c0d3ea25f027cf00c94e05":"W78px_t+57#G#,rn}skBNZ%1xtM{#XaLot%0o#Ip^%t4IoaQaMXL"},"Primary":{"c5ea7fdb856668b953e7f4622f9fc0ad":"dJEU_B~2xV%MK{O;kBsB4{t6xsS#R*xan%V[^txsNLNG"}},"LocationType":"FileSystem","MediaType":"Video"},"6160bf373387d9ee66730a935dcecf2e":{"Name":"Fahrenheit 451","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6160bf373387d9ee66730a935dcecf2e","Container":"mov,mp4,m4a,3gp,3g2,mj2","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.4,"RunTimeTicks":60205649920,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"401905"},"VideoType":"VideoFile","ImageTags":{"Primary":"fcc9fc1faf286a2e47f0a61ab7ce23ff"},"BackdropImageTags":["37dfecaa12775fcb3d5ac230274681d3"],"ImageBlurHashes":{"Backdrop":{"37dfecaa12775fcb3d5ac230274681d3":"WO7L}^m%xoyFnfxu%%ninLtToMr=tUnNVXo#a1entStRa0t7ogi|"},"Primary":{"fcc9fc1faf286a2e47f0a61ab7ce23ff":"dKEd|^-oyDx]zqt6s.jF02E2DjRP~BIoS~kCxt%M-:s:"}},"LocationType":"FileSystem","MediaType":"Video"},"624f50c66425834f854c7aae4489ef8b":{"Name":"Life of Brian","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"624f50c66425834f854c7aae4489ef8b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1979-08-16T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":56236802048,"ProductionYear":1979,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"583"},"VideoType":"VideoFile","ImageTags":{"Primary":"f1e9b124f207d42dde3d2e52b8e1ff4e"},"BackdropImageTags":["8fea54b0240941c81339bee9f30d202d"],"ImageBlurHashes":{"Backdrop":{"8fea54b0240941c81339bee9f30d202d":"WPBWY+RjR*%MkBxu~qt6Rjxus:xu-;xuWBbHxut7%MtQj[Rjxujs"},"Primary":{"f1e9b124f207d42dde3d2e52b8e1ff4e":"dhJZeWaj5A$}IoeoI[bE15Xk${Rlr]NLxrj?Rj$gw|ox"}},"LocationType":"FileSystem","MediaType":"Video"},"6293b60e79f20bd88b16cc4b364afa1f":{"Name":"Tales from Earthsea","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6293b60e79f20bd88b16cc4b364afa1f","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2006-07-28T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":69327355904,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"37933"},"VideoType":"VideoFile","ImageTags":{"Primary":"3bae46cdfd20fe3d6580dd468ca34a34","Art":"afa2ab4c770abfb244007ba632ecfc20","Banner":"383c1b0a0e50f02fc9504f93e7f2eac4","Disc":"1acc9c4e614f94c25348188525b7a4e9","Logo":"8285cfb7d20f640d98adb84b5d53d481","Thumb":"c70156f743a404098edb2a02ed89ffc2"},"BackdropImageTags":["a24fb5a2eadbc63ab29316451bd8bbbe"],"ImageBlurHashes":{"Backdrop":{"a24fb5a2eadbc63ab29316451bd8bbbe":"WoL3MB};IqSh-Ss.}?$#jZW;oet5EkNIs,juRlt5-ns.M}sooea}"},"Primary":{"3bae46cdfd20fe3d6580dd468ca34a34":"d$J%p+~8xVs:-9xDt6oLR-NKR-W;-TxZS4R-w]aeR+j["},"Art":{"afa2ab4c770abfb244007ba632ecfc20":"NZLO4n~p^,01_2RQt9RkfjRioMWV9EIURj%2WVRj"},"Banner":{"383c1b0a0e50f02fc9504f93e7f2eac4":"HvI{Z%wJ0$flxrkVM}NHox^Pn$Iqa~f*s:afR+oe"},"Disc":{"1acc9c4e614f94c25348188525b7a4e9":"eCOWyvIA~qxut7M_WB%MWBof_N%MRkM{t6s:aeazofRk?bIUoetRIU"},"Logo":{"8285cfb7d20f640d98adb84b5d53d481":"ONSF-Dt7WBxuWBxuM{%Mj[ayayj[fQay~qfQofRjofWBt7"},"Thumb":{"c70156f743a404098edb2a02ed89ffc2":"NbK8edj?59xHs*s.}@r?EMt7WAayTJR*$fbvM|nj"}},"LocationType":"FileSystem","MediaType":"Video"},"629e9ca901ead719a507e987ae50e7c1":{"Name":"World of Tomorrow Episode Three: The Absent Destinations of David Prime","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"629e9ca901ead719a507e987ae50e7c1","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":20584740864,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"729775"},"VideoType":"VideoFile","ImageTags":{"Primary":"5c1b56882461c3eedc3e5ba7d77e40f7"},"BackdropImageTags":["b42a2ed66df5903ae6d43de17459d744","498ff117978c4e176081ecdc6fff65a8"],"ImageBlurHashes":{"Backdrop":{"b42a2ed66df5903ae6d43de17459d744":"W.LE8DM$M}tRkWxu~RV[WBt5X7ox~PsSaff$kUt6-oxaa#f+oxkB","498ff117978c4e176081ecdc6fff65a8":"W.LE8DM$M}tRkWxu~RV[WBt5X7ox~PsSaff$kUt6-oxaa#f+oxkB"},"Primary":{"5c1b56882461c3eedc3e5ba7d77e40f7":"drQHO7-P-h--}-xWOUocRWR:R8M|r^s:#;sTobV]S0WC"}},"LocationType":"FileSystem","MediaType":"Video"},"634075963b99e3b20afa09be75e9d7b8":{"Name":"Coraline","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"634075963b99e3b20afa09be75e9d7b8","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-02-04T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":60362129408,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"14836"},"VideoType":"VideoFile","ImageTags":{"Primary":"7f5a710681910d43752f184d728cef88","Art":"748803365d54c50e986f5b3cb3a4c33d","Banner":"370a8fe0a69fa5ab303503f038eec285","Disc":"6f574154403c1a964bc08a965f608062","Logo":"8cd7ef8c2e4f2970096045844cd5817a","Thumb":"9dc563e5268f1ad7d57c2cacabb5aee6"},"BackdropImageTags":["6f574154403c1a964bc08a965f608062"],"ImageBlurHashes":{"Backdrop":{"6f574154403c1a964bc08a965f608062":"NRD00y~Vo#Ir4=9aoaM|WCt6WEt69H9HM{xW%1-."},"Primary":{"7f5a710681910d43752f184d728cef88":"dnE{;F%hIro$%Mt7WEa~4TRis+RPIqa#n$WA%3afkCt6"},"Art":{"748803365d54c50e986f5b3cb3a4c33d":"N89jZ9TVwNtQNe-W04D+%LV[WUxs9GE2t6RjIVe."},"Banner":{"370a8fe0a69fa5ab303503f038eec285":"HVD03.~n-.?a-:xvNLE3NJ^%%Kxa%2ofozWrM|R-"},"Disc":{"6f574154403c1a964bc08a965f608062":"eTHCWb9E~q-=xuRNogo#V@kC-p-;^*D%xt%NM{axt7ae_3IVa}xtD%"},"Logo":{"8cd7ef8c2e4f2970096045844cd5817a":"OGB:vW--Rk%Ma*M|a$9Kogofxtt5Rjxt03WFoeRjRiRjRj"},"Thumb":{"9dc563e5268f1ad7d57c2cacabb5aee6":"NWFFv;MIxoghr:-:?d9FxtNHIUkBtTWAocNGR%Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"638dd77b3ce465fb6d7fab22584964af":{"Name":"The Hunger Games: Mockingjay - Part 1","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"638dd77b3ce465fb6d7fab22584964af","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-11-18T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":73704316928,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"131631"},"VideoType":"VideoFile","ImageTags":{"Primary":"1244fb2c5678167f7d29f995a3814138","Art":"89c318dfb6a24e012f4036492157f0ec","Banner":"afc02e6d6a26983e2a27916050feaad4","Disc":"3476410950031316ecc75b818fae4438","Logo":"3ec2ef6f7551dddd7f46d164fa978c92","Thumb":"c7468a8c5de359a7df06770a7fac5b86"},"BackdropImageTags":["20984593d3696f7500f954a786c3b7d7"],"ImageBlurHashes":{"Backdrop":{"20984593d3696f7500f954a786c3b7d7":"W45qO@cZBo}AE10z}sOYF1=HRjEM4.ITV?Nd%2%20zn4,CAGxu=y"},"Primary":{"1244fb2c5678167f7d29f995a3814138":"dPC#Ycs.nj-A}qt6WCsm-Ts:I=R+=wfRNbWW$hs.jaR+"},"Art":{"89c318dfb6a24e012f4036492157f0ec":"NJH,Os1059buWC-TFx$ixWnl$$I;xssoNHs-WqNH"},"Banner":{"afc02e6d6a26983e2a27916050feaad4":"HQCEwKxF5SWCE#Eh-T%0NH}rs.I;n%NbNwxEoeR+"},"Disc":{"3476410950031316ecc75b818fae4438":"eSKw2yI:PC-U?b-:NGjEs.bI_Ns.%$R+ROI;oft7aeR*%ht6V@WCIn"},"Logo":{"3ec2ef6f7551dddd7f46d164fa978c92":"OxN]trs:.mbHslt7RQ-pf6tRbHaxf6ae?vjtxaWBRPj]Rj"},"Thumb":{"c7468a8c5de359a7df06770a7fac5b86":"NREwU2xG#T,;jbaL}=kBNHsmoMjZ=_W;NHaySOWC"}},"LocationType":"FileSystem","MediaType":"Video"},"640f6e76e4d731572a134a535f4b70c6":{"Name":"Fantastic Beasts: The Crimes of Grindelwald","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"640f6e76e4d731572a134a535f4b70c6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-11-13T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":80301228032,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"338952"},"VideoType":"VideoFile","ImageTags":{"Primary":"1d1c3317e1ccce6eaf3911865223aa44"},"BackdropImageTags":["08a45f81a02863c6599dcb41a95c5bd4"],"ImageBlurHashes":{"Backdrop":{"08a45f81a02863c6599dcb41a95c5bd4":"W94x=AtTRiaef,og%%o~V@nhofkDpKXTRPaJoIo#p0o~RjRioJog"},"Primary":{"1d1c3317e1ccce6eaf3911865223aa44":"d~KBdot7xuxv~qogt7t7tRayNGayRjayR*WBt7ofofj["}},"LocationType":"FileSystem","MediaType":"Video"},"6441e7710ca9e64e2337bb01888022d1":{"Name":"Jurassic World","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6441e7710ca9e64e2337bb01888022d1","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2015-06-05T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":74611728384,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"135397"},"VideoType":"VideoFile","ImageTags":{"Primary":"ef65d13bd07c4ce14ff99233e1029324","Art":"6bde71779b5af0c14186a7fd32b53ce8","Banner":"c588457c132556e44b070735523b69de","Disc":"1d13c32395ee590142c62cf93c79ad39","Logo":"d250bd046d8ab5203dc127cfee169d4c","Thumb":"a464a10aedba2cd5b9ebfacaf337a73e"},"BackdropImageTags":["1d13c32395ee590142c62cf93c79ad39"],"ImageBlurHashes":{"Backdrop":{"1d13c32395ee590142c62cf93c79ad39":"WF7nRN?axv%M%2xt~p?axv%L%1xt^*-;xvxu%1t7?a-:t8t7%1t6"},"Primary":{"ef65d13bd07c4ce14ff99233e1029324":"dRB4UUI9WV%N?wRORjx]kWV@V@ozx]RjWAoft7bHM_tR"},"Art":{"6bde71779b5af0c14186a7fd32b53ce8":"NND0P-bbxZxaM{xa_NxtRjWBWBRjs;ofM{WBofRj"},"Banner":{"c588457c132556e44b070735523b69de":"HD7L1Ix]8^MdV?Rj.8%hIA%hozMxRPWAbIx]t8Mx"},"Disc":{"1d13c32395ee590142c62cf93c79ad39":"eSH{NAfh%3t7-;?IM{I-ofsp_MWA=~jbM{VtoftQofjbx[t7sEogRj"},"Logo":{"d250bd046d8ab5203dc127cfee169d4c":"O~Mj?oof~qayxuj[IUt7j[WBayayfQj@oLj[ayayayj[j["},"Thumb":{"a464a10aedba2cd5b9ebfacaf337a73e":"NK9HhPH=x]ofD$x^?wR5j[o#IAx]NHV@Rio#RPtR"}},"LocationType":"FileSystem","MediaType":"Video"},"64fcab04dd0c842d8649618a62f6f40d":{"Name":"Puella Magi Madoka Magica the Movie Part II: Eternal","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"64fcab04dd0c842d8649618a62f6f40d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-10-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":66626560000,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"152044"},"VideoType":"VideoFile","ImageTags":{"Primary":"c32a5caf3d3a45f84c9af866ad4adc51"},"BackdropImageTags":["ad53ec21aaacb4f9557f17b121ddaa82"],"ImageBlurHashes":{"Backdrop":{"ad53ec21aaacb4f9557f17b121ddaa82":"WUHed[xuNG%L4nt7-qj[WVofafj[00WBM_RjxuM{t7j[M{j[kCjt"},"Primary":{"c32a5caf3d3a45f84c9af866ad4adc51":"dPF5gTNGE2-o0LRjjIWUI-t6%MIpRRspRPV[-.t7WWof"}},"LocationType":"FileSystem","MediaType":"Video"},"6541cbd81b61f5c9b7df45e8510ed49e":{"Name":"World of Tomorrow Episode Two: The Burden of Other People's Thoughts","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6541cbd81b61f5c9b7df45e8510ed49e","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":13586339840,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"471495"},"VideoType":"VideoFile","ImageTags":{"Primary":"d6e11d5e8b220b3118fcb8ed91383f67"},"BackdropImageTags":["f5b7cd156620c1a1cc4d906858f3e5eb","9b6065a2047eabcd7219e178c525113c"],"ImageBlurHashes":{"Backdrop":{"f5b7cd156620c1a1cc4d906858f3e5eb":"W767vmAlIo:}5hxJw@ImnLxxpM$,tPtDm~Ioj^wakaWQnlWTo%xc","9b6065a2047eabcd7219e178c525113c":"W767vmAlIo:}5hxJw@ImnLxxpM$,tPtDm~Ioj^wakaWQnlWTo%xc"},"Primary":{"d6e11d5e8b220b3118fcb8ed91383f67":"dSP=g4^+-Y^m{-xHfgf5PANGS]tO^dRin.$+tjoysCNG"}},"LocationType":"FileSystem","MediaType":"Video"},"657ebc67a758c87f7927351a0cc29786":{"Name":"The Kangaroo Chronicles","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"657ebc67a758c87f7927351a0cc29786","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2020-03-04T23:00:00.0000000Z","ChannelId":null,"CommunityRating":5.9,"RunTimeTicks":55250001920,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"639564"},"VideoType":"VideoFile","ImageTags":{"Primary":"5405e5b859a6a9ba5c4c0fefdba03a23"},"BackdropImageTags":["c6d25ca75c1b917e5824a1a7deb0a53d"],"ImageBlurHashes":{"Backdrop":{"c6d25ca75c1b917e5824a1a7deb0a53d":"WCA]pTROEQsmohMw~WROI@ocbdITE,IUWCxtX9M{S%NFRj-okWjE"},"Primary":{"5405e5b859a6a9ba5c4c0fefdba03a23":"daI#P+wH0MWY%LM_I[kCM_tSjEadwt%MRiWBM{IpWWo#"}},"LocationType":"FileSystem","MediaType":"Video"},"65d7562e9d5cc842e6daae59fcc6165a":{"Name":"Cowboy Bebop: The Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"65d7562e9d5cc842e6daae59fcc6165a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2001-08-31T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":69147951104,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11299"},"VideoType":"VideoFile","ImageTags":{"Primary":"1d99040368571125bb9049f1123d54ea"},"BackdropImageTags":["32d6add3958f4ed80d0c0b4fd43a506b","7987ef4e92ad0a269ef3b28a8f29ac60"],"ImageBlurHashes":{"Backdrop":{"32d6add3958f4ed80d0c0b4fd43a506b":"WaMG@g~V-;?bbY?G-mxBNG%gROoz~WobD*tRV@g4~UjXR-ogtR%3","7987ef4e92ad0a269ef3b28a8f29ac60":"WaMG@g~V-;?bbY?G-mxBNG%gROoz~WobD*tRV@g4~UjXR-ogtR%3"},"Primary":{"1d99040368571125bb9049f1123d54ea":"dTH,#HNI}s~B$+-UM|WYERbH9uNI^+oNx[xu%Ms.s.t7"}},"LocationType":"FileSystem","MediaType":"Video"},"66247c1ae5700340bb20d5767edfebad":{"Name":"Klaus","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"66247c1ae5700340bb20d5767edfebad","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-11-14T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":58832089088,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"508965"},"VideoType":"VideoFile","ImageTags":{"Primary":"5731d02973aca670fc70544aba1cfd9d"},"BackdropImageTags":["507ae0f004c145633c0721279708c2da"],"ImageBlurHashes":{"Backdrop":{"507ae0f004c145633c0721279708c2da":"WgK_5pIp-=-;D%-:~WoISit8Rij]?bM}M{kAf7ax_3xaV?adoMWB"},"Primary":{"5731d02973aca670fc70544aba1cfd9d":"dlF~U1ax00t7ozt7IUM{D%WCxuoJRPjFxukDt7kCR*ay"}},"LocationType":"FileSystem","MediaType":"Video"},"66e3ca0efe8a40d8b6bf9e829b6e2ed4":{"Name":"The Disappearance of Haruhi Suzumiya","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"66e3ca0efe8a40d8b6bf9e829b6e2ed4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-02-04T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":97077542912,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36865"},"VideoType":"VideoFile","ImageTags":{"Primary":"2e9746c4e67976adc9fb8e4a2e3b2c0c"},"BackdropImageTags":["693b0478cb9e6ccf0476f0e200de5012"],"ImageBlurHashes":{"Backdrop":{"693b0478cb9e6ccf0476f0e200de5012":"WF9i;us.0gRkaexZ$zs:I;NHs:j[9va}-ToeR,R*0#NH={xaRkoL"},"Primary":{"2e9746c4e67976adc9fb8e4a2e3b2c0c":"d+I#Z7xuoyxu~Wt7bGs:-:o2WVafxuoeazf7bIj[f6j["}},"LocationType":"FileSystem","MediaType":"Video"},"67e04a45325abd92924e3338beafd43e":{"Name":"Transformers: The Last Knight","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"67e04a45325abd92924e3338beafd43e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-06-15T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":92779520000,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"335988"},"VideoType":"VideoFile","ImageTags":{"Primary":"d84a4ca26e7152338209180c7835d423"},"BackdropImageTags":["c8298a6348ad1defcf6ca837bdfac949"],"ImageBlurHashes":{"Backdrop":{"c8298a6348ad1defcf6ca837bdfac949":"WeD[@7=awHNeS5V@~V-Tr=R-bcad-:$%sln$ozjZ%LxYoJjZogkC"},"Primary":{"d84a4ca26e7152338209180c7835d423":"dUC=-s]%,;t7~V-7xDozx]t6axX8x[tQR*R+%Kt7f*WB"}},"LocationType":"FileSystem","MediaType":"Video"},"68a14454082b543fa07c385a7cf879bc":{"Name":"Color Out of Space","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"68a14454082b543fa07c385a7cf879bc","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2020-02-04T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6,"RunTimeTicks":65999998976,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"548473"},"VideoType":"VideoFile","ImageTags":{"Primary":"730762b6909ff24e9729d6fb8429ea0d"},"BackdropImageTags":["783a9594382561b70ed941e2a574c3d9"],"ImageBlurHashes":{"Backdrop":{"783a9594382561b70ed941e2a574c3d9":"WUD8^kEJa_xbR%R+^nEJa}a{axs;bcNExbWUWAs;xcS0xbogR%WU"},"Primary":{"730762b6909ff24e9729d6fb8429ea0d":"dNEB8|%30wV{IUWUt7jIEHWU$lsn=}oeInn#E1R%o|Sw"}},"LocationType":"FileSystem","MediaType":"Video"},"6966de79ee7b614f91d5055625566896":{"Name":"Star Wars: The Rise of Skywalker","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6966de79ee7b614f91d5055625566896","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2019-12-17T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":85130878976,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"181812"},"VideoType":"VideoFile","ImageTags":{"Primary":"23c68d1b85ed158ef10cd0745ea1907e"},"BackdropImageTags":["002ad14d982dcb5625e2e2502340f373"],"ImageBlurHashes":{"Backdrop":{"002ad14d982dcb5625e2e2502340f373":"WU8FE8K+MbzpMvoM.AO@MxvzSKoficV[f#tQXnX6M}njtQb^WBV?"},"Primary":{"23c68d1b85ed158ef10cd0745ea1907e":"dMFiT57j4-+]?HxvI?r?9D^jM|9sxJS%-qIp$jMw%LoM"}},"LocationType":"FileSystem","MediaType":"Video"},"69babad3949209928e5b0d9d7e803f90":{"Name":"Perfume: The Story of a Murderer","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"69babad3949209928e5b0d9d7e803f90","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2006-09-12T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":88529289216,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1427"},"VideoType":"VideoFile","ImageTags":{"Primary":"8fd5b912144b196d9c382a727268e0d3"},"BackdropImageTags":["97591df7baabb0b34d07e210dc48c8e0"],"ImageBlurHashes":{"Backdrop":{"97591df7baabb0b34d07e210dc48c8e0":"WUCz@9I=1J^4WW5msnS2WWxFS3S3NbbHsoR+n*s.NbWpoKoKs.fQ"},"Primary":{"8fd5b912144b196d9c382a727268e0d3":"dFA,a:=|D%Nw~X%MR*NHE1oz%2sAI:NaoL%2IUM{R*oz"}},"LocationType":"FileSystem","MediaType":"Video"},"6a6f5fb14032114a91824efba8c4b5ac":{"Name":"Tenet","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6a6f5fb14032114a91824efba8c4b5ac","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2020-08-25T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":90090242048,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"577922"},"VideoType":"VideoFile","ImageTags":{"Primary":"539b88c6fab1cb55a9d97a8e91f39736"},"BackdropImageTags":["4b4c913e0a57d40eb7b463f004cc9800"],"ImageBlurHashes":{"Backdrop":{"4b4c913e0a57d40eb7b463f004cc9800":"WaB|{XIUIUxuMxbH.Tj]RPayV@ayo~tRe.Rks:azx]bHWAofbcj["},"Primary":{"539b88c6fab1cb55a9d97a8e91f39736":"dPIFi1-;4o%h?H?vxuD$0gtRr=IUtmD*Iojb8{IooIaK"}},"LocationType":"FileSystem","MediaType":"Video"},"6a7bb19218bd54791345474eceaf09ca":{"Name":"Blade Runner","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6a7bb19218bd54791345474eceaf09ca","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1982-06-24T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":70513917952,"ProductionYear":1982,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78"},"VideoType":"VideoFile","ImageTags":{"Primary":"3a9027c7b1486ab8135a48458d63980f","Art":"9f06f982b42ad8584a27baf95dc37ebc","Banner":"f925c3bdffd1a088c6ce60f9013ff763","Disc":"874eb2cfbebfdd8fe24c79c5b17cde8b","Logo":"13a033e5538819944e9db0dc88af9f3f","Thumb":"a2032c14fbddf9c4669d87276c7dc18d"},"BackdropImageTags":["13a033e5538819944e9db0dc88af9f3f"],"ImageBlurHashes":{"Backdrop":{"13a033e5538819944e9db0dc88af9f3f":"WEDl7q~VE3RPrX^hr=wJ9uWYxaWCEMt7-oEh9]E2%Mt7xZNaI;n$"},"Primary":{"3a9027c7b1486ab8135a48458d63980f":"dUGa,w~opF$|.6?Z%LbW-o?Gx@k8x[xts-bERkogofWU"},"Art":{"9f06f982b42ad8584a27baf95dc37ebc":"NPKKJ^~UxC?E^#M|4-E2E2%0kCIq?bE2E4M|WBf,"},"Banner":{"f925c3bdffd1a088c6ce60f9013ff763":"HPDSg%56D%-;M{M{pIt7V@_NIVRPtRM{oLtSR-R+"},"Disc":{"874eb2cfbebfdd8fe24c79c5b17cde8b":"eGDItZOr00rCm*?vWoIUjZVrD$nOO=b_S5RjjFRjt7xvobo2M_oLx^"},"Logo":{"13a033e5538819944e9db0dc88af9f3f":"OXO:R@4.8_NGRj%Mt7sAaenit7t7ozae_N%M%2t7kCR*Rj"},"Thumb":{"a2032c14fbddf9c4669d87276c7dc18d":"NCC6Gj?v0yzqn4t,0K4nW-x]i_IoF^~B^kKikWVZ"}},"LocationType":"FileSystem","MediaType":"Video"},"6b1ddb26338c3545e908f50deb3cf51f":{"Name":"Aliens","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6b1ddb26338c3545e908f50deb3cf51f","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1986-07-17T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":92671361024,"ProductionYear":1986,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"679"},"VideoType":"VideoFile","ImageTags":{"Primary":"ac966641c59c7d3006b00a7da463e384"},"BackdropImageTags":["e875cdf40db8abaca328d0b4032b7855"],"ImageBlurHashes":{"Backdrop":{"e875cdf40db8abaca328d0b4032b7855":"WlGJ$^Rjtk_NNZx]QnoIsAsEn%%M4n%1ofNHxZV@x]xttRbbxaR*"},"Primary":{"ac966641c59c7d3006b00a7da463e384":"dI6lV|jETMS*%%j[k@R.R5o$WWbcRjpJROx]MypJt8tR"}},"LocationType":"FileSystem","MediaType":"Video"},"6bcfae771dd5f1ec56074cd625ab252e":{"Name":"Scanners","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6bcfae771dd5f1ec56074cd625ab252e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1981-01-13T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":61978181632,"ProductionYear":1981,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9538"},"VideoType":"VideoFile","ImageTags":{"Primary":"a4eca720edddcab3ee4a2aa15bad72d8"},"BackdropImageTags":["b86d8e4cb0370fd912985ac2f00ec0cc"],"ImageBlurHashes":{"Backdrop":{"b86d8e4cb0370fd912985ac2f00ec0cc":"W89a5F.TJTsAQ,Vr%LbEbI%M-=xvk?%2%NtSXTbb.Axuj?ozV?WU"},"Primary":{"a4eca720edddcab3ee4a2aa15bad72d8":"dAA+$|?H0zM}P.x[IVEMz.nOI@IVD$M{R.IpVrRjS5oM"}},"LocationType":"FileSystem","MediaType":"Video"},"6c2411b583e518652c75f465be65f4c1":{"Name":"Neon Genesis Evangelion: Death and Rebirth","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6c2411b583e518652c75f465be65f4c1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1997-03-14T23:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":64668610560,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"21832"},"VideoType":"VideoFile","ImageTags":{"Primary":"af5c1b32ef0c2ec6722800b11c8d7a58"},"BackdropImageTags":["88136993dc630bd448df11235f6b7ed5"],"ImageBlurHashes":{"Backdrop":{"88136993dc630bd448df11235f6b7ed5":"WZMXGk0~5lkDni-A-pbcniR+W=Sg=|NHn$s:oLoL^QEMNa$%NaW;"},"Primary":{"af5c1b32ef0c2ec6722800b11c8d7a58":"dME_t4-=Q-s:DhE2NboM1bIoNbtRgi-BiveS+[,;oyX8"}},"LocationType":"FileSystem","MediaType":"Video"},"6c48c79702478fff566a01f186947e1d":{"Name":"Grave of the Fireflies","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6c48c79702478fff566a01f186947e1d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1988-04-15T22:00:00.0000000Z","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":53125570560,"ProductionYear":1988,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12477"},"VideoType":"VideoFile","ImageTags":{"Primary":"72211ace7b8826c9ccb13e06f9c9f096","Art":"9fa5db25e5bda1d1813b889a06e763fe","Banner":"68c9d879592438d058c115b7927058c3","Disc":"f447a010d543f34319de752128bb4dcc","Logo":"72211ace7b8826c9ccb13e06f9c9f096","Thumb":"1aaea6be46390e3e50ab7bf5308cc47a"},"BackdropImageTags":["c12c8048ef6b0d14ec344f456a958822"],"ImageBlurHashes":{"Backdrop":{"c12c8048ef6b0d14ec344f456a958822":"WIB{W20fE3}@IqxZ={IpELxZWBR,NaxZoLxtjFShWrRkWVs:RjNa"},"Primary":{"72211ace7b8826c9ccb13e06f9c9f096":"dEDb.oof03-pjDNHNKRk4;={?ZE2ERs+xVS6xFkCaeWF"},"Art":{"9fa5db25e5bda1d1813b889a06e763fe":"NdM~zw=y-=55?bIUvLMxX9xuRkaf~W-qShRitRt7"},"Banner":{"68c9d879592438d058c115b7927058c3":"HMFrV2~WIxI{9ikY-:~U-l_2?a%4a+tTbct5%Koa"},"Disc":{"f447a010d543f34319de752128bb4dcc":"eWP}cGD%yr=yl9rDWBb^ayayc[cES~V@nOrqj[ozs.niui#8ivK4R5"},"Logo":{"72211ace7b8826c9ccb13e06f9c9f096":"OUM7DQWA_4j]_4of?vn,RiayogofRkay?vM{Rit7Rjf7V@"},"Thumb":{"1aaea6be46390e3e50ab7bf5308cc47a":"N76@WY~U-:%KtQxt0f9HMyVtRjRj={-oxtkCxGt6"}},"LocationType":"FileSystem","MediaType":"Video"},"6db12c2efbcf9fea83a4860ad1aeb9c0":{"Name":"Magical Girl Lyrical Nanoha: The Movie 2nd A's","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6db12c2efbcf9fea83a4860ad1aeb9c0","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-07-13T22:00:00.0000000Z","ChannelId":null,"CommunityRating":5.6,"RunTimeTicks":90272423936,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"181522"},"VideoType":"VideoFile","ImageTags":{"Primary":"7bdc0c507e973d77de21c3e109c5e1e8"},"BackdropImageTags":["8f9a39f152293e8599bf431eb6c52f75"],"ImageBlurHashes":{"Backdrop":{"8f9a39f152293e8599bf431eb6c52f75":"WMK1UNvK.9yFxu?b;eV@xuH?V]RP01V@$|v{VtIV?In4buWTRRtS"},"Primary":{"7bdc0c507e973d77de21c3e109c5e1e8":"dSLpRE-rDixu.T%MpIo}-=-9s:xFysxZrqwet2S_%3jI"}},"LocationType":"FileSystem","MediaType":"Video"},"6e7a43aa8a2480c7030224d9b0332094":{"Name":"Blade II","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6e7a43aa8a2480c7030224d9b0332094","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-03-21T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":70134718464,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36586"},"VideoType":"VideoFile","ImageTags":{"Primary":"818df644c6488cb371506e64c20d6925"},"BackdropImageTags":["a59f8be32147c052d0a9028dff33f19b"],"ImageBlurHashes":{"Backdrop":{"a59f8be32147c052d0a9028dff33f19b":"WnLN.99G~q-;IU-;%MMyM{RjWBofxuayRjWBWBRj?bV[t7t7V@oe"},"Primary":{"818df644c6488cb371506e64c20d6925":"dlMaR|af~q?cxvIUM{WC-;ayIARj%Mxuxut7-;j]Rjof"}},"LocationType":"FileSystem","MediaType":"Video"},"6f1188ebed780b37ed40a8b04d7890a5":{"Name":"Perfect Blue","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6f1188ebed780b37ed40a8b04d7890a5","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1997-07-24T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":49023471616,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10494"},"VideoType":"VideoFile","ImageTags":{"Primary":"0225ef69b9eae7b6e7367d69edbdb6f3"},"BackdropImageTags":["c8fa4abc88ff94a42551e5932e0a8f98"],"ImageBlurHashes":{"Backdrop":{"c8fa4abc88ff94a42551e5932e0a8f98":"WIFO.c+X00.TJCJCtSIVxGtSE1M{9GtS%LIAo|Or^k%1NGELX9$*"},"Primary":{"0225ef69b9eae7b6e7367d69edbdb6f3":"d55hy6-@ISkBa$kEM^M^IRISWAxvIUj@x_WXt7%O%ijX"}},"LocationType":"FileSystem","MediaType":"Video"},"702605bcf3c1392777b59dcf51a63ef3":{"Name":"Serenity","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"702605bcf3c1392777b59dcf51a63ef3","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-09-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":71358791680,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"16320"},"VideoType":"VideoFile","ImageTags":{"Primary":"4d81aa5e22292be7dc0d8fa57b5f7da5","Art":"f5edfa8d2d9bebf7073173e79ee23ea8","Banner":"45c569afc6aca631a330a1cae4730d30","Disc":"338e074b4a42be1a568c63b3dcd78203","Logo":"e988a167b675f96ba89a35f098e69aca","Thumb":"679461ae9c899df81d3a7ffce5a4f140"},"BackdropImageTags":["33629a204bcfc93ea59247b3394205f6"],"ImageBlurHashes":{"Backdrop":{"33629a204bcfc93ea59247b3394205f6":"WiDkPYs:10Rk-5oes:j[WCayj?jt9uWB-TofS6n%aKayX7j[s:j?"},"Primary":{"4d81aa5e22292be7dc0d8fa57b5f7da5":"dnK-d.t7t7%M01WWayRjIVofWBWBRjf6j[ayIUWBj[j["},"Art":{"f5edfa8d2d9bebf7073173e79ee23ea8":"NrMQx200-;t7IUxuM{xuj[RjRjWBa#t7WBj?ofae"},"Banner":{"45c569afc6aca631a330a1cae4730d30":"H$OWj5IURQofof-;j[xuNG~pRjazj[WBt6WBWBRj"},"Disc":{"338e074b4a42be1a568c63b3dcd78203":"ePJS2;WrspI9?b00WC-ps:oz~Cxu%MbbRk.7Rjt7RkWC-;WBkVoLM{"},"Logo":{"e988a167b675f96ba89a35f098e69aca":"OURysgayayt7WBt7WBofj[fQfQj[ayfQ~qt7j[WBofWBof"},"Thumb":{"679461ae9c899df81d3a7ffce5a4f140":"NJM7iQM{R*_3x]~p4UxuIURkV[D%0LxtM{xuRQ9G"}},"LocationType":"FileSystem","MediaType":"Video"},"48da938c8456a18877c6869d2ae15b14":{"Name":"Neon Genesis Evangelion","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"48da938c8456a18877c6869d2ae15b14","PremiereDate":"1995-10-03T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.8,"ProductionYear":1995,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"70350"},"AirDays":[],"ImageTags":{"Primary":"6845a49a1605fe77e0c276d6aeb192c5","Art":"dad9394a3ee6a5f2413f038b7f5b6018","Banner":"d643fedafeefe754b9069fd5908d9ac7","Logo":"18ff527b3438189ef1f0b346c1d03678","Thumb":"c719c05ae579e7bf386287c9869a4fee"},"BackdropImageTags":["35f65f0904301af0522367f494e1ac10"],"ImageBlurHashes":{"Backdrop":{"35f65f0904301af0522367f494e1ac10":"WmK0EB}@k;OrsS$*XSWBw]axNHjrR*WBaxn%a#WX-pxtkWbbflW="},"Primary":{"6845a49a1605fe77e0c276d6aeb192c5":"dIG%#:-n#6=xx;$~$jX80Kn*o$M|F2RnI;soXoR+Rit7"},"Art":{"dad9394a3ee6a5f2413f038b7f5b6018":"NE9?ar-P5QEdj[kF},w?OZxuWUEM=?s*kEt2ayR."},"Banner":{"d643fedafeefe754b9069fd5908d9ac7":"HC8Wy|yXD%H?5k,@oLK4=y~CcEM{Z$AC$PjZJ,,@"},"Logo":{"18ff527b3438189ef1f0b346c1d03678":"OaE_gSjZE2niI:buIpt+azeoR+n$s.NH0fa}xaa$xZf5of"},"Thumb":{"c719c05ae579e7bf386287c9869a4fee":"NZMogl^4j@$ixEwz1[W.w^a{SfS3V_JAsCjaNcoK"}},"LocationType":"FileSystem"},"47ddd721d1aba7b0a9a0537215103834":{"Name":"Twin Peaks","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"47ddd721d1aba7b0a9a0537215103834","PremiereDate":"1990-04-07T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.9,"ProductionYear":1990,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":48,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"70533"},"AirDays":[],"ImageTags":{"Primary":"7c03fad643a33a50588f2c7d4d366743","Banner":"db3f72d08081a30c636b53de010006d6","Art":"a1ea52add777e84a456330d4b4eadba5","Logo":"f53ca02cb4a9f7140ecb31cf08c9adff","Thumb":"826e5e781e928a636d72c2bf890f6f42"},"BackdropImageTags":["00dcdbb3aeee10c3544a567d707cf687"],"ImageBlurHashes":{"Backdrop":{"00dcdbb3aeee10c3544a567d707cf687":"WHDIj[I^WTE3MxE2.6I=t6NHI;s,0MRP%2xs%L%2RRaKS4W=$%s."},"Primary":{"7c03fad643a33a50588f2c7d4d366743":"dmH.Wuozs:xu00M{a{RjMxs:R*j@%3t7ofofIURjj[ay"},"Banner":{"db3f72d08081a30c636b53de010006d6":"HG9Y;.1It6-A9b={9u$%xF=vF0j?w_NJs,S4jFs."},"Art":{"a1ea52add777e84a456330d4b4eadba5":"NmN,--_N-;8_x]%2~qjct7IU%May9Zn$WBozaKWX"},"Logo":{"f53ca02cb4a9f7140ecb31cf08c9adff":"O~NwvBofWBfjs;t7ayt7f7fQfQayfQfQ~qafofj[WBWBj["},"Thumb":{"826e5e781e928a636d72c2bf890f6f42":"N98pV:Eg59-A9^nj#AOWt6njJRw{0Oba-maftPs."}},"LocationType":"FileSystem"},"70562ef9bf399beb76712429384d5363":{"Name":"John Wick","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"70562ef9bf399beb76712429384d5363","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-10-21T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":60729278464,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"245891"},"VideoType":"VideoFile","ImageTags":{"Primary":"cc44ca08e480b98da4e695a89a6bde5e"},"BackdropImageTags":["04c9b821f556622d36b99779b45dc59f"],"ImageBlurHashes":{"Backdrop":{"04c9b821f556622d36b99779b45dc59f":"W54n[H-p0J0e%h~W?HxaE0ELtR-VI=R*xC%2o#IpI@NaxC%1o#I:"},"Primary":{"cc44ca08e480b98da4e695a89a6bde5e":"dTB$0[RkNe%}?^o|NGkCn,axMxVt%#aKMxt6-;tQWBjF"}},"LocationType":"FileSystem","MediaType":"Video"},"175f6c547824b728cfb8f06401f930ed":{"Name":"Stargate Atlantis","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"175f6c547824b728cfb8f06401f930ed","PremiereDate":"2004-07-15T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2004,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":99,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"70851"},"AirDays":[],"ImageTags":{"Primary":"907357a4929500e5b8a65e29eddf39bb","Art":"ae2449179a46b07ada014c9d8d865c6a","Banner":"dba7189580c08a0330f7a922ea5adf8a","Logo":"7649f7aa3e9bb53bb83fb2e77bff57bc","Thumb":"2e0bb83a6da32182363259beda486412"},"BackdropImageTags":["002306091c67975a8a3ed0367761bf48"],"ImageBlurHashes":{"Backdrop":{"002306091c67975a8a3ed0367761bf48":"W~IFSnt7tRkDbHt7~qozofofayof.8kCWAofaeoe%Nj[Rja}ayj["},"Primary":{"907357a4929500e5b8a65e29eddf39bb":"dTNd%a?bkq?v-pWq%1t6~qt7f,oz?vofxv%Lxaj[axjZ"},"Art":{"ae2449179a46b07ada014c9d8d865c6a":"NVHB}I_3_N-;%M-;?b?bt8xufkoz-;M{RjRiM{ay"},"Banner":{"dba7189580c08a0330f7a922ea5adf8a":"HaDmO0DgM|?v8^tSxWM~s+?vRhM|xuRjM|t4o#M_"},"Logo":{"7649f7aa3e9bb53bb83fb2e77bff57bc":"OA8gy-j[IUfQayWBWBj[ayRjWBRjofWB00ayxuayj[ofay"},"Thumb":{"2e0bb83a6da32182363259beda486412":"NI8qy%rXK$oMtmjdyZV@pGbIb^s;ObWBr;ozNGoM"}},"LocationType":"FileSystem"},"bf22cf320420d484517ed786181d75ad":{"Name":"Carniv\u00e0le","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bf22cf320420d484517ed786181d75ad","PremiereDate":"2003-09-12T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.5,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"70860"},"AirDays":[],"ImageTags":{},"BackdropImageTags":[],"ImageBlurHashes":{},"LocationType":"FileSystem"},"bb0788e52561e64db51fc0687533fa17":{"Name":"Hellsing","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb0788e52561e64db51fc0687533fa17","PremiereDate":"2001-10-09T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.9,"ProductionYear":2001,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"71278"},"AirDays":[],"ImageTags":{"Primary":"6c64653bba26510d174c6a92b446eabf","Art":"c2a88a57e265d87b6165d151ba03ede9","Banner":"e6289f39bc59dd6869ce72ae46e2d25b","Logo":"9ae908ce49c3a3899cf5c901e44f9d31","Thumb":"7f56e51f80e7f9928124fa905f8480e9"},"BackdropImageTags":["ccfc23bf6aa4c987f74731c55fa92f17"],"ImageBlurHashes":{"Backdrop":{"ccfc23bf6aa4c987f74731c55fa92f17":"WUEnhjV[0ex[xtV@E1Rj-pt7M{R%Ipoz$%M{S$%LsAozR*NGt7S4"},"Primary":{"6c64653bba26510d174c6a92b446eabf":"dRDR?8j]%M=|~Ct8xv%2XmbHf,S49uWVRjIo9FkBRPMx"},"Art":{"c2a88a57e265d87b6165d151ba03ede9":"NGA,L9IXRj-m0g-m%M%2oyE2niofx]R*t5xuMyRj"},"Banner":{"e6289f39bc59dd6869ce72ae46e2d25b":"H87wTj-VE20LJA%0kBE2Ir?Gn~WYIUs:oJo|Rmso"},"Logo":{"9ae908ce49c3a3899cf5c901e44f9d31":"O9AAEv%L0LD*s:W-M{_2-:%M9a9ZWBs.9t%LxtWBIUIVof"},"Thumb":{"7f56e51f80e7f9928124fa905f8480e9":"NYHenF~qM{jF9FWVxaIUIUs:kCt700M{xuM{x]of"}},"LocationType":"FileSystem"},"5823fbc8119dfd7dd2ee9de384c70519":{"Name":"Teen Titans","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5823fbc8119dfd7dd2ee9de384c70519","PremiereDate":"2003-07-18T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":70,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"71503"},"AirDays":[],"ImageTags":{"Primary":"a748b7fd1ca9cd017a98c9a6b743e4f3","Banner":"82754ef252aa6185109ece45f74cd4bb"},"BackdropImageTags":["0ea5269f4f56aa26f80b4d645ec67877"],"ImageBlurHashes":{"Backdrop":{"0ea5269f4f56aa26f80b4d645ec67877":"WMHvxOU}m+xuMx-o|H#7W?-:M{nQIZxrWEOqV_xDs:xIbXMyoyW:"},"Primary":{"a748b7fd1ca9cd017a98c9a6b743e4f3":"dUG%lC$*DUr]tvoI9gRm2nS|NKM}=fWXw_ofm.nPt2oc"},"Banner":{"82754ef252aa6185109ece45f74cd4bb":"HXExe0%Dx-~SoyxDs9IuEN^j$_ot%0xts,aeR.R+"}},"LocationType":"FileSystem"},"3259bae4f6b25095eccbb361a5016c66":{"Name":"Lilo & Stitch: The Series","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3259bae4f6b25095eccbb361a5016c66","PremiereDate":"2003-09-19T22:00:00.0000000Z","OfficialRating":"TV-Y","ChannelId":null,"CommunityRating":8.8,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":39,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"71624"},"AirDays":[],"ImageTags":{"Primary":"3a539d1ba4dbeaadb736a16bad8418dd","Banner":"1401a8ad5d92e37ec1769c39086cc2c3"},"BackdropImageTags":["0636a2abb2da948c1878de09a0d2cb0e"],"ImageBlurHashes":{"Backdrop":{"0636a2abb2da948c1878de09a0d2cb0e":"WOAeH?J=IVbYIbxaT#aywIW,NzxCNgI^i]==bwR-Xpn$XSX8nNkD"},"Primary":{"3a539d1ba4dbeaadb736a16bad8418dd":"dSGc=JCm7h-ppee-wvNdC9bvn6R*xtXTIot716rpwGoc"},"Banner":{"1401a8ad5d92e37ec1769c39086cc2c3":"H-E:MlV?S2s;xD$dbEWXrq.TemR-kCwbs,WAWBnh"}},"LocationType":"FileSystem"},"9b432ac2e9555d93c20b2abdb3aa9a2c":{"Name":"The Simpsons","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9b432ac2e9555d93c20b2abdb3aa9a2c","PremiereDate":"1989-12-16T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.9,"ProductionYear":1989,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":683,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"71663"},"AirDays":[],"ImageTags":{"Primary":"750399195026f52d70e96bd5ae424f8a","Art":"5ea62d4b7b32ba6ecabcd4e95626c8c8","Banner":"51082f6a668ac365d6633568ff2a651a","Logo":"a90cf72ac9176bd40b6987361c55d7af","Thumb":"62f45dc188a4ec3552b8db9edd96fd66"},"BackdropImageTags":["7937ee6918b39a0e768abd4d2b4c5ee1"],"ImageBlurHashes":{"Backdrop":{"7937ee6918b39a0e768abd4d2b4c5ee1":"WbJRgWx]tKOZRpX9?^-,Shx@xut6S|t8xsx[xti^?Zxts+XAX9aJ"},"Primary":{"750399195026f52d70e96bd5ae424f8a":"dTIYB{pHM|-;YRR.Obt718w|tTXA?^obr=tRs+kCIvNf"},"Art":{"5ea62d4b7b32ba6ecabcd4e95626c8c8":"NWJRHl=,4pS+VoI{0:s~o$bKrVS7ITE2xV${XVf4"},"Banner":{"51082f6a668ac365d6633568ff2a651a":"H%NA;icao~WENZ-pR*o#SQ?^JCR+o#V@xuM{f+XA"},"Logo":{"a90cf72ac9176bd40b6987361c55d7af":"ODE35O%I08odxqIY4uWDt49eWD?VWDRm08-+xqN0RmE5N0"},"Thumb":{"62f45dc188a4ec3552b8db9edd96fd66":"NzOg7+?8ozXB-no$.AxnWGR;$xWFtSV@M{t3t7WY"}},"LocationType":"FileSystem"},"589ee9cf8ac265149f134526be1b687e":{"Name":"Codename: Kids Next Door","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"589ee9cf8ac265149f134526be1b687e","PremiereDate":"2002-10-31T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9.6,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"71685"},"AirDays":[],"ImageTags":{"Primary":"62a9b6a95c6cf0a6d57be82cd36d2bfd","Banner":"d2fc51ba9328557901b20998fba080ec"},"BackdropImageTags":["9b0cdfa12a96e56246fd25f0a10ab0fa"],"ImageBlurHashes":{"Backdrop":{"9b0cdfa12a96e56246fd25f0a10ab0fa":"WFEU*:~S}?=Zxt$i-Bn$w4i~NGIpEd%e$}-oxsxYSybcM{RjxZtP"},"Primary":{"62a9b6a95c6cf0a6d57be82cd36d2bfd":"ddOplN%f_N^+xAaJxbxuROjYx]WCV?X5tRt7_3xuj^t6"},"Banner":{"d2fc51ba9328557901b20998fba080ec":"HMGkEeEl;2ORS{^jwN-NE2~RSxwI#+OTkVNfx?NG"}},"LocationType":"FileSystem"},"71ad5d5944042701650c3f521dadfdc9":{"Name":"Train to Busan","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"71ad5d5944042701650c3f521dadfdc9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-07-19T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":70765338624,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"396535"},"VideoType":"VideoFile","ImageTags":{"Primary":"949cb28c920f727502d14242d21f6280"},"BackdropImageTags":["1b2080ee4a4a8bfaad0596a8ccf9df1d"],"ImageBlurHashes":{"Backdrop":{"1b2080ee4a4a8bfaad0596a8ccf9df1d":"WyDK7CRkRjogf6t7.TRjaeflaxoztSWBaxj[WBayWCaea}oLaeWB"},"Primary":{"949cb28c920f727502d14242d21f6280":"dOGS7Zx]$%=|}]x[eSr?z:V@Z$Vs^k%M$jrr$jxu%2sB"}},"LocationType":"FileSystem","MediaType":"Video"},"6acf731d783179c35bee30eb5291b22d":{"Name":"Digimon: Digital Monsters","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6acf731d783179c35bee30eb5291b22d","PremiereDate":"1999-03-05T23:00:00.0000000Z","OfficialRating":"6","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":17999998976,"ProductionYear":1999,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":111,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"72241"},"Status":"Ended","AirDays":[],"ImageTags":{"Art":"176bc04b014f1d5ce867ccf329ba743b","Logo":"f398eb6f4ad29d35dbae92bd675eb34b","Thumb":"2edd59962fc05bc158acd488a2a05b12","Primary":"14fa155f99c491159fe17291fc97f8a5","Banner":"27b7b21ce2405c4e06def18540fa3859"},"BackdropImageTags":["f43328001c8d979aaea3dbe17f21b2bc"],"ImageBlurHashes":{"Backdrop":{"f43328001c8d979aaea3dbe17f21b2bc":"WQI}qJ?bN{xo%bxv_Jb[-BnBgOxtX{bCaeNHRlS1.PwySdXLngV["},"Art":{"176bc04b014f1d5ce867ccf329ba743b":"NTKKm1~q.8_3x^kDnO9EIUIoWAt7xtIARPWCW?R*"},"Logo":{"f398eb6f4ad29d35dbae92bd675eb34b":"OmKd;^ax?way~Wog-;%gj[ayWCRjj[WBIuj@owWCxCj[WV"},"Thumb":{"2edd59962fc05bc158acd488a2a05b12":"NpM@fg-p?wkDo}x]pKj?WBWVNHt6yZoek8WWMyjZ"},"Primary":{"14fa155f99c491159fe17291fc97f8a5":"dZJIFQ%epc%M_4njbdXUM_xVsRR.-Vn+SiRk-;xaNHNe"},"Banner":{"27b7b21ce2405c4e06def18540fa3859":"H+NIvV+aR$x[$+Vst0%2r?~ARQg1xZs,a$WAbIso"}},"LocationType":"FileSystem","EndDate":"2007-03-24T23:00:00.0000000Z"},"f4a74e059c5b82ce74a7ea6ada3cba69":{"Name":"The Venture Bros.","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f4a74e059c5b82ce74a7ea6ada3cba69","PremiereDate":"2004-08-06T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2004,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":63,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"72306"},"AirDays":[],"ImageTags":{"Primary":"1fd72ff3b0df7dfad8acf26060ad4a15","Banner":"4fc81fead4215d03246a46b544a39903"},"BackdropImageTags":["eb26bc3d5f67e3f64890be5f6ef73bf4"],"ImageBlurHashes":{"Backdrop":{"eb26bc3d5f67e3f64890be5f6ef73bf4":"WSMNuv,[[b;%#p=a=GX5Nea#k9spvgNtoy$NJ7R+}rwfwb$hsWWB"},"Primary":{"1fd72ff3b0df7dfad8acf26060ad4a15":"dXK@z^=e0ze:McniO@S4KjbbwIn%xajZNHW;IUn%o}Nb"},"Banner":{"4fc81fead4215d03246a46b544a39903":"HbGRP70MMd~VIoRPNyxsM}^iRkIV={oeM|njxtNd"}},"LocationType":"FileSystem"},"6e5788abc064a7a4789da3fb76dfcdad":{"Name":"Stargate SG-1","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6e5788abc064a7a4789da3fb76dfcdad","PremiereDate":"1997-07-26T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.3,"ProductionYear":1997,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":213,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"72449"},"AirDays":[],"ImageTags":{"Primary":"4180076fbb1d8384ff3d5ada492e8acc","Art":"b3b9fd6040100272598934332bd9853a","Banner":"53b3128cf58ff6b4da8212113c4b33a1","Logo":"85bca83a67c4c8545b1423156b0b33ac","Thumb":"b11018c059732555989dac034f74c2aa"},"BackdropImageTags":["34996a922136656538260b42667d3622"],"ImageBlurHashes":{"Backdrop":{"34996a922136656538260b42667d3622":"WD68v{%hDgDNRO%hx^tRRiM{WBoejDtRkERiRijEo#kDofaJV?og"},"Primary":{"4180076fbb1d8384ff3d5ada492e8acc":"doIg.S?aIoV@WVWBkCa}01D%t8f,oga}WBoKyDtRoIsl"},"Art":{"b3b9fd6040100272598934332bd9853a":"NlN^SZ_NaxITtRxuIAD%ayofogayR*IURjxuoLRj"},"Banner":{"53b3128cf58ff6b4da8212113c4b33a1":"H68zoj=?M{xut6i_xuxaMx~V%0t7xun~RPfkxuxu"},"Logo":{"85bca83a67c4c8545b1423156b0b33ac":"OC97eLofM{M{oft7ofxuWBxuofj[j[Rj00ayfQofWBWBj["},"Thumb":{"b11018c059732555989dac034f74c2aa":"NDBf-4.89tE2R-x^~9xvI[E1RjkW-AxuIpRjNeX9"}},"LocationType":"FileSystem"},"72df4d66e38a770ff933703b631cc4b7":{"Name":"WALL\u00b7E","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"72df4d66e38a770ff933703b631cc4b7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-06-21T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":8,"RunTimeTicks":58456109056,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10681"},"VideoType":"VideoFile","ImageTags":{"Primary":"26efa2ded07a0a96dffefaeb15311ae1","Art":"a1881a69371f928f2f230193ef2f7af6","Banner":"e9c8b71a581d85e8e717001b3e4cc8a5","Disc":"f5b142a211ff3c1234b99be3490e1f00","Logo":"1c09044bf1409cad2ed3c7b1d1799d26","Thumb":"f52b931d1712e34095ddf36d564f2adb"},"BackdropImageTags":["5f418327bcff2aeec388d6a7907c5b31"],"ImageBlurHashes":{"Backdrop":{"5f418327bcff2aeec388d6a7907c5b31":"W24K]7}=I=5A9yE5ERItod-Q-l-T9]R+xYxFR,R-=?-RNdEQEOIq"},"Primary":{"26efa2ded07a0a96dffefaeb15311ae1":"doAep?%$ozxvo~o#ofoJHqMxW=RijEi_WCR-X8jsnio0"},"Art":{"a1881a69371f928f2f230193ef2f7af6":"NWOg7[9F4TXS~qIoIoMdS#RP%MRj~q.8xubHIUs."},"Banner":{"e9c8b71a581d85e8e717001b3e4cc8a5":"HNBDHL%hIWxIR-WAslIU9F~Xx^R-s;R+RjaKInD%"},"Disc":{"f5b142a211ff3c1234b99be3490e1f00":"ebGSQ2nh^+X9%grpazbwjZjZ?^R.?Gn#s;WBaebbbIjE-;n%aeWqIU"},"Logo":{"1c09044bf1409cad2ed3c7b1d1799d26":"OPSPIc.mQ-yDRPn%bvxukCaekCf6ayj[?^Q-b^enozkCn%"},"Thumb":{"f52b931d1712e34095ddf36d564f2adb":"NX8iC_VsNyVsi_tTtnn~WYW?aJofHqaxxaXnWAi^"}},"LocationType":"FileSystem","MediaType":"Video"},"72f6c9fafc5073496f9fe8c255b2d94c":{"Name":"Spider-Man 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"72f6c9fafc5073496f9fe8c255b2d94c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-06-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":81481596928,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"558"},"VideoType":"VideoFile","ImageTags":{"Primary":"06397e748a7d7eed009cc923704e6bd7","Art":"32bdc6417d2b3dc7180076027d05198a","Banner":"7bb798e532365db0caa64811ec95d50b","Disc":"f42c8b4beab5dbac56a78fbba562e7e0","Logo":"710c76dab00fcdadbd11d9df3de4bdfb","Thumb":"e6322fad6482df772c263b1d68e1f0cd"},"BackdropImageTags":["a3b16a83e9e52666479e9a97da380b8e"],"ImageBlurHashes":{"Backdrop":{"a3b16a83e9e52666479e9a97da380b8e":"WPI3Q[04=_^OD+-.+vxaRkr?t7i_RloLxENIS3xD^PMz%0ofM|xt"},"Primary":{"06397e748a7d7eed009cc923704e6bd7":"dSJra3H_o_=y}=ItxYs:E3x@NuNH=e$*R+kCggM}xZoy"},"Art":{"32bdc6417d2b3dc7180076027d05198a":"N_PGNvt7_NV@V?t7-pkCRkWBV@kCozj[RPWBofof"},"Banner":{"7bb798e532365db0caa64811ec95d50b":"HXH+wDD,of^4i|$$R+jbNH}rV[sC$iWCxYazI?WV"},"Disc":{"f42c8b4beab5dbac56a78fbba562e7e0":"eaKJx%%I?]oe.7=socSiafR*%%IW%gR+V[ItRlj[oes,.7t5s-ofMx"},"Logo":{"710c76dab00fcdadbd11d9df3de4bdfb":"OqSriroffkoLW;ofjtt7j[fQfQfQfQfQ*JbHjZj[jZfka|"},"Thumb":{"e6322fad6482df772c263b1d68e1f0cd":"NTETVR1K=ZaeK5$%-6RlxaX7NHW-soWCf6SLSgn*"}},"LocationType":"FileSystem","MediaType":"Video"},"72feb5abd95ab9be0961ffbdeb9ae6e7":{"Name":"Mission: Impossible - Fallout","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"72feb5abd95ab9be0961ffbdeb9ae6e7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-07-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":88449499136,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"353081"},"VideoType":"VideoFile","ImageTags":{"Primary":"0f5b34ab379272e17baee6af47310190"},"BackdropImageTags":["af96ca5fb7521bcd7bf4b128800ce508"],"ImageBlurHashes":{"Backdrop":{"af96ca5fb7521bcd7bf4b128800ce508":"WyGIcVf6RQ%MWBxu~pjZRjxuj[xu%MWBRjWBt7t7xuRjR*R*ofof"},"Primary":{"0f5b34ab379272e17baee6af47310190":"dtM%7p^j_3-;_NS$krt8-;kCX8XSx]axofogt7a#Rkof"}},"LocationType":"FileSystem","MediaType":"Video"},"732f0737b1957eee89b56a0476848752":{"Name":"Pink Floyd: The Wall","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"732f0737b1957eee89b56a0476848752","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1982-07-13T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8,"RunTimeTicks":57083908096,"ProductionYear":1982,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12104"},"VideoType":"VideoFile","ImageTags":{"Primary":"aefbe56e8d790a84b761b8720c93d559"},"BackdropImageTags":["2a9c0e03c10b12901a5f01915457800e"],"ImageBlurHashes":{"Backdrop":{"2a9c0e03c10b12901a5f01915457800e":"WeQJZWn%xaj@%M~q-pD%M{%M%M%M-pIAIT?bt7R*_3t7t7ofbGof"},"Primary":{"aefbe56e8d790a84b761b8720c93d559":"dOB|a5}l?c?Ip0Rif6xvI[NHM{EMo#oJV@NHIpIoRjxu"}},"LocationType":"FileSystem","MediaType":"Video"},"aaaa8c99c87172ac1ed505784dbd921b":{"Name":"MythBusters","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"aaaa8c99c87172ac1ed505784dbd921b","PremiereDate":"2003-01-22T23:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.2,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":343,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"73388"},"AirDays":[],"ImageTags":{"Primary":"6d4d2b9a90c5fe49f82245d3ba8047ad","Art":"f5c718833277f9d596adf5b0e5e5aa47","Banner":"393b9f3dc76742790192ad43ae0001f9","Logo":"fec01ba1b8c4b1e535f56169a82dccfb","Thumb":"538e901f39b9581838a6763b135dd913"},"BackdropImageTags":["1982204415c25225e4f7fa35b5f6c33e"],"ImageBlurHashes":{"Backdrop":{"1982204415c25225e4f7fa35b5f6c33e":"WG9tli?uRis,Mxoz_M%1V?xtozx]IoM{jFxuxut79aIoozt6jYV@"},"Primary":{"6d4d2b9a90c5fe49f82245d3ba8047ad":"dqKw,[-;.7t7~qtRkDs:%NRjfkof%MaKaxt7%MWAR*t7"},"Art":{"f5c718833277f9d596adf5b0e5e5aa47":"NdJ8CSt7_4Io~qxa?GjZNHayjZWVslR%ogxuofRj"},"Banner":{"393b9f3dc76742790192ad43ae0001f9":"HxJ[L^x]M|s8x]M{V@tRoz~qWXxuxatSoeaeWXof"},"Logo":{"fec01ba1b8c4b1e535f56169a82dccfb":"OyK1tBofoffQt7ayj]xu%gf6WBRjs:j[_Nayjsofayayj@"},"Thumb":{"538e901f39b9581838a6763b135dd913":"NSDvfzW=0MxubHM{TLfknhR*odt6E3kB-oRjV@xt"}},"LocationType":"FileSystem"},"aa211686817b7b445035ca7fd891bb64":{"Name":"Lost","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"aa211686817b7b445035ca7fd891bb64","PremiereDate":"2004-09-21T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2004,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":133,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"73739"},"AirDays":[],"ImageTags":{"Primary":"baa4a7cd7078abd631d9762678a0f1ea","Art":"a80d7185df8f6b9ba765e65e311b6abd","Banner":"6dfc9d053ed7f6b4a04bd49f836aae30","Logo":"d31479a0844090e1908c93b9a24e2e0c","Thumb":"ffa7f65de03ec655e9f1885eedf8bcc1"},"BackdropImageTags":["488ec1eacd591fa9a80378f9a2aafc14"],"ImageBlurHashes":{"Backdrop":{"488ec1eacd591fa9a80378f9a2aafc14":"WA8h2g%gE1xvtlbF~pR7IU%Mt7IBt2MxR%s,WnIB%MxaRPDjM{V["},"Primary":{"baa4a7cd7078abd631d9762678a0f1ea":"dQDA45%M4TM{_3RPD%xu_NRkDis.?cWCD%aeozM{Rkt7"},"Art":{"a80d7185df8f6b9ba765e65e311b6abd":"NMGu%eWB4nM_.8kB?GoeNHWX%2WB?wt8ITt6t7t7"},"Banner":{"6dfc9d053ed7f6b4a04bd49f836aae30":"HXGSx}-;tRx[IoIoIU%gfk?^%MV@ozIUIoRjIURj"},"Logo":{"d31479a0844090e1908c93b9a24e2e0c":"O67KuMay00RjayofIU%MxuRjM{WBayxu00of-;j[WBofxu"},"Thumb":{"ffa7f65de03ec655e9f1885eedf8bcc1":"NW9S0RMxMx%MIAf+.mMxM{x]RPbbR5RjRPt7tRWB"}},"LocationType":"FileSystem"},"2a6e7fd4c133653419f7d83ed4db4815":{"Name":"Ghost in the Shell: Stand Alone Complex","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"2a6e7fd4c133653419f7d83ed4db4815","PremiereDate":"2002-09-30T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":64,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"73749"},"AirDays":[],"ImageTags":{"Primary":"58dfe08f559bfecd40e352c92d17fdb0","Banner":"ee6c0610ea672e7bb5994cdae8c30f06"},"BackdropImageTags":["c4cc478cf3ef4f9a2a9a9fb333410a36"],"ImageBlurHashes":{"Backdrop":{"c4cc478cf3ef4f9a2a9a9fb333410a36":"WX9@-l.AtTNLIqNfNKR-WBj]t8t7M_V?oLs;oejZV[j]agWBf7js"},"Primary":{"58dfe08f559bfecd40e352c92d17fdb0":"doL;ps%MtR-;~qxut7%M%Nflt7xu%Mt7Rjoet6WBIVa#"},"Banner":{"ee6c0610ea672e7bb5994cdae8c30f06":"HHFOy8x]rq}:I7w158x^xw^ltL-;W@E1Rp9ZIVM|"}},"LocationType":"FileSystem"},"7e74ea681bde25281f72509fa5b12ff8":{"Name":"Futurama","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7e74ea681bde25281f72509fa5b12ff8","PremiereDate":"1999-03-27T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.8,"ProductionYear":1999,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":124,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"73871"},"AirDays":[],"ImageTags":{"Primary":"374205ac3ba6c147bc56152c4f494955","Art":"472b45c9725d4ba42d1abcfc21e3766c","Banner":"6ee7301eaaf51ff462b28a7769941440","Logo":"350010ad437b68ba6398e0c163beafca","Thumb":"8d8141b915848cbf5edf25cb50c01079"},"BackdropImageTags":["0b4dae6cdccd7c311de1c179af533c0c"],"ImageBlurHashes":{"Backdrop":{"0b4dae6cdccd7c311de1c179af533c0c":"WNHcvL{%[pwI%2K*Xmx@V[xat3n-9I-QskainPwI+%VY=wM}NdXS"},"Primary":{"374205ac3ba6c147bc56152c4f494955":"dIJQZj;w1Iw0$,bvI9aK5XPBroxD%fw@M|nPITv|%L%3"},"Art":{"472b45c9725d4ba42d1abcfc21e3766c":"NMFFBKx[55WsE2MzL}ogJUM_%3bccEt6o#t6RPRR"},"Banner":{"6ee7301eaaf51ff462b28a7769941440":"HKDTYB5nPB^j02%2,,R.GD-=vfkWNyRixIjEogo~"},"Logo":{"350010ad437b68ba6398e0c163beafca":"OPCOpsj@bGWWWDazNbs.oeENWWWCj@j@0%jaafWCxYj@s."},"Thumb":{"8d8141b915848cbf5edf25cb50c01079":"NUFFaHxa0MNw9GWFHraK%Lo}oengrXW?XArqxuo}"}},"LocationType":"FileSystem"},"73a3e10d2d289c0c27b219fe3323ae63":{"Name":"The Girl Who Leapt Through Time","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"73a3e10d2d289c0c27b219fe3323ae63","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-07-14T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":59404419072,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"14069"},"VideoType":"VideoFile","ImageTags":{"Primary":"0de8cd51d0b0f4ef83c3df4fa8888da8"},"BackdropImageTags":["c995bf3b651dc90275f2aa043967fc57"],"ImageBlurHashes":{"Backdrop":{"c995bf3b651dc90275f2aa043967fc57":"WFE:J90LE0-;?aJBIoWZ?Go}xuRj~qV@?aRPM|.8.8Rip0s+%Mo~"},"Primary":{"0de8cd51d0b0f4ef83c3df4fa8888da8":"dXHx~Tt7IU?HyGofo0kD?w%MofNHNhR+M|t79bt7t7WX"}},"LocationType":"FileSystem","MediaType":"Video"},"06ef440d9d1f29228fd8e9ee64eb2127":{"Name":"Texhnolyze","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"06ef440d9d1f29228fd8e9ee64eb2127","PremiereDate":"2003-04-16T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":22,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"74493"},"AirDays":[],"ImageTags":{"Primary":"ad034dc5d6d3256ad0274f6e4421bcb9","Art":"aec1405a0f2f10f96eb62801ce3a6779","Banner":"1ace718640f55a5d267576528df2758b","Logo":"ab9b4bd2c5ac11b222f5d06349676446"},"BackdropImageTags":["c0cbfd0af14efc28653d9115921aa806","fb6154e6994e7a862c5d464aa448b837"],"ImageBlurHashes":{"Backdrop":{"c0cbfd0af14efc28653d9115921aa806":"WWDc$_D*9G~pbXo@-:WBMyt7bHtP9Gxuxu9Gxaxutgt7WDRjx@tQ","fb6154e6994e7a862c5d464aa448b837":"WJCtwM8wIU*HgMxt8_-;RmIVV[ayHs%fWURQt7tQ%2Mxj[j[kBxH"},"Primary":{"ad034dc5d6d3256ad0274f6e4421bcb9":"dJEM,j-U8wtS_2IUD*IAxBR*R-aJxwoKxsozo~IUM{f8"},"Art":{"aec1405a0f2f10f96eb62801ce3a6779":"N#Mj{#~qM{IU%3xu?a%Mj@RkayofIUkBazWBt7Rj"},"Banner":{"1ace718640f55a5d267576528df2758b":"HB71=?4n?cI9Vr%1Di?cD%?wD%%gMwjEt5IU%NIU"},"Logo":{"ab9b4bd2c5ac11b222f5d06349676446":"OfQ]+wxuWBj[t7ayj[xuayayj[fQayay~qayt7ayWBofj["}},"LocationType":"FileSystem"},"96f9b234d9da89a565b4f22834a3101f":{"Name":"Avatar: The Last Airbender","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"96f9b234d9da89a565b4f22834a3101f","PremiereDate":"2005-02-20T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9,"ProductionYear":2005,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":54,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"74852"},"AirDays":[],"ImageTags":{"Primary":"ef383a2b6b06f8585f9cbc768972acb5","Art":"8b46e14991cfe9500c15467dabcaf1b2","Banner":"f7c22a7781c2658a91418dbe6c9fe301","Logo":"ac01ea2329bb7a24c4128864b907df55","Thumb":"e6bb9dd905761a1b2195b923e5f0fa81"},"BackdropImageTags":["b0841df5b208a76b644740b89c3b0782"],"ImageBlurHashes":{"Backdrop":{"b0841df5b208a76b644740b89c3b0782":"W32F#=j[DNayx^WBj]fQaxf6a}j[H=ayyDaeaeozV?j]o#aeV@kC"},"Primary":{"ef383a2b6b06f8585f9cbc768972acb5":"dWK.3e?c?c%NWDogRjRj%%t7D%kD.8s:xtxtS*M{D%V["},"Art":{"8b46e14991cfe9500c15467dabcaf1b2":"NWJHEt?H_3~q?bIU^Q8xIAIpRjaKt9DiV?S1Rism"},"Banner":{"f7c22a7781c2658a91418dbe6c9fe301":"HhHn~WkqxZ-UXS$%f,-oxa~qozxaxZt8x[of%2of"},"Logo":{"ac01ea2329bb7a24c4128864b907df55":"OBIE|g~q4n?bIUIUIU4nxuD%M{j[Rjt7IU9FxuD%xut7%M"},"Thumb":{"e6bb9dd905761a1b2195b923e5f0fa81":"NGK-OVVBX7GGXK.8.SMvJ=IUjXohYRcH%0Mc-XV@"}},"LocationType":"FileSystem"},"74cfecad6545aac4042a721affce4d22":{"Name":"Avengers: Infinity War","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"74cfecad6545aac4042a721affce4d22","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-04-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":89612492800,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"299536"},"VideoType":"VideoFile","ImageTags":{"Primary":"b35362a663a32129cc36cbf63cd40c7a","Art":"c181d134a89eea9c99e3283e8e59b138","Banner":"b1a218381086ab6deefe57fb82a270fa","Disc":"accf2010636532a5d567a1c0d50e9f03","Logo":"0892a1e5f216841dee73d50749d1a217","Thumb":"2aa52e315600f3d17b468d9cf765a0d0"},"BackdropImageTags":["f40f0ac210b844216f949b43da3620bd"],"ImageBlurHashes":{"Backdrop":{"f40f0ac210b844216f949b43da3620bd":"N97UMC-p0K5AaJxUE3bc%1oLIrWW8^Rkx]xXtSWG"},"Primary":{"b35362a663a32129cc36cbf63cd40c7a":"dGE-E#-U58$R=~bcRjWF1cS$R:NeI@xDozog15Rkt5oz"},"Art":{"c181d134a89eea9c99e3283e8e59b138":"NTKS-EaIxsoztl%2~pIAROV@oJoKyYM_RRkDoNt7"},"Banner":{"b1a218381086ab6deefe57fb82a270fa":"HNEB4,xHjst2Iqj[-A=d-T}?s:WWW.I;J8n%wexF"},"Disc":{"accf2010636532a5d567a1c0d50e9f03":"eJIpxSstGDj:0}?Gs;S3RjM{J5k61GNH$Mi_SdEMfkxZC4R*RPxt=f"},"Logo":{"0892a1e5f216841dee73d50749d1a217":"OXM$u1RQS7oex]t6xvtSRkRkoeodt6bH?^RkaejboJofay"},"Thumb":{"2aa52e315600f3d17b468d9cf765a0d0":"NFEK.qx[0dM|E,xb0zsCx]adR5I=O;WFN2Sgxooy"}},"LocationType":"FileSystem","MediaType":"Video"},"738e532a4febc3f6db407b0e109e9dcb":{"Name":"Samurai Jack","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"738e532a4febc3f6db407b0e109e9dcb","PremiereDate":"2001-08-09T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2001,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":62,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75164"},"AirDays":[],"ImageTags":{"Primary":"d4ff9587efcf89659fc2b02fa3dd0673","Banner":"6293f9efa7133a94f693b516bc19693a"},"BackdropImageTags":["e1e49c0458218e8c160be5915ba127c4"],"ImageBlurHashes":{"Backdrop":{"e1e49c0458218e8c160be5915ba127c4":"WcHm1IJ60}wgVYsmxIRPobx[ocjuNtWAS2oft7bbw{g4SgR5WCjY"},"Primary":{"d4ff9587efcf89659fc2b02fa3dd0673":"dMGa%xH=0K_3DN^+x]9F.9I:D%o#9]I;xGtQ56xu$*Mx"},"Banner":{"6293f9efa7133a94f693b516bc19693a":"HlL|+P-;4Ti_xa?bt7aeoz=yniDiRPsUoLkCM{R*"}},"LocationType":"FileSystem"},"751e7f85ddbc3fa5e9b1754df6970555":{"Name":"The Shape of Water","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"751e7f85ddbc3fa5e9b1754df6970555","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-12-07T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":73994559488,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"399055"},"VideoType":"VideoFile","ImageTags":{"Primary":"24787e5875486ae608bfdfeab309d141"},"BackdropImageTags":["3748ddb5950f80dfe45d3c19b840f8b0"],"ImageBlurHashes":{"Backdrop":{"3748ddb5950f80dfe45d3c19b840f8b0":"WP3xVZZ#W=i_iHbcpyZ#kre.VWkXkraKkBf6aJkWpJaKf6j@f+ay"},"Primary":{"24787e5875486ae608bfdfeab309d141":"d81#AOcFQ8iIctkribVYm-ahbukAi{afg3kWWBj[o#bb"}},"LocationType":"FileSystem","MediaType":"Video"},"751f36a01e3194243cc26adbb75fa50f":{"Name":"Hellboy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"751f36a01e3194243cc26adbb75fa50f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-04-01T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":79489826816,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1487"},"VideoType":"VideoFile","ImageTags":{"Primary":"7e4861007dc56dadc21c0522c50ee392","Art":"ed41e5198e7af95ecae411ad87e2f3d8","Banner":"6b5a23e9ec891b59e1251e1e61bf3382","Disc":"8dd12186840cf9012dab667642eaad4a","Logo":"9fbb7ebf0135c68cde4234723939cb2e","Thumb":"1f49b795049b6d6023d828821c36e743"},"BackdropImageTags":["4c62704d39c2a277ba24e33bf05b8eba"],"ImageBlurHashes":{"Backdrop":{"4c62704d39c2a277ba24e33bf05b8eba":"WB8;429]4T=_Ab%3,[S~ada1O=$*R4S#tlxFM{RPNGRjX8xvwcM_"},"Primary":{"7e4861007dc56dadc21c0522c50ee392":"dcDbsTxDIot5~Bs+Rjs-=vslJBWB%1oLI;R*tRkCIoR+"},"Art":{"ed41e5198e7af95ecae411ad87e2f3d8":"NxK^~ixu~pRibHR*IARPIUt7ozt7R5ayRkaybbae"},"Banner":{"6b5a23e9ec891b59e1251e1e61bf3382":"HF9=,A{L+^%MIoWWofSgI:$jwJW;N^WUxGrrxGbH"},"Disc":{"8dd12186840cf9012dab667642eaad4a":"ebGRbwe.~qo0-;ofWVoLjZbH_NR*%#W;WBj[jsbHfjjZ-;n%V@oLIU"},"Logo":{"9fbb7ebf0135c68cde4234723939cb2e":"O~NJnFWBt7WBt7WBozjFj[ayoLWBj[ay_NofV@kCWBofWB"},"Thumb":{"1f49b795049b6d6023d828821c36e743":"N99HeHSlUGTLMd.7Pqs.rDxai]Vs4mMwiI%MkXbw"}},"LocationType":"FileSystem","MediaType":"Video"},"5e6464289359312f67b8cea41505e5a9":{"Name":"Batman Beyond","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"5e6464289359312f67b8cea41505e5a9","PremiereDate":"1999-01-09T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":8.5,"ProductionYear":1999,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":52,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75417"},"AirDays":[],"ImageTags":{"Primary":"dde6ed1af74232a1c1fa8340c33c6de1","Banner":"7bbb588438894598686473a2ca558df0","Art":"b2de8cdf2a253b0de04fa26171589623","Logo":"418c641960aa1ba22772c4fa3c490596","Thumb":"8cda486ca26fa7ebf84589cf3a7cae23"},"BackdropImageTags":["8f12da24ab80e081dbd611548ab708d9"],"ImageBlurHashes":{"Backdrop":{"8f12da24ab80e081dbd611548ab708d9":"WF9r;IxH1GNaR*I:#loLJ,S1s;ogOsX8Vrax$kwybcbHbFj@sCni"},"Primary":{"dde6ed1af74232a1c1fa8340c33c6de1":"d95rrytTDgtTF*S1$voL$*ozM{aJXqWBnMo#beWAj?bI"},"Banner":{"7bbb588438894598686473a2ca558df0":"HGA7;,[=j[ODEz|w|ww|#-=K=0jZJ-#m;%=K,EOX"},"Art":{"b2de8cdf2a253b0de04fa26171589623":"NkL:vF~W.8IBnhx]yD_NRPjZIUoLR*M{xubHWBWB"},"Logo":{"418c641960aa1ba22772c4fa3c490596":"ONLBIbso?voL.SW;.S}ZoLbGa|oLjtjtGtWqS1bHWVW;f6"},"Thumb":{"8cda486ca26fa7ebf84589cf3a7cae23":"NHC5lD{Kxw$yKQT03CBnNYxuwNxFS%t8nhS$X8X8"}},"LocationType":"FileSystem"},"0c80deb57ba94b84d19ff12ce137f25d":{"Name":"Invader ZIM","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0c80deb57ba94b84d19ff12ce137f25d","PremiereDate":"2001-03-29T22:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9.4,"ProductionYear":2001,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":90,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75545"},"AirDays":[],"ImageTags":{"Primary":"dfeb264628aab4897a0534a02a972f4e","Art":"9f6bf65547c2feb92778ec25816be320","Banner":"bd108a8f5088dac88bdc2b9345b44290","Logo":"7b4900b28343be4cd95ff206cf046733","Thumb":"ceb64ee2101bc5eeb4490064d7283ee8"},"BackdropImageTags":["fa227d1af3cb2e13e879e3f441dd1e7e"],"ImageBlurHashes":{"Backdrop":{"fa227d1af3cb2e13e879e3f441dd1e7e":"WrLnI=+_VuO;WX#A};i|RRO;a#aL$$=HwdoxsTR+RlxEs.wxsAoe"},"Primary":{"dfeb264628aab4897a0534a02a972f4e":"dJDH?vxc56-VEAnVWlNY8}sn%aI.}_SvS3-W%Mr{IDah"},"Art":{"9f6bf65547c2feb92778ec25816be320":"N~M@WJof~qf8%2ofozj[n%ayW-bGR*j[ofayf6j["},"Banner":{"bd108a8f5088dac88bdc2b9345b44290":"HPG@.U56M#?C0f^kEv01t7^kjeobxrIoVtJ}w}R8"},"Logo":{"7b4900b28343be4cd95ff206cf046733":"O~N-4TkB~qofayofIUt7juafa{bFbFjuozjbaLW.bFjaj["},"Thumb":{"ceb64ee2101bc5eeb4490064d7283ee8":"NCH2*k%TIU*Fpz.5rM%wS4O7tin9EJo{r{R7t8o{"}},"LocationType":"FileSystem"},"ca7501a7b2dcc1cc3e4a6880531318fa":{"Name":"The Triangle","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ca7501a7b2dcc1cc3e4a6880531318fa","PremiereDate":"2005-12-04T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":6.5,"ProductionYear":2005,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":3,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75599"},"AirDays":[],"ImageTags":{"Primary":"69956e5efc3d2a93312828b0f833a651","Banner":"90b247a0abe96fc7eec12d3724721c77"},"BackdropImageTags":["1f75ae60c6f9c6b83e2035c9cc831480"],"ImageBlurHashes":{"Backdrop":{"1f75ae60c6f9c6b83e2035c9cc831480":"W43+lxx[8xDPx[%ys9t8RjRjWBjY8|RP.R%yIUIBM_WBt7tQkBR%"},"Primary":{"69956e5efc3d2a93312828b0f833a651":"dE6k^u%MM{IVDNRkoIxZXURPofoz$_x]bJM{DjMxxu%M"},"Banner":{"90b247a0abe96fc7eec12d3724721c77":"H97n8w0f?Hoe9G$%4:-VE1?aIp%2j?M{s.IV%1E2"}},"LocationType":"FileSystem"},"c96b02961a89b67ebb8cbd755a4cc415":{"Name":"Kindred: The Embraced","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c96b02961a89b67ebb8cbd755a4cc415","PremiereDate":"1996-04-01T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7,"ProductionYear":1996,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":8,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75758"},"AirDays":[],"ImageTags":{"Primary":"ff6d2cb211641130d5c65e627afaffd2","Banner":"d23fb588089dfea4ab75ad8eee15b319"},"BackdropImageTags":["6c077296d105b8df15692e0c01bb1f04"],"ImageBlurHashes":{"Backdrop":{"6c077296d105b8df15692e0c01bb1f04":"WO9Qp,t74mV?%gkD-?ofD$Ri%Nt8IVWCt3WBo#t8M{ae%2t7M{WB"},"Primary":{"ff6d2cb211641130d5c65e627afaffd2":"d99s0Y%156v~-UbHRjsA0fRk-:XSMenjxuSztQs:V@WB"},"Banner":{"d23fb588089dfea4ab75ad8eee15b319":"HB8yxOE1k9,[V@AC#-={0}^PM|$%WCoeWVR*-UEL"}},"LocationType":"FileSystem"},"6ef9010c04c1814830ccbaa43834575a":{"Name":"South Park","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"6ef9010c04c1814830ccbaa43834575a","PremiereDate":"1997-08-12T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.7,"ProductionYear":1997,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":309,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75897"},"AirDays":[],"ImageTags":{"Primary":"596d99f55bbbc0f488b76b0b610e986a","Art":"8b9d1ae7ec9edc2c0211993d35250a7a","Banner":"db698bf0e31d01dfb75f806660afb216","Logo":"4bd27a89ab53334d416bdd8fa03f2a8b","Thumb":"8c0853afdbaee60e867abce6457e0739"},"BackdropImageTags":["4d141b412218b80334978591790e0ee5"],"ImageBlurHashes":{"Backdrop":{"4d141b412218b80334978591790e0ee5":"WRIORlxv.8$$M}x]9[NHVsnOV@NG%ioeSioMx[S~.mxtV@s8wybc"},"Primary":{"596d99f55bbbc0f488b76b0b610e986a":"dzIr?8xvS~xuPpS#R,bb.Tofn%bbpIspoJX9NIbFjZW;"},"Art":{"8b9d1ae7ec9edc2c0211993d35250a7a":"NYFz.#r@I[OrSzsp0|odRkninjR+n4SzWnn%oLWU"},"Banner":{"db698bf0e31d01dfb75f806660afb216":"HmN],.Ib1b-;Ip$4bJXRM{_MMfE1tRNLjd%2bwt7"},"Logo":{"4bd27a89ab53334d416bdd8fa03f2a8b":"O~R.ofofW=ofj]ofbIoffQfQjtfQfQa|*0fQn~azf6azjY"},"Thumb":{"8c0853afdbaee60e867abce6457e0739":"NvK1t7o}kDr]nkbcAGXSV@RjS1jF?wi|kBX5R*s:"}},"LocationType":"FileSystem"},"0cab579f99dbbe2a6c9839c1ce922a34":{"Name":"Elfen Lied","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0cab579f99dbbe2a6c9839c1ce922a34","PremiereDate":"2004-07-24T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.2,"ProductionYear":2004,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":14,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75941"},"AirDays":[],"ImageTags":{"Primary":"353b5164e3b2e7622568a69debe4fbc4","Art":"3486cd845a77b43c162dc69a78b3ddef","Banner":"80e353b5609b1c0d759326dc146184be","Logo":"832437a827c846577e48d869fda81a56","Thumb":"de7f307d7c3d9c616a0b0b2d9df61052"},"BackdropImageTags":["85f91194265f6ba25eda3f05e8332587"],"ImageBlurHashes":{"Backdrop":{"85f91194265f6ba25eda3f05e8332587":"WPJ65B?IH=rCt7$i:jRj^k^R-p$+}ts:WAs:%3tR}]tRM_M{bbbH"},"Primary":{"353b5164e3b2e7622568a69debe4fbc4":"dUIWsNxa4ms+v}NZo#xH4nxGx]RQxus;IoRjtRRkI:Sh"},"Art":{"3486cd845a77b43c162dc69a78b3ddef":"NWCFFy0z=|D%T0wIaebbWBxaNHs.NGj?WVt7bHoL"},"Banner":{"80e353b5609b1c0d759326dc146184be":"HKBURd1GjE=|IUS}$kIoTJ;hJ,weS2oLsAW;j[Nb"},"Logo":{"832437a827c846577e48d869fda81a56":"OaDl]6WB4mozWAofRjx[t8RjRPWBj@t79YbFxvWBt7t7j["},"Thumb":{"de7f307d7c3d9c616a0b0b2d9df61052":"NcOwl._9-#K%#7%1;1o}S#nht7S1xGR+ayxDNdju"}},"LocationType":"FileSystem"},"17ad6d5b642d7b224544bc885302ea7f":{"Name":"The Ren & Stimpy Show","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"17ad6d5b642d7b224544bc885302ea7f","PremiereDate":"1991-08-10T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.6,"ProductionYear":1991,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":117,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"76088"},"AirDays":[],"ImageTags":{"Primary":"0574ebb79d4350f46f426bd6f95154da","Art":"9f1829f670804c3debe73e14e0557df6","Banner":"297a22f09037b5395fd7862e68d96e6c","Logo":"dc0e7a3c01699aa6c8639ac19d78bebc","Thumb":"16dcad9a029896b0e2951d41ce63efbc"},"BackdropImageTags":["f773602accd9fc034b7433e5946fa358"],"ImageBlurHashes":{"Backdrop":{"f773602accd9fc034b7433e5946fa358":"WKFqtEOqMd-;JCiv={NHRjoyWXr?01M{t7M|Sxt6rDX9T0nOs+bw"},"Primary":{"0574ebb79d4350f46f426bd6f95154da":"dQCH5d?IA2NipcoxxAxV1BIq-ix]r$jKJCI^NQW@ROMy"},"Art":{"9f1829f670804c3debe73e14e0557df6":"NoK^y*4ngOWVNFo}XSkDxGoeW.jZ_NM_%MozRPsp"},"Banner":{"297a22f09037b5395fd7862e68d96e6c":"HLFNeu=x=yoe9]nPNsn+Ef}[NGxaodn~=xxFxHaf"},"Logo":{"dc0e7a3c01699aa6c8639ac19d78bebc":"O,O:%~of_Na#xuofIUt7j@ayWVofoffQt7ayWAj[j[oej["},"Thumb":{"16dcad9a029896b0e2951d41ce63efbc":"NRRVtk_N?^rXtlr^%gVst6pIjGV@%#RPROkpaeni"}},"LocationType":"FileSystem"},"62c787147894f18d5b69c123f7848d2f":{"Name":"Batman: The Animated Series","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"62c787147894f18d5b69c123f7848d2f","PremiereDate":"1992-09-04T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":9.1,"ProductionYear":1992,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":86,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"76168"},"AirDays":[],"ImageTags":{"Primary":"6a6e54cb4793f44b7c2a0ee8ebd8a380","Banner":"565a9e251953a0925550c2dd9f982f18","Art":"4bf72d624f46bf2d48550748539b8aec","Logo":"0aebea8cb8b5df2fe5c63ebe3c8ef04c","Thumb":"8c34df11d3793aea41883780e2004841"},"BackdropImageTags":["6730d5b476eaeb2f73bb7a9aa188cde6"],"ImageBlurHashes":{"Backdrop":{"6730d5b476eaeb2f73bb7a9aa188cde6":"W56?rk-A68X9f6xa}As.W;smShw]n$J8s9$Mn%WB=dWVJTofn%kC"},"Primary":{"6a6e54cb4793f44b7c2a0ee8ebd8a380":"d98gjS^+4.9t4TMxtRXSxaofR*X8R*NGoft70KR*-;so"},"Banner":{"565a9e251953a0925550c2dd9f982f18":"HC8NU%%g9t$*$jXmtRZ$Rj~Wx]J,xGxGb^o}n4M{"},"Art":{"4bf72d624f46bf2d48550748539b8aec":"NiGkwb~qyD-;-px]wJNGI:aKVsR*enR*oz%2s:R*"},"Logo":{"0aebea8cb8b5df2fe5c63ebe3c8ef04c":"OdOM$}oLs:t6ozt7s:*JbbjbbHn%f+bH;fjFbHWVbIWBbH"},"Thumb":{"8c34df11d3793aea41883780e2004841":"NA9Qs|x{4m4mRjxtr-Dh%gtSM{jbM{D%t7%Mohxv"}},"LocationType":"FileSystem"},"7665fd0f04b79e844e97a03cfde06ba5":{"Name":"10 Cloverfield Lane","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7665fd0f04b79e844e97a03cfde06ba5","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-03-09T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":62148161536,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"333371"},"VideoType":"VideoFile","ImageTags":{"Primary":"ed610067d1ca1a991b9eff073218bc6a"},"BackdropImageTags":["c86ec97bf1d7593756619ee69cc18a84"],"ImageBlurHashes":{"Backdrop":{"c86ec97bf1d7593756619ee69cc18a84":"WJ8#yR.RR*MytQ%fyWtQRjWCofoe8xIBVttQWUMyrYi{V[bFofof"},"Primary":{"ed610067d1ca1a991b9eff073218bc6a":"dO9tZAWBD%ofI.t7oMj@koa{jIt6_NaxIBay9Yt7xaay"}},"LocationType":"FileSystem","MediaType":"Video"},"ec4a43d148e4dbaff5e3ae2eb2cfe099":{"Name":"Cowboy Bebop","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ec4a43d148e4dbaff5e3ae2eb2cfe099","PremiereDate":"1998-04-02T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.1,"ProductionYear":1998,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":30,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"76885"},"AirDays":[],"ImageTags":{"Primary":"6f6a2608f4c9dd3f77146d2469ef85c6","Banner":"8631e41111faa06e4251dcf7d93edf69","Art":"87951418e5099549e8071603d7c1199f","Logo":"78489882e30c57d3b7e6fde3cabfed1d","Thumb":"2b368c2fd5c5409f40a946aa3a9c77c7"},"BackdropImageTags":["5f214a6624601f3a00afb5da09e3c6a9"],"ImageBlurHashes":{"Backdrop":{"5f214a6624601f3a00afb5da09e3c6a9":"W36*UO0L01?aMv^~NbIU?F%g9#IAITRPtQ-:D,Rq~oog0MRQ-.?Z"},"Primary":{"6f6a2608f4c9dd3f77146d2469ef85c6":"dZE{61gfocxas%t6s.R*4TNZoeWBxHNZWBt7tkw}jHR*"},"Banner":{"8631e41111faa06e4251dcf7d93edf69":"HkONB]_3xuIU%M-;WBt7?b~q-;RjM{%MRjt7j@xu"},"Art":{"87951418e5099549e8071603d7c1199f":"NMA]]I-oIotSR,M|~qxuIo%Ms.V@?vkXM{%Ms.jE"},"Logo":{"78489882e30c57d3b7e6fde3cabfed1d":"OtJuAaof00j[D%Rjoft7j[j[j[WBj[WBM{j[ofayofayay"},"Thumb":{"2b368c2fd5c5409f40a946aa3a9c77c7":"N8BVFVGttQAE#U5X4.9Z-5I?wJIqg5Os}XENklox"}},"LocationType":"FileSystem"},"560d7461850b2ea308d29cd5a0b1ea5a":{"Name":"Courage the Cowardly Dog","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"560d7461850b2ea308d29cd5a0b1ea5a","PremiereDate":"1999-11-11T23:00:00.0000000Z","OfficialRating":"TV-Y7","ChannelId":null,"CommunityRating":9.1,"ProductionYear":1999,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":78,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"77435"},"AirDays":[],"ImageTags":{"Primary":"705b06b8b98f363c4a5e2b6825db6bbd","Banner":"607df10ffc9adfbb0db3fa5b96574317","Logo":"2210704fe5ebbcf6d8175969363963d4","Thumb":"dad2cfd7961fa5c3a9e96ae052264ffd"},"BackdropImageTags":["8a2ec9249fdd9f8e558d0c1965275ea8"],"ImageBlurHashes":{"Backdrop":{"8a2ec9249fdd9f8e558d0c1965275ea8":"WXNlPf-B_2?aa#?Z~VjZo|bcn+t7-VtkIUaK%1aL-V%Mn+oLtPax"},"Primary":{"705b06b8b98f363c4a5e2b6825db6bbd":"dYLW#BS~In?b00R6R%X69ao[s;V[pb%LxbWBD$RUt7V@"},"Banner":{"607df10ffc9adfbb0db3fa5b96574317":"HXFrrT}TXTGw2vcGKQ7gtm^U;2ofKkO@TJTJO@KP"},"Logo":{"2210704fe5ebbcf6d8175969363963d4":"OiJ~_ssoX9WXogs.f,;So1X7bHbGf7bHuibHsAjbafW;jZ"},"Thumb":{"dad2cfd7961fa5c3a9e96ae052264ffd":"NINJwj}rKMK6.k.8}=s:X.RjR6S~_1K*S~#RIBV@"}},"LocationType":"FileSystem"},"77dc28b8f24126a09a16db4972471787":{"Name":"Captain America: The Winter Soldier","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"77dc28b8f24126a09a16db4972471787","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2014-03-19T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":81542397952,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"100402"},"VideoType":"VideoFile","ImageTags":{"Primary":"4e3dd0f6b0d179a2184944af202c300a","Art":"d8195b341f9d58c20496f423173856f5","Banner":"6e933327d62d6c102eb660335be7f9eb","Disc":"effd96b719309063af530aa588f56e7b","Logo":"e0cc9c9426c4ac375c4f1e59cba0685c","Thumb":"1613eda2a4d144c4590c0ef3ff428878"},"BackdropImageTags":["a339fb302864bab5fea3050b3df088df"],"ImageBlurHashes":{"Backdrop":{"a339fb302864bab5fea3050b3df088df":"WbDm2ORjIU-;ITIU_NkCIUxuWBM_-qj[IUoft7RjxuWBM{ayoJof"},"Primary":{"4e3dd0f6b0d179a2184944af202c300a":"dID,4O-;-:-:tl%Mx]xt0NM|E2NGM|M|IBE2D%f6a#NG"},"Art":{"d8195b341f9d58c20496f423173856f5":"NXG]8XRjt7WBM{RP_MWBxuWBRjRP~qoft7RjM{ae"},"Banner":{"6e933327d62d6c102eb660335be7f9eb":"HSGup=SioLxtNKRkt7-:of~pV]NH-:t7t7M{W;-o"},"Disc":{"effd96b719309063af530aa588f56e7b":"eXIXp+S4_NW:%N$*Rkjtf6R*~qaK%gs:jEtQo0Rjt7nitSa#a_ogRP"},"Logo":{"e0cc9c9426c4ac375c4f1e59cba0685c":"OxQ9_@j[WBj[WBj[ayxufQayj[ayj[ay~qofkCj[j[j[j["},"Thumb":{"1613eda2a4d144c4590c0ef3ff428878":"N9B4,b?^K%-;x].7L3yD.7x[M_%ME3o|R5M|iwIV"}},"LocationType":"FileSystem","MediaType":"Video"},"f9840bae5081ea69f46486bd970c47a2":{"Name":"My Life as a Teenage Robot","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f9840bae5081ea69f46486bd970c47a2","PremiereDate":"2003-07-31T22:00:00.0000000Z","OfficialRating":"TV-Y","ChannelId":null,"CommunityRating":6.4,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":75,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78444"},"AirDays":[],"ImageTags":{"Primary":"3ca29022a73393d7946cef01586626a2","Banner":"a9b628a79835c5ade847df131d032ea8"},"BackdropImageTags":["23f4873a75d4f1d42fe3fc5dea35bdfd"],"ImageBlurHashes":{"Backdrop":{"23f4873a75d4f1d42fe3fc5dea35bdfd":"WcFs9m~kouW.IUs+-%-ixaS6WBj?RPWBa$jdogNHx@xrV?RPW=kD"},"Primary":{"3ca29022a73393d7946cef01586626a2":"dyJkl,yDg5%3~qWBxZxukqWB%0t7tle;WCbFt7oLaxWX"},"Banner":{"a9b628a79835c5ade847df131d032ea8":"H~P6~wM|tR%MsmtSof%Lxu~qoLbHt7j[ayofozj["}},"LocationType":"FileSystem"},"569f7fca1a948552c87ada1bafc96d62":{"Name":"Clone High","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"569f7fca1a948552c87ada1bafc96d62","PremiereDate":"2002-11-01T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.5,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78560"},"AirDays":[],"ImageTags":{"Primary":"b9dd828c9e436bd5c3bae9ba6dc1d947","Banner":"17488fb52019ee58a766408952c88c4b"},"BackdropImageTags":["d52a05545edb4cf076602d6b00092656"],"ImageBlurHashes":{"Backdrop":{"d52a05545edb4cf076602d6b00092656":"WUKw:p%1-:%KtO.6_LXRX5xuaLaKpHRjM}oMWYS#%eo|WBV@s+sS"},"Primary":{"b9dd828c9e436bd5c3bae9ba6dc1d947":"dSG*=^-psoxuMet7xat74URjjFRP%fjGV[aeIUozt7x["},"Banner":{"17488fb52019ee58a766408952c88c4b":"HZHH[M$%AEafNHV[odn%WC}Xs.NbafR+WCodjZWC"}},"LocationType":"FileSystem"},"9a382927156b2c1a65782e82c1ad5156":{"Name":"Serial Experiments Lain","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9a382927156b2c1a65782e82c1ad5156","PremiereDate":"1998-07-05T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.3,"ProductionYear":1998,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":15,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78814"},"AirDays":[],"ImageTags":{"Primary":"71b6775ce255c40b11f56382e13bcc72","Art":"595d792dc4240b768ce72bf7d7314360","Banner":"c1ab7574839dacdd639acdb2b083a07f","Logo":"3dc54f07ef24ca113e15873a200c7602","Thumb":"6a5db1e51220b8b02576144c0d72d26e"},"BackdropImageTags":["daae48c3552c996386ac36686ff33022"],"ImageBlurHashes":{"Backdrop":{"daae48c3552c996386ac36686ff33022":"W8B:,9%MRPIoIn%L?HROWAX4Inxv0JM{.8x^%Njs%gt5o#RPV?IT"},"Primary":{"71b6775ce255c40b11f56382e13bcc72":"dMF#,x-p?b^,b^oy9ZX7~qxu-q-p-;WTkBf69YbYRjIo"},"Art":{"595d792dc4240b768ce72bf7d7314360":"NuK1zY~qozxaIURjD%IARij]t7oeE1M{ofRjs:t7"},"Banner":{"c1ab7574839dacdd639acdb2b083a07f":"HB9Hnr.AI9xVt7NGaexvIUMwocsks:I9ROx]IUR*"},"Logo":{"3dc54f07ef24ca113e15873a200c7602":"OFIOe9RjxufQoft7a{4nxaofRjofxut7~qxuxu?b%MD%ae"},"Thumb":{"6a5db1e51220b8b02576144c0d72d26e":"NMMr6dAIER=w=s}p=_s-I@I[oKa#R-s,WXNds,sm"}},"LocationType":"FileSystem"},"d4e8c22889f40a50322e3460773dfe6a":{"Name":"Firefly","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d4e8c22889f40a50322e3460773dfe6a","PremiereDate":"2002-09-19T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9.5,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78874"},"AirDays":[],"ImageTags":{"Primary":"be713254032f4aab7d05b1800bdfbb0a","Art":"8e05d18b6f4208e1f679b857bced37a1","Banner":"84a80871e1178940794c6cdb4214c155","Logo":"b329159b48405f3b1586b52e808e1b57","Thumb":"02fcb5a9da23c16aed788965287d0b0b"},"BackdropImageTags":["8707b6e2cc2225155639a7110f92da6e"],"ImageBlurHashes":{"Backdrop":{"8707b6e2cc2225155639a7110f92da6e":"WMByBO-U0#9vxZ-oEMI:n$xY%1n%NHjZxZxZX8NHxtt6NHRkj[WB"},"Primary":{"be713254032f4aab7d05b1800bdfbb0a":"dBDSRC-OnQD+?^Vr57IW5Z9Zs8R+^+xsnNEN-o-.IUfA"},"Art":{"8e05d18b6f4208e1f679b857bced37a1":"N=L4EF~qtRR%t7%L%gx]WBRPRjbHXSbHe.aejZay"},"Banner":{"84a80871e1178940794c6cdb4214c155":"HXA-0U%hX.*0tmSjkYtSR._3%NgOyDtSR.R-ogRk"},"Logo":{"b329159b48405f3b1586b52e808e1b57":"O%Nl0_oL?^j[.9oet,xFaybHoLbHWWbHrXWVX8bHbboKbH"},"Thumb":{"02fcb5a9da23c16aed788965287d0b0b":"NDDuF^%1,.i_s.jJ9}S5ENRjIpWC0$kCI[xEV@R%"}},"LocationType":"FileSystem"},"1358e2cb4dd88c21bbf6f528a4ea55a3":{"Name":"Connections","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"1358e2cb4dd88c21bbf6f528a4ea55a3","PremiereDate":"1978-10-16T23:00:00.0000000Z","ChannelId":null,"CommunityRating":8.8,"ProductionYear":1978,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":40,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78875"},"AirDays":[],"ImageTags":{"Primary":"428f60b69a2da09086e039437beb77b4","Banner":"ecac7b42fd193259e44530ec8ffc5a85"},"BackdropImageTags":["171586da29e4c907ffe6e28dc8318fea"],"ImageBlurHashes":{"Backdrop":{"171586da29e4c907ffe6e28dc8318fea":"WEGu~^%#4.?a.8%M_NE2M{Mx%MofS6t7xtIUoft7-;t6RjoykB-:"},"Primary":{"428f60b69a2da09086e039437beb77b4":"dNAdArxu4TM{%MofRjWBD$ae%Nog-;ofM_V@xvj]Riax"},"Banner":{"ecac7b42fd193259e44530ec8ffc5a85":"HbECzo%NWFt7IURi9ERiM{~qxvflofM{RiITRjRj"}},"LocationType":"FileSystem"},"ee546eae7a5ba9a247db4f86f59462b1":{"Name":"FLCL","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ee546eae7a5ba9a247db4f86f59462b1","PremiereDate":"2000-04-25T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2000,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":18,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78878"},"AirDays":[],"ImageTags":{"Primary":"a72065a0e3e996c5b9587b1a173611d3","Art":"3a9a2a70e46133d568524969668a24b4","Banner":"a3c5c5758facc0692701f151353924f6","Logo":"c807d8b57bc0f7d27b6a13063e574dbe","Thumb":"f30c426df58437d6a121eb0f3dd54bca"},"BackdropImageTags":["5920571a9408b6f550e87dff6e16757e"],"ImageBlurHashes":{"Backdrop":{"5920571a9408b6f550e87dff6e16757e":"WYPi66?]X2hzx??Gs%obMwW;-oRQD#i^M}Xos;Rm~T$~bxRjn#kC"},"Primary":{"a72065a0e3e996c5b9587b1a173611d3":"dkLzEM%2-.-o~Ut7xC%0tJs,nOjYouoKSij[-.sms:t6"},"Art":{"3a9a2a70e46133d568524969668a24b4":"NREn*L#TxaSgI:rs0fJ6WB$*agoy5QbvNGRkxaI:"},"Banner":{"a3c5c5758facc0692701f151353924f6":"HzK_2q-nIqx]%fRjRj%MtR~q-oRkX9ozogoLxtx]"},"Logo":{"c807d8b57bc0f7d27b6a13063e574dbe":"OVEyb[xu00j[IUD%WB%MxuRjRjRjIUof9FofxuRjofRjxu"},"Thumb":{"f30c426df58437d6a121eb0f3dd54bca":"NaI4;bokv$z:WAx]~XR8#l#kj=ozD,Q-wIrrkCX8"}},"LocationType":"FileSystem"},"64b2f77ca250c274b24adff9b2f93d85":{"Name":"Supernatural","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"64b2f77ca250c274b24adff9b2f93d85","PremiereDate":"2005-09-12T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":9,"ProductionYear":2005,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":329,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"78901"},"AirDays":[],"ImageTags":{"Primary":"c2a1a8bd05acf0de5652af227d36a320","Art":"772d84c004f98f1c63fb7e41b4df800b","Banner":"715c0ff0aae6386dcb5db66567b9cedb","Logo":"d35744e95ef9a7fc333d0ead991bfea2","Thumb":"db96534f8655ec06ceb99321613fd91a"},"BackdropImageTags":["033adf68f89860f2e1407806533ad9e9"],"ImageBlurHashes":{"Backdrop":{"033adf68f89860f2e1407806533ad9e9":"WVEySjxuIBRjD%M|t6t7ofofM{Rj~qWBM{ofM{oe-pjtRjofWBj["},"Primary":{"c2a1a8bd05acf0de5652af227d36a320":"dFATZf%N0fS%_3t7E2bIIoRjxYn~D*WB%LofE1a#xukC"},"Art":{"772d84c004f98f1c63fb7e41b4df800b":"NRKKc$XT~qxa?bVs~WNGIoRjRje.yDjFaekCaexu"},"Banner":{"715c0ff0aae6386dcb5db66567b9cedb":"HC9j_w~qIU4.9Fjr%2xuM{?c-;ayIoM|WBj]j[of"},"Logo":{"d35744e95ef9a7fc333d0ead991bfea2":"OURftQWBofjZofj@ax%LWCayoffPaxay?Kj]a#bHWCj[fR"},"Thumb":{"db96534f8655ec06ceb99321613fd91a":"NUEo#$xaIUM{D*Rjt7%2WCRjNGWB~pRjM{j[V@of"}},"LocationType":"FileSystem"},"79051c7e4e73d20e2f2ed84a5293b841":{"Name":"Geostorm","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"79051c7e4e73d20e2f2ed84a5293b841","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-10-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":65471578112,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"274855"},"VideoType":"VideoFile","ImageTags":{"Primary":"c8b202d2537010b961cb21f6c4215508"},"BackdropImageTags":["e923ec5a21bda5ac70e8eaae43df8906"],"ImageBlurHashes":{"Backdrop":{"e923ec5a21bda5ac70e8eaae43df8906":"WK7LWGogDNM_x]xv%hogMwV?t8ozRPkCt7jERkbItRayofWBRPoz"},"Primary":{"c8b202d2537010b961cb21f6c4215508":"dTBNi_tSDhV?_NozRijY%gbIW=bI.8t7MxRj%MxuR*Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"b7aeb2908b6c07dd3df62e1bc73e8a0f":{"Name":"Ergo Proxy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b7aeb2908b6c07dd3df62e1bc73e8a0f","PremiereDate":"2006-02-24T23:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":23,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79228"},"AirDays":[],"ImageTags":{"Primary":"03265b5533bd5274cf9842bdf640d646","Art":"fffeced7acf6fa14be34d2f5fc4c9397","Banner":"7f05edaf793c8a21d6d1ccd4c8d9ce37","Logo":"7e64290e373606013c4b75ab03cbd51f","Thumb":"340402ad8aebf6cfc0a18bfad9071440"},"BackdropImageTags":["cdfc9873be96a12070b513e7351ed4d7","2df3ea569696ebd702fe205d24053744","c2755fd74d02947a1acf3842198a3d47","2ce99ccc511e364b3c21270d45ad3f3f","9d7f57a8e9a15c35e2619ed5dd907ae5","c82b68592b18139ace99dfd706bd6df0","beea43f3f35a267dc4f6c311a2ab8278","9c7e7d6fe902185bb0d3ace1afa89bdc","c5d58424f75e0475faa19a378ce5c6ee","234c99a2aa79f4229960a4de55264ae0","1abf7eba9db4528bf7953652486d2015","df19e487209430dc49c1cbc6b6eb9e27","88b330ea89a414c6d2d145cdfb7abd9f","acc5caa2e891bc0987883ddefa9a8d89"],"ImageBlurHashes":{"Backdrop":{"cdfc9873be96a12070b513e7351ed4d7":"WI9Q+]ofMyRQMy-:_KkBRQjZM|xtIVa|oe%KazM|4VRkt6%LxtIC","2df3ea569696ebd702fe205d24053744":"WB7^_Q~q%NofD%4n?b-;tRWBD%9Fxuj[RjRjRjM{t7xus:WBayof","c2755fd74d02947a1acf3842198a3d47":"WQBWi600-;WBIU%M?bIAxuoeM{tRM{xuRjt7WBWBRjt7V@WBofRj","2ce99ccc511e364b3c21270d45ad3f3f":"W87dwTx[D%M{xt-:~pkC4oMyt7%L_2j]9FD*ogxu_2xtD%IUxu%M","9d7f57a8e9a15c35e2619ed5dd907ae5":"WHC5F,1KslRjELjF-VoyNH$%I:EMM|$%J8%1j?E2-AJ8s:$jEfaK","c82b68592b18139ace99dfd706bd6df0":"WI9Q+]ofMyRQMy-:_KkBRQjZM|xtIVa|oe%KazM|4VRkt6%LxtIC","beea43f3f35a267dc4f6c311a2ab8278":"W45#eI~qM|0101D%?b%MIo9ZD*j@ofaeRjM{Rkxu%LxaRkM|WBxa","9c7e7d6fe902185bb0d3ace1afa89bdc":"WDBfni9Zbw=|M|I;tRIoWBxaIoWB00xGM{Shxts,IUt6jsbcxuWB","c5d58424f75e0475faa19a378ce5c6ee":"WcFioY8_00_MnmD%M{xbV[bat7RjM|x[ofIVownlxuRjj?t7fiRj","234c99a2aa79f4229960a4de55264ae0":"WfI}q.xux]WB~q_3%Mf5M{NG%2t7NFbHxut7V@e.%Layt7s:xuxa","1abf7eba9db4528bf7953652486d2015":"WUGSfYgNI:-qIA4TeURPDi?uM_R$9FRj%MSgNHx]M_IUM|RP$*RQ","df19e487209430dc49c1cbc6b6eb9e27":"W884b%xu9FRjt6-:_2oz9FIUxu%L_3j]9FD*kCxu~pt7D%IUt7%M","88b330ea89a414c6d2d145cdfb7abd9f":"WyMQ#3~qIU?axuagRjofa|RjxtoeM|t7t7Rjs:WA%Mt6t6xbf7WB","acc5caa2e891bc0987883ddefa9a8d89":"WbHxB1_20KD%-;-:MxIVS5t7j?WBE1M{RjR*oLfQ?a%Mayofxtj["},"Primary":{"03265b5533bd5274cf9842bdf640d646":"dTG7V$^g}Ywv9$MzE3of-:-oR%xG$+EgM{R.EgafJ7kD"},"Art":{"fffeced7acf6fa14be34d2f5fc4c9397":"NVCPkjD*D%%LR*xt0L-p%MM{j?NG-:RjRja#oft6"},"Banner":{"7f05edaf793c8a21d6d1ccd4c8d9ce37":"H54.*ZxIHs%ytkWBM{8xDk%fxuoLj[tQafMyM{M|"},"Logo":{"7e64290e373606013c4b75ab03cbd51f":"O65OQnt7t7WBxuWBofxuj[WBoft7j[ay00RjRjt7RjofWB"},"Thumb":{"340402ad8aebf6cfc0a18bfad9071440":"N78;Su-:4nM{-:-:?aIp4oRj%Mxt~pWC4oIUt7xu"}},"LocationType":"FileSystem"},"a152f6c6c3c9ea25834fffcd1831420f":{"Name":"Galaxy Angel","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a152f6c6c3c9ea25834fffcd1831420f","PremiereDate":"2001-04-06T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8,"ProductionYear":2001,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79289"},"AirDays":[],"ImageTags":{"Primary":"941579813f57a2325a21353c07654f0e","Banner":"c1a44a0dc403cb1a946a7450d934f71a"},"BackdropImageTags":["451060de1339a9fa8f1c5cac76b3048e"],"ImageBlurHashes":{"Backdrop":{"451060de1339a9fa8f1c5cac76b3048e":"WVNvJfYRaK?H-=.8~XOoj;x[t7xZ$,tki|Rirqxa^mSzNaV@NG-;"},"Primary":{"941579813f57a2325a21353c07654f0e":"dTI4I*=y0ytS%2tRNF$*RjOXXSxGogngM_ODJ:S5oHsl"},"Banner":{"c1a44a0dc403cb1a946a7450d934f71a":"H~QHhqixRP%2t8xHa#xbbE~De.V@jZjZj[j[s;ay"}},"LocationType":"FileSystem"},"d5c8a487c82ec136b2b597ae4955be90":{"Name":"Eureka","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d5c8a487c82ec136b2b597ae4955be90","PremiereDate":"2006-07-17T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.6,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":77,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79334"},"AirDays":[],"ImageTags":{"Primary":"46337607750b6631f5c263f12b1a0396","Art":"e9b785cef730e8babc45de8ddb880665","Banner":"83046d1ddf9b245ef30c3244f69f5ec6","Logo":"ec7195aec761d61de55c6ffec9a11222","Thumb":"91c99dbfe89f1d65b7c2a49b160e7584"},"BackdropImageTags":["fe41e068e14cf6cf6d69884269fb58c3"],"ImageBlurHashes":{"Backdrop":{"fe41e068e14cf6cf6d69884269fb58c3":"WaM@yGyZk?$Jx].8K-Iot6nho#o~59W?t6t6M|RkXUS6tRs,RkWB"},"Primary":{"46337607750b6631f5c263f12b1a0396":"dVE|M7%MD*bw_NxDs:tRE2jE%2t7Gbbwt6j[ofWWR*WV"},"Art":{"e9b785cef730e8babc45de8ddb880665":"NUJuMzMwMx9vwasm_3D%%gt6s;xu?wX8oLxENGWB"},"Banner":{"83046d1ddf9b245ef30c3244f69f5ec6":"HsHCpHyZNzw[R-S%XAWBR,cIS*NJjFofkCa$jvR*"},"Logo":{"ec7195aec761d61de55c6ffec9a11222":"Op9l2qWXs.t7n$ozbHRjayRjj]bHWBayHqj?WVRkbHWBay"},"Thumb":{"91c99dbfe89f1d65b7c2a49b160e7584":"NpE;7cxvwatQi^oI*0f,RQkDaebbOGW=Nbj[X8X9"}},"LocationType":"FileSystem"},"c4419473ef35ee4cc8c7e1ce262d1293":{"Name":"Death Note","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c4419473ef35ee4cc8c7e1ce262d1293","PremiereDate":"2006-10-03T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":37,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79481"},"AirDays":[],"ImageTags":{"Primary":"6f5fb6773816690971d508134e4bcddc","Art":"6bf9c888447f8e67ce3595e30bb6ea8a","Banner":"44ac045e1c4ce199325b45b03fda3b32","Logo":"06f6920af21b8c496cd0df5228bf4459","Thumb":"615ab3630d02c396a12e90fb7d9d7f74"},"BackdropImageTags":["69c086a5e2497c8066b93230c2d15147"],"ImageBlurHashes":{"Backdrop":{"69c086a5e2497c8066b93230c2d15147":"WNGR^$4p-#yFImIBD*?a%NM_IB-;0L-.D+Mw%NM|%1IWRiogWBD$"},"Primary":{"6f5fb6773816690971d508134e4bcddc":"d23l8W-;9EIU~q-;D%M{-;xut7xuWAt7?b-;M_t7?c-;"},"Art":{"6bf9c888447f8e67ce3595e30bb6ea8a":"NHAI[N0fsV=|9txu#8F_o1rrb^V@iwt7oLRjbvr?"},"Banner":{"44ac045e1c4ce199325b45b03fda3b32":"HE9Qmqt7t7M{00xuRjM{WB?bxuofM{IUj[WBRjj["},"Logo":{"06f6920af21b8c496cd0df5228bf4459":"OA7[tWo1NusnsUa|snw{jtsnsUo1Wpa|1wa|sna|a|a|Wp"},"Thumb":{"615ab3630d02c396a12e90fb7d9d7f74":"NGCP@e004n~qIUt7RjM{-;ayD%of9FRjofWBt7M{"}},"LocationType":"FileSystem"},"fcb3d70c64ab3b9a7a8d0e86ea98c76c":{"Name":"Heroes","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fcb3d70c64ab3b9a7a8d0e86ea98c76c","PremiereDate":"2006-09-24T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":78,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79501"},"AirDays":[],"ImageTags":{"Primary":"b36207655884728181df5260902c2937","Art":"b1120aed4e268816f38033708e1450c0","Banner":"041274d157f4eda6aa948065ae762ad5","Logo":"ac539445bb983737a1578f9620b28e37","Thumb":"e2c298f9d1a4ab704f3202910550361a"},"BackdropImageTags":["f3595c3a32e6feb48af8e60ef2c02cbb"],"ImageBlurHashes":{"Backdrop":{"f3595c3a32e6feb48af8e60ef2c02cbb":"WsJRT}?bxu%Lxtxu~pxuR*xaj[Rjxut7NGofWCM{-;ofM{M{M{oe"},"Primary":{"b36207655884728181df5260902c2937":"dbF}$N?Fs+$%~BxtRjs-M~W=bFoeIqt6xtxaIpWBW=t7"},"Art":{"b1120aed4e268816f38033708e1450c0":"N.NTq9~qRjWAkCof?abIRjaeozofj]f6j[WBofay"},"Banner":{"041274d157f4eda6aa948065ae762ad5":"HE9%bj4-M_^,r;IU%$n2R$_4D%s*xxn#i]p1V?xA"},"Logo":{"ac539445bb983737a1578f9620b28e37":"OkM@itxu_3E1Rj-;t7~qoLt7WBayj@Rj?bayoLj[WBj[WB"},"Thumb":{"e2c298f9d1a4ab704f3202910550361a":"NNKwUjogDjac^*tm-p9GM{ofbbxu0fI@Ip%MR.M{"}},"LocationType":"FileSystem"},"fece4bcbaf54e57a6b2abdc86a2d5cd4":{"Name":"Torchwood","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fece4bcbaf54e57a6b2abdc86a2d5cd4","PremiereDate":"2006-10-21T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":41,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79511"},"AirDays":[],"ImageTags":{"Primary":"68f568658a8965891074d578ae3af799","Art":"59da85faf67ebacf0e3e8f6f22390bba","Banner":"6a7c12056dd89caeb95927679f97ceb5","Logo":"3ed62074b046d8329657030909124376","Thumb":"819b595d804db8af11e7f48bef7d7bbe"},"BackdropImageTags":["6983cc74d90753ad3864ad3182e69ae7"],"ImageBlurHashes":{"Backdrop":{"6983cc74d90753ad3864ad3182e69ae7":"WYHwx*M|E1Ip0g-oxE%1RkIpoes:9uoLNGxZ-poes,s:flM|t6s."},"Primary":{"68f568658a8965891074d578ae3af799":"doE.@BM|D*xu~pRkIVxt%MofV@oexuxuRjWB%MxuM{Rj"},"Art":{"59da85faf67ebacf0e3e8f6f22390bba":"NrPPy8_Nr=NHt8jF_3S~Mxt8e.V@xGM{V@tRWAt7"},"Banner":{"6a7c12056dd89caeb95927679f97ceb5":"HTH2i_kX9EV@D%s:IVM_%3_4E2ob%LIUt7t7M{a#"},"Logo":{"3ed62074b046d8329657030909124376":"O?S5q-oekCoLf+oLkCt7fQfQfQfQfQfQ*Ja#aefke.fkae"},"Thumb":{"819b595d804db8af11e7f48bef7d7bbe":"NQE30HD%4:%MD%%M~VIVNHofE1%Ls:M{%2WWIVxt"}},"LocationType":"FileSystem"},"36f6bd0d8e5932a98b2bd9a7c01dc6b5":{"Name":"Code Geass: Lelouch of the Rebellion","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"36f6bd0d8e5932a98b2bd9a7c01dc6b5","PremiereDate":"2006-10-04T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":50,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79525"},"AirDays":[],"ImageTags":{"Primary":"5a2a52099e74289ac1ea894d30650c96","Art":"eeb5127d26e02ad3b40b1a2c2e63c25c","Banner":"cf37fae31229f12c038e7506655cc3ba","Logo":"90e3efcc829c930fbebe4e96ac2bf234","Thumb":"c97934f178f6e829b88848b2d25c7846"},"BackdropImageTags":["70633250bd2f058447df1d473f7a9985"],"ImageBlurHashes":{"Backdrop":{"70633250bd2f058447df1d473f7a9985":"WCAJj6-=4T4noi_2-os:NLV[M{xY8^My.8-;M_ITVhr_tLxtxbM}"},"Primary":{"5a2a52099e74289ac1ea894d30650c96":"dDBC}s~W%O-q?d%5n:s?4.IdD,NMo}OENHXS-=gMkVtR"},"Art":{"eeb5127d26e02ad3b40b1a2c2e63c25c":"NFB3?04UD~x^M_xtRMj1x]tjIWx?RO-qogE0RntO"},"Banner":{"cf37fae31229f12c038e7506655cc3ba":"HpLNAED%D~-;Dk={T0xsM|~WWBNEt6V@xZozxZRk"},"Logo":{"90e3efcc829c930fbebe4e96ac2bf234":"OA7K9zWBAVof$jaxbFnjWCkCoLW;oLw{0fof$kayJ7a#sV"},"Thumb":{"c97934f178f6e829b88848b2d25c7846":"N55hJMxrE4D,M|xtxsWot6WCRljb0NE3-n%Kj[oe"}},"LocationType":"FileSystem"},"ae868751f635d882eb9fc83fcae5a89c":{"Name":"The Day the Universe Changed","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ae868751f635d882eb9fc83fcae5a89c","PremiereDate":"1985-03-18T23:00:00.0000000Z","OfficialRating":"TV-G","ChannelId":null,"CommunityRating":8.3,"ProductionYear":1985,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"79634"},"AirDays":[],"ImageTags":{"Primary":"04d0ff4d58340b7e5f2ea701348d826f","Banner":"305a0670f23ec5c7988e137349d8cff9"},"BackdropImageTags":["2cdae4b37087d2d1bf64e0294bc9484b"],"ImageBlurHashes":{"Backdrop":{"2cdae4b37087d2d1bf64e0294bc9484b":"WA7dUmW@9aoKozoI~CWZIpt6NGWAsmRkkX%2E1RjxWRiNH%1RQR,"},"Primary":{"04d0ff4d58340b7e5f2ea701348d826f":"dKCrKh$*AytA5WNwI=Rk:zn$i]r;Xoaxt7ozIrWVI:NH"},"Banner":{"305a0670f23ec5c7988e137349d8cff9":"H$H*zW,[J7R*oMs:j[n*WV}G$kNtS1juoMoLjtWV"}},"LocationType":"FileSystem"},"8ee5c44996326f6919354ccf6683bb7e":{"Name":"The Lost Room","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8ee5c44996326f6919354ccf6683bb7e","PremiereDate":"2006-12-10T23:00:00.0000000Z","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":3,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79637"},"AirDays":[],"ImageTags":{"Primary":"dd1593a9a5f1468a23b35c45916dfaa0","Art":"ef2570b9b356cc1607270c34748dd76f","Banner":"443d369a2ece15ab0b6f5c6828ffe8b7","Logo":"7a27579484db4a50c05111a61dbf940b","Thumb":"2869e5a7c1d189ef38e8924ec8fc5d26"},"BackdropImageTags":["405db3e3bc345616ef15f2dba99d3a42"],"ImageBlurHashes":{"Backdrop":{"405db3e3bc345616ef15f2dba99d3a42":"WRDvG-%MD%o0IURP~V%LM{E1IUV@-;xtRjIVIUod%2xtR*RjWBj]"},"Primary":{"dd1593a9a5f1468a23b35c45916dfaa0":"dYM*BR-:RP_N_3xuRPae_NtS%MM{-;RjkCt7s;RjoJxu"},"Art":{"ef2570b9b356cc1607270c34748dd76f":"N97nE@aID*E2R.xu?as.M{IoR+t700%gxaWARjWW"},"Banner":{"443d369a2ece15ab0b6f5c6828ffe8b7":"H~PjGZMwM_xtobxuxtxtM{~qaxRPWAWAj?t6t7j="},"Logo":{"7a27579484db4a50c05111a61dbf940b":"OK9jv0WBWBWBM{WBWBt7M{ofofofoffQ00j[t7ofxuoffQ"},"Thumb":{"2869e5a7c1d189ef38e8924ec8fc5d26":"NjNKS7%LIU%Mt7WE_4f,xuV[t7xte:RjxtWBWBM{"}},"LocationType":"FileSystem"},"e2f722895dbb0281925d427d062a4b59":{"Name":"Stromberg","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e2f722895dbb0281925d427d062a4b59","PremiereDate":"2004-10-11T00:00:00.0000000Z","OfficialRating":"12","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":17999998976,"ProductionYear":2004,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"79656"},"Status":"Ended","AirTime":"10:15 PM","AirDays":["Tuesday"],"ImageTags":{},"BackdropImageTags":["c279038eb1d26e80917298f149ec9480"],"ImageBlurHashes":{"Backdrop":{"c279038eb1d26e80917298f149ec9480":"WeM?;+rq4ot8aJMx~Csm%1xtoft6^+M{$%xuW=nN_NbcMxxtRjRi"}},"LocationType":"FileSystem","EndDate":"2012-01-31T00:00:00.0000000Z"},"fc656723f1a5c09ff0d48b01057c14c6":{"Name":"When They Cry - Higurashi","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fc656723f1a5c09ff0d48b01057c14c6","PremiereDate":"2006-04-04T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":8.3,"ProductionYear":2006,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":55,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"79682"},"AirDays":[],"ImageTags":{"Primary":"59a7d3672341bca1e975b76d97b8f4d9","Banner":"71668dc8b93a5af3b105bc21f10ff4d4"},"BackdropImageTags":["64a790b88edd90962d8dc17a60011e42"],"ImageBlurHashes":{"Backdrop":{"64a790b88edd90962d8dc17a60011e42":"WQJkGpQm0eo|Inov.9EJXSR*$~w]cEOSNHxuiwIU-qxtROw|kENG"},"Primary":{"59a7d3672341bca1e975b76d97b8f4d9":"dFDvN8NM9Y-o?sDiM{.8?]V@n5kT-.bJj^jEpDnPxbR%"},"Banner":{"71668dc8b93a5af3b105bc21f10ff4d4":"HNCidZ00tmRi%2afIpofj@?b9F?bD%t7s:NGs;Rj"}},"LocationType":"FileSystem"},"7a3c0389e6de1ed59d9cc0197aaccdc3":{"Name":"Tesla","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7a3c0389e6de1ed59d9cc0197aaccdc3","Container":"mkv,webm","PremiereDate":"2020-08-19T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":61375479808,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"517412"},"VideoType":"VideoFile","ImageTags":{"Primary":"feb7af6aa2f48b89f3214f351c3d6419"},"BackdropImageTags":["6e4f4badc6597ed2b55faed47aa7065c"],"ImageBlurHashes":{"Backdrop":{"6e4f4badc6597ed2b55faed47aa7065c":"W?KGYqNSbKOSWBsq}Ar]ShSin,oLw;wabIWXsmbE$RjcbFn~aybI"},"Primary":{"feb7af6aa2f48b89f3214f351c3d6419":"dtIUlyNQr{$-}FjMx0n-,+nhs.oI-BwHWRs+W7xDsqR%"}},"LocationType":"FileSystem","MediaType":"Video"},"7a4274b17105ad674371e82fdcf028f9":{"Name":"The House with a Clock in Its Walls","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7a4274b17105ad674371e82fdcf028f9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-09-19T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":63037870080,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"463821"},"VideoType":"VideoFile","ImageTags":{"Primary":"3338185ff695ef19e9e7dd249775cf5b"},"BackdropImageTags":["1fe8a7c19bfd331b3be0c0d2eb9a1376"],"ImageBlurHashes":{"Backdrop":{"1fe8a7c19bfd331b3be0c0d2eb9a1376":"W34-%]$*0f9@xG^jxaxZs:IWNG%L%KWBNHozn%oJI;R+$%xGR*J8"},"Primary":{"3338185ff695ef19e9e7dd249775cf5b":"dLFN;sRq9Zx9}=s+xC$$ITxB%1xb-Tw|NuS2Sv-PNMWY"}},"LocationType":"FileSystem","MediaType":"Video"},"7a9d4f8d6872285adbdde400d30b5b3c":{"Name":"Sneakers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7a9d4f8d6872285adbdde400d30b5b3c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1992-09-08T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":75189764096,"ProductionYear":1992,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2322"},"VideoType":"VideoFile","ImageTags":{"Primary":"1b56b5dc4a1e82826b556a7af69abc29"},"BackdropImageTags":["7747619c68f2935872d6e15b6445bd20"],"ImageBlurHashes":{"Backdrop":{"7747619c68f2935872d6e15b6445bd20":"W45Eje4:x.9D?In$.AD%-;ITxuM_%hD$?bITozRi?cD%-pITxvja"},"Primary":{"1b56b5dc4a1e82826b556a7af69abc29":"ddP$?#~qxv?b~WfRjFoM~qIURPofDhadf+t6x]x]t7of"}},"LocationType":"FileSystem","MediaType":"Video"},"7b8f117ddd7c1e7d7966e5734b9e5f70":{"Name":"Jumanji: The Next Level","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7b8f117ddd7c1e7d7966e5734b9e5f70","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-12-03T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":73904463872,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"512200"},"VideoType":"VideoFile","ImageTags":{"Primary":"258848c58dabadc3ce10a259d2e3b37a"},"BackdropImageTags":["b9f298d2a5a47f5b10e634073429fae3"],"ImageBlurHashes":{"Backdrop":{"b9f298d2a5a47f5b10e634073429fae3":"WFC~;w~p%L-pS~NH=_%1%1%2bGX9NG%1xaaeoJX9-;={t6S5ofaf"},"Primary":{"258848c58dabadc3ce10a259d2e3b37a":"dIFX|,~V9]%M~C-oX8WX%MogR:NK^*xaNINJkYxtWAjE"}},"LocationType":"FileSystem","MediaType":"Video"},"7c44b1253e67e54b711c670520c7df1c":{"Name":"Requiem for a Dream","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7c44b1253e67e54b711c670520c7df1c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2000-12-14T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8,"RunTimeTicks":60859199488,"ProductionYear":2000,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"641"},"VideoType":"VideoFile","ImageTags":{"Primary":"efc66ce47f38237f99d9cd05178a827a"},"BackdropImageTags":["9b6ca54015b5a3fe9a310713114db2ae"],"ImageBlurHashes":{"Backdrop":{"9b6ca54015b5a3fe9a310713114db2ae":"WFATfo~nNC%L-pMxR4WBNzIWRQjdIUa}xuRQM|ogtltQxXxaM|M{"},"Primary":{"efc66ce47f38237f99d9cd05178a827a":"dYIq.e-q$f-p#*xa$%nh8^w]xGRiAxj]WBW=r=ofNHt7"}},"LocationType":"FileSystem","MediaType":"Video"},"7da08652540998b372a55d3774b5bd2b":{"Name":"Lucy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7da08652540998b372a55d3774b5bd2b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-07-24T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":53604061184,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"240832"},"VideoType":"VideoFile","ImageTags":{"Primary":"86e8431c1013c70b2402e600fbd24b58","Art":"625140fd17d9978138d80d3ebfcd7a11","Banner":"f20994c21e5ce446bfdb6b1b5b744b63","Disc":"e46e197da5c39834cc77958da72a462d","Logo":"e46e197da5c39834cc77958da72a462d","Thumb":"50eb77430e09d5b3d76d66821803fda9"},"BackdropImageTags":["e46e197da5c39834cc77958da72a462d"],"ImageBlurHashes":{"Backdrop":{"e46e197da5c39834cc77958da72a462d":"WMFrnx?^-U0Ls.D%_2NHs-M|ofV@000Kxat7t7xun$R*%2NGjZt7"},"Primary":{"86e8431c1013c70b2402e600fbd24b58":"dlLN.4IUIU-;-;xuxuWB?bxuRjWB~qWBM{xu-;j[ayfQ"},"Art":{"625140fd17d9978138d80d3ebfcd7a11":"NnO|Rx_N8_%Nt8IUxuM{ofj[R*s:-;xuayWBj]of"},"Banner":{"f20994c21e5ce446bfdb6b1b5b744b63":"HoKx0Z00kW-;IU-;x]ofxu~qD%M{xuWBayofWBof"},"Disc":{"e46e197da5c39834cc77958da72a462d":"eOMtR14TX9N[S#9YWX-;n%RP9t-;?bxts.Dit7%MM{tR_3kBV@t7RP"},"Logo":{"e46e197da5c39834cc77958da72a462d":"OERfkB%M~q%M?bRj%M-;ofayRjofj[ayt7j[WBRjoft7Rj"},"Thumb":{"50eb77430e09d5b3d76d66821803fda9":"NH84JU0f^i9Z%2R.=vD*%MNIofn$%MIpxtRQofe."}},"LocationType":"FileSystem","MediaType":"Video"},"7e60b2133116258a579268729370d598":{"Name":"IO","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7e60b2133116258a579268729370d598","HasSubtitles":true,"Container":"mkv,webm","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":4.8,"RunTimeTicks":57627201536,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"433249"},"VideoType":"VideoFile","ImageTags":{"Primary":"9ea593bde8333af68d123c5c210cef85"},"BackdropImageTags":["5bfd34dfdbc8e27b6cdc7ed224cf936f"],"ImageBlurHashes":{"Backdrop":{"5bfd34dfdbc8e27b6cdc7ed224cf936f":"W[K-UjRjV@t7Rkt7_NWBWBofWBogtRj@ayj[jtazt6j[fkoLayWB"},"Primary":{"9ea593bde8333af68d123c5c210cef85":"da9]NHM|pIOZ.mMxslRkR4VsnNaKMxn$WqoeM{nObbjY"}},"LocationType":"FileSystem","MediaType":"Video"},"7e9527010ac199eb983065cc67a3430c":{"Name":"Raiders of the Lost Ark","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7e9527010ac199eb983065cc67a3430c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1981-06-11T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":69188812800,"ProductionYear":1981,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"85"},"VideoType":"VideoFile","ImageTags":{"Primary":"908b730185d8aa7d53526b6136b17893","Art":"098cc1d39d4c2a0b3bfee005c1b5390f","Banner":"c921a03102fac7ab050673b5e8c5a4a1","Disc":"b6b4e7412ba93973625e5d18c640bcb0","Logo":"050e8bcfbf32cc90befc603ed0ab5567","Thumb":"de4c9bbe252adbeba303c0c25d279d2e"},"BackdropImageTags":["5f36d40ea3a95d3cd125ad0e804e7a21"],"ImageBlurHashes":{"Backdrop":{"5f36d40ea3a95d3cd125ad0e804e7a21":"WXDk9+s.10RlNwbasBjtWqbHbFay9^jZ$$W;sAsAoLWWWVj@oeoK"},"Primary":{"908b730185d8aa7d53526b6136b17893":"dIG%ud=_9t-59xxFs:Rl0zWU-otQxsWqM|k9,@son$V["},"Art":{"098cc1d39d4c2a0b3bfee005c1b5390f":"NHKTPTvd%~Iob{JW:5n5I9S50fS$Q{WJR5bvyCRj"},"Banner":{"c921a03102fac7ab050673b5e8c5a4a1":"HFBVeIxv9wNF5RNd^i^6E+}XI;Sh%LK5R.$y,CEg"},"Disc":{"b6b4e7412ba93973625e5d18c640bcb0":"eaJa4XRi?^R-pJxYoLWXR+WW.Tt6-=jsxWbIWBs:oeay%hRknhf+IU"},"Logo":{"050e8bcfbf32cc90befc603ed0ab5567":"OPGaqD-o0gI=5RIqNG}BMyEgS~S#oyW:8}Iq%fxsxrxWRj"},"Thumb":{"de4c9bbe252adbeba303c0c25d279d2e":"NiH+wAxDIXf8Wqs-}qn%V[ofazoJNKaft5kBafaz"}},"LocationType":"FileSystem","MediaType":"Video"},"7e95b64fe81e31403c2d57aa0dd44d26":{"Name":"Men in Black 3","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7e95b64fe81e31403c2d57aa0dd44d26","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-05-22T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":63504338944,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"41154"},"VideoType":"VideoFile","ImageTags":{"Primary":"24ab91370691bad15e457bf41699841b","Art":"29e06b879c2c1680927e2b6727fa9e2f","Banner":"62712aaa318b33a06e5aa3b8b7af27de","Disc":"b62862c3ba5a3696893948efe28ee580","Logo":"24ab91370691bad15e457bf41699841b","Thumb":"1945c27d754f8ecac1428ab7f63217a0"},"BackdropImageTags":["e162927be069d0f8bbde413d7ff093ee"],"ImageBlurHashes":{"Backdrop":{"e162927be069d0f8bbde413d7ff093ee":"WIA^2pj[00ae%MX8s;WCR%t7RjIokWbbD$WB?IxuxuWBn$ofoLs:"},"Primary":{"24ab91370691bad15e457bf41699841b":"dACGGaoM9E%LwKxu~qxa9FIU%Mxuo}xu4n9Z4.Rj-;t7"},"Art":{"29e06b879c2c1680927e2b6727fa9e2f":"NZIX]mxu-;t7%gxu_4t7V@j]E0s:?cs:ROofofj["},"Banner":{"62712aaa318b33a06e5aa3b8b7af27de":"H~PjGe?bxus:oJ-pxubHbG~qtRofoJt7ofj[ozRj"},"Disc":{"b62862c3ba5a3696893948efe28ee580":"eNMHAKenIUNH?^^+j]IURPtR?wf,.7oJnNyDt7IVkCMx-;M{?HxuIA"},"Logo":{"24ab91370691bad15e457bf41699841b":"ONOWvx~W=_9G%fxbt7W@-:s-R,oJo0kCpa-:s:Iot7Rj%1"},"Thumb":{"1945c27d754f8ecac1428ab7f63217a0":"NLDl{9_4MwMxD%nO4mITxuozj[Rj0JM{tRt7xut8"}},"LocationType":"FileSystem","MediaType":"Video"},"7f19a7947a69f7e6969ee73f65f72ac1":{"Name":"Monty Python and the Holy Grail","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7f19a7947a69f7e6969ee73f65f72ac1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1975-05-24T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":55274811392,"ProductionYear":1975,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"762"},"VideoType":"VideoFile","ImageTags":{"Primary":"207b5c9402174d6e0f093d142b4cc30f"},"BackdropImageTags":["bfa2f9238178e61bd6c67de976430299"],"ImageBlurHashes":{"Backdrop":{"bfa2f9238178e61bd6c67de976430299":"W88;Vx?aIUxZxu%L~U%KogxbxtxuoZxZt8oNadt7x@t6R*RQRjof"},"Primary":{"207b5c9402174d6e0f093d142b4cc30f":"deI64q%1XAtn1RWARjSjn4oLs+aK?af,kEs,D.R.NHof"}},"LocationType":"FileSystem","MediaType":"Video"},"7f1e401368048ba21dcfce2f3b8ecba6":{"Name":"Monster House","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7f1e401368048ba21dcfce2f3b8ecba6","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2006-07-19T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":54385266688,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9297"},"VideoType":"VideoFile","ImageTags":{"Primary":"82b9d243a11f74b62017a6f2fa374c9f"},"BackdropImageTags":["822b0b5976b619bb850f92cc9d8986ab"],"ImageBlurHashes":{"Backdrop":{"822b0b5976b619bb850f92cc9d8986ab":"WODcN^~9EMPAXfJVE4OYxsn$a#xu5XE3VYi_V{a0xuaxRkxFxVWC"},"Primary":{"82b9d243a11f74b62017a6f2fa374c9f":"dA7xE|tm9t%Mu5t7m+X7r^WBITaeD$ROnMM{DNad%hWA"}},"LocationType":"FileSystem","MediaType":"Video"},"7f4e93b3af099ba6929c844ad0443bc7":{"Name":"Avatar","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7f4e93b3af099ba6929c844ad0443bc7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-12-09T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":106894721024,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"19995"},"VideoType":"VideoFile","ImageTags":{"Primary":"0ce1466b5b72f3b7c383ce6b4323aef5","Art":"8e74198c8c2483f8722dc5d50015569d","Banner":"8065635559aa7cba0fed29e7b1fa63fc","Disc":"6d7405fd4c7cdeab64c4c35d79efde9e","Logo":"528194573340d6932a09e597bf9c394f","Thumb":"132101e3e660c460c61720353cf6f0cd"},"BackdropImageTags":["6d7405fd4c7cdeab64c4c35d79efde9e"],"ImageBlurHashes":{"Backdrop":{"6d7405fd4c7cdeab64c4c35d79efde9e":"WH56#fr]catRyXtmyZr?t-n$t-kWo{i^kXnikqadR+V@XAWFV@af"},"Primary":{"0ce1466b5b72f3b7c383ce6b4323aef5":"d72sU*o~ROV[ozofVsV@QkROo}oyR4WYtmtSR;kEj@j]"},"Art":{"8e74198c8c2483f8722dc5d50015569d":"NdDdSfxytlRM-;Me%%a*ngSct6X9TBROtRWHX4oe"},"Banner":{"8065635559aa7cba0fed29e7b1fa63fc":"HpJbT_-nDNxZROIAMyWEx]_NwtnNxZsljZRPa}oz"},"Disc":{"6d7405fd4c7cdeab64c4c35d79efde9e":"eeEfvga}_3ae-;nha#f*aej]~qae-:jZWBjEayozj[ad-;WUV@kCM{"},"Logo":{"528194573340d6932a09e597bf9c394f":"O~NBZIWVWCofj]kCazR-j[j[WVj[azj[~UoLkBa|f6f6j@"},"Thumb":{"132101e3e660c460c61720353cf6f0cd":"NiDJ@oIUMx%MITn~_4IURPxuM_of%NM{WBxuRjt7"}},"LocationType":"FileSystem","MediaType":"Video"},"80b1cf97513c6a7252c710baed6a1007":{"Name":"Fear and Loathing in Las Vegas","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"80b1cf97513c6a7252c710baed6a1007","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1998-05-21T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":70931308544,"ProductionYear":1998,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1878"},"VideoType":"VideoFile","ImageTags":{"Primary":"e1128f1050c820a4dc63e87e420fa10d","Art":"4d629599407efbab51923030a3524158","Banner":"e0f9cf9a682d8af72039e413e3614874","Disc":"b96c26651ce7f17f84c204354522b7b9","Logo":"3514216a8b22f5250b7b0c1e0044bf94","Thumb":"9276af933639ce3e95e3a1c5520ab022"},"BackdropImageTags":["3ac4513b579f23918fe67b884802355d"],"ImageBlurHashes":{"Backdrop":{"3ac4513b579f23918fe67b884802355d":"WVIq$7?^ocm+E1t6%NM|kXoyM{R+%~ogaexuaeoL_Nx^xuxujFxZ"},"Primary":{"e1128f1050c820a4dc63e87e420fa10d":"dtN0xHxuPC.80:S*N{XT9sWBRPNG%it6xBkDI]WZs:ag"},"Art":{"4d629599407efbab51923030a3524158":"NdM74D.TkDDixu%MM{4nRPxut8WW?Hoft7t7RPay"},"Banner":{"e0f9cf9a682d8af72039e413e3614874":"H~Dy*VtmWWkCkWkCbIkqbHdBo~bbbIf+bbbHf,bb"},"Disc":{"b96c26651ce7f17f84c204354522b7b9":"eVHBrSI:~qxa%gs.W=s:slS2~qjY.8s9j]S1V@kCf+ni.8niV@S#IU"},"Logo":{"3514216a8b22f5250b7b0c1e0044bf94":"OxM%J^MyWVxubcjZbH-;%MV@WBWBoLae?^NGWBt7j@azWB"},"Thumb":{"9276af933639ce3e95e3a1c5520ab022":"NMNvo5^*~p%1Rk^*_1%L%LR+V[t6xtWVoft7RkWB"}},"LocationType":"FileSystem","MediaType":"Video"},"fc8088b2cacec255abe26999fe56a0ba":{"Name":"Coil - A Circle of Children","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fc8088b2cacec255abe26999fe56a0ba","PremiereDate":"2007-05-11T22:00:00.0000000Z","OfficialRating":"TV-G","ChannelId":null,"CommunityRating":8.5,"ProductionYear":2007,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":26,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"81037"},"AirDays":[],"ImageTags":{"Primary":"c47e347b30bf5ff14ef93a4d674d4bbb","Art":"92e174c279878f7a250657a738338607","Banner":"03c85424b4b08f50f1f73d31c13afde1","Logo":"c567c3d9be702078abd4d4e67523926f","Thumb":"220efdf8ab7d31d36104dd7e902b3c47"},"BackdropImageTags":["f1677865cfcd01cfb370ab517af3105d"],"ImageBlurHashes":{"Backdrop":{"f1677865cfcd01cfb370ab517af3105d":"WfL:lh~Vg4?GW:xF~o?akWt6xsoe-m%KNaM|s-j[?GWVNIs;RkWC"},"Primary":{"c47e347b30bf5ff14ef93a4d674d4bbb":"dWIr7}%34:bc_4xID%S0pdxviwjE%#%MVtj]%3sqW-g3"},"Art":{"92e174c279878f7a250657a738338607":"NGEVTkGY8ys;Ol,.+GI:rvM{b[,;E2Xlt3$*NbjI"},"Banner":{"03c85424b4b08f50f1f73d31c13afde1":"HaGI[k.8IoM{D*%MX9tRV[~pxuIUM{WBjbj]ogjZ"},"Logo":{"c567c3d9be702078abd4d4e67523926f":"OO8hRMS1i{ofR%X8a0Rji{WVofjujZbH4Ur[bbayogjFkW"},"Thumb":{"220efdf8ab7d31d36104dd7e902b3c47":"NaLzKa~pX8-URPxZ~V?Gozt7xZax$yxsNHM{s.WV"}},"LocationType":"FileSystem"},"bb91dff50ecf1173097ea786700125a6":{"Name":"Magical Girl Lyrical Nanoha","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb91dff50ecf1173097ea786700125a6","PremiereDate":"2004-10-01T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.9,"ProductionYear":2004,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":64,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"81115"},"AirDays":[],"ImageTags":{"Primary":"c574b6c9bf985ecca9fddb734ba69bf6","Art":"f7ff4180af867efaa90c1c2f79da288c","Banner":"cd0a02911289f3be42d6fdfb88ce5327","Logo":"305c868390432636d8e651b027361419"},"BackdropImageTags":["14eccb62f8edafc832e92da0fce352e4","9bbd5b5dfb90aaff26d639f919c9b85a","f57a8383b7302645618d18e01ca198c4","386a6549ee5ae5c823f890b46e8eb769","961ff3875bcf514ff4a837b1189c47eb"],"ImageBlurHashes":{"Backdrop":{"14eccb62f8edafc832e92da0fce352e4":"WRK_8^b:bcxcyG?ItA.Tx_i_N#WF-?TMNGn#E3a%?dS+ROWFa$Mx","9bbd5b5dfb90aaff26d639f919c9b85a":"WWN,F{nBn-x]tP%L}jR7H@-oSdM|n1nORpadWqj;~UR7R-M{o#%1","f57a8383b7302645618d18e01ca198c4":"WXMHGeXB.9-;S5xb~pIVkYx]S4o~kqRlbJkVo}tm-=R+Rke-Rixu","386a6549ee5ae5c823f890b46e8eb769":"WRK_8^b:bcxcyG?ItA.Tx_i_N#WF-?TMNGn#E3a%?dS+ROWFa$Mx","961ff3875bcf514ff4a837b1189c47eb":"WXK15t^gpfyFx]x_%%o}-:bJkXjGo$ogs,ofRis*?vo#X8s.V@t6"},"Primary":{"c574b6c9bf985ecca9fddb734ba69bf6":"dZL4pk?bNM%NMwNGRjs:~TRPxuxu.8acoyxu?Zs*oIRl"},"Art":{"f7ff4180af867efaa90c1c2f79da288c":"NIBf#6J-V@w^9t$+tS-qWAM{oeoM9DM_t7oxj^WU"},"Banner":{"cd0a02911289f3be42d6fdfb88ce5327":"HxN,xzE4s9x_F5V{tR-;og~WIURkkYX9s:t7xut7"},"Logo":{"305c868390432636d8e651b027361419":"OfDJeuogRPogRjogWAayj[WAfQWBayWB9DaxkCWBj]WBj["}},"LocationType":"FileSystem"},"ddeff5ecd24cae5f8ae1e2924bb109c6":{"Name":"BPS: Battle Programmer Shirase","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ddeff5ecd24cae5f8ae1e2924bb109c6","PremiereDate":"2003-10-03T22:00:00.0000000Z","ChannelId":null,"CommunityRating":8.5,"ProductionYear":2003,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":5,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"81147"},"AirDays":[],"ImageTags":{"Primary":"7fc190459a846cabc5d1aa099b90956d","Banner":"2cc0bc0d23d0b554e1e3efb871db1eac"},"BackdropImageTags":["904b777877f2ef3e9a2fb10995b9fa7f"],"ImageBlurHashes":{"Backdrop":{"904b777877f2ef3e9a2fb10995b9fa7f":"WTK_E4tQK=-$^j^~xu},-*$y-mx:DkIB-U$xNZxV--Eg%0i{kCwc"},"Primary":{"7fc190459a846cabc5d1aa099b90956d":"dXK-Q:$*S#%d~Q%1kiSJ9axVxUoHM*xAxGxCxGt6xs-:"},"Banner":{"2cc0bc0d23d0b554e1e3efb871db1eac":"HLG8i5D$9j^}D*s=otjL0NxuE3Iq?YjEIY%KM|NK"}},"LocationType":"FileSystem"},"7a5a4ad312c0f0bb89ff450c0bfc0761":{"Name":"Breaking Bad","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"7a5a4ad312c0f0bb89ff450c0bfc0761","PremiereDate":"2008-01-19T23:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.4,"ProductionYear":2008,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":62,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"81189"},"AirDays":[],"ImageTags":{"Primary":"82997b798a5fba06d829799db13394c7","Art":"4f0283e668146bc4c8e9ebe88c2b50a0","Banner":"f87a98033580e92df792b00ccdd7a85e","Logo":"f070ff7383982c0e85286bfc29945883","Thumb":"bdbae281a21387a598947940ed51ac61"},"BackdropImageTags":["bccaf0c59df5f056220097f15e7cd7c2"],"ImageBlurHashes":{"Backdrop":{"bccaf0c59df5f056220097f15e7cd7c2":"WVH2Gtx^0Ox9IARkD-WAnzt7xuR.D+WAt2WFt7oe-.ogWERjM|xr"},"Primary":{"82997b798a5fba06d829799db13394c7":"dUD0V$t54:of~oocD+oz?boeIBWE%NayRit6%2juWAs,"},"Art":{"4f0283e668146bc4c8e9ebe88c2b50a0":"NoPGTz%%t6D$?cxtWtobWARnocf5%N-pjsNHawRj"},"Banner":{"f87a98033580e92df792b00ccdd7a85e":"HhJsTfbYRmIsIss-ja$#R,}:WWR,WWR,f7odoKWW"},"Logo":{"f070ff7383982c0e85286bfc29945883":"OmO;3xNF~q-;%MR%R*%MjsRjbHozayV@NGt7s:NGoLofWB"},"Thumb":{"bdbae281a21387a598947940ed51ac61":"NSFrz;o$0NxTIAV_IXf5s*ogozWr9GoIxrNKtRt5"}},"LocationType":"FileSystem"},"817304e83fb93ea796cb78283574312c":{"Name":"Men in Black: International","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"817304e83fb93ea796cb78283574312c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-06-11T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":68898881536,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"479455"},"VideoType":"VideoFile","ImageTags":{"Primary":"a19080adfc189463a9979984828fece7"},"BackdropImageTags":["65e7f384a869081ec34e692a3fde5b69"],"ImageBlurHashes":{"Backdrop":{"65e7f384a869081ec34e692a3fde5b69":"WkKUpAt7%h%gjX%M_NogIUj[MxRjbcofV@ayfQjs%gofofjZoft7"},"Primary":{"a19080adfc189463a9979984828fece7":"dSK1?:%MyE?b~qt7?btRaIV[MwRPD$j@-;s:.8WUIooz"}},"LocationType":"FileSystem","MediaType":"Video"},"75784c54ce901b27e3391de88bebd41b":{"Name":"Real Drive","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"75784c54ce901b27e3391de88bebd41b","PremiereDate":"2008-04-08T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.2,"ProductionYear":2008,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"81907"},"AirDays":[],"ImageTags":{"Primary":"02e68d383a2f5c77c07247b8a01b383e","Banner":"1051766a25e14e1bd116cecf86327811"},"BackdropImageTags":["aff5e207cc23e2ff94e81bfc1551f819"],"ImageBlurHashes":{"Backdrop":{"aff5e207cc23e2ff94e81bfc1551f819":"WQI=fb_3E2t7ESI]I_E4a$%2XAt7E1IoROXARjtS_Ns.oHs:j=xa"},"Primary":{"02e68d383a2f5c77c07247b8a01b383e":"dSLEH6%$5@X.0yoItSR+%~o#?G%M?bI;XT%M%2xFkCof"},"Banner":{"1051766a25e14e1bd116cecf86327811":"HJAUQ@H=%hDi%Lo#nN%#Mw?^%MIUjZaft6t7tRoy"}},"LocationType":"FileSystem"},"819e9473e818d278375ac60867993dea":{"Name":"I, Robot","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"819e9473e818d278375ac60867993dea","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-07-14T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":68842749952,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2048"},"VideoType":"VideoFile","ImageTags":{"Primary":"ee8d240b3a3e96c741cedfdcc0b52d76"},"BackdropImageTags":["26dcc611a469134808c398df95e3c8fd"],"ImageBlurHashes":{"Backdrop":{"26dcc611a469134808c398df95e3c8fd":"WXHe,;%M%g_NR*MxxuRiM{kCxuogM{flofRjofxu%gx]ogxuWARj"},"Primary":{"ee8d240b3a3e96c741cedfdcc0b52d76":"dsH_}fxux^tS_NtRx^X9-;juogt7oeR*oIe.n#WCxtxa"}},"LocationType":"FileSystem","MediaType":"Video"},"8d3dc136b83bd8dd97400350850bb7e0":{"Name":"Fringe","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8d3dc136b83bd8dd97400350850bb7e0","PremiereDate":"2008-09-08T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.7,"ProductionYear":2008,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":164,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"82066"},"AirDays":[],"ImageTags":{"Primary":"b44d882d3c51330d306a3e99dfa83bc0","Art":"57804236543823856d4ea398bed153f3","Banner":"914712ee0d420f7daaa1ff2a4a03ac11","Logo":"d801e9e56d93ab127099453ae9b42736","Thumb":"385f6c6dd0e577e3273808d75eeff882"},"BackdropImageTags":["4d70ee4d77921bed3a1a940ce1c65fda"],"ImageBlurHashes":{"Backdrop":{"4d70ee4d77921bed3a1a940ce1c65fda":"WPGuds?H0KVsj?Sh~Wt6t7s:SgW=ITWB%MMxS$x]%1s:M|IUnjax"},"Primary":{"b44d882d3c51330d306a3e99dfa83bc0":"dJB3f|xu4.t6~Bs:NHt7Z~a}%Nt6WoW=oMoINdNGIUae"},"Art":{"57804236543823856d4ea398bed153f3":"NEBD]1-;%MShM|-oR*E14TIotR-oVY%1I9Rjs:oz"},"Banner":{"914712ee0d420f7daaa1ff2a4a03ac11":"HWE2Xp^OIoEMNH%2ozNeIB~U-TR%R*WBoMR-NKM|"},"Logo":{"d801e9e56d93ab127099453ae9b42736":"OUCZU+xuIVofflt6fRt6t6j]WCayWBWB02RkxuaxWBWBj["},"Thumb":{"385f6c6dd0e577e3273808d75eeff882":"NHEVZxE29G%10L%MSjt7E1of?Fe.E3oIM|kDxaRj"}},"LocationType":"FileSystem"},"3deae8624c6d7f62d224e8eafea8e70e":{"Name":"Stargate Universe","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"3deae8624c6d7f62d224e8eafea8e70e","PremiereDate":"2009-10-01T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2009,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":38,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"83237"},"AirDays":[],"ImageTags":{"Primary":"1caf18fd73e679f29cd72f8bb3282d76","Art":"9d5319cca54a04c64dd7dcb4de75b4ae","Banner":"77d37e3df276c700234a545724e742c3","Logo":"e1b655d4229fb0e0a2455dfb53a9869a","Thumb":"8555acd8ab5845858a8cef49120d1a67"},"BackdropImageTags":["6abae6c5fb7e0e94fbef98d24de3f7ec"],"ImageBlurHashes":{"Backdrop":{"6abae6c5fb7e0e94fbef98d24de3f7ec":"W968Hlxuxv-;Ri%g_4t8xv%MRi%M%MkCo#t7RjofWAWYj]WBR,M{"},"Primary":{"1caf18fd73e679f29cd72f8bb3282d76":"dL84xtoz8^M{t8j[RjWB8^ae-=ozITaexvog%ga}Mxae"},"Art":{"9d5319cca54a04c64dd7dcb4de75b4ae":"NLAK{,%%o~b_VYWryFyZXAWBkXjFWZkskroKozoz"},"Banner":{"77d37e3df276c700234a545724e742c3":"HF84b}k8M{V?jExvITtS%3~XR*IoV@s:%MIokDxa"},"Logo":{"e1b655d4229fb0e0a2455dfb53a9869a":"ODDl{3?bofRjj[IU-;%M%MRjoft7M{%M00j[WBWBt7xuIU"},"Thumb":{"8555acd8ab5845858a8cef49120d1a67":"N58ED1-;ROxt%1-=?Gt6?wtRM{oeD%RjtRNHIUM_"}},"LocationType":"FileSystem"},"ef0b66147ac0e570d2d8cfc0c73bd123":{"Name":"Galaxy Angel A","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ef0b66147ac0e570d2d8cfc0c73bd123","PremiereDate":"2002-10-05T22:00:00.0000000Z","ChannelId":null,"CommunityRating":10,"ProductionYear":2002,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":0,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":true,"Key":"83446"},"AirDays":[],"ImageTags":{"Primary":"fd2a1d7af1f1e81e75e817db5415f438"},"BackdropImageTags":["ed5685f41d0424b464e7e84c59b0cf37"],"ImageBlurHashes":{"Backdrop":{"ed5685f41d0424b464e7e84c59b0cf37":"WcO398}]xHxvr{xu~Wt9SdtRs=xbRlRkkWt8M}RS~CwhR.xZsrRV"},"Primary":{"fd2a1d7af1f1e81e75e817db5415f438":"ddQJ7X?c.T?G^*%Mx]V@tlR*M|WX?bjEVsjYx]a#j]t7"}},"LocationType":"FileSystem"},"839984670fa4adf15faab092dcd13f7e":{"Name":"Avengers: Endgame","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"839984670fa4adf15faab092dcd13f7e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2019-04-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.3,"RunTimeTicks":60774998016,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"299534"},"VideoType":"VideoFile","ImageTags":{"Primary":"4c0e3e5f2f475427fce8743d61357155"},"BackdropImageTags":["8cb78151a1798b05af367fa202d3d4ad"],"ImageBlurHashes":{"Backdrop":{"8cb78151a1798b05af367fa202d3d4ad":"WEHLb;-:IS_4Iox[?w$yE0I:H@xbNb-:9EE1?F%1?w%fngM|yCt4"},"Primary":{"4c0e3e5f2f475427fce8743d61357155":"dEB.T^$C5SR?%4xcI:oz0xf,s$t7xMRnxpI[I%s+s?I."}},"LocationType":"FileSystem","MediaType":"Video"},"9ff8a464724349a79e1420a3a5a21a08":{"Name":"Warehouse 13","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9ff8a464724349a79e1420a3a5a21a08","PremiereDate":"2009-07-06T22:00:00.0000000Z","OfficialRating":"TV-PG","ChannelId":null,"CommunityRating":8.4,"ProductionYear":2009,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":74,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"84676"},"AirDays":[],"ImageTags":{"Primary":"d019d4bfe37d83203330491c2888f98e","Art":"6f959a08760b0ea7368d22e0359a8564","Banner":"6191320a3175e6a7066bac4f0e8c35ba","Logo":"8374e32b5c399e712405e243b47e15d9","Thumb":"bdcf0129ac63a8f866ff8db30c3f5fdd"},"BackdropImageTags":["b590a914c88b6cfae6c13fa7e2c43fec"],"ImageBlurHashes":{"Backdrop":{"b590a914c88b6cfae6c13fa7e2c43fec":"WiG+Ex~qtQIT4m9F?axuofadRjj?xtozfkWAWXfkxuozbHayWBRj"},"Primary":{"d019d4bfe37d83203330491c2888f98e":"dWCPbWxbjZt7~Wt7a#j]s,jubIR*IoodofR*R*t6s,WU"},"Art":{"6f959a08760b0ea7368d22e0359a8564":"NqG9EUae?^t7.8oLacofiwa}V@a|t7bIkBkCWEof"},"Banner":{"6191320a3175e6a7066bac4f0e8c35ba":"HNDSRJ9a9t=yMxOrVsaeNG~CIoS$xbM_NanjxaRj"},"Logo":{"8374e32b5c399e712405e243b47e15d9":"OM9PyYH?%gM{ofkWRjoLayj[ayfQj[ay0y%gMxxuWBaet7"},"Thumb":{"bdcf0129ac63a8f866ff8db30c3f5fdd":"NHFrCQRkELtl9H$|}?xaJ.E2so-o4oM|kUaxt6t7"}},"LocationType":"FileSystem"},"84ea75203c412f7e6e9150d6e39913bd":{"Name":"Vivarium","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"84ea75203c412f7e6e9150d6e39913bd","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2020-03-10T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6,"RunTimeTicks":59179839488,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"458305"},"VideoType":"VideoFile","ImageTags":{"Primary":"7e6212389cc703685dc0d4f5b9d38ee9"},"BackdropImageTags":["989135983804e5ba89ad4a1bc783241c"],"ImageBlurHashes":{"Backdrop":{"989135983804e5ba89ad4a1bc783241c":"WMF=?iXT*x$LtR-o.TxuH?aeSORj5r%1RONHn$RPKjbIr=NHM{Rj"},"Primary":{"7e6212389cc703685dc0d4f5b9d38ee9":"dRD0lgxu#7xalVW=n3W;AZWVNaS#XSs:tRt7a3M|xaae"}},"LocationType":"FileSystem","MediaType":"Video"},"0c2428de34a510559753249d920ecc84":{"Name":"Fullmetal Alchemist: Brotherhood","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"0c2428de34a510559753249d920ecc84","PremiereDate":"2009-04-04T22:00:00.0000000Z","OfficialRating":"TV-MA","ChannelId":null,"CommunityRating":9.1,"ProductionYear":2009,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":64,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"85249"},"AirDays":[],"ImageTags":{"Primary":"e72c34b8d897dc5e217f6c996536361f","Art":"32570226dda7b6b0478146686580e7bc","Banner":"494b5cd1f00d2e559ff65e8610ac9be6","Logo":"cc258828bafaf74ad324ddb779596ece","Thumb":"bee2a0e985d0d845199d1a320a346074"},"BackdropImageTags":["2fd80ef54e16bf46eb04894a025fe255"],"ImageBlurHashes":{"Backdrop":{"2fd80ef54e16bf46eb04894a025fe255":"WGBeLPoM0_soR*NZAVoM$kR*NZj[EdayxHoLspWU-Cs:I.NZs:oL"},"Primary":{"e72c34b8d897dc5e217f6c996536361f":"dXH_MQoy-m?F~TaexZt60LWEIVIW9HX9NJRkIBRkNes."},"Art":{"32570226dda7b6b0478146686580e7bc":"NG8;ATX=kss:IpxU%$tU%4kXRks7NZjaWqofn+WU"},"Banner":{"494b5cd1f00d2e559ff65e8610ac9be6":"HSIqiTRk%2tRoz^%^%r;9b~VE3Nx%1aejYRQocM{"},"Logo":{"cc258828bafaf74ad324ddb779596ece":"OWEeJrj[0eoLIoR*oLXma|aKj[niWBs:X-j[nObHWBWBbH"},"Thumb":{"bee2a0e985d0d845199d1a320a346074":"NVECd^%1I-xUs+kVyZkXrqs+Rja$Ovo~xVbaM|ai"}},"LocationType":"FileSystem"},"85cf4e6fc25bac2afa309be498ac1796":{"Name":"Ghost in the Shell: Stand Alone Complex - Solid State Society","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"85cf4e6fc25bac2afa309be498ac1796","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-08-31T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":65147518976,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"18874"},"VideoType":"VideoFile","ImageTags":{"Primary":"054dc90e9c2d601b7562ded4883f2a6f","Art":"60812c3ee84beedbc18ee8ba8606c437","Disc":"e173d3122a12ea23918c057b96773774","Logo":"0ec8c6adf7777a68826327eb165ad56e"},"BackdropImageTags":["fa4217d667fd3a6c1f13b417469517a6"],"ImageBlurHashes":{"Backdrop":{"fa4217d667fd3a6c1f13b417469517a6":"W98z=MNH4-%LD+jJ~WV@D%xuD*WC%3jFR%R%M{a}%2V@oft7NGS1"},"Primary":{"054dc90e9c2d601b7562ded4883f2a6f":"dTIE*6=a?b_3.900IUs;EKIoM{M{R%%gtkk9RjkCxaay"},"Art":{"60812c3ee84beedbc18ee8ba8606c437":"NE8|;Ot7D*xuD*M|~p%MIooINGRk-;xuRjs:t7M{"},"Disc":{"e173d3122a12ea23918c057b96773774":"eOCZ9#aw9Dajost5j^WEa^ofR}a{Rij]RURjWSj[j_t6WRj]Roj=xu"},"Logo":{"0ec8c6adf7777a68826327eb165ad56e":"OME{d;og01j[xvocof?uog%Kj[j?oeRkabfR%NfPIUj]oL"}},"LocationType":"FileSystem","MediaType":"Video"},"85e61c7a1e08ed67224a979d27d15214":{"Name":"Pom Poko","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"85e61c7a1e08ed67224a979d27d15214","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1994-07-15T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":71513792512,"ProductionYear":1994,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15283"},"VideoType":"VideoFile","ImageTags":{"Primary":"c24cb589eeb0e68f5caa069d38d04d58","Art":"a79b735986038f36a878f757232efc8d","Banner":"196b233a11c5433ac0c5d858f7d75f16","Disc":"eb1ba6cf8432ffb312d18301922ad7e7","Logo":"160aaf69dd56469ec7dd70ef84da0d6e","Thumb":"774f50f1c4797938a7a5e00b661f773c"},"BackdropImageTags":["0c600dd8fa7a13fbd57bfd68c71c01d9"],"ImageBlurHashes":{"Backdrop":{"0c600dd8fa7a13fbd57bfd68c71c01d9":"WJDJwstk9Iy9VsRX4UM|wixa.6kAOqr^IAMyRoacR9bDx[WGMyog"},"Primary":{"c24cb589eeb0e68f5caa069d38d04d58":"duFrw_xtNHxtkYofRjWB0LRksmRjZ}WBxut6xDa{t7s."},"Art":{"a79b735986038f36a878f757232efc8d":"NkJRHsxH-;?bozRi%300MxkCWBRk-;IAjYofj[WB"},"Banner":{"196b233a11c5433ac0c5d858f7d75f16":"HQHUXc}u9GD$03%MNNIY-,-s^%Mw0LOWtT-pt2IV"},"Disc":{"eb1ba6cf8432ffb312d18301922ad7e7":"eUIOU:sn%gX8%fxrRiRkkWbc.TR*?axHV@tQbcs;nOsk-;xZW9NaNH"},"Logo":{"160aaf69dd56469ec7dd70ef84da0d6e":"O?LMxGof_Nof.8kCxut7a|ayjtayjtayt7fQWBfQaea|ay"},"Thumb":{"774f50f1c4797938a7a5e00b661f773c":"NHD]F*~TWjoZIUJ-Mf%2NLMxrqnh5kS~x]S3Rkiw"}},"LocationType":"FileSystem","MediaType":"Video"},"8645b1ff6184adf497fdbf9799788f64":{"Name":"Pirates of the Caribbean: Dead Men Tell No Tales","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8645b1ff6184adf497fdbf9799788f64","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-05-22T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":77472636928,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"166426"},"VideoType":"VideoFile","ImageTags":{"Primary":"56c4c3aeafda33b1f3495fcf7183a87d","Art":"335dd0733c94f32d8f493f7feac403ae","Banner":"2f91ad3fd141340fa6252f03b9ecbef7","Disc":"c4201822c05ebac22c3b7ba27dce6718","Logo":"136e98ea3c1ec760c1f78c33a923743b","Thumb":"5ca1ecc65c05dccdd9e01dfd07e80b9b"},"BackdropImageTags":["e029c49314b0252ecc12f09ef8c037b0"],"ImageBlurHashes":{"Backdrop":{"e029c49314b0252ecc12f09ef8c037b0":"W12YU:%19b9bR,?F^%xsE3E3WD-nR+a|j[ayodoe9bNH%1%1s-Ip"},"Primary":{"56c4c3aeafda33b1f3495fcf7183a87d":"dlB#3Xt7ERXT?^oeIqW=-;jEIVWB%LjZM{WAtRW=RjjY"},"Art":{"335dd0733c94f32d8f493f7feac403ae":"NaJH%L_2_3Io?vMw_NW=%2oz%NRP.8-;V@RjM{t7"},"Banner":{"2f91ad3fd141340fa6252f03b9ecbef7":"HZCQ}a$#-oRiOZysu5yDs,_N-pn$oyJAyDx]s:%2"},"Disc":{"c4201822c05ebac22c3b7ba27dce6718":"eEFhtz-n1I9Ht,aKV@%LozM|4:M}Kh%LROtlx[DjMy%LPTkBw[o1Vt"},"Logo":{"136e98ea3c1ec760c1f78c33a923743b":"O~Ms_]ofofWAR*WBj]WCaxt7fkWBayt6_Na#fQfkaej[js"},"Thumb":{"5ca1ecc65c05dccdd9e01dfd07e80b9b":"NaDwT}xsPCpIRQXT_Ns+I=X8RPay-;ofIpf,aJae"}},"LocationType":"FileSystem","MediaType":"Video"},"864bd794cd4e5a75309d17aea0aca6aa":{"Name":"A Scanner Darkly","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"864bd794cd4e5a75309d17aea0aca6aa","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-05-24T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":60251709440,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"3509"},"VideoType":"VideoFile","ImageTags":{"Primary":"f5d7e35d1271c7f43b6b8682d951a9e9"},"BackdropImageTags":["4b84b73e4cf3600fce7d27efaf01197a"],"ImageBlurHashes":{"Backdrop":{"4b84b73e4cf3600fce7d27efaf01197a":"WS9%lGog9WbEoMWB%Oa#M^j?jua#R%fQoMf6j[j]WBa{j[oMoMWU"},"Primary":{"f5d7e35d1271c7f43b6b8682d951a9e9":"dFEL8GAJ^3Ri}s$%$+W@#PMw$+xb^RWrw[M_=YEMw_WB"}},"LocationType":"FileSystem","MediaType":"Video"},"867efe05d40153e08c3d1bbbe8475d54":{"Name":"Ocean's Twelve","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"867efe05d40153e08c3d1bbbe8475d54","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-12-08T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":75181547520,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"163"},"VideoType":"VideoFile","ImageTags":{"Primary":"7ca85bbbd4c8ad00855e7e30b2be72d9","Art":"5803866ce115c15da3687a01518b3e05","Banner":"5803866ce115c15da3687a01518b3e05","Disc":"5e529862c9da86228053a160c43cb95f","Logo":"34add7b4275a5ea89a66b40a5dde9597","Thumb":"24865c3aea6341ae84efd4f92db4898f"},"BackdropImageTags":["5e529862c9da86228053a160c43cb95f"],"ImageBlurHashes":{"Backdrop":{"5e529862c9da86228053a160c43cb95f":"WLJ;x%t7:Q[W+H|_^QOrnirri_xG{1F_KiniOXe.[CbbOro1xanO"},"Primary":{"7ca85bbbd4c8ad00855e7e30b2be72d9":"dhO3U+rr%M?Hx]Xmbbni~qb^S$t7=eaKM{VtS~tRV@M_"},"Art":{"5803866ce115c15da3687a01518b3e05":"NNJHK{~C~CWBx]OX?vIUXSofn%M{~WJ7XSaeadxu"},"Banner":{"5803866ce115c15da3687a01518b3e05":"HrJQH9~W^k-pR+kCSM%2-;}[xu$*w{WVayNat7of"},"Disc":{"5e529862c9da86228053a160c43cb95f":"eSL3[lxu.8oL?^OraeV@RjRPt-Rj_3RjMd-Vt7xaofo}-;V@xat7IU"},"Logo":{"34add7b4275a5ea89a66b40a5dde9597":"OzP~f@of.Sof%gbHt7.mj[R5j[Vsayf6kCfkaejtjtaya|"},"Thumb":{"24865c3aea6341ae84efd4f92db4898f":"N+Lgkaxt-p-poekV~qWBtRxvRjoM?btRWXW;V@t7"}},"LocationType":"FileSystem","MediaType":"Video"},"86da1df27577d7b616587d70c95560c8":{"Name":"Only Yesterday","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"86da1df27577d7b616587d70c95560c8","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1991-07-19T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":71282876416,"ProductionYear":1991,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15080"},"VideoType":"VideoFile","ImageTags":{"Primary":"89a08ea19bbed72a9c5e9f258dda3b04","Art":"c5c4b5b8e960463c4d1c58798033e6f1","Banner":"de323cfa4872f90216a82c856ea1a0d4","Disc":"34d89a1478107daee7eb0ff86c77e996","Logo":"89a08ea19bbed72a9c5e9f258dda3b04","Thumb":"0a177ec6ec7ce052eb876b9adfd9e29b"},"BackdropImageTags":["3a513df5ea683b8221e3da0864c334bb"],"ImageBlurHashes":{"Backdrop":{"3a513df5ea683b8221e3da0864c334bb":"WdL;y,~q%ftR%M-p^+xuRiWAt7j?_4xuV[s:afW=-pxboft7ogWB"},"Primary":{"89a08ea19bbed72a9c5e9f258dda3b04":"dbQJWG?b_N~Wx]t7s:R*.9ofMyW??HNGWp%2RPWEs-s+"},"Art":{"c5c4b5b8e960463c4d1c58798033e6f1":"NdO:*4X8_N%2Rioz?bt7RiIUM{RPNHIUM{t8xus:"},"Banner":{"de323cfa4872f90216a82c856ea1a0d4":"HkJt-W~WxuozodRk-pxaR*_1%3xtW.aeoJs:ofkC"},"Disc":{"34d89a1478107daee7eb0ff86c77e996":"eCP?N{Xn*J=Z9zy;%Nvh9ZZ~E9$06.5Rvya_Inx^wNXl$ytSOno#$z"},"Logo":{"89a08ea19bbed72a9c5e9f258dda3b04":"OrF~gcj[xuj[xuj[xuWBfQayfQj[ayj[~qfQWBj[WBj[WB"},"Thumb":{"0a177ec6ec7ce052eb876b9adfd9e29b":"NWLD-[~W-;t7%2oyNY%2xtkCxtR*IpspjFbbtRof"}},"LocationType":"FileSystem","MediaType":"Video"},"c88929424a329cc46a03a97725b0f4a2":{"Name":"Eden of the East","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c88929424a329cc46a03a97725b0f4a2","PremiereDate":"2009-04-08T22:00:00.0000000Z","OfficialRating":"TV-14","ChannelId":null,"CommunityRating":7.9,"ProductionYear":2009,"IsFolder":true,"Type":"Series","UserData":{"UnplayedItemCount":13,"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"88721"},"AirDays":[],"ImageTags":{"Primary":"e477cf185cde019bdad802e7a72a67d8","Art":"3ea9b484c8ea6404ce0bfe59ecf7bfc9","Banner":"46b388da41a05d8617d77b4c610f8f14","Logo":"8b9247dd0e1b896d79da8faeb7da9f7f","Thumb":"583cb36c43fab34f9722a6ce7e802199"},"BackdropImageTags":["193b818602c147e6238041162e941a2c"],"ImageBlurHashes":{"Backdrop":{"193b818602c147e6238041162e941a2c":"WCEdrI%5r0~CF]]oNXNHAVbWOFsq9drXxrX9rYs;v#s:r?M{aLs9"},"Primary":{"e477cf185cde019bdad802e7a72a67d8":"dpP6]i?H?H%Mxus;n$V@~qtRM{of?bofbvo#oJWAWYoz"},"Art":{"3ea9b484c8ea6404ce0bfe59ecf7bfc9":"N67dwL%eV?oyE2D+~UtQtPocoLRjD*IWRkt6%2t6"},"Banner":{"46b388da41a05d8617d77b4c610f8f14":"H=M@N5_M%2IUNG-pX5WBWV~qx[xuaeM{s;t7WBWB"},"Logo":{"8b9247dd0e1b896d79da8faeb7da9f7f":"OKF=~,-:9Yofjv%MxuM{_3ofRjxuRjxu01D*Rkxut6ofWB"},"Thumb":{"583cb36c43fab34f9722a6ce7e802199":"NjPQNm~qxsRibw%MtRj]V@a#ofaxslozaef+jYax"}},"LocationType":"FileSystem"},"88c506a964eea6d3f74467aa8ebbbefd":{"Name":"Deadpool 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"88c506a964eea6d3f74467aa8ebbbefd","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-05-14T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":80395837440,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"383498"},"VideoType":"VideoFile","ImageTags":{"Primary":"ee6f17a67fdebe6d36cc207e5117b39d","Art":"61b83ce7f868d482058a2fee5cbe41d1","Banner":"bba782ee18dc1a63585dfd8467ccb445","Disc":"a1c688f51288addc8038a0f838e670b1","Logo":"73c519cb5d5ea1198acbed376e331ec9","Thumb":"3892f74db74ec004a2a9ca353b2d5d41"},"BackdropImageTags":["cc8775c2c2d4f4614a28d09c6d919b3a"],"ImageBlurHashes":{"Backdrop":{"cc8775c2c2d4f4614a28d09c6d919b3a":"W_Lpt0t7of%Mxue.~qt7oft7t7WB%gofayWBofWB-;jFoft7n*j["},"Primary":{"ee6f17a67fdebe6d36cc207e5117b39d":"dHBys%~p9t9FO?xar?M{4TD%xt%LWCR*W;t7k;t7V[Rj"},"Art":{"61b83ce7f868d482058a2fee5cbe41d1":"NdID{^aytRWq%2M__NRjoMIVt7Mx%gsot7Rjt7Rj"},"Banner":{"bba782ee18dc1a63585dfd8467ccb445":"H}O3hD-=xuV@W;%MxuV?kD~qRjxaWWR*xuW;V@t7"},"Disc":{"a1c688f51288addc8038a0f838e670b1":"eaJkDuRP?vxt?b_2M{M{t7j]~qRjtRoeRjNGt7M{WBoKx]t7RjRkM{"},"Logo":{"73c519cb5d5ea1198acbed376e331ec9":"O~PG5Dj[kCj[ofkCofs:fQayfQfQa|jt_Nj[aej[WBjZWB"},"Thumb":{"3892f74db74ec004a2a9ca353b2d5d41":"NrLNPvoL.8?b?b-;~WM{tRt6t6t7r?s:X7NGRioz"}},"LocationType":"FileSystem","MediaType":"Video"},"895dbef4d26bbaf8058443be7e7e4b05":{"Name":"Appleseed Alpha","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"895dbef4d26bbaf8058443be7e7e4b05","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-05-27T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":55955951616,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"269650"},"VideoType":"VideoFile","ImageTags":{"Primary":"eab1871ee041afe089f069af2f25e861","Art":"1bd155a1538fad74219d5968c2c91532","Banner":"58d7893f80ccc7e708ce3b58788c41e9","Disc":"6ac22815a6770b0482e7f7aa2f3ebe0d","Logo":"0411e25956389c83a61afebf77c8889c","Thumb":"71e82030e68055e68b4d478aa97f6450"},"BackdropImageTags":["2fe66e1eb7b028b2c2a4488ebfe25d9f"],"ImageBlurHashes":{"Backdrop":{"2fe66e1eb7b028b2c2a4488ebfe25d9f":"WyJ[95%K%KoyIXt7~oofj[t6RkofD.R+M}oft5WDIXf8a#WCoxa}"},"Primary":{"eab1871ee041afe089f069af2f25e861":"dnIz3Q=_XR%1}rxZt6xY+wnOR*a$rrxFWBM|nmw|WBNI"},"Art":{"1bd155a1538fad74219d5968c2c91532":"NLHnc^O@cu?GtS-:vy4.4:IUITxt_2xYXARm?GbJ"},"Banner":{"58d7893f80ccc7e708ce3b58788c41e9":"H#I5Y._N%MRPWX%2xuWBM|_3%MxuRPM{WBt7t7a#"},"Disc":{"6ac22815a6770b0482e7f7aa2f3ebe0d":"eNKwFA%wuPxZ-;}SOUXlsmbI^-MzyZV{MxI^wKI;E3RQ%$$%RiSznN"},"Logo":{"0411e25956389c83a61afebf77c8889c":"OXBWe}M{ofayWBt7M{j[j[fQayj[ayay00t7f6ayj[WBt7"},"Thumb":{"71e82030e68055e68b4d478aa97f6450":"NkKw{]%L%KxtD+xt~nt7t7t6Rnj[D=R+IWoLtPWD"}},"LocationType":"FileSystem","MediaType":"Video"},"89df815cdbcb272f0fb2a99f046fd88b":{"Name":"Deathgasm","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"89df815cdbcb272f0fb2a99f046fd88b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2015-08-27T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":51657490432,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"323373"},"VideoType":"VideoFile","ImageTags":{"Primary":"29871fb988dc707b8f516e3070cae4e2"},"BackdropImageTags":["95872e609eb44dca961fbf4a5c80d1db"],"ImageBlurHashes":{"Backdrop":{"95872e609eb44dca961fbf4a5c80d1db":"WjI|O60Lsl-;9G?G-:RjRjxuWBaxXSayV@xat6V@-pRjRjxujFn%"},"Primary":{"29871fb988dc707b8f516e3070cae4e2":"dUMjp]^+_N?vIAaebbRjX8kC4nIU.8t7M{jYtRofMxV@"}},"LocationType":"FileSystem","MediaType":"Video"},"8a4c1ae5907627844757b0c2b96efd01":{"Name":"The Simpsons Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8a4c1ae5907627844757b0c2b96efd01","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2007-07-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":52046618624,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"35"},"VideoType":"VideoFile","ImageTags":{"Primary":"48dd0f42f5812064f0678b93401769eb","Art":"66d571fadfbb85ccbf828611337f7c37","Banner":"39367d15fb70caa468f03f5aa16fce2d","Disc":"fb722d8392007c077ed21b5c4cc7f937","Logo":"b2aeb604a490ce1b5dc3133b2003e530","Thumb":"16f2f1ebc29e3445820363651dbfbfa5"},"BackdropImageTags":["a28a4c7e0150bfe89234414dfc8316f0"],"ImageBlurHashes":{"Backdrop":{"a28a4c7e0150bfe89234414dfc8316f0":"WUI5lGt8E-?a_3xu*0x].9t8$_RjpKNeM{E1xUIU_2I@i^M{E4M_"},"Primary":{"48dd0f42f5812064f0678b93401769eb":"dqJICH%0x[x]GwWVkBS$VtWVnhWBXTS5w[nhg5NxjEV@"},"Art":{"66d571fadfbb85ccbf828611337f7c37":"NMHL0Oo#0L%2N@9H-h4?NMnh$xMx5EE4=_xZxU$~"},"Banner":{"39367d15fb70caa468f03f5aa16fce2d":"H~Ql?+t8x]%M%g%NV@%0t8~qogWYogt7xtoboIbI"},"Disc":{"fb722d8392007c077ed21b5c4cc7f937":"eJP%CSRlt.xvE3~7jFE7XAnh1TRN-Nf,-o%OV@IUi]tR9btT^iR3NL"},"Logo":{"b2aeb604a490ce1b5dc3133b2003e530":"OoJa0$s=S]bqD=M+IWI[t7xHo3k8WnoJ0joyn,aP$|t2t3"},"Thumb":{"16f2f1ebc29e3445820363651dbfbfa5":"NrRL]=afRj-nt4-n_4sjacWBR*bc%ij=axbIWXbK"}},"LocationType":"FileSystem","MediaType":"Video"},"8ac88091be984bcc91c44c8d2d54e62f":{"Name":"Coherence","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8ac88091be984bcc91c44c8d2d54e62f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-09-18T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":52764139520,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"220289"},"VideoType":"VideoFile","ImageTags":{"Primary":"c2fcd0c24d7c558dabfa0d707bb48fbf"},"BackdropImageTags":["38424d062dacbb2a87b22a78ceb903c2"],"ImageBlurHashes":{"Backdrop":{"38424d062dacbb2a87b22a78ceb903c2":"WODk#Yeoxr$$s-xs};M}oes.Rls-~8IqX7WXbHoJ^hRlRkt6NHs."},"Primary":{"c2fcd0c24d7c558dabfa0d707bb48fbf":"d9AbYDo|OX=x+u6QJ-=c1cNwJ8NbOE[;w^AE9]wc$3R*"}},"LocationType":"FileSystem","MediaType":"Video"},"8acf7f6faa88af360ffa5e7a3ab7df85":{"Name":"The Chronicles of Riddick","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8acf7f6faa88af360ffa5e7a3ab7df85","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-06-10T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":80460906496,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2789"},"VideoType":"VideoFile","ImageTags":{"Primary":"6b85a602f2b93ccd1022e99b4b92d4ab","Art":"c0ff4b548ee3095a3b25ebb3611ae810","Banner":"84106ad3e895189e62d0d673b7f34571","Disc":"570fbb1b5c6642b5e2bcec796b6a8094","Logo":"707977839df3bddad399ecb406279409","Thumb":"bb5ecc728742896872016b5f0b5e6aad"},"BackdropImageTags":["ee130ad139fc9bf6c3b13b45e199ca94"],"ImageBlurHashes":{"Backdrop":{"ee130ad139fc9bf6c3b13b45e199ca94":"WKCrWKoyE3IV0gSi^NWojJWB9wIq=]R*spj[IsNK~9V@NHt7E3WE"},"Primary":{"6b85a602f2b93ccd1022e99b4b92d4ab":"dWI|XD$*ic^h-Ts.Rlay0MRkJCIq%2sCRjn+AHX8tPNb"},"Art":{"c0ff4b548ee3095a3b25ebb3611ae810":"NlPZV|^*R-In-;IU.AtSoINGj]xZ%Mj[WXfPWCkC"},"Banner":{"84106ad3e895189e62d0d673b7f34571":"HLCYjltR0hIW%L-.M{D*E2~U%2E3Ip%K%KRjD*IV"},"Disc":{"570fbb1b5c6642b5e2bcec796b6a8094":"eiJ7:kIp%#t6%N=?NHNyt6ad.ToJ-:s.e-E2t6t7jFjZ%NbHjEWBM{"},"Logo":{"707977839df3bddad399ecb406279409":"OVDuxAofoJj@WBjsa}NLazWCayayj[ay0iayWCayoej[ay"},"Thumb":{"bb5ecc728742896872016b5f0b5e6aad":"NjET^jxY9vM}OEt6}rs.ENRkSht6xZj@R*WCofoy"}},"LocationType":"FileSystem","MediaType":"Video"},"8ad07bf2b37fa5d33ab6f340cb3dabc9":{"Name":"Kill Bill: Vol. 1","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8ad07bf2b37fa5d33ab6f340cb3dabc9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-10-09T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8,"RunTimeTicks":66436399104,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"24"},"VideoType":"VideoFile","ImageTags":{"Primary":"75052fc76663966a7c958300665cf3bc","Art":"0e4b6a8d14c372a9d06bd9a82abb01ca","Banner":"6867c8b35640b63fd5290443dff0ce25","Disc":"22707a1a942e3e00edb717ad363b24a7","Logo":"30819a2c69dc31c1db01bd7017c9a29f","Thumb":"fc51eab8009d24cb2c6547bc77fd0012"},"BackdropImageTags":["2177edbb8cd45c980e2d5e77f2e7a97a"],"ImageBlurHashes":{"Backdrop":{"2177edbb8cd45c980e2d5e77f2e7a97a":"W*RB7a$}s,$}R-$}%Zj@a{kAjuj@%Hj@WCa|oKoK~5ods.s-WCod"},"Primary":{"75052fc76663966a7c958300665cf3bc":"dYP$A8~MtL-UWYRkNIo3g1xXRlR-^z%HoJRn$|xDahWX"},"Art":{"0e4b6a8d14c372a9d06bd9a82abb01ca":"NWOV^{~d-;WotlsC-,%JX7R-a$jFtoXBRQV[jct5"},"Banner":{"6867c8b35640b63fd5290443dff0ce25":"H^Q[EnocR+xG-i$~WE%FN1~6R+WVt5$|xXa#t3Rn"},"Disc":{"22707a1a942e3e00edb717ad363b24a7":"eaPF3[-$Gdv*XVSeNHrtbEX4%jN0yDNxs9x:xYNIoeWVb|Rkxot3RO"},"Logo":{"30819a2c69dc31c1db01bd7017c9a29f":"O68Ddl}CVwKL0+J+bZ7a6}Nc,=+y#oxXvS=IxXJ9KLNcWW"},"Thumb":{"fc51eab8009d24cb2c6547bc77fd0012":"NbNlRNtM4[-T~N=]%IR+NJt5$|R--l-QodWXRlIt"}},"LocationType":"FileSystem","MediaType":"Video"},"8b1b322d4d71c00c0994e3b6b95b90ab":{"Name":"Angels & Demons","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8b1b322d4d71c00c0994e3b6b95b90ab","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-05-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":87758299136,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"13448"},"VideoType":"VideoFile","ImageTags":{"Primary":"ad04648206827736a2a43b42a5da43bb","Art":"2b963e1cd1460701d81d432bcde0c5c0","Banner":"1f18077814e683f400aea7a5e946e2af","Disc":"216f0e02add440f478d89f0c77a4b0be","Logo":"e2c00bbbcd29c600a4265bb8f623decc","Thumb":"a7ad0997662954109c916bebebc560cc"},"BackdropImageTags":["3dfaacbe9ef227c3a637f003cd6bf62f"],"ImageBlurHashes":{"Backdrop":{"3dfaacbe9ef227c3a637f003cd6bf62f":"WOCjLY01of-:IUae?aRjIV%LWBM{IV%LIVoeofM|t7M|t6R*WBt6"},"Primary":{"ad04648206827736a2a43b42a5da43bb":"dB6k*F%Mozx]_N%LtR%M%g%MnitQM|tRs.ozD*Rjt6WB"},"Art":{"2b963e1cd1460701d81d432bcde0c5c0":"N_LEHD~q%MIURjof%2t7kCaeWBj[aeRjRkofofWV"},"Banner":{"1f18077814e683f400aea7a5e946e2af":"HUHJdlv}0etlKNNaIUM{-;{ft7J-IoXSofw{t7NG"},"Disc":{"216f0e02add440f478d89f0c77a4b0be":"edK1w3^w.9E3%g?9s+IuNKoy.AD-%3t7s*WCahkCoebF%gbYoat5M{"},"Logo":{"e2c00bbbcd29c600a4265bb8f623decc":"OH7^[GRjWpt7e.WBW;WBfQjtjtj[a|ay00t7n*RjkCofn%"},"Thumb":{"a7ad0997662954109c916bebebc560cc":"NcC},:={NbRQRPIp}?-oSgV@RQNH={%1ayV@V[WC"}},"LocationType":"FileSystem","MediaType":"Video"},"8b25b58952cf51a62985ba01fa20cc89":{"Name":"Alice in Wonderland","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8b25b58952cf51a62985ba01fa20cc89","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-03-02T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":65148420096,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12155"},"VideoType":"VideoFile","ImageTags":{"Primary":"c28f056505f6b66ae168067f32e57289","Art":"f18548eab0f7ee56ca73919687be4c84","Banner":"0c799c59507ddbc09424fe344865dc30","Disc":"1a67e4b3e233a76e4a79a59d1f979fcb","Logo":"7d8f67fa2ab21e92ea9823e9e2c0db22","Thumb":"4f50bff5fc7dac7ad958585b156a78ba"},"BackdropImageTags":["d037ca10c5a54b20ee3af82ad2f9cbda"],"ImageBlurHashes":{"Backdrop":{"d037ca10c5a54b20ee3af82ad2f9cbda":"WaF$2~smWWIoRjtQ_NofoIRkNGj[o}ozIVjcoee.bct7M{oebIWB"},"Primary":{"c28f056505f6b66ae168067f32e57289":"dfHC4U-;t5%g_4s.adt7RUMxRjRj%1RPS1oy%1nij]kW"},"Art":{"f18548eab0f7ee56ca73919687be4c84":"NiJH%NtR%2-;oJV@~qM_R*j]RiRP%gxuxvkCWBt7"},"Banner":{"0c799c59507ddbc09424fe344865dc30":"HgGuj*IBt7S4RPWon$t7tR_NVsf+R+IUofi^j]oz"},"Disc":{"1a67e4b3e233a76e4a79a59d1f979fcb":"eUIOhIs9~qbwx]#QadNJaytR?wR+-:aexZyDbbbvogVs-=RkjYjYIU"},"Logo":{"7d8f67fa2ab21e92ea9823e9e2c0db22":"OLQ,L1%M~qt7xuRj%M~qWBM{ofIUayj[xuRjM{t7t7WBRj"},"Thumb":{"4f50bff5fc7dac7ad958585b156a78ba":"NaF6IHxG9GW?j[%g~qsSNGo#WCtRxvs.WAozozWB"}},"LocationType":"FileSystem","MediaType":"Video"},"8b44e6500c13aa8d213db8df30e5804a":{"Name":"Star Wars: Episode I - The Phantom Menace","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8b44e6500c13aa8d213db8df30e5804a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1999-05-18T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":81709654016,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1893"},"VideoType":"VideoFile","ImageTags":{"Primary":"49db87dc73a1a9ae9add81522a3eef0f","Art":"0bd5053e73e409189e5c89a34dbe3813","Banner":"1b989298d5fa9eafd1be87d109b485d0","Disc":"b681ed3d377b1161c987af2f54ff2864","Logo":"3faae00458ba4ca75a19a8ee2425931d","Thumb":"8e18d1b9a4bb1d6c352d31a40f74cdf1"},"BackdropImageTags":["4cb0760898101f3cf34daa875fbc4033"],"ImageBlurHashes":{"Backdrop":{"4cb0760898101f3cf34daa875fbc4033":"WNC?P?Rj0gNHxYxa~pRkIVjZs,oeA0j[%0t6RjRk9zof%1s:V@Rk"},"Primary":{"49db87dc73a1a9ae9add81522a3eef0f":"dODb7s-U0$WY=ue.ENay58R-%0WAEOt6%1R+R+WBoKog"},"Art":{"0bd5053e73e409189e5c89a34dbe3813":"NfKn0L~oD*xZW=t6-hW9RkxtR*aeIqRkoeWCj@fR"},"Banner":{"1b989298d5fa9eafd1be87d109b485d0":"HOBVw-JBo#~A57xtxC57t4^jo}oz-nI[WBxFIpRi"},"Disc":{"b681ed3d377b1161c987af2f54ff2864":"eXK1ad9G_4%L-p$+n%R*SfjZ-;%L.8IVt7RPR-t6oJe?%ga{Rjt7Mx"},"Logo":{"3faae00458ba4ca75a19a8ee2425931d":"O#Kw,?WCogoft7j[t7%MWBayj[fPayay~qWCaxfkWBfQWB"},"Thumb":{"8e18d1b9a4bb1d6c352d31a40f74cdf1":"NA70*$5RNd}@57%2=xI;Wq-TEMxZIVxaoJM|xuV@"}},"LocationType":"FileSystem","MediaType":"Video"},"8cee392672616eddec52e8411c7671eb":{"Name":"Big Hero 6","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8cee392672616eddec52e8411c7671eb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-10-23T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":61127360512,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"177572"},"VideoType":"VideoFile","ImageTags":{"Primary":"55130c93e4fd3482a9ae9918dbac15f1","Art":"81cf0758d24b067ecd4785826a53b141","Banner":"828577d37e49b810a90d0244bed5dc18","Disc":"73a3a9dfdfc72caf1f2ec787327e796c","Logo":"55130c93e4fd3482a9ae9918dbac15f1","Thumb":"7d279fd38f64e25fe06510fe6f8af1d9"},"BackdropImageTags":["7611673911d46b8ed5509b852c1c85c9"],"ImageBlurHashes":{"Backdrop":{"7611673911d46b8ed5509b852c1c85c9":"WfQ9.k?I?w%f?a?c~ps;a#R%ogxv-=WnIUt8j]V@?cWUj=t8xuof"},"Primary":{"55130c93e4fd3482a9ae9918dbac15f1":"dQMr$2@F#7=y?b8wicx]u*XmTJf5$*-;x]NGVYIoRPxa"},"Art":{"81cf0758d24b067ecd4785826a53b141":"NPOp0|018w?a.8.8DOIAR5i_i_V@?w.8Vsic$%xa"},"Banner":{"828577d37e49b810a90d0244bed5dc18":"HcILy9v#EL}]5RAZ%MM{sp~CZ%a0}[MxI:xuM{n%"},"Disc":{"73a3a9dfdfc72caf1f2ec787327e796c":"eMK,K$[VP:5-?b-;aLrrV?Na_NTJ.SnhMxE2Ors:jvoe.9NGS2$*Vr"},"Logo":{"55130c93e4fd3482a9ae9918dbac15f1":"O7RoHiU^ae?^RPv~tR_N*IofV@VsaeozR5WBo}f6Mdtltl"},"Thumb":{"7d279fd38f64e25fe06510fe6f8af1d9":"NNEw,=TxI;+a9]sC~C%LxFRjELR%X,-p,?EhM{sn"}},"LocationType":"FileSystem","MediaType":"Video"},"8d1f9bf12e62aaf8dc2c4836cc8d93c3":{"Name":"Promare","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8d1f9bf12e62aaf8dc2c4836cc8d93c3","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2019-05-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":66675310592,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"553600"},"VideoType":"VideoFile","ImageTags":{"Primary":"4307a70766742519dade6b0a6ffec3d2"},"BackdropImageTags":["0f3026704f28d6679ca0b33065863582"],"ImageBlurHashes":{"Backdrop":{"0f3026704f28d6679ca0b33065863582":"WOJ@8*_2.Q^*TH%#T{-o?ErWK5ElyANEyCk=FxXm~UkPt+g$Sw%0"},"Primary":{"4307a70766742519dade6b0a6ffec3d2":"daP$]@?b?v?v_Mt6WAoz?^r?IAj?~Ds;R.s;%2XSWGof"}},"LocationType":"FileSystem","MediaType":"Video"},"8d61aab2809d3f0a47c9aacd2b4a4bdc":{"Name":"Ghost in the Shell 2.0","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8d61aab2809d3f0a47c9aacd2b4a4bdc","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-07-11T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":49875410944,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"14092"},"VideoType":"VideoFile","ImageTags":{"Primary":"3f5b721e844f026437de364bfb0f4eb3","Art":"c87ac5b0babe0e0717962f1a961e7bcc","Banner":"95fbebd06bf8ae923d9d16044dae4c31","Disc":"5a9bfde78ce70b06936a3585da108405","Logo":"9cb7b04df14e9a7cba0e9cba3e1aa741","Thumb":"58ed02d8d14c6bd1207a73a94400b37c"},"BackdropImageTags":["5a9bfde78ce70b06936a3585da108405"],"ImageBlurHashes":{"Backdrop":{"5a9bfde78ce70b06936a3585da108405":"WOAAg{roEMIVV?x]M~R%xaxtj[Rk9DXUxZxaogRj?Gs:IoM|WBt6"},"Primary":{"3f5b721e844f026437de364bfb0f4eb3":"duHn80t7-U-o0MfRIpIV%gofkBbv$$ofsmsmIWWBWDWB"},"Art":{"c87ac5b0babe0e0717962f1a961e7bcc":"NLBp^8%L8{x]V[M|4TWA%MMyW;WCMyt7%foLR*of"},"Banner":{"95fbebd06bf8ae923d9d16044dae4c31":"H8A0H[*}0L%f}@$k9tIVpH?uMyR6tQS#WYjEnjkp"},"Disc":{"5a9bfde78ce70b06936a3585da108405":"ekKK$hIo00RPo#bcRjaxxuf6IVs:IUxuoes:ofayRja}IooeoLbIof"},"Logo":{"9cb7b04df14e9a7cba0e9cba3e1aa741":"OfCZz:ayRjt7RjofWBofofj[ayayj[f74UayofWBofayof"},"Thumb":{"58ed02d8d14c6bd1207a73a94400b37c":"NVGHC^-p,:-9RjxY0LIoNxa#S#R*OqX7baJ8jHt6"}},"LocationType":"FileSystem","MediaType":"Video"},"8e460342ecf2483b74a162ecebf69672":{"Name":"Apollo 11","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8e460342ecf2483b74a162ecebf69672","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-03-07T23:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":55802421248,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"549559"},"VideoType":"VideoFile","ImageTags":{"Primary":"9da152f48480cd9d3ddddcdf638d6400"},"BackdropImageTags":["8c9a69099983f391c9c2eda7952b9282"],"ImageBlurHashes":{"Backdrop":{"8c9a69099983f391c9c2eda7952b9282":"WPEfKJM{M{a#kDs:M|t7WBt7RjWB00kBxuM{RjWVoeRjoLRjofof"},"Primary":{"9da152f48480cd9d3ddddcdf638d6400":"dbEU+Exas-%1M|WBR*WX0fRkW=NG-os:s.t6%2oLWBoL"}},"LocationType":"FileSystem","MediaType":"Video"},"8ef9ea9324695debe83332ca20e35f6c":{"Name":"The Chronicles of Narnia: The Voyage of the Dawn Treader","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"8ef9ea9324695debe83332ca20e35f6c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-12-01T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":67607580672,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10140"},"VideoType":"VideoFile","ImageTags":{"Primary":"097de34a36a99734495ef357213da286","Art":"93c8c58d23be9b64bb80fd1e4134c74e","Banner":"3236eca758ddf4468176ce7375516f3b","Disc":"6966d5520127cea965aee2f49f999d83","Logo":"8f5446ffb2920b474779844d11fb35ea","Thumb":"2cae871cb742b66db81be4abecb301b1"},"BackdropImageTags":["fe3605b21aa21379b68b450c26c56950"],"ImageBlurHashes":{"Backdrop":{"fe3605b21aa21379b68b450c26c56950":"WVJ7{-nN9xs:D%xv}mx]9{kXe.RQ0LnigONxxFM|tmaJs,bbofx]"},"Primary":{"097de34a36a99734495ef357213da286":"dOEy-~-=cF.9*0kWRQtR9GNbRls.-;f8%gxtDjafaJIU"},"Art":{"93c8c58d23be9b64bb80fd1e4134c74e":"NMIg+S%gFznO$y-:qZNFMwxaT0RjpcV@s;t7jvxt"},"Banner":{"3236eca758ddf4468176ce7375516f3b":"HbEeSd0N^%D*TJawNL%0E3?FE2%LM|X9bXRmt6M}"},"Disc":{"6966d5520127cea965aee2f49f999d83":"ebK,Q+9v*0-AyDsoayX7R+a#*0-7-;NInht6f6e:t6jZl9NHr=baMx"},"Logo":{"8f5446ffb2920b474779844d11fb35ea":"OTJjbrWAShr=X9e-W==yocofjaWWsmS3uiazn*kCf7oLju"},"Thumb":{"2cae871cb742b66db81be4abecb301b1":"NVJ7m.t35rniIT$+~9xuENo~i_Rj57aJkXX9sSNH"}},"LocationType":"FileSystem","MediaType":"Video"},"903c59672fd21d664d0d8d36f4f45f82":{"Name":"The Shining","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"903c59672fd21d664d0d8d36f4f45f82","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1980-06-12T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":86261866496,"ProductionYear":1980,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"694"},"VideoType":"VideoFile","ImageTags":{"Primary":"d0e037232999f75661b8b97570bc6bcd"},"BackdropImageTags":["e6bcbb34c4603851ef040156da2473cf"],"ImageBlurHashes":{"Backdrop":{"e6bcbb34c4603851ef040156da2473cf":"WYKmeA-o~Cs;%Lxu~CIokC-VWBxt-pR*IpofRjo0-ps:s:WWkCR*"},"Primary":{"d0e037232999f75661b8b97570bc6bcd":"dNH1i1-;5l?a^+xuIooe0$WBrXM|Xns:r=R*JCs:s,Rk"}},"LocationType":"FileSystem","MediaType":"Video"},"90b82450dbe424f60500f78a8f17eabd":{"Name":"Casino Royale","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"90b82450dbe424f60500f78a8f17eabd","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2006-11-13T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":86526681088,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36557"},"VideoType":"VideoFile","ImageTags":{"Primary":"d62929595cb87245bd946513995099bc"},"BackdropImageTags":["503def2dab223a007cb73d12df3ee67a"],"ImageBlurHashes":{"Backdrop":{"503def2dab223a007cb73d12df3ee67a":"WVFZTuxakXpJWBNG_N%MIoozj[M{xZRiIoWCogWB-;ofNHWBWCt7"},"Primary":{"d62929595cb87245bd946513995099bc":"dF9Qs:~q?ax].7-;?a-;-:-p-;%g^+_2%MW=WUxut6xu"}},"LocationType":"FileSystem","MediaType":"Video"},"91cf24c6e4449c02e99e971d631c7157":{"Name":"World of Tomorrow","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"91cf24c6e4449c02e99e971d631c7157","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":9894830080,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"303867"},"VideoType":"VideoFile","ImageTags":{"Primary":"e6b8b1341202bae5eb79efbad60d0950"},"BackdropImageTags":["468290b94c31a2ceb22b075bf9fc11d0"],"ImageBlurHashes":{"Backdrop":{"468290b94c31a2ceb22b075bf9fc11d0":"WRPy|]}q$Pr_nn;}^OxtxvRlRQ$4iwgNaxf5bZt6}Zr]V?tQocV?"},"Primary":{"e6b8b1341202bae5eb79efbad60d0950":"dRL?00-:Vo?t{zzWRPV[yBrnavxA*0GrK*t6nNL0L1vz"}},"LocationType":"FileSystem","MediaType":"Video"},"920c04bc07b8fdbea33f52ec855ae3a3":{"Name":"The Maze Runner","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"920c04bc07b8fdbea33f52ec855ae3a3","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-09-09T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":68068159488,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"198663"},"VideoType":"VideoFile","ImageTags":{"Primary":"879ea2d5a2277a2395c25c48f88d77db","Art":"fa6e0021c969037f3b8b9c766858d241","Banner":"7d1fc019c2ac4b059a1ce0820c024d9f","Disc":"6a0548f063ca374cdc5eb6cd7e135081","Logo":"8980fdda124e81e2a70c35e24c0f56b8","Thumb":"512bd9c520b0e1d3213c72ae7ffacf84"},"BackdropImageTags":["89ad8cea20383ff12bc77dbad8f974c6"],"ImageBlurHashes":{"Backdrop":{"89ad8cea20383ff12bc77dbad8f974c6":"WYBzqJx]IUkCahWB_NtRRjt7aeay.8x]WBayjZoz?vx]M{Rkj]kB"},"Primary":{"879ea2d5a2277a2395c25c48f88d77db":"dRA^zR.8M{f%_N%gaeof.8%Mjsf*?u%MRjWB.8tRRQWV"},"Art":{"fa6e0021c969037f3b8b9c766858d241":"N:N^e-00D%ofxuxu%NRjRjj[j]j[Mxs:ofWBWUfj"},"Banner":{"7d1fc019c2ac4b059a1ce0820c024d9f":"HD9kB2?]D+o~XSSh-;%2t8.8yCbvR+M{NGkDtRtR"},"Disc":{"6a0548f063ca374cdc5eb6cd7e135081":"eZH{4iaet8of%M?uWCMxWBaf_4f6-;kCM{VtaykCoeoet9s:oJWBRj"},"Logo":{"8980fdda124e81e2a70c35e24c0f56b8":"O:P%O,j[j[ayj[offQWBayf7ayj[j[az~qj[ayofayayfQ"},"Thumb":{"512bd9c520b0e1d3213c72ae7ffacf84":"NQBDpA-oMdoeVssl.TS4MdoLRPn$?wj]IARkM{V@"}},"LocationType":"FileSystem","MediaType":"Video"},"927b5b01474198e12275577299a209eb":{"Name":"Get Out","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"927b5b01474198e12275577299a209eb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-02-23T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":62451838976,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"419430"},"VideoType":"VideoFile","ImageTags":{"Primary":"66edcbd1a10cb2f78348e64b5602391f"},"BackdropImageTags":["f248e52149ae72f4cc79b6cfe2a42fcc"],"ImageBlurHashes":{"Backdrop":{"f248e52149ae72f4cc79b6cfe2a42fcc":"WLC%26t79E%LR+M_~VxtbcRns.WB-jxubwM{WBkCt3oyWXM{R*R-"},"Primary":{"66edcbd1a10cb2f78348e64b5602391f":"doJb2500IUay_3D%IU%MM{WBofxuxuWBRjWBxuofWBRj"}},"LocationType":"FileSystem","MediaType":"Video"},"92f10faf9b3c40989feba9b17af0450c":{"Name":"Evangelion: 1.0 You Are (Not) Alone","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"92f10faf9b3c40989feba9b17af0450c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-08-31T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":60577501184,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15137"},"VideoType":"VideoFile","ImageTags":{"Primary":"919a6bf020bb93c2bee2ee071c9fbf66","Art":"d86b2e0da63ecb90a13bf8d9b121dc68","Banner":"f67dfa435a0593d2e0f3328f9f3d58c8","Disc":"a3c25fb3952b91b32776b740e5fdfc8e","Logo":"7defb37657870a6f7cbb8042ffe2eb66","Thumb":"090fede561e7381e28daf143cf553079"},"BackdropImageTags":["543244c5a58f8ee0cadec75ef30b37ea"],"ImageBlurHashes":{"Backdrop":{"543244c5a58f8ee0cadec75ef30b37ea":"WWGu,m~qxut7xu%Mt7WVayj[j[j[00IURjofayRj-;ayofj[aykB"},"Primary":{"919a6bf020bb93c2bee2ee071c9fbf66":"dVCh~3xG9uWCJBR+s,oL0#WW%0bF^OxZIqWBxZazWCoL"},"Art":{"d86b2e0da63ecb90a13bf8d9b121dc68":"NA8:*U1H#RM|ouX9?GS~xGNGofWDO@-BI:s.f9sm"},"Banner":{"f67dfa435a0593d2e0f3328f9f3d58c8":"HcIw?1[WwxOr0|s:$5Rjxa}ZRPfQS~ACkWSgNaw{"},"Disc":{"a3c25fb3952b91b32776b740e5fdfc8e":"e9Kd_I%X4m?d9Xx@jX?cIVxpIo-qIToxr_?aaiM|xtt7D$tS%2xYD*"},"Logo":{"7defb37657870a6f7cbb8042ffe2eb66":"OB7nRRj[IUj[ayofWBj[ayt7ayayayWB00WBxuayj[WBof"},"Thumb":{"090fede561e7381e28daf143cf553079":"NRDsd]|I#msoNaj[#mWBkCoLR*soBTAWJ7ODSgW;"}},"LocationType":"FileSystem","MediaType":"Video"},"93d252417ff56f6db022581870835896":{"Name":"Circle","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"93d252417ff56f6db022581870835896","HasSubtitles":true,"Container":"mkv,webm","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":51884339200,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"335866"},"VideoType":"VideoFile","ImageTags":{"Primary":"ea09b5779c6285bb1acf66274ae85db0"},"BackdropImageTags":["f4de3eccb7acbeb1e6960bdb9ac9fc98"],"ImageBlurHashes":{"Backdrop":{"f4de3eccb7acbeb1e6960bdb9ac9fc98":"W98DqZ-U0MIpEgI;K4OWoKwKwKs.02V[-:o|bboxWCaLRkbuxtay"},"Primary":{"ea09b5779c6285bb1acf66274ae85db0":"d01e^U$*EzOE$ko2bFj[NeS3xFw{=esoJ8S2$PsVNuS2"}},"LocationType":"FileSystem","MediaType":"Video"},"93e03f57634a588eeddea94d930e3975":{"Name":"Star Wars: The Last Jedi","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"93e03f57634a588eeddea94d930e3975","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-12-12T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":91116167168,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"181808"},"VideoType":"VideoFile","ImageTags":{"Primary":"258664650450b7e4886855a136b06c11"},"BackdropImageTags":["be9598f6bbe47994b66275ab6a7079a7"],"ImageBlurHashes":{"Backdrop":{"be9598f6bbe47994b66275ab6a7079a7":"NSD*2z=vIrIrWEt5}q$#NIRmazoeNIWCt5t5j@WC"},"Primary":{"258664650450b7e4886855a136b06c11":"dlHw.Ux]%2%200RjjFRiOqjYIUR*%Mo0x]xuIAf+e.V@"}},"LocationType":"FileSystem","MediaType":"Video"},"968bb526931529af5098c02e4a8d06c1":{"Name":"Captain America: Civil War","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"968bb526931529af5098c02e4a8d06c1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-04-26T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":88619417600,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"271110"},"VideoType":"VideoFile","ImageTags":{"Primary":"f54b69c7cbe71a1a58c4ec8d0cedbd30","Art":"b0d4471b28764a9e2778b33068fcb707","Banner":"18a2311ef7bc6e53d82ee221dfbb27f1","Disc":"851219c567b54e90d9fc87d279580ce2","Logo":"579afa47316cb6d4d97c2c13628bd6d2","Thumb":"660f828f7c6ad57db2793c69b39539dd"},"BackdropImageTags":["9ab1267e89e658fc6c9ce94bea4979ae"],"ImageBlurHashes":{"Backdrop":{"9ab1267e89e658fc6c9ce94bea4979ae":"WFA],7-p4-EKEgg3~C%29Y9Zkpx]-o%29aE1xubv^kxFD$IUtltl"},"Primary":{"f54b69c7cbe71a1a58c4ec8d0cedbd30":"dRC?ivtS00Mx%MofM_Rj00V@.8xuD%R*%gt7ozayWBRj"},"Art":{"b0d4471b28764a9e2778b33068fcb707":"NNE{R#o}EL%M-;oft8RPtRIUD%j[_Nj[MxofWUNG"},"Banner":{"18a2311ef7bc6e53d82ee221dfbb27f1":"HSHKke%g5+RjE1RPD%M{n4}taKK4S#RjROozi_so"},"Disc":{"851219c567b54e90d9fc87d279580ce2":"eMF~zAs;_3jD?b-;WCRiWBs.~Wk8_NWYM{V?axs:a#bI~qofM{oeIU"},"Logo":{"579afa47316cb6d4d97c2c13628bd6d2":"O-J8R^WBt7j[t7ayt7ozfQayj[j[ayjt~qofWBj[WBkCWB"},"Thumb":{"660f828f7c6ad57db2793c69b39539dd":"NTEBmh%24:WBXmR*}ss.ELRQI:Rj#9s:tkj[R*oz"}},"LocationType":"FileSystem","MediaType":"Video"},"96acb6b7dc0abd79d568b40d643ecb56":{"Name":"Sherlock: The Abominable Bride","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"96acb6b7dc0abd79d568b40d643ecb56","Container":"mkv,webm","PremiereDate":"2015-12-31T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":55851520000,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"379170"},"VideoType":"VideoFile","ImageTags":{"Primary":"b679ca599397e0a4cd41b60fe7a0b889","Art":"641b7310049e7a84ef007ed813db31e8","Banner":"2631240f49f31e9e722d48077fff8cb9","Disc":"6652fbe5348b449e0df4ad7a913a1e5c","Logo":"ffcc0d97725f1f84e26e1f7ed3850910","Thumb":"965c74a698d38e52a9c6e0d611880f8b"},"BackdropImageTags":["ffcc0d97725f1f84e26e1f7ed3850910"],"ImageBlurHashes":{"Backdrop":{"ffcc0d97725f1f84e26e1f7ed3850910":"W+OgNUoe~q?bWB-;^+ofbbt7RjRjt7ayRPoft7WBxuWBt7t7t7t7"},"Primary":{"b679ca599397e0a4cd41b60fe7a0b889":"dFCjCKo0D%tR_NayMxWB9FR*n$oetRWVxut7t6t7j]M{"},"Art":{"641b7310049e7a84ef007ed813db31e8":"NxNTzY~qIUM{-;IUt7ayj[jtayj[?b%MRjWBt7ay"},"Banner":{"2631240f49f31e9e722d48077fff8cb9":"HdHo8xM{xtxur=WBNGpIR*~Wn%kCs-V@WBNGNbNG"},"Disc":{"6652fbe5348b449e0df4ad7a913a1e5c":"eSI#=SRjx]kC_3xtRjs.ogkC~qs:%2t7M{D*j[xujYV@?vayM{WBRP"},"Logo":{"ffcc0d97725f1f84e26e1f7ed3850910":"OxON8,ofayofj[ofj[xaayj[fQfQfQj[~qayj[j[fQayj["},"Thumb":{"965c74a698d38e52a9c6e0d611880f8b":"NoQT4M~q%MM{%M%M?bxuWBRjt7of-;IURjt7Rjof"}},"LocationType":"FileSystem","MediaType":"Video"},"97e257918da1fdeec2a0b8019305435f":{"Name":"Doctor Strange","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"97e257918da1fdeec2a0b8019305435f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-10-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":68985602048,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"284052"},"VideoType":"VideoFile","ImageTags":{"Primary":"25d61306f37cacca7970e5882d309e7c"},"BackdropImageTags":["f416f0c3136d8d5f7df375a82811843e"],"ImageBlurHashes":{"Backdrop":{"f416f0c3136d8d5f7df375a82811843e":"WMCi,h%#56R$4mDi^iVrE2tSE1M_N@Rkn$%1WVR%NKX9t4nhogX9"},"Primary":{"25d61306f37cacca7970e5882d309e7c":"dMEoD8-:ofRR^*x]tQnh0iWZS$%0kYV[Iqt6XTbIVtIq"}},"LocationType":"FileSystem","MediaType":"Video"},"981089a15db9f51c228ea2d9d59759d8":{"Name":"Black\u2605Rock Shooter","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"981089a15db9f51c228ea2d9d59759d8","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-07-06T22:00:00.0000000Z","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":31441451008,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"58107"},"VideoType":"VideoFile","ImageTags":{"Primary":"1fab8025e5c9d16c8fba0806752cf809"},"BackdropImageTags":["003f53c8834775249a1aa54a0c760a8d"],"ImageBlurHashes":{"Backdrop":{"003f53c8834775249a1aa54a0c760a8d":"WAA^gy%LJyNt%L_19sM|~pxuM}tQtPRjxut7RPxt?aaxR%ofxu%M"},"Primary":{"1fab8025e5c9d16c8fba0806752cf809":"dKAT_:Rinhbb.ARjacofpKafRPtQx^ogi^W;bwt7V@V@"}},"LocationType":"FileSystem","MediaType":"Video"},"98968a602b4174f74e1b6a7b91d0794d":{"Name":"Indiana Jones and the Temple of Doom","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"98968a602b4174f74e1b6a7b91d0794d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1984-05-22T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":71082557440,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"87"},"VideoType":"VideoFile","ImageTags":{"Primary":"7358a659f3f89d8cf40dfcbe36987a2f","Art":"c02e5627514ad569600bacce5002bb7f","Banner":"b3269e65661a01d9b8a0bfd929af9760","Disc":"d0ecc39d9ef659e5a46a6d123ed1d7bf","Logo":"e24332f2497e932dda85afcdc5dd51cb","Thumb":"26808b8461973fc4944cad74a9ad5d2d"},"BackdropImageTags":["fd7f6d7ca60f6d86a65602114cab2114"],"ImageBlurHashes":{"Backdrop":{"fd7f6d7ca60f6d86a65602114cab2114":"NOGZW*635R}YtR%0a1bZR.n%jqaLItEOJ7sToMNH"},"Primary":{"7358a659f3f89d8cf40dfcbe36987a2f":"djHACB}?NaW=NKR-t6s,JQNajbafxYoJV[WCIVRks.oe"},"Art":{"c02e5627514ad569600bacce5002bb7f":"NPHdsPn#9vxZ4qX8}koLR,WpE4t6D-M~s:W;%ef*"},"Banner":{"b3269e65661a01d9b8a0bfd929af9760":"HPD@pqTbF^}rpGxs%1-oo|=JR*EMniWUVteojsM}"},"Disc":{"d0ecc39d9ef659e5a46a6d123ed1d7bf":"ecJH2KM{?^n%Xos:f6j[aya{.St6-;WXxDWVa}j@fRayx^R+e-oeM{"},"Logo":{"e24332f2497e932dda85afcdc5dd51cb":"OtM?^@IUtSawtSRjoza0%3WBNHR*bHkC?wo#Rjogadt6ae"},"Thumb":{"26808b8461973fc4944cad74a9ad5d2d":"NOF|D11c5R}YtRxsnPbFR.oLaxi{NeI=Efs.t6M}"}},"LocationType":"FileSystem","MediaType":"Video"},"99cb14091bdcdbbdfe2351c5bd458cfa":{"Name":"The Prestige","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"99cb14091bdcdbbdfe2351c5bd458cfa","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-10-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":78298251264,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1124"},"VideoType":"VideoFile","ImageTags":{"Primary":"e9542edccddc8c17546576bd972c0d1f","Art":"6d2fa2e9de28cf0aa7814b652da606ca","Banner":"f1feac8811b8b2b02b404e177a576dc1","Disc":"dbdc12a80c5e00db22f614371e29640a","Logo":"f8f857fb0dcf84ce06c9b897468eaa47","Thumb":"da56f7e231a33fbf17a0002d45933660"},"BackdropImageTags":["15e7edad81c8de3f1f1de500fa916851"],"ImageBlurHashes":{"Backdrop":{"15e7edad81c8de3f1f1de500fa916851":"WF8#1wtS9Fs:Dh4n%MfkR*t7RPIU00Rj-pWByD-;D*jZxZIox]-;"},"Primary":{"e9542edccddc8c17546576bd972c0d1f":"d98X5?xu,,-U?Gxt?Hs:4-afI[Rk0LM{4.NH0KRjNbNG"},"Art":{"6d2fa2e9de28cf0aa7814b652da606ca":"NfJa+Z00tR4n_4WA-ot6WCRjbbxu%Mt6RiWAWBbb"},"Banner":{"f1feac8811b8b2b02b404e177a576dc1":"HC9G]rI9^+%2oJ-;IT_2M_~pMx-pxuxa%MRP%MM{"},"Disc":{"dbdc12a80c5e00db22f614371e29640a":"eaGIv5ax~qj[?bj[aeoLayfj_3WB-:fPRjxuj]R*f6az-;ayozfRM{"},"Logo":{"f8f857fb0dcf84ce06c9b897468eaa47":"OUR{#?WBRjofayt7ofxuayayfQfQj[ay~qt7ofj[j[WBWB"},"Thumb":{"da56f7e231a33fbf17a0002d45933660":"N56b10Dgx]01-=Di00ogIT.8ax%MxZxvM|RPa}x^"}},"LocationType":"FileSystem","MediaType":"Video"},"99f683140125ae8649c2fec5af7946b9":{"Name":"Sherlock Holmes","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"99f683140125ae8649c2fec5af7946b9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-12-31T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":77047103488,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10528"},"VideoType":"VideoFile","ImageTags":{"Primary":"f9d93e70704630d821f2bd75415adc14","Art":"35f39782e61c7c34be7a1a93759b2f4f","Banner":"39b7940b32d61cea4e770c2da02733a7","Disc":"1a423296dd4e9baca703b38e921df92c","Logo":"38f42e28aff3bc21c7efcf3485296d3d","Thumb":"a151ac117e7f3404b6ab13bd4a9eae7a"},"BackdropImageTags":["1a423296dd4e9baca703b38e921df92c"],"ImageBlurHashes":{"Backdrop":{"1a423296dd4e9baca703b38e921df92c":"WTF%JF%ME1tl8wM|?ut7IUWCRjRP00ayxFM{x]t6IVf+xtoft7t7"},"Primary":{"f9d93e70704630d821f2bd75415adc14":"dD9t[dtRKjkX_NV@M{RjDis;wIRP9Gx]$%kCShozj[bb"},"Art":{"35f39782e61c7c34be7a1a93759b2f4f":"N.LN_T~qfQIUtRxaRjIVjst7bbV@WVt7WAkCWUof"},"Banner":{"39b7940b32d61cea4e770c2da02733a7":"HuDJ;cW=Rjt7o}tRozWAXS_NS4Rjt7o#tRkCV@kW"},"Disc":{"1a423296dd4e9baca703b38e921df92c":"eQI#iW-o_49a%g%2WBRjjaof.TIV_3-os.WCt6s:WCRj?bWBRjRkD%"},"Logo":{"38f42e28aff3bc21c7efcf3485296d3d":"OFH2+iM{V@xuIAoeM{-;xaaxRja|xaWX00niaeWWoftRRj"},"Thumb":{"a151ac117e7f3404b6ab13bd4a9eae7a":"NLA-*NofEgM{a0%g?^g3MxbHV@xuJBRj$%xaXSt7"}},"LocationType":"FileSystem","MediaType":"Video"},"9c1de8a8b3f85b94df665016d2819a77":{"Name":"WarGames","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9c1de8a8b3f85b94df665016d2819a77","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1983-06-02T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":67627069440,"ProductionYear":1983,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"860"},"VideoType":"VideoFile","ImageTags":{"Primary":"59b7978a2e29cb405f017a37e7b87922"},"BackdropImageTags":["df858d59894d9e352294ce281e8ffffc"],"ImageBlurHashes":{"Backdrop":{"df858d59894d9e352294ce281e8ffffc":"W77K*sDh%1%M8_x].AxZxsRkMwM|9c.8RiM|oIDitTpIRjWVM{Mx"},"Primary":{"59b7978a2e29cb405f017a37e7b87922":"d46tRX%N0yV@pet8-pSg3BNZ,XSgxaM_E1%3vLv}tlo~"}},"LocationType":"FileSystem","MediaType":"Video"},"9c5e605c7e293f8b2642b0dd8f9d0c03":{"Name":"Zootopia","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9c5e605c7e293f8b2642b0dd8f9d0c03","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-02-10T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":65124478976,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"269149"},"VideoType":"VideoFile","ImageTags":{"Primary":"95a5c5331b20f6d21dbf250611346a8d","Art":"bbcb69499ba3d372ebedddff1f2ff0f7","Banner":"7536179ef660a9778c986b6b2925ab71","Disc":"4e285412074450ba0aa8fc532771c231","Logo":"0e0f7546c57d512f4939b9508f011861","Thumb":"da7da294803fc5b607769af1d36c36a5"},"BackdropImageTags":["bb7bcfdb9cb97442429f18ea92764877"],"ImageBlurHashes":{"Backdrop":{"bb7bcfdb9cb97442429f18ea92764877":"WUD+Sn-TIUxaxt%2~BxVaf%2t6s:xanhs.xts.R-%Lj=V@slofbc"},"Primary":{"95a5c5331b20f6d21dbf250611346a8d":"dkFix]tSs8tScbbwjDXAPDbcact7I[WYn~o0WEbcW?Rj"},"Art":{"bbcb69499ba3d372ebedddff1f2ff0f7":"NtM7+1?^xvaJWBM|9?I.Mx%MSen$J4NYaLRkkBxa"},"Banner":{"7536179ef660a9778c986b6b2925ab71":"H?NnU1-Dr^tQof%Mxu-qxb_MxbsqbXfRozkBt8og"},"Disc":{"4e285412074450ba0aa8fc532771c231":"eSJbT%xU^,X9tk.RWCawoIa1p{X9,^aKVsR5aeV[R*s;?HjEiwoeSh"},"Logo":{"0e0f7546c57d512f4939b9508f011861":"O~MH_Jj[ofj[ofj[nmt6jZf6fjfjfka#~XkBWUj[WUj[W."},"Thumb":{"da7da294803fc5b607769af1d36c36a5":"NnMNcX|GspS#s9-Bs?NxShspnjW=JVOFR-s9ofS4"}},"LocationType":"FileSystem","MediaType":"Video"},"9d51be0ab25b813c42133d84b67526ba":{"Name":"Van Helsing","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9d51be0ab25b813c42133d84b67526ba","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-05-04T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":78979842048,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7131"},"VideoType":"VideoFile","ImageTags":{"Primary":"4247c9c72ed93d470f881eb5e6af375c","Art":"960d47eba70e13dc484ce617ecb19042","Banner":"987d2470a2c9715d55350e6945208171","Disc":"27c4324c7277a923fbea59e149dedaa2","Logo":"4b464d8bec6ced7c37ba29aefc52a7eb","Thumb":"a12bacc82f4d58c345be26286533e70a"},"BackdropImageTags":["8f50f46097f3f1eaf657a5e3092a1e5f"],"ImageBlurHashes":{"Backdrop":{"8f50f46097f3f1eaf657a5e3092a1e5f":"W87-cfMx8|?tD+D*~nIVD+%fV@axcDIqM}xZs9%K.6NGIVxuM|j="},"Primary":{"4247c9c72ed93d470f881eb5e6af375c":"dJBWxctQ9Fof_MfRD%RjMyofV[M{9Ft7xaRj4nfkt8of"},"Art":{"960d47eba70e13dc484ce617ecb19042":"NmK1wMt74nxu~qxu?bozM{xaxuofRjR*ofWBM{WB"},"Banner":{"987d2470a2c9715d55350e6945208171":"HaCQGAD%V[%MIo%MMyj[xu_MIAWBxuM{x[M{a{t7"},"Disc":{"27c4324c7277a923fbea59e149dedaa2":"eTH{4kRj?ct7-q.7RjMyj[j[~qj@?bWBoyD%t7xuWBt7%MkCofV[IU"},"Logo":{"4b464d8bec6ced7c37ba29aefc52a7eb":"OC71Zfj[M|ayRjofRjxuj[WBj[ayj[ay00ayt7j[t7WBt7"},"Thumb":{"a12bacc82f4d58c345be26286533e70a":"N142I[D*0KRibGWC~qD*IVaxxtt701IU?Ht8-p%M"}},"LocationType":"FileSystem","MediaType":"Video"},"9db6ca81489f75ddfc51d1c8483d8603":{"Name":"Jurassic World: Fallen Kingdom","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9db6ca81489f75ddfc51d1c8483d8603","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-06-05T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":76976963584,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"351286"},"VideoType":"VideoFile","ImageTags":{"Primary":"d11edc01ca6cdf1e98fbe2996e7008db","Art":"8a1092b34e4ccb4d1539b10cbb8d2885","Banner":"eb091aa279ad3d07c13e1380c6649781","Disc":"4209da48aab19aacb76066dd7d745781","Logo":"2dacce7aef8ba2ef70d26732367f2844","Thumb":"e8348253098292abef53183e43d56807"},"BackdropImageTags":["b9c4518b077c10a91a6ffc748544d5b4"],"ImageBlurHashes":{"Backdrop":{"b9c4518b077c10a91a6ffc748544d5b4":"W66a^$og00Ri?b-;-;ofM{ay%Moz4nof?vxuRjM{RjkC%NozM{t7"},"Primary":{"d11edc01ca6cdf1e98fbe2996e7008db":"dBBftxG[R5-V}]FxM{#m9GM{J7#S,ro|o|r=@YFbxan4"},"Art":{"8a1092b34e4ccb4d1539b10cbb8d2885":"NGEx;D0%4=^eI.IX=[EkE3-lNGWFs8oLR,fhWCnj"},"Banner":{"eb091aa279ad3d07c13e1380c6649781":"HPAT=txaxtkqRks-V?%1aJ_N$$xtg4axs:RP%2jE"},"Disc":{"4209da48aab19aacb76066dd7d745781":"e6Bz?$bp4nt7*F+9RjKrWU$S3@ozr2RQMx+kxuP2ofRQGPjZr2of%L"},"Logo":{"2dacce7aef8ba2ef70d26732367f2844":"O~NAr3of~qofj]ofD%t7ayWBj[ofayayj[j[ayayayj[fQ"},"Thumb":{"e8348253098292abef53183e43d56807":"NQDd5~4p%0t7Mx%1_NE2xaxaM|xFxux]i_v}Iot5"}},"LocationType":"FileSystem","MediaType":"Video"},"9dd17087fee6e4cf19dc8a3267808a42":{"Name":"See You Yesterday","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9dd17087fee6e4cf19dc8a3267808a42","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","ChannelId":null,"CommunityRating":5.6,"RunTimeTicks":52324569088,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"582607"},"VideoType":"VideoFile","ImageTags":{"Primary":"7f2f9c223ca5cb5bfbf30ffe3b80f86f"},"BackdropImageTags":["94cb1527707bc5e764f1f92b7f115514"],"ImageBlurHashes":{"Backdrop":{"94cb1527707bc5e764f1f92b7f115514":"WB8X2~x^0dR5+GRppGofVxnlsTi_MyNGsl%1x^SgNMaOxCxVS|OY"},"Primary":{"7f2f9c223ca5cb5bfbf30ffe3b80f86f":"dJCGMn-pAIbwpdS1X8t80OM|#jox?9$$MeR*I,f5rxnm"}},"LocationType":"FileSystem","MediaType":"Video"},"9de5f7a5a78edf9b586ac19cddf1523a":{"Name":"The Girl with the Dragon Tattoo","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9de5f7a5a78edf9b586ac19cddf1523a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-12-13T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":94884110336,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"65754"},"VideoType":"VideoFile","ImageTags":{"Primary":"d080bc7bd327df0cfbad37540b50ecb4","Art":"2a7dee2138f99dd305475dc429ab92be","Banner":"8f4e88bd5fe8cc9c7ad4219cedef2720","Disc":"a9eb4e998df5495aae96cb241b8626ca","Logo":"c328de89d8ee19a5c7b457412ae7b897","Thumb":"3b23b5fdf0450957aa24e4bb07131aad"},"BackdropImageTags":["776b20f4ccd5aa61cd5edaa5a86b09be"],"ImageBlurHashes":{"Backdrop":{"776b20f4ccd5aa61cd5edaa5a86b09be":"W668EX?bIUj[D%4n~q_3t7IUD%9F?b?b%MD%D%IU?b-;%MRjD%IU"},"Primary":{"d080bc7bd327df0cfbad37540b50ecb4":"dCA^d%-=_4%g?wV@%Mt74nIU9FMxRjxvITM{o#t8%Mt7"},"Art":{"2a7dee2138f99dd305475dc429ab92be":"N88XFB-;9FM{M{ay004nxu-;ayt7fQ%MxuM{fQt7"},"Banner":{"8f4e88bd5fe8cc9c7ad4219cedef2720":"HoI=lb_NWBM{%gWBoft7kC_N%MayWBt8WBaykCay"},"Disc":{"a9eb4e998df5495aae96cb241b8626ca":"eTHetX?b~q-;?bt6Rjoeogay%gD%%gM{IUa{j]s:Rjof.8t7f6WCNF"},"Logo":{"c328de89d8ee19a5c7b457412ae7b897":"OAQcn{%M?b%MRjj[D%_3of-;WBofRjM{~qM{j[Rjxuj[xu"},"Thumb":{"3b23b5fdf0450957aa24e4bb07131aad":"NRLq-7RlM{%NM|%N_NkCaxofj[oft7j[ayj@a}fQ"}},"LocationType":"FileSystem","MediaType":"Video"},"9e6a19d91d9bd66bd3b940743a993f9e":{"Name":"Pacific Rim","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9e6a19d91d9bd66bd3b940743a993f9e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2013-07-10T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":78779203584,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"68726"},"VideoType":"VideoFile","ImageTags":{"Primary":"4524c2f273410c44bae6e0a4dd78fd65"},"BackdropImageTags":["a2e99379741f7ca1747bd555f7f6fd1c"],"ImageBlurHashes":{"Backdrop":{"a2e99379741f7ca1747bd555f7f6fd1c":"WMCi{%^*xtS%E2Rj0ME4M_xW%Lt8%MxuocjXjuoL-;xaV?NGIoM{"},"Primary":{"4524c2f273410c44bae6e0a4dd78fd65":"dD9G~%%Mkpxu~Wt7bbbbwHjEadRiRiWBROV?XTj[MxjY"}},"LocationType":"FileSystem","MediaType":"Video"},"9ec5d8eb7a9af5a3d0229af82d229f61":{"Name":"Austin Powers in Goldmember","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9ec5d8eb7a9af5a3d0229af82d229f61","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-07-25T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":56717869056,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"818"},"VideoType":"VideoFile","ImageTags":{"Primary":"0848e04b72d04aa5b54d414d4d081ee0"},"BackdropImageTags":["78eaf89d48c53564421ba7b4227cc81a"],"ImageBlurHashes":{"Backdrop":{"78eaf89d48c53564421ba7b4227cc81a":"WbHwMBE30hxuM}sk?DR+IqbbR.w]9ct6xsRjkCsns+WEofRknioy"},"Primary":{"0848e04b72d04aa5b54d414d4d081ee0":"dbM?Omw{~N?E-UaNtNx?%IRnXSxs$yoxR.V[koR+R.xr"}},"LocationType":"FileSystem","MediaType":"Video"},"9f968e6ba39b418ed28c8335d91bba8a":{"Name":"The Amazing Spider-Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9f968e6ba39b418ed28c8335d91bba8a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-06-26T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":81771741184,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1930"},"VideoType":"VideoFile","ImageTags":{"Primary":"79cc84a3d884c0c559c02694051b8f1b","Art":"b160d5fc85fa74f023660bcb786c061a","Banner":"4c1d99c7d0eae2014f02b0701dd67105","Disc":"b9c878770ecb73ce30e4a83a92790009","Logo":"eeb534eaed1e5b386945f55ae83c27b3","Thumb":"f8df3ba7a688fb055087d7355093d37f"},"BackdropImageTags":["264f85cc55408c5bc4ce8b6fe9bef995"],"ImageBlurHashes":{"Backdrop":{"264f85cc55408c5bc4ce8b6fe9bef995":"W85pB_wx2DFH;%;%]AsUA;Jk,Z,Zjta|WpfQsUjtFHSM$5$5SMFH"},"Primary":{"79cc84a3d884c0c559c02694051b8f1b":"dABf0C%NLN%$.TtRtmtmE2sCE#ODU^r?MwMxMvR%rWM_"},"Art":{"b160d5fc85fa74f023660bcb786c061a":"NZHBMiXS?^$4_2WAwhNHo}s.t7ofo}ozIoR%aJj]"},"Banner":{"4c1d99c7d0eae2014f02b0701dd67105":"HJAT=$ROM{D%R%o~r=tRbb_NIAkWRjo}RjeTo~WB"},"Disc":{"b9c878770ecb73ce30e4a83a92790009":"eaHxN%WV.Sr?-:xaaej=fSR+~XWE%zX5r;W.jZa#kCs:-:jEWAbIMy"},"Logo":{"eeb534eaed1e5b386945f55ae83c27b3":"OjO:*4j[?vof8_ay%gt7fQWoj[jZaybH~qj[%Mt7M{ayxu"},"Thumb":{"f8df3ba7a688fb055087d7355093d37f":"N67dqS?b0cE0DhZ$^+xaE1S#wcROD$IUoKx]%Nt7"}},"LocationType":"FileSystem","MediaType":"Video"},"9fbbd0fb0c729e93c4356622fb409caa":{"Name":"Transformers: Dark of the Moon","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"9fbbd0fb0c729e93c4356622fb409caa","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-06-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":92633391104,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"38356"},"VideoType":"VideoFile","ImageTags":{"Primary":"ec2c79dc02ee80abf70608b203b631c5"},"BackdropImageTags":["0150677cf7a0fb76267d23885a699ae2"],"ImageBlurHashes":{"Backdrop":{"0150677cf7a0fb76267d23885a699ae2":"WVFi0-R:~WozM{s:_3%LxvxuM_WBS6xuIpkCM{Rj-:RkRkWBRkoc"},"Primary":{"ec2c79dc02ee80abf70608b203b631c5":"duH2N7t8xt%M~qxuofxu%gxtRjbH%NR*WAWCxuV@R*of"}},"LocationType":"FileSystem","MediaType":"Video"},"a01bf1c8d659057290c0745ee55055a5":{"Name":"Harry Potter and the Deathly Hallows: Part 1","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a01bf1c8d659057290c0745ee55055a5","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2010-10-16T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":87652687872,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12444"},"VideoType":"VideoFile","ImageTags":{"Primary":"c5d8ff5e42cd7ec6d66028320cd490b9","Art":"d0e67120f9078c521ebeddf273cae418","Banner":"7b428c860df0ec2bd1121d4da7d4c4e1","Disc":"fdf04cc531bccbe124ec270321ffcd37","Logo":"e3d7c500137b3105659e5b6b1e264e96","Thumb":"af0899db9203c31b304c8c8e862a520b"},"BackdropImageTags":["25d7c3383d33af6fb0910f07fe2d4a67"],"ImageBlurHashes":{"Backdrop":{"25d7c3383d33af6fb0910f07fe2d4a67":"WP9He7%fRPxu%2n%_N%MjYxuxan%.7x]t7xtofni%Mxut6xtt7WB"},"Primary":{"c5d8ff5e42cd7ec6d66028320cd490b9":"d79Q,F8wtkMz?G%gD%x[0M.8IUxaI]aJ%MNIz:T0rqt7"},"Art":{"d0e67120f9078c521ebeddf273cae418":"NeIOhD00.8%3Rj%3WA?bIURjxuRj%MRjayWBWBay"},"Banner":{"7b428c860df0ec2bd1121d4da7d4c4e1":"HTE:PTx]V@%MS$_NW=?w%M?vaKMxtQofaeMyx]t7"},"Disc":{"fdf04cc531bccbe124ec270321ffcd37":"eYJ%,tn$.Ta_%gt5oJWXWCoL*0Rk?bofobxZWCWVodS2-=s.e-WCMx"},"Logo":{"e3d7c500137b3105659e5b6b1e264e96":"OWLENS%N~qIU_3t6_3M_M{ofxuofofj]~q%MWBM{M{WBRj"},"Thumb":{"af0899db9203c31b304c8c8e862a520b":"NB7-f=_3t7adV?%L~q?bxuocs-xZ%1-p%Mxuxuof"}},"LocationType":"FileSystem","MediaType":"Video"},"a0bdf2759dc4a43d6f803261dd919663":{"Name":"Sin City: A Dame to Kill For","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a0bdf2759dc4a43d6f803261dd919663","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-08-19T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":61281218560,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"189"},"VideoType":"VideoFile","ImageTags":{"Primary":"8470c08bf0789293b1850b1f37cf6c52","Art":"412e67906bb4b6aa069d6e76df3eccd2","Banner":"124941ae057737a9ffc5454739cf6ad8","Disc":"22c1d4a13fc4b0bbc6c74a04aec1cd4d","Logo":"90aacdbb920b7f842513e53b5968afec","Thumb":"526f16ade37088b42a522721af2e675c"},"BackdropImageTags":["9369afdf775602cee61c69220a9ce7f5"],"ImageBlurHashes":{"Backdrop":{"9369afdf775602cee61c69220a9ce7f5":"WGA,IFVs0fEM={=|.8R*MeVsx]o}xuflRPR%tRWB=|V@NtS#xHw{"},"Primary":{"8470c08bf0789293b1850b1f37cf6c52":"dFDSg*_NyD={kWVs%2bbEzMdMxOr$6ODELn4VskWx]$*"},"Art":{"412e67906bb4b6aa069d6e76df3eccd2":"NlKK4#~q%gsot7s:^+pINaiwkCbH$jSgNGeTWBt7"},"Banner":{"124941ae057737a9ffc5454739cf6ad8":"HbE1dXf71boz+vw{EzS4-p]ms:BnWq+vn%K4Wow^"},"Disc":{"22c1d4a13fc4b0bbc6c74a04aec1cd4d":"ecK]_,s:%~bb-pk=S2nOnjn*~WRjt,s:X8Vsn%bvkWt7gNbHf6V@RP"},"Logo":{"90aacdbb920b7f842513e53b5968afec":"O=Qs_FUbyXWVRjo}aK#-ayS~niniXSWVkqWVn%WVbbjFjZ"},"Thumb":{"526f16ade37088b42a522721af2e675c":"NND9k,Md-V%2%M-;_NEL.8tRWV%M_3WBt7%Mxut7"}},"LocationType":"FileSystem","MediaType":"Video"},"a0c8c6e817e5d6428027ee9959cfb7f4":{"Name":"Angel's Egg","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a0c8c6e817e5d6428027ee9959cfb7f4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1985-12-21T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":42642599936,"ProductionYear":1985,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15916"},"VideoType":"VideoFile","ImageTags":{"Primary":"7ff19adbbf6e74b4c09eddd6dc888586"},"BackdropImageTags":["a081264327ddc8b396dabf459f1389e8"],"ImageBlurHashes":{"Backdrop":{"a081264327ddc8b396dabf459f1389e8":"WWB3?At74mM_-;xutRkCRPWBtRoyM_azozbHs;t7ofjtazaefPoz"},"Primary":{"7ff19adbbf6e74b4c09eddd6dc888586":"daC$}[t74nNGR*WBofof00Rk?at7xaofR+WV-;azM{of"}},"LocationType":"FileSystem","MediaType":"Video"},"a1584d678b9c2331bdf042d215b7810e":{"Name":"Puella Magi Madoka Magica the Movie Part I: Beginnings","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a1584d678b9c2331bdf042d215b7810e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-10-04T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":78698659840,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"152042"},"VideoType":"VideoFile","ImageTags":{"Primary":"fe7f480965ed1d95fa060b0561f49de0"},"BackdropImageTags":["da040eed36408817c8319137fef69d3f"],"ImageBlurHashes":{"Backdrop":{"da040eed36408817c8319137fef69d3f":"WXMtm[~WxZyD%M=yvUD*IojEtlR:M#Dir;M|NxNyk?RjnhkWRnV@"},"Primary":{"fe7f480965ed1d95fa060b0561f49de0":"d*Mjgh%MWB%M_Nx]t6s;%MkCjZay?HjqRkoet7RkofWB"}},"LocationType":"FileSystem","MediaType":"Video"},"a1cd29e1bdc9924b751fb37aac7120bf":{"Name":"The Fearless Vampire Killers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a1cd29e1bdc9924b751fb37aac7120bf","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1967-01-31T23:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":61825269760,"ProductionYear":1967,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"3053"},"VideoType":"VideoFile","ImageTags":{"Primary":"b6c05cec2cb66ddc31f73a8509e39038","Art":"617b53b618029f8a7acecabc1f8be41e","Banner":"e9134ee7d406926114d645b01b66482a","Disc":"b1d14ee2afab860e4546b0eafa34bcee","Logo":"cda94e14b56ee42a5513ce03344e1c48","Thumb":"5e957e8397403ecce56ed23a63f66fb4"},"BackdropImageTags":["7f2ca36d5eab77be8d725ca25cd9eb9e"],"ImageBlurHashes":{"Backdrop":{"7f2ca36d5eab77be8d725ca25cd9eb9e":"WKIDaT~9v}J6^%}?u*tP#lwIV?$i?GM{9twcx]t7XQ-CKj%2XRjE"},"Primary":{"b6c05cec2cb66ddc31f73a8509e39038":"dZOp#-_3og?bM_RjD%M{%Noh9FIT_4t8t7jsRjIUa}-="},"Art":{"617b53b618029f8a7acecabc1f8be41e":"NjLzXExa~q%MRjV@%z.8%gM_RkWBx]IUWBRPRPtR"},"Banner":{"e9134ee7d406926114d645b01b66482a":"HRCzYD#TnP%1NuEgX8$iWC}EwJwdX7J8SgN]njs."},"Disc":{"b1d14ee2afab860e4546b0eafa34bcee":"eLOf}o0d-;-pD%D%Rj$*M{NG_N=|yDIUMx_3%Ms:azR*MxWVNGoz-p"},"Logo":{"cda94e14b56ee42a5513ce03344e1c48":"O~RB^ja{j]ofkCofkCbHj[jtf6a|fQj[.mj[axa{aea|ay"},"Thumb":{"5e957e8397403ecce56ed23a63f66fb4":"NHDRj6}AIEF{yBni9tAaD*R*Sznj.7N@S$tR$$nP"}},"LocationType":"FileSystem","MediaType":"Video"},"a362f40b87ea29ae36cb1a449cc1b35e":{"Name":"Ex Machina","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a362f40b87ea29ae36cb1a449cc1b35e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-01-15T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":64969920512,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"264660"},"VideoType":"VideoFile","ImageTags":{"Primary":"25ba6ef35cbb0ddc9c8fe64277e24795"},"BackdropImageTags":["210ddc0db885bfe5eb2e32ba3ffa1912"],"ImageBlurHashes":{"Backdrop":{"210ddc0db885bfe5eb2e32ba3ffa1912":"W7A^B+?H9FNGRj$%~VDiR*x]tR-:_NM|9FRjNHS2_3RPIAt6bboz"},"Primary":{"25ba6ef35cbb0ddc9c8fe64277e24795":"dLC%Ea~q?bxu-;t7?b%MRPRj-;-:-;Rj%2t7xuIUoeRj"}},"LocationType":"FileSystem","MediaType":"Video"},"a426000c7eedf4a12bd1da6ad9e82c19":{"Name":"Ghostbusters II","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a426000c7eedf4a12bd1da6ad9e82c19","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1989-06-15T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":64995201024,"ProductionYear":1989,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2978"},"VideoType":"VideoFile","ImageTags":{"Primary":"3deb44fa7e60602efa44291c712edc64","Art":"41b3e36bccdeb815aa732e4b7add8d29","Banner":"41b3e36bccdeb815aa732e4b7add8d29","Disc":"ee5833952f9e5d54ee1b6e2d20c965d0","Logo":"f503e47cdef9faf67a7fa33254f29739","Thumb":"3dc36a6561a19114f53eeefa041488f6"},"BackdropImageTags":["e1d512bb9a5d6085522136254eb43c5a"],"ImageBlurHashes":{"Backdrop":{"e1d512bb9a5d6085522136254eb43c5a":"WXBfY5t70dIo=|tRxFj[NHWBt7of9[WV-Vs:IoWBNHWBxGozS2ae"},"Primary":{"3deb44fa7e60602efa44291c712edc64":"dXFEvCr?0KkC^+RjE1t75+Io-Vxa9tRj%Mt7iIaKXSkC"},"Art":{"41b3e36bccdeb815aa732e4b7add8d29":"NPI5V.?I?c4.o~D%~TR%ngnOxZV@.AIoNI%Mxvt7"},"Banner":{"41b3e36bccdeb815aa732e4b7add8d29":"H871_uQVO=-prEPRDk={t6?@IBOAxaw1gfRQ$*oK"},"Disc":{"ee5833952f9e5d54ee1b6e2d20c965d0":"eTL:vE~C.89F-ppvX8a0oftR-;9Z.S-po}Q-VsofWBV@xuWBo}ozD%"},"Logo":{"f503e47cdef9faf67a7fa33254f29739":"O$Q1F2bYbtkCbakCofbZWVbGj[j[fQju}wj[i}jajGjaaf"},"Thumb":{"3dc36a6561a19114f53eeefa041488f6":"NMA]?9~CV@9FIAw^_3-;RjD%IUaeS$S~R*M{IoNa"}},"LocationType":"FileSystem","MediaType":"Video"},"a46dc98795d17a4d1a4c82a8a229e032":{"Name":"Porco Rosso","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a46dc98795d17a4d1a4c82a8a229e032","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1992-07-17T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":55999361024,"ProductionYear":1992,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11621"},"VideoType":"VideoFile","ImageTags":{"Primary":"9e089f45e4333a50b40a36b6525dca4d","Art":"c40d248afd8076ce52f1b5346e6a79fa","Banner":"fa7ea8355e6f6fb697d34ab28ab9956a","Disc":"3499a76501f2978b20776bc7458e4ce9","Logo":"9e089f45e4333a50b40a36b6525dca4d","Thumb":"93dd97c138a4230eb0d178f722b28b0e"},"BackdropImageTags":["879ed38aae4c401560c646aa6f92b6f1"],"ImageBlurHashes":{"Backdrop":{"879ed38aae4c401560c646aa6f92b6f1":"WjGQ:[V@EMt7M|xtt7bHI:oLj[WV0gbvxZi_xtM|aeofxtn$WCkC"},"Primary":{"9e089f45e4333a50b40a36b6525dca4d":"dPG+2t%fIt%OCTagXAXRvKk9oeVs.9t7nhbw5JM~xst7"},"Art":{"c40d248afd8076ce52f1b5346e6a79fa":"N%MZs[_Ms;MyNtxaMbITn~ogWXaxIos9kBWXnjW:"},"Banner":{"fa7ea8355e6f6fb697d34ab28ab9956a":"HYG8mI#~VXz;EOt8ron$WA_4SwNHnPJCozZ~RPnN"},"Disc":{"3499a76501f2978b20776bc7458e4ce9":"eURTvcm,UGkWPUvgWBX-jtn%UaO?S~nOrrrqjtS~bGaeLzrDv#S~m,"},"Logo":{"9e089f45e4333a50b40a36b6525dca4d":"OJMPzi8wODWB?^M{t,%2MxsAWVt7V@kqc@8_-Vxur?R*jZ"},"Thumb":{"93dd97c138a4230eb0d178f722b28b0e":"NhKmLt-CMywaWZxZ*0j]WCjEtRozbxpHbvM{xuoz"}},"LocationType":"FileSystem","MediaType":"Video"},"a51849ad00ee899b5760868b18060dd5":{"Name":"The Wave","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a51849ad00ee899b5760868b18060dd5","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-03-10T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":64109998080,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7735"},"VideoType":"VideoFile","ImageTags":{"Primary":"08797e1490086d005b73763a7328446e"},"BackdropImageTags":["7877eae42fb1aa0b17f412176d832074"],"ImageBlurHashes":{"Backdrop":{"7877eae42fb1aa0b17f412176d832074":"WNEyMQ?aE0?H%Ls+~V-ox[ovRi%29EbExuNFRjfOO9NGM{tRxuIn"},"Primary":{"08797e1490086d005b73763a7328446e":"daFYu.$*Mxx]kBt7xuae00S2ozRj-pRPMxt7V@V@oLay"}},"LocationType":"FileSystem","MediaType":"Video"},"a5c1ab9e0997c76add8c7cfa378f03e1":{"Name":"X-Men: First Class","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a5c1ab9e0997c76add8c7cfa378f03e1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-05-31T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":79029329920,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"49538"},"VideoType":"VideoFile","ImageTags":{"Primary":"125b64917a4e54a58a367d3ba2a1ef70","Art":"b3ce591a21f03d72ee18f12f0f777589","Banner":"d96e02f76866a98816446fe196fc707d","Disc":"27c58667c1e3c5a2e462a09e99637788","Logo":"a42642bae9c794054ad0b75d632399a0","Thumb":"390a9148c6ba5804785d91d14766f5ba"},"BackdropImageTags":["69fd7fbad1c401ff61c6ae8e0b77964b"],"ImageBlurHashes":{"Backdrop":{"69fd7fbad1c401ff61c6ae8e0b77964b":"W75OW$t700IU_2%M_3t79FM{-;%LoyfkV@ayt7fkM{WBxuxtRjM{"},"Primary":{"125b64917a4e54a58a367d3ba2a1ef70":"dDC88n%#jE.myEV?V@RjYQSht-tlpdbbf5t6DOt6t,R*"},"Art":{"b3ce591a21f03d72ee18f12f0f777589":"NkI};X~q?b%MkCIUxuDiIUWBofozt7D%M{WBofof"},"Banner":{"d96e02f76866a98816446fe196fc707d":"H87A}DD%t6NGR+%1NG_20K^*a}RjW;W=slt7xtIo"},"Disc":{"27c58667c1e3c5a2e462a09e99637788":"eSL;mS%ff.IB-=%MkCbEIVj@?dRk-;WBt3RhxaWFofa}%NRjW9ozIV"},"Logo":{"a42642bae9c794054ad0b75d632399a0":"OxKUD;MxX8Shbbn%s.s9MxNHS#W;e.oJ~qM{RjozbHaxae"},"Thumb":{"390a9148c6ba5804785d91d14766f5ba":"NKBzX%s:8^RjE1of.9jYROoKbbWYo~RjRjs.s.az"}},"LocationType":"FileSystem","MediaType":"Video"},"a652bc65b6e92c24e3cb00caef256e77":{"Name":"Blade: Trinity","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a652bc65b6e92c24e3cb00caef256e77","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-12-07T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.9,"RunTimeTicks":73418031104,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36648"},"VideoType":"VideoFile","ImageTags":{"Primary":"26f3efc0edc3de5bb27ac896091a0073"},"BackdropImageTags":["a46b664ed04a80bb9a17eab74dc505c6"],"ImageBlurHashes":{"Backdrop":{"a46b664ed04a80bb9a17eab74dc505c6":"WsEf+:j?NIozM_og_4ofbcofM{az%Mt7ofWBWBj[tRt7aeWVkCkC"},"Primary":{"26f3efc0edc3de5bb27ac896091a0073":"dIAwG0ofW?t7_4ofIoozIUt7ITof9YRiadWAE1Rkxufk"}},"LocationType":"FileSystem","MediaType":"Video"},"a76d602c6dba13977b877c16c9057623":{"Name":"Divergent","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a76d602c6dba13977b877c16c9057623","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-03-13T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":83804160000,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"157350"},"VideoType":"VideoFile","ImageTags":{"Primary":"ae24980169fc31950a39dc3596b470ed","Art":"d1e76e8b751571d4ca3e93d91ae84797","Banner":"5ee05083038e325b7fcc7cfc2e6ec243","Disc":"dbd195e0e4ee8c8a4adfe0a6cbfa3533","Logo":"a9e5f64b180de6c0d0eb4b95f787d51d","Thumb":"b75b9534489d843d98520af1c51c533d"},"BackdropImageTags":["dbd195e0e4ee8c8a4adfe0a6cbfa3533"],"ImageBlurHashes":{"Backdrop":{"dbd195e0e4ee8c8a4adfe0a6cbfa3533":"WZFrYPIqWVxZE1%2?dt6NGR*s+kD5UxtRjRj%1R.xtRkt4fkRloy"},"Primary":{"ae24980169fc31950a39dc3596b470ed":"dPEVZ|ItxZ%3^-ogo~s:Eo%LE1NG9ubINGR%xpM|s*s."},"Art":{"d1e76e8b751571d4ca3e93d91ae84797":"N-ODnO4TD$f*x]%MxsRjWBbHbHayxsRkWCa}j[oL"},"Banner":{"5ee05083038e325b7fcc7cfc2e6ec243":"HeEMd+xuxCxtkDxutR-;Ri_Nt7smxaj[ozt7xuV@"},"Disc":{"dbd195e0e4ee8c8a4adfe0a6cbfa3533":"eQKU4l9b~p%Lo~~Xf6M_WVNGpf%0?bIVxZ0LWDxaWBs;?ZM|xZxZIU"},"Logo":{"a9e5f64b180de6c0d0eb4b95f787d51d":"O*PQQ=j^V{j]WFj]WFogj?ayazayf7fP~Tj=ocj?obj?oc"},"Thumb":{"b75b9534489d843d98520af1c51c533d":"NIHUz-IwD%^*4.M{NR%1x_IpRh%21R-oD%9Z$~n%"}},"LocationType":"FileSystem","MediaType":"Video"},"a8682d7c92685baec62bed7e7d5ce3f5":{"Name":"Cloverfield","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a8682d7c92685baec62bed7e7d5ce3f5","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-01-14T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":50804981760,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7191"},"VideoType":"VideoFile","ImageTags":{"Primary":"eae8ff03b7bc282dca3a07d4468ff0b0"},"BackdropImageTags":["4fd304626e02b878e7de38138963d44b"],"ImageBlurHashes":{"Backdrop":{"4fd304626e02b878e7de38138963d44b":"WSCj:=S6X9a{W=%MO@V[tQj]fkW;02sltQbboeM|-oofWXRjbHt7"},"Primary":{"eae8ff03b7bc282dca3a07d4468ff0b0":"dYC@c%M|Rj-:?]R*WBoy9bn%ofIVE2oLofRjsnkCoes."}},"LocationType":"FileSystem","MediaType":"Video"},"a86b8fc56851e607d6a9e5bd6f0716fe":{"Name":"Harry Potter and the Philosopher's Stone","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a86b8fc56851e607d6a9e5bd6f0716fe","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2001-11-15T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":95305916416,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"671"},"VideoType":"VideoFile","ImageTags":{"Primary":"047c819d206be8fc4c7147179d9a5b66","Art":"88260b803dc7cc488dbef705a6559637","Banner":"5c17707c055b868435a80740fbb308aa","Disc":"2bfe261df256d6aaf326a65a29a0a9c6","Logo":"8ec4e00e580e58dd9538703c42f244c3","Thumb":"3098d56d6f9c983807593910c01dddae"},"BackdropImageTags":["d4c0c0192188768f7d5db8298a73088f"],"ImageBlurHashes":{"Backdrop":{"d4c0c0192188768f7d5db8298a73088f":"WSAxGxbu9atSVDVs%$ozIoRkxEi]8woJt7M{xuo#RPWAxvt7NFbx"},"Primary":{"047c819d206be8fc4c7147179d9a5b66":"dK7oF$o}M{ozpLbcR*j[McjuoeRPHqjEt7RiDhaJxtt7"},"Art":{"88260b803dc7cc488dbef705a6559637":"NiLgwz?b%N9E?vIV_4%NM{M{a#oJ%Nt8adWAWBoL"},"Banner":{"5c17707c055b868435a80740fbb308aa":"HLC?i#x{E39_Af%j^k-Sxu?GIvV?xVI^a%skWBs,"},"Disc":{"2bfe261df256d6aaf326a65a29a0a9c6":"eXKw8.xVyZRR%gtPWCaNo0Wp*0M}?btPs+$%n%Nba|oL%#ocr=agIU"},"Logo":{"8ec4e00e580e58dd9538703c42f244c3":"OgI}Ll%L-;ITxvM|x]xYj[R+WXoJWXfP%%xvt8M{t6a{t7"},"Thumb":{"3098d56d6f9c983807593910c01dddae":"NTBX4nbE9ax]ivVs%%o$NGRjw]ngIAtStRIAs,xZ"}},"LocationType":"FileSystem","MediaType":"Video"},"a9de44366e48ff6d3d3c1f4a7ef7c285":{"Name":"Ratchet & Clank","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"a9de44366e48ff6d3d3c1f4a7ef7c285","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2016-04-12T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":5.8,"RunTimeTicks":56474030080,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"234004"},"VideoType":"VideoFile","ImageTags":{"Primary":"f24d817b70a1a0bd914770c376ef7112","Art":"785316c88781c53b46af088b09c9f73a","Banner":"526096584fe9a9f170cc1db8ca47b2c1","Disc":"ba0220d527a4946caa4f539a5fe1ead1","Logo":"b4fb64510d3eeaa6eda05cf0f0003876","Thumb":"69cf648ddd5af13dedefbd599d7e1e38"},"BackdropImageTags":["edb2efdda9f05eb368ed632aa66cc9d1"],"ImageBlurHashes":{"Backdrop":{"edb2efdda9f05eb368ed632aa66cc9d1":"WeEDDDtLMxpLE4o6%QxYR#ajRjSiH?aLt2a1s%t6%2Nfa$WTNGxV"},"Primary":{"f24d817b70a1a0bd914770c376ef7112":"dWFFUGouDmbetTWBX8X90eV?tMWDwuaIs:bHs7WFxbbE"},"Art":{"785316c88781c53b46af088b09c9f73a":"NeFFdF~W%g%3kCNGZ~DiD%M{kCt8$exat8oKj[of"},"Banner":{"526096584fe9a9f170cc1db8ca47b2c1":"HUGSAttlQ,Xo5Haks~-nVZ~DNhr:M{JD%KRi$_oc"},"Disc":{"ba0220d527a4946caa4f539a5fe1ead1":"eaOyUxbbt9kVRq~Sa#IrWBRjJFsmcZVvbWIBjrX9WBtQ%hWUactPnh"},"Logo":{"b4fb64510d3eeaa6eda05cf0f0003876":"OWLNY]s,?wx]_Nog_N]~slkXbbbvWXI;xYt7t7NGW=j[R,"},"Thumb":{"69cf648ddd5af13dedefbd599d7e1e38":"NOJ8R]%L4oyFH=rW%jjYRko~wGenMdt7Neo#n#Ri"}},"LocationType":"FileSystem","MediaType":"Video"},"aa1b74e2f705b285a7a10fe4511a22da":{"Name":"John Wick: Chapter 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"aa1b74e2f705b285a7a10fe4511a22da","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-02-07T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":73424003072,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"324552"},"VideoType":"VideoFile","ImageTags":{"Primary":"60aa36ed127b73ab42f190e3e7b8a7a4"},"BackdropImageTags":["f7c0516b9bdb04a2f9abed90b3b58ee6"],"ImageBlurHashes":{"Backdrop":{"f7c0516b9bdb04a2f9abed90b3b58ee6":"WRHCDv.8M{o1DiIUx_bIkCWBsmRi~qxuWBt7oJRjo#R+ayoLofV@"},"Primary":{"60aa36ed127b73ab42f190e3e7b8a7a4":"d24U+.xG0KOE~WsoD*W=D$ay%MkC0KWC?HoL56Na$*w{"}},"LocationType":"FileSystem","MediaType":"Video"},"aa7e6a9e270876e0c91d682d732b593b":{"Name":"Mad Max: Fury Road","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"aa7e6a9e270876e0c91d682d732b593b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-05-12T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":72233418752,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"76341"},"VideoType":"VideoFile","ImageTags":{"Primary":"bd888b66b4361b99514c35c54160ba38","Art":"a96ce2cb9c43f407c71e67a4b332cab0","Banner":"67d348763e83aed6f83a130ddf60875d","Disc":"4e9bc68600cfb0a76a23bc4d75283320","Logo":"6ddfe817f97c8843d102c92eaae9d4c2","Thumb":"7ac675ba0e231cd164d49c65e8417cee"},"BackdropImageTags":["644dc5acf9b5cc731c2f3b556c0c667f"],"ImageBlurHashes":{"Backdrop":{"644dc5acf9b5cc731c2f3b556c0c667f":"WJLWdS^O^v^c9Nnm0~oLoaX4jJNK,;N1M|S}x@tPq}Mir?E8but2"},"Primary":{"bd888b66b4361b99514c35c54160ba38":"diFFyoIVERkDyCsSNfR-4U%1kCWBiIR-s+n$%MR*skoe"},"Art":{"a96ce2cb9c43f407c71e67a4b332cab0":"NOKv1bxt^gNc10sm~4rsx?tPS4j?F{Jnsm$ywcni"},"Banner":{"67d348763e83aed6f83a130ddf60875d":"HJBhGS_Iz:b_BWRVM}KQbd:,;dxsSiM|OYR+RRW?"},"Disc":{"4e9bc68600cfb0a76a23bc4d75283320":"eVOoqw~AO[9at,_3NbR5i_kCu6IppJs.RPIWsojFoeWBkrjYV?tQsl"},"Logo":{"6ddfe817f97c8843d102c92eaae9d4c2":"O:QS9Za#tSoeajkCV@i]jbRPj?a$a{kC%%j[ofbHj=j@ju"},"Thumb":{"7ac675ba0e231cd164d49c65e8417cee":"NIK^P#^h~Q~39enQ0~s.ouk7RnNK=EM~MzXRxstQ"}},"LocationType":"FileSystem","MediaType":"Video"},"ab4c13255110ed311450e11ca8e78145":{"Name":"Atlantis: The Lost Empire","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ab4c13255110ed311450e11ca8e78145","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2001-06-01T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":57435709440,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10865"},"VideoType":"VideoFile","ImageTags":{"Primary":"bebcadf60f72914423f38ceb6f164c89"},"BackdropImageTags":["af2bfefbe9d4237652cad89a79d61b24"],"ImageBlurHashes":{"Backdrop":{"af2bfefbe9d4237652cad89a79d61b24":"WXD^v9PDPD$y9ztQ?wV[IrRPNGkWPXv|IAE3$KkWXon~V?Nyxs%1"},"Primary":{"bebcadf60f72914423f38ceb6f164c89":"dY99TVtlDOM}t-kDQ-VsHqV@xtr=tSkCW=fkofkCaJjE"}},"LocationType":"FileSystem","MediaType":"Video"},"ac26c8e6f61bad4f8c93a1bd62d4c6c5":{"Name":"Transcendence","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ac26c8e6f61bad4f8c93a1bd62d4c6c5","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-04-15T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":71566508032,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"157353"},"VideoType":"VideoFile","ImageTags":{"Primary":"c6cba0274aa5fb6aa56a3d58fefb32de","Art":"b9c1ad00fb83157c432f2c9d8e2bcd8d","Banner":"372c069db2797d21ab979822882bfe61","Disc":"9d8437b870f4b8dede57593c2b212fa3","Logo":"3a82365e96f2e1ff16a53294f1f7afea","Thumb":"9f6f17ae3d365d1dea4e48da579c3208"},"BackdropImageTags":["5e0373bfa4f85c6ee69a16f6a7f567f1"],"ImageBlurHashes":{"Backdrop":{"5e0373bfa4f85c6ee69a16f6a7f567f1":"WwH.E7t7tRoeMxWC~qWCt7ofV@ofxuR*t7t7j@t7xufkt6j[RjoL"},"Primary":{"c6cba0274aa5fb6aa56a3d58fefb32de":"d-HB}Kt7ozxu~qj]bHof-;WBV@WC%Mofaea}%Mt7WBj["},"Art":{"b9c1ad00fb83157c432f2c9d8e2bcd8d":"NePZu=az~qt79Ft7WBj[9GWBxuj[D%ayM{fkt7fQ"},"Banner":{"372c069db2797d21ab979822882bfe61":"H23S9W9_t7?I0f?bR3D$_3?cOaodxaI]xZaJM{%3"},"Disc":{"9d8437b870f4b8dede57593c2b212fa3":"egIrv+tR~pRj%Lx^j@RPRkWBxaRjxVoLf,MvWXxvs-t7-oRjtRofM|"},"Logo":{"3a82365e96f2e1ff16a53294f1f7afea":"OuQvzbt7ofRjxtofofofayfQfQj[fQfQ~pWBWBt7Rjj[WB"},"Thumb":{"9f6f17ae3d365d1dea4e48da579c3208":"NVEN6Y-;.TyEn3%2H?R*9FM{smi^DNWBRPV@tRkC"}},"LocationType":"FileSystem","MediaType":"Video"},"ac399b7a09186a1f73d6c1f4802c42c6":{"Name":"Arrival","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ac399b7a09186a1f73d6c1f4802c42c6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-11-09T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":69829763072,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"329865"},"VideoType":"VideoFile","ImageTags":{"Primary":"108ace0717ba6b1982ffde8fcdd7a40b"},"BackdropImageTags":["0243b57636a2fe272e092756d3361819"],"ImageBlurHashes":{"Backdrop":{"0243b57636a2fe272e092756d3361819":"WjIN~hW.bcMyD*-:_4RmozV?Myxvx_jYj^M{jXtR-;V?ofRkWAtR"},"Primary":{"108ace0717ba6b1982ffde8fcdd7a40b":"dVEyD1%LOFE1xuM|R+WB0LWBemxutQ-poJkCNHM|t6oL"}},"LocationType":"FileSystem","MediaType":"Video"},"ac61305cfa55db2b408d669a321ed3f2":{"Name":"The Golden Compass","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ac61305cfa55db2b408d669a321ed3f2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2007-12-03T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":67978240000,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2268"},"VideoType":"VideoFile","ImageTags":{"Primary":"12cad5171e1acc79b096f3f6804e065e","Art":"55fe2e945ecdca0730e5fd68128b3805","Banner":"fa0c65016da791c410b658dd4ca6c601","Disc":"5d53e352d200a39773fac665a1973fd0","Logo":"251296efa894589e382c231d0a137d5b","Thumb":"33aeca6b386886095a65c23522833cd1"},"BackdropImageTags":["422ff9e4c5d92853283ab32825ac7010"],"ImageBlurHashes":{"Backdrop":{"422ff9e4c5d92853283ab32825ac7010":"WVGvnvWXyYoztR-;?wV[Ioo#nhR4tmMdMwj]M{t7Xos+n#kDxuR*"},"Primary":{"12cad5171e1acc79b096f3f6804e065e":"dhB;:.oyNctS?wofShozt8tRkDWCyEtRV@ayyEWARioz"},"Art":{"55fe2e945ecdca0730e5fd68128b3805":"NvK^W.={xFt7x^x^_NIoM{aet6xa.8IURjbHoKju"},"Banner":{"fa0c65016da791c410b658dd4ca6c601":"HSD9xP:}JB9u9x%2^Nx]M{~X#PNHIpIpt8$~kDRj"},"Disc":{"5d53e352d200a39773fac665a1973fd0":"eUI5rVRkyZt5^kpeWCnNoJa}?vjY^jWBtQrpoKWBR-W=-;bbxYWBD*"},"Logo":{"251296efa894589e382c231d0a137d5b":"O68plO%10iR*EMahIt5U%0xXE3n*t6xZ9wn%n$V@oeg3oz"},"Thumb":{"33aeca6b386886095a65c23522833cd1":"NgGccGWCyFbwg4%M.TbdM|o#n$VstnM_M{ozRPs-"}},"LocationType":"FileSystem","MediaType":"Video"},"accb82b98c6f315dce6fd057939a9a29":{"Name":"X-Men: The Last Stand","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"accb82b98c6f315dce6fd057939a9a29","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-05-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":62452482048,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36668"},"VideoType":"VideoFile","ImageTags":{"Primary":"403b1ef08c256e3e3806898a7637eb32","Art":"c071303ec04f4556842350af7be036ee","Banner":"bf6d26a2180204f8116e28e389d19795","Disc":"dbc8a1a3e1a0228d93f30283c48456f8","Logo":"2fa339be817b83c2c5bcdf1526e35806","Thumb":"0ca7e4654959edbf948aab62c2baad98"},"BackdropImageTags":["d2a19e1b15320c319d80f5e2be8a3d85"],"ImageBlurHashes":{"Backdrop":{"d2a19e1b15320c319d80f5e2be8a3d85":"WnFqtBs,rr-VemxZ~AxtsAsmV@t6=_xtWBaKjsWC={s.M{r?j[Rk"},"Primary":{"403b1ef08c256e3e3806898a7637eb32":"dHDu_I_3I;iw~UoyE1jFMwRjNGxtD%M{M|t7TKRPV@X8"},"Art":{"c071303ec04f4556842350af7be036ee":"NkJkTG_N?H-;xuxa_3t8NGn%WBjZx[V@InWBV@WX"},"Banner":{"bf6d26a2180204f8116e28e389d19795":"HkJsFG}?i^xW$h$$n#wIoM}sjGRkxZsTe:S#r?en"},"Disc":{"dbc8a1a3e1a0228d93f30283c48456f8":"eVKL8gx^-;Di%M?aWBR*RQRj~pV?%MbHofD%xuo0RjxuxuRjM{t8V@"},"Logo":{"2fa339be817b83c2c5bcdf1526e35806":"O|Nm~Maxj?axayj[j[o#WBayayayazay~pbHazj]j[j[az"},"Thumb":{"0ca7e4654959edbf948aab62c2baad98":"NFCGZA00tm^+9t.9%NxtpJkDo~xu57-oXTEM-;Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"ad678104453686ff2664fd9ffe5fcc8f":{"Name":"Atlantis: Milo's Return","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ad678104453686ff2664fd9ffe5fcc8f","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2003-02-24T23:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":48248741888,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8965"},"VideoType":"VideoFile","ImageTags":{"Primary":"1d8382fc756e0b924b037cebbe28c964"},"BackdropImageTags":["4ca9c273ffe8a11b6947ae7947557a08"],"ImageBlurHashes":{"Backdrop":{"4ca9c273ffe8a11b6947ae7947557a08":"WRE3PX-p1lI[rwRp%PxtM_NLxtxvOYX9$KnMXAocT0Wsn+oao~t8"},"Primary":{"1d8382fc756e0b924b037cebbe28c964":"dTEf.}%LE,OaMzs+VrS60MESrpr:r:R.tSxsRP$eo#kX"}},"LocationType":"FileSystem","MediaType":"Video"},"adcdcc88c28a584310f11f582eec32f4":{"Name":"Mission: Impossible","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"adcdcc88c28a584310f11f582eec32f4","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1996-05-21T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":66129469440,"ProductionYear":1996,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"954"},"VideoType":"VideoFile","ImageTags":{"Primary":"b47c6af99cf1adda3bd79d7563358d67"},"BackdropImageTags":["e5e64e4bf774315731c9cd76864fbc80"],"ImageBlurHashes":{"Backdrop":{"e5e64e4bf774315731c9cd76864fbc80":"WnF~{kD%~p%Mxv?u%Mt7%Mof%MxuNGofV@RjofRj%MRjt7ozWBs:"},"Primary":{"b47c6af99cf1adda3bd79d7563358d67":"dQG7@~0eRlI:x]rXx[9a9GSe%LoJV[IVW=-;NI$fo|Ip"}},"LocationType":"FileSystem","MediaType":"Video"},"add8f59c7ee8701044a64a0b10fa56e7":{"Name":"Imaginaerum","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"add8f59c7ee8701044a64a0b10fa56e7","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-11-09T23:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":5.8,"RunTimeTicks":51542831104,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75204"},"VideoType":"VideoFile","ImageTags":{"Primary":"e669111c2e8bb2414f862c8ce1765888","Art":"6371fa5b4d30da9d78246325a724dd53","Banner":"7460b775c466a2ac7b475a664cc75a85","Disc":"f7cc56338c6e4a25c4a43a1b395910eb","Logo":"f397d2263fb1f2793f72a4b80c889b9f","Thumb":"4cab74dd66e636f0ff7f19f4ec942393"},"BackdropImageTags":["f397d2263fb1f2793f72a4b80c889b9f"],"ImageBlurHashes":{"Backdrop":{"f397d2263fb1f2793f72a4b80c889b9f":"WE72gVbb8waKxaWBIAozxZWBW;t7Z~f6f,jYtRbb.SWBIAoet7R*"},"Primary":{"e669111c2e8bb2414f862c8ce1765888":"dC5G0Fg3H=x]tRbbV[jsD4aex]RjM{oJt6Wqi^kCkWn$"},"Art":{"6371fa5b4d30da9d78246325a724dd53":"N,HyB#WB~pof?bofWBayWBayR*ofRkj[RjayRjae"},"Banner":{"7460b775c466a2ac7b475a664cc75a85":"HC6SZ=MIMI.TDOWXxuM{yXyEoJaKtSMwR*%gMxRj"},"Disc":{"f7cc56338c6e4a25c4a43a1b395910eb":"eNFZQhV@^+t7$MenWCs.V@t8~qs:~qbHNGs.ayoffRbb~WayIUoLM{"},"Logo":{"f397d2263fb1f2793f72a4b80c889b9f":"OI5FIJj[ayj]ayayaeayfQfkfPfQj[fQDgayj[axj[j[kC"},"Thumb":{"4cab74dd66e636f0ff7f19f4ec942393":"ND6lV.g38wV?t7R*D%ozxaWBbIozVrf5ozaeo}kW"}},"LocationType":"FileSystem","MediaType":"Video"},"ae6f6f9db494bc6d35d1f52a4208fde7":{"Name":"Logan","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ae6f6f9db494bc6d35d1f52a4208fde7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-02-27T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":82432958464,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"263115"},"VideoType":"VideoFile","ImageTags":{"Primary":"00d761108646fec53687f352184c80c6","Art":"8df2881dcd0047a818f902b295b392cb","Banner":"e402c461a669c343e58aec6d03131832","Disc":"93ab7e34ec885b554bce94ee3e303f76","Logo":"93ab7e34ec885b554bce94ee3e303f76","Thumb":"f90f731b89a0b92dc12f8b0455904640"},"BackdropImageTags":["93ab7e34ec885b554bce94ee3e303f76"],"ImageBlurHashes":{"Backdrop":{"93ab7e34ec885b554bce94ee3e303f76":"W54B,zt700M{_3%MD%WB-;t7D%M{t7j[RjWBt7of%MofIVRjxut7"},"Primary":{"00d761108646fec53687f352184c80c6":"duIf#9=^xVxW}?xYjYxDNfRkM}o2j^w{RkNIxtxss,R+"},"Art":{"8df2881dcd0047a818f902b295b392cb":"NqQvq8of_4oe9FkCxaayxuj[RiayRkj@WAWVofoe"},"Banner":{"e402c461a669c343e58aec6d03131832":"HJA,tQITt6ozM{R%t6^+IU~pV?ofWCM|R%t6-:Rj"},"Disc":{"93ab7e34ec885b554bce94ee3e303f76":"eSFiV@fi?cM|?bs,t7ofRkj[_NRk?bofIUWBWVofs:WB?bt6Rjj?M{"},"Logo":{"93ab7e34ec885b554bce94ee3e303f76":"ODSPX_%MfQxuRjxuRj~qayj[ofayayay~qRjj[ayt7fQof"},"Thumb":{"f90f731b89a0b92dc12f8b0455904640":"NYK^A{~p~V~p%g%L~VxvNI%L%M%MxanlD+Rkxuf,"}},"LocationType":"FileSystem","MediaType":"Video"},"aeb28807b1e2e931b43730f9582f7159":{"Name":"Robots","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"aeb28807b1e2e931b43730f9582f7159","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2005-03-09T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":53877534720,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9928"},"VideoType":"VideoFile","ImageTags":{"Primary":"d97d0b607020a118ef06d705f068ce32"},"BackdropImageTags":["91fb15aa4a6fd1a22906e9bdf43e0769"],"ImageBlurHashes":{"Backdrop":{"91fb15aa4a6fd1a22906e9bdf43e0769":"WUF~p:tSR5sjo~.T?IxvM|%0tSM|ITbcIUjEs;IU%MS5WCt6RPo}"},"Primary":{"d97d0b607020a118ef06d705f068ce32":"diFQOctmtS%NcbnlR+SPD+RQaeWAWFNHoJw]xZbcoJkC"}},"LocationType":"FileSystem","MediaType":"Video"},"af7a464d3aefa2d2bbe1345d247efa30":{"Name":"Die Another Day","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"af7a464d3aefa2d2bbe1345d247efa30","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-11-16T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":79544426496,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36669"},"VideoType":"VideoFile","ImageTags":{"Primary":"9071bda88b5c9c6b75bc96f722aca1c9"},"BackdropImageTags":["69cb923dd0f65083bdf78b820d4cfab1"],"ImageBlurHashes":{"Backdrop":{"69cb923dd0f65083bdf78b820d4cfab1":"WjHo2q,.X;I^57kr~poIkXNIMxoftlX9%2jGn~WC%goft7ozWXs:"},"Primary":{"9071bda88b5c9c6b75bc96f722aca1c9":"dODw2D?^MxJC-SXTkXR*MxR6M{nN4oVYnOs:9akCx]sl"}},"LocationType":"FileSystem","MediaType":"Video"},"b011d4dc1a49365039247bc35bfae3d8":{"Name":"Howl's Moving Castle","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b011d4dc1a49365039247bc35bfae3d8","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-11-18T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":71491518464,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"4935"},"VideoType":"VideoFile","ImageTags":{"Primary":"81ea4b7fc110e47ec51675e6d09d9225","Art":"39ae36e2ed361604f8202e93c07d21b4","Banner":"3ef1dfc1ecc35559b62d34d7da73ad6d","Disc":"05e83e99947c7875f8fa3e71718ef8e1","Logo":"d7faaa0d281606a167c5a5f96f484215","Thumb":"e04d968c43cb1ebca243fb08df0784f7"},"BackdropImageTags":["d0b7be88507c9f5bdd68b724b95886ce"],"ImageBlurHashes":{"Backdrop":{"d0b7be88507c9f5bdd68b724b95886ce":"WDB48uR6X-_NR4%MTLIoRjNGMwxaD*x]aKMdM_M{-;o~kC-of7Rj"},"Primary":{"81ea4b7fc110e47ec51675e6d09d9225":"dI9H32t80MM}ozNHV[%1xaoeNfNdNLt7t6M|59fl=_n$"},"Art":{"39ae36e2ed361604f8202e93c07d21b4":"NrJ8hX~qjYD%t8t7kDoKf6fka#ay_3-;j[Rjaxt7"},"Banner":{"3ef1dfc1ecc35559b62d34d7da73ad6d":"HSECXe0O~p%2Ne?ZM}x[nm~AEQ%1xaEg-UItovw~"},"Disc":{"05e83e99947c7875f8fa3e71718ef8e1":"eUP%5zITtp%LS9s$axkFayoc%jxvR:M{oHjWWCb0oeaxS.Rhs$kDab"},"Logo":{"d7faaa0d281606a167c5a5f96f484215":"O.OzSsoft7Rjt7ayoft7WBfQayj[ayfQ~qfQWBt7WBofWB"},"Thumb":{"e04d968c43cb1ebca243fb08df0784f7":"NaFtc5E2%N.6RPohY$x[oyo|t6t766s:M{IWjcf~"}},"LocationType":"FileSystem","MediaType":"Video"},"b1ad5866720edf9c39c964e3abec5a5f":{"Name":"The Martian","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b1ad5866720edf9c39c964e3abec5a5f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-09-29T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":84976001024,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"286217"},"VideoType":"VideoFile","ImageTags":{"Primary":"8040ae5f14b692b0783e0a15ce6eb79b","Art":"c4d4e3189d4b7bfb4cbaba4735c2b53e","Banner":"b6100763563cf38cf2ea4a0167fae82a","Disc":"ef74bdf056af868ce3a8b30f0f134f17","Logo":"e1628f896cdf91193971fb5a23db0b1c","Thumb":"305575ea4c190bd337ef8e7efc7b0612"},"BackdropImageTags":["75d0fb72f03c47c6486685bef503eefc"],"ImageBlurHashes":{"Backdrop":{"75d0fb72f03c47c6486685bef503eefc":"WRJPJA0h57^j-UrX%LsTD+xutQIVkq#+IpbvoLRj=_niNGbcs.V@"},"Primary":{"8040ae5f14b692b0783e0a15ce6eb79b":"dWF#zIRPXm-p~VWBozxux]oJ-pt7?aoexut7-pt6R+of"},"Art":{"c4d4e3189d4b7bfb4cbaba4735c2b53e":"NiQT4M4n%M~q_3xuW=t8s:aeRjM{oztRRjM{oLt7"},"Banner":{"b6100763563cf38cf2ea4a0167fae82a":"H=KwXvxvWrn$bIaeozxutR~VogWCWBkCj[t7tRoz"},"Disc":{"ef74bdf056af868ce3a8b30f0f134f17":"eYNu*3$$yYM|pJWFnin$X8t6.TRQk?o|$~kBW;oxkAjGt-S#s8r@IU"},"Logo":{"e1628f896cdf91193971fb5a23db0b1c":"O?PQ86ofj[fQofofj[t7fQayfQj[j[fQ~qayayofayayay"},"Thumb":{"305575ea4c190bd337ef8e7efc7b0612":"NJJ%O8IAE1~o$_-i}=%d?E-m%d%KHs.QpG$x^%%J"}},"LocationType":"FileSystem","MediaType":"Video"},"b21a315e8775c1e2d8c18980800b90ab":{"Name":"Alien","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b21a315e8775c1e2d8c18980800b90ab","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1979-05-27T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":69500796928,"ProductionYear":1979,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"348"},"VideoType":"VideoFile","ImageTags":{"Primary":"cd5e9276dc22f6c290a93b354e3e8462","Art":"9a6960e3f1c180d938d583ea066c824a","Banner":"bf8d53d4551771f3d49422969f6937e4","Disc":"6d2f7391c9f7fa32982f07c4b92ea926","Logo":"1d87a7db2a9f65347a31ecfb52677259","Thumb":"757b96fa50f210cfe754311abd94746c"},"BackdropImageTags":["1d7a1a73ddb33bf24f90816c311c0bbb"],"ImageBlurHashes":{"Backdrop":{"1d7a1a73ddb33bf24f90816c311c0bbb":"W855dqxt4X9H.4?sV{j]tMa_M}WE8}Rk?r%eD,D+%coeIERmx=t3"},"Primary":{"cd5e9276dc22f6c290a93b354e3e8462":"d34ecuWA02M|?aM{NGtRD;IU_0.7XAM{%0%M~oRj4qoN"},"Art":{"9a6960e3f1c180d938d583ea066c824a":"NZG].Rt2?:Rj%eV[_Ka{M#j@ofj@%fWVoLoeRUWC"},"Banner":{"bf8d53d4551771f3d49422969f6937e4":"H668Qz$,o{?bWB?u~XE0Dj_3x[e=%fay%M?bIUNF"},"Disc":{"6d2f7391c9f7fa32982f07c4b92ea926":"eeF76PQ;~Wox%4nzWCkDkAa#^-kl-pjba^n~kAofazaf-;afa^f8M{"},"Logo":{"1d87a7db2a9f65347a31ecfb52677259":"OyR3u}t7n.R%n-s:V_xvoMoeWTj[j]bE?1WVW,s;bDayob"},"Thumb":{"757b96fa50f210cfe754311abd94746c":"NA8zu+=|4nIT-:-;~V-:D%oI-:%M_2RPIU%M-;Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"b2455096cb0f13598e070515d7bc4343":{"Name":"Beyond the Black Rainbow","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b2455096cb0f13598e070515d7bc4343","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-12-02T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.9,"RunTimeTicks":65784569856,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"50037"},"VideoType":"VideoFile","ImageTags":{"Primary":"bfc516b1a50a40d6b98aac3fe960e6ea","Banner":"ca1d746274192ba211f85954366066d0","Logo":"bfc516b1a50a40d6b98aac3fe960e6ea","Thumb":"c29fea1fbcb2b527612d0877a6feea7d"},"BackdropImageTags":["9b903d2912a3e93c7c2888f36e7a8c90"],"ImageBlurHashes":{"Backdrop":{"9b903d2912a3e93c7c2888f36e7a8c90":"WYDuSv-B0eIotlS$0eNH-;xan4r?tRa}Vsn%kVW:%1s:NGNabvbI"},"Primary":{"bfc516b1a50a40d6b98aac3fe960e6ea":"dnGaIM$*9ZRjELWUt7bH0eNG%Moz?GofM{n$b^oei_WC"},"Banner":{"ca1d746274192ba211f85954366066d0":"H_MH0o~os:tQ%LxHtQxuxa~V%LWVW.s.aeofofoL"},"Logo":{"bfc516b1a50a40d6b98aac3fe960e6ea":"O~ReEloLbHoLbHoLbHt7fQa|jtfQfQfQ*JfkjZfkjZbHjZ"},"Thumb":{"c29fea1fbcb2b527612d0877a6feea7d":"NTD*w]=e0KELt,XS0KRj^+%1m,wI%MsoVss9g3W:"}},"LocationType":"FileSystem","MediaType":"Video"},"b2ca7b2a2ffad3702ed01f120b2cc4e5":{"Name":"John Wick: Chapter 3 - Parabellum","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b2ca7b2a2ffad3702ed01f120b2cc4e5","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-05-14T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":78649180160,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"458156"},"VideoType":"VideoFile","ImageTags":{"Primary":"220d54e4b9e7066e21b61ccea4673b61"},"BackdropImageTags":["69bcc60cc26878706a4ea44f8d4b2944"],"ImageBlurHashes":{"Backdrop":{"69bcc60cc26878706a4ea44f8d4b2944":"WB7n,s%$Ip-?o}rpD4M{tlrWRQXTMwRPMxNFkWNxysxut7g$jrrq"},"Primary":{"220d54e4b9e7066e21b61ccea4673b61":"d#Q62,~AxuxaPW%Mo#S#aSnUkEWXv:i~nmjFRqV[nPad"}},"LocationType":"FileSystem","MediaType":"Video"},"b31c0dfd7d2ba3e3e772d4cbcd939a0b":{"Name":"Harry Potter and the Chamber of Secrets","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b31c0dfd7d2ba3e3e772d4cbcd939a0b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-11-12T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":104640643072,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"672"},"VideoType":"VideoFile","ImageTags":{"Primary":"a170b8bafd0669a47d8c29b7b013d197","Art":"c67b48a7473dd3aaf8ac81c8b3d8d1ca","Banner":"190195c8c3ad74e65a5c634d2e74130e","Disc":"c99551f6aa2a821650ffb606998328f4","Logo":"e96ed6f46a6ce365c58056303337a4a2","Thumb":"3dc46535be600f862d367bea46eea806"},"BackdropImageTags":["a8f8aedc802c2574abe22b579a93b65b"],"ImageBlurHashes":{"Backdrop":{"a8f8aedc802c2574abe22b579a93b65b":"WXHLu0?aJ-Io0LSg~ps;NvRQIBt7Irx]WBIURPs.NH%fxDM{WBM{"},"Primary":{"a170b8bafd0669a47d8c29b7b013d197":"dJC6}R-:9vNH_1t6IpWB4URknPi{4nWUxGazacRitRxt"},"Art":{"c67b48a7473dd3aaf8ac81c8b3d8d1ca":"NoJao{?w$%oeR+i_In9FD%t7%MkBWXWBWAWCt6bH"},"Banner":{"190195c8c3ad74e65a5c634d2e74130e":"HlD0Gz.AXBM|ItNg%2%Lo#xcS7NIj]o#o#xYnhRk"},"Disc":{"c99551f6aa2a821650ffb606998328f4":"eYJ%,uNG?ws.%g-ToJWEWDWWyZn$.8WCoIM~afW;Wos.?bWCadWXIU"},"Logo":{"e96ed6f46a6ce365c58056303337a4a2":"OdF$hWj[~qj[_3of_3xua|ayfQayj@jt-pj[WBf6WVazWB"},"Thumb":{"3dc46535be600f862d367bea46eea806":"NWDvZL%0J7ay9GW=~pt7I;WBIBozt8o}RQRjV@t6"}},"LocationType":"FileSystem","MediaType":"Video"},"b3a6ac567f73812847bb1738506851be":{"Name":"Neon Genesis Evangelion: The End of Evangelion","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b3a6ac567f73812847bb1738506851be","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1997-07-18T22:00:00.0000000Z","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":52258881536,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"18491"},"VideoType":"VideoFile","ImageTags":{"Primary":"4a927846453de986dd56ca0eb51696df"},"BackdropImageTags":["597ecfaa936118d1ac05d6789b250aac"],"ImageBlurHashes":{"Backdrop":{"597ecfaa936118d1ac05d6789b250aac":"W88fKS].ROwO,@$R-tOrEeE%J-NwJ4xI,.wbWYjXRgWYxCskR*WU"},"Primary":{"4a927846453de986dd56ca0eb51696df":"d+JHXks;Rjxu0KWBRkRjW*t6xuaerXaeaeofpJWDRkof"}},"LocationType":"FileSystem","MediaType":"Video"},"b40373232cf0acf2d4a2efc97ad56c5d":{"Name":"Star Wars: The Force Awakens","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b40373232cf0acf2d4a2efc97ad56c5d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-12-14T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":82866987008,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"140607"},"VideoType":"VideoFile","ImageTags":{"Primary":"3a6d809242f089070fa06fa41b53f350"},"BackdropImageTags":["204a2f7f1493fa2181280d7be4175c62"],"ImageBlurHashes":{"Backdrop":{"204a2f7f1493fa2181280d7be4175c62":"WICFPK[l9a6V9Yt8IoT1NZRPxtt60xJW%2v{%3%1?Hv~rqXmIVax"},"Primary":{"3a6d809242f089070fa06fa41b53f350":"dLE265;b0#5u=#oHEMS50dK7Vt$dIVM|xpxskWS3xuxG"}},"LocationType":"FileSystem","MediaType":"Video"},"b429a42aac29d5fb70669040891349a4":{"Name":"Insurgent","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b429a42aac29d5fb70669040891349a4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-03-17T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":71404158976,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"262500"},"VideoType":"VideoFile","ImageTags":{"Primary":"59a86aaa8acfc6cbf3af789952d4c596","Art":"335b7b570cc43de150504ecbf00b1e41","Banner":"d873c7bd407598b50a0f25901105c571","Disc":"b35f63b606292deea580ee9036afca98","Logo":"4026e535562207d02f1c09cd0a819943","Thumb":"8f8f212cecd761862cb91b6d3cdb0989"},"BackdropImageTags":["5cd2c775f206f885614ed0c22dd8eddd"],"ImageBlurHashes":{"Backdrop":{"5cd2c775f206f885614ed0c22dd8eddd":"WXEzAo%g00Nbxtt7W=Rjof%MofRjV@kBoeV@NGWV%gj[M{ofofoe"},"Primary":{"59a86aaa8acfc6cbf3af789952d4c596":"dQG]N._3xt-:_NxuRjtR9aIVD*IoR%RQWBNGtRR.WCay"},"Art":{"335b7b570cc43de150504ecbf00b1e41":"NUF$eO%M_3%M?b?b~qM{M{D*RjM{.8IUs-M{RjRj"},"Banner":{"d873c7bd407598b50a0f25901105c571":"HhGlI-JCVrogbv-;RORQNI~qNHw[X9R-%2RjjGRk"},"Disc":{"b35f63b606292deea580ee9036afca98":"eQE{nXoJ?vae?bs,WBofayj[~qoL_3ofIUt7WCoJf6WC?bj[RjfkM{"},"Logo":{"4026e535562207d02f1c09cd0a819943":"O,PjMuofV@WBWBayWBt7j[jtayjtfQfQ~pjsozofofofof"},"Thumb":{"8f8f212cecd761862cb91b6d3cdb0989":"NL8}0%R+IUs:aej@~qWCIUoeWBj@?cWCM{j[Rjoe"}},"LocationType":"FileSystem","MediaType":"Video"},"b5e609ac0fa4594e76894872047d48cb":{"Name":"RED 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b5e609ac0fa4594e76894872047d48cb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-07-17T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":69491720192,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"146216"},"VideoType":"VideoFile","ImageTags":{"Primary":"1dc6bda5e573fdb997eb9198a42d1b63"},"BackdropImageTags":["222b513b626983fbde7870f3cd3cf30f"],"ImageBlurHashes":{"Backdrop":{"222b513b626983fbde7870f3cd3cf30f":"WEA0q1slD%s9t7oe~WxZM{n$ofRj-:oJoeM{ofbH%LafWWM|R*NG"},"Primary":{"1dc6bda5e573fdb997eb9198a42d1b63":"dID@RF$*rX+v~CXSM{RjL1XSELELPU$*NFNGL1t7aKaK"}},"LocationType":"FileSystem","MediaType":"Video"},"b6462fc00e488473986f944f0b6aa23e":{"Name":"Zero Days","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b6462fc00e488473986f944f0b6aa23e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2016-08-31T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":68311248896,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"380808"},"VideoType":"VideoFile","ImageTags":{"Primary":"f53a972f326f6faf53ae5f8655f270a6"},"BackdropImageTags":["0fb632734f2b20fde98f1a9d1bbc3eee"],"ImageBlurHashes":{"Backdrop":{"0fb632734f2b20fde98f1a9d1bbc3eee":"N69%6b5m5S?a%K^*-6rq9vIp#lV@0f-TbbkX%2E2"},"Primary":{"f53a972f326f6faf53ae5f8655f270a6":"dO9t=Qx]4UIU?]tRD%M|Mxaex[ofH?V@x]t7RPWBo0oe"}},"LocationType":"FileSystem","MediaType":"Video"},"b6b6ffc9a1c8dd917e9721be4698f18b":{"Name":"X-Men Origins: Wolverine","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b6b6ffc9a1c8dd917e9721be4698f18b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-04-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":64443740160,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2080"},"VideoType":"VideoFile","ImageTags":{"Primary":"0356d4d9afc2a6664c9d3fec57e9dff8","Art":"b548104fdf2191328a57fb8efe30807c","Banner":"4f2877dfa26ef0fff177c4ac0c145671","Disc":"599a167ceec84a52e33a804375efeb4b","Logo":"d26285e667b9de185fe09be79a2ed4e3","Thumb":"9ff15626eacc3359d8eb895859ad8889"},"BackdropImageTags":["321b0beb46cfb11fda29534ae92d112e"],"ImageBlurHashes":{"Backdrop":{"321b0beb46cfb11fda29534ae92d112e":"W65O1yxZ0MIp%Ls.xtoeNGR*kCof0fR+^*xZIoWrD*R*%LxaadR*"},"Primary":{"0356d4d9afc2a6664c9d3fec57e9dff8":"dPC$+e%259Rk%LflRPjF00M|-OocXTV@kDbc?cofIqWr"},"Art":{"b548104fdf2191328a57fb8efe30807c":"NsIOhH~q.8?GRiWVx]xut7t7oJWXD%oJjsM|oeRk"},"Banner":{"4f2877dfa26ef0fff177c4ac0c145671":"HC8NUz9ZIo~V01%2-:4o?H%2t7kCWAWBofWBj[of"},"Disc":{"599a167ceec84a52e33a804375efeb4b":"eOMjz8Rj?wIUtTs.x[R*D%xt.Axu%MWBs+%0Vst8xvIV%NInV?j[Ri"},"Logo":{"d26285e667b9de185fe09be79a2ed4e3":"O+N^e:fRM{j[ofWBoft7ayayfQayj[fQ~qj[t7j[ayofWB"},"Thumb":{"9ff15626eacc3359d8eb895859ad8889":"NE9G%Fxt0LWV-pM{^*t6D*WVxuWB9FWU%MWBV@t7"}},"LocationType":"FileSystem","MediaType":"Video"},"b7343087555a1c71b86c08007924549b":{"Name":"Harry Potter and the Goblet of Fire","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b7343087555a1c71b86c08007924549b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2005-11-15T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":94255349760,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"674"},"VideoType":"VideoFile","ImageTags":{"Primary":"0cb7af0a888f4cb2b90ae1d74f02e7b6","Art":"3b184f57291ccc454a8141b14a86121e","Banner":"86e1d2e5302979b42edfc347a8887c67","Disc":"85568e531d9aa60ab34b89847f801e2b","Logo":"365e1b5b99046659802cafd83b2709bb","Thumb":"bd7577a9b6f372245197fae12b813441"},"BackdropImageTags":["c5d6d04fa7e0df3ce0d48f1140ef5d3d"],"ImageBlurHashes":{"Backdrop":{"c5d6d04fa7e0df3ce0d48f1140ef5d3d":"WZCQuo%MR4NGtl%N_N%MoJW=t7xuxu%Mxtt8axozx]t6ofofoftR"},"Primary":{"0cb7af0a888f4cb2b90ae1d74f02e7b6":"dI9tr+%fVYj]?^xuadkCDjR*bvt79FIpNHjtnhR*IoRj"},"Art":{"3b184f57291ccc454a8141b14a86121e":"NhHB_94n?bxuM{xu~q9F%Mt6Rjt7aes:RkWBjZWB"},"Banner":{"86e1d2e5302979b42edfc347a8887c67":"HqEWH|_3t6xvx]off5xuxv_N-;WBoftRWCRjoLt7"},"Disc":{"85568e531d9aa60ab34b89847f801e2b":"eXKmh69^?wxsyDtPs,bINIn%py$f.8WCs+V^R*WCt5ba?bS2nhWXIU"},"Logo":{"365e1b5b99046659802cafd83b2709bb":"OQK1T{tQ.ARk?cs+%i-nocWFWEococoL%hfkWUM~Riaxs,"},"Thumb":{"bd7577a9b6f372245197fae12b813441":"NeD182%LVEOEx^xu_N-psmbvozt7tQ%2xutRV@fk"}},"LocationType":"FileSystem","MediaType":"Video"},"b79d63b6baad7decb55135ce33ec9b6e":{"Name":"2001: A Space Odyssey","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b79d63b6baad7decb55135ce33ec9b6e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1968-04-01T23:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":89317228544,"ProductionYear":1968,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"62"},"VideoType":"VideoFile","ImageTags":{"Primary":"68c7f066552cf4390413bb5c8e342bc6","Art":"c399eb05c97d1988a1e5fa7ef320f669","Banner":"649f38d83f9be908dc055f066539d033","Disc":"6c075e56f7d7c0397290db6aceb5506f","Logo":"1bda41c335a74789ee16b7bd1ec3d00f","Thumb":"b17f11d97adaa0fb153c24922511c6f2"},"BackdropImageTags":["6c075e56f7d7c0397290db6aceb5506f"],"ImageBlurHashes":{"Backdrop":{"6c075e56f7d7c0397290db6aceb5506f":"N44xi8_4ozIo4-4m-=%NxuW;ITD$9FITRjoe%M-;"},"Primary":{"68c7f066552cf4390413bb5c8e342bc6":"dWECUm-;a#-;~X%Mjb%M%1t6f6t7s:RjWAt7bdRjWAxa"},"Art":{"c399eb05c97d1988a1e5fa7ef320f669":"NXKe4e_N4n0K?b%1IUM{xuxuWBax%LjEs-xaWBM|"},"Banner":{"649f38d83f9be908dc055f066539d033":"HqEMUmWAM_t8IVRiM_a$xt~qWBM{t7IVRjRjRjxt"},"Disc":{"6c075e56f7d7c0397290db6aceb5506f":"eXKx0R%e-=My%NxCofS4aeof%%IV-pxusk-.V@M}bbaexvt6slNGM{"},"Logo":{"1bda41c335a74789ee16b7bd1ec3d00f":"OGQ,L1%MWBt7WBj[D%~qayt7WBofayWB9FWBWBayayofj["},"Thumb":{"b17f11d97adaa0fb153c24922511c6f2":"NPB;FCyZOZ.8DiDh?vR-M|%gkCV@M{ofofWBxuj?"}},"LocationType":"FileSystem","MediaType":"Video"},"b901e146456df72fbffe22e89ee82461":{"Name":"The Devil's Backbone","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b901e146456df72fbffe22e89ee82461","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2001-04-19T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":64705069056,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1433"},"VideoType":"VideoFile","ImageTags":{"Primary":"53164c4f4b67dce246cae7c28750ef56"},"BackdropImageTags":["6b8ecceb459009fccdc58b5bcce2876c"],"ImageBlurHashes":{"Backdrop":{"6b8ecceb459009fccdc58b5bcce2876c":"W34UKI-TJTODxt%11KJA$$xFn%WCr?njWCR+NHR*$%f6J8Nbj[oL"},"Primary":{"53164c4f4b67dce246cae7c28750ef56":"dMB1uCS}ADwJ|^J,J,$P+^E#Sg$j#:JRaysURlNuxEay"}},"LocationType":"FileSystem","MediaType":"Video"},"b9257af2d4af86cda265cb901e0ed917":{"Name":"The Wind Rises","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"b9257af2d4af86cda265cb901e0ed917","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-07-19T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":75910840320,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"149870"},"VideoType":"VideoFile","ImageTags":{"Primary":"1af2d3a2129c5adaf689c643a0c818af","Art":"62ae089abba06120b30dad6ef63289bb","Banner":"be0412e3ab2d933db4064b472387997d","Disc":"4be84cee53d3d40017ab233a00a367df","Logo":"7b977cff9784b5f7bee89ce84c975b45","Thumb":"99513b5093cae26291d154bfe1c8d41e"},"BackdropImageTags":["baaa0722ee9bc96ca5536bdca0f41dce"],"ImageBlurHashes":{"Backdrop":{"baaa0722ee9bc96ca5536bdca0f41dce":"WUEElVtopJ?bnN%g%jIoIrNGM{NIx,WqsXRjIvM{_3bxxr$~NGxa"},"Primary":{"1af2d3a2129c5adaf689c643a0c818af":"dQG^9OyF9y.8IPRjM{Ip0djY$~ozIfkDx[xbWQt3t7NF"},"Art":{"62ae089abba06120b30dad6ef63289bb":"NSN^oE~W?HD*oyn#I9D*R+axoIbGMwRjNJ%MM{WW"},"Banner":{"be0412e3ab2d933db4064b472387997d":"HcKKQD~US}%1kVxuxZS~xG?^%Mk9aKXAoIs:bcjE"},"Disc":{"4be84cee53d3d40017ab233a00a367df":"eQLXWSD,^|xt%CM-WB%Fj[a$^]%Gt0M}a*Rpj@t1fPWF~dIXN4t3IY"},"Logo":{"7b977cff9784b5f7bee89ce84c975b45":"OWR:HGofWBt7ayofayxuj[ayfQayfQfQ~qj[ofayj[j[j["},"Thumb":{"99513b5093cae26291d154bfe1c8d41e":"NUF%PKpc9vjXtlS$*Jt7NbIqtRt79bM{t7S~aynj"}},"LocationType":"FileSystem","MediaType":"Video"},"ba1ce34e461d490ca18b6dc7f8309c34":{"Name":"Spirited Away","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ba1ce34e461d490ca18b6dc7f8309c34","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2001-07-19T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.5,"RunTimeTicks":74722877440,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"129"},"VideoType":"VideoFile","ImageTags":{"Primary":"1047b92bb7eaca1b83e27b9b849b7600","Art":"a5fba8395462836d365b435026ddbb69","Banner":"5701fa479df0e4291d2f0cb88156e0ee","Disc":"1f1472ae3fc21ca0780a081edd94ed9e","Logo":"360e69b38c681c76ec86ec68de4ac63d","Thumb":"12c00fa2344856779b0aaec5e594239e"},"BackdropImageTags":["360e69b38c681c76ec86ec68de4ac63d"],"ImageBlurHashes":{"Backdrop":{"360e69b38c681c76ec86ec68de4ac63d":"WeAB9PxvRjR,R*od*0tRazbIWBaytmofogj]ayays:jskDWBWXof"},"Primary":{"1047b92bb7eaca1b83e27b9b849b7600":"dOB_}1%19uEL0}R*$jxZWCR+oes:-Us:oeR*EMWVNbj["},"Art":{"a5fba8395462836d365b435026ddbb69":"NiK1:v~q_3V@NGM{t7WBM{kCV@j@NG-pt7ofV@R*"},"Banner":{"5701fa479df0e4291d2f0cb88156e0ee":"HPCPL%^PVsI=5R579ZxZ-o~V-oR%I;E2E1MxxZ%1"},"Disc":{"1f1472ae3fc21ca0780a081edd94ed9e":"eeHLPTNZ_3s:pIR%n*ozWVo3.Tn+-:R*wc$gSLWFoLWU%MjYjEkCIo"},"Logo":{"360e69b38c681c76ec86ec68de4ac63d":"O~NKCqjtofayoffQofj[j[ayj[ayj[ay~qj[WVj[ayj[ay"},"Thumb":{"12c00fa2344856779b0aaec5e594239e":"NZB.cet70zIp=xxGNZWBr]s:oyWoWBj[s:fQR*ay"}},"LocationType":"FileSystem","MediaType":"Video"},"ba2db1a2bc065fd18069b7798bcb5f26":{"Name":"Hot Fuzz","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ba2db1a2bc065fd18069b7798bcb5f26","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2007-02-13T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":72526716928,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"4638"},"VideoType":"VideoFile","ImageTags":{"Primary":"a648bcddf447f0136f8009a74f027eac"},"BackdropImageTags":["e789bbc54d8e77f316192b40a13355f7"],"ImageBlurHashes":{"Backdrop":{"e789bbc54d8e77f316192b40a13355f7":"WuMHP%kC~q?b-;%M_NRjM{ozM{s:X9WBIUR*axWBtSt7a}Rjxuax"},"Primary":{"a648bcddf447f0136f8009a74f027eac":"dfKK7ds9~T^*_1kWIpxt^haKRjs+xBniV[M{r=a$D+Rk"}},"LocationType":"FileSystem","MediaType":"Video"},"ba8092940fc035dc5eb5006e8d9b7d5b":{"Name":"Birds of Prey (and the Fantabulous Emancipation of One Harley Quinn)","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ba8092940fc035dc5eb5006e8d9b7d5b","Container":"mkv,webm","PremiereDate":"2020-02-04T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":65343180800,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"495764"},"VideoType":"VideoFile","ImageTags":{"Primary":"4b46f6e8f888e03dc3cb2d3e75a0a272"},"BackdropImageTags":["efcc68af0bbbae3083d6396a7f9bdd43"],"ImageBlurHashes":{"Backdrop":{"efcc68af0bbbae3083d6396a7f9bdd43":"WH7_ZjVs8xt,yDib.mRPHryDt,MdY5RPQ-x]tRIAo~e-V@tSs:Mx"},"Primary":{"4b46f6e8f888e03dc3cb2d3e75a0a272":"dNK,jU~JaG}=7[ouOEkDB.F4OXJ7P9o_#Xi~NMy5NGn,"}},"LocationType":"FileSystem","MediaType":"Video"},"baf7d7f653ae49b43f223b68b66118ef":{"Name":"From Up on Poppy Hill","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"baf7d7f653ae49b43f223b68b66118ef","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-07-15T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":54513209344,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"83389"},"VideoType":"VideoFile","ImageTags":{"Primary":"6d6092def510e3775e9d1b9e531ceb1e","Art":"9a07a4ba01eb7eaca97e7e3fc3632f86","Banner":"e0c8dde50c5087ff88e1b229b38d702b","Disc":"6b6485bc92d88a0c91889b79b0aff553","Logo":"29fce5690eb11c4ff349d02668431cb9","Thumb":"2a544fae4fda6ac1a89f3a6fb7d533eb"},"BackdropImageTags":["186467e092716c7049f20bd14cc82631"],"ImageBlurHashes":{"Backdrop":{"186467e092716c7049f20bd14cc82631":"WuM?X.tj==^Hocxo~7j[s,xWoIxD,.sAV_NKRkWD-SNIs:xDWWW="},"Primary":{"6d6092def510e3775e9d1b9e531ceb1e":"d=M~jmtRtO-j},jFnPoIv#w]RlR.wgofa#ahRnRlWBae"},"Art":{"9a07a4ba01eb7eaca97e7e3fc3632f86":"NML;KrK+~C%dxsIA9r8w4:D+E1ox9ZjEt7afWVkC"},"Banner":{"e0c8dde50c5087ff88e1b229b38d702b":"HOCGGg%go#w{S4x]-otSbb_4x]kWnPkCo}xGxuX8"},"Disc":{"6b6485bc92d88a0c91889b79b0aff553":"eVJ7]$t5%hr?yDwIaLkWX6of~qj[%hR-IUkpbaoLWCR*tmWCV?ofV@"},"Logo":{"29fce5690eb11c4ff349d02668431cb9":"OG7k}PWpWpfQjta|o1a|fQjta|jtfQa|1]o1o1a|a|jtWp"},"Thumb":{"2a544fae4fda6ac1a89f3a6fb7d533eb":"NfMano-:V[.7-;%2_4nkNLkXtRs:OFV[X9R*WWjY"}},"LocationType":"FileSystem","MediaType":"Video"},"bb18733d50af48cf8fd022c9ffa7c59c":{"Name":"Ralph Breaks the Internet","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb18733d50af48cf8fd022c9ffa7c59c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2018-11-19T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":67512111104,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"404368"},"VideoType":"VideoFile","ImageTags":{"Primary":"1914ce77c60a50680e0ae09fead55c99"},"BackdropImageTags":["70b9dfb441a561b874ad892c50b3fc59"],"ImageBlurHashes":{"Backdrop":{"70b9dfb441a561b874ad892c50b3fc59":"WG9[Aixt9EcD+Y-AT4byo$X9Rpoh0ga*-9nPKkPBr|S5Sinme.Mx"},"Primary":{"1914ce77c60a50680e0ae09fead55c99":"dNA{ohyE15PCY*baxbtRQ.i_tObZtnogQ-RQNLWYrYsC"}},"LocationType":"FileSystem","MediaType":"Video"},"bb4037e9e476f2c80110ffbc4b616e10":{"Name":"The Imitation Game","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb4037e9e476f2c80110ffbc4b616e10","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-11-13T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8,"RunTimeTicks":68538499072,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"205596"},"VideoType":"VideoFile","ImageTags":{"Primary":"1f52077dce0cd6f7b85a7a84fb9d803c","Art":"8f799955e69fcc2fd9d827a9e7c31cc5","Banner":"cc0b94e468dda5b6b24468f003bf1ed5","Disc":"756cf8689ead6041c5daad807b2cd437","Logo":"867e4ebcea85472b2fb2a5f709c8c0fe","Thumb":"2c720d20a955b4308fbfa019045b4cc5"},"BackdropImageTags":["695061d90baea14830d1fb6a97ac0103"],"ImageBlurHashes":{"Backdrop":{"695061d90baea14830d1fb6a97ac0103":"WSG7_8E1EL9u4:~V?Gt6M|aeRjX8IV%1WBxZWCM{s.fRs:oLI:jZ"},"Primary":{"1f52077dce0cd6f7b85a7a84fb9d803c":"dMDIUfR%0fE2%2ofNGNG0fof-ps:NGRjt7t7NdNGoexa"},"Art":{"8f799955e69fcc2fd9d827a9e7c31cc5":"NsKnMFWW_Noe?at7?bj[kWfjMxj@%Noft7WCM{j["},"Banner":{"cc0b94e468dda5b6b24468f003bf1ed5":"H46%{4EKsmIqsl~AIpEMRk-oS2M|NKkBxZa|NHNI"},"Disc":{"756cf8689ead6041c5daad807b2cd437":"ePH-=F-U.9Rj?b-UWBWBayof?wNH_3s:MxNdWCt6WWWB?cWWM{ofM{"},"Logo":{"867e4ebcea85472b2fb2a5f709c8c0fe":"O%LWwqa~kDofkDofogxaj@azazfQjtfQ?wfQayazayfQay"},"Thumb":{"2c720d20a955b4308fbfa019045b4cc5":"N68W$=M^Ip~V4.?H^+9bE3-:Io-o-m-nn$R*xuIp"}},"LocationType":"FileSystem","MediaType":"Video"},"bb5e77a04eb7a7122fa9a0e46e5e7cae":{"Name":"Harry Potter and the Half-Blood Prince","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb5e77a04eb7a7122fa9a0e46e5e7cae","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-07-06T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":92107522048,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"767"},"VideoType":"VideoFile","ImageTags":{"Primary":"a1bec98b0623acf0cec57a8513d5aedd","Art":"e5323c7ac195b3948676731a17683081","Banner":"8793afbd78cbc6e54ee42f57474dbbbd","Disc":"336ee88bcfcd5721ec2aefa785455f01","Logo":"1c4990222f2164db8a2a12e3de5c20d6","Thumb":"5dbed7cde524743dab1edff6bb292e36"},"BackdropImageTags":["0624b3baf3929532bad49187bb11a3a2"],"ImageBlurHashes":{"Backdrop":{"0624b3baf3929532bad49187bb11a3a2":"WA9[0=8wMwb_D*pd.S-nIVNxV?9a8w?bRPMxM{IU-VOY$~jFE1xa"},"Primary":{"a1bec98b0623acf0cec57a8513d5aedd":"dI98l7VtR6tl?^nhR5o#Di%gs:kCDPoztRV@MJIUbaaK"},"Art":{"e5323c7ac195b3948676731a17683081":"NTBWxpof-;tRR%j[~qWB%Mt7bIax?bV@xujZWWWB"},"Banner":{"8793afbd78cbc6e54ee42f57474dbbbd":"HcBE~[HqRPtmn4tlNGM{ivu5nNMxbbn$t7bbj[i_"},"Disc":{"336ee88bcfcd5721ec2aefa785455f01":"eZKwB^tP%%nix^SOoJs:WXoK%%Rj-=W;s+xFR*R*jZWox^WCs*ofIU"},"Logo":{"1c4990222f2164db8a2a12e3de5c20d6":"OcF$eOof~qof_3s:_3%Mayjtayayf6j@-pj[R*fQWBazWB"},"Thumb":{"5dbed7cde524743dab1edff6bb292e36":"NeDAfNR5ozkXo}tR?^V@RjbvkWt7Nbs-IUW;bFWW"}},"LocationType":"FileSystem","MediaType":"Video"},"bb608e089de44bf735026dcc106682af":{"Name":"Transformers: Revenge of the Fallen","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb608e089de44bf735026dcc106682af","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-06-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":90249789440,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8373"},"VideoType":"VideoFile","ImageTags":{"Primary":"9cde1ce5fc3717b5a5a2c8302d7ec093"},"BackdropImageTags":["87a68615d66405329e3f21fbdda0e1fe"],"ImageBlurHashes":{"Backdrop":{"87a68615d66405329e3f21fbdda0e1fe":"WTF=5ET10h?Gxunh9xj[=_W?Iqs.9bV?s,R.Rjt7_1RkD*%1X9nh"},"Primary":{"9cde1ce5fc3717b5a5a2c8302d7ec093":"dTECtW?G?b-=.Ta#xux]EA9aE2R-XURkM{NH%L%Mt5WV"}},"LocationType":"FileSystem","MediaType":"Video"},"bb96986a1a8e2f99c889ed84d303eef7":{"Name":"Super 8","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb96986a1a8e2f99c889ed84d303eef7","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-06-07T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":67088109568,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"37686"},"VideoType":"VideoFile","ImageTags":{"Primary":"f54ceac7afb00e6856d4f33fdd94df1d"},"BackdropImageTags":["483d5b3e1faa3b8b440c30fe68274407"],"ImageBlurHashes":{"Backdrop":{"483d5b3e1faa3b8b440c30fe68274407":"WJ8;S@xu4mIUtR%2kFazRhj?xvj[M|R*s.xat8Rk%MofM{RjRkt7"},"Primary":{"f54ceac7afb00e6856d4f33fdd94df1d":"dC9%xG~WDhIA^,-:nNsl-;%Ls8xYxB%1?H%Mn2%1?bxu"}},"LocationType":"FileSystem","MediaType":"Video"},"bb9fe404820dda382c0266117cf509f0":{"Name":"Men in Black","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bb9fe404820dda382c0266117cf509f0","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1997-07-01T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":58789228544,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"607"},"VideoType":"VideoFile","ImageTags":{"Primary":"bd8ec062c75d3c45bac21358ac44b7e7","Art":"d651335017048b3d31935d891a20041e","Banner":"46e4e5273371057048bd6fb2f7b78ffa","Disc":"98de0b143ea68d189df924e3cbcd22b1","Logo":"221a72e80bff6909b4c67a0158f4ebc5","Thumb":"3a8d0164b2970fe08589fc2d649113a1"},"BackdropImageTags":["98de0b143ea68d189df924e3cbcd22b1"],"ImageBlurHashes":{"Backdrop":{"98de0b143ea68d189df924e3cbcd22b1":"WO8XRqt74mM{-;t6_4oz9EM{%Mt7-=kCD$WA%MoftRbHRPjYt7bG"},"Primary":{"bd8ec062c75d3c45bac21358ac44b7e7":"dIBgi8%gI[Nf_4xtIAM_.9s.IAR--;t7M{WVxaogV@W="},"Art":{"d651335017048b3d31935d891a20041e":"NeGJ28xt-;oI~q%MyF%M9Gt6ads:t6Rjxuafn$WA"},"Banner":{"46e4e5273371057048bd6fb2f7b78ffa":"HPBg0u?wx^-;V[9F9FaiMy-;%NtSs;M|M{RkM{n%"},"Disc":{"98de0b143ea68d189df924e3cbcd22b1":"eUIE;Hn~-;S4%hMwoe%MRkR-_NWB_3ofs:x^W;Mxads9tSRkxat6IT"},"Logo":{"221a72e80bff6909b4c67a0158f4ebc5":"OZNB4Rog%3R+~Tt7_0%Nj]ofWBNFofocs*oextWBRmofRl"},"Thumb":{"3a8d0164b2970fe08589fc2d649113a1":"NIA,,,~WxuIU9Fbb?ZxvoyWBM{oz0000M{%M%Mt7"}},"LocationType":"FileSystem","MediaType":"Video"},"bc2794e86c7f74278946f4b6a29569ff":{"Name":"Alien: Covenant","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bc2794e86c7f74278946f4b6a29569ff","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-05-08T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6,"RunTimeTicks":73233596416,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"126889"},"VideoType":"VideoFile","ImageTags":{"Primary":"67018141b680c2a5347278b8a8c994cf"},"BackdropImageTags":["fd9ac369c144e93532f9c58caf143416"],"ImageBlurHashes":{"Backdrop":{"fd9ac369c144e93532f9c58caf143416":"WRBzUe_M%fx[ofof?b.7%Mxaodj[t7xaoJWBM{Rjx]tRf6WBRkkB"},"Primary":{"67018141b680c2a5347278b8a8c994cf":"dA7BM~?vIU9F_N?baeIA-;-;WBM{%MxvayWBtRofofof"}},"LocationType":"FileSystem","MediaType":"Video"},"bc9e0582f35b6fd66a0d50a3f67b5237":{"Name":"The NeverEnding Story II: The Next Chapter","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bc9e0582f35b6fd66a0d50a3f67b5237","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1990-10-23T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":5.7,"RunTimeTicks":53914341376,"ProductionYear":1990,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"34636"},"VideoType":"VideoFile","ImageTags":{"Primary":"04c1e4131844f1d4cb8f8ffd3fc8e32c"},"BackdropImageTags":["65c2e796482541ce5509c2d74042a4c9"],"ImageBlurHashes":{"Backdrop":{"65c2e796482541ce5509c2d74042a4c9":"WKB:aJ9a8^oxS5V@%2IosmoMWExuD%xttRRkRkt6axWARkxuofM{"},"Primary":{"04c1e4131844f1d4cb8f8ffd3fc8e32c":"dhN^Yh.7xG?G?wjsivt6tSV@%gbI.6aybxoz%NozkEog"}},"LocationType":"FileSystem","MediaType":"Video"},"bde04e083eaf19bdcf133d44cb66c19f":{"Name":"Raya and the Last Dragon","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bde04e083eaf19bdcf133d44cb66c19f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-03-02T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":64492810240,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"527774"},"VideoType":"VideoFile","ImageTags":{"Primary":"f2602b919e059bc8cbef2d8a200e4b40"},"BackdropImageTags":["6467882ef7109153f6987b287227b44b"],"ImageBlurHashes":{"Backdrop":{"6467882ef7109153f6987b287227b44b":"W$H.4}D%bdo#a#xbtpxVW?W?jXWsXVt7Rjf5axWqxbWXnhada{s-"},"Primary":{"f2602b919e059bc8cbef2d8a200e4b40":"dQAw^vI;8_%1~pIpIAxt-:M|RPxu$zNHWXt7v}RkXSt6"}},"LocationType":"FileSystem","MediaType":"Video"},"be79a175be57ca7764a5051e72f77e16":{"Name":"Titan A.E.","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"be79a175be57ca7764a5051e72f77e16","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2000-06-15T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":56991997952,"ProductionYear":2000,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7450"},"VideoType":"VideoFile","ImageTags":{"Primary":"63d83d13a18a7eae2b54e804938a59a5"},"BackdropImageTags":["6c6c31a1c44f91ea848ead0734dc7858"],"ImageBlurHashes":{"Backdrop":{"6c6c31a1c44f91ea848ead0734dc7858":"WB8p_U-m4q4[SQxrE3NKt7t5oHbc0OIq?E--jrM~-:xYM{NKNMjY"},"Primary":{"63d83d13a18a7eae2b54e804938a59a5":"dIF4yT%30}%1MwNbS$oL1Ibw-Ut7BCELwIxaR6$MfkEM"}},"LocationType":"FileSystem","MediaType":"Video"},"bf466d797ebcc07c667f0a4c0f53e87d":{"Name":"Evangelion: 3.0 You Can (Not) Redo","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bf466d797ebcc07c667f0a4c0f53e87d","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-11-16T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":58187419648,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"75629"},"VideoType":"VideoFile","ImageTags":{"Primary":"c582f181ab34e2997666676320159051","Art":"6bd7760d5159962630d799a1c7c5bc57","Banner":"982d4725362f0f1bbba86e197baaa61d","Disc":"6507ebd44848b21fc3f5ca7e2f9eb714","Logo":"7b9c7fb883e1ecfd42aa8924663d2ae8","Thumb":"67d93a5b6a161b383efe5e94f2ecc01c"},"BackdropImageTags":["6507ebd44848b21fc3f5ca7e2f9eb714"],"ImageBlurHashes":{"Backdrop":{"6507ebd44848b21fc3f5ca7e2f9eb714":"WoOW~b-;~pt8%1?bxwbboJV@%MxuNGWBs:t6R*WB.8oft6a{oft7"},"Primary":{"c582f181ab34e2997666676320159051":"dC7UMNt84mRjt5RkRit6D%M|%N%M?ca$ITs.-;j]ITWC"},"Art":{"6bd7760d5159962630d799a1c7c5bc57":"NFBftz0e$itRIo$L.8?HNHMxxuM{XT?HNHM{xaNb"},"Banner":{"982d4725362f0f1bbba86e197baaa61d":"Hz5s{UkXtno#kBpJV@tTadt:XAp0kCf5o~V?o~WA"},"Disc":{"6507ebd44848b21fc3f5ca7e2f9eb714":"eXI;-Zj[?voesFMxV[Naay$*%Noc-;a}xW~Wj]t6WVM|t+WCRjoLIU"},"Logo":{"7b9c7fb883e1ecfd42aa8924663d2ae8":"OXCZbEofM{WBRjRjRjofWBofayWBayWB00Rjt7oft7t7of"},"Thumb":{"67d93a5b6a161b383efe5e94f2ecc01c":"NG7B+t%MMaRlNHNIEAMxt1t8t7xvRjWAkBj?jYof"}},"LocationType":"FileSystem","MediaType":"Video"},"bf655308e55f98f4776717fa7c048d06":{"Name":"Roald Dahl's The Witches","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"bf655308e55f98f4776717fa7c048d06","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2020-10-24T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":62520320000,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"531219"},"VideoType":"VideoFile","ImageTags":{"Primary":"5ccfcb0d59a5ec067aa3122fcc4ecbb9"},"BackdropImageTags":["579cc56433aaf9ba4a61d4ccef934e5a"],"ImageBlurHashes":{"Backdrop":{"579cc56433aaf9ba4a61d4ccef934e5a":"NB8y*Ys:0zj?%2R+xujuIoWV%2oLxas.n$WWWXs."},"Primary":{"5ccfcb0d59a5ec067aa3122fcc4ecbb9":"dKCYp}a~0et6^kWCELs:NexZn#RjE3s:xYWBM|Naj=s:"}},"LocationType":"FileSystem","MediaType":"Video"},"c01194a09af9aee4e195539298d0ae99":{"Name":"The Matrix","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c01194a09af9aee4e195539298d0ae99","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1999-03-29T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":81806622720,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"603"},"VideoType":"VideoFile","ImageTags":{"Primary":"c401f9a2e91f7c9a6fe062811b8611ab","Art":"94971fa0827fbeccc171b93937a5c504","Banner":"3b8ccdf89c820794324155a7cb430070","Disc":"d4f6a341e427184d858bc5bbcfb85743","Logo":"d5c82d57539f75a7b81d109adbe24fdc","Thumb":"f0671b5abdf90f1ce3b4e9c833c6d25b"},"BackdropImageTags":["fc30b0874191b23d6b840b91ccc2a972"],"ImageBlurHashes":{"Backdrop":{"fc30b0874191b23d6b840b91ccc2a972":"NXDKS.-.PXX-I[t-*0M{JVo}XSt8O?RjxY%MnNVr"},"Primary":{"c401f9a2e91f7c9a6fe062811b8611ab":"dUA^wXt8tRx]_4ogkBt7xvs;WAaeR.ofWUfkM|WBjZWB"},"Art":{"94971fa0827fbeccc171b93937a5c504":"NZBiY{ozprm[V]tiHbVcVvkkWVV[xukTaMafkSoe"},"Banner":{"3b8ccdf89c820794324155a7cb430070":"HF8q[{.7NEIUof?utRM{br?[%MR%M{oMx[t7RjWU"},"Disc":{"d4f6a341e427184d858bc5bbcfb85743":"eaENLgXM~Xoy-;o{bYj@jHe=~XV[?IjHV@i|epjukBbF-qjIWnX5In"},"Logo":{"d5c82d57539f75a7b81d109adbe24fdc":"OhQm*4kBj[bYR%ofW,xuayofjuWUbFju}xo3n,o3sqWUn,"},"Thumb":{"f0671b5abdf90f1ce3b4e9c833c6d25b":"NXFPjSWroz%MIUt7_MxuWYogWBaz%LxuR*ofogof"}},"LocationType":"FileSystem","MediaType":"Video"},"c0c568113480f27ce4767197fc604e14":{"Name":"Predestination","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c0c568113480f27ce4767197fc604e14","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-08-27T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":58688208896,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"206487"},"VideoType":"VideoFile","ImageTags":{"Primary":"8ccc2298dae615648b28984875819ed6","Art":"2bf50c7cd4066259784c199df3eafa97","Banner":"e1dc79049787323946e0b39143cec25c","Disc":"549af4248348dec18ef561626a9f1f26","Logo":"0254c7cff7380d38783e0be67818d815","Thumb":"fdd86aadef6d99e7104d1dd69a15dace"},"BackdropImageTags":["0254c7cff7380d38783e0be67818d815"],"ImageBlurHashes":{"Backdrop":{"0254c7cff7380d38783e0be67818d815":"WPCYs{~BNZRjxYt657E2xa%2ofjYS5WDRjM|NGa}xaxat6ofoLWB"},"Primary":{"8ccc2298dae615648b28984875819ed6":"d:G,3Fa$e-tRxus:R*js8^jYWUadM|WBj[Wqk8ofW=WC"},"Art":{"2bf50c7cd4066259784c199df3eafa97":"NNHVbu^*rp_3?bo#%Ln$flRkxtbHMbxv_4xujuxZ"},"Banner":{"e1dc79049787323946e0b39143cec25c":"HJBVqk~BXm-o^ixtR*V[ni-ns.IpR*s,ocaxWBj?"},"Disc":{"549af4248348dec18ef561626a9f1f26":"eOF~XHWF?wxt%h%1jZj?RkWV?vs+~pNGROR%Rjt7xas:_NWrMxt7M{"},"Logo":{"0254c7cff7380d38783e0be67818d815":"OmRMb$j[j[j[t7ofj[offQfQfQj[fQfQ~qofayofWBayay"},"Thumb":{"fdd86aadef6d99e7104d1dd69a15dace":"NwIPD59Z%0t7M_xt.Tt7MyRks+jF%Mt7WFWEnioJ"}},"LocationType":"FileSystem","MediaType":"Video"},"c1c53936da75296d4baf2e4b35228dba":{"Name":"Open Windows","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c1c53936da75296d4baf2e4b35228dba","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-07-03T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.1,"RunTimeTicks":60325449728,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"151368"},"VideoType":"VideoFile","ImageTags":{"Primary":"5d85431adec6b8fa1ec6f3fe753634fb","Art":"a418eddf8316818b2a4f802f0d8873ba","Banner":"aac33614b71751e4d5557bc06e5b34ce","Disc":"7c4506cb2454e9306a8c9c2cca883baa","Logo":"33a1e8d8ebf169d71ecf161b7559fcf6","Thumb":"1013ad4dbe4fd3637fa3bcf6c3972d8e"},"BackdropImageTags":["1896d592ee4fc08b67dd0d16dfe0ffc4"],"ImageBlurHashes":{"Backdrop":{"1896d592ee4fc08b67dd0d16dfe0ffc4":"WH9Qs,t700V[xtNF%2azM{ofofRj00Rj?bozWBxa4.WB?Hj[M{t7"},"Primary":{"5d85431adec6b8fa1ec6f3fe753634fb":"dGCZknxb01M|~BtRD%jEk=t5H?tR-;xaWFIU$$jZIUM{"},"Art":{"a418eddf8316818b2a4f802f0d8873ba":"N^J[L_~qayIURjt7%Mxut6WVayofWBWBWBkCofWB"},"Banner":{"aac33614b71751e4d5557bc06e5b34ce":"HMECnT~nTLvy4.4:R3a*t2?ct6tQ$*D%9ZIURjV@"},"Disc":{"7c4506cb2454e9306a8c9c2cca883baa":"eBE{ni%ML2kB^gVXVs?vj[xb~Rxv~V-p4;?^b_Mc%2kX58xt-pkCIA"},"Logo":{"33a1e8d8ebf169d71ecf161b7559fcf6":"OYH2i.ay4nWBRjkCofIUjtIUofj]j[t700ayxuj[t7ayWB"},"Thumb":{"1013ad4dbe4fd3637fa3bcf6c3972d8e":"NIBzX|9F5Wx]elxa4m-.o|Mxt8WXs%IVr;-VkDIo"}},"LocationType":"FileSystem","MediaType":"Video"},"c1d71cc7e1518597a2688c739b55926a":{"Name":"Ghost in the Shell: Stand Alone Complex - The Laughing Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c1d71cc7e1518597a2688c739b55926a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-12-31T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":96020086784,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"18839"},"VideoType":"VideoFile","ImageTags":{"Primary":"86ee166769e0acfcee3d55894c6d79e2","Art":"faafc947e8e1db4993a618a33d4e47bd","Banner":"993db416aeb3720240ac929b0c447ddd","Logo":"91e201f4bbc8c986f101305f3740f46d"},"BackdropImageTags":["d1c4de6a72f00f8a37baa25c72420f91"],"ImageBlurHashes":{"Backdrop":{"d1c4de6a72f00f8a37baa25c72420f91":"N268gGISpIIUJN_3x{td%g-:IVOT4o%NnTtRRQIB"},"Primary":{"86ee166769e0acfcee3d55894c6d79e2":"dICQr;%i01NhtTogRjWC4=NGxsof9cRk%MozWAkBxaof"},"Art":{"faafc947e8e1db4993a618a33d4e47bd":"NJAv^A9Za#-p0K^+9at7j@WB%LNGMwWUa}oft7M{"},"Banner":{"993db416aeb3720240ac929b0c447ddd":"H[8~XWt8a$ogj[bKayWZRQx|ofayozj[WEayWYRk"},"Logo":{"91e201f4bbc8c986f101305f3740f46d":"OD9G{oj[01j?fmWVRj.9j[V=j[RjayNI^%j[N1j?M{j[of"}},"LocationType":"FileSystem","MediaType":"Video"},"c20a61c438b34b7f8769494f0a84cdb4":{"Name":"Sucker Punch","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c20a61c438b34b7f8769494f0a84cdb4","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-03-23T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":76506931200,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"23629"},"VideoType":"VideoFile","ImageTags":{"Primary":"dea12a43af3c7bd7a4a84583b8a8f303","Art":"1e6aad135422a3395d59ba7bfdd04cbb","Banner":"3c9ca36dc6a5e93963134e8a3cf64696","Disc":"e309597b95f9bc9f94ee47bf8e3a0da4","Logo":"b511522ae39e75b7f12ae8abe0474b91","Thumb":"c5846ac8d4a9c9e50edaf2d60ec1a97a"},"BackdropImageTags":["3e101036691c19ecd376761e9b3e2f4d"],"ImageBlurHashes":{"Backdrop":{"3e101036691c19ecd376761e9b3e2f4d":"WB97qqDiIB-;RPj]_NIp9F.7RjRjMdxaMxxt%NM{M{Rjt6IB%gn$"},"Primary":{"dea12a43af3c7bd7a4a84583b8a8f303":"dHDvlh-.E2bX_K?GIVNH0MtQt6RkM|D+%L%1NGM|Rk%L"},"Art":{"1e6aad135422a3395d59ba7bfdd04cbb":"NCA,n8M|DiWENGs+I9WX%gadWBog0LWAR+tRkCRj"},"Banner":{"3c9ca36dc6a5e93963134e8a3cf64696":"HcDmBEs+9HbbjGbIxZWBIp~os9D*S5s.t6ozWVae"},"Disc":{"e309597b95f9bc9f94ee47bf8e3a0da4":"eQJ[V3Dj?cW--?-jo1NeRjjZX=%e~VWCs+IUR*tSxajX-=Ios+xaD%"},"Logo":{"b511522ae39e75b7f12ae8abe0474b91":"OH8#KQae8_t8MwRPj[bbtRoLM_WBoeax4TWB%goft7j[ax"},"Thumb":{"c5846ac8d4a9c9e50edaf2d60ec1a97a":"NKDJFRxa0MWTM|S#~o-:9HE2owWBR:%2RP9HW.s:"}},"LocationType":"FileSystem","MediaType":"Video"},"c21f53f7c3e5f392606e14cc33f56fe4":{"Name":"X2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c21f53f7c3e5f392606e14cc33f56fe4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-04-23T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":80274776064,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36658"},"VideoType":"VideoFile","ImageTags":{"Primary":"7bc87cbc3e48ed909935f20ff30cc109","Art":"a43e11d2ebb38703e5d1c417e45fdeed","Banner":"1ab4b9bebbe29e2f5229b33bbabefeed","Disc":"1569000a804b09d782f621649d531f84","Logo":"a7d6a8c6465b8c8ec7a72ac5eb5b3f14","Thumb":"813b5db684b29004ab8b6bb876634392"},"BackdropImageTags":["361f7373c7513564649cac4915e7b349"],"ImageBlurHashes":{"Backdrop":{"361f7373c7513564649cac4915e7b349":"W[KK+xxu%Mxuxuxu~qoexut7Rjof-;ofayayM{j[%NofaxWBofog"},"Primary":{"7bc87cbc3e48ed909935f20ff30cc109":"dUHxZ[?H$%-p~Wxa-p%L%MtRnNn~-;R,RjWW.9R+kWbv"},"Art":{"a43e11d2ebb38703e5d1c417e45fdeed":"ND8Xd}OZD%$gDibcDNMdj[x]x]of9a-;%2E1smRP"},"Banner":{"1ab4b9bebbe29e2f5229b33bbabefeed":"HWBEH{VsWB%$D%XAj[M{xu?waKf7tSIUkXWCM{tR"},"Disc":{"1569000a804b09d782f621649d531f84":"ebI=#,%z-qDj-;x[ofV[M{fO~XRP%3oybFRioes;aybI%3RjR%ozM{"},"Logo":{"a7d6a8c6465b8c8ec7a72ac5eb5b3f14":"OnI~MmRP~Woz~Wt7?bfljtjsfQoLayofs:kCf+a}WVaeV@"},"Thumb":{"813b5db684b29004ab8b6bb876634392":"NLAK%UtSI[S5x]yD.TozI9Rjf+jspJj[n3a{tStR"}},"LocationType":"FileSystem","MediaType":"Video"},"c2723701961dc97ea03f1be3e78178c2":{"Name":"Attack the Block","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c2723701961dc97ea03f1be3e78178c2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-05-11T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":52640428032,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"59678"},"VideoType":"VideoFile","ImageTags":{"Primary":"63fb1a836bc0e6991bd7385e817d2234"},"BackdropImageTags":["d898347b76eafba8d30317a9a3d93172"],"ImageBlurHashes":{"Backdrop":{"d898347b76eafba8d30317a9a3d93172":"WaE{z?%M_2%Mocxv~qj?%LogWVoMMxRkIVNGWERQR:ozM{WCs;WC"},"Primary":{"63fb1a836bc0e6991bd7385e817d2234":"dHCszK?b~q_4t8xu%NtR00RkD%M{b{V]IUogaJn%%MV@"}},"LocationType":"FileSystem","MediaType":"Video"},"c3cd0ceb5c9cb1d0c40f2d3e45cfca1c":{"Name":"Shutter Island","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c3cd0ceb5c9cb1d0c40f2d3e45cfca1c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-02-13T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":82847793152,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"11324"},"VideoType":"VideoFile","ImageTags":{"Primary":"d7e0681ed2f2b2484f569ef6402253a0","Art":"275c927e5865374378469e16b64d147e","Banner":"4b3593874d0e5a49822947eaeb544a3e","Disc":"fdcbb8bd5d67e0a2a99134b434a62cff","Logo":"d7e0681ed2f2b2484f569ef6402253a0","Thumb":"d869704359fdfc11e3ca782cb4837658"},"BackdropImageTags":["bcae62e9eb4c94a35b2e9b4c7ac1efab"],"ImageBlurHashes":{"Backdrop":{"bcae62e9eb4c94a35b2e9b4c7ac1efab":"WUF}l,MxkX-ooL-p~VITShSLIpt7%2Vst7s.RjozoeM{ogoJRjoz"},"Primary":{"d7e0681ed2f2b2484f569ef6402253a0":"dD8W{nRj0K%2?bWVD%n$IAxus:IUE2%2%LE1Efjt$*WV"},"Art":{"275c927e5865374378469e16b64d147e":"NLF5U7IqE{yE9Zt,{0v~EzV?bbJQwI%2JnxZaeRj"},"Banner":{"4b3593874d0e5a49822947eaeb544a3e":"HEAbIz}XC67eW-ogVs+v#8]ov~FwK4wvxbs.$*xa"},"Disc":{"fdcbb8bd5d67e0a2a99134b434a62cff":"edG+OBt6?bRk%givW;tRjFRj?wNG?Gxas.ocjFWYX8n~yDoLr=R*IU"},"Logo":{"d7e0681ed2f2b2484f569ef6402253a0":"OHE*PcJl1^SM1^fQN]]AN]a|o1Wpo1JlN]jto1a|sUWpa|"},"Thumb":{"d869704359fdfc11e3ca782cb4837658":"NH9s3kt+I;Q.9tR*wKSgt7xaS2NG0|Vs$jo}%2s:"}},"LocationType":"FileSystem","MediaType":"Video"},"c4935afab6b76aa99de412613c3470c6":{"Name":"Pirates of the Caribbean: At World's End","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c4935afab6b76aa99de412613c3470c6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2007-05-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":101100912640,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"285"},"VideoType":"VideoFile","ImageTags":{"Primary":"a9e9efe8b78ac25f1a680d99dbe97793","Art":"7bab280bee4804e02145625d0f048688","Banner":"43514c2dee38336df11309fd8831b601","Disc":"88a303713ef456900bc86e0608cade22","Logo":"c810294eb12003d5408e576ac3c3db6a","Thumb":"7d436626f84dd15d49031c9e3811b148"},"BackdropImageTags":["c810294eb12003d5408e576ac3c3db6a"],"ImageBlurHashes":{"Backdrop":{"c810294eb12003d5408e576ac3c3db6a":"W67JRxoL0#ni={xZ-Bn*NGoekWR+ENWC-Tt6EhRkofsojFR+kCxY"},"Primary":{"a9e9efe8b78ac25f1a680d99dbe97793":"dHDlG:-pWD$*+0%1tQxtIAMyM|M|v#aLR*ae}[x[Nwjb"},"Art":{"7bab280bee4804e02145625d0f048688":"NyL4Na~WE1bFxuRj8wIAxufkRjofRkayoeR*oef6"},"Banner":{"43514c2dee38336df11309fd8831b601":"HNF$O-IotR^+.8-=%3%Mxu~qtRtR%1x]tRxut7of"},"Disc":{"88a303713ef456900bc86e0608cade22":"ebIz-dxC?wR+-;xZafj[fiWX_NNa%hoLRjNwbGoLfRoJyDn%nhj[M_"},"Logo":{"c810294eb12003d5408e576ac3c3db6a":"O{MZ:ioLbHWAkDaybINGV@ofa|oeayof?wWBWBbHjYayf5"},"Thumb":{"7d436626f84dd15d49031c9e3811b148":"NDExz*~UO:_1-T-o+G$$%L%KV^V_^i$%s,M|M}t6"}},"LocationType":"FileSystem","MediaType":"Video"},"c4e17e5133e76f34cfb26870a59ff82a":{"Name":"The Mitchells vs. the Machines","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c4e17e5133e76f34cfb26870a59ff82a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2021-04-29T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":68426559488,"ProductionYear":2021,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"501929"},"VideoType":"VideoFile","ImageTags":{"Primary":"30f7bce5ad3a05191fd29fa01f9d02fa"},"BackdropImageTags":["0b61001413a1f3cb261870b6695ea1d2"],"ImageBlurHashes":{"Backdrop":{"0b61001413a1f3cb261870b6695ea1d2":"WdL|}r?vpJrCM{xs.TtRtls8oIxa%LvzMyXTr?X9?vr=nONcWBe:"},"Primary":{"30f7bce5ad3a05191fd29fa01f9d02fa":"dhK_8y%M%L-:caRmtQo}PVk9VrWqp{t7nNX957OYnPRo"}},"LocationType":"FileSystem","MediaType":"Video"},"c53ae87ac2bcd2d78b16e23cc2c3227c":{"Name":"Jurassic Park","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c53ae87ac2bcd2d78b16e23cc2c3227c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1993-06-10T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":75880423424,"ProductionYear":1993,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"329"},"VideoType":"VideoFile","ImageTags":{"Primary":"20ef479b3606d26161900e83c4eb3a88","Art":"749addefcecc3a9e1f449e434ef86534","Banner":"c7a68ba183598f3121fbf0e62cd8025b","Disc":"de0b1ae2cc72df368ecafff86f8e8b5e","Logo":"442b28d93f9c6351cb73f651a445e405","Thumb":"9942bcb5fb5726ef203c5f6482f938c2"},"BackdropImageTags":["93332c23ce0d2ce44ec55a81a7406d7f"],"ImageBlurHashes":{"Backdrop":{"93332c23ce0d2ce44ec55a81a7406d7f":"W555IKRi9dM|?FxW~qWA9cNI=_xY-ot69bWt-P%1-.xu9ao$$_%2"},"Primary":{"20ef479b3606d26161900e83c4eb3a88":"d69r;4-U$d=x,@J7R*WV0eR*-WS2kVoe=dxGTeNw5Re:"},"Art":{"749addefcecc3a9e1f449e434ef86534":"NfGu?{tQ.9t8tSWB~WRjRPRjM{jZ%Kj]Ria{Rjs;"},"Banner":{"c7a68ba183598f3121fbf0e62cd8025b":"HA965Q2Z+^AD9_[r1^|wP7;QAr$OW.J,]-KM#nEN"},"Disc":{"de0b1ae2cc72df368ecafff86f8e8b5e":"eiM5zyJ*.9wdY4VtnitPoLjbuhwc-qo2jF=LSgFGS2R+pHR*e=OERP"},"Logo":{"442b28d93f9c6351cb73f651a445e405":"O~O:eKfk_NofsCkCIUaefQoza|oJj[WBkVjtaeWpj@o1WX"},"Thumb":{"9942bcb5fb5726ef203c5f6482f938c2":"N86Hict60MM|-oxt~Uof4;M}-oxt?Yoe9bRk-.xt"}},"LocationType":"FileSystem","MediaType":"Video"},"c65d8125a28817db917e452fdb4511f8":{"Name":"Spaceballs","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c65d8125a28817db917e452fdb4511f8","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1987-06-23T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":57728090112,"ProductionYear":1987,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"957"},"VideoType":"VideoFile","ImageTags":{"Primary":"bbdf0d2ef7beb85ef07021c4a0013726"},"BackdropImageTags":["12613f577e7c8ca04e9a0c266ede8102"],"ImageBlurHashes":{"Backdrop":{"12613f577e7c8ca04e9a0c266ede8102":"WEB:Qq^*0K4oNLIV%1xuj]IVD*oe01IV%MxuV@%2k8M_M{x]-;WB"},"Primary":{"bbdf0d2ef7beb85ef07021c4a0013726":"dF9Qju%2RjbI0KR%t7f6WVWVoMof~qxbj]bF00RkbGRj"}},"LocationType":"FileSystem","MediaType":"Video"},"c7695e40a3a71ca5b2d48ed9fcae5ac8":{"Name":"1408","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c7695e40a3a71ca5b2d48ed9fcae5ac8","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-06-21T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":67460300800,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"3021"},"VideoType":"VideoFile","ImageTags":{"Primary":"e6e78b377f832be61b7452773d2f015b"},"BackdropImageTags":["bb6a44dded5ebcbe758a82d5b355e624"],"ImageBlurHashes":{"Backdrop":{"bb6a44dded5ebcbe758a82d5b355e624":"WICrTA=^~AkB-T-A^it6^iayR-NHI=NdNINHR+M|j?ofjYs:j?kB"},"Primary":{"e6e78b377f832be61b7452773d2f015b":"dOFWt1$$0iRRxGw{niR+KgWXNHbFS#NcI;s,I[a#WBS2"}},"LocationType":"FileSystem","MediaType":"Video"},"c7845c33b18dc098273c615f8fe1219f":{"Name":"Harry Potter and the Prisoner of Azkaban","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c7845c33b18dc098273c615f8fe1219f","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-05-30T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8,"RunTimeTicks":85021966336,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"673"},"VideoType":"VideoFile","ImageTags":{"Primary":"b3b3a7f2f164d80cf49060e2081029cc","Art":"d736b8706e2386f2e00ec7a5dba22c16","Banner":"9e6b7586a5d3f19ed967efe1cebc6bd2","Disc":"11f457819e767e587758b3e66883b577","Logo":"ea042df7a42990bdd702dd32f1bb333f","Thumb":"3551f12b640dd0051abd2f48ee0ad4fd"},"BackdropImageTags":["16ae444d41f10e036948bcee212d0277"],"ImageBlurHashes":{"Backdrop":{"16ae444d41f10e036948bcee212d0277":"WiEz1fRjWBM{D%S2_4oyM{WBMxRPof%MM_bcRPM{W=xaWAWrRjR*"},"Primary":{"b3b3a7f2f164d80cf49060e2081029cc":"dPAwk=kBWAof_NoyRjaeskxuV@WAITxZV@WXIUadjEog"},"Art":{"d736b8706e2386f2e00ec7a5dba22c16":"NzIrKf9FkC%Ms:V@~qD%bIxufkRjWBt7ofa}WWWW"},"Banner":{"9e6b7586a5d3f19ed967efe1cebc6bd2":"HYB4XNRjDjozx[oyM{oyxt_MRjIUoft7oyWBoft7"},"Disc":{"11f457819e767e587758b3e66883b577":"eYLM@R%0%%NHx^kVa|s.jZoKpeIp.8xZs+rtjFNbS2k9-=oes*j[IU"},"Logo":{"ea042df7a42990bdd702dd32f1bb333f":"OQJ*IetR-@Rj?ws+-??FaxWEbIj=s-j[x_oeWVM~Riaes,"},"Thumb":{"3551f12b640dd0051abd2f48ee0ad4fd":"NlEWH}M{WFRjIUt7_4WBWBWAMxe:tSxuM{WURiV@"}},"LocationType":"FileSystem","MediaType":"Video"},"c796233b75338bb9069d49ac341c7384":{"Name":"Blade","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c796233b75338bb9069d49ac341c7384","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1998-08-20T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":72176746496,"ProductionYear":1998,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36647"},"VideoType":"VideoFile","ImageTags":{"Primary":"c8444fb4b57d5bf37eb1165f67bca733"},"BackdropImageTags":["bf828a064eb98972e35fdf89f19e98ad"],"ImageBlurHashes":{"Backdrop":{"bf828a064eb98972e35fdf89f19e98ad":"WABUK@11Sz^1EP],]mf6WX#-xENKM~-9sANct5Ncwes.R+oeNJoc"},"Primary":{"c8444fb4b57d5bf37eb1165f67bca733":"d8BxJ[XT5r|tz;+]NH9}1Loe$#J9K%J.xZ${56Myrr%K"}},"LocationType":"FileSystem","MediaType":"Video"},"c7fea5104a175d82b868ab2785e59d3c":{"Name":"Metropia","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c7fea5104a175d82b868ab2785e59d3c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-10-20T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":51427168256,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36800"},"VideoType":"VideoFile","ImageTags":{"Primary":"7289de1dfd5d32132a12a42e7bfccc5f"},"BackdropImageTags":["0354c91f15d67f80b5e95a2462aedfa7"],"ImageBlurHashes":{"Backdrop":{"0354c91f15d67f80b5e95a2462aedfa7":"WOG8.cjY0LbH%Lof?bIUs:WBIVt7E2of%2f6M{ayxuofM{j[ofj@"},"Primary":{"7289de1dfd5d32132a12a42e7bfccc5f":"dMD+rIoK0Lj[IVayR*NGRjj[xZof9ZkCayj@t7j[ayay"}},"LocationType":"FileSystem","MediaType":"Video"},"c81570a486acaf4fd4db9a94c8d49bf9":{"Name":"District 9","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c81570a486acaf4fd4db9a94c8d49bf9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-08-04T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":67357229056,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"17654"},"VideoType":"VideoFile","ImageTags":{"Primary":"e5fd726099b857bbaf89d2a5ba068341"},"BackdropImageTags":["78802308c4b5383e0c4d8c43ff13319c"],"ImageBlurHashes":{"Backdrop":{"78802308c4b5383e0c4d8c43ff13319c":"WxI5Vy%MD%ay%Mxu~qxuofozj[j[?bxtofoffPWV?bt7WBj@fkkC"},"Primary":{"e5fd726099b857bbaf89d2a5ba068341":"daGbr1_3xuxu_4%2xux[I[kCt7WCR.WqM|M|tSV@M{j]"}},"LocationType":"FileSystem","MediaType":"Video"},"c8a22279e8fd4a28f57e170ca9bbf762":{"Name":"One Flew Over the Cuckoo's Nest","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c8a22279e8fd4a28f57e170ca9bbf762","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1975-11-17T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":80222715904,"ProductionYear":1975,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"510"},"VideoType":"VideoFile","ImageTags":{"Primary":"33d08a947807d4f968aae5b701ed1533"},"BackdropImageTags":["61e5ce13c29657c849ffbe310474fcc8"],"ImageBlurHashes":{"Backdrop":{"61e5ce13c29657c849ffbe310474fcc8":"WSJj*k%1Rk%LRj%L~pt7ogjaIUxuShofRjoeWAxut6ofV?ozbbWB"},"Primary":{"33d08a947807d4f968aae5b701ed1533":"dhO:-Axux]_3?bxubbV@00t7%MRjkCIUV@t7NGt7e.Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"c8bc93b492b788f00adcdda2adf95cd9":{"Name":"The Hunger Games","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c8bc93b492b788f00adcdda2adf95cd9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-03-11T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":85533868032,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"70160"},"VideoType":"VideoFile","ImageTags":{"Primary":"3fcdb04f067f550591601a31d2461b79","Art":"0fa6977358109fefba67fe4c7dac7f74","Banner":"52be88ea228bd7e92c94e6372e0e9fc0","Disc":"8a0cf4b1b379a222220fc810a0aba7bb","Logo":"9e195a06f48b9ffdd9a58a6837ac187c","Thumb":"d32e5583ad50f530ac5159cf43182a12"},"BackdropImageTags":["490f0802fdb3ce69aba0517791053b2b"],"ImageBlurHashes":{"Backdrop":{"490f0802fdb3ce69aba0517791053b2b":"WA9$5u}r=c=ZIpENF_xGJ9Eg5SENxaOqR+ENEMI;^5}q-9M}wINH"},"Primary":{"3fcdb04f067f550591601a31d2461b79":"dGDt|U}WxFw0XktPR+NI0hNIM}so$$I;9vNcX7xZ$$R*"},"Art":{"0fa6977358109fefba67fe4c7dac7f74":"NJGZ~LbD%M}nAJEO5pNKRRX8Wq-Ss8El9vR.sSR-"},"Banner":{"52be88ea228bd7e92c94e6372e0e9fc0":"HC8:z|$K=^R-WE9vOYELt4~8xC-nIoozIrI;NHxZ"},"Disc":{"8a0cf4b1b379a222220fc810a0aba7bb":"efGIv1oJ?cWV%gnhaybcWCjZ_4WB-:oejExYaybIs:j[x^WBn#a#IU"},"Logo":{"9e195a06f48b9ffdd9a58a6837ac187c":"OzPPGraxysspibW.NxxtWVbHnia{SgoL?wof%MkCRPofWU"},"Thumb":{"d32e5583ad50f530ac5159cf43182a12":"NNF:|{};=]}p-SxY11=vxXSexY$~R+9wNHNII?I="}},"LocationType":"FileSystem","MediaType":"Video"},"c9a6d4b7f93817d27ef893c73eff73db":{"Name":"Thor","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c9a6d4b7f93817d27ef893c73eff73db","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-04-20T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":68907188224,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10195"},"VideoType":"VideoFile","ImageTags":{"Primary":"461e851657d7d2f8c0b41759677cbb31","Art":"978de67a9f6d95142a6ccbea206751f7","Banner":"9930831d4a8140080ea624166a65adcd","Disc":"cbe0e4f07e5763747bea8f12fc97afe4","Logo":"9750cc7b5c744192c0ea385c8f5648b0","Thumb":"5b05688963bfa920fba688bdb23deecc"},"BackdropImageTags":["2e735b1ca08e604f67e9d4ba245a7652"],"ImageBlurHashes":{"Backdrop":{"2e735b1ca08e604f67e9d4ba245a7652":"W68X2-aL$_?v#m$*~pa0^Q-;I:s-ibt6ELRO-;ae9uXTV?ITtmW="},"Primary":{"461e851657d7d2f8c0b41759677cbb31":"dA8XX;xb8^tS?GoLM{t7#iofogr;kWayjFaK9FV@yDS$"},"Art":{"978de67a9f6d95142a6ccbea206751f7":"NxBgTzbcR]odjCoftBWVRjbEoIjIoyf*RikCj^ju"},"Banner":{"9930831d4a8140080ea624166a65adcd":"HB5=OwMwMwofjE%g9Exv%N?wROMxj[adx]ITtRxv"},"Disc":{"cbe0e4f07e5763747bea8f12fc97afe4":"eeG8i,WV_3WB-;Szf6soWVWV~Xae%#ofWBSzjZn*bHj[-;WVR*j[Mx"},"Logo":{"9750cc7b5c744192c0ea385c8f5648b0":"O@ONF1WBRjj[%Mt7RjWBj[j[WBofa|fQ~qofofj[M{WBof"},"Thumb":{"5b05688963bfa920fba688bdb23deecc":"N35}jkGHR+^P4n+[_NGvO[=v9ZrX_3TeI;=u9Zm,"}},"LocationType":"FileSystem","MediaType":"Video"},"c9baa9f854f8661fa95ecf42f016c229":{"Name":"Tomb Raider","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c9baa9f854f8661fa95ecf42f016c229","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-03-04T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":70704644096,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"338970"},"VideoType":"VideoFile","ImageTags":{"Primary":"10425c0a884fd9a620e5855a20704a54","Art":"80b269608dac32d13e9e71921c51e5da","Banner":"367d75a80e4ae7d95013b7af171f698c","Disc":"d315b837fd60178053554235f3e0e8ed","Logo":"b7aefe2156ba38f1d860e9a1a7f69b96","Thumb":"fecb0608b340e0545bd87fffd18862d5"},"BackdropImageTags":["d864fbcef0f788698f7f85f19b7d4574"],"ImageBlurHashes":{"Backdrop":{"d864fbcef0f788698f7f85f19b7d4574":"WoIW=tVtxG,?VYWD~Vf6s:xGVsi{L1WVWBOqaerrcEWBn*X8i_sT"},"Primary":{"10425c0a884fd9a620e5855a20704a54":"dQC~;kMeOD%M*IMyOExu-pRQozw|tQNGtQnjSfR%tQaf"},"Art":{"80b269608dac32d13e9e71921c51e5da":"NrNTB;VE_4x[9FNG_NpI%gn%RPf6M{a{ayWBj[of"},"Banner":{"367d75a80e4ae7d95013b7af171f698c":"HzMGbaMdO?cYM{n5s:tQkB~WV@S#XmWUnis:oyof"},"Disc":{"d315b837fd60178053554235f3e0e8ed":"eHFXP40}39=_Tc^iEMR--URQ7x$io_oyVYVt$%JmSgWUK%oerDR+s:"},"Logo":{"b7aefe2156ba38f1d860e9a1a7f69b96":"OuQbqbmQV?pIkqniaKs:n%aybHbHayj[.mcEkWi_aKf+kC"},"Thumb":{"fecb0608b340e0545bd87fffd18862d5":"NYLDx,D4-p.856bI?]Tcozs9a1s:TIXSofi_nPtR"}},"LocationType":"FileSystem","MediaType":"Video"},"c9c4d2b59ac7aae239b0941ead621d25":{"Name":"The Babadook","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"c9c4d2b59ac7aae239b0941ead621d25","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2014-05-21T22:00:00.0000000Z","OfficialRating":"NR","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":53921599488,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"242224"},"VideoType":"VideoFile","ImageTags":{"Primary":"5f620f11955d70eadfb152387e578869","Art":"350dc79e623e6f32dabd1050d02de5d0","Banner":"99a3cc589688a52433fd0d7ff2bd924a","Disc":"9a6ff00e784ec609b8fa07a9eb1c8f38","Logo":"1f674a666ddb93abd6dfaef7fed6112b","Thumb":"41280c9ebf1f5eda1ec5752a48bc4fea"},"BackdropImageTags":["3515f015b9144036034cc91769997629"],"ImageBlurHashes":{"Backdrop":{"3515f015b9144036034cc91769997629":"WB6@.zxa0KIo-;xaIoj[%2WBM{t7Riayt7a#oKt7-;oLE1WWxuae"},"Primary":{"5f620f11955d70eadfb152387e578869":"daF5{oof~q-;D*aeIARj%gof%2xu%2kCx]t7-;oLxut7"},"Art":{"350dc79e623e6f32dabd1050d02de5d0":"N,Lg^Z~qRjM{kCxuIUIUj[t7WBWBM|RjRjofofWB"},"Banner":{"99a3cc589688a52433fd0d7ff2bd924a":"HC9jlyROxuD%01.84.t7IA^+Mx%MtR9ZR*9Fxu%2"},"Disc":{"9a6ff00e784ec609b8fa07a9eb1c8f38":"eTEyY-oJ_3Rj%gxZV[fibIj[~qj[?bjZM{aeofofRkay?bofRiazM{"},"Logo":{"1f674a666ddb93abd6dfaef7fed6112b":"OMRC[7ofofxuIUt7Rj_3j[t7j[RjfQj[~qj[j[ayt7ayt7"},"Thumb":{"41280c9ebf1f5eda1ec5752a48bc4fea":"N86*R5M{M|%2D*xut7WBWBayRkof01t7t7M|%MRj"}},"LocationType":"FileSystem","MediaType":"Video"},"ca1e9aae1e118d95135c9d26064326d7":{"Name":"Bumblebee","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ca1e9aae1e118d95135c9d26064326d7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-12-18T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":68335579136,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"424783"},"VideoType":"VideoFile","ImageTags":{"Primary":"47bab42951bf6e73fca4cc1bca07a80c"},"BackdropImageTags":["cfc54d9ce99018e51d5df48b5860f2ed"],"ImageBlurHashes":{"Backdrop":{"cfc54d9ce99018e51d5df48b5860f2ed":"WUE2a[xt^js,R%-o-=xua#s:R%s;0,NIE2RlaeIqJCM|WBNHoeR*"},"Primary":{"47bab42951bf6e73fca4cc1bca07a80c":"dTID:6-pJD-oSexYE3WB?8IpM{$d~6%0xs?D5SM|nj%0"}},"LocationType":"FileSystem","MediaType":"Video"},"ca2f1b2c881804fea4b7d38f9e3b063d":{"Name":"Men in Black II","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ca2f1b2c881804fea4b7d38f9e3b063d","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2002-07-02T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":52883189760,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"608"},"VideoType":"VideoFile","ImageTags":{"Primary":"41777a3bcfb5e263deebcf9ad8f9edea","Art":"5474e6f1e205af65aedeccc3c1cce714","Banner":"6c7660e3a7ec76acf838f90bcf38dc42","Disc":"b195f46a050cbc1d5b63bb3ce7bde9bd","Logo":"3eb19905423aa03a87bb4d24b8539b04","Thumb":"1eb358d3b2453876625935bdf3a89dd5"},"BackdropImageTags":["da9c1e71d5dfc0f1d90558fde0b667b9"],"ImageBlurHashes":{"Backdrop":{"da9c1e71d5dfc0f1d90558fde0b667b9":"WfDT0AofkDt8WBt74TWBM{RjozRj?bofRjayofoLbcbHkCazj[oM"},"Primary":{"41777a3bcfb5e263deebcf9ad8f9edea":"dhHV9z%MRjt700WBM{M{~qs:RjozRkaeWVkCM{axRjj["},"Art":{"5474e6f1e205af65aedeccc3c1cce714":"NlM*27kCRPay~qof^+fQE1WCofay_3j[-pofIUj["},"Banner":{"6c7660e3a7ec76acf838f90bcf38dc42":"HQG+UM?bt7~q-p-;~q8_?b~p9FNG%M?b-;?bMx%M"},"Disc":{"b195f46a050cbc1d5b63bb3ce7bde9bd":"ehKd}LaeIUof-;%MfRM{axof~qae%MfkaytRj]R*WBRjM{WB%Mj]M{"},"Logo":{"3eb19905423aa03a87bb4d24b8539b04":"O.K1]_ayoeayt7ayt7jYayofayj[aeaz~qoffkj[WBj[WB"},"Thumb":{"1eb358d3b2453876625935bdf3a89dd5":"N[ONB]%Mj[xuWBxu-;t7ofayayof~qt7ofj[j[t7"}},"LocationType":"FileSystem","MediaType":"Video"},"ca9dcc322b12b09956a01c206aebc8e4":{"Name":"Inferno","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ca9dcc322b12b09956a01c206aebc8e4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-10-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6,"RunTimeTicks":72952963072,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"207932"},"VideoType":"VideoFile","ImageTags":{"Primary":"686cec5f0aae104fda45a1275390e72f","Art":"2a888a010a930ead9db31ecf9f8a63dc","Banner":"863e0deb15bded9095ecb9c840914124","Disc":"3c64555f62655854345474515164b57a","Logo":"c80f22f5c2f45e8a702adbe441b75c20","Thumb":"de86ba856766c60601403bec99de2b63"},"BackdropImageTags":["e30b48dfe0a82b97618b666744aa255b"],"ImageBlurHashes":{"Backdrop":{"e30b48dfe0a82b97618b666744aa255b":"WVC;|JxF0#NH%KofE3WV%1s.V@jGa~S3ayo0NwW;ofW:o0oJSNWX"},"Primary":{"686cec5f0aae104fda45a1275390e72f":"dHA+~a%1M{jb-.t6RkWC0iR+t7R+5SNIxZj@xZoLjYxY"},"Art":{"2a888a010a930ead9db31ecf9f8a63dc":"NxNTg,Rj_Nx]?bae_3V@M|tRRkaeadWBR*ozRjax"},"Banner":{"863e0deb15bded9095ecb9c840914124":"HQBy1,~9tPEM9vM|RlNyOF~9?FoyIpE3IWM~NeS$"},"Disc":{"3c64555f62655854345474515164b57a":"eSMZE#?Ft-sS.8?aW=RPnhOX_NI;TyNHM{ozjGjcRkNGx^afNGoer;"},"Logo":{"c80f22f5c2f45e8a702adbe441b75c20":"O~N,uej[j[j[j[j[oLs:fQfQfQfQfQjt~qj[ayfkayj[ay"},"Thumb":{"de86ba856766c60601403bec99de2b63":"NF8zP=s:0yNH-U%2r=s:I;M|-o%1I;WB$*t7IoRk"}},"LocationType":"FileSystem","MediaType":"Video"},"cacc7ecd21a263381c02fb24d30d8128":{"Name":"Spider-Man: Far From Home","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cacc7ecd21a263381c02fb24d30d8128","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-06-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":77637656576,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"429617"},"VideoType":"VideoFile","ImageTags":{"Primary":"a772b065e2a8e82c1023a6fe4a8e158e"},"BackdropImageTags":["dbb106c5b96c9f94c5583d3b42439045"],"ImageBlurHashes":{"Backdrop":{"dbb106c5b96c9f94c5583d3b42439045":"WKEV$zMK,?%#K$Xn.A%gkoNKtSb^5p.8Rlads;xbb_gNWBnis:kD"},"Primary":{"a772b065e2a8e82c1023a6fe4a8e158e":"dLG%owoz1d-C^kt7X7WAVEofE1M{a0t7I:NGENs:tkWA"}},"LocationType":"FileSystem","MediaType":"Video"},"cb1607bf651de51a7735787c4cf0c8ff":{"Name":"The Avengers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cb1607bf651de51a7735787c4cf0c8ff","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-04-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":85757116416,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"24428"},"VideoType":"VideoFile","ImageTags":{"Primary":"13ff6ecb91783e29d16359259cba7561","Art":"0352fd240af80352fef7718dbfeba48d","Banner":"52399c999642b06e9b396e60a9ec4517","Disc":"b357de2cf1edae63ea2606595563bee6","Logo":"25a1bbb98b22e4c4d4bb9c6588ad47a1","Thumb":"75b3df5275cdd3687e2e648c197357b2"},"BackdropImageTags":["1d33fd10d3a47eb4f423245e04616841"],"ImageBlurHashes":{"Backdrop":{"1d33fd10d3a47eb4f423245e04616841":"W85E~h.8WBMyD%IUtRj?V@V@V@V@4TIAoz%M.8%gD$M{ofoft7s:"},"Primary":{"13ff6ecb91783e29d16359259cba7561":"dB7_f+k?IUsS?^OYR5aJOrS$ninO9vozxafRDis9t8X9"},"Art":{"0352fd240af80352fef7718dbfeba48d":"NIAdAmNED%flM|oh~qM_M_ogWVozR+RQjaoft7t6"},"Banner":{"52399c999642b06e9b396e60a9ec4517":"HOBW*,NEIS-q9aNfnijDb^.TM{VqtQS5xvRPInWX"},"Disc":{"b357de2cf1edae63ea2606595563bee6":"eWJuGw?v_3RO%M?ZxbM|M{a#?^MxxCIVn$aKWAR*j@oe%LRjs;%MNa"},"Logo":{"25a1bbb98b22e4c4d4bb9c6588ad47a1":"OsE{wxofWBj]RjaeRjs:f6j@WBWBWBWB00oft7fQofWBof"},"Thumb":{"75b3df5275cdd3687e2e648c197357b2":"NEBWf2?GDgrWDi%29ZS3tRXStSM|0gIpW;OYx^Si"}},"LocationType":"FileSystem","MediaType":"Video"},"cb3c7a2525dba3d09ce1b839cc23294e":{"Name":"Space Jam","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cb3c7a2525dba3d09ce1b839cc23294e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1996-11-14T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":52402638848,"ProductionYear":1996,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2300"},"VideoType":"VideoFile","ImageTags":{"Primary":"dcfa832db7c0458938ebfb72d822890e"},"BackdropImageTags":["8be92c5ead1e4f9291fdde8e19105eb0"],"ImageBlurHashes":{"Backdrop":{"8be92c5ead1e4f9291fdde8e19105eb0":"WRA]y;W;0fwO-SS}e]V_s:xtS1RlE2of-pV]I:e:#-s.NeRnxFbW"},"Primary":{"dcfa832db7c0458938ebfb72d822890e":"dNDvKE9t9ws?NGozxVS114-SxsRl$Nf-I]bbIuRPngtQ"}},"LocationType":"FileSystem","MediaType":"Video"},"cb6929712aa82000122b0d63ed1eb0e9":{"Name":"Alien Outbreak","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cb6929712aa82000122b0d63ed1eb0e9","Container":"mkv,webm","PremiereDate":"2020-02-10T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":3.8,"RunTimeTicks":50810241024,"ProductionYear":2020,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"668343"},"VideoType":"VideoFile","ImageTags":{"Primary":"44223c1ff6cfc5f8d2a12889866eb27a"},"BackdropImageTags":["57528847abb5e556087ae1ca179168fa"],"ImageBlurHashes":{"Backdrop":{"57528847abb5e556087ae1ca179168fa":"WOC?ZP_3s.D%Rj%M~q-;NGIBM|t7-;-:xut7t7of%2t7oft7xut6"},"Primary":{"44223c1ff6cfc5f8d2a12889866eb27a":"dGD,DwRjDixup0ogIUM{IUxuMxRj~WRjRi%MM|M{t7oz"}},"LocationType":"FileSystem","MediaType":"Video"},"cb93681adaa061bc79078bf51d0cc18b":{"Name":"23","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cb93681adaa061bc79078bf51d0cc18b","HasSubtitles":true,"Container":"avi","PremiereDate":"1998-07-01T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":56846000128,"ProductionYear":1998,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1557"},"VideoType":"VideoFile","ImageTags":{"Primary":"64ca6d9c3113508ce6fde094dabcdae5"},"BackdropImageTags":["70bc3700699ee97b77bae53fa799db36"],"ImageBlurHashes":{"Backdrop":{"70bc3700699ee97b77bae53fa799db36":"WQEy3*-paxRPM_oz~p%2t6ofV?xubcxakD%MV@ozxuofWWxua#oz"},"Primary":{"64ca6d9c3113508ce6fde094dabcdae5":"dGB2o$9YTJEK}[M{S~I:ACs:azofJ-R%s:spkCRjxGjF"}},"LocationType":"FileSystem","MediaType":"Video"},"cc0daa4c9b406c4dec26c73300020c80":{"Name":"Hackers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cc0daa4c9b406c4dec26c73300020c80","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1995-09-13T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.3,"RunTimeTicks":63158620160,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10428"},"VideoType":"VideoFile","ImageTags":{"Primary":"9c1e8a57fb758b5f790f34d06737babf","Art":"306506eaed3e4d4576f00d60e521d713","Banner":"306506eaed3e4d4576f00d60e521d713","Disc":"e7d06ee95da5a9233a7c6c820388d5ce","Logo":"d6a4999cef84e06705bec87c46591cfc","Thumb":"ccfab546fc3408686ff396028c345012"},"BackdropImageTags":["e7d06ee95da5a9233a7c6c820388d5ce"],"ImageBlurHashes":{"Backdrop":{"e7d06ee95da5a9233a7c6c820388d5ce":"WP8~Kzp2R4x_R1rq%jo$M^V@j]aw$voMROjYofskxvt8Rkais*j="},"Primary":{"9c1e8a57fb758b5f790f34d06737babf":"dH7d@PkDMuxuRpWCf4oeI7jZtAWA%KofWWWAD%WVofWA"},"Art":{"306506eaed3e4d4576f00d60e521d713":"N@MtBj~qoyIUogxu%MtRoJWBWCofRjRjWXs:axWX"},"Banner":{"306506eaed3e4d4576f00d60e521d713":"HeEp7.E7IVRoadxtk8NaWB_4M}RkWYj=t7RjW:WB"},"Disc":{"e7d06ee95da5a9233a7c6c820388d5ce":"eCFrSBwN01%2x@S$R*Ris:xb5$S]GOIqOTI.s:%3WUIoInxIt7adnU"},"Logo":{"d6a4999cef84e06705bec87c46591cfc":"OnOW82oyn$smnOoejZs:jZf6bHjZbHf6~qjFbHbHbbbIX8"},"Thumb":{"ccfab546fc3408686ff396028c345012":"NKFN*p%z9Z%0GFsS8wMeTKI=RPS5Fwt6flj[xZaf"}},"LocationType":"FileSystem","MediaType":"Video"},"ce3e4bd17ff11c2b90f6650368802d40":{"Name":"Fate\/stay night: Unlimited Blade Works","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ce3e4bd17ff11c2b90f6650368802d40","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-01-22T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7,"RunTimeTicks":64033280000,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"46304"},"VideoType":"VideoFile","ImageTags":{"Primary":"ed79140517d03447aa53345abea27769"},"BackdropImageTags":["b41a9eeaacaef156386faa8e6310590c"],"ImageBlurHashes":{"Backdrop":{"b41a9eeaacaef156386faa8e6310590c":"WHI.EHER=_^5xu^P#qozxt%1-Awg$~ahR.xFV[$%|@ENwI,pR*rs"},"Primary":{"ed79140517d03447aa53345abea27769":"dRE]}PxGNLoM#oR,xFoK0~WBxCR*%0xFRlsnxGofW=xZ"}},"LocationType":"FileSystem","MediaType":"Video"},"ce67fe0f6c9ca135677db74e68b45278":{"Name":"Contact","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ce67fe0f6c9ca135677db74e68b45278","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1997-07-10T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":89808961536,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"686"},"VideoType":"VideoFile","ImageTags":{"Primary":"1276739286a2e05845276ffd13ab1457","Art":"1bce9341e5787059fcc5b288a8305e81","Banner":"26bd580666f48686bdb571606e280b25","Disc":"4030db16c586b24b412a88888d345d03","Logo":"f92beb25d82083006c84f902c0e4e3da","Thumb":"091b9018135c56552c2a7ba68e85eb1c"},"BackdropImageTags":["032a85d5b8ca3886dc490ddeb1faa521"],"ImageBlurHashes":{"Backdrop":{"032a85d5b8ca3886dc490ddeb1faa521":"WNB|:IxWDhkYWCNf%iW=M_kCt7WsH;b{tmxVofMx?ax^tmt7R,M_"},"Primary":{"1276739286a2e05845276ffd13ab1457":"dP8#:3xvIUT2S%kDn#ayH;Rjs,rooHVrogkWR5RiW=tS"},"Art":{"1bce9341e5787059fcc5b288a8305e81":"NoI}t]~q-;%2M|M{xt%M%MxaRjNGt8WBV@WXofjt"},"Banner":{"26bd580666f48686bdb571606e280b25":"HO9to=toNf-;W9IUE4JEto_4xwR.x^tSNKIWNItS"},"Disc":{"4030db16c586b24b412a88888d345d03":"eaFj4=Ri^+oe-:%Ma#Rjf5oe~qof-oaej[n#j?aeWVf+-:azWBWCIV"},"Logo":{"f92beb25d82083006c84f902c0e4e3da":"ONJb25-;xuxuxuxu%M9Ft7xuofxuWBWB~qofxuayIUIUD%"},"Thumb":{"091b9018135c56552c2a7ba68e85eb1c":"NLBE8x$}I8ksWVNMyFX8M_WXt7bcMHb{p0s7ofRP"}},"LocationType":"FileSystem","MediaType":"Video"},"cef91046026895ec31f8271908c24522":{"Name":"Fantastic Four","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cef91046026895ec31f8271908c24522","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-06-28T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.8,"RunTimeTicks":63553388544,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9738"},"VideoType":"VideoFile","ImageTags":{"Primary":"b0b46e4e509fdb703e4af20fb4f43648"},"BackdropImageTags":["99c418c2dd882f26633953369b8de2e5"],"ImageBlurHashes":{"Backdrop":{"99c418c2dd882f26633953369b8de2e5":"WOHeUx}qA1GcGbPCX:t7I9EMkqV@0gI=#j#*Z~WU5ASi%Lslr=%2"},"Primary":{"b0b46e4e509fdb703e4af20fb4f43648":"dKGbSM~VI@~plC9bD+E3BES#=_t8?Gxarqxs-iRjaet7"}},"LocationType":"FileSystem","MediaType":"Video"},"cf0cd4e22471a733a1d558cabc0f9286":{"Name":"Parasite","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cf0cd4e22471a733a1d558cabc0f9286","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-05-29T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.5,"RunTimeTicks":79207456768,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"496243"},"VideoType":"VideoFile","ImageTags":{"Primary":"c08ca620886b97d1892b5b42175797a1"},"BackdropImageTags":["0c1558588d9af8361a020f28c81f581c"],"ImageBlurHashes":{"Backdrop":{"0c1558588d9af8361a020f28c81f581c":"WCATl;MI?brrrp_3~pM{t8RQWBtRt7oJs;jsWBRjxaen%2odV@ae"},"Primary":{"c08ca620886b97d1892b5b42175797a1":"dJAxV#%Mx]o#IKIVogozJPNGn%kU_MyCofM{tSWYxuof"}},"LocationType":"FileSystem","MediaType":"Video"},"cf69feaf7d81543a5227974a6b139334":{"Name":"The Wolf of Wall Street","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cf69feaf7d81543a5227974a6b139334","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2013-12-24T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8,"RunTimeTicks":107924054016,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"106646"},"VideoType":"VideoFile","ImageTags":{"Primary":"de330c71fb8af4326831afe3133c8363"},"BackdropImageTags":["8666d18f7c8844cfc458a9107434b0ec"],"ImageBlurHashes":{"Backdrop":{"8666d18f7c8844cfc458a9107434b0ec":"WEC6y10KMxV=E0.9~VNLX9oHIUs*I9$*S5t7NKjrx^M_Ri%NRPxv"},"Primary":{"de330c71fb8af4326831afe3133c8363":"dUELNS-UNexZ};xYIrofnMR+E4RkaxR*WYWBNGa_xZs:"}},"LocationType":"FileSystem","MediaType":"Video"},"cf8e07970d9c77f2386e60adc17c6db8":{"Name":"Atlas Shrugged: Part III","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"cf8e07970d9c77f2386e60adc17c6db8","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2014-09-11T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":4.1,"RunTimeTicks":59429650432,"ProductionYear":2014,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"199933"},"VideoType":"VideoFile","ImageTags":{"Primary":"df80dd8011c071f91305e414f4dd45e0"},"BackdropImageTags":["4d84775326d3752d88eea260fe4a66d8"],"ImageBlurHashes":{"Backdrop":{"4d84775326d3752d88eea260fe4a66d8":"WVD+=7-;x_t6og%N_4f,kXadRiogkYS6jcofRiRjWFNHj]xufOWB"},"Primary":{"df80dd8011c071f91305e414f4dd45e0":"dOEpZht7tm%g0hWCRPRjH?V@V?V@~pofo}ozEkWBofay"}},"LocationType":"FileSystem","MediaType":"Video"},"d137d7bc366f8d05605a15e7040a39e8":{"Name":"The Space Between Us","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d137d7bc366f8d05605a15e7040a39e8","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2017-01-25T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":72433278976,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"365942"},"VideoType":"VideoFile","ImageTags":{"Primary":"bd92a571e759e02d7d6102653c4f2f6e"},"BackdropImageTags":["fe7eec8b1e44232b444091f338c67bc0"],"ImageBlurHashes":{"Backdrop":{"fe7eec8b1e44232b444091f338c67bc0":"WeN,YG~o---.Wr?Z-;.6M}V[WBoeD*oIV[M|M{Rj-on%xtWrWBoy"},"Primary":{"bd92a571e759e02d7d6102653c4f2f6e":"drIXg7-:xZ%K?Hxuofs:0NWBRkM|D*RQayWBxsWBt6of"}},"LocationType":"FileSystem","MediaType":"Video"},"d19b2a14b213b271cce321dd31823f18":{"Name":"The Lighthouse","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d19b2a14b213b271cce321dd31823f18","Container":"mkv,webm","PremiereDate":"2019-10-17T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":65496731648,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"503919"},"VideoType":"VideoFile","ImageTags":{"Primary":"d1e871c1dd2cdd8bfc8d2309d492238f"},"BackdropImageTags":["535f5ccc41ee34042c2a7bc1f93ecc1b"],"ImageBlurHashes":{"Backdrop":{"535f5ccc41ee34042c2a7bc1f93ecc1b":"WcGSDh%MWBt7xu%M~qayWBRjM{j[ofayRjj[RjRj%MofM{t7j[WB"},"Primary":{"d1e871c1dd2cdd8bfc8d2309d492238f":"dNDcXT%M00Rj~qt7IUj[IUWBxut7ofayayof%Mayofof"}},"LocationType":"FileSystem","MediaType":"Video"},"d2a74e45ae1187a5769e518f62c17172":{"Name":"300","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d2a74e45ae1187a5769e518f62c17172","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-03-06T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":69926076416,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1271"},"VideoType":"VideoFile","ImageTags":{"Primary":"15c9f811781cf5a1506141ddb4f9bdcd"},"BackdropImageTags":["7b4fbd2c635981a15d60c27f44efb6e7"],"ImageBlurHashes":{"Backdrop":{"7b4fbd2c635981a15d60c27f44efb6e7":"WwGbCk~W%Nt8ofoe?GxuNIM|RjWAxBRiIVRQV@WAxCWARjayofoz"},"Primary":{"15c9f811781cf5a1506141ddb4f9bdcd":"dVIDms-:-.-o~ox[?Z%Lu3I=xa%L=xM|S#x[VuNINIxZ"}},"LocationType":"FileSystem","MediaType":"Video"},"d338b02595da4e9634813a8800d3f215":{"Name":"The Curious Case of Benjamin Button","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d338b02595da4e9634813a8800d3f215","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2008-12-24T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":99630080000,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"4922"},"VideoType":"VideoFile","ImageTags":{"Primary":"0c3164ffd1d770a07cbbcb4b9d7176e7"},"BackdropImageTags":["5e52e6803b1055c203ba5cf1507000ba"],"ImageBlurHashes":{"Backdrop":{"5e52e6803b1055c203ba5cf1507000ba":"WbC60:oJ~A%1={-nt6j[xaf6%2oextkBt7s:bHofRks:WVoLs:ay"},"Primary":{"0c3164ffd1d770a07cbbcb4b9d7176e7":"dfFq{,%1~U?F?Gof%Lt79bWCIpNHE1oeRQWBM|fiM|WB"}},"LocationType":"FileSystem","MediaType":"Video"},"d3aceb8f5d3e6f7e14a4c40de1d7e0bd":{"Name":"Shaun of the Dead","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d3aceb8f5d3e6f7e14a4c40de1d7e0bd","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-04-08T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":59601899520,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"747"},"VideoType":"VideoFile","ImageTags":{"Primary":"7754fd7134b8d07f3bb7d6f306f53e60"},"BackdropImageTags":["409d4957b75f511fa73f6a27695aafdd"],"ImageBlurHashes":{"Backdrop":{"409d4957b75f511fa73f6a27695aafdd":"W9C=rC-Bt7={DjIpTdV@XmkWxGx[_+nO$*r@pHx[?Zkqe-oeMyVt"},"Primary":{"7754fd7134b8d07f3bb7d6f306f53e60":"dgF~Kzxu9Zt6~qt7MxazShj[oKWBM_WBWBWUIVWBMxRj"}},"LocationType":"FileSystem","MediaType":"Video"},"d4b4c3d0a2d1c2ffc8fb3bb25ece5ad4":{"Name":"Cube Zero","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d4b4c3d0a2d1c2ffc8fb3bb25ece5ad4","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-10-09T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":5.7,"RunTimeTicks":58511691776,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"438"},"VideoType":"VideoFile","ImageTags":{"Primary":"a9fc7a49a348b17af741455117207566"},"BackdropImageTags":["77ec9cb29d1371f2a6402dbb75b3ce04"],"ImageBlurHashes":{"Backdrop":{"77ec9cb29d1371f2a6402dbb75b3ce04":"WQDmK+t78wa$MxNG%fofoLWCM{WB%MbHD%V@%3j]%Mj@M{jZayay"},"Primary":{"a9fc7a49a348b17af741455117207566":"dXC%ThV_x=%LW9Rk-:bFM}ayV[ayR:xtD*oe02ocWCM{"}},"LocationType":"FileSystem","MediaType":"Video"},"d5706a95ea356a4bfe72ddddf0c3a051":{"Name":"Steamboy","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d5706a95ea356a4bfe72ddddf0c3a051","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2004-07-16T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":75819163648,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8953"},"VideoType":"VideoFile","ImageTags":{"Primary":"5b3de602a4596d8e6dd7ee7f377efd1c"},"BackdropImageTags":["c5278be37cb7829d2fd294c95d492e04"],"ImageBlurHashes":{"Backdrop":{"c5278be37cb7829d2fd294c95d492e04":"WNH^@X%1_N%31jkX}?-oOsT0O@o}pIIUO[EkkWyD-:xtyDS5I@TJ"},"Primary":{"5b3de602a4596d8e6dd7ee7f377efd1c":"dLF$eN.8L1.85:RQM|F14UX9$%#ln4Sem+vfR4aeRjS$"}},"LocationType":"FileSystem","MediaType":"Video"},"d5c6af4d95fea4a25e331bba43f0dd9c":{"Name":"RED","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d5c6af4d95fea4a25e331bba43f0dd9c","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-10-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":66697379840,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"39514"},"VideoType":"VideoFile","ImageTags":{"Primary":"ea2e3e9299381e6b121d35ae3d62f633"},"BackdropImageTags":["17484d0d1583512b9648f76e31cf8f9a"],"ImageBlurHashes":{"Backdrop":{"17484d0d1583512b9648f76e31cf8f9a":"WNG#LQag#.SfweE$|^=JNvoKS3J9AE$hodNcOCs-AYNcs-NvWWkA"},"Primary":{"ea2e3e9299381e6b121d35ae3d62f633":"dTI,A5NvJS|v;~n*sUw_sBS3$OoK#.OCfQn*NvbGj@we"}},"LocationType":"FileSystem","MediaType":"Video"},"d6f06403d1e448ecd67421f291e49dd5":{"Name":"Jurassic Park III","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d6f06403d1e448ecd67421f291e49dd5","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2001-07-17T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":55314030592,"ProductionYear":2001,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"331"},"VideoType":"VideoFile","ImageTags":{"Primary":"288a3d78b3250b6f25b0b2cd25d0c48c"},"BackdropImageTags":["542e0e1de1d0365c10d30ea3e0948b90"],"ImageBlurHashes":{"Backdrop":{"542e0e1de1d0365c10d30ea3e0948b90":"WQFrVH_NpIxutRt7?bxatRtRxax]bcoe%Mt7V@s:-;xuxuxuM_Md"},"Primary":{"288a3d78b3250b6f25b0b2cd25d0c48c":"dD976Hx]Jl%2xGWBR*j[0eRPwJNGS~ofwxbbw{ozkWn%"}},"LocationType":"FileSystem","MediaType":"Video"},"d7233ecbec19db66fd8e72d6dba10092":{"Name":"Venom","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d7233ecbec19db66fd8e72d6dba10092","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-09-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":67287470080,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"335983"},"VideoType":"VideoFile","ImageTags":{"Primary":"5b381c18568745c2a990bdf6772fd370","Art":"961629d192ddab0cc3d4d1c6b7bfe326","Banner":"61f7de91c54c2fdc5c55f063cd879afb","Disc":"1c81eaaebb0630d161a90276565c1945","Logo":"032f6cef861ac7303e494f9d5d607f43","Thumb":"91f7f872f76324a960762dd0ba2dd04b"},"BackdropImageTags":["722c04e7c3b44c4d442f2f9cf0b3573b"],"ImageBlurHashes":{"Backdrop":{"722c04e7c3b44c4d442f2f9cf0b3573b":"W78XIOI90K?b_N8_pJ-;Q-%gtRV@R-s-t6S4t7e-t8D%NFt8WCRj"},"Primary":{"5b381c18568745c2a990bdf6772fd370":"dIA-SC%g-;tSyDWXX9WX0KNHD%M{%$%MWBWq?vxu%2xa"},"Art":{"961629d192ddab0cc3d4d1c6b7bfe326":"NkIhjW~qxuIUNGt74n9FRjxuofRjM{RjazkCj[fQ"},"Banner":{"61f7de91c54c2fdc5c55f063cd879afb":"HQ8O3:M^%NofNHxbIUtSI9.AWAxat8RjoIM|a$Mx"},"Disc":{"1c81eaaebb0630d161a90276565c1945":"e8Bza$axTVWB%f%gWBMxj[t7?[t89rkB9Fj=ofWXWAt7J4RjD%WB-q"},"Logo":{"032f6cef861ac7303e494f9d5d607f43":"OZIE^YIU~q%M~qof?b~qM{M{t7V@a|Rj?bIURjxuWBayRj"},"Thumb":{"91f7f872f76324a960762dd0ba2dd04b":"NJ9HId?vV@%M_4.8RiRPWBxutRWB8_IUj[Mx9FIT"}},"LocationType":"FileSystem","MediaType":"Video"},"d74604affc564907e4214b4c6a5330ae":{"Name":"Invader ZIM: Enter the Florpus","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d74604affc564907e4214b4c6a5330ae","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-08-15T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":42973761536,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"472983"},"VideoType":"VideoFile","ImageTags":{"Primary":"f65572a201a48acc6c28eb866062d36e"},"BackdropImageTags":["931ed4491ee20c40ebd03cabff1cf1de"],"ImageBlurHashes":{"Backdrop":{"931ed4491ee20c40ebd03cabff1cf1de":"WOGkhbXB0y-Uxu%MIIM}V|xtIoRRQ*xZogM|t8V[R$WV%dt7oxbq"},"Primary":{"f65572a201a48acc6c28eb866062d36e":"dGBK@ixI6KxJ61S1$lbb1XWU+}WA|3wzJiWUNZN@S0sC"}},"LocationType":"FileSystem","MediaType":"Video"},"d848b6e9be9a38c1d9a071d03e52a517":{"Name":"Austin Powers: International Man of Mystery","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d848b6e9be9a38c1d9a071d03e52a517","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1997-05-01T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":53754871808,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"816"},"VideoType":"VideoFile","ImageTags":{"Primary":"4f515841f5a4e654e43f92937fab2363"},"BackdropImageTags":["c0a1e56098bad5ce61cead7161939daf"],"ImageBlurHashes":{"Backdrop":{"c0a1e56098bad5ce61cead7161939daf":"WOD8wV-U0LE2-:%L#+xYxaNcNGn$9ZWB-:t7IoRQoge:R*f*X9of"},"Primary":{"4f515841f5a4e654e43f92937fab2363":"dmPFhmr]-f~4-9nTnQsl?PxpRqSN-Af|W.jd-hocV[WX"}},"LocationType":"FileSystem","MediaType":"Video"},"d879ca23571b79587928a060b50745ea":{"Name":"Ip Man 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d879ca23571b79587928a060b50745ea","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-04-28T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":64860418048,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"37472"},"VideoType":"VideoFile","ImageTags":{"Primary":"7c23a741df4034692e4e734b06e98895"},"BackdropImageTags":["ecbddafd19a67049dd050d58256d6ced"],"ImageBlurHashes":{"Backdrop":{"ecbddafd19a67049dd050d58256d6ced":"WjJ*r6_4%N%Mxt%3~q?bIUofxuWA%g%MIUa}t7Rj_3jtazj?RjbI"},"Primary":{"7c23a741df4034692e4e734b06e98895":"dJATZhs:E1M{IA-:kBM{W:IUxu%M0KRjxat7xuRjM{WW"}},"LocationType":"FileSystem","MediaType":"Video"},"d90164896dfa4274c2ffb204fc293081":{"Name":"Top Secret!","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d90164896dfa4274c2ffb204fc293081","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1984-06-07T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":54064541696,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8764"},"VideoType":"VideoFile","ImageTags":{"Primary":"c277b1ad3748b3e2a661a400256bcdbe"},"BackdropImageTags":["b8a34dbb2bfe61639593fe146de2e721"],"ImageBlurHashes":{"Backdrop":{"b8a34dbb2bfe61639593fe146de2e721":"WKC~xUR-ITr=D%s:~Xt8RjI9ITog_3R-RiV?ITt7xvt8RjM_V?t7"},"Primary":{"c277b1ad3748b3e2a661a400256bcdbe":"dWIrgZ%hM_.9~Ws:R4V@^$nfs:Ri~Xj]SQkY#~WrRjR%"}},"LocationType":"FileSystem","MediaType":"Video"},"d9fb2dc9f7d0ffd58b62aeae7a7c4642":{"Name":"Source Code","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"d9fb2dc9f7d0ffd58b62aeae7a7c4642","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-03-29T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":55926169600,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"45612"},"VideoType":"VideoFile","ImageTags":{"Primary":"318ce1e2ee6bff5f47a36b7432112d32"},"BackdropImageTags":["f7e27d48fcee31c14e99fe178b0c258b"],"ImageBlurHashes":{"Backdrop":{"f7e27d48fcee31c14e99fe178b0c258b":"WVBzttysiaD*tS%L.Ax]RPR:tRxWEM$gNexutRaxR:ogofofogW;"},"Primary":{"318ce1e2ee6bff5f47a36b7432112d32":"dgE3;@NGOZ-=.TWFtRs.n3W?ozRPRkkBayR+Sht7oMbF"}},"LocationType":"FileSystem","MediaType":"Video"},"da1acf20c93cbe22eb3ef3e3589a8e4a":{"Name":"Allegiant","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"da1acf20c93cbe22eb3ef3e3589a8e4a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-03-08T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":72332804096,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"262504"},"VideoType":"VideoFile","ImageTags":{"Primary":"c40ddd60394d9dafd344b8ddae5da774","Art":"435168364a4404d0cfa830cefa0658af","Banner":"907816c505e0f7f573deab0d8fef1d91","Disc":"a0dfb5178de2f69d8e51fb55a579c889","Logo":"304551c23e5b223c1502e81b68549e33","Thumb":"529539b66fd1e45fb397dc4a006f4ca4"},"BackdropImageTags":["8623473230ba679f924e55d3564693f0"],"ImageBlurHashes":{"Backdrop":{"8623473230ba679f924e55d3564693f0":"W996{~%2I8M{5?S$^-xaISn$EkJBNLRjI.={NGNH-VELt7-oadj["},"Primary":{"c40ddd60394d9dafd344b8ddae5da774":"dVD9^_InWUoz~XSgkWa#-Vo#baae-pRjkCkC%2Rjt6WW"},"Art":{"435168364a4404d0cfa830cefa0658af":"NoPGjZ4TD$s.xu-pD*jYoft7ogoMj[WBRjM{RiWB"},"Banner":{"907816c505e0f7f573deab0d8fef1d91":"HVD][2IUITo#jZxuoykCNG_4a{Rjo#oft7tQR*R+"},"Disc":{"a0dfb5178de2f69d8e51fb55a579c889":"eLFiiSRO~qkD.8xWWCofV[j@~qtR~qn~IUkCWBs:kCjt_NaxIUofMx"},"Logo":{"304551c23e5b223c1502e81b68549e33":"OgQv,uRkxtoeoyj[kC%Loeayf8ayayj[~Vt6Rka#afjuaf"},"Thumb":{"529539b66fd1e45fb397dc4a006f4ca4":"NLAdfixY9FRnjExtRMxuohRP%Lj?~qoyD%RQs.t7"}},"LocationType":"FileSystem","MediaType":"Video"},"dad9053793a02658eb7b96b1e041fbcc":{"Name":"Skyfall","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dad9053793a02658eb7b96b1e041fbcc","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2012-10-24T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":85900050432,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"37724"},"VideoType":"VideoFile","ImageTags":{"Primary":"448f8794cbd8f0dc2f0c756a7f94f4fe"},"BackdropImageTags":["11995ef4361e339e275ec50bbc169106"],"ImageBlurHashes":{"Backdrop":{"11995ef4361e339e275ec50bbc169106":"WQATi,WB00t7-;M{_3j[9FWBxuj[Rjt7t7M{RjxuM{t7xuM{Rjt7"},"Primary":{"448f8794cbd8f0dc2f0c756a7f94f4fe":"dNA,%tWBD%xu~qM{D%og-=t7RjayR*xut7RjD%oft7Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"db1af05510d6f30ad171a7f5842edde6":{"Name":"The Book of Eli","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"db1af05510d6f30ad171a7f5842edde6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-01-10T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":70560538624,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"20504"},"VideoType":"VideoFile","ImageTags":{"Primary":"480e36d418f1ed92930afb23c814479d"},"BackdropImageTags":["a4e50c16033e438f3e914d0641d9f536"],"ImageBlurHashes":{"Backdrop":{"a4e50c16033e438f3e914d0641d9f536":"WLD0AYRPWB-;t7xu_3IURjR*Rjay_3M{j@fkWBWB~qM{WBt7fRj["},"Primary":{"480e36d418f1ed92930afb23c814479d":"dJC%HRD*fS%L_Ls:t6bHD%-:xtM|-:xuxtRQ_M%LWDRj"}},"LocationType":"FileSystem","MediaType":"Video"},"dca7be5250b713b2a8096d4d6a3fc670":{"Name":"Akira","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dca7be5250b713b2a8096d4d6a3fc670","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1988-07-15T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8,"RunTimeTicks":74665279488,"ProductionYear":1988,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"149"},"VideoType":"VideoFile","ImageTags":{"Primary":"ec4c177141443959346ec4c9203c363b","Art":"12fefc214d13b6042cab7cb5bfd8e1b3","Banner":"eca1e6a6f380ca3bd862e9549737117e","Disc":"3dc2aa99a8cc5f70213819d82912c1f1","Logo":"ec4c177141443959346ec4c9203c363b","Thumb":"f2e7738508da3853943677d180e11d5f"},"BackdropImageTags":["f6ee6985764e95928cde5ac3d32452ec"],"ImageBlurHashes":{"Backdrop":{"f6ee6985764e95928cde5ac3d32452ec":"NMEePwkq0yrst+-o={s:W:e.ofbb57i_-:OWMeaf"},"Primary":{"ec4c177141443959346ec4c9203c363b":"dhNdBx%Mt-.8r^s:R*fk57WVM|Rjo~s:s:j]?^t7M{X8"},"Art":{"12fefc214d13b6042cab7cb5bfd8e1b3":"NeP6dUxus9Na%gROR5t7jsR+V@tR.mozX8V@sAbv"},"Banner":{"eca1e6a6f380ca3bd862e9549737117e":"HuL1;L,@rrv~RjwdwJ$*Rj}tsoRjxGt7j[xaofR*"},"Disc":{"3dc2aa99a8cc5f70213819d82912c1f1":"eSKmY5J7*J$*%M#-ofSzaKj[?]iw?bX8s:xuWBaLS~WVK%xu$*IoIU"},"Logo":{"ec4c177141443959346ec4c9203c363b":"OvQI-:oL?^kC%MofRPsUbHX8jtofjFjZOXofsAWBn%bHSM"},"Thumb":{"f2e7738508da3853943677d180e11d5f":"NHDR+*FX9}xaWmVu~C9[=x$*I;xFsr9u$#-UXQ%1"}},"LocationType":"FileSystem","MediaType":"Video"},"dcaa5df420064bdd19aa37d069e34710":{"Name":"The Matrix Revolutions","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dcaa5df420064bdd19aa37d069e34710","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-11-04T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":77579059200,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"605"},"VideoType":"VideoFile","ImageTags":{"Primary":"adfc8639a662d7879a8fb55a5f445c95"},"BackdropImageTags":["aa04ddee16fbe1c25b0aa076762c5b6d"],"ImageBlurHashes":{"Backdrop":{"aa04ddee16fbe1c25b0aa076762c5b6d":"WJ7.mcD6MxyCoMV[IAx[a|V@oyf8aLbaoyV[fkj[kCjZa}fkf6WC"},"Primary":{"adfc8639a662d7879a8fb55a5f445c95":"dJ6]j_U_kWtkD5kWaeaLxatkjFWBbbWBbHjZMfa#t7WB"}},"LocationType":"FileSystem","MediaType":"Video"},"dcf4bb91334045609c1134718d964766":{"Name":"Ultraviolet","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dcf4bb91334045609c1134718d964766","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-03-02T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.1,"RunTimeTicks":56676909056,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9920"},"VideoType":"VideoFile","ImageTags":{"Primary":"ae9d33890ae81fb9c6a576710a732a56"},"BackdropImageTags":["e253321a04269e46a511af265b082821"],"ImageBlurHashes":{"Backdrop":{"e253321a04269e46a511af265b082821":"WXCs]qIU01-oxWIVIAjDx]RjxaofIUoIxuRjR*ofkqWBn%ozNGjZ"},"Primary":{"ae9d33890ae81fb9c6a576710a732a56":"dTE{I-E24o?b9DxZogM{9Dt6xZRi-;a$aJS1Shn%V@og"}},"LocationType":"FileSystem","MediaType":"Video"},"dd288052b569a266cf78b9779fb4d87e":{"Name":"Puella Magi Madoka Magica the Movie Part III: Rebellion","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dd288052b569a266cf78b9779fb4d87e","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-10-25T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":69979938816,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"212162"},"VideoType":"VideoFile","ImageTags":{"Primary":"07fd10ab0e43eaf81dfd4651424824fe"},"BackdropImageTags":["122c766b8efedefba587fc0a5973e3ac"],"ImageBlurHashes":{"Backdrop":{"122c766b8efedefba587fc0a5973e3ac":"WjJ%;K~VNXD*9GNG,2xHR%WAkCbII9r]n,R%s=xu?I%MbqRisqxa"},"Primary":{"07fd10ab0e43eaf81dfd4651424824fe":"dqE.^w-pajxv?dxaRls;MyV@RPV[Mxaen$oMbIj[oekD"}},"LocationType":"FileSystem","MediaType":"Video"},"dd2dabe8c0aeca16a647de9cad48e1b1":{"Name":"Back to the Future Part II","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dd2dabe8c0aeca16a647de9cad48e1b1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1989-11-21T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.7,"RunTimeTicks":64793280512,"ProductionYear":1989,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"165"},"VideoType":"VideoFile","ImageTags":{"Primary":"2d0136625024a45d8ee6319d12974fee","Art":"accf115bf2578a9c3a469023467cec6c","Banner":"999d233284658b9fbc7d0c23b0e70c61","Disc":"2f57732c768444e8b92375ac358a5bd5","Logo":"9760d934f355a4f9278b0425d4c90723","Thumb":"0170f9fad79866687f4450f6d8c3b463"},"BackdropImageTags":["f9c11342a62f37df3c3e33417ebd751a"],"ImageBlurHashes":{"Backdrop":{"f9c11342a62f37df3c3e33417ebd751a":"WRIEkpF2Fgm*9a~W9bMwE0?FRiIqJCI@I8xBbvT1?wogi_t7nht7"},"Primary":{"2d0136625024a45d8ee6319d12974fee":"dMF~5PpJ0KQ,9GV?%M%M0c$LwbOs-jNeV[adn--o%gIo"},"Art":{"accf115bf2578a9c3a469023467cec6c":"NlN0-#?w%M8_-=og~pobt7M{ofj?x]tRWBt7Rjof"},"Banner":{"999d233284658b9fbc7d0c23b0e70c61":"HWFr0N0|jJxwWm,-9]xFRj_3WUOtWrwasoNenNWU"},"Disc":{"2f57732c768444e8b92375ac358a5bd5":"edJQ[^NZ?uV@pJskRjbws:e-*0WB-:t7r?nOs:WYR*jsk=oLs8WVM{"},"Logo":{"9760d934f355a4f9278b0425d4c90723":"OQJ*uiwt?vXA?vS*_2-4#POZS7waOaahO_nhwGs+fOn$ob"},"Thumb":{"0170f9fad79866687f4450f6d8c3b463":"NQELjipJ0#skMuNJE4nPR#o}%1RiNEIoVri^xvog"}},"LocationType":"FileSystem","MediaType":"Video"},"dd30f44905d8c8237a6b1ff4bbb8cffd":{"Name":"X-Men","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dd30f44905d8c8237a6b1ff4bbb8cffd","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2000-07-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":62655090688,"ProductionYear":2000,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"36657"},"VideoType":"VideoFile","ImageTags":{"Primary":"52376c1f2e1f722e3dadf4ab5cb28f59","Art":"4a9afc2e6e04aa487994cb9d8037ca99","Banner":"ce04eb4a56981262bc364439e6b0cbc1","Disc":"decf03ff9eb6511a0415441eaebb043a","Logo":"564e4d65eb39a08ac72c1772bd223843","Thumb":"e3224c258c08cfc3b1b0b9ecf29ffe72"},"BackdropImageTags":["5c9b22e43d4dced8c74fd5709e8823d1"],"ImageBlurHashes":{"Backdrop":{"5c9b22e43d4dced8c74fd5709e8823d1":"WJAAj$f,kDt7tSR:j]a#x]t7WEfS4TadIUWCt5j;IUWBRPNHj=ob"},"Primary":{"52376c1f2e1f722e3dadf4ab5cb28f59":"dSCjz@o#RjtS?^kCtRbb.9t7ozkC%#aybGtRtRRQt7t7"},"Art":{"4a9afc2e6e04aa487994cb9d8037ca99":"N,Nm.%00D%of%M%M-;M{Rjj[ofkCIUt7ofazWBWB"},"Banner":{"ce04eb4a56981262bc364439e6b0cbc1":"HIB:y-%1MxS%4;9bE2?b^*~qoJRjo#M|NHNH%Mxu"},"Disc":{"decf03ff9eb6511a0415441eaebb043a":"eWKdus+?.89$--%1ogR*RjjF_MS%%Mn~V_RRnhtRWXR*%eNdRkxBM|"},"Logo":{"564e4d65eb39a08ac72c1772bd223843":"OxPs*Jj[f6ofj[j[j?xufQayj[fQfQfQ~qj[j[ayayj[a}"},"Thumb":{"e3224c258c08cfc3b1b0b9ecf29ffe72":"NJB45kx]0KNH-O$y%NtRRjRPadRPtmozt7j[IURj"}},"LocationType":"FileSystem","MediaType":"Video"},"dd7f7c65877d7dbb0f4c73900cfc7917":{"Name":"My Neighbors the Yamadas","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dd7f7c65877d7dbb0f4c73900cfc7917","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1999-07-16T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":62329180160,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"16198"},"VideoType":"VideoFile","ImageTags":{"Primary":"ce7fbce7fc1cafd10c73ede96565cbc4"},"BackdropImageTags":["501c85d84dbbd2174ecca62d6eddab80"],"ImageBlurHashes":{"Backdrop":{"501c85d84dbbd2174ecca62d6eddab80":"WZIF-{?wNf%ft7S%_NkXM|oyoyWrNLaxt5a#oet6b{t7xtS5WCof"},"Primary":{"ce7fbce7fc1cafd10c73ede96565cbc4":"dQP%bI~ppI_45=WBV@R+PCSiaKjr?co#t8t7OYjsaKkW"}},"LocationType":"FileSystem","MediaType":"Video"},"dd96c534ca34d97f9a53531269e14649":{"Name":"Spider-Man: Into the Spider-Verse","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"dd96c534ca34d97f9a53531269e14649","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-12-05T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":70100156416,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"324857"},"VideoType":"VideoFile","ImageTags":{"Primary":"12ba955a0ec09a142c02434424d3f412"},"BackdropImageTags":["5be0702b3320ec2ad34097a031b7e8c0"],"ImageBlurHashes":{"Backdrop":{"5be0702b3320ec2ad34097a031b7e8c0":"W]P6D@%Lod%1oet6_LWFWBj]ayoftRRRRjR+V]od-ojZRkWWWCs."},"Primary":{"12ba955a0ec09a142c02434424d3f412":"deEgLDtRyEx_8^V@e-Rj8^aeM_RP%fofn~s:oyj]ofj?"}},"LocationType":"FileSystem","MediaType":"Video"},"ddd20116a58df5eaaff2a537d9776688":{"Name":"Primer","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ddd20116a58df5eaaff2a537d9776688","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-06-01T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":46417211392,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"14337"},"VideoType":"VideoFile","ImageTags":{"Primary":"cdd180d053bedf28c960af4d28d6b37b"},"BackdropImageTags":["c051eaf7e9f69e401f0f25fe6f8f7d7a"],"ImageBlurHashes":{"Backdrop":{"c051eaf7e9f69e401f0f25fe6f8f7d7a":"WFBE+*VX0gVEs;D6E2Ha?[MfX9x@HtVa.6NaWo%|.RMzM_x[wONt"},"Primary":{"cdd180d053bedf28c960af4d28d6b37b":"dRBWl6of9GWC9Gj[xuWB4oWB%2t6~payM_t7Myt7t7Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"df628b7b4fb2c855476c83358bc54998":{"Name":"Master and Commander: The Far Side of the World","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"df628b7b4fb2c855476c83358bc54998","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2003-11-13T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":83007782912,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8619"},"VideoType":"VideoFile","ImageTags":{"Primary":"a5e9183288e54807e6d4b396f5cf429d"},"BackdropImageTags":["30cb617dee15ec1bf14a0cbf11d15e1f"],"ImageBlurHashes":{"Backdrop":{"30cb617dee15ec1bf14a0cbf11d15e1f":"WMC?=*~qROaL%2?HRPZ~s7xZxa%28^R.WARkf,WCx]o~R-RjM{M|"},"Primary":{"a5e9183288e54807e6d4b396f5cf429d":"dHAAp}.85T9bwHslIoEMHqaJoIWB%#t8a$n$SiRjn%of"}},"LocationType":"FileSystem","MediaType":"Video"},"e069eb67c359e37d930bd78e6a7ecb55":{"Name":"The NeverEnding Story","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e069eb67c359e37d930bd78e6a7ecb55","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1984-04-04T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":56589979648,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"34584"},"VideoType":"VideoFile","ImageTags":{"Primary":"722aacb0b44ce3b321581c27d9f8a893"},"BackdropImageTags":["97b52e1bea85f7ee964f9a087ae2b057"],"ImageBlurHashes":{"Backdrop":{"97b52e1bea85f7ee964f9a087ae2b057":"WTD9I?RiIU?HNGj[W?NGayxuRkWB0KbHxuIUoJayRjxZaeM{t7s:"},"Primary":{"722aacb0b44ce3b321581c27d9f8a893":"dI9kEE%L02D,%ft6M{M|McjFtlg2xuofXAbcD,W?%0sl"}},"LocationType":"FileSystem","MediaType":"Video"},"e133b49780ee1f5ee23a28cc81b66d22":{"Name":"The Trixxer","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e133b49780ee1f5ee23a28cc81b66d22","Container":"mkv,webm","PremiereDate":"2004-05-18T22:00:00.0000000Z","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":51305811968,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"7281"},"VideoType":"VideoFile","ImageTags":{"Primary":"1c5e1eaaf0bbaf82f1eb17fd4f09384a"},"BackdropImageTags":["6c3c0b342446dab88c14c0b4bbbfa8fa","ca335e554641667752985ac3aac8de80"],"ImageBlurHashes":{"Backdrop":{"6c3c0b342446dab88c14c0b4bbbfa8fa":"WZQm3SIoS2?b?b~q_2RPoLx]t7t7?b%Mt7X8MyWB~Wx]kWM{Rkof","ca335e554641667752985ac3aac8de80":"WKD+uRD*0L?aR*X9M{%M-pIVNGWCbHWAt6S5tRxa-:M|M{xuxut6"},"Primary":{"1c5e1eaaf0bbaf82f1eb17fd4f09384a":"deQJWN-;_3_3x[jZt7t8_3%MIURj~qt7M{jFtlM{RPkC"}},"LocationType":"FileSystem","MediaType":"Video"},"e355f959912af37a6ea2ec2a3d9ed9a8":{"Name":"Mission: Impossible - Rogue Nation","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e355f959912af37a6ea2ec2a3d9ed9a8","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-07-22T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":78937923584,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"177677"},"VideoType":"VideoFile","ImageTags":{"Primary":"5976aee8f6b25f994e55374bf5a52564"},"BackdropImageTags":["19544ad94cf420d99cf3526233a1172c"],"ImageBlurHashes":{"Backdrop":{"19544ad94cf420d99cf3526233a1172c":"WpOWmN_N?vVtX9-;%NShS$M{t7ozJDNHS2V?M{tSkso#ogjYWAWr"},"Primary":{"5976aee8f6b25f994e55374bf5a52564":"dYOC~e?a_N~pR6Di%g%MX.Di$%%Nx]j?aJxuo$R*jFw^"}},"LocationType":"FileSystem","MediaType":"Video"},"e3d76fe415b7cabaed031f9570fec046":{"Name":"Alice Through the Looking Glass","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e3d76fe415b7cabaed031f9570fec046","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-05-24T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":67779518464,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"241259"},"VideoType":"VideoFile","ImageTags":{"Primary":"12ff67bfd02c68cd883bef9811ec9219","Art":"d1e6c487e2558a097121cc89f09fc72a","Banner":"1e6cb5584ef9f7b59f07d981d408c370","Disc":"fac0684b3954b3435c536ab035009e39","Logo":"cb028057871e22dfc3d42167d1f0d727","Thumb":"372d3f9a74c3877816213368600b08c8"},"BackdropImageTags":["0aa8d091b77745623f85eabee0009bd9"],"ImageBlurHashes":{"Backdrop":{"0aa8d091b77745623f85eabee0009bd9":"WUHKtf9t9GxaOX-p~Vxs9aNGx]tQgMxtIURjxuWV%MR-ROV@t8a~"},"Primary":{"12ff67bfd02c68cd883bef9811ec9219":"d;K2t;xuozx]_NozkCozM|j[adaeShayWBaybvfQofa}"},"Art":{"d1e6c487e2558a097121cc89f09fc72a":"NYJ7]%o}DiM|?ckW=|Ion*t7WBW;~q.8ofRiWAkD"},"Banner":{"1e6cb5584ef9f7b59f07d981d408c370":"HgIzxb5p0g=xx9%OIWVr%L^,EkIqxZjETKM}Rit6"},"Disc":{"fac0684b3954b3435c536ab035009e39":"eNJaK4=z?^InX5=yrrj[S#Na%$R%_3tRR*EfOXxZV@g3?vX5Mxi_Vt"},"Logo":{"cb028057871e22dfc3d42167d1f0d727":"O~OzJSof~qofIUofM{t7ayayofj[aeayt8fQRjazofj@j["},"Thumb":{"372d3f9a74c3877816213368600b08c8":"NWG@_IELD*jcK4xv~VxZ9aRjtRoztRxaD*WAxuWX"}},"LocationType":"FileSystem","MediaType":"Video"},"e4578cc3829ab75fe379d68c98341edf":{"Name":"The Imaginarium of Doctor Parnassus","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e4578cc3829ab75fe379d68c98341edf","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-09-30T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":73523830784,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8054"},"VideoType":"VideoFile","ImageTags":{"Primary":"eb62fa3e123927f9135071eb5ca499f9","Art":"70ba95d8b88196e7cddb5b7a4539c463","Banner":"b6f8440ddad4b1d594ac8a3fc1f6448e","Disc":"966609c5afb8939fc6b1b6c6fc844b1b","Logo":"6d9dd0e2a8a4d98b9cf40f5638244245","Thumb":"2c8dfbd07faca5b6f0d0af9c41f7c3fd"},"BackdropImageTags":["e52f37b77f1279195006ebdc6b4e02d4"],"ImageBlurHashes":{"Backdrop":{"e52f37b77f1279195006ebdc6b4e02d4":"WIGawY9aZM}rkr~B=rRk-:ofIVNHr:ogT0ayxrIp=_NdM|V[ShR*"},"Primary":{"eb62fa3e123927f9135071eb5ca499f9":"dPI}kh?H0K-;_2V@NGxt4oWB%MWBxtt7WEWCIoRkaeax"},"Art":{"70ba95d8b88196e7cddb5b7a4539c463":"NXIEnb00%MI8t7%g%M9F?bRlkCRkMxxuNHNIs,oI"},"Banner":{"b6f8440ddad4b1d594ac8a3fc1f6448e":"H,LEH3j;RiRkRj?bR,ayod~paxt7RjWC%MRjofof"},"Disc":{"966609c5afb8939fc6b1b6c6fc844b1b":"eNG]zItR-pV@$yxbMeaKtRoc=|Vs~VtRXSt+x]smX9bI^+kDM{WBE2"},"Logo":{"6d9dd0e2a8a4d98b9cf40f5638244245":"OCH.G.og%Nj=oiWAM}~qayxuWAWBWBt7WFj[xujst7azt8"},"Thumb":{"2c8dfbd07faca5b6f0d0af9c41f7c3fd":"NIF5Z=EQ0N.6$y-nD*S$xYxWS5D*9GV?RjRkofM|"}},"LocationType":"FileSystem","MediaType":"Video"},"e470eef66e5bf073ff8614208381eaaf":{"Name":"The Hunger Games: Catching Fire","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e470eef66e5bf073ff8614208381eaaf","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-11-14T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":87746347008,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"101299"},"VideoType":"VideoFile","ImageTags":{"Primary":"c7f5094fbecc08f79711e50f21cc462e","Art":"ebc44bc030d4dd52bf86d69773847817","Banner":"0d7828a8e0e52d57bc76cbae976e51d4","Disc":"78ce4c8fd0b5104a614c8e6916365041","Logo":"7c2cd488718125dd22017fbfd80c8065","Thumb":"b7d0448b6c2be46abbbd05adbb2142b8"},"BackdropImageTags":["b0fc147dba04b9f90422fe51823d142f"],"ImageBlurHashes":{"Backdrop":{"b0fc147dba04b9f90422fe51823d142f":"W77wKL~BEhI;XSNe-6oJR.NG9tE2EMIpe:$%s:NHbwtQxZ%1-o-o"},"Primary":{"c7f5094fbecc08f79711e50f21cc462e":"dCEAr}%2M|}Y-:S~AZEg5mJ-KOsA=eso-A=_FwniR*OX"},"Art":{"ebc44bc030d4dd52bf86d69773847817":"NDLp4|ROLgrM^+.7C8I9v}9[WsnN9+9tD+xG$%bu"},"Banner":{"0d7828a8e0e52d57bc76cbae976e51d4":"HC9$UZKJ,H5U59xGWU-9%0}rf~nlEjENw{Se$goy"},"Disc":{"78ce4c8fd0b5104a614c8e6916365041":"ecH-#?s.?vR*-;SzjZxZWBRk~qRj%hofR*SOWVn$s:s:-;jZNGa#M_"},"Logo":{"7c2cd488718125dd22017fbfd80c8065":"O*OpSwj[?wofMwj[bct7a|ofoLj[Wqj[%hfk%Mj]MxbHWV"},"Thumb":{"b7d0448b6c2be46abbbd05adbb2142b8":"NXLo1$00=z=d9Z%3?bInNaOrNFofVsxui^S#XSaK"}},"LocationType":"FileSystem","MediaType":"Video"},"e4818ad3bb4436536c26b55fec7e7ee2":{"Name":"The Tale of The Princess Kaguya","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e4818ad3bb4436536c26b55fec7e7ee2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-11-22T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":82334081024,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"149871"},"VideoType":"VideoFile","ImageTags":{"Primary":"e2975660e5da46ecf6c807411b1d40aa","Banner":"8c000c95bfff2d884b0c9dc3eb425192","Disc":"9e9555a39396e6475df4cb09ed29e7ac","Logo":"ff0514307d5cf762393d469114b377e2","Thumb":"f94234c803b4594ad026dd4488eccb41"},"BackdropImageTags":["73df02543a69370ef3b1c267a98bcb14"],"ImageBlurHashes":{"Backdrop":{"73df02543a69370ef3b1c267a98bcb14":"WNQ]i_^+4.%1E7?akrRj4:EMInbI0LkD9bI;tRXT?bxuELj^xbxW"},"Primary":{"e2975660e5da46ecf6c807411b1d40aa":"dhR37$tRXQ?I?]-q%2t7IANFX5WB%fayjHn+-;xujZkC"},"Banner":{"8c000c95bfff2d884b0c9dc3eb425192":"HsL5EnxYn-x]kD-;xtt7xu~WoJoNs;a~xuoways;"},"Disc":{"9e9555a39396e6475df4cb09ed29e7ac":"eSKeg7Ib^}xt-hItWB%0j[fm~R$_s*RnR.R;fRs%j[Rj~MItIus+Is"},"Logo":{"ff0514307d5cf762393d469114b377e2":"O22PJWofDNaeaeWBtSV@aykCfkj[j[j[kCfRfQfQWBayof"},"Thumb":{"f94234c803b4594ad026dd4488eccb41":"NIJ8|T-;NHtR?uInug%Mi{jvtkM|4,IoWERQRjt8"}},"LocationType":"FileSystem","MediaType":"Video"},"e495f702d248261e4836ad07f9405821":{"Name":"Murder on the Orient Express","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e495f702d248261e4836ad07f9405821","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-11-02T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":68359680000,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"392044"},"VideoType":"VideoFile","ImageTags":{"Primary":"6a64f5459daa392e12e18723006718a9","Art":"7ce7d885bda595a996668b620bcbec4f","Banner":"8e9486e52a6c9e5ee02febc7346658ce","Disc":"86a2457c959b8b97b81f3cfa375fc5f5","Logo":"fd4171fb10db206c96d3d815e730abfd","Thumb":"0f220fe65e5d729781c5dc64edf820d6"},"BackdropImageTags":["b7ed95ecd41c3e6604947813e591e323"],"ImageBlurHashes":{"Backdrop":{"b7ed95ecd41c3e6604947813e591e323":"WNA13F=|$gsn%2$h?v%2xZs:xZsmD$Rkt7s:adWV00E2SOkCRjSh"},"Primary":{"6a64f5459daa392e12e18723006718a9":"N67Af6T21IM_nN$$=#kDJ8Riadsl0cnz-BjZS1WB"},"Art":{"7ce7d885bda595a996668b620bcbec4f":"N.Mi1*}ZMxo~axnO+^H?IU%MofV@tlXSt7oLM{of"},"Banner":{"8e9486e52a6c9e5ee02febc7346658ce":"HD8gEgS*5QM{$$xYNGogNI~DSiEMRjxGt6R*ofWC"},"Disc":{"86a2457c959b8b97b81f3cfa375fc5f5":"eUFrq}NG?aWD^+aIofxuf+af_NjG?coLE1t7ofS1jYof?abHV@kBIo"},"Logo":{"fd4171fb10db206c96d3d815e730abfd":"O~7q4_fkQkf6adayp0j]fQf6fQf6f7j[aKfjkCf7j[fjaf"},"Thumb":{"0f220fe65e5d729781c5dc64edf820d6":"N67Af6T21IM_nN$$=#kDJ8Riadsl0cnz-BjZS1WB"}},"LocationType":"FileSystem","MediaType":"Video"},"e4bc3a7b00307c7413432e104299dfa4":{"Name":"Star Wars: Episode III - Revenge of the Sith","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e4bc3a7b00307c7413432e104299dfa4","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2005-05-16T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":84058873856,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1895"},"VideoType":"VideoFile","ImageTags":{"Primary":"0ff1c53c3656c68dce63cadfea4f6d31","Art":"42168044b2039d260a67b5db91a13634","Banner":"730ae1f4e6dd914517722e9bf0c22e2d","Disc":"8062ba5b9e4692d85e8629a549cc9ff1","Logo":"0085734a145100dc7808152fc7e550ac","Thumb":"8fc31960bcf0b1add0f49f83f5505c6f"},"BackdropImageTags":["8062ba5b9e4692d85e8629a549cc9ff1"],"ImageBlurHashes":{"Backdrop":{"8062ba5b9e4692d85e8629a549cc9ff1":"W76Gh~AC5k}tS2IoNa$PS#Ez;hOXMxkW%2M{Jl=yS~WBv~t7JkV@"},"Primary":{"0ff1c53c3656c68dce63cadfea4f6d31":"dNCO?-kV9ZNHs:NbniR*0dWC%NofVssoXSofk?WoeSsT"},"Art":{"42168044b2039d260a67b5db91a13634":"NWJR1=~o-:WAWBRk-mIUj[NHRkRj-mV@IWRQkCt6"},"Banner":{"730ae1f4e6dd914517722e9bf0c22e2d":"HHA]T-KNSK}]9tRP-qi^E2^jtlkX-ANdNb$MNbM|"},"Disc":{"8062ba5b9e4692d85e8629a549cc9ff1":"ecH-*{Na_4WB%goLf7kBayWB_NjF%hofn$kCWCn%oeoex^k9Rja#M_"},"Logo":{"0085734a145100dc7808152fc7e550ac":"O.L4g3WVofoft7ofofxuWBayj[j[ayay~qWCayfQWBfQWB"},"Thumb":{"8fc31960bcf0b1add0f49f83f5505c6f":"NH9$@256Io~B9tf9Nas:xZI:n*t69a%2xuE1xbt7"}},"LocationType":"FileSystem","MediaType":"Video"},"e4e4dd29f8bbc300d2e08840764c8822":{"Name":"Waterworld","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e4e4dd29f8bbc300d2e08840764c8822","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1995-07-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":81114882048,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9804"},"VideoType":"VideoFile","ImageTags":{"Primary":"7797d6cbdce937e6817af32201f05169","Art":"a04cb240af845058175aab1c1ed88466","Banner":"1ae287f7feaf7374164072e9fef4735e","Disc":"d5f2664fd775afe8f9400a5c1e38a10d","Logo":"5a9816da944d76678f191a8e14459007","Thumb":"6b386ab60857b3f70ccb4722c0fd5e2e"},"BackdropImageTags":["8b97e4fab7a74a434b0d6ed1a8a535d4"],"ImageBlurHashes":{"Backdrop":{"8b97e4fab7a74a434b0d6ed1a8a535d4":"Wq7Vpho#X=XBjCbeVaaxROjXt2jYs$e.auWAn,aet7ofX9kBoMa$"},"Primary":{"7797d6cbdce937e6817af32201f05169":"dfCkAENMtnx_MyoJXAWF8^t5IAMx%$W?aIs:i]aetQoe"},"Art":{"a04cb240af845058175aab1c1ed88466":"N[KnSZt7_NR*-;oexVjZWXbHofofbcazWBoLa{ay"},"Banner":{"1ae287f7feaf7374164072e9fef4735e":"HvFiotxDMcRO-pxuM{bcW?_NjFM_RjxuxtRjbcWq"},"Disc":{"d5f2664fd775afe8f9400a5c1e38a10d":"eOF%T3tR_NRj=-qdRkT2j;x+~SaK^Ft2N3%uofteafRD?8bbN4bINh"},"Logo":{"5a9816da944d76678f191a8e14459007":"OyQco9j]j[ofj]ofj[ogfQfQfQfQfQj[~nj@ayjsaxfPay"},"Thumb":{"6b386ab60857b3f70ccb4722c0fd5e2e":"Nl8O[wkXTObxoFW[Q:j?VracoaoIs$aeabacoNWB"}},"LocationType":"FileSystem","MediaType":"Video"},"e534f9ab925c615db0f252ac2a6059f0":{"Name":"Ghost in the Shell: S.A.C. 2nd GIG \u2013 Individual Eleven","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e534f9ab925c615db0f252ac2a6059f0","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2006-01-26T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.6,"RunTimeTicks":96931848192,"ProductionYear":2006,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"111224"},"VideoType":"VideoFile","ImageTags":{"Primary":"6e6317d2cfb002b135f702f55ebee721"},"BackdropImageTags":["0ca06e2f1bca67363e2d909612aecc1b"],"ImageBlurHashes":{"Backdrop":{"0ca06e2f1bca67363e2d909612aecc1b":"W67UVibyD%g5Mw?b-pkDRlROj]t28^oGxujbRiITRjWCxtxsRlNL"},"Primary":{"6e6317d2cfb002b135f702f55ebee721":"dOIM+,-V8wv~r?WBRjaeiIV@tlt7QnV@%gt7SgWBWBkC"}},"LocationType":"FileSystem","MediaType":"Video"},"e54211845645ffa27c477e0458491d62":{"Name":"Sherlock Holmes: A Game of Shadows","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e54211845645ffa27c477e0458491d62","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-11-21T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":77247578112,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"58574"},"VideoType":"VideoFile","ImageTags":{"Primary":"b85d87991411829b3c63b62f5a7a0d7f","Art":"2a5911af00d1e813631ac36bb62271f9","Banner":"10b1ff462de6cf7fc929438f912b1faa","Disc":"baf6466f0156901edd8b4e6aa53f4c4b","Logo":"7dd3c693f8346e14dba2d697d79e3c3f","Thumb":"24aa029484499ad6ac6a6c322b10f264"},"BackdropImageTags":["1ab68bbdc015a625949976f8efd2905c"],"ImageBlurHashes":{"Backdrop":{"1ab68bbdc015a625949976f8efd2905c":"WdEC,*s.8^oLS%bI?bs:ROo0S$WWD$of%Maej]a#IooJt7WBofkC"},"Primary":{"b85d87991411829b3c63b62f5a7a0d7f":"dMCt61_4t7?vDhxu%MV@o#WYITIAtSR*ayWBV@flWBV@"},"Art":{"2a5911af00d1e813631ac36bb62271f9":"N65rA6WVDixuxuM{t7V@IUj[t8a#4Toz.8RiRPt7"},"Banner":{"10b1ff462de6cf7fc929438f912b1faa":"HM9u1@Oas8V?9G%gIAxYMx?wE1t6s,D$xuM{%Noz"},"Disc":{"baf6466f0156901edd8b4e6aa53f4c4b":"eTH.H9s._4Rj-;%Lf6RkWBof?wRj^+t7jYNGWCs:t6Rk^+WVRjWBD*"},"Logo":{"7dd3c693f8346e14dba2d697d79e3c3f":"OcIFJHWB~qxu_3t7_3%MkCaeayaej[ayoKoffkWBfkj[WC"},"Thumb":{"24aa029484499ad6ac6a6c322b10f264":"NK9kaHMHb{adMxt7tnVrRjjYt6ROI@baROWFxWV?"}},"LocationType":"FileSystem","MediaType":"Video"},"e552eb8b791c78618678b4b178f2e12a":{"Name":"Cube","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e552eb8b791c78618678b4b178f2e12a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1997-09-08T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":54171291648,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"431"},"VideoType":"VideoFile","ImageTags":{"Primary":"b19eb83e01ed803beefe10c8c54ebd59","Art":"ec6996582fc8e27625fdaa35fb313d95","Banner":"ec6996582fc8e27625fdaa35fb313d95","Disc":"17f8c8ab969d51ddb955b964db3788c6","Logo":"1f015defb22cbaa960cfa810cefa27b1","Thumb":"dbc659ea619c29b994d35c325ef7adbf"},"BackdropImageTags":["aed479746f4a81dee9141e0d833feaaf"],"ImageBlurHashes":{"Backdrop":{"aed479746f4a81dee9141e0d833feaaf":"WGBpz-%M8^j]00IU%gt7Rjj[j?Rj4nRjofs.?ctRWYofoeRjRkog"},"Primary":{"b19eb83e01ed803beefe10c8c54ebd59":"dZEe79%1s:%1-VoLs:s:0zNaR*NH9aWCNHNGRjaysmn$"},"Art":{"ec6996582fc8e27625fdaa35fb313d95":"NfKn;~t7~pxa-ot7E4j[jrayt6ay%2ayRPofxuWB"},"Banner":{"ec6996582fc8e27625fdaa35fb313d95":"HWF4vF0zR+-oIVX8%2$*5R}tEgW;xGNGt7oLofSh"},"Disc":{"17f8c8ab969d51ddb955b964db3788c6":"eZIXBXofIpfkIo-ojtt7f6Rj0eWBIoj]xaIUayIpWW-pIoj[xGWBWC"},"Logo":{"1f015defb22cbaa960cfa810cefa27b1":"OoP?]zofayt6t7ofofxuazj@j[ayayay~qj[j[azWBj[WB"},"Thumb":{"dbc659ea619c29b994d35c325ef7adbf":"NTDura57Io%2jskC-pNGaef+oLj[0e$*t6jZWCa#"}},"LocationType":"FileSystem","MediaType":"Video"},"e56465a82a32b809bd9a1f3a7db2b25c":{"Name":"Mad Max","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e56465a82a32b809bd9a1f3a7db2b25c","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1979-04-11T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":55919259648,"ProductionYear":1979,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"9659"},"VideoType":"VideoFile","ImageTags":{"Primary":"271372cd283965683cefaa1db0e0642e"},"BackdropImageTags":["0443efa0e2990e0ecc3e909fb5723d85"],"ImageBlurHashes":{"Backdrop":{"0443efa0e2990e0ecc3e909fb5723d85":"W_Jks2xuV@t7WCog.AogWBbIj[kC%hRlR+j[j?s:xvjYbHofjsaz"},"Primary":{"271372cd283965683cefaa1db0e0642e":"dvKdPYt5xV?G_NogoMozkYkDNaRkxbfkIoRjxts.i^V@"}},"LocationType":"FileSystem","MediaType":"Video"},"e62977c833f3377101e31263c2cbd905":{"Name":"The Wandering Earth","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e62977c833f3377101e31263c2cbd905","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-02-04T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":75070078976,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"535167"},"VideoType":"VideoFile","ImageTags":{"Primary":"73fd09a392035410066526eba90ee9f9"},"BackdropImageTags":["ff2893baf65af08f0983c74db06045b8"],"ImageBlurHashes":{"Backdrop":{"ff2893baf65af08f0983c74db06045b8":"NpIrQy~q-p%gxtt6ofxvRjkBbIWBRjR*tRRjWBjF"},"Primary":{"73fd09a392035410066526eba90ee9f9":"dMFP84EmIAIpI;s8D%e-4T-TRjofa0Nd%2ogI[WXt7oJ"}},"LocationType":"FileSystem","MediaType":"Video"},"e640859c97977ca1cc043aa680c6066d":{"Name":"Pitch Black","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e640859c97977ca1cc043aa680c6066d","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2000-02-17T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":67152211968,"ProductionYear":2000,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2787"},"VideoType":"VideoFile","ImageTags":{"Primary":"16b76072866a6f7a98a6a2db944191e4","Art":"fab0d3e17a20af10b57af705356b8878","Banner":"f7f6f1b391294df9480f1f177204dd46","Disc":"38feb9b1addf50c2cdea7c8fff568b61","Logo":"16b76072866a6f7a98a6a2db944191e4","Thumb":"5b08ab0a658d51d2d7a6bece122ac0b0"},"BackdropImageTags":["38feb9b1addf50c2cdea7c8fff568b61"],"ImageBlurHashes":{"Backdrop":{"38feb9b1addf50c2cdea7c8fff568b61":"WG97;SbIDNozWExuVXt7D*IU-;ay%MWUkDofV@t8Rlayxts:M{jY"},"Primary":{"16b76072866a6f7a98a6a2db944191e4":"dGBg*y.88^yD_3xatl%gHqnh-;xa-;xuQ,i^$y%NpJNG"},"Art":{"fab0d3e17a20af10b57af705356b8878":"N=KdrP_N-;WVM{ad%Moft7RjRjfkofRjozofbHj["},"Banner":{"f7f6f1b391294df9480f1f177204dd46":"HA7^}W~q?b-;WBD%004n4n~q-;%M%MayIU9F9F9F"},"Disc":{"38feb9b1addf50c2cdea7c8fff568b61":"eDB45k?^0eDi#,-o%fo}IUMxD%icvzbbIUD*IUV@t7tRIVIoM{t7%f"},"Logo":{"16b76072866a6f7a98a6a2db944191e4":"O+OgNXofayofaxofayoft7j[fPfQfQfQ~qfQj]fQj[ayfQ"},"Thumb":{"5b08ab0a658d51d2d7a6bece122ac0b0":"N77^}W_3WBIU4nWBof-;fQIUxut700IUM{WB?b-;"}},"LocationType":"FileSystem","MediaType":"Video"},"e665d8e334d15f2601ff1a2599bd75d9":{"Name":"Ghost in the Shell 2: Innocence","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e665d8e334d15f2601ff1a2599bd75d9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-03-05T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":59944890368,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12140"},"VideoType":"VideoFile","ImageTags":{"Primary":"389c91c74b694769b3d4abdb05d17e83","Art":"d8dc6b0586c260c0ff2ab5d17e1834c2","Banner":"cbe7224edd44628135c03f1a3cee57a3","Disc":"a0b271f9b132c2e3625b2aab6a69ec87","Logo":"d48523141e16e921367250c7f3757859","Thumb":"7d055c8102eedb4ac95dd07bc0e49b70"},"BackdropImageTags":["10cad8bf978e239ae2aa70bd05aa19c2"],"ImageBlurHashes":{"Backdrop":{"10cad8bf978e239ae2aa70bd05aa19c2":"WvP%Fg-=-;?vozn$~qt6ofM{IUt7tRaeV@V[aexu?bayj]t7ofof"},"Primary":{"389c91c74b694769b3d4abdb05d17e83":"dWO:^a~q_3~qIUt7tRR*xuxuRkRj~qM{%Mt7~qM{ayt8"},"Art":{"d8dc6b0586c260c0ff2ab5d17e1834c2":"NA7m{X8^xv-;4T~qIntRjsRjxuM{EyOXsoR*bbf6"},"Banner":{"cbe7224edd44628135c03f1a3cee57a3":"H;ODa:-;tRt7-;WBof%2RQ~Wt7kVM{n%aya|s:Rj"},"Disc":{"a0b271f9b132c2e3625b2aab6a69ec87":"eQH-78$%TLShTd~9WVIuoMoyyrt7bxkDi^OBo2b0S4xYOskWv~s:nN"},"Logo":{"d48523141e16e921367250c7f3757859":"OKCsjjxuD%t7IURjxu?bofxut7RjWBj[00WBxuWBt7j[WB"},"Thumb":{"7d055c8102eedb4ac95dd07bc0e49b70":"NnPj46~qx]WBxu-;?b-;RPWAt7WBx]kDjZj[ozWB"}},"LocationType":"FileSystem","MediaType":"Video"},"e6bcde4924b3ca6e3fdd9a8eff0116e5":{"Name":"Airplane II: The Sequel","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e6bcde4924b3ca6e3fdd9a8eff0116e5","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1982-12-09T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":50545491968,"ProductionYear":1982,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2665"},"VideoType":"VideoFile","ImageTags":{"Primary":"68f7c79a57173c0bc96f5d877af5896d"},"BackdropImageTags":["b0a1024c0ebeaf948fbf5b72016b80af"],"ImageBlurHashes":{"Backdrop":{"b0a1024c0ebeaf948fbf5b72016b80af":"WLG[~4.8E2WYT0-._N.7.9%fx]xZE1.7?u-:tlRk.8%Lxt%MWBM{"},"Primary":{"68f7c79a57173c0bc96f5d877af5896d":"dNIrU6^+BE.A*zwbXmI=HYeoS$NG^%xCt6x]Fhnhr;OG"}},"LocationType":"FileSystem","MediaType":"Video"},"e887fc5d5c834dfb2cdfcbbc755640a2":{"Name":"Charlie and the Chocolate Factory","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e887fc5d5c834dfb2cdfcbbc755640a2","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-07-12T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7,"RunTimeTicks":69259198464,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"118"},"VideoType":"VideoFile","ImageTags":{"Primary":"18f43398dcbded285199f9362fd85d1b","Art":"285ddefc1a1227f0b7365650341ca0b6","Banner":"bf83144fee35a8e591ac4cc483ba4aaa","Disc":"40d28e81d4d184c7e7b4d1aa8fa10deb","Logo":"1ff9da9990e70aca99229a178ec0cd8c","Thumb":"84286c6c267eedde8e2752f3f35ee73a"},"BackdropImageTags":["aec539555fa190790a5faf73c89f44c6"],"ImageBlurHashes":{"Backdrop":{"aec539555fa190790a5faf73c89f44c6":"W8AKc%5Evz#6Q;y.}*IVxutRa7J6H]z[yTt7M$$|uLmbOl-#9a?F"},"Primary":{"18f43398dcbded285199f9362fd85d1b":"dhGaqot7-C-p^-s:$+xbKlj]JBNxPCbbACN]X-ofodWU"},"Art":{"285ddefc1a1227f0b7365650341ca0b6":"NWHCGumSIAtP^,-:.TQ,DiIUxus:M~X3s.WFs*W="},"Banner":{"bf83144fee35a8e591ac4cc483ba4aaa":"HbGSG|=:xBo$NLcbpLs;Vr^-$_xBWZN|S*XUbwaw"},"Disc":{"40d28e81d4d184c7e7b4d1aa8fa10deb":"ePI=GYEL~p%2x]xsoy-BNaNa?waM%hxaIUWHn+I:xFs:x]xYoKNGwJ"},"Logo":{"1ff9da9990e70aca99229a178ec0cd8c":"O|M8j0fj~Dof%0ofI:t9a#nzj?Nda#ofxtfPRkfQWXfkoK"},"Thumb":{"84286c6c267eedde8e2752f3f35ee73a":"NKDSab#mIB-.$*x[[ttPRja1n}oL00NfWBMxEMi_"}},"LocationType":"FileSystem","MediaType":"Video"},"e90307e00010dc4d859e936d9ebd3c56":{"Name":"Mardock Scramble: The Third Exhaust","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e90307e00010dc4d859e936d9ebd3c56","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2012-09-28T22:00:00.0000000Z","OfficialRating":"NC-17","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":41360338944,"ProductionYear":2012,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"122662"},"VideoType":"VideoFile","ImageTags":{"Primary":"47097e719431fec75888b0a6e4a5e9bf","Art":"777cf417e4b56c6aa164a7cd3548c9a1","Banner":"3470bbfaf5a41d54c7383f34bf06e53e","Disc":"ab8d0ea206954c5d5a094cd0140a4611","Logo":"054bc833478c0e4e065b6637dd6a6d82","Thumb":"4ab0403babbfd8e4cf9acab776de04c6"},"BackdropImageTags":["ab8d0ea206954c5d5a094cd0140a4611"],"ImageBlurHashes":{"Backdrop":{"ab8d0ea206954c5d5a094cd0140a4611":"WQF=:q8^4.?vD$-;yCMwNetRniayIoaeofRQV@t7Dj%L%2D*ocog"},"Primary":{"47097e719431fec75888b0a6e4a5e9bf":"dLEy75n30Jx^wsxuXSR*rX-;tRIT^,RPNF%MxbROX8xu"},"Art":{"777cf417e4b56c6aa164a7cd3548c9a1":"N89@9cWF9Z.79F%3~X_2bEE2Rj-pNu%MRQslt7M|"},"Banner":{"3470bbfaf5a41d54c7383f34bf06e53e":"HcG9BZD#x^of4n.89Fx]ax~qRjogoJIU%MM_s;t7"},"Disc":{"ab8d0ea206954c5d5a094cd0140a4611":"eMHeqbDh?^%M%1x:Mxt8ofaM-:x^~WRjR%Mxx]n~RPoy?vxuRPaxIV"},"Logo":{"054bc833478c0e4e065b6637dd6a6d82":"O,ODnIfQ%Mayj[j[aeWBj[RjWBofayof~qofRjj[ayj[j["},"Thumb":{"4ab0403babbfd8e4cf9acab776de04c6":"NWE3MIDNyDo0VutkROIoRjocoeWC4n-;M{WBozV@"}},"LocationType":"FileSystem","MediaType":"Video"},"e9ba6ffd3b2dc39b1001de95b38c3caf":{"Name":"El Camino: A Breaking Bad Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e9ba6ffd3b2dc39b1001de95b38c3caf","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2019-10-10T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":73383682048,"ProductionYear":2019,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"559969"},"VideoType":"VideoFile","ImageTags":{"Primary":"91d17ae04a41102ad41874b67c129f73"},"BackdropImageTags":["0da6b862d7ba2ddc81ce4f816d015108"],"ImageBlurHashes":{"Backdrop":{"0da6b862d7ba2ddc81ce4f816d015108":"W87vlo1H9t}@JRvg-VNHRj%2SgnONGs:s:NGoft7nObbkCV@ays:"},"Primary":{"91d17ae04a41102ad41874b67c129f73":"deECvu^|V@t5~f-$a$t6?9xsRoWA--oeM|k9xVWAbGxt"}},"LocationType":"FileSystem","MediaType":"Video"},"e9e23d74f2915727f7c667322b0ace13":{"Name":"Back to the Future Part III","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"e9e23d74f2915727f7c667322b0ace13","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1990-05-24T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":70976643072,"ProductionYear":1990,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"196"},"VideoType":"VideoFile","ImageTags":{"Primary":"80fd8a519822e246014e68bbcfb0c346","Art":"fbd3b817b5baa52ca56289b509239caa","Banner":"09ee1122a9c2e89ff9d1b359bf87f187","Disc":"184f3f15e3052f5a34bccc528030ee24","Logo":"5f17da67c961b70394d6bd84d20690a7","Thumb":"7d4f7aab7cc938b952eee9de6b4c46e7"},"BackdropImageTags":["b31f8cf1ebb89cb6bcbc486626be7b12"],"ImageBlurHashes":{"Backdrop":{"b31f8cf1ebb89cb6bcbc486626be7b12":"WJE.CU?w0+n5EKS1NIWBWBn#rqNe58ScxAV?sDsDS$T0tRo#WBwa"},"Primary":{"80fd8a519822e246014e68bbcfb0c346":"dSFh#A?uEhnNIpNHodbbDgZ#r;XT?GxtR+NbOHkY%MxY"},"Art":{"fbd3b817b5baa52ca56289b509239caa":"NNIXETo#IqIVk9?H~pWa-oxtWFR-_3JCs:R*NGof"},"Banner":{"09ee1122a9c2e89ff9d1b359bf87f187":"HRDbf|S^VW%MGH#7IUoOXB}?g2xYxZEgs8Nwa~V["},"Disc":{"184f3f15e3052f5a34bccc528030ee24":"ebIX%Aoz?cNIx^w[NHXAs:oJ?wRi?Gs.s9ngs,WXR*axtmWFs9ofIo"},"Logo":{"5f17da67c961b70394d6bd84d20690a7":"OTI}-$wayEW?%gS%yD$x+sS$S7waS%ahO_nhr;s*j=n$s*"},"Thumb":{"7d4f7aab7cc938b952eee9de6b4c46e7":"NOELy..T5sv~R4MyE3R+k8n#i_S2M_ROVrV@tRxa"}},"LocationType":"FileSystem","MediaType":"Video"},"ea392338c834f057756d76e35d38dff6":{"Name":"London Has Fallen","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ea392338c834f057756d76e35d38dff6","Container":"mkv,webm","PremiereDate":"2016-03-01T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":59219197952,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"267860"},"VideoType":"VideoFile","ImageTags":{"Primary":"4032477c82057335fd458db1815fd740"},"BackdropImageTags":["90b78bbc6e8a64103b3e1da481a1c4b0"],"ImageBlurHashes":{"Backdrop":{"90b78bbc6e8a64103b3e1da481a1c4b0":"WGA-q@.m%~pI9EV??vpJx]o~XSxuQ-j^xao#yDbJRjs;tRxZxvS5"},"Primary":{"4032477c82057335fd458db1815fd740":"dUJQ+u-;-p?H00RQaKRP~WtRI:R*xuS1OExuEgRjS$oz"}},"LocationType":"FileSystem","MediaType":"Video"},"ea6dad9920146e8d0cdc0c866c9da3c3":{"Name":"The Day the Earth Stood Still","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ea6dad9920146e8d0cdc0c866c9da3c3","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-12-09T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.5,"RunTimeTicks":62158831616,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10200"},"VideoType":"VideoFile","ImageTags":{"Primary":"5ae234887f31021d5e1f57c81226d71e","Art":"05bd3e823f3e1b8fd643a91efed2532f","Banner":"26dca47fad38534aefb317af4c674fa0","Disc":"eab82acf66737653967ddcd6dfdf9f8a","Logo":"45aafa5e0fc4cda447072810f6591177","Thumb":"81c56886cf79fd864f87e94e28a350f2"},"BackdropImageTags":["cd46f81b5a94685dde77922ff3198a5e"],"ImageBlurHashes":{"Backdrop":{"cd46f81b5a94685dde77922ff3198a5e":"WTA-@qu6iv8wIUof%1V@tRW=WDbFH=Mdx]tRt7S1RkRjs:V?slWV"},"Primary":{"5ae234887f31021d5e1f57c81226d71e":"dT9uQntl4TM{xsj[NGWVHqVstloe%hofMwRj%gozNGS4"},"Art":{"05bd3e823f3e1b8fd643a91efed2532f":"NqJky7D%~qxut7%3?b%MRkxuWBRjt7WBRjRjWVRj"},"Banner":{"26dca47fad38534aefb317af4c674fa0":"HXE{;7_34TM{.8tRtR-;%2.8xuV@jst7oLWWf,of"},"Disc":{"eab82acf66737653967ddcd6dfdf9f8a":"ebF?OuRP_3%M%MxYRjR-t7WB_Nf6-:WBadRioft7RjoL%Mj[jYRjM{"},"Logo":{"45aafa5e0fc4cda447072810f6591177":"OUEV+:j[WBWBRjt7WBM{ayj[ofayWBj[00ayofj[ofWBj["},"Thumb":{"81c56886cf79fd864f87e94e28a350f2":"NoF$@V_N$%DiD*Iot6RjbHR*RjaeIAIUozt7xFoJ"}},"LocationType":"FileSystem","MediaType":"Video"},"eba3725aa003ecfcfc2d0a091394a4bb":{"Name":"Star Wars: Episode II - Attack of the Clones","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"eba3725aa003ecfcfc2d0a091394a4bb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2002-05-14T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":85478309888,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1894"},"VideoType":"VideoFile","ImageTags":{"Primary":"7a283aa3f6f8160eac779c0bb1f6bdbf","Art":"cad66e8fab3b3f6bf95c61acff992419","Banner":"2e59e08f74ad1850887cd2c1ef5785ee","Disc":"cd22b215eee94509e7f74df8778c36de","Logo":"b4806db7f56c23c54bddfaaa0e352642","Thumb":"ad9188f425df08a8f62beb335f6fb36a"},"BackdropImageTags":["b4806db7f56c23c54bddfaaa0e352642"],"ImageBlurHashes":{"Backdrop":{"b4806db7f56c23c54bddfaaa0e352642":"WTB3A~0g-5XAWBsms.NHxaR*WBs:IUxuWCf4W?smadkVV[bFofWE"},"Primary":{"7a283aa3f6f8160eac779c0bb1f6bdbf":"dLEe3[}?58M{}@-UNbM{I:o#xERP%0ofM|Rk9vM{n%Ne"},"Art":{"cad66e8fab3b3f6bf95c61acff992419":"NNKA.tIooNo~W+N3D%NNoft7xvt5~RtSkDWAfnxs"},"Banner":{"2e59e08f74ad1850887cd2c1ef5785ee":"HRBfOtELTK^OEgNKaIXAI9~BOEOF={NINGobRkM{"},"Disc":{"cd22b215eee94509e7f74df8778c36de":"eVI=ACbc_4ad-p%MWCWBoeay^+Ri?cj@of9FoJxtWBWVx^t5RkW=IU"},"Logo":{"b4806db7f56c23c54bddfaaa0e352642":"O$K^{TWBozoLt7ayt7x]WBayj[jtj@ay_NWVWBj[WBj[WB"},"Thumb":{"ad9188f425df08a8f62beb335f6fb36a":"NH9s9t5REj}rEMNI-USONH$%baM|n#W?Rjs:j]Rj"}},"LocationType":"FileSystem","MediaType":"Video"},"ec266d59ebdec3ffa1465a74586d7d97":{"Name":"Captain America: The First Avenger","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ec266d59ebdec3ffa1465a74586d7d97","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-07-21T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":74516168704,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1771"},"VideoType":"VideoFile","ImageTags":{"Primary":"bf7122f11603846d1284fe744e0de588","Art":"e07e93a0a144189a873230100180c6e0","Banner":"8732b04f1f25c31d36a90aac10d2d512","Disc":"1dc2c63d5772f4e11ad031aa83f334c9","Logo":"fc5b0de77f21fc25ed5d3ff4cf6ecc2c","Thumb":"df2865c22f549bffac403f3f8e3bedd1"},"BackdropImageTags":["38f2ca41a27e35d5feab6afc17a9e99a"],"ImageBlurHashes":{"Backdrop":{"38f2ca41a27e35d5feab6afc17a9e99a":"WPDk#m-nVs$LR.s:~9ofRQjFNbjZWVNHIqR-oLWB%1R+NGoL%1t6"},"Primary":{"bf7122f11603846d1284fe744e0de588":"dJGHo501?a-UyDNZ-pNH9bxtt8M{%MNHIWxt57%gR5S$"},"Art":{"e07e93a0a144189a873230100180c6e0":"NuLgw=bH_Nn%xutR?bof%MRjRjt7X8t7V[RjIUay"},"Banner":{"8732b04f1f25c31d36a90aac10d2d512":"HzJ[L[M{of-;%M%Mxu%Mof~qjst7xut7ofkCt7fQ"},"Disc":{"1dc2c63d5772f4e11ad031aa83f334c9":"eiH_.DW=%go0xuIUR*xus:j?~qV@%MofWAR%n%xaS2WXtRniadS3Rj"},"Logo":{"fc5b0de77f21fc25ed5d3ff4cf6ecc2c":"OzQJfnj[ofofofofofj[fQayj[ayfQfQ~qj[WCfkWBf6WB"},"Thumb":{"df2865c22f549bffac403f3f8e3bedd1":"NuF$U~t7xut7IUay~qt7t7ofM{j[%Mj[j[ayWBs:"}},"LocationType":"FileSystem","MediaType":"Video"},"eca68d7a6d14bba054d8114c8005d742":{"Name":"Fantastic Four: Rise of the Silver Surfer","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"eca68d7a6d14bba054d8114c8005d742","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-06-12T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.6,"RunTimeTicks":55105351680,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1979"},"VideoType":"VideoFile","ImageTags":{"Primary":"3f4bd9f1607ba96f454b604de42c710f"},"BackdropImageTags":["2e1d6832b7aabc5cdb96cfafd0d0f703"],"ImageBlurHashes":{"Backdrop":{"2e1d6832b7aabc5cdb96cfafd0d0f703":"WVBzw=-BZfxbRixaT#JUIpS$n#adIBsps:WBxuV@SjWVoIaxR.bw"},"Primary":{"3f4bd9f1607ba96f454b604de42c710f":"daEyPu^M$y%LGd9v9bM}T1obt6oya0w]xYa}InSNRjRP"}},"LocationType":"FileSystem","MediaType":"Video"},"ed7e2fec3b8d6ff401ced303ca552e5b":{"Name":"Modest Heroes","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ed7e2fec3b8d6ff401ced303ca552e5b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2018-08-23T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":32087789568,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"514710"},"VideoType":"VideoFile","ImageTags":{"Primary":"986bcc91ae0d4f6daa8df9ff3a887b3c"},"BackdropImageTags":["8250bb6d9611230cfe3b218b40993d51"],"ImageBlurHashes":{"Backdrop":{"8250bb6d9611230cfe3b218b40993d51":"W+GKI4%hX-x^Rlx[?wxubas:jFtQo~nNaKaeoykDtmn$WXWVShjv"},"Primary":{"986bcc91ae0d4f6daa8df9ff3a887b3c":"dWOWW$O]%M^*4mM|R5Md4UNeRiRO.T${-o%3xvt7V@n$"}},"LocationType":"FileSystem","MediaType":"Video"},"ef086d5b00b3fc2ab7d0ac110fc703ee":{"Name":"Castle in the Sky","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ef086d5b00b3fc2ab7d0ac110fc703ee","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1986-08-01T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8,"RunTimeTicks":74736320512,"ProductionYear":1986,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10515"},"VideoType":"VideoFile","ImageTags":{"Primary":"068d6246bb8c62aedc0f6e73a1c81832","Art":"9226a4a9eac4770c8422ace7b82dbb48","Banner":"a0127953159140d6502e3388bee2776c","Disc":"1ac4b6ba283175f67db3683f0d574a64","Logo":"e14e61cc61881742a725974e6241fdff","Thumb":"919c464e3267caf67acb973327986c1c"},"BackdropImageTags":["e47f0d18444037d274c22baa1753b1a1"],"ImageBlurHashes":{"Backdrop":{"e47f0d18444037d274c22baa1753b1a1":"WXEML2D+I.xFD%NH~qWEE1%1MxNH.9RjRPj=sle.xvofROa^t7Rj"},"Primary":{"068d6246bb8c62aedc0f6e73a1c81832":"dgHCD=ozp2%hcIRnx^o#EQo#obR%xcofIVM}JFoza#a%"},"Art":{"9226a4a9eac4770c8422ace7b82dbb48":"NYIEL{ElK+waay$j?^VrxabwxFS~_MRi-Ss;OYbb"},"Banner":{"a0127953159140d6502e3388bee2776c":"HL7o@Dr|tjRPX8WBRjS_RQ.knUo{RkfkbGWBX6V["},"Disc":{"1ac4b6ba283175f67db3683f0d574a64":"eXPOA7VY%~o|Y5R5WCx]jtn%y=cDXSV@rsv~jZS~bGnjuhZ%Z%bvVY"},"Logo":{"e14e61cc61881742a725974e6241fdff":"OKQck;xuIUxuIUj[Rj~qWBWBt7WBt7WB?bayt7Rjt7ofof"},"Thumb":{"919c464e3267caf67acb973327986c1c":"NNHxHcxp_1vfAfJH_4M_x[ofT2XpBs$*tRtl$LtR"}},"LocationType":"FileSystem","MediaType":"Video"},"ef285b154d4217077b6d7aee9b8d82ec":{"Name":"Airplane!","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ef285b154d4217077b6d7aee9b8d82ec","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1980-07-01T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":52620480512,"ProductionYear":1980,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"813"},"VideoType":"VideoFile","ImageTags":{"Primary":"a1a3b208ff0997732d95d1ff2e6e97eb"},"BackdropImageTags":["07fcfa01090678b65705d48eb62cc1db"],"ImageBlurHashes":{"Backdrop":{"07fcfa01090678b65705d48eb62cc1db":"W87A}L9D-=xu9Z%NROt8RiWAtRRP0J%OIUM{-;RO?cIAxvozIU%h"},"Primary":{"a1a3b208ff0997732d95d1ff2e6e97eb":"dTGubF#r9$?c{zvzkCxt-SnNt6%1ysM|Iq-.LNkBZ~o}"}},"LocationType":"FileSystem","MediaType":"Video"},"f00aefa2fc923cf0e90ded58fb5031a7":{"Name":"Atlas Shrugged: Part I","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f00aefa2fc923cf0e90ded58fb5031a7","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2011-04-13T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.3,"RunTimeTicks":58188701696,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"56780"},"VideoType":"VideoFile","ImageTags":{"Primary":"52360249f135125d00f77d05c1ae3f3f"},"BackdropImageTags":["58024d9924ca1502039117c20c3619ae"],"ImageBlurHashes":{"Backdrop":{"58024d9924ca1502039117c20c3619ae":"W57^Vu%N14%L9aIn-24:9a$%N0-o~A-:T0R+NaI.rWnhEMIV%1fm"},"Primary":{"52360249f135125d00f77d05c1ae3f3f":"dEBy:K%gNFt8-PM_IAV?IkkB?Gxus$xt_2kBH;M{NaIo"}},"LocationType":"FileSystem","MediaType":"Video"},"f2901849ec1c60d73d99a0144a4b79dc":{"Name":"The Wolverine","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f2901849ec1c60d73d99a0144a4b79dc","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-07-22T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":82944638976,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"76170"},"VideoType":"VideoFile","ImageTags":{"Primary":"2fd9a3e6458d3c1036ba0436a56053b9","Art":"04ac49c6270ada2c804b981108c0a764","Banner":"8a63b399c6fcc89da303c1a6fd6185d3","Disc":"8c031e0f5649a3a54a35c1194fa7bb0d","Logo":"7f363ef4faea8bf6d77b9859964c2a59","Thumb":"1f14d7e8d9b01d72fa6c06df9e9c6325"},"BackdropImageTags":["707c28bfaceac7b17e57013100dabcf8"],"ImageBlurHashes":{"Backdrop":{"707c28bfaceac7b17e57013100dabcf8":"WkPGW|%M_N?aD%%M-;aexutRRQays:WVWBofoLRj-;ofxut7RjRj"},"Primary":{"2fd9a3e6458d3c1036ba0436a56053b9":"dvMQYIj@?b-;~WxuNGofbvayIUNGx]j[sotQMxj[o0V@"},"Art":{"04ac49c6270ada2c804b981108c0a764":"NjPQ87M{~qxuD%WB_3xuM{t7ayRjWCRjM{Rjxuof"},"Banner":{"8a63b399c6fcc89da303c1a6fd6185d3":"HA8p[cXnEN~BS4E2-:?bR.-;x]s:xaI=s9%2S%xZ"},"Disc":{"8c031e0f5649a3a54a35c1194fa7bb0d":"eYH1_Oae_Nfk%gr?aykCfkWV_NWB.8fkaxX8f6jtayay%MWVe.ayM_"},"Logo":{"7f363ef4faea8bf6d77b9859964c2a59":"O?PGjXfQj[j[j[ayj[WBfQayfQj[j[fQ~qj[ayj[ayofay"},"Thumb":{"1f14d7e8d9b01d72fa6c06df9e9c6325":"N984JJ-p0MIqw]s9DiWAbwM|xGxaIpRkxtxut6s."}},"LocationType":"FileSystem","MediaType":"Video"},"f2f7e0f163e4382ad8621b95ac50ab3e":{"Name":"The Empire Strikes Back","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f2f7e0f163e4382ad8621b95ac50ab3e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1980-05-19T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":76416000000,"ProductionYear":1980,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1891"},"VideoType":"VideoFile","ImageTags":{"Primary":"93c7d2d82e18466dba1398f6f209c864"},"BackdropImageTags":["04bbf4525a097c40408abc738223640e"],"ImageBlurHashes":{"Backdrop":{"04bbf4525a097c40408abc738223640e":"WJDbgK5aR?#Q16^LIVtSV?t6nzRi9^r=xtNf$yNaR:W?s;xakCRi"},"Primary":{"93c7d2d82e18466dba1398f6f209c864":"djGR;@t8IVsD8^R*xus,I[ozRjW=-=j[f6S4D%Rjxua_"}},"LocationType":"FileSystem","MediaType":"Video"},"f2ff7d8d7876bd4aa5238cf1c3387496":{"Name":"Fight Club","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f2ff7d8d7876bd4aa5238cf1c3387496","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1999-10-14T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.4,"RunTimeTicks":83483836416,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"550"},"VideoType":"VideoFile","ImageTags":{"Primary":"dd65d0cc1794fe917e3d92354a3c5d67","Art":"186f58ebc53d9332a66a738606c8a155","Banner":"4b79710628f8ddaed26d6cb3feac2cd4","Disc":"41821ef77c91a89bf360c4014308af81","Logo":"dd65d0cc1794fe917e3d92354a3c5d67","Thumb":"86a492b2c40a1514eccb72b991e54a50"},"BackdropImageTags":["c2d6bde898163f8893bb957b1eed5233"],"ImageBlurHashes":{"Backdrop":{"c2d6bde898163f8893bb957b1eed5233":"WuM5:lnnWF?ER%xZ}@rxjcoyIpkBR:sqWCX7WUWWxHM~RkxXWBbI"},"Primary":{"dd65d0cc1794fe917e3d92354a3c5d67":"duI:,X-VR*t5$SxHjuay0hoLspM}O9OTj?WBW,NGoJs:"},"Art":{"186f58ebc53d9332a66a738606c8a155":"NqMH45~qW.ax?vR*t7V[ofayayofbHs:ayWBf6a|"},"Banner":{"4b79710628f8ddaed26d6cb3feac2cd4":"HuKI#GX4w|xuNZs:R+RkxZ}@bYWCofjYjFM|V[xa"},"Disc":{"41821ef77c91a89bf360c4014308af81":"eeKm09n%u3WV.8;jS2K1o2spy?WB-;kCrrO9sTjwW;bE%MWVr]jZE1"},"Logo":{"dd65d0cc1794fe917e3d92354a3c5d67":"O~Ofr$t7?^R%$+t7IUt7j[WVWUj[j]j[XSa{r?juR*jskC"},"Thumb":{"86a492b2c40a1514eccb72b991e54a50":"NXFzEY=}1tI-IoJ6^7s;I:R%R%S1ABNZ$js:n+sW"}},"LocationType":"FileSystem","MediaType":"Video"},"f3454358217a6ced42082a4482460c03":{"Name":"The Farthest","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f3454358217a6ced42082a4482460c03","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-03-14T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.8,"RunTimeTicks":69546557440,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"436305"},"VideoType":"VideoFile","ImageTags":{"Primary":"cbf8116363ac28f9c86b570c2ea05970"},"BackdropImageTags":["07fb6b3facf9f53338f757bb031946d8"],"ImageBlurHashes":{"Backdrop":{"07fb6b3facf9f53338f757bb031946d8":"W12~P;9G4.~WD%E1~W9FE1^+IUM{MxRP%MozR+xt4o-p-;4noe-p"},"Primary":{"cbf8116363ac28f9c86b570c2ea05970":"dA6s?8NLs:$*soWBn$jZ0}t2R*NGNus;Sibb-Ae:s:s."}},"LocationType":"FileSystem","MediaType":"Video"},"f3b83fbee544bcbeb29e4a4e7b3ad64a":{"Name":"Incredibles 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f3b83fbee544bcbeb29e4a4e7b3ad64a","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-06-13T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":70701760512,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"260513"},"VideoType":"VideoFile","ImageTags":{"Primary":"7e3ece54e494d324266da5199830a29f"},"BackdropImageTags":["203aac938ec813baf7e461c300cfae4f"],"ImageBlurHashes":{"Backdrop":{"203aac938ec813baf7e461c300cfae4f":"W9677Ss-11Rm$~XQxFoKR+R,W;s-1LWW^2odI?r[I?R,s-$#wfI?"},"Primary":{"7e3ece54e494d324266da5199830a29f":"deJ~Pq-Tw]wJ}rxD#msAIqV]M|WB=ds:EMV[sqs.R,js"}},"LocationType":"FileSystem","MediaType":"Video"},"f3f79e887d926bcad0eb6a8f82b39507":{"Name":"Ghost in the Shell: The New Movie","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f3f79e887d926bcad0eb6a8f82b39507","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-06-19T22:00:00.0000000Z","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":59902078976,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"334376"},"VideoType":"VideoFile","ImageTags":{"Primary":"62eb8e997bb6d660bdd8f13cab929385","Banner":"8c2a6323a56998a9436ebcbc24cec254","Disc":"a582c708f61f128dec7f623bf355c117","Logo":"2a8406ced4d2e3cc8d2de97eabd0e248","Thumb":"1f66d0485274640ea35bcfe1554d84d2"},"BackdropImageTags":["05778201247121c2800a3e22353f42f6"],"ImageBlurHashes":{"Backdrop":{"05778201247121c2800a3e22353f42f6":"WL6u*do#Mwbdo#tTxwjZoej@RQjcxvj?bda$j?ozyGf,ayo#fko#"},"Primary":{"62eb8e997bb6d660bdd8f13cab929385":"dFCHNlXU58_NH??^yCD*cYWYRiaw?wpIWF%2ab%fivMw"},"Banner":{"8c2a6323a56998a9436ebcbc24cec254":"HoDvc_?c%Oxat8xtf,WEs;_4-;tRjYt7xaa~aff8"},"Disc":{"a582c708f61f128dec7f623bf355c117":"eBGcDr?HZyxa.2x_t7?boL%L_MtR-2xtR:-lMyIUx]IUIot5MwXAIt"},"Logo":{"2a8406ced4d2e3cc8d2de97eabd0e248":"OnGSDht7oft7M{j[WB-;ofj[j[Rjj[ay00WBWBWBt7j[j["},"Thumb":{"1f66d0485274640ea35bcfe1554d84d2":"NHBz*0x^8^tRD*R:EAkDWAMx%Nxv4UWCs,M{%Mxt"}},"LocationType":"FileSystem","MediaType":"Video"},"f3fa0246944b4eef3994cbb961e5f92b":{"Name":"The Fifth Element","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f3fa0246944b4eef3994cbb961e5f92b","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1997-05-01T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.5,"RunTimeTicks":75535892480,"ProductionYear":1997,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"18"},"VideoType":"VideoFile","ImageTags":{"Primary":"f7d54300188c1d1b63ffa6d665962d6a"},"BackdropImageTags":["3f89911a85a375a249cf1e73820e44b9"],"ImageBlurHashes":{"Backdrop":{"3f89911a85a375a249cf1e73820e44b9":"WTH^3HX8NGs;Ipw|].RioeofR*R,IqV?WUt7I:EN~AWUNbxtE2NH"},"Primary":{"f7d54300188c1d1b63ffa6d665962d6a":"dNDR${%30fnNApS4R+oy:ijEOYoztSW;njnh1hWY$%Sg"}},"LocationType":"FileSystem","MediaType":"Video"},"f47d591f03a4c742f9d0107c799438bf":{"Name":"The Cat Returns","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f47d591f03a4c742f9d0107c799438bf","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2002-07-18T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":45008318464,"ProductionYear":2002,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"15370"},"VideoType":"VideoFile","ImageTags":{"Primary":"78105d9c580aff57ca689760a0fa5865","Art":"630efc0a17b74bdee298f807ab6b1ebb","Banner":"d70835ed1b5fcaa4e0e6d567897dfcac","Disc":"086e35714cfb429e5cc9102754832398","Logo":"a3e93c9f5f89a872237e9f0692130885","Thumb":"42d97ac1db19bbfffca079007499d066"},"BackdropImageTags":["9e58785baf5c990365b61a709031a7f3"],"ImageBlurHashes":{"Backdrop":{"9e58785baf5c990365b61a709031a7f3":"WNJ8C0%f0d%exaxmROWUNdtR_3-po~t6nNt7tSWZ_Nx]Z~xtkqM{"},"Primary":{"78105d9c580aff57ca689760a0fa5865":"dlF79+tSNfx]b~j]kCkD9EaxaKRjo|ogWAWBN5R*oeWF"},"Art":{"630efc0a17b74bdee298f807ab6b1ebb":"NiJb264T%M%NE1D%4o?bj?M{oMoJM}ozWBV@oLs:"},"Banner":{"d70835ed1b5fcaa4e0e6d567897dfcac":"HWGlCN~UO99tE1xW-o-.xt?CxVW;I=NIxa%L%KoL"},"Disc":{"086e35714cfb429e5cc9102754832398":"eSQHrIz{p[OlY2R6WBtkWUayl*O,b[i|eo#rn,S^bFafYzVarHoyZ*"},"Logo":{"a3e93c9f5f89a872237e9f0692130885":"OFSs1[t7j[xuWBt7WB-;ayfQayayayfQ~qofayWBoffkj["},"Thumb":{"42d97ac1db19bbfffca079007499d066":"NQHLYP-$0dInni?H%dxtRQWCt7WAoNRlRPxuWXNH"}},"LocationType":"FileSystem","MediaType":"Video"},"f49b0f0fb5d4228d46c22409986069e9":{"Name":"Memento","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f49b0f0fb5d4228d46c22409986069e9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2000-10-10T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":8.2,"RunTimeTicks":68070400000,"ProductionYear":2000,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"77"},"VideoType":"VideoFile","ImageTags":{"Primary":"c77f66586658cf30dbdc43e53d9db3f4"},"BackdropImageTags":["c8586cf3ac09544b4976537b1de90575"],"ImageBlurHashes":{"Backdrop":{"c8586cf3ac09544b4976537b1de90575":"WkKKTTIoIAMytR%1~qoLRPWBayaeo#oyV@jZIVRj?HRkM{R*M|R%"},"Primary":{"c77f66586658cf30dbdc43e53d9db3f4":"dZJ*P8,.aK%L~BVYRkM{R*tRM|D%tmx]V@Wr9ZtRxtt7"}},"LocationType":"FileSystem","MediaType":"Video"},"f52827184d9c29b82dc9141497cdbfa8":{"Name":"The Girl in the Spider's Web","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f52827184d9c29b82dc9141497cdbfa8","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-10-24T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.1,"RunTimeTicks":69259198464,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"446807"},"VideoType":"VideoFile","ImageTags":{"Primary":"309826ab546783a3233c3e296fb1be67"},"BackdropImageTags":["126f00b764236090803ec8d7ba971f24"],"ImageBlurHashes":{"Backdrop":{"126f00b764236090803ec8d7ba971f24":"W66*XON_DiSh-p%2~VNeVsNHxu%LnhS$-oNGRkxuxuSg-oozM{ae"},"Primary":{"309826ab546783a3233c3e296fb1be67":"d98XOhxv009F-;-:WBD%WU%MRjIUD*Rj%Mxu4nIU-;?b"}},"LocationType":"FileSystem","MediaType":"Video"},"f60053670609bcafbea222b902f1c16b":{"Name":"Colonia","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f60053670609bcafbea222b902f1c16b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-06-23T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":65948061696,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"318781"},"VideoType":"VideoFile","ImageTags":{"Primary":"a86af0fb25dd6d9f0f93d03c698155f5"},"BackdropImageTags":["22539c31290268cb9cd6226ac5d7d73a"],"ImageBlurHashes":{"Backdrop":{"22539c31290268cb9cd6226ac5d7d73a":"W77AbzI;0g=x-VI;ena{t7xFaeNHbHs.R*oLs.NHxaWVNGoexaj["},"Primary":{"a86af0fb25dd6d9f0f93d03c698155f5":"dI9*0y%LD*RktPoyj]Rj02RkxtRjs;j[Rjj?%Koet6t7"}},"LocationType":"FileSystem","MediaType":"Video"},"f6860f7c7d1bd548335624f2b3698b9a":{"Name":"Watchmen","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f6860f7c7d1bd548335624f2b3698b9a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2009-03-04T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":129261543424,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"13183"},"VideoType":"VideoFile","ImageTags":{"Primary":"58687c39d2c3dbb4e0d4f4db9566bc4a"},"BackdropImageTags":["8ef6840617a04b1a4c73f7856f326f58"],"ImageBlurHashes":{"Backdrop":{"8ef6840617a04b1a4c73f7856f326f58":"WH6cNIICvetiN#k7ysXSrCWAt6NH%fJWsljXVZx[XUOFoeRjnitQ"},"Primary":{"58687c39d2c3dbb4e0d4f4db9566bc4a":"dGB4U8x@E9Te8#M~SfRR;GxWjIaJPCSg%LoxEAM}$xbc"}},"LocationType":"FileSystem","MediaType":"Video"},"f6d8839b0619f0002c4116ad0a80decb":{"Name":"Lara Croft: Tomb Raider - The Cradle of Life","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f6d8839b0619f0002c4116ad0a80decb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2003-07-20T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":5.7,"RunTimeTicks":70414934016,"ProductionYear":2003,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1996"},"VideoType":"VideoFile","ImageTags":{"Primary":"288bcc4601c8fba6e79f7ac633070e82","Art":"ba55be3f1eebf79583e2c9aef0bc5673","Banner":"038a0e23d644f9ab745bf322316e3493","Disc":"5fabb9ca1f63ef08677748016f3bd7f3","Logo":"2f5f1f0e3fa6bc84663b2b8647bdd337","Thumb":"262c346312823a5cd0ffc097ee1d8359"},"BackdropImageTags":["81b4c0431e19907e85b7b111171022d5"],"ImageBlurHashes":{"Backdrop":{"81b4c0431e19907e85b7b111171022d5":"WgQ]$o_3%fRj_3?b~qRjRj%MogWB-;t7WCRjM{of_3xvt7M{Riof"},"Primary":{"288bcc4601c8fba6e79f7ac633070e82":"daHV0W%29ZtR01WXIUM{%KV@t8j[R*WCWWofD%ayRjay"},"Art":{"ba55be3f1eebf79583e2c9aef0bc5673":"NtNJ?@%fMytRRjxa4mD%xuR+RjxuNFxuRjWWofWA"},"Banner":{"038a0e23d644f9ab745bf322316e3493":"H~P6,DV?oz%N-=xaxt?bM{~qWBj]x]x]xujYt7V@"},"Disc":{"5fabb9ca1f63ef08677748016f3bd7f3":"eMJ*n-=?~qNK%MOan$n$NHWBXWIq?cxaM{^*RljDxaoI?cs.V?j[M{"},"Logo":{"2f5f1f0e3fa6bc84663b2b8647bdd337":"OHJ*3C?HIx-:yD-:%h?DofXAxZM{t6Ipt:RkxpofMyR*WB"},"Thumb":{"262c346312823a5cd0ffc097ee1d8359":"NHBpOeI8M|-=01-;w@-oWWIpR,aeD*bwj]IntRRj"}},"LocationType":"FileSystem","MediaType":"Video"},"f72be36f22b29996922b4bc5440bcb14":{"Name":"Magical Girl Lyrical Nanoha: The Movie 1st","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f72be36f22b29996922b4bc5440bcb14","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2010-01-22T23:00:00.0000000Z","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":78118404096,"ProductionYear":2010,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"50716"},"VideoType":"VideoFile","ImageTags":{"Primary":"543f4cf15a31f869511d20e839909c71"},"BackdropImageTags":["95f72b9413abbf51c1989113c7259e51"],"ImageBlurHashes":{"Backdrop":{"95f72b9413abbf51c1989113c7259e51":"WZHK@J%K0LM|RjX8M^t7S6WCxZt6IVRi%MxuRiob?It7RjWVfkof"},"Primary":{"543f4cf15a31f869511d20e839909c71":"ddJ@a:%LIUxHw@k8XTjc0LNGt8M|%3oejYRPw]t7RjRP"}},"LocationType":"FileSystem","MediaType":"Video"},"f78caeedb263537cbccad5a429a5cc5b":{"Name":"War of the Worlds","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f78caeedb263537cbccad5a429a5cc5b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2005-06-27T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":69930549248,"ProductionYear":2005,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"74"},"VideoType":"VideoFile","ImageTags":{"Primary":"32242053c35b8360c6c44ba1e13f9f90"},"BackdropImageTags":["219de3fc2652fb1a39a081ff619600f9"],"ImageBlurHashes":{"Backdrop":{"219de3fc2652fb1a39a081ff619600f9":"WOB1J6w{AWWVj[W;{}wxFcW:S2S2;hsTODoLNuNb,@snn%n*ODW;"},"Primary":{"32242053c35b8360c6c44ba1e13f9f90":"dMB.cOS459%1ENafxCoeIooJa}R*={bbI=WE10jt=vS2"}},"LocationType":"FileSystem","MediaType":"Video"},"f87d6722db168ba62d936c0bd1998099":{"Name":"Gravity","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f87d6722db168ba62d936c0bd1998099","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2013-10-02T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":54585180160,"ProductionYear":2013,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"49047"},"VideoType":"VideoFile","ImageTags":{"Primary":"6ae91bcd6da54f9472118f565130306a","Art":"992a86feced1251177cafa88b7d6b576","Banner":"1452902cd9f71fcf66175a6688f0dc96","Disc":"251c46b6971ce6b19ff5bf033b812176","Logo":"94fe11ef9fe1ecd69f07c8d4f4054744","Thumb":"3a1f87614024e0fc41267f3382c085fd"},"BackdropImageTags":["65ad4df0f03af1b5b32a64381e8c1f96"],"ImageBlurHashes":{"Backdrop":{"65ad4df0f03af1b5b32a64381e8c1f96":"WM7K}BI9IA?wITIUxvRiRjxvRiWBIUt7xuIUoJxuR+oJs:R,adt7"},"Primary":{"6ae91bcd6da54f9472118f565130306a":"dU9HbBV@4mtRxvaeRPo#9Ff5-;kCM{f6xabHxuofNGRj"},"Art":{"992a86feced1251177cafa88b7d6b576":"NdH{D~8_00_3ogoeWEMxoft7M{WUM{%MxtRlofRi"},"Banner":{"1452902cd9f71fcf66175a6688f0dc96":"HVC6_n4m-=x[D%-;s+xvs-%gV@xuWBWCxuRP%Mj="},"Disc":{"251c46b6971ce6b19ff5bf033b812176":"ehFPsmof?bWB-;i^a#kWaxj[_NWB-pj[adoJaebIofay%LWBWBj[M|"},"Logo":{"94fe11ef9fe1ecd69f07c8d4f4054744":"OJSF;LofM{xuRjxuRj?bj[ayayfQj[fQ~qoft7WBt7WBt7"},"Thumb":{"3a1f87614024e0fc41267f3382c085fd":"NK4DZTo#Q,n%o~SQt:V?ROo$t5WBm%V=Sio~n|aI"}},"LocationType":"FileSystem","MediaType":"Video"},"f8a7430f4c3ca09900ff58dc9b49acde":{"Name":"Ocean's Eight","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f8a7430f4c3ca09900ff58dc9b49acde","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-06-06T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":66096959488,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"402900"},"VideoType":"VideoFile","ImageTags":{"Primary":"e5300aba2ba03bf62f2faa3f5efea6d5","Art":"68aeef87b8bd7acb54a696ea2761ca75","Banner":"052f7df9444512c7c6f6a328c07d6b2f","Disc":"d6bfda29dbf5f8befd3b7c9fef02e3b1","Logo":"5b68245e0133c455b3df3e62d6e1f6dd","Thumb":"b7fe36a8dff801c880290b11968f1213"},"BackdropImageTags":["4c8a29394e5d03d25a8676d3b9754b6d"],"ImageBlurHashes":{"Backdrop":{"4c8a29394e5d03d25a8676d3b9754b6d":"WnIK9%w{sAj[X8w_=KsnsToLw{fk[qsUoLwxn%j[{}a|sosAWBay"},"Primary":{"e5300aba2ba03bf62f2faa3f5efea6d5":"dxJMzA#-jF$j{}oLX8n%xGn%WVfkWCn%o2ayjZWVjta{"},"Art":{"68aeef87b8bd7acb54a696ea2761ca75":"NXFE}.%g%3-pSh%2~WtlofxuR+s:J.RjM{oJjFR*"},"Banner":{"052f7df9444512c7c6f6a328c07d6b2f":"HsL,LCM|7cW;NtxtixxZbb}FRkK3WqR+ofRks.S3"},"Disc":{"d6bfda29dbf5f8befd3b7c9fef02e3b1":"eRJRN.s:E0RjM{_NofIAe.WBxYWB55t7M{IUaexaR*oz0JWBg3t7-q"},"Logo":{"5b68245e0133c455b3df3e62d6e1f6dd":"OESigQ%MM{ofayj[M{-;j[ayj[j[ayj[~qRjt7t7j[t7t7"},"Thumb":{"b7fe36a8dff801c880290b11968f1213":"NzJPMn%MxtxuwJoJ}Yt6bHWon*ayrXRQRjRQR+WC"}},"LocationType":"FileSystem","MediaType":"Video"},"f8ff95c5b4e6fbade02b7c4b98c67464":{"Name":"The City of Lost Children","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f8ff95c5b4e6fbade02b7c4b98c67464","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1995-08-16T22:00:00.0000000Z","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":67546230784,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"902"},"VideoType":"VideoFile","ImageTags":{"Primary":"ba9fe775d368304ae3d937d813efde3e"},"BackdropImageTags":["3c98dcacbc35d0bc5a37db7f562e7be6"],"ImageBlurHashes":{"Backdrop":{"3c98dcacbc35d0bc5a37db7f562e7be6":"W5A9$UbYjFI:0z$yD+Rks.Ro-oxa5R-URkNHr]X7x?RQNJENxaoy"},"Primary":{"ba9fe775d368304ae3d937d813efde3e":"dED8,x~BM}RQ0gIpRjt7IVIptRxZRRxuxZM|-:j?R*Rk"}},"LocationType":"FileSystem","MediaType":"Video"},"f9b44b824dc3b4984a200ecafcfa5a94":{"Name":"Transformers","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f9b44b824dc3b4984a200ecafcfa5a94","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-06-26T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.7,"RunTimeTicks":86073499648,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"1858"},"VideoType":"VideoFile","ImageTags":{"Primary":"69921fd9e065d1a297c7bbf893e4ea60"},"BackdropImageTags":["bc74192bd3336e7b2d0689344a5aa9cc"],"ImageBlurHashes":{"Backdrop":{"bc74192bd3336e7b2d0689344a5aa9cc":"WWBV#1s.Mws9kDafFyWCRiW;t7oeJCR-RPWWt7bH~Bt6MxjEbbaf"},"Primary":{"69921fd9e065d1a297c7bbf893e4ea60":"dM6l16X9aca$tmjYV?j]MaV?afofnfWYkEf4%ho$bwV@"}},"LocationType":"FileSystem","MediaType":"Video"},"f9d0889cccf03c132a75f70b6c8ce342":{"Name":"Ant-Man and the Wasp","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f9d0889cccf03c132a75f70b6c8ce342","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2018-07-03T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":70865600512,"ProductionYear":2018,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"363088"},"VideoType":"VideoFile","ImageTags":{"Primary":"d329761818edd7535aa67503302d5adb","Art":"ac045ddc7e0ba8c8e8a770bc5d5eaa0f","Banner":"438270aba08dfb30ef7f962419d67c92","Disc":"2a330de1ced06658d1d481b68d336430","Logo":"7f98c913003a7b35e65bf2ca418cb5d4","Thumb":"5ae8df476d157fd02b7e04364f5c9bd1"},"BackdropImageTags":["914c09896c79250f16529beaff9f5288"],"ImageBlurHashes":{"Backdrop":{"914c09896c79250f16529beaff9f5288":"WmRV@C?btSxt-;-;?Hj[kCj[t7of.8RjROt8R%ax_Nt7V@j]bHt7"},"Primary":{"d329761818edd7535aa67503302d5adb":"dcOx]?#r%g~Wnh%~yD%M?wtRMxso-VRQS1oyTKoyV@ni"},"Art":{"ac045ddc7e0ba8c8e8a770bc5d5eaa0f":"NsLV?p=xofNZozVt?wJWayWBogae.8x[xBjHoMbY"},"Banner":{"438270aba08dfb30ef7f962419d67c92":"H^P~vJZ~Mwt8%h.7ozxtR.~VWBWBWYo}tQRkozWY"},"Disc":{"2a330de1ced06658d1d481b68d336430":"edMZt8-=?wODXS?bS$RPs:RjpJITt7xat7IUiwNGtQxutmWBs,WYRQ"},"Logo":{"7f98c913003a7b35e65bf2ca418cb5d4":"OLJZYjDG%}y8XWx?%h~BRV%eohn,x@NIF#%Ks:RotPoMsV"},"Thumb":{"5ae8df476d157fd02b7e04364f5c9bd1":"NYELElxZIV-CtRog~DxbM|xZxuW=tRXANexWt5WG"}},"LocationType":"FileSystem","MediaType":"Video"},"f9fa0a74a7c46bcf9c4ea314280883c6":{"Name":"What Happened to Monday","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"f9fa0a74a7c46bcf9c4ea314280883c6","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2017-08-17T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":74115842048,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"406990"},"VideoType":"VideoFile","ImageTags":{"Primary":"989796e2fcf8f9b2d9c484eef7dc305d"},"BackdropImageTags":["90bfc33d2e203f0e1943ece7c348b556"],"ImageBlurHashes":{"Backdrop":{"90bfc33d2e203f0e1943ece7c348b556":"WAAmh;%N4n4n9Y-U^*aeIoIUNG%g4TMwx]x]xvx]ofo}tRRPR5Rk"},"Primary":{"989796e2fcf8f9b2d9c484eef7dc305d":"dWC7HJbI9FtR_4kDM{kCX9bItRofIpV[xaoz9ZWAxtbI"}},"LocationType":"FileSystem","MediaType":"Video"},"fa3d67f0a38dc43f7e69369ed5c5ac4d":{"Name":"X-Men: Apocalypse","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fa3d67f0a38dc43f7e69369ed5c5ac4d","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2016-05-17T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.5,"RunTimeTicks":86397517824,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"246655"},"VideoType":"VideoFile","ImageTags":{"Primary":"b03915f5738f05ed1a6d5ab467a47135","Art":"88d5a16a4681d0df99129f46f9586480","Banner":"dbbae3e8f27c7fef87006f29efc92db9","Disc":"e0b796f2159b6278135ed7a64962ab30","Logo":"032e76b6b3f768b1d0c2fb41c22a117d","Thumb":"2322eec1b4ed9ea21eaae1a86b9c624a"},"BackdropImageTags":["cdaed227cb806db4963bd2459398fe49"],"ImageBlurHashes":{"Backdrop":{"cdaed227cb806db4963bd2459398fe49":"WMBNvQkC?akXJB%M?^Rk-;tRW=xuDNIoXSt7niofR5M{M|V@M_bI"},"Primary":{"b03915f5738f05ed1a6d5ab467a47135":"dMB:?NW.?u%g~qWq-:xuV=WExZn#R*Rjx]t7xuWAtRxu"},"Art":{"88d5a16a4681d0df99129f46f9586480":"N57A^~02M|?aMy-oV]x[tQWCWCoMx]RkkBRjxtWr"},"Banner":{"dbbae3e8f27c7fef87006f29efc92db9":"HRFF{eXnoMnj%gWXxu%MIo_Nt8tRWBt7xts:ozV@"},"Disc":{"e0b796f2159b6278135ed7a64962ab30":"eNGv09bE_3t7?HX5V[xDRjbc_3ad_3j?IV%1Wqf,xaae~qt7IUWBMx"},"Logo":{"032e76b6b3f768b1d0c2fb41c22a117d":"O~K-k8j[ofj[ofj[ofxufQfQfQfQj[fQ~qj[ayfRayj[ay"},"Thumb":{"2322eec1b4ed9ea21eaae1a86b9c624a":"NOB|W=R%tRbc-pof~qoMoxW;%Mt6V?n,s+a{xu%1"}},"LocationType":"FileSystem","MediaType":"Video"},"faba1921aa42f01cbceebb70dc236ac1":{"Name":"Fanboys","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"faba1921aa42f01cbceebb70dc236ac1","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-02-05T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.2,"RunTimeTicks":53825069056,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"13532"},"VideoType":"VideoFile","ImageTags":{"Primary":"8b8c27f1b048c210c796b64ad1991717"},"BackdropImageTags":["393a1476413c4258d095d7359fce05ed"],"ImageBlurHashes":{"Backdrop":{"393a1476413c4258d095d7359fce05ed":"WoJ@zbt7tQxuxu%2~WofayofkCxu^+WBayt7xat7_2ofofofWBoL"},"Primary":{"8b8c27f1b048c210c796b64ad1991717":"dJAdG?%M9FI:.TozMwaeOYbcV=oextbIt8xu-nkWtSxa"}},"LocationType":"FileSystem","MediaType":"Video"},"fb033084620b90f3692f3ba5908e2feb":{"Name":"Jumanji","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fb033084620b90f3692f3ba5908e2feb","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1995-12-14T23:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.2,"RunTimeTicks":62462398464,"ProductionYear":1995,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8844"},"VideoType":"VideoFile","ImageTags":{"Primary":"9658160aaedbe639aacc04f332806cc3","Art":"c1f69c024388f152235725a3d352f465","Banner":"8530e5df3d29c653541d24625f4bb6b4","Disc":"90e83e16686ffc6370144bffbb951521","Logo":"e874c989466940648b0774c04de7ef5a","Thumb":"54a3c1c58581d5c1ddff7406de802111"},"BackdropImageTags":["5b70028a82c65af117ecfdc247509144"],"ImageBlurHashes":{"Backdrop":{"5b70028a82c65af117ecfdc247509144":"WHBV;9xaE3s.Ips.^is:R,t6S4oe0LoK%1t6xuWCIos:s:jYoeNG"},"Primary":{"9658160aaedbe639aacc04f332806cc3":"dHHAnY-p4.nh~B$$EMt5Mzs:NajG9aS5-VV_H@i{xbxG"},"Art":{"c1f69c024388f152235725a3d352f465":"NbPs9Nof~pxaxus:}QV@I9aeRlaeq_t7IARjozV@"},"Banner":{"8530e5df3d29c653541d24625f4bb6b4":"HSFhX;%Ns=NHS0$wD+D+0h~AXTt6WnIpRQRjj=EN"},"Disc":{"90e83e16686ffc6370144bffbb951521":"eSJRW_tP_4j?yE#sWBJ$oKxa?^M|?JWDs8D+of%LayRQcYkBw1jGIU"},"Logo":{"e874c989466940648b0774c04de7ef5a":"O%S~69oIkXoIkXoekDnBa$kBfSkAjbj?pfj]adj]adf6ax"},"Thumb":{"54a3c1c58581d5c1ddff7406de802111":"NYExnJt64;n#-pXS~8oeR*s.j]Ncw0WCxaspM|NG"}},"LocationType":"FileSystem","MediaType":"Video"},"fb869e534b710f3727c62a289ee57d45":{"Name":"Spider-Man: Homecoming","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fb869e534b710f3727c62a289ee57d45","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2017-07-04T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":80080322560,"ProductionYear":2017,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"315635"},"VideoType":"VideoFile","ImageTags":{"Primary":"4e954ddc243a96792c2b9c16eb433bf9"},"BackdropImageTags":["21e8f8275402b169a5461bdfd6842c5a"],"ImageBlurHashes":{"Backdrop":{"21e8f8275402b169a5461bdfd6842c5a":"WOG+E:9Z4mIU%g$+TMadfzxZT0nn4;r=tl?He:S$xoo}NfR7xDgh"},"Primary":{"4e954ddc243a96792c2b9c16eb433bf9":"diD9^^x^M{t7%%x]V@ogOsR.r?ofIrRjV@j]M|RjV@V["}},"LocationType":"FileSystem","MediaType":"Video"},"fbbbea2921e5817031024f4084b5e5f9":{"Name":"My Neighbor Totoro","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fbbbea2921e5817031024f4084b5e5f9","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1988-04-15T22:00:00.0000000Z","OfficialRating":"G","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":51851841536,"ProductionYear":1988,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8392"},"VideoType":"VideoFile","ImageTags":{"Primary":"0f386dd0ca7206849777b040e4ca0a96","Art":"800ff800e59d9f2f65cfe874fe1cd8d1","Banner":"6c0350ddfe588e67ab7a0a26d2fc14b8","Disc":"58c6f26b6cd9af2b12fb212cc9211c50","Logo":"1077189a26320eef9ef0827a97ce99d4","Thumb":"5e30b22b53e9a86966728f9e981be7d0"},"BackdropImageTags":["84b69b83700c0d0ebb0108976b65925c"],"ImageBlurHashes":{"Backdrop":{"84b69b83700c0d0ebb0108976b65925c":"WSHnmF^$yE%#Sz?a?K-o%gNhkDoNKQX5t8Rpj]W=xdNFkWbdR,kD"},"Primary":{"0f386dd0ca7206849777b040e4ca0a96":"dE9tu@?bDQtmH@WBo{RPS^XRkWob%1n5VabH02W:?aRl"},"Art":{"800ff800e59d9f2f65cfe874fe1cd8d1":"N#KUJ:~qxvaxD*t6xu%Lt7WBWBj@D,WCocRkt6WX"},"Banner":{"6c0350ddfe588e67ab7a0a26d2fc14b8":"HREoq]$]t6%L05IsoN%E%1^z$|t7avWHM|M}--Rk"},"Disc":{"58c6f26b6cd9af2b12fb212cc9211c50":"eOH2cdMx.Axv?aoaNJt7WAoc_4%L_3M|Ri%1t2NKbIWB_4NHM_xsIU"},"Logo":{"1077189a26320eef9ef0827a97ce99d4":"OORL+=axtpWBp2oco*-@j]tUofo%t6xuT5fRbda#bKWYkD"},"Thumb":{"5e30b22b53e9a86966728f9e981be7d0":"NDCGGJV_4%?KIeIctJIqN2sQWFRo-m_1NP4s%NWG"}},"LocationType":"FileSystem","MediaType":"Video"},"fc386a9dcad08098e0453581ed03bfbc":{"Name":"The Hunger Games: Mockingjay - Part 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fc386a9dcad08098e0453581ed03bfbc","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-11-17T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.9,"RunTimeTicks":82172813312,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"131634"},"VideoType":"VideoFile","ImageTags":{"Primary":"6115bcca1a4b90530ae42dfc726e45c5","Art":"e8ba3853a66305d800b80544fce4633c","Banner":"0394f82475189f21b17758a82ae94c59","Disc":"ed4c57d98f7372229d51bef7b636cc3b","Logo":"db39bdac6fa6c859eb734c32aa45f0ed","Thumb":"dee4de00827e3c4777739de9f45ddfd1"},"BackdropImageTags":["61edf2faec4203e8720015c23bb49420"],"ImageBlurHashes":{"Backdrop":{"61edf2faec4203e8720015c23bb49420":"W98gBI_3JUMJ0K0zv#I:S$={t7Ip56E1bHtR-Vw^%}?a$%56D%n4"},"Primary":{"6115bcca1a4b90530ae42dfc726e45c5":"djH9T|rtsm,qoyWWoKay10$$soSgV[xFjat5owNbWWja"},"Art":{"e8ba3853a66305d800b80544fce4633c":"NCIW=p.9CTrB8_MdH;~qRkx^g3R5P;Mw~VEl%1WC"},"Banner":{"0394f82475189f21b17758a82ae94c59":"HmG7Cv0$xsxGM}oyS3#,S}=^Iqoxi|odNbs.s,R-"},"Disc":{"ed4c57d98f7372229d51bef7b636cc3b":"eQM$e*59C9og.7?FaxRkN0Rl%%?E%$RRi^IpofozjFxZ.SM~r;g2Mx"},"Logo":{"db39bdac6fa6c859eb734c32aa45f0ed":"O:O{?dRPtSyDtSaKsot6WBj[ayayofay?wRks.xaoLWXRj"},"Thumb":{"dee4de00827e3c4777739de9f45ddfd1":"NWN0uExvTJxCV@.8~Wf,o}oJRjt6yXs.aJtSaeM{"}},"LocationType":"FileSystem","MediaType":"Video"},"fc4dc2a6b7c390002b5225f71c924b23":{"Name":"Appleseed: Ex Machina","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fc4dc2a6b7c390002b5225f71c924b23","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2007-10-18T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.4,"RunTimeTicks":62664859648,"ProductionYear":2007,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"13981"},"VideoType":"VideoFile","ImageTags":{"Primary":"3a5634511d49dcdfa3ec2d379ffd6430","Art":"d9f1c9b3a047fd2e60e27204864b15ef","Banner":"a53118b6bf9a2b3cdc26fe21bb6231d4","Disc":"0a33da2e4ee37eb9d8b960f0c4840a98","Logo":"f05683d26afc6780c15078abfae5f153","Thumb":"df54c63c98573279bd1a763e9f91ac91"},"BackdropImageTags":["ab0874ac62780f405174731274424267"],"ImageBlurHashes":{"Backdrop":{"ab0874ac62780f405174731274424267":"WFA0n9*|4,yX]nw0mkkpO@My$%%2fzO=E2NZtlRjo|o3WARioyxa"},"Primary":{"3a5634511d49dcdfa3ec2d379ffd6430":"dMF;[xC9?u~p}=I]X9%KrttPNe$%#qo{I?w{58rqM{IV"},"Art":{"d9f1c9b3a047fd2e60e27204864b15ef":"NH8z.Cx[V?WBt7WBxuWCofWCofay00D*xua#Rjof"},"Banner":{"a53118b6bf9a2b3cdc26fe21bb6231d4":"HMGRhy?vE0$J%g~W~q?v^j~Vxvt3M{s;-p%MWYt5"},"Disc":{"0a33da2e4ee37eb9d8b960f0c4840a98":"emKT=8WUyEs.tl$yf6R:WWj?%%e.-nWqnha0j[XSsmoJo~WCV?ayRP"},"Logo":{"f05683d26afc6780c15078abfae5f153":"OWDl_~awj=ofogohohM|fSj]j[ayWBfO00j^j]fQWUWAWA"},"Thumb":{"df54c63c98573279bd1a763e9f91ac91":"N567o?OZRj$$9uae~BtRR-n#Ipaet7%2ofNGsmWX"}},"LocationType":"FileSystem","MediaType":"Video"},"fc93d239d8abe40da727b0027f20c307":{"Name":"The Boondock Saints","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fc93d239d8abe40da727b0027f20c307","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1999-01-21T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":70194708480,"ProductionYear":1999,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"8374"},"VideoType":"VideoFile","ImageTags":{"Primary":"edfa72a1f0d90f742a570e4b419cf0bc"},"BackdropImageTags":["f959190926dd3e4d8bb2cac7499e37a4"],"ImageBlurHashes":{"Backdrop":{"f959190926dd3e4d8bb2cac7499e37a4":"WaGI4M%g~q-;-=%g^*e.t7WVE2RktRs.X9oJR-RjX8WWt7a|ozs."},"Primary":{"edfa72a1f0d90f742a570e4b419cf0bc":"dIGIca%2t7%Ls:o0ogxv00fk9GIUenIUt7V@IUt7t7-;"}},"LocationType":"FileSystem","MediaType":"Video"},"fcd08f1fbbc86ceb8dad2259d462c542":{"Name":"Kill Bill: Vol. 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fcd08f1fbbc86ceb8dad2259d462c542","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2004-04-15T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.9,"RunTimeTicks":82178351104,"ProductionYear":2004,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"393"},"VideoType":"VideoFile","ImageTags":{"Primary":"0b8ec78ee54bdc788e79c2bd3cf8a104","Art":"f07f5d019e06ec0db8bbc3ff5bdd8b68","Banner":"c4f11db11551ac6cbc842957296b40de","Disc":"30a71cf150639afac745d3c749202eb8","Logo":"0b8ec78ee54bdc788e79c2bd3cf8a104","Thumb":"d798fa8eee04b49812f16ccab142a8c5"},"BackdropImageTags":["b698d81ebbde0c38250ea5f1c53e610b"],"ImageBlurHashes":{"Backdrop":{"b698d81ebbde0c38250ea5f1c53e610b":"WTAl?podWBs,ofj[=^j@jYoca}j[9zazj?WCWXf80jWWR-NJocj@"},"Primary":{"0b8ec78ee54bdc788e79c2bd3cf8a104":"dlM:=t|[#pr[-+SzjFNe$MM}SL$%;7raX5XQ,ta$Syoc"},"Art":{"f07f5d019e06ec0db8bbc3ff5bdd8b68":"N*PZJdxrS6jX%MM{-:RPt6s:RjoM%%%NV?R+bIj="},"Banner":{"c4f11db11551ac6cbc842957296b40de":"HQF5vm9W?Gn:03$-E2xWkS$[.6xVIWE9M#Iq%1t3"},"Disc":{"30a71cf150639afac745d3c749202eb8":"ehM$e[xptVM#yW$_bYNyn%nPuPR*%fofjFv~aeSiWFo]ObRl$woeRP"},"Logo":{"0b8ec78ee54bdc788e79c2bd3cf8a104":"OYKnN|-:E7t005IWIY?PM{Rl%KRpWFah4zt8t5NGt1WBoc"},"Thumb":{"d798fa8eee04b49812f16ccab142a8c5":"NmOd5H}:%wIsztr@^fR%ovr@M~s:+eM+NbxZoJb?"}},"LocationType":"FileSystem","MediaType":"Video"},"fd1bad39ff8a39d43186a58055ff9d6e":{"Name":"Marathon Man","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fd1bad39ff8a39d43186a58055ff9d6e","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"1976-10-07T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.3,"RunTimeTicks":75236048896,"ProductionYear":1976,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"10518"},"VideoType":"VideoFile","ImageTags":{"Primary":"7ebe934373ca609334fc666bf455ca34"},"BackdropImageTags":["cfe53080fa57caf475c6b4ee88525f99"],"ImageBlurHashes":{"Backdrop":{"cfe53080fa57caf475c6b4ee88525f99":"WRHeUg~Wtm_N?vxu_3RPRO-;NHD*V@n#DiX8E1D%%1xtIoayxuV@"},"Primary":{"7ebe934373ca609334fc666bf455ca34":"dL9tGoayD%xuIUayj[WB00f6%MRj_3ofWBt7xuj[RjWB"}},"LocationType":"FileSystem","MediaType":"Video"},"fdfeffeb0b8a20ccc66b2287e409707f":{"Name":"Stargate","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fdfeffeb0b8a20ccc66b2287e409707f","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1994-10-26T23:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":7,"RunTimeTicks":77936959488,"ProductionYear":1994,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"2164"},"VideoType":"VideoFile","ImageTags":{"Primary":"17d9d9e1a5bfed79c85569180a3c39ec","Art":"b5fbba8f12668cbc3ab0e991697fdac8","Banner":"e16905d30b5e4cea5dab7cc9e360a9f8","Disc":"90a969a4ceed725532e3acfa683ab7d6","Logo":"b32375a25378179b644c1ff272a690d0","Thumb":"1f211d21fab4b3bb6ee3f27ace04eb01"},"BackdropImageTags":["df5a3c5b06ba405ac9ed0d7f8b591511"],"ImageBlurHashes":{"Backdrop":{"df5a3c5b06ba405ac9ed0d7f8b591511":"W$EMd@xtR*ogW=tSpyt7oMW?j[bdJES4kDbdWCWEn+jsX9kEafWA"},"Primary":{"17d9d9e1a5bfed79c85569180a3c39ec":"dOCQV.xu58WBtno#jEoJ4TWB-mjZ-3n#NHWC-3kCM|t7"},"Art":{"b5fbba8f12668cbc3ab0e991697fdac8":"N$OzPk00IU%M-=%M-;ayWBWBWVj[Rjt7ofWBWBay"},"Banner":{"e16905d30b5e4cea5dab7cc9e360a9f8":"HoFX@[xa0fI:-5$yR;Rlof?IofM{WBn~ofRkV@t7"},"Disc":{"90a969a4ceed725532e3acfa683ab7d6":"eSNl-u%KO]IWTM~TW.IWs8oeK-s,%ijbelRQazX9IXni%hIswa%0aJ"},"Logo":{"b32375a25378179b644c1ff272a690d0":"OAS?DVxuRj%MM{xuM{_3j[ayfQayfQj[~qofofayxuj[xu"},"Thumb":{"1f211d21fab4b3bb6ee3f27ace04eb01":"NnH_}Vxt0gR*eSRj%hozoej@RPoKtnocoLRjtRt6"}},"LocationType":"FileSystem","MediaType":"Video"},"fe0bae01d8325fb15bc6552c00ee29d6":{"Name":"The Girl Who Kicked the Hornet's Nest","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fe0bae01d8325fb15bc6552c00ee29d6","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2009-11-26T23:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":7.1,"RunTimeTicks":88168497152,"ProductionYear":2009,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"33613"},"VideoType":"VideoFile","ImageTags":{"Primary":"cf6166acaf4eaf17c6f8dd394fa13490","Art":"204839affae541e3c7a7ae7ef4f6c8df","Banner":"ea18028d8f60d23f277387c9932bafdc","Disc":"28f9f1d9543e33c1b0563259d88aee38","Logo":"3dba533325d8d4491cfa370b468333b7","Thumb":"f18aa8e0a0661bb397f779e84c478ef1"},"BackdropImageTags":["810b5acf92569807bac0c04eef841951"],"ImageBlurHashes":{"Backdrop":{"810b5acf92569807bac0c04eef841951":"WGAA2MIp0M^*slR-R-RjxZxuM{WB0foI-oIpNHs,-obcIpoIt7fl"},"Primary":{"cf6166acaf4eaf17c6f8dd394fa13490":"d44.3kt60ex@awWBkCxa4pV]-pRQR.s;n$IoSvkBxat5"},"Art":{"204839affae541e3c7a7ae7ef4f6c8df":"NoLz:P~qD%oztRRit7t7ofRjoMof_N-;M{aKt7R*"},"Banner":{"ea18028d8f60d23f277387c9932bafdc":"H66kFvEK~X4nD*Md0e~C56-qX5%3NFbIM_NHVsNG"},"Disc":{"28f9f1d9543e33c1b0563259d88aee38":"eRF~Enw^?wbH%gxaWBoeWVay?^Wo_3oLRPW.S2ofoLa}?vkCRPoKM{"},"Logo":{"3dba533325d8d4491cfa370b468333b7":"OH9Qpxt700Inxut7oykBofayRjafofkBIUj[t7WBxut7Rj"},"Thumb":{"f18aa8e0a0661bb397f779e84c478ef1":"NC8zllS^tS?H0KkDM{M{fls:t7t84.RPRPIo-WWU"}},"LocationType":"FileSystem","MediaType":"Video"},"fe28bf1c2639e0f0f13b0bab8d739d6b":{"Name":"Ghostbusters","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fe28bf1c2639e0f0f13b0bab8d739d6b","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"1984-06-07T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7.4,"RunTimeTicks":63083438080,"ProductionYear":1984,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"620"},"VideoType":"VideoFile","ImageTags":{"Primary":"612e444e4394b27e70f8d49d04fa037b","Art":"e6b941782d8898f7cc8ad8fc24decfbb","Banner":"15b05fb4fea5a389f41752800e75c25d","Disc":"adb7bd3ba8be493b496a2244c72d1525","Logo":"906d8fc19b0622b66829cc9cb509b4b8","Thumb":"886367fe6d20edf1b6f4807c9ba1c97a"},"BackdropImageTags":["adb7bd3ba8be493b496a2244c72d1525"],"ImageBlurHashes":{"Backdrop":{"adb7bd3ba8be493b496a2244c72d1525":"WfCh$wkC0yae=yX8$jWVI:oLxaX8ELj[-VaeNGf+NGj[t7WVV@js"},"Primary":{"612e444e4394b27e70f8d49d04fa037b":"deF4.vxu56i_-VozIoVs0yR*-VWB9ZV@%2b^VsaKbbo}"},"Art":{"e6b941782d8898f7cc8ad8fc24decfbb":"NvMtEqWB_NWBx]-;%MWBxuRiofxuNGt7V@WBRjWB"},"Banner":{"15b05fb4fea5a389f41752800e75c25d":"HF9Gz5%1tk%MWXEzEgxGj=~V%0xtxuX8JUNxt7t6"},"Disc":{"adb7bd3ba8be493b496a2244c72d1525":"edMi$x~C.89Zs:OWjuv~R6WBgN9t.St7X8xajZbvtlX8x]RPaKxaM{"},"Logo":{"906d8fc19b0622b66829cc9cb509b4b8":"O.PjcIf8WCbbR+bHa#ogayayj[ayf7ay~Vj[oKoLsnoLj?"},"Thumb":{"886367fe6d20edf1b6f4807c9ba1c97a":"N99tAM${4.-:E1tl_MM{9GbwbF%MKjNHRONat7xa"}},"LocationType":"FileSystem","MediaType":"Video"},"fe563417b97a5fcd624e64f2e852f62a":{"Name":"Harry Potter and the Deathly Hallows: Part 2","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"fe563417b97a5fcd624e64f2e852f62a","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2011-07-06T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":8.1,"RunTimeTicks":78269112320,"ProductionYear":2011,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12445"},"VideoType":"VideoFile","ImageTags":{"Primary":"15ccb5a0056229e480eead7f0309d020","Art":"a20835d5845da2c69d6ffda9e4748aaf","Banner":"97e69e6d2b2f81bf1b44a0560053c0c3","Disc":"adb1c8a637355cf7788134dbc36dffd8","Logo":"91ffeeac54e261c81726e7f588753148","Thumb":"4744a7ff58d3ec6a963eedf401a2919e"},"BackdropImageTags":["75c70a4f230e5117676380f522dd76fd"],"ImageBlurHashes":{"Backdrop":{"75c70a4f230e5117676380f522dd76fd":"WUAA~.xu8wMeyDyCxuoyRPRPkCozRjayofj?aKRj%2j[NGfkofay"},"Primary":{"15ccb5a0056229e480eead7f0309d020":"dbEMRX-VRjj[.TNGIoofOZIoRjofsWspxZofE1NaWWWB"},"Art":{"a20835d5845da2c69d6ffda9e4748aaf":"NyI#S??GxbV?o|R-~Wxus=V@oyWXozo}kDR%adae"},"Banner":{"97e69e6d2b2f81bf1b44a0560053c0c3":"HSB#S4x]Hrs:HsRQbbMKgN?^t7MytRRPRjV@Mdf+"},"Disc":{"adb1c8a637355cf7788134dbc36dffd8":"eXJ%:*R*?ws-%gt6oKazWCj[?wsl.8R-s+njWBbbj[WU-=RkjEoLIU"},"Logo":{"91ffeeac54e261c81726e7f588753148":"OXLXVw%M_3IU?ct7?bM_M{ofxuofofj]~q%MWBM{M{WBRk"},"Thumb":{"4744a7ff58d3ec6a963eedf401a2919e":"NNB;,jozL~t7H@t7?]ofVst7M{niIURQs:bHtRoy"}},"LocationType":"FileSystem","MediaType":"Video"},"feb9aa752fbf37d033c7c4b658ab8f41":{"Name":"Crimson Peak","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"feb9aa752fbf37d033c7c4b658ab8f41","HasSubtitles":true,"Container":"mkv,webm","PremiereDate":"2015-10-12T22:00:00.0000000Z","OfficialRating":"R","ChannelId":null,"CommunityRating":6.6,"RunTimeTicks":71237443584,"ProductionYear":2015,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"201085"},"VideoType":"VideoFile","ImageTags":{"Primary":"31b48f52311539b8ce328387c3858f03"},"BackdropImageTags":["2f33531416f1dc94b8f644d73bc84de8"],"ImageBlurHashes":{"Backdrop":{"2f33531416f1dc94b8f644d73bc84de8":"WB8p=ar=0epcE2H?bDo}s;Z#RkkXM{WXt7i_WUtRWFaeNGX8xts9"},"Primary":{"31b48f52311539b8ce328387c3858f03":"dB9Zo{eTE1t,~VoNM{baI-tmWVIANGkqogMxkYjEWBbc"}},"LocationType":"FileSystem","MediaType":"Video"},"ff4779e7caeb3f8cc7abf02192d73d3e":{"Name":"Miss Peregrine's Home for Peculiar Children","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ff4779e7caeb3f8cc7abf02192d73d3e","Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2016-09-26T22:00:00.0000000Z","OfficialRating":"PG-13","ChannelId":null,"CommunityRating":6.8,"RunTimeTicks":76157018112,"ProductionYear":2016,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"283366"},"VideoType":"VideoFile","ImageTags":{"Primary":"1a9d6f7ef8798e1fc1a45b663ad5589f"},"BackdropImageTags":["fafcc9d9a0de9733d80d3418cf326d42"],"ImageBlurHashes":{"Backdrop":{"fafcc9d9a0de9733d80d3418cf326d42":"WTC?ld.7R*%LR+Ri~o%MNH%2t7NG-;xtRjxuxtNG%Mj@WAt7kCWV"},"Primary":{"1a9d6f7ef8798e1fc1a45b663ad5589f":"d#I5VkxuR+xu~poyR,ozozWBj]bHjZWVt7ofxukCofj["}},"LocationType":"FileSystem","MediaType":"Video"},"ff7b569f2c5d01e596bff9a6d153bfeb":{"Name":"Stargate: Continuum","ServerId":"0dc44b5426c64b58af8ae9161abac7e4","Id":"ff7b569f2c5d01e596bff9a6d153bfeb","HasSubtitles":true,"Container":"mov,mp4,m4a,3gp,3g2,mj2","PremiereDate":"2008-07-28T22:00:00.0000000Z","OfficialRating":"PG","ChannelId":null,"CommunityRating":7,"RunTimeTicks":59156590592,"ProductionYear":2008,"IsFolder":false,"Type":"Movie","UserData":{"PlaybackPositionTicks":0,"PlayCount":0,"IsFavorite":false,"Played":false,"Key":"12914"},"VideoType":"VideoFile","ImageTags":{"Primary":"62f8bfd4b701dd348acaefd2a047d535","Art":"061d392e3604403a9140c77d30af7fe8","Banner":"0268281973d4abe7804d6fac1f00f79a","Disc":"daf87c4c28c0b8c119d9cfe117c5726f","Logo":"25d986910206fc4dc015f446ef6858cb","Thumb":"02518b7b175e3c57b971b1d169f61949"},"BackdropImageTags":["4658a4aeb46f63dcf8b937fd8c4b42b2"],"ImageBlurHashes":{"Backdrop":{"4658a4aeb46f63dcf8b937fd8c4b42b2":"WUH{f~tS4og5t7R+4TxuITM{RiRiI9M{odxZxsxux_j[%LV[R*t8"},"Primary":{"62f8bfd4b701dd348acaefd2a047d535":"dyI6D^x^NHo}4TWXfjV@aJf5t7t7t7WAt7ofM_s,WBRj"},"Art":{"061d392e3604403a9140c77d30af7fe8":"NHH27n^+bw-po#Rk_4t7fkWWWBV@Xma{xZRjjYjF"},"Banner":{"0268281973d4abe7804d6fac1f00f79a":"HlF$x9NGab?GIUt8s%xWRi%jW?RixaROM{t7adM{"},"Disc":{"daf87c4c28c0b8c119d9cfe117c5726f":"eFFix{?wrpRPe78{M|_NxtxZ_LoH%MtSNIx9ofWFRjbZQ,s:V?%1X9"},"Logo":{"25d986910206fc4dc015f446ef6858cb":"O-QchtWBxuj[j[ofayxuofogayayj[ay_4ofRjj[ayj[j["},"Thumb":{"02518b7b175e3c57b971b1d169f61949":"NTEMLI-;IAt8RiM_%%o#MwWEWARP9#R-V?WBWBRi"}},"LocationType":"FileSystem","MediaType":"Video"}} \ No newline at end of file diff --git a/stats/qbt_hist.json b/stats/qbt_hist.json new file mode 100644 index 0000000..dd99130 --- /dev/null +++ b/stats/qbt_hist.json @@ -0,0 +1 @@ +{"t":[1631138513.856375],"dl":[0.0],"ul":[258608.0],"dl_size":[28783725830170],"ul_size":[11341122517104],"dl_size_sess":[516489974112],"ul_size_sess":[398693624144],"connections":[62.0],"bw_per_conn":[4171.096774193548],"dht_nodes":[378]} \ No newline at end of file diff --git a/stats_collect.py b/stats_collect.py index bc1309d..a2fc8f8 100644 --- a/stats_collect.py +++ b/stats_collect.py @@ -1,15 +1,19 @@ -import pylab as PL -from matplotlib.ticker import EngFormatter -from base64 import b64encode -from api import Client -from utils import handle_config -import time -import json import io import os -from urllib.parse import quote -from datetime import datetime +import shutil +import threading +import time +from base64 import b64encode from concurrent.futures import ThreadPoolExecutor, as_completed +from datetime import datetime +from urllib.parse import quote + +import pylab as PL +import ujson as json +from matplotlib.ticker import EngFormatter + +from api import Client +from utils import handle_config mpl_style = "dark_background" @@ -17,14 +21,15 @@ smoothness = 5 def make_svg(data, dtype): - data_uri = "data:{};base64,{}".format(dtype, quote(str(b64encode(data), "ascii"))) + data_uri = "data:{};base64,{}".format( + dtype, quote(str(b64encode(data), "ascii"))) return ''.format(data_uri) def make_smooth(data, window_size): ret = [] for i, _ in enumerate(data): - block = data[i : i + window_size] + block = data[i: i + window_size] ret.append(sum(block) / len(block)) return ret @@ -93,7 +98,8 @@ def histogram(values, bins, title=None, color="#eee", unit=""): def prc_label(label, idx, values): - return "{} ({}, {:.2%}%)".format(label, values[idx], values[idx] / sum(values)) + return "{} ({}, {:.2%}%)".format( + label, values[idx], values[idx] / sum(values)) def byte_labels(label, idx, values): @@ -104,11 +110,11 @@ def byte_labels(label, idx, values): values[idx] /= 1024 i += 1 val = "{:.2f} {}iB".format(values[idx], suffix[i]) - return "{} ({}, {:.2%}%)".format(label, val, orig_values[idx] / sum(orig_values)) + return "{} ({}, {:.2%}%)".format( + label, val, orig_values[idx] / sum(orig_values)) def byte_rate_labels(label, idx, values): - orig_values = list(values) suffix = ["", "K", "M", "G", "T", "P", "E"] i = 0 while values[idx] > 1024 and i < len(suffix): @@ -147,7 +153,7 @@ def piechart(items, title=None, labelfunc=prc_label, sort=True): return make_svg(fig.getvalue(), "image/svg+xml") -hist = { +qbt_hist = { "t": [], "dl": [], "ul": [], @@ -162,59 +168,87 @@ hist = { def update_qbt_hist(stats, limit=1024): - global hist + global qbt_hist data = stats["qbt"]["status"] - hist["t"].append(time.time()) - hist["dl"].append(data["server_state"]["dl_info_speed"]) - hist["ul"].append(data["server_state"]["up_info_speed"]) - hist["dl_size"].append(data["server_state"]["alltime_dl"]) - hist["ul_size"].append(data["server_state"]["alltime_ul"]) - hist["dl_size_sess"].append(data["server_state"]["dl_info_data"]) - hist["ul_size_sess"].append(data["server_state"]["up_info_data"]) - hist["connections"].append(data["server_state"]["total_peer_connections"]) - hist["dht_nodes"].append(data["server_state"]["dht_nodes"]) - hist["bw_per_conn"].append( - (data["server_state"]["dl_info_speed"] + data["server_state"]["up_info_speed"]) - / data["server_state"]["total_peer_connections"] - ) - for k in hist: - hist[k] = hist[k][-limit:] + qbt_hist["t"].append(time.time()) + qbt_hist["dl"].append(data["server_state"]["dl_info_speed"]) + qbt_hist["ul"].append(data["server_state"]["up_info_speed"]) + qbt_hist["dl_size"].append(data["server_state"]["alltime_dl"]) + qbt_hist["ul_size"].append(data["server_state"]["alltime_ul"]) + qbt_hist["dl_size_sess"].append(data["server_state"]["dl_info_data"]) + qbt_hist["ul_size_sess"].append(data["server_state"]["up_info_data"]) + qbt_hist["connections"].append( + data["server_state"]["total_peer_connections"]) + qbt_hist["dht_nodes"].append(data["server_state"]["dht_nodes"]) + qbt_hist["bw_per_conn"].append( + (data["server_state"]["dl_info_speed"] + + data["server_state"]["up_info_speed"]) / + data["server_state"]["total_peer_connections"]) + for k in qbt_hist: + qbt_hist[k] = qbt_hist[k][-limit:] last_idx = 0 - for i, (t1, t2) in enumerate(zip(hist["t"], hist["t"][1:])): + for i, (t1, t2) in enumerate(zip(qbt_hist["t"], qbt_hist["t"][1:])): if abs(t1 - t2) > (60 * 60): # 1h last_idx = i + 1 - for k in hist: - hist[k] = hist[k][last_idx:] - return hist + for k in qbt_hist: + qbt_hist[k] = qbt_hist[k][last_idx:] + return qbt_hist -def collect_stats(): +def qbt_stats(): + cfg = handle_config() + c = Client(cfg) + return {"status": c.qbittorent.status()} + + +def get_base_stats(pool): + cfg = handle_config() + client = Client(cfg) + sonarr = {} + radarr = {} + qbt = {} + jellyfin = {} + sonarr["entries"] = pool.submit(client.sonarr.series) + sonarr["status"] = pool.submit(client.sonarr.status) + sonarr["calendar"] = pool.submit(client.sonarr.calendar) + radarr["entries"] = pool.submit(client.radarr.movies) + radarr["status"] = pool.submit(client.radarr.status) + radarr["calendar"] = pool.submit(client.radarr.calendar) + qbt["status"] = pool.submit(client.qbittorent.status) + t_1 = datetime.today() + jellyfin["library"] = pool.submit(client.jellyfin.get_library) + ret = {} + for d in sonarr, radarr, qbt, jellyfin: + for k, v in d.items(): + if hasattr(v, "result"): + d[k] = v.result() + print("Jellyfin[{}]:".format(k), datetime.today() - t_1) + sonarr["details"] = {} + return { + "sonarr": sonarr, + "radarr": radarr, + "qbt": qbt, + "jellyfin": jellyfin} + + +def collect_stats(pool): from collections import Counter PL.clf() cfg = handle_config() c = Client(cfg) - series={} - movies={} - data = { - "radarr": {"entries": c.radarr.movies(), "status": c.radarr.status()}, - "sonarr": { - "entries": c.sonarr.series(), - "status": c.sonarr.status(), - "details": {}, - }, - "qbt": {"status": c.qbittorent.status()}, - } + series = {} + movies = {} + data = get_base_stats(pool) for show in data["sonarr"]["entries"]: - series[show["id"]]=show + series[show["id"]] = show for movie in data["radarr"]["entries"]: - movies[movie["id"]]=movie + movies[movie["id"]] = movie torrent_states = {} torrent_categories = {} for torrent in data["qbt"]["status"]["torrents"].values(): - state = c.qbittorent.status_map.get(torrent["state"], (torrent["state"], None))[ - 0 - ] + state = c.qbittorent.status_map.get( + torrent["state"], (torrent["state"], None))[0] category = torrent["category"] or "" torrent_states.setdefault(state, 0) torrent_categories.setdefault(category, 0) @@ -234,14 +268,44 @@ def collect_stats(): else: radarr_stats["missing"] += 1 sizes["Movies"] += movie.get("movieFile", {}).get("size", 0) - vbr = movie.get("movieFile", {}).get("mediaInfo", {}).get("videoBitrate", None) - abr = movie.get("movieFile", {}).get("mediaInfo", {}).get("audioBitrate", None) - acodec = movie.get("movieFile", {}).get("mediaInfo", {}).get("audioCodec", None) - vcodec = movie.get("movieFile", {}).get("mediaInfo", {}).get("videoCodec", None) - fmt = movie.get("movieFile", {}).get("relativePath", "").split(".")[-1].lower() + vbr = movie.get( + "movieFile", + {}).get( + "mediaInfo", + {}).get( + "videoBitrate", + None) + abr = movie.get( + "movieFile", + {}).get( + "mediaInfo", + {}).get( + "audioBitrate", + None) + acodec = movie.get( + "movieFile", + {}).get( + "mediaInfo", + {}).get( + "audioCodec", + None) + vcodec = movie.get( + "movieFile", + {}).get( + "mediaInfo", + {}).get( + "videoCodec", + None) + fmt = movie.get("movieFile", {}).get( + "relativePath", "").split(".")[-1].lower() qual = ( - movie.get("movieFile", {}).get("quality", {}).get("quality", {}).get("name") - ) + movie.get( + "movieFile", + {}).get( + "quality", + {}).get( + "quality", + {}).get("name")) if qual: qualities.append(qual) if acodec: @@ -260,50 +324,68 @@ def collect_stats(): formats.append(fmt) sonarr_stats = {"missing": 0, "available": 0} info_jobs = [] - with ThreadPoolExecutor(16) as pool: - for show in data["sonarr"]["entries"]: - info_jobs.append(pool.submit(c.sonarr.series, show["id"])) - for job, show in zip( - as_completed(info_jobs), - data["sonarr"]["entries"], - ): - info = job.result() - data["sonarr"]["details"][show["id"]] = info - for file in info["episodeFile"]: - vbr = file.get("mediaInfo", {}).get("videoBitrate", None) - abr = file.get("mediaInfo", {}).get("audioBitrate", None) - acodec = file.get("mediaInfo", {}).get("audioCodec", None) - vcodec = file.get("mediaInfo", {}).get("videoCodec", None) - fmt = file.get("relativePath", "").split(".")[-1].lower() - qual = file.get("quality", {}).get("quality", {}).get("name") - sizes["Shows"] += file.get("size", 0) - if qual: - qualities.append(qual) - if acodec: - acodecs.append(acodec) - if vcodec: - if vcodec.lower() in ["x265", "h265", "hevc"]: - vcodec = "H.265" - if vcodec.lower() in ["x264", "h264"]: - vcodec = "H.264" - vcodecs.append(vcodec) - if vbr: - vbitrates.append(vbr) - if abr: - abitrates.append(abr) - if fmt: - formats.append(fmt) - for season in show.get("seasons", []): - stats = season.get("statistics", {}) - sonarr_stats["missing"] += ( - stats["totalEpisodeCount"] - stats["episodeFileCount"] - ) - sonarr_stats["available"] += stats["episodeFileCount"] - hist = update_qbt_hist(data) + for show in data["sonarr"]["entries"]: + info_jobs.append(pool.submit(c.sonarr.series, show["id"])) + t_1 = datetime.today() + for job, show in zip( + as_completed(info_jobs), + data["sonarr"]["entries"], + ): + info = job.result() + data["sonarr"]["details"][show["id"]] = info + for file in info["episodeFile"]: + vbr = file.get("mediaInfo", {}).get("videoBitrate", None) + abr = file.get("mediaInfo", {}).get("audioBitrate", None) + acodec = file.get("mediaInfo", {}).get("audioCodec", None) + vcodec = file.get("mediaInfo", {}).get("videoCodec", None) + fmt = file.get("relativePath", "").split(".")[-1].lower() + qual = file.get("quality", {}).get("quality", {}).get("name") + sizes["Shows"] += file.get("size", 0) + if qual: + qualities.append(qual) + if acodec: + acodecs.append(acodec) + if vcodec: + if vcodec.lower() in ["x265", "h265", "hevc"]: + vcodec = "H.265" + if vcodec.lower() in ["x264", "h264"]: + vcodec = "H.264" + vcodecs.append(vcodec) + if vbr: + vbitrates.append(vbr) + if abr: + abitrates.append(abr) + if fmt: + formats.append(fmt) + for season in show.get("seasons", []): + stats = season.get("statistics", {}) + sonarr_stats["missing"] += ( + stats["totalEpisodeCount"] - stats["episodeFileCount"] + ) + sonarr_stats["available"] += stats["episodeFileCount"] + print("Sonarr:", datetime.today() - t_1) + qbt_hist = update_qbt_hist(data) + calendar = {"movies": [], "episodes": []} + for movie in data.get("radarr", {}).pop("calendar", []): + calendar["movies"].append(movie) + for episode in data.get("sonarr", {}).pop("calendar", []): + t = episode["airDateUtc"].rstrip("Z").split(".")[0] + t = datetime.strptime(t, "%Y-%m-%dT%H:%M:%S") + episode["hasAired"] = datetime.today() > t + details = c.sonarr.details(episode["id"]) + calendar["episodes"].append( + { + "episode": episode, + "details": details, + "series": series[episode["seriesId"]], + } + ) + library = data.pop("jellyfin", {}).pop("library", None) sonarr_stats["available"] = (sonarr_stats["available"], "#5f5") sonarr_stats["missing"] = (sonarr_stats["missing"], "#f55") radarr_stats["available"] = (radarr_stats["available"], "#5f5") radarr_stats["missing"] = (radarr_stats["missing"], "#f55") + t_1 = datetime.today() imgs = [ [ "Media", @@ -322,88 +404,105 @@ def collect_stats(): piechart(torrent_states, "Torrents"), piechart(torrent_categories, "Torrent categories"), piechart( - {"Upload": hist["ul"][-1]+0.0, "Download": hist["dl"][-1]+0.0}, + { + "Upload": qbt_hist["ul"][-1] + 0.0, + "Download": qbt_hist["dl"][-1] + 0.0, + }, "Bandwidth utilization", byte_rate_labels, sort=False, ), stackplot( - hist, + qbt_hist, {"Download": "dl", "Upload": "ul"}, "Transfer speed", unit="b/s", smooth=smoothness, ), stackplot( - hist, + qbt_hist, {"Download": "dl_size_sess", "Upload": "ul_size_sess"}, "Transfer volume (Session)", unit="b", ), stackplot( - hist, + qbt_hist, {"Download": "dl_size", "Upload": "ul_size"}, "Transfer volume (Total)", unit="b", ), lineplot( - hist, + qbt_hist, {"Connections": "connections"}, "Peers", unit=None, smooth=smoothness, ), lineplot( - hist, + qbt_hist, {"Bandwidth per connection": "bw_per_conn"}, "Connections", unit="b/s", smooth=smoothness, ), - lineplot(hist, {"DHT Nodes": "dht_nodes"}, "DHT", unit=None), + lineplot(qbt_hist, {"DHT Nodes": "dht_nodes"}, "DHT", unit=None), ], ] - calendar = {"movies":[],"episodes":[]} - for movie in c.radarr.calendar(): - calendar["movies"].append(movie) - for episode in c.sonarr.calendar(): - t = episode['airDateUtc'].rstrip("Z").split(".")[0] - t = datetime.strptime(t, "%Y-%m-%dT%H:%M:%S") - episode['hasAired']=datetime.today()>t - calendar["episodes"].append({"episode":episode,"series":series[episode["seriesId"]]}) - return {"data": data, "images": imgs, "hist": hist,"calendar": calendar} - - -if os.path.isfile("stats.json"): - with open("stats.json", "r") as of: - try: - hist = json.load(of)["hist"] - except Exception as e: - print("Error loading history:", str(e)) + print("Diagrams:", datetime.today() - t_1) + return { + "data": data, + "images": imgs, + "qbt_hist": qbt_hist, + "calendar": calendar, + "library": library, + } def update(): - print("Updating...") try: - stats = collect_stats() + with ThreadPoolExecutor(16) as pool: + stats = collect_stats(pool) except Exception as e: - print("Error collectin statistics:", str(e)) + print("Error collectin statistics:", e) stats = None if stats: - with open("stats_temp.json", "w") as of: - json.dump(stats, of) - open("stats.lock", "w").close() - if os.path.isfile("stats.json"): - os.unlink("stats.json") - os.rename("stats_temp.json", "stats.json") - os.unlink("stats.lock") + for k, v in stats.items(): + with open("stats/{}_temp.json".format(k), "w") as of: + json.dump(v, of) + shutil.move( + "stats/{}_temp.json".format(k), + "stats/{}.json".format(k)) print("Done!") + def loop(seconds): - while True: - update() - time.sleep(seconds) + t_start = time.time() + print("Updating") + update() + dt = time.time() - t_start + print("Next update in", seconds - dt) + t = threading.Timer(seconds - dt, loop, (seconds,)) + t.start() -if __name__=="__main__": - update() \ No newline at end of file +class Stats(object): + def __init__(self): + self.override = {} + + def __setitem__(self, key, value): + if os.path.isfile("stats/{}.json".format(key)): + self.override[key] = value + + def __getitem__(self, key): + try: + with open("stats/{}.json".format(key)) as fh: + if key in self.override: + return self.override[key] + return json.load(fh) + except Exception as e: + print("Error opening stats file:", key, e) + return [] + + +if __name__ == "__main__": + update() diff --git a/templates/base.html b/templates/base.html index cf117d3..2e86cae 100644 --- a/templates/base.html +++ b/templates/base.html @@ -10,21 +10,21 @@ {{ bootstrap.load_css() }} {% endblock %} + MediaDash {% endblock %} {% block navbar %} - + {% endblock %} {% block content %}
diff --git a/templates/containers/index.html b/templates/containers/index.html index 89f2c34..2b5908e 100644 --- a/templates/containers/index.html +++ b/templates/containers/index.html @@ -30,7 +30,7 @@

Portainer

- +
@@ -42,7 +42,7 @@ {% set label = container.Labels["com.docker.compose.service"] %} diff --git a/templates/error.html b/templates/error.html new file mode 100644 index 0000000..8a8da7a --- /dev/null +++ b/templates/error.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% from 'utils.html' import custom_render_form_row,make_tabs %} + +{% block app_content %} +
+

Oops

+
+{% endblock %} diff --git a/templates/index.html b/templates/index.html index 74c1ce8..e030277 100644 --- a/templates/index.html +++ b/templates/index.html @@ -41,62 +41,89 @@

Movies

-
Name
- + {{container.Labels["com.docker.compose.project"]}}/{{container.Labels["com.docker.compose.service"]}}
+
+ {% for movie in data.calendar.movies %} {% if movie.isAvailable and movie.hasFile %} - {% set row_class = "bg-success" %} + {% set row_attrs = "bg-success" %} {% elif movie.isAvailable and not movie.hasFile %} - {% set row_class = "bg-danger" %} + {% set row_attrs = "bg-danger" %} {% elif not movie.isAvailable and movie.hasFile %} - {% set row_class = "bg-primary" %} + {% set row_attrs = "bg-primary" %} {% elif not movie.isAvailable and not movie.hasFile %} - {% set row_class = "bg-info" %} + {% set row_attrs = "bg-info" %} {% endif %} - + + - + {% if movie.digitalRelease %} + + {% else %} + + {% endif %} {% endfor %}
TitleStatus In Cinemas Digital Release
- + {{movie.title}} {{movie.status}} {{movie.inCinemas|fromiso|ago_dt_utc_human(rnd=0)}}{{movie.digitalRelease|fromiso|ago_dt_utc_human(rnd=0)}}{{movie.digitalRelease|fromiso|ago_dt_utc_human(rnd=0)}}Unknown

Episodes

- +
+ {% for entry in data.calendar.episodes %} - {% if entry.episode.hasAired and entry.episode.hasFile %} - {% set row_class = "bg-success" %} - {% elif entry.episode.hasAired and not entry.episode.hasFile %} - {% set row_class = "bg-danger" %} - {% elif not entry.episode.hasAired and entry.episode.hasFile %} - {% set row_class = "bg-primary" %} - {% elif not entry.episode.hasAired and not entry.episode.hasFile %} - {% set row_class = "bg-info" %} - {% endif %} - - - - - - + {% if entry.details %} + {% set details = entry.details[0] %} + {% endif %} + {% if entry.episode.hasAired and entry.episode.hasFile %} + {% set row_attrs = {"class":"bg-success"} %} + {% elif entry.episode.hasAired and not entry.episode.hasFile and details %} + {% set row_attrs = {"style":"background-color: green !important"} %} + {% elif entry.episode.hasAired and not entry.episode.hasFile %} + {% set row_attrs = {"class":"bg-danger"} %} + {% elif not entry.episode.hasAired and entry.episode.hasFile %} + {% set row_attrs = {"class":"bg-primary"} %} + {% elif not entry.episode.hasAired and not entry.episode.hasFile %} + {% set row_attrs = {"class":"bg-info"} %} + {% endif %} + + + + + + + {% endfor %}
Season | Episode Number Show TitleStatus Air Date
{{entry.episode.seasonNumber}} | {{entry.episode.episodeNumber}} - - {{entry.series.title}} - - {{entry.episode.title}}{{entry.episode.airDateUtc|fromiso|ago_dt_utc_human(rnd=0)}}
{{entry.episode.seasonNumber}} | {{entry.episode.episodeNumber}} + + {{entry.series.title}} + + {{entry.episode.title}} + {% if details %} + {% set details = entry.details[0] %} + {% set dl_prc =((details.size-details.sizeleft)/details.size)*100|round(2) %} + {{details.status}} ({{dl_prc|round(2)}} %) + {% elif row_attrs.class=="bg-success" %} + downloaded + {% elif row_attrs.class=="bg-danger" %} + not downloaded + {% elif row_attrs.class=="bg-primary" %} + leaked? + {% elif row_attrs.class=="bg-info" %} + not aired + {% endif %} + {{entry.episode.airDateUtc|fromiso|ago_dt_utc_human(rnd=0)}}
@@ -109,7 +136,7 @@

No Data available!

{% else %} {% set tabs = [] %} - {% do tabs.append(("Upcoming",[upcoming(data)])) %} + {% do tabs.append(("Schedule",[upcoming(data)])) %} {% for row in data.images %} {% if row[0] is string %} {% set title=row[0] %} diff --git a/templates/jellyfin/details.html b/templates/jellyfin/details.html new file mode 100644 index 0000000..136706c --- /dev/null +++ b/templates/jellyfin/details.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% from 'utils.html' import custom_render_form_row,make_tabs %} +{% from 'bootstrap/utils.html' import render_icon %} +{% from 'bootstrap/form.html' import render_form, render_field, render_form_row %} + +{% block app_content %} + +

Jellyfin v{{info.Version}}

+{% if status.HasUpdateAvailable %} +

Update available

+{% endif %} +{% if status.HasPendingRestart %} +

Restart pending

+{% endif %} + + + +
{{item|pformat}}
+ +{% endblock %} \ No newline at end of file diff --git a/templates/jellyfin/index.html b/templates/jellyfin/index.html index 09c68d5..1b024bc 100644 --- a/templates/jellyfin/index.html +++ b/templates/jellyfin/index.html @@ -3,119 +3,80 @@ {% from 'bootstrap/utils.html' import render_icon %} {% from 'bootstrap/form.html' import render_form, render_field, render_form_row %} +{% macro make_row(title,items) %} +
+ {% for item in items %} + {{item|safe}} + {% endfor %} +
+{% endmacro %} + +{% macro make_tabs(tabs) %} +
+
+ +
+
+ +
+ {% for (label,items) in tabs %} + {% set slug = (label|slugify) %} +
+ {{make_row(label,items)}} +
+ {% endfor %} +
+{% endmacro %} + +{% macro make_table(items) %} + + {% for item in items|sort(attribute="Name")%} + + + + {% endfor %} +
{{item.Name}} ({{item.ProductionYear}})
+{% endmacro %} + {% block app_content %} +

Jellyfin v{{info.Version}}

+ {% if status.HasUpdateAvailable %} +

Update available

+ {% endif %} + {% if status.HasPendingRestart %} +

Restart pending

+ {% endif %} -

Jellyfin v{{jellyfin.info.Version}}

+

Library statistics

-
-
-

Active Streams

- - - - - - - - - - {% for session in jellyfin.sessions %} - {% if "NowPlayingItem" in session %} - {% with np=session.NowPlayingItem, ps=session.PlayState%} - - - - - - - - - {% endwith %} - {% endif %} +
EpisodeShowLanguageUserDeviceMode
- {% if session.SupportsMediaControl %} - - {{render_icon("stop-circle")}} - - {% endif %} - - {{np.Name}} - - ({{(ps.PositionTicks/10_000_000)|timedelta(digits=0)}}/{{(np.RunTimeTicks/10_000_000)|timedelta(digits=0)}}) - {% if ps.IsPaused %} - (Paused) - {% endif %} - - - {{np.SeriesName}} - - - ({{np.SeasonName}}) - - - - {% if ("AudioStreamIndex" in ps) and ("SubtitleStreamIndex" in ps) %} - {{np.MediaStreams[ps.AudioStreamIndex].Language or "None"}}/{{np.MediaStreams[ps.SubtitleStreamIndex].Language or "None"}} - {% else %} - Unk/Unk - {% endif %} - - - {{session.UserName}} - - - {{session.DeviceName}} - - {% if ps.PlayMethod =="Transcode" %} -

- {{ps.PlayMethod}} -

- {% else %} -

- {{ps.PlayMethod}} -

- {% endif %} -
+ {% for name, value in counts.items() %} + {% if value != 0 %} + + + + + {% endif %} {% endfor %} -
{{name}}{{value}}
-
-
+ + {% if library %} +

{{library|count}} Items

+ {% endif %} -
-
-

Users

- - - - - - - - {% for user in jellyfin.users|sort(attribute="LastLoginDate",reverse=True) %} - - - - - - - {% endfor %} -
NameLast LoginLast ActiveBandwidth Limit
- - {{user.Name}} - - - {% if "LastLoginDate" in user %} - {{user.LastLoginDate|fromiso|ago_dt_utc(2)}} ago - {% else %} - Never - {% endif %} - - {% if "LastActivityDate" in user %} - {{user.LastActivityDate|fromiso|ago_dt_utc(2)}} ago - {% else %} - Never - {% endif %} - {{user.Policy.RemoteClientBitrateLimit|filesizeformat(binary=False)}}/s
-
-
- -{% endblock %} \ No newline at end of file + {% set tabs = [] %} + {% for title,group in library.values()|groupby("Type") %} + {% do tabs.append((title,[make_table(group)])) %} + {% endfor %} + {{make_tabs(tabs)}} +{% endblock %} diff --git a/templates/jellyfin/movie.html b/templates/jellyfin/movie.html new file mode 100644 index 0000000..385b293 --- /dev/null +++ b/templates/jellyfin/movie.html @@ -0,0 +1,56 @@ +{% extends "base.html" %} +{% from 'utils.html' import custom_render_form_row,make_tabs %} +{% from 'bootstrap/utils.html' import render_icon %} +{% from 'bootstrap/form.html' import render_form, render_field, render_form_row %} + +{% block app_content %} + +

Jellyfin v{{info.Version}}

+{% if status.HasUpdateAvailable %} +

Update available

+{% endif %} +{% if status.HasPendingRestart %} +

Restart pending

+{% endif %} + +
+
+ {% for ext in item.ExternalUrls %} + {{ext.Name}} + {% endfor %} +
+
+ +

+{{item.Name}} +{% if item.IsHD %} +HD +{% endif %} +

+

{{item.Overview}}

+ +
+ +{# #} + +{% set data = [ + ("Path", item.Path), + ("Genres", item.Genres|join(", ")), +] %} + +
+
+ + {% for k,v in data %} + + + + + {% endfor %} +
{{k}}{{v}}
+
+
+ +
{{item|pformat}}
+ +{% endblock %} \ No newline at end of file diff --git a/templates/jellyfin/series.html b/templates/jellyfin/series.html new file mode 100644 index 0000000..2fc376c --- /dev/null +++ b/templates/jellyfin/series.html @@ -0,0 +1,70 @@ +{% extends "base.html" %} +{% from 'utils.html' import custom_render_form_row,make_tabs %} +{% from 'bootstrap/utils.html' import render_icon %} +{% from 'bootstrap/form.html' import render_form, render_field, render_form_row %} + +{% block app_content %} + +

Jellyfin v{{info.Version}}

+{% if status.HasUpdateAvailable %} +

Update available

+{% endif %} +{% if status.HasPendingRestart %} +

Restart pending

+{% endif %} + +

{{item.Name}}

+ +
+
+ {% for ext in item.ExternalUrls %} + {{ext.Name}} + {% endfor %} +
+
+ +
+ +
+ +

{{item.Overview}}

+ + +
+
+ + + + + +
Path{{item.Path}}
+
+
+ +
+ {% for season in item.Seasons %} +
+
+

{{season.Name}}

+ + {% for episode in season.Episodes %} + + + + {% endfor %} +
{{episode.Name}}
+
+
+ {% endfor %} +
+ + +{% for k,v in item|flatten %} + + + + +{% endfor %} +
{{k}}{{v}}
+ +{% endblock %} \ No newline at end of file diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..c097499 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +{% from 'utils.html' import custom_render_form_row,make_tabs %} + +{% block app_content %} + +
+

Login

+
+ {{form.csrf_token()}} + {{custom_render_form_row([form.username])}} + {{custom_render_form_row([form.password])}} + {{custom_render_form_row([form.remember])}} + {{custom_render_form_row([form.login])}} +
+
+{% endblock %} diff --git a/templates/qbittorrent/details.html b/templates/qbittorrent/details.html index c9b5b7d..960704e 100644 --- a/templates/qbittorrent/details.html +++ b/templates/qbittorrent/details.html @@ -208,9 +208,11 @@

Trackers

- - Add default trackers - + {% if current_user.is_admin %} + + Add default trackers + + {% endif %}
diff --git a/templates/qbittorrent/index.html b/templates/qbittorrent/index.html index b67595b..7135492 100644 --- a/templates/qbittorrent/index.html +++ b/templates/qbittorrent/index.html @@ -4,7 +4,7 @@ {% set state_label,badge_type = status_map[torrent.state] or (torrent.state,'light') %}
  • - {{torrent.name|truncate(75)}} + {{torrent.name|truncate(75)}} (DL: {{torrent.dlspeed|filesizeformat(binary=true)}}/s, UL: {{torrent.upspeed|filesizeformat(binary=true)}}/s) {{state_label}} {% if torrent.category %} @@ -27,12 +27,12 @@ {% block app_content %} -

    +

    QBittorrent {{qbt.version}} (DL: {{qbt.server_state.dl_info_speed|filesizeformat(binary=True)}}/s, UL: {{qbt.server_state.up_info_speed|filesizeformat(binary=True)}}/s) -

    +
    @@ -99,7 +99,7 @@ {% set state_label,badge_type = status_map[state] or (state,'light') %}
    {{torrents|length}} @@ -110,7 +110,7 @@ {% if state_filter %}
    diff --git a/templates/radarr/index.html b/templates/radarr/index.html index ed0d839..fddec41 100644 --- a/templates/radarr/index.html +++ b/templates/radarr/index.html @@ -15,10 +15,10 @@ {% endmacro %} {% block app_content %} -

    +

    Radarr v{{status.version}} ({{movies|count}} Movies) -

    +
    diff --git a/templates/remote/index.html b/templates/remote/index.html index ef46980..5f51593 100644 --- a/templates/remote/index.html +++ b/templates/remote/index.html @@ -6,13 +6,13 @@ {% block app_content %}

    -Remote access {{render_icon("person-plus-fill")}} +Remote access {{render_icon("person-plus-fill")}}

    SSH

    - +
    @@ -23,9 +23,9 @@ Remote access {{render_icon("person-plus-fill" @@ -37,17 +37,99 @@ Remote access {{render_icon("person-plus-fill" +
    +
    +

    Active Streams

    +
    Type
    {% if key.disabled %} - {{render_icon("person-x-fill",color='danger')}} + {{render_icon("person-x-fill",color='danger')}} {% else %} - {{render_icon("person-check-fill",color='success')}} + {{render_icon("person-check-fill",color='success')}} {% endif %} {{key.type}}
    + + + + + + + + + {% for session in jellyfin.sessions %} + {% if "NowPlayingItem" in session %} + {% with np=session.NowPlayingItem, ps=session.PlayState%} + + + + + + + + + {% endwith %} + {% endif %} + {% endfor %} +
    EpisodeShowLanguageUserDeviceMode
    + {% if session.SupportsMediaControl %} + + {{render_icon("stop-circle")}} + + {% endif %} + + {{np.Name}} + + ({{(ps.PositionTicks/10_000_000)|timedelta(digits=0)}}/{{(np.RunTimeTicks/10_000_000)|timedelta(digits=0)}}) + {% if ps.IsPaused %} + (Paused) + {% endif %} + + + {{np.SeriesName}} + + + ({{np.SeasonName}}) + + + {% if ("AudioStreamIndex" in ps) and ("SubtitleStreamIndex" in ps) %} + {% if ps.AudioStreamIndex == -1 %} + {% set audio_lang = "-" %} + {% else %} + {% set audio_lang = np.MediaStreams[ps.AudioStreamIndex].Language or "?" %} + {% endif %} + {% if ps.SubtitleStreamIndex == -1 %} + {% set subtitle_lang = "-" %} + {% else %} + {% set subtitle_lang = np.MediaStreams[ps.AudioStreamIndex].Language or "?" %} + {% endif %} + {{audio_lang}}/{{subtitle_lang}} + {% else %} + ?/? + {% endif %} + + + {{session.UserName}} + + + {{session.DeviceName}} + + {% if ps.PlayMethod =="Transcode" %} +

    + {{ps.PlayMethod}} +

    + {% else %} +

    + {{ps.PlayMethod}} +

    + {% endif %} +
    +
    +
    +

    Jellyfin

    - +
    - {% for user in jf|sort(attribute="LastLoginDate",reverse=True) %} + {% for user in jellyfin.users|defaultattr("LastLoginDate","")|sort(attribute="LastLoginDate",reverse=True) %} - + {% endfor %}
    Name Last Login Last Active Bandwidth Limit
    @@ -55,20 +137,26 @@ Remote access {{render_icon("person-plus-fill" - {% if "LastLoginDate" in user %} + {% if user.LastLoginDate %} {{user.LastLoginDate|fromiso|ago_dt_utc(2)}} ago {% else %} Never {% endif %} - {% if "LastActivityDate" in user %} + {% if user.LastActivityDate %} {{user.LastActivityDate|fromiso|ago_dt_utc(2)}} ago {% else %} Never {% endif %} {{user.Policy.RemoteClientBitrateLimit|filesizeformat(binary=False)}}/s + {% if user.Policy.RemoteClientBitrateLimit!=0 %} + {{user.Policy.RemoteClientBitrateLimit|filesizeformat(binary=False)}}/s + {% else %} + None + {% endif %} +
    diff --git a/templates/requests/details.html b/templates/requests/details.html new file mode 100644 index 0000000..4a72f00 --- /dev/null +++ b/templates/requests/details.html @@ -0,0 +1,54 @@ +{% extends "base.html" %} +{% from 'bootstrap/utils.html' import render_icon %} + +{% block app_content %} +

    Request details

    + {% set data = request.data|fromjson%} +
    +
    + {% set label = {True:"Approved",False:"Declined",None:"Pending"}[request.approved] %} + {% set class = {True:"bg-success",False:"bg-danger", None: ""}[request.approved] %} + {% if request.approved and jellyfin_id %} + {% set label = "Approved and Downloaded" %} + {% endif %} + {% if data.tvdbId %} + {% set link="https://www.thetvdb.com/?tab=series&id=%s"|format(data.tvdbId) %} + {% elif data.imdbId %} + {% set link="https://www.imdb.com/title/%s"|format(data.imdbId) %} + {% endif %} +

    Title: {{data.title}} ({{data.year}})

    +

    Type: {{{"sonarr":"TV Show","radarr":"Movie"}.get(request.request_type,"Unknown")}}

    +

    Added: {{request.added_date|ago_dt(0)}} ago

    +

    Status: {{label}}

    +
    +
    +
    +

    {{data.overview}}

    + {% if jellyfin_id %} + Open in Jellyfin + {% endif %} +
    + {% set downloads = (request.downloads|list) %} + {% if downloads %} +

    Downloads

    + + + + + + + {% for download in downloads %} + {% set torrent = download.download.info %} + {% set dl_rate = torrent.downloaded / torrent.time_active %} + {% set eta_act = [0, (torrent.size - torrent.downloaded) / dl_rate]|max %} + + + + + + {% endfor %} +
    NameQualityProgress
    {{download.title}}{{download.quality.quality.name}} + {{(torrent.progress*100)|round(2)}} % (ETA: {{[torrent.eta,eta_act]|min|round(0)|timedelta(clamp=true)}}) +
    + {% endif %} +{% endblock %} diff --git a/templates/requests/index.html b/templates/requests/index.html new file mode 100644 index 0000000..11ab0b7 --- /dev/null +++ b/templates/requests/index.html @@ -0,0 +1,116 @@ +{% extends "base.html" %} +{% from 'utils.html' import custom_render_form_row,make_tabs %} +{% from 'bootstrap/utils.html' import render_icon %} +{% from 'bootstrap/form.html' import render_form, render_field, render_form_row %} + +{% macro search_tab() %} +
    + {{ form.csrf_token() }} + {{ custom_render_form_row([form.query],render_args={'form_type':'horizontal','horizontal_columns':('lg',1,6)}) }} + {{ custom_render_form_row([form.search_type],render_args={'form_type':'horizontal','horizontal_columns':('lg',1,6)}) }} + {{ custom_render_form_row([form.search]) }} +
    + {% if results %} +
    + {{ form.csrf_token() }} + {% if search_type %} + + {% endif %} + + + + + + + {% for result in results %} + {% if result.tvdbId %} + {% set link="https://www.thetvdb.com/?tab=series&id=%s"|format(result.tvdbId) %} + {% elif result.imdbId %} + {% set link="https://www.imdb.com/title/%s"|format(result.imdbId) %} + {% endif %} + {% if result.path %} + {% set style="background-color: darkgreen !important;" %} + {% else %} + {% set style="" %} + {% endif %} + + + + + + {% endfor %} +
    TitleIn CinemasDigital Release
    + {% if result.path %} + + {% else %} + + {% endif %} + {{result.title}} ({{result.year}}) + + {% if result.inCinemas %} + {{result.inCinemas|fromiso}} + {% else %} + None + {% endif %} + + {% if result.digitalRelease %} + {{result.digitalRelease|fromiso}} + {% else %} + None + {% endif %} +
    + +
    + {% endif %} +{% endmacro %} + +{% macro request_queue() %} +
    + {{ form.csrf_token() }} + + + + + {% if current_user.is_admin %} + + {% endif %} + + {% for request in requests %} + {% set data = (request.data|fromjson) %} + {% if request.approved==True %} + + {% elif request.approved==False %} + + {% else %} + + {% endif %} + + + {% if current_user.is_admin %} + + {% endif %} + + {% endfor %} +
    TitleRequested atRequested by
    + {% if current_user.is_admin and request.approved!=True %} + + {% endif %} + {{data.title}} ({{data.year}}) + {{request.added_date}}{{request.users|join(", ",attribute="user_name")}}
    + {% if current_user.is_admin %} + + + {% endif %} +
    +{% endmacro %} + + + +{% block app_content %} +

    Requests

    + {% set requests_tabs = [ + ('Queue',request_queue()), + ('Search',search_tab()), + ] %} + {{ make_tabs(requests_tabs) }} +{% endblock %} diff --git a/templates/search/include/tv_show.html b/templates/search/include/tv_show.html index 2ea7e38..32f602c 100644 --- a/templates/search/include/tv_show.html +++ b/templates/search/include/tv_show.html @@ -2,7 +2,7 @@ {% macro tv_show_results(results) -%}
    {% for result in results %} -
    + diff --git a/templates/search/index.html b/templates/search/index.html index 5cd8a0d..b4f381e 100644 --- a/templates/search/index.html +++ b/templates/search/index.html @@ -27,7 +27,7 @@ diff --git a/templates/sonarr/index.html b/templates/sonarr/index.html index c97bc08..c8aa7f2 100644 --- a/templates/sonarr/index.html +++ b/templates/sonarr/index.html @@ -15,10 +15,10 @@ {% endmacro %} {% block app_content %} -

    +

    Sonarr v{{status.version}} ({{series|count}} Shows) -

    +
    diff --git a/templates/utils.html b/templates/utils.html index 3e905ca..ed1ea83 100644 --- a/templates/utils.html +++ b/templates/utils.html @@ -22,13 +22,15 @@
    @@ -38,10 +40,12 @@
    {% for label,tab in tabs if tab %} - {% set id_name = [loop.index,tabs_id ]|join("-") %} -
    - {{ tab|safe }} -
    + {% if tab %} + {% set id_name = [loop.index,tabs_id ]|join("-") %} +
    + {{ tab|safe }} +
    + {% endif %} {% endfor %}
    diff --git a/transcode.py b/transcode.py index 1894ff1..5ec920a 100644 --- a/transcode.py +++ b/transcode.py @@ -1,12 +1,14 @@ -import subprocess as SP -import json -import shlex -import time -import os import io +import json +import os +import shlex +import subprocess as SP import sys +import time import uuid + from tqdm import tqdm + from utils import handle_config profiles = handle_config().get("transcode_profiles", {}) @@ -32,7 +34,7 @@ def ffprobe(file): out = SP.check_output(cmd) except KeyboardInterrupt: raise - except: + except BaseException: return file, None return file, json.loads(out) @@ -110,7 +112,13 @@ def transcode(file, outfile, profile, job_id=None, **kwargs): info = ffprobe(file) frames = count_frames(file) - progbar = tqdm(desc="Processing {}".format(outfile), total=frames, unit=" frames", disable=False,leave=False) + progbar = tqdm( + desc="Processing {}".format(outfile), + total=frames, + unit=" frames", + disable=False, + leave=False, + ) for state in run_transcode(file, outfile, profile, job_id, **kwargs): if "frame" in state: progbar.n = int(state["frame"]) @@ -132,10 +140,16 @@ if __name__ == "__main__": for profile in ["H.265 transcode", "H.264 transcode"]: for preset in ["ultrafast", "fast", "medium", "slow", "veryslow"]: for crf in list(range(10, 54, 4))[::-1]: - outfile = os.path.join("E:\\","transcode",profile,"{}_{}.mkv".format(crf, preset)) + outfile = os.path.join( + "E:\\", + "transcode", + profile, + "{}_{}.mkv".format( + crf, + preset)) os.makedirs(os.path.dirname(outfile), exist_ok=True) if os.path.isfile(outfile): - print("Skipping",outfile) + print("Skipping", outfile) continue for _ in transcode( file, outfile, profile, "transcode", preset=preset, crf=crf diff --git a/utils.py b/utils.py index 788ea65..0c13d80 100644 --- a/utils.py +++ b/utils.py @@ -1,45 +1,100 @@ -from flask_nav.renderers import Renderer, SimpleRenderer -from dominate import tags -import asteval -import operator as op -import textwrap -import math -import sys -import random -import string -from functools import wraps -from urllib.request import urlopen -from io import BytesIO -import subprocess as SP -import shlex +import base64 +import functools +import hashlib +import inspect import json +import math +import operator as op import os +import random +import shlex +import string +import subprocess as SP +import sys +import textwrap +import time +from datetime import datetime, timedelta +from functools import wraps +from io import BytesIO +from pprint import pformat +from urllib.parse import quote, unquote_plus, urljoin, urlparse +from urllib.request import urlopen -from PIL import Image -from PIL import ImageFont -from PIL import ImageDraw +import asteval +import cachetools +from cachetools import TTLCache +from dominate import tags +from flask import current_app, flash, json, redirect, request +from flask_login import current_user +from flask_login import login_required as _login_required +from flask_nav.renderers import Renderer, SimpleRenderer +from PIL import Image, ImageDraw, ImageFont +from slugify import slugify + + +def is_safe_url(target): + ref_url = urlparse(request.host_url) + test_url = urlparse(urljoin(request.host_url, target)) + return test_url.scheme in ( + "http", "https") and ref_url.netloc == test_url.netloc + + +def admin_required(func): + @functools.wraps(func) + def wrapper(*args, **kwargs): + if current_user.is_authenticated and current_user.is_admin: + return func(*args, **kwargs) + if current_user.is_authenticated: + flash("Insufficient permissions!", "error") + return redirect("/") + return current_app.login_manager.unauthorized() + + wrapper.requires_admin = True + return wrapper + + +def login_required(func): + func = _login_required(func) + func.requires_login = True + return func + + +def timed_cache(**timedelta_kwargs): + kwargs = timedelta_kwargs or {"minutes": 10} + ttl = timedelta(**kwargs).total_seconds() + cache = TTLCache(sys.maxsize, ttl) + + def make_key(*args, **kwargs): + args = list(args) + args[0] = type(args[0]) + return cachetools.keys.hashkey(*args, **kwargs) + + def _wrapper(func): + return cachetools.cached(cache, key=make_key)(func) + + return _wrapper def handle_config(cfg=None): if cfg is None: if os.path.isfile("config.json"): with open("config.json") as fh: - return json.load(fh) + cfg=json.load(fh) with open("config.json", "w") as fh: - cfg = json.dump(cfg, fh, indent=4) - return + json.dump(cfg, fh, indent=4) + return cfg def with_application_context(app): - def inner(func): + def wrapper(func): @wraps(func) - def wrapper(*args, **kwargs): + def wrapped(*args, **kwargs): with app.app_context(): return func(*args, **kwargs) - return wrapper + return wrapped - return inner + return wrapper def getsize(text, font_size): @@ -83,7 +138,7 @@ def make_placeholder_image(text, width, height, poster=None, wrap=0): try: with urlopen(poster) as fh: poster = Image.open(fh) - except Exception as e: + except Exception: poster = None else: poster_size = poster.size @@ -95,7 +150,8 @@ def make_placeholder_image(text, width, height, poster=None, wrap=0): poster = poster.resize(new_size) mid = -int((poster.size[1] - height) / 2) im.paste(poster, (0, mid)) - draw.text(((width - w) / 2, (height - h) / 2), text, fill="#eee", font=font) + draw.text(((width - w) / 2, (height - h) / 2), + text, fill="#eee", font=font) im.save(io, "PNG") io.seek(0) return io @@ -123,12 +179,26 @@ class BootsrapRenderer(Renderer): ret = tags.ul(sub, cls="navbar-nav mr-auto") return ret + def visit_Text(self, node): + return tags.span(node.text, cls="navbar-text") + def visit_View(self, node): + badge = node.url_for_kwargs.pop("__badge", None) classes = ["nav-link"] + if hasattr(node, "classes"): + classes = node.classes if node.active: classes.append("active") + ret = [tags.a(node.text, href=node.get_url(), cls=" ".join(classes))] + if badge: + ret.insert( + 0, + tags.span( + badge[0], cls="badge badge-{} notification-badge".format(badge[1]) + ), + ) return tags.li( - tags.a(node.text, href=node.get_url(), cls=" ".join(classes)), + ret, cls="nav-item", ) @@ -192,5 +262,147 @@ def eval_expr(expr, ctx=None): def sort_by(values, expr): return sorted(value, key=lambda v: eval_expr(expr, v)) + def genpw(num=20): - return "".join(random.choice(string.ascii_lowercase+string.ascii_uppercase+string.digits) for _ in range(num)) + return "".join( + random.choice(string.ascii_lowercase + string.ascii_uppercase + string.digits) + for _ in range(num) + ) + + +def populate_form(form, cfg=None): + if cfg is None: + cfg = handle_config() + for name, field in form._fields.items(): + field.default = cfg.get(name) + form.transcode_default_profile.choices = [(None, "")] + form.transcode_default_profile.choices += [ + (k, k) for k in (cfg.get("transcode_profiles", {}) or {}).keys() + ] + + +def validate_transcoding_profiles(profiles): + for name, data in profiles.items(): + for req, req_type in [("command", str), ("doc", str)]: + if req not in data: + raise ValueError( + "Profile '{}' is missing required key '{}'".format( + name, req)) + if not isinstance(data[req], req_type): + raise ValueError( + "Key '{}' of profile '{}' should be of type '{}'".format( + req, name, req_type.__name__ + ) + ) + + +def setup_template_filters(app): + @app.template_filter("flatten") + def flatten(obj, path=None): + path = path or "" + if isinstance(obj, dict): + for k, v in sorted(obj.items()): + yield from flatten(v, "{}.{}".format(path, k)) + elif isinstance(obj, list): + for k, v in enumerate(obj): + yield from flatten(v, "{}[{}]".format(path, k)) + else: + yield path.lstrip("."), obj + + @app.template_filter("defaultattr") + def defaultattr(lst, attr, val): + assert isinstance(lst, list) + for item in lst: + assert isinstance(item, dict) + if attr not in item: + item[attr] = val + return lst + + @app.template_filter("pformat") + def t_pformat(o): + return pformat(o) + + @app.template_filter("hash") + def t_hash(s): + return hashlib.sha512(bytes(s, "utf-8")).hexdigest() + + @app.template_filter() + def regex_replace(s, find, replace): + """A non-optimal implementation of a regex filter""" + return re.sub(find, replace, s) + + @app.template_filter("ctime") + def timectime(s): + return time.ctime(s) + + @app.template_filter("ago") + def timeago(s, clamp=False): + seconds = round(time.time() - s, 0) + if clamp: + seconds = max(0, seconds) + return timedelta(seconds=seconds) + + @app.template_filter("ago_dt") + def ago_dt(s, rnd=None): + dt = datetime.today() - s + if rnd is not None: + secs = round(dt.total_seconds(), rnd) + dt = timedelta(seconds=secs) + return str(dt).rstrip("0") + + @app.template_filter("ago_dt_utc") + def ago_dt_utc(s, rnd=None): + dt = datetime.utcnow() - s + if rnd is not None: + secs = round(dt.total_seconds(), rnd) + dt = timedelta(seconds=secs) + return str(dt).rstrip("0") + + @app.template_filter("ago_dt_utc_human") + def ago_dt_utc_human(s, swap=False, rnd=None): + if not swap: + dt = datetime.utcnow() - s + else: + dt = s - datetime.utcnow() + if rnd is not None: + secs = round(dt.total_seconds(), rnd) + dt = timedelta(seconds=secs) + if dt.total_seconds() < 0: + return "In " + str(-dt).rstrip("0") + else: + return str(dt).rstrip("0") + " ago" + + @app.template_filter("timedelta") + def time_timedelta(s, digits=None, clamp=False): + if clamp: + s = max(s, 0) + if digits is not None: + s = round(s, digits) + return timedelta(seconds=s) + + @app.template_filter("base64") + def jinja_b64(s): + return str(base64.b64encode(bytes(s, "utf8")), "utf8") + + @app.template_filter("fromiso") + def time_fromiso(s): + t = s.rstrip("Z").split(".")[0] + t = datetime.strptime(t, "%Y-%m-%dT%H:%M:%S") + try: + t.microsecond = int(s.rstrip("Z").split(".")[1]) + except BaseException: + pass + return t + + app.add_template_global(urljoin, "urljoin") + + @app.template_filter("slugify") + def make_slug(s): + return slugify(s, only_ascii=True) + + @app.template_filter("fromjson") + def fromjson(s): + return json.loads(s) + + app.template_filter()(make_tree) + app.add_template_global(handle_config, "cfg") diff --git a/views/__init__.py b/views/__init__.py new file mode 100644 index 0000000..2c6ced4 --- /dev/null +++ b/views/__init__.py @@ -0,0 +1,24 @@ +import sys + +from flask import Blueprint + +from .api import api # noqa +from .config import config_page # noqa +from .containers import containers_page # noqa +from .history import history_page # noqa +from .home import home_page # noqa +from .jellyfin import jellyfin_page # noqa +from .logs import logs_page # noqa +from .qbittorrent import qbittorrent_page # noqa +from .radarr import radarr_page # noqa +from .remote import remote_page # noqa +from .requests import requests_page # noqa +from .search import search_page # noqa +from .sonarr import sonarr_page # noqa +from .transcode import transcode_page # noqa + + +def register_blueprints(app): + for k, v in vars(sys.modules[__name__]).items(): + if isinstance(v, Blueprint): + app.register_blueprint(v) diff --git a/views/api/__init__.py b/views/api/__init__.py new file mode 100644 index 0000000..f9bee3f --- /dev/null +++ b/views/api/__init__.py @@ -0,0 +1,32 @@ +from flask import Blueprint, request, flash, session, redirect, url_for + +import time +from api import Client +from utils import admin_required + +api = Blueprint("api", __name__, url_prefix="/api") + + +@api.route("/add_torrent", methods=["POST"]) +@admin_required +def add_torrent(): + category = request.form.get("category") + c = Client() + hashes_1 = set(c.qbittorent.status().get("torrents", {})) + links = "" + count = 0 + for link in request.form.getlist("torrent[]"): + links += link + "\n" + count += 1 + c.qbittorent.add(urls=links, category=category) + for _ in range(10): + status = c.qbittorent.status().get("torrents", {}) + hashes_2 = set(status) + if len(hashes_2 - hashes_1) == count: + break + time.sleep(0.5) + else: + flash("Some torrents failed to get added to QBittorrent", "waring") + new_torrents = sorted(hashes_2 - hashes_1) + session["new_torrents"] = {h: status[h] for h in new_torrents} + return redirect(url_for("search")) diff --git a/views/config/__init__.py b/views/config/__init__.py new file mode 100644 index 0000000..2dde040 --- /dev/null +++ b/views/config/__init__.py @@ -0,0 +1,45 @@ +from flask import Blueprint, json, render_template, request +from api import Client +from forms import ConfigForm +from utils import admin_required, handle_config, populate_form, validate_transcoding_profiles + +config_page = Blueprint("config", __name__, url_prefix="/config") + + +@config_page.route("/", methods=["GET", "POST"]) +@admin_required +def index(): + form = ConfigForm() + cfg = {} + populate_form(form) + if form.validate_on_submit(): + skip = ["save", "test", "csrf_token"] + transcode_profiles = request.files.get("transcode_profiles") + if transcode_profiles: + try: + form.transcode_profiles.data = json.load(transcode_profiles) + validate_transcoding_profiles(form.transcode_profiles.data) + except ValueError as e: + form.transcode_profiles.data = None + form.transcode_profiles.errors = [ + "Invalid json data in file {}: {}".format( + transcode_profiles.filename, e + ) + ] + else: + form.transcode_profiles.data = handle_config().get("transcode_profiles", {}) + if form.errors: + return render_template("config.html", form=form) + for name, field in form._fields.items(): + if name in skip: + continue + cfg[name] = field.data + if form.test.data: + test_res = Client.test(cfg) + populate_form(form, cfg) + return render_template("config.html", form=form, test=test_res) + handle_config(cfg) + populate_form(form) + return render_template("config.html", form=form) + form.process() + return render_template("config.html", form=form) diff --git a/views/containers/__init__.py b/views/containers/__init__.py new file mode 100644 index 0000000..3194c91 --- /dev/null +++ b/views/containers/__init__.py @@ -0,0 +1,22 @@ +from flask import Blueprint, render_template + +from api import Client +from utils import admin_required + +containers_page = Blueprint("containers", __name__, url_prefix="/containers") + + +@containers_page.route("/") +@admin_required +def index(): + c = Client() + containers = c.portainer.containers() + return render_template("containers/index.html", containers=containers) + + +@containers_page.route("/") +@admin_required +def details(container_id): + c = Client() + container = c.portainer.containers(container_id) + return render_template("containers/details.html", container=container) diff --git a/views/history/__init__.py b/views/history/__init__.py new file mode 100644 index 0000000..7e2ae35 --- /dev/null +++ b/views/history/__init__.py @@ -0,0 +1,15 @@ +from flask import Blueprint, render_template + +from api import Client +from utils import admin_required + +history_page = Blueprint("history", __name__, url_prefix="/history") + + +@history_page.route("/") +@admin_required +def index(): + c = Client() + sonarr = c.sonarr.history() + radarr = c.radarr.history() + return render_template("history.html", sonarr=sonarr, radarr=radarr) diff --git a/views/home/__init__.py b/views/home/__init__.py new file mode 100644 index 0000000..7fa7ae3 --- /dev/null +++ b/views/home/__init__.py @@ -0,0 +1,16 @@ +from flask import Blueprint, render_template +from flask_login import current_user + +import stats_collect + +home_page = Blueprint("home", __name__) + + +@home_page.route("/") +def index(): + stats = stats_collect.Stats() + if not (current_user.is_authenticated and current_user.is_admin): + stats["images"] = [ + img for img in stats["images"] if img[0] != "Torrents"] + + return render_template("index.html", fluid=True, data=stats) diff --git a/views/jellyfin/__init__.py b/views/jellyfin/__init__.py new file mode 100644 index 0000000..4dbe769 --- /dev/null +++ b/views/jellyfin/__init__.py @@ -0,0 +1,43 @@ +from flask import Blueprint, render_template +from flask_login import current_user + +import stats_collect +from api import Client +from utils import login_required + +jellyfin_page = Blueprint("jellyfin", __name__, url_prefix="/jellyfin") + + +@jellyfin_page.route("/") +@login_required +def index(): + c = Client() + stats = stats_collect.Stats() + jellyfin = { + "info": c.jellyfin.system_info(), + "status": c.jellyfin.status(), + "counts": c.jellyfin.get_counts(), + "library": stats["library"], + } + if not (current_user.is_authenticated and current_user.is_admin): + jellyfin["library"] = {} + jellyfin["status"]["HasUpdateAvailable"] = False + jellyfin["status"]["HasPendingRestart"] = False + + return render_template("jellyfin/index.html", **jellyfin) + + +@jellyfin_page.route("/") +@login_required +def details(item_id): + c = Client() + jellyfin = { + "info": c.jellyfin.system_info(), + "status": c.jellyfin.status(), + "item": c.jellyfin.media_info(item_id), + } + if jellyfin["item"].get("Type") == "Movie": + return render_template("jellyfin/movie.html", **jellyfin) + if jellyfin["item"].get("Type") == "Series": + return render_template("jellyfin/series.html", **jellyfin) + return render_template("jellyfin/details.html", **jellyfin) diff --git a/views/logs/__init__.py b/views/logs/__init__.py new file mode 100644 index 0000000..a12a407 --- /dev/null +++ b/views/logs/__init__.py @@ -0,0 +1,19 @@ +from flask import Blueprint, render_template + +from api import Client +from utils import admin_required + +logs_page = Blueprint("log", __name__, url_prefix="/log") + + +@logs_page.route("/") +@admin_required +def index(): + c = Client() + logs = { + "radarr": c.radarr.log(), + "sonarr": c.sonarr.log(), + "qbt": c.qbittorent.log(), + "peers": c.qbittorent.peer_log(), + } + return render_template("logs.html", logs=logs) diff --git a/views/qbittorrent/__init__.py b/views/qbittorrent/__init__.py new file mode 100644 index 0000000..4897edb --- /dev/null +++ b/views/qbittorrent/__init__.py @@ -0,0 +1,48 @@ +from flask import Blueprint, render_template, request, redirect + +from api import Client +from utils import admin_required + +qbittorrent_page = Blueprint( + "qbittorrent", + __name__, + url_prefix="/qbittorrent") + + +@qbittorrent_page.route("/") +@admin_required +def index(): + c = Client() + qbt = c.qbittorent.status() + sort_by_choices = { + "speed": "Transfer Speed", + "eta": "Time remaining", + "state": "State", + "category": "Category", + } + return render_template( + "qbittorrent/index.html", + qbt=qbt, + status_map=c.qbittorent.status_map, + state_filter=request.args.get("state"), + sort_by=request.args.get("sort", "speed"), + sort_by_choices=sort_by_choices, + ) + + +@qbittorrent_page.route("/add_trackers/") +@admin_required +def add_trackers(infohash): + c = Client() + c.qbittorent.add_trackers(infohash) + return redirect(url_for("qbittorrent_details", infohash=infohash)) + + +@qbittorrent_page.route("/") +@admin_required +def details(infohash): + c = Client() + qbt = c.qbittorent.status(infohash) + return render_template( + "qbittorrent/details.html", qbt=qbt, status_map=c.qbittorent.status_map + ) diff --git a/views/radarr/__init__.py b/views/radarr/__init__.py new file mode 100644 index 0000000..7518aab --- /dev/null +++ b/views/radarr/__init__.py @@ -0,0 +1,24 @@ +from flask import Blueprint, render_template + +from api import Client +from utils import admin_required + +radarr_page = Blueprint("radarr", __name__, url_prefix="/radarr") + + +@radarr_page.route("/") +@admin_required +def index(): + c = Client() + movies = c.radarr.movies() + status = c.radarr.status() + history = c.radarr.history() + return render_template( + "radarr/index.html", movies=movies, status=status, history=history + ) + + +@radarr_page.route("/") +@admin_required +def details(movie_id): + return render_template("radarr/details.html") diff --git a/views/remote/__init__.py b/views/remote/__init__.py new file mode 100644 index 0000000..f97c913 --- /dev/null +++ b/views/remote/__init__.py @@ -0,0 +1,98 @@ +import base64 +import hashlib +import io + +from cryptography.hazmat.primitives import serialization +from cryptography.hazmat.primitives.serialization import load_ssh_public_key +from flask import Blueprint, redirect, render_template, request, url_for, Markup, flash + +from forms import AddSSHUser +from api import Client +from utils import admin_required + +remote_page = Blueprint("remote", __name__, url_prefix="/remote") + + +def ssh_fingerprint(key): + fp = hashlib.md5(base64.b64decode(key)).hexdigest() + return ":".join(a + b for a, b in zip(fp[::2], fp[1::2])) + + +@remote_page.route("/stop") +@admin_required +def stop(): + c = Client() + session_id = request.args.get("session") + c.jellyfin.stop_session(session_id) + return redirect(url_for("remote.index")) + + +@remote_page.route("/") +@admin_required +def index(): + c = Client() + res = c.ssh.get("/data/.ssh/authorized_keys", io.BytesIO()) + res.local.seek(0) + ssh_keys = [] + for key in str(res.local.read(), "utf8").splitlines(): + disabled = False + if key.startswith("#"): + key = key.lstrip("#").lstrip() + disabled = True + load_ssh_public_key(bytes(key, "utf8")) + key_type, key, name = key.split(None, 2) + ssh_keys.append( + { + "disabled": disabled, + "type": key_type, + "key": key, + "fingerprint": ssh_fingerprint(key), + "name": name, + } + ) + key = request.args.get("key") + enabled = request.args.get("enabled") + if not (key is None or enabled is None): + key_file = [] + for ssh_key in ssh_keys: + if ssh_key["key"] == key: + ssh_key["disabled"] = enabled == "False" + if ssh_key["disabled"]: + key_file.append("#{type} {key} {name}".format(**ssh_key)) + else: + key_file.append("{type} {key} {name}".format(**ssh_key)) + buf = io.BytesIO(bytes("\n".join(key_file), "utf8")) + c.ssh.put(buf, "/data/.ssh/authorized_keys", preserve_mode=False) + return redirect(url_for("remote")) + jellyfin = { + "users": c.jellyfin.get_users(), + "sessions": c.jellyfin.sessions(), + "info": c.jellyfin.system_info(), + } + return render_template( + "remote/index.html", + ssh=ssh_keys, + jellyfin=jellyfin) + + +@remote_page.route("/add", methods=["GET", "POST"]) +@admin_required +def add(): + form = AddSSHUser() + c = Client() + if form.validate_on_submit(): + key = load_ssh_public_key(bytes(form.data["ssh_key"], "utf8")) + rawKeyData = key.public_bytes( + encoding=serialization.Encoding.OpenSSH, + format=serialization.PublicFormat.OpenSSH, + ) + passwd = c.add_user(form.data["name"], str(rawKeyData, "utf8")) + flash( + Markup( + "".join( + [ + f"

    Name: {form.data['name']}

    ", + f"

    PW: {passwd}

    ", + f"

    FP: {ssh_fingerprint(rawKeyData.split()[1])}

    ", + ]))) + return render_template("remote/add.html", form=form) diff --git a/views/requests/__init__.py b/views/requests/__init__.py new file mode 100644 index 0000000..7d08261 --- /dev/null +++ b/views/requests/__init__.py @@ -0,0 +1,217 @@ +import base64 +import json +from datetime import datetime + +from flask import ( + Blueprint, + current_app, + flash, + redirect, + render_template, + request, + session, + url_for, +) +from flask_login import current_user +from collections import defaultdict +from api import Client +from forms import RequestForm +from models import RequestItem, RequestUser +from utils import login_required, handle_config + +requests_page = Blueprint("requests", __name__, url_prefix="/requests") + + +@requests_page.route("//", methods=["GET"]) +@login_required +def download_details(request_id, download_id): + c = Client() + request = RequestItem.query.filter(RequestItem.id == request_id).one_or_none() + if request is None: + flash("Unknown request ID", "danger") + return redirect(url_for("requests.details", request_id=request_id)) + try: + qbt = c.qbittorent.poll(download_id) + except Exception: + flash("Unknown download ID", "danger") + return redirect(url_for("requests.details", request_id=request_id)) + return render_template("qbittorrent/details.html", qbt=qbt) + + +@requests_page.route("/", methods=["GET"]) +@login_required +def details(request_id): + c = Client() + if current_user.is_admin: + requests = RequestItem.query + else: + user_id = current_user.get_id() + requests = RequestItem.query.filter( + RequestItem.users.any(RequestUser.user_id == user_id) + ) + request = requests.filter(RequestItem.id == request_id).one_or_none() + if request is None: + flash("Unknown request ID", "danger") + return redirect(url_for("requests.index")) + RequestUser.query.filter( + (RequestUser.user_id == current_user.id) + & (RequestUser.item_id == request.item_id) + ).update({RequestUser.updated: False}) + current_app.db.session.commit() + jf_item = None + arr = request.arr_item + id_map = c.jellyfin.id_map() + for key_id in ["tmdbId", "imdbId", "tvdbId"]: + if key_id in arr: + key = (key_id.lower()[:-2], str(arr[key_id])) + jf_item = id_map.get(key, None) + if jf_item: + break + return render_template( + "requests/details.html", request=request, jellyfin_id=jf_item + ) + + +@requests_page.route("/", methods=["GET", "POST"]) +@login_required +def index(): + c = Client() + form = RequestForm() + user_id = current_user.get_id() + cfg = handle_config() + used_requests = defaultdict(int) + if current_user.is_admin: + requests = RequestItem.query + else: + requests = RequestItem.query.filter( + RequestItem.users.any(RequestUser.user_id == user_id) + ) + for item in requests: + if item.approved is None: + used_requests[item.request_type] += 1 + remaining = {} + remaining["movies"] = ( + cfg["num_requests_per_user"]["movies"] - used_requests["radarr"] + ) + remaining["shows"] = cfg["num_requests_per_user"]["shows"] - used_requests["sonarr"] + print("RQs:", used_requests, remaining) + if ( + request.method == "POST" + and ("approve" in request.form) + or ("decline" in request.form) + ): + approved = "approve" in request.form + declined = "decline" in request.form + if approved and declined: + flash("What the fuck?") + approved = False + declined = False + if approved or declined: + new_state = approved + print("Approved:", approved) + for item_id in request.form.getlist("selected[]"): + item = RequestItem.query.get(item_id) + if item.approved != new_state: + RequestUser.query.filter(RequestUser.item_id == item_id).update( + {RequestUser.updated: True} + ) + item.approved = new_state + if new_state is True: + search_type = item.request_type + if hasattr(c, search_type): + api = getattr(c, search_type) + if hasattr(api, "add"): + result = api.add(json.loads(item.data)) + print(result) + if item.request_type == "sonarr": + item.arr_id = result["seriesId"] + if item.request_type == "radarr": + item.arr_id = result["id"] + else: + flash("Invalid search type: {}".format(search_type), "danger") + current_app.db.session.merge(item) + current_app.db.session.commit() + return render_template( + "requests/index.html", + results=[], + form=form, + search_type=None, + requests=requests, + ) + return redirect(url_for("requests.index")) + if request.method == "POST" and form.search.data is False: + request_type = request.form["search_type"] + for item in request.form.getlist("selected[]"): + data = str(base64.b64decode(item), "utf8") + item = json.loads(data) + item_id = "{type}/{titleSlug}/{year}".format(type=request_type, **item) + user_id = session["jf_user"].get_id() + request_entry = RequestItem.query.get(item_id) + if request_entry is None: + request_entry = RequestItem( + added_date=datetime.now(), + item_id=item_id, + users=[], + data=data, + request_type=request_type, + ) + current_app.db.session.add(request_entry) + request_entry.users.append( + RequestUser( + user_id=user_id, item_id=item_id, user_name=current_user["Name"] + ) + ) + current_app.db.session.merge(request_entry) + current_app.db.session.commit() + return render_template( + "requests/index.html", results=[], form=form, requests=requests + ) + if form and form.validate_on_submit(): + c = Client() + query = form.query.data + search_type = form.search_type.data + if hasattr(c, search_type): + api = getattr(c, search_type) + if hasattr(api, "search"): + results = api.search(query) + return render_template( + "requests/index.html", + results=results, + form=form, + search_type=search_type, + ) + flash("Invalid search type: {}".format(search_type), "danger") + return render_template( + "requests/index.html", + results=[], + form=form, + search_type=None, + requests=requests, + ) + + +""" + if form.validate_on_submit(): + query = form.query.data + if not (form.torrents.data or form.movies.data or form.tv_shows.data): + form.torrents.data = True + form.movies.data = True + form.tv_shows.data = True + + if form.torrents.data: + results["torrents"] = c.jackett.search( + query, form.indexer.data or form.indexer.choices + ) + if form.movies.data: + results["movies"] = c.radarr.search(query) + if form.tv_shows.data: + results["tv_shows"] = c.sonarr.search(query) + return render_template( + "search/index.html", + # form=form, + search_term=query, + results=results, + client=c, + group_by_tracker=form.group_by_tracker.data, + ) +""" diff --git a/views/search/__init__.py b/views/search/__init__.py new file mode 100644 index 0000000..049a0ad --- /dev/null +++ b/views/search/__init__.py @@ -0,0 +1,62 @@ +from urllib.parse import unquote_plus + +from flask import Blueprint, json, render_template, request + +from api import Client +from forms import SearchForm +from utils import admin_required + +search_page = Blueprint("search", __name__, url_prefix="/search") + + +@search_page.route("/details", methods=["GET", "POST"]) +@admin_required +def details(): + data = { + "info": json.loads(unquote_plus(request.form["data"])), + "type": request.form["type"], + } + return render_template("search/details.html", **data) + + +@search_page.route("/", methods=["GET", "POST"]) +@admin_required +def index(): + c = Client() + results = {} + params = request.args + form = SearchForm() + form.indexer.choices = c.jackett.indexers() + if form.validate_on_submit(): + query = form.query.data + if not (form.torrents.data or form.movies.data or form.tv_shows.data): + form.torrents.data = True + form.movies.data = True + form.tv_shows.data = True + + if form.torrents.data: + results["torrents"] = c.jackett.search( + query, form.indexer.data or form.indexer.choices + ) + if form.movies.data: + results["movies"] = c.radarr.search(query) + if form.tv_shows.data: + results["tv_shows"] = c.sonarr.search(query) + return render_template( + "search/index.html", + # form=form, + search_term=query, + results=results, + client=c, + group_by_tracker=form.group_by_tracker.data, + ) + for name, field in form._fields.items(): + field.default = params.get(name) + form.process() + return render_template( + "search/index.html", + form=form, + results={}, + group_by_tracker=False, + sort_by="Gain", + ) diff --git a/views/sonarr/__init__.py b/views/sonarr/__init__.py new file mode 100644 index 0000000..dd5bdd7 --- /dev/null +++ b/views/sonarr/__init__.py @@ -0,0 +1,24 @@ +from flask import Blueprint, render_template + +from api import Client +from utils import admin_required + +sonarr_page = Blueprint("sonarr", __name__, url_prefix="/sonarr") + + +@sonarr_page.route("/") +@admin_required +def index(): + c = Client() + series = c.sonarr.series() + status = c.sonarr.status() + history = c.sonarr.history() + return render_template( + "sonarr/index.html", series=series, status=status, history=history + ) + + +@sonarr_page.route("/") +@admin_required +def details(show_id): + return render_template("sonarr/details.html") diff --git a/views/transcode/__init__.py b/views/transcode/__init__.py new file mode 100644 index 0000000..0c3bbd6 --- /dev/null +++ b/views/transcode/__init__.py @@ -0,0 +1,10 @@ +from flask import Blueprint, render_template + +from utils import admin_required +transcode_page = Blueprint("transcode", __name__, url_prefix="/transcode") + + +@transcode_page.route("/", methods=["GET", "POST"]) +@admin_required +def index(): + return render_template("transcode/profiles.html")